blob: 73d14fc026065b88864a386c56b4ed0f67a3bead [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-2000 Cisco, Inc.
4 * Copyright (c) 1999-2001 Motorola, Inc.
5 * Copyright (c) 2001-2002 Intel Corp.
6 * Copyright (c) 2002 Nokia Corp.
7 *
Vlad Yasevich60c778b2008-01-11 09:57:09 -05008 * This is part of the SCTP Linux Kernel Implementation.
Linus Torvalds1da177e2005-04-16 15:20:36 -07009 *
10 * These are the state functions for the state machine.
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 * Mathew Kotowsky <kotowsky@sctp.org>
40 * Sridhar Samudrala <samudrala@us.ibm.com>
41 * Jon Grimm <jgrimm@us.ibm.com>
42 * Hui Huang <hui.huang@nokia.com>
43 * Dajiang Zhang <dajiang.zhang@nokia.com>
44 * Daisy Chang <daisyc@us.ibm.com>
45 * Ardelle Fan <ardelle.fan@intel.com>
46 * Ryan Layer <rmlayer@us.ibm.com>
47 * Kevin Gao <kevin.gao@intel.com>
48 *
49 * Any bugs reported given to us we will try to fix... any fixes shared will
50 * be incorporated into the next SCTP release.
51 */
52
Joe Perches145ce502010-08-24 13:21:08 +000053#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
54
Linus Torvalds1da177e2005-04-16 15:20:36 -070055#include <linux/types.h>
56#include <linux/kernel.h>
57#include <linux/ip.h>
58#include <linux/ipv6.h>
59#include <linux/net.h>
60#include <linux/inet.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090061#include <linux/slab.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070062#include <net/sock.h>
63#include <net/inet_ecn.h>
64#include <linux/skbuff.h>
65#include <net/sctp/sctp.h>
66#include <net/sctp/sm.h>
67#include <net/sctp/structs.h>
68
69static struct sctp_packet *sctp_abort_pkt_new(const struct sctp_endpoint *ep,
70 const struct sctp_association *asoc,
71 struct sctp_chunk *chunk,
72 const void *payload,
73 size_t paylen);
74static int sctp_eat_data(const struct sctp_association *asoc,
75 struct sctp_chunk *chunk,
76 sctp_cmd_seq_t *commands);
77static struct sctp_packet *sctp_ootb_pkt_new(const struct sctp_association *asoc,
78 const struct sctp_chunk *chunk);
79static void sctp_send_stale_cookie_err(const struct sctp_endpoint *ep,
80 const struct sctp_association *asoc,
81 const struct sctp_chunk *chunk,
82 sctp_cmd_seq_t *commands,
83 struct sctp_chunk *err_chunk);
84static sctp_disposition_t sctp_sf_do_5_2_6_stale(const struct sctp_endpoint *ep,
85 const struct sctp_association *asoc,
86 const sctp_subtype_t type,
87 void *arg,
88 sctp_cmd_seq_t *commands);
89static sctp_disposition_t sctp_sf_shut_8_4_5(const struct sctp_endpoint *ep,
90 const struct sctp_association *asoc,
91 const sctp_subtype_t type,
92 void *arg,
93 sctp_cmd_seq_t *commands);
Vlad Yasevichece25df2007-09-07 16:30:54 -040094static sctp_disposition_t sctp_sf_tabort_8_4_8(const struct sctp_endpoint *ep,
95 const struct sctp_association *asoc,
96 const sctp_subtype_t type,
97 void *arg,
98 sctp_cmd_seq_t *commands);
Linus Torvalds1da177e2005-04-16 15:20:36 -070099static struct sctp_sackhdr *sctp_sm_pull_sack(struct sctp_chunk *chunk);
100
Adrian Bunk52c1da32005-06-23 22:05:33 -0700101static sctp_disposition_t sctp_stop_t1_and_abort(sctp_cmd_seq_t *commands,
Al Virof94c0192006-11-20 17:00:25 -0800102 __be16 error, int sk_err,
Adrian Bunk52c1da32005-06-23 22:05:33 -0700103 const struct sctp_association *asoc,
104 struct sctp_transport *transport);
105
Wei Yongjunaecedea2007-08-02 16:57:44 +0800106static sctp_disposition_t sctp_sf_abort_violation(
Vlad Yasevichece25df2007-09-07 16:30:54 -0400107 const struct sctp_endpoint *ep,
Wei Yongjunaecedea2007-08-02 16:57:44 +0800108 const struct sctp_association *asoc,
109 void *arg,
110 sctp_cmd_seq_t *commands,
111 const __u8 *payload,
112 const size_t paylen);
113
Adrian Bunk52c1da32005-06-23 22:05:33 -0700114static sctp_disposition_t sctp_sf_violation_chunklen(
115 const struct sctp_endpoint *ep,
116 const struct sctp_association *asoc,
117 const sctp_subtype_t type,
118 void *arg,
119 sctp_cmd_seq_t *commands);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120
Wei Yongjun6f4c6182007-09-19 17:19:52 +0800121static sctp_disposition_t sctp_sf_violation_paramlen(
122 const struct sctp_endpoint *ep,
123 const struct sctp_association *asoc,
124 const sctp_subtype_t type,
Wei Yongjunba016672008-09-30 05:32:24 -0700125 void *arg, void *ext,
Wei Yongjun6f4c6182007-09-19 17:19:52 +0800126 sctp_cmd_seq_t *commands);
127
Wei Yongjunaecedea2007-08-02 16:57:44 +0800128static sctp_disposition_t sctp_sf_violation_ctsn(
129 const struct sctp_endpoint *ep,
130 const struct sctp_association *asoc,
131 const sctp_subtype_t type,
132 void *arg,
133 sctp_cmd_seq_t *commands);
134
Vlad Yasevichece25df2007-09-07 16:30:54 -0400135static sctp_disposition_t sctp_sf_violation_chunk(
136 const struct sctp_endpoint *ep,
137 const struct sctp_association *asoc,
138 const sctp_subtype_t type,
139 void *arg,
140 sctp_cmd_seq_t *commands);
141
Vlad Yasevichbbd0d592007-10-03 17:51:34 -0700142static sctp_ierror_t sctp_sf_authenticate(const struct sctp_endpoint *ep,
143 const struct sctp_association *asoc,
144 const sctp_subtype_t type,
145 struct sctp_chunk *chunk);
146
Vlad Yasevich75205f42007-12-20 14:12:59 -0800147static sctp_disposition_t __sctp_sf_do_9_1_abort(const struct sctp_endpoint *ep,
148 const struct sctp_association *asoc,
149 const sctp_subtype_t type,
150 void *arg,
151 sctp_cmd_seq_t *commands);
152
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153/* Small helper function that checks if the chunk length
154 * is of the appropriate length. The 'required_length' argument
155 * is set to be the size of a specific chunk we are testing.
156 * Return Values: 1 = Valid length
157 * 0 = Invalid length
158 *
159 */
160static inline int
161sctp_chunk_length_valid(struct sctp_chunk *chunk,
162 __u16 required_length)
163{
164 __u16 chunk_length = ntohs(chunk->chunk_hdr->length);
165
166 if (unlikely(chunk_length < required_length))
167 return 0;
168
169 return 1;
170}
171
172/**********************************************************
173 * These are the state functions for handling chunk events.
174 **********************************************************/
175
176/*
177 * Process the final SHUTDOWN COMPLETE.
178 *
179 * Section: 4 (C) (diagram), 9.2
180 * Upon reception of the SHUTDOWN COMPLETE chunk the endpoint will verify
181 * that it is in SHUTDOWN-ACK-SENT state, if it is not the chunk should be
182 * discarded. If the endpoint is in the SHUTDOWN-ACK-SENT state the endpoint
183 * should stop the T2-shutdown timer and remove all knowledge of the
184 * association (and thus the association enters the CLOSED state).
185 *
Jerome Forissier047a2422005-04-28 11:58:43 -0700186 * Verification Tag: 8.5.1(C), sctpimpguide 2.41.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187 * C) Rules for packet carrying SHUTDOWN COMPLETE:
188 * ...
Jerome Forissier047a2422005-04-28 11:58:43 -0700189 * - The receiver of a SHUTDOWN COMPLETE shall accept the packet
190 * if the Verification Tag field of the packet matches its own tag and
191 * the T bit is not set
192 * OR
193 * it is set to its peer's tag and the T bit is set in the Chunk
194 * Flags.
195 * Otherwise, the receiver MUST silently discard the packet
196 * and take no further action. An endpoint MUST ignore the
197 * SHUTDOWN COMPLETE if it is not in the SHUTDOWN-ACK-SENT state.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198 *
199 * Inputs
200 * (endpoint, asoc, chunk)
201 *
202 * Outputs
203 * (asoc, reply_msg, msg_up, timers, counters)
204 *
205 * The return value is the disposition of the chunk.
206 */
207sctp_disposition_t sctp_sf_do_4_C(const struct sctp_endpoint *ep,
208 const struct sctp_association *asoc,
209 const sctp_subtype_t type,
210 void *arg,
211 sctp_cmd_seq_t *commands)
212{
213 struct sctp_chunk *chunk = arg;
214 struct sctp_ulpevent *ev;
215
Vlad Yasevichece25df2007-09-07 16:30:54 -0400216 if (!sctp_vtag_verify_either(chunk, asoc))
217 return sctp_sf_pdiscard(ep, asoc, type, arg, commands);
218
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219 /* RFC 2960 6.10 Bundling
220 *
221 * An endpoint MUST NOT bundle INIT, INIT ACK or
222 * SHUTDOWN COMPLETE with any other chunks.
223 */
224 if (!chunk->singleton)
Vlad Yasevichece25df2007-09-07 16:30:54 -0400225 return sctp_sf_violation_chunk(ep, asoc, type, arg, commands);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226
Vlad Yasevichece25df2007-09-07 16:30:54 -0400227 /* Make sure that the SHUTDOWN_COMPLETE chunk has a valid length. */
228 if (!sctp_chunk_length_valid(chunk, sizeof(sctp_chunkhdr_t)))
229 return sctp_sf_violation_chunklen(ep, asoc, type, arg,
230 commands);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231
232 /* RFC 2960 10.2 SCTP-to-ULP
233 *
234 * H) SHUTDOWN COMPLETE notification
235 *
236 * When SCTP completes the shutdown procedures (section 9.2) this
237 * notification is passed to the upper layer.
238 */
239 ev = sctp_ulpevent_make_assoc_change(asoc, 0, SCTP_SHUTDOWN_COMP,
Vlad Yasevicha5a35e72007-03-23 11:34:08 -0700240 0, 0, 0, NULL, GFP_ATOMIC);
Vladislav Yasevichdf7deeb2006-08-22 00:19:51 -0700241 if (ev)
242 sctp_add_cmd_sf(commands, SCTP_CMD_EVENT_ULP,
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +0900243 SCTP_ULPEVENT(ev));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244
245 /* Upon reception of the SHUTDOWN COMPLETE chunk the endpoint
246 * will verify that it is in SHUTDOWN-ACK-SENT state, if it is
247 * not the chunk should be discarded. If the endpoint is in
248 * the SHUTDOWN-ACK-SENT state the endpoint should stop the
249 * T2-shutdown timer and remove all knowledge of the
250 * association (and thus the association enters the CLOSED
251 * state).
252 */
253 sctp_add_cmd_sf(commands, SCTP_CMD_TIMER_STOP,
254 SCTP_TO(SCTP_EVENT_TIMEOUT_T2_SHUTDOWN));
255
256 sctp_add_cmd_sf(commands, SCTP_CMD_TIMER_STOP,
257 SCTP_TO(SCTP_EVENT_TIMEOUT_T5_SHUTDOWN_GUARD));
258
259 sctp_add_cmd_sf(commands, SCTP_CMD_NEW_STATE,
260 SCTP_STATE(SCTP_STATE_CLOSED));
261
262 SCTP_INC_STATS(SCTP_MIB_SHUTDOWNS);
263 SCTP_DEC_STATS(SCTP_MIB_CURRESTAB);
264
265 sctp_add_cmd_sf(commands, SCTP_CMD_DELETE_TCB, SCTP_NULL());
266
267 return SCTP_DISPOSITION_DELETE_TCB;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268}
269
270/*
271 * Respond to a normal INIT chunk.
272 * We are the side that is being asked for an association.
273 *
274 * Section: 5.1 Normal Establishment of an Association, B
275 * B) "Z" shall respond immediately with an INIT ACK chunk. The
276 * destination IP address of the INIT ACK MUST be set to the source
277 * IP address of the INIT to which this INIT ACK is responding. In
278 * the response, besides filling in other parameters, "Z" must set the
279 * Verification Tag field to Tag_A, and also provide its own
280 * Verification Tag (Tag_Z) in the Initiate Tag field.
281 *
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +0900282 * Verification Tag: Must be 0.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283 *
284 * Inputs
285 * (endpoint, asoc, chunk)
286 *
287 * Outputs
288 * (asoc, reply_msg, msg_up, timers, counters)
289 *
290 * The return value is the disposition of the chunk.
291 */
292sctp_disposition_t sctp_sf_do_5_1B_init(const struct sctp_endpoint *ep,
293 const struct sctp_association *asoc,
294 const sctp_subtype_t type,
295 void *arg,
296 sctp_cmd_seq_t *commands)
297{
298 struct sctp_chunk *chunk = arg;
299 struct sctp_chunk *repl;
300 struct sctp_association *new_asoc;
301 struct sctp_chunk *err_chunk;
302 struct sctp_packet *packet;
303 sctp_unrecognized_param_t *unk_param;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304 int len;
305
306 /* 6.10 Bundling
307 * An endpoint MUST NOT bundle INIT, INIT ACK or
308 * SHUTDOWN COMPLETE with any other chunks.
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +0900309 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310 * IG Section 2.11.2
311 * Furthermore, we require that the receiver of an INIT chunk MUST
312 * enforce these rules by silently discarding an arriving packet
313 * with an INIT chunk that is bundled with other chunks.
314 */
315 if (!chunk->singleton)
316 return sctp_sf_pdiscard(ep, asoc, type, arg, commands);
317
318 /* If the packet is an OOTB packet which is temporarily on the
319 * control endpoint, respond with an ABORT.
320 */
Wei Yongjun8190f892008-09-08 12:13:55 +0800321 if (ep == sctp_sk((sctp_get_ctl_sock()))->ep) {
322 SCTP_INC_STATS(SCTP_MIB_OUTOFBLUES);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323 return sctp_sf_tabort_8_4_8(ep, asoc, type, arg, commands);
Wei Yongjun8190f892008-09-08 12:13:55 +0800324 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326 /* 3.1 A packet containing an INIT chunk MUST have a zero Verification
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +0900327 * Tag.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328 */
329 if (chunk->sctp_hdr->vtag != 0)
330 return sctp_sf_tabort_8_4_8(ep, asoc, type, arg, commands);
331
332 /* Make sure that the INIT chunk has a valid length.
333 * Normally, this would cause an ABORT with a Protocol Violation
334 * error, but since we don't have an association, we'll
335 * just discard the packet.
336 */
337 if (!sctp_chunk_length_valid(chunk, sizeof(sctp_init_chunk_t)))
338 return sctp_sf_pdiscard(ep, asoc, type, arg, commands);
339
Vlad Yasevichbec96402009-07-30 18:08:28 -0400340 /* If the INIT is coming toward a closing socket, we'll send back
341 * and ABORT. Essentially, this catches the race of INIT being
342 * backloged to the socket at the same time as the user isses close().
343 * Since the socket and all its associations are going away, we
344 * can treat this OOTB
345 */
346 if (sctp_sstate(ep->base.sk, CLOSING))
347 return sctp_sf_tabort_8_4_8(ep, asoc, type, arg, commands);
348
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349 /* Verify the INIT chunk before processing it. */
350 err_chunk = NULL;
351 if (!sctp_verify_init(asoc, chunk->chunk_hdr->type,
352 (sctp_init_chunk_t *)chunk->chunk_hdr, chunk,
353 &err_chunk)) {
354 /* This chunk contains fatal error. It is to be discarded.
355 * Send an ABORT, with causes if there is any.
356 */
357 if (err_chunk) {
358 packet = sctp_abort_pkt_new(ep, asoc, arg,
359 (__u8 *)(err_chunk->chunk_hdr) +
360 sizeof(sctp_chunkhdr_t),
361 ntohs(err_chunk->chunk_hdr->length) -
362 sizeof(sctp_chunkhdr_t));
363
364 sctp_chunk_free(err_chunk);
365
366 if (packet) {
367 sctp_add_cmd_sf(commands, SCTP_CMD_SEND_PKT,
368 SCTP_PACKET(packet));
369 SCTP_INC_STATS(SCTP_MIB_OUTCTRLCHUNKS);
370 return SCTP_DISPOSITION_CONSUME;
371 } else {
372 return SCTP_DISPOSITION_NOMEM;
373 }
374 } else {
375 return sctp_sf_tabort_8_4_8(ep, asoc, type, arg,
376 commands);
377 }
378 }
379
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +0900380 /* Grab the INIT header. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381 chunk->subh.init_hdr = (sctp_inithdr_t *)chunk->skb->data;
382
383 /* Tag the variable length parameters. */
384 chunk->param_hdr.v = skb_pull(chunk->skb, sizeof(sctp_inithdr_t));
385
386 new_asoc = sctp_make_temp_asoc(ep, chunk, GFP_ATOMIC);
387 if (!new_asoc)
388 goto nomem;
389
Vlad Yasevich409b95a2009-11-10 08:57:34 +0000390 if (sctp_assoc_set_bind_addr_from_ep(new_asoc,
391 sctp_scope(sctp_source(chunk)),
392 GFP_ATOMIC) < 0)
393 goto nomem_init;
394
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395 /* The call, sctp_process_init(), can fail on memory allocation. */
Wei Yongjunde6becd2011-04-19 21:30:51 +0000396 if (!sctp_process_init(new_asoc, chunk, sctp_source(chunk),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397 (sctp_init_chunk_t *)chunk->chunk_hdr,
398 GFP_ATOMIC))
399 goto nomem_init;
400
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401 /* B) "Z" shall respond immediately with an INIT ACK chunk. */
402
403 /* If there are errors need to be reported for unknown parameters,
404 * make sure to reserve enough room in the INIT ACK for them.
405 */
406 len = 0;
407 if (err_chunk)
408 len = ntohs(err_chunk->chunk_hdr->length) -
409 sizeof(sctp_chunkhdr_t);
410
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411 repl = sctp_make_init_ack(new_asoc, chunk, GFP_ATOMIC, len);
412 if (!repl)
Vladislav Yasevichdf7deeb2006-08-22 00:19:51 -0700413 goto nomem_init;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414
415 /* If there are errors need to be reported for unknown parameters,
416 * include them in the outgoing INIT ACK as "Unrecognized parameter"
417 * parameter.
418 */
419 if (err_chunk) {
420 /* Get the "Unrecognized parameter" parameter(s) out of the
421 * ERROR chunk generated by sctp_verify_init(). Since the
422 * error cause code for "unknown parameter" and the
423 * "Unrecognized parameter" type is the same, we can
424 * construct the parameters in INIT ACK by copying the
425 * ERROR causes over.
426 */
427 unk_param = (sctp_unrecognized_param_t *)
428 ((__u8 *)(err_chunk->chunk_hdr) +
429 sizeof(sctp_chunkhdr_t));
430 /* Replace the cause code with the "Unrecognized parameter"
431 * parameter type.
432 */
433 sctp_addto_chunk(repl, len, unk_param);
434 sctp_chunk_free(err_chunk);
435 }
436
Vladislav Yasevichdf7deeb2006-08-22 00:19:51 -0700437 sctp_add_cmd_sf(commands, SCTP_CMD_NEW_ASOC, SCTP_ASOC(new_asoc));
438
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439 sctp_add_cmd_sf(commands, SCTP_CMD_REPLY, SCTP_CHUNK(repl));
440
441 /*
442 * Note: After sending out INIT ACK with the State Cookie parameter,
443 * "Z" MUST NOT allocate any resources, nor keep any states for the
444 * new association. Otherwise, "Z" will be vulnerable to resource
445 * attacks.
446 */
447 sctp_add_cmd_sf(commands, SCTP_CMD_DELETE_TCB, SCTP_NULL());
448
449 return SCTP_DISPOSITION_DELETE_TCB;
450
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451nomem_init:
452 sctp_association_free(new_asoc);
453nomem:
Vladislav Yasevichdf7deeb2006-08-22 00:19:51 -0700454 if (err_chunk)
455 sctp_chunk_free(err_chunk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456 return SCTP_DISPOSITION_NOMEM;
457}
458
459/*
460 * Respond to a normal INIT ACK chunk.
461 * We are the side that is initiating the association.
462 *
463 * Section: 5.1 Normal Establishment of an Association, C
464 * C) Upon reception of the INIT ACK from "Z", "A" shall stop the T1-init
465 * timer and leave COOKIE-WAIT state. "A" shall then send the State
466 * Cookie received in the INIT ACK chunk in a COOKIE ECHO chunk, start
467 * the T1-cookie timer, and enter the COOKIE-ECHOED state.
468 *
469 * Note: The COOKIE ECHO chunk can be bundled with any pending outbound
470 * DATA chunks, but it MUST be the first chunk in the packet and
471 * until the COOKIE ACK is returned the sender MUST NOT send any
472 * other packets to the peer.
473 *
474 * Verification Tag: 3.3.3
475 * If the value of the Initiate Tag in a received INIT ACK chunk is
476 * found to be 0, the receiver MUST treat it as an error and close the
477 * association by transmitting an ABORT.
478 *
479 * Inputs
480 * (endpoint, asoc, chunk)
481 *
482 * Outputs
483 * (asoc, reply_msg, msg_up, timers, counters)
484 *
485 * The return value is the disposition of the chunk.
486 */
487sctp_disposition_t sctp_sf_do_5_1C_ack(const struct sctp_endpoint *ep,
488 const struct sctp_association *asoc,
489 const sctp_subtype_t type,
490 void *arg,
491 sctp_cmd_seq_t *commands)
492{
493 struct sctp_chunk *chunk = arg;
494 sctp_init_chunk_t *initchunk;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495 struct sctp_chunk *err_chunk;
496 struct sctp_packet *packet;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497
498 if (!sctp_vtag_verify(chunk, asoc))
499 return sctp_sf_pdiscard(ep, asoc, type, arg, commands);
500
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501 /* 6.10 Bundling
502 * An endpoint MUST NOT bundle INIT, INIT ACK or
503 * SHUTDOWN COMPLETE with any other chunks.
504 */
505 if (!chunk->singleton)
Vlad Yasevichece25df2007-09-07 16:30:54 -0400506 return sctp_sf_violation_chunk(ep, asoc, type, arg, commands);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507
Vlad Yasevichece25df2007-09-07 16:30:54 -0400508 /* Make sure that the INIT-ACK chunk has a valid length */
509 if (!sctp_chunk_length_valid(chunk, sizeof(sctp_initack_chunk_t)))
510 return sctp_sf_violation_chunklen(ep, asoc, type, arg,
511 commands);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512 /* Grab the INIT header. */
513 chunk->subh.init_hdr = (sctp_inithdr_t *) chunk->skb->data;
514
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515 /* Verify the INIT chunk before processing it. */
516 err_chunk = NULL;
517 if (!sctp_verify_init(asoc, chunk->chunk_hdr->type,
518 (sctp_init_chunk_t *)chunk->chunk_hdr, chunk,
519 &err_chunk)) {
520
Vlad Yasevich853f4b52008-01-20 06:10:46 -0800521 sctp_error_t error = SCTP_ERROR_NO_RESOURCE;
522
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523 /* This chunk contains fatal error. It is to be discarded.
Vlad Yasevichd6701192007-12-20 14:13:31 -0800524 * Send an ABORT, with causes. If there are no causes,
525 * then there wasn't enough memory. Just terminate
526 * the association.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527 */
528 if (err_chunk) {
529 packet = sctp_abort_pkt_new(ep, asoc, arg,
530 (__u8 *)(err_chunk->chunk_hdr) +
531 sizeof(sctp_chunkhdr_t),
532 ntohs(err_chunk->chunk_hdr->length) -
533 sizeof(sctp_chunkhdr_t));
534
535 sctp_chunk_free(err_chunk);
536
537 if (packet) {
538 sctp_add_cmd_sf(commands, SCTP_CMD_SEND_PKT,
539 SCTP_PACKET(packet));
540 SCTP_INC_STATS(SCTP_MIB_OUTCTRLCHUNKS);
Sridhar Samudrala8de8c872006-05-19 10:58:12 -0700541 error = SCTP_ERROR_INV_PARAM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543 }
Vlad Yasevichbbd0d592007-10-03 17:51:34 -0700544
545 /* SCTP-AUTH, Section 6.3:
546 * It should be noted that if the receiver wants to tear
547 * down an association in an authenticated way only, the
548 * handling of malformed packets should not result in
549 * tearing down the association.
550 *
551 * This means that if we only want to abort associations
552 * in an authenticated way (i.e AUTH+ABORT), then we
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300553 * can't destroy this association just because the packet
Vlad Yasevichbbd0d592007-10-03 17:51:34 -0700554 * was malformed.
555 */
556 if (sctp_auth_recv_cid(SCTP_CID_ABORT, asoc))
557 return sctp_sf_pdiscard(ep, asoc, type, arg, commands);
558
559 SCTP_INC_STATS(SCTP_MIB_ABORTEDS);
Sridhar Samudrala8de8c872006-05-19 10:58:12 -0700560 return sctp_stop_t1_and_abort(commands, error, ECONNREFUSED,
561 asoc, chunk->transport);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562 }
563
564 /* Tag the variable length parameters. Note that we never
565 * convert the parameters in an INIT chunk.
566 */
567 chunk->param_hdr.v = skb_pull(chunk->skb, sizeof(sctp_inithdr_t));
568
569 initchunk = (sctp_init_chunk_t *) chunk->chunk_hdr;
570
571 sctp_add_cmd_sf(commands, SCTP_CMD_PEER_INIT,
572 SCTP_PEER_INIT(initchunk));
573
Frank Filz3f7a87d2005-06-20 13:14:57 -0700574 /* Reset init error count upon receipt of INIT-ACK. */
575 sctp_add_cmd_sf(commands, SCTP_CMD_INIT_COUNTER_RESET, SCTP_NULL());
576
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577 /* 5.1 C) "A" shall stop the T1-init timer and leave
578 * COOKIE-WAIT state. "A" shall then ... start the T1-cookie
579 * timer, and enter the COOKIE-ECHOED state.
580 */
581 sctp_add_cmd_sf(commands, SCTP_CMD_TIMER_STOP,
582 SCTP_TO(SCTP_EVENT_TIMEOUT_T1_INIT));
583 sctp_add_cmd_sf(commands, SCTP_CMD_TIMER_START,
584 SCTP_TO(SCTP_EVENT_TIMEOUT_T1_COOKIE));
585 sctp_add_cmd_sf(commands, SCTP_CMD_NEW_STATE,
586 SCTP_STATE(SCTP_STATE_COOKIE_ECHOED));
587
Vlad Yasevich730fc3d2007-09-16 19:32:11 -0700588 /* SCTP-AUTH: genereate the assocition shared keys so that
589 * we can potentially signe the COOKIE-ECHO.
590 */
591 sctp_add_cmd_sf(commands, SCTP_CMD_ASSOC_SHKEY, SCTP_NULL());
592
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593 /* 5.1 C) "A" shall then send the State Cookie received in the
594 * INIT ACK chunk in a COOKIE ECHO chunk, ...
595 */
596 /* If there is any errors to report, send the ERROR chunk generated
597 * for unknown parameters as well.
598 */
599 sctp_add_cmd_sf(commands, SCTP_CMD_GEN_COOKIE_ECHO,
600 SCTP_CHUNK(err_chunk));
601
602 return SCTP_DISPOSITION_CONSUME;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603}
604
605/*
606 * Respond to a normal COOKIE ECHO chunk.
607 * We are the side that is being asked for an association.
608 *
609 * Section: 5.1 Normal Establishment of an Association, D
610 * D) Upon reception of the COOKIE ECHO chunk, Endpoint "Z" will reply
611 * with a COOKIE ACK chunk after building a TCB and moving to
612 * the ESTABLISHED state. A COOKIE ACK chunk may be bundled with
613 * any pending DATA chunks (and/or SACK chunks), but the COOKIE ACK
614 * chunk MUST be the first chunk in the packet.
615 *
616 * IMPLEMENTATION NOTE: An implementation may choose to send the
617 * Communication Up notification to the SCTP user upon reception
618 * of a valid COOKIE ECHO chunk.
619 *
620 * Verification Tag: 8.5.1 Exceptions in Verification Tag Rules
621 * D) Rules for packet carrying a COOKIE ECHO
622 *
623 * - When sending a COOKIE ECHO, the endpoint MUST use the value of the
624 * Initial Tag received in the INIT ACK.
625 *
626 * - The receiver of a COOKIE ECHO follows the procedures in Section 5.
627 *
628 * Inputs
629 * (endpoint, asoc, chunk)
630 *
631 * Outputs
632 * (asoc, reply_msg, msg_up, timers, counters)
633 *
634 * The return value is the disposition of the chunk.
635 */
636sctp_disposition_t sctp_sf_do_5_1D_ce(const struct sctp_endpoint *ep,
637 const struct sctp_association *asoc,
638 const sctp_subtype_t type, void *arg,
639 sctp_cmd_seq_t *commands)
640{
641 struct sctp_chunk *chunk = arg;
642 struct sctp_association *new_asoc;
643 sctp_init_chunk_t *peer_init;
644 struct sctp_chunk *repl;
Vladislav Yasevichdf7deeb2006-08-22 00:19:51 -0700645 struct sctp_ulpevent *ev, *ai_ev = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700646 int error = 0;
647 struct sctp_chunk *err_chk_p;
Vlad Yasevich609ee462007-08-31 03:10:59 +0900648 struct sock *sk;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649
650 /* If the packet is an OOTB packet which is temporarily on the
651 * control endpoint, respond with an ABORT.
652 */
Wei Yongjun8190f892008-09-08 12:13:55 +0800653 if (ep == sctp_sk((sctp_get_ctl_sock()))->ep) {
654 SCTP_INC_STATS(SCTP_MIB_OUTOFBLUES);
Vlad Yasevichece25df2007-09-07 16:30:54 -0400655 return sctp_sf_tabort_8_4_8(ep, asoc, type, arg, commands);
Wei Yongjun8190f892008-09-08 12:13:55 +0800656 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700657
658 /* Make sure that the COOKIE_ECHO chunk has a valid length.
659 * In this case, we check that we have enough for at least a
660 * chunk header. More detailed verification is done
661 * in sctp_unpack_cookie().
662 */
663 if (!sctp_chunk_length_valid(chunk, sizeof(sctp_chunkhdr_t)))
664 return sctp_sf_pdiscard(ep, asoc, type, arg, commands);
665
Vlad Yasevich609ee462007-08-31 03:10:59 +0900666 /* If the endpoint is not listening or if the number of associations
667 * on the TCP-style socket exceed the max backlog, respond with an
668 * ABORT.
669 */
670 sk = ep->base.sk;
671 if (!sctp_sstate(sk, LISTENING) ||
672 (sctp_style(sk, TCP) && sk_acceptq_is_full(sk)))
673 return sctp_sf_tabort_8_4_8(ep, asoc, type, arg, commands);
674
Linus Torvalds1da177e2005-04-16 15:20:36 -0700675 /* "Decode" the chunk. We have no optional parameters so we
676 * are in good shape.
677 */
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +0900678 chunk->subh.cookie_hdr =
Linus Torvalds1da177e2005-04-16 15:20:36 -0700679 (struct sctp_signed_cookie *)chunk->skb->data;
Sridhar Samudrala62b08082006-05-05 17:04:43 -0700680 if (!pskb_pull(chunk->skb, ntohs(chunk->chunk_hdr->length) -
681 sizeof(sctp_chunkhdr_t)))
682 goto nomem;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700683
684 /* 5.1 D) Upon reception of the COOKIE ECHO chunk, Endpoint
685 * "Z" will reply with a COOKIE ACK chunk after building a TCB
686 * and moving to the ESTABLISHED state.
687 */
688 new_asoc = sctp_unpack_cookie(ep, asoc, chunk, GFP_ATOMIC, &error,
689 &err_chk_p);
690
691 /* FIXME:
692 * If the re-build failed, what is the proper error path
693 * from here?
694 *
695 * [We should abort the association. --piggy]
696 */
697 if (!new_asoc) {
698 /* FIXME: Several errors are possible. A bad cookie should
699 * be silently discarded, but think about logging it too.
700 */
701 switch (error) {
702 case -SCTP_IERROR_NOMEM:
703 goto nomem;
704
705 case -SCTP_IERROR_STALE_COOKIE:
706 sctp_send_stale_cookie_err(ep, asoc, chunk, commands,
707 err_chk_p);
708 return sctp_sf_pdiscard(ep, asoc, type, arg, commands);
709
710 case -SCTP_IERROR_BAD_SIG:
711 default:
712 return sctp_sf_pdiscard(ep, asoc, type, arg, commands);
Stephen Hemminger3ff50b72007-04-20 17:09:22 -0700713 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700714 }
715
Linus Torvalds1da177e2005-04-16 15:20:36 -0700716
Vladislav Yasevichdf7deeb2006-08-22 00:19:51 -0700717 /* Delay state machine commands until later.
718 *
719 * Re-build the bind address for the association is done in
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720 * the sctp_unpack_cookie() already.
721 */
722 /* This is a brand-new association, so these are not yet side
723 * effects--it is safe to run them here.
724 */
725 peer_init = &chunk->subh.cookie_hdr->c.peer_init[0];
726
Wei Yongjunde6becd2011-04-19 21:30:51 +0000727 if (!sctp_process_init(new_asoc, chunk,
Al Viro6a1e5f32006-11-20 17:12:25 -0800728 &chunk->subh.cookie_hdr->c.peer_addr,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700729 peer_init, GFP_ATOMIC))
730 goto nomem_init;
731
Vlad Yasevich730fc3d2007-09-16 19:32:11 -0700732 /* SCTP-AUTH: Now that we've populate required fields in
733 * sctp_process_init, set up the assocaition shared keys as
734 * necessary so that we can potentially authenticate the ACK
735 */
736 error = sctp_auth_asoc_init_active_key(new_asoc, GFP_ATOMIC);
737 if (error)
738 goto nomem_init;
739
Vlad Yasevichbbd0d592007-10-03 17:51:34 -0700740 /* SCTP-AUTH: auth_chunk pointer is only set when the cookie-echo
741 * is supposed to be authenticated and we have to do delayed
742 * authentication. We've just recreated the association using
743 * the information in the cookie and now it's much easier to
744 * do the authentication.
745 */
746 if (chunk->auth_chunk) {
747 struct sctp_chunk auth;
748 sctp_ierror_t ret;
749
750 /* set-up our fake chunk so that we can process it */
751 auth.skb = chunk->auth_chunk;
752 auth.asoc = chunk->asoc;
753 auth.sctp_hdr = chunk->sctp_hdr;
754 auth.chunk_hdr = (sctp_chunkhdr_t *)skb_push(chunk->auth_chunk,
755 sizeof(sctp_chunkhdr_t));
756 skb_pull(chunk->auth_chunk, sizeof(sctp_chunkhdr_t));
757 auth.transport = chunk->transport;
758
759 ret = sctp_sf_authenticate(ep, new_asoc, type, &auth);
760
761 /* We can now safely free the auth_chunk clone */
762 kfree_skb(chunk->auth_chunk);
763
764 if (ret != SCTP_IERROR_NO_ERROR) {
765 sctp_association_free(new_asoc);
766 return sctp_sf_pdiscard(ep, asoc, type, arg, commands);
767 }
768 }
769
Linus Torvalds1da177e2005-04-16 15:20:36 -0700770 repl = sctp_make_cookie_ack(new_asoc, chunk);
771 if (!repl)
Vladislav Yasevichdf7deeb2006-08-22 00:19:51 -0700772 goto nomem_init;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700773
774 /* RFC 2960 5.1 Normal Establishment of an Association
775 *
776 * D) IMPLEMENTATION NOTE: An implementation may choose to
777 * send the Communication Up notification to the SCTP user
778 * upon reception of a valid COOKIE ECHO chunk.
779 */
780 ev = sctp_ulpevent_make_assoc_change(new_asoc, 0, SCTP_COMM_UP, 0,
781 new_asoc->c.sinit_num_ostreams,
782 new_asoc->c.sinit_max_instreams,
Vlad Yasevicha5a35e72007-03-23 11:34:08 -0700783 NULL, GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700784 if (!ev)
785 goto nomem_ev;
786
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +0900787 /* Sockets API Draft Section 5.3.1.6
Ivan Skytte Jorgensen0f3fffd2006-12-20 16:07:04 -0800788 * When a peer sends a Adaptation Layer Indication parameter , SCTP
Linus Torvalds1da177e2005-04-16 15:20:36 -0700789 * delivers this notification to inform the application that of the
Ivan Skytte Jorgensen0f3fffd2006-12-20 16:07:04 -0800790 * peers requested adaptation layer.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700791 */
Ivan Skytte Jorgensen0f3fffd2006-12-20 16:07:04 -0800792 if (new_asoc->peer.adaptation_ind) {
793 ai_ev = sctp_ulpevent_make_adaptation_indication(new_asoc,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700794 GFP_ATOMIC);
Vladislav Yasevichdf7deeb2006-08-22 00:19:51 -0700795 if (!ai_ev)
796 goto nomem_aiev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700797 }
798
Vladislav Yasevichdf7deeb2006-08-22 00:19:51 -0700799 /* Add all the state machine commands now since we've created
800 * everything. This way we don't introduce memory corruptions
801 * during side-effect processing and correclty count established
802 * associations.
803 */
804 sctp_add_cmd_sf(commands, SCTP_CMD_NEW_ASOC, SCTP_ASOC(new_asoc));
805 sctp_add_cmd_sf(commands, SCTP_CMD_NEW_STATE,
806 SCTP_STATE(SCTP_STATE_ESTABLISHED));
807 SCTP_INC_STATS(SCTP_MIB_CURRESTAB);
808 SCTP_INC_STATS(SCTP_MIB_PASSIVEESTABS);
809 sctp_add_cmd_sf(commands, SCTP_CMD_HB_TIMERS_START, SCTP_NULL());
810
811 if (new_asoc->autoclose)
812 sctp_add_cmd_sf(commands, SCTP_CMD_TIMER_START,
813 SCTP_TO(SCTP_EVENT_TIMEOUT_AUTOCLOSE));
814
Vladislav Yasevichdf7deeb2006-08-22 00:19:51 -0700815 /* This will send the COOKIE ACK */
816 sctp_add_cmd_sf(commands, SCTP_CMD_REPLY, SCTP_CHUNK(repl));
817
818 /* Queue the ASSOC_CHANGE event */
819 sctp_add_cmd_sf(commands, SCTP_CMD_EVENT_ULP, SCTP_ULPEVENT(ev));
820
821 /* Send up the Adaptation Layer Indication event */
822 if (ai_ev)
823 sctp_add_cmd_sf(commands, SCTP_CMD_EVENT_ULP,
824 SCTP_ULPEVENT(ai_ev));
825
Linus Torvalds1da177e2005-04-16 15:20:36 -0700826 return SCTP_DISPOSITION_CONSUME;
827
Vladislav Yasevichdf7deeb2006-08-22 00:19:51 -0700828nomem_aiev:
829 sctp_ulpevent_free(ev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700830nomem_ev:
831 sctp_chunk_free(repl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700832nomem_init:
833 sctp_association_free(new_asoc);
834nomem:
835 return SCTP_DISPOSITION_NOMEM;
836}
837
838/*
839 * Respond to a normal COOKIE ACK chunk.
840 * We are the side that is being asked for an association.
841 *
842 * RFC 2960 5.1 Normal Establishment of an Association
843 *
844 * E) Upon reception of the COOKIE ACK, endpoint "A" will move from the
845 * COOKIE-ECHOED state to the ESTABLISHED state, stopping the T1-cookie
846 * timer. It may also notify its ULP about the successful
847 * establishment of the association with a Communication Up
848 * notification (see Section 10).
849 *
850 * Verification Tag:
851 * Inputs
852 * (endpoint, asoc, chunk)
853 *
854 * Outputs
855 * (asoc, reply_msg, msg_up, timers, counters)
856 *
857 * The return value is the disposition of the chunk.
858 */
859sctp_disposition_t sctp_sf_do_5_1E_ca(const struct sctp_endpoint *ep,
860 const struct sctp_association *asoc,
861 const sctp_subtype_t type, void *arg,
862 sctp_cmd_seq_t *commands)
863{
864 struct sctp_chunk *chunk = arg;
865 struct sctp_ulpevent *ev;
866
867 if (!sctp_vtag_verify(chunk, asoc))
868 return sctp_sf_pdiscard(ep, asoc, type, arg, commands);
869
870 /* Verify that the chunk length for the COOKIE-ACK is OK.
871 * If we don't do this, any bundled chunks may be junked.
872 */
873 if (!sctp_chunk_length_valid(chunk, sizeof(sctp_chunkhdr_t)))
874 return sctp_sf_violation_chunklen(ep, asoc, type, arg,
875 commands);
876
877 /* Reset init error count upon receipt of COOKIE-ACK,
878 * to avoid problems with the managemement of this
879 * counter in stale cookie situations when a transition back
880 * from the COOKIE-ECHOED state to the COOKIE-WAIT
881 * state is performed.
882 */
Frank Filz3f7a87d2005-06-20 13:14:57 -0700883 sctp_add_cmd_sf(commands, SCTP_CMD_INIT_COUNTER_RESET, SCTP_NULL());
Linus Torvalds1da177e2005-04-16 15:20:36 -0700884
885 /* RFC 2960 5.1 Normal Establishment of an Association
886 *
887 * E) Upon reception of the COOKIE ACK, endpoint "A" will move
888 * from the COOKIE-ECHOED state to the ESTABLISHED state,
889 * stopping the T1-cookie timer.
890 */
891 sctp_add_cmd_sf(commands, SCTP_CMD_TIMER_STOP,
892 SCTP_TO(SCTP_EVENT_TIMEOUT_T1_COOKIE));
893 sctp_add_cmd_sf(commands, SCTP_CMD_NEW_STATE,
894 SCTP_STATE(SCTP_STATE_ESTABLISHED));
895 SCTP_INC_STATS(SCTP_MIB_CURRESTAB);
896 SCTP_INC_STATS(SCTP_MIB_ACTIVEESTABS);
897 sctp_add_cmd_sf(commands, SCTP_CMD_HB_TIMERS_START, SCTP_NULL());
898 if (asoc->autoclose)
899 sctp_add_cmd_sf(commands, SCTP_CMD_TIMER_START,
900 SCTP_TO(SCTP_EVENT_TIMEOUT_AUTOCLOSE));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700901
902 /* It may also notify its ULP about the successful
903 * establishment of the association with a Communication Up
904 * notification (see Section 10).
905 */
906 ev = sctp_ulpevent_make_assoc_change(asoc, 0, SCTP_COMM_UP,
907 0, asoc->c.sinit_num_ostreams,
908 asoc->c.sinit_max_instreams,
Vlad Yasevicha5a35e72007-03-23 11:34:08 -0700909 NULL, GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700910
911 if (!ev)
912 goto nomem;
913
914 sctp_add_cmd_sf(commands, SCTP_CMD_EVENT_ULP, SCTP_ULPEVENT(ev));
915
916 /* Sockets API Draft Section 5.3.1.6
Ivan Skytte Jorgensen0f3fffd2006-12-20 16:07:04 -0800917 * When a peer sends a Adaptation Layer Indication parameter , SCTP
Linus Torvalds1da177e2005-04-16 15:20:36 -0700918 * delivers this notification to inform the application that of the
Ivan Skytte Jorgensen0f3fffd2006-12-20 16:07:04 -0800919 * peers requested adaptation layer.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700920 */
Ivan Skytte Jorgensen0f3fffd2006-12-20 16:07:04 -0800921 if (asoc->peer.adaptation_ind) {
922 ev = sctp_ulpevent_make_adaptation_indication(asoc, GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700923 if (!ev)
924 goto nomem;
925
926 sctp_add_cmd_sf(commands, SCTP_CMD_EVENT_ULP,
927 SCTP_ULPEVENT(ev));
928 }
929
930 return SCTP_DISPOSITION_CONSUME;
931nomem:
932 return SCTP_DISPOSITION_NOMEM;
933}
934
935/* Generate and sendout a heartbeat packet. */
936static sctp_disposition_t sctp_sf_heartbeat(const struct sctp_endpoint *ep,
937 const struct sctp_association *asoc,
938 const sctp_subtype_t type,
939 void *arg,
940 sctp_cmd_seq_t *commands)
941{
942 struct sctp_transport *transport = (struct sctp_transport *) arg;
943 struct sctp_chunk *reply;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700944
945 /* Send a heartbeat to our peer. */
Wei Yongjun92c73af2011-04-19 21:31:47 +0000946 reply = sctp_make_heartbeat(asoc, transport);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700947 if (!reply)
948 return SCTP_DISPOSITION_NOMEM;
949
950 /* Set rto_pending indicating that an RTT measurement
951 * is started with this heartbeat chunk.
952 */
953 sctp_add_cmd_sf(commands, SCTP_CMD_RTO_PENDING,
954 SCTP_TRANSPORT(transport));
955
956 sctp_add_cmd_sf(commands, SCTP_CMD_REPLY, SCTP_CHUNK(reply));
957 return SCTP_DISPOSITION_CONSUME;
958}
959
960/* Generate a HEARTBEAT packet on the given transport. */
961sctp_disposition_t sctp_sf_sendbeat_8_3(const struct sctp_endpoint *ep,
962 const struct sctp_association *asoc,
963 const sctp_subtype_t type,
964 void *arg,
965 sctp_cmd_seq_t *commands)
966{
967 struct sctp_transport *transport = (struct sctp_transport *) arg;
968
Vlad Yasevichb9f84782009-08-26 09:36:25 -0400969 if (asoc->overall_error_count >= asoc->max_retrans) {
Sridhar Samudrala8de8c872006-05-19 10:58:12 -0700970 sctp_add_cmd_sf(commands, SCTP_CMD_SET_SK_ERR,
971 SCTP_ERROR(ETIMEDOUT));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700972 /* CMD_ASSOC_FAILED calls CMD_DELETE_TCB. */
973 sctp_add_cmd_sf(commands, SCTP_CMD_ASSOC_FAILED,
Al Viro5be291f2006-11-20 17:01:06 -0800974 SCTP_PERR(SCTP_ERROR_NO_ERROR));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700975 SCTP_INC_STATS(SCTP_MIB_ABORTEDS);
976 SCTP_DEC_STATS(SCTP_MIB_CURRESTAB);
977 return SCTP_DISPOSITION_DELETE_TCB;
978 }
979
980 /* Section 3.3.5.
981 * The Sender-specific Heartbeat Info field should normally include
982 * information about the sender's current time when this HEARTBEAT
983 * chunk is sent and the destination transport address to which this
984 * HEARTBEAT is sent (see Section 8.3).
985 */
986
Frank Filz52ccb8e2005-12-22 11:36:46 -0800987 if (transport->param_flags & SPP_HB_ENABLE) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700988 if (SCTP_DISPOSITION_NOMEM ==
989 sctp_sf_heartbeat(ep, asoc, type, arg,
990 commands))
991 return SCTP_DISPOSITION_NOMEM;
Vlad Yasevich245cba72009-11-23 15:53:58 -0500992
Linus Torvalds1da177e2005-04-16 15:20:36 -0700993 /* Set transport error counter and association error counter
994 * when sending heartbeat.
995 */
Vlad Yasevich7e990132009-03-02 09:46:14 +0000996 sctp_add_cmd_sf(commands, SCTP_CMD_TRANSPORT_HB_SENT,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700997 SCTP_TRANSPORT(transport));
998 }
Vlad Yasevich245cba72009-11-23 15:53:58 -0500999 sctp_add_cmd_sf(commands, SCTP_CMD_TRANSPORT_IDLE,
1000 SCTP_TRANSPORT(transport));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001001 sctp_add_cmd_sf(commands, SCTP_CMD_HB_TIMER_UPDATE,
1002 SCTP_TRANSPORT(transport));
1003
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09001004 return SCTP_DISPOSITION_CONSUME;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001005}
1006
1007/*
1008 * Process an heartbeat request.
1009 *
1010 * Section: 8.3 Path Heartbeat
1011 * The receiver of the HEARTBEAT should immediately respond with a
1012 * HEARTBEAT ACK that contains the Heartbeat Information field copied
1013 * from the received HEARTBEAT chunk.
1014 *
1015 * Verification Tag: 8.5 Verification Tag [Normal verification]
1016 * When receiving an SCTP packet, the endpoint MUST ensure that the
1017 * value in the Verification Tag field of the received SCTP packet
1018 * matches its own Tag. If the received Verification Tag value does not
1019 * match the receiver's own tag value, the receiver shall silently
1020 * discard the packet and shall not process it any further except for
1021 * those cases listed in Section 8.5.1 below.
1022 *
1023 * Inputs
1024 * (endpoint, asoc, chunk)
1025 *
1026 * Outputs
1027 * (asoc, reply_msg, msg_up, timers, counters)
1028 *
1029 * The return value is the disposition of the chunk.
1030 */
1031sctp_disposition_t sctp_sf_beat_8_3(const struct sctp_endpoint *ep,
1032 const struct sctp_association *asoc,
1033 const sctp_subtype_t type,
1034 void *arg,
1035 sctp_cmd_seq_t *commands)
1036{
1037 struct sctp_chunk *chunk = arg;
1038 struct sctp_chunk *reply;
1039 size_t paylen = 0;
1040
1041 if (!sctp_vtag_verify(chunk, asoc))
1042 return sctp_sf_pdiscard(ep, asoc, type, arg, commands);
1043
1044 /* Make sure that the HEARTBEAT chunk has a valid length. */
1045 if (!sctp_chunk_length_valid(chunk, sizeof(sctp_heartbeat_chunk_t)))
1046 return sctp_sf_violation_chunklen(ep, asoc, type, arg,
1047 commands);
1048
1049 /* 8.3 The receiver of the HEARTBEAT should immediately
1050 * respond with a HEARTBEAT ACK that contains the Heartbeat
1051 * Information field copied from the received HEARTBEAT chunk.
1052 */
1053 chunk->subh.hb_hdr = (sctp_heartbeathdr_t *) chunk->skb->data;
1054 paylen = ntohs(chunk->chunk_hdr->length) - sizeof(sctp_chunkhdr_t);
Sridhar Samudrala62b08082006-05-05 17:04:43 -07001055 if (!pskb_pull(chunk->skb, paylen))
1056 goto nomem;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001057
1058 reply = sctp_make_heartbeat_ack(asoc, chunk,
1059 chunk->subh.hb_hdr, paylen);
1060 if (!reply)
1061 goto nomem;
1062
1063 sctp_add_cmd_sf(commands, SCTP_CMD_REPLY, SCTP_CHUNK(reply));
1064 return SCTP_DISPOSITION_CONSUME;
1065
1066nomem:
1067 return SCTP_DISPOSITION_NOMEM;
1068}
1069
1070/*
1071 * Process the returning HEARTBEAT ACK.
1072 *
1073 * Section: 8.3 Path Heartbeat
1074 * Upon the receipt of the HEARTBEAT ACK, the sender of the HEARTBEAT
1075 * should clear the error counter of the destination transport
1076 * address to which the HEARTBEAT was sent, and mark the destination
1077 * transport address as active if it is not so marked. The endpoint may
1078 * optionally report to the upper layer when an inactive destination
1079 * address is marked as active due to the reception of the latest
1080 * HEARTBEAT ACK. The receiver of the HEARTBEAT ACK must also
1081 * clear the association overall error count as well (as defined
1082 * in section 8.1).
1083 *
1084 * The receiver of the HEARTBEAT ACK should also perform an RTT
1085 * measurement for that destination transport address using the time
1086 * value carried in the HEARTBEAT ACK chunk.
1087 *
1088 * Verification Tag: 8.5 Verification Tag [Normal verification]
1089 *
1090 * Inputs
1091 * (endpoint, asoc, chunk)
1092 *
1093 * Outputs
1094 * (asoc, reply_msg, msg_up, timers, counters)
1095 *
1096 * The return value is the disposition of the chunk.
1097 */
1098sctp_disposition_t sctp_sf_backbeat_8_3(const struct sctp_endpoint *ep,
1099 const struct sctp_association *asoc,
1100 const sctp_subtype_t type,
1101 void *arg,
1102 sctp_cmd_seq_t *commands)
1103{
1104 struct sctp_chunk *chunk = arg;
1105 union sctp_addr from_addr;
1106 struct sctp_transport *link;
1107 sctp_sender_hb_info_t *hbinfo;
1108 unsigned long max_interval;
1109
1110 if (!sctp_vtag_verify(chunk, asoc))
1111 return sctp_sf_pdiscard(ep, asoc, type, arg, commands);
1112
1113 /* Make sure that the HEARTBEAT-ACK chunk has a valid length. */
Wei Yongjundadb50c2009-08-22 11:27:37 +08001114 if (!sctp_chunk_length_valid(chunk, sizeof(sctp_chunkhdr_t) +
1115 sizeof(sctp_sender_hb_info_t)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001116 return sctp_sf_violation_chunklen(ep, asoc, type, arg,
1117 commands);
1118
1119 hbinfo = (sctp_sender_hb_info_t *) chunk->skb->data;
Vladislav Yasevicha6012662006-05-19 14:25:53 -07001120 /* Make sure that the length of the parameter is what we expect */
1121 if (ntohs(hbinfo->param_hdr.length) !=
1122 sizeof(sctp_sender_hb_info_t)) {
1123 return SCTP_DISPOSITION_DISCARD;
1124 }
1125
Linus Torvalds1da177e2005-04-16 15:20:36 -07001126 from_addr = hbinfo->daddr;
Al Viro63de08f2006-11-20 17:07:25 -08001127 link = sctp_assoc_lookup_paddr(asoc, &from_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001128
1129 /* This should never happen, but lets log it if so. */
Frank Filz3f7a87d2005-06-20 13:14:57 -07001130 if (unlikely(!link)) {
1131 if (from_addr.sa.sa_family == AF_INET6) {
Wei Yongjund99fa422007-08-27 11:19:24 +08001132 if (net_ratelimit())
Joe Perches145ce502010-08-24 13:21:08 +00001133 pr_warn("%s association %p could not find address %pI6\n",
1134 __func__,
1135 asoc,
1136 &from_addr.v6.sin6_addr);
Frank Filz3f7a87d2005-06-20 13:14:57 -07001137 } else {
Wei Yongjund99fa422007-08-27 11:19:24 +08001138 if (net_ratelimit())
Joe Perches145ce502010-08-24 13:21:08 +00001139 pr_warn("%s association %p could not find address %pI4\n",
1140 __func__,
1141 asoc,
1142 &from_addr.v4.sin_addr.s_addr);
Frank Filz3f7a87d2005-06-20 13:14:57 -07001143 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001144 return SCTP_DISPOSITION_DISCARD;
1145 }
1146
Sridhar Samudralaad8fec12006-07-21 14:48:50 -07001147 /* Validate the 64-bit random nonce. */
1148 if (hbinfo->hb_nonce != link->hb_nonce)
1149 return SCTP_DISPOSITION_DISCARD;
1150
Frank Filz52ccb8e2005-12-22 11:36:46 -08001151 max_interval = link->hbinterval + link->rto;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001152
1153 /* Check if the timestamp looks valid. */
1154 if (time_after(hbinfo->sent_at, jiffies) ||
1155 time_after(jiffies, hbinfo->sent_at + max_interval)) {
Joe Perches9ee46f12007-11-19 23:47:47 -08001156 SCTP_DEBUG_PRINTK("%s: HEARTBEAT ACK with invalid timestamp "
Linus Torvalds1da177e2005-04-16 15:20:36 -07001157 "received for transport: %p\n",
Harvey Harrison0dc47872008-03-05 20:47:47 -08001158 __func__, link);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001159 return SCTP_DISPOSITION_DISCARD;
1160 }
1161
1162 /* 8.3 Upon the receipt of the HEARTBEAT ACK, the sender of
1163 * the HEARTBEAT should clear the error counter of the
1164 * destination transport address to which the HEARTBEAT was
1165 * sent and mark the destination transport address as active if
1166 * it is not so marked.
1167 */
1168 sctp_add_cmd_sf(commands, SCTP_CMD_TRANSPORT_ON, SCTP_TRANSPORT(link));
1169
1170 return SCTP_DISPOSITION_CONSUME;
1171}
1172
1173/* Helper function to send out an abort for the restart
1174 * condition.
1175 */
1176static int sctp_sf_send_restart_abort(union sctp_addr *ssa,
1177 struct sctp_chunk *init,
1178 sctp_cmd_seq_t *commands)
1179{
1180 int len;
1181 struct sctp_packet *pkt;
1182 union sctp_addr_param *addrparm;
1183 struct sctp_errhdr *errhdr;
1184 struct sctp_endpoint *ep;
1185 char buffer[sizeof(struct sctp_errhdr)+sizeof(union sctp_addr_param)];
1186 struct sctp_af *af = sctp_get_af_specific(ssa->v4.sin_family);
1187
1188 /* Build the error on the stack. We are way to malloc crazy
1189 * throughout the code today.
1190 */
1191 errhdr = (struct sctp_errhdr *)buffer;
1192 addrparm = (union sctp_addr_param *)errhdr->variable;
1193
1194 /* Copy into a parm format. */
1195 len = af->to_addr_param(ssa, addrparm);
1196 len += sizeof(sctp_errhdr_t);
1197
1198 errhdr->cause = SCTP_ERROR_RESTART;
1199 errhdr->length = htons(len);
1200
1201 /* Assign to the control socket. */
1202 ep = sctp_sk((sctp_get_ctl_sock()))->ep;
1203
1204 /* Association is NULL since this may be a restart attack and we
1205 * want to send back the attacker's vtag.
1206 */
1207 pkt = sctp_abort_pkt_new(ep, NULL, init, errhdr, len);
1208
1209 if (!pkt)
1210 goto out;
1211 sctp_add_cmd_sf(commands, SCTP_CMD_SEND_PKT, SCTP_PACKET(pkt));
1212
1213 SCTP_INC_STATS(SCTP_MIB_OUTCTRLCHUNKS);
1214
1215 /* Discard the rest of the inbound packet. */
1216 sctp_add_cmd_sf(commands, SCTP_CMD_DISCARD_PACKET, SCTP_NULL());
1217
1218out:
1219 /* Even if there is no memory, treat as a failure so
1220 * the packet will get dropped.
1221 */
1222 return 0;
1223}
1224
Joe Perches123031c2010-09-08 11:04:21 +00001225static bool list_has_sctp_addr(const struct list_head *list,
1226 union sctp_addr *ipaddr)
1227{
1228 struct sctp_transport *addr;
1229
1230 list_for_each_entry(addr, list, transports) {
1231 if (sctp_cmp_addr_exact(ipaddr, &addr->ipaddr))
1232 return true;
1233 }
1234
1235 return false;
1236}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001237/* A restart is occurring, check to make sure no new addresses
1238 * are being added as we may be under a takeover attack.
1239 */
1240static int sctp_sf_check_restart_addrs(const struct sctp_association *new_asoc,
1241 const struct sctp_association *asoc,
1242 struct sctp_chunk *init,
1243 sctp_cmd_seq_t *commands)
1244{
Joe Perches123031c2010-09-08 11:04:21 +00001245 struct sctp_transport *new_addr;
1246 int ret = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001247
Joe Perches123031c2010-09-08 11:04:21 +00001248 /* Implementor's Guide - Section 5.2.2
Linus Torvalds1da177e2005-04-16 15:20:36 -07001249 * ...
1250 * Before responding the endpoint MUST check to see if the
1251 * unexpected INIT adds new addresses to the association. If new
1252 * addresses are added to the association, the endpoint MUST respond
1253 * with an ABORT..
1254 */
1255
1256 /* Search through all current addresses and make sure
1257 * we aren't adding any new ones.
1258 */
Robert P. J. Day9dbc15f2008-04-12 18:54:24 -07001259 list_for_each_entry(new_addr, &new_asoc->peer.transport_addr_list,
Joe Perches123031c2010-09-08 11:04:21 +00001260 transports) {
1261 if (!list_has_sctp_addr(&asoc->peer.transport_addr_list,
1262 &new_addr->ipaddr)) {
1263 sctp_sf_send_restart_abort(&new_addr->ipaddr, init,
1264 commands);
1265 ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001266 break;
Joe Perches123031c2010-09-08 11:04:21 +00001267 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001268 }
1269
1270 /* Return success if all addresses were found. */
Joe Perches123031c2010-09-08 11:04:21 +00001271 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001272}
1273
1274/* Populate the verification/tie tags based on overlapping INIT
1275 * scenario.
1276 *
1277 * Note: Do not use in CLOSED or SHUTDOWN-ACK-SENT state.
1278 */
1279static void sctp_tietags_populate(struct sctp_association *new_asoc,
1280 const struct sctp_association *asoc)
1281{
1282 switch (asoc->state) {
1283
1284 /* 5.2.1 INIT received in COOKIE-WAIT or COOKIE-ECHOED State */
1285
1286 case SCTP_STATE_COOKIE_WAIT:
1287 new_asoc->c.my_vtag = asoc->c.my_vtag;
1288 new_asoc->c.my_ttag = asoc->c.my_vtag;
1289 new_asoc->c.peer_ttag = 0;
1290 break;
1291
1292 case SCTP_STATE_COOKIE_ECHOED:
1293 new_asoc->c.my_vtag = asoc->c.my_vtag;
1294 new_asoc->c.my_ttag = asoc->c.my_vtag;
1295 new_asoc->c.peer_ttag = asoc->c.peer_vtag;
1296 break;
1297
1298 /* 5.2.2 Unexpected INIT in States Other than CLOSED, COOKIE-ECHOED,
1299 * COOKIE-WAIT and SHUTDOWN-ACK-SENT
1300 */
1301 default:
1302 new_asoc->c.my_ttag = asoc->c.my_vtag;
1303 new_asoc->c.peer_ttag = asoc->c.peer_vtag;
1304 break;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07001305 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001306
1307 /* Other parameters for the endpoint SHOULD be copied from the
1308 * existing parameters of the association (e.g. number of
1309 * outbound streams) into the INIT ACK and cookie.
1310 */
1311 new_asoc->rwnd = asoc->rwnd;
1312 new_asoc->c.sinit_num_ostreams = asoc->c.sinit_num_ostreams;
1313 new_asoc->c.sinit_max_instreams = asoc->c.sinit_max_instreams;
1314 new_asoc->c.initial_tsn = asoc->c.initial_tsn;
1315}
1316
1317/*
1318 * Compare vtag/tietag values to determine unexpected COOKIE-ECHO
1319 * handling action.
1320 *
1321 * RFC 2960 5.2.4 Handle a COOKIE ECHO when a TCB exists.
1322 *
1323 * Returns value representing action to be taken. These action values
1324 * correspond to Action/Description values in RFC 2960, Table 2.
1325 */
1326static char sctp_tietags_compare(struct sctp_association *new_asoc,
1327 const struct sctp_association *asoc)
1328{
1329 /* In this case, the peer may have restarted. */
1330 if ((asoc->c.my_vtag != new_asoc->c.my_vtag) &&
1331 (asoc->c.peer_vtag != new_asoc->c.peer_vtag) &&
1332 (asoc->c.my_vtag == new_asoc->c.my_ttag) &&
1333 (asoc->c.peer_vtag == new_asoc->c.peer_ttag))
1334 return 'A';
1335
1336 /* Collision case B. */
1337 if ((asoc->c.my_vtag == new_asoc->c.my_vtag) &&
1338 ((asoc->c.peer_vtag != new_asoc->c.peer_vtag) ||
1339 (0 == asoc->c.peer_vtag))) {
1340 return 'B';
1341 }
1342
1343 /* Collision case D. */
1344 if ((asoc->c.my_vtag == new_asoc->c.my_vtag) &&
1345 (asoc->c.peer_vtag == new_asoc->c.peer_vtag))
1346 return 'D';
1347
1348 /* Collision case C. */
1349 if ((asoc->c.my_vtag != new_asoc->c.my_vtag) &&
1350 (asoc->c.peer_vtag == new_asoc->c.peer_vtag) &&
1351 (0 == new_asoc->c.my_ttag) &&
1352 (0 == new_asoc->c.peer_ttag))
1353 return 'C';
1354
1355 /* No match to any of the special cases; discard this packet. */
1356 return 'E';
1357}
1358
1359/* Common helper routine for both duplicate and simulataneous INIT
1360 * chunk handling.
1361 */
1362static sctp_disposition_t sctp_sf_do_unexpected_init(
1363 const struct sctp_endpoint *ep,
1364 const struct sctp_association *asoc,
1365 const sctp_subtype_t type,
1366 void *arg, sctp_cmd_seq_t *commands)
1367{
1368 sctp_disposition_t retval;
1369 struct sctp_chunk *chunk = arg;
1370 struct sctp_chunk *repl;
1371 struct sctp_association *new_asoc;
1372 struct sctp_chunk *err_chunk;
1373 struct sctp_packet *packet;
1374 sctp_unrecognized_param_t *unk_param;
1375 int len;
1376
1377 /* 6.10 Bundling
1378 * An endpoint MUST NOT bundle INIT, INIT ACK or
1379 * SHUTDOWN COMPLETE with any other chunks.
1380 *
1381 * IG Section 2.11.2
1382 * Furthermore, we require that the receiver of an INIT chunk MUST
1383 * enforce these rules by silently discarding an arriving packet
1384 * with an INIT chunk that is bundled with other chunks.
1385 */
1386 if (!chunk->singleton)
1387 return sctp_sf_pdiscard(ep, asoc, type, arg, commands);
1388
1389 /* 3.1 A packet containing an INIT chunk MUST have a zero Verification
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09001390 * Tag.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001391 */
1392 if (chunk->sctp_hdr->vtag != 0)
1393 return sctp_sf_tabort_8_4_8(ep, asoc, type, arg, commands);
1394
1395 /* Make sure that the INIT chunk has a valid length.
1396 * In this case, we generate a protocol violation since we have
1397 * an association established.
1398 */
1399 if (!sctp_chunk_length_valid(chunk, sizeof(sctp_init_chunk_t)))
1400 return sctp_sf_violation_chunklen(ep, asoc, type, arg,
1401 commands);
1402 /* Grab the INIT header. */
1403 chunk->subh.init_hdr = (sctp_inithdr_t *) chunk->skb->data;
1404
1405 /* Tag the variable length parameters. */
1406 chunk->param_hdr.v = skb_pull(chunk->skb, sizeof(sctp_inithdr_t));
1407
1408 /* Verify the INIT chunk before processing it. */
1409 err_chunk = NULL;
1410 if (!sctp_verify_init(asoc, chunk->chunk_hdr->type,
1411 (sctp_init_chunk_t *)chunk->chunk_hdr, chunk,
1412 &err_chunk)) {
1413 /* This chunk contains fatal error. It is to be discarded.
1414 * Send an ABORT, with causes if there is any.
1415 */
1416 if (err_chunk) {
1417 packet = sctp_abort_pkt_new(ep, asoc, arg,
1418 (__u8 *)(err_chunk->chunk_hdr) +
1419 sizeof(sctp_chunkhdr_t),
1420 ntohs(err_chunk->chunk_hdr->length) -
1421 sizeof(sctp_chunkhdr_t));
1422
1423 if (packet) {
1424 sctp_add_cmd_sf(commands, SCTP_CMD_SEND_PKT,
1425 SCTP_PACKET(packet));
1426 SCTP_INC_STATS(SCTP_MIB_OUTCTRLCHUNKS);
1427 retval = SCTP_DISPOSITION_CONSUME;
1428 } else {
1429 retval = SCTP_DISPOSITION_NOMEM;
1430 }
1431 goto cleanup;
1432 } else {
1433 return sctp_sf_tabort_8_4_8(ep, asoc, type, arg,
1434 commands);
1435 }
1436 }
1437
1438 /*
1439 * Other parameters for the endpoint SHOULD be copied from the
1440 * existing parameters of the association (e.g. number of
1441 * outbound streams) into the INIT ACK and cookie.
1442 * FIXME: We are copying parameters from the endpoint not the
1443 * association.
1444 */
1445 new_asoc = sctp_make_temp_asoc(ep, chunk, GFP_ATOMIC);
1446 if (!new_asoc)
1447 goto nomem;
1448
Vlad Yasevich409b95a2009-11-10 08:57:34 +00001449 if (sctp_assoc_set_bind_addr_from_ep(new_asoc,
1450 sctp_scope(sctp_source(chunk)), GFP_ATOMIC) < 0)
1451 goto nomem;
1452
Linus Torvalds1da177e2005-04-16 15:20:36 -07001453 /* In the outbound INIT ACK the endpoint MUST copy its current
1454 * Verification Tag and Peers Verification tag into a reserved
1455 * place (local tie-tag and per tie-tag) within the state cookie.
1456 */
Wei Yongjunde6becd2011-04-19 21:30:51 +00001457 if (!sctp_process_init(new_asoc, chunk, sctp_source(chunk),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001458 (sctp_init_chunk_t *)chunk->chunk_hdr,
Vladislav Yasevichdf7deeb2006-08-22 00:19:51 -07001459 GFP_ATOMIC))
1460 goto nomem;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001461
1462 /* Make sure no new addresses are being added during the
1463 * restart. Do not do this check for COOKIE-WAIT state,
1464 * since there are no peer addresses to check against.
1465 * Upon return an ABORT will have been sent if needed.
1466 */
1467 if (!sctp_state(asoc, COOKIE_WAIT)) {
1468 if (!sctp_sf_check_restart_addrs(new_asoc, asoc, chunk,
1469 commands)) {
1470 retval = SCTP_DISPOSITION_CONSUME;
Vladislav Yasevichdf7deeb2006-08-22 00:19:51 -07001471 goto nomem_retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001472 }
1473 }
1474
1475 sctp_tietags_populate(new_asoc, asoc);
1476
1477 /* B) "Z" shall respond immediately with an INIT ACK chunk. */
1478
1479 /* If there are errors need to be reported for unknown parameters,
1480 * make sure to reserve enough room in the INIT ACK for them.
1481 */
1482 len = 0;
1483 if (err_chunk) {
1484 len = ntohs(err_chunk->chunk_hdr->length) -
1485 sizeof(sctp_chunkhdr_t);
1486 }
1487
Linus Torvalds1da177e2005-04-16 15:20:36 -07001488 repl = sctp_make_init_ack(new_asoc, chunk, GFP_ATOMIC, len);
1489 if (!repl)
1490 goto nomem;
1491
1492 /* If there are errors need to be reported for unknown parameters,
1493 * include them in the outgoing INIT ACK as "Unrecognized parameter"
1494 * parameter.
1495 */
1496 if (err_chunk) {
1497 /* Get the "Unrecognized parameter" parameter(s) out of the
1498 * ERROR chunk generated by sctp_verify_init(). Since the
1499 * error cause code for "unknown parameter" and the
1500 * "Unrecognized parameter" type is the same, we can
1501 * construct the parameters in INIT ACK by copying the
1502 * ERROR causes over.
1503 */
1504 unk_param = (sctp_unrecognized_param_t *)
1505 ((__u8 *)(err_chunk->chunk_hdr) +
1506 sizeof(sctp_chunkhdr_t));
1507 /* Replace the cause code with the "Unrecognized parameter"
1508 * parameter type.
1509 */
1510 sctp_addto_chunk(repl, len, unk_param);
1511 }
1512
1513 sctp_add_cmd_sf(commands, SCTP_CMD_NEW_ASOC, SCTP_ASOC(new_asoc));
1514 sctp_add_cmd_sf(commands, SCTP_CMD_REPLY, SCTP_CHUNK(repl));
1515
1516 /*
1517 * Note: After sending out INIT ACK with the State Cookie parameter,
1518 * "Z" MUST NOT allocate any resources for this new association.
1519 * Otherwise, "Z" will be vulnerable to resource attacks.
1520 */
1521 sctp_add_cmd_sf(commands, SCTP_CMD_DELETE_TCB, SCTP_NULL());
1522 retval = SCTP_DISPOSITION_CONSUME;
1523
Vladislav Yasevichdf7deeb2006-08-22 00:19:51 -07001524 return retval;
1525
1526nomem:
1527 retval = SCTP_DISPOSITION_NOMEM;
1528nomem_retval:
1529 if (new_asoc)
1530 sctp_association_free(new_asoc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001531cleanup:
1532 if (err_chunk)
1533 sctp_chunk_free(err_chunk);
1534 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001535}
1536
1537/*
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001538 * Handle simultaneous INIT.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001539 * This means we started an INIT and then we got an INIT request from
1540 * our peer.
1541 *
1542 * Section: 5.2.1 INIT received in COOKIE-WAIT or COOKIE-ECHOED State (Item B)
1543 * This usually indicates an initialization collision, i.e., each
1544 * endpoint is attempting, at about the same time, to establish an
1545 * association with the other endpoint.
1546 *
1547 * Upon receipt of an INIT in the COOKIE-WAIT or COOKIE-ECHOED state, an
1548 * endpoint MUST respond with an INIT ACK using the same parameters it
1549 * sent in its original INIT chunk (including its Verification Tag,
1550 * unchanged). These original parameters are combined with those from the
1551 * newly received INIT chunk. The endpoint shall also generate a State
1552 * Cookie with the INIT ACK. The endpoint uses the parameters sent in its
1553 * INIT to calculate the State Cookie.
1554 *
1555 * After that, the endpoint MUST NOT change its state, the T1-init
1556 * timer shall be left running and the corresponding TCB MUST NOT be
1557 * destroyed. The normal procedures for handling State Cookies when
1558 * a TCB exists will resolve the duplicate INITs to a single association.
1559 *
1560 * For an endpoint that is in the COOKIE-ECHOED state it MUST populate
1561 * its Tie-Tags with the Tag information of itself and its peer (see
1562 * section 5.2.2 for a description of the Tie-Tags).
1563 *
1564 * Verification Tag: Not explicit, but an INIT can not have a valid
1565 * verification tag, so we skip the check.
1566 *
1567 * Inputs
1568 * (endpoint, asoc, chunk)
1569 *
1570 * Outputs
1571 * (asoc, reply_msg, msg_up, timers, counters)
1572 *
1573 * The return value is the disposition of the chunk.
1574 */
1575sctp_disposition_t sctp_sf_do_5_2_1_siminit(const struct sctp_endpoint *ep,
1576 const struct sctp_association *asoc,
1577 const sctp_subtype_t type,
1578 void *arg,
1579 sctp_cmd_seq_t *commands)
1580{
1581 /* Call helper to do the real work for both simulataneous and
1582 * duplicate INIT chunk handling.
1583 */
1584 return sctp_sf_do_unexpected_init(ep, asoc, type, arg, commands);
1585}
1586
1587/*
1588 * Handle duplicated INIT messages. These are usually delayed
1589 * restransmissions.
1590 *
1591 * Section: 5.2.2 Unexpected INIT in States Other than CLOSED,
1592 * COOKIE-ECHOED and COOKIE-WAIT
1593 *
1594 * Unless otherwise stated, upon reception of an unexpected INIT for
1595 * this association, the endpoint shall generate an INIT ACK with a
1596 * State Cookie. In the outbound INIT ACK the endpoint MUST copy its
1597 * current Verification Tag and peer's Verification Tag into a reserved
1598 * place within the state cookie. We shall refer to these locations as
1599 * the Peer's-Tie-Tag and the Local-Tie-Tag. The outbound SCTP packet
1600 * containing this INIT ACK MUST carry a Verification Tag value equal to
1601 * the Initiation Tag found in the unexpected INIT. And the INIT ACK
1602 * MUST contain a new Initiation Tag (randomly generated see Section
1603 * 5.3.1). Other parameters for the endpoint SHOULD be copied from the
1604 * existing parameters of the association (e.g. number of outbound
1605 * streams) into the INIT ACK and cookie.
1606 *
1607 * After sending out the INIT ACK, the endpoint shall take no further
1608 * actions, i.e., the existing association, including its current state,
1609 * and the corresponding TCB MUST NOT be changed.
1610 *
1611 * Note: Only when a TCB exists and the association is not in a COOKIE-
1612 * WAIT state are the Tie-Tags populated. For a normal association INIT
1613 * (i.e. the endpoint is in a COOKIE-WAIT state), the Tie-Tags MUST be
1614 * set to 0 (indicating that no previous TCB existed). The INIT ACK and
1615 * State Cookie are populated as specified in section 5.2.1.
1616 *
1617 * Verification Tag: Not specified, but an INIT has no way of knowing
1618 * what the verification tag could be, so we ignore it.
1619 *
1620 * Inputs
1621 * (endpoint, asoc, chunk)
1622 *
1623 * Outputs
1624 * (asoc, reply_msg, msg_up, timers, counters)
1625 *
1626 * The return value is the disposition of the chunk.
1627 */
1628sctp_disposition_t sctp_sf_do_5_2_2_dupinit(const struct sctp_endpoint *ep,
1629 const struct sctp_association *asoc,
1630 const sctp_subtype_t type,
1631 void *arg,
1632 sctp_cmd_seq_t *commands)
1633{
1634 /* Call helper to do the real work for both simulataneous and
1635 * duplicate INIT chunk handling.
1636 */
1637 return sctp_sf_do_unexpected_init(ep, asoc, type, arg, commands);
1638}
1639
1640
Vlad Yasevich610ab732007-01-15 19:18:30 -08001641/*
1642 * Unexpected INIT-ACK handler.
1643 *
1644 * Section 5.2.3
1645 * If an INIT ACK received by an endpoint in any state other than the
1646 * COOKIE-WAIT state, the endpoint should discard the INIT ACK chunk.
1647 * An unexpected INIT ACK usually indicates the processing of an old or
1648 * duplicated INIT chunk.
1649*/
1650sctp_disposition_t sctp_sf_do_5_2_3_initack(const struct sctp_endpoint *ep,
1651 const struct sctp_association *asoc,
1652 const sctp_subtype_t type,
1653 void *arg, sctp_cmd_seq_t *commands)
1654{
1655 /* Per the above section, we'll discard the chunk if we have an
1656 * endpoint. If this is an OOTB INIT-ACK, treat it as such.
1657 */
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09001658 if (ep == sctp_sk((sctp_get_ctl_sock()))->ep)
Vlad Yasevich610ab732007-01-15 19:18:30 -08001659 return sctp_sf_ootb(ep, asoc, type, arg, commands);
1660 else
1661 return sctp_sf_discard_chunk(ep, asoc, type, arg, commands);
1662}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001663
1664/* Unexpected COOKIE-ECHO handler for peer restart (Table 2, action 'A')
1665 *
1666 * Section 5.2.4
1667 * A) In this case, the peer may have restarted.
1668 */
1669static sctp_disposition_t sctp_sf_do_dupcook_a(const struct sctp_endpoint *ep,
1670 const struct sctp_association *asoc,
1671 struct sctp_chunk *chunk,
1672 sctp_cmd_seq_t *commands,
1673 struct sctp_association *new_asoc)
1674{
1675 sctp_init_chunk_t *peer_init;
1676 struct sctp_ulpevent *ev;
1677 struct sctp_chunk *repl;
1678 struct sctp_chunk *err;
1679 sctp_disposition_t disposition;
1680
1681 /* new_asoc is a brand-new association, so these are not yet
1682 * side effects--it is safe to run them here.
1683 */
1684 peer_init = &chunk->subh.cookie_hdr->c.peer_init[0];
1685
Wei Yongjunde6becd2011-04-19 21:30:51 +00001686 if (!sctp_process_init(new_asoc, chunk, sctp_source(chunk), peer_init,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001687 GFP_ATOMIC))
1688 goto nomem;
1689
1690 /* Make sure no new addresses are being added during the
1691 * restart. Though this is a pretty complicated attack
1692 * since you'd have to get inside the cookie.
1693 */
1694 if (!sctp_sf_check_restart_addrs(new_asoc, asoc, chunk, commands)) {
1695 return SCTP_DISPOSITION_CONSUME;
1696 }
1697
1698 /* If the endpoint is in the SHUTDOWN-ACK-SENT state and recognizes
1699 * the peer has restarted (Action A), it MUST NOT setup a new
1700 * association but instead resend the SHUTDOWN ACK and send an ERROR
1701 * chunk with a "Cookie Received while Shutting Down" error cause to
1702 * its peer.
1703 */
1704 if (sctp_state(asoc, SHUTDOWN_ACK_SENT)) {
1705 disposition = sctp_sf_do_9_2_reshutack(ep, asoc,
1706 SCTP_ST_CHUNK(chunk->chunk_hdr->type),
1707 chunk, commands);
1708 if (SCTP_DISPOSITION_NOMEM == disposition)
1709 goto nomem;
1710
1711 err = sctp_make_op_error(asoc, chunk,
1712 SCTP_ERROR_COOKIE_IN_SHUTDOWN,
Vlad Yasevich6383cfb2009-11-23 15:53:56 -05001713 NULL, 0, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001714 if (err)
1715 sctp_add_cmd_sf(commands, SCTP_CMD_REPLY,
1716 SCTP_CHUNK(err));
1717
1718 return SCTP_DISPOSITION_CONSUME;
1719 }
1720
Wei Yongjuna000c012011-05-29 23:23:36 +00001721 /* For now, stop pending T3-rtx and SACK timers, fail any unsent/unacked
1722 * data. Consider the optional choice of resending of this data.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001723 */
Wei Yongjuna000c012011-05-29 23:23:36 +00001724 sctp_add_cmd_sf(commands, SCTP_CMD_T3_RTX_TIMERS_STOP, SCTP_NULL());
1725 sctp_add_cmd_sf(commands, SCTP_CMD_TIMER_STOP,
1726 SCTP_TO(SCTP_EVENT_TIMEOUT_SACK));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001727 sctp_add_cmd_sf(commands, SCTP_CMD_PURGE_OUTQUEUE, SCTP_NULL());
1728
Wei Yongjuna000c012011-05-29 23:23:36 +00001729 /* Stop pending T4-rto timer, teardown ASCONF queue, ASCONF-ACK queue
1730 * and ASCONF-ACK cache.
1731 */
1732 sctp_add_cmd_sf(commands, SCTP_CMD_TIMER_STOP,
1733 SCTP_TO(SCTP_EVENT_TIMEOUT_T4_RTO));
1734 sctp_add_cmd_sf(commands, SCTP_CMD_PURGE_ASCONF_QUEUE, SCTP_NULL());
1735
Linus Torvalds1da177e2005-04-16 15:20:36 -07001736 repl = sctp_make_cookie_ack(new_asoc, chunk);
1737 if (!repl)
1738 goto nomem;
1739
Linus Torvalds1da177e2005-04-16 15:20:36 -07001740 /* Report association restart to upper layer. */
1741 ev = sctp_ulpevent_make_assoc_change(asoc, 0, SCTP_RESTART, 0,
1742 new_asoc->c.sinit_num_ostreams,
1743 new_asoc->c.sinit_max_instreams,
Vlad Yasevicha5a35e72007-03-23 11:34:08 -07001744 NULL, GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001745 if (!ev)
1746 goto nomem_ev;
1747
Vladislav Yasevichdf7deeb2006-08-22 00:19:51 -07001748 /* Update the content of current association. */
1749 sctp_add_cmd_sf(commands, SCTP_CMD_UPDATE_ASSOC, SCTP_ASOC(new_asoc));
1750 sctp_add_cmd_sf(commands, SCTP_CMD_REPLY, SCTP_CHUNK(repl));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001751 sctp_add_cmd_sf(commands, SCTP_CMD_EVENT_ULP, SCTP_ULPEVENT(ev));
1752 return SCTP_DISPOSITION_CONSUME;
1753
1754nomem_ev:
1755 sctp_chunk_free(repl);
1756nomem:
1757 return SCTP_DISPOSITION_NOMEM;
1758}
1759
1760/* Unexpected COOKIE-ECHO handler for setup collision (Table 2, action 'B')
1761 *
1762 * Section 5.2.4
1763 * B) In this case, both sides may be attempting to start an association
1764 * at about the same time but the peer endpoint started its INIT
1765 * after responding to the local endpoint's INIT
1766 */
1767/* This case represents an initialization collision. */
1768static sctp_disposition_t sctp_sf_do_dupcook_b(const struct sctp_endpoint *ep,
1769 const struct sctp_association *asoc,
1770 struct sctp_chunk *chunk,
1771 sctp_cmd_seq_t *commands,
1772 struct sctp_association *new_asoc)
1773{
1774 sctp_init_chunk_t *peer_init;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001775 struct sctp_chunk *repl;
1776
1777 /* new_asoc is a brand-new association, so these are not yet
1778 * side effects--it is safe to run them here.
1779 */
1780 peer_init = &chunk->subh.cookie_hdr->c.peer_init[0];
Wei Yongjunde6becd2011-04-19 21:30:51 +00001781 if (!sctp_process_init(new_asoc, chunk, sctp_source(chunk), peer_init,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001782 GFP_ATOMIC))
1783 goto nomem;
1784
1785 /* Update the content of current association. */
1786 sctp_add_cmd_sf(commands, SCTP_CMD_UPDATE_ASSOC, SCTP_ASOC(new_asoc));
1787 sctp_add_cmd_sf(commands, SCTP_CMD_NEW_STATE,
1788 SCTP_STATE(SCTP_STATE_ESTABLISHED));
1789 SCTP_INC_STATS(SCTP_MIB_CURRESTAB);
1790 sctp_add_cmd_sf(commands, SCTP_CMD_HB_TIMERS_START, SCTP_NULL());
1791
1792 repl = sctp_make_cookie_ack(new_asoc, chunk);
1793 if (!repl)
1794 goto nomem;
1795
1796 sctp_add_cmd_sf(commands, SCTP_CMD_REPLY, SCTP_CHUNK(repl));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001797
1798 /* RFC 2960 5.1 Normal Establishment of an Association
1799 *
1800 * D) IMPLEMENTATION NOTE: An implementation may choose to
1801 * send the Communication Up notification to the SCTP user
1802 * upon reception of a valid COOKIE ECHO chunk.
Vlad Yasevich07d93962007-05-04 13:55:27 -07001803 *
1804 * Sadly, this needs to be implemented as a side-effect, because
1805 * we are not guaranteed to have set the association id of the real
1806 * association and so these notifications need to be delayed until
1807 * the association id is allocated.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001808 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001809
Vlad Yasevich07d93962007-05-04 13:55:27 -07001810 sctp_add_cmd_sf(commands, SCTP_CMD_ASSOC_CHANGE, SCTP_U8(SCTP_COMM_UP));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001811
1812 /* Sockets API Draft Section 5.3.1.6
Ivan Skytte Jorgensen0f3fffd2006-12-20 16:07:04 -08001813 * When a peer sends a Adaptation Layer Indication parameter , SCTP
Linus Torvalds1da177e2005-04-16 15:20:36 -07001814 * delivers this notification to inform the application that of the
Ivan Skytte Jorgensen0f3fffd2006-12-20 16:07:04 -08001815 * peers requested adaptation layer.
Vlad Yasevich07d93962007-05-04 13:55:27 -07001816 *
1817 * This also needs to be done as a side effect for the same reason as
1818 * above.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001819 */
Vlad Yasevich07d93962007-05-04 13:55:27 -07001820 if (asoc->peer.adaptation_ind)
1821 sctp_add_cmd_sf(commands, SCTP_CMD_ADAPTATION_IND, SCTP_NULL());
Linus Torvalds1da177e2005-04-16 15:20:36 -07001822
1823 return SCTP_DISPOSITION_CONSUME;
1824
Linus Torvalds1da177e2005-04-16 15:20:36 -07001825nomem:
1826 return SCTP_DISPOSITION_NOMEM;
1827}
1828
1829/* Unexpected COOKIE-ECHO handler for setup collision (Table 2, action 'C')
1830 *
1831 * Section 5.2.4
1832 * C) In this case, the local endpoint's cookie has arrived late.
1833 * Before it arrived, the local endpoint sent an INIT and received an
1834 * INIT-ACK and finally sent a COOKIE ECHO with the peer's same tag
1835 * but a new tag of its own.
1836 */
1837/* This case represents an initialization collision. */
1838static sctp_disposition_t sctp_sf_do_dupcook_c(const struct sctp_endpoint *ep,
1839 const struct sctp_association *asoc,
1840 struct sctp_chunk *chunk,
1841 sctp_cmd_seq_t *commands,
1842 struct sctp_association *new_asoc)
1843{
1844 /* The cookie should be silently discarded.
1845 * The endpoint SHOULD NOT change states and should leave
1846 * any timers running.
1847 */
1848 return SCTP_DISPOSITION_DISCARD;
1849}
1850
1851/* Unexpected COOKIE-ECHO handler lost chunk (Table 2, action 'D')
1852 *
1853 * Section 5.2.4
1854 *
1855 * D) When both local and remote tags match the endpoint should always
1856 * enter the ESTABLISHED state, if it has not already done so.
1857 */
1858/* This case represents an initialization collision. */
1859static sctp_disposition_t sctp_sf_do_dupcook_d(const struct sctp_endpoint *ep,
1860 const struct sctp_association *asoc,
1861 struct sctp_chunk *chunk,
1862 sctp_cmd_seq_t *commands,
1863 struct sctp_association *new_asoc)
1864{
Vladislav Yasevichdf7deeb2006-08-22 00:19:51 -07001865 struct sctp_ulpevent *ev = NULL, *ai_ev = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001866 struct sctp_chunk *repl;
1867
1868 /* Clarification from Implementor's Guide:
1869 * D) When both local and remote tags match the endpoint should
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09001870 * enter the ESTABLISHED state, if it is in the COOKIE-ECHOED state.
1871 * It should stop any cookie timer that may be running and send
1872 * a COOKIE ACK.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001873 */
1874
1875 /* Don't accidentally move back into established state. */
1876 if (asoc->state < SCTP_STATE_ESTABLISHED) {
1877 sctp_add_cmd_sf(commands, SCTP_CMD_TIMER_STOP,
1878 SCTP_TO(SCTP_EVENT_TIMEOUT_T1_COOKIE));
1879 sctp_add_cmd_sf(commands, SCTP_CMD_NEW_STATE,
1880 SCTP_STATE(SCTP_STATE_ESTABLISHED));
1881 SCTP_INC_STATS(SCTP_MIB_CURRESTAB);
1882 sctp_add_cmd_sf(commands, SCTP_CMD_HB_TIMERS_START,
1883 SCTP_NULL());
1884
1885 /* RFC 2960 5.1 Normal Establishment of an Association
1886 *
1887 * D) IMPLEMENTATION NOTE: An implementation may choose
1888 * to send the Communication Up notification to the
1889 * SCTP user upon reception of a valid COOKIE
1890 * ECHO chunk.
1891 */
Vladislav Yasevichdf7deeb2006-08-22 00:19:51 -07001892 ev = sctp_ulpevent_make_assoc_change(asoc, 0,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001893 SCTP_COMM_UP, 0,
Vladislav Yasevichdf7deeb2006-08-22 00:19:51 -07001894 asoc->c.sinit_num_ostreams,
1895 asoc->c.sinit_max_instreams,
YOSHIFUJI Hideaki9cbcbf42007-07-19 10:44:50 +09001896 NULL, GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001897 if (!ev)
1898 goto nomem;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001899
1900 /* Sockets API Draft Section 5.3.1.6
Ivan Skytte Jorgensen0f3fffd2006-12-20 16:07:04 -08001901 * When a peer sends a Adaptation Layer Indication parameter,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001902 * SCTP delivers this notification to inform the application
Ivan Skytte Jorgensen0f3fffd2006-12-20 16:07:04 -08001903 * that of the peers requested adaptation layer.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001904 */
Ivan Skytte Jorgensen0f3fffd2006-12-20 16:07:04 -08001905 if (asoc->peer.adaptation_ind) {
1906 ai_ev = sctp_ulpevent_make_adaptation_indication(asoc,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001907 GFP_ATOMIC);
Vladislav Yasevichdf7deeb2006-08-22 00:19:51 -07001908 if (!ai_ev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001909 goto nomem;
1910
Linus Torvalds1da177e2005-04-16 15:20:36 -07001911 }
1912 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001913
1914 repl = sctp_make_cookie_ack(new_asoc, chunk);
1915 if (!repl)
1916 goto nomem;
1917
Vlad Yasevich2e3216c2008-06-19 16:08:18 -07001918 sctp_add_cmd_sf(commands, SCTP_CMD_REPLY, SCTP_CHUNK(repl));
1919
Vladislav Yasevichdf7deeb2006-08-22 00:19:51 -07001920 if (ev)
1921 sctp_add_cmd_sf(commands, SCTP_CMD_EVENT_ULP,
1922 SCTP_ULPEVENT(ev));
1923 if (ai_ev)
1924 sctp_add_cmd_sf(commands, SCTP_CMD_EVENT_ULP,
1925 SCTP_ULPEVENT(ai_ev));
1926
Linus Torvalds1da177e2005-04-16 15:20:36 -07001927 return SCTP_DISPOSITION_CONSUME;
1928
1929nomem:
Vladislav Yasevichdf7deeb2006-08-22 00:19:51 -07001930 if (ai_ev)
1931 sctp_ulpevent_free(ai_ev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001932 if (ev)
1933 sctp_ulpevent_free(ev);
1934 return SCTP_DISPOSITION_NOMEM;
1935}
1936
1937/*
1938 * Handle a duplicate COOKIE-ECHO. This usually means a cookie-carrying
1939 * chunk was retransmitted and then delayed in the network.
1940 *
1941 * Section: 5.2.4 Handle a COOKIE ECHO when a TCB exists
1942 *
1943 * Verification Tag: None. Do cookie validation.
1944 *
1945 * Inputs
1946 * (endpoint, asoc, chunk)
1947 *
1948 * Outputs
1949 * (asoc, reply_msg, msg_up, timers, counters)
1950 *
1951 * The return value is the disposition of the chunk.
1952 */
1953sctp_disposition_t sctp_sf_do_5_2_4_dupcook(const struct sctp_endpoint *ep,
1954 const struct sctp_association *asoc,
1955 const sctp_subtype_t type,
1956 void *arg,
1957 sctp_cmd_seq_t *commands)
1958{
1959 sctp_disposition_t retval;
1960 struct sctp_chunk *chunk = arg;
1961 struct sctp_association *new_asoc;
1962 int error = 0;
1963 char action;
1964 struct sctp_chunk *err_chk_p;
1965
1966 /* Make sure that the chunk has a valid length from the protocol
1967 * perspective. In this case check to make sure we have at least
1968 * enough for the chunk header. Cookie length verification is
1969 * done later.
1970 */
1971 if (!sctp_chunk_length_valid(chunk, sizeof(sctp_chunkhdr_t)))
1972 return sctp_sf_violation_chunklen(ep, asoc, type, arg,
1973 commands);
1974
1975 /* "Decode" the chunk. We have no optional parameters so we
1976 * are in good shape.
1977 */
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09001978 chunk->subh.cookie_hdr = (struct sctp_signed_cookie *)chunk->skb->data;
Sridhar Samudrala62b08082006-05-05 17:04:43 -07001979 if (!pskb_pull(chunk->skb, ntohs(chunk->chunk_hdr->length) -
1980 sizeof(sctp_chunkhdr_t)))
1981 goto nomem;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001982
1983 /* In RFC 2960 5.2.4 3, if both Verification Tags in the State Cookie
1984 * of a duplicate COOKIE ECHO match the Verification Tags of the
1985 * current association, consider the State Cookie valid even if
1986 * the lifespan is exceeded.
1987 */
1988 new_asoc = sctp_unpack_cookie(ep, asoc, chunk, GFP_ATOMIC, &error,
1989 &err_chk_p);
1990
1991 /* FIXME:
1992 * If the re-build failed, what is the proper error path
1993 * from here?
1994 *
1995 * [We should abort the association. --piggy]
1996 */
1997 if (!new_asoc) {
1998 /* FIXME: Several errors are possible. A bad cookie should
1999 * be silently discarded, but think about logging it too.
2000 */
2001 switch (error) {
2002 case -SCTP_IERROR_NOMEM:
2003 goto nomem;
2004
2005 case -SCTP_IERROR_STALE_COOKIE:
2006 sctp_send_stale_cookie_err(ep, asoc, chunk, commands,
2007 err_chk_p);
2008 return sctp_sf_pdiscard(ep, asoc, type, arg, commands);
2009 case -SCTP_IERROR_BAD_SIG:
2010 default:
2011 return sctp_sf_pdiscard(ep, asoc, type, arg, commands);
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07002012 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002013 }
2014
2015 /* Compare the tie_tag in cookie with the verification tag of
2016 * current association.
2017 */
2018 action = sctp_tietags_compare(new_asoc, asoc);
2019
2020 switch (action) {
2021 case 'A': /* Association restart. */
2022 retval = sctp_sf_do_dupcook_a(ep, asoc, chunk, commands,
2023 new_asoc);
2024 break;
2025
2026 case 'B': /* Collision case B. */
2027 retval = sctp_sf_do_dupcook_b(ep, asoc, chunk, commands,
2028 new_asoc);
2029 break;
2030
2031 case 'C': /* Collision case C. */
2032 retval = sctp_sf_do_dupcook_c(ep, asoc, chunk, commands,
2033 new_asoc);
2034 break;
2035
2036 case 'D': /* Collision case D. */
2037 retval = sctp_sf_do_dupcook_d(ep, asoc, chunk, commands,
2038 new_asoc);
2039 break;
2040
2041 default: /* Discard packet for all others. */
2042 retval = sctp_sf_pdiscard(ep, asoc, type, arg, commands);
2043 break;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07002044 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002045
2046 /* Delete the tempory new association. */
2047 sctp_add_cmd_sf(commands, SCTP_CMD_NEW_ASOC, SCTP_ASOC(new_asoc));
2048 sctp_add_cmd_sf(commands, SCTP_CMD_DELETE_TCB, SCTP_NULL());
2049
2050 return retval;
2051
2052nomem:
2053 return SCTP_DISPOSITION_NOMEM;
2054}
2055
2056/*
2057 * Process an ABORT. (SHUTDOWN-PENDING state)
2058 *
2059 * See sctp_sf_do_9_1_abort().
2060 */
2061sctp_disposition_t sctp_sf_shutdown_pending_abort(
2062 const struct sctp_endpoint *ep,
2063 const struct sctp_association *asoc,
2064 const sctp_subtype_t type,
2065 void *arg,
2066 sctp_cmd_seq_t *commands)
2067{
2068 struct sctp_chunk *chunk = arg;
2069
2070 if (!sctp_vtag_verify_either(chunk, asoc))
2071 return sctp_sf_pdiscard(ep, asoc, type, arg, commands);
2072
2073 /* Make sure that the ABORT chunk has a valid length.
2074 * Since this is an ABORT chunk, we have to discard it
2075 * because of the following text:
2076 * RFC 2960, Section 3.3.7
2077 * If an endpoint receives an ABORT with a format error or for an
2078 * association that doesn't exist, it MUST silently discard it.
Lucas De Marchi25985ed2011-03-30 22:57:33 -03002079 * Because the length is "invalid", we can't really discard just
Linus Torvalds1da177e2005-04-16 15:20:36 -07002080 * as we do not know its true length. So, to be safe, discard the
2081 * packet.
2082 */
2083 if (!sctp_chunk_length_valid(chunk, sizeof(sctp_abort_chunk_t)))
2084 return sctp_sf_pdiscard(ep, asoc, type, arg, commands);
2085
Vlad Yasevich75205f42007-12-20 14:12:59 -08002086 /* ADD-IP: Special case for ABORT chunks
2087 * F4) One special consideration is that ABORT Chunks arriving
2088 * destined to the IP address being deleted MUST be
2089 * ignored (see Section 5.3.1 for further details).
2090 */
2091 if (SCTP_ADDR_DEL ==
2092 sctp_bind_addr_state(&asoc->base.bind_addr, &chunk->dest))
2093 return sctp_sf_discard_chunk(ep, asoc, type, arg, commands);
2094
Vlad Yasevich75205f42007-12-20 14:12:59 -08002095 return __sctp_sf_do_9_1_abort(ep, asoc, type, arg, commands);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002096}
2097
2098/*
2099 * Process an ABORT. (SHUTDOWN-SENT state)
2100 *
2101 * See sctp_sf_do_9_1_abort().
2102 */
2103sctp_disposition_t sctp_sf_shutdown_sent_abort(const struct sctp_endpoint *ep,
2104 const struct sctp_association *asoc,
2105 const sctp_subtype_t type,
2106 void *arg,
2107 sctp_cmd_seq_t *commands)
2108{
2109 struct sctp_chunk *chunk = arg;
2110
2111 if (!sctp_vtag_verify_either(chunk, asoc))
2112 return sctp_sf_pdiscard(ep, asoc, type, arg, commands);
2113
2114 /* Make sure that the ABORT chunk has a valid length.
2115 * Since this is an ABORT chunk, we have to discard it
2116 * because of the following text:
2117 * RFC 2960, Section 3.3.7
2118 * If an endpoint receives an ABORT with a format error or for an
2119 * association that doesn't exist, it MUST silently discard it.
Lucas De Marchi25985ed2011-03-30 22:57:33 -03002120 * Because the length is "invalid", we can't really discard just
Linus Torvalds1da177e2005-04-16 15:20:36 -07002121 * as we do not know its true length. So, to be safe, discard the
2122 * packet.
2123 */
2124 if (!sctp_chunk_length_valid(chunk, sizeof(sctp_abort_chunk_t)))
2125 return sctp_sf_pdiscard(ep, asoc, type, arg, commands);
2126
Vlad Yasevich75205f42007-12-20 14:12:59 -08002127 /* ADD-IP: Special case for ABORT chunks
2128 * F4) One special consideration is that ABORT Chunks arriving
2129 * destined to the IP address being deleted MUST be
2130 * ignored (see Section 5.3.1 for further details).
2131 */
2132 if (SCTP_ADDR_DEL ==
2133 sctp_bind_addr_state(&asoc->base.bind_addr, &chunk->dest))
2134 return sctp_sf_discard_chunk(ep, asoc, type, arg, commands);
2135
Linus Torvalds1da177e2005-04-16 15:20:36 -07002136 /* Stop the T2-shutdown timer. */
2137 sctp_add_cmd_sf(commands, SCTP_CMD_TIMER_STOP,
2138 SCTP_TO(SCTP_EVENT_TIMEOUT_T2_SHUTDOWN));
2139
2140 /* Stop the T5-shutdown guard timer. */
2141 sctp_add_cmd_sf(commands, SCTP_CMD_TIMER_STOP,
2142 SCTP_TO(SCTP_EVENT_TIMEOUT_T5_SHUTDOWN_GUARD));
2143
Vlad Yasevich75205f42007-12-20 14:12:59 -08002144 return __sctp_sf_do_9_1_abort(ep, asoc, type, arg, commands);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002145}
2146
2147/*
2148 * Process an ABORT. (SHUTDOWN-ACK-SENT state)
2149 *
2150 * See sctp_sf_do_9_1_abort().
2151 */
2152sctp_disposition_t sctp_sf_shutdown_ack_sent_abort(
2153 const struct sctp_endpoint *ep,
2154 const struct sctp_association *asoc,
2155 const sctp_subtype_t type,
2156 void *arg,
2157 sctp_cmd_seq_t *commands)
2158{
2159 /* The same T2 timer, so we should be able to use
2160 * common function with the SHUTDOWN-SENT state.
2161 */
2162 return sctp_sf_shutdown_sent_abort(ep, asoc, type, arg, commands);
2163}
2164
2165/*
2166 * Handle an Error received in COOKIE_ECHOED state.
2167 *
2168 * Only handle the error type of stale COOKIE Error, the other errors will
2169 * be ignored.
2170 *
2171 * Inputs
2172 * (endpoint, asoc, chunk)
2173 *
2174 * Outputs
2175 * (asoc, reply_msg, msg_up, timers, counters)
2176 *
2177 * The return value is the disposition of the chunk.
2178 */
2179sctp_disposition_t sctp_sf_cookie_echoed_err(const struct sctp_endpoint *ep,
2180 const struct sctp_association *asoc,
2181 const sctp_subtype_t type,
2182 void *arg,
2183 sctp_cmd_seq_t *commands)
2184{
2185 struct sctp_chunk *chunk = arg;
2186 sctp_errhdr_t *err;
2187
2188 if (!sctp_vtag_verify(chunk, asoc))
2189 return sctp_sf_pdiscard(ep, asoc, type, arg, commands);
2190
2191 /* Make sure that the ERROR chunk has a valid length.
2192 * The parameter walking depends on this as well.
2193 */
2194 if (!sctp_chunk_length_valid(chunk, sizeof(sctp_operr_chunk_t)))
2195 return sctp_sf_violation_chunklen(ep, asoc, type, arg,
2196 commands);
2197
2198 /* Process the error here */
2199 /* FUTURE FIXME: When PR-SCTP related and other optional
2200 * parms are emitted, this will have to change to handle multiple
2201 * errors.
2202 */
2203 sctp_walk_errors(err, chunk->chunk_hdr) {
2204 if (SCTP_ERROR_STALE_COOKIE == err->cause)
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09002205 return sctp_sf_do_5_2_6_stale(ep, asoc, type,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002206 arg, commands);
2207 }
2208
2209 /* It is possible to have malformed error causes, and that
2210 * will cause us to end the walk early. However, since
2211 * we are discarding the packet, there should be no adverse
2212 * affects.
2213 */
2214 return sctp_sf_pdiscard(ep, asoc, type, arg, commands);
2215}
2216
2217/*
2218 * Handle a Stale COOKIE Error
2219 *
2220 * Section: 5.2.6 Handle Stale COOKIE Error
2221 * If the association is in the COOKIE-ECHOED state, the endpoint may elect
2222 * one of the following three alternatives.
2223 * ...
2224 * 3) Send a new INIT chunk to the endpoint, adding a Cookie
2225 * Preservative parameter requesting an extension to the lifetime of
2226 * the State Cookie. When calculating the time extension, an
2227 * implementation SHOULD use the RTT information measured based on the
2228 * previous COOKIE ECHO / ERROR exchange, and should add no more
2229 * than 1 second beyond the measured RTT, due to long State Cookie
2230 * lifetimes making the endpoint more subject to a replay attack.
2231 *
2232 * Verification Tag: Not explicit, but safe to ignore.
2233 *
2234 * Inputs
2235 * (endpoint, asoc, chunk)
2236 *
2237 * Outputs
2238 * (asoc, reply_msg, msg_up, timers, counters)
2239 *
2240 * The return value is the disposition of the chunk.
2241 */
2242static sctp_disposition_t sctp_sf_do_5_2_6_stale(const struct sctp_endpoint *ep,
2243 const struct sctp_association *asoc,
2244 const sctp_subtype_t type,
2245 void *arg,
2246 sctp_cmd_seq_t *commands)
2247{
2248 struct sctp_chunk *chunk = arg;
2249 time_t stale;
2250 sctp_cookie_preserve_param_t bht;
2251 sctp_errhdr_t *err;
2252 struct sctp_chunk *reply;
2253 struct sctp_bind_addr *bp;
Frank Filz3f7a87d2005-06-20 13:14:57 -07002254 int attempts = asoc->init_err_counter + 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002255
Vlad Yasevich81845c22006-01-30 15:59:54 -08002256 if (attempts > asoc->max_init_attempts) {
Sridhar Samudrala8de8c872006-05-19 10:58:12 -07002257 sctp_add_cmd_sf(commands, SCTP_CMD_SET_SK_ERR,
2258 SCTP_ERROR(ETIMEDOUT));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002259 sctp_add_cmd_sf(commands, SCTP_CMD_INIT_FAILED,
Al Virodc251b22006-11-20 17:00:44 -08002260 SCTP_PERR(SCTP_ERROR_STALE_COOKIE));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002261 return SCTP_DISPOSITION_DELETE_TCB;
2262 }
2263
2264 err = (sctp_errhdr_t *)(chunk->skb->data);
2265
2266 /* When calculating the time extension, an implementation
2267 * SHOULD use the RTT information measured based on the
2268 * previous COOKIE ECHO / ERROR exchange, and should add no
2269 * more than 1 second beyond the measured RTT, due to long
2270 * State Cookie lifetimes making the endpoint more subject to
2271 * a replay attack.
2272 * Measure of Staleness's unit is usec. (1/1000000 sec)
2273 * Suggested Cookie Life-span Increment's unit is msec.
2274 * (1/1000 sec)
2275 * In general, if you use the suggested cookie life, the value
2276 * found in the field of measure of staleness should be doubled
2277 * to give ample time to retransmit the new cookie and thus
2278 * yield a higher probability of success on the reattempt.
2279 */
Al Viro34bcca22006-11-20 17:27:15 -08002280 stale = ntohl(*(__be32 *)((u8 *)err + sizeof(sctp_errhdr_t)));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002281 stale = (stale * 2) / 1000;
2282
2283 bht.param_hdr.type = SCTP_PARAM_COOKIE_PRESERVATIVE;
2284 bht.param_hdr.length = htons(sizeof(bht));
2285 bht.lifespan_increment = htonl(stale);
2286
2287 /* Build that new INIT chunk. */
2288 bp = (struct sctp_bind_addr *) &asoc->base.bind_addr;
2289 reply = sctp_make_init(asoc, bp, GFP_ATOMIC, sizeof(bht));
2290 if (!reply)
2291 goto nomem;
2292
2293 sctp_addto_chunk(reply, sizeof(bht), &bht);
2294
2295 /* Clear peer's init_tag cached in assoc as we are sending a new INIT */
2296 sctp_add_cmd_sf(commands, SCTP_CMD_CLEAR_INIT_TAG, SCTP_NULL());
2297
2298 /* Stop pending T3-rtx and heartbeat timers */
2299 sctp_add_cmd_sf(commands, SCTP_CMD_T3_RTX_TIMERS_STOP, SCTP_NULL());
2300 sctp_add_cmd_sf(commands, SCTP_CMD_HB_TIMERS_STOP, SCTP_NULL());
2301
2302 /* Delete non-primary peer ip addresses since we are transitioning
2303 * back to the COOKIE-WAIT state
2304 */
2305 sctp_add_cmd_sf(commands, SCTP_CMD_DEL_NON_PRIMARY, SCTP_NULL());
2306
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09002307 /* If we've sent any data bundled with COOKIE-ECHO we will need to
2308 * resend
Linus Torvalds1da177e2005-04-16 15:20:36 -07002309 */
Vlad Yasevichb6157d82007-10-24 15:59:16 -04002310 sctp_add_cmd_sf(commands, SCTP_CMD_T1_RETRAN,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002311 SCTP_TRANSPORT(asoc->peer.primary_path));
2312
2313 /* Cast away the const modifier, as we want to just
2314 * rerun it through as a sideffect.
2315 */
Frank Filz3f7a87d2005-06-20 13:14:57 -07002316 sctp_add_cmd_sf(commands, SCTP_CMD_INIT_COUNTER_INC, SCTP_NULL());
Linus Torvalds1da177e2005-04-16 15:20:36 -07002317
2318 sctp_add_cmd_sf(commands, SCTP_CMD_TIMER_STOP,
2319 SCTP_TO(SCTP_EVENT_TIMEOUT_T1_COOKIE));
2320 sctp_add_cmd_sf(commands, SCTP_CMD_NEW_STATE,
2321 SCTP_STATE(SCTP_STATE_COOKIE_WAIT));
2322 sctp_add_cmd_sf(commands, SCTP_CMD_TIMER_START,
2323 SCTP_TO(SCTP_EVENT_TIMEOUT_T1_INIT));
2324
2325 sctp_add_cmd_sf(commands, SCTP_CMD_REPLY, SCTP_CHUNK(reply));
2326
2327 return SCTP_DISPOSITION_CONSUME;
2328
2329nomem:
2330 return SCTP_DISPOSITION_NOMEM;
2331}
2332
2333/*
2334 * Process an ABORT.
2335 *
2336 * Section: 9.1
2337 * After checking the Verification Tag, the receiving endpoint shall
2338 * remove the association from its record, and shall report the
2339 * termination to its upper layer.
2340 *
2341 * Verification Tag: 8.5.1 Exceptions in Verification Tag Rules
2342 * B) Rules for packet carrying ABORT:
2343 *
2344 * - The endpoint shall always fill in the Verification Tag field of the
2345 * outbound packet with the destination endpoint's tag value if it
2346 * is known.
2347 *
2348 * - If the ABORT is sent in response to an OOTB packet, the endpoint
2349 * MUST follow the procedure described in Section 8.4.
2350 *
2351 * - The receiver MUST accept the packet if the Verification Tag
2352 * matches either its own tag, OR the tag of its peer. Otherwise, the
2353 * receiver MUST silently discard the packet and take no further
2354 * action.
2355 *
2356 * Inputs
2357 * (endpoint, asoc, chunk)
2358 *
2359 * Outputs
2360 * (asoc, reply_msg, msg_up, timers, counters)
2361 *
2362 * The return value is the disposition of the chunk.
2363 */
2364sctp_disposition_t sctp_sf_do_9_1_abort(const struct sctp_endpoint *ep,
2365 const struct sctp_association *asoc,
2366 const sctp_subtype_t type,
2367 void *arg,
2368 sctp_cmd_seq_t *commands)
2369{
2370 struct sctp_chunk *chunk = arg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002371
2372 if (!sctp_vtag_verify_either(chunk, asoc))
2373 return sctp_sf_pdiscard(ep, asoc, type, arg, commands);
2374
2375 /* Make sure that the ABORT chunk has a valid length.
2376 * Since this is an ABORT chunk, we have to discard it
2377 * because of the following text:
2378 * RFC 2960, Section 3.3.7
2379 * If an endpoint receives an ABORT with a format error or for an
2380 * association that doesn't exist, it MUST silently discard it.
Lucas De Marchi25985ed2011-03-30 22:57:33 -03002381 * Because the length is "invalid", we can't really discard just
Linus Torvalds1da177e2005-04-16 15:20:36 -07002382 * as we do not know its true length. So, to be safe, discard the
2383 * packet.
2384 */
2385 if (!sctp_chunk_length_valid(chunk, sizeof(sctp_abort_chunk_t)))
2386 return sctp_sf_pdiscard(ep, asoc, type, arg, commands);
2387
Vlad Yasevich75205f42007-12-20 14:12:59 -08002388 /* ADD-IP: Special case for ABORT chunks
2389 * F4) One special consideration is that ABORT Chunks arriving
2390 * destined to the IP address being deleted MUST be
2391 * ignored (see Section 5.3.1 for further details).
2392 */
2393 if (SCTP_ADDR_DEL ==
2394 sctp_bind_addr_state(&asoc->base.bind_addr, &chunk->dest))
2395 return sctp_sf_discard_chunk(ep, asoc, type, arg, commands);
2396
2397 return __sctp_sf_do_9_1_abort(ep, asoc, type, arg, commands);
2398}
2399
2400static sctp_disposition_t __sctp_sf_do_9_1_abort(const struct sctp_endpoint *ep,
2401 const struct sctp_association *asoc,
2402 const sctp_subtype_t type,
2403 void *arg,
2404 sctp_cmd_seq_t *commands)
2405{
2406 struct sctp_chunk *chunk = arg;
2407 unsigned len;
2408 __be16 error = SCTP_ERROR_NO_ERROR;
2409
Linus Torvalds1da177e2005-04-16 15:20:36 -07002410 /* See if we have an error cause code in the chunk. */
2411 len = ntohs(chunk->chunk_hdr->length);
Shan Wei96ca4682011-04-19 21:26:26 +00002412 if (len >= sizeof(struct sctp_chunkhdr) + sizeof(struct sctp_errhdr)) {
2413
2414 sctp_errhdr_t *err;
2415 sctp_walk_errors(err, chunk->chunk_hdr);
2416 if ((void *)err != (void *)chunk->chunk_end)
2417 return sctp_sf_pdiscard(ep, asoc, type, arg, commands);
2418
Linus Torvalds1da177e2005-04-16 15:20:36 -07002419 error = ((sctp_errhdr_t *)chunk->skb->data)->cause;
Shan Wei96ca4682011-04-19 21:26:26 +00002420 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002421
Sridhar Samudrala8de8c872006-05-19 10:58:12 -07002422 sctp_add_cmd_sf(commands, SCTP_CMD_SET_SK_ERR, SCTP_ERROR(ECONNRESET));
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09002423 /* ASSOC_FAILED will DELETE_TCB. */
Al Viro5be291f2006-11-20 17:01:06 -08002424 sctp_add_cmd_sf(commands, SCTP_CMD_ASSOC_FAILED, SCTP_PERR(error));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002425 SCTP_INC_STATS(SCTP_MIB_ABORTEDS);
2426 SCTP_DEC_STATS(SCTP_MIB_CURRESTAB);
2427
2428 return SCTP_DISPOSITION_ABORT;
2429}
2430
2431/*
2432 * Process an ABORT. (COOKIE-WAIT state)
2433 *
2434 * See sctp_sf_do_9_1_abort() above.
2435 */
2436sctp_disposition_t sctp_sf_cookie_wait_abort(const struct sctp_endpoint *ep,
2437 const struct sctp_association *asoc,
2438 const sctp_subtype_t type,
2439 void *arg,
2440 sctp_cmd_seq_t *commands)
2441{
2442 struct sctp_chunk *chunk = arg;
2443 unsigned len;
Al Virof94c0192006-11-20 17:00:25 -08002444 __be16 error = SCTP_ERROR_NO_ERROR;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002445
2446 if (!sctp_vtag_verify_either(chunk, asoc))
2447 return sctp_sf_pdiscard(ep, asoc, type, arg, commands);
2448
2449 /* Make sure that the ABORT chunk has a valid length.
2450 * Since this is an ABORT chunk, we have to discard it
2451 * because of the following text:
2452 * RFC 2960, Section 3.3.7
2453 * If an endpoint receives an ABORT with a format error or for an
2454 * association that doesn't exist, it MUST silently discard it.
Lucas De Marchi25985ed2011-03-30 22:57:33 -03002455 * Because the length is "invalid", we can't really discard just
Linus Torvalds1da177e2005-04-16 15:20:36 -07002456 * as we do not know its true length. So, to be safe, discard the
2457 * packet.
2458 */
2459 if (!sctp_chunk_length_valid(chunk, sizeof(sctp_abort_chunk_t)))
2460 return sctp_sf_pdiscard(ep, asoc, type, arg, commands);
2461
2462 /* See if we have an error cause code in the chunk. */
2463 len = ntohs(chunk->chunk_hdr->length);
2464 if (len >= sizeof(struct sctp_chunkhdr) + sizeof(struct sctp_errhdr))
2465 error = ((sctp_errhdr_t *)chunk->skb->data)->cause;
2466
Sridhar Samudrala8de8c872006-05-19 10:58:12 -07002467 return sctp_stop_t1_and_abort(commands, error, ECONNREFUSED, asoc,
2468 chunk->transport);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002469}
2470
2471/*
2472 * Process an incoming ICMP as an ABORT. (COOKIE-WAIT state)
2473 */
2474sctp_disposition_t sctp_sf_cookie_wait_icmp_abort(const struct sctp_endpoint *ep,
2475 const struct sctp_association *asoc,
2476 const sctp_subtype_t type,
2477 void *arg,
2478 sctp_cmd_seq_t *commands)
2479{
Sridhar Samudrala8de8c872006-05-19 10:58:12 -07002480 return sctp_stop_t1_and_abort(commands, SCTP_ERROR_NO_ERROR,
2481 ENOPROTOOPT, asoc,
Frank Filz3f7a87d2005-06-20 13:14:57 -07002482 (struct sctp_transport *)arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002483}
2484
2485/*
2486 * Process an ABORT. (COOKIE-ECHOED state)
2487 */
2488sctp_disposition_t sctp_sf_cookie_echoed_abort(const struct sctp_endpoint *ep,
2489 const struct sctp_association *asoc,
2490 const sctp_subtype_t type,
2491 void *arg,
2492 sctp_cmd_seq_t *commands)
2493{
2494 /* There is a single T1 timer, so we should be able to use
2495 * common function with the COOKIE-WAIT state.
2496 */
2497 return sctp_sf_cookie_wait_abort(ep, asoc, type, arg, commands);
2498}
2499
2500/*
2501 * Stop T1 timer and abort association with "INIT failed".
2502 *
2503 * This is common code called by several sctp_sf_*_abort() functions above.
2504 */
Adrian Bunk52c1da32005-06-23 22:05:33 -07002505static sctp_disposition_t sctp_stop_t1_and_abort(sctp_cmd_seq_t *commands,
Al Virof94c0192006-11-20 17:00:25 -08002506 __be16 error, int sk_err,
Frank Filz3f7a87d2005-06-20 13:14:57 -07002507 const struct sctp_association *asoc,
2508 struct sctp_transport *transport)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002509{
Frank Filz3f7a87d2005-06-20 13:14:57 -07002510 SCTP_DEBUG_PRINTK("ABORT received (INIT).\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002511 sctp_add_cmd_sf(commands, SCTP_CMD_NEW_STATE,
2512 SCTP_STATE(SCTP_STATE_CLOSED));
2513 SCTP_INC_STATS(SCTP_MIB_ABORTEDS);
2514 sctp_add_cmd_sf(commands, SCTP_CMD_TIMER_STOP,
2515 SCTP_TO(SCTP_EVENT_TIMEOUT_T1_INIT));
Sridhar Samudrala8de8c872006-05-19 10:58:12 -07002516 sctp_add_cmd_sf(commands, SCTP_CMD_SET_SK_ERR, SCTP_ERROR(sk_err));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002517 /* CMD_INIT_FAILED will DELETE_TCB. */
2518 sctp_add_cmd_sf(commands, SCTP_CMD_INIT_FAILED,
Al Virodc251b22006-11-20 17:00:44 -08002519 SCTP_PERR(error));
Frank Filz3f7a87d2005-06-20 13:14:57 -07002520 return SCTP_DISPOSITION_ABORT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002521}
2522
2523/*
2524 * sctp_sf_do_9_2_shut
2525 *
2526 * Section: 9.2
2527 * Upon the reception of the SHUTDOWN, the peer endpoint shall
2528 * - enter the SHUTDOWN-RECEIVED state,
2529 *
2530 * - stop accepting new data from its SCTP user
2531 *
2532 * - verify, by checking the Cumulative TSN Ack field of the chunk,
2533 * that all its outstanding DATA chunks have been received by the
2534 * SHUTDOWN sender.
2535 *
2536 * Once an endpoint as reached the SHUTDOWN-RECEIVED state it MUST NOT
2537 * send a SHUTDOWN in response to a ULP request. And should discard
2538 * subsequent SHUTDOWN chunks.
2539 *
2540 * If there are still outstanding DATA chunks left, the SHUTDOWN
2541 * receiver shall continue to follow normal data transmission
2542 * procedures defined in Section 6 until all outstanding DATA chunks
2543 * are acknowledged; however, the SHUTDOWN receiver MUST NOT accept
2544 * new data from its SCTP user.
2545 *
2546 * Verification Tag: 8.5 Verification Tag [Normal verification]
2547 *
2548 * Inputs
2549 * (endpoint, asoc, chunk)
2550 *
2551 * Outputs
2552 * (asoc, reply_msg, msg_up, timers, counters)
2553 *
2554 * The return value is the disposition of the chunk.
2555 */
2556sctp_disposition_t sctp_sf_do_9_2_shutdown(const struct sctp_endpoint *ep,
2557 const struct sctp_association *asoc,
2558 const sctp_subtype_t type,
2559 void *arg,
2560 sctp_cmd_seq_t *commands)
2561{
2562 struct sctp_chunk *chunk = arg;
2563 sctp_shutdownhdr_t *sdh;
2564 sctp_disposition_t disposition;
2565 struct sctp_ulpevent *ev;
Wei Yongjundf10eec2008-10-23 01:00:21 -07002566 __u32 ctsn;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002567
2568 if (!sctp_vtag_verify(chunk, asoc))
2569 return sctp_sf_pdiscard(ep, asoc, type, arg, commands);
2570
2571 /* Make sure that the SHUTDOWN chunk has a valid length. */
2572 if (!sctp_chunk_length_valid(chunk,
2573 sizeof(struct sctp_shutdown_chunk_t)))
2574 return sctp_sf_violation_chunklen(ep, asoc, type, arg,
2575 commands);
2576
2577 /* Convert the elaborate header. */
2578 sdh = (sctp_shutdownhdr_t *)chunk->skb->data;
2579 skb_pull(chunk->skb, sizeof(sctp_shutdownhdr_t));
2580 chunk->subh.shutdown_hdr = sdh;
Wei Yongjundf10eec2008-10-23 01:00:21 -07002581 ctsn = ntohl(sdh->cum_tsn_ack);
2582
Wei Yongjuna2f36ee2009-08-22 11:24:00 +08002583 if (TSN_lt(ctsn, asoc->ctsn_ack_point)) {
2584 SCTP_DEBUG_PRINTK("ctsn %x\n", ctsn);
2585 SCTP_DEBUG_PRINTK("ctsn_ack_point %x\n", asoc->ctsn_ack_point);
2586 return SCTP_DISPOSITION_DISCARD;
2587 }
2588
Wei Yongjundf10eec2008-10-23 01:00:21 -07002589 /* If Cumulative TSN Ack beyond the max tsn currently
2590 * send, terminating the association and respond to the
2591 * sender with an ABORT.
2592 */
2593 if (!TSN_lt(ctsn, asoc->next_tsn))
2594 return sctp_sf_violation_ctsn(ep, asoc, type, arg, commands);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002595
Sridhar Samudralaeb0e0072005-09-22 23:48:38 -07002596 /* API 5.3.1.5 SCTP_SHUTDOWN_EVENT
2597 * When a peer sends a SHUTDOWN, SCTP delivers this notification to
2598 * inform the application that it should cease sending data.
2599 */
2600 ev = sctp_ulpevent_make_shutdown_event(asoc, 0, GFP_ATOMIC);
2601 if (!ev) {
2602 disposition = SCTP_DISPOSITION_NOMEM;
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09002603 goto out;
Sridhar Samudralaeb0e0072005-09-22 23:48:38 -07002604 }
2605 sctp_add_cmd_sf(commands, SCTP_CMD_EVENT_ULP, SCTP_ULPEVENT(ev));
2606
Linus Torvalds1da177e2005-04-16 15:20:36 -07002607 /* Upon the reception of the SHUTDOWN, the peer endpoint shall
2608 * - enter the SHUTDOWN-RECEIVED state,
2609 * - stop accepting new data from its SCTP user
2610 *
2611 * [This is implicit in the new state.]
2612 */
2613 sctp_add_cmd_sf(commands, SCTP_CMD_NEW_STATE,
2614 SCTP_STATE(SCTP_STATE_SHUTDOWN_RECEIVED));
2615 disposition = SCTP_DISPOSITION_CONSUME;
2616
2617 if (sctp_outq_is_empty(&asoc->outqueue)) {
2618 disposition = sctp_sf_do_9_2_shutdown_ack(ep, asoc, type,
2619 arg, commands);
2620 }
2621
2622 if (SCTP_DISPOSITION_NOMEM == disposition)
2623 goto out;
2624
2625 /* - verify, by checking the Cumulative TSN Ack field of the
2626 * chunk, that all its outstanding DATA chunks have been
2627 * received by the SHUTDOWN sender.
2628 */
2629 sctp_add_cmd_sf(commands, SCTP_CMD_PROCESS_CTSN,
Al Viro2178eda2006-11-20 17:26:53 -08002630 SCTP_BE32(chunk->subh.shutdown_hdr->cum_tsn_ack));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002631
Linus Torvalds1da177e2005-04-16 15:20:36 -07002632out:
2633 return disposition;
2634}
2635
Wei Yongjun2e3f92d2008-10-23 01:01:18 -07002636/*
2637 * sctp_sf_do_9_2_shut_ctsn
2638 *
2639 * Once an endpoint has reached the SHUTDOWN-RECEIVED state,
2640 * it MUST NOT send a SHUTDOWN in response to a ULP request.
2641 * The Cumulative TSN Ack of the received SHUTDOWN chunk
2642 * MUST be processed.
2643 */
2644sctp_disposition_t sctp_sf_do_9_2_shut_ctsn(const struct sctp_endpoint *ep,
2645 const struct sctp_association *asoc,
2646 const sctp_subtype_t type,
2647 void *arg,
2648 sctp_cmd_seq_t *commands)
2649{
2650 struct sctp_chunk *chunk = arg;
2651 sctp_shutdownhdr_t *sdh;
Wei Yongjuna2f36ee2009-08-22 11:24:00 +08002652 __u32 ctsn;
Wei Yongjun2e3f92d2008-10-23 01:01:18 -07002653
2654 if (!sctp_vtag_verify(chunk, asoc))
2655 return sctp_sf_pdiscard(ep, asoc, type, arg, commands);
2656
2657 /* Make sure that the SHUTDOWN chunk has a valid length. */
2658 if (!sctp_chunk_length_valid(chunk,
2659 sizeof(struct sctp_shutdown_chunk_t)))
2660 return sctp_sf_violation_chunklen(ep, asoc, type, arg,
2661 commands);
2662
2663 sdh = (sctp_shutdownhdr_t *)chunk->skb->data;
Wei Yongjuna2f36ee2009-08-22 11:24:00 +08002664 ctsn = ntohl(sdh->cum_tsn_ack);
2665
2666 if (TSN_lt(ctsn, asoc->ctsn_ack_point)) {
2667 SCTP_DEBUG_PRINTK("ctsn %x\n", ctsn);
2668 SCTP_DEBUG_PRINTK("ctsn_ack_point %x\n", asoc->ctsn_ack_point);
2669 return SCTP_DISPOSITION_DISCARD;
2670 }
Wei Yongjun2e3f92d2008-10-23 01:01:18 -07002671
2672 /* If Cumulative TSN Ack beyond the max tsn currently
2673 * send, terminating the association and respond to the
2674 * sender with an ABORT.
2675 */
Wei Yongjuna2f36ee2009-08-22 11:24:00 +08002676 if (!TSN_lt(ctsn, asoc->next_tsn))
Wei Yongjun2e3f92d2008-10-23 01:01:18 -07002677 return sctp_sf_violation_ctsn(ep, asoc, type, arg, commands);
2678
2679 /* verify, by checking the Cumulative TSN Ack field of the
2680 * chunk, that all its outstanding DATA chunks have been
2681 * received by the SHUTDOWN sender.
2682 */
2683 sctp_add_cmd_sf(commands, SCTP_CMD_PROCESS_CTSN,
2684 SCTP_BE32(sdh->cum_tsn_ack));
2685
2686 return SCTP_DISPOSITION_CONSUME;
2687}
2688
Linus Torvalds1da177e2005-04-16 15:20:36 -07002689/* RFC 2960 9.2
2690 * If an endpoint is in SHUTDOWN-ACK-SENT state and receives an INIT chunk
2691 * (e.g., if the SHUTDOWN COMPLETE was lost) with source and destination
2692 * transport addresses (either in the IP addresses or in the INIT chunk)
2693 * that belong to this association, it should discard the INIT chunk and
2694 * retransmit the SHUTDOWN ACK chunk.
2695 */
2696sctp_disposition_t sctp_sf_do_9_2_reshutack(const struct sctp_endpoint *ep,
2697 const struct sctp_association *asoc,
2698 const sctp_subtype_t type,
2699 void *arg,
2700 sctp_cmd_seq_t *commands)
2701{
2702 struct sctp_chunk *chunk = (struct sctp_chunk *) arg;
2703 struct sctp_chunk *reply;
2704
Vlad Yasevichece25df2007-09-07 16:30:54 -04002705 /* Make sure that the chunk has a valid length */
2706 if (!sctp_chunk_length_valid(chunk, sizeof(sctp_chunkhdr_t)))
2707 return sctp_sf_violation_chunklen(ep, asoc, type, arg,
2708 commands);
2709
Linus Torvalds1da177e2005-04-16 15:20:36 -07002710 /* Since we are not going to really process this INIT, there
2711 * is no point in verifying chunk boundries. Just generate
2712 * the SHUTDOWN ACK.
2713 */
2714 reply = sctp_make_shutdown_ack(asoc, chunk);
2715 if (NULL == reply)
2716 goto nomem;
2717
2718 /* Set the transport for the SHUTDOWN ACK chunk and the timeout for
2719 * the T2-SHUTDOWN timer.
2720 */
2721 sctp_add_cmd_sf(commands, SCTP_CMD_SETUP_T2, SCTP_CHUNK(reply));
2722
2723 /* and restart the T2-shutdown timer. */
2724 sctp_add_cmd_sf(commands, SCTP_CMD_TIMER_RESTART,
2725 SCTP_TO(SCTP_EVENT_TIMEOUT_T2_SHUTDOWN));
2726
2727 sctp_add_cmd_sf(commands, SCTP_CMD_REPLY, SCTP_CHUNK(reply));
2728
2729 return SCTP_DISPOSITION_CONSUME;
2730nomem:
2731 return SCTP_DISPOSITION_NOMEM;
2732}
2733
2734/*
2735 * sctp_sf_do_ecn_cwr
2736 *
2737 * Section: Appendix A: Explicit Congestion Notification
2738 *
2739 * CWR:
2740 *
2741 * RFC 2481 details a specific bit for a sender to send in the header of
2742 * its next outbound TCP segment to indicate to its peer that it has
2743 * reduced its congestion window. This is termed the CWR bit. For
2744 * SCTP the same indication is made by including the CWR chunk.
2745 * This chunk contains one data element, i.e. the TSN number that
2746 * was sent in the ECNE chunk. This element represents the lowest
2747 * TSN number in the datagram that was originally marked with the
2748 * CE bit.
2749 *
2750 * Verification Tag: 8.5 Verification Tag [Normal verification]
2751 * Inputs
2752 * (endpoint, asoc, chunk)
2753 *
2754 * Outputs
2755 * (asoc, reply_msg, msg_up, timers, counters)
2756 *
2757 * The return value is the disposition of the chunk.
2758 */
2759sctp_disposition_t sctp_sf_do_ecn_cwr(const struct sctp_endpoint *ep,
2760 const struct sctp_association *asoc,
2761 const sctp_subtype_t type,
2762 void *arg,
2763 sctp_cmd_seq_t *commands)
2764{
2765 sctp_cwrhdr_t *cwr;
2766 struct sctp_chunk *chunk = arg;
Al Viro34bcca22006-11-20 17:27:15 -08002767 u32 lowest_tsn;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002768
2769 if (!sctp_vtag_verify(chunk, asoc))
2770 return sctp_sf_pdiscard(ep, asoc, type, arg, commands);
2771
2772 if (!sctp_chunk_length_valid(chunk, sizeof(sctp_ecne_chunk_t)))
2773 return sctp_sf_violation_chunklen(ep, asoc, type, arg,
2774 commands);
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09002775
Linus Torvalds1da177e2005-04-16 15:20:36 -07002776 cwr = (sctp_cwrhdr_t *) chunk->skb->data;
2777 skb_pull(chunk->skb, sizeof(sctp_cwrhdr_t));
2778
Al Viro34bcca22006-11-20 17:27:15 -08002779 lowest_tsn = ntohl(cwr->lowest_tsn);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002780
2781 /* Does this CWR ack the last sent congestion notification? */
Al Viro34bcca22006-11-20 17:27:15 -08002782 if (TSN_lte(asoc->last_ecne_tsn, lowest_tsn)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002783 /* Stop sending ECNE. */
2784 sctp_add_cmd_sf(commands,
2785 SCTP_CMD_ECN_CWR,
Al Viro34bcca22006-11-20 17:27:15 -08002786 SCTP_U32(lowest_tsn));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002787 }
2788 return SCTP_DISPOSITION_CONSUME;
2789}
2790
2791/*
2792 * sctp_sf_do_ecne
2793 *
2794 * Section: Appendix A: Explicit Congestion Notification
2795 *
2796 * ECN-Echo
2797 *
2798 * RFC 2481 details a specific bit for a receiver to send back in its
2799 * TCP acknowledgements to notify the sender of the Congestion
2800 * Experienced (CE) bit having arrived from the network. For SCTP this
2801 * same indication is made by including the ECNE chunk. This chunk
2802 * contains one data element, i.e. the lowest TSN associated with the IP
2803 * datagram marked with the CE bit.....
2804 *
2805 * Verification Tag: 8.5 Verification Tag [Normal verification]
2806 * Inputs
2807 * (endpoint, asoc, chunk)
2808 *
2809 * Outputs
2810 * (asoc, reply_msg, msg_up, timers, counters)
2811 *
2812 * The return value is the disposition of the chunk.
2813 */
2814sctp_disposition_t sctp_sf_do_ecne(const struct sctp_endpoint *ep,
2815 const struct sctp_association *asoc,
2816 const sctp_subtype_t type,
2817 void *arg,
2818 sctp_cmd_seq_t *commands)
2819{
2820 sctp_ecnehdr_t *ecne;
2821 struct sctp_chunk *chunk = arg;
2822
2823 if (!sctp_vtag_verify(chunk, asoc))
2824 return sctp_sf_pdiscard(ep, asoc, type, arg, commands);
2825
2826 if (!sctp_chunk_length_valid(chunk, sizeof(sctp_ecne_chunk_t)))
2827 return sctp_sf_violation_chunklen(ep, asoc, type, arg,
2828 commands);
2829
2830 ecne = (sctp_ecnehdr_t *) chunk->skb->data;
2831 skb_pull(chunk->skb, sizeof(sctp_ecnehdr_t));
2832
2833 /* If this is a newer ECNE than the last CWR packet we sent out */
2834 sctp_add_cmd_sf(commands, SCTP_CMD_ECN_ECNE,
2835 SCTP_U32(ntohl(ecne->lowest_tsn)));
2836
2837 return SCTP_DISPOSITION_CONSUME;
2838}
2839
2840/*
2841 * Section: 6.2 Acknowledgement on Reception of DATA Chunks
2842 *
2843 * The SCTP endpoint MUST always acknowledge the reception of each valid
2844 * DATA chunk.
2845 *
2846 * The guidelines on delayed acknowledgement algorithm specified in
2847 * Section 4.2 of [RFC2581] SHOULD be followed. Specifically, an
2848 * acknowledgement SHOULD be generated for at least every second packet
2849 * (not every second DATA chunk) received, and SHOULD be generated within
2850 * 200 ms of the arrival of any unacknowledged DATA chunk. In some
2851 * situations it may be beneficial for an SCTP transmitter to be more
2852 * conservative than the algorithms detailed in this document allow.
2853 * However, an SCTP transmitter MUST NOT be more aggressive than the
2854 * following algorithms allow.
2855 *
2856 * A SCTP receiver MUST NOT generate more than one SACK for every
2857 * incoming packet, other than to update the offered window as the
2858 * receiving application consumes new data.
2859 *
2860 * Verification Tag: 8.5 Verification Tag [Normal verification]
2861 *
2862 * Inputs
2863 * (endpoint, asoc, chunk)
2864 *
2865 * Outputs
2866 * (asoc, reply_msg, msg_up, timers, counters)
2867 *
2868 * The return value is the disposition of the chunk.
2869 */
2870sctp_disposition_t sctp_sf_eat_data_6_2(const struct sctp_endpoint *ep,
2871 const struct sctp_association *asoc,
2872 const sctp_subtype_t type,
2873 void *arg,
2874 sctp_cmd_seq_t *commands)
2875{
2876 struct sctp_chunk *chunk = arg;
Wei Yongjun6dc76942009-11-23 15:53:53 -05002877 sctp_arg_t force = SCTP_NOFORCE();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002878 int error;
2879
2880 if (!sctp_vtag_verify(chunk, asoc)) {
2881 sctp_add_cmd_sf(commands, SCTP_CMD_REPORT_BAD_TAG,
2882 SCTP_NULL());
2883 return sctp_sf_pdiscard(ep, asoc, type, arg, commands);
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09002884 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002885
2886 if (!sctp_chunk_length_valid(chunk, sizeof(sctp_data_chunk_t)))
2887 return sctp_sf_violation_chunklen(ep, asoc, type, arg,
2888 commands);
2889
2890 error = sctp_eat_data(asoc, chunk, commands );
2891 switch (error) {
2892 case SCTP_IERROR_NO_ERROR:
2893 break;
2894 case SCTP_IERROR_HIGH_TSN:
2895 case SCTP_IERROR_BAD_STREAM:
Sridhar Samudralaac0b0462006-08-22 00:15:33 -07002896 SCTP_INC_STATS(SCTP_MIB_IN_DATA_CHUNK_DISCARDS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002897 goto discard_noforce;
2898 case SCTP_IERROR_DUP_TSN:
2899 case SCTP_IERROR_IGNORE_TSN:
Sridhar Samudralaac0b0462006-08-22 00:15:33 -07002900 SCTP_INC_STATS(SCTP_MIB_IN_DATA_CHUNK_DISCARDS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002901 goto discard_force;
2902 case SCTP_IERROR_NO_DATA:
2903 goto consume;
Vlad Yasevichf1751c52009-09-04 18:21:03 -04002904 case SCTP_IERROR_PROTO_VIOLATION:
2905 return sctp_sf_abort_violation(ep, asoc, chunk, commands,
2906 (u8 *)chunk->subh.data_hdr, sizeof(sctp_datahdr_t));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002907 default:
2908 BUG();
2909 }
2910
Wei Yongjun6dc76942009-11-23 15:53:53 -05002911 if (chunk->chunk_hdr->flags & SCTP_DATA_SACK_IMM)
2912 force = SCTP_FORCE();
2913
Linus Torvalds1da177e2005-04-16 15:20:36 -07002914 if (asoc->autoclose) {
2915 sctp_add_cmd_sf(commands, SCTP_CMD_TIMER_RESTART,
2916 SCTP_TO(SCTP_EVENT_TIMEOUT_AUTOCLOSE));
2917 }
2918
2919 /* If this is the last chunk in a packet, we need to count it
2920 * toward sack generation. Note that we need to SACK every
2921 * OTHER packet containing data chunks, EVEN IF WE DISCARD
2922 * THEM. We elect to NOT generate SACK's if the chunk fails
2923 * the verification tag test.
2924 *
2925 * RFC 2960 6.2 Acknowledgement on Reception of DATA Chunks
2926 *
2927 * The SCTP endpoint MUST always acknowledge the reception of
2928 * each valid DATA chunk.
2929 *
2930 * The guidelines on delayed acknowledgement algorithm
2931 * specified in Section 4.2 of [RFC2581] SHOULD be followed.
2932 * Specifically, an acknowledgement SHOULD be generated for at
2933 * least every second packet (not every second DATA chunk)
2934 * received, and SHOULD be generated within 200 ms of the
2935 * arrival of any unacknowledged DATA chunk. In some
2936 * situations it may be beneficial for an SCTP transmitter to
2937 * be more conservative than the algorithms detailed in this
2938 * document allow. However, an SCTP transmitter MUST NOT be
2939 * more aggressive than the following algorithms allow.
2940 */
Frank Filz52ccb8e2005-12-22 11:36:46 -08002941 if (chunk->end_of_packet)
Wei Yongjun6dc76942009-11-23 15:53:53 -05002942 sctp_add_cmd_sf(commands, SCTP_CMD_GEN_SACK, force);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002943
Linus Torvalds1da177e2005-04-16 15:20:36 -07002944 return SCTP_DISPOSITION_CONSUME;
2945
2946discard_force:
2947 /* RFC 2960 6.2 Acknowledgement on Reception of DATA Chunks
2948 *
2949 * When a packet arrives with duplicate DATA chunk(s) and with
2950 * no new DATA chunk(s), the endpoint MUST immediately send a
2951 * SACK with no delay. If a packet arrives with duplicate
2952 * DATA chunk(s) bundled with new DATA chunks, the endpoint
2953 * MAY immediately send a SACK. Normally receipt of duplicate
2954 * DATA chunks will occur when the original SACK chunk was lost
2955 * and the peer's RTO has expired. The duplicate TSN number(s)
2956 * SHOULD be reported in the SACK as duplicate.
2957 */
2958 /* In our case, we split the MAY SACK advice up whether or not
2959 * the last chunk is a duplicate.'
2960 */
2961 if (chunk->end_of_packet)
2962 sctp_add_cmd_sf(commands, SCTP_CMD_GEN_SACK, SCTP_FORCE());
2963 return SCTP_DISPOSITION_DISCARD;
2964
2965discard_noforce:
Frank Filz52ccb8e2005-12-22 11:36:46 -08002966 if (chunk->end_of_packet)
Wei Yongjun6dc76942009-11-23 15:53:53 -05002967 sctp_add_cmd_sf(commands, SCTP_CMD_GEN_SACK, force);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002968
Linus Torvalds1da177e2005-04-16 15:20:36 -07002969 return SCTP_DISPOSITION_DISCARD;
2970consume:
2971 return SCTP_DISPOSITION_CONSUME;
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09002972
Linus Torvalds1da177e2005-04-16 15:20:36 -07002973}
2974
2975/*
2976 * sctp_sf_eat_data_fast_4_4
2977 *
2978 * Section: 4 (4)
2979 * (4) In SHUTDOWN-SENT state the endpoint MUST acknowledge any received
2980 * DATA chunks without delay.
2981 *
2982 * Verification Tag: 8.5 Verification Tag [Normal verification]
2983 * Inputs
2984 * (endpoint, asoc, chunk)
2985 *
2986 * Outputs
2987 * (asoc, reply_msg, msg_up, timers, counters)
2988 *
2989 * The return value is the disposition of the chunk.
2990 */
2991sctp_disposition_t sctp_sf_eat_data_fast_4_4(const struct sctp_endpoint *ep,
2992 const struct sctp_association *asoc,
2993 const sctp_subtype_t type,
2994 void *arg,
2995 sctp_cmd_seq_t *commands)
2996{
2997 struct sctp_chunk *chunk = arg;
2998 int error;
2999
3000 if (!sctp_vtag_verify(chunk, asoc)) {
3001 sctp_add_cmd_sf(commands, SCTP_CMD_REPORT_BAD_TAG,
3002 SCTP_NULL());
3003 return sctp_sf_pdiscard(ep, asoc, type, arg, commands);
3004 }
3005
3006 if (!sctp_chunk_length_valid(chunk, sizeof(sctp_data_chunk_t)))
3007 return sctp_sf_violation_chunklen(ep, asoc, type, arg,
3008 commands);
3009
3010 error = sctp_eat_data(asoc, chunk, commands );
3011 switch (error) {
3012 case SCTP_IERROR_NO_ERROR:
3013 case SCTP_IERROR_HIGH_TSN:
3014 case SCTP_IERROR_DUP_TSN:
3015 case SCTP_IERROR_IGNORE_TSN:
3016 case SCTP_IERROR_BAD_STREAM:
3017 break;
3018 case SCTP_IERROR_NO_DATA:
3019 goto consume;
Vlad Yasevichf1751c52009-09-04 18:21:03 -04003020 case SCTP_IERROR_PROTO_VIOLATION:
3021 return sctp_sf_abort_violation(ep, asoc, chunk, commands,
3022 (u8 *)chunk->subh.data_hdr, sizeof(sctp_datahdr_t));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003023 default:
3024 BUG();
3025 }
3026
3027 /* Go a head and force a SACK, since we are shutting down. */
3028
3029 /* Implementor's Guide.
3030 *
3031 * While in SHUTDOWN-SENT state, the SHUTDOWN sender MUST immediately
3032 * respond to each received packet containing one or more DATA chunk(s)
3033 * with a SACK, a SHUTDOWN chunk, and restart the T2-shutdown timer
3034 */
3035 if (chunk->end_of_packet) {
3036 /* We must delay the chunk creation since the cumulative
3037 * TSN has not been updated yet.
3038 */
3039 sctp_add_cmd_sf(commands, SCTP_CMD_GEN_SHUTDOWN, SCTP_NULL());
3040 sctp_add_cmd_sf(commands, SCTP_CMD_GEN_SACK, SCTP_FORCE());
3041 sctp_add_cmd_sf(commands, SCTP_CMD_TIMER_RESTART,
3042 SCTP_TO(SCTP_EVENT_TIMEOUT_T2_SHUTDOWN));
3043 }
3044
3045consume:
3046 return SCTP_DISPOSITION_CONSUME;
3047}
3048
3049/*
3050 * Section: 6.2 Processing a Received SACK
3051 * D) Any time a SACK arrives, the endpoint performs the following:
3052 *
3053 * i) If Cumulative TSN Ack is less than the Cumulative TSN Ack Point,
3054 * then drop the SACK. Since Cumulative TSN Ack is monotonically
3055 * increasing, a SACK whose Cumulative TSN Ack is less than the
3056 * Cumulative TSN Ack Point indicates an out-of-order SACK.
3057 *
3058 * ii) Set rwnd equal to the newly received a_rwnd minus the number
3059 * of bytes still outstanding after processing the Cumulative TSN Ack
3060 * and the Gap Ack Blocks.
3061 *
3062 * iii) If the SACK is missing a TSN that was previously
3063 * acknowledged via a Gap Ack Block (e.g., the data receiver
3064 * reneged on the data), then mark the corresponding DATA chunk
3065 * as available for retransmit: Mark it as missing for fast
3066 * retransmit as described in Section 7.2.4 and if no retransmit
3067 * timer is running for the destination address to which the DATA
3068 * chunk was originally transmitted, then T3-rtx is started for
3069 * that destination address.
3070 *
3071 * Verification Tag: 8.5 Verification Tag [Normal verification]
3072 *
3073 * Inputs
3074 * (endpoint, asoc, chunk)
3075 *
3076 * Outputs
3077 * (asoc, reply_msg, msg_up, timers, counters)
3078 *
3079 * The return value is the disposition of the chunk.
3080 */
3081sctp_disposition_t sctp_sf_eat_sack_6_2(const struct sctp_endpoint *ep,
3082 const struct sctp_association *asoc,
3083 const sctp_subtype_t type,
3084 void *arg,
3085 sctp_cmd_seq_t *commands)
3086{
3087 struct sctp_chunk *chunk = arg;
3088 sctp_sackhdr_t *sackh;
3089 __u32 ctsn;
3090
3091 if (!sctp_vtag_verify(chunk, asoc))
3092 return sctp_sf_pdiscard(ep, asoc, type, arg, commands);
3093
3094 /* Make sure that the SACK chunk has a valid length. */
3095 if (!sctp_chunk_length_valid(chunk, sizeof(sctp_sack_chunk_t)))
3096 return sctp_sf_violation_chunklen(ep, asoc, type, arg,
3097 commands);
3098
3099 /* Pull the SACK chunk from the data buffer */
3100 sackh = sctp_sm_pull_sack(chunk);
3101 /* Was this a bogus SACK? */
3102 if (!sackh)
3103 return sctp_sf_pdiscard(ep, asoc, type, arg, commands);
3104 chunk->subh.sack_hdr = sackh;
3105 ctsn = ntohl(sackh->cum_tsn_ack);
3106
3107 /* i) If Cumulative TSN Ack is less than the Cumulative TSN
3108 * Ack Point, then drop the SACK. Since Cumulative TSN
3109 * Ack is monotonically increasing, a SACK whose
3110 * Cumulative TSN Ack is less than the Cumulative TSN Ack
3111 * Point indicates an out-of-order SACK.
3112 */
3113 if (TSN_lt(ctsn, asoc->ctsn_ack_point)) {
3114 SCTP_DEBUG_PRINTK("ctsn %x\n", ctsn);
3115 SCTP_DEBUG_PRINTK("ctsn_ack_point %x\n", asoc->ctsn_ack_point);
3116 return SCTP_DISPOSITION_DISCARD;
3117 }
3118
Wei Yongjunaecedea2007-08-02 16:57:44 +08003119 /* If Cumulative TSN Ack beyond the max tsn currently
3120 * send, terminating the association and respond to the
3121 * sender with an ABORT.
3122 */
3123 if (!TSN_lt(ctsn, asoc->next_tsn))
3124 return sctp_sf_violation_ctsn(ep, asoc, type, arg, commands);
3125
Linus Torvalds1da177e2005-04-16 15:20:36 -07003126 /* Return this SACK for further processing. */
3127 sctp_add_cmd_sf(commands, SCTP_CMD_PROCESS_SACK, SCTP_SACKH(sackh));
3128
3129 /* Note: We do the rest of the work on the PROCESS_SACK
3130 * sideeffect.
3131 */
3132 return SCTP_DISPOSITION_CONSUME;
3133}
3134
3135/*
3136 * Generate an ABORT in response to a packet.
3137 *
Jerome Forissier047a2422005-04-28 11:58:43 -07003138 * Section: 8.4 Handle "Out of the blue" Packets, sctpimpguide 2.41
Linus Torvalds1da177e2005-04-16 15:20:36 -07003139 *
Jerome Forissier047a2422005-04-28 11:58:43 -07003140 * 8) The receiver should respond to the sender of the OOTB packet with
3141 * an ABORT. When sending the ABORT, the receiver of the OOTB packet
3142 * MUST fill in the Verification Tag field of the outbound packet
3143 * with the value found in the Verification Tag field of the OOTB
3144 * packet and set the T-bit in the Chunk Flags to indicate that the
3145 * Verification Tag is reflected. After sending this ABORT, the
3146 * receiver of the OOTB packet shall discard the OOTB packet and take
3147 * no further action.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003148 *
3149 * Verification Tag:
3150 *
3151 * The return value is the disposition of the chunk.
3152*/
Vlad Yasevichece25df2007-09-07 16:30:54 -04003153static sctp_disposition_t sctp_sf_tabort_8_4_8(const struct sctp_endpoint *ep,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003154 const struct sctp_association *asoc,
3155 const sctp_subtype_t type,
3156 void *arg,
3157 sctp_cmd_seq_t *commands)
3158{
3159 struct sctp_packet *packet = NULL;
3160 struct sctp_chunk *chunk = arg;
3161 struct sctp_chunk *abort;
3162
3163 packet = sctp_ootb_pkt_new(asoc, chunk);
3164
3165 if (packet) {
3166 /* Make an ABORT. The T bit will be set if the asoc
3167 * is NULL.
3168 */
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09003169 abort = sctp_make_abort(asoc, chunk, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003170 if (!abort) {
3171 sctp_ootb_pkt_free(packet);
3172 return SCTP_DISPOSITION_NOMEM;
3173 }
3174
Jerome Forissier047a2422005-04-28 11:58:43 -07003175 /* Reflect vtag if T-Bit is set */
3176 if (sctp_test_T_bit(abort))
3177 packet->vtag = ntohl(chunk->sctp_hdr->vtag);
3178
Linus Torvalds1da177e2005-04-16 15:20:36 -07003179 /* Set the skb to the belonging sock for accounting. */
3180 abort->skb->sk = ep->base.sk;
3181
3182 sctp_packet_append_chunk(packet, abort);
3183
3184 sctp_add_cmd_sf(commands, SCTP_CMD_SEND_PKT,
3185 SCTP_PACKET(packet));
3186
3187 SCTP_INC_STATS(SCTP_MIB_OUTCTRLCHUNKS);
3188
Vlad Yasevichd3f25962007-09-07 11:47:45 -04003189 sctp_sf_pdiscard(ep, asoc, type, arg, commands);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003190 return SCTP_DISPOSITION_CONSUME;
3191 }
3192
3193 return SCTP_DISPOSITION_NOMEM;
3194}
3195
3196/*
3197 * Received an ERROR chunk from peer. Generate SCTP_REMOTE_ERROR
3198 * event as ULP notification for each cause included in the chunk.
3199 *
3200 * API 5.3.1.3 - SCTP_REMOTE_ERROR
3201 *
3202 * The return value is the disposition of the chunk.
3203*/
3204sctp_disposition_t sctp_sf_operr_notify(const struct sctp_endpoint *ep,
3205 const struct sctp_association *asoc,
3206 const sctp_subtype_t type,
3207 void *arg,
3208 sctp_cmd_seq_t *commands)
3209{
3210 struct sctp_chunk *chunk = arg;
Shan Wei8a00be12011-04-19 21:25:40 +00003211 sctp_errhdr_t *err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003212
3213 if (!sctp_vtag_verify(chunk, asoc))
3214 return sctp_sf_pdiscard(ep, asoc, type, arg, commands);
3215
3216 /* Make sure that the ERROR chunk has a valid length. */
3217 if (!sctp_chunk_length_valid(chunk, sizeof(sctp_operr_chunk_t)))
3218 return sctp_sf_violation_chunklen(ep, asoc, type, arg,
3219 commands);
Shan Wei8a00be12011-04-19 21:25:40 +00003220 sctp_walk_errors(err, chunk->chunk_hdr);
3221 if ((void *)err != (void *)chunk->chunk_end)
3222 return sctp_sf_violation_paramlen(ep, asoc, type, arg,
3223 (void *)err, commands);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003224
Wei Yongjun3df26782009-03-02 06:46:51 +00003225 sctp_add_cmd_sf(commands, SCTP_CMD_PROCESS_OPERR,
3226 SCTP_CHUNK(chunk));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003227
Linus Torvalds1da177e2005-04-16 15:20:36 -07003228 return SCTP_DISPOSITION_CONSUME;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003229}
3230
3231/*
3232 * Process an inbound SHUTDOWN ACK.
3233 *
3234 * From Section 9.2:
3235 * Upon the receipt of the SHUTDOWN ACK, the SHUTDOWN sender shall
3236 * stop the T2-shutdown timer, send a SHUTDOWN COMPLETE chunk to its
3237 * peer, and remove all record of the association.
3238 *
3239 * The return value is the disposition.
3240 */
3241sctp_disposition_t sctp_sf_do_9_2_final(const struct sctp_endpoint *ep,
3242 const struct sctp_association *asoc,
3243 const sctp_subtype_t type,
3244 void *arg,
3245 sctp_cmd_seq_t *commands)
3246{
3247 struct sctp_chunk *chunk = arg;
3248 struct sctp_chunk *reply;
3249 struct sctp_ulpevent *ev;
3250
3251 if (!sctp_vtag_verify(chunk, asoc))
3252 return sctp_sf_pdiscard(ep, asoc, type, arg, commands);
3253
3254 /* Make sure that the SHUTDOWN_ACK chunk has a valid length. */
3255 if (!sctp_chunk_length_valid(chunk, sizeof(sctp_chunkhdr_t)))
3256 return sctp_sf_violation_chunklen(ep, asoc, type, arg,
3257 commands);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003258 /* 10.2 H) SHUTDOWN COMPLETE notification
3259 *
3260 * When SCTP completes the shutdown procedures (section 9.2) this
3261 * notification is passed to the upper layer.
3262 */
3263 ev = sctp_ulpevent_make_assoc_change(asoc, 0, SCTP_SHUTDOWN_COMP,
Vlad Yasevicha5a35e72007-03-23 11:34:08 -07003264 0, 0, 0, NULL, GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003265 if (!ev)
3266 goto nomem;
3267
Vladislav Yasevichdf7deeb2006-08-22 00:19:51 -07003268 /* ...send a SHUTDOWN COMPLETE chunk to its peer, */
3269 reply = sctp_make_shutdown_complete(asoc, chunk);
3270 if (!reply)
3271 goto nomem_chunk;
3272
3273 /* Do all the commands now (after allocation), so that we
3274 * have consistent state if memory allocation failes
3275 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003276 sctp_add_cmd_sf(commands, SCTP_CMD_EVENT_ULP, SCTP_ULPEVENT(ev));
3277
3278 /* Upon the receipt of the SHUTDOWN ACK, the SHUTDOWN sender shall
3279 * stop the T2-shutdown timer,
3280 */
3281 sctp_add_cmd_sf(commands, SCTP_CMD_TIMER_STOP,
3282 SCTP_TO(SCTP_EVENT_TIMEOUT_T2_SHUTDOWN));
3283
3284 sctp_add_cmd_sf(commands, SCTP_CMD_TIMER_STOP,
3285 SCTP_TO(SCTP_EVENT_TIMEOUT_T5_SHUTDOWN_GUARD));
3286
Linus Torvalds1da177e2005-04-16 15:20:36 -07003287 sctp_add_cmd_sf(commands, SCTP_CMD_NEW_STATE,
3288 SCTP_STATE(SCTP_STATE_CLOSED));
3289 SCTP_INC_STATS(SCTP_MIB_SHUTDOWNS);
3290 SCTP_DEC_STATS(SCTP_MIB_CURRESTAB);
3291 sctp_add_cmd_sf(commands, SCTP_CMD_REPLY, SCTP_CHUNK(reply));
3292
3293 /* ...and remove all record of the association. */
3294 sctp_add_cmd_sf(commands, SCTP_CMD_DELETE_TCB, SCTP_NULL());
3295 return SCTP_DISPOSITION_DELETE_TCB;
3296
Vladislav Yasevichdf7deeb2006-08-22 00:19:51 -07003297nomem_chunk:
3298 sctp_ulpevent_free(ev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003299nomem:
3300 return SCTP_DISPOSITION_NOMEM;
3301}
3302
3303/*
Jerome Forissier047a2422005-04-28 11:58:43 -07003304 * RFC 2960, 8.4 - Handle "Out of the blue" Packets, sctpimpguide 2.41.
3305 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07003306 * 5) If the packet contains a SHUTDOWN ACK chunk, the receiver should
3307 * respond to the sender of the OOTB packet with a SHUTDOWN COMPLETE.
3308 * When sending the SHUTDOWN COMPLETE, the receiver of the OOTB
3309 * packet must fill in the Verification Tag field of the outbound
3310 * packet with the Verification Tag received in the SHUTDOWN ACK and
Jerome Forissier047a2422005-04-28 11:58:43 -07003311 * set the T-bit in the Chunk Flags to indicate that the Verification
3312 * Tag is reflected.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003313 *
3314 * 8) The receiver should respond to the sender of the OOTB packet with
3315 * an ABORT. When sending the ABORT, the receiver of the OOTB packet
3316 * MUST fill in the Verification Tag field of the outbound packet
3317 * with the value found in the Verification Tag field of the OOTB
Jerome Forissier047a2422005-04-28 11:58:43 -07003318 * packet and set the T-bit in the Chunk Flags to indicate that the
3319 * Verification Tag is reflected. After sending this ABORT, the
3320 * receiver of the OOTB packet shall discard the OOTB packet and take
3321 * no further action.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003322 */
3323sctp_disposition_t sctp_sf_ootb(const struct sctp_endpoint *ep,
3324 const struct sctp_association *asoc,
3325 const sctp_subtype_t type,
3326 void *arg,
3327 sctp_cmd_seq_t *commands)
3328{
3329 struct sctp_chunk *chunk = arg;
3330 struct sk_buff *skb = chunk->skb;
3331 sctp_chunkhdr_t *ch;
Shan Wei85c5ed42011-04-19 21:30:01 +00003332 sctp_errhdr_t *err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003333 __u8 *ch_end;
3334 int ootb_shut_ack = 0;
Shan Wei85c5ed42011-04-19 21:30:01 +00003335 int ootb_cookie_ack = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003336
3337 SCTP_INC_STATS(SCTP_MIB_OUTOFBLUES);
3338
3339 ch = (sctp_chunkhdr_t *) chunk->chunk_hdr;
3340 do {
Vlad Yasevichece25df2007-09-07 16:30:54 -04003341 /* Report violation if the chunk is less then minimal */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003342 if (ntohs(ch->length) < sizeof(sctp_chunkhdr_t))
Vlad Yasevichece25df2007-09-07 16:30:54 -04003343 return sctp_sf_violation_chunklen(ep, asoc, type, arg,
3344 commands);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003345
Vlad Yasevichece25df2007-09-07 16:30:54 -04003346 /* Now that we know we at least have a chunk header,
3347 * do things that are type appropriate.
3348 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003349 if (SCTP_CID_SHUTDOWN_ACK == ch->type)
3350 ootb_shut_ack = 1;
3351
3352 /* RFC 2960, Section 3.3.7
3353 * Moreover, under any circumstances, an endpoint that
3354 * receives an ABORT MUST NOT respond to that ABORT by
3355 * sending an ABORT of its own.
3356 */
3357 if (SCTP_CID_ABORT == ch->type)
3358 return sctp_sf_pdiscard(ep, asoc, type, arg, commands);
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09003359
Shan Wei85c5ed42011-04-19 21:30:01 +00003360 /* RFC 8.4, 7) If the packet contains a "Stale cookie" ERROR
3361 * or a COOKIE ACK the SCTP Packet should be silently
3362 * discarded.
3363 */
3364
3365 if (SCTP_CID_COOKIE_ACK == ch->type)
3366 ootb_cookie_ack = 1;
3367
3368 if (SCTP_CID_ERROR == ch->type) {
3369 sctp_walk_errors(err, ch) {
3370 if (SCTP_ERROR_STALE_COOKIE == err->cause) {
3371 ootb_cookie_ack = 1;
3372 break;
3373 }
3374 }
3375 }
3376
Vlad Yasevichece25df2007-09-07 16:30:54 -04003377 /* Report violation if chunk len overflows */
3378 ch_end = ((__u8 *)ch) + WORD_ROUND(ntohs(ch->length));
3379 if (ch_end > skb_tail_pointer(skb))
3380 return sctp_sf_violation_chunklen(ep, asoc, type, arg,
3381 commands);
3382
Linus Torvalds1da177e2005-04-16 15:20:36 -07003383 ch = (sctp_chunkhdr_t *) ch_end;
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -07003384 } while (ch_end < skb_tail_pointer(skb));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003385
3386 if (ootb_shut_ack)
Vlad Yasevichd3f25962007-09-07 11:47:45 -04003387 return sctp_sf_shut_8_4_5(ep, asoc, type, arg, commands);
Shan Wei85c5ed42011-04-19 21:30:01 +00003388 else if (ootb_cookie_ack)
3389 return sctp_sf_pdiscard(ep, asoc, type, arg, commands);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003390 else
Vlad Yasevichd3f25962007-09-07 11:47:45 -04003391 return sctp_sf_tabort_8_4_8(ep, asoc, type, arg, commands);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003392}
3393
3394/*
3395 * Handle an "Out of the blue" SHUTDOWN ACK.
3396 *
Jerome Forissier047a2422005-04-28 11:58:43 -07003397 * Section: 8.4 5, sctpimpguide 2.41.
3398 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07003399 * 5) If the packet contains a SHUTDOWN ACK chunk, the receiver should
Jerome Forissier047a2422005-04-28 11:58:43 -07003400 * respond to the sender of the OOTB packet with a SHUTDOWN COMPLETE.
3401 * When sending the SHUTDOWN COMPLETE, the receiver of the OOTB
3402 * packet must fill in the Verification Tag field of the outbound
3403 * packet with the Verification Tag received in the SHUTDOWN ACK and
3404 * set the T-bit in the Chunk Flags to indicate that the Verification
3405 * Tag is reflected.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003406 *
3407 * Inputs
3408 * (endpoint, asoc, type, arg, commands)
3409 *
3410 * Outputs
3411 * (sctp_disposition_t)
3412 *
3413 * The return value is the disposition of the chunk.
3414 */
3415static sctp_disposition_t sctp_sf_shut_8_4_5(const struct sctp_endpoint *ep,
3416 const struct sctp_association *asoc,
3417 const sctp_subtype_t type,
3418 void *arg,
3419 sctp_cmd_seq_t *commands)
3420{
3421 struct sctp_packet *packet = NULL;
3422 struct sctp_chunk *chunk = arg;
3423 struct sctp_chunk *shut;
3424
3425 packet = sctp_ootb_pkt_new(asoc, chunk);
3426
3427 if (packet) {
3428 /* Make an SHUTDOWN_COMPLETE.
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09003429 * The T bit will be set if the asoc is NULL.
3430 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003431 shut = sctp_make_shutdown_complete(asoc, chunk);
3432 if (!shut) {
3433 sctp_ootb_pkt_free(packet);
3434 return SCTP_DISPOSITION_NOMEM;
3435 }
3436
Jerome Forissier047a2422005-04-28 11:58:43 -07003437 /* Reflect vtag if T-Bit is set */
3438 if (sctp_test_T_bit(shut))
3439 packet->vtag = ntohl(chunk->sctp_hdr->vtag);
3440
Linus Torvalds1da177e2005-04-16 15:20:36 -07003441 /* Set the skb to the belonging sock for accounting. */
3442 shut->skb->sk = ep->base.sk;
3443
3444 sctp_packet_append_chunk(packet, shut);
3445
3446 sctp_add_cmd_sf(commands, SCTP_CMD_SEND_PKT,
3447 SCTP_PACKET(packet));
3448
3449 SCTP_INC_STATS(SCTP_MIB_OUTCTRLCHUNKS);
3450
3451 /* If the chunk length is invalid, we don't want to process
3452 * the reset of the packet.
3453 */
3454 if (!sctp_chunk_length_valid(chunk, sizeof(sctp_chunkhdr_t)))
3455 return sctp_sf_pdiscard(ep, asoc, type, arg, commands);
3456
Vlad Yasevichd3f25962007-09-07 11:47:45 -04003457 /* We need to discard the rest of the packet to prevent
3458 * potential bomming attacks from additional bundled chunks.
3459 * This is documented in SCTP Threats ID.
3460 */
3461 return sctp_sf_pdiscard(ep, asoc, type, arg, commands);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003462 }
3463
3464 return SCTP_DISPOSITION_NOMEM;
3465}
3466
3467/*
3468 * Handle SHUTDOWN ACK in COOKIE_ECHOED or COOKIE_WAIT state.
3469 *
3470 * Verification Tag: 8.5.1 E) Rules for packet carrying a SHUTDOWN ACK
3471 * If the receiver is in COOKIE-ECHOED or COOKIE-WAIT state the
3472 * procedures in section 8.4 SHOULD be followed, in other words it
3473 * should be treated as an Out Of The Blue packet.
3474 * [This means that we do NOT check the Verification Tag on these
3475 * chunks. --piggy ]
3476 *
3477 */
3478sctp_disposition_t sctp_sf_do_8_5_1_E_sa(const struct sctp_endpoint *ep,
3479 const struct sctp_association *asoc,
3480 const sctp_subtype_t type,
3481 void *arg,
3482 sctp_cmd_seq_t *commands)
3483{
Vlad Yasevichece25df2007-09-07 16:30:54 -04003484 struct sctp_chunk *chunk = arg;
3485
3486 /* Make sure that the SHUTDOWN_ACK chunk has a valid length. */
3487 if (!sctp_chunk_length_valid(chunk, sizeof(sctp_chunkhdr_t)))
3488 return sctp_sf_violation_chunklen(ep, asoc, type, arg,
3489 commands);
3490
Linus Torvalds1da177e2005-04-16 15:20:36 -07003491 /* Although we do have an association in this case, it corresponds
3492 * to a restarted association. So the packet is treated as an OOTB
3493 * packet and the state function that handles OOTB SHUTDOWN_ACK is
3494 * called with a NULL association.
3495 */
Wei Yongjun8190f892008-09-08 12:13:55 +08003496 SCTP_INC_STATS(SCTP_MIB_OUTOFBLUES);
3497
Linus Torvalds1da177e2005-04-16 15:20:36 -07003498 return sctp_sf_shut_8_4_5(ep, NULL, type, arg, commands);
3499}
3500
3501/* ADDIP Section 4.2 Upon reception of an ASCONF Chunk. */
3502sctp_disposition_t sctp_sf_do_asconf(const struct sctp_endpoint *ep,
3503 const struct sctp_association *asoc,
3504 const sctp_subtype_t type, void *arg,
3505 sctp_cmd_seq_t *commands)
3506{
3507 struct sctp_chunk *chunk = arg;
3508 struct sctp_chunk *asconf_ack = NULL;
Wei Yongjun6f4c6182007-09-19 17:19:52 +08003509 struct sctp_paramhdr *err_param = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003510 sctp_addiphdr_t *hdr;
Wei Yongjun6f4c6182007-09-19 17:19:52 +08003511 union sctp_addr_param *addr_param;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003512 __u32 serial;
Wei Yongjun6f4c6182007-09-19 17:19:52 +08003513 int length;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003514
3515 if (!sctp_vtag_verify(chunk, asoc)) {
3516 sctp_add_cmd_sf(commands, SCTP_CMD_REPORT_BAD_TAG,
3517 SCTP_NULL());
3518 return sctp_sf_pdiscard(ep, asoc, type, arg, commands);
3519 }
3520
Vlad Yasevich6afd2e82007-12-20 14:08:04 -08003521 /* ADD-IP: Section 4.1.1
3522 * This chunk MUST be sent in an authenticated way by using
3523 * the mechanism defined in [I-D.ietf-tsvwg-sctp-auth]. If this chunk
3524 * is received unauthenticated it MUST be silently discarded as
3525 * described in [I-D.ietf-tsvwg-sctp-auth].
3526 */
3527 if (!sctp_addip_noauth && !chunk->auth)
3528 return sctp_sf_discard_chunk(ep, asoc, type, arg, commands);
3529
Linus Torvalds1da177e2005-04-16 15:20:36 -07003530 /* Make sure that the ASCONF ADDIP chunk has a valid length. */
3531 if (!sctp_chunk_length_valid(chunk, sizeof(sctp_addip_chunk_t)))
3532 return sctp_sf_violation_chunklen(ep, asoc, type, arg,
3533 commands);
3534
3535 hdr = (sctp_addiphdr_t *)chunk->skb->data;
3536 serial = ntohl(hdr->serial);
3537
Wei Yongjun6f4c6182007-09-19 17:19:52 +08003538 addr_param = (union sctp_addr_param *)hdr->params;
3539 length = ntohs(addr_param->p.length);
3540 if (length < sizeof(sctp_paramhdr_t))
Wei Yongjunba016672008-09-30 05:32:24 -07003541 return sctp_sf_violation_paramlen(ep, asoc, type, arg,
Wei Yongjun6f4c6182007-09-19 17:19:52 +08003542 (void *)addr_param, commands);
3543
3544 /* Verify the ASCONF chunk before processing it. */
3545 if (!sctp_verify_asconf(asoc,
Vlad Yasevicha08de642007-12-20 14:11:47 -08003546 (sctp_paramhdr_t *)((void *)addr_param + length),
3547 (void *)chunk->chunk_end,
3548 &err_param))
Wei Yongjunba016672008-09-30 05:32:24 -07003549 return sctp_sf_violation_paramlen(ep, asoc, type, arg,
3550 (void *)err_param, commands);
Wei Yongjun6f4c6182007-09-19 17:19:52 +08003551
Vlad Yasevicha08de642007-12-20 14:11:47 -08003552 /* ADDIP 5.2 E1) Compare the value of the serial number to the value
Linus Torvalds1da177e2005-04-16 15:20:36 -07003553 * the endpoint stored in a new association variable
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09003554 * 'Peer-Serial-Number'.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003555 */
3556 if (serial == asoc->peer.addip_serial + 1) {
Vlad Yasevicha08de642007-12-20 14:11:47 -08003557 /* If this is the first instance of ASCONF in the packet,
3558 * we can clean our old ASCONF-ACKs.
3559 */
3560 if (!chunk->has_asconf)
3561 sctp_assoc_clean_asconf_ack_cache(asoc);
3562
3563 /* ADDIP 5.2 E4) When the Sequence Number matches the next one
3564 * expected, process the ASCONF as described below and after
3565 * processing the ASCONF Chunk, append an ASCONF-ACK Chunk to
3566 * the response packet and cache a copy of it (in the event it
3567 * later needs to be retransmitted).
3568 *
3569 * Essentially, do V1-V5.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003570 */
3571 asconf_ack = sctp_process_asconf((struct sctp_association *)
3572 asoc, chunk);
3573 if (!asconf_ack)
3574 return SCTP_DISPOSITION_NOMEM;
Vlad Yasevicha08de642007-12-20 14:11:47 -08003575 } else if (serial < asoc->peer.addip_serial + 1) {
3576 /* ADDIP 5.2 E2)
3577 * If the value found in the Sequence Number is less than the
3578 * ('Peer- Sequence-Number' + 1), simply skip to the next
3579 * ASCONF, and include in the outbound response packet
3580 * any previously cached ASCONF-ACK response that was
3581 * sent and saved that matches the Sequence Number of the
3582 * ASCONF. Note: It is possible that no cached ASCONF-ACK
3583 * Chunk exists. This will occur when an older ASCONF
3584 * arrives out of order. In such a case, the receiver
3585 * should skip the ASCONF Chunk and not include ASCONF-ACK
3586 * Chunk for that chunk.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003587 */
Vlad Yasevicha08de642007-12-20 14:11:47 -08003588 asconf_ack = sctp_assoc_lookup_asconf_ack(asoc, hdr->serial);
3589 if (!asconf_ack)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003590 return SCTP_DISPOSITION_DISCARD;
Vlad Yasevich31b02e12009-09-04 18:21:00 -04003591
3592 /* Reset the transport so that we select the correct one
3593 * this time around. This is to make sure that we don't
3594 * accidentally use a stale transport that's been removed.
3595 */
3596 asconf_ack->transport = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003597 } else {
Vlad Yasevicha08de642007-12-20 14:11:47 -08003598 /* ADDIP 5.2 E5) Otherwise, the ASCONF Chunk is discarded since
Linus Torvalds1da177e2005-04-16 15:20:36 -07003599 * it must be either a stale packet or from an attacker.
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09003600 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003601 return SCTP_DISPOSITION_DISCARD;
3602 }
3603
Vlad Yasevicha08de642007-12-20 14:11:47 -08003604 /* ADDIP 5.2 E6) The destination address of the SCTP packet
3605 * containing the ASCONF-ACK Chunks MUST be the source address of
3606 * the SCTP packet that held the ASCONF Chunks.
3607 *
3608 * To do this properly, we'll set the destination address of the chunk
3609 * and at the transmit time, will try look up the transport to use.
3610 * Since ASCONFs may be bundled, the correct transport may not be
Thadeu Lima de Souza Cascardo94e2bd62009-10-16 15:20:49 +02003611 * created until we process the entire packet, thus this workaround.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003612 */
Vlad Yasevicha08de642007-12-20 14:11:47 -08003613 asconf_ack->dest = chunk->source;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003614 sctp_add_cmd_sf(commands, SCTP_CMD_REPLY, SCTP_CHUNK(asconf_ack));
Michio Honda6af29cc2011-06-16 17:14:34 +09003615 if (asoc->new_transport) {
3616 sctp_sf_heartbeat(ep, asoc, type, asoc->new_transport,
3617 commands);
3618 ((struct sctp_association *)asoc)->new_transport = NULL;
3619 }
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09003620
Linus Torvalds1da177e2005-04-16 15:20:36 -07003621 return SCTP_DISPOSITION_CONSUME;
3622}
3623
3624/*
3625 * ADDIP Section 4.3 General rules for address manipulation
3626 * When building TLV parameters for the ASCONF Chunk that will add or
3627 * delete IP addresses the D0 to D13 rules should be applied:
3628 */
3629sctp_disposition_t sctp_sf_do_asconf_ack(const struct sctp_endpoint *ep,
3630 const struct sctp_association *asoc,
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09003631 const sctp_subtype_t type, void *arg,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003632 sctp_cmd_seq_t *commands)
3633{
3634 struct sctp_chunk *asconf_ack = arg;
3635 struct sctp_chunk *last_asconf = asoc->addip_last_asconf;
3636 struct sctp_chunk *abort;
Wei Yongjun6f4c6182007-09-19 17:19:52 +08003637 struct sctp_paramhdr *err_param = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003638 sctp_addiphdr_t *addip_hdr;
3639 __u32 sent_serial, rcvd_serial;
3640
3641 if (!sctp_vtag_verify(asconf_ack, asoc)) {
3642 sctp_add_cmd_sf(commands, SCTP_CMD_REPORT_BAD_TAG,
3643 SCTP_NULL());
3644 return sctp_sf_pdiscard(ep, asoc, type, arg, commands);
3645 }
3646
Vlad Yasevich6afd2e82007-12-20 14:08:04 -08003647 /* ADD-IP, Section 4.1.2:
3648 * This chunk MUST be sent in an authenticated way by using
3649 * the mechanism defined in [I-D.ietf-tsvwg-sctp-auth]. If this chunk
3650 * is received unauthenticated it MUST be silently discarded as
3651 * described in [I-D.ietf-tsvwg-sctp-auth].
3652 */
3653 if (!sctp_addip_noauth && !asconf_ack->auth)
3654 return sctp_sf_discard_chunk(ep, asoc, type, arg, commands);
3655
Linus Torvalds1da177e2005-04-16 15:20:36 -07003656 /* Make sure that the ADDIP chunk has a valid length. */
3657 if (!sctp_chunk_length_valid(asconf_ack, sizeof(sctp_addip_chunk_t)))
3658 return sctp_sf_violation_chunklen(ep, asoc, type, arg,
3659 commands);
3660
3661 addip_hdr = (sctp_addiphdr_t *)asconf_ack->skb->data;
3662 rcvd_serial = ntohl(addip_hdr->serial);
3663
Wei Yongjun6f4c6182007-09-19 17:19:52 +08003664 /* Verify the ASCONF-ACK chunk before processing it. */
3665 if (!sctp_verify_asconf(asoc,
3666 (sctp_paramhdr_t *)addip_hdr->params,
3667 (void *)asconf_ack->chunk_end,
3668 &err_param))
Wei Yongjunba016672008-09-30 05:32:24 -07003669 return sctp_sf_violation_paramlen(ep, asoc, type, arg,
3670 (void *)err_param, commands);
Wei Yongjun6f4c6182007-09-19 17:19:52 +08003671
Linus Torvalds1da177e2005-04-16 15:20:36 -07003672 if (last_asconf) {
3673 addip_hdr = (sctp_addiphdr_t *)last_asconf->subh.addip_hdr;
3674 sent_serial = ntohl(addip_hdr->serial);
3675 } else {
3676 sent_serial = asoc->addip_serial - 1;
3677 }
3678
3679 /* D0) If an endpoint receives an ASCONF-ACK that is greater than or
3680 * equal to the next serial number to be used but no ASCONF chunk is
3681 * outstanding the endpoint MUST ABORT the association. Note that a
3682 * sequence number is greater than if it is no more than 2^^31-1
3683 * larger than the current sequence number (using serial arithmetic).
3684 */
3685 if (ADDIP_SERIAL_gte(rcvd_serial, sent_serial + 1) &&
3686 !(asoc->addip_last_asconf)) {
3687 abort = sctp_make_abort(asoc, asconf_ack,
3688 sizeof(sctp_errhdr_t));
3689 if (abort) {
Wei Yongjun00f1c2d2007-08-21 15:50:01 +08003690 sctp_init_cause(abort, SCTP_ERROR_ASCONF_ACK, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003691 sctp_add_cmd_sf(commands, SCTP_CMD_REPLY,
3692 SCTP_CHUNK(abort));
3693 }
3694 /* We are going to ABORT, so we might as well stop
3695 * processing the rest of the chunks in the packet.
3696 */
3697 sctp_add_cmd_sf(commands, SCTP_CMD_TIMER_STOP,
3698 SCTP_TO(SCTP_EVENT_TIMEOUT_T4_RTO));
3699 sctp_add_cmd_sf(commands, SCTP_CMD_DISCARD_PACKET,SCTP_NULL());
Sridhar Samudrala8de8c872006-05-19 10:58:12 -07003700 sctp_add_cmd_sf(commands, SCTP_CMD_SET_SK_ERR,
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09003701 SCTP_ERROR(ECONNABORTED));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003702 sctp_add_cmd_sf(commands, SCTP_CMD_ASSOC_FAILED,
Al Viro5be291f2006-11-20 17:01:06 -08003703 SCTP_PERR(SCTP_ERROR_ASCONF_ACK));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003704 SCTP_INC_STATS(SCTP_MIB_ABORTEDS);
3705 SCTP_DEC_STATS(SCTP_MIB_CURRESTAB);
3706 return SCTP_DISPOSITION_ABORT;
3707 }
3708
3709 if ((rcvd_serial == sent_serial) && asoc->addip_last_asconf) {
3710 sctp_add_cmd_sf(commands, SCTP_CMD_TIMER_STOP,
3711 SCTP_TO(SCTP_EVENT_TIMEOUT_T4_RTO));
3712
3713 if (!sctp_process_asconf_ack((struct sctp_association *)asoc,
Vlad Yasevichc0786692010-04-28 08:47:22 +00003714 asconf_ack)) {
3715 /* Successfully processed ASCONF_ACK. We can
3716 * release the next asconf if we have one.
3717 */
3718 sctp_add_cmd_sf(commands, SCTP_CMD_SEND_NEXT_ASCONF,
3719 SCTP_NULL());
Linus Torvalds1da177e2005-04-16 15:20:36 -07003720 return SCTP_DISPOSITION_CONSUME;
Vlad Yasevichc0786692010-04-28 08:47:22 +00003721 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003722
3723 abort = sctp_make_abort(asoc, asconf_ack,
3724 sizeof(sctp_errhdr_t));
3725 if (abort) {
Wei Yongjun00f1c2d2007-08-21 15:50:01 +08003726 sctp_init_cause(abort, SCTP_ERROR_RSRC_LOW, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003727 sctp_add_cmd_sf(commands, SCTP_CMD_REPLY,
3728 SCTP_CHUNK(abort));
3729 }
3730 /* We are going to ABORT, so we might as well stop
3731 * processing the rest of the chunks in the packet.
3732 */
3733 sctp_add_cmd_sf(commands, SCTP_CMD_DISCARD_PACKET,SCTP_NULL());
Sridhar Samudrala8de8c872006-05-19 10:58:12 -07003734 sctp_add_cmd_sf(commands, SCTP_CMD_SET_SK_ERR,
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09003735 SCTP_ERROR(ECONNABORTED));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003736 sctp_add_cmd_sf(commands, SCTP_CMD_ASSOC_FAILED,
Al Viro5be291f2006-11-20 17:01:06 -08003737 SCTP_PERR(SCTP_ERROR_ASCONF_ACK));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003738 SCTP_INC_STATS(SCTP_MIB_ABORTEDS);
3739 SCTP_DEC_STATS(SCTP_MIB_CURRESTAB);
3740 return SCTP_DISPOSITION_ABORT;
3741 }
3742
3743 return SCTP_DISPOSITION_DISCARD;
3744}
3745
3746/*
3747 * PR-SCTP Section 3.6 Receiver Side Implementation of PR-SCTP
3748 *
3749 * When a FORWARD TSN chunk arrives, the data receiver MUST first update
3750 * its cumulative TSN point to the value carried in the FORWARD TSN
3751 * chunk, and then MUST further advance its cumulative TSN point locally
3752 * if possible.
3753 * After the above processing, the data receiver MUST stop reporting any
3754 * missing TSNs earlier than or equal to the new cumulative TSN point.
3755 *
3756 * Verification Tag: 8.5 Verification Tag [Normal verification]
3757 *
3758 * The return value is the disposition of the chunk.
3759 */
3760sctp_disposition_t sctp_sf_eat_fwd_tsn(const struct sctp_endpoint *ep,
3761 const struct sctp_association *asoc,
3762 const sctp_subtype_t type,
3763 void *arg,
3764 sctp_cmd_seq_t *commands)
3765{
3766 struct sctp_chunk *chunk = arg;
3767 struct sctp_fwdtsn_hdr *fwdtsn_hdr;
Wei Yongjun9fcb95a2008-12-25 16:58:11 -08003768 struct sctp_fwdtsn_skip *skip;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003769 __u16 len;
3770 __u32 tsn;
3771
3772 if (!sctp_vtag_verify(chunk, asoc)) {
3773 sctp_add_cmd_sf(commands, SCTP_CMD_REPORT_BAD_TAG,
3774 SCTP_NULL());
3775 return sctp_sf_pdiscard(ep, asoc, type, arg, commands);
3776 }
3777
3778 /* Make sure that the FORWARD_TSN chunk has valid length. */
3779 if (!sctp_chunk_length_valid(chunk, sizeof(struct sctp_fwdtsn_chunk)))
3780 return sctp_sf_violation_chunklen(ep, asoc, type, arg,
3781 commands);
3782
3783 fwdtsn_hdr = (struct sctp_fwdtsn_hdr *)chunk->skb->data;
3784 chunk->subh.fwdtsn_hdr = fwdtsn_hdr;
3785 len = ntohs(chunk->chunk_hdr->length);
3786 len -= sizeof(struct sctp_chunkhdr);
3787 skb_pull(chunk->skb, len);
3788
3789 tsn = ntohl(fwdtsn_hdr->new_cum_tsn);
Harvey Harrison0dc47872008-03-05 20:47:47 -08003790 SCTP_DEBUG_PRINTK("%s: TSN 0x%x.\n", __func__, tsn);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003791
3792 /* The TSN is too high--silently discard the chunk and count on it
3793 * getting retransmitted later.
3794 */
3795 if (sctp_tsnmap_check(&asoc->peer.tsn_map, tsn) < 0)
3796 goto discard_noforce;
3797
Wei Yongjun9fcb95a2008-12-25 16:58:11 -08003798 /* Silently discard the chunk if stream-id is not valid */
3799 sctp_walk_fwdtsn(skip, chunk) {
3800 if (ntohs(skip->stream) >= asoc->c.sinit_max_instreams)
3801 goto discard_noforce;
3802 }
3803
Linus Torvalds1da177e2005-04-16 15:20:36 -07003804 sctp_add_cmd_sf(commands, SCTP_CMD_REPORT_FWDTSN, SCTP_U32(tsn));
3805 if (len > sizeof(struct sctp_fwdtsn_hdr))
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09003806 sctp_add_cmd_sf(commands, SCTP_CMD_PROCESS_FWDTSN,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003807 SCTP_CHUNK(chunk));
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09003808
Linus Torvalds1da177e2005-04-16 15:20:36 -07003809 /* Count this as receiving DATA. */
3810 if (asoc->autoclose) {
3811 sctp_add_cmd_sf(commands, SCTP_CMD_TIMER_RESTART,
3812 SCTP_TO(SCTP_EVENT_TIMEOUT_AUTOCLOSE));
3813 }
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09003814
Linus Torvalds1da177e2005-04-16 15:20:36 -07003815 /* FIXME: For now send a SACK, but DATA processing may
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09003816 * send another.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003817 */
3818 sctp_add_cmd_sf(commands, SCTP_CMD_GEN_SACK, SCTP_NOFORCE());
Linus Torvalds1da177e2005-04-16 15:20:36 -07003819
3820 return SCTP_DISPOSITION_CONSUME;
3821
3822discard_noforce:
3823 return SCTP_DISPOSITION_DISCARD;
3824}
3825
3826sctp_disposition_t sctp_sf_eat_fwd_tsn_fast(
3827 const struct sctp_endpoint *ep,
3828 const struct sctp_association *asoc,
3829 const sctp_subtype_t type,
3830 void *arg,
3831 sctp_cmd_seq_t *commands)
3832{
3833 struct sctp_chunk *chunk = arg;
3834 struct sctp_fwdtsn_hdr *fwdtsn_hdr;
Wei Yongjun9fcb95a2008-12-25 16:58:11 -08003835 struct sctp_fwdtsn_skip *skip;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003836 __u16 len;
3837 __u32 tsn;
3838
3839 if (!sctp_vtag_verify(chunk, asoc)) {
3840 sctp_add_cmd_sf(commands, SCTP_CMD_REPORT_BAD_TAG,
3841 SCTP_NULL());
3842 return sctp_sf_pdiscard(ep, asoc, type, arg, commands);
3843 }
3844
3845 /* Make sure that the FORWARD_TSN chunk has a valid length. */
3846 if (!sctp_chunk_length_valid(chunk, sizeof(struct sctp_fwdtsn_chunk)))
3847 return sctp_sf_violation_chunklen(ep, asoc, type, arg,
3848 commands);
3849
3850 fwdtsn_hdr = (struct sctp_fwdtsn_hdr *)chunk->skb->data;
3851 chunk->subh.fwdtsn_hdr = fwdtsn_hdr;
3852 len = ntohs(chunk->chunk_hdr->length);
3853 len -= sizeof(struct sctp_chunkhdr);
3854 skb_pull(chunk->skb, len);
3855
3856 tsn = ntohl(fwdtsn_hdr->new_cum_tsn);
Harvey Harrison0dc47872008-03-05 20:47:47 -08003857 SCTP_DEBUG_PRINTK("%s: TSN 0x%x.\n", __func__, tsn);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003858
3859 /* The TSN is too high--silently discard the chunk and count on it
3860 * getting retransmitted later.
3861 */
3862 if (sctp_tsnmap_check(&asoc->peer.tsn_map, tsn) < 0)
3863 goto gen_shutdown;
3864
Wei Yongjun9fcb95a2008-12-25 16:58:11 -08003865 /* Silently discard the chunk if stream-id is not valid */
3866 sctp_walk_fwdtsn(skip, chunk) {
3867 if (ntohs(skip->stream) >= asoc->c.sinit_max_instreams)
3868 goto gen_shutdown;
3869 }
3870
Linus Torvalds1da177e2005-04-16 15:20:36 -07003871 sctp_add_cmd_sf(commands, SCTP_CMD_REPORT_FWDTSN, SCTP_U32(tsn));
3872 if (len > sizeof(struct sctp_fwdtsn_hdr))
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09003873 sctp_add_cmd_sf(commands, SCTP_CMD_PROCESS_FWDTSN,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003874 SCTP_CHUNK(chunk));
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09003875
Linus Torvalds1da177e2005-04-16 15:20:36 -07003876 /* Go a head and force a SACK, since we are shutting down. */
3877gen_shutdown:
3878 /* Implementor's Guide.
3879 *
3880 * While in SHUTDOWN-SENT state, the SHUTDOWN sender MUST immediately
3881 * respond to each received packet containing one or more DATA chunk(s)
3882 * with a SACK, a SHUTDOWN chunk, and restart the T2-shutdown timer
3883 */
3884 sctp_add_cmd_sf(commands, SCTP_CMD_GEN_SHUTDOWN, SCTP_NULL());
3885 sctp_add_cmd_sf(commands, SCTP_CMD_GEN_SACK, SCTP_FORCE());
3886 sctp_add_cmd_sf(commands, SCTP_CMD_TIMER_RESTART,
3887 SCTP_TO(SCTP_EVENT_TIMEOUT_T2_SHUTDOWN));
3888
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09003889 return SCTP_DISPOSITION_CONSUME;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003890}
3891
3892/*
Lucas De Marchi25985ed2011-03-30 22:57:33 -03003893 * SCTP-AUTH Section 6.3 Receiving authenticated chukns
Vlad Yasevichbbd0d592007-10-03 17:51:34 -07003894 *
3895 * The receiver MUST use the HMAC algorithm indicated in the HMAC
3896 * Identifier field. If this algorithm was not specified by the
3897 * receiver in the HMAC-ALGO parameter in the INIT or INIT-ACK chunk
3898 * during association setup, the AUTH chunk and all chunks after it MUST
3899 * be discarded and an ERROR chunk SHOULD be sent with the error cause
3900 * defined in Section 4.1.
3901 *
3902 * If an endpoint with no shared key receives a Shared Key Identifier
3903 * other than 0, it MUST silently discard all authenticated chunks. If
3904 * the endpoint has at least one endpoint pair shared key for the peer,
3905 * it MUST use the key specified by the Shared Key Identifier if a
3906 * key has been configured for that Shared Key Identifier. If no
3907 * endpoint pair shared key has been configured for that Shared Key
3908 * Identifier, all authenticated chunks MUST be silently discarded.
3909 *
3910 * Verification Tag: 8.5 Verification Tag [Normal verification]
3911 *
3912 * The return value is the disposition of the chunk.
3913 */
3914static sctp_ierror_t sctp_sf_authenticate(const struct sctp_endpoint *ep,
3915 const struct sctp_association *asoc,
3916 const sctp_subtype_t type,
3917 struct sctp_chunk *chunk)
3918{
3919 struct sctp_authhdr *auth_hdr;
3920 struct sctp_hmac *hmac;
3921 unsigned int sig_len;
3922 __u16 key_id;
3923 __u8 *save_digest;
3924 __u8 *digest;
3925
3926 /* Pull in the auth header, so we can do some more verification */
3927 auth_hdr = (struct sctp_authhdr *)chunk->skb->data;
3928 chunk->subh.auth_hdr = auth_hdr;
3929 skb_pull(chunk->skb, sizeof(struct sctp_authhdr));
3930
3931 /* Make sure that we suport the HMAC algorithm from the auth
3932 * chunk.
3933 */
3934 if (!sctp_auth_asoc_verify_hmac_id(asoc, auth_hdr->hmac_id))
3935 return SCTP_IERROR_AUTH_BAD_HMAC;
3936
3937 /* Make sure that the provided shared key identifier has been
3938 * configured
3939 */
3940 key_id = ntohs(auth_hdr->shkey_id);
3941 if (key_id != asoc->active_key_id && !sctp_auth_get_shkey(asoc, key_id))
3942 return SCTP_IERROR_AUTH_BAD_KEYID;
3943
3944
3945 /* Make sure that the length of the signature matches what
3946 * we expect.
3947 */
3948 sig_len = ntohs(chunk->chunk_hdr->length) - sizeof(sctp_auth_chunk_t);
3949 hmac = sctp_auth_get_hmac(ntohs(auth_hdr->hmac_id));
3950 if (sig_len != hmac->hmac_len)
3951 return SCTP_IERROR_PROTO_VIOLATION;
3952
3953 /* Now that we've done validation checks, we can compute and
3954 * verify the hmac. The steps involved are:
3955 * 1. Save the digest from the chunk.
3956 * 2. Zero out the digest in the chunk.
3957 * 3. Compute the new digest
3958 * 4. Compare saved and new digests.
3959 */
3960 digest = auth_hdr->hmac;
3961 skb_pull(chunk->skb, sig_len);
3962
3963 save_digest = kmemdup(digest, sig_len, GFP_ATOMIC);
3964 if (!save_digest)
3965 goto nomem;
3966
3967 memset(digest, 0, sig_len);
3968
3969 sctp_auth_calculate_hmac(asoc, chunk->skb,
3970 (struct sctp_auth_chunk *)chunk->chunk_hdr,
3971 GFP_ATOMIC);
3972
3973 /* Discard the packet if the digests do not match */
3974 if (memcmp(save_digest, digest, sig_len)) {
3975 kfree(save_digest);
3976 return SCTP_IERROR_BAD_SIG;
3977 }
3978
3979 kfree(save_digest);
3980 chunk->auth = 1;
3981
3982 return SCTP_IERROR_NO_ERROR;
3983nomem:
3984 return SCTP_IERROR_NOMEM;
3985}
3986
3987sctp_disposition_t sctp_sf_eat_auth(const struct sctp_endpoint *ep,
3988 const struct sctp_association *asoc,
3989 const sctp_subtype_t type,
3990 void *arg,
3991 sctp_cmd_seq_t *commands)
3992{
3993 struct sctp_authhdr *auth_hdr;
3994 struct sctp_chunk *chunk = arg;
3995 struct sctp_chunk *err_chunk;
3996 sctp_ierror_t error;
3997
Wei Yongjund2f19fa2008-02-05 03:02:26 -08003998 /* Make sure that the peer has AUTH capable */
3999 if (!asoc->peer.auth_capable)
4000 return sctp_sf_unk_chunk(ep, asoc, type, arg, commands);
4001
Vlad Yasevichbbd0d592007-10-03 17:51:34 -07004002 if (!sctp_vtag_verify(chunk, asoc)) {
4003 sctp_add_cmd_sf(commands, SCTP_CMD_REPORT_BAD_TAG,
4004 SCTP_NULL());
4005 return sctp_sf_pdiscard(ep, asoc, type, arg, commands);
4006 }
4007
4008 /* Make sure that the AUTH chunk has valid length. */
4009 if (!sctp_chunk_length_valid(chunk, sizeof(struct sctp_auth_chunk)))
4010 return sctp_sf_violation_chunklen(ep, asoc, type, arg,
4011 commands);
4012
4013 auth_hdr = (struct sctp_authhdr *)chunk->skb->data;
4014 error = sctp_sf_authenticate(ep, asoc, type, chunk);
4015 switch (error) {
Joe Perches7fd71b12011-07-01 09:43:11 +00004016 case SCTP_IERROR_AUTH_BAD_HMAC:
4017 /* Generate the ERROR chunk and discard the rest
4018 * of the packet
4019 */
4020 err_chunk = sctp_make_op_error(asoc, chunk,
4021 SCTP_ERROR_UNSUP_HMAC,
4022 &auth_hdr->hmac_id,
4023 sizeof(__u16), 0);
4024 if (err_chunk) {
4025 sctp_add_cmd_sf(commands, SCTP_CMD_REPLY,
4026 SCTP_CHUNK(err_chunk));
4027 }
4028 /* Fall Through */
4029 case SCTP_IERROR_AUTH_BAD_KEYID:
4030 case SCTP_IERROR_BAD_SIG:
4031 return sctp_sf_pdiscard(ep, asoc, type, arg, commands);
4032
4033 case SCTP_IERROR_PROTO_VIOLATION:
4034 return sctp_sf_violation_chunklen(ep, asoc, type, arg,
4035 commands);
4036
4037 case SCTP_IERROR_NOMEM:
4038 return SCTP_DISPOSITION_NOMEM;
4039
4040 default: /* Prevent gcc warnings */
4041 break;
Vlad Yasevichbbd0d592007-10-03 17:51:34 -07004042 }
4043
Vlad Yasevich65b07e52007-09-16 19:34:00 -07004044 if (asoc->active_key_id != ntohs(auth_hdr->shkey_id)) {
4045 struct sctp_ulpevent *ev;
4046
4047 ev = sctp_ulpevent_make_authkey(asoc, ntohs(auth_hdr->shkey_id),
4048 SCTP_AUTH_NEWKEY, GFP_ATOMIC);
4049
4050 if (!ev)
4051 return -ENOMEM;
4052
4053 sctp_add_cmd_sf(commands, SCTP_CMD_EVENT_ULP,
4054 SCTP_ULPEVENT(ev));
4055 }
4056
Vlad Yasevichbbd0d592007-10-03 17:51:34 -07004057 return SCTP_DISPOSITION_CONSUME;
4058}
4059
4060/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004061 * Process an unknown chunk.
4062 *
4063 * Section: 3.2. Also, 2.1 in the implementor's guide.
4064 *
4065 * Chunk Types are encoded such that the highest-order two bits specify
4066 * the action that must be taken if the processing endpoint does not
4067 * recognize the Chunk Type.
4068 *
4069 * 00 - Stop processing this SCTP packet and discard it, do not process
4070 * any further chunks within it.
4071 *
4072 * 01 - Stop processing this SCTP packet and discard it, do not process
4073 * any further chunks within it, and report the unrecognized
4074 * chunk in an 'Unrecognized Chunk Type'.
4075 *
4076 * 10 - Skip this chunk and continue processing.
4077 *
4078 * 11 - Skip this chunk and continue processing, but report in an ERROR
4079 * Chunk using the 'Unrecognized Chunk Type' cause of error.
4080 *
4081 * The return value is the disposition of the chunk.
4082 */
4083sctp_disposition_t sctp_sf_unk_chunk(const struct sctp_endpoint *ep,
4084 const struct sctp_association *asoc,
4085 const sctp_subtype_t type,
4086 void *arg,
4087 sctp_cmd_seq_t *commands)
4088{
4089 struct sctp_chunk *unk_chunk = arg;
4090 struct sctp_chunk *err_chunk;
4091 sctp_chunkhdr_t *hdr;
4092
4093 SCTP_DEBUG_PRINTK("Processing the unknown chunk id %d.\n", type.chunk);
4094
4095 if (!sctp_vtag_verify(unk_chunk, asoc))
4096 return sctp_sf_pdiscard(ep, asoc, type, arg, commands);
4097
4098 /* Make sure that the chunk has a valid length.
4099 * Since we don't know the chunk type, we use a general
4100 * chunkhdr structure to make a comparison.
4101 */
4102 if (!sctp_chunk_length_valid(unk_chunk, sizeof(sctp_chunkhdr_t)))
4103 return sctp_sf_violation_chunklen(ep, asoc, type, arg,
4104 commands);
4105
4106 switch (type.chunk & SCTP_CID_ACTION_MASK) {
4107 case SCTP_CID_ACTION_DISCARD:
4108 /* Discard the packet. */
4109 return sctp_sf_pdiscard(ep, asoc, type, arg, commands);
4110 break;
4111 case SCTP_CID_ACTION_DISCARD_ERR:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004112 /* Generate an ERROR chunk as response. */
4113 hdr = unk_chunk->chunk_hdr;
4114 err_chunk = sctp_make_op_error(asoc, unk_chunk,
4115 SCTP_ERROR_UNKNOWN_CHUNK, hdr,
Vlad Yasevich6383cfb2009-11-23 15:53:56 -05004116 WORD_ROUND(ntohs(hdr->length)),
4117 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004118 if (err_chunk) {
4119 sctp_add_cmd_sf(commands, SCTP_CMD_REPLY,
4120 SCTP_CHUNK(err_chunk));
4121 }
Vlad Yasevich2e3216c2008-06-19 16:08:18 -07004122
4123 /* Discard the packet. */
4124 sctp_sf_pdiscard(ep, asoc, type, arg, commands);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004125 return SCTP_DISPOSITION_CONSUME;
4126 break;
4127 case SCTP_CID_ACTION_SKIP:
4128 /* Skip the chunk. */
4129 return SCTP_DISPOSITION_DISCARD;
4130 break;
4131 case SCTP_CID_ACTION_SKIP_ERR:
4132 /* Generate an ERROR chunk as response. */
4133 hdr = unk_chunk->chunk_hdr;
4134 err_chunk = sctp_make_op_error(asoc, unk_chunk,
4135 SCTP_ERROR_UNKNOWN_CHUNK, hdr,
Vlad Yasevich6383cfb2009-11-23 15:53:56 -05004136 WORD_ROUND(ntohs(hdr->length)),
4137 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004138 if (err_chunk) {
4139 sctp_add_cmd_sf(commands, SCTP_CMD_REPLY,
4140 SCTP_CHUNK(err_chunk));
4141 }
4142 /* Skip the chunk. */
4143 return SCTP_DISPOSITION_CONSUME;
4144 break;
4145 default:
4146 break;
4147 }
4148
4149 return SCTP_DISPOSITION_DISCARD;
4150}
4151
4152/*
4153 * Discard the chunk.
4154 *
4155 * Section: 0.2, 5.2.3, 5.2.5, 5.2.6, 6.0, 8.4.6, 8.5.1c, 9.2
4156 * [Too numerous to mention...]
4157 * Verification Tag: No verification needed.
4158 * Inputs
4159 * (endpoint, asoc, chunk)
4160 *
4161 * Outputs
4162 * (asoc, reply_msg, msg_up, timers, counters)
4163 *
4164 * The return value is the disposition of the chunk.
4165 */
4166sctp_disposition_t sctp_sf_discard_chunk(const struct sctp_endpoint *ep,
4167 const struct sctp_association *asoc,
4168 const sctp_subtype_t type,
4169 void *arg,
4170 sctp_cmd_seq_t *commands)
4171{
Vlad Yasevichece25df2007-09-07 16:30:54 -04004172 struct sctp_chunk *chunk = arg;
4173
4174 /* Make sure that the chunk has a valid length.
4175 * Since we don't know the chunk type, we use a general
4176 * chunkhdr structure to make a comparison.
4177 */
4178 if (!sctp_chunk_length_valid(chunk, sizeof(sctp_chunkhdr_t)))
4179 return sctp_sf_violation_chunklen(ep, asoc, type, arg,
4180 commands);
4181
Linus Torvalds1da177e2005-04-16 15:20:36 -07004182 SCTP_DEBUG_PRINTK("Chunk %d is discarded\n", type.chunk);
4183 return SCTP_DISPOSITION_DISCARD;
4184}
4185
4186/*
4187 * Discard the whole packet.
4188 *
4189 * Section: 8.4 2)
4190 *
4191 * 2) If the OOTB packet contains an ABORT chunk, the receiver MUST
4192 * silently discard the OOTB packet and take no further action.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004193 *
4194 * Verification Tag: No verification necessary
4195 *
4196 * Inputs
4197 * (endpoint, asoc, chunk)
4198 *
4199 * Outputs
4200 * (asoc, reply_msg, msg_up, timers, counters)
4201 *
4202 * The return value is the disposition of the chunk.
4203 */
4204sctp_disposition_t sctp_sf_pdiscard(const struct sctp_endpoint *ep,
4205 const struct sctp_association *asoc,
4206 const sctp_subtype_t type,
4207 void *arg,
4208 sctp_cmd_seq_t *commands)
4209{
Sridhar Samudralaac0b0462006-08-22 00:15:33 -07004210 SCTP_INC_STATS(SCTP_MIB_IN_PKT_DISCARDS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004211 sctp_add_cmd_sf(commands, SCTP_CMD_DISCARD_PACKET, SCTP_NULL());
4212
4213 return SCTP_DISPOSITION_CONSUME;
4214}
4215
4216
4217/*
4218 * The other end is violating protocol.
4219 *
4220 * Section: Not specified
4221 * Verification Tag: Not specified
4222 * Inputs
4223 * (endpoint, asoc, chunk)
4224 *
4225 * Outputs
4226 * (asoc, reply_msg, msg_up, timers, counters)
4227 *
4228 * We simply tag the chunk as a violation. The state machine will log
4229 * the violation and continue.
4230 */
4231sctp_disposition_t sctp_sf_violation(const struct sctp_endpoint *ep,
4232 const struct sctp_association *asoc,
4233 const sctp_subtype_t type,
4234 void *arg,
4235 sctp_cmd_seq_t *commands)
4236{
Vlad Yasevichece25df2007-09-07 16:30:54 -04004237 struct sctp_chunk *chunk = arg;
4238
4239 /* Make sure that the chunk has a valid length. */
4240 if (!sctp_chunk_length_valid(chunk, sizeof(sctp_chunkhdr_t)))
4241 return sctp_sf_violation_chunklen(ep, asoc, type, arg,
4242 commands);
4243
Linus Torvalds1da177e2005-04-16 15:20:36 -07004244 return SCTP_DISPOSITION_VIOLATION;
4245}
4246
Linus Torvalds1da177e2005-04-16 15:20:36 -07004247/*
Wei Yongjunaecedea2007-08-02 16:57:44 +08004248 * Common function to handle a protocol violation.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004249 */
Wei Yongjunaecedea2007-08-02 16:57:44 +08004250static sctp_disposition_t sctp_sf_abort_violation(
Vlad Yasevichece25df2007-09-07 16:30:54 -04004251 const struct sctp_endpoint *ep,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004252 const struct sctp_association *asoc,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004253 void *arg,
Wei Yongjunaecedea2007-08-02 16:57:44 +08004254 sctp_cmd_seq_t *commands,
4255 const __u8 *payload,
4256 const size_t paylen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004257{
Vlad Yasevichece25df2007-09-07 16:30:54 -04004258 struct sctp_packet *packet = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004259 struct sctp_chunk *chunk = arg;
4260 struct sctp_chunk *abort = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004261
Vlad Yasevichbbd0d592007-10-03 17:51:34 -07004262 /* SCTP-AUTH, Section 6.3:
4263 * It should be noted that if the receiver wants to tear
4264 * down an association in an authenticated way only, the
4265 * handling of malformed packets should not result in
4266 * tearing down the association.
4267 *
4268 * This means that if we only want to abort associations
4269 * in an authenticated way (i.e AUTH+ABORT), then we
Lucas De Marchi25985ed2011-03-30 22:57:33 -03004270 * can't destroy this association just because the packet
Vlad Yasevichbbd0d592007-10-03 17:51:34 -07004271 * was malformed.
4272 */
4273 if (sctp_auth_recv_cid(SCTP_CID_ABORT, asoc))
4274 goto discard;
4275
Jesper Juhl9abed242007-11-11 23:57:49 +01004276 /* Make the abort chunk. */
4277 abort = sctp_make_abort_violation(asoc, chunk, payload, paylen);
4278 if (!abort)
4279 goto nomem;
4280
Vlad Yasevichece25df2007-09-07 16:30:54 -04004281 if (asoc) {
Gui Jianfengf4ad85c2008-04-12 18:39:34 -07004282 /* Treat INIT-ACK as a special case during COOKIE-WAIT. */
4283 if (chunk->chunk_hdr->type == SCTP_CID_INIT_ACK &&
4284 !asoc->peer.i.init_tag) {
4285 sctp_initack_chunk_t *initack;
4286
4287 initack = (sctp_initack_chunk_t *)chunk->chunk_hdr;
4288 if (!sctp_chunk_length_valid(chunk,
4289 sizeof(sctp_initack_chunk_t)))
4290 abort->chunk_hdr->flags |= SCTP_CHUNK_FLAG_T;
4291 else {
4292 unsigned int inittag;
4293
4294 inittag = ntohl(initack->init_hdr.init_tag);
4295 sctp_add_cmd_sf(commands, SCTP_CMD_UPDATE_INITTAG,
4296 SCTP_U32(inittag));
4297 }
4298 }
4299
Vlad Yasevichece25df2007-09-07 16:30:54 -04004300 sctp_add_cmd_sf(commands, SCTP_CMD_REPLY, SCTP_CHUNK(abort));
4301 SCTP_INC_STATS(SCTP_MIB_OUTCTRLCHUNKS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004302
Vlad Yasevichece25df2007-09-07 16:30:54 -04004303 if (asoc->state <= SCTP_STATE_COOKIE_ECHOED) {
4304 sctp_add_cmd_sf(commands, SCTP_CMD_TIMER_STOP,
4305 SCTP_TO(SCTP_EVENT_TIMEOUT_T1_INIT));
4306 sctp_add_cmd_sf(commands, SCTP_CMD_SET_SK_ERR,
4307 SCTP_ERROR(ECONNREFUSED));
4308 sctp_add_cmd_sf(commands, SCTP_CMD_INIT_FAILED,
4309 SCTP_PERR(SCTP_ERROR_PROTO_VIOLATION));
4310 } else {
4311 sctp_add_cmd_sf(commands, SCTP_CMD_SET_SK_ERR,
4312 SCTP_ERROR(ECONNABORTED));
4313 sctp_add_cmd_sf(commands, SCTP_CMD_ASSOC_FAILED,
4314 SCTP_PERR(SCTP_ERROR_PROTO_VIOLATION));
4315 SCTP_DEC_STATS(SCTP_MIB_CURRESTAB);
4316 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004317 } else {
Vlad Yasevichece25df2007-09-07 16:30:54 -04004318 packet = sctp_ootb_pkt_new(asoc, chunk);
4319
4320 if (!packet)
4321 goto nomem_pkt;
4322
4323 if (sctp_test_T_bit(abort))
4324 packet->vtag = ntohl(chunk->sctp_hdr->vtag);
4325
4326 abort->skb->sk = ep->base.sk;
4327
4328 sctp_packet_append_chunk(packet, abort);
4329
4330 sctp_add_cmd_sf(commands, SCTP_CMD_SEND_PKT,
4331 SCTP_PACKET(packet));
4332
4333 SCTP_INC_STATS(SCTP_MIB_OUTCTRLCHUNKS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004334 }
4335
Linus Torvalds1da177e2005-04-16 15:20:36 -07004336 SCTP_INC_STATS(SCTP_MIB_ABORTEDS);
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09004337
Vlad Yasevich56eb82b2008-10-09 14:33:01 -07004338discard:
4339 sctp_sf_pdiscard(ep, asoc, SCTP_ST_CHUNK(0), arg, commands);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004340 return SCTP_DISPOSITION_ABORT;
4341
Vlad Yasevichece25df2007-09-07 16:30:54 -04004342nomem_pkt:
4343 sctp_chunk_free(abort);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004344nomem:
4345 return SCTP_DISPOSITION_NOMEM;
4346}
4347
Wei Yongjunaecedea2007-08-02 16:57:44 +08004348/*
4349 * Handle a protocol violation when the chunk length is invalid.
Frederik Schwarzer025dfda2008-10-16 19:02:37 +02004350 * "Invalid" length is identified as smaller than the minimal length a
Wei Yongjunaecedea2007-08-02 16:57:44 +08004351 * given chunk can be. For example, a SACK chunk has invalid length
Frederik Schwarzer025dfda2008-10-16 19:02:37 +02004352 * if its length is set to be smaller than the size of sctp_sack_chunk_t.
Wei Yongjunaecedea2007-08-02 16:57:44 +08004353 *
4354 * We inform the other end by sending an ABORT with a Protocol Violation
4355 * error code.
4356 *
4357 * Section: Not specified
4358 * Verification Tag: Nothing to do
4359 * Inputs
4360 * (endpoint, asoc, chunk)
4361 *
4362 * Outputs
4363 * (reply_msg, msg_up, counters)
4364 *
4365 * Generate an ABORT chunk and terminate the association.
4366 */
4367static sctp_disposition_t sctp_sf_violation_chunklen(
4368 const struct sctp_endpoint *ep,
4369 const struct sctp_association *asoc,
4370 const sctp_subtype_t type,
4371 void *arg,
4372 sctp_cmd_seq_t *commands)
4373{
Florian Westphal24448442008-03-23 22:46:34 -07004374 static const char err_str[]="The following chunk had invalid length:";
Wei Yongjunaecedea2007-08-02 16:57:44 +08004375
Vlad Yasevichece25df2007-09-07 16:30:54 -04004376 return sctp_sf_abort_violation(ep, asoc, arg, commands, err_str,
Wei Yongjunaecedea2007-08-02 16:57:44 +08004377 sizeof(err_str));
4378}
4379
Wei Yongjun6f4c6182007-09-19 17:19:52 +08004380/*
4381 * Handle a protocol violation when the parameter length is invalid.
Shan Wei33c7cfd2011-04-18 19:11:01 +00004382 * If the length is smaller than the minimum length of a given parameter,
4383 * or accumulated length in multi parameters exceeds the end of the chunk,
4384 * the length is considered as invalid.
Wei Yongjun6f4c6182007-09-19 17:19:52 +08004385 */
4386static sctp_disposition_t sctp_sf_violation_paramlen(
4387 const struct sctp_endpoint *ep,
4388 const struct sctp_association *asoc,
4389 const sctp_subtype_t type,
Wei Yongjunba016672008-09-30 05:32:24 -07004390 void *arg, void *ext,
4391 sctp_cmd_seq_t *commands)
4392{
4393 struct sctp_chunk *chunk = arg;
4394 struct sctp_paramhdr *param = ext;
4395 struct sctp_chunk *abort = NULL;
Wei Yongjun6f4c6182007-09-19 17:19:52 +08004396
Wei Yongjunba016672008-09-30 05:32:24 -07004397 if (sctp_auth_recv_cid(SCTP_CID_ABORT, asoc))
4398 goto discard;
4399
4400 /* Make the abort chunk. */
4401 abort = sctp_make_violation_paramlen(asoc, chunk, param);
4402 if (!abort)
4403 goto nomem;
4404
4405 sctp_add_cmd_sf(commands, SCTP_CMD_REPLY, SCTP_CHUNK(abort));
4406 SCTP_INC_STATS(SCTP_MIB_OUTCTRLCHUNKS);
4407
4408 sctp_add_cmd_sf(commands, SCTP_CMD_SET_SK_ERR,
4409 SCTP_ERROR(ECONNABORTED));
4410 sctp_add_cmd_sf(commands, SCTP_CMD_ASSOC_FAILED,
4411 SCTP_PERR(SCTP_ERROR_PROTO_VIOLATION));
4412 SCTP_DEC_STATS(SCTP_MIB_CURRESTAB);
Vlad Yasevich56eb82b2008-10-09 14:33:01 -07004413 SCTP_INC_STATS(SCTP_MIB_ABORTEDS);
Wei Yongjunba016672008-09-30 05:32:24 -07004414
4415discard:
4416 sctp_sf_pdiscard(ep, asoc, SCTP_ST_CHUNK(0), arg, commands);
Wei Yongjunba016672008-09-30 05:32:24 -07004417 return SCTP_DISPOSITION_ABORT;
4418nomem:
4419 return SCTP_DISPOSITION_NOMEM;
Wei Yongjun6f4c6182007-09-19 17:19:52 +08004420}
4421
Wei Yongjunaecedea2007-08-02 16:57:44 +08004422/* Handle a protocol violation when the peer trying to advance the
4423 * cumulative tsn ack to a point beyond the max tsn currently sent.
4424 *
4425 * We inform the other end by sending an ABORT with a Protocol Violation
4426 * error code.
4427 */
4428static sctp_disposition_t sctp_sf_violation_ctsn(
4429 const struct sctp_endpoint *ep,
4430 const struct sctp_association *asoc,
4431 const sctp_subtype_t type,
4432 void *arg,
4433 sctp_cmd_seq_t *commands)
4434{
Florian Westphal24448442008-03-23 22:46:34 -07004435 static const char err_str[]="The cumulative tsn ack beyond the max tsn currently sent:";
Wei Yongjunaecedea2007-08-02 16:57:44 +08004436
Vlad Yasevichece25df2007-09-07 16:30:54 -04004437 return sctp_sf_abort_violation(ep, asoc, arg, commands, err_str,
Wei Yongjunaecedea2007-08-02 16:57:44 +08004438 sizeof(err_str));
4439}
4440
Vlad Yasevichece25df2007-09-07 16:30:54 -04004441/* Handle protocol violation of an invalid chunk bundling. For example,
Lucas De Marchi25985ed2011-03-30 22:57:33 -03004442 * when we have an association and we receive bundled INIT-ACK, or
Vlad Yasevichece25df2007-09-07 16:30:54 -04004443 * SHUDOWN-COMPLETE, our peer is clearly violationg the "MUST NOT bundle"
Lucas De Marchi25985ed2011-03-30 22:57:33 -03004444 * statement from the specs. Additionally, there might be an attacker
Vlad Yasevichece25df2007-09-07 16:30:54 -04004445 * on the path and we may not want to continue this communication.
4446 */
4447static sctp_disposition_t sctp_sf_violation_chunk(
4448 const struct sctp_endpoint *ep,
4449 const struct sctp_association *asoc,
4450 const sctp_subtype_t type,
4451 void *arg,
4452 sctp_cmd_seq_t *commands)
4453{
Florian Westphal24448442008-03-23 22:46:34 -07004454 static const char err_str[]="The following chunk violates protocol:";
Vlad Yasevichece25df2007-09-07 16:30:54 -04004455
4456 if (!asoc)
4457 return sctp_sf_violation(ep, asoc, type, arg, commands);
4458
4459 return sctp_sf_abort_violation(ep, asoc, arg, commands, err_str,
4460 sizeof(err_str));
4461}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004462/***************************************************************************
4463 * These are the state functions for handling primitive (Section 10) events.
4464 ***************************************************************************/
4465/*
4466 * sctp_sf_do_prm_asoc
4467 *
4468 * Section: 10.1 ULP-to-SCTP
4469 * B) Associate
4470 *
4471 * Format: ASSOCIATE(local SCTP instance name, destination transport addr,
4472 * outbound stream count)
4473 * -> association id [,destination transport addr list] [,outbound stream
4474 * count]
4475 *
4476 * This primitive allows the upper layer to initiate an association to a
4477 * specific peer endpoint.
4478 *
4479 * The peer endpoint shall be specified by one of the transport addresses
4480 * which defines the endpoint (see Section 1.4). If the local SCTP
4481 * instance has not been initialized, the ASSOCIATE is considered an
4482 * error.
4483 * [This is not relevant for the kernel implementation since we do all
4484 * initialization at boot time. It we hadn't initialized we wouldn't
4485 * get anywhere near this code.]
4486 *
4487 * An association id, which is a local handle to the SCTP association,
4488 * will be returned on successful establishment of the association. If
4489 * SCTP is not able to open an SCTP association with the peer endpoint,
4490 * an error is returned.
4491 * [In the kernel implementation, the struct sctp_association needs to
4492 * be created BEFORE causing this primitive to run.]
4493 *
4494 * Other association parameters may be returned, including the
4495 * complete destination transport addresses of the peer as well as the
4496 * outbound stream count of the local endpoint. One of the transport
4497 * address from the returned destination addresses will be selected by
4498 * the local endpoint as default primary path for sending SCTP packets
4499 * to this peer. The returned "destination transport addr list" can
4500 * be used by the ULP to change the default primary path or to force
4501 * sending a packet to a specific transport address. [All of this
4502 * stuff happens when the INIT ACK arrives. This is a NON-BLOCKING
4503 * function.]
4504 *
4505 * Mandatory attributes:
4506 *
4507 * o local SCTP instance name - obtained from the INITIALIZE operation.
4508 * [This is the argument asoc.]
4509 * o destination transport addr - specified as one of the transport
4510 * addresses of the peer endpoint with which the association is to be
4511 * established.
4512 * [This is asoc->peer.active_path.]
4513 * o outbound stream count - the number of outbound streams the ULP
4514 * would like to open towards this peer endpoint.
4515 * [BUG: This is not currently implemented.]
4516 * Optional attributes:
4517 *
4518 * None.
4519 *
4520 * The return value is a disposition.
4521 */
4522sctp_disposition_t sctp_sf_do_prm_asoc(const struct sctp_endpoint *ep,
4523 const struct sctp_association *asoc,
4524 const sctp_subtype_t type,
4525 void *arg,
4526 sctp_cmd_seq_t *commands)
4527{
4528 struct sctp_chunk *repl;
Vlad Yasevichab38fb02008-04-12 18:40:06 -07004529 struct sctp_association* my_asoc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004530
4531 /* The comment below says that we enter COOKIE-WAIT AFTER
4532 * sending the INIT, but that doesn't actually work in our
4533 * implementation...
4534 */
4535 sctp_add_cmd_sf(commands, SCTP_CMD_NEW_STATE,
4536 SCTP_STATE(SCTP_STATE_COOKIE_WAIT));
4537
4538 /* RFC 2960 5.1 Normal Establishment of an Association
4539 *
4540 * A) "A" first sends an INIT chunk to "Z". In the INIT, "A"
4541 * must provide its Verification Tag (Tag_A) in the Initiate
4542 * Tag field. Tag_A SHOULD be a random number in the range of
4543 * 1 to 4294967295 (see 5.3.1 for Tag value selection). ...
4544 */
4545
4546 repl = sctp_make_init(asoc, &asoc->base.bind_addr, GFP_ATOMIC, 0);
4547 if (!repl)
4548 goto nomem;
4549
4550 /* Cast away the const modifier, as we want to just
4551 * rerun it through as a sideffect.
4552 */
Vlad Yasevichab38fb02008-04-12 18:40:06 -07004553 my_asoc = (struct sctp_association *)asoc;
4554 sctp_add_cmd_sf(commands, SCTP_CMD_NEW_ASOC, SCTP_ASOC(my_asoc));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004555
Frank Filz3f7a87d2005-06-20 13:14:57 -07004556 /* Choose transport for INIT. */
4557 sctp_add_cmd_sf(commands, SCTP_CMD_INIT_CHOOSE_TRANSPORT,
4558 SCTP_CHUNK(repl));
4559
Linus Torvalds1da177e2005-04-16 15:20:36 -07004560 /* After sending the INIT, "A" starts the T1-init timer and
4561 * enters the COOKIE-WAIT state.
4562 */
4563 sctp_add_cmd_sf(commands, SCTP_CMD_TIMER_START,
4564 SCTP_TO(SCTP_EVENT_TIMEOUT_T1_INIT));
4565 sctp_add_cmd_sf(commands, SCTP_CMD_REPLY, SCTP_CHUNK(repl));
4566 return SCTP_DISPOSITION_CONSUME;
4567
4568nomem:
4569 return SCTP_DISPOSITION_NOMEM;
4570}
4571
4572/*
4573 * Process the SEND primitive.
4574 *
4575 * Section: 10.1 ULP-to-SCTP
4576 * E) Send
4577 *
4578 * Format: SEND(association id, buffer address, byte count [,context]
4579 * [,stream id] [,life time] [,destination transport address]
4580 * [,unorder flag] [,no-bundle flag] [,payload protocol-id] )
4581 * -> result
4582 *
4583 * This is the main method to send user data via SCTP.
4584 *
4585 * Mandatory attributes:
4586 *
4587 * o association id - local handle to the SCTP association
4588 *
4589 * o buffer address - the location where the user message to be
4590 * transmitted is stored;
4591 *
4592 * o byte count - The size of the user data in number of bytes;
4593 *
4594 * Optional attributes:
4595 *
4596 * o context - an optional 32 bit integer that will be carried in the
4597 * sending failure notification to the ULP if the transportation of
4598 * this User Message fails.
4599 *
4600 * o stream id - to indicate which stream to send the data on. If not
4601 * specified, stream 0 will be used.
4602 *
4603 * o life time - specifies the life time of the user data. The user data
4604 * will not be sent by SCTP after the life time expires. This
4605 * parameter can be used to avoid efforts to transmit stale
4606 * user messages. SCTP notifies the ULP if the data cannot be
4607 * initiated to transport (i.e. sent to the destination via SCTP's
4608 * send primitive) within the life time variable. However, the
4609 * user data will be transmitted if SCTP has attempted to transmit a
4610 * chunk before the life time expired.
4611 *
4612 * o destination transport address - specified as one of the destination
4613 * transport addresses of the peer endpoint to which this packet
4614 * should be sent. Whenever possible, SCTP should use this destination
4615 * transport address for sending the packets, instead of the current
4616 * primary path.
4617 *
4618 * o unorder flag - this flag, if present, indicates that the user
4619 * would like the data delivered in an unordered fashion to the peer
4620 * (i.e., the U flag is set to 1 on all DATA chunks carrying this
4621 * message).
4622 *
4623 * o no-bundle flag - instructs SCTP not to bundle this user data with
4624 * other outbound DATA chunks. SCTP MAY still bundle even when
4625 * this flag is present, when faced with network congestion.
4626 *
4627 * o payload protocol-id - A 32 bit unsigned integer that is to be
4628 * passed to the peer indicating the type of payload protocol data
4629 * being transmitted. This value is passed as opaque data by SCTP.
4630 *
4631 * The return value is the disposition.
4632 */
4633sctp_disposition_t sctp_sf_do_prm_send(const struct sctp_endpoint *ep,
4634 const struct sctp_association *asoc,
4635 const sctp_subtype_t type,
4636 void *arg,
4637 sctp_cmd_seq_t *commands)
4638{
Vlad Yasevich9c5c62b2009-08-10 13:51:03 -04004639 struct sctp_datamsg *msg = arg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004640
Vlad Yasevich9c5c62b2009-08-10 13:51:03 -04004641 sctp_add_cmd_sf(commands, SCTP_CMD_SEND_MSG, SCTP_DATAMSG(msg));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004642 return SCTP_DISPOSITION_CONSUME;
4643}
4644
4645/*
4646 * Process the SHUTDOWN primitive.
4647 *
4648 * Section: 10.1:
4649 * C) Shutdown
4650 *
4651 * Format: SHUTDOWN(association id)
4652 * -> result
4653 *
4654 * Gracefully closes an association. Any locally queued user data
4655 * will be delivered to the peer. The association will be terminated only
4656 * after the peer acknowledges all the SCTP packets sent. A success code
4657 * will be returned on successful termination of the association. If
4658 * attempting to terminate the association results in a failure, an error
4659 * code shall be returned.
4660 *
4661 * Mandatory attributes:
4662 *
4663 * o association id - local handle to the SCTP association
4664 *
4665 * Optional attributes:
4666 *
4667 * None.
4668 *
4669 * The return value is the disposition.
4670 */
4671sctp_disposition_t sctp_sf_do_9_2_prm_shutdown(
4672 const struct sctp_endpoint *ep,
4673 const struct sctp_association *asoc,
4674 const sctp_subtype_t type,
4675 void *arg,
4676 sctp_cmd_seq_t *commands)
4677{
4678 int disposition;
4679
4680 /* From 9.2 Shutdown of an Association
4681 * Upon receipt of the SHUTDOWN primitive from its upper
4682 * layer, the endpoint enters SHUTDOWN-PENDING state and
4683 * remains there until all outstanding data has been
4684 * acknowledged by its peer. The endpoint accepts no new data
4685 * from its upper layer, but retransmits data to the far end
4686 * if necessary to fill gaps.
4687 */
4688 sctp_add_cmd_sf(commands, SCTP_CMD_NEW_STATE,
4689 SCTP_STATE(SCTP_STATE_SHUTDOWN_PENDING));
4690
Linus Torvalds1da177e2005-04-16 15:20:36 -07004691 disposition = SCTP_DISPOSITION_CONSUME;
4692 if (sctp_outq_is_empty(&asoc->outqueue)) {
4693 disposition = sctp_sf_do_9_2_start_shutdown(ep, asoc, type,
4694 arg, commands);
4695 }
4696 return disposition;
4697}
4698
4699/*
4700 * Process the ABORT primitive.
4701 *
4702 * Section: 10.1:
4703 * C) Abort
4704 *
4705 * Format: Abort(association id [, cause code])
4706 * -> result
4707 *
4708 * Ungracefully closes an association. Any locally queued user data
4709 * will be discarded and an ABORT chunk is sent to the peer. A success code
4710 * will be returned on successful abortion of the association. If
4711 * attempting to abort the association results in a failure, an error
4712 * code shall be returned.
4713 *
4714 * Mandatory attributes:
4715 *
4716 * o association id - local handle to the SCTP association
4717 *
4718 * Optional attributes:
4719 *
4720 * o cause code - reason of the abort to be passed to the peer
4721 *
4722 * None.
4723 *
4724 * The return value is the disposition.
4725 */
4726sctp_disposition_t sctp_sf_do_9_1_prm_abort(
4727 const struct sctp_endpoint *ep,
4728 const struct sctp_association *asoc,
4729 const sctp_subtype_t type,
4730 void *arg,
4731 sctp_cmd_seq_t *commands)
4732{
4733 /* From 9.1 Abort of an Association
4734 * Upon receipt of the ABORT primitive from its upper
4735 * layer, the endpoint enters CLOSED state and
4736 * discard all outstanding data has been
4737 * acknowledged by its peer. The endpoint accepts no new data
4738 * from its upper layer, but retransmits data to the far end
4739 * if necessary to fill gaps.
4740 */
Sridhar Samudralac164a9b2006-08-22 11:50:39 -07004741 struct sctp_chunk *abort = arg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004742 sctp_disposition_t retval;
4743
4744 retval = SCTP_DISPOSITION_CONSUME;
4745
Sridhar Samudralac164a9b2006-08-22 11:50:39 -07004746 sctp_add_cmd_sf(commands, SCTP_CMD_REPLY, SCTP_CHUNK(abort));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004747
4748 /* Even if we can't send the ABORT due to low memory delete the
4749 * TCB. This is a departure from our typical NOMEM handling.
4750 */
4751
Sridhar Samudrala8de8c872006-05-19 10:58:12 -07004752 sctp_add_cmd_sf(commands, SCTP_CMD_SET_SK_ERR,
4753 SCTP_ERROR(ECONNABORTED));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004754 /* Delete the established association. */
4755 sctp_add_cmd_sf(commands, SCTP_CMD_ASSOC_FAILED,
Al Viro5be291f2006-11-20 17:01:06 -08004756 SCTP_PERR(SCTP_ERROR_USER_ABORT));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004757
4758 SCTP_INC_STATS(SCTP_MIB_ABORTEDS);
4759 SCTP_DEC_STATS(SCTP_MIB_CURRESTAB);
4760
4761 return retval;
4762}
4763
4764/* We tried an illegal operation on an association which is closed. */
4765sctp_disposition_t sctp_sf_error_closed(const struct sctp_endpoint *ep,
4766 const struct sctp_association *asoc,
4767 const sctp_subtype_t type,
4768 void *arg,
4769 sctp_cmd_seq_t *commands)
4770{
4771 sctp_add_cmd_sf(commands, SCTP_CMD_REPORT_ERROR, SCTP_ERROR(-EINVAL));
4772 return SCTP_DISPOSITION_CONSUME;
4773}
4774
4775/* We tried an illegal operation on an association which is shutting
4776 * down.
4777 */
4778sctp_disposition_t sctp_sf_error_shutdown(const struct sctp_endpoint *ep,
4779 const struct sctp_association *asoc,
4780 const sctp_subtype_t type,
4781 void *arg,
4782 sctp_cmd_seq_t *commands)
4783{
4784 sctp_add_cmd_sf(commands, SCTP_CMD_REPORT_ERROR,
4785 SCTP_ERROR(-ESHUTDOWN));
4786 return SCTP_DISPOSITION_CONSUME;
4787}
4788
4789/*
4790 * sctp_cookie_wait_prm_shutdown
4791 *
4792 * Section: 4 Note: 2
4793 * Verification Tag:
4794 * Inputs
4795 * (endpoint, asoc)
4796 *
4797 * The RFC does not explicitly address this issue, but is the route through the
4798 * state table when someone issues a shutdown while in COOKIE_WAIT state.
4799 *
4800 * Outputs
4801 * (timers)
4802 */
4803sctp_disposition_t sctp_sf_cookie_wait_prm_shutdown(
4804 const struct sctp_endpoint *ep,
4805 const struct sctp_association *asoc,
4806 const sctp_subtype_t type,
4807 void *arg,
4808 sctp_cmd_seq_t *commands)
4809{
4810 sctp_add_cmd_sf(commands, SCTP_CMD_TIMER_STOP,
4811 SCTP_TO(SCTP_EVENT_TIMEOUT_T1_INIT));
4812
4813 sctp_add_cmd_sf(commands, SCTP_CMD_NEW_STATE,
4814 SCTP_STATE(SCTP_STATE_CLOSED));
4815
4816 SCTP_INC_STATS(SCTP_MIB_SHUTDOWNS);
4817
4818 sctp_add_cmd_sf(commands, SCTP_CMD_DELETE_TCB, SCTP_NULL());
4819
4820 return SCTP_DISPOSITION_DELETE_TCB;
4821}
4822
4823/*
4824 * sctp_cookie_echoed_prm_shutdown
4825 *
4826 * Section: 4 Note: 2
4827 * Verification Tag:
4828 * Inputs
4829 * (endpoint, asoc)
4830 *
4831 * The RFC does not explcitly address this issue, but is the route through the
4832 * state table when someone issues a shutdown while in COOKIE_ECHOED state.
4833 *
4834 * Outputs
4835 * (timers)
4836 */
4837sctp_disposition_t sctp_sf_cookie_echoed_prm_shutdown(
4838 const struct sctp_endpoint *ep,
4839 const struct sctp_association *asoc,
4840 const sctp_subtype_t type,
4841 void *arg, sctp_cmd_seq_t *commands)
4842{
4843 /* There is a single T1 timer, so we should be able to use
4844 * common function with the COOKIE-WAIT state.
4845 */
4846 return sctp_sf_cookie_wait_prm_shutdown(ep, asoc, type, arg, commands);
4847}
4848
4849/*
4850 * sctp_sf_cookie_wait_prm_abort
4851 *
4852 * Section: 4 Note: 2
4853 * Verification Tag:
4854 * Inputs
4855 * (endpoint, asoc)
4856 *
4857 * The RFC does not explicitly address this issue, but is the route through the
4858 * state table when someone issues an abort while in COOKIE_WAIT state.
4859 *
4860 * Outputs
4861 * (timers)
4862 */
4863sctp_disposition_t sctp_sf_cookie_wait_prm_abort(
4864 const struct sctp_endpoint *ep,
4865 const struct sctp_association *asoc,
4866 const sctp_subtype_t type,
4867 void *arg,
4868 sctp_cmd_seq_t *commands)
4869{
Sridhar Samudralac164a9b2006-08-22 11:50:39 -07004870 struct sctp_chunk *abort = arg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004871 sctp_disposition_t retval;
4872
4873 /* Stop T1-init timer */
4874 sctp_add_cmd_sf(commands, SCTP_CMD_TIMER_STOP,
4875 SCTP_TO(SCTP_EVENT_TIMEOUT_T1_INIT));
4876 retval = SCTP_DISPOSITION_CONSUME;
4877
Sridhar Samudralac164a9b2006-08-22 11:50:39 -07004878 sctp_add_cmd_sf(commands, SCTP_CMD_REPLY, SCTP_CHUNK(abort));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004879
4880 sctp_add_cmd_sf(commands, SCTP_CMD_NEW_STATE,
4881 SCTP_STATE(SCTP_STATE_CLOSED));
4882
4883 SCTP_INC_STATS(SCTP_MIB_ABORTEDS);
4884
4885 /* Even if we can't send the ABORT due to low memory delete the
4886 * TCB. This is a departure from our typical NOMEM handling.
4887 */
4888
Sridhar Samudrala8de8c872006-05-19 10:58:12 -07004889 sctp_add_cmd_sf(commands, SCTP_CMD_SET_SK_ERR,
4890 SCTP_ERROR(ECONNREFUSED));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004891 /* Delete the established association. */
4892 sctp_add_cmd_sf(commands, SCTP_CMD_INIT_FAILED,
Al Virodc251b22006-11-20 17:00:44 -08004893 SCTP_PERR(SCTP_ERROR_USER_ABORT));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004894
4895 return retval;
4896}
4897
4898/*
4899 * sctp_sf_cookie_echoed_prm_abort
4900 *
4901 * Section: 4 Note: 3
4902 * Verification Tag:
4903 * Inputs
4904 * (endpoint, asoc)
4905 *
4906 * The RFC does not explcitly address this issue, but is the route through the
4907 * state table when someone issues an abort while in COOKIE_ECHOED state.
4908 *
4909 * Outputs
4910 * (timers)
4911 */
4912sctp_disposition_t sctp_sf_cookie_echoed_prm_abort(
4913 const struct sctp_endpoint *ep,
4914 const struct sctp_association *asoc,
4915 const sctp_subtype_t type,
4916 void *arg,
4917 sctp_cmd_seq_t *commands)
4918{
4919 /* There is a single T1 timer, so we should be able to use
4920 * common function with the COOKIE-WAIT state.
4921 */
4922 return sctp_sf_cookie_wait_prm_abort(ep, asoc, type, arg, commands);
4923}
4924
4925/*
4926 * sctp_sf_shutdown_pending_prm_abort
4927 *
4928 * Inputs
4929 * (endpoint, asoc)
4930 *
4931 * The RFC does not explicitly address this issue, but is the route through the
4932 * state table when someone issues an abort while in SHUTDOWN-PENDING state.
4933 *
4934 * Outputs
4935 * (timers)
4936 */
4937sctp_disposition_t sctp_sf_shutdown_pending_prm_abort(
4938 const struct sctp_endpoint *ep,
4939 const struct sctp_association *asoc,
4940 const sctp_subtype_t type,
4941 void *arg,
4942 sctp_cmd_seq_t *commands)
4943{
4944 /* Stop the T5-shutdown guard timer. */
4945 sctp_add_cmd_sf(commands, SCTP_CMD_TIMER_STOP,
4946 SCTP_TO(SCTP_EVENT_TIMEOUT_T5_SHUTDOWN_GUARD));
4947
4948 return sctp_sf_do_9_1_prm_abort(ep, asoc, type, arg, commands);
4949}
4950
4951/*
4952 * sctp_sf_shutdown_sent_prm_abort
4953 *
4954 * Inputs
4955 * (endpoint, asoc)
4956 *
4957 * The RFC does not explicitly address this issue, but is the route through the
4958 * state table when someone issues an abort while in SHUTDOWN-SENT state.
4959 *
4960 * Outputs
4961 * (timers)
4962 */
4963sctp_disposition_t sctp_sf_shutdown_sent_prm_abort(
4964 const struct sctp_endpoint *ep,
4965 const struct sctp_association *asoc,
4966 const sctp_subtype_t type,
4967 void *arg,
4968 sctp_cmd_seq_t *commands)
4969{
4970 /* Stop the T2-shutdown timer. */
4971 sctp_add_cmd_sf(commands, SCTP_CMD_TIMER_STOP,
4972 SCTP_TO(SCTP_EVENT_TIMEOUT_T2_SHUTDOWN));
4973
4974 /* Stop the T5-shutdown guard timer. */
4975 sctp_add_cmd_sf(commands, SCTP_CMD_TIMER_STOP,
4976 SCTP_TO(SCTP_EVENT_TIMEOUT_T5_SHUTDOWN_GUARD));
4977
4978 return sctp_sf_do_9_1_prm_abort(ep, asoc, type, arg, commands);
4979}
4980
4981/*
4982 * sctp_sf_cookie_echoed_prm_abort
4983 *
4984 * Inputs
4985 * (endpoint, asoc)
4986 *
4987 * The RFC does not explcitly address this issue, but is the route through the
4988 * state table when someone issues an abort while in COOKIE_ECHOED state.
4989 *
4990 * Outputs
4991 * (timers)
4992 */
4993sctp_disposition_t sctp_sf_shutdown_ack_sent_prm_abort(
4994 const struct sctp_endpoint *ep,
4995 const struct sctp_association *asoc,
4996 const sctp_subtype_t type,
4997 void *arg,
4998 sctp_cmd_seq_t *commands)
4999{
5000 /* The same T2 timer, so we should be able to use
5001 * common function with the SHUTDOWN-SENT state.
5002 */
5003 return sctp_sf_shutdown_sent_prm_abort(ep, asoc, type, arg, commands);
5004}
5005
5006/*
5007 * Process the REQUESTHEARTBEAT primitive
5008 *
5009 * 10.1 ULP-to-SCTP
5010 * J) Request Heartbeat
5011 *
5012 * Format: REQUESTHEARTBEAT(association id, destination transport address)
5013 *
5014 * -> result
5015 *
5016 * Instructs the local endpoint to perform a HeartBeat on the specified
5017 * destination transport address of the given association. The returned
5018 * result should indicate whether the transmission of the HEARTBEAT
5019 * chunk to the destination address is successful.
5020 *
5021 * Mandatory attributes:
5022 *
5023 * o association id - local handle to the SCTP association
5024 *
5025 * o destination transport address - the transport address of the
5026 * association on which a heartbeat should be issued.
5027 */
5028sctp_disposition_t sctp_sf_do_prm_requestheartbeat(
5029 const struct sctp_endpoint *ep,
5030 const struct sctp_association *asoc,
5031 const sctp_subtype_t type,
5032 void *arg,
5033 sctp_cmd_seq_t *commands)
5034{
Vlad Yasevichfb785252007-03-19 17:02:03 -07005035 if (SCTP_DISPOSITION_NOMEM == sctp_sf_heartbeat(ep, asoc, type,
5036 (struct sctp_transport *)arg, commands))
5037 return SCTP_DISPOSITION_NOMEM;
5038
5039 /*
5040 * RFC 2960 (bis), section 8.3
5041 *
5042 * D) Request an on-demand HEARTBEAT on a specific destination
5043 * transport address of a given association.
5044 *
5045 * The endpoint should increment the respective error counter of
5046 * the destination transport address each time a HEARTBEAT is sent
5047 * to that address and not acknowledged within one RTO.
5048 *
5049 */
Vlad Yasevich7e990132009-03-02 09:46:14 +00005050 sctp_add_cmd_sf(commands, SCTP_CMD_TRANSPORT_HB_SENT,
Vlad Yasevichfb785252007-03-19 17:02:03 -07005051 SCTP_TRANSPORT(arg));
5052 return SCTP_DISPOSITION_CONSUME;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005053}
5054
5055/*
5056 * ADDIP Section 4.1 ASCONF Chunk Procedures
5057 * When an endpoint has an ASCONF signaled change to be sent to the
5058 * remote endpoint it should do A1 to A9
5059 */
5060sctp_disposition_t sctp_sf_do_prm_asconf(const struct sctp_endpoint *ep,
5061 const struct sctp_association *asoc,
5062 const sctp_subtype_t type,
5063 void *arg,
5064 sctp_cmd_seq_t *commands)
5065{
5066 struct sctp_chunk *chunk = arg;
5067
5068 sctp_add_cmd_sf(commands, SCTP_CMD_SETUP_T4, SCTP_CHUNK(chunk));
5069 sctp_add_cmd_sf(commands, SCTP_CMD_TIMER_START,
5070 SCTP_TO(SCTP_EVENT_TIMEOUT_T4_RTO));
5071 sctp_add_cmd_sf(commands, SCTP_CMD_REPLY, SCTP_CHUNK(chunk));
5072 return SCTP_DISPOSITION_CONSUME;
5073}
5074
5075/*
5076 * Ignore the primitive event
5077 *
5078 * The return value is the disposition of the primitive.
5079 */
5080sctp_disposition_t sctp_sf_ignore_primitive(
5081 const struct sctp_endpoint *ep,
5082 const struct sctp_association *asoc,
5083 const sctp_subtype_t type,
5084 void *arg,
5085 sctp_cmd_seq_t *commands)
5086{
5087 SCTP_DEBUG_PRINTK("Primitive type %d is ignored.\n", type.primitive);
5088 return SCTP_DISPOSITION_DISCARD;
5089}
5090
5091/***************************************************************************
5092 * These are the state functions for the OTHER events.
5093 ***************************************************************************/
5094
5095/*
Wei Yongjune1cdd552011-04-17 17:29:03 +00005096 * When the SCTP stack has no more user data to send or retransmit, this
5097 * notification is given to the user. Also, at the time when a user app
5098 * subscribes to this event, if there is no data to be sent or
5099 * retransmit, the stack will immediately send up this notification.
5100 */
5101sctp_disposition_t sctp_sf_do_no_pending_tsn(
5102 const struct sctp_endpoint *ep,
5103 const struct sctp_association *asoc,
5104 const sctp_subtype_t type,
5105 void *arg,
5106 sctp_cmd_seq_t *commands)
5107{
5108 struct sctp_ulpevent *event;
5109
5110 event = sctp_ulpevent_make_sender_dry_event(asoc, GFP_ATOMIC);
5111 if (!event)
5112 return SCTP_DISPOSITION_NOMEM;
5113
5114 sctp_add_cmd_sf(commands, SCTP_CMD_EVENT_ULP, SCTP_ULPEVENT(event));
5115
5116 return SCTP_DISPOSITION_CONSUME;
5117}
5118
5119/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005120 * Start the shutdown negotiation.
5121 *
5122 * From Section 9.2:
5123 * Once all its outstanding data has been acknowledged, the endpoint
5124 * shall send a SHUTDOWN chunk to its peer including in the Cumulative
5125 * TSN Ack field the last sequential TSN it has received from the peer.
5126 * It shall then start the T2-shutdown timer and enter the SHUTDOWN-SENT
5127 * state. If the timer expires, the endpoint must re-send the SHUTDOWN
5128 * with the updated last sequential TSN received from its peer.
5129 *
5130 * The return value is the disposition.
5131 */
5132sctp_disposition_t sctp_sf_do_9_2_start_shutdown(
5133 const struct sctp_endpoint *ep,
5134 const struct sctp_association *asoc,
5135 const sctp_subtype_t type,
5136 void *arg,
5137 sctp_cmd_seq_t *commands)
5138{
5139 struct sctp_chunk *reply;
5140
5141 /* Once all its outstanding data has been acknowledged, the
5142 * endpoint shall send a SHUTDOWN chunk to its peer including
5143 * in the Cumulative TSN Ack field the last sequential TSN it
5144 * has received from the peer.
5145 */
5146 reply = sctp_make_shutdown(asoc, NULL);
5147 if (!reply)
5148 goto nomem;
5149
5150 /* Set the transport for the SHUTDOWN chunk and the timeout for the
5151 * T2-shutdown timer.
5152 */
5153 sctp_add_cmd_sf(commands, SCTP_CMD_SETUP_T2, SCTP_CHUNK(reply));
5154
5155 /* It shall then start the T2-shutdown timer */
5156 sctp_add_cmd_sf(commands, SCTP_CMD_TIMER_START,
5157 SCTP_TO(SCTP_EVENT_TIMEOUT_T2_SHUTDOWN));
5158
Wei Yongjun536428a2008-09-05 08:55:26 +08005159 /* RFC 4960 Section 9.2
5160 * The sender of the SHUTDOWN MAY also start an overall guard timer
5161 * 'T5-shutdown-guard' to bound the overall time for shutdown sequence.
5162 */
Thomas Graff8d96052011-07-07 00:28:35 +00005163 sctp_add_cmd_sf(commands, SCTP_CMD_TIMER_RESTART,
Wei Yongjun536428a2008-09-05 08:55:26 +08005164 SCTP_TO(SCTP_EVENT_TIMEOUT_T5_SHUTDOWN_GUARD));
5165
Linus Torvalds1da177e2005-04-16 15:20:36 -07005166 if (asoc->autoclose)
5167 sctp_add_cmd_sf(commands, SCTP_CMD_TIMER_STOP,
5168 SCTP_TO(SCTP_EVENT_TIMEOUT_AUTOCLOSE));
5169
5170 /* and enter the SHUTDOWN-SENT state. */
5171 sctp_add_cmd_sf(commands, SCTP_CMD_NEW_STATE,
5172 SCTP_STATE(SCTP_STATE_SHUTDOWN_SENT));
5173
5174 /* sctp-implguide 2.10 Issues with Heartbeating and failover
5175 *
5176 * HEARTBEAT ... is discontinued after sending either SHUTDOWN
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09005177 * or SHUTDOWN-ACK.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005178 */
5179 sctp_add_cmd_sf(commands, SCTP_CMD_HB_TIMERS_STOP, SCTP_NULL());
5180
5181 sctp_add_cmd_sf(commands, SCTP_CMD_REPLY, SCTP_CHUNK(reply));
5182
5183 return SCTP_DISPOSITION_CONSUME;
5184
5185nomem:
5186 return SCTP_DISPOSITION_NOMEM;
5187}
5188
5189/*
5190 * Generate a SHUTDOWN ACK now that everything is SACK'd.
5191 *
5192 * From Section 9.2:
5193 *
5194 * If it has no more outstanding DATA chunks, the SHUTDOWN receiver
5195 * shall send a SHUTDOWN ACK and start a T2-shutdown timer of its own,
5196 * entering the SHUTDOWN-ACK-SENT state. If the timer expires, the
5197 * endpoint must re-send the SHUTDOWN ACK.
5198 *
5199 * The return value is the disposition.
5200 */
5201sctp_disposition_t sctp_sf_do_9_2_shutdown_ack(
5202 const struct sctp_endpoint *ep,
5203 const struct sctp_association *asoc,
5204 const sctp_subtype_t type,
5205 void *arg,
5206 sctp_cmd_seq_t *commands)
5207{
5208 struct sctp_chunk *chunk = (struct sctp_chunk *) arg;
5209 struct sctp_chunk *reply;
5210
5211 /* There are 2 ways of getting here:
5212 * 1) called in response to a SHUTDOWN chunk
5213 * 2) called when SCTP_EVENT_NO_PENDING_TSN event is issued.
5214 *
5215 * For the case (2), the arg parameter is set to NULL. We need
5216 * to check that we have a chunk before accessing it's fields.
5217 */
5218 if (chunk) {
5219 if (!sctp_vtag_verify(chunk, asoc))
5220 return sctp_sf_pdiscard(ep, asoc, type, arg, commands);
5221
5222 /* Make sure that the SHUTDOWN chunk has a valid length. */
5223 if (!sctp_chunk_length_valid(chunk, sizeof(struct sctp_shutdown_chunk_t)))
5224 return sctp_sf_violation_chunklen(ep, asoc, type, arg,
5225 commands);
5226 }
5227
5228 /* If it has no more outstanding DATA chunks, the SHUTDOWN receiver
5229 * shall send a SHUTDOWN ACK ...
5230 */
5231 reply = sctp_make_shutdown_ack(asoc, chunk);
5232 if (!reply)
5233 goto nomem;
5234
5235 /* Set the transport for the SHUTDOWN ACK chunk and the timeout for
5236 * the T2-shutdown timer.
5237 */
5238 sctp_add_cmd_sf(commands, SCTP_CMD_SETUP_T2, SCTP_CHUNK(reply));
5239
5240 /* and start/restart a T2-shutdown timer of its own, */
5241 sctp_add_cmd_sf(commands, SCTP_CMD_TIMER_RESTART,
5242 SCTP_TO(SCTP_EVENT_TIMEOUT_T2_SHUTDOWN));
5243
5244 if (asoc->autoclose)
5245 sctp_add_cmd_sf(commands, SCTP_CMD_TIMER_STOP,
5246 SCTP_TO(SCTP_EVENT_TIMEOUT_AUTOCLOSE));
5247
5248 /* Enter the SHUTDOWN-ACK-SENT state. */
5249 sctp_add_cmd_sf(commands, SCTP_CMD_NEW_STATE,
5250 SCTP_STATE(SCTP_STATE_SHUTDOWN_ACK_SENT));
5251
5252 /* sctp-implguide 2.10 Issues with Heartbeating and failover
5253 *
5254 * HEARTBEAT ... is discontinued after sending either SHUTDOWN
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09005255 * or SHUTDOWN-ACK.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005256 */
5257 sctp_add_cmd_sf(commands, SCTP_CMD_HB_TIMERS_STOP, SCTP_NULL());
5258
5259 sctp_add_cmd_sf(commands, SCTP_CMD_REPLY, SCTP_CHUNK(reply));
5260
5261 return SCTP_DISPOSITION_CONSUME;
5262
5263nomem:
5264 return SCTP_DISPOSITION_NOMEM;
5265}
5266
5267/*
5268 * Ignore the event defined as other
5269 *
5270 * The return value is the disposition of the event.
5271 */
5272sctp_disposition_t sctp_sf_ignore_other(const struct sctp_endpoint *ep,
5273 const struct sctp_association *asoc,
5274 const sctp_subtype_t type,
5275 void *arg,
5276 sctp_cmd_seq_t *commands)
5277{
5278 SCTP_DEBUG_PRINTK("The event other type %d is ignored\n", type.other);
5279 return SCTP_DISPOSITION_DISCARD;
5280}
5281
5282/************************************************************
5283 * These are the state functions for handling timeout events.
5284 ************************************************************/
5285
5286/*
5287 * RTX Timeout
5288 *
5289 * Section: 6.3.3 Handle T3-rtx Expiration
5290 *
5291 * Whenever the retransmission timer T3-rtx expires for a destination
5292 * address, do the following:
5293 * [See below]
5294 *
5295 * The return value is the disposition of the chunk.
5296 */
5297sctp_disposition_t sctp_sf_do_6_3_3_rtx(const struct sctp_endpoint *ep,
5298 const struct sctp_association *asoc,
5299 const sctp_subtype_t type,
5300 void *arg,
5301 sctp_cmd_seq_t *commands)
5302{
5303 struct sctp_transport *transport = arg;
5304
Sridhar Samudralaac0b0462006-08-22 00:15:33 -07005305 SCTP_INC_STATS(SCTP_MIB_T3_RTX_EXPIREDS);
5306
Linus Torvalds1da177e2005-04-16 15:20:36 -07005307 if (asoc->overall_error_count >= asoc->max_retrans) {
Thomas Graff8d96052011-07-07 00:28:35 +00005308 if (asoc->state == SCTP_STATE_SHUTDOWN_PENDING) {
5309 /*
5310 * We are here likely because the receiver had its rwnd
5311 * closed for a while and we have not been able to
5312 * transmit the locally queued data within the maximum
5313 * retransmission attempts limit. Start the T5
5314 * shutdown guard timer to give the receiver one last
5315 * chance and some additional time to recover before
5316 * aborting.
5317 */
5318 sctp_add_cmd_sf(commands, SCTP_CMD_TIMER_START_ONCE,
5319 SCTP_TO(SCTP_EVENT_TIMEOUT_T5_SHUTDOWN_GUARD));
5320 } else {
5321 sctp_add_cmd_sf(commands, SCTP_CMD_SET_SK_ERR,
5322 SCTP_ERROR(ETIMEDOUT));
5323 /* CMD_ASSOC_FAILED calls CMD_DELETE_TCB. */
5324 sctp_add_cmd_sf(commands, SCTP_CMD_ASSOC_FAILED,
5325 SCTP_PERR(SCTP_ERROR_NO_ERROR));
5326 SCTP_INC_STATS(SCTP_MIB_ABORTEDS);
5327 SCTP_DEC_STATS(SCTP_MIB_CURRESTAB);
5328 return SCTP_DISPOSITION_DELETE_TCB;
5329 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005330 }
5331
5332 /* E1) For the destination address for which the timer
5333 * expires, adjust its ssthresh with rules defined in Section
5334 * 7.2.3 and set the cwnd <- MTU.
5335 */
5336
5337 /* E2) For the destination address for which the timer
5338 * expires, set RTO <- RTO * 2 ("back off the timer"). The
5339 * maximum value discussed in rule C7 above (RTO.max) may be
5340 * used to provide an upper bound to this doubling operation.
5341 */
5342
5343 /* E3) Determine how many of the earliest (i.e., lowest TSN)
5344 * outstanding DATA chunks for the address for which the
5345 * T3-rtx has expired will fit into a single packet, subject
5346 * to the MTU constraint for the path corresponding to the
5347 * destination transport address to which the retransmission
5348 * is being sent (this may be different from the address for
5349 * which the timer expires [see Section 6.4]). Call this
5350 * value K. Bundle and retransmit those K DATA chunks in a
5351 * single packet to the destination endpoint.
5352 *
5353 * Note: Any DATA chunks that were sent to the address for
5354 * which the T3-rtx timer expired but did not fit in one MTU
5355 * (rule E3 above), should be marked for retransmission and
5356 * sent as soon as cwnd allows (normally when a SACK arrives).
5357 */
5358
Linus Torvalds1da177e2005-04-16 15:20:36 -07005359 /* Do some failure management (Section 8.2). */
5360 sctp_add_cmd_sf(commands, SCTP_CMD_STRIKE, SCTP_TRANSPORT(transport));
5361
Vlad Yasevich1845a572007-02-21 02:06:19 -08005362 /* NB: Rules E4 and F1 are implicit in R1. */
5363 sctp_add_cmd_sf(commands, SCTP_CMD_RETRAN, SCTP_TRANSPORT(transport));
5364
Linus Torvalds1da177e2005-04-16 15:20:36 -07005365 return SCTP_DISPOSITION_CONSUME;
5366}
5367
5368/*
5369 * Generate delayed SACK on timeout
5370 *
5371 * Section: 6.2 Acknowledgement on Reception of DATA Chunks
5372 *
5373 * The guidelines on delayed acknowledgement algorithm specified in
5374 * Section 4.2 of [RFC2581] SHOULD be followed. Specifically, an
5375 * acknowledgement SHOULD be generated for at least every second packet
5376 * (not every second DATA chunk) received, and SHOULD be generated
5377 * within 200 ms of the arrival of any unacknowledged DATA chunk. In
5378 * some situations it may be beneficial for an SCTP transmitter to be
5379 * more conservative than the algorithms detailed in this document
5380 * allow. However, an SCTP transmitter MUST NOT be more aggressive than
5381 * the following algorithms allow.
5382 */
5383sctp_disposition_t sctp_sf_do_6_2_sack(const struct sctp_endpoint *ep,
5384 const struct sctp_association *asoc,
5385 const sctp_subtype_t type,
5386 void *arg,
5387 sctp_cmd_seq_t *commands)
5388{
Sridhar Samudralaac0b0462006-08-22 00:15:33 -07005389 SCTP_INC_STATS(SCTP_MIB_DELAY_SACK_EXPIREDS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005390 sctp_add_cmd_sf(commands, SCTP_CMD_GEN_SACK, SCTP_FORCE());
5391 return SCTP_DISPOSITION_CONSUME;
5392}
5393
5394/*
Frank Filz3f7a87d2005-06-20 13:14:57 -07005395 * sctp_sf_t1_init_timer_expire
Linus Torvalds1da177e2005-04-16 15:20:36 -07005396 *
5397 * Section: 4 Note: 2
5398 * Verification Tag:
5399 * Inputs
5400 * (endpoint, asoc)
5401 *
5402 * RFC 2960 Section 4 Notes
5403 * 2) If the T1-init timer expires, the endpoint MUST retransmit INIT
5404 * and re-start the T1-init timer without changing state. This MUST
5405 * be repeated up to 'Max.Init.Retransmits' times. After that, the
5406 * endpoint MUST abort the initialization process and report the
5407 * error to SCTP user.
5408 *
Frank Filz3f7a87d2005-06-20 13:14:57 -07005409 * Outputs
5410 * (timers, events)
5411 *
5412 */
5413sctp_disposition_t sctp_sf_t1_init_timer_expire(const struct sctp_endpoint *ep,
5414 const struct sctp_association *asoc,
5415 const sctp_subtype_t type,
5416 void *arg,
5417 sctp_cmd_seq_t *commands)
5418{
5419 struct sctp_chunk *repl = NULL;
5420 struct sctp_bind_addr *bp;
5421 int attempts = asoc->init_err_counter + 1;
5422
5423 SCTP_DEBUG_PRINTK("Timer T1 expired (INIT).\n");
Sridhar Samudralaac0b0462006-08-22 00:15:33 -07005424 SCTP_INC_STATS(SCTP_MIB_T1_INIT_EXPIREDS);
Frank Filz3f7a87d2005-06-20 13:14:57 -07005425
Vlad Yasevich81845c22006-01-30 15:59:54 -08005426 if (attempts <= asoc->max_init_attempts) {
Frank Filz3f7a87d2005-06-20 13:14:57 -07005427 bp = (struct sctp_bind_addr *) &asoc->base.bind_addr;
5428 repl = sctp_make_init(asoc, bp, GFP_ATOMIC, 0);
5429 if (!repl)
5430 return SCTP_DISPOSITION_NOMEM;
5431
5432 /* Choose transport for INIT. */
5433 sctp_add_cmd_sf(commands, SCTP_CMD_INIT_CHOOSE_TRANSPORT,
5434 SCTP_CHUNK(repl));
5435
5436 /* Issue a sideeffect to do the needed accounting. */
5437 sctp_add_cmd_sf(commands, SCTP_CMD_INIT_RESTART,
5438 SCTP_TO(SCTP_EVENT_TIMEOUT_T1_INIT));
5439
5440 sctp_add_cmd_sf(commands, SCTP_CMD_REPLY, SCTP_CHUNK(repl));
5441 } else {
5442 SCTP_DEBUG_PRINTK("Giving up on INIT, attempts: %d"
5443 " max_init_attempts: %d\n",
5444 attempts, asoc->max_init_attempts);
Sridhar Samudrala8de8c872006-05-19 10:58:12 -07005445 sctp_add_cmd_sf(commands, SCTP_CMD_SET_SK_ERR,
5446 SCTP_ERROR(ETIMEDOUT));
Frank Filz3f7a87d2005-06-20 13:14:57 -07005447 sctp_add_cmd_sf(commands, SCTP_CMD_INIT_FAILED,
Al Virodc251b22006-11-20 17:00:44 -08005448 SCTP_PERR(SCTP_ERROR_NO_ERROR));
Frank Filz3f7a87d2005-06-20 13:14:57 -07005449 return SCTP_DISPOSITION_DELETE_TCB;
5450 }
5451
5452 return SCTP_DISPOSITION_CONSUME;
5453}
5454
5455/*
5456 * sctp_sf_t1_cookie_timer_expire
5457 *
5458 * Section: 4 Note: 2
5459 * Verification Tag:
5460 * Inputs
5461 * (endpoint, asoc)
5462 *
5463 * RFC 2960 Section 4 Notes
5464 * 3) If the T1-cookie timer expires, the endpoint MUST retransmit
Linus Torvalds1da177e2005-04-16 15:20:36 -07005465 * COOKIE ECHO and re-start the T1-cookie timer without changing
5466 * state. This MUST be repeated up to 'Max.Init.Retransmits' times.
5467 * After that, the endpoint MUST abort the initialization process and
5468 * report the error to SCTP user.
5469 *
5470 * Outputs
5471 * (timers, events)
5472 *
5473 */
Frank Filz3f7a87d2005-06-20 13:14:57 -07005474sctp_disposition_t sctp_sf_t1_cookie_timer_expire(const struct sctp_endpoint *ep,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005475 const struct sctp_association *asoc,
5476 const sctp_subtype_t type,
5477 void *arg,
5478 sctp_cmd_seq_t *commands)
5479{
Frank Filz3f7a87d2005-06-20 13:14:57 -07005480 struct sctp_chunk *repl = NULL;
5481 int attempts = asoc->init_err_counter + 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005482
Frank Filz3f7a87d2005-06-20 13:14:57 -07005483 SCTP_DEBUG_PRINTK("Timer T1 expired (COOKIE-ECHO).\n");
Sridhar Samudralaac0b0462006-08-22 00:15:33 -07005484 SCTP_INC_STATS(SCTP_MIB_T1_COOKIE_EXPIREDS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005485
Vlad Yasevich81845c22006-01-30 15:59:54 -08005486 if (attempts <= asoc->max_init_attempts) {
Frank Filz3f7a87d2005-06-20 13:14:57 -07005487 repl = sctp_make_cookie_echo(asoc, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005488 if (!repl)
Frank Filz3f7a87d2005-06-20 13:14:57 -07005489 return SCTP_DISPOSITION_NOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005490
Vlad Yasevich96cd0d32008-09-08 14:00:26 -04005491 sctp_add_cmd_sf(commands, SCTP_CMD_INIT_CHOOSE_TRANSPORT,
5492 SCTP_CHUNK(repl));
Linus Torvalds1da177e2005-04-16 15:20:36 -07005493 /* Issue a sideeffect to do the needed accounting. */
Frank Filz3f7a87d2005-06-20 13:14:57 -07005494 sctp_add_cmd_sf(commands, SCTP_CMD_COOKIEECHO_RESTART,
5495 SCTP_TO(SCTP_EVENT_TIMEOUT_T1_COOKIE));
5496
Linus Torvalds1da177e2005-04-16 15:20:36 -07005497 sctp_add_cmd_sf(commands, SCTP_CMD_REPLY, SCTP_CHUNK(repl));
5498 } else {
Sridhar Samudrala8de8c872006-05-19 10:58:12 -07005499 sctp_add_cmd_sf(commands, SCTP_CMD_SET_SK_ERR,
5500 SCTP_ERROR(ETIMEDOUT));
Linus Torvalds1da177e2005-04-16 15:20:36 -07005501 sctp_add_cmd_sf(commands, SCTP_CMD_INIT_FAILED,
Al Virodc251b22006-11-20 17:00:44 -08005502 SCTP_PERR(SCTP_ERROR_NO_ERROR));
Linus Torvalds1da177e2005-04-16 15:20:36 -07005503 return SCTP_DISPOSITION_DELETE_TCB;
5504 }
5505
5506 return SCTP_DISPOSITION_CONSUME;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005507}
5508
5509/* RFC2960 9.2 If the timer expires, the endpoint must re-send the SHUTDOWN
5510 * with the updated last sequential TSN received from its peer.
5511 *
5512 * An endpoint should limit the number of retransmissions of the
5513 * SHUTDOWN chunk to the protocol parameter 'Association.Max.Retrans'.
5514 * If this threshold is exceeded the endpoint should destroy the TCB and
5515 * MUST report the peer endpoint unreachable to the upper layer (and
5516 * thus the association enters the CLOSED state). The reception of any
5517 * packet from its peer (i.e. as the peer sends all of its queued DATA
5518 * chunks) should clear the endpoint's retransmission count and restart
5519 * the T2-Shutdown timer, giving its peer ample opportunity to transmit
5520 * all of its queued DATA chunks that have not yet been sent.
5521 */
5522sctp_disposition_t sctp_sf_t2_timer_expire(const struct sctp_endpoint *ep,
5523 const struct sctp_association *asoc,
5524 const sctp_subtype_t type,
5525 void *arg,
5526 sctp_cmd_seq_t *commands)
5527{
5528 struct sctp_chunk *reply = NULL;
5529
5530 SCTP_DEBUG_PRINTK("Timer T2 expired.\n");
Sridhar Samudralaac0b0462006-08-22 00:15:33 -07005531 SCTP_INC_STATS(SCTP_MIB_T2_SHUTDOWN_EXPIREDS);
5532
Neil Horman58fbbed2008-02-29 11:40:56 -08005533 ((struct sctp_association *)asoc)->shutdown_retries++;
5534
Linus Torvalds1da177e2005-04-16 15:20:36 -07005535 if (asoc->overall_error_count >= asoc->max_retrans) {
Sridhar Samudrala8de8c872006-05-19 10:58:12 -07005536 sctp_add_cmd_sf(commands, SCTP_CMD_SET_SK_ERR,
5537 SCTP_ERROR(ETIMEDOUT));
Linus Torvalds1da177e2005-04-16 15:20:36 -07005538 /* Note: CMD_ASSOC_FAILED calls CMD_DELETE_TCB. */
5539 sctp_add_cmd_sf(commands, SCTP_CMD_ASSOC_FAILED,
Al Viro5be291f2006-11-20 17:01:06 -08005540 SCTP_PERR(SCTP_ERROR_NO_ERROR));
Linus Torvalds1da177e2005-04-16 15:20:36 -07005541 SCTP_INC_STATS(SCTP_MIB_ABORTEDS);
5542 SCTP_DEC_STATS(SCTP_MIB_CURRESTAB);
5543 return SCTP_DISPOSITION_DELETE_TCB;
5544 }
5545
5546 switch (asoc->state) {
5547 case SCTP_STATE_SHUTDOWN_SENT:
5548 reply = sctp_make_shutdown(asoc, NULL);
5549 break;
5550
5551 case SCTP_STATE_SHUTDOWN_ACK_SENT:
5552 reply = sctp_make_shutdown_ack(asoc, NULL);
5553 break;
5554
5555 default:
5556 BUG();
5557 break;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07005558 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005559
5560 if (!reply)
5561 goto nomem;
5562
Wei Yongjun6345b192009-04-26 23:13:35 +08005563 /* Do some failure management (Section 8.2).
5564 * If we remove the transport an SHUTDOWN was last sent to, don't
5565 * do failure management.
5566 */
5567 if (asoc->shutdown_last_sent_to)
5568 sctp_add_cmd_sf(commands, SCTP_CMD_STRIKE,
5569 SCTP_TRANSPORT(asoc->shutdown_last_sent_to));
Linus Torvalds1da177e2005-04-16 15:20:36 -07005570
5571 /* Set the transport for the SHUTDOWN/ACK chunk and the timeout for
5572 * the T2-shutdown timer.
5573 */
5574 sctp_add_cmd_sf(commands, SCTP_CMD_SETUP_T2, SCTP_CHUNK(reply));
5575
5576 /* Restart the T2-shutdown timer. */
5577 sctp_add_cmd_sf(commands, SCTP_CMD_TIMER_RESTART,
5578 SCTP_TO(SCTP_EVENT_TIMEOUT_T2_SHUTDOWN));
5579 sctp_add_cmd_sf(commands, SCTP_CMD_REPLY, SCTP_CHUNK(reply));
5580 return SCTP_DISPOSITION_CONSUME;
5581
5582nomem:
5583 return SCTP_DISPOSITION_NOMEM;
5584}
5585
5586/*
5587 * ADDIP Section 4.1 ASCONF CHunk Procedures
5588 * If the T4 RTO timer expires the endpoint should do B1 to B5
5589 */
5590sctp_disposition_t sctp_sf_t4_timer_expire(
5591 const struct sctp_endpoint *ep,
5592 const struct sctp_association *asoc,
5593 const sctp_subtype_t type,
5594 void *arg,
5595 sctp_cmd_seq_t *commands)
5596{
5597 struct sctp_chunk *chunk = asoc->addip_last_asconf;
5598 struct sctp_transport *transport = chunk->transport;
5599
Sridhar Samudralaac0b0462006-08-22 00:15:33 -07005600 SCTP_INC_STATS(SCTP_MIB_T4_RTO_EXPIREDS);
5601
Linus Torvalds1da177e2005-04-16 15:20:36 -07005602 /* ADDIP 4.1 B1) Increment the error counters and perform path failure
5603 * detection on the appropriate destination address as defined in
5604 * RFC2960 [5] section 8.1 and 8.2.
5605 */
Wei Yongjun10a43ce2009-04-26 23:14:42 +08005606 if (transport)
5607 sctp_add_cmd_sf(commands, SCTP_CMD_STRIKE,
5608 SCTP_TRANSPORT(transport));
Linus Torvalds1da177e2005-04-16 15:20:36 -07005609
5610 /* Reconfig T4 timer and transport. */
5611 sctp_add_cmd_sf(commands, SCTP_CMD_SETUP_T4, SCTP_CHUNK(chunk));
5612
5613 /* ADDIP 4.1 B2) Increment the association error counters and perform
5614 * endpoint failure detection on the association as defined in
5615 * RFC2960 [5] section 8.1 and 8.2.
5616 * association error counter is incremented in SCTP_CMD_STRIKE.
5617 */
5618 if (asoc->overall_error_count >= asoc->max_retrans) {
5619 sctp_add_cmd_sf(commands, SCTP_CMD_TIMER_STOP,
5620 SCTP_TO(SCTP_EVENT_TIMEOUT_T4_RTO));
Sridhar Samudrala8de8c872006-05-19 10:58:12 -07005621 sctp_add_cmd_sf(commands, SCTP_CMD_SET_SK_ERR,
5622 SCTP_ERROR(ETIMEDOUT));
Linus Torvalds1da177e2005-04-16 15:20:36 -07005623 sctp_add_cmd_sf(commands, SCTP_CMD_ASSOC_FAILED,
Al Viro5be291f2006-11-20 17:01:06 -08005624 SCTP_PERR(SCTP_ERROR_NO_ERROR));
Linus Torvalds1da177e2005-04-16 15:20:36 -07005625 SCTP_INC_STATS(SCTP_MIB_ABORTEDS);
Wei Yongjun3d5a0192008-10-09 14:32:24 -07005626 SCTP_DEC_STATS(SCTP_MIB_CURRESTAB);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005627 return SCTP_DISPOSITION_ABORT;
5628 }
5629
5630 /* ADDIP 4.1 B3) Back-off the destination address RTO value to which
5631 * the ASCONF chunk was sent by doubling the RTO timer value.
5632 * This is done in SCTP_CMD_STRIKE.
5633 */
5634
5635 /* ADDIP 4.1 B4) Re-transmit the ASCONF Chunk last sent and if possible
5636 * choose an alternate destination address (please refer to RFC2960
5637 * [5] section 6.4.1). An endpoint MUST NOT add new parameters to this
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09005638 * chunk, it MUST be the same (including its serial number) as the last
Linus Torvalds1da177e2005-04-16 15:20:36 -07005639 * ASCONF sent.
5640 */
5641 sctp_chunk_hold(asoc->addip_last_asconf);
5642 sctp_add_cmd_sf(commands, SCTP_CMD_REPLY,
5643 SCTP_CHUNK(asoc->addip_last_asconf));
5644
5645 /* ADDIP 4.1 B5) Restart the T-4 RTO timer. Note that if a different
5646 * destination is selected, then the RTO used will be that of the new
5647 * destination address.
5648 */
5649 sctp_add_cmd_sf(commands, SCTP_CMD_TIMER_RESTART,
5650 SCTP_TO(SCTP_EVENT_TIMEOUT_T4_RTO));
5651
5652 return SCTP_DISPOSITION_CONSUME;
5653}
5654
5655/* sctpimpguide-05 Section 2.12.2
5656 * The sender of the SHUTDOWN MAY also start an overall guard timer
5657 * 'T5-shutdown-guard' to bound the overall time for shutdown sequence.
5658 * At the expiration of this timer the sender SHOULD abort the association
5659 * by sending an ABORT chunk.
5660 */
5661sctp_disposition_t sctp_sf_t5_timer_expire(const struct sctp_endpoint *ep,
5662 const struct sctp_association *asoc,
5663 const sctp_subtype_t type,
5664 void *arg,
5665 sctp_cmd_seq_t *commands)
5666{
5667 struct sctp_chunk *reply = NULL;
5668
5669 SCTP_DEBUG_PRINTK("Timer T5 expired.\n");
Sridhar Samudralaac0b0462006-08-22 00:15:33 -07005670 SCTP_INC_STATS(SCTP_MIB_T5_SHUTDOWN_GUARD_EXPIREDS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005671
5672 reply = sctp_make_abort(asoc, NULL, 0);
5673 if (!reply)
5674 goto nomem;
5675
5676 sctp_add_cmd_sf(commands, SCTP_CMD_REPLY, SCTP_CHUNK(reply));
Sridhar Samudrala8de8c872006-05-19 10:58:12 -07005677 sctp_add_cmd_sf(commands, SCTP_CMD_SET_SK_ERR,
5678 SCTP_ERROR(ETIMEDOUT));
Linus Torvalds1da177e2005-04-16 15:20:36 -07005679 sctp_add_cmd_sf(commands, SCTP_CMD_ASSOC_FAILED,
Al Viro5be291f2006-11-20 17:01:06 -08005680 SCTP_PERR(SCTP_ERROR_NO_ERROR));
Linus Torvalds1da177e2005-04-16 15:20:36 -07005681
Vlad Yasevicha1080a82008-10-09 14:33:26 -07005682 SCTP_INC_STATS(SCTP_MIB_ABORTEDS);
5683 SCTP_DEC_STATS(SCTP_MIB_CURRESTAB);
5684
Linus Torvalds1da177e2005-04-16 15:20:36 -07005685 return SCTP_DISPOSITION_DELETE_TCB;
5686nomem:
5687 return SCTP_DISPOSITION_NOMEM;
5688}
5689
5690/* Handle expiration of AUTOCLOSE timer. When the autoclose timer expires,
5691 * the association is automatically closed by starting the shutdown process.
5692 * The work that needs to be done is same as when SHUTDOWN is initiated by
5693 * the user. So this routine looks same as sctp_sf_do_9_2_prm_shutdown().
5694 */
5695sctp_disposition_t sctp_sf_autoclose_timer_expire(
5696 const struct sctp_endpoint *ep,
5697 const struct sctp_association *asoc,
5698 const sctp_subtype_t type,
5699 void *arg,
5700 sctp_cmd_seq_t *commands)
5701{
5702 int disposition;
5703
Sridhar Samudralaac0b0462006-08-22 00:15:33 -07005704 SCTP_INC_STATS(SCTP_MIB_AUTOCLOSE_EXPIREDS);
5705
Linus Torvalds1da177e2005-04-16 15:20:36 -07005706 /* From 9.2 Shutdown of an Association
5707 * Upon receipt of the SHUTDOWN primitive from its upper
5708 * layer, the endpoint enters SHUTDOWN-PENDING state and
5709 * remains there until all outstanding data has been
5710 * acknowledged by its peer. The endpoint accepts no new data
5711 * from its upper layer, but retransmits data to the far end
5712 * if necessary to fill gaps.
5713 */
5714 sctp_add_cmd_sf(commands, SCTP_CMD_NEW_STATE,
5715 SCTP_STATE(SCTP_STATE_SHUTDOWN_PENDING));
5716
Linus Torvalds1da177e2005-04-16 15:20:36 -07005717 disposition = SCTP_DISPOSITION_CONSUME;
5718 if (sctp_outq_is_empty(&asoc->outqueue)) {
5719 disposition = sctp_sf_do_9_2_start_shutdown(ep, asoc, type,
5720 arg, commands);
5721 }
5722 return disposition;
5723}
5724
5725/*****************************************************************************
5726 * These are sa state functions which could apply to all types of events.
5727 ****************************************************************************/
5728
5729/*
5730 * This table entry is not implemented.
5731 *
5732 * Inputs
5733 * (endpoint, asoc, chunk)
5734 *
5735 * The return value is the disposition of the chunk.
5736 */
5737sctp_disposition_t sctp_sf_not_impl(const struct sctp_endpoint *ep,
5738 const struct sctp_association *asoc,
5739 const sctp_subtype_t type,
5740 void *arg,
5741 sctp_cmd_seq_t *commands)
5742{
5743 return SCTP_DISPOSITION_NOT_IMPL;
5744}
5745
5746/*
5747 * This table entry represents a bug.
5748 *
5749 * Inputs
5750 * (endpoint, asoc, chunk)
5751 *
5752 * The return value is the disposition of the chunk.
5753 */
5754sctp_disposition_t sctp_sf_bug(const struct sctp_endpoint *ep,
5755 const struct sctp_association *asoc,
5756 const sctp_subtype_t type,
5757 void *arg,
5758 sctp_cmd_seq_t *commands)
5759{
5760 return SCTP_DISPOSITION_BUG;
5761}
5762
5763/*
5764 * This table entry represents the firing of a timer in the wrong state.
5765 * Since timer deletion cannot be guaranteed a timer 'may' end up firing
5766 * when the association is in the wrong state. This event should
5767 * be ignored, so as to prevent any rearming of the timer.
5768 *
5769 * Inputs
5770 * (endpoint, asoc, chunk)
5771 *
5772 * The return value is the disposition of the chunk.
5773 */
5774sctp_disposition_t sctp_sf_timer_ignore(const struct sctp_endpoint *ep,
5775 const struct sctp_association *asoc,
5776 const sctp_subtype_t type,
5777 void *arg,
5778 sctp_cmd_seq_t *commands)
5779{
5780 SCTP_DEBUG_PRINTK("Timer %d ignored.\n", type.chunk);
5781 return SCTP_DISPOSITION_CONSUME;
5782}
5783
5784/********************************************************************
5785 * 2nd Level Abstractions
5786 ********************************************************************/
5787
5788/* Pull the SACK chunk based on the SACK header. */
5789static struct sctp_sackhdr *sctp_sm_pull_sack(struct sctp_chunk *chunk)
5790{
5791 struct sctp_sackhdr *sack;
5792 unsigned int len;
5793 __u16 num_blocks;
5794 __u16 num_dup_tsns;
5795
5796 /* Protect ourselves from reading too far into
5797 * the skb from a bogus sender.
5798 */
5799 sack = (struct sctp_sackhdr *) chunk->skb->data;
5800
5801 num_blocks = ntohs(sack->num_gap_ack_blocks);
5802 num_dup_tsns = ntohs(sack->num_dup_tsns);
5803 len = sizeof(struct sctp_sackhdr);
5804 len += (num_blocks + num_dup_tsns) * sizeof(__u32);
5805 if (len > chunk->skb->len)
5806 return NULL;
5807
5808 skb_pull(chunk->skb, len);
5809
5810 return sack;
5811}
5812
5813/* Create an ABORT packet to be sent as a response, with the specified
5814 * error causes.
5815 */
5816static struct sctp_packet *sctp_abort_pkt_new(const struct sctp_endpoint *ep,
5817 const struct sctp_association *asoc,
5818 struct sctp_chunk *chunk,
5819 const void *payload,
5820 size_t paylen)
5821{
5822 struct sctp_packet *packet;
5823 struct sctp_chunk *abort;
5824
5825 packet = sctp_ootb_pkt_new(asoc, chunk);
5826
5827 if (packet) {
5828 /* Make an ABORT.
5829 * The T bit will be set if the asoc is NULL.
5830 */
5831 abort = sctp_make_abort(asoc, chunk, paylen);
5832 if (!abort) {
5833 sctp_ootb_pkt_free(packet);
5834 return NULL;
5835 }
Jerome Forissier047a2422005-04-28 11:58:43 -07005836
5837 /* Reflect vtag if T-Bit is set */
5838 if (sctp_test_T_bit(abort))
5839 packet->vtag = ntohl(chunk->sctp_hdr->vtag);
5840
Linus Torvalds1da177e2005-04-16 15:20:36 -07005841 /* Add specified error causes, i.e., payload, to the
5842 * end of the chunk.
5843 */
5844 sctp_addto_chunk(abort, paylen, payload);
5845
5846 /* Set the skb to the belonging sock for accounting. */
5847 abort->skb->sk = ep->base.sk;
5848
5849 sctp_packet_append_chunk(packet, abort);
5850
5851 }
5852
5853 return packet;
5854}
5855
5856/* Allocate a packet for responding in the OOTB conditions. */
5857static struct sctp_packet *sctp_ootb_pkt_new(const struct sctp_association *asoc,
5858 const struct sctp_chunk *chunk)
5859{
5860 struct sctp_packet *packet;
5861 struct sctp_transport *transport;
5862 __u16 sport;
5863 __u16 dport;
5864 __u32 vtag;
5865
5866 /* Get the source and destination port from the inbound packet. */
5867 sport = ntohs(chunk->sctp_hdr->dest);
5868 dport = ntohs(chunk->sctp_hdr->source);
5869
5870 /* The V-tag is going to be the same as the inbound packet if no
5871 * association exists, otherwise, use the peer's vtag.
5872 */
5873 if (asoc) {
Wei Yongjun02c4e122007-08-31 10:03:58 +08005874 /* Special case the INIT-ACK as there is no peer's vtag
5875 * yet.
5876 */
5877 switch(chunk->chunk_hdr->type) {
5878 case SCTP_CID_INIT_ACK:
5879 {
5880 sctp_initack_chunk_t *initack;
5881
5882 initack = (sctp_initack_chunk_t *)chunk->chunk_hdr;
5883 vtag = ntohl(initack->init_hdr.init_tag);
5884 break;
5885 }
5886 default:
5887 vtag = asoc->peer.i.init_tag;
5888 break;
5889 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005890 } else {
5891 /* Special case the INIT and stale COOKIE_ECHO as there is no
5892 * vtag yet.
5893 */
5894 switch(chunk->chunk_hdr->type) {
5895 case SCTP_CID_INIT:
5896 {
5897 sctp_init_chunk_t *init;
5898
5899 init = (sctp_init_chunk_t *)chunk->chunk_hdr;
5900 vtag = ntohl(init->init_hdr.init_tag);
5901 break;
5902 }
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09005903 default:
Linus Torvalds1da177e2005-04-16 15:20:36 -07005904 vtag = ntohl(chunk->sctp_hdr->vtag);
5905 break;
5906 }
5907 }
5908
5909 /* Make a transport for the bucket, Eliza... */
Al Viro6a1e5f32006-11-20 17:12:25 -08005910 transport = sctp_transport_new(sctp_source(chunk), GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005911 if (!transport)
5912 goto nomem;
5913
5914 /* Cache a route for the transport with the chunk's destination as
5915 * the source address.
5916 */
Al Viro16b0a032006-11-20 17:13:38 -08005917 sctp_transport_route(transport, (union sctp_addr *)&chunk->dest,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005918 sctp_sk(sctp_get_ctl_sock()));
5919
5920 packet = sctp_packet_init(&transport->packet, transport, sport, dport);
5921 packet = sctp_packet_config(packet, vtag, 0);
5922
5923 return packet;
5924
5925nomem:
5926 return NULL;
5927}
5928
5929/* Free the packet allocated earlier for responding in the OOTB condition. */
5930void sctp_ootb_pkt_free(struct sctp_packet *packet)
5931{
5932 sctp_transport_free(packet->transport);
5933}
5934
5935/* Send a stale cookie error when a invalid COOKIE ECHO chunk is found */
5936static void sctp_send_stale_cookie_err(const struct sctp_endpoint *ep,
5937 const struct sctp_association *asoc,
5938 const struct sctp_chunk *chunk,
5939 sctp_cmd_seq_t *commands,
5940 struct sctp_chunk *err_chunk)
5941{
5942 struct sctp_packet *packet;
5943
5944 if (err_chunk) {
5945 packet = sctp_ootb_pkt_new(asoc, chunk);
5946 if (packet) {
5947 struct sctp_signed_cookie *cookie;
5948
5949 /* Override the OOTB vtag from the cookie. */
5950 cookie = chunk->subh.cookie_hdr;
5951 packet->vtag = cookie->c.peer_vtag;
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09005952
Linus Torvalds1da177e2005-04-16 15:20:36 -07005953 /* Set the skb to the belonging sock for accounting. */
5954 err_chunk->skb->sk = ep->base.sk;
5955 sctp_packet_append_chunk(packet, err_chunk);
5956 sctp_add_cmd_sf(commands, SCTP_CMD_SEND_PKT,
5957 SCTP_PACKET(packet));
5958 SCTP_INC_STATS(SCTP_MIB_OUTCTRLCHUNKS);
5959 } else
5960 sctp_chunk_free (err_chunk);
5961 }
5962}
5963
5964
5965/* Process a data chunk */
5966static int sctp_eat_data(const struct sctp_association *asoc,
5967 struct sctp_chunk *chunk,
5968 sctp_cmd_seq_t *commands)
5969{
5970 sctp_datahdr_t *data_hdr;
5971 struct sctp_chunk *err;
5972 size_t datalen;
5973 sctp_verb_t deliver;
5974 int tmp;
5975 __u32 tsn;
Neil Horman7c3ceb4f2006-05-05 17:02:09 -07005976 struct sctp_tsnmap *map = (struct sctp_tsnmap *)&asoc->peer.tsn_map;
Neil Horman049b3ff2005-11-11 16:08:24 -08005977 struct sock *sk = asoc->base.sk;
Vlad Yasevichf1751c52009-09-04 18:21:03 -04005978 u16 ssn;
5979 u16 sid;
5980 u8 ordered = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005981
5982 data_hdr = chunk->subh.data_hdr = (sctp_datahdr_t *)chunk->skb->data;
5983 skb_pull(chunk->skb, sizeof(sctp_datahdr_t));
5984
5985 tsn = ntohl(data_hdr->tsn);
5986 SCTP_DEBUG_PRINTK("eat_data: TSN 0x%x.\n", tsn);
5987
5988 /* ASSERT: Now skb->data is really the user data. */
5989
Linus Torvalds1da177e2005-04-16 15:20:36 -07005990 /* Process ECN based congestion.
5991 *
5992 * Since the chunk structure is reused for all chunks within
5993 * a packet, we use ecn_ce_done to track if we've already
5994 * done CE processing for this packet.
5995 *
5996 * We need to do ECN processing even if we plan to discard the
5997 * chunk later.
5998 */
5999
6000 if (!chunk->ecn_ce_done) {
6001 struct sctp_af *af;
6002 chunk->ecn_ce_done = 1;
6003
6004 af = sctp_get_af_specific(
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -07006005 ipver2af(ip_hdr(chunk->skb)->version));
Linus Torvalds1da177e2005-04-16 15:20:36 -07006006
6007 if (af && af->is_ce(chunk->skb) && asoc->peer.ecn_capable) {
6008 /* Do real work as sideffect. */
6009 sctp_add_cmd_sf(commands, SCTP_CMD_ECN_CE,
6010 SCTP_U32(tsn));
6011 }
6012 }
6013
6014 tmp = sctp_tsnmap_check(&asoc->peer.tsn_map, tsn);
6015 if (tmp < 0) {
6016 /* The TSN is too high--silently discard the chunk and
6017 * count on it getting retransmitted later.
6018 */
6019 return SCTP_IERROR_HIGH_TSN;
6020 } else if (tmp > 0) {
6021 /* This is a duplicate. Record it. */
6022 sctp_add_cmd_sf(commands, SCTP_CMD_REPORT_DUP, SCTP_U32(tsn));
6023 return SCTP_IERROR_DUP_TSN;
6024 }
6025
6026 /* This is a new TSN. */
6027
6028 /* Discard if there is no room in the receive window.
6029 * Actually, allow a little bit of overflow (up to a MTU).
6030 */
6031 datalen = ntohs(chunk->chunk_hdr->length);
6032 datalen -= sizeof(sctp_data_chunk_t);
6033
6034 deliver = SCTP_CMD_CHUNK_ULP;
6035
6036 /* Think about partial delivery. */
6037 if ((datalen >= asoc->rwnd) && (!asoc->ulpq.pd_mode)) {
6038
6039 /* Even if we don't accept this chunk there is
6040 * memory pressure.
6041 */
6042 sctp_add_cmd_sf(commands, SCTP_CMD_PART_DELIVER, SCTP_NULL());
6043 }
6044
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09006045 /* Spill over rwnd a little bit. Note: While allowed, this spill over
Linus Torvalds1da177e2005-04-16 15:20:36 -07006046 * seems a bit troublesome in that frag_point varies based on
6047 * PMTU. In cases, such as loopback, this might be a rather
6048 * large spill over.
6049 */
Neil Horman4d93df02007-08-15 16:07:44 -07006050 if ((!chunk->data_accepted) && (!asoc->rwnd || asoc->rwnd_over ||
6051 (datalen > asoc->rwnd + asoc->frag_point))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07006052
6053 /* If this is the next TSN, consider reneging to make
6054 * room. Note: Playing nice with a confused sender. A
6055 * malicious sender can still eat up all our buffer
6056 * space and in the future we may want to detect and
6057 * do more drastic reneging.
6058 */
Neil Horman7c3ceb4f2006-05-05 17:02:09 -07006059 if (sctp_tsnmap_has_gap(map) &&
6060 (sctp_tsnmap_get_ctsn(map) + 1) == tsn) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07006061 SCTP_DEBUG_PRINTK("Reneging for tsn:%u\n", tsn);
6062 deliver = SCTP_CMD_RENEGE;
6063 } else {
6064 SCTP_DEBUG_PRINTK("Discard tsn: %u len: %Zd, "
6065 "rwnd: %d\n", tsn, datalen,
6066 asoc->rwnd);
6067 return SCTP_IERROR_IGNORE_TSN;
6068 }
6069 }
6070
6071 /*
Neil Horman4d93df02007-08-15 16:07:44 -07006072 * Also try to renege to limit our memory usage in the event that
6073 * we are under memory pressure
Hideo Aoki3ab224b2007-12-31 00:11:19 -08006074 * If we can't renege, don't worry about it, the sk_rmem_schedule
Neil Horman4d93df02007-08-15 16:07:44 -07006075 * in sctp_ulpevent_make_rcvmsg will drop the frame if we grow our
6076 * memory usage too much
6077 */
6078 if (*sk->sk_prot_creator->memory_pressure) {
6079 if (sctp_tsnmap_has_gap(map) &&
6080 (sctp_tsnmap_get_ctsn(map) + 1) == tsn) {
6081 SCTP_DEBUG_PRINTK("Under Pressure! Reneging for tsn:%u\n", tsn);
6082 deliver = SCTP_CMD_RENEGE;
6083 }
6084 }
6085
6086 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006087 * Section 3.3.10.9 No User Data (9)
6088 *
6089 * Cause of error
6090 * ---------------
6091 * No User Data: This error cause is returned to the originator of a
6092 * DATA chunk if a received DATA chunk has no user data.
6093 */
6094 if (unlikely(0 == datalen)) {
6095 err = sctp_make_abort_no_data(asoc, chunk, tsn);
6096 if (err) {
6097 sctp_add_cmd_sf(commands, SCTP_CMD_REPLY,
6098 SCTP_CHUNK(err));
6099 }
6100 /* We are going to ABORT, so we might as well stop
6101 * processing the rest of the chunks in the packet.
6102 */
6103 sctp_add_cmd_sf(commands, SCTP_CMD_DISCARD_PACKET,SCTP_NULL());
Sridhar Samudrala8de8c872006-05-19 10:58:12 -07006104 sctp_add_cmd_sf(commands, SCTP_CMD_SET_SK_ERR,
6105 SCTP_ERROR(ECONNABORTED));
Linus Torvalds1da177e2005-04-16 15:20:36 -07006106 sctp_add_cmd_sf(commands, SCTP_CMD_ASSOC_FAILED,
Al Viro5be291f2006-11-20 17:01:06 -08006107 SCTP_PERR(SCTP_ERROR_NO_DATA));
Linus Torvalds1da177e2005-04-16 15:20:36 -07006108 SCTP_INC_STATS(SCTP_MIB_ABORTEDS);
6109 SCTP_DEC_STATS(SCTP_MIB_CURRESTAB);
6110 return SCTP_IERROR_NO_DATA;
6111 }
6112
Sridhar Samudrala9faa7302006-07-21 14:49:07 -07006113 chunk->data_accepted = 1;
6114
Linus Torvalds1da177e2005-04-16 15:20:36 -07006115 /* Note: Some chunks may get overcounted (if we drop) or overcounted
6116 * if we renege and the chunk arrives again.
6117 */
6118 if (chunk->chunk_hdr->flags & SCTP_DATA_UNORDERED)
6119 SCTP_INC_STATS(SCTP_MIB_INUNORDERCHUNKS);
Vlad Yasevichf1751c52009-09-04 18:21:03 -04006120 else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07006121 SCTP_INC_STATS(SCTP_MIB_INORDERCHUNKS);
Vlad Yasevichf1751c52009-09-04 18:21:03 -04006122 ordered = 1;
6123 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006124
6125 /* RFC 2960 6.5 Stream Identifier and Stream Sequence Number
6126 *
6127 * If an endpoint receive a DATA chunk with an invalid stream
6128 * identifier, it shall acknowledge the reception of the DATA chunk
6129 * following the normal procedure, immediately send an ERROR chunk
6130 * with cause set to "Invalid Stream Identifier" (See Section 3.3.10)
6131 * and discard the DATA chunk.
6132 */
Vlad Yasevichf1751c52009-09-04 18:21:03 -04006133 sid = ntohs(data_hdr->stream);
6134 if (sid >= asoc->c.sinit_max_instreams) {
Vlad Yasevich3888e9e2008-07-08 02:28:39 -07006135 /* Mark tsn as received even though we drop it */
6136 sctp_add_cmd_sf(commands, SCTP_CMD_REPORT_TSN, SCTP_U32(tsn));
6137
Linus Torvalds1da177e2005-04-16 15:20:36 -07006138 err = sctp_make_op_error(asoc, chunk, SCTP_ERROR_INV_STRM,
6139 &data_hdr->stream,
Vlad Yasevich6383cfb2009-11-23 15:53:56 -05006140 sizeof(data_hdr->stream),
6141 sizeof(u16));
Linus Torvalds1da177e2005-04-16 15:20:36 -07006142 if (err)
6143 sctp_add_cmd_sf(commands, SCTP_CMD_REPLY,
6144 SCTP_CHUNK(err));
6145 return SCTP_IERROR_BAD_STREAM;
6146 }
6147
Vlad Yasevichf1751c52009-09-04 18:21:03 -04006148 /* Check to see if the SSN is possible for this TSN.
6149 * The biggest gap we can record is 4K wide. Since SSNs wrap
6150 * at an unsigned short, there is no way that an SSN can
6151 * wrap and for a valid TSN. We can simply check if the current
6152 * SSN is smaller then the next expected one. If it is, it wrapped
6153 * and is invalid.
6154 */
6155 ssn = ntohs(data_hdr->ssn);
6156 if (ordered && SSN_lt(ssn, sctp_ssn_peek(&asoc->ssnmap->in, sid))) {
6157 return SCTP_IERROR_PROTO_VIOLATION;
6158 }
6159
Linus Torvalds1da177e2005-04-16 15:20:36 -07006160 /* Send the data up to the user. Note: Schedule the
6161 * SCTP_CMD_CHUNK_ULP cmd before the SCTP_CMD_GEN_SACK, as the SACK
6162 * chunk needs the updated rwnd.
6163 */
6164 sctp_add_cmd_sf(commands, deliver, SCTP_CHUNK(chunk));
6165
6166 return SCTP_IERROR_NO_ERROR;
6167}