blob: 7f4a4f8368ee0df6b6ccab07ada25df655b7b521 [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
1721 /* For now, fail any unsent/unacked data. Consider the optional
1722 * choice of resending of this data.
1723 */
1724 sctp_add_cmd_sf(commands, SCTP_CMD_PURGE_OUTQUEUE, SCTP_NULL());
1725
Linus Torvalds1da177e2005-04-16 15:20:36 -07001726 repl = sctp_make_cookie_ack(new_asoc, chunk);
1727 if (!repl)
1728 goto nomem;
1729
Linus Torvalds1da177e2005-04-16 15:20:36 -07001730 /* Report association restart to upper layer. */
1731 ev = sctp_ulpevent_make_assoc_change(asoc, 0, SCTP_RESTART, 0,
1732 new_asoc->c.sinit_num_ostreams,
1733 new_asoc->c.sinit_max_instreams,
Vlad Yasevicha5a35e72007-03-23 11:34:08 -07001734 NULL, GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001735 if (!ev)
1736 goto nomem_ev;
1737
Vladislav Yasevichdf7deeb2006-08-22 00:19:51 -07001738 /* Update the content of current association. */
1739 sctp_add_cmd_sf(commands, SCTP_CMD_UPDATE_ASSOC, SCTP_ASOC(new_asoc));
1740 sctp_add_cmd_sf(commands, SCTP_CMD_REPLY, SCTP_CHUNK(repl));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001741 sctp_add_cmd_sf(commands, SCTP_CMD_EVENT_ULP, SCTP_ULPEVENT(ev));
1742 return SCTP_DISPOSITION_CONSUME;
1743
1744nomem_ev:
1745 sctp_chunk_free(repl);
1746nomem:
1747 return SCTP_DISPOSITION_NOMEM;
1748}
1749
1750/* Unexpected COOKIE-ECHO handler for setup collision (Table 2, action 'B')
1751 *
1752 * Section 5.2.4
1753 * B) In this case, both sides may be attempting to start an association
1754 * at about the same time but the peer endpoint started its INIT
1755 * after responding to the local endpoint's INIT
1756 */
1757/* This case represents an initialization collision. */
1758static sctp_disposition_t sctp_sf_do_dupcook_b(const struct sctp_endpoint *ep,
1759 const struct sctp_association *asoc,
1760 struct sctp_chunk *chunk,
1761 sctp_cmd_seq_t *commands,
1762 struct sctp_association *new_asoc)
1763{
1764 sctp_init_chunk_t *peer_init;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001765 struct sctp_chunk *repl;
1766
1767 /* new_asoc is a brand-new association, so these are not yet
1768 * side effects--it is safe to run them here.
1769 */
1770 peer_init = &chunk->subh.cookie_hdr->c.peer_init[0];
Wei Yongjunde6becd2011-04-19 21:30:51 +00001771 if (!sctp_process_init(new_asoc, chunk, sctp_source(chunk), peer_init,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001772 GFP_ATOMIC))
1773 goto nomem;
1774
1775 /* Update the content of current association. */
1776 sctp_add_cmd_sf(commands, SCTP_CMD_UPDATE_ASSOC, SCTP_ASOC(new_asoc));
1777 sctp_add_cmd_sf(commands, SCTP_CMD_NEW_STATE,
1778 SCTP_STATE(SCTP_STATE_ESTABLISHED));
1779 SCTP_INC_STATS(SCTP_MIB_CURRESTAB);
1780 sctp_add_cmd_sf(commands, SCTP_CMD_HB_TIMERS_START, SCTP_NULL());
1781
1782 repl = sctp_make_cookie_ack(new_asoc, chunk);
1783 if (!repl)
1784 goto nomem;
1785
1786 sctp_add_cmd_sf(commands, SCTP_CMD_REPLY, SCTP_CHUNK(repl));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001787
1788 /* RFC 2960 5.1 Normal Establishment of an Association
1789 *
1790 * D) IMPLEMENTATION NOTE: An implementation may choose to
1791 * send the Communication Up notification to the SCTP user
1792 * upon reception of a valid COOKIE ECHO chunk.
Vlad Yasevich07d93962007-05-04 13:55:27 -07001793 *
1794 * Sadly, this needs to be implemented as a side-effect, because
1795 * we are not guaranteed to have set the association id of the real
1796 * association and so these notifications need to be delayed until
1797 * the association id is allocated.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001798 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001799
Vlad Yasevich07d93962007-05-04 13:55:27 -07001800 sctp_add_cmd_sf(commands, SCTP_CMD_ASSOC_CHANGE, SCTP_U8(SCTP_COMM_UP));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001801
1802 /* Sockets API Draft Section 5.3.1.6
Ivan Skytte Jorgensen0f3fffd2006-12-20 16:07:04 -08001803 * When a peer sends a Adaptation Layer Indication parameter , SCTP
Linus Torvalds1da177e2005-04-16 15:20:36 -07001804 * delivers this notification to inform the application that of the
Ivan Skytte Jorgensen0f3fffd2006-12-20 16:07:04 -08001805 * peers requested adaptation layer.
Vlad Yasevich07d93962007-05-04 13:55:27 -07001806 *
1807 * This also needs to be done as a side effect for the same reason as
1808 * above.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001809 */
Vlad Yasevich07d93962007-05-04 13:55:27 -07001810 if (asoc->peer.adaptation_ind)
1811 sctp_add_cmd_sf(commands, SCTP_CMD_ADAPTATION_IND, SCTP_NULL());
Linus Torvalds1da177e2005-04-16 15:20:36 -07001812
1813 return SCTP_DISPOSITION_CONSUME;
1814
Linus Torvalds1da177e2005-04-16 15:20:36 -07001815nomem:
1816 return SCTP_DISPOSITION_NOMEM;
1817}
1818
1819/* Unexpected COOKIE-ECHO handler for setup collision (Table 2, action 'C')
1820 *
1821 * Section 5.2.4
1822 * C) In this case, the local endpoint's cookie has arrived late.
1823 * Before it arrived, the local endpoint sent an INIT and received an
1824 * INIT-ACK and finally sent a COOKIE ECHO with the peer's same tag
1825 * but a new tag of its own.
1826 */
1827/* This case represents an initialization collision. */
1828static sctp_disposition_t sctp_sf_do_dupcook_c(const struct sctp_endpoint *ep,
1829 const struct sctp_association *asoc,
1830 struct sctp_chunk *chunk,
1831 sctp_cmd_seq_t *commands,
1832 struct sctp_association *new_asoc)
1833{
1834 /* The cookie should be silently discarded.
1835 * The endpoint SHOULD NOT change states and should leave
1836 * any timers running.
1837 */
1838 return SCTP_DISPOSITION_DISCARD;
1839}
1840
1841/* Unexpected COOKIE-ECHO handler lost chunk (Table 2, action 'D')
1842 *
1843 * Section 5.2.4
1844 *
1845 * D) When both local and remote tags match the endpoint should always
1846 * enter the ESTABLISHED state, if it has not already done so.
1847 */
1848/* This case represents an initialization collision. */
1849static sctp_disposition_t sctp_sf_do_dupcook_d(const struct sctp_endpoint *ep,
1850 const struct sctp_association *asoc,
1851 struct sctp_chunk *chunk,
1852 sctp_cmd_seq_t *commands,
1853 struct sctp_association *new_asoc)
1854{
Vladislav Yasevichdf7deeb2006-08-22 00:19:51 -07001855 struct sctp_ulpevent *ev = NULL, *ai_ev = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001856 struct sctp_chunk *repl;
1857
1858 /* Clarification from Implementor's Guide:
1859 * D) When both local and remote tags match the endpoint should
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09001860 * enter the ESTABLISHED state, if it is in the COOKIE-ECHOED state.
1861 * It should stop any cookie timer that may be running and send
1862 * a COOKIE ACK.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001863 */
1864
1865 /* Don't accidentally move back into established state. */
1866 if (asoc->state < SCTP_STATE_ESTABLISHED) {
1867 sctp_add_cmd_sf(commands, SCTP_CMD_TIMER_STOP,
1868 SCTP_TO(SCTP_EVENT_TIMEOUT_T1_COOKIE));
1869 sctp_add_cmd_sf(commands, SCTP_CMD_NEW_STATE,
1870 SCTP_STATE(SCTP_STATE_ESTABLISHED));
1871 SCTP_INC_STATS(SCTP_MIB_CURRESTAB);
1872 sctp_add_cmd_sf(commands, SCTP_CMD_HB_TIMERS_START,
1873 SCTP_NULL());
1874
1875 /* RFC 2960 5.1 Normal Establishment of an Association
1876 *
1877 * D) IMPLEMENTATION NOTE: An implementation may choose
1878 * to send the Communication Up notification to the
1879 * SCTP user upon reception of a valid COOKIE
1880 * ECHO chunk.
1881 */
Vladislav Yasevichdf7deeb2006-08-22 00:19:51 -07001882 ev = sctp_ulpevent_make_assoc_change(asoc, 0,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001883 SCTP_COMM_UP, 0,
Vladislav Yasevichdf7deeb2006-08-22 00:19:51 -07001884 asoc->c.sinit_num_ostreams,
1885 asoc->c.sinit_max_instreams,
YOSHIFUJI Hideaki9cbcbf42007-07-19 10:44:50 +09001886 NULL, GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001887 if (!ev)
1888 goto nomem;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001889
1890 /* Sockets API Draft Section 5.3.1.6
Ivan Skytte Jorgensen0f3fffd2006-12-20 16:07:04 -08001891 * When a peer sends a Adaptation Layer Indication parameter,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001892 * SCTP delivers this notification to inform the application
Ivan Skytte Jorgensen0f3fffd2006-12-20 16:07:04 -08001893 * that of the peers requested adaptation layer.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001894 */
Ivan Skytte Jorgensen0f3fffd2006-12-20 16:07:04 -08001895 if (asoc->peer.adaptation_ind) {
1896 ai_ev = sctp_ulpevent_make_adaptation_indication(asoc,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001897 GFP_ATOMIC);
Vladislav Yasevichdf7deeb2006-08-22 00:19:51 -07001898 if (!ai_ev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001899 goto nomem;
1900
Linus Torvalds1da177e2005-04-16 15:20:36 -07001901 }
1902 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001903
1904 repl = sctp_make_cookie_ack(new_asoc, chunk);
1905 if (!repl)
1906 goto nomem;
1907
Vlad Yasevich2e3216c2008-06-19 16:08:18 -07001908 sctp_add_cmd_sf(commands, SCTP_CMD_REPLY, SCTP_CHUNK(repl));
1909
Vladislav Yasevichdf7deeb2006-08-22 00:19:51 -07001910 if (ev)
1911 sctp_add_cmd_sf(commands, SCTP_CMD_EVENT_ULP,
1912 SCTP_ULPEVENT(ev));
1913 if (ai_ev)
1914 sctp_add_cmd_sf(commands, SCTP_CMD_EVENT_ULP,
1915 SCTP_ULPEVENT(ai_ev));
1916
Linus Torvalds1da177e2005-04-16 15:20:36 -07001917 return SCTP_DISPOSITION_CONSUME;
1918
1919nomem:
Vladislav Yasevichdf7deeb2006-08-22 00:19:51 -07001920 if (ai_ev)
1921 sctp_ulpevent_free(ai_ev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001922 if (ev)
1923 sctp_ulpevent_free(ev);
1924 return SCTP_DISPOSITION_NOMEM;
1925}
1926
1927/*
1928 * Handle a duplicate COOKIE-ECHO. This usually means a cookie-carrying
1929 * chunk was retransmitted and then delayed in the network.
1930 *
1931 * Section: 5.2.4 Handle a COOKIE ECHO when a TCB exists
1932 *
1933 * Verification Tag: None. Do cookie validation.
1934 *
1935 * Inputs
1936 * (endpoint, asoc, chunk)
1937 *
1938 * Outputs
1939 * (asoc, reply_msg, msg_up, timers, counters)
1940 *
1941 * The return value is the disposition of the chunk.
1942 */
1943sctp_disposition_t sctp_sf_do_5_2_4_dupcook(const struct sctp_endpoint *ep,
1944 const struct sctp_association *asoc,
1945 const sctp_subtype_t type,
1946 void *arg,
1947 sctp_cmd_seq_t *commands)
1948{
1949 sctp_disposition_t retval;
1950 struct sctp_chunk *chunk = arg;
1951 struct sctp_association *new_asoc;
1952 int error = 0;
1953 char action;
1954 struct sctp_chunk *err_chk_p;
1955
1956 /* Make sure that the chunk has a valid length from the protocol
1957 * perspective. In this case check to make sure we have at least
1958 * enough for the chunk header. Cookie length verification is
1959 * done later.
1960 */
1961 if (!sctp_chunk_length_valid(chunk, sizeof(sctp_chunkhdr_t)))
1962 return sctp_sf_violation_chunklen(ep, asoc, type, arg,
1963 commands);
1964
1965 /* "Decode" the chunk. We have no optional parameters so we
1966 * are in good shape.
1967 */
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09001968 chunk->subh.cookie_hdr = (struct sctp_signed_cookie *)chunk->skb->data;
Sridhar Samudrala62b08082006-05-05 17:04:43 -07001969 if (!pskb_pull(chunk->skb, ntohs(chunk->chunk_hdr->length) -
1970 sizeof(sctp_chunkhdr_t)))
1971 goto nomem;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001972
1973 /* In RFC 2960 5.2.4 3, if both Verification Tags in the State Cookie
1974 * of a duplicate COOKIE ECHO match the Verification Tags of the
1975 * current association, consider the State Cookie valid even if
1976 * the lifespan is exceeded.
1977 */
1978 new_asoc = sctp_unpack_cookie(ep, asoc, chunk, GFP_ATOMIC, &error,
1979 &err_chk_p);
1980
1981 /* FIXME:
1982 * If the re-build failed, what is the proper error path
1983 * from here?
1984 *
1985 * [We should abort the association. --piggy]
1986 */
1987 if (!new_asoc) {
1988 /* FIXME: Several errors are possible. A bad cookie should
1989 * be silently discarded, but think about logging it too.
1990 */
1991 switch (error) {
1992 case -SCTP_IERROR_NOMEM:
1993 goto nomem;
1994
1995 case -SCTP_IERROR_STALE_COOKIE:
1996 sctp_send_stale_cookie_err(ep, asoc, chunk, commands,
1997 err_chk_p);
1998 return sctp_sf_pdiscard(ep, asoc, type, arg, commands);
1999 case -SCTP_IERROR_BAD_SIG:
2000 default:
2001 return sctp_sf_pdiscard(ep, asoc, type, arg, commands);
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07002002 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002003 }
2004
2005 /* Compare the tie_tag in cookie with the verification tag of
2006 * current association.
2007 */
2008 action = sctp_tietags_compare(new_asoc, asoc);
2009
2010 switch (action) {
2011 case 'A': /* Association restart. */
2012 retval = sctp_sf_do_dupcook_a(ep, asoc, chunk, commands,
2013 new_asoc);
2014 break;
2015
2016 case 'B': /* Collision case B. */
2017 retval = sctp_sf_do_dupcook_b(ep, asoc, chunk, commands,
2018 new_asoc);
2019 break;
2020
2021 case 'C': /* Collision case C. */
2022 retval = sctp_sf_do_dupcook_c(ep, asoc, chunk, commands,
2023 new_asoc);
2024 break;
2025
2026 case 'D': /* Collision case D. */
2027 retval = sctp_sf_do_dupcook_d(ep, asoc, chunk, commands,
2028 new_asoc);
2029 break;
2030
2031 default: /* Discard packet for all others. */
2032 retval = sctp_sf_pdiscard(ep, asoc, type, arg, commands);
2033 break;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07002034 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002035
2036 /* Delete the tempory new association. */
2037 sctp_add_cmd_sf(commands, SCTP_CMD_NEW_ASOC, SCTP_ASOC(new_asoc));
2038 sctp_add_cmd_sf(commands, SCTP_CMD_DELETE_TCB, SCTP_NULL());
2039
2040 return retval;
2041
2042nomem:
2043 return SCTP_DISPOSITION_NOMEM;
2044}
2045
2046/*
2047 * Process an ABORT. (SHUTDOWN-PENDING state)
2048 *
2049 * See sctp_sf_do_9_1_abort().
2050 */
2051sctp_disposition_t sctp_sf_shutdown_pending_abort(
2052 const struct sctp_endpoint *ep,
2053 const struct sctp_association *asoc,
2054 const sctp_subtype_t type,
2055 void *arg,
2056 sctp_cmd_seq_t *commands)
2057{
2058 struct sctp_chunk *chunk = arg;
2059
2060 if (!sctp_vtag_verify_either(chunk, asoc))
2061 return sctp_sf_pdiscard(ep, asoc, type, arg, commands);
2062
2063 /* Make sure that the ABORT chunk has a valid length.
2064 * Since this is an ABORT chunk, we have to discard it
2065 * because of the following text:
2066 * RFC 2960, Section 3.3.7
2067 * If an endpoint receives an ABORT with a format error or for an
2068 * association that doesn't exist, it MUST silently discard it.
Lucas De Marchi25985ed2011-03-30 22:57:33 -03002069 * Because the length is "invalid", we can't really discard just
Linus Torvalds1da177e2005-04-16 15:20:36 -07002070 * as we do not know its true length. So, to be safe, discard the
2071 * packet.
2072 */
2073 if (!sctp_chunk_length_valid(chunk, sizeof(sctp_abort_chunk_t)))
2074 return sctp_sf_pdiscard(ep, asoc, type, arg, commands);
2075
Vlad Yasevich75205f42007-12-20 14:12:59 -08002076 /* ADD-IP: Special case for ABORT chunks
2077 * F4) One special consideration is that ABORT Chunks arriving
2078 * destined to the IP address being deleted MUST be
2079 * ignored (see Section 5.3.1 for further details).
2080 */
2081 if (SCTP_ADDR_DEL ==
2082 sctp_bind_addr_state(&asoc->base.bind_addr, &chunk->dest))
2083 return sctp_sf_discard_chunk(ep, asoc, type, arg, commands);
2084
Vlad Yasevich75205f42007-12-20 14:12:59 -08002085 return __sctp_sf_do_9_1_abort(ep, asoc, type, arg, commands);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002086}
2087
2088/*
2089 * Process an ABORT. (SHUTDOWN-SENT state)
2090 *
2091 * See sctp_sf_do_9_1_abort().
2092 */
2093sctp_disposition_t sctp_sf_shutdown_sent_abort(const struct sctp_endpoint *ep,
2094 const struct sctp_association *asoc,
2095 const sctp_subtype_t type,
2096 void *arg,
2097 sctp_cmd_seq_t *commands)
2098{
2099 struct sctp_chunk *chunk = arg;
2100
2101 if (!sctp_vtag_verify_either(chunk, asoc))
2102 return sctp_sf_pdiscard(ep, asoc, type, arg, commands);
2103
2104 /* Make sure that the ABORT chunk has a valid length.
2105 * Since this is an ABORT chunk, we have to discard it
2106 * because of the following text:
2107 * RFC 2960, Section 3.3.7
2108 * If an endpoint receives an ABORT with a format error or for an
2109 * association that doesn't exist, it MUST silently discard it.
Lucas De Marchi25985ed2011-03-30 22:57:33 -03002110 * Because the length is "invalid", we can't really discard just
Linus Torvalds1da177e2005-04-16 15:20:36 -07002111 * as we do not know its true length. So, to be safe, discard the
2112 * packet.
2113 */
2114 if (!sctp_chunk_length_valid(chunk, sizeof(sctp_abort_chunk_t)))
2115 return sctp_sf_pdiscard(ep, asoc, type, arg, commands);
2116
Vlad Yasevich75205f42007-12-20 14:12:59 -08002117 /* ADD-IP: Special case for ABORT chunks
2118 * F4) One special consideration is that ABORT Chunks arriving
2119 * destined to the IP address being deleted MUST be
2120 * ignored (see Section 5.3.1 for further details).
2121 */
2122 if (SCTP_ADDR_DEL ==
2123 sctp_bind_addr_state(&asoc->base.bind_addr, &chunk->dest))
2124 return sctp_sf_discard_chunk(ep, asoc, type, arg, commands);
2125
Linus Torvalds1da177e2005-04-16 15:20:36 -07002126 /* Stop the T2-shutdown timer. */
2127 sctp_add_cmd_sf(commands, SCTP_CMD_TIMER_STOP,
2128 SCTP_TO(SCTP_EVENT_TIMEOUT_T2_SHUTDOWN));
2129
2130 /* Stop the T5-shutdown guard timer. */
2131 sctp_add_cmd_sf(commands, SCTP_CMD_TIMER_STOP,
2132 SCTP_TO(SCTP_EVENT_TIMEOUT_T5_SHUTDOWN_GUARD));
2133
Vlad Yasevich75205f42007-12-20 14:12:59 -08002134 return __sctp_sf_do_9_1_abort(ep, asoc, type, arg, commands);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002135}
2136
2137/*
2138 * Process an ABORT. (SHUTDOWN-ACK-SENT state)
2139 *
2140 * See sctp_sf_do_9_1_abort().
2141 */
2142sctp_disposition_t sctp_sf_shutdown_ack_sent_abort(
2143 const struct sctp_endpoint *ep,
2144 const struct sctp_association *asoc,
2145 const sctp_subtype_t type,
2146 void *arg,
2147 sctp_cmd_seq_t *commands)
2148{
2149 /* The same T2 timer, so we should be able to use
2150 * common function with the SHUTDOWN-SENT state.
2151 */
2152 return sctp_sf_shutdown_sent_abort(ep, asoc, type, arg, commands);
2153}
2154
2155/*
2156 * Handle an Error received in COOKIE_ECHOED state.
2157 *
2158 * Only handle the error type of stale COOKIE Error, the other errors will
2159 * be ignored.
2160 *
2161 * Inputs
2162 * (endpoint, asoc, chunk)
2163 *
2164 * Outputs
2165 * (asoc, reply_msg, msg_up, timers, counters)
2166 *
2167 * The return value is the disposition of the chunk.
2168 */
2169sctp_disposition_t sctp_sf_cookie_echoed_err(const struct sctp_endpoint *ep,
2170 const struct sctp_association *asoc,
2171 const sctp_subtype_t type,
2172 void *arg,
2173 sctp_cmd_seq_t *commands)
2174{
2175 struct sctp_chunk *chunk = arg;
2176 sctp_errhdr_t *err;
2177
2178 if (!sctp_vtag_verify(chunk, asoc))
2179 return sctp_sf_pdiscard(ep, asoc, type, arg, commands);
2180
2181 /* Make sure that the ERROR chunk has a valid length.
2182 * The parameter walking depends on this as well.
2183 */
2184 if (!sctp_chunk_length_valid(chunk, sizeof(sctp_operr_chunk_t)))
2185 return sctp_sf_violation_chunklen(ep, asoc, type, arg,
2186 commands);
2187
2188 /* Process the error here */
2189 /* FUTURE FIXME: When PR-SCTP related and other optional
2190 * parms are emitted, this will have to change to handle multiple
2191 * errors.
2192 */
2193 sctp_walk_errors(err, chunk->chunk_hdr) {
2194 if (SCTP_ERROR_STALE_COOKIE == err->cause)
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09002195 return sctp_sf_do_5_2_6_stale(ep, asoc, type,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002196 arg, commands);
2197 }
2198
2199 /* It is possible to have malformed error causes, and that
2200 * will cause us to end the walk early. However, since
2201 * we are discarding the packet, there should be no adverse
2202 * affects.
2203 */
2204 return sctp_sf_pdiscard(ep, asoc, type, arg, commands);
2205}
2206
2207/*
2208 * Handle a Stale COOKIE Error
2209 *
2210 * Section: 5.2.6 Handle Stale COOKIE Error
2211 * If the association is in the COOKIE-ECHOED state, the endpoint may elect
2212 * one of the following three alternatives.
2213 * ...
2214 * 3) Send a new INIT chunk to the endpoint, adding a Cookie
2215 * Preservative parameter requesting an extension to the lifetime of
2216 * the State Cookie. When calculating the time extension, an
2217 * implementation SHOULD use the RTT information measured based on the
2218 * previous COOKIE ECHO / ERROR exchange, and should add no more
2219 * than 1 second beyond the measured RTT, due to long State Cookie
2220 * lifetimes making the endpoint more subject to a replay attack.
2221 *
2222 * Verification Tag: Not explicit, but safe to ignore.
2223 *
2224 * Inputs
2225 * (endpoint, asoc, chunk)
2226 *
2227 * Outputs
2228 * (asoc, reply_msg, msg_up, timers, counters)
2229 *
2230 * The return value is the disposition of the chunk.
2231 */
2232static sctp_disposition_t sctp_sf_do_5_2_6_stale(const struct sctp_endpoint *ep,
2233 const struct sctp_association *asoc,
2234 const sctp_subtype_t type,
2235 void *arg,
2236 sctp_cmd_seq_t *commands)
2237{
2238 struct sctp_chunk *chunk = arg;
2239 time_t stale;
2240 sctp_cookie_preserve_param_t bht;
2241 sctp_errhdr_t *err;
2242 struct sctp_chunk *reply;
2243 struct sctp_bind_addr *bp;
Frank Filz3f7a87d2005-06-20 13:14:57 -07002244 int attempts = asoc->init_err_counter + 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002245
Vlad Yasevich81845c22006-01-30 15:59:54 -08002246 if (attempts > asoc->max_init_attempts) {
Sridhar Samudrala8de8c872006-05-19 10:58:12 -07002247 sctp_add_cmd_sf(commands, SCTP_CMD_SET_SK_ERR,
2248 SCTP_ERROR(ETIMEDOUT));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002249 sctp_add_cmd_sf(commands, SCTP_CMD_INIT_FAILED,
Al Virodc251b22006-11-20 17:00:44 -08002250 SCTP_PERR(SCTP_ERROR_STALE_COOKIE));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002251 return SCTP_DISPOSITION_DELETE_TCB;
2252 }
2253
2254 err = (sctp_errhdr_t *)(chunk->skb->data);
2255
2256 /* When calculating the time extension, an implementation
2257 * SHOULD use the RTT information measured based on the
2258 * previous COOKIE ECHO / ERROR exchange, and should add no
2259 * more than 1 second beyond the measured RTT, due to long
2260 * State Cookie lifetimes making the endpoint more subject to
2261 * a replay attack.
2262 * Measure of Staleness's unit is usec. (1/1000000 sec)
2263 * Suggested Cookie Life-span Increment's unit is msec.
2264 * (1/1000 sec)
2265 * In general, if you use the suggested cookie life, the value
2266 * found in the field of measure of staleness should be doubled
2267 * to give ample time to retransmit the new cookie and thus
2268 * yield a higher probability of success on the reattempt.
2269 */
Al Viro34bcca22006-11-20 17:27:15 -08002270 stale = ntohl(*(__be32 *)((u8 *)err + sizeof(sctp_errhdr_t)));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002271 stale = (stale * 2) / 1000;
2272
2273 bht.param_hdr.type = SCTP_PARAM_COOKIE_PRESERVATIVE;
2274 bht.param_hdr.length = htons(sizeof(bht));
2275 bht.lifespan_increment = htonl(stale);
2276
2277 /* Build that new INIT chunk. */
2278 bp = (struct sctp_bind_addr *) &asoc->base.bind_addr;
2279 reply = sctp_make_init(asoc, bp, GFP_ATOMIC, sizeof(bht));
2280 if (!reply)
2281 goto nomem;
2282
2283 sctp_addto_chunk(reply, sizeof(bht), &bht);
2284
2285 /* Clear peer's init_tag cached in assoc as we are sending a new INIT */
2286 sctp_add_cmd_sf(commands, SCTP_CMD_CLEAR_INIT_TAG, SCTP_NULL());
2287
2288 /* Stop pending T3-rtx and heartbeat timers */
2289 sctp_add_cmd_sf(commands, SCTP_CMD_T3_RTX_TIMERS_STOP, SCTP_NULL());
2290 sctp_add_cmd_sf(commands, SCTP_CMD_HB_TIMERS_STOP, SCTP_NULL());
2291
2292 /* Delete non-primary peer ip addresses since we are transitioning
2293 * back to the COOKIE-WAIT state
2294 */
2295 sctp_add_cmd_sf(commands, SCTP_CMD_DEL_NON_PRIMARY, SCTP_NULL());
2296
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09002297 /* If we've sent any data bundled with COOKIE-ECHO we will need to
2298 * resend
Linus Torvalds1da177e2005-04-16 15:20:36 -07002299 */
Vlad Yasevichb6157d82007-10-24 15:59:16 -04002300 sctp_add_cmd_sf(commands, SCTP_CMD_T1_RETRAN,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002301 SCTP_TRANSPORT(asoc->peer.primary_path));
2302
2303 /* Cast away the const modifier, as we want to just
2304 * rerun it through as a sideffect.
2305 */
Frank Filz3f7a87d2005-06-20 13:14:57 -07002306 sctp_add_cmd_sf(commands, SCTP_CMD_INIT_COUNTER_INC, SCTP_NULL());
Linus Torvalds1da177e2005-04-16 15:20:36 -07002307
2308 sctp_add_cmd_sf(commands, SCTP_CMD_TIMER_STOP,
2309 SCTP_TO(SCTP_EVENT_TIMEOUT_T1_COOKIE));
2310 sctp_add_cmd_sf(commands, SCTP_CMD_NEW_STATE,
2311 SCTP_STATE(SCTP_STATE_COOKIE_WAIT));
2312 sctp_add_cmd_sf(commands, SCTP_CMD_TIMER_START,
2313 SCTP_TO(SCTP_EVENT_TIMEOUT_T1_INIT));
2314
2315 sctp_add_cmd_sf(commands, SCTP_CMD_REPLY, SCTP_CHUNK(reply));
2316
2317 return SCTP_DISPOSITION_CONSUME;
2318
2319nomem:
2320 return SCTP_DISPOSITION_NOMEM;
2321}
2322
2323/*
2324 * Process an ABORT.
2325 *
2326 * Section: 9.1
2327 * After checking the Verification Tag, the receiving endpoint shall
2328 * remove the association from its record, and shall report the
2329 * termination to its upper layer.
2330 *
2331 * Verification Tag: 8.5.1 Exceptions in Verification Tag Rules
2332 * B) Rules for packet carrying ABORT:
2333 *
2334 * - The endpoint shall always fill in the Verification Tag field of the
2335 * outbound packet with the destination endpoint's tag value if it
2336 * is known.
2337 *
2338 * - If the ABORT is sent in response to an OOTB packet, the endpoint
2339 * MUST follow the procedure described in Section 8.4.
2340 *
2341 * - The receiver MUST accept the packet if the Verification Tag
2342 * matches either its own tag, OR the tag of its peer. Otherwise, the
2343 * receiver MUST silently discard the packet and take no further
2344 * action.
2345 *
2346 * Inputs
2347 * (endpoint, asoc, chunk)
2348 *
2349 * Outputs
2350 * (asoc, reply_msg, msg_up, timers, counters)
2351 *
2352 * The return value is the disposition of the chunk.
2353 */
2354sctp_disposition_t sctp_sf_do_9_1_abort(const struct sctp_endpoint *ep,
2355 const struct sctp_association *asoc,
2356 const sctp_subtype_t type,
2357 void *arg,
2358 sctp_cmd_seq_t *commands)
2359{
2360 struct sctp_chunk *chunk = arg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002361
2362 if (!sctp_vtag_verify_either(chunk, asoc))
2363 return sctp_sf_pdiscard(ep, asoc, type, arg, commands);
2364
2365 /* Make sure that the ABORT chunk has a valid length.
2366 * Since this is an ABORT chunk, we have to discard it
2367 * because of the following text:
2368 * RFC 2960, Section 3.3.7
2369 * If an endpoint receives an ABORT with a format error or for an
2370 * association that doesn't exist, it MUST silently discard it.
Lucas De Marchi25985ed2011-03-30 22:57:33 -03002371 * Because the length is "invalid", we can't really discard just
Linus Torvalds1da177e2005-04-16 15:20:36 -07002372 * as we do not know its true length. So, to be safe, discard the
2373 * packet.
2374 */
2375 if (!sctp_chunk_length_valid(chunk, sizeof(sctp_abort_chunk_t)))
2376 return sctp_sf_pdiscard(ep, asoc, type, arg, commands);
2377
Vlad Yasevich75205f42007-12-20 14:12:59 -08002378 /* ADD-IP: Special case for ABORT chunks
2379 * F4) One special consideration is that ABORT Chunks arriving
2380 * destined to the IP address being deleted MUST be
2381 * ignored (see Section 5.3.1 for further details).
2382 */
2383 if (SCTP_ADDR_DEL ==
2384 sctp_bind_addr_state(&asoc->base.bind_addr, &chunk->dest))
2385 return sctp_sf_discard_chunk(ep, asoc, type, arg, commands);
2386
2387 return __sctp_sf_do_9_1_abort(ep, asoc, type, arg, commands);
2388}
2389
2390static sctp_disposition_t __sctp_sf_do_9_1_abort(const struct sctp_endpoint *ep,
2391 const struct sctp_association *asoc,
2392 const sctp_subtype_t type,
2393 void *arg,
2394 sctp_cmd_seq_t *commands)
2395{
2396 struct sctp_chunk *chunk = arg;
2397 unsigned len;
2398 __be16 error = SCTP_ERROR_NO_ERROR;
2399
Linus Torvalds1da177e2005-04-16 15:20:36 -07002400 /* See if we have an error cause code in the chunk. */
2401 len = ntohs(chunk->chunk_hdr->length);
Shan Wei96ca4682011-04-19 21:26:26 +00002402 if (len >= sizeof(struct sctp_chunkhdr) + sizeof(struct sctp_errhdr)) {
2403
2404 sctp_errhdr_t *err;
2405 sctp_walk_errors(err, chunk->chunk_hdr);
2406 if ((void *)err != (void *)chunk->chunk_end)
2407 return sctp_sf_pdiscard(ep, asoc, type, arg, commands);
2408
Linus Torvalds1da177e2005-04-16 15:20:36 -07002409 error = ((sctp_errhdr_t *)chunk->skb->data)->cause;
Shan Wei96ca4682011-04-19 21:26:26 +00002410 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002411
Sridhar Samudrala8de8c872006-05-19 10:58:12 -07002412 sctp_add_cmd_sf(commands, SCTP_CMD_SET_SK_ERR, SCTP_ERROR(ECONNRESET));
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09002413 /* ASSOC_FAILED will DELETE_TCB. */
Al Viro5be291f2006-11-20 17:01:06 -08002414 sctp_add_cmd_sf(commands, SCTP_CMD_ASSOC_FAILED, SCTP_PERR(error));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002415 SCTP_INC_STATS(SCTP_MIB_ABORTEDS);
2416 SCTP_DEC_STATS(SCTP_MIB_CURRESTAB);
2417
2418 return SCTP_DISPOSITION_ABORT;
2419}
2420
2421/*
2422 * Process an ABORT. (COOKIE-WAIT state)
2423 *
2424 * See sctp_sf_do_9_1_abort() above.
2425 */
2426sctp_disposition_t sctp_sf_cookie_wait_abort(const struct sctp_endpoint *ep,
2427 const struct sctp_association *asoc,
2428 const sctp_subtype_t type,
2429 void *arg,
2430 sctp_cmd_seq_t *commands)
2431{
2432 struct sctp_chunk *chunk = arg;
2433 unsigned len;
Al Virof94c0192006-11-20 17:00:25 -08002434 __be16 error = SCTP_ERROR_NO_ERROR;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002435
2436 if (!sctp_vtag_verify_either(chunk, asoc))
2437 return sctp_sf_pdiscard(ep, asoc, type, arg, commands);
2438
2439 /* Make sure that the ABORT chunk has a valid length.
2440 * Since this is an ABORT chunk, we have to discard it
2441 * because of the following text:
2442 * RFC 2960, Section 3.3.7
2443 * If an endpoint receives an ABORT with a format error or for an
2444 * association that doesn't exist, it MUST silently discard it.
Lucas De Marchi25985ed2011-03-30 22:57:33 -03002445 * Because the length is "invalid", we can't really discard just
Linus Torvalds1da177e2005-04-16 15:20:36 -07002446 * as we do not know its true length. So, to be safe, discard the
2447 * packet.
2448 */
2449 if (!sctp_chunk_length_valid(chunk, sizeof(sctp_abort_chunk_t)))
2450 return sctp_sf_pdiscard(ep, asoc, type, arg, commands);
2451
2452 /* See if we have an error cause code in the chunk. */
2453 len = ntohs(chunk->chunk_hdr->length);
2454 if (len >= sizeof(struct sctp_chunkhdr) + sizeof(struct sctp_errhdr))
2455 error = ((sctp_errhdr_t *)chunk->skb->data)->cause;
2456
Sridhar Samudrala8de8c872006-05-19 10:58:12 -07002457 return sctp_stop_t1_and_abort(commands, error, ECONNREFUSED, asoc,
2458 chunk->transport);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002459}
2460
2461/*
2462 * Process an incoming ICMP as an ABORT. (COOKIE-WAIT state)
2463 */
2464sctp_disposition_t sctp_sf_cookie_wait_icmp_abort(const struct sctp_endpoint *ep,
2465 const struct sctp_association *asoc,
2466 const sctp_subtype_t type,
2467 void *arg,
2468 sctp_cmd_seq_t *commands)
2469{
Sridhar Samudrala8de8c872006-05-19 10:58:12 -07002470 return sctp_stop_t1_and_abort(commands, SCTP_ERROR_NO_ERROR,
2471 ENOPROTOOPT, asoc,
Frank Filz3f7a87d2005-06-20 13:14:57 -07002472 (struct sctp_transport *)arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002473}
2474
2475/*
2476 * Process an ABORT. (COOKIE-ECHOED state)
2477 */
2478sctp_disposition_t sctp_sf_cookie_echoed_abort(const struct sctp_endpoint *ep,
2479 const struct sctp_association *asoc,
2480 const sctp_subtype_t type,
2481 void *arg,
2482 sctp_cmd_seq_t *commands)
2483{
2484 /* There is a single T1 timer, so we should be able to use
2485 * common function with the COOKIE-WAIT state.
2486 */
2487 return sctp_sf_cookie_wait_abort(ep, asoc, type, arg, commands);
2488}
2489
2490/*
2491 * Stop T1 timer and abort association with "INIT failed".
2492 *
2493 * This is common code called by several sctp_sf_*_abort() functions above.
2494 */
Adrian Bunk52c1da32005-06-23 22:05:33 -07002495static sctp_disposition_t sctp_stop_t1_and_abort(sctp_cmd_seq_t *commands,
Al Virof94c0192006-11-20 17:00:25 -08002496 __be16 error, int sk_err,
Frank Filz3f7a87d2005-06-20 13:14:57 -07002497 const struct sctp_association *asoc,
2498 struct sctp_transport *transport)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002499{
Frank Filz3f7a87d2005-06-20 13:14:57 -07002500 SCTP_DEBUG_PRINTK("ABORT received (INIT).\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002501 sctp_add_cmd_sf(commands, SCTP_CMD_NEW_STATE,
2502 SCTP_STATE(SCTP_STATE_CLOSED));
2503 SCTP_INC_STATS(SCTP_MIB_ABORTEDS);
2504 sctp_add_cmd_sf(commands, SCTP_CMD_TIMER_STOP,
2505 SCTP_TO(SCTP_EVENT_TIMEOUT_T1_INIT));
Sridhar Samudrala8de8c872006-05-19 10:58:12 -07002506 sctp_add_cmd_sf(commands, SCTP_CMD_SET_SK_ERR, SCTP_ERROR(sk_err));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002507 /* CMD_INIT_FAILED will DELETE_TCB. */
2508 sctp_add_cmd_sf(commands, SCTP_CMD_INIT_FAILED,
Al Virodc251b22006-11-20 17:00:44 -08002509 SCTP_PERR(error));
Frank Filz3f7a87d2005-06-20 13:14:57 -07002510 return SCTP_DISPOSITION_ABORT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002511}
2512
2513/*
2514 * sctp_sf_do_9_2_shut
2515 *
2516 * Section: 9.2
2517 * Upon the reception of the SHUTDOWN, the peer endpoint shall
2518 * - enter the SHUTDOWN-RECEIVED state,
2519 *
2520 * - stop accepting new data from its SCTP user
2521 *
2522 * - verify, by checking the Cumulative TSN Ack field of the chunk,
2523 * that all its outstanding DATA chunks have been received by the
2524 * SHUTDOWN sender.
2525 *
2526 * Once an endpoint as reached the SHUTDOWN-RECEIVED state it MUST NOT
2527 * send a SHUTDOWN in response to a ULP request. And should discard
2528 * subsequent SHUTDOWN chunks.
2529 *
2530 * If there are still outstanding DATA chunks left, the SHUTDOWN
2531 * receiver shall continue to follow normal data transmission
2532 * procedures defined in Section 6 until all outstanding DATA chunks
2533 * are acknowledged; however, the SHUTDOWN receiver MUST NOT accept
2534 * new data from its SCTP user.
2535 *
2536 * Verification Tag: 8.5 Verification Tag [Normal verification]
2537 *
2538 * Inputs
2539 * (endpoint, asoc, chunk)
2540 *
2541 * Outputs
2542 * (asoc, reply_msg, msg_up, timers, counters)
2543 *
2544 * The return value is the disposition of the chunk.
2545 */
2546sctp_disposition_t sctp_sf_do_9_2_shutdown(const struct sctp_endpoint *ep,
2547 const struct sctp_association *asoc,
2548 const sctp_subtype_t type,
2549 void *arg,
2550 sctp_cmd_seq_t *commands)
2551{
2552 struct sctp_chunk *chunk = arg;
2553 sctp_shutdownhdr_t *sdh;
2554 sctp_disposition_t disposition;
2555 struct sctp_ulpevent *ev;
Wei Yongjundf10eec2008-10-23 01:00:21 -07002556 __u32 ctsn;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002557
2558 if (!sctp_vtag_verify(chunk, asoc))
2559 return sctp_sf_pdiscard(ep, asoc, type, arg, commands);
2560
2561 /* Make sure that the SHUTDOWN chunk has a valid length. */
2562 if (!sctp_chunk_length_valid(chunk,
2563 sizeof(struct sctp_shutdown_chunk_t)))
2564 return sctp_sf_violation_chunklen(ep, asoc, type, arg,
2565 commands);
2566
2567 /* Convert the elaborate header. */
2568 sdh = (sctp_shutdownhdr_t *)chunk->skb->data;
2569 skb_pull(chunk->skb, sizeof(sctp_shutdownhdr_t));
2570 chunk->subh.shutdown_hdr = sdh;
Wei Yongjundf10eec2008-10-23 01:00:21 -07002571 ctsn = ntohl(sdh->cum_tsn_ack);
2572
Wei Yongjuna2f36ee2009-08-22 11:24:00 +08002573 if (TSN_lt(ctsn, asoc->ctsn_ack_point)) {
2574 SCTP_DEBUG_PRINTK("ctsn %x\n", ctsn);
2575 SCTP_DEBUG_PRINTK("ctsn_ack_point %x\n", asoc->ctsn_ack_point);
2576 return SCTP_DISPOSITION_DISCARD;
2577 }
2578
Wei Yongjundf10eec2008-10-23 01:00:21 -07002579 /* If Cumulative TSN Ack beyond the max tsn currently
2580 * send, terminating the association and respond to the
2581 * sender with an ABORT.
2582 */
2583 if (!TSN_lt(ctsn, asoc->next_tsn))
2584 return sctp_sf_violation_ctsn(ep, asoc, type, arg, commands);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002585
Sridhar Samudralaeb0e0072005-09-22 23:48:38 -07002586 /* API 5.3.1.5 SCTP_SHUTDOWN_EVENT
2587 * When a peer sends a SHUTDOWN, SCTP delivers this notification to
2588 * inform the application that it should cease sending data.
2589 */
2590 ev = sctp_ulpevent_make_shutdown_event(asoc, 0, GFP_ATOMIC);
2591 if (!ev) {
2592 disposition = SCTP_DISPOSITION_NOMEM;
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09002593 goto out;
Sridhar Samudralaeb0e0072005-09-22 23:48:38 -07002594 }
2595 sctp_add_cmd_sf(commands, SCTP_CMD_EVENT_ULP, SCTP_ULPEVENT(ev));
2596
Linus Torvalds1da177e2005-04-16 15:20:36 -07002597 /* Upon the reception of the SHUTDOWN, the peer endpoint shall
2598 * - enter the SHUTDOWN-RECEIVED state,
2599 * - stop accepting new data from its SCTP user
2600 *
2601 * [This is implicit in the new state.]
2602 */
2603 sctp_add_cmd_sf(commands, SCTP_CMD_NEW_STATE,
2604 SCTP_STATE(SCTP_STATE_SHUTDOWN_RECEIVED));
2605 disposition = SCTP_DISPOSITION_CONSUME;
2606
2607 if (sctp_outq_is_empty(&asoc->outqueue)) {
2608 disposition = sctp_sf_do_9_2_shutdown_ack(ep, asoc, type,
2609 arg, commands);
2610 }
2611
2612 if (SCTP_DISPOSITION_NOMEM == disposition)
2613 goto out;
2614
2615 /* - verify, by checking the Cumulative TSN Ack field of the
2616 * chunk, that all its outstanding DATA chunks have been
2617 * received by the SHUTDOWN sender.
2618 */
2619 sctp_add_cmd_sf(commands, SCTP_CMD_PROCESS_CTSN,
Al Viro2178eda2006-11-20 17:26:53 -08002620 SCTP_BE32(chunk->subh.shutdown_hdr->cum_tsn_ack));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002621
Linus Torvalds1da177e2005-04-16 15:20:36 -07002622out:
2623 return disposition;
2624}
2625
Wei Yongjun2e3f92d2008-10-23 01:01:18 -07002626/*
2627 * sctp_sf_do_9_2_shut_ctsn
2628 *
2629 * Once an endpoint has reached the SHUTDOWN-RECEIVED state,
2630 * it MUST NOT send a SHUTDOWN in response to a ULP request.
2631 * The Cumulative TSN Ack of the received SHUTDOWN chunk
2632 * MUST be processed.
2633 */
2634sctp_disposition_t sctp_sf_do_9_2_shut_ctsn(const struct sctp_endpoint *ep,
2635 const struct sctp_association *asoc,
2636 const sctp_subtype_t type,
2637 void *arg,
2638 sctp_cmd_seq_t *commands)
2639{
2640 struct sctp_chunk *chunk = arg;
2641 sctp_shutdownhdr_t *sdh;
Wei Yongjuna2f36ee2009-08-22 11:24:00 +08002642 __u32 ctsn;
Wei Yongjun2e3f92d2008-10-23 01:01:18 -07002643
2644 if (!sctp_vtag_verify(chunk, asoc))
2645 return sctp_sf_pdiscard(ep, asoc, type, arg, commands);
2646
2647 /* Make sure that the SHUTDOWN chunk has a valid length. */
2648 if (!sctp_chunk_length_valid(chunk,
2649 sizeof(struct sctp_shutdown_chunk_t)))
2650 return sctp_sf_violation_chunklen(ep, asoc, type, arg,
2651 commands);
2652
2653 sdh = (sctp_shutdownhdr_t *)chunk->skb->data;
Wei Yongjuna2f36ee2009-08-22 11:24:00 +08002654 ctsn = ntohl(sdh->cum_tsn_ack);
2655
2656 if (TSN_lt(ctsn, asoc->ctsn_ack_point)) {
2657 SCTP_DEBUG_PRINTK("ctsn %x\n", ctsn);
2658 SCTP_DEBUG_PRINTK("ctsn_ack_point %x\n", asoc->ctsn_ack_point);
2659 return SCTP_DISPOSITION_DISCARD;
2660 }
Wei Yongjun2e3f92d2008-10-23 01:01:18 -07002661
2662 /* If Cumulative TSN Ack beyond the max tsn currently
2663 * send, terminating the association and respond to the
2664 * sender with an ABORT.
2665 */
Wei Yongjuna2f36ee2009-08-22 11:24:00 +08002666 if (!TSN_lt(ctsn, asoc->next_tsn))
Wei Yongjun2e3f92d2008-10-23 01:01:18 -07002667 return sctp_sf_violation_ctsn(ep, asoc, type, arg, commands);
2668
2669 /* verify, by checking the Cumulative TSN Ack field of the
2670 * chunk, that all its outstanding DATA chunks have been
2671 * received by the SHUTDOWN sender.
2672 */
2673 sctp_add_cmd_sf(commands, SCTP_CMD_PROCESS_CTSN,
2674 SCTP_BE32(sdh->cum_tsn_ack));
2675
2676 return SCTP_DISPOSITION_CONSUME;
2677}
2678
Linus Torvalds1da177e2005-04-16 15:20:36 -07002679/* RFC 2960 9.2
2680 * If an endpoint is in SHUTDOWN-ACK-SENT state and receives an INIT chunk
2681 * (e.g., if the SHUTDOWN COMPLETE was lost) with source and destination
2682 * transport addresses (either in the IP addresses or in the INIT chunk)
2683 * that belong to this association, it should discard the INIT chunk and
2684 * retransmit the SHUTDOWN ACK chunk.
2685 */
2686sctp_disposition_t sctp_sf_do_9_2_reshutack(const struct sctp_endpoint *ep,
2687 const struct sctp_association *asoc,
2688 const sctp_subtype_t type,
2689 void *arg,
2690 sctp_cmd_seq_t *commands)
2691{
2692 struct sctp_chunk *chunk = (struct sctp_chunk *) arg;
2693 struct sctp_chunk *reply;
2694
Vlad Yasevichece25df2007-09-07 16:30:54 -04002695 /* Make sure that the chunk has a valid length */
2696 if (!sctp_chunk_length_valid(chunk, sizeof(sctp_chunkhdr_t)))
2697 return sctp_sf_violation_chunklen(ep, asoc, type, arg,
2698 commands);
2699
Linus Torvalds1da177e2005-04-16 15:20:36 -07002700 /* Since we are not going to really process this INIT, there
2701 * is no point in verifying chunk boundries. Just generate
2702 * the SHUTDOWN ACK.
2703 */
2704 reply = sctp_make_shutdown_ack(asoc, chunk);
2705 if (NULL == reply)
2706 goto nomem;
2707
2708 /* Set the transport for the SHUTDOWN ACK chunk and the timeout for
2709 * the T2-SHUTDOWN timer.
2710 */
2711 sctp_add_cmd_sf(commands, SCTP_CMD_SETUP_T2, SCTP_CHUNK(reply));
2712
2713 /* and restart the T2-shutdown timer. */
2714 sctp_add_cmd_sf(commands, SCTP_CMD_TIMER_RESTART,
2715 SCTP_TO(SCTP_EVENT_TIMEOUT_T2_SHUTDOWN));
2716
2717 sctp_add_cmd_sf(commands, SCTP_CMD_REPLY, SCTP_CHUNK(reply));
2718
2719 return SCTP_DISPOSITION_CONSUME;
2720nomem:
2721 return SCTP_DISPOSITION_NOMEM;
2722}
2723
2724/*
2725 * sctp_sf_do_ecn_cwr
2726 *
2727 * Section: Appendix A: Explicit Congestion Notification
2728 *
2729 * CWR:
2730 *
2731 * RFC 2481 details a specific bit for a sender to send in the header of
2732 * its next outbound TCP segment to indicate to its peer that it has
2733 * reduced its congestion window. This is termed the CWR bit. For
2734 * SCTP the same indication is made by including the CWR chunk.
2735 * This chunk contains one data element, i.e. the TSN number that
2736 * was sent in the ECNE chunk. This element represents the lowest
2737 * TSN number in the datagram that was originally marked with the
2738 * CE bit.
2739 *
2740 * Verification Tag: 8.5 Verification Tag [Normal verification]
2741 * Inputs
2742 * (endpoint, asoc, chunk)
2743 *
2744 * Outputs
2745 * (asoc, reply_msg, msg_up, timers, counters)
2746 *
2747 * The return value is the disposition of the chunk.
2748 */
2749sctp_disposition_t sctp_sf_do_ecn_cwr(const struct sctp_endpoint *ep,
2750 const struct sctp_association *asoc,
2751 const sctp_subtype_t type,
2752 void *arg,
2753 sctp_cmd_seq_t *commands)
2754{
2755 sctp_cwrhdr_t *cwr;
2756 struct sctp_chunk *chunk = arg;
Al Viro34bcca22006-11-20 17:27:15 -08002757 u32 lowest_tsn;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002758
2759 if (!sctp_vtag_verify(chunk, asoc))
2760 return sctp_sf_pdiscard(ep, asoc, type, arg, commands);
2761
2762 if (!sctp_chunk_length_valid(chunk, sizeof(sctp_ecne_chunk_t)))
2763 return sctp_sf_violation_chunklen(ep, asoc, type, arg,
2764 commands);
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09002765
Linus Torvalds1da177e2005-04-16 15:20:36 -07002766 cwr = (sctp_cwrhdr_t *) chunk->skb->data;
2767 skb_pull(chunk->skb, sizeof(sctp_cwrhdr_t));
2768
Al Viro34bcca22006-11-20 17:27:15 -08002769 lowest_tsn = ntohl(cwr->lowest_tsn);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002770
2771 /* Does this CWR ack the last sent congestion notification? */
Al Viro34bcca22006-11-20 17:27:15 -08002772 if (TSN_lte(asoc->last_ecne_tsn, lowest_tsn)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002773 /* Stop sending ECNE. */
2774 sctp_add_cmd_sf(commands,
2775 SCTP_CMD_ECN_CWR,
Al Viro34bcca22006-11-20 17:27:15 -08002776 SCTP_U32(lowest_tsn));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002777 }
2778 return SCTP_DISPOSITION_CONSUME;
2779}
2780
2781/*
2782 * sctp_sf_do_ecne
2783 *
2784 * Section: Appendix A: Explicit Congestion Notification
2785 *
2786 * ECN-Echo
2787 *
2788 * RFC 2481 details a specific bit for a receiver to send back in its
2789 * TCP acknowledgements to notify the sender of the Congestion
2790 * Experienced (CE) bit having arrived from the network. For SCTP this
2791 * same indication is made by including the ECNE chunk. This chunk
2792 * contains one data element, i.e. the lowest TSN associated with the IP
2793 * datagram marked with the CE bit.....
2794 *
2795 * Verification Tag: 8.5 Verification Tag [Normal verification]
2796 * Inputs
2797 * (endpoint, asoc, chunk)
2798 *
2799 * Outputs
2800 * (asoc, reply_msg, msg_up, timers, counters)
2801 *
2802 * The return value is the disposition of the chunk.
2803 */
2804sctp_disposition_t sctp_sf_do_ecne(const struct sctp_endpoint *ep,
2805 const struct sctp_association *asoc,
2806 const sctp_subtype_t type,
2807 void *arg,
2808 sctp_cmd_seq_t *commands)
2809{
2810 sctp_ecnehdr_t *ecne;
2811 struct sctp_chunk *chunk = arg;
2812
2813 if (!sctp_vtag_verify(chunk, asoc))
2814 return sctp_sf_pdiscard(ep, asoc, type, arg, commands);
2815
2816 if (!sctp_chunk_length_valid(chunk, sizeof(sctp_ecne_chunk_t)))
2817 return sctp_sf_violation_chunklen(ep, asoc, type, arg,
2818 commands);
2819
2820 ecne = (sctp_ecnehdr_t *) chunk->skb->data;
2821 skb_pull(chunk->skb, sizeof(sctp_ecnehdr_t));
2822
2823 /* If this is a newer ECNE than the last CWR packet we sent out */
2824 sctp_add_cmd_sf(commands, SCTP_CMD_ECN_ECNE,
2825 SCTP_U32(ntohl(ecne->lowest_tsn)));
2826
2827 return SCTP_DISPOSITION_CONSUME;
2828}
2829
2830/*
2831 * Section: 6.2 Acknowledgement on Reception of DATA Chunks
2832 *
2833 * The SCTP endpoint MUST always acknowledge the reception of each valid
2834 * DATA chunk.
2835 *
2836 * The guidelines on delayed acknowledgement algorithm specified in
2837 * Section 4.2 of [RFC2581] SHOULD be followed. Specifically, an
2838 * acknowledgement SHOULD be generated for at least every second packet
2839 * (not every second DATA chunk) received, and SHOULD be generated within
2840 * 200 ms of the arrival of any unacknowledged DATA chunk. In some
2841 * situations it may be beneficial for an SCTP transmitter to be more
2842 * conservative than the algorithms detailed in this document allow.
2843 * However, an SCTP transmitter MUST NOT be more aggressive than the
2844 * following algorithms allow.
2845 *
2846 * A SCTP receiver MUST NOT generate more than one SACK for every
2847 * incoming packet, other than to update the offered window as the
2848 * receiving application consumes new data.
2849 *
2850 * Verification Tag: 8.5 Verification Tag [Normal verification]
2851 *
2852 * Inputs
2853 * (endpoint, asoc, chunk)
2854 *
2855 * Outputs
2856 * (asoc, reply_msg, msg_up, timers, counters)
2857 *
2858 * The return value is the disposition of the chunk.
2859 */
2860sctp_disposition_t sctp_sf_eat_data_6_2(const struct sctp_endpoint *ep,
2861 const struct sctp_association *asoc,
2862 const sctp_subtype_t type,
2863 void *arg,
2864 sctp_cmd_seq_t *commands)
2865{
2866 struct sctp_chunk *chunk = arg;
Wei Yongjun6dc76942009-11-23 15:53:53 -05002867 sctp_arg_t force = SCTP_NOFORCE();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002868 int error;
2869
2870 if (!sctp_vtag_verify(chunk, asoc)) {
2871 sctp_add_cmd_sf(commands, SCTP_CMD_REPORT_BAD_TAG,
2872 SCTP_NULL());
2873 return sctp_sf_pdiscard(ep, asoc, type, arg, commands);
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09002874 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002875
2876 if (!sctp_chunk_length_valid(chunk, sizeof(sctp_data_chunk_t)))
2877 return sctp_sf_violation_chunklen(ep, asoc, type, arg,
2878 commands);
2879
2880 error = sctp_eat_data(asoc, chunk, commands );
2881 switch (error) {
2882 case SCTP_IERROR_NO_ERROR:
2883 break;
2884 case SCTP_IERROR_HIGH_TSN:
2885 case SCTP_IERROR_BAD_STREAM:
Sridhar Samudralaac0b0462006-08-22 00:15:33 -07002886 SCTP_INC_STATS(SCTP_MIB_IN_DATA_CHUNK_DISCARDS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002887 goto discard_noforce;
2888 case SCTP_IERROR_DUP_TSN:
2889 case SCTP_IERROR_IGNORE_TSN:
Sridhar Samudralaac0b0462006-08-22 00:15:33 -07002890 SCTP_INC_STATS(SCTP_MIB_IN_DATA_CHUNK_DISCARDS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002891 goto discard_force;
2892 case SCTP_IERROR_NO_DATA:
2893 goto consume;
Vlad Yasevichf1751c52009-09-04 18:21:03 -04002894 case SCTP_IERROR_PROTO_VIOLATION:
2895 return sctp_sf_abort_violation(ep, asoc, chunk, commands,
2896 (u8 *)chunk->subh.data_hdr, sizeof(sctp_datahdr_t));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002897 default:
2898 BUG();
2899 }
2900
Wei Yongjun6dc76942009-11-23 15:53:53 -05002901 if (chunk->chunk_hdr->flags & SCTP_DATA_SACK_IMM)
2902 force = SCTP_FORCE();
2903
Linus Torvalds1da177e2005-04-16 15:20:36 -07002904 if (asoc->autoclose) {
2905 sctp_add_cmd_sf(commands, SCTP_CMD_TIMER_RESTART,
2906 SCTP_TO(SCTP_EVENT_TIMEOUT_AUTOCLOSE));
2907 }
2908
2909 /* If this is the last chunk in a packet, we need to count it
2910 * toward sack generation. Note that we need to SACK every
2911 * OTHER packet containing data chunks, EVEN IF WE DISCARD
2912 * THEM. We elect to NOT generate SACK's if the chunk fails
2913 * the verification tag test.
2914 *
2915 * RFC 2960 6.2 Acknowledgement on Reception of DATA Chunks
2916 *
2917 * The SCTP endpoint MUST always acknowledge the reception of
2918 * each valid DATA chunk.
2919 *
2920 * The guidelines on delayed acknowledgement algorithm
2921 * specified in Section 4.2 of [RFC2581] SHOULD be followed.
2922 * Specifically, an acknowledgement SHOULD be generated for at
2923 * least every second packet (not every second DATA chunk)
2924 * received, and SHOULD be generated within 200 ms of the
2925 * arrival of any unacknowledged DATA chunk. In some
2926 * situations it may be beneficial for an SCTP transmitter to
2927 * be more conservative than the algorithms detailed in this
2928 * document allow. However, an SCTP transmitter MUST NOT be
2929 * more aggressive than the following algorithms allow.
2930 */
Frank Filz52ccb8e2005-12-22 11:36:46 -08002931 if (chunk->end_of_packet)
Wei Yongjun6dc76942009-11-23 15:53:53 -05002932 sctp_add_cmd_sf(commands, SCTP_CMD_GEN_SACK, force);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002933
Linus Torvalds1da177e2005-04-16 15:20:36 -07002934 return SCTP_DISPOSITION_CONSUME;
2935
2936discard_force:
2937 /* RFC 2960 6.2 Acknowledgement on Reception of DATA Chunks
2938 *
2939 * When a packet arrives with duplicate DATA chunk(s) and with
2940 * no new DATA chunk(s), the endpoint MUST immediately send a
2941 * SACK with no delay. If a packet arrives with duplicate
2942 * DATA chunk(s) bundled with new DATA chunks, the endpoint
2943 * MAY immediately send a SACK. Normally receipt of duplicate
2944 * DATA chunks will occur when the original SACK chunk was lost
2945 * and the peer's RTO has expired. The duplicate TSN number(s)
2946 * SHOULD be reported in the SACK as duplicate.
2947 */
2948 /* In our case, we split the MAY SACK advice up whether or not
2949 * the last chunk is a duplicate.'
2950 */
2951 if (chunk->end_of_packet)
2952 sctp_add_cmd_sf(commands, SCTP_CMD_GEN_SACK, SCTP_FORCE());
2953 return SCTP_DISPOSITION_DISCARD;
2954
2955discard_noforce:
Frank Filz52ccb8e2005-12-22 11:36:46 -08002956 if (chunk->end_of_packet)
Wei Yongjun6dc76942009-11-23 15:53:53 -05002957 sctp_add_cmd_sf(commands, SCTP_CMD_GEN_SACK, force);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002958
Linus Torvalds1da177e2005-04-16 15:20:36 -07002959 return SCTP_DISPOSITION_DISCARD;
2960consume:
2961 return SCTP_DISPOSITION_CONSUME;
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09002962
Linus Torvalds1da177e2005-04-16 15:20:36 -07002963}
2964
2965/*
2966 * sctp_sf_eat_data_fast_4_4
2967 *
2968 * Section: 4 (4)
2969 * (4) In SHUTDOWN-SENT state the endpoint MUST acknowledge any received
2970 * DATA chunks without delay.
2971 *
2972 * Verification Tag: 8.5 Verification Tag [Normal verification]
2973 * Inputs
2974 * (endpoint, asoc, chunk)
2975 *
2976 * Outputs
2977 * (asoc, reply_msg, msg_up, timers, counters)
2978 *
2979 * The return value is the disposition of the chunk.
2980 */
2981sctp_disposition_t sctp_sf_eat_data_fast_4_4(const struct sctp_endpoint *ep,
2982 const struct sctp_association *asoc,
2983 const sctp_subtype_t type,
2984 void *arg,
2985 sctp_cmd_seq_t *commands)
2986{
2987 struct sctp_chunk *chunk = arg;
2988 int error;
2989
2990 if (!sctp_vtag_verify(chunk, asoc)) {
2991 sctp_add_cmd_sf(commands, SCTP_CMD_REPORT_BAD_TAG,
2992 SCTP_NULL());
2993 return sctp_sf_pdiscard(ep, asoc, type, arg, commands);
2994 }
2995
2996 if (!sctp_chunk_length_valid(chunk, sizeof(sctp_data_chunk_t)))
2997 return sctp_sf_violation_chunklen(ep, asoc, type, arg,
2998 commands);
2999
3000 error = sctp_eat_data(asoc, chunk, commands );
3001 switch (error) {
3002 case SCTP_IERROR_NO_ERROR:
3003 case SCTP_IERROR_HIGH_TSN:
3004 case SCTP_IERROR_DUP_TSN:
3005 case SCTP_IERROR_IGNORE_TSN:
3006 case SCTP_IERROR_BAD_STREAM:
3007 break;
3008 case SCTP_IERROR_NO_DATA:
3009 goto consume;
Vlad Yasevichf1751c52009-09-04 18:21:03 -04003010 case SCTP_IERROR_PROTO_VIOLATION:
3011 return sctp_sf_abort_violation(ep, asoc, chunk, commands,
3012 (u8 *)chunk->subh.data_hdr, sizeof(sctp_datahdr_t));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003013 default:
3014 BUG();
3015 }
3016
3017 /* Go a head and force a SACK, since we are shutting down. */
3018
3019 /* Implementor's Guide.
3020 *
3021 * While in SHUTDOWN-SENT state, the SHUTDOWN sender MUST immediately
3022 * respond to each received packet containing one or more DATA chunk(s)
3023 * with a SACK, a SHUTDOWN chunk, and restart the T2-shutdown timer
3024 */
3025 if (chunk->end_of_packet) {
3026 /* We must delay the chunk creation since the cumulative
3027 * TSN has not been updated yet.
3028 */
3029 sctp_add_cmd_sf(commands, SCTP_CMD_GEN_SHUTDOWN, SCTP_NULL());
3030 sctp_add_cmd_sf(commands, SCTP_CMD_GEN_SACK, SCTP_FORCE());
3031 sctp_add_cmd_sf(commands, SCTP_CMD_TIMER_RESTART,
3032 SCTP_TO(SCTP_EVENT_TIMEOUT_T2_SHUTDOWN));
3033 }
3034
3035consume:
3036 return SCTP_DISPOSITION_CONSUME;
3037}
3038
3039/*
3040 * Section: 6.2 Processing a Received SACK
3041 * D) Any time a SACK arrives, the endpoint performs the following:
3042 *
3043 * i) If Cumulative TSN Ack is less than the Cumulative TSN Ack Point,
3044 * then drop the SACK. Since Cumulative TSN Ack is monotonically
3045 * increasing, a SACK whose Cumulative TSN Ack is less than the
3046 * Cumulative TSN Ack Point indicates an out-of-order SACK.
3047 *
3048 * ii) Set rwnd equal to the newly received a_rwnd minus the number
3049 * of bytes still outstanding after processing the Cumulative TSN Ack
3050 * and the Gap Ack Blocks.
3051 *
3052 * iii) If the SACK is missing a TSN that was previously
3053 * acknowledged via a Gap Ack Block (e.g., the data receiver
3054 * reneged on the data), then mark the corresponding DATA chunk
3055 * as available for retransmit: Mark it as missing for fast
3056 * retransmit as described in Section 7.2.4 and if no retransmit
3057 * timer is running for the destination address to which the DATA
3058 * chunk was originally transmitted, then T3-rtx is started for
3059 * that destination address.
3060 *
3061 * Verification Tag: 8.5 Verification Tag [Normal verification]
3062 *
3063 * Inputs
3064 * (endpoint, asoc, chunk)
3065 *
3066 * Outputs
3067 * (asoc, reply_msg, msg_up, timers, counters)
3068 *
3069 * The return value is the disposition of the chunk.
3070 */
3071sctp_disposition_t sctp_sf_eat_sack_6_2(const struct sctp_endpoint *ep,
3072 const struct sctp_association *asoc,
3073 const sctp_subtype_t type,
3074 void *arg,
3075 sctp_cmd_seq_t *commands)
3076{
3077 struct sctp_chunk *chunk = arg;
3078 sctp_sackhdr_t *sackh;
3079 __u32 ctsn;
3080
3081 if (!sctp_vtag_verify(chunk, asoc))
3082 return sctp_sf_pdiscard(ep, asoc, type, arg, commands);
3083
3084 /* Make sure that the SACK chunk has a valid length. */
3085 if (!sctp_chunk_length_valid(chunk, sizeof(sctp_sack_chunk_t)))
3086 return sctp_sf_violation_chunklen(ep, asoc, type, arg,
3087 commands);
3088
3089 /* Pull the SACK chunk from the data buffer */
3090 sackh = sctp_sm_pull_sack(chunk);
3091 /* Was this a bogus SACK? */
3092 if (!sackh)
3093 return sctp_sf_pdiscard(ep, asoc, type, arg, commands);
3094 chunk->subh.sack_hdr = sackh;
3095 ctsn = ntohl(sackh->cum_tsn_ack);
3096
3097 /* i) If Cumulative TSN Ack is less than the Cumulative TSN
3098 * Ack Point, then drop the SACK. Since Cumulative TSN
3099 * Ack is monotonically increasing, a SACK whose
3100 * Cumulative TSN Ack is less than the Cumulative TSN Ack
3101 * Point indicates an out-of-order SACK.
3102 */
3103 if (TSN_lt(ctsn, asoc->ctsn_ack_point)) {
3104 SCTP_DEBUG_PRINTK("ctsn %x\n", ctsn);
3105 SCTP_DEBUG_PRINTK("ctsn_ack_point %x\n", asoc->ctsn_ack_point);
3106 return SCTP_DISPOSITION_DISCARD;
3107 }
3108
Wei Yongjunaecedea2007-08-02 16:57:44 +08003109 /* If Cumulative TSN Ack beyond the max tsn currently
3110 * send, terminating the association and respond to the
3111 * sender with an ABORT.
3112 */
3113 if (!TSN_lt(ctsn, asoc->next_tsn))
3114 return sctp_sf_violation_ctsn(ep, asoc, type, arg, commands);
3115
Linus Torvalds1da177e2005-04-16 15:20:36 -07003116 /* Return this SACK for further processing. */
3117 sctp_add_cmd_sf(commands, SCTP_CMD_PROCESS_SACK, SCTP_SACKH(sackh));
3118
3119 /* Note: We do the rest of the work on the PROCESS_SACK
3120 * sideeffect.
3121 */
3122 return SCTP_DISPOSITION_CONSUME;
3123}
3124
3125/*
3126 * Generate an ABORT in response to a packet.
3127 *
Jerome Forissier047a2422005-04-28 11:58:43 -07003128 * Section: 8.4 Handle "Out of the blue" Packets, sctpimpguide 2.41
Linus Torvalds1da177e2005-04-16 15:20:36 -07003129 *
Jerome Forissier047a2422005-04-28 11:58:43 -07003130 * 8) The receiver should respond to the sender of the OOTB packet with
3131 * an ABORT. When sending the ABORT, the receiver of the OOTB packet
3132 * MUST fill in the Verification Tag field of the outbound packet
3133 * with the value found in the Verification Tag field of the OOTB
3134 * packet and set the T-bit in the Chunk Flags to indicate that the
3135 * Verification Tag is reflected. After sending this ABORT, the
3136 * receiver of the OOTB packet shall discard the OOTB packet and take
3137 * no further action.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003138 *
3139 * Verification Tag:
3140 *
3141 * The return value is the disposition of the chunk.
3142*/
Vlad Yasevichece25df2007-09-07 16:30:54 -04003143static sctp_disposition_t sctp_sf_tabort_8_4_8(const struct sctp_endpoint *ep,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003144 const struct sctp_association *asoc,
3145 const sctp_subtype_t type,
3146 void *arg,
3147 sctp_cmd_seq_t *commands)
3148{
3149 struct sctp_packet *packet = NULL;
3150 struct sctp_chunk *chunk = arg;
3151 struct sctp_chunk *abort;
3152
3153 packet = sctp_ootb_pkt_new(asoc, chunk);
3154
3155 if (packet) {
3156 /* Make an ABORT. The T bit will be set if the asoc
3157 * is NULL.
3158 */
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09003159 abort = sctp_make_abort(asoc, chunk, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003160 if (!abort) {
3161 sctp_ootb_pkt_free(packet);
3162 return SCTP_DISPOSITION_NOMEM;
3163 }
3164
Jerome Forissier047a2422005-04-28 11:58:43 -07003165 /* Reflect vtag if T-Bit is set */
3166 if (sctp_test_T_bit(abort))
3167 packet->vtag = ntohl(chunk->sctp_hdr->vtag);
3168
Linus Torvalds1da177e2005-04-16 15:20:36 -07003169 /* Set the skb to the belonging sock for accounting. */
3170 abort->skb->sk = ep->base.sk;
3171
3172 sctp_packet_append_chunk(packet, abort);
3173
3174 sctp_add_cmd_sf(commands, SCTP_CMD_SEND_PKT,
3175 SCTP_PACKET(packet));
3176
3177 SCTP_INC_STATS(SCTP_MIB_OUTCTRLCHUNKS);
3178
Vlad Yasevichd3f25962007-09-07 11:47:45 -04003179 sctp_sf_pdiscard(ep, asoc, type, arg, commands);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003180 return SCTP_DISPOSITION_CONSUME;
3181 }
3182
3183 return SCTP_DISPOSITION_NOMEM;
3184}
3185
3186/*
3187 * Received an ERROR chunk from peer. Generate SCTP_REMOTE_ERROR
3188 * event as ULP notification for each cause included in the chunk.
3189 *
3190 * API 5.3.1.3 - SCTP_REMOTE_ERROR
3191 *
3192 * The return value is the disposition of the chunk.
3193*/
3194sctp_disposition_t sctp_sf_operr_notify(const struct sctp_endpoint *ep,
3195 const struct sctp_association *asoc,
3196 const sctp_subtype_t type,
3197 void *arg,
3198 sctp_cmd_seq_t *commands)
3199{
3200 struct sctp_chunk *chunk = arg;
Shan Wei8a00be12011-04-19 21:25:40 +00003201 sctp_errhdr_t *err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003202
3203 if (!sctp_vtag_verify(chunk, asoc))
3204 return sctp_sf_pdiscard(ep, asoc, type, arg, commands);
3205
3206 /* Make sure that the ERROR chunk has a valid length. */
3207 if (!sctp_chunk_length_valid(chunk, sizeof(sctp_operr_chunk_t)))
3208 return sctp_sf_violation_chunklen(ep, asoc, type, arg,
3209 commands);
Shan Wei8a00be12011-04-19 21:25:40 +00003210 sctp_walk_errors(err, chunk->chunk_hdr);
3211 if ((void *)err != (void *)chunk->chunk_end)
3212 return sctp_sf_violation_paramlen(ep, asoc, type, arg,
3213 (void *)err, commands);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003214
Wei Yongjun3df26782009-03-02 06:46:51 +00003215 sctp_add_cmd_sf(commands, SCTP_CMD_PROCESS_OPERR,
3216 SCTP_CHUNK(chunk));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003217
Linus Torvalds1da177e2005-04-16 15:20:36 -07003218 return SCTP_DISPOSITION_CONSUME;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003219}
3220
3221/*
3222 * Process an inbound SHUTDOWN ACK.
3223 *
3224 * From Section 9.2:
3225 * Upon the receipt of the SHUTDOWN ACK, the SHUTDOWN sender shall
3226 * stop the T2-shutdown timer, send a SHUTDOWN COMPLETE chunk to its
3227 * peer, and remove all record of the association.
3228 *
3229 * The return value is the disposition.
3230 */
3231sctp_disposition_t sctp_sf_do_9_2_final(const struct sctp_endpoint *ep,
3232 const struct sctp_association *asoc,
3233 const sctp_subtype_t type,
3234 void *arg,
3235 sctp_cmd_seq_t *commands)
3236{
3237 struct sctp_chunk *chunk = arg;
3238 struct sctp_chunk *reply;
3239 struct sctp_ulpevent *ev;
3240
3241 if (!sctp_vtag_verify(chunk, asoc))
3242 return sctp_sf_pdiscard(ep, asoc, type, arg, commands);
3243
3244 /* Make sure that the SHUTDOWN_ACK chunk has a valid length. */
3245 if (!sctp_chunk_length_valid(chunk, sizeof(sctp_chunkhdr_t)))
3246 return sctp_sf_violation_chunklen(ep, asoc, type, arg,
3247 commands);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003248 /* 10.2 H) SHUTDOWN COMPLETE notification
3249 *
3250 * When SCTP completes the shutdown procedures (section 9.2) this
3251 * notification is passed to the upper layer.
3252 */
3253 ev = sctp_ulpevent_make_assoc_change(asoc, 0, SCTP_SHUTDOWN_COMP,
Vlad Yasevicha5a35e72007-03-23 11:34:08 -07003254 0, 0, 0, NULL, GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003255 if (!ev)
3256 goto nomem;
3257
Vladislav Yasevichdf7deeb2006-08-22 00:19:51 -07003258 /* ...send a SHUTDOWN COMPLETE chunk to its peer, */
3259 reply = sctp_make_shutdown_complete(asoc, chunk);
3260 if (!reply)
3261 goto nomem_chunk;
3262
3263 /* Do all the commands now (after allocation), so that we
3264 * have consistent state if memory allocation failes
3265 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003266 sctp_add_cmd_sf(commands, SCTP_CMD_EVENT_ULP, SCTP_ULPEVENT(ev));
3267
3268 /* Upon the receipt of the SHUTDOWN ACK, the SHUTDOWN sender shall
3269 * stop the T2-shutdown timer,
3270 */
3271 sctp_add_cmd_sf(commands, SCTP_CMD_TIMER_STOP,
3272 SCTP_TO(SCTP_EVENT_TIMEOUT_T2_SHUTDOWN));
3273
3274 sctp_add_cmd_sf(commands, SCTP_CMD_TIMER_STOP,
3275 SCTP_TO(SCTP_EVENT_TIMEOUT_T5_SHUTDOWN_GUARD));
3276
Linus Torvalds1da177e2005-04-16 15:20:36 -07003277 sctp_add_cmd_sf(commands, SCTP_CMD_NEW_STATE,
3278 SCTP_STATE(SCTP_STATE_CLOSED));
3279 SCTP_INC_STATS(SCTP_MIB_SHUTDOWNS);
3280 SCTP_DEC_STATS(SCTP_MIB_CURRESTAB);
3281 sctp_add_cmd_sf(commands, SCTP_CMD_REPLY, SCTP_CHUNK(reply));
3282
3283 /* ...and remove all record of the association. */
3284 sctp_add_cmd_sf(commands, SCTP_CMD_DELETE_TCB, SCTP_NULL());
3285 return SCTP_DISPOSITION_DELETE_TCB;
3286
Vladislav Yasevichdf7deeb2006-08-22 00:19:51 -07003287nomem_chunk:
3288 sctp_ulpevent_free(ev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003289nomem:
3290 return SCTP_DISPOSITION_NOMEM;
3291}
3292
3293/*
Jerome Forissier047a2422005-04-28 11:58:43 -07003294 * RFC 2960, 8.4 - Handle "Out of the blue" Packets, sctpimpguide 2.41.
3295 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07003296 * 5) If the packet contains a SHUTDOWN ACK chunk, the receiver should
3297 * respond to the sender of the OOTB packet with a SHUTDOWN COMPLETE.
3298 * When sending the SHUTDOWN COMPLETE, the receiver of the OOTB
3299 * packet must fill in the Verification Tag field of the outbound
3300 * packet with the Verification Tag received in the SHUTDOWN ACK and
Jerome Forissier047a2422005-04-28 11:58:43 -07003301 * set the T-bit in the Chunk Flags to indicate that the Verification
3302 * Tag is reflected.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003303 *
3304 * 8) The receiver should respond to the sender of the OOTB packet with
3305 * an ABORT. When sending the ABORT, the receiver of the OOTB packet
3306 * MUST fill in the Verification Tag field of the outbound packet
3307 * with the value found in the Verification Tag field of the OOTB
Jerome Forissier047a2422005-04-28 11:58:43 -07003308 * packet and set the T-bit in the Chunk Flags to indicate that the
3309 * Verification Tag is reflected. After sending this ABORT, the
3310 * receiver of the OOTB packet shall discard the OOTB packet and take
3311 * no further action.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003312 */
3313sctp_disposition_t sctp_sf_ootb(const struct sctp_endpoint *ep,
3314 const struct sctp_association *asoc,
3315 const sctp_subtype_t type,
3316 void *arg,
3317 sctp_cmd_seq_t *commands)
3318{
3319 struct sctp_chunk *chunk = arg;
3320 struct sk_buff *skb = chunk->skb;
3321 sctp_chunkhdr_t *ch;
Shan Wei85c5ed42011-04-19 21:30:01 +00003322 sctp_errhdr_t *err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003323 __u8 *ch_end;
3324 int ootb_shut_ack = 0;
Shan Wei85c5ed42011-04-19 21:30:01 +00003325 int ootb_cookie_ack = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003326
3327 SCTP_INC_STATS(SCTP_MIB_OUTOFBLUES);
3328
3329 ch = (sctp_chunkhdr_t *) chunk->chunk_hdr;
3330 do {
Vlad Yasevichece25df2007-09-07 16:30:54 -04003331 /* Report violation if the chunk is less then minimal */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003332 if (ntohs(ch->length) < sizeof(sctp_chunkhdr_t))
Vlad Yasevichece25df2007-09-07 16:30:54 -04003333 return sctp_sf_violation_chunklen(ep, asoc, type, arg,
3334 commands);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003335
Vlad Yasevichece25df2007-09-07 16:30:54 -04003336 /* Now that we know we at least have a chunk header,
3337 * do things that are type appropriate.
3338 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003339 if (SCTP_CID_SHUTDOWN_ACK == ch->type)
3340 ootb_shut_ack = 1;
3341
3342 /* RFC 2960, Section 3.3.7
3343 * Moreover, under any circumstances, an endpoint that
3344 * receives an ABORT MUST NOT respond to that ABORT by
3345 * sending an ABORT of its own.
3346 */
3347 if (SCTP_CID_ABORT == ch->type)
3348 return sctp_sf_pdiscard(ep, asoc, type, arg, commands);
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09003349
Shan Wei85c5ed42011-04-19 21:30:01 +00003350 /* RFC 8.4, 7) If the packet contains a "Stale cookie" ERROR
3351 * or a COOKIE ACK the SCTP Packet should be silently
3352 * discarded.
3353 */
3354
3355 if (SCTP_CID_COOKIE_ACK == ch->type)
3356 ootb_cookie_ack = 1;
3357
3358 if (SCTP_CID_ERROR == ch->type) {
3359 sctp_walk_errors(err, ch) {
3360 if (SCTP_ERROR_STALE_COOKIE == err->cause) {
3361 ootb_cookie_ack = 1;
3362 break;
3363 }
3364 }
3365 }
3366
Vlad Yasevichece25df2007-09-07 16:30:54 -04003367 /* Report violation if chunk len overflows */
3368 ch_end = ((__u8 *)ch) + WORD_ROUND(ntohs(ch->length));
3369 if (ch_end > skb_tail_pointer(skb))
3370 return sctp_sf_violation_chunklen(ep, asoc, type, arg,
3371 commands);
3372
Linus Torvalds1da177e2005-04-16 15:20:36 -07003373 ch = (sctp_chunkhdr_t *) ch_end;
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -07003374 } while (ch_end < skb_tail_pointer(skb));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003375
3376 if (ootb_shut_ack)
Vlad Yasevichd3f25962007-09-07 11:47:45 -04003377 return sctp_sf_shut_8_4_5(ep, asoc, type, arg, commands);
Shan Wei85c5ed42011-04-19 21:30:01 +00003378 else if (ootb_cookie_ack)
3379 return sctp_sf_pdiscard(ep, asoc, type, arg, commands);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003380 else
Vlad Yasevichd3f25962007-09-07 11:47:45 -04003381 return sctp_sf_tabort_8_4_8(ep, asoc, type, arg, commands);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003382}
3383
3384/*
3385 * Handle an "Out of the blue" SHUTDOWN ACK.
3386 *
Jerome Forissier047a2422005-04-28 11:58:43 -07003387 * Section: 8.4 5, sctpimpguide 2.41.
3388 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07003389 * 5) If the packet contains a SHUTDOWN ACK chunk, the receiver should
Jerome Forissier047a2422005-04-28 11:58:43 -07003390 * respond to the sender of the OOTB packet with a SHUTDOWN COMPLETE.
3391 * When sending the SHUTDOWN COMPLETE, the receiver of the OOTB
3392 * packet must fill in the Verification Tag field of the outbound
3393 * packet with the Verification Tag received in the SHUTDOWN ACK and
3394 * set the T-bit in the Chunk Flags to indicate that the Verification
3395 * Tag is reflected.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003396 *
3397 * Inputs
3398 * (endpoint, asoc, type, arg, commands)
3399 *
3400 * Outputs
3401 * (sctp_disposition_t)
3402 *
3403 * The return value is the disposition of the chunk.
3404 */
3405static sctp_disposition_t sctp_sf_shut_8_4_5(const struct sctp_endpoint *ep,
3406 const struct sctp_association *asoc,
3407 const sctp_subtype_t type,
3408 void *arg,
3409 sctp_cmd_seq_t *commands)
3410{
3411 struct sctp_packet *packet = NULL;
3412 struct sctp_chunk *chunk = arg;
3413 struct sctp_chunk *shut;
3414
3415 packet = sctp_ootb_pkt_new(asoc, chunk);
3416
3417 if (packet) {
3418 /* Make an SHUTDOWN_COMPLETE.
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09003419 * The T bit will be set if the asoc is NULL.
3420 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003421 shut = sctp_make_shutdown_complete(asoc, chunk);
3422 if (!shut) {
3423 sctp_ootb_pkt_free(packet);
3424 return SCTP_DISPOSITION_NOMEM;
3425 }
3426
Jerome Forissier047a2422005-04-28 11:58:43 -07003427 /* Reflect vtag if T-Bit is set */
3428 if (sctp_test_T_bit(shut))
3429 packet->vtag = ntohl(chunk->sctp_hdr->vtag);
3430
Linus Torvalds1da177e2005-04-16 15:20:36 -07003431 /* Set the skb to the belonging sock for accounting. */
3432 shut->skb->sk = ep->base.sk;
3433
3434 sctp_packet_append_chunk(packet, shut);
3435
3436 sctp_add_cmd_sf(commands, SCTP_CMD_SEND_PKT,
3437 SCTP_PACKET(packet));
3438
3439 SCTP_INC_STATS(SCTP_MIB_OUTCTRLCHUNKS);
3440
3441 /* If the chunk length is invalid, we don't want to process
3442 * the reset of the packet.
3443 */
3444 if (!sctp_chunk_length_valid(chunk, sizeof(sctp_chunkhdr_t)))
3445 return sctp_sf_pdiscard(ep, asoc, type, arg, commands);
3446
Vlad Yasevichd3f25962007-09-07 11:47:45 -04003447 /* We need to discard the rest of the packet to prevent
3448 * potential bomming attacks from additional bundled chunks.
3449 * This is documented in SCTP Threats ID.
3450 */
3451 return sctp_sf_pdiscard(ep, asoc, type, arg, commands);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003452 }
3453
3454 return SCTP_DISPOSITION_NOMEM;
3455}
3456
3457/*
3458 * Handle SHUTDOWN ACK in COOKIE_ECHOED or COOKIE_WAIT state.
3459 *
3460 * Verification Tag: 8.5.1 E) Rules for packet carrying a SHUTDOWN ACK
3461 * If the receiver is in COOKIE-ECHOED or COOKIE-WAIT state the
3462 * procedures in section 8.4 SHOULD be followed, in other words it
3463 * should be treated as an Out Of The Blue packet.
3464 * [This means that we do NOT check the Verification Tag on these
3465 * chunks. --piggy ]
3466 *
3467 */
3468sctp_disposition_t sctp_sf_do_8_5_1_E_sa(const struct sctp_endpoint *ep,
3469 const struct sctp_association *asoc,
3470 const sctp_subtype_t type,
3471 void *arg,
3472 sctp_cmd_seq_t *commands)
3473{
Vlad Yasevichece25df2007-09-07 16:30:54 -04003474 struct sctp_chunk *chunk = arg;
3475
3476 /* Make sure that the SHUTDOWN_ACK chunk has a valid length. */
3477 if (!sctp_chunk_length_valid(chunk, sizeof(sctp_chunkhdr_t)))
3478 return sctp_sf_violation_chunklen(ep, asoc, type, arg,
3479 commands);
3480
Linus Torvalds1da177e2005-04-16 15:20:36 -07003481 /* Although we do have an association in this case, it corresponds
3482 * to a restarted association. So the packet is treated as an OOTB
3483 * packet and the state function that handles OOTB SHUTDOWN_ACK is
3484 * called with a NULL association.
3485 */
Wei Yongjun8190f892008-09-08 12:13:55 +08003486 SCTP_INC_STATS(SCTP_MIB_OUTOFBLUES);
3487
Linus Torvalds1da177e2005-04-16 15:20:36 -07003488 return sctp_sf_shut_8_4_5(ep, NULL, type, arg, commands);
3489}
3490
3491/* ADDIP Section 4.2 Upon reception of an ASCONF Chunk. */
3492sctp_disposition_t sctp_sf_do_asconf(const struct sctp_endpoint *ep,
3493 const struct sctp_association *asoc,
3494 const sctp_subtype_t type, void *arg,
3495 sctp_cmd_seq_t *commands)
3496{
3497 struct sctp_chunk *chunk = arg;
3498 struct sctp_chunk *asconf_ack = NULL;
Wei Yongjun6f4c6182007-09-19 17:19:52 +08003499 struct sctp_paramhdr *err_param = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003500 sctp_addiphdr_t *hdr;
Wei Yongjun6f4c6182007-09-19 17:19:52 +08003501 union sctp_addr_param *addr_param;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003502 __u32 serial;
Wei Yongjun6f4c6182007-09-19 17:19:52 +08003503 int length;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003504
3505 if (!sctp_vtag_verify(chunk, asoc)) {
3506 sctp_add_cmd_sf(commands, SCTP_CMD_REPORT_BAD_TAG,
3507 SCTP_NULL());
3508 return sctp_sf_pdiscard(ep, asoc, type, arg, commands);
3509 }
3510
Vlad Yasevich6afd2e82007-12-20 14:08:04 -08003511 /* ADD-IP: Section 4.1.1
3512 * This chunk MUST be sent in an authenticated way by using
3513 * the mechanism defined in [I-D.ietf-tsvwg-sctp-auth]. If this chunk
3514 * is received unauthenticated it MUST be silently discarded as
3515 * described in [I-D.ietf-tsvwg-sctp-auth].
3516 */
3517 if (!sctp_addip_noauth && !chunk->auth)
3518 return sctp_sf_discard_chunk(ep, asoc, type, arg, commands);
3519
Linus Torvalds1da177e2005-04-16 15:20:36 -07003520 /* Make sure that the ASCONF ADDIP chunk has a valid length. */
3521 if (!sctp_chunk_length_valid(chunk, sizeof(sctp_addip_chunk_t)))
3522 return sctp_sf_violation_chunklen(ep, asoc, type, arg,
3523 commands);
3524
3525 hdr = (sctp_addiphdr_t *)chunk->skb->data;
3526 serial = ntohl(hdr->serial);
3527
Wei Yongjun6f4c6182007-09-19 17:19:52 +08003528 addr_param = (union sctp_addr_param *)hdr->params;
3529 length = ntohs(addr_param->p.length);
3530 if (length < sizeof(sctp_paramhdr_t))
Wei Yongjunba016672008-09-30 05:32:24 -07003531 return sctp_sf_violation_paramlen(ep, asoc, type, arg,
Wei Yongjun6f4c6182007-09-19 17:19:52 +08003532 (void *)addr_param, commands);
3533
3534 /* Verify the ASCONF chunk before processing it. */
3535 if (!sctp_verify_asconf(asoc,
Vlad Yasevicha08de642007-12-20 14:11:47 -08003536 (sctp_paramhdr_t *)((void *)addr_param + length),
3537 (void *)chunk->chunk_end,
3538 &err_param))
Wei Yongjunba016672008-09-30 05:32:24 -07003539 return sctp_sf_violation_paramlen(ep, asoc, type, arg,
3540 (void *)err_param, commands);
Wei Yongjun6f4c6182007-09-19 17:19:52 +08003541
Vlad Yasevicha08de642007-12-20 14:11:47 -08003542 /* ADDIP 5.2 E1) Compare the value of the serial number to the value
Linus Torvalds1da177e2005-04-16 15:20:36 -07003543 * the endpoint stored in a new association variable
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09003544 * 'Peer-Serial-Number'.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003545 */
3546 if (serial == asoc->peer.addip_serial + 1) {
Vlad Yasevicha08de642007-12-20 14:11:47 -08003547 /* If this is the first instance of ASCONF in the packet,
3548 * we can clean our old ASCONF-ACKs.
3549 */
3550 if (!chunk->has_asconf)
3551 sctp_assoc_clean_asconf_ack_cache(asoc);
3552
3553 /* ADDIP 5.2 E4) When the Sequence Number matches the next one
3554 * expected, process the ASCONF as described below and after
3555 * processing the ASCONF Chunk, append an ASCONF-ACK Chunk to
3556 * the response packet and cache a copy of it (in the event it
3557 * later needs to be retransmitted).
3558 *
3559 * Essentially, do V1-V5.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003560 */
3561 asconf_ack = sctp_process_asconf((struct sctp_association *)
3562 asoc, chunk);
3563 if (!asconf_ack)
3564 return SCTP_DISPOSITION_NOMEM;
Vlad Yasevicha08de642007-12-20 14:11:47 -08003565 } else if (serial < asoc->peer.addip_serial + 1) {
3566 /* ADDIP 5.2 E2)
3567 * If the value found in the Sequence Number is less than the
3568 * ('Peer- Sequence-Number' + 1), simply skip to the next
3569 * ASCONF, and include in the outbound response packet
3570 * any previously cached ASCONF-ACK response that was
3571 * sent and saved that matches the Sequence Number of the
3572 * ASCONF. Note: It is possible that no cached ASCONF-ACK
3573 * Chunk exists. This will occur when an older ASCONF
3574 * arrives out of order. In such a case, the receiver
3575 * should skip the ASCONF Chunk and not include ASCONF-ACK
3576 * Chunk for that chunk.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003577 */
Vlad Yasevicha08de642007-12-20 14:11:47 -08003578 asconf_ack = sctp_assoc_lookup_asconf_ack(asoc, hdr->serial);
3579 if (!asconf_ack)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003580 return SCTP_DISPOSITION_DISCARD;
Vlad Yasevich31b02e12009-09-04 18:21:00 -04003581
3582 /* Reset the transport so that we select the correct one
3583 * this time around. This is to make sure that we don't
3584 * accidentally use a stale transport that's been removed.
3585 */
3586 asconf_ack->transport = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003587 } else {
Vlad Yasevicha08de642007-12-20 14:11:47 -08003588 /* ADDIP 5.2 E5) Otherwise, the ASCONF Chunk is discarded since
Linus Torvalds1da177e2005-04-16 15:20:36 -07003589 * it must be either a stale packet or from an attacker.
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09003590 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003591 return SCTP_DISPOSITION_DISCARD;
3592 }
3593
Vlad Yasevicha08de642007-12-20 14:11:47 -08003594 /* ADDIP 5.2 E6) The destination address of the SCTP packet
3595 * containing the ASCONF-ACK Chunks MUST be the source address of
3596 * the SCTP packet that held the ASCONF Chunks.
3597 *
3598 * To do this properly, we'll set the destination address of the chunk
3599 * and at the transmit time, will try look up the transport to use.
3600 * Since ASCONFs may be bundled, the correct transport may not be
Thadeu Lima de Souza Cascardo94e2bd62009-10-16 15:20:49 +02003601 * created until we process the entire packet, thus this workaround.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003602 */
Vlad Yasevicha08de642007-12-20 14:11:47 -08003603 asconf_ack->dest = chunk->source;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003604 sctp_add_cmd_sf(commands, SCTP_CMD_REPLY, SCTP_CHUNK(asconf_ack));
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09003605
Linus Torvalds1da177e2005-04-16 15:20:36 -07003606 return SCTP_DISPOSITION_CONSUME;
3607}
3608
3609/*
3610 * ADDIP Section 4.3 General rules for address manipulation
3611 * When building TLV parameters for the ASCONF Chunk that will add or
3612 * delete IP addresses the D0 to D13 rules should be applied:
3613 */
3614sctp_disposition_t sctp_sf_do_asconf_ack(const struct sctp_endpoint *ep,
3615 const struct sctp_association *asoc,
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09003616 const sctp_subtype_t type, void *arg,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003617 sctp_cmd_seq_t *commands)
3618{
3619 struct sctp_chunk *asconf_ack = arg;
3620 struct sctp_chunk *last_asconf = asoc->addip_last_asconf;
3621 struct sctp_chunk *abort;
Wei Yongjun6f4c6182007-09-19 17:19:52 +08003622 struct sctp_paramhdr *err_param = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003623 sctp_addiphdr_t *addip_hdr;
3624 __u32 sent_serial, rcvd_serial;
3625
3626 if (!sctp_vtag_verify(asconf_ack, asoc)) {
3627 sctp_add_cmd_sf(commands, SCTP_CMD_REPORT_BAD_TAG,
3628 SCTP_NULL());
3629 return sctp_sf_pdiscard(ep, asoc, type, arg, commands);
3630 }
3631
Vlad Yasevich6afd2e82007-12-20 14:08:04 -08003632 /* ADD-IP, Section 4.1.2:
3633 * This chunk MUST be sent in an authenticated way by using
3634 * the mechanism defined in [I-D.ietf-tsvwg-sctp-auth]. If this chunk
3635 * is received unauthenticated it MUST be silently discarded as
3636 * described in [I-D.ietf-tsvwg-sctp-auth].
3637 */
3638 if (!sctp_addip_noauth && !asconf_ack->auth)
3639 return sctp_sf_discard_chunk(ep, asoc, type, arg, commands);
3640
Linus Torvalds1da177e2005-04-16 15:20:36 -07003641 /* Make sure that the ADDIP chunk has a valid length. */
3642 if (!sctp_chunk_length_valid(asconf_ack, sizeof(sctp_addip_chunk_t)))
3643 return sctp_sf_violation_chunklen(ep, asoc, type, arg,
3644 commands);
3645
3646 addip_hdr = (sctp_addiphdr_t *)asconf_ack->skb->data;
3647 rcvd_serial = ntohl(addip_hdr->serial);
3648
Wei Yongjun6f4c6182007-09-19 17:19:52 +08003649 /* Verify the ASCONF-ACK chunk before processing it. */
3650 if (!sctp_verify_asconf(asoc,
3651 (sctp_paramhdr_t *)addip_hdr->params,
3652 (void *)asconf_ack->chunk_end,
3653 &err_param))
Wei Yongjunba016672008-09-30 05:32:24 -07003654 return sctp_sf_violation_paramlen(ep, asoc, type, arg,
3655 (void *)err_param, commands);
Wei Yongjun6f4c6182007-09-19 17:19:52 +08003656
Linus Torvalds1da177e2005-04-16 15:20:36 -07003657 if (last_asconf) {
3658 addip_hdr = (sctp_addiphdr_t *)last_asconf->subh.addip_hdr;
3659 sent_serial = ntohl(addip_hdr->serial);
3660 } else {
3661 sent_serial = asoc->addip_serial - 1;
3662 }
3663
3664 /* D0) If an endpoint receives an ASCONF-ACK that is greater than or
3665 * equal to the next serial number to be used but no ASCONF chunk is
3666 * outstanding the endpoint MUST ABORT the association. Note that a
3667 * sequence number is greater than if it is no more than 2^^31-1
3668 * larger than the current sequence number (using serial arithmetic).
3669 */
3670 if (ADDIP_SERIAL_gte(rcvd_serial, sent_serial + 1) &&
3671 !(asoc->addip_last_asconf)) {
3672 abort = sctp_make_abort(asoc, asconf_ack,
3673 sizeof(sctp_errhdr_t));
3674 if (abort) {
Wei Yongjun00f1c2d2007-08-21 15:50:01 +08003675 sctp_init_cause(abort, SCTP_ERROR_ASCONF_ACK, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003676 sctp_add_cmd_sf(commands, SCTP_CMD_REPLY,
3677 SCTP_CHUNK(abort));
3678 }
3679 /* We are going to ABORT, so we might as well stop
3680 * processing the rest of the chunks in the packet.
3681 */
3682 sctp_add_cmd_sf(commands, SCTP_CMD_TIMER_STOP,
3683 SCTP_TO(SCTP_EVENT_TIMEOUT_T4_RTO));
3684 sctp_add_cmd_sf(commands, SCTP_CMD_DISCARD_PACKET,SCTP_NULL());
Sridhar Samudrala8de8c872006-05-19 10:58:12 -07003685 sctp_add_cmd_sf(commands, SCTP_CMD_SET_SK_ERR,
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09003686 SCTP_ERROR(ECONNABORTED));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003687 sctp_add_cmd_sf(commands, SCTP_CMD_ASSOC_FAILED,
Al Viro5be291f2006-11-20 17:01:06 -08003688 SCTP_PERR(SCTP_ERROR_ASCONF_ACK));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003689 SCTP_INC_STATS(SCTP_MIB_ABORTEDS);
3690 SCTP_DEC_STATS(SCTP_MIB_CURRESTAB);
3691 return SCTP_DISPOSITION_ABORT;
3692 }
3693
3694 if ((rcvd_serial == sent_serial) && asoc->addip_last_asconf) {
3695 sctp_add_cmd_sf(commands, SCTP_CMD_TIMER_STOP,
3696 SCTP_TO(SCTP_EVENT_TIMEOUT_T4_RTO));
3697
3698 if (!sctp_process_asconf_ack((struct sctp_association *)asoc,
Vlad Yasevichc0786692010-04-28 08:47:22 +00003699 asconf_ack)) {
3700 /* Successfully processed ASCONF_ACK. We can
3701 * release the next asconf if we have one.
3702 */
3703 sctp_add_cmd_sf(commands, SCTP_CMD_SEND_NEXT_ASCONF,
3704 SCTP_NULL());
Linus Torvalds1da177e2005-04-16 15:20:36 -07003705 return SCTP_DISPOSITION_CONSUME;
Vlad Yasevichc0786692010-04-28 08:47:22 +00003706 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003707
3708 abort = sctp_make_abort(asoc, asconf_ack,
3709 sizeof(sctp_errhdr_t));
3710 if (abort) {
Wei Yongjun00f1c2d2007-08-21 15:50:01 +08003711 sctp_init_cause(abort, SCTP_ERROR_RSRC_LOW, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003712 sctp_add_cmd_sf(commands, SCTP_CMD_REPLY,
3713 SCTP_CHUNK(abort));
3714 }
3715 /* We are going to ABORT, so we might as well stop
3716 * processing the rest of the chunks in the packet.
3717 */
3718 sctp_add_cmd_sf(commands, SCTP_CMD_DISCARD_PACKET,SCTP_NULL());
Sridhar Samudrala8de8c872006-05-19 10:58:12 -07003719 sctp_add_cmd_sf(commands, SCTP_CMD_SET_SK_ERR,
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09003720 SCTP_ERROR(ECONNABORTED));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003721 sctp_add_cmd_sf(commands, SCTP_CMD_ASSOC_FAILED,
Al Viro5be291f2006-11-20 17:01:06 -08003722 SCTP_PERR(SCTP_ERROR_ASCONF_ACK));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003723 SCTP_INC_STATS(SCTP_MIB_ABORTEDS);
3724 SCTP_DEC_STATS(SCTP_MIB_CURRESTAB);
3725 return SCTP_DISPOSITION_ABORT;
3726 }
3727
3728 return SCTP_DISPOSITION_DISCARD;
3729}
3730
3731/*
3732 * PR-SCTP Section 3.6 Receiver Side Implementation of PR-SCTP
3733 *
3734 * When a FORWARD TSN chunk arrives, the data receiver MUST first update
3735 * its cumulative TSN point to the value carried in the FORWARD TSN
3736 * chunk, and then MUST further advance its cumulative TSN point locally
3737 * if possible.
3738 * After the above processing, the data receiver MUST stop reporting any
3739 * missing TSNs earlier than or equal to the new cumulative TSN point.
3740 *
3741 * Verification Tag: 8.5 Verification Tag [Normal verification]
3742 *
3743 * The return value is the disposition of the chunk.
3744 */
3745sctp_disposition_t sctp_sf_eat_fwd_tsn(const struct sctp_endpoint *ep,
3746 const struct sctp_association *asoc,
3747 const sctp_subtype_t type,
3748 void *arg,
3749 sctp_cmd_seq_t *commands)
3750{
3751 struct sctp_chunk *chunk = arg;
3752 struct sctp_fwdtsn_hdr *fwdtsn_hdr;
Wei Yongjun9fcb95a2008-12-25 16:58:11 -08003753 struct sctp_fwdtsn_skip *skip;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003754 __u16 len;
3755 __u32 tsn;
3756
3757 if (!sctp_vtag_verify(chunk, asoc)) {
3758 sctp_add_cmd_sf(commands, SCTP_CMD_REPORT_BAD_TAG,
3759 SCTP_NULL());
3760 return sctp_sf_pdiscard(ep, asoc, type, arg, commands);
3761 }
3762
3763 /* Make sure that the FORWARD_TSN chunk has valid length. */
3764 if (!sctp_chunk_length_valid(chunk, sizeof(struct sctp_fwdtsn_chunk)))
3765 return sctp_sf_violation_chunklen(ep, asoc, type, arg,
3766 commands);
3767
3768 fwdtsn_hdr = (struct sctp_fwdtsn_hdr *)chunk->skb->data;
3769 chunk->subh.fwdtsn_hdr = fwdtsn_hdr;
3770 len = ntohs(chunk->chunk_hdr->length);
3771 len -= sizeof(struct sctp_chunkhdr);
3772 skb_pull(chunk->skb, len);
3773
3774 tsn = ntohl(fwdtsn_hdr->new_cum_tsn);
Harvey Harrison0dc47872008-03-05 20:47:47 -08003775 SCTP_DEBUG_PRINTK("%s: TSN 0x%x.\n", __func__, tsn);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003776
3777 /* The TSN is too high--silently discard the chunk and count on it
3778 * getting retransmitted later.
3779 */
3780 if (sctp_tsnmap_check(&asoc->peer.tsn_map, tsn) < 0)
3781 goto discard_noforce;
3782
Wei Yongjun9fcb95a2008-12-25 16:58:11 -08003783 /* Silently discard the chunk if stream-id is not valid */
3784 sctp_walk_fwdtsn(skip, chunk) {
3785 if (ntohs(skip->stream) >= asoc->c.sinit_max_instreams)
3786 goto discard_noforce;
3787 }
3788
Linus Torvalds1da177e2005-04-16 15:20:36 -07003789 sctp_add_cmd_sf(commands, SCTP_CMD_REPORT_FWDTSN, SCTP_U32(tsn));
3790 if (len > sizeof(struct sctp_fwdtsn_hdr))
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09003791 sctp_add_cmd_sf(commands, SCTP_CMD_PROCESS_FWDTSN,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003792 SCTP_CHUNK(chunk));
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09003793
Linus Torvalds1da177e2005-04-16 15:20:36 -07003794 /* Count this as receiving DATA. */
3795 if (asoc->autoclose) {
3796 sctp_add_cmd_sf(commands, SCTP_CMD_TIMER_RESTART,
3797 SCTP_TO(SCTP_EVENT_TIMEOUT_AUTOCLOSE));
3798 }
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09003799
Linus Torvalds1da177e2005-04-16 15:20:36 -07003800 /* FIXME: For now send a SACK, but DATA processing may
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09003801 * send another.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003802 */
3803 sctp_add_cmd_sf(commands, SCTP_CMD_GEN_SACK, SCTP_NOFORCE());
Linus Torvalds1da177e2005-04-16 15:20:36 -07003804
3805 return SCTP_DISPOSITION_CONSUME;
3806
3807discard_noforce:
3808 return SCTP_DISPOSITION_DISCARD;
3809}
3810
3811sctp_disposition_t sctp_sf_eat_fwd_tsn_fast(
3812 const struct sctp_endpoint *ep,
3813 const struct sctp_association *asoc,
3814 const sctp_subtype_t type,
3815 void *arg,
3816 sctp_cmd_seq_t *commands)
3817{
3818 struct sctp_chunk *chunk = arg;
3819 struct sctp_fwdtsn_hdr *fwdtsn_hdr;
Wei Yongjun9fcb95a2008-12-25 16:58:11 -08003820 struct sctp_fwdtsn_skip *skip;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003821 __u16 len;
3822 __u32 tsn;
3823
3824 if (!sctp_vtag_verify(chunk, asoc)) {
3825 sctp_add_cmd_sf(commands, SCTP_CMD_REPORT_BAD_TAG,
3826 SCTP_NULL());
3827 return sctp_sf_pdiscard(ep, asoc, type, arg, commands);
3828 }
3829
3830 /* Make sure that the FORWARD_TSN chunk has a valid length. */
3831 if (!sctp_chunk_length_valid(chunk, sizeof(struct sctp_fwdtsn_chunk)))
3832 return sctp_sf_violation_chunklen(ep, asoc, type, arg,
3833 commands);
3834
3835 fwdtsn_hdr = (struct sctp_fwdtsn_hdr *)chunk->skb->data;
3836 chunk->subh.fwdtsn_hdr = fwdtsn_hdr;
3837 len = ntohs(chunk->chunk_hdr->length);
3838 len -= sizeof(struct sctp_chunkhdr);
3839 skb_pull(chunk->skb, len);
3840
3841 tsn = ntohl(fwdtsn_hdr->new_cum_tsn);
Harvey Harrison0dc47872008-03-05 20:47:47 -08003842 SCTP_DEBUG_PRINTK("%s: TSN 0x%x.\n", __func__, tsn);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003843
3844 /* The TSN is too high--silently discard the chunk and count on it
3845 * getting retransmitted later.
3846 */
3847 if (sctp_tsnmap_check(&asoc->peer.tsn_map, tsn) < 0)
3848 goto gen_shutdown;
3849
Wei Yongjun9fcb95a2008-12-25 16:58:11 -08003850 /* Silently discard the chunk if stream-id is not valid */
3851 sctp_walk_fwdtsn(skip, chunk) {
3852 if (ntohs(skip->stream) >= asoc->c.sinit_max_instreams)
3853 goto gen_shutdown;
3854 }
3855
Linus Torvalds1da177e2005-04-16 15:20:36 -07003856 sctp_add_cmd_sf(commands, SCTP_CMD_REPORT_FWDTSN, SCTP_U32(tsn));
3857 if (len > sizeof(struct sctp_fwdtsn_hdr))
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09003858 sctp_add_cmd_sf(commands, SCTP_CMD_PROCESS_FWDTSN,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003859 SCTP_CHUNK(chunk));
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09003860
Linus Torvalds1da177e2005-04-16 15:20:36 -07003861 /* Go a head and force a SACK, since we are shutting down. */
3862gen_shutdown:
3863 /* Implementor's Guide.
3864 *
3865 * While in SHUTDOWN-SENT state, the SHUTDOWN sender MUST immediately
3866 * respond to each received packet containing one or more DATA chunk(s)
3867 * with a SACK, a SHUTDOWN chunk, and restart the T2-shutdown timer
3868 */
3869 sctp_add_cmd_sf(commands, SCTP_CMD_GEN_SHUTDOWN, SCTP_NULL());
3870 sctp_add_cmd_sf(commands, SCTP_CMD_GEN_SACK, SCTP_FORCE());
3871 sctp_add_cmd_sf(commands, SCTP_CMD_TIMER_RESTART,
3872 SCTP_TO(SCTP_EVENT_TIMEOUT_T2_SHUTDOWN));
3873
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09003874 return SCTP_DISPOSITION_CONSUME;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003875}
3876
3877/*
Lucas De Marchi25985ed2011-03-30 22:57:33 -03003878 * SCTP-AUTH Section 6.3 Receiving authenticated chukns
Vlad Yasevichbbd0d592007-10-03 17:51:34 -07003879 *
3880 * The receiver MUST use the HMAC algorithm indicated in the HMAC
3881 * Identifier field. If this algorithm was not specified by the
3882 * receiver in the HMAC-ALGO parameter in the INIT or INIT-ACK chunk
3883 * during association setup, the AUTH chunk and all chunks after it MUST
3884 * be discarded and an ERROR chunk SHOULD be sent with the error cause
3885 * defined in Section 4.1.
3886 *
3887 * If an endpoint with no shared key receives a Shared Key Identifier
3888 * other than 0, it MUST silently discard all authenticated chunks. If
3889 * the endpoint has at least one endpoint pair shared key for the peer,
3890 * it MUST use the key specified by the Shared Key Identifier if a
3891 * key has been configured for that Shared Key Identifier. If no
3892 * endpoint pair shared key has been configured for that Shared Key
3893 * Identifier, all authenticated chunks MUST be silently discarded.
3894 *
3895 * Verification Tag: 8.5 Verification Tag [Normal verification]
3896 *
3897 * The return value is the disposition of the chunk.
3898 */
3899static sctp_ierror_t sctp_sf_authenticate(const struct sctp_endpoint *ep,
3900 const struct sctp_association *asoc,
3901 const sctp_subtype_t type,
3902 struct sctp_chunk *chunk)
3903{
3904 struct sctp_authhdr *auth_hdr;
3905 struct sctp_hmac *hmac;
3906 unsigned int sig_len;
3907 __u16 key_id;
3908 __u8 *save_digest;
3909 __u8 *digest;
3910
3911 /* Pull in the auth header, so we can do some more verification */
3912 auth_hdr = (struct sctp_authhdr *)chunk->skb->data;
3913 chunk->subh.auth_hdr = auth_hdr;
3914 skb_pull(chunk->skb, sizeof(struct sctp_authhdr));
3915
3916 /* Make sure that we suport the HMAC algorithm from the auth
3917 * chunk.
3918 */
3919 if (!sctp_auth_asoc_verify_hmac_id(asoc, auth_hdr->hmac_id))
3920 return SCTP_IERROR_AUTH_BAD_HMAC;
3921
3922 /* Make sure that the provided shared key identifier has been
3923 * configured
3924 */
3925 key_id = ntohs(auth_hdr->shkey_id);
3926 if (key_id != asoc->active_key_id && !sctp_auth_get_shkey(asoc, key_id))
3927 return SCTP_IERROR_AUTH_BAD_KEYID;
3928
3929
3930 /* Make sure that the length of the signature matches what
3931 * we expect.
3932 */
3933 sig_len = ntohs(chunk->chunk_hdr->length) - sizeof(sctp_auth_chunk_t);
3934 hmac = sctp_auth_get_hmac(ntohs(auth_hdr->hmac_id));
3935 if (sig_len != hmac->hmac_len)
3936 return SCTP_IERROR_PROTO_VIOLATION;
3937
3938 /* Now that we've done validation checks, we can compute and
3939 * verify the hmac. The steps involved are:
3940 * 1. Save the digest from the chunk.
3941 * 2. Zero out the digest in the chunk.
3942 * 3. Compute the new digest
3943 * 4. Compare saved and new digests.
3944 */
3945 digest = auth_hdr->hmac;
3946 skb_pull(chunk->skb, sig_len);
3947
3948 save_digest = kmemdup(digest, sig_len, GFP_ATOMIC);
3949 if (!save_digest)
3950 goto nomem;
3951
3952 memset(digest, 0, sig_len);
3953
3954 sctp_auth_calculate_hmac(asoc, chunk->skb,
3955 (struct sctp_auth_chunk *)chunk->chunk_hdr,
3956 GFP_ATOMIC);
3957
3958 /* Discard the packet if the digests do not match */
3959 if (memcmp(save_digest, digest, sig_len)) {
3960 kfree(save_digest);
3961 return SCTP_IERROR_BAD_SIG;
3962 }
3963
3964 kfree(save_digest);
3965 chunk->auth = 1;
3966
3967 return SCTP_IERROR_NO_ERROR;
3968nomem:
3969 return SCTP_IERROR_NOMEM;
3970}
3971
3972sctp_disposition_t sctp_sf_eat_auth(const struct sctp_endpoint *ep,
3973 const struct sctp_association *asoc,
3974 const sctp_subtype_t type,
3975 void *arg,
3976 sctp_cmd_seq_t *commands)
3977{
3978 struct sctp_authhdr *auth_hdr;
3979 struct sctp_chunk *chunk = arg;
3980 struct sctp_chunk *err_chunk;
3981 sctp_ierror_t error;
3982
Wei Yongjund2f19fa2008-02-05 03:02:26 -08003983 /* Make sure that the peer has AUTH capable */
3984 if (!asoc->peer.auth_capable)
3985 return sctp_sf_unk_chunk(ep, asoc, type, arg, commands);
3986
Vlad Yasevichbbd0d592007-10-03 17:51:34 -07003987 if (!sctp_vtag_verify(chunk, asoc)) {
3988 sctp_add_cmd_sf(commands, SCTP_CMD_REPORT_BAD_TAG,
3989 SCTP_NULL());
3990 return sctp_sf_pdiscard(ep, asoc, type, arg, commands);
3991 }
3992
3993 /* Make sure that the AUTH chunk has valid length. */
3994 if (!sctp_chunk_length_valid(chunk, sizeof(struct sctp_auth_chunk)))
3995 return sctp_sf_violation_chunklen(ep, asoc, type, arg,
3996 commands);
3997
3998 auth_hdr = (struct sctp_authhdr *)chunk->skb->data;
3999 error = sctp_sf_authenticate(ep, asoc, type, chunk);
4000 switch (error) {
4001 case SCTP_IERROR_AUTH_BAD_HMAC:
4002 /* Generate the ERROR chunk and discard the rest
4003 * of the packet
4004 */
4005 err_chunk = sctp_make_op_error(asoc, chunk,
4006 SCTP_ERROR_UNSUP_HMAC,
4007 &auth_hdr->hmac_id,
Vlad Yasevich6383cfb2009-11-23 15:53:56 -05004008 sizeof(__u16), 0);
Vlad Yasevichbbd0d592007-10-03 17:51:34 -07004009 if (err_chunk) {
4010 sctp_add_cmd_sf(commands, SCTP_CMD_REPLY,
4011 SCTP_CHUNK(err_chunk));
4012 }
4013 /* Fall Through */
4014 case SCTP_IERROR_AUTH_BAD_KEYID:
4015 case SCTP_IERROR_BAD_SIG:
4016 return sctp_sf_pdiscard(ep, asoc, type, arg, commands);
4017 break;
4018 case SCTP_IERROR_PROTO_VIOLATION:
4019 return sctp_sf_violation_chunklen(ep, asoc, type, arg,
4020 commands);
4021 break;
4022 case SCTP_IERROR_NOMEM:
4023 return SCTP_DISPOSITION_NOMEM;
4024 default:
4025 break;
4026 }
4027
Vlad Yasevich65b07e52007-09-16 19:34:00 -07004028 if (asoc->active_key_id != ntohs(auth_hdr->shkey_id)) {
4029 struct sctp_ulpevent *ev;
4030
4031 ev = sctp_ulpevent_make_authkey(asoc, ntohs(auth_hdr->shkey_id),
4032 SCTP_AUTH_NEWKEY, GFP_ATOMIC);
4033
4034 if (!ev)
4035 return -ENOMEM;
4036
4037 sctp_add_cmd_sf(commands, SCTP_CMD_EVENT_ULP,
4038 SCTP_ULPEVENT(ev));
4039 }
4040
Vlad Yasevichbbd0d592007-10-03 17:51:34 -07004041 return SCTP_DISPOSITION_CONSUME;
4042}
4043
4044/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004045 * Process an unknown chunk.
4046 *
4047 * Section: 3.2. Also, 2.1 in the implementor's guide.
4048 *
4049 * Chunk Types are encoded such that the highest-order two bits specify
4050 * the action that must be taken if the processing endpoint does not
4051 * recognize the Chunk Type.
4052 *
4053 * 00 - Stop processing this SCTP packet and discard it, do not process
4054 * any further chunks within it.
4055 *
4056 * 01 - Stop processing this SCTP packet and discard it, do not process
4057 * any further chunks within it, and report the unrecognized
4058 * chunk in an 'Unrecognized Chunk Type'.
4059 *
4060 * 10 - Skip this chunk and continue processing.
4061 *
4062 * 11 - Skip this chunk and continue processing, but report in an ERROR
4063 * Chunk using the 'Unrecognized Chunk Type' cause of error.
4064 *
4065 * The return value is the disposition of the chunk.
4066 */
4067sctp_disposition_t sctp_sf_unk_chunk(const struct sctp_endpoint *ep,
4068 const struct sctp_association *asoc,
4069 const sctp_subtype_t type,
4070 void *arg,
4071 sctp_cmd_seq_t *commands)
4072{
4073 struct sctp_chunk *unk_chunk = arg;
4074 struct sctp_chunk *err_chunk;
4075 sctp_chunkhdr_t *hdr;
4076
4077 SCTP_DEBUG_PRINTK("Processing the unknown chunk id %d.\n", type.chunk);
4078
4079 if (!sctp_vtag_verify(unk_chunk, asoc))
4080 return sctp_sf_pdiscard(ep, asoc, type, arg, commands);
4081
4082 /* Make sure that the chunk has a valid length.
4083 * Since we don't know the chunk type, we use a general
4084 * chunkhdr structure to make a comparison.
4085 */
4086 if (!sctp_chunk_length_valid(unk_chunk, sizeof(sctp_chunkhdr_t)))
4087 return sctp_sf_violation_chunklen(ep, asoc, type, arg,
4088 commands);
4089
4090 switch (type.chunk & SCTP_CID_ACTION_MASK) {
4091 case SCTP_CID_ACTION_DISCARD:
4092 /* Discard the packet. */
4093 return sctp_sf_pdiscard(ep, asoc, type, arg, commands);
4094 break;
4095 case SCTP_CID_ACTION_DISCARD_ERR:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004096 /* Generate an ERROR chunk as response. */
4097 hdr = unk_chunk->chunk_hdr;
4098 err_chunk = sctp_make_op_error(asoc, unk_chunk,
4099 SCTP_ERROR_UNKNOWN_CHUNK, hdr,
Vlad Yasevich6383cfb2009-11-23 15:53:56 -05004100 WORD_ROUND(ntohs(hdr->length)),
4101 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004102 if (err_chunk) {
4103 sctp_add_cmd_sf(commands, SCTP_CMD_REPLY,
4104 SCTP_CHUNK(err_chunk));
4105 }
Vlad Yasevich2e3216c2008-06-19 16:08:18 -07004106
4107 /* Discard the packet. */
4108 sctp_sf_pdiscard(ep, asoc, type, arg, commands);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004109 return SCTP_DISPOSITION_CONSUME;
4110 break;
4111 case SCTP_CID_ACTION_SKIP:
4112 /* Skip the chunk. */
4113 return SCTP_DISPOSITION_DISCARD;
4114 break;
4115 case SCTP_CID_ACTION_SKIP_ERR:
4116 /* Generate an ERROR chunk as response. */
4117 hdr = unk_chunk->chunk_hdr;
4118 err_chunk = sctp_make_op_error(asoc, unk_chunk,
4119 SCTP_ERROR_UNKNOWN_CHUNK, hdr,
Vlad Yasevich6383cfb2009-11-23 15:53:56 -05004120 WORD_ROUND(ntohs(hdr->length)),
4121 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004122 if (err_chunk) {
4123 sctp_add_cmd_sf(commands, SCTP_CMD_REPLY,
4124 SCTP_CHUNK(err_chunk));
4125 }
4126 /* Skip the chunk. */
4127 return SCTP_DISPOSITION_CONSUME;
4128 break;
4129 default:
4130 break;
4131 }
4132
4133 return SCTP_DISPOSITION_DISCARD;
4134}
4135
4136/*
4137 * Discard the chunk.
4138 *
4139 * Section: 0.2, 5.2.3, 5.2.5, 5.2.6, 6.0, 8.4.6, 8.5.1c, 9.2
4140 * [Too numerous to mention...]
4141 * Verification Tag: No verification needed.
4142 * Inputs
4143 * (endpoint, asoc, chunk)
4144 *
4145 * Outputs
4146 * (asoc, reply_msg, msg_up, timers, counters)
4147 *
4148 * The return value is the disposition of the chunk.
4149 */
4150sctp_disposition_t sctp_sf_discard_chunk(const struct sctp_endpoint *ep,
4151 const struct sctp_association *asoc,
4152 const sctp_subtype_t type,
4153 void *arg,
4154 sctp_cmd_seq_t *commands)
4155{
Vlad Yasevichece25df2007-09-07 16:30:54 -04004156 struct sctp_chunk *chunk = arg;
4157
4158 /* Make sure that the chunk has a valid length.
4159 * Since we don't know the chunk type, we use a general
4160 * chunkhdr structure to make a comparison.
4161 */
4162 if (!sctp_chunk_length_valid(chunk, sizeof(sctp_chunkhdr_t)))
4163 return sctp_sf_violation_chunklen(ep, asoc, type, arg,
4164 commands);
4165
Linus Torvalds1da177e2005-04-16 15:20:36 -07004166 SCTP_DEBUG_PRINTK("Chunk %d is discarded\n", type.chunk);
4167 return SCTP_DISPOSITION_DISCARD;
4168}
4169
4170/*
4171 * Discard the whole packet.
4172 *
4173 * Section: 8.4 2)
4174 *
4175 * 2) If the OOTB packet contains an ABORT chunk, the receiver MUST
4176 * silently discard the OOTB packet and take no further action.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004177 *
4178 * Verification Tag: No verification necessary
4179 *
4180 * Inputs
4181 * (endpoint, asoc, chunk)
4182 *
4183 * Outputs
4184 * (asoc, reply_msg, msg_up, timers, counters)
4185 *
4186 * The return value is the disposition of the chunk.
4187 */
4188sctp_disposition_t sctp_sf_pdiscard(const struct sctp_endpoint *ep,
4189 const struct sctp_association *asoc,
4190 const sctp_subtype_t type,
4191 void *arg,
4192 sctp_cmd_seq_t *commands)
4193{
Sridhar Samudralaac0b0462006-08-22 00:15:33 -07004194 SCTP_INC_STATS(SCTP_MIB_IN_PKT_DISCARDS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004195 sctp_add_cmd_sf(commands, SCTP_CMD_DISCARD_PACKET, SCTP_NULL());
4196
4197 return SCTP_DISPOSITION_CONSUME;
4198}
4199
4200
4201/*
4202 * The other end is violating protocol.
4203 *
4204 * Section: Not specified
4205 * Verification Tag: Not specified
4206 * Inputs
4207 * (endpoint, asoc, chunk)
4208 *
4209 * Outputs
4210 * (asoc, reply_msg, msg_up, timers, counters)
4211 *
4212 * We simply tag the chunk as a violation. The state machine will log
4213 * the violation and continue.
4214 */
4215sctp_disposition_t sctp_sf_violation(const struct sctp_endpoint *ep,
4216 const struct sctp_association *asoc,
4217 const sctp_subtype_t type,
4218 void *arg,
4219 sctp_cmd_seq_t *commands)
4220{
Vlad Yasevichece25df2007-09-07 16:30:54 -04004221 struct sctp_chunk *chunk = arg;
4222
4223 /* Make sure that the chunk has a valid length. */
4224 if (!sctp_chunk_length_valid(chunk, sizeof(sctp_chunkhdr_t)))
4225 return sctp_sf_violation_chunklen(ep, asoc, type, arg,
4226 commands);
4227
Linus Torvalds1da177e2005-04-16 15:20:36 -07004228 return SCTP_DISPOSITION_VIOLATION;
4229}
4230
Linus Torvalds1da177e2005-04-16 15:20:36 -07004231/*
Wei Yongjunaecedea2007-08-02 16:57:44 +08004232 * Common function to handle a protocol violation.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004233 */
Wei Yongjunaecedea2007-08-02 16:57:44 +08004234static sctp_disposition_t sctp_sf_abort_violation(
Vlad Yasevichece25df2007-09-07 16:30:54 -04004235 const struct sctp_endpoint *ep,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004236 const struct sctp_association *asoc,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004237 void *arg,
Wei Yongjunaecedea2007-08-02 16:57:44 +08004238 sctp_cmd_seq_t *commands,
4239 const __u8 *payload,
4240 const size_t paylen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004241{
Vlad Yasevichece25df2007-09-07 16:30:54 -04004242 struct sctp_packet *packet = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004243 struct sctp_chunk *chunk = arg;
4244 struct sctp_chunk *abort = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004245
Vlad Yasevichbbd0d592007-10-03 17:51:34 -07004246 /* SCTP-AUTH, Section 6.3:
4247 * It should be noted that if the receiver wants to tear
4248 * down an association in an authenticated way only, the
4249 * handling of malformed packets should not result in
4250 * tearing down the association.
4251 *
4252 * This means that if we only want to abort associations
4253 * in an authenticated way (i.e AUTH+ABORT), then we
Lucas De Marchi25985ed2011-03-30 22:57:33 -03004254 * can't destroy this association just because the packet
Vlad Yasevichbbd0d592007-10-03 17:51:34 -07004255 * was malformed.
4256 */
4257 if (sctp_auth_recv_cid(SCTP_CID_ABORT, asoc))
4258 goto discard;
4259
Jesper Juhl9abed242007-11-11 23:57:49 +01004260 /* Make the abort chunk. */
4261 abort = sctp_make_abort_violation(asoc, chunk, payload, paylen);
4262 if (!abort)
4263 goto nomem;
4264
Vlad Yasevichece25df2007-09-07 16:30:54 -04004265 if (asoc) {
Gui Jianfengf4ad85c2008-04-12 18:39:34 -07004266 /* Treat INIT-ACK as a special case during COOKIE-WAIT. */
4267 if (chunk->chunk_hdr->type == SCTP_CID_INIT_ACK &&
4268 !asoc->peer.i.init_tag) {
4269 sctp_initack_chunk_t *initack;
4270
4271 initack = (sctp_initack_chunk_t *)chunk->chunk_hdr;
4272 if (!sctp_chunk_length_valid(chunk,
4273 sizeof(sctp_initack_chunk_t)))
4274 abort->chunk_hdr->flags |= SCTP_CHUNK_FLAG_T;
4275 else {
4276 unsigned int inittag;
4277
4278 inittag = ntohl(initack->init_hdr.init_tag);
4279 sctp_add_cmd_sf(commands, SCTP_CMD_UPDATE_INITTAG,
4280 SCTP_U32(inittag));
4281 }
4282 }
4283
Vlad Yasevichece25df2007-09-07 16:30:54 -04004284 sctp_add_cmd_sf(commands, SCTP_CMD_REPLY, SCTP_CHUNK(abort));
4285 SCTP_INC_STATS(SCTP_MIB_OUTCTRLCHUNKS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004286
Vlad Yasevichece25df2007-09-07 16:30:54 -04004287 if (asoc->state <= SCTP_STATE_COOKIE_ECHOED) {
4288 sctp_add_cmd_sf(commands, SCTP_CMD_TIMER_STOP,
4289 SCTP_TO(SCTP_EVENT_TIMEOUT_T1_INIT));
4290 sctp_add_cmd_sf(commands, SCTP_CMD_SET_SK_ERR,
4291 SCTP_ERROR(ECONNREFUSED));
4292 sctp_add_cmd_sf(commands, SCTP_CMD_INIT_FAILED,
4293 SCTP_PERR(SCTP_ERROR_PROTO_VIOLATION));
4294 } else {
4295 sctp_add_cmd_sf(commands, SCTP_CMD_SET_SK_ERR,
4296 SCTP_ERROR(ECONNABORTED));
4297 sctp_add_cmd_sf(commands, SCTP_CMD_ASSOC_FAILED,
4298 SCTP_PERR(SCTP_ERROR_PROTO_VIOLATION));
4299 SCTP_DEC_STATS(SCTP_MIB_CURRESTAB);
4300 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004301 } else {
Vlad Yasevichece25df2007-09-07 16:30:54 -04004302 packet = sctp_ootb_pkt_new(asoc, chunk);
4303
4304 if (!packet)
4305 goto nomem_pkt;
4306
4307 if (sctp_test_T_bit(abort))
4308 packet->vtag = ntohl(chunk->sctp_hdr->vtag);
4309
4310 abort->skb->sk = ep->base.sk;
4311
4312 sctp_packet_append_chunk(packet, abort);
4313
4314 sctp_add_cmd_sf(commands, SCTP_CMD_SEND_PKT,
4315 SCTP_PACKET(packet));
4316
4317 SCTP_INC_STATS(SCTP_MIB_OUTCTRLCHUNKS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004318 }
4319
Linus Torvalds1da177e2005-04-16 15:20:36 -07004320 SCTP_INC_STATS(SCTP_MIB_ABORTEDS);
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09004321
Vlad Yasevich56eb82b2008-10-09 14:33:01 -07004322discard:
4323 sctp_sf_pdiscard(ep, asoc, SCTP_ST_CHUNK(0), arg, commands);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004324 return SCTP_DISPOSITION_ABORT;
4325
Vlad Yasevichece25df2007-09-07 16:30:54 -04004326nomem_pkt:
4327 sctp_chunk_free(abort);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004328nomem:
4329 return SCTP_DISPOSITION_NOMEM;
4330}
4331
Wei Yongjunaecedea2007-08-02 16:57:44 +08004332/*
4333 * Handle a protocol violation when the chunk length is invalid.
Frederik Schwarzer025dfda2008-10-16 19:02:37 +02004334 * "Invalid" length is identified as smaller than the minimal length a
Wei Yongjunaecedea2007-08-02 16:57:44 +08004335 * given chunk can be. For example, a SACK chunk has invalid length
Frederik Schwarzer025dfda2008-10-16 19:02:37 +02004336 * if its length is set to be smaller than the size of sctp_sack_chunk_t.
Wei Yongjunaecedea2007-08-02 16:57:44 +08004337 *
4338 * We inform the other end by sending an ABORT with a Protocol Violation
4339 * error code.
4340 *
4341 * Section: Not specified
4342 * Verification Tag: Nothing to do
4343 * Inputs
4344 * (endpoint, asoc, chunk)
4345 *
4346 * Outputs
4347 * (reply_msg, msg_up, counters)
4348 *
4349 * Generate an ABORT chunk and terminate the association.
4350 */
4351static sctp_disposition_t sctp_sf_violation_chunklen(
4352 const struct sctp_endpoint *ep,
4353 const struct sctp_association *asoc,
4354 const sctp_subtype_t type,
4355 void *arg,
4356 sctp_cmd_seq_t *commands)
4357{
Florian Westphal24448442008-03-23 22:46:34 -07004358 static const char err_str[]="The following chunk had invalid length:";
Wei Yongjunaecedea2007-08-02 16:57:44 +08004359
Vlad Yasevichece25df2007-09-07 16:30:54 -04004360 return sctp_sf_abort_violation(ep, asoc, arg, commands, err_str,
Wei Yongjunaecedea2007-08-02 16:57:44 +08004361 sizeof(err_str));
4362}
4363
Wei Yongjun6f4c6182007-09-19 17:19:52 +08004364/*
4365 * Handle a protocol violation when the parameter length is invalid.
Shan Wei33c7cfd2011-04-18 19:11:01 +00004366 * If the length is smaller than the minimum length of a given parameter,
4367 * or accumulated length in multi parameters exceeds the end of the chunk,
4368 * the length is considered as invalid.
Wei Yongjun6f4c6182007-09-19 17:19:52 +08004369 */
4370static sctp_disposition_t sctp_sf_violation_paramlen(
4371 const struct sctp_endpoint *ep,
4372 const struct sctp_association *asoc,
4373 const sctp_subtype_t type,
Wei Yongjunba016672008-09-30 05:32:24 -07004374 void *arg, void *ext,
4375 sctp_cmd_seq_t *commands)
4376{
4377 struct sctp_chunk *chunk = arg;
4378 struct sctp_paramhdr *param = ext;
4379 struct sctp_chunk *abort = NULL;
Wei Yongjun6f4c6182007-09-19 17:19:52 +08004380
Wei Yongjunba016672008-09-30 05:32:24 -07004381 if (sctp_auth_recv_cid(SCTP_CID_ABORT, asoc))
4382 goto discard;
4383
4384 /* Make the abort chunk. */
4385 abort = sctp_make_violation_paramlen(asoc, chunk, param);
4386 if (!abort)
4387 goto nomem;
4388
4389 sctp_add_cmd_sf(commands, SCTP_CMD_REPLY, SCTP_CHUNK(abort));
4390 SCTP_INC_STATS(SCTP_MIB_OUTCTRLCHUNKS);
4391
4392 sctp_add_cmd_sf(commands, SCTP_CMD_SET_SK_ERR,
4393 SCTP_ERROR(ECONNABORTED));
4394 sctp_add_cmd_sf(commands, SCTP_CMD_ASSOC_FAILED,
4395 SCTP_PERR(SCTP_ERROR_PROTO_VIOLATION));
4396 SCTP_DEC_STATS(SCTP_MIB_CURRESTAB);
Vlad Yasevich56eb82b2008-10-09 14:33:01 -07004397 SCTP_INC_STATS(SCTP_MIB_ABORTEDS);
Wei Yongjunba016672008-09-30 05:32:24 -07004398
4399discard:
4400 sctp_sf_pdiscard(ep, asoc, SCTP_ST_CHUNK(0), arg, commands);
Wei Yongjunba016672008-09-30 05:32:24 -07004401 return SCTP_DISPOSITION_ABORT;
4402nomem:
4403 return SCTP_DISPOSITION_NOMEM;
Wei Yongjun6f4c6182007-09-19 17:19:52 +08004404}
4405
Wei Yongjunaecedea2007-08-02 16:57:44 +08004406/* Handle a protocol violation when the peer trying to advance the
4407 * cumulative tsn ack to a point beyond the max tsn currently sent.
4408 *
4409 * We inform the other end by sending an ABORT with a Protocol Violation
4410 * error code.
4411 */
4412static sctp_disposition_t sctp_sf_violation_ctsn(
4413 const struct sctp_endpoint *ep,
4414 const struct sctp_association *asoc,
4415 const sctp_subtype_t type,
4416 void *arg,
4417 sctp_cmd_seq_t *commands)
4418{
Florian Westphal24448442008-03-23 22:46:34 -07004419 static const char err_str[]="The cumulative tsn ack beyond the max tsn currently sent:";
Wei Yongjunaecedea2007-08-02 16:57:44 +08004420
Vlad Yasevichece25df2007-09-07 16:30:54 -04004421 return sctp_sf_abort_violation(ep, asoc, arg, commands, err_str,
Wei Yongjunaecedea2007-08-02 16:57:44 +08004422 sizeof(err_str));
4423}
4424
Vlad Yasevichece25df2007-09-07 16:30:54 -04004425/* Handle protocol violation of an invalid chunk bundling. For example,
Lucas De Marchi25985ed2011-03-30 22:57:33 -03004426 * when we have an association and we receive bundled INIT-ACK, or
Vlad Yasevichece25df2007-09-07 16:30:54 -04004427 * SHUDOWN-COMPLETE, our peer is clearly violationg the "MUST NOT bundle"
Lucas De Marchi25985ed2011-03-30 22:57:33 -03004428 * statement from the specs. Additionally, there might be an attacker
Vlad Yasevichece25df2007-09-07 16:30:54 -04004429 * on the path and we may not want to continue this communication.
4430 */
4431static sctp_disposition_t sctp_sf_violation_chunk(
4432 const struct sctp_endpoint *ep,
4433 const struct sctp_association *asoc,
4434 const sctp_subtype_t type,
4435 void *arg,
4436 sctp_cmd_seq_t *commands)
4437{
Florian Westphal24448442008-03-23 22:46:34 -07004438 static const char err_str[]="The following chunk violates protocol:";
Vlad Yasevichece25df2007-09-07 16:30:54 -04004439
4440 if (!asoc)
4441 return sctp_sf_violation(ep, asoc, type, arg, commands);
4442
4443 return sctp_sf_abort_violation(ep, asoc, arg, commands, err_str,
4444 sizeof(err_str));
4445}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004446/***************************************************************************
4447 * These are the state functions for handling primitive (Section 10) events.
4448 ***************************************************************************/
4449/*
4450 * sctp_sf_do_prm_asoc
4451 *
4452 * Section: 10.1 ULP-to-SCTP
4453 * B) Associate
4454 *
4455 * Format: ASSOCIATE(local SCTP instance name, destination transport addr,
4456 * outbound stream count)
4457 * -> association id [,destination transport addr list] [,outbound stream
4458 * count]
4459 *
4460 * This primitive allows the upper layer to initiate an association to a
4461 * specific peer endpoint.
4462 *
4463 * The peer endpoint shall be specified by one of the transport addresses
4464 * which defines the endpoint (see Section 1.4). If the local SCTP
4465 * instance has not been initialized, the ASSOCIATE is considered an
4466 * error.
4467 * [This is not relevant for the kernel implementation since we do all
4468 * initialization at boot time. It we hadn't initialized we wouldn't
4469 * get anywhere near this code.]
4470 *
4471 * An association id, which is a local handle to the SCTP association,
4472 * will be returned on successful establishment of the association. If
4473 * SCTP is not able to open an SCTP association with the peer endpoint,
4474 * an error is returned.
4475 * [In the kernel implementation, the struct sctp_association needs to
4476 * be created BEFORE causing this primitive to run.]
4477 *
4478 * Other association parameters may be returned, including the
4479 * complete destination transport addresses of the peer as well as the
4480 * outbound stream count of the local endpoint. One of the transport
4481 * address from the returned destination addresses will be selected by
4482 * the local endpoint as default primary path for sending SCTP packets
4483 * to this peer. The returned "destination transport addr list" can
4484 * be used by the ULP to change the default primary path or to force
4485 * sending a packet to a specific transport address. [All of this
4486 * stuff happens when the INIT ACK arrives. This is a NON-BLOCKING
4487 * function.]
4488 *
4489 * Mandatory attributes:
4490 *
4491 * o local SCTP instance name - obtained from the INITIALIZE operation.
4492 * [This is the argument asoc.]
4493 * o destination transport addr - specified as one of the transport
4494 * addresses of the peer endpoint with which the association is to be
4495 * established.
4496 * [This is asoc->peer.active_path.]
4497 * o outbound stream count - the number of outbound streams the ULP
4498 * would like to open towards this peer endpoint.
4499 * [BUG: This is not currently implemented.]
4500 * Optional attributes:
4501 *
4502 * None.
4503 *
4504 * The return value is a disposition.
4505 */
4506sctp_disposition_t sctp_sf_do_prm_asoc(const struct sctp_endpoint *ep,
4507 const struct sctp_association *asoc,
4508 const sctp_subtype_t type,
4509 void *arg,
4510 sctp_cmd_seq_t *commands)
4511{
4512 struct sctp_chunk *repl;
Vlad Yasevichab38fb02008-04-12 18:40:06 -07004513 struct sctp_association* my_asoc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004514
4515 /* The comment below says that we enter COOKIE-WAIT AFTER
4516 * sending the INIT, but that doesn't actually work in our
4517 * implementation...
4518 */
4519 sctp_add_cmd_sf(commands, SCTP_CMD_NEW_STATE,
4520 SCTP_STATE(SCTP_STATE_COOKIE_WAIT));
4521
4522 /* RFC 2960 5.1 Normal Establishment of an Association
4523 *
4524 * A) "A" first sends an INIT chunk to "Z". In the INIT, "A"
4525 * must provide its Verification Tag (Tag_A) in the Initiate
4526 * Tag field. Tag_A SHOULD be a random number in the range of
4527 * 1 to 4294967295 (see 5.3.1 for Tag value selection). ...
4528 */
4529
4530 repl = sctp_make_init(asoc, &asoc->base.bind_addr, GFP_ATOMIC, 0);
4531 if (!repl)
4532 goto nomem;
4533
4534 /* Cast away the const modifier, as we want to just
4535 * rerun it through as a sideffect.
4536 */
Vlad Yasevichab38fb02008-04-12 18:40:06 -07004537 my_asoc = (struct sctp_association *)asoc;
4538 sctp_add_cmd_sf(commands, SCTP_CMD_NEW_ASOC, SCTP_ASOC(my_asoc));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004539
Frank Filz3f7a87d2005-06-20 13:14:57 -07004540 /* Choose transport for INIT. */
4541 sctp_add_cmd_sf(commands, SCTP_CMD_INIT_CHOOSE_TRANSPORT,
4542 SCTP_CHUNK(repl));
4543
Linus Torvalds1da177e2005-04-16 15:20:36 -07004544 /* After sending the INIT, "A" starts the T1-init timer and
4545 * enters the COOKIE-WAIT state.
4546 */
4547 sctp_add_cmd_sf(commands, SCTP_CMD_TIMER_START,
4548 SCTP_TO(SCTP_EVENT_TIMEOUT_T1_INIT));
4549 sctp_add_cmd_sf(commands, SCTP_CMD_REPLY, SCTP_CHUNK(repl));
4550 return SCTP_DISPOSITION_CONSUME;
4551
4552nomem:
4553 return SCTP_DISPOSITION_NOMEM;
4554}
4555
4556/*
4557 * Process the SEND primitive.
4558 *
4559 * Section: 10.1 ULP-to-SCTP
4560 * E) Send
4561 *
4562 * Format: SEND(association id, buffer address, byte count [,context]
4563 * [,stream id] [,life time] [,destination transport address]
4564 * [,unorder flag] [,no-bundle flag] [,payload protocol-id] )
4565 * -> result
4566 *
4567 * This is the main method to send user data via SCTP.
4568 *
4569 * Mandatory attributes:
4570 *
4571 * o association id - local handle to the SCTP association
4572 *
4573 * o buffer address - the location where the user message to be
4574 * transmitted is stored;
4575 *
4576 * o byte count - The size of the user data in number of bytes;
4577 *
4578 * Optional attributes:
4579 *
4580 * o context - an optional 32 bit integer that will be carried in the
4581 * sending failure notification to the ULP if the transportation of
4582 * this User Message fails.
4583 *
4584 * o stream id - to indicate which stream to send the data on. If not
4585 * specified, stream 0 will be used.
4586 *
4587 * o life time - specifies the life time of the user data. The user data
4588 * will not be sent by SCTP after the life time expires. This
4589 * parameter can be used to avoid efforts to transmit stale
4590 * user messages. SCTP notifies the ULP if the data cannot be
4591 * initiated to transport (i.e. sent to the destination via SCTP's
4592 * send primitive) within the life time variable. However, the
4593 * user data will be transmitted if SCTP has attempted to transmit a
4594 * chunk before the life time expired.
4595 *
4596 * o destination transport address - specified as one of the destination
4597 * transport addresses of the peer endpoint to which this packet
4598 * should be sent. Whenever possible, SCTP should use this destination
4599 * transport address for sending the packets, instead of the current
4600 * primary path.
4601 *
4602 * o unorder flag - this flag, if present, indicates that the user
4603 * would like the data delivered in an unordered fashion to the peer
4604 * (i.e., the U flag is set to 1 on all DATA chunks carrying this
4605 * message).
4606 *
4607 * o no-bundle flag - instructs SCTP not to bundle this user data with
4608 * other outbound DATA chunks. SCTP MAY still bundle even when
4609 * this flag is present, when faced with network congestion.
4610 *
4611 * o payload protocol-id - A 32 bit unsigned integer that is to be
4612 * passed to the peer indicating the type of payload protocol data
4613 * being transmitted. This value is passed as opaque data by SCTP.
4614 *
4615 * The return value is the disposition.
4616 */
4617sctp_disposition_t sctp_sf_do_prm_send(const struct sctp_endpoint *ep,
4618 const struct sctp_association *asoc,
4619 const sctp_subtype_t type,
4620 void *arg,
4621 sctp_cmd_seq_t *commands)
4622{
Vlad Yasevich9c5c62b2009-08-10 13:51:03 -04004623 struct sctp_datamsg *msg = arg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004624
Vlad Yasevich9c5c62b2009-08-10 13:51:03 -04004625 sctp_add_cmd_sf(commands, SCTP_CMD_SEND_MSG, SCTP_DATAMSG(msg));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004626 return SCTP_DISPOSITION_CONSUME;
4627}
4628
4629/*
4630 * Process the SHUTDOWN primitive.
4631 *
4632 * Section: 10.1:
4633 * C) Shutdown
4634 *
4635 * Format: SHUTDOWN(association id)
4636 * -> result
4637 *
4638 * Gracefully closes an association. Any locally queued user data
4639 * will be delivered to the peer. The association will be terminated only
4640 * after the peer acknowledges all the SCTP packets sent. A success code
4641 * will be returned on successful termination of the association. If
4642 * attempting to terminate the association results in a failure, an error
4643 * code shall be returned.
4644 *
4645 * Mandatory attributes:
4646 *
4647 * o association id - local handle to the SCTP association
4648 *
4649 * Optional attributes:
4650 *
4651 * None.
4652 *
4653 * The return value is the disposition.
4654 */
4655sctp_disposition_t sctp_sf_do_9_2_prm_shutdown(
4656 const struct sctp_endpoint *ep,
4657 const struct sctp_association *asoc,
4658 const sctp_subtype_t type,
4659 void *arg,
4660 sctp_cmd_seq_t *commands)
4661{
4662 int disposition;
4663
4664 /* From 9.2 Shutdown of an Association
4665 * Upon receipt of the SHUTDOWN primitive from its upper
4666 * layer, the endpoint enters SHUTDOWN-PENDING state and
4667 * remains there until all outstanding data has been
4668 * acknowledged by its peer. The endpoint accepts no new data
4669 * from its upper layer, but retransmits data to the far end
4670 * if necessary to fill gaps.
4671 */
4672 sctp_add_cmd_sf(commands, SCTP_CMD_NEW_STATE,
4673 SCTP_STATE(SCTP_STATE_SHUTDOWN_PENDING));
4674
Linus Torvalds1da177e2005-04-16 15:20:36 -07004675 disposition = SCTP_DISPOSITION_CONSUME;
4676 if (sctp_outq_is_empty(&asoc->outqueue)) {
4677 disposition = sctp_sf_do_9_2_start_shutdown(ep, asoc, type,
4678 arg, commands);
4679 }
4680 return disposition;
4681}
4682
4683/*
4684 * Process the ABORT primitive.
4685 *
4686 * Section: 10.1:
4687 * C) Abort
4688 *
4689 * Format: Abort(association id [, cause code])
4690 * -> result
4691 *
4692 * Ungracefully closes an association. Any locally queued user data
4693 * will be discarded and an ABORT chunk is sent to the peer. A success code
4694 * will be returned on successful abortion of the association. If
4695 * attempting to abort the association results in a failure, an error
4696 * code shall be returned.
4697 *
4698 * Mandatory attributes:
4699 *
4700 * o association id - local handle to the SCTP association
4701 *
4702 * Optional attributes:
4703 *
4704 * o cause code - reason of the abort to be passed to the peer
4705 *
4706 * None.
4707 *
4708 * The return value is the disposition.
4709 */
4710sctp_disposition_t sctp_sf_do_9_1_prm_abort(
4711 const struct sctp_endpoint *ep,
4712 const struct sctp_association *asoc,
4713 const sctp_subtype_t type,
4714 void *arg,
4715 sctp_cmd_seq_t *commands)
4716{
4717 /* From 9.1 Abort of an Association
4718 * Upon receipt of the ABORT primitive from its upper
4719 * layer, the endpoint enters CLOSED state and
4720 * discard all outstanding data has been
4721 * acknowledged by its peer. The endpoint accepts no new data
4722 * from its upper layer, but retransmits data to the far end
4723 * if necessary to fill gaps.
4724 */
Sridhar Samudralac164a9b2006-08-22 11:50:39 -07004725 struct sctp_chunk *abort = arg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004726 sctp_disposition_t retval;
4727
4728 retval = SCTP_DISPOSITION_CONSUME;
4729
Sridhar Samudralac164a9b2006-08-22 11:50:39 -07004730 sctp_add_cmd_sf(commands, SCTP_CMD_REPLY, SCTP_CHUNK(abort));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004731
4732 /* Even if we can't send the ABORT due to low memory delete the
4733 * TCB. This is a departure from our typical NOMEM handling.
4734 */
4735
Sridhar Samudrala8de8c872006-05-19 10:58:12 -07004736 sctp_add_cmd_sf(commands, SCTP_CMD_SET_SK_ERR,
4737 SCTP_ERROR(ECONNABORTED));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004738 /* Delete the established association. */
4739 sctp_add_cmd_sf(commands, SCTP_CMD_ASSOC_FAILED,
Al Viro5be291f2006-11-20 17:01:06 -08004740 SCTP_PERR(SCTP_ERROR_USER_ABORT));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004741
4742 SCTP_INC_STATS(SCTP_MIB_ABORTEDS);
4743 SCTP_DEC_STATS(SCTP_MIB_CURRESTAB);
4744
4745 return retval;
4746}
4747
4748/* We tried an illegal operation on an association which is closed. */
4749sctp_disposition_t sctp_sf_error_closed(const struct sctp_endpoint *ep,
4750 const struct sctp_association *asoc,
4751 const sctp_subtype_t type,
4752 void *arg,
4753 sctp_cmd_seq_t *commands)
4754{
4755 sctp_add_cmd_sf(commands, SCTP_CMD_REPORT_ERROR, SCTP_ERROR(-EINVAL));
4756 return SCTP_DISPOSITION_CONSUME;
4757}
4758
4759/* We tried an illegal operation on an association which is shutting
4760 * down.
4761 */
4762sctp_disposition_t sctp_sf_error_shutdown(const struct sctp_endpoint *ep,
4763 const struct sctp_association *asoc,
4764 const sctp_subtype_t type,
4765 void *arg,
4766 sctp_cmd_seq_t *commands)
4767{
4768 sctp_add_cmd_sf(commands, SCTP_CMD_REPORT_ERROR,
4769 SCTP_ERROR(-ESHUTDOWN));
4770 return SCTP_DISPOSITION_CONSUME;
4771}
4772
4773/*
4774 * sctp_cookie_wait_prm_shutdown
4775 *
4776 * Section: 4 Note: 2
4777 * Verification Tag:
4778 * Inputs
4779 * (endpoint, asoc)
4780 *
4781 * The RFC does not explicitly address this issue, but is the route through the
4782 * state table when someone issues a shutdown while in COOKIE_WAIT state.
4783 *
4784 * Outputs
4785 * (timers)
4786 */
4787sctp_disposition_t sctp_sf_cookie_wait_prm_shutdown(
4788 const struct sctp_endpoint *ep,
4789 const struct sctp_association *asoc,
4790 const sctp_subtype_t type,
4791 void *arg,
4792 sctp_cmd_seq_t *commands)
4793{
4794 sctp_add_cmd_sf(commands, SCTP_CMD_TIMER_STOP,
4795 SCTP_TO(SCTP_EVENT_TIMEOUT_T1_INIT));
4796
4797 sctp_add_cmd_sf(commands, SCTP_CMD_NEW_STATE,
4798 SCTP_STATE(SCTP_STATE_CLOSED));
4799
4800 SCTP_INC_STATS(SCTP_MIB_SHUTDOWNS);
4801
4802 sctp_add_cmd_sf(commands, SCTP_CMD_DELETE_TCB, SCTP_NULL());
4803
4804 return SCTP_DISPOSITION_DELETE_TCB;
4805}
4806
4807/*
4808 * sctp_cookie_echoed_prm_shutdown
4809 *
4810 * Section: 4 Note: 2
4811 * Verification Tag:
4812 * Inputs
4813 * (endpoint, asoc)
4814 *
4815 * The RFC does not explcitly address this issue, but is the route through the
4816 * state table when someone issues a shutdown while in COOKIE_ECHOED state.
4817 *
4818 * Outputs
4819 * (timers)
4820 */
4821sctp_disposition_t sctp_sf_cookie_echoed_prm_shutdown(
4822 const struct sctp_endpoint *ep,
4823 const struct sctp_association *asoc,
4824 const sctp_subtype_t type,
4825 void *arg, sctp_cmd_seq_t *commands)
4826{
4827 /* There is a single T1 timer, so we should be able to use
4828 * common function with the COOKIE-WAIT state.
4829 */
4830 return sctp_sf_cookie_wait_prm_shutdown(ep, asoc, type, arg, commands);
4831}
4832
4833/*
4834 * sctp_sf_cookie_wait_prm_abort
4835 *
4836 * Section: 4 Note: 2
4837 * Verification Tag:
4838 * Inputs
4839 * (endpoint, asoc)
4840 *
4841 * The RFC does not explicitly address this issue, but is the route through the
4842 * state table when someone issues an abort while in COOKIE_WAIT state.
4843 *
4844 * Outputs
4845 * (timers)
4846 */
4847sctp_disposition_t sctp_sf_cookie_wait_prm_abort(
4848 const struct sctp_endpoint *ep,
4849 const struct sctp_association *asoc,
4850 const sctp_subtype_t type,
4851 void *arg,
4852 sctp_cmd_seq_t *commands)
4853{
Sridhar Samudralac164a9b2006-08-22 11:50:39 -07004854 struct sctp_chunk *abort = arg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004855 sctp_disposition_t retval;
4856
4857 /* Stop T1-init timer */
4858 sctp_add_cmd_sf(commands, SCTP_CMD_TIMER_STOP,
4859 SCTP_TO(SCTP_EVENT_TIMEOUT_T1_INIT));
4860 retval = SCTP_DISPOSITION_CONSUME;
4861
Sridhar Samudralac164a9b2006-08-22 11:50:39 -07004862 sctp_add_cmd_sf(commands, SCTP_CMD_REPLY, SCTP_CHUNK(abort));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004863
4864 sctp_add_cmd_sf(commands, SCTP_CMD_NEW_STATE,
4865 SCTP_STATE(SCTP_STATE_CLOSED));
4866
4867 SCTP_INC_STATS(SCTP_MIB_ABORTEDS);
4868
4869 /* Even if we can't send the ABORT due to low memory delete the
4870 * TCB. This is a departure from our typical NOMEM handling.
4871 */
4872
Sridhar Samudrala8de8c872006-05-19 10:58:12 -07004873 sctp_add_cmd_sf(commands, SCTP_CMD_SET_SK_ERR,
4874 SCTP_ERROR(ECONNREFUSED));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004875 /* Delete the established association. */
4876 sctp_add_cmd_sf(commands, SCTP_CMD_INIT_FAILED,
Al Virodc251b22006-11-20 17:00:44 -08004877 SCTP_PERR(SCTP_ERROR_USER_ABORT));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004878
4879 return retval;
4880}
4881
4882/*
4883 * sctp_sf_cookie_echoed_prm_abort
4884 *
4885 * Section: 4 Note: 3
4886 * Verification Tag:
4887 * Inputs
4888 * (endpoint, asoc)
4889 *
4890 * The RFC does not explcitly address this issue, but is the route through the
4891 * state table when someone issues an abort while in COOKIE_ECHOED state.
4892 *
4893 * Outputs
4894 * (timers)
4895 */
4896sctp_disposition_t sctp_sf_cookie_echoed_prm_abort(
4897 const struct sctp_endpoint *ep,
4898 const struct sctp_association *asoc,
4899 const sctp_subtype_t type,
4900 void *arg,
4901 sctp_cmd_seq_t *commands)
4902{
4903 /* There is a single T1 timer, so we should be able to use
4904 * common function with the COOKIE-WAIT state.
4905 */
4906 return sctp_sf_cookie_wait_prm_abort(ep, asoc, type, arg, commands);
4907}
4908
4909/*
4910 * sctp_sf_shutdown_pending_prm_abort
4911 *
4912 * Inputs
4913 * (endpoint, asoc)
4914 *
4915 * The RFC does not explicitly address this issue, but is the route through the
4916 * state table when someone issues an abort while in SHUTDOWN-PENDING state.
4917 *
4918 * Outputs
4919 * (timers)
4920 */
4921sctp_disposition_t sctp_sf_shutdown_pending_prm_abort(
4922 const struct sctp_endpoint *ep,
4923 const struct sctp_association *asoc,
4924 const sctp_subtype_t type,
4925 void *arg,
4926 sctp_cmd_seq_t *commands)
4927{
4928 /* Stop the T5-shutdown guard timer. */
4929 sctp_add_cmd_sf(commands, SCTP_CMD_TIMER_STOP,
4930 SCTP_TO(SCTP_EVENT_TIMEOUT_T5_SHUTDOWN_GUARD));
4931
4932 return sctp_sf_do_9_1_prm_abort(ep, asoc, type, arg, commands);
4933}
4934
4935/*
4936 * sctp_sf_shutdown_sent_prm_abort
4937 *
4938 * Inputs
4939 * (endpoint, asoc)
4940 *
4941 * The RFC does not explicitly address this issue, but is the route through the
4942 * state table when someone issues an abort while in SHUTDOWN-SENT state.
4943 *
4944 * Outputs
4945 * (timers)
4946 */
4947sctp_disposition_t sctp_sf_shutdown_sent_prm_abort(
4948 const struct sctp_endpoint *ep,
4949 const struct sctp_association *asoc,
4950 const sctp_subtype_t type,
4951 void *arg,
4952 sctp_cmd_seq_t *commands)
4953{
4954 /* Stop the T2-shutdown timer. */
4955 sctp_add_cmd_sf(commands, SCTP_CMD_TIMER_STOP,
4956 SCTP_TO(SCTP_EVENT_TIMEOUT_T2_SHUTDOWN));
4957
4958 /* Stop the T5-shutdown guard timer. */
4959 sctp_add_cmd_sf(commands, SCTP_CMD_TIMER_STOP,
4960 SCTP_TO(SCTP_EVENT_TIMEOUT_T5_SHUTDOWN_GUARD));
4961
4962 return sctp_sf_do_9_1_prm_abort(ep, asoc, type, arg, commands);
4963}
4964
4965/*
4966 * sctp_sf_cookie_echoed_prm_abort
4967 *
4968 * Inputs
4969 * (endpoint, asoc)
4970 *
4971 * The RFC does not explcitly address this issue, but is the route through the
4972 * state table when someone issues an abort while in COOKIE_ECHOED state.
4973 *
4974 * Outputs
4975 * (timers)
4976 */
4977sctp_disposition_t sctp_sf_shutdown_ack_sent_prm_abort(
4978 const struct sctp_endpoint *ep,
4979 const struct sctp_association *asoc,
4980 const sctp_subtype_t type,
4981 void *arg,
4982 sctp_cmd_seq_t *commands)
4983{
4984 /* The same T2 timer, so we should be able to use
4985 * common function with the SHUTDOWN-SENT state.
4986 */
4987 return sctp_sf_shutdown_sent_prm_abort(ep, asoc, type, arg, commands);
4988}
4989
4990/*
4991 * Process the REQUESTHEARTBEAT primitive
4992 *
4993 * 10.1 ULP-to-SCTP
4994 * J) Request Heartbeat
4995 *
4996 * Format: REQUESTHEARTBEAT(association id, destination transport address)
4997 *
4998 * -> result
4999 *
5000 * Instructs the local endpoint to perform a HeartBeat on the specified
5001 * destination transport address of the given association. The returned
5002 * result should indicate whether the transmission of the HEARTBEAT
5003 * chunk to the destination address is successful.
5004 *
5005 * Mandatory attributes:
5006 *
5007 * o association id - local handle to the SCTP association
5008 *
5009 * o destination transport address - the transport address of the
5010 * association on which a heartbeat should be issued.
5011 */
5012sctp_disposition_t sctp_sf_do_prm_requestheartbeat(
5013 const struct sctp_endpoint *ep,
5014 const struct sctp_association *asoc,
5015 const sctp_subtype_t type,
5016 void *arg,
5017 sctp_cmd_seq_t *commands)
5018{
Vlad Yasevichfb785252007-03-19 17:02:03 -07005019 if (SCTP_DISPOSITION_NOMEM == sctp_sf_heartbeat(ep, asoc, type,
5020 (struct sctp_transport *)arg, commands))
5021 return SCTP_DISPOSITION_NOMEM;
5022
5023 /*
5024 * RFC 2960 (bis), section 8.3
5025 *
5026 * D) Request an on-demand HEARTBEAT on a specific destination
5027 * transport address of a given association.
5028 *
5029 * The endpoint should increment the respective error counter of
5030 * the destination transport address each time a HEARTBEAT is sent
5031 * to that address and not acknowledged within one RTO.
5032 *
5033 */
Vlad Yasevich7e990132009-03-02 09:46:14 +00005034 sctp_add_cmd_sf(commands, SCTP_CMD_TRANSPORT_HB_SENT,
Vlad Yasevichfb785252007-03-19 17:02:03 -07005035 SCTP_TRANSPORT(arg));
5036 return SCTP_DISPOSITION_CONSUME;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005037}
5038
5039/*
5040 * ADDIP Section 4.1 ASCONF Chunk Procedures
5041 * When an endpoint has an ASCONF signaled change to be sent to the
5042 * remote endpoint it should do A1 to A9
5043 */
5044sctp_disposition_t sctp_sf_do_prm_asconf(const struct sctp_endpoint *ep,
5045 const struct sctp_association *asoc,
5046 const sctp_subtype_t type,
5047 void *arg,
5048 sctp_cmd_seq_t *commands)
5049{
5050 struct sctp_chunk *chunk = arg;
5051
5052 sctp_add_cmd_sf(commands, SCTP_CMD_SETUP_T4, SCTP_CHUNK(chunk));
5053 sctp_add_cmd_sf(commands, SCTP_CMD_TIMER_START,
5054 SCTP_TO(SCTP_EVENT_TIMEOUT_T4_RTO));
5055 sctp_add_cmd_sf(commands, SCTP_CMD_REPLY, SCTP_CHUNK(chunk));
5056 return SCTP_DISPOSITION_CONSUME;
5057}
5058
5059/*
5060 * Ignore the primitive event
5061 *
5062 * The return value is the disposition of the primitive.
5063 */
5064sctp_disposition_t sctp_sf_ignore_primitive(
5065 const struct sctp_endpoint *ep,
5066 const struct sctp_association *asoc,
5067 const sctp_subtype_t type,
5068 void *arg,
5069 sctp_cmd_seq_t *commands)
5070{
5071 SCTP_DEBUG_PRINTK("Primitive type %d is ignored.\n", type.primitive);
5072 return SCTP_DISPOSITION_DISCARD;
5073}
5074
5075/***************************************************************************
5076 * These are the state functions for the OTHER events.
5077 ***************************************************************************/
5078
5079/*
Wei Yongjune1cdd552011-04-17 17:29:03 +00005080 * When the SCTP stack has no more user data to send or retransmit, this
5081 * notification is given to the user. Also, at the time when a user app
5082 * subscribes to this event, if there is no data to be sent or
5083 * retransmit, the stack will immediately send up this notification.
5084 */
5085sctp_disposition_t sctp_sf_do_no_pending_tsn(
5086 const struct sctp_endpoint *ep,
5087 const struct sctp_association *asoc,
5088 const sctp_subtype_t type,
5089 void *arg,
5090 sctp_cmd_seq_t *commands)
5091{
5092 struct sctp_ulpevent *event;
5093
5094 event = sctp_ulpevent_make_sender_dry_event(asoc, GFP_ATOMIC);
5095 if (!event)
5096 return SCTP_DISPOSITION_NOMEM;
5097
5098 sctp_add_cmd_sf(commands, SCTP_CMD_EVENT_ULP, SCTP_ULPEVENT(event));
5099
5100 return SCTP_DISPOSITION_CONSUME;
5101}
5102
5103/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005104 * Start the shutdown negotiation.
5105 *
5106 * From Section 9.2:
5107 * Once all its outstanding data has been acknowledged, the endpoint
5108 * shall send a SHUTDOWN chunk to its peer including in the Cumulative
5109 * TSN Ack field the last sequential TSN it has received from the peer.
5110 * It shall then start the T2-shutdown timer and enter the SHUTDOWN-SENT
5111 * state. If the timer expires, the endpoint must re-send the SHUTDOWN
5112 * with the updated last sequential TSN received from its peer.
5113 *
5114 * The return value is the disposition.
5115 */
5116sctp_disposition_t sctp_sf_do_9_2_start_shutdown(
5117 const struct sctp_endpoint *ep,
5118 const struct sctp_association *asoc,
5119 const sctp_subtype_t type,
5120 void *arg,
5121 sctp_cmd_seq_t *commands)
5122{
5123 struct sctp_chunk *reply;
5124
5125 /* Once all its outstanding data has been acknowledged, the
5126 * endpoint shall send a SHUTDOWN chunk to its peer including
5127 * in the Cumulative TSN Ack field the last sequential TSN it
5128 * has received from the peer.
5129 */
5130 reply = sctp_make_shutdown(asoc, NULL);
5131 if (!reply)
5132 goto nomem;
5133
5134 /* Set the transport for the SHUTDOWN chunk and the timeout for the
5135 * T2-shutdown timer.
5136 */
5137 sctp_add_cmd_sf(commands, SCTP_CMD_SETUP_T2, SCTP_CHUNK(reply));
5138
5139 /* It shall then start the T2-shutdown timer */
5140 sctp_add_cmd_sf(commands, SCTP_CMD_TIMER_START,
5141 SCTP_TO(SCTP_EVENT_TIMEOUT_T2_SHUTDOWN));
5142
Wei Yongjun536428a2008-09-05 08:55:26 +08005143 /* RFC 4960 Section 9.2
5144 * The sender of the SHUTDOWN MAY also start an overall guard timer
5145 * 'T5-shutdown-guard' to bound the overall time for shutdown sequence.
5146 */
5147 sctp_add_cmd_sf(commands, SCTP_CMD_TIMER_START,
5148 SCTP_TO(SCTP_EVENT_TIMEOUT_T5_SHUTDOWN_GUARD));
5149
Linus Torvalds1da177e2005-04-16 15:20:36 -07005150 if (asoc->autoclose)
5151 sctp_add_cmd_sf(commands, SCTP_CMD_TIMER_STOP,
5152 SCTP_TO(SCTP_EVENT_TIMEOUT_AUTOCLOSE));
5153
5154 /* and enter the SHUTDOWN-SENT state. */
5155 sctp_add_cmd_sf(commands, SCTP_CMD_NEW_STATE,
5156 SCTP_STATE(SCTP_STATE_SHUTDOWN_SENT));
5157
5158 /* sctp-implguide 2.10 Issues with Heartbeating and failover
5159 *
5160 * HEARTBEAT ... is discontinued after sending either SHUTDOWN
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09005161 * or SHUTDOWN-ACK.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005162 */
5163 sctp_add_cmd_sf(commands, SCTP_CMD_HB_TIMERS_STOP, SCTP_NULL());
5164
5165 sctp_add_cmd_sf(commands, SCTP_CMD_REPLY, SCTP_CHUNK(reply));
5166
5167 return SCTP_DISPOSITION_CONSUME;
5168
5169nomem:
5170 return SCTP_DISPOSITION_NOMEM;
5171}
5172
5173/*
5174 * Generate a SHUTDOWN ACK now that everything is SACK'd.
5175 *
5176 * From Section 9.2:
5177 *
5178 * If it has no more outstanding DATA chunks, the SHUTDOWN receiver
5179 * shall send a SHUTDOWN ACK and start a T2-shutdown timer of its own,
5180 * entering the SHUTDOWN-ACK-SENT state. If the timer expires, the
5181 * endpoint must re-send the SHUTDOWN ACK.
5182 *
5183 * The return value is the disposition.
5184 */
5185sctp_disposition_t sctp_sf_do_9_2_shutdown_ack(
5186 const struct sctp_endpoint *ep,
5187 const struct sctp_association *asoc,
5188 const sctp_subtype_t type,
5189 void *arg,
5190 sctp_cmd_seq_t *commands)
5191{
5192 struct sctp_chunk *chunk = (struct sctp_chunk *) arg;
5193 struct sctp_chunk *reply;
5194
5195 /* There are 2 ways of getting here:
5196 * 1) called in response to a SHUTDOWN chunk
5197 * 2) called when SCTP_EVENT_NO_PENDING_TSN event is issued.
5198 *
5199 * For the case (2), the arg parameter is set to NULL. We need
5200 * to check that we have a chunk before accessing it's fields.
5201 */
5202 if (chunk) {
5203 if (!sctp_vtag_verify(chunk, asoc))
5204 return sctp_sf_pdiscard(ep, asoc, type, arg, commands);
5205
5206 /* Make sure that the SHUTDOWN chunk has a valid length. */
5207 if (!sctp_chunk_length_valid(chunk, sizeof(struct sctp_shutdown_chunk_t)))
5208 return sctp_sf_violation_chunklen(ep, asoc, type, arg,
5209 commands);
5210 }
5211
5212 /* If it has no more outstanding DATA chunks, the SHUTDOWN receiver
5213 * shall send a SHUTDOWN ACK ...
5214 */
5215 reply = sctp_make_shutdown_ack(asoc, chunk);
5216 if (!reply)
5217 goto nomem;
5218
5219 /* Set the transport for the SHUTDOWN ACK chunk and the timeout for
5220 * the T2-shutdown timer.
5221 */
5222 sctp_add_cmd_sf(commands, SCTP_CMD_SETUP_T2, SCTP_CHUNK(reply));
5223
5224 /* and start/restart a T2-shutdown timer of its own, */
5225 sctp_add_cmd_sf(commands, SCTP_CMD_TIMER_RESTART,
5226 SCTP_TO(SCTP_EVENT_TIMEOUT_T2_SHUTDOWN));
5227
5228 if (asoc->autoclose)
5229 sctp_add_cmd_sf(commands, SCTP_CMD_TIMER_STOP,
5230 SCTP_TO(SCTP_EVENT_TIMEOUT_AUTOCLOSE));
5231
5232 /* Enter the SHUTDOWN-ACK-SENT state. */
5233 sctp_add_cmd_sf(commands, SCTP_CMD_NEW_STATE,
5234 SCTP_STATE(SCTP_STATE_SHUTDOWN_ACK_SENT));
5235
5236 /* sctp-implguide 2.10 Issues with Heartbeating and failover
5237 *
5238 * HEARTBEAT ... is discontinued after sending either SHUTDOWN
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09005239 * or SHUTDOWN-ACK.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005240 */
5241 sctp_add_cmd_sf(commands, SCTP_CMD_HB_TIMERS_STOP, SCTP_NULL());
5242
5243 sctp_add_cmd_sf(commands, SCTP_CMD_REPLY, SCTP_CHUNK(reply));
5244
5245 return SCTP_DISPOSITION_CONSUME;
5246
5247nomem:
5248 return SCTP_DISPOSITION_NOMEM;
5249}
5250
5251/*
5252 * Ignore the event defined as other
5253 *
5254 * The return value is the disposition of the event.
5255 */
5256sctp_disposition_t sctp_sf_ignore_other(const struct sctp_endpoint *ep,
5257 const struct sctp_association *asoc,
5258 const sctp_subtype_t type,
5259 void *arg,
5260 sctp_cmd_seq_t *commands)
5261{
5262 SCTP_DEBUG_PRINTK("The event other type %d is ignored\n", type.other);
5263 return SCTP_DISPOSITION_DISCARD;
5264}
5265
5266/************************************************************
5267 * These are the state functions for handling timeout events.
5268 ************************************************************/
5269
5270/*
5271 * RTX Timeout
5272 *
5273 * Section: 6.3.3 Handle T3-rtx Expiration
5274 *
5275 * Whenever the retransmission timer T3-rtx expires for a destination
5276 * address, do the following:
5277 * [See below]
5278 *
5279 * The return value is the disposition of the chunk.
5280 */
5281sctp_disposition_t sctp_sf_do_6_3_3_rtx(const struct sctp_endpoint *ep,
5282 const struct sctp_association *asoc,
5283 const sctp_subtype_t type,
5284 void *arg,
5285 sctp_cmd_seq_t *commands)
5286{
5287 struct sctp_transport *transport = arg;
5288
Sridhar Samudralaac0b0462006-08-22 00:15:33 -07005289 SCTP_INC_STATS(SCTP_MIB_T3_RTX_EXPIREDS);
5290
Linus Torvalds1da177e2005-04-16 15:20:36 -07005291 if (asoc->overall_error_count >= asoc->max_retrans) {
Sridhar Samudrala8de8c872006-05-19 10:58:12 -07005292 sctp_add_cmd_sf(commands, SCTP_CMD_SET_SK_ERR,
5293 SCTP_ERROR(ETIMEDOUT));
Linus Torvalds1da177e2005-04-16 15:20:36 -07005294 /* CMD_ASSOC_FAILED calls CMD_DELETE_TCB. */
5295 sctp_add_cmd_sf(commands, SCTP_CMD_ASSOC_FAILED,
Al Viro5be291f2006-11-20 17:01:06 -08005296 SCTP_PERR(SCTP_ERROR_NO_ERROR));
Linus Torvalds1da177e2005-04-16 15:20:36 -07005297 SCTP_INC_STATS(SCTP_MIB_ABORTEDS);
5298 SCTP_DEC_STATS(SCTP_MIB_CURRESTAB);
5299 return SCTP_DISPOSITION_DELETE_TCB;
5300 }
5301
5302 /* E1) For the destination address for which the timer
5303 * expires, adjust its ssthresh with rules defined in Section
5304 * 7.2.3 and set the cwnd <- MTU.
5305 */
5306
5307 /* E2) For the destination address for which the timer
5308 * expires, set RTO <- RTO * 2 ("back off the timer"). The
5309 * maximum value discussed in rule C7 above (RTO.max) may be
5310 * used to provide an upper bound to this doubling operation.
5311 */
5312
5313 /* E3) Determine how many of the earliest (i.e., lowest TSN)
5314 * outstanding DATA chunks for the address for which the
5315 * T3-rtx has expired will fit into a single packet, subject
5316 * to the MTU constraint for the path corresponding to the
5317 * destination transport address to which the retransmission
5318 * is being sent (this may be different from the address for
5319 * which the timer expires [see Section 6.4]). Call this
5320 * value K. Bundle and retransmit those K DATA chunks in a
5321 * single packet to the destination endpoint.
5322 *
5323 * Note: Any DATA chunks that were sent to the address for
5324 * which the T3-rtx timer expired but did not fit in one MTU
5325 * (rule E3 above), should be marked for retransmission and
5326 * sent as soon as cwnd allows (normally when a SACK arrives).
5327 */
5328
Linus Torvalds1da177e2005-04-16 15:20:36 -07005329 /* Do some failure management (Section 8.2). */
5330 sctp_add_cmd_sf(commands, SCTP_CMD_STRIKE, SCTP_TRANSPORT(transport));
5331
Vlad Yasevich1845a572007-02-21 02:06:19 -08005332 /* NB: Rules E4 and F1 are implicit in R1. */
5333 sctp_add_cmd_sf(commands, SCTP_CMD_RETRAN, SCTP_TRANSPORT(transport));
5334
Linus Torvalds1da177e2005-04-16 15:20:36 -07005335 return SCTP_DISPOSITION_CONSUME;
5336}
5337
5338/*
5339 * Generate delayed SACK on timeout
5340 *
5341 * Section: 6.2 Acknowledgement on Reception of DATA Chunks
5342 *
5343 * The guidelines on delayed acknowledgement algorithm specified in
5344 * Section 4.2 of [RFC2581] SHOULD be followed. Specifically, an
5345 * acknowledgement SHOULD be generated for at least every second packet
5346 * (not every second DATA chunk) received, and SHOULD be generated
5347 * within 200 ms of the arrival of any unacknowledged DATA chunk. In
5348 * some situations it may be beneficial for an SCTP transmitter to be
5349 * more conservative than the algorithms detailed in this document
5350 * allow. However, an SCTP transmitter MUST NOT be more aggressive than
5351 * the following algorithms allow.
5352 */
5353sctp_disposition_t sctp_sf_do_6_2_sack(const struct sctp_endpoint *ep,
5354 const struct sctp_association *asoc,
5355 const sctp_subtype_t type,
5356 void *arg,
5357 sctp_cmd_seq_t *commands)
5358{
Sridhar Samudralaac0b0462006-08-22 00:15:33 -07005359 SCTP_INC_STATS(SCTP_MIB_DELAY_SACK_EXPIREDS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005360 sctp_add_cmd_sf(commands, SCTP_CMD_GEN_SACK, SCTP_FORCE());
5361 return SCTP_DISPOSITION_CONSUME;
5362}
5363
5364/*
Frank Filz3f7a87d2005-06-20 13:14:57 -07005365 * sctp_sf_t1_init_timer_expire
Linus Torvalds1da177e2005-04-16 15:20:36 -07005366 *
5367 * Section: 4 Note: 2
5368 * Verification Tag:
5369 * Inputs
5370 * (endpoint, asoc)
5371 *
5372 * RFC 2960 Section 4 Notes
5373 * 2) If the T1-init timer expires, the endpoint MUST retransmit INIT
5374 * and re-start the T1-init timer without changing state. This MUST
5375 * be repeated up to 'Max.Init.Retransmits' times. After that, the
5376 * endpoint MUST abort the initialization process and report the
5377 * error to SCTP user.
5378 *
Frank Filz3f7a87d2005-06-20 13:14:57 -07005379 * Outputs
5380 * (timers, events)
5381 *
5382 */
5383sctp_disposition_t sctp_sf_t1_init_timer_expire(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{
5389 struct sctp_chunk *repl = NULL;
5390 struct sctp_bind_addr *bp;
5391 int attempts = asoc->init_err_counter + 1;
5392
5393 SCTP_DEBUG_PRINTK("Timer T1 expired (INIT).\n");
Sridhar Samudralaac0b0462006-08-22 00:15:33 -07005394 SCTP_INC_STATS(SCTP_MIB_T1_INIT_EXPIREDS);
Frank Filz3f7a87d2005-06-20 13:14:57 -07005395
Vlad Yasevich81845c22006-01-30 15:59:54 -08005396 if (attempts <= asoc->max_init_attempts) {
Frank Filz3f7a87d2005-06-20 13:14:57 -07005397 bp = (struct sctp_bind_addr *) &asoc->base.bind_addr;
5398 repl = sctp_make_init(asoc, bp, GFP_ATOMIC, 0);
5399 if (!repl)
5400 return SCTP_DISPOSITION_NOMEM;
5401
5402 /* Choose transport for INIT. */
5403 sctp_add_cmd_sf(commands, SCTP_CMD_INIT_CHOOSE_TRANSPORT,
5404 SCTP_CHUNK(repl));
5405
5406 /* Issue a sideeffect to do the needed accounting. */
5407 sctp_add_cmd_sf(commands, SCTP_CMD_INIT_RESTART,
5408 SCTP_TO(SCTP_EVENT_TIMEOUT_T1_INIT));
5409
5410 sctp_add_cmd_sf(commands, SCTP_CMD_REPLY, SCTP_CHUNK(repl));
5411 } else {
5412 SCTP_DEBUG_PRINTK("Giving up on INIT, attempts: %d"
5413 " max_init_attempts: %d\n",
5414 attempts, asoc->max_init_attempts);
Sridhar Samudrala8de8c872006-05-19 10:58:12 -07005415 sctp_add_cmd_sf(commands, SCTP_CMD_SET_SK_ERR,
5416 SCTP_ERROR(ETIMEDOUT));
Frank Filz3f7a87d2005-06-20 13:14:57 -07005417 sctp_add_cmd_sf(commands, SCTP_CMD_INIT_FAILED,
Al Virodc251b22006-11-20 17:00:44 -08005418 SCTP_PERR(SCTP_ERROR_NO_ERROR));
Frank Filz3f7a87d2005-06-20 13:14:57 -07005419 return SCTP_DISPOSITION_DELETE_TCB;
5420 }
5421
5422 return SCTP_DISPOSITION_CONSUME;
5423}
5424
5425/*
5426 * sctp_sf_t1_cookie_timer_expire
5427 *
5428 * Section: 4 Note: 2
5429 * Verification Tag:
5430 * Inputs
5431 * (endpoint, asoc)
5432 *
5433 * RFC 2960 Section 4 Notes
5434 * 3) If the T1-cookie timer expires, the endpoint MUST retransmit
Linus Torvalds1da177e2005-04-16 15:20:36 -07005435 * COOKIE ECHO and re-start the T1-cookie timer without changing
5436 * state. This MUST be repeated up to 'Max.Init.Retransmits' times.
5437 * After that, the endpoint MUST abort the initialization process and
5438 * report the error to SCTP user.
5439 *
5440 * Outputs
5441 * (timers, events)
5442 *
5443 */
Frank Filz3f7a87d2005-06-20 13:14:57 -07005444sctp_disposition_t sctp_sf_t1_cookie_timer_expire(const struct sctp_endpoint *ep,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005445 const struct sctp_association *asoc,
5446 const sctp_subtype_t type,
5447 void *arg,
5448 sctp_cmd_seq_t *commands)
5449{
Frank Filz3f7a87d2005-06-20 13:14:57 -07005450 struct sctp_chunk *repl = NULL;
5451 int attempts = asoc->init_err_counter + 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005452
Frank Filz3f7a87d2005-06-20 13:14:57 -07005453 SCTP_DEBUG_PRINTK("Timer T1 expired (COOKIE-ECHO).\n");
Sridhar Samudralaac0b0462006-08-22 00:15:33 -07005454 SCTP_INC_STATS(SCTP_MIB_T1_COOKIE_EXPIREDS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005455
Vlad Yasevich81845c22006-01-30 15:59:54 -08005456 if (attempts <= asoc->max_init_attempts) {
Frank Filz3f7a87d2005-06-20 13:14:57 -07005457 repl = sctp_make_cookie_echo(asoc, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005458 if (!repl)
Frank Filz3f7a87d2005-06-20 13:14:57 -07005459 return SCTP_DISPOSITION_NOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005460
Vlad Yasevich96cd0d32008-09-08 14:00:26 -04005461 sctp_add_cmd_sf(commands, SCTP_CMD_INIT_CHOOSE_TRANSPORT,
5462 SCTP_CHUNK(repl));
Linus Torvalds1da177e2005-04-16 15:20:36 -07005463 /* Issue a sideeffect to do the needed accounting. */
Frank Filz3f7a87d2005-06-20 13:14:57 -07005464 sctp_add_cmd_sf(commands, SCTP_CMD_COOKIEECHO_RESTART,
5465 SCTP_TO(SCTP_EVENT_TIMEOUT_T1_COOKIE));
5466
Linus Torvalds1da177e2005-04-16 15:20:36 -07005467 sctp_add_cmd_sf(commands, SCTP_CMD_REPLY, SCTP_CHUNK(repl));
5468 } else {
Sridhar Samudrala8de8c872006-05-19 10:58:12 -07005469 sctp_add_cmd_sf(commands, SCTP_CMD_SET_SK_ERR,
5470 SCTP_ERROR(ETIMEDOUT));
Linus Torvalds1da177e2005-04-16 15:20:36 -07005471 sctp_add_cmd_sf(commands, SCTP_CMD_INIT_FAILED,
Al Virodc251b22006-11-20 17:00:44 -08005472 SCTP_PERR(SCTP_ERROR_NO_ERROR));
Linus Torvalds1da177e2005-04-16 15:20:36 -07005473 return SCTP_DISPOSITION_DELETE_TCB;
5474 }
5475
5476 return SCTP_DISPOSITION_CONSUME;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005477}
5478
5479/* RFC2960 9.2 If the timer expires, the endpoint must re-send the SHUTDOWN
5480 * with the updated last sequential TSN received from its peer.
5481 *
5482 * An endpoint should limit the number of retransmissions of the
5483 * SHUTDOWN chunk to the protocol parameter 'Association.Max.Retrans'.
5484 * If this threshold is exceeded the endpoint should destroy the TCB and
5485 * MUST report the peer endpoint unreachable to the upper layer (and
5486 * thus the association enters the CLOSED state). The reception of any
5487 * packet from its peer (i.e. as the peer sends all of its queued DATA
5488 * chunks) should clear the endpoint's retransmission count and restart
5489 * the T2-Shutdown timer, giving its peer ample opportunity to transmit
5490 * all of its queued DATA chunks that have not yet been sent.
5491 */
5492sctp_disposition_t sctp_sf_t2_timer_expire(const struct sctp_endpoint *ep,
5493 const struct sctp_association *asoc,
5494 const sctp_subtype_t type,
5495 void *arg,
5496 sctp_cmd_seq_t *commands)
5497{
5498 struct sctp_chunk *reply = NULL;
5499
5500 SCTP_DEBUG_PRINTK("Timer T2 expired.\n");
Sridhar Samudralaac0b0462006-08-22 00:15:33 -07005501 SCTP_INC_STATS(SCTP_MIB_T2_SHUTDOWN_EXPIREDS);
5502
Neil Horman58fbbed2008-02-29 11:40:56 -08005503 ((struct sctp_association *)asoc)->shutdown_retries++;
5504
Linus Torvalds1da177e2005-04-16 15:20:36 -07005505 if (asoc->overall_error_count >= asoc->max_retrans) {
Sridhar Samudrala8de8c872006-05-19 10:58:12 -07005506 sctp_add_cmd_sf(commands, SCTP_CMD_SET_SK_ERR,
5507 SCTP_ERROR(ETIMEDOUT));
Linus Torvalds1da177e2005-04-16 15:20:36 -07005508 /* Note: CMD_ASSOC_FAILED calls CMD_DELETE_TCB. */
5509 sctp_add_cmd_sf(commands, SCTP_CMD_ASSOC_FAILED,
Al Viro5be291f2006-11-20 17:01:06 -08005510 SCTP_PERR(SCTP_ERROR_NO_ERROR));
Linus Torvalds1da177e2005-04-16 15:20:36 -07005511 SCTP_INC_STATS(SCTP_MIB_ABORTEDS);
5512 SCTP_DEC_STATS(SCTP_MIB_CURRESTAB);
5513 return SCTP_DISPOSITION_DELETE_TCB;
5514 }
5515
5516 switch (asoc->state) {
5517 case SCTP_STATE_SHUTDOWN_SENT:
5518 reply = sctp_make_shutdown(asoc, NULL);
5519 break;
5520
5521 case SCTP_STATE_SHUTDOWN_ACK_SENT:
5522 reply = sctp_make_shutdown_ack(asoc, NULL);
5523 break;
5524
5525 default:
5526 BUG();
5527 break;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07005528 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005529
5530 if (!reply)
5531 goto nomem;
5532
Wei Yongjun6345b192009-04-26 23:13:35 +08005533 /* Do some failure management (Section 8.2).
5534 * If we remove the transport an SHUTDOWN was last sent to, don't
5535 * do failure management.
5536 */
5537 if (asoc->shutdown_last_sent_to)
5538 sctp_add_cmd_sf(commands, SCTP_CMD_STRIKE,
5539 SCTP_TRANSPORT(asoc->shutdown_last_sent_to));
Linus Torvalds1da177e2005-04-16 15:20:36 -07005540
5541 /* Set the transport for the SHUTDOWN/ACK chunk and the timeout for
5542 * the T2-shutdown timer.
5543 */
5544 sctp_add_cmd_sf(commands, SCTP_CMD_SETUP_T2, SCTP_CHUNK(reply));
5545
5546 /* Restart the T2-shutdown timer. */
5547 sctp_add_cmd_sf(commands, SCTP_CMD_TIMER_RESTART,
5548 SCTP_TO(SCTP_EVENT_TIMEOUT_T2_SHUTDOWN));
5549 sctp_add_cmd_sf(commands, SCTP_CMD_REPLY, SCTP_CHUNK(reply));
5550 return SCTP_DISPOSITION_CONSUME;
5551
5552nomem:
5553 return SCTP_DISPOSITION_NOMEM;
5554}
5555
5556/*
5557 * ADDIP Section 4.1 ASCONF CHunk Procedures
5558 * If the T4 RTO timer expires the endpoint should do B1 to B5
5559 */
5560sctp_disposition_t sctp_sf_t4_timer_expire(
5561 const struct sctp_endpoint *ep,
5562 const struct sctp_association *asoc,
5563 const sctp_subtype_t type,
5564 void *arg,
5565 sctp_cmd_seq_t *commands)
5566{
5567 struct sctp_chunk *chunk = asoc->addip_last_asconf;
5568 struct sctp_transport *transport = chunk->transport;
5569
Sridhar Samudralaac0b0462006-08-22 00:15:33 -07005570 SCTP_INC_STATS(SCTP_MIB_T4_RTO_EXPIREDS);
5571
Linus Torvalds1da177e2005-04-16 15:20:36 -07005572 /* ADDIP 4.1 B1) Increment the error counters and perform path failure
5573 * detection on the appropriate destination address as defined in
5574 * RFC2960 [5] section 8.1 and 8.2.
5575 */
Wei Yongjun10a43ce2009-04-26 23:14:42 +08005576 if (transport)
5577 sctp_add_cmd_sf(commands, SCTP_CMD_STRIKE,
5578 SCTP_TRANSPORT(transport));
Linus Torvalds1da177e2005-04-16 15:20:36 -07005579
5580 /* Reconfig T4 timer and transport. */
5581 sctp_add_cmd_sf(commands, SCTP_CMD_SETUP_T4, SCTP_CHUNK(chunk));
5582
5583 /* ADDIP 4.1 B2) Increment the association error counters and perform
5584 * endpoint failure detection on the association as defined in
5585 * RFC2960 [5] section 8.1 and 8.2.
5586 * association error counter is incremented in SCTP_CMD_STRIKE.
5587 */
5588 if (asoc->overall_error_count >= asoc->max_retrans) {
5589 sctp_add_cmd_sf(commands, SCTP_CMD_TIMER_STOP,
5590 SCTP_TO(SCTP_EVENT_TIMEOUT_T4_RTO));
Sridhar Samudrala8de8c872006-05-19 10:58:12 -07005591 sctp_add_cmd_sf(commands, SCTP_CMD_SET_SK_ERR,
5592 SCTP_ERROR(ETIMEDOUT));
Linus Torvalds1da177e2005-04-16 15:20:36 -07005593 sctp_add_cmd_sf(commands, SCTP_CMD_ASSOC_FAILED,
Al Viro5be291f2006-11-20 17:01:06 -08005594 SCTP_PERR(SCTP_ERROR_NO_ERROR));
Linus Torvalds1da177e2005-04-16 15:20:36 -07005595 SCTP_INC_STATS(SCTP_MIB_ABORTEDS);
Wei Yongjun3d5a0192008-10-09 14:32:24 -07005596 SCTP_DEC_STATS(SCTP_MIB_CURRESTAB);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005597 return SCTP_DISPOSITION_ABORT;
5598 }
5599
5600 /* ADDIP 4.1 B3) Back-off the destination address RTO value to which
5601 * the ASCONF chunk was sent by doubling the RTO timer value.
5602 * This is done in SCTP_CMD_STRIKE.
5603 */
5604
5605 /* ADDIP 4.1 B4) Re-transmit the ASCONF Chunk last sent and if possible
5606 * choose an alternate destination address (please refer to RFC2960
5607 * [5] section 6.4.1). An endpoint MUST NOT add new parameters to this
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09005608 * chunk, it MUST be the same (including its serial number) as the last
Linus Torvalds1da177e2005-04-16 15:20:36 -07005609 * ASCONF sent.
5610 */
5611 sctp_chunk_hold(asoc->addip_last_asconf);
5612 sctp_add_cmd_sf(commands, SCTP_CMD_REPLY,
5613 SCTP_CHUNK(asoc->addip_last_asconf));
5614
5615 /* ADDIP 4.1 B5) Restart the T-4 RTO timer. Note that if a different
5616 * destination is selected, then the RTO used will be that of the new
5617 * destination address.
5618 */
5619 sctp_add_cmd_sf(commands, SCTP_CMD_TIMER_RESTART,
5620 SCTP_TO(SCTP_EVENT_TIMEOUT_T4_RTO));
5621
5622 return SCTP_DISPOSITION_CONSUME;
5623}
5624
5625/* sctpimpguide-05 Section 2.12.2
5626 * The sender of the SHUTDOWN MAY also start an overall guard timer
5627 * 'T5-shutdown-guard' to bound the overall time for shutdown sequence.
5628 * At the expiration of this timer the sender SHOULD abort the association
5629 * by sending an ABORT chunk.
5630 */
5631sctp_disposition_t sctp_sf_t5_timer_expire(const struct sctp_endpoint *ep,
5632 const struct sctp_association *asoc,
5633 const sctp_subtype_t type,
5634 void *arg,
5635 sctp_cmd_seq_t *commands)
5636{
5637 struct sctp_chunk *reply = NULL;
5638
5639 SCTP_DEBUG_PRINTK("Timer T5 expired.\n");
Sridhar Samudralaac0b0462006-08-22 00:15:33 -07005640 SCTP_INC_STATS(SCTP_MIB_T5_SHUTDOWN_GUARD_EXPIREDS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005641
5642 reply = sctp_make_abort(asoc, NULL, 0);
5643 if (!reply)
5644 goto nomem;
5645
5646 sctp_add_cmd_sf(commands, SCTP_CMD_REPLY, SCTP_CHUNK(reply));
Sridhar Samudrala8de8c872006-05-19 10:58:12 -07005647 sctp_add_cmd_sf(commands, SCTP_CMD_SET_SK_ERR,
5648 SCTP_ERROR(ETIMEDOUT));
Linus Torvalds1da177e2005-04-16 15:20:36 -07005649 sctp_add_cmd_sf(commands, SCTP_CMD_ASSOC_FAILED,
Al Viro5be291f2006-11-20 17:01:06 -08005650 SCTP_PERR(SCTP_ERROR_NO_ERROR));
Linus Torvalds1da177e2005-04-16 15:20:36 -07005651
Vlad Yasevicha1080a82008-10-09 14:33:26 -07005652 SCTP_INC_STATS(SCTP_MIB_ABORTEDS);
5653 SCTP_DEC_STATS(SCTP_MIB_CURRESTAB);
5654
Linus Torvalds1da177e2005-04-16 15:20:36 -07005655 return SCTP_DISPOSITION_DELETE_TCB;
5656nomem:
5657 return SCTP_DISPOSITION_NOMEM;
5658}
5659
5660/* Handle expiration of AUTOCLOSE timer. When the autoclose timer expires,
5661 * the association is automatically closed by starting the shutdown process.
5662 * The work that needs to be done is same as when SHUTDOWN is initiated by
5663 * the user. So this routine looks same as sctp_sf_do_9_2_prm_shutdown().
5664 */
5665sctp_disposition_t sctp_sf_autoclose_timer_expire(
5666 const struct sctp_endpoint *ep,
5667 const struct sctp_association *asoc,
5668 const sctp_subtype_t type,
5669 void *arg,
5670 sctp_cmd_seq_t *commands)
5671{
5672 int disposition;
5673
Sridhar Samudralaac0b0462006-08-22 00:15:33 -07005674 SCTP_INC_STATS(SCTP_MIB_AUTOCLOSE_EXPIREDS);
5675
Linus Torvalds1da177e2005-04-16 15:20:36 -07005676 /* From 9.2 Shutdown of an Association
5677 * Upon receipt of the SHUTDOWN primitive from its upper
5678 * layer, the endpoint enters SHUTDOWN-PENDING state and
5679 * remains there until all outstanding data has been
5680 * acknowledged by its peer. The endpoint accepts no new data
5681 * from its upper layer, but retransmits data to the far end
5682 * if necessary to fill gaps.
5683 */
5684 sctp_add_cmd_sf(commands, SCTP_CMD_NEW_STATE,
5685 SCTP_STATE(SCTP_STATE_SHUTDOWN_PENDING));
5686
Linus Torvalds1da177e2005-04-16 15:20:36 -07005687 disposition = SCTP_DISPOSITION_CONSUME;
5688 if (sctp_outq_is_empty(&asoc->outqueue)) {
5689 disposition = sctp_sf_do_9_2_start_shutdown(ep, asoc, type,
5690 arg, commands);
5691 }
5692 return disposition;
5693}
5694
5695/*****************************************************************************
5696 * These are sa state functions which could apply to all types of events.
5697 ****************************************************************************/
5698
5699/*
5700 * This table entry is not implemented.
5701 *
5702 * Inputs
5703 * (endpoint, asoc, chunk)
5704 *
5705 * The return value is the disposition of the chunk.
5706 */
5707sctp_disposition_t sctp_sf_not_impl(const struct sctp_endpoint *ep,
5708 const struct sctp_association *asoc,
5709 const sctp_subtype_t type,
5710 void *arg,
5711 sctp_cmd_seq_t *commands)
5712{
5713 return SCTP_DISPOSITION_NOT_IMPL;
5714}
5715
5716/*
5717 * This table entry represents a bug.
5718 *
5719 * Inputs
5720 * (endpoint, asoc, chunk)
5721 *
5722 * The return value is the disposition of the chunk.
5723 */
5724sctp_disposition_t sctp_sf_bug(const struct sctp_endpoint *ep,
5725 const struct sctp_association *asoc,
5726 const sctp_subtype_t type,
5727 void *arg,
5728 sctp_cmd_seq_t *commands)
5729{
5730 return SCTP_DISPOSITION_BUG;
5731}
5732
5733/*
5734 * This table entry represents the firing of a timer in the wrong state.
5735 * Since timer deletion cannot be guaranteed a timer 'may' end up firing
5736 * when the association is in the wrong state. This event should
5737 * be ignored, so as to prevent any rearming of the timer.
5738 *
5739 * Inputs
5740 * (endpoint, asoc, chunk)
5741 *
5742 * The return value is the disposition of the chunk.
5743 */
5744sctp_disposition_t sctp_sf_timer_ignore(const struct sctp_endpoint *ep,
5745 const struct sctp_association *asoc,
5746 const sctp_subtype_t type,
5747 void *arg,
5748 sctp_cmd_seq_t *commands)
5749{
5750 SCTP_DEBUG_PRINTK("Timer %d ignored.\n", type.chunk);
5751 return SCTP_DISPOSITION_CONSUME;
5752}
5753
5754/********************************************************************
5755 * 2nd Level Abstractions
5756 ********************************************************************/
5757
5758/* Pull the SACK chunk based on the SACK header. */
5759static struct sctp_sackhdr *sctp_sm_pull_sack(struct sctp_chunk *chunk)
5760{
5761 struct sctp_sackhdr *sack;
5762 unsigned int len;
5763 __u16 num_blocks;
5764 __u16 num_dup_tsns;
5765
5766 /* Protect ourselves from reading too far into
5767 * the skb from a bogus sender.
5768 */
5769 sack = (struct sctp_sackhdr *) chunk->skb->data;
5770
5771 num_blocks = ntohs(sack->num_gap_ack_blocks);
5772 num_dup_tsns = ntohs(sack->num_dup_tsns);
5773 len = sizeof(struct sctp_sackhdr);
5774 len += (num_blocks + num_dup_tsns) * sizeof(__u32);
5775 if (len > chunk->skb->len)
5776 return NULL;
5777
5778 skb_pull(chunk->skb, len);
5779
5780 return sack;
5781}
5782
5783/* Create an ABORT packet to be sent as a response, with the specified
5784 * error causes.
5785 */
5786static struct sctp_packet *sctp_abort_pkt_new(const struct sctp_endpoint *ep,
5787 const struct sctp_association *asoc,
5788 struct sctp_chunk *chunk,
5789 const void *payload,
5790 size_t paylen)
5791{
5792 struct sctp_packet *packet;
5793 struct sctp_chunk *abort;
5794
5795 packet = sctp_ootb_pkt_new(asoc, chunk);
5796
5797 if (packet) {
5798 /* Make an ABORT.
5799 * The T bit will be set if the asoc is NULL.
5800 */
5801 abort = sctp_make_abort(asoc, chunk, paylen);
5802 if (!abort) {
5803 sctp_ootb_pkt_free(packet);
5804 return NULL;
5805 }
Jerome Forissier047a2422005-04-28 11:58:43 -07005806
5807 /* Reflect vtag if T-Bit is set */
5808 if (sctp_test_T_bit(abort))
5809 packet->vtag = ntohl(chunk->sctp_hdr->vtag);
5810
Linus Torvalds1da177e2005-04-16 15:20:36 -07005811 /* Add specified error causes, i.e., payload, to the
5812 * end of the chunk.
5813 */
5814 sctp_addto_chunk(abort, paylen, payload);
5815
5816 /* Set the skb to the belonging sock for accounting. */
5817 abort->skb->sk = ep->base.sk;
5818
5819 sctp_packet_append_chunk(packet, abort);
5820
5821 }
5822
5823 return packet;
5824}
5825
5826/* Allocate a packet for responding in the OOTB conditions. */
5827static struct sctp_packet *sctp_ootb_pkt_new(const struct sctp_association *asoc,
5828 const struct sctp_chunk *chunk)
5829{
5830 struct sctp_packet *packet;
5831 struct sctp_transport *transport;
5832 __u16 sport;
5833 __u16 dport;
5834 __u32 vtag;
5835
5836 /* Get the source and destination port from the inbound packet. */
5837 sport = ntohs(chunk->sctp_hdr->dest);
5838 dport = ntohs(chunk->sctp_hdr->source);
5839
5840 /* The V-tag is going to be the same as the inbound packet if no
5841 * association exists, otherwise, use the peer's vtag.
5842 */
5843 if (asoc) {
Wei Yongjun02c4e122007-08-31 10:03:58 +08005844 /* Special case the INIT-ACK as there is no peer's vtag
5845 * yet.
5846 */
5847 switch(chunk->chunk_hdr->type) {
5848 case SCTP_CID_INIT_ACK:
5849 {
5850 sctp_initack_chunk_t *initack;
5851
5852 initack = (sctp_initack_chunk_t *)chunk->chunk_hdr;
5853 vtag = ntohl(initack->init_hdr.init_tag);
5854 break;
5855 }
5856 default:
5857 vtag = asoc->peer.i.init_tag;
5858 break;
5859 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005860 } else {
5861 /* Special case the INIT and stale COOKIE_ECHO as there is no
5862 * vtag yet.
5863 */
5864 switch(chunk->chunk_hdr->type) {
5865 case SCTP_CID_INIT:
5866 {
5867 sctp_init_chunk_t *init;
5868
5869 init = (sctp_init_chunk_t *)chunk->chunk_hdr;
5870 vtag = ntohl(init->init_hdr.init_tag);
5871 break;
5872 }
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09005873 default:
Linus Torvalds1da177e2005-04-16 15:20:36 -07005874 vtag = ntohl(chunk->sctp_hdr->vtag);
5875 break;
5876 }
5877 }
5878
5879 /* Make a transport for the bucket, Eliza... */
Al Viro6a1e5f32006-11-20 17:12:25 -08005880 transport = sctp_transport_new(sctp_source(chunk), GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005881 if (!transport)
5882 goto nomem;
5883
5884 /* Cache a route for the transport with the chunk's destination as
5885 * the source address.
5886 */
Al Viro16b0a032006-11-20 17:13:38 -08005887 sctp_transport_route(transport, (union sctp_addr *)&chunk->dest,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005888 sctp_sk(sctp_get_ctl_sock()));
5889
5890 packet = sctp_packet_init(&transport->packet, transport, sport, dport);
5891 packet = sctp_packet_config(packet, vtag, 0);
5892
5893 return packet;
5894
5895nomem:
5896 return NULL;
5897}
5898
5899/* Free the packet allocated earlier for responding in the OOTB condition. */
5900void sctp_ootb_pkt_free(struct sctp_packet *packet)
5901{
5902 sctp_transport_free(packet->transport);
5903}
5904
5905/* Send a stale cookie error when a invalid COOKIE ECHO chunk is found */
5906static void sctp_send_stale_cookie_err(const struct sctp_endpoint *ep,
5907 const struct sctp_association *asoc,
5908 const struct sctp_chunk *chunk,
5909 sctp_cmd_seq_t *commands,
5910 struct sctp_chunk *err_chunk)
5911{
5912 struct sctp_packet *packet;
5913
5914 if (err_chunk) {
5915 packet = sctp_ootb_pkt_new(asoc, chunk);
5916 if (packet) {
5917 struct sctp_signed_cookie *cookie;
5918
5919 /* Override the OOTB vtag from the cookie. */
5920 cookie = chunk->subh.cookie_hdr;
5921 packet->vtag = cookie->c.peer_vtag;
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09005922
Linus Torvalds1da177e2005-04-16 15:20:36 -07005923 /* Set the skb to the belonging sock for accounting. */
5924 err_chunk->skb->sk = ep->base.sk;
5925 sctp_packet_append_chunk(packet, err_chunk);
5926 sctp_add_cmd_sf(commands, SCTP_CMD_SEND_PKT,
5927 SCTP_PACKET(packet));
5928 SCTP_INC_STATS(SCTP_MIB_OUTCTRLCHUNKS);
5929 } else
5930 sctp_chunk_free (err_chunk);
5931 }
5932}
5933
5934
5935/* Process a data chunk */
5936static int sctp_eat_data(const struct sctp_association *asoc,
5937 struct sctp_chunk *chunk,
5938 sctp_cmd_seq_t *commands)
5939{
5940 sctp_datahdr_t *data_hdr;
5941 struct sctp_chunk *err;
5942 size_t datalen;
5943 sctp_verb_t deliver;
5944 int tmp;
5945 __u32 tsn;
Neil Horman7c3ceb4f2006-05-05 17:02:09 -07005946 struct sctp_tsnmap *map = (struct sctp_tsnmap *)&asoc->peer.tsn_map;
Neil Horman049b3ff2005-11-11 16:08:24 -08005947 struct sock *sk = asoc->base.sk;
Vlad Yasevichf1751c52009-09-04 18:21:03 -04005948 u16 ssn;
5949 u16 sid;
5950 u8 ordered = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005951
5952 data_hdr = chunk->subh.data_hdr = (sctp_datahdr_t *)chunk->skb->data;
5953 skb_pull(chunk->skb, sizeof(sctp_datahdr_t));
5954
5955 tsn = ntohl(data_hdr->tsn);
5956 SCTP_DEBUG_PRINTK("eat_data: TSN 0x%x.\n", tsn);
5957
5958 /* ASSERT: Now skb->data is really the user data. */
5959
Linus Torvalds1da177e2005-04-16 15:20:36 -07005960 /* Process ECN based congestion.
5961 *
5962 * Since the chunk structure is reused for all chunks within
5963 * a packet, we use ecn_ce_done to track if we've already
5964 * done CE processing for this packet.
5965 *
5966 * We need to do ECN processing even if we plan to discard the
5967 * chunk later.
5968 */
5969
5970 if (!chunk->ecn_ce_done) {
5971 struct sctp_af *af;
5972 chunk->ecn_ce_done = 1;
5973
5974 af = sctp_get_af_specific(
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -07005975 ipver2af(ip_hdr(chunk->skb)->version));
Linus Torvalds1da177e2005-04-16 15:20:36 -07005976
5977 if (af && af->is_ce(chunk->skb) && asoc->peer.ecn_capable) {
5978 /* Do real work as sideffect. */
5979 sctp_add_cmd_sf(commands, SCTP_CMD_ECN_CE,
5980 SCTP_U32(tsn));
5981 }
5982 }
5983
5984 tmp = sctp_tsnmap_check(&asoc->peer.tsn_map, tsn);
5985 if (tmp < 0) {
5986 /* The TSN is too high--silently discard the chunk and
5987 * count on it getting retransmitted later.
5988 */
5989 return SCTP_IERROR_HIGH_TSN;
5990 } else if (tmp > 0) {
5991 /* This is a duplicate. Record it. */
5992 sctp_add_cmd_sf(commands, SCTP_CMD_REPORT_DUP, SCTP_U32(tsn));
5993 return SCTP_IERROR_DUP_TSN;
5994 }
5995
5996 /* This is a new TSN. */
5997
5998 /* Discard if there is no room in the receive window.
5999 * Actually, allow a little bit of overflow (up to a MTU).
6000 */
6001 datalen = ntohs(chunk->chunk_hdr->length);
6002 datalen -= sizeof(sctp_data_chunk_t);
6003
6004 deliver = SCTP_CMD_CHUNK_ULP;
6005
6006 /* Think about partial delivery. */
6007 if ((datalen >= asoc->rwnd) && (!asoc->ulpq.pd_mode)) {
6008
6009 /* Even if we don't accept this chunk there is
6010 * memory pressure.
6011 */
6012 sctp_add_cmd_sf(commands, SCTP_CMD_PART_DELIVER, SCTP_NULL());
6013 }
6014
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09006015 /* Spill over rwnd a little bit. Note: While allowed, this spill over
Linus Torvalds1da177e2005-04-16 15:20:36 -07006016 * seems a bit troublesome in that frag_point varies based on
6017 * PMTU. In cases, such as loopback, this might be a rather
6018 * large spill over.
6019 */
Neil Horman4d93df02007-08-15 16:07:44 -07006020 if ((!chunk->data_accepted) && (!asoc->rwnd || asoc->rwnd_over ||
6021 (datalen > asoc->rwnd + asoc->frag_point))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07006022
6023 /* If this is the next TSN, consider reneging to make
6024 * room. Note: Playing nice with a confused sender. A
6025 * malicious sender can still eat up all our buffer
6026 * space and in the future we may want to detect and
6027 * do more drastic reneging.
6028 */
Neil Horman7c3ceb4f2006-05-05 17:02:09 -07006029 if (sctp_tsnmap_has_gap(map) &&
6030 (sctp_tsnmap_get_ctsn(map) + 1) == tsn) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07006031 SCTP_DEBUG_PRINTK("Reneging for tsn:%u\n", tsn);
6032 deliver = SCTP_CMD_RENEGE;
6033 } else {
6034 SCTP_DEBUG_PRINTK("Discard tsn: %u len: %Zd, "
6035 "rwnd: %d\n", tsn, datalen,
6036 asoc->rwnd);
6037 return SCTP_IERROR_IGNORE_TSN;
6038 }
6039 }
6040
6041 /*
Neil Horman4d93df02007-08-15 16:07:44 -07006042 * Also try to renege to limit our memory usage in the event that
6043 * we are under memory pressure
Hideo Aoki3ab224b2007-12-31 00:11:19 -08006044 * If we can't renege, don't worry about it, the sk_rmem_schedule
Neil Horman4d93df02007-08-15 16:07:44 -07006045 * in sctp_ulpevent_make_rcvmsg will drop the frame if we grow our
6046 * memory usage too much
6047 */
6048 if (*sk->sk_prot_creator->memory_pressure) {
6049 if (sctp_tsnmap_has_gap(map) &&
6050 (sctp_tsnmap_get_ctsn(map) + 1) == tsn) {
6051 SCTP_DEBUG_PRINTK("Under Pressure! Reneging for tsn:%u\n", tsn);
6052 deliver = SCTP_CMD_RENEGE;
6053 }
6054 }
6055
6056 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006057 * Section 3.3.10.9 No User Data (9)
6058 *
6059 * Cause of error
6060 * ---------------
6061 * No User Data: This error cause is returned to the originator of a
6062 * DATA chunk if a received DATA chunk has no user data.
6063 */
6064 if (unlikely(0 == datalen)) {
6065 err = sctp_make_abort_no_data(asoc, chunk, tsn);
6066 if (err) {
6067 sctp_add_cmd_sf(commands, SCTP_CMD_REPLY,
6068 SCTP_CHUNK(err));
6069 }
6070 /* We are going to ABORT, so we might as well stop
6071 * processing the rest of the chunks in the packet.
6072 */
6073 sctp_add_cmd_sf(commands, SCTP_CMD_DISCARD_PACKET,SCTP_NULL());
Sridhar Samudrala8de8c872006-05-19 10:58:12 -07006074 sctp_add_cmd_sf(commands, SCTP_CMD_SET_SK_ERR,
6075 SCTP_ERROR(ECONNABORTED));
Linus Torvalds1da177e2005-04-16 15:20:36 -07006076 sctp_add_cmd_sf(commands, SCTP_CMD_ASSOC_FAILED,
Al Viro5be291f2006-11-20 17:01:06 -08006077 SCTP_PERR(SCTP_ERROR_NO_DATA));
Linus Torvalds1da177e2005-04-16 15:20:36 -07006078 SCTP_INC_STATS(SCTP_MIB_ABORTEDS);
6079 SCTP_DEC_STATS(SCTP_MIB_CURRESTAB);
6080 return SCTP_IERROR_NO_DATA;
6081 }
6082
Sridhar Samudrala9faa7302006-07-21 14:49:07 -07006083 chunk->data_accepted = 1;
6084
Linus Torvalds1da177e2005-04-16 15:20:36 -07006085 /* Note: Some chunks may get overcounted (if we drop) or overcounted
6086 * if we renege and the chunk arrives again.
6087 */
6088 if (chunk->chunk_hdr->flags & SCTP_DATA_UNORDERED)
6089 SCTP_INC_STATS(SCTP_MIB_INUNORDERCHUNKS);
Vlad Yasevichf1751c52009-09-04 18:21:03 -04006090 else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07006091 SCTP_INC_STATS(SCTP_MIB_INORDERCHUNKS);
Vlad Yasevichf1751c52009-09-04 18:21:03 -04006092 ordered = 1;
6093 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006094
6095 /* RFC 2960 6.5 Stream Identifier and Stream Sequence Number
6096 *
6097 * If an endpoint receive a DATA chunk with an invalid stream
6098 * identifier, it shall acknowledge the reception of the DATA chunk
6099 * following the normal procedure, immediately send an ERROR chunk
6100 * with cause set to "Invalid Stream Identifier" (See Section 3.3.10)
6101 * and discard the DATA chunk.
6102 */
Vlad Yasevichf1751c52009-09-04 18:21:03 -04006103 sid = ntohs(data_hdr->stream);
6104 if (sid >= asoc->c.sinit_max_instreams) {
Vlad Yasevich3888e9e2008-07-08 02:28:39 -07006105 /* Mark tsn as received even though we drop it */
6106 sctp_add_cmd_sf(commands, SCTP_CMD_REPORT_TSN, SCTP_U32(tsn));
6107
Linus Torvalds1da177e2005-04-16 15:20:36 -07006108 err = sctp_make_op_error(asoc, chunk, SCTP_ERROR_INV_STRM,
6109 &data_hdr->stream,
Vlad Yasevich6383cfb2009-11-23 15:53:56 -05006110 sizeof(data_hdr->stream),
6111 sizeof(u16));
Linus Torvalds1da177e2005-04-16 15:20:36 -07006112 if (err)
6113 sctp_add_cmd_sf(commands, SCTP_CMD_REPLY,
6114 SCTP_CHUNK(err));
6115 return SCTP_IERROR_BAD_STREAM;
6116 }
6117
Vlad Yasevichf1751c52009-09-04 18:21:03 -04006118 /* Check to see if the SSN is possible for this TSN.
6119 * The biggest gap we can record is 4K wide. Since SSNs wrap
6120 * at an unsigned short, there is no way that an SSN can
6121 * wrap and for a valid TSN. We can simply check if the current
6122 * SSN is smaller then the next expected one. If it is, it wrapped
6123 * and is invalid.
6124 */
6125 ssn = ntohs(data_hdr->ssn);
6126 if (ordered && SSN_lt(ssn, sctp_ssn_peek(&asoc->ssnmap->in, sid))) {
6127 return SCTP_IERROR_PROTO_VIOLATION;
6128 }
6129
Linus Torvalds1da177e2005-04-16 15:20:36 -07006130 /* Send the data up to the user. Note: Schedule the
6131 * SCTP_CMD_CHUNK_ULP cmd before the SCTP_CMD_GEN_SACK, as the SACK
6132 * chunk needs the updated rwnd.
6133 */
6134 sctp_add_cmd_sf(commands, deliver, SCTP_CHUNK(chunk));
6135
6136 return SCTP_IERROR_NO_ERROR;
6137}