blob: 5ac33b600538021dcaec3dc55e74c8415355ab13 [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
Daniel Borkmann18684df2014-03-03 17:23:04 +0100750 /* Make sure that we and the peer are AUTH capable */
751 if (!sctp_auth_enable || !new_asoc->peer.auth_capable) {
Daniel Borkmann18684df2014-03-03 17:23:04 +0100752 sctp_association_free(new_asoc);
753 return sctp_sf_pdiscard(ep, asoc, type, arg, commands);
754 }
755
Vlad Yasevichbbd0d592007-10-03 17:51:34 -0700756 /* set-up our fake chunk so that we can process it */
757 auth.skb = chunk->auth_chunk;
758 auth.asoc = chunk->asoc;
759 auth.sctp_hdr = chunk->sctp_hdr;
760 auth.chunk_hdr = (sctp_chunkhdr_t *)skb_push(chunk->auth_chunk,
761 sizeof(sctp_chunkhdr_t));
762 skb_pull(chunk->auth_chunk, sizeof(sctp_chunkhdr_t));
763 auth.transport = chunk->transport;
764
765 ret = sctp_sf_authenticate(ep, new_asoc, type, &auth);
Vlad Yasevichbbd0d592007-10-03 17:51:34 -0700766 if (ret != SCTP_IERROR_NO_ERROR) {
767 sctp_association_free(new_asoc);
768 return sctp_sf_pdiscard(ep, asoc, type, arg, commands);
769 }
770 }
771
Linus Torvalds1da177e2005-04-16 15:20:36 -0700772 repl = sctp_make_cookie_ack(new_asoc, chunk);
773 if (!repl)
Vladislav Yasevichdf7deeb2006-08-22 00:19:51 -0700774 goto nomem_init;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700775
776 /* RFC 2960 5.1 Normal Establishment of an Association
777 *
778 * D) IMPLEMENTATION NOTE: An implementation may choose to
779 * send the Communication Up notification to the SCTP user
780 * upon reception of a valid COOKIE ECHO chunk.
781 */
782 ev = sctp_ulpevent_make_assoc_change(new_asoc, 0, SCTP_COMM_UP, 0,
783 new_asoc->c.sinit_num_ostreams,
784 new_asoc->c.sinit_max_instreams,
Vlad Yasevicha5a35e72007-03-23 11:34:08 -0700785 NULL, GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700786 if (!ev)
787 goto nomem_ev;
788
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +0900789 /* Sockets API Draft Section 5.3.1.6
Ivan Skytte Jorgensen0f3fffd2006-12-20 16:07:04 -0800790 * When a peer sends a Adaptation Layer Indication parameter , SCTP
Linus Torvalds1da177e2005-04-16 15:20:36 -0700791 * delivers this notification to inform the application that of the
Ivan Skytte Jorgensen0f3fffd2006-12-20 16:07:04 -0800792 * peers requested adaptation layer.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700793 */
Ivan Skytte Jorgensen0f3fffd2006-12-20 16:07:04 -0800794 if (new_asoc->peer.adaptation_ind) {
795 ai_ev = sctp_ulpevent_make_adaptation_indication(new_asoc,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700796 GFP_ATOMIC);
Vladislav Yasevichdf7deeb2006-08-22 00:19:51 -0700797 if (!ai_ev)
798 goto nomem_aiev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700799 }
800
Vladislav Yasevichdf7deeb2006-08-22 00:19:51 -0700801 /* Add all the state machine commands now since we've created
802 * everything. This way we don't introduce memory corruptions
803 * during side-effect processing and correclty count established
804 * associations.
805 */
806 sctp_add_cmd_sf(commands, SCTP_CMD_NEW_ASOC, SCTP_ASOC(new_asoc));
807 sctp_add_cmd_sf(commands, SCTP_CMD_NEW_STATE,
808 SCTP_STATE(SCTP_STATE_ESTABLISHED));
809 SCTP_INC_STATS(SCTP_MIB_CURRESTAB);
810 SCTP_INC_STATS(SCTP_MIB_PASSIVEESTABS);
811 sctp_add_cmd_sf(commands, SCTP_CMD_HB_TIMERS_START, SCTP_NULL());
812
813 if (new_asoc->autoclose)
814 sctp_add_cmd_sf(commands, SCTP_CMD_TIMER_START,
815 SCTP_TO(SCTP_EVENT_TIMEOUT_AUTOCLOSE));
816
Vladislav Yasevichdf7deeb2006-08-22 00:19:51 -0700817 /* This will send the COOKIE ACK */
818 sctp_add_cmd_sf(commands, SCTP_CMD_REPLY, SCTP_CHUNK(repl));
819
820 /* Queue the ASSOC_CHANGE event */
821 sctp_add_cmd_sf(commands, SCTP_CMD_EVENT_ULP, SCTP_ULPEVENT(ev));
822
823 /* Send up the Adaptation Layer Indication event */
824 if (ai_ev)
825 sctp_add_cmd_sf(commands, SCTP_CMD_EVENT_ULP,
826 SCTP_ULPEVENT(ai_ev));
827
Linus Torvalds1da177e2005-04-16 15:20:36 -0700828 return SCTP_DISPOSITION_CONSUME;
829
Vladislav Yasevichdf7deeb2006-08-22 00:19:51 -0700830nomem_aiev:
831 sctp_ulpevent_free(ev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700832nomem_ev:
833 sctp_chunk_free(repl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700834nomem_init:
835 sctp_association_free(new_asoc);
836nomem:
837 return SCTP_DISPOSITION_NOMEM;
838}
839
840/*
841 * Respond to a normal COOKIE ACK chunk.
842 * We are the side that is being asked for an association.
843 *
844 * RFC 2960 5.1 Normal Establishment of an Association
845 *
846 * E) Upon reception of the COOKIE ACK, endpoint "A" will move from the
847 * COOKIE-ECHOED state to the ESTABLISHED state, stopping the T1-cookie
848 * timer. It may also notify its ULP about the successful
849 * establishment of the association with a Communication Up
850 * notification (see Section 10).
851 *
852 * Verification Tag:
853 * Inputs
854 * (endpoint, asoc, chunk)
855 *
856 * Outputs
857 * (asoc, reply_msg, msg_up, timers, counters)
858 *
859 * The return value is the disposition of the chunk.
860 */
861sctp_disposition_t sctp_sf_do_5_1E_ca(const struct sctp_endpoint *ep,
862 const struct sctp_association *asoc,
863 const sctp_subtype_t type, void *arg,
864 sctp_cmd_seq_t *commands)
865{
866 struct sctp_chunk *chunk = arg;
867 struct sctp_ulpevent *ev;
868
869 if (!sctp_vtag_verify(chunk, asoc))
870 return sctp_sf_pdiscard(ep, asoc, type, arg, commands);
871
872 /* Verify that the chunk length for the COOKIE-ACK is OK.
873 * If we don't do this, any bundled chunks may be junked.
874 */
875 if (!sctp_chunk_length_valid(chunk, sizeof(sctp_chunkhdr_t)))
876 return sctp_sf_violation_chunklen(ep, asoc, type, arg,
877 commands);
878
879 /* Reset init error count upon receipt of COOKIE-ACK,
880 * to avoid problems with the managemement of this
881 * counter in stale cookie situations when a transition back
882 * from the COOKIE-ECHOED state to the COOKIE-WAIT
883 * state is performed.
884 */
Frank Filz3f7a87d2005-06-20 13:14:57 -0700885 sctp_add_cmd_sf(commands, SCTP_CMD_INIT_COUNTER_RESET, SCTP_NULL());
Linus Torvalds1da177e2005-04-16 15:20:36 -0700886
887 /* RFC 2960 5.1 Normal Establishment of an Association
888 *
889 * E) Upon reception of the COOKIE ACK, endpoint "A" will move
890 * from the COOKIE-ECHOED state to the ESTABLISHED state,
891 * stopping the T1-cookie timer.
892 */
893 sctp_add_cmd_sf(commands, SCTP_CMD_TIMER_STOP,
894 SCTP_TO(SCTP_EVENT_TIMEOUT_T1_COOKIE));
895 sctp_add_cmd_sf(commands, SCTP_CMD_NEW_STATE,
896 SCTP_STATE(SCTP_STATE_ESTABLISHED));
897 SCTP_INC_STATS(SCTP_MIB_CURRESTAB);
898 SCTP_INC_STATS(SCTP_MIB_ACTIVEESTABS);
899 sctp_add_cmd_sf(commands, SCTP_CMD_HB_TIMERS_START, SCTP_NULL());
900 if (asoc->autoclose)
901 sctp_add_cmd_sf(commands, SCTP_CMD_TIMER_START,
902 SCTP_TO(SCTP_EVENT_TIMEOUT_AUTOCLOSE));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700903
904 /* It may also notify its ULP about the successful
905 * establishment of the association with a Communication Up
906 * notification (see Section 10).
907 */
908 ev = sctp_ulpevent_make_assoc_change(asoc, 0, SCTP_COMM_UP,
909 0, asoc->c.sinit_num_ostreams,
910 asoc->c.sinit_max_instreams,
Vlad Yasevicha5a35e72007-03-23 11:34:08 -0700911 NULL, GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700912
913 if (!ev)
914 goto nomem;
915
916 sctp_add_cmd_sf(commands, SCTP_CMD_EVENT_ULP, SCTP_ULPEVENT(ev));
917
918 /* Sockets API Draft Section 5.3.1.6
Ivan Skytte Jorgensen0f3fffd2006-12-20 16:07:04 -0800919 * When a peer sends a Adaptation Layer Indication parameter , SCTP
Linus Torvalds1da177e2005-04-16 15:20:36 -0700920 * delivers this notification to inform the application that of the
Ivan Skytte Jorgensen0f3fffd2006-12-20 16:07:04 -0800921 * peers requested adaptation layer.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700922 */
Ivan Skytte Jorgensen0f3fffd2006-12-20 16:07:04 -0800923 if (asoc->peer.adaptation_ind) {
924 ev = sctp_ulpevent_make_adaptation_indication(asoc, GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700925 if (!ev)
926 goto nomem;
927
928 sctp_add_cmd_sf(commands, SCTP_CMD_EVENT_ULP,
929 SCTP_ULPEVENT(ev));
930 }
931
932 return SCTP_DISPOSITION_CONSUME;
933nomem:
934 return SCTP_DISPOSITION_NOMEM;
935}
936
937/* Generate and sendout a heartbeat packet. */
938static sctp_disposition_t sctp_sf_heartbeat(const struct sctp_endpoint *ep,
939 const struct sctp_association *asoc,
940 const sctp_subtype_t type,
941 void *arg,
942 sctp_cmd_seq_t *commands)
943{
944 struct sctp_transport *transport = (struct sctp_transport *) arg;
945 struct sctp_chunk *reply;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700946
947 /* Send a heartbeat to our peer. */
Wei Yongjun92c73af2011-04-19 21:31:47 +0000948 reply = sctp_make_heartbeat(asoc, transport);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700949 if (!reply)
950 return SCTP_DISPOSITION_NOMEM;
951
952 /* Set rto_pending indicating that an RTT measurement
953 * is started with this heartbeat chunk.
954 */
955 sctp_add_cmd_sf(commands, SCTP_CMD_RTO_PENDING,
956 SCTP_TRANSPORT(transport));
957
958 sctp_add_cmd_sf(commands, SCTP_CMD_REPLY, SCTP_CHUNK(reply));
959 return SCTP_DISPOSITION_CONSUME;
960}
961
962/* Generate a HEARTBEAT packet on the given transport. */
963sctp_disposition_t sctp_sf_sendbeat_8_3(const struct sctp_endpoint *ep,
964 const struct sctp_association *asoc,
965 const sctp_subtype_t type,
966 void *arg,
967 sctp_cmd_seq_t *commands)
968{
969 struct sctp_transport *transport = (struct sctp_transport *) arg;
970
Vlad Yasevichb9f84782009-08-26 09:36:25 -0400971 if (asoc->overall_error_count >= asoc->max_retrans) {
Sridhar Samudrala8de8c872006-05-19 10:58:12 -0700972 sctp_add_cmd_sf(commands, SCTP_CMD_SET_SK_ERR,
973 SCTP_ERROR(ETIMEDOUT));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700974 /* CMD_ASSOC_FAILED calls CMD_DELETE_TCB. */
975 sctp_add_cmd_sf(commands, SCTP_CMD_ASSOC_FAILED,
Al Viro5be291f2006-11-20 17:01:06 -0800976 SCTP_PERR(SCTP_ERROR_NO_ERROR));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700977 SCTP_INC_STATS(SCTP_MIB_ABORTEDS);
978 SCTP_DEC_STATS(SCTP_MIB_CURRESTAB);
979 return SCTP_DISPOSITION_DELETE_TCB;
980 }
981
982 /* Section 3.3.5.
983 * The Sender-specific Heartbeat Info field should normally include
984 * information about the sender's current time when this HEARTBEAT
985 * chunk is sent and the destination transport address to which this
986 * HEARTBEAT is sent (see Section 8.3).
987 */
988
Frank Filz52ccb8e2005-12-22 11:36:46 -0800989 if (transport->param_flags & SPP_HB_ENABLE) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700990 if (SCTP_DISPOSITION_NOMEM ==
991 sctp_sf_heartbeat(ep, asoc, type, arg,
992 commands))
993 return SCTP_DISPOSITION_NOMEM;
Vlad Yasevich245cba72009-11-23 15:53:58 -0500994
Linus Torvalds1da177e2005-04-16 15:20:36 -0700995 /* Set transport error counter and association error counter
996 * when sending heartbeat.
997 */
Vlad Yasevich7e990132009-03-02 09:46:14 +0000998 sctp_add_cmd_sf(commands, SCTP_CMD_TRANSPORT_HB_SENT,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700999 SCTP_TRANSPORT(transport));
1000 }
Vlad Yasevich245cba72009-11-23 15:53:58 -05001001 sctp_add_cmd_sf(commands, SCTP_CMD_TRANSPORT_IDLE,
1002 SCTP_TRANSPORT(transport));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001003 sctp_add_cmd_sf(commands, SCTP_CMD_HB_TIMER_UPDATE,
1004 SCTP_TRANSPORT(transport));
1005
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09001006 return SCTP_DISPOSITION_CONSUME;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001007}
1008
1009/*
1010 * Process an heartbeat request.
1011 *
1012 * Section: 8.3 Path Heartbeat
1013 * The receiver of the HEARTBEAT should immediately respond with a
1014 * HEARTBEAT ACK that contains the Heartbeat Information field copied
1015 * from the received HEARTBEAT chunk.
1016 *
1017 * Verification Tag: 8.5 Verification Tag [Normal verification]
1018 * When receiving an SCTP packet, the endpoint MUST ensure that the
1019 * value in the Verification Tag field of the received SCTP packet
1020 * matches its own Tag. If the received Verification Tag value does not
1021 * match the receiver's own tag value, the receiver shall silently
1022 * discard the packet and shall not process it any further except for
1023 * those cases listed in Section 8.5.1 below.
1024 *
1025 * Inputs
1026 * (endpoint, asoc, chunk)
1027 *
1028 * Outputs
1029 * (asoc, reply_msg, msg_up, timers, counters)
1030 *
1031 * The return value is the disposition of the chunk.
1032 */
1033sctp_disposition_t sctp_sf_beat_8_3(const struct sctp_endpoint *ep,
1034 const struct sctp_association *asoc,
1035 const sctp_subtype_t type,
1036 void *arg,
1037 sctp_cmd_seq_t *commands)
1038{
1039 struct sctp_chunk *chunk = arg;
1040 struct sctp_chunk *reply;
1041 size_t paylen = 0;
1042
1043 if (!sctp_vtag_verify(chunk, asoc))
1044 return sctp_sf_pdiscard(ep, asoc, type, arg, commands);
1045
1046 /* Make sure that the HEARTBEAT chunk has a valid length. */
1047 if (!sctp_chunk_length_valid(chunk, sizeof(sctp_heartbeat_chunk_t)))
1048 return sctp_sf_violation_chunklen(ep, asoc, type, arg,
1049 commands);
1050
1051 /* 8.3 The receiver of the HEARTBEAT should immediately
1052 * respond with a HEARTBEAT ACK that contains the Heartbeat
1053 * Information field copied from the received HEARTBEAT chunk.
1054 */
1055 chunk->subh.hb_hdr = (sctp_heartbeathdr_t *) chunk->skb->data;
1056 paylen = ntohs(chunk->chunk_hdr->length) - sizeof(sctp_chunkhdr_t);
Sridhar Samudrala62b08082006-05-05 17:04:43 -07001057 if (!pskb_pull(chunk->skb, paylen))
1058 goto nomem;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001059
1060 reply = sctp_make_heartbeat_ack(asoc, chunk,
1061 chunk->subh.hb_hdr, paylen);
1062 if (!reply)
1063 goto nomem;
1064
1065 sctp_add_cmd_sf(commands, SCTP_CMD_REPLY, SCTP_CHUNK(reply));
1066 return SCTP_DISPOSITION_CONSUME;
1067
1068nomem:
1069 return SCTP_DISPOSITION_NOMEM;
1070}
1071
1072/*
1073 * Process the returning HEARTBEAT ACK.
1074 *
1075 * Section: 8.3 Path Heartbeat
1076 * Upon the receipt of the HEARTBEAT ACK, the sender of the HEARTBEAT
1077 * should clear the error counter of the destination transport
1078 * address to which the HEARTBEAT was sent, and mark the destination
1079 * transport address as active if it is not so marked. The endpoint may
1080 * optionally report to the upper layer when an inactive destination
1081 * address is marked as active due to the reception of the latest
1082 * HEARTBEAT ACK. The receiver of the HEARTBEAT ACK must also
1083 * clear the association overall error count as well (as defined
1084 * in section 8.1).
1085 *
1086 * The receiver of the HEARTBEAT ACK should also perform an RTT
1087 * measurement for that destination transport address using the time
1088 * value carried in the HEARTBEAT ACK chunk.
1089 *
1090 * Verification Tag: 8.5 Verification Tag [Normal verification]
1091 *
1092 * Inputs
1093 * (endpoint, asoc, chunk)
1094 *
1095 * Outputs
1096 * (asoc, reply_msg, msg_up, timers, counters)
1097 *
1098 * The return value is the disposition of the chunk.
1099 */
1100sctp_disposition_t sctp_sf_backbeat_8_3(const struct sctp_endpoint *ep,
1101 const struct sctp_association *asoc,
1102 const sctp_subtype_t type,
1103 void *arg,
1104 sctp_cmd_seq_t *commands)
1105{
1106 struct sctp_chunk *chunk = arg;
1107 union sctp_addr from_addr;
1108 struct sctp_transport *link;
1109 sctp_sender_hb_info_t *hbinfo;
1110 unsigned long max_interval;
1111
1112 if (!sctp_vtag_verify(chunk, asoc))
1113 return sctp_sf_pdiscard(ep, asoc, type, arg, commands);
1114
1115 /* Make sure that the HEARTBEAT-ACK chunk has a valid length. */
Wei Yongjundadb50c2009-08-22 11:27:37 +08001116 if (!sctp_chunk_length_valid(chunk, sizeof(sctp_chunkhdr_t) +
1117 sizeof(sctp_sender_hb_info_t)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001118 return sctp_sf_violation_chunklen(ep, asoc, type, arg,
1119 commands);
1120
1121 hbinfo = (sctp_sender_hb_info_t *) chunk->skb->data;
Vladislav Yasevicha6012662006-05-19 14:25:53 -07001122 /* Make sure that the length of the parameter is what we expect */
1123 if (ntohs(hbinfo->param_hdr.length) !=
1124 sizeof(sctp_sender_hb_info_t)) {
1125 return SCTP_DISPOSITION_DISCARD;
1126 }
1127
Linus Torvalds1da177e2005-04-16 15:20:36 -07001128 from_addr = hbinfo->daddr;
Al Viro63de08f2006-11-20 17:07:25 -08001129 link = sctp_assoc_lookup_paddr(asoc, &from_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001130
1131 /* This should never happen, but lets log it if so. */
Frank Filz3f7a87d2005-06-20 13:14:57 -07001132 if (unlikely(!link)) {
1133 if (from_addr.sa.sa_family == AF_INET6) {
Wei Yongjund99fa422007-08-27 11:19:24 +08001134 if (net_ratelimit())
Joe Perches145ce502010-08-24 13:21:08 +00001135 pr_warn("%s association %p could not find address %pI6\n",
1136 __func__,
1137 asoc,
1138 &from_addr.v6.sin6_addr);
Frank Filz3f7a87d2005-06-20 13:14:57 -07001139 } else {
Wei Yongjund99fa422007-08-27 11:19:24 +08001140 if (net_ratelimit())
Joe Perches145ce502010-08-24 13:21:08 +00001141 pr_warn("%s association %p could not find address %pI4\n",
1142 __func__,
1143 asoc,
1144 &from_addr.v4.sin_addr.s_addr);
Frank Filz3f7a87d2005-06-20 13:14:57 -07001145 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001146 return SCTP_DISPOSITION_DISCARD;
1147 }
1148
Sridhar Samudralaad8fec12006-07-21 14:48:50 -07001149 /* Validate the 64-bit random nonce. */
1150 if (hbinfo->hb_nonce != link->hb_nonce)
1151 return SCTP_DISPOSITION_DISCARD;
1152
Frank Filz52ccb8e2005-12-22 11:36:46 -08001153 max_interval = link->hbinterval + link->rto;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001154
1155 /* Check if the timestamp looks valid. */
1156 if (time_after(hbinfo->sent_at, jiffies) ||
1157 time_after(jiffies, hbinfo->sent_at + max_interval)) {
Joe Perches9ee46f12007-11-19 23:47:47 -08001158 SCTP_DEBUG_PRINTK("%s: HEARTBEAT ACK with invalid timestamp "
Linus Torvalds1da177e2005-04-16 15:20:36 -07001159 "received for transport: %p\n",
Harvey Harrison0dc47872008-03-05 20:47:47 -08001160 __func__, link);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001161 return SCTP_DISPOSITION_DISCARD;
1162 }
1163
1164 /* 8.3 Upon the receipt of the HEARTBEAT ACK, the sender of
1165 * the HEARTBEAT should clear the error counter of the
1166 * destination transport address to which the HEARTBEAT was
1167 * sent and mark the destination transport address as active if
1168 * it is not so marked.
1169 */
1170 sctp_add_cmd_sf(commands, SCTP_CMD_TRANSPORT_ON, SCTP_TRANSPORT(link));
1171
1172 return SCTP_DISPOSITION_CONSUME;
1173}
1174
1175/* Helper function to send out an abort for the restart
1176 * condition.
1177 */
1178static int sctp_sf_send_restart_abort(union sctp_addr *ssa,
1179 struct sctp_chunk *init,
1180 sctp_cmd_seq_t *commands)
1181{
1182 int len;
1183 struct sctp_packet *pkt;
1184 union sctp_addr_param *addrparm;
1185 struct sctp_errhdr *errhdr;
1186 struct sctp_endpoint *ep;
1187 char buffer[sizeof(struct sctp_errhdr)+sizeof(union sctp_addr_param)];
1188 struct sctp_af *af = sctp_get_af_specific(ssa->v4.sin_family);
1189
1190 /* Build the error on the stack. We are way to malloc crazy
1191 * throughout the code today.
1192 */
1193 errhdr = (struct sctp_errhdr *)buffer;
1194 addrparm = (union sctp_addr_param *)errhdr->variable;
1195
1196 /* Copy into a parm format. */
1197 len = af->to_addr_param(ssa, addrparm);
1198 len += sizeof(sctp_errhdr_t);
1199
1200 errhdr->cause = SCTP_ERROR_RESTART;
1201 errhdr->length = htons(len);
1202
1203 /* Assign to the control socket. */
1204 ep = sctp_sk((sctp_get_ctl_sock()))->ep;
1205
1206 /* Association is NULL since this may be a restart attack and we
1207 * want to send back the attacker's vtag.
1208 */
1209 pkt = sctp_abort_pkt_new(ep, NULL, init, errhdr, len);
1210
1211 if (!pkt)
1212 goto out;
1213 sctp_add_cmd_sf(commands, SCTP_CMD_SEND_PKT, SCTP_PACKET(pkt));
1214
1215 SCTP_INC_STATS(SCTP_MIB_OUTCTRLCHUNKS);
1216
1217 /* Discard the rest of the inbound packet. */
1218 sctp_add_cmd_sf(commands, SCTP_CMD_DISCARD_PACKET, SCTP_NULL());
1219
1220out:
1221 /* Even if there is no memory, treat as a failure so
1222 * the packet will get dropped.
1223 */
1224 return 0;
1225}
1226
Joe Perches123031c2010-09-08 11:04:21 +00001227static bool list_has_sctp_addr(const struct list_head *list,
1228 union sctp_addr *ipaddr)
1229{
1230 struct sctp_transport *addr;
1231
1232 list_for_each_entry(addr, list, transports) {
1233 if (sctp_cmp_addr_exact(ipaddr, &addr->ipaddr))
1234 return true;
1235 }
1236
1237 return false;
1238}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001239/* A restart is occurring, check to make sure no new addresses
1240 * are being added as we may be under a takeover attack.
1241 */
1242static int sctp_sf_check_restart_addrs(const struct sctp_association *new_asoc,
1243 const struct sctp_association *asoc,
1244 struct sctp_chunk *init,
1245 sctp_cmd_seq_t *commands)
1246{
Joe Perches123031c2010-09-08 11:04:21 +00001247 struct sctp_transport *new_addr;
1248 int ret = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001249
Joe Perches123031c2010-09-08 11:04:21 +00001250 /* Implementor's Guide - Section 5.2.2
Linus Torvalds1da177e2005-04-16 15:20:36 -07001251 * ...
1252 * Before responding the endpoint MUST check to see if the
1253 * unexpected INIT adds new addresses to the association. If new
1254 * addresses are added to the association, the endpoint MUST respond
1255 * with an ABORT..
1256 */
1257
1258 /* Search through all current addresses and make sure
1259 * we aren't adding any new ones.
1260 */
Robert P. J. Day9dbc15f2008-04-12 18:54:24 -07001261 list_for_each_entry(new_addr, &new_asoc->peer.transport_addr_list,
Joe Perches123031c2010-09-08 11:04:21 +00001262 transports) {
1263 if (!list_has_sctp_addr(&asoc->peer.transport_addr_list,
1264 &new_addr->ipaddr)) {
1265 sctp_sf_send_restart_abort(&new_addr->ipaddr, init,
1266 commands);
1267 ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001268 break;
Joe Perches123031c2010-09-08 11:04:21 +00001269 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001270 }
1271
1272 /* Return success if all addresses were found. */
Joe Perches123031c2010-09-08 11:04:21 +00001273 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001274}
1275
1276/* Populate the verification/tie tags based on overlapping INIT
1277 * scenario.
1278 *
1279 * Note: Do not use in CLOSED or SHUTDOWN-ACK-SENT state.
1280 */
1281static void sctp_tietags_populate(struct sctp_association *new_asoc,
1282 const struct sctp_association *asoc)
1283{
1284 switch (asoc->state) {
1285
1286 /* 5.2.1 INIT received in COOKIE-WAIT or COOKIE-ECHOED State */
1287
1288 case SCTP_STATE_COOKIE_WAIT:
1289 new_asoc->c.my_vtag = asoc->c.my_vtag;
1290 new_asoc->c.my_ttag = asoc->c.my_vtag;
1291 new_asoc->c.peer_ttag = 0;
1292 break;
1293
1294 case SCTP_STATE_COOKIE_ECHOED:
1295 new_asoc->c.my_vtag = asoc->c.my_vtag;
1296 new_asoc->c.my_ttag = asoc->c.my_vtag;
1297 new_asoc->c.peer_ttag = asoc->c.peer_vtag;
1298 break;
1299
1300 /* 5.2.2 Unexpected INIT in States Other than CLOSED, COOKIE-ECHOED,
1301 * COOKIE-WAIT and SHUTDOWN-ACK-SENT
1302 */
1303 default:
1304 new_asoc->c.my_ttag = asoc->c.my_vtag;
1305 new_asoc->c.peer_ttag = asoc->c.peer_vtag;
1306 break;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07001307 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001308
1309 /* Other parameters for the endpoint SHOULD be copied from the
1310 * existing parameters of the association (e.g. number of
1311 * outbound streams) into the INIT ACK and cookie.
1312 */
1313 new_asoc->rwnd = asoc->rwnd;
1314 new_asoc->c.sinit_num_ostreams = asoc->c.sinit_num_ostreams;
1315 new_asoc->c.sinit_max_instreams = asoc->c.sinit_max_instreams;
1316 new_asoc->c.initial_tsn = asoc->c.initial_tsn;
1317}
1318
1319/*
1320 * Compare vtag/tietag values to determine unexpected COOKIE-ECHO
1321 * handling action.
1322 *
1323 * RFC 2960 5.2.4 Handle a COOKIE ECHO when a TCB exists.
1324 *
1325 * Returns value representing action to be taken. These action values
1326 * correspond to Action/Description values in RFC 2960, Table 2.
1327 */
1328static char sctp_tietags_compare(struct sctp_association *new_asoc,
1329 const struct sctp_association *asoc)
1330{
1331 /* In this case, the peer may have restarted. */
1332 if ((asoc->c.my_vtag != new_asoc->c.my_vtag) &&
1333 (asoc->c.peer_vtag != new_asoc->c.peer_vtag) &&
1334 (asoc->c.my_vtag == new_asoc->c.my_ttag) &&
1335 (asoc->c.peer_vtag == new_asoc->c.peer_ttag))
1336 return 'A';
1337
1338 /* Collision case B. */
1339 if ((asoc->c.my_vtag == new_asoc->c.my_vtag) &&
1340 ((asoc->c.peer_vtag != new_asoc->c.peer_vtag) ||
1341 (0 == asoc->c.peer_vtag))) {
1342 return 'B';
1343 }
1344
1345 /* Collision case D. */
1346 if ((asoc->c.my_vtag == new_asoc->c.my_vtag) &&
1347 (asoc->c.peer_vtag == new_asoc->c.peer_vtag))
1348 return 'D';
1349
1350 /* Collision case C. */
1351 if ((asoc->c.my_vtag != new_asoc->c.my_vtag) &&
1352 (asoc->c.peer_vtag == new_asoc->c.peer_vtag) &&
1353 (0 == new_asoc->c.my_ttag) &&
1354 (0 == new_asoc->c.peer_ttag))
1355 return 'C';
1356
1357 /* No match to any of the special cases; discard this packet. */
1358 return 'E';
1359}
1360
1361/* Common helper routine for both duplicate and simulataneous INIT
1362 * chunk handling.
1363 */
1364static sctp_disposition_t sctp_sf_do_unexpected_init(
1365 const struct sctp_endpoint *ep,
1366 const struct sctp_association *asoc,
1367 const sctp_subtype_t type,
1368 void *arg, sctp_cmd_seq_t *commands)
1369{
1370 sctp_disposition_t retval;
1371 struct sctp_chunk *chunk = arg;
1372 struct sctp_chunk *repl;
1373 struct sctp_association *new_asoc;
1374 struct sctp_chunk *err_chunk;
1375 struct sctp_packet *packet;
1376 sctp_unrecognized_param_t *unk_param;
1377 int len;
1378
1379 /* 6.10 Bundling
1380 * An endpoint MUST NOT bundle INIT, INIT ACK or
1381 * SHUTDOWN COMPLETE with any other chunks.
1382 *
1383 * IG Section 2.11.2
1384 * Furthermore, we require that the receiver of an INIT chunk MUST
1385 * enforce these rules by silently discarding an arriving packet
1386 * with an INIT chunk that is bundled with other chunks.
1387 */
1388 if (!chunk->singleton)
1389 return sctp_sf_pdiscard(ep, asoc, type, arg, commands);
1390
1391 /* 3.1 A packet containing an INIT chunk MUST have a zero Verification
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09001392 * Tag.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001393 */
1394 if (chunk->sctp_hdr->vtag != 0)
1395 return sctp_sf_tabort_8_4_8(ep, asoc, type, arg, commands);
1396
1397 /* Make sure that the INIT chunk has a valid length.
1398 * In this case, we generate a protocol violation since we have
1399 * an association established.
1400 */
1401 if (!sctp_chunk_length_valid(chunk, sizeof(sctp_init_chunk_t)))
1402 return sctp_sf_violation_chunklen(ep, asoc, type, arg,
1403 commands);
1404 /* Grab the INIT header. */
1405 chunk->subh.init_hdr = (sctp_inithdr_t *) chunk->skb->data;
1406
1407 /* Tag the variable length parameters. */
1408 chunk->param_hdr.v = skb_pull(chunk->skb, sizeof(sctp_inithdr_t));
1409
1410 /* Verify the INIT chunk before processing it. */
1411 err_chunk = NULL;
1412 if (!sctp_verify_init(asoc, chunk->chunk_hdr->type,
1413 (sctp_init_chunk_t *)chunk->chunk_hdr, chunk,
1414 &err_chunk)) {
1415 /* This chunk contains fatal error. It is to be discarded.
1416 * Send an ABORT, with causes if there is any.
1417 */
1418 if (err_chunk) {
1419 packet = sctp_abort_pkt_new(ep, asoc, arg,
1420 (__u8 *)(err_chunk->chunk_hdr) +
1421 sizeof(sctp_chunkhdr_t),
1422 ntohs(err_chunk->chunk_hdr->length) -
1423 sizeof(sctp_chunkhdr_t));
1424
1425 if (packet) {
1426 sctp_add_cmd_sf(commands, SCTP_CMD_SEND_PKT,
1427 SCTP_PACKET(packet));
1428 SCTP_INC_STATS(SCTP_MIB_OUTCTRLCHUNKS);
1429 retval = SCTP_DISPOSITION_CONSUME;
1430 } else {
1431 retval = SCTP_DISPOSITION_NOMEM;
1432 }
1433 goto cleanup;
1434 } else {
1435 return sctp_sf_tabort_8_4_8(ep, asoc, type, arg,
1436 commands);
1437 }
1438 }
1439
1440 /*
1441 * Other parameters for the endpoint SHOULD be copied from the
1442 * existing parameters of the association (e.g. number of
1443 * outbound streams) into the INIT ACK and cookie.
1444 * FIXME: We are copying parameters from the endpoint not the
1445 * association.
1446 */
1447 new_asoc = sctp_make_temp_asoc(ep, chunk, GFP_ATOMIC);
1448 if (!new_asoc)
1449 goto nomem;
1450
Vlad Yasevich409b95a2009-11-10 08:57:34 +00001451 if (sctp_assoc_set_bind_addr_from_ep(new_asoc,
1452 sctp_scope(sctp_source(chunk)), GFP_ATOMIC) < 0)
1453 goto nomem;
1454
Linus Torvalds1da177e2005-04-16 15:20:36 -07001455 /* In the outbound INIT ACK the endpoint MUST copy its current
1456 * Verification Tag and Peers Verification tag into a reserved
1457 * place (local tie-tag and per tie-tag) within the state cookie.
1458 */
Wei Yongjunde6becd2011-04-19 21:30:51 +00001459 if (!sctp_process_init(new_asoc, chunk, sctp_source(chunk),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001460 (sctp_init_chunk_t *)chunk->chunk_hdr,
Vladislav Yasevichdf7deeb2006-08-22 00:19:51 -07001461 GFP_ATOMIC))
1462 goto nomem;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001463
1464 /* Make sure no new addresses are being added during the
1465 * restart. Do not do this check for COOKIE-WAIT state,
1466 * since there are no peer addresses to check against.
1467 * Upon return an ABORT will have been sent if needed.
1468 */
1469 if (!sctp_state(asoc, COOKIE_WAIT)) {
1470 if (!sctp_sf_check_restart_addrs(new_asoc, asoc, chunk,
1471 commands)) {
1472 retval = SCTP_DISPOSITION_CONSUME;
Vladislav Yasevichdf7deeb2006-08-22 00:19:51 -07001473 goto nomem_retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001474 }
1475 }
1476
1477 sctp_tietags_populate(new_asoc, asoc);
1478
1479 /* B) "Z" shall respond immediately with an INIT ACK chunk. */
1480
1481 /* If there are errors need to be reported for unknown parameters,
1482 * make sure to reserve enough room in the INIT ACK for them.
1483 */
1484 len = 0;
1485 if (err_chunk) {
1486 len = ntohs(err_chunk->chunk_hdr->length) -
1487 sizeof(sctp_chunkhdr_t);
1488 }
1489
Linus Torvalds1da177e2005-04-16 15:20:36 -07001490 repl = sctp_make_init_ack(new_asoc, chunk, GFP_ATOMIC, len);
1491 if (!repl)
1492 goto nomem;
1493
1494 /* If there are errors need to be reported for unknown parameters,
1495 * include them in the outgoing INIT ACK as "Unrecognized parameter"
1496 * parameter.
1497 */
1498 if (err_chunk) {
1499 /* Get the "Unrecognized parameter" parameter(s) out of the
1500 * ERROR chunk generated by sctp_verify_init(). Since the
1501 * error cause code for "unknown parameter" and the
1502 * "Unrecognized parameter" type is the same, we can
1503 * construct the parameters in INIT ACK by copying the
1504 * ERROR causes over.
1505 */
1506 unk_param = (sctp_unrecognized_param_t *)
1507 ((__u8 *)(err_chunk->chunk_hdr) +
1508 sizeof(sctp_chunkhdr_t));
1509 /* Replace the cause code with the "Unrecognized parameter"
1510 * parameter type.
1511 */
1512 sctp_addto_chunk(repl, len, unk_param);
1513 }
1514
1515 sctp_add_cmd_sf(commands, SCTP_CMD_NEW_ASOC, SCTP_ASOC(new_asoc));
1516 sctp_add_cmd_sf(commands, SCTP_CMD_REPLY, SCTP_CHUNK(repl));
1517
1518 /*
1519 * Note: After sending out INIT ACK with the State Cookie parameter,
1520 * "Z" MUST NOT allocate any resources for this new association.
1521 * Otherwise, "Z" will be vulnerable to resource attacks.
1522 */
1523 sctp_add_cmd_sf(commands, SCTP_CMD_DELETE_TCB, SCTP_NULL());
1524 retval = SCTP_DISPOSITION_CONSUME;
1525
Vladislav Yasevichdf7deeb2006-08-22 00:19:51 -07001526 return retval;
1527
1528nomem:
1529 retval = SCTP_DISPOSITION_NOMEM;
1530nomem_retval:
1531 if (new_asoc)
1532 sctp_association_free(new_asoc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001533cleanup:
1534 if (err_chunk)
1535 sctp_chunk_free(err_chunk);
1536 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001537}
1538
1539/*
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001540 * Handle simultaneous INIT.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001541 * This means we started an INIT and then we got an INIT request from
1542 * our peer.
1543 *
1544 * Section: 5.2.1 INIT received in COOKIE-WAIT or COOKIE-ECHOED State (Item B)
1545 * This usually indicates an initialization collision, i.e., each
1546 * endpoint is attempting, at about the same time, to establish an
1547 * association with the other endpoint.
1548 *
1549 * Upon receipt of an INIT in the COOKIE-WAIT or COOKIE-ECHOED state, an
1550 * endpoint MUST respond with an INIT ACK using the same parameters it
1551 * sent in its original INIT chunk (including its Verification Tag,
1552 * unchanged). These original parameters are combined with those from the
1553 * newly received INIT chunk. The endpoint shall also generate a State
1554 * Cookie with the INIT ACK. The endpoint uses the parameters sent in its
1555 * INIT to calculate the State Cookie.
1556 *
1557 * After that, the endpoint MUST NOT change its state, the T1-init
1558 * timer shall be left running and the corresponding TCB MUST NOT be
1559 * destroyed. The normal procedures for handling State Cookies when
1560 * a TCB exists will resolve the duplicate INITs to a single association.
1561 *
1562 * For an endpoint that is in the COOKIE-ECHOED state it MUST populate
1563 * its Tie-Tags with the Tag information of itself and its peer (see
1564 * section 5.2.2 for a description of the Tie-Tags).
1565 *
1566 * Verification Tag: Not explicit, but an INIT can not have a valid
1567 * verification tag, so we skip the check.
1568 *
1569 * Inputs
1570 * (endpoint, asoc, chunk)
1571 *
1572 * Outputs
1573 * (asoc, reply_msg, msg_up, timers, counters)
1574 *
1575 * The return value is the disposition of the chunk.
1576 */
1577sctp_disposition_t sctp_sf_do_5_2_1_siminit(const struct sctp_endpoint *ep,
1578 const struct sctp_association *asoc,
1579 const sctp_subtype_t type,
1580 void *arg,
1581 sctp_cmd_seq_t *commands)
1582{
1583 /* Call helper to do the real work for both simulataneous and
1584 * duplicate INIT chunk handling.
1585 */
1586 return sctp_sf_do_unexpected_init(ep, asoc, type, arg, commands);
1587}
1588
1589/*
1590 * Handle duplicated INIT messages. These are usually delayed
1591 * restransmissions.
1592 *
1593 * Section: 5.2.2 Unexpected INIT in States Other than CLOSED,
1594 * COOKIE-ECHOED and COOKIE-WAIT
1595 *
1596 * Unless otherwise stated, upon reception of an unexpected INIT for
1597 * this association, the endpoint shall generate an INIT ACK with a
1598 * State Cookie. In the outbound INIT ACK the endpoint MUST copy its
1599 * current Verification Tag and peer's Verification Tag into a reserved
1600 * place within the state cookie. We shall refer to these locations as
1601 * the Peer's-Tie-Tag and the Local-Tie-Tag. The outbound SCTP packet
1602 * containing this INIT ACK MUST carry a Verification Tag value equal to
1603 * the Initiation Tag found in the unexpected INIT. And the INIT ACK
1604 * MUST contain a new Initiation Tag (randomly generated see Section
1605 * 5.3.1). Other parameters for the endpoint SHOULD be copied from the
1606 * existing parameters of the association (e.g. number of outbound
1607 * streams) into the INIT ACK and cookie.
1608 *
1609 * After sending out the INIT ACK, the endpoint shall take no further
1610 * actions, i.e., the existing association, including its current state,
1611 * and the corresponding TCB MUST NOT be changed.
1612 *
1613 * Note: Only when a TCB exists and the association is not in a COOKIE-
1614 * WAIT state are the Tie-Tags populated. For a normal association INIT
1615 * (i.e. the endpoint is in a COOKIE-WAIT state), the Tie-Tags MUST be
1616 * set to 0 (indicating that no previous TCB existed). The INIT ACK and
1617 * State Cookie are populated as specified in section 5.2.1.
1618 *
1619 * Verification Tag: Not specified, but an INIT has no way of knowing
1620 * what the verification tag could be, so we ignore it.
1621 *
1622 * Inputs
1623 * (endpoint, asoc, chunk)
1624 *
1625 * Outputs
1626 * (asoc, reply_msg, msg_up, timers, counters)
1627 *
1628 * The return value is the disposition of the chunk.
1629 */
1630sctp_disposition_t sctp_sf_do_5_2_2_dupinit(const struct sctp_endpoint *ep,
1631 const struct sctp_association *asoc,
1632 const sctp_subtype_t type,
1633 void *arg,
1634 sctp_cmd_seq_t *commands)
1635{
1636 /* Call helper to do the real work for both simulataneous and
1637 * duplicate INIT chunk handling.
1638 */
1639 return sctp_sf_do_unexpected_init(ep, asoc, type, arg, commands);
1640}
1641
1642
Vlad Yasevich610ab732007-01-15 19:18:30 -08001643/*
1644 * Unexpected INIT-ACK handler.
1645 *
1646 * Section 5.2.3
1647 * If an INIT ACK received by an endpoint in any state other than the
1648 * COOKIE-WAIT state, the endpoint should discard the INIT ACK chunk.
1649 * An unexpected INIT ACK usually indicates the processing of an old or
1650 * duplicated INIT chunk.
1651*/
1652sctp_disposition_t sctp_sf_do_5_2_3_initack(const struct sctp_endpoint *ep,
1653 const struct sctp_association *asoc,
1654 const sctp_subtype_t type,
1655 void *arg, sctp_cmd_seq_t *commands)
1656{
1657 /* Per the above section, we'll discard the chunk if we have an
1658 * endpoint. If this is an OOTB INIT-ACK, treat it as such.
1659 */
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09001660 if (ep == sctp_sk((sctp_get_ctl_sock()))->ep)
Vlad Yasevich610ab732007-01-15 19:18:30 -08001661 return sctp_sf_ootb(ep, asoc, type, arg, commands);
1662 else
1663 return sctp_sf_discard_chunk(ep, asoc, type, arg, commands);
1664}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001665
1666/* Unexpected COOKIE-ECHO handler for peer restart (Table 2, action 'A')
1667 *
1668 * Section 5.2.4
1669 * A) In this case, the peer may have restarted.
1670 */
1671static sctp_disposition_t sctp_sf_do_dupcook_a(const struct sctp_endpoint *ep,
1672 const struct sctp_association *asoc,
1673 struct sctp_chunk *chunk,
1674 sctp_cmd_seq_t *commands,
1675 struct sctp_association *new_asoc)
1676{
1677 sctp_init_chunk_t *peer_init;
1678 struct sctp_ulpevent *ev;
1679 struct sctp_chunk *repl;
1680 struct sctp_chunk *err;
1681 sctp_disposition_t disposition;
1682
1683 /* new_asoc is a brand-new association, so these are not yet
1684 * side effects--it is safe to run them here.
1685 */
1686 peer_init = &chunk->subh.cookie_hdr->c.peer_init[0];
1687
Wei Yongjunde6becd2011-04-19 21:30:51 +00001688 if (!sctp_process_init(new_asoc, chunk, sctp_source(chunk), peer_init,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001689 GFP_ATOMIC))
1690 goto nomem;
1691
1692 /* Make sure no new addresses are being added during the
1693 * restart. Though this is a pretty complicated attack
1694 * since you'd have to get inside the cookie.
1695 */
1696 if (!sctp_sf_check_restart_addrs(new_asoc, asoc, chunk, commands)) {
1697 return SCTP_DISPOSITION_CONSUME;
1698 }
1699
1700 /* If the endpoint is in the SHUTDOWN-ACK-SENT state and recognizes
1701 * the peer has restarted (Action A), it MUST NOT setup a new
1702 * association but instead resend the SHUTDOWN ACK and send an ERROR
1703 * chunk with a "Cookie Received while Shutting Down" error cause to
1704 * its peer.
1705 */
1706 if (sctp_state(asoc, SHUTDOWN_ACK_SENT)) {
1707 disposition = sctp_sf_do_9_2_reshutack(ep, asoc,
1708 SCTP_ST_CHUNK(chunk->chunk_hdr->type),
1709 chunk, commands);
1710 if (SCTP_DISPOSITION_NOMEM == disposition)
1711 goto nomem;
1712
1713 err = sctp_make_op_error(asoc, chunk,
1714 SCTP_ERROR_COOKIE_IN_SHUTDOWN,
Vlad Yasevich6383cfb2009-11-23 15:53:56 -05001715 NULL, 0, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001716 if (err)
1717 sctp_add_cmd_sf(commands, SCTP_CMD_REPLY,
1718 SCTP_CHUNK(err));
1719
1720 return SCTP_DISPOSITION_CONSUME;
1721 }
1722
Wei Yongjuna000c012011-05-29 23:23:36 +00001723 /* For now, stop pending T3-rtx and SACK timers, fail any unsent/unacked
1724 * data. Consider the optional choice of resending of this data.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001725 */
Wei Yongjuna000c012011-05-29 23:23:36 +00001726 sctp_add_cmd_sf(commands, SCTP_CMD_T3_RTX_TIMERS_STOP, SCTP_NULL());
1727 sctp_add_cmd_sf(commands, SCTP_CMD_TIMER_STOP,
1728 SCTP_TO(SCTP_EVENT_TIMEOUT_SACK));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001729 sctp_add_cmd_sf(commands, SCTP_CMD_PURGE_OUTQUEUE, SCTP_NULL());
1730
Wei Yongjuna000c012011-05-29 23:23:36 +00001731 /* Stop pending T4-rto timer, teardown ASCONF queue, ASCONF-ACK queue
1732 * and ASCONF-ACK cache.
1733 */
1734 sctp_add_cmd_sf(commands, SCTP_CMD_TIMER_STOP,
1735 SCTP_TO(SCTP_EVENT_TIMEOUT_T4_RTO));
1736 sctp_add_cmd_sf(commands, SCTP_CMD_PURGE_ASCONF_QUEUE, SCTP_NULL());
1737
Linus Torvalds1da177e2005-04-16 15:20:36 -07001738 repl = sctp_make_cookie_ack(new_asoc, chunk);
1739 if (!repl)
1740 goto nomem;
1741
Linus Torvalds1da177e2005-04-16 15:20:36 -07001742 /* Report association restart to upper layer. */
1743 ev = sctp_ulpevent_make_assoc_change(asoc, 0, SCTP_RESTART, 0,
1744 new_asoc->c.sinit_num_ostreams,
1745 new_asoc->c.sinit_max_instreams,
Vlad Yasevicha5a35e72007-03-23 11:34:08 -07001746 NULL, GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001747 if (!ev)
1748 goto nomem_ev;
1749
Vladislav Yasevichdf7deeb2006-08-22 00:19:51 -07001750 /* Update the content of current association. */
1751 sctp_add_cmd_sf(commands, SCTP_CMD_UPDATE_ASSOC, SCTP_ASOC(new_asoc));
1752 sctp_add_cmd_sf(commands, SCTP_CMD_REPLY, SCTP_CHUNK(repl));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001753 sctp_add_cmd_sf(commands, SCTP_CMD_EVENT_ULP, SCTP_ULPEVENT(ev));
1754 return SCTP_DISPOSITION_CONSUME;
1755
1756nomem_ev:
1757 sctp_chunk_free(repl);
1758nomem:
1759 return SCTP_DISPOSITION_NOMEM;
1760}
1761
1762/* Unexpected COOKIE-ECHO handler for setup collision (Table 2, action 'B')
1763 *
1764 * Section 5.2.4
1765 * B) In this case, both sides may be attempting to start an association
1766 * at about the same time but the peer endpoint started its INIT
1767 * after responding to the local endpoint's INIT
1768 */
1769/* This case represents an initialization collision. */
1770static sctp_disposition_t sctp_sf_do_dupcook_b(const struct sctp_endpoint *ep,
1771 const struct sctp_association *asoc,
1772 struct sctp_chunk *chunk,
1773 sctp_cmd_seq_t *commands,
1774 struct sctp_association *new_asoc)
1775{
1776 sctp_init_chunk_t *peer_init;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001777 struct sctp_chunk *repl;
1778
1779 /* new_asoc is a brand-new association, so these are not yet
1780 * side effects--it is safe to run them here.
1781 */
1782 peer_init = &chunk->subh.cookie_hdr->c.peer_init[0];
Wei Yongjunde6becd2011-04-19 21:30:51 +00001783 if (!sctp_process_init(new_asoc, chunk, sctp_source(chunk), peer_init,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001784 GFP_ATOMIC))
1785 goto nomem;
1786
1787 /* Update the content of current association. */
1788 sctp_add_cmd_sf(commands, SCTP_CMD_UPDATE_ASSOC, SCTP_ASOC(new_asoc));
1789 sctp_add_cmd_sf(commands, SCTP_CMD_NEW_STATE,
1790 SCTP_STATE(SCTP_STATE_ESTABLISHED));
1791 SCTP_INC_STATS(SCTP_MIB_CURRESTAB);
1792 sctp_add_cmd_sf(commands, SCTP_CMD_HB_TIMERS_START, SCTP_NULL());
1793
1794 repl = sctp_make_cookie_ack(new_asoc, chunk);
1795 if (!repl)
1796 goto nomem;
1797
1798 sctp_add_cmd_sf(commands, SCTP_CMD_REPLY, SCTP_CHUNK(repl));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001799
1800 /* RFC 2960 5.1 Normal Establishment of an Association
1801 *
1802 * D) IMPLEMENTATION NOTE: An implementation may choose to
1803 * send the Communication Up notification to the SCTP user
1804 * upon reception of a valid COOKIE ECHO chunk.
Vlad Yasevich07d93962007-05-04 13:55:27 -07001805 *
1806 * Sadly, this needs to be implemented as a side-effect, because
1807 * we are not guaranteed to have set the association id of the real
1808 * association and so these notifications need to be delayed until
1809 * the association id is allocated.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001810 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001811
Vlad Yasevich07d93962007-05-04 13:55:27 -07001812 sctp_add_cmd_sf(commands, SCTP_CMD_ASSOC_CHANGE, SCTP_U8(SCTP_COMM_UP));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001813
1814 /* Sockets API Draft Section 5.3.1.6
Ivan Skytte Jorgensen0f3fffd2006-12-20 16:07:04 -08001815 * When a peer sends a Adaptation Layer Indication parameter , SCTP
Linus Torvalds1da177e2005-04-16 15:20:36 -07001816 * delivers this notification to inform the application that of the
Ivan Skytte Jorgensen0f3fffd2006-12-20 16:07:04 -08001817 * peers requested adaptation layer.
Vlad Yasevich07d93962007-05-04 13:55:27 -07001818 *
1819 * This also needs to be done as a side effect for the same reason as
1820 * above.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001821 */
Vlad Yasevich07d93962007-05-04 13:55:27 -07001822 if (asoc->peer.adaptation_ind)
1823 sctp_add_cmd_sf(commands, SCTP_CMD_ADAPTATION_IND, SCTP_NULL());
Linus Torvalds1da177e2005-04-16 15:20:36 -07001824
1825 return SCTP_DISPOSITION_CONSUME;
1826
Linus Torvalds1da177e2005-04-16 15:20:36 -07001827nomem:
1828 return SCTP_DISPOSITION_NOMEM;
1829}
1830
1831/* Unexpected COOKIE-ECHO handler for setup collision (Table 2, action 'C')
1832 *
1833 * Section 5.2.4
1834 * C) In this case, the local endpoint's cookie has arrived late.
1835 * Before it arrived, the local endpoint sent an INIT and received an
1836 * INIT-ACK and finally sent a COOKIE ECHO with the peer's same tag
1837 * but a new tag of its own.
1838 */
1839/* This case represents an initialization collision. */
1840static sctp_disposition_t sctp_sf_do_dupcook_c(const struct sctp_endpoint *ep,
1841 const struct sctp_association *asoc,
1842 struct sctp_chunk *chunk,
1843 sctp_cmd_seq_t *commands,
1844 struct sctp_association *new_asoc)
1845{
1846 /* The cookie should be silently discarded.
1847 * The endpoint SHOULD NOT change states and should leave
1848 * any timers running.
1849 */
1850 return SCTP_DISPOSITION_DISCARD;
1851}
1852
1853/* Unexpected COOKIE-ECHO handler lost chunk (Table 2, action 'D')
1854 *
1855 * Section 5.2.4
1856 *
1857 * D) When both local and remote tags match the endpoint should always
1858 * enter the ESTABLISHED state, if it has not already done so.
1859 */
1860/* This case represents an initialization collision. */
1861static sctp_disposition_t sctp_sf_do_dupcook_d(const struct sctp_endpoint *ep,
1862 const struct sctp_association *asoc,
1863 struct sctp_chunk *chunk,
1864 sctp_cmd_seq_t *commands,
1865 struct sctp_association *new_asoc)
1866{
Vladislav Yasevichdf7deeb2006-08-22 00:19:51 -07001867 struct sctp_ulpevent *ev = NULL, *ai_ev = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001868 struct sctp_chunk *repl;
1869
1870 /* Clarification from Implementor's Guide:
1871 * D) When both local and remote tags match the endpoint should
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09001872 * enter the ESTABLISHED state, if it is in the COOKIE-ECHOED state.
1873 * It should stop any cookie timer that may be running and send
1874 * a COOKIE ACK.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001875 */
1876
1877 /* Don't accidentally move back into established state. */
1878 if (asoc->state < SCTP_STATE_ESTABLISHED) {
1879 sctp_add_cmd_sf(commands, SCTP_CMD_TIMER_STOP,
1880 SCTP_TO(SCTP_EVENT_TIMEOUT_T1_COOKIE));
1881 sctp_add_cmd_sf(commands, SCTP_CMD_NEW_STATE,
1882 SCTP_STATE(SCTP_STATE_ESTABLISHED));
1883 SCTP_INC_STATS(SCTP_MIB_CURRESTAB);
1884 sctp_add_cmd_sf(commands, SCTP_CMD_HB_TIMERS_START,
1885 SCTP_NULL());
1886
1887 /* RFC 2960 5.1 Normal Establishment of an Association
1888 *
1889 * D) IMPLEMENTATION NOTE: An implementation may choose
1890 * to send the Communication Up notification to the
1891 * SCTP user upon reception of a valid COOKIE
1892 * ECHO chunk.
1893 */
Vladislav Yasevichdf7deeb2006-08-22 00:19:51 -07001894 ev = sctp_ulpevent_make_assoc_change(asoc, 0,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001895 SCTP_COMM_UP, 0,
Vladislav Yasevichdf7deeb2006-08-22 00:19:51 -07001896 asoc->c.sinit_num_ostreams,
1897 asoc->c.sinit_max_instreams,
YOSHIFUJI Hideaki9cbcbf42007-07-19 10:44:50 +09001898 NULL, GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001899 if (!ev)
1900 goto nomem;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001901
1902 /* Sockets API Draft Section 5.3.1.6
Ivan Skytte Jorgensen0f3fffd2006-12-20 16:07:04 -08001903 * When a peer sends a Adaptation Layer Indication parameter,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001904 * SCTP delivers this notification to inform the application
Ivan Skytte Jorgensen0f3fffd2006-12-20 16:07:04 -08001905 * that of the peers requested adaptation layer.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001906 */
Ivan Skytte Jorgensen0f3fffd2006-12-20 16:07:04 -08001907 if (asoc->peer.adaptation_ind) {
1908 ai_ev = sctp_ulpevent_make_adaptation_indication(asoc,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001909 GFP_ATOMIC);
Vladislav Yasevichdf7deeb2006-08-22 00:19:51 -07001910 if (!ai_ev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001911 goto nomem;
1912
Linus Torvalds1da177e2005-04-16 15:20:36 -07001913 }
1914 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001915
1916 repl = sctp_make_cookie_ack(new_asoc, chunk);
1917 if (!repl)
1918 goto nomem;
1919
Vlad Yasevich2e3216c2008-06-19 16:08:18 -07001920 sctp_add_cmd_sf(commands, SCTP_CMD_REPLY, SCTP_CHUNK(repl));
1921
Vladislav Yasevichdf7deeb2006-08-22 00:19:51 -07001922 if (ev)
1923 sctp_add_cmd_sf(commands, SCTP_CMD_EVENT_ULP,
1924 SCTP_ULPEVENT(ev));
1925 if (ai_ev)
1926 sctp_add_cmd_sf(commands, SCTP_CMD_EVENT_ULP,
1927 SCTP_ULPEVENT(ai_ev));
1928
Linus Torvalds1da177e2005-04-16 15:20:36 -07001929 return SCTP_DISPOSITION_CONSUME;
1930
1931nomem:
Vladislav Yasevichdf7deeb2006-08-22 00:19:51 -07001932 if (ai_ev)
1933 sctp_ulpevent_free(ai_ev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001934 if (ev)
1935 sctp_ulpevent_free(ev);
1936 return SCTP_DISPOSITION_NOMEM;
1937}
1938
1939/*
1940 * Handle a duplicate COOKIE-ECHO. This usually means a cookie-carrying
1941 * chunk was retransmitted and then delayed in the network.
1942 *
1943 * Section: 5.2.4 Handle a COOKIE ECHO when a TCB exists
1944 *
1945 * Verification Tag: None. Do cookie validation.
1946 *
1947 * Inputs
1948 * (endpoint, asoc, chunk)
1949 *
1950 * Outputs
1951 * (asoc, reply_msg, msg_up, timers, counters)
1952 *
1953 * The return value is the disposition of the chunk.
1954 */
1955sctp_disposition_t sctp_sf_do_5_2_4_dupcook(const struct sctp_endpoint *ep,
1956 const struct sctp_association *asoc,
1957 const sctp_subtype_t type,
1958 void *arg,
1959 sctp_cmd_seq_t *commands)
1960{
1961 sctp_disposition_t retval;
1962 struct sctp_chunk *chunk = arg;
1963 struct sctp_association *new_asoc;
1964 int error = 0;
1965 char action;
1966 struct sctp_chunk *err_chk_p;
1967
1968 /* Make sure that the chunk has a valid length from the protocol
1969 * perspective. In this case check to make sure we have at least
1970 * enough for the chunk header. Cookie length verification is
1971 * done later.
1972 */
1973 if (!sctp_chunk_length_valid(chunk, sizeof(sctp_chunkhdr_t)))
1974 return sctp_sf_violation_chunklen(ep, asoc, type, arg,
1975 commands);
1976
1977 /* "Decode" the chunk. We have no optional parameters so we
1978 * are in good shape.
1979 */
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09001980 chunk->subh.cookie_hdr = (struct sctp_signed_cookie *)chunk->skb->data;
Sridhar Samudrala62b08082006-05-05 17:04:43 -07001981 if (!pskb_pull(chunk->skb, ntohs(chunk->chunk_hdr->length) -
1982 sizeof(sctp_chunkhdr_t)))
1983 goto nomem;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001984
1985 /* In RFC 2960 5.2.4 3, if both Verification Tags in the State Cookie
1986 * of a duplicate COOKIE ECHO match the Verification Tags of the
1987 * current association, consider the State Cookie valid even if
1988 * the lifespan is exceeded.
1989 */
1990 new_asoc = sctp_unpack_cookie(ep, asoc, chunk, GFP_ATOMIC, &error,
1991 &err_chk_p);
1992
1993 /* FIXME:
1994 * If the re-build failed, what is the proper error path
1995 * from here?
1996 *
1997 * [We should abort the association. --piggy]
1998 */
1999 if (!new_asoc) {
2000 /* FIXME: Several errors are possible. A bad cookie should
2001 * be silently discarded, but think about logging it too.
2002 */
2003 switch (error) {
2004 case -SCTP_IERROR_NOMEM:
2005 goto nomem;
2006
2007 case -SCTP_IERROR_STALE_COOKIE:
2008 sctp_send_stale_cookie_err(ep, asoc, chunk, commands,
2009 err_chk_p);
2010 return sctp_sf_pdiscard(ep, asoc, type, arg, commands);
2011 case -SCTP_IERROR_BAD_SIG:
2012 default:
2013 return sctp_sf_pdiscard(ep, asoc, type, arg, commands);
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07002014 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002015 }
2016
2017 /* Compare the tie_tag in cookie with the verification tag of
2018 * current association.
2019 */
2020 action = sctp_tietags_compare(new_asoc, asoc);
2021
2022 switch (action) {
2023 case 'A': /* Association restart. */
2024 retval = sctp_sf_do_dupcook_a(ep, asoc, chunk, commands,
2025 new_asoc);
2026 break;
2027
2028 case 'B': /* Collision case B. */
2029 retval = sctp_sf_do_dupcook_b(ep, asoc, chunk, commands,
2030 new_asoc);
2031 break;
2032
2033 case 'C': /* Collision case C. */
2034 retval = sctp_sf_do_dupcook_c(ep, asoc, chunk, commands,
2035 new_asoc);
2036 break;
2037
2038 case 'D': /* Collision case D. */
2039 retval = sctp_sf_do_dupcook_d(ep, asoc, chunk, commands,
2040 new_asoc);
2041 break;
2042
2043 default: /* Discard packet for all others. */
2044 retval = sctp_sf_pdiscard(ep, asoc, type, arg, commands);
2045 break;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07002046 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002047
2048 /* Delete the tempory new association. */
Vlad Yasevich0aa8bf92013-03-12 15:53:23 +00002049 sctp_add_cmd_sf(commands, SCTP_CMD_SET_ASOC, SCTP_ASOC(new_asoc));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002050 sctp_add_cmd_sf(commands, SCTP_CMD_DELETE_TCB, SCTP_NULL());
2051
Max Matveevd5ccd492011-08-29 21:02:24 +00002052 /* Restore association pointer to provide SCTP command interpeter
2053 * with a valid context in case it needs to manipulate
2054 * the queues */
2055 sctp_add_cmd_sf(commands, SCTP_CMD_SET_ASOC,
2056 SCTP_ASOC((struct sctp_association *)asoc));
2057
Linus Torvalds1da177e2005-04-16 15:20:36 -07002058 return retval;
2059
2060nomem:
2061 return SCTP_DISPOSITION_NOMEM;
2062}
2063
2064/*
2065 * Process an ABORT. (SHUTDOWN-PENDING state)
2066 *
2067 * See sctp_sf_do_9_1_abort().
2068 */
2069sctp_disposition_t sctp_sf_shutdown_pending_abort(
2070 const struct sctp_endpoint *ep,
2071 const struct sctp_association *asoc,
2072 const sctp_subtype_t type,
2073 void *arg,
2074 sctp_cmd_seq_t *commands)
2075{
2076 struct sctp_chunk *chunk = arg;
2077
2078 if (!sctp_vtag_verify_either(chunk, asoc))
2079 return sctp_sf_pdiscard(ep, asoc, type, arg, commands);
2080
2081 /* Make sure that the ABORT chunk has a valid length.
2082 * Since this is an ABORT chunk, we have to discard it
2083 * because of the following text:
2084 * RFC 2960, Section 3.3.7
2085 * If an endpoint receives an ABORT with a format error or for an
2086 * association that doesn't exist, it MUST silently discard it.
Lucas De Marchi25985ed2011-03-30 22:57:33 -03002087 * Because the length is "invalid", we can't really discard just
Linus Torvalds1da177e2005-04-16 15:20:36 -07002088 * as we do not know its true length. So, to be safe, discard the
2089 * packet.
2090 */
2091 if (!sctp_chunk_length_valid(chunk, sizeof(sctp_abort_chunk_t)))
2092 return sctp_sf_pdiscard(ep, asoc, type, arg, commands);
2093
Vlad Yasevich75205f42007-12-20 14:12:59 -08002094 /* ADD-IP: Special case for ABORT chunks
2095 * F4) One special consideration is that ABORT Chunks arriving
2096 * destined to the IP address being deleted MUST be
2097 * ignored (see Section 5.3.1 for further details).
2098 */
2099 if (SCTP_ADDR_DEL ==
2100 sctp_bind_addr_state(&asoc->base.bind_addr, &chunk->dest))
2101 return sctp_sf_discard_chunk(ep, asoc, type, arg, commands);
2102
Vlad Yasevich75205f42007-12-20 14:12:59 -08002103 return __sctp_sf_do_9_1_abort(ep, asoc, type, arg, commands);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002104}
2105
2106/*
2107 * Process an ABORT. (SHUTDOWN-SENT state)
2108 *
2109 * See sctp_sf_do_9_1_abort().
2110 */
2111sctp_disposition_t sctp_sf_shutdown_sent_abort(const struct sctp_endpoint *ep,
2112 const struct sctp_association *asoc,
2113 const sctp_subtype_t type,
2114 void *arg,
2115 sctp_cmd_seq_t *commands)
2116{
2117 struct sctp_chunk *chunk = arg;
2118
2119 if (!sctp_vtag_verify_either(chunk, asoc))
2120 return sctp_sf_pdiscard(ep, asoc, type, arg, commands);
2121
2122 /* Make sure that the ABORT chunk has a valid length.
2123 * Since this is an ABORT chunk, we have to discard it
2124 * because of the following text:
2125 * RFC 2960, Section 3.3.7
2126 * If an endpoint receives an ABORT with a format error or for an
2127 * association that doesn't exist, it MUST silently discard it.
Lucas De Marchi25985ed2011-03-30 22:57:33 -03002128 * Because the length is "invalid", we can't really discard just
Linus Torvalds1da177e2005-04-16 15:20:36 -07002129 * as we do not know its true length. So, to be safe, discard the
2130 * packet.
2131 */
2132 if (!sctp_chunk_length_valid(chunk, sizeof(sctp_abort_chunk_t)))
2133 return sctp_sf_pdiscard(ep, asoc, type, arg, commands);
2134
Vlad Yasevich75205f42007-12-20 14:12:59 -08002135 /* ADD-IP: Special case for ABORT chunks
2136 * F4) One special consideration is that ABORT Chunks arriving
2137 * destined to the IP address being deleted MUST be
2138 * ignored (see Section 5.3.1 for further details).
2139 */
2140 if (SCTP_ADDR_DEL ==
2141 sctp_bind_addr_state(&asoc->base.bind_addr, &chunk->dest))
2142 return sctp_sf_discard_chunk(ep, asoc, type, arg, commands);
2143
Linus Torvalds1da177e2005-04-16 15:20:36 -07002144 /* Stop the T2-shutdown timer. */
2145 sctp_add_cmd_sf(commands, SCTP_CMD_TIMER_STOP,
2146 SCTP_TO(SCTP_EVENT_TIMEOUT_T2_SHUTDOWN));
2147
2148 /* Stop the T5-shutdown guard timer. */
2149 sctp_add_cmd_sf(commands, SCTP_CMD_TIMER_STOP,
2150 SCTP_TO(SCTP_EVENT_TIMEOUT_T5_SHUTDOWN_GUARD));
2151
Vlad Yasevich75205f42007-12-20 14:12:59 -08002152 return __sctp_sf_do_9_1_abort(ep, asoc, type, arg, commands);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002153}
2154
2155/*
2156 * Process an ABORT. (SHUTDOWN-ACK-SENT state)
2157 *
2158 * See sctp_sf_do_9_1_abort().
2159 */
2160sctp_disposition_t sctp_sf_shutdown_ack_sent_abort(
2161 const struct sctp_endpoint *ep,
2162 const struct sctp_association *asoc,
2163 const sctp_subtype_t type,
2164 void *arg,
2165 sctp_cmd_seq_t *commands)
2166{
2167 /* The same T2 timer, so we should be able to use
2168 * common function with the SHUTDOWN-SENT state.
2169 */
2170 return sctp_sf_shutdown_sent_abort(ep, asoc, type, arg, commands);
2171}
2172
2173/*
2174 * Handle an Error received in COOKIE_ECHOED state.
2175 *
2176 * Only handle the error type of stale COOKIE Error, the other errors will
2177 * be ignored.
2178 *
2179 * Inputs
2180 * (endpoint, asoc, chunk)
2181 *
2182 * Outputs
2183 * (asoc, reply_msg, msg_up, timers, counters)
2184 *
2185 * The return value is the disposition of the chunk.
2186 */
2187sctp_disposition_t sctp_sf_cookie_echoed_err(const struct sctp_endpoint *ep,
2188 const struct sctp_association *asoc,
2189 const sctp_subtype_t type,
2190 void *arg,
2191 sctp_cmd_seq_t *commands)
2192{
2193 struct sctp_chunk *chunk = arg;
2194 sctp_errhdr_t *err;
2195
2196 if (!sctp_vtag_verify(chunk, asoc))
2197 return sctp_sf_pdiscard(ep, asoc, type, arg, commands);
2198
2199 /* Make sure that the ERROR chunk has a valid length.
2200 * The parameter walking depends on this as well.
2201 */
2202 if (!sctp_chunk_length_valid(chunk, sizeof(sctp_operr_chunk_t)))
2203 return sctp_sf_violation_chunklen(ep, asoc, type, arg,
2204 commands);
2205
2206 /* Process the error here */
2207 /* FUTURE FIXME: When PR-SCTP related and other optional
2208 * parms are emitted, this will have to change to handle multiple
2209 * errors.
2210 */
2211 sctp_walk_errors(err, chunk->chunk_hdr) {
2212 if (SCTP_ERROR_STALE_COOKIE == err->cause)
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09002213 return sctp_sf_do_5_2_6_stale(ep, asoc, type,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002214 arg, commands);
2215 }
2216
2217 /* It is possible to have malformed error causes, and that
2218 * will cause us to end the walk early. However, since
2219 * we are discarding the packet, there should be no adverse
2220 * affects.
2221 */
2222 return sctp_sf_pdiscard(ep, asoc, type, arg, commands);
2223}
2224
2225/*
2226 * Handle a Stale COOKIE Error
2227 *
2228 * Section: 5.2.6 Handle Stale COOKIE Error
2229 * If the association is in the COOKIE-ECHOED state, the endpoint may elect
2230 * one of the following three alternatives.
2231 * ...
2232 * 3) Send a new INIT chunk to the endpoint, adding a Cookie
2233 * Preservative parameter requesting an extension to the lifetime of
2234 * the State Cookie. When calculating the time extension, an
2235 * implementation SHOULD use the RTT information measured based on the
2236 * previous COOKIE ECHO / ERROR exchange, and should add no more
2237 * than 1 second beyond the measured RTT, due to long State Cookie
2238 * lifetimes making the endpoint more subject to a replay attack.
2239 *
2240 * Verification Tag: Not explicit, but safe to ignore.
2241 *
2242 * Inputs
2243 * (endpoint, asoc, chunk)
2244 *
2245 * Outputs
2246 * (asoc, reply_msg, msg_up, timers, counters)
2247 *
2248 * The return value is the disposition of the chunk.
2249 */
2250static sctp_disposition_t sctp_sf_do_5_2_6_stale(const struct sctp_endpoint *ep,
2251 const struct sctp_association *asoc,
2252 const sctp_subtype_t type,
2253 void *arg,
2254 sctp_cmd_seq_t *commands)
2255{
2256 struct sctp_chunk *chunk = arg;
2257 time_t stale;
2258 sctp_cookie_preserve_param_t bht;
2259 sctp_errhdr_t *err;
2260 struct sctp_chunk *reply;
2261 struct sctp_bind_addr *bp;
Frank Filz3f7a87d2005-06-20 13:14:57 -07002262 int attempts = asoc->init_err_counter + 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002263
Vlad Yasevich81845c22006-01-30 15:59:54 -08002264 if (attempts > asoc->max_init_attempts) {
Sridhar Samudrala8de8c872006-05-19 10:58:12 -07002265 sctp_add_cmd_sf(commands, SCTP_CMD_SET_SK_ERR,
2266 SCTP_ERROR(ETIMEDOUT));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002267 sctp_add_cmd_sf(commands, SCTP_CMD_INIT_FAILED,
Al Virodc251b22006-11-20 17:00:44 -08002268 SCTP_PERR(SCTP_ERROR_STALE_COOKIE));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002269 return SCTP_DISPOSITION_DELETE_TCB;
2270 }
2271
2272 err = (sctp_errhdr_t *)(chunk->skb->data);
2273
2274 /* When calculating the time extension, an implementation
2275 * SHOULD use the RTT information measured based on the
2276 * previous COOKIE ECHO / ERROR exchange, and should add no
2277 * more than 1 second beyond the measured RTT, due to long
2278 * State Cookie lifetimes making the endpoint more subject to
2279 * a replay attack.
2280 * Measure of Staleness's unit is usec. (1/1000000 sec)
2281 * Suggested Cookie Life-span Increment's unit is msec.
2282 * (1/1000 sec)
2283 * In general, if you use the suggested cookie life, the value
2284 * found in the field of measure of staleness should be doubled
2285 * to give ample time to retransmit the new cookie and thus
2286 * yield a higher probability of success on the reattempt.
2287 */
Al Viro34bcca22006-11-20 17:27:15 -08002288 stale = ntohl(*(__be32 *)((u8 *)err + sizeof(sctp_errhdr_t)));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002289 stale = (stale * 2) / 1000;
2290
2291 bht.param_hdr.type = SCTP_PARAM_COOKIE_PRESERVATIVE;
2292 bht.param_hdr.length = htons(sizeof(bht));
2293 bht.lifespan_increment = htonl(stale);
2294
2295 /* Build that new INIT chunk. */
2296 bp = (struct sctp_bind_addr *) &asoc->base.bind_addr;
2297 reply = sctp_make_init(asoc, bp, GFP_ATOMIC, sizeof(bht));
2298 if (!reply)
2299 goto nomem;
2300
2301 sctp_addto_chunk(reply, sizeof(bht), &bht);
2302
2303 /* Clear peer's init_tag cached in assoc as we are sending a new INIT */
2304 sctp_add_cmd_sf(commands, SCTP_CMD_CLEAR_INIT_TAG, SCTP_NULL());
2305
2306 /* Stop pending T3-rtx and heartbeat timers */
2307 sctp_add_cmd_sf(commands, SCTP_CMD_T3_RTX_TIMERS_STOP, SCTP_NULL());
2308 sctp_add_cmd_sf(commands, SCTP_CMD_HB_TIMERS_STOP, SCTP_NULL());
2309
2310 /* Delete non-primary peer ip addresses since we are transitioning
2311 * back to the COOKIE-WAIT state
2312 */
2313 sctp_add_cmd_sf(commands, SCTP_CMD_DEL_NON_PRIMARY, SCTP_NULL());
2314
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09002315 /* If we've sent any data bundled with COOKIE-ECHO we will need to
2316 * resend
Linus Torvalds1da177e2005-04-16 15:20:36 -07002317 */
Vlad Yasevichb6157d82007-10-24 15:59:16 -04002318 sctp_add_cmd_sf(commands, SCTP_CMD_T1_RETRAN,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002319 SCTP_TRANSPORT(asoc->peer.primary_path));
2320
2321 /* Cast away the const modifier, as we want to just
2322 * rerun it through as a sideffect.
2323 */
Frank Filz3f7a87d2005-06-20 13:14:57 -07002324 sctp_add_cmd_sf(commands, SCTP_CMD_INIT_COUNTER_INC, SCTP_NULL());
Linus Torvalds1da177e2005-04-16 15:20:36 -07002325
2326 sctp_add_cmd_sf(commands, SCTP_CMD_TIMER_STOP,
2327 SCTP_TO(SCTP_EVENT_TIMEOUT_T1_COOKIE));
2328 sctp_add_cmd_sf(commands, SCTP_CMD_NEW_STATE,
2329 SCTP_STATE(SCTP_STATE_COOKIE_WAIT));
2330 sctp_add_cmd_sf(commands, SCTP_CMD_TIMER_START,
2331 SCTP_TO(SCTP_EVENT_TIMEOUT_T1_INIT));
2332
2333 sctp_add_cmd_sf(commands, SCTP_CMD_REPLY, SCTP_CHUNK(reply));
2334
2335 return SCTP_DISPOSITION_CONSUME;
2336
2337nomem:
2338 return SCTP_DISPOSITION_NOMEM;
2339}
2340
2341/*
2342 * Process an ABORT.
2343 *
2344 * Section: 9.1
2345 * After checking the Verification Tag, the receiving endpoint shall
2346 * remove the association from its record, and shall report the
2347 * termination to its upper layer.
2348 *
2349 * Verification Tag: 8.5.1 Exceptions in Verification Tag Rules
2350 * B) Rules for packet carrying ABORT:
2351 *
2352 * - The endpoint shall always fill in the Verification Tag field of the
2353 * outbound packet with the destination endpoint's tag value if it
2354 * is known.
2355 *
2356 * - If the ABORT is sent in response to an OOTB packet, the endpoint
2357 * MUST follow the procedure described in Section 8.4.
2358 *
2359 * - The receiver MUST accept the packet if the Verification Tag
2360 * matches either its own tag, OR the tag of its peer. Otherwise, the
2361 * receiver MUST silently discard the packet and take no further
2362 * action.
2363 *
2364 * Inputs
2365 * (endpoint, asoc, chunk)
2366 *
2367 * Outputs
2368 * (asoc, reply_msg, msg_up, timers, counters)
2369 *
2370 * The return value is the disposition of the chunk.
2371 */
2372sctp_disposition_t sctp_sf_do_9_1_abort(const struct sctp_endpoint *ep,
2373 const struct sctp_association *asoc,
2374 const sctp_subtype_t type,
2375 void *arg,
2376 sctp_cmd_seq_t *commands)
2377{
2378 struct sctp_chunk *chunk = arg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002379
2380 if (!sctp_vtag_verify_either(chunk, asoc))
2381 return sctp_sf_pdiscard(ep, asoc, type, arg, commands);
2382
2383 /* Make sure that the ABORT chunk has a valid length.
2384 * Since this is an ABORT chunk, we have to discard it
2385 * because of the following text:
2386 * RFC 2960, Section 3.3.7
2387 * If an endpoint receives an ABORT with a format error or for an
2388 * association that doesn't exist, it MUST silently discard it.
Lucas De Marchi25985ed2011-03-30 22:57:33 -03002389 * Because the length is "invalid", we can't really discard just
Linus Torvalds1da177e2005-04-16 15:20:36 -07002390 * as we do not know its true length. So, to be safe, discard the
2391 * packet.
2392 */
2393 if (!sctp_chunk_length_valid(chunk, sizeof(sctp_abort_chunk_t)))
2394 return sctp_sf_pdiscard(ep, asoc, type, arg, commands);
2395
Vlad Yasevich75205f42007-12-20 14:12:59 -08002396 /* ADD-IP: Special case for ABORT chunks
2397 * F4) One special consideration is that ABORT Chunks arriving
2398 * destined to the IP address being deleted MUST be
2399 * ignored (see Section 5.3.1 for further details).
2400 */
2401 if (SCTP_ADDR_DEL ==
2402 sctp_bind_addr_state(&asoc->base.bind_addr, &chunk->dest))
2403 return sctp_sf_discard_chunk(ep, asoc, type, arg, commands);
2404
2405 return __sctp_sf_do_9_1_abort(ep, asoc, type, arg, commands);
2406}
2407
2408static sctp_disposition_t __sctp_sf_do_9_1_abort(const struct sctp_endpoint *ep,
2409 const struct sctp_association *asoc,
2410 const sctp_subtype_t type,
2411 void *arg,
2412 sctp_cmd_seq_t *commands)
2413{
2414 struct sctp_chunk *chunk = arg;
2415 unsigned len;
2416 __be16 error = SCTP_ERROR_NO_ERROR;
2417
Linus Torvalds1da177e2005-04-16 15:20:36 -07002418 /* See if we have an error cause code in the chunk. */
2419 len = ntohs(chunk->chunk_hdr->length);
Shan Wei96ca4682011-04-19 21:26:26 +00002420 if (len >= sizeof(struct sctp_chunkhdr) + sizeof(struct sctp_errhdr)) {
2421
2422 sctp_errhdr_t *err;
2423 sctp_walk_errors(err, chunk->chunk_hdr);
2424 if ((void *)err != (void *)chunk->chunk_end)
2425 return sctp_sf_pdiscard(ep, asoc, type, arg, commands);
2426
Linus Torvalds1da177e2005-04-16 15:20:36 -07002427 error = ((sctp_errhdr_t *)chunk->skb->data)->cause;
Shan Wei96ca4682011-04-19 21:26:26 +00002428 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002429
Sridhar Samudrala8de8c872006-05-19 10:58:12 -07002430 sctp_add_cmd_sf(commands, SCTP_CMD_SET_SK_ERR, SCTP_ERROR(ECONNRESET));
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09002431 /* ASSOC_FAILED will DELETE_TCB. */
Al Viro5be291f2006-11-20 17:01:06 -08002432 sctp_add_cmd_sf(commands, SCTP_CMD_ASSOC_FAILED, SCTP_PERR(error));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002433 SCTP_INC_STATS(SCTP_MIB_ABORTEDS);
2434 SCTP_DEC_STATS(SCTP_MIB_CURRESTAB);
2435
2436 return SCTP_DISPOSITION_ABORT;
2437}
2438
2439/*
2440 * Process an ABORT. (COOKIE-WAIT state)
2441 *
2442 * See sctp_sf_do_9_1_abort() above.
2443 */
2444sctp_disposition_t sctp_sf_cookie_wait_abort(const struct sctp_endpoint *ep,
2445 const struct sctp_association *asoc,
2446 const sctp_subtype_t type,
2447 void *arg,
2448 sctp_cmd_seq_t *commands)
2449{
2450 struct sctp_chunk *chunk = arg;
2451 unsigned len;
Al Virof94c0192006-11-20 17:00:25 -08002452 __be16 error = SCTP_ERROR_NO_ERROR;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002453
2454 if (!sctp_vtag_verify_either(chunk, asoc))
2455 return sctp_sf_pdiscard(ep, asoc, type, arg, commands);
2456
2457 /* Make sure that the ABORT chunk has a valid length.
2458 * Since this is an ABORT chunk, we have to discard it
2459 * because of the following text:
2460 * RFC 2960, Section 3.3.7
2461 * If an endpoint receives an ABORT with a format error or for an
2462 * association that doesn't exist, it MUST silently discard it.
Lucas De Marchi25985ed2011-03-30 22:57:33 -03002463 * Because the length is "invalid", we can't really discard just
Linus Torvalds1da177e2005-04-16 15:20:36 -07002464 * as we do not know its true length. So, to be safe, discard the
2465 * packet.
2466 */
2467 if (!sctp_chunk_length_valid(chunk, sizeof(sctp_abort_chunk_t)))
2468 return sctp_sf_pdiscard(ep, asoc, type, arg, commands);
2469
2470 /* See if we have an error cause code in the chunk. */
2471 len = ntohs(chunk->chunk_hdr->length);
2472 if (len >= sizeof(struct sctp_chunkhdr) + sizeof(struct sctp_errhdr))
2473 error = ((sctp_errhdr_t *)chunk->skb->data)->cause;
2474
Sridhar Samudrala8de8c872006-05-19 10:58:12 -07002475 return sctp_stop_t1_and_abort(commands, error, ECONNREFUSED, asoc,
2476 chunk->transport);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002477}
2478
2479/*
2480 * Process an incoming ICMP as an ABORT. (COOKIE-WAIT state)
2481 */
2482sctp_disposition_t sctp_sf_cookie_wait_icmp_abort(const struct sctp_endpoint *ep,
2483 const struct sctp_association *asoc,
2484 const sctp_subtype_t type,
2485 void *arg,
2486 sctp_cmd_seq_t *commands)
2487{
Sridhar Samudrala8de8c872006-05-19 10:58:12 -07002488 return sctp_stop_t1_and_abort(commands, SCTP_ERROR_NO_ERROR,
2489 ENOPROTOOPT, asoc,
Frank Filz3f7a87d2005-06-20 13:14:57 -07002490 (struct sctp_transport *)arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002491}
2492
2493/*
2494 * Process an ABORT. (COOKIE-ECHOED state)
2495 */
2496sctp_disposition_t sctp_sf_cookie_echoed_abort(const struct sctp_endpoint *ep,
2497 const struct sctp_association *asoc,
2498 const sctp_subtype_t type,
2499 void *arg,
2500 sctp_cmd_seq_t *commands)
2501{
2502 /* There is a single T1 timer, so we should be able to use
2503 * common function with the COOKIE-WAIT state.
2504 */
2505 return sctp_sf_cookie_wait_abort(ep, asoc, type, arg, commands);
2506}
2507
2508/*
2509 * Stop T1 timer and abort association with "INIT failed".
2510 *
2511 * This is common code called by several sctp_sf_*_abort() functions above.
2512 */
Adrian Bunk52c1da32005-06-23 22:05:33 -07002513static sctp_disposition_t sctp_stop_t1_and_abort(sctp_cmd_seq_t *commands,
Al Virof94c0192006-11-20 17:00:25 -08002514 __be16 error, int sk_err,
Frank Filz3f7a87d2005-06-20 13:14:57 -07002515 const struct sctp_association *asoc,
2516 struct sctp_transport *transport)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002517{
Frank Filz3f7a87d2005-06-20 13:14:57 -07002518 SCTP_DEBUG_PRINTK("ABORT received (INIT).\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002519 sctp_add_cmd_sf(commands, SCTP_CMD_NEW_STATE,
2520 SCTP_STATE(SCTP_STATE_CLOSED));
2521 SCTP_INC_STATS(SCTP_MIB_ABORTEDS);
2522 sctp_add_cmd_sf(commands, SCTP_CMD_TIMER_STOP,
2523 SCTP_TO(SCTP_EVENT_TIMEOUT_T1_INIT));
Sridhar Samudrala8de8c872006-05-19 10:58:12 -07002524 sctp_add_cmd_sf(commands, SCTP_CMD_SET_SK_ERR, SCTP_ERROR(sk_err));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002525 /* CMD_INIT_FAILED will DELETE_TCB. */
2526 sctp_add_cmd_sf(commands, SCTP_CMD_INIT_FAILED,
Al Virodc251b22006-11-20 17:00:44 -08002527 SCTP_PERR(error));
Frank Filz3f7a87d2005-06-20 13:14:57 -07002528 return SCTP_DISPOSITION_ABORT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002529}
2530
2531/*
2532 * sctp_sf_do_9_2_shut
2533 *
2534 * Section: 9.2
2535 * Upon the reception of the SHUTDOWN, the peer endpoint shall
2536 * - enter the SHUTDOWN-RECEIVED state,
2537 *
2538 * - stop accepting new data from its SCTP user
2539 *
2540 * - verify, by checking the Cumulative TSN Ack field of the chunk,
2541 * that all its outstanding DATA chunks have been received by the
2542 * SHUTDOWN sender.
2543 *
2544 * Once an endpoint as reached the SHUTDOWN-RECEIVED state it MUST NOT
2545 * send a SHUTDOWN in response to a ULP request. And should discard
2546 * subsequent SHUTDOWN chunks.
2547 *
2548 * If there are still outstanding DATA chunks left, the SHUTDOWN
2549 * receiver shall continue to follow normal data transmission
2550 * procedures defined in Section 6 until all outstanding DATA chunks
2551 * are acknowledged; however, the SHUTDOWN receiver MUST NOT accept
2552 * new data from its SCTP user.
2553 *
2554 * Verification Tag: 8.5 Verification Tag [Normal verification]
2555 *
2556 * Inputs
2557 * (endpoint, asoc, chunk)
2558 *
2559 * Outputs
2560 * (asoc, reply_msg, msg_up, timers, counters)
2561 *
2562 * The return value is the disposition of the chunk.
2563 */
2564sctp_disposition_t sctp_sf_do_9_2_shutdown(const struct sctp_endpoint *ep,
2565 const struct sctp_association *asoc,
2566 const sctp_subtype_t type,
2567 void *arg,
2568 sctp_cmd_seq_t *commands)
2569{
2570 struct sctp_chunk *chunk = arg;
2571 sctp_shutdownhdr_t *sdh;
2572 sctp_disposition_t disposition;
2573 struct sctp_ulpevent *ev;
Wei Yongjundf10eec2008-10-23 01:00:21 -07002574 __u32 ctsn;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002575
2576 if (!sctp_vtag_verify(chunk, asoc))
2577 return sctp_sf_pdiscard(ep, asoc, type, arg, commands);
2578
2579 /* Make sure that the SHUTDOWN chunk has a valid length. */
2580 if (!sctp_chunk_length_valid(chunk,
2581 sizeof(struct sctp_shutdown_chunk_t)))
2582 return sctp_sf_violation_chunklen(ep, asoc, type, arg,
2583 commands);
2584
2585 /* Convert the elaborate header. */
2586 sdh = (sctp_shutdownhdr_t *)chunk->skb->data;
2587 skb_pull(chunk->skb, sizeof(sctp_shutdownhdr_t));
2588 chunk->subh.shutdown_hdr = sdh;
Wei Yongjundf10eec2008-10-23 01:00:21 -07002589 ctsn = ntohl(sdh->cum_tsn_ack);
2590
Wei Yongjuna2f36ee2009-08-22 11:24:00 +08002591 if (TSN_lt(ctsn, asoc->ctsn_ack_point)) {
2592 SCTP_DEBUG_PRINTK("ctsn %x\n", ctsn);
2593 SCTP_DEBUG_PRINTK("ctsn_ack_point %x\n", asoc->ctsn_ack_point);
2594 return SCTP_DISPOSITION_DISCARD;
2595 }
2596
Wei Yongjundf10eec2008-10-23 01:00:21 -07002597 /* If Cumulative TSN Ack beyond the max tsn currently
2598 * send, terminating the association and respond to the
2599 * sender with an ABORT.
2600 */
2601 if (!TSN_lt(ctsn, asoc->next_tsn))
2602 return sctp_sf_violation_ctsn(ep, asoc, type, arg, commands);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002603
Sridhar Samudralaeb0e0072005-09-22 23:48:38 -07002604 /* API 5.3.1.5 SCTP_SHUTDOWN_EVENT
2605 * When a peer sends a SHUTDOWN, SCTP delivers this notification to
2606 * inform the application that it should cease sending data.
2607 */
2608 ev = sctp_ulpevent_make_shutdown_event(asoc, 0, GFP_ATOMIC);
2609 if (!ev) {
2610 disposition = SCTP_DISPOSITION_NOMEM;
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09002611 goto out;
Sridhar Samudralaeb0e0072005-09-22 23:48:38 -07002612 }
2613 sctp_add_cmd_sf(commands, SCTP_CMD_EVENT_ULP, SCTP_ULPEVENT(ev));
2614
Linus Torvalds1da177e2005-04-16 15:20:36 -07002615 /* Upon the reception of the SHUTDOWN, the peer endpoint shall
2616 * - enter the SHUTDOWN-RECEIVED state,
2617 * - stop accepting new data from its SCTP user
2618 *
2619 * [This is implicit in the new state.]
2620 */
2621 sctp_add_cmd_sf(commands, SCTP_CMD_NEW_STATE,
2622 SCTP_STATE(SCTP_STATE_SHUTDOWN_RECEIVED));
2623 disposition = SCTP_DISPOSITION_CONSUME;
2624
2625 if (sctp_outq_is_empty(&asoc->outqueue)) {
2626 disposition = sctp_sf_do_9_2_shutdown_ack(ep, asoc, type,
2627 arg, commands);
2628 }
2629
2630 if (SCTP_DISPOSITION_NOMEM == disposition)
2631 goto out;
2632
2633 /* - verify, by checking the Cumulative TSN Ack field of the
2634 * chunk, that all its outstanding DATA chunks have been
2635 * received by the SHUTDOWN sender.
2636 */
2637 sctp_add_cmd_sf(commands, SCTP_CMD_PROCESS_CTSN,
Al Viro2178eda2006-11-20 17:26:53 -08002638 SCTP_BE32(chunk->subh.shutdown_hdr->cum_tsn_ack));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002639
Linus Torvalds1da177e2005-04-16 15:20:36 -07002640out:
2641 return disposition;
2642}
2643
Wei Yongjun2e3f92d2008-10-23 01:01:18 -07002644/*
2645 * sctp_sf_do_9_2_shut_ctsn
2646 *
2647 * Once an endpoint has reached the SHUTDOWN-RECEIVED state,
2648 * it MUST NOT send a SHUTDOWN in response to a ULP request.
2649 * The Cumulative TSN Ack of the received SHUTDOWN chunk
2650 * MUST be processed.
2651 */
2652sctp_disposition_t sctp_sf_do_9_2_shut_ctsn(const struct sctp_endpoint *ep,
2653 const struct sctp_association *asoc,
2654 const sctp_subtype_t type,
2655 void *arg,
2656 sctp_cmd_seq_t *commands)
2657{
2658 struct sctp_chunk *chunk = arg;
2659 sctp_shutdownhdr_t *sdh;
Wei Yongjuna2f36ee2009-08-22 11:24:00 +08002660 __u32 ctsn;
Wei Yongjun2e3f92d2008-10-23 01:01:18 -07002661
2662 if (!sctp_vtag_verify(chunk, asoc))
2663 return sctp_sf_pdiscard(ep, asoc, type, arg, commands);
2664
2665 /* Make sure that the SHUTDOWN chunk has a valid length. */
2666 if (!sctp_chunk_length_valid(chunk,
2667 sizeof(struct sctp_shutdown_chunk_t)))
2668 return sctp_sf_violation_chunklen(ep, asoc, type, arg,
2669 commands);
2670
2671 sdh = (sctp_shutdownhdr_t *)chunk->skb->data;
Wei Yongjuna2f36ee2009-08-22 11:24:00 +08002672 ctsn = ntohl(sdh->cum_tsn_ack);
2673
2674 if (TSN_lt(ctsn, asoc->ctsn_ack_point)) {
2675 SCTP_DEBUG_PRINTK("ctsn %x\n", ctsn);
2676 SCTP_DEBUG_PRINTK("ctsn_ack_point %x\n", asoc->ctsn_ack_point);
2677 return SCTP_DISPOSITION_DISCARD;
2678 }
Wei Yongjun2e3f92d2008-10-23 01:01:18 -07002679
2680 /* If Cumulative TSN Ack beyond the max tsn currently
2681 * send, terminating the association and respond to the
2682 * sender with an ABORT.
2683 */
Wei Yongjuna2f36ee2009-08-22 11:24:00 +08002684 if (!TSN_lt(ctsn, asoc->next_tsn))
Wei Yongjun2e3f92d2008-10-23 01:01:18 -07002685 return sctp_sf_violation_ctsn(ep, asoc, type, arg, commands);
2686
2687 /* verify, by checking the Cumulative TSN Ack field of the
2688 * chunk, that all its outstanding DATA chunks have been
2689 * received by the SHUTDOWN sender.
2690 */
2691 sctp_add_cmd_sf(commands, SCTP_CMD_PROCESS_CTSN,
2692 SCTP_BE32(sdh->cum_tsn_ack));
2693
2694 return SCTP_DISPOSITION_CONSUME;
2695}
2696
Linus Torvalds1da177e2005-04-16 15:20:36 -07002697/* RFC 2960 9.2
2698 * If an endpoint is in SHUTDOWN-ACK-SENT state and receives an INIT chunk
2699 * (e.g., if the SHUTDOWN COMPLETE was lost) with source and destination
2700 * transport addresses (either in the IP addresses or in the INIT chunk)
2701 * that belong to this association, it should discard the INIT chunk and
2702 * retransmit the SHUTDOWN ACK chunk.
2703 */
2704sctp_disposition_t sctp_sf_do_9_2_reshutack(const struct sctp_endpoint *ep,
2705 const struct sctp_association *asoc,
2706 const sctp_subtype_t type,
2707 void *arg,
2708 sctp_cmd_seq_t *commands)
2709{
2710 struct sctp_chunk *chunk = (struct sctp_chunk *) arg;
2711 struct sctp_chunk *reply;
2712
Vlad Yasevichece25df2007-09-07 16:30:54 -04002713 /* Make sure that the chunk has a valid length */
2714 if (!sctp_chunk_length_valid(chunk, sizeof(sctp_chunkhdr_t)))
2715 return sctp_sf_violation_chunklen(ep, asoc, type, arg,
2716 commands);
2717
Linus Torvalds1da177e2005-04-16 15:20:36 -07002718 /* Since we are not going to really process this INIT, there
2719 * is no point in verifying chunk boundries. Just generate
2720 * the SHUTDOWN ACK.
2721 */
2722 reply = sctp_make_shutdown_ack(asoc, chunk);
2723 if (NULL == reply)
2724 goto nomem;
2725
2726 /* Set the transport for the SHUTDOWN ACK chunk and the timeout for
2727 * the T2-SHUTDOWN timer.
2728 */
2729 sctp_add_cmd_sf(commands, SCTP_CMD_SETUP_T2, SCTP_CHUNK(reply));
2730
2731 /* and restart the T2-shutdown timer. */
2732 sctp_add_cmd_sf(commands, SCTP_CMD_TIMER_RESTART,
2733 SCTP_TO(SCTP_EVENT_TIMEOUT_T2_SHUTDOWN));
2734
2735 sctp_add_cmd_sf(commands, SCTP_CMD_REPLY, SCTP_CHUNK(reply));
2736
2737 return SCTP_DISPOSITION_CONSUME;
2738nomem:
2739 return SCTP_DISPOSITION_NOMEM;
2740}
2741
2742/*
2743 * sctp_sf_do_ecn_cwr
2744 *
2745 * Section: Appendix A: Explicit Congestion Notification
2746 *
2747 * CWR:
2748 *
2749 * RFC 2481 details a specific bit for a sender to send in the header of
2750 * its next outbound TCP segment to indicate to its peer that it has
2751 * reduced its congestion window. This is termed the CWR bit. For
2752 * SCTP the same indication is made by including the CWR chunk.
2753 * This chunk contains one data element, i.e. the TSN number that
2754 * was sent in the ECNE chunk. This element represents the lowest
2755 * TSN number in the datagram that was originally marked with the
2756 * CE bit.
2757 *
2758 * Verification Tag: 8.5 Verification Tag [Normal verification]
2759 * Inputs
2760 * (endpoint, asoc, chunk)
2761 *
2762 * Outputs
2763 * (asoc, reply_msg, msg_up, timers, counters)
2764 *
2765 * The return value is the disposition of the chunk.
2766 */
2767sctp_disposition_t sctp_sf_do_ecn_cwr(const struct sctp_endpoint *ep,
2768 const struct sctp_association *asoc,
2769 const sctp_subtype_t type,
2770 void *arg,
2771 sctp_cmd_seq_t *commands)
2772{
2773 sctp_cwrhdr_t *cwr;
2774 struct sctp_chunk *chunk = arg;
Al Viro34bcca22006-11-20 17:27:15 -08002775 u32 lowest_tsn;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002776
2777 if (!sctp_vtag_verify(chunk, asoc))
2778 return sctp_sf_pdiscard(ep, asoc, type, arg, commands);
2779
2780 if (!sctp_chunk_length_valid(chunk, sizeof(sctp_ecne_chunk_t)))
2781 return sctp_sf_violation_chunklen(ep, asoc, type, arg,
2782 commands);
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09002783
Linus Torvalds1da177e2005-04-16 15:20:36 -07002784 cwr = (sctp_cwrhdr_t *) chunk->skb->data;
2785 skb_pull(chunk->skb, sizeof(sctp_cwrhdr_t));
2786
Al Viro34bcca22006-11-20 17:27:15 -08002787 lowest_tsn = ntohl(cwr->lowest_tsn);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002788
2789 /* Does this CWR ack the last sent congestion notification? */
Al Viro34bcca22006-11-20 17:27:15 -08002790 if (TSN_lte(asoc->last_ecne_tsn, lowest_tsn)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002791 /* Stop sending ECNE. */
2792 sctp_add_cmd_sf(commands,
2793 SCTP_CMD_ECN_CWR,
Al Viro34bcca22006-11-20 17:27:15 -08002794 SCTP_U32(lowest_tsn));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002795 }
2796 return SCTP_DISPOSITION_CONSUME;
2797}
2798
2799/*
2800 * sctp_sf_do_ecne
2801 *
2802 * Section: Appendix A: Explicit Congestion Notification
2803 *
2804 * ECN-Echo
2805 *
2806 * RFC 2481 details a specific bit for a receiver to send back in its
2807 * TCP acknowledgements to notify the sender of the Congestion
2808 * Experienced (CE) bit having arrived from the network. For SCTP this
2809 * same indication is made by including the ECNE chunk. This chunk
2810 * contains one data element, i.e. the lowest TSN associated with the IP
2811 * datagram marked with the CE bit.....
2812 *
2813 * Verification Tag: 8.5 Verification Tag [Normal verification]
2814 * Inputs
2815 * (endpoint, asoc, chunk)
2816 *
2817 * Outputs
2818 * (asoc, reply_msg, msg_up, timers, counters)
2819 *
2820 * The return value is the disposition of the chunk.
2821 */
2822sctp_disposition_t sctp_sf_do_ecne(const struct sctp_endpoint *ep,
2823 const struct sctp_association *asoc,
2824 const sctp_subtype_t type,
2825 void *arg,
2826 sctp_cmd_seq_t *commands)
2827{
2828 sctp_ecnehdr_t *ecne;
2829 struct sctp_chunk *chunk = arg;
2830
2831 if (!sctp_vtag_verify(chunk, asoc))
2832 return sctp_sf_pdiscard(ep, asoc, type, arg, commands);
2833
2834 if (!sctp_chunk_length_valid(chunk, sizeof(sctp_ecne_chunk_t)))
2835 return sctp_sf_violation_chunklen(ep, asoc, type, arg,
2836 commands);
2837
2838 ecne = (sctp_ecnehdr_t *) chunk->skb->data;
2839 skb_pull(chunk->skb, sizeof(sctp_ecnehdr_t));
2840
2841 /* If this is a newer ECNE than the last CWR packet we sent out */
2842 sctp_add_cmd_sf(commands, SCTP_CMD_ECN_ECNE,
2843 SCTP_U32(ntohl(ecne->lowest_tsn)));
2844
2845 return SCTP_DISPOSITION_CONSUME;
2846}
2847
2848/*
2849 * Section: 6.2 Acknowledgement on Reception of DATA Chunks
2850 *
2851 * The SCTP endpoint MUST always acknowledge the reception of each valid
2852 * DATA chunk.
2853 *
2854 * The guidelines on delayed acknowledgement algorithm specified in
2855 * Section 4.2 of [RFC2581] SHOULD be followed. Specifically, an
2856 * acknowledgement SHOULD be generated for at least every second packet
2857 * (not every second DATA chunk) received, and SHOULD be generated within
2858 * 200 ms of the arrival of any unacknowledged DATA chunk. In some
2859 * situations it may be beneficial for an SCTP transmitter to be more
2860 * conservative than the algorithms detailed in this document allow.
2861 * However, an SCTP transmitter MUST NOT be more aggressive than the
2862 * following algorithms allow.
2863 *
2864 * A SCTP receiver MUST NOT generate more than one SACK for every
2865 * incoming packet, other than to update the offered window as the
2866 * receiving application consumes new data.
2867 *
2868 * Verification Tag: 8.5 Verification Tag [Normal verification]
2869 *
2870 * Inputs
2871 * (endpoint, asoc, chunk)
2872 *
2873 * Outputs
2874 * (asoc, reply_msg, msg_up, timers, counters)
2875 *
2876 * The return value is the disposition of the chunk.
2877 */
2878sctp_disposition_t sctp_sf_eat_data_6_2(const struct sctp_endpoint *ep,
2879 const struct sctp_association *asoc,
2880 const sctp_subtype_t type,
2881 void *arg,
2882 sctp_cmd_seq_t *commands)
2883{
2884 struct sctp_chunk *chunk = arg;
Wei Yongjun6dc76942009-11-23 15:53:53 -05002885 sctp_arg_t force = SCTP_NOFORCE();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002886 int error;
2887
2888 if (!sctp_vtag_verify(chunk, asoc)) {
2889 sctp_add_cmd_sf(commands, SCTP_CMD_REPORT_BAD_TAG,
2890 SCTP_NULL());
2891 return sctp_sf_pdiscard(ep, asoc, type, arg, commands);
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09002892 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002893
2894 if (!sctp_chunk_length_valid(chunk, sizeof(sctp_data_chunk_t)))
2895 return sctp_sf_violation_chunklen(ep, asoc, type, arg,
2896 commands);
2897
2898 error = sctp_eat_data(asoc, chunk, commands );
2899 switch (error) {
2900 case SCTP_IERROR_NO_ERROR:
2901 break;
2902 case SCTP_IERROR_HIGH_TSN:
2903 case SCTP_IERROR_BAD_STREAM:
Sridhar Samudralaac0b0462006-08-22 00:15:33 -07002904 SCTP_INC_STATS(SCTP_MIB_IN_DATA_CHUNK_DISCARDS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002905 goto discard_noforce;
2906 case SCTP_IERROR_DUP_TSN:
2907 case SCTP_IERROR_IGNORE_TSN:
Sridhar Samudralaac0b0462006-08-22 00:15:33 -07002908 SCTP_INC_STATS(SCTP_MIB_IN_DATA_CHUNK_DISCARDS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002909 goto discard_force;
2910 case SCTP_IERROR_NO_DATA:
2911 goto consume;
Vlad Yasevichf1751c52009-09-04 18:21:03 -04002912 case SCTP_IERROR_PROTO_VIOLATION:
2913 return sctp_sf_abort_violation(ep, asoc, chunk, commands,
2914 (u8 *)chunk->subh.data_hdr, sizeof(sctp_datahdr_t));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002915 default:
2916 BUG();
2917 }
2918
Wei Yongjun6dc76942009-11-23 15:53:53 -05002919 if (chunk->chunk_hdr->flags & SCTP_DATA_SACK_IMM)
2920 force = SCTP_FORCE();
2921
Linus Torvalds1da177e2005-04-16 15:20:36 -07002922 if (asoc->autoclose) {
2923 sctp_add_cmd_sf(commands, SCTP_CMD_TIMER_RESTART,
2924 SCTP_TO(SCTP_EVENT_TIMEOUT_AUTOCLOSE));
2925 }
2926
2927 /* If this is the last chunk in a packet, we need to count it
2928 * toward sack generation. Note that we need to SACK every
2929 * OTHER packet containing data chunks, EVEN IF WE DISCARD
2930 * THEM. We elect to NOT generate SACK's if the chunk fails
2931 * the verification tag test.
2932 *
2933 * RFC 2960 6.2 Acknowledgement on Reception of DATA Chunks
2934 *
2935 * The SCTP endpoint MUST always acknowledge the reception of
2936 * each valid DATA chunk.
2937 *
2938 * The guidelines on delayed acknowledgement algorithm
2939 * specified in Section 4.2 of [RFC2581] SHOULD be followed.
2940 * Specifically, an acknowledgement SHOULD be generated for at
2941 * least every second packet (not every second DATA chunk)
2942 * received, and SHOULD be generated within 200 ms of the
2943 * arrival of any unacknowledged DATA chunk. In some
2944 * situations it may be beneficial for an SCTP transmitter to
2945 * be more conservative than the algorithms detailed in this
2946 * document allow. However, an SCTP transmitter MUST NOT be
2947 * more aggressive than the following algorithms allow.
2948 */
Frank Filz52ccb8e2005-12-22 11:36:46 -08002949 if (chunk->end_of_packet)
Wei Yongjun6dc76942009-11-23 15:53:53 -05002950 sctp_add_cmd_sf(commands, SCTP_CMD_GEN_SACK, force);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002951
Linus Torvalds1da177e2005-04-16 15:20:36 -07002952 return SCTP_DISPOSITION_CONSUME;
2953
2954discard_force:
2955 /* RFC 2960 6.2 Acknowledgement on Reception of DATA Chunks
2956 *
2957 * When a packet arrives with duplicate DATA chunk(s) and with
2958 * no new DATA chunk(s), the endpoint MUST immediately send a
2959 * SACK with no delay. If a packet arrives with duplicate
2960 * DATA chunk(s) bundled with new DATA chunks, the endpoint
2961 * MAY immediately send a SACK. Normally receipt of duplicate
2962 * DATA chunks will occur when the original SACK chunk was lost
2963 * and the peer's RTO has expired. The duplicate TSN number(s)
2964 * SHOULD be reported in the SACK as duplicate.
2965 */
2966 /* In our case, we split the MAY SACK advice up whether or not
2967 * the last chunk is a duplicate.'
2968 */
2969 if (chunk->end_of_packet)
2970 sctp_add_cmd_sf(commands, SCTP_CMD_GEN_SACK, SCTP_FORCE());
2971 return SCTP_DISPOSITION_DISCARD;
2972
2973discard_noforce:
Frank Filz52ccb8e2005-12-22 11:36:46 -08002974 if (chunk->end_of_packet)
Wei Yongjun6dc76942009-11-23 15:53:53 -05002975 sctp_add_cmd_sf(commands, SCTP_CMD_GEN_SACK, force);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002976
Linus Torvalds1da177e2005-04-16 15:20:36 -07002977 return SCTP_DISPOSITION_DISCARD;
2978consume:
2979 return SCTP_DISPOSITION_CONSUME;
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09002980
Linus Torvalds1da177e2005-04-16 15:20:36 -07002981}
2982
2983/*
2984 * sctp_sf_eat_data_fast_4_4
2985 *
2986 * Section: 4 (4)
2987 * (4) In SHUTDOWN-SENT state the endpoint MUST acknowledge any received
2988 * DATA chunks without delay.
2989 *
2990 * Verification Tag: 8.5 Verification Tag [Normal verification]
2991 * Inputs
2992 * (endpoint, asoc, chunk)
2993 *
2994 * Outputs
2995 * (asoc, reply_msg, msg_up, timers, counters)
2996 *
2997 * The return value is the disposition of the chunk.
2998 */
2999sctp_disposition_t sctp_sf_eat_data_fast_4_4(const struct sctp_endpoint *ep,
3000 const struct sctp_association *asoc,
3001 const sctp_subtype_t type,
3002 void *arg,
3003 sctp_cmd_seq_t *commands)
3004{
3005 struct sctp_chunk *chunk = arg;
3006 int error;
3007
3008 if (!sctp_vtag_verify(chunk, asoc)) {
3009 sctp_add_cmd_sf(commands, SCTP_CMD_REPORT_BAD_TAG,
3010 SCTP_NULL());
3011 return sctp_sf_pdiscard(ep, asoc, type, arg, commands);
3012 }
3013
3014 if (!sctp_chunk_length_valid(chunk, sizeof(sctp_data_chunk_t)))
3015 return sctp_sf_violation_chunklen(ep, asoc, type, arg,
3016 commands);
3017
3018 error = sctp_eat_data(asoc, chunk, commands );
3019 switch (error) {
3020 case SCTP_IERROR_NO_ERROR:
3021 case SCTP_IERROR_HIGH_TSN:
3022 case SCTP_IERROR_DUP_TSN:
3023 case SCTP_IERROR_IGNORE_TSN:
3024 case SCTP_IERROR_BAD_STREAM:
3025 break;
3026 case SCTP_IERROR_NO_DATA:
3027 goto consume;
Vlad Yasevichf1751c52009-09-04 18:21:03 -04003028 case SCTP_IERROR_PROTO_VIOLATION:
3029 return sctp_sf_abort_violation(ep, asoc, chunk, commands,
3030 (u8 *)chunk->subh.data_hdr, sizeof(sctp_datahdr_t));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003031 default:
3032 BUG();
3033 }
3034
3035 /* Go a head and force a SACK, since we are shutting down. */
3036
3037 /* Implementor's Guide.
3038 *
3039 * While in SHUTDOWN-SENT state, the SHUTDOWN sender MUST immediately
3040 * respond to each received packet containing one or more DATA chunk(s)
3041 * with a SACK, a SHUTDOWN chunk, and restart the T2-shutdown timer
3042 */
3043 if (chunk->end_of_packet) {
3044 /* We must delay the chunk creation since the cumulative
3045 * TSN has not been updated yet.
3046 */
3047 sctp_add_cmd_sf(commands, SCTP_CMD_GEN_SHUTDOWN, SCTP_NULL());
3048 sctp_add_cmd_sf(commands, SCTP_CMD_GEN_SACK, SCTP_FORCE());
3049 sctp_add_cmd_sf(commands, SCTP_CMD_TIMER_RESTART,
3050 SCTP_TO(SCTP_EVENT_TIMEOUT_T2_SHUTDOWN));
3051 }
3052
3053consume:
3054 return SCTP_DISPOSITION_CONSUME;
3055}
3056
3057/*
3058 * Section: 6.2 Processing a Received SACK
3059 * D) Any time a SACK arrives, the endpoint performs the following:
3060 *
3061 * i) If Cumulative TSN Ack is less than the Cumulative TSN Ack Point,
3062 * then drop the SACK. Since Cumulative TSN Ack is monotonically
3063 * increasing, a SACK whose Cumulative TSN Ack is less than the
3064 * Cumulative TSN Ack Point indicates an out-of-order SACK.
3065 *
3066 * ii) Set rwnd equal to the newly received a_rwnd minus the number
3067 * of bytes still outstanding after processing the Cumulative TSN Ack
3068 * and the Gap Ack Blocks.
3069 *
3070 * iii) If the SACK is missing a TSN that was previously
3071 * acknowledged via a Gap Ack Block (e.g., the data receiver
3072 * reneged on the data), then mark the corresponding DATA chunk
3073 * as available for retransmit: Mark it as missing for fast
3074 * retransmit as described in Section 7.2.4 and if no retransmit
3075 * timer is running for the destination address to which the DATA
3076 * chunk was originally transmitted, then T3-rtx is started for
3077 * that destination address.
3078 *
3079 * Verification Tag: 8.5 Verification Tag [Normal verification]
3080 *
3081 * Inputs
3082 * (endpoint, asoc, chunk)
3083 *
3084 * Outputs
3085 * (asoc, reply_msg, msg_up, timers, counters)
3086 *
3087 * The return value is the disposition of the chunk.
3088 */
3089sctp_disposition_t sctp_sf_eat_sack_6_2(const struct sctp_endpoint *ep,
3090 const struct sctp_association *asoc,
3091 const sctp_subtype_t type,
3092 void *arg,
3093 sctp_cmd_seq_t *commands)
3094{
3095 struct sctp_chunk *chunk = arg;
3096 sctp_sackhdr_t *sackh;
3097 __u32 ctsn;
3098
3099 if (!sctp_vtag_verify(chunk, asoc))
3100 return sctp_sf_pdiscard(ep, asoc, type, arg, commands);
3101
3102 /* Make sure that the SACK chunk has a valid length. */
3103 if (!sctp_chunk_length_valid(chunk, sizeof(sctp_sack_chunk_t)))
3104 return sctp_sf_violation_chunklen(ep, asoc, type, arg,
3105 commands);
3106
3107 /* Pull the SACK chunk from the data buffer */
3108 sackh = sctp_sm_pull_sack(chunk);
3109 /* Was this a bogus SACK? */
3110 if (!sackh)
3111 return sctp_sf_pdiscard(ep, asoc, type, arg, commands);
3112 chunk->subh.sack_hdr = sackh;
3113 ctsn = ntohl(sackh->cum_tsn_ack);
3114
3115 /* i) If Cumulative TSN Ack is less than the Cumulative TSN
3116 * Ack Point, then drop the SACK. Since Cumulative TSN
3117 * Ack is monotonically increasing, a SACK whose
3118 * Cumulative TSN Ack is less than the Cumulative TSN Ack
3119 * Point indicates an out-of-order SACK.
3120 */
3121 if (TSN_lt(ctsn, asoc->ctsn_ack_point)) {
3122 SCTP_DEBUG_PRINTK("ctsn %x\n", ctsn);
3123 SCTP_DEBUG_PRINTK("ctsn_ack_point %x\n", asoc->ctsn_ack_point);
3124 return SCTP_DISPOSITION_DISCARD;
3125 }
3126
Wei Yongjunaecedea2007-08-02 16:57:44 +08003127 /* If Cumulative TSN Ack beyond the max tsn currently
3128 * send, terminating the association and respond to the
3129 * sender with an ABORT.
3130 */
3131 if (!TSN_lt(ctsn, asoc->next_tsn))
3132 return sctp_sf_violation_ctsn(ep, asoc, type, arg, commands);
3133
Linus Torvalds1da177e2005-04-16 15:20:36 -07003134 /* Return this SACK for further processing. */
3135 sctp_add_cmd_sf(commands, SCTP_CMD_PROCESS_SACK, SCTP_SACKH(sackh));
3136
3137 /* Note: We do the rest of the work on the PROCESS_SACK
3138 * sideeffect.
3139 */
3140 return SCTP_DISPOSITION_CONSUME;
3141}
3142
3143/*
3144 * Generate an ABORT in response to a packet.
3145 *
Jerome Forissier047a2422005-04-28 11:58:43 -07003146 * Section: 8.4 Handle "Out of the blue" Packets, sctpimpguide 2.41
Linus Torvalds1da177e2005-04-16 15:20:36 -07003147 *
Jerome Forissier047a2422005-04-28 11:58:43 -07003148 * 8) The receiver should respond to the sender of the OOTB packet with
3149 * an ABORT. When sending the ABORT, the receiver of the OOTB packet
3150 * MUST fill in the Verification Tag field of the outbound packet
3151 * with the value found in the Verification Tag field of the OOTB
3152 * packet and set the T-bit in the Chunk Flags to indicate that the
3153 * Verification Tag is reflected. After sending this ABORT, the
3154 * receiver of the OOTB packet shall discard the OOTB packet and take
3155 * no further action.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003156 *
3157 * Verification Tag:
3158 *
3159 * The return value is the disposition of the chunk.
3160*/
Vlad Yasevichece25df2007-09-07 16:30:54 -04003161static sctp_disposition_t sctp_sf_tabort_8_4_8(const struct sctp_endpoint *ep,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003162 const struct sctp_association *asoc,
3163 const sctp_subtype_t type,
3164 void *arg,
3165 sctp_cmd_seq_t *commands)
3166{
3167 struct sctp_packet *packet = NULL;
3168 struct sctp_chunk *chunk = arg;
3169 struct sctp_chunk *abort;
3170
3171 packet = sctp_ootb_pkt_new(asoc, chunk);
3172
3173 if (packet) {
3174 /* Make an ABORT. The T bit will be set if the asoc
3175 * is NULL.
3176 */
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09003177 abort = sctp_make_abort(asoc, chunk, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003178 if (!abort) {
3179 sctp_ootb_pkt_free(packet);
3180 return SCTP_DISPOSITION_NOMEM;
3181 }
3182
Jerome Forissier047a2422005-04-28 11:58:43 -07003183 /* Reflect vtag if T-Bit is set */
3184 if (sctp_test_T_bit(abort))
3185 packet->vtag = ntohl(chunk->sctp_hdr->vtag);
3186
Linus Torvalds1da177e2005-04-16 15:20:36 -07003187 /* Set the skb to the belonging sock for accounting. */
3188 abort->skb->sk = ep->base.sk;
3189
3190 sctp_packet_append_chunk(packet, abort);
3191
3192 sctp_add_cmd_sf(commands, SCTP_CMD_SEND_PKT,
3193 SCTP_PACKET(packet));
3194
3195 SCTP_INC_STATS(SCTP_MIB_OUTCTRLCHUNKS);
3196
Vlad Yasevichd3f25962007-09-07 11:47:45 -04003197 sctp_sf_pdiscard(ep, asoc, type, arg, commands);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003198 return SCTP_DISPOSITION_CONSUME;
3199 }
3200
3201 return SCTP_DISPOSITION_NOMEM;
3202}
3203
3204/*
3205 * Received an ERROR chunk from peer. Generate SCTP_REMOTE_ERROR
3206 * event as ULP notification for each cause included in the chunk.
3207 *
3208 * API 5.3.1.3 - SCTP_REMOTE_ERROR
3209 *
3210 * The return value is the disposition of the chunk.
3211*/
3212sctp_disposition_t sctp_sf_operr_notify(const struct sctp_endpoint *ep,
3213 const struct sctp_association *asoc,
3214 const sctp_subtype_t type,
3215 void *arg,
3216 sctp_cmd_seq_t *commands)
3217{
3218 struct sctp_chunk *chunk = arg;
Shan Wei8a00be12011-04-19 21:25:40 +00003219 sctp_errhdr_t *err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003220
3221 if (!sctp_vtag_verify(chunk, asoc))
3222 return sctp_sf_pdiscard(ep, asoc, type, arg, commands);
3223
3224 /* Make sure that the ERROR chunk has a valid length. */
3225 if (!sctp_chunk_length_valid(chunk, sizeof(sctp_operr_chunk_t)))
3226 return sctp_sf_violation_chunklen(ep, asoc, type, arg,
3227 commands);
Shan Wei8a00be12011-04-19 21:25:40 +00003228 sctp_walk_errors(err, chunk->chunk_hdr);
3229 if ((void *)err != (void *)chunk->chunk_end)
3230 return sctp_sf_violation_paramlen(ep, asoc, type, arg,
3231 (void *)err, commands);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003232
Wei Yongjun3df26782009-03-02 06:46:51 +00003233 sctp_add_cmd_sf(commands, SCTP_CMD_PROCESS_OPERR,
3234 SCTP_CHUNK(chunk));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003235
Linus Torvalds1da177e2005-04-16 15:20:36 -07003236 return SCTP_DISPOSITION_CONSUME;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003237}
3238
3239/*
3240 * Process an inbound SHUTDOWN ACK.
3241 *
3242 * From Section 9.2:
3243 * Upon the receipt of the SHUTDOWN ACK, the SHUTDOWN sender shall
3244 * stop the T2-shutdown timer, send a SHUTDOWN COMPLETE chunk to its
3245 * peer, and remove all record of the association.
3246 *
3247 * The return value is the disposition.
3248 */
3249sctp_disposition_t sctp_sf_do_9_2_final(const struct sctp_endpoint *ep,
3250 const struct sctp_association *asoc,
3251 const sctp_subtype_t type,
3252 void *arg,
3253 sctp_cmd_seq_t *commands)
3254{
3255 struct sctp_chunk *chunk = arg;
3256 struct sctp_chunk *reply;
3257 struct sctp_ulpevent *ev;
3258
3259 if (!sctp_vtag_verify(chunk, asoc))
3260 return sctp_sf_pdiscard(ep, asoc, type, arg, commands);
3261
3262 /* Make sure that the SHUTDOWN_ACK chunk has a valid length. */
3263 if (!sctp_chunk_length_valid(chunk, sizeof(sctp_chunkhdr_t)))
3264 return sctp_sf_violation_chunklen(ep, asoc, type, arg,
3265 commands);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003266 /* 10.2 H) SHUTDOWN COMPLETE notification
3267 *
3268 * When SCTP completes the shutdown procedures (section 9.2) this
3269 * notification is passed to the upper layer.
3270 */
3271 ev = sctp_ulpevent_make_assoc_change(asoc, 0, SCTP_SHUTDOWN_COMP,
Vlad Yasevicha5a35e72007-03-23 11:34:08 -07003272 0, 0, 0, NULL, GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003273 if (!ev)
3274 goto nomem;
3275
Vladislav Yasevichdf7deeb2006-08-22 00:19:51 -07003276 /* ...send a SHUTDOWN COMPLETE chunk to its peer, */
3277 reply = sctp_make_shutdown_complete(asoc, chunk);
3278 if (!reply)
3279 goto nomem_chunk;
3280
3281 /* Do all the commands now (after allocation), so that we
3282 * have consistent state if memory allocation failes
3283 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003284 sctp_add_cmd_sf(commands, SCTP_CMD_EVENT_ULP, SCTP_ULPEVENT(ev));
3285
3286 /* Upon the receipt of the SHUTDOWN ACK, the SHUTDOWN sender shall
3287 * stop the T2-shutdown timer,
3288 */
3289 sctp_add_cmd_sf(commands, SCTP_CMD_TIMER_STOP,
3290 SCTP_TO(SCTP_EVENT_TIMEOUT_T2_SHUTDOWN));
3291
3292 sctp_add_cmd_sf(commands, SCTP_CMD_TIMER_STOP,
3293 SCTP_TO(SCTP_EVENT_TIMEOUT_T5_SHUTDOWN_GUARD));
3294
Linus Torvalds1da177e2005-04-16 15:20:36 -07003295 sctp_add_cmd_sf(commands, SCTP_CMD_NEW_STATE,
3296 SCTP_STATE(SCTP_STATE_CLOSED));
3297 SCTP_INC_STATS(SCTP_MIB_SHUTDOWNS);
3298 SCTP_DEC_STATS(SCTP_MIB_CURRESTAB);
3299 sctp_add_cmd_sf(commands, SCTP_CMD_REPLY, SCTP_CHUNK(reply));
3300
3301 /* ...and remove all record of the association. */
3302 sctp_add_cmd_sf(commands, SCTP_CMD_DELETE_TCB, SCTP_NULL());
3303 return SCTP_DISPOSITION_DELETE_TCB;
3304
Vladislav Yasevichdf7deeb2006-08-22 00:19:51 -07003305nomem_chunk:
3306 sctp_ulpevent_free(ev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003307nomem:
3308 return SCTP_DISPOSITION_NOMEM;
3309}
3310
3311/*
Jerome Forissier047a2422005-04-28 11:58:43 -07003312 * RFC 2960, 8.4 - Handle "Out of the blue" Packets, sctpimpguide 2.41.
3313 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07003314 * 5) If the packet contains a SHUTDOWN ACK chunk, the receiver should
3315 * respond to the sender of the OOTB packet with a SHUTDOWN COMPLETE.
3316 * When sending the SHUTDOWN COMPLETE, the receiver of the OOTB
3317 * packet must fill in the Verification Tag field of the outbound
3318 * packet with the Verification Tag received in the SHUTDOWN ACK and
Jerome Forissier047a2422005-04-28 11:58:43 -07003319 * set the T-bit in the Chunk Flags to indicate that the Verification
3320 * Tag is reflected.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003321 *
3322 * 8) The receiver should respond to the sender of the OOTB packet with
3323 * an ABORT. When sending the ABORT, the receiver of the OOTB packet
3324 * MUST fill in the Verification Tag field of the outbound packet
3325 * with the value found in the Verification Tag field of the OOTB
Jerome Forissier047a2422005-04-28 11:58:43 -07003326 * packet and set the T-bit in the Chunk Flags to indicate that the
3327 * Verification Tag is reflected. After sending this ABORT, the
3328 * receiver of the OOTB packet shall discard the OOTB packet and take
3329 * no further action.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003330 */
3331sctp_disposition_t sctp_sf_ootb(const struct sctp_endpoint *ep,
3332 const struct sctp_association *asoc,
3333 const sctp_subtype_t type,
3334 void *arg,
3335 sctp_cmd_seq_t *commands)
3336{
3337 struct sctp_chunk *chunk = arg;
3338 struct sk_buff *skb = chunk->skb;
3339 sctp_chunkhdr_t *ch;
Shan Wei85c5ed42011-04-19 21:30:01 +00003340 sctp_errhdr_t *err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003341 __u8 *ch_end;
3342 int ootb_shut_ack = 0;
Shan Wei85c5ed42011-04-19 21:30:01 +00003343 int ootb_cookie_ack = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003344
3345 SCTP_INC_STATS(SCTP_MIB_OUTOFBLUES);
3346
3347 ch = (sctp_chunkhdr_t *) chunk->chunk_hdr;
3348 do {
Vlad Yasevichece25df2007-09-07 16:30:54 -04003349 /* Report violation if the chunk is less then minimal */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003350 if (ntohs(ch->length) < sizeof(sctp_chunkhdr_t))
Vlad Yasevichece25df2007-09-07 16:30:54 -04003351 return sctp_sf_violation_chunklen(ep, asoc, type, arg,
3352 commands);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003353
Vlad Yasevichece25df2007-09-07 16:30:54 -04003354 /* Now that we know we at least have a chunk header,
3355 * do things that are type appropriate.
3356 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003357 if (SCTP_CID_SHUTDOWN_ACK == ch->type)
3358 ootb_shut_ack = 1;
3359
3360 /* RFC 2960, Section 3.3.7
3361 * Moreover, under any circumstances, an endpoint that
3362 * receives an ABORT MUST NOT respond to that ABORT by
3363 * sending an ABORT of its own.
3364 */
3365 if (SCTP_CID_ABORT == ch->type)
3366 return sctp_sf_pdiscard(ep, asoc, type, arg, commands);
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09003367
Shan Wei85c5ed42011-04-19 21:30:01 +00003368 /* RFC 8.4, 7) If the packet contains a "Stale cookie" ERROR
3369 * or a COOKIE ACK the SCTP Packet should be silently
3370 * discarded.
3371 */
3372
3373 if (SCTP_CID_COOKIE_ACK == ch->type)
3374 ootb_cookie_ack = 1;
3375
3376 if (SCTP_CID_ERROR == ch->type) {
3377 sctp_walk_errors(err, ch) {
3378 if (SCTP_ERROR_STALE_COOKIE == err->cause) {
3379 ootb_cookie_ack = 1;
3380 break;
3381 }
3382 }
3383 }
3384
Vlad Yasevichece25df2007-09-07 16:30:54 -04003385 /* Report violation if chunk len overflows */
3386 ch_end = ((__u8 *)ch) + WORD_ROUND(ntohs(ch->length));
3387 if (ch_end > skb_tail_pointer(skb))
3388 return sctp_sf_violation_chunklen(ep, asoc, type, arg,
3389 commands);
3390
Linus Torvalds1da177e2005-04-16 15:20:36 -07003391 ch = (sctp_chunkhdr_t *) ch_end;
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -07003392 } while (ch_end < skb_tail_pointer(skb));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003393
3394 if (ootb_shut_ack)
Vlad Yasevichd3f25962007-09-07 11:47:45 -04003395 return sctp_sf_shut_8_4_5(ep, asoc, type, arg, commands);
Shan Wei85c5ed42011-04-19 21:30:01 +00003396 else if (ootb_cookie_ack)
3397 return sctp_sf_pdiscard(ep, asoc, type, arg, commands);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003398 else
Vlad Yasevichd3f25962007-09-07 11:47:45 -04003399 return sctp_sf_tabort_8_4_8(ep, asoc, type, arg, commands);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003400}
3401
3402/*
3403 * Handle an "Out of the blue" SHUTDOWN ACK.
3404 *
Jerome Forissier047a2422005-04-28 11:58:43 -07003405 * Section: 8.4 5, sctpimpguide 2.41.
3406 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07003407 * 5) If the packet contains a SHUTDOWN ACK chunk, the receiver should
Jerome Forissier047a2422005-04-28 11:58:43 -07003408 * respond to the sender of the OOTB packet with a SHUTDOWN COMPLETE.
3409 * When sending the SHUTDOWN COMPLETE, the receiver of the OOTB
3410 * packet must fill in the Verification Tag field of the outbound
3411 * packet with the Verification Tag received in the SHUTDOWN ACK and
3412 * set the T-bit in the Chunk Flags to indicate that the Verification
3413 * Tag is reflected.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003414 *
3415 * Inputs
3416 * (endpoint, asoc, type, arg, commands)
3417 *
3418 * Outputs
3419 * (sctp_disposition_t)
3420 *
3421 * The return value is the disposition of the chunk.
3422 */
3423static sctp_disposition_t sctp_sf_shut_8_4_5(const struct sctp_endpoint *ep,
3424 const struct sctp_association *asoc,
3425 const sctp_subtype_t type,
3426 void *arg,
3427 sctp_cmd_seq_t *commands)
3428{
3429 struct sctp_packet *packet = NULL;
3430 struct sctp_chunk *chunk = arg;
3431 struct sctp_chunk *shut;
3432
3433 packet = sctp_ootb_pkt_new(asoc, chunk);
3434
3435 if (packet) {
3436 /* Make an SHUTDOWN_COMPLETE.
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09003437 * The T bit will be set if the asoc is NULL.
3438 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003439 shut = sctp_make_shutdown_complete(asoc, chunk);
3440 if (!shut) {
3441 sctp_ootb_pkt_free(packet);
3442 return SCTP_DISPOSITION_NOMEM;
3443 }
3444
Jerome Forissier047a2422005-04-28 11:58:43 -07003445 /* Reflect vtag if T-Bit is set */
3446 if (sctp_test_T_bit(shut))
3447 packet->vtag = ntohl(chunk->sctp_hdr->vtag);
3448
Linus Torvalds1da177e2005-04-16 15:20:36 -07003449 /* Set the skb to the belonging sock for accounting. */
3450 shut->skb->sk = ep->base.sk;
3451
3452 sctp_packet_append_chunk(packet, shut);
3453
3454 sctp_add_cmd_sf(commands, SCTP_CMD_SEND_PKT,
3455 SCTP_PACKET(packet));
3456
3457 SCTP_INC_STATS(SCTP_MIB_OUTCTRLCHUNKS);
3458
3459 /* If the chunk length is invalid, we don't want to process
3460 * the reset of the packet.
3461 */
3462 if (!sctp_chunk_length_valid(chunk, sizeof(sctp_chunkhdr_t)))
3463 return sctp_sf_pdiscard(ep, asoc, type, arg, commands);
3464
Vlad Yasevichd3f25962007-09-07 11:47:45 -04003465 /* We need to discard the rest of the packet to prevent
3466 * potential bomming attacks from additional bundled chunks.
3467 * This is documented in SCTP Threats ID.
3468 */
3469 return sctp_sf_pdiscard(ep, asoc, type, arg, commands);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003470 }
3471
3472 return SCTP_DISPOSITION_NOMEM;
3473}
3474
3475/*
3476 * Handle SHUTDOWN ACK in COOKIE_ECHOED or COOKIE_WAIT state.
3477 *
3478 * Verification Tag: 8.5.1 E) Rules for packet carrying a SHUTDOWN ACK
3479 * If the receiver is in COOKIE-ECHOED or COOKIE-WAIT state the
3480 * procedures in section 8.4 SHOULD be followed, in other words it
3481 * should be treated as an Out Of The Blue packet.
3482 * [This means that we do NOT check the Verification Tag on these
3483 * chunks. --piggy ]
3484 *
3485 */
3486sctp_disposition_t sctp_sf_do_8_5_1_E_sa(const struct sctp_endpoint *ep,
3487 const struct sctp_association *asoc,
3488 const sctp_subtype_t type,
3489 void *arg,
3490 sctp_cmd_seq_t *commands)
3491{
Vlad Yasevichece25df2007-09-07 16:30:54 -04003492 struct sctp_chunk *chunk = arg;
3493
3494 /* Make sure that the SHUTDOWN_ACK chunk has a valid length. */
3495 if (!sctp_chunk_length_valid(chunk, sizeof(sctp_chunkhdr_t)))
3496 return sctp_sf_violation_chunklen(ep, asoc, type, arg,
3497 commands);
3498
Linus Torvalds1da177e2005-04-16 15:20:36 -07003499 /* Although we do have an association in this case, it corresponds
3500 * to a restarted association. So the packet is treated as an OOTB
3501 * packet and the state function that handles OOTB SHUTDOWN_ACK is
3502 * called with a NULL association.
3503 */
Wei Yongjun8190f892008-09-08 12:13:55 +08003504 SCTP_INC_STATS(SCTP_MIB_OUTOFBLUES);
3505
Linus Torvalds1da177e2005-04-16 15:20:36 -07003506 return sctp_sf_shut_8_4_5(ep, NULL, type, arg, commands);
3507}
3508
3509/* ADDIP Section 4.2 Upon reception of an ASCONF Chunk. */
3510sctp_disposition_t sctp_sf_do_asconf(const struct sctp_endpoint *ep,
3511 const struct sctp_association *asoc,
3512 const sctp_subtype_t type, void *arg,
3513 sctp_cmd_seq_t *commands)
3514{
3515 struct sctp_chunk *chunk = arg;
3516 struct sctp_chunk *asconf_ack = NULL;
Wei Yongjun6f4c6182007-09-19 17:19:52 +08003517 struct sctp_paramhdr *err_param = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003518 sctp_addiphdr_t *hdr;
Wei Yongjun6f4c6182007-09-19 17:19:52 +08003519 union sctp_addr_param *addr_param;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003520 __u32 serial;
Wei Yongjun6f4c6182007-09-19 17:19:52 +08003521 int length;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003522
3523 if (!sctp_vtag_verify(chunk, asoc)) {
3524 sctp_add_cmd_sf(commands, SCTP_CMD_REPORT_BAD_TAG,
3525 SCTP_NULL());
3526 return sctp_sf_pdiscard(ep, asoc, type, arg, commands);
3527 }
3528
Vlad Yasevich6afd2e82007-12-20 14:08:04 -08003529 /* ADD-IP: Section 4.1.1
3530 * This chunk MUST be sent in an authenticated way by using
3531 * the mechanism defined in [I-D.ietf-tsvwg-sctp-auth]. If this chunk
3532 * is received unauthenticated it MUST be silently discarded as
3533 * described in [I-D.ietf-tsvwg-sctp-auth].
3534 */
3535 if (!sctp_addip_noauth && !chunk->auth)
3536 return sctp_sf_discard_chunk(ep, asoc, type, arg, commands);
3537
Linus Torvalds1da177e2005-04-16 15:20:36 -07003538 /* Make sure that the ASCONF ADDIP chunk has a valid length. */
3539 if (!sctp_chunk_length_valid(chunk, sizeof(sctp_addip_chunk_t)))
3540 return sctp_sf_violation_chunklen(ep, asoc, type, arg,
3541 commands);
3542
3543 hdr = (sctp_addiphdr_t *)chunk->skb->data;
3544 serial = ntohl(hdr->serial);
3545
Wei Yongjun6f4c6182007-09-19 17:19:52 +08003546 addr_param = (union sctp_addr_param *)hdr->params;
3547 length = ntohs(addr_param->p.length);
3548 if (length < sizeof(sctp_paramhdr_t))
Wei Yongjunba016672008-09-30 05:32:24 -07003549 return sctp_sf_violation_paramlen(ep, asoc, type, arg,
Wei Yongjun6f4c6182007-09-19 17:19:52 +08003550 (void *)addr_param, commands);
3551
3552 /* Verify the ASCONF chunk before processing it. */
3553 if (!sctp_verify_asconf(asoc,
Vlad Yasevicha08de642007-12-20 14:11:47 -08003554 (sctp_paramhdr_t *)((void *)addr_param + length),
3555 (void *)chunk->chunk_end,
3556 &err_param))
Wei Yongjunba016672008-09-30 05:32:24 -07003557 return sctp_sf_violation_paramlen(ep, asoc, type, arg,
3558 (void *)err_param, commands);
Wei Yongjun6f4c6182007-09-19 17:19:52 +08003559
Vlad Yasevicha08de642007-12-20 14:11:47 -08003560 /* ADDIP 5.2 E1) Compare the value of the serial number to the value
Linus Torvalds1da177e2005-04-16 15:20:36 -07003561 * the endpoint stored in a new association variable
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09003562 * 'Peer-Serial-Number'.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003563 */
3564 if (serial == asoc->peer.addip_serial + 1) {
Vlad Yasevicha08de642007-12-20 14:11:47 -08003565 /* If this is the first instance of ASCONF in the packet,
3566 * we can clean our old ASCONF-ACKs.
3567 */
3568 if (!chunk->has_asconf)
3569 sctp_assoc_clean_asconf_ack_cache(asoc);
3570
3571 /* ADDIP 5.2 E4) When the Sequence Number matches the next one
3572 * expected, process the ASCONF as described below and after
3573 * processing the ASCONF Chunk, append an ASCONF-ACK Chunk to
3574 * the response packet and cache a copy of it (in the event it
3575 * later needs to be retransmitted).
3576 *
3577 * Essentially, do V1-V5.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003578 */
3579 asconf_ack = sctp_process_asconf((struct sctp_association *)
3580 asoc, chunk);
3581 if (!asconf_ack)
3582 return SCTP_DISPOSITION_NOMEM;
Vlad Yasevicha08de642007-12-20 14:11:47 -08003583 } else if (serial < asoc->peer.addip_serial + 1) {
3584 /* ADDIP 5.2 E2)
3585 * If the value found in the Sequence Number is less than the
3586 * ('Peer- Sequence-Number' + 1), simply skip to the next
3587 * ASCONF, and include in the outbound response packet
3588 * any previously cached ASCONF-ACK response that was
3589 * sent and saved that matches the Sequence Number of the
3590 * ASCONF. Note: It is possible that no cached ASCONF-ACK
3591 * Chunk exists. This will occur when an older ASCONF
3592 * arrives out of order. In such a case, the receiver
3593 * should skip the ASCONF Chunk and not include ASCONF-ACK
3594 * Chunk for that chunk.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003595 */
Vlad Yasevicha08de642007-12-20 14:11:47 -08003596 asconf_ack = sctp_assoc_lookup_asconf_ack(asoc, hdr->serial);
3597 if (!asconf_ack)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003598 return SCTP_DISPOSITION_DISCARD;
Vlad Yasevich31b02e12009-09-04 18:21:00 -04003599
3600 /* Reset the transport so that we select the correct one
3601 * this time around. This is to make sure that we don't
3602 * accidentally use a stale transport that's been removed.
3603 */
3604 asconf_ack->transport = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003605 } else {
Vlad Yasevicha08de642007-12-20 14:11:47 -08003606 /* ADDIP 5.2 E5) Otherwise, the ASCONF Chunk is discarded since
Linus Torvalds1da177e2005-04-16 15:20:36 -07003607 * it must be either a stale packet or from an attacker.
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09003608 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003609 return SCTP_DISPOSITION_DISCARD;
3610 }
3611
Vlad Yasevicha08de642007-12-20 14:11:47 -08003612 /* ADDIP 5.2 E6) The destination address of the SCTP packet
3613 * containing the ASCONF-ACK Chunks MUST be the source address of
3614 * the SCTP packet that held the ASCONF Chunks.
3615 *
3616 * To do this properly, we'll set the destination address of the chunk
3617 * and at the transmit time, will try look up the transport to use.
3618 * Since ASCONFs may be bundled, the correct transport may not be
Thadeu Lima de Souza Cascardo94e2bd62009-10-16 15:20:49 +02003619 * created until we process the entire packet, thus this workaround.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003620 */
Vlad Yasevicha08de642007-12-20 14:11:47 -08003621 asconf_ack->dest = chunk->source;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003622 sctp_add_cmd_sf(commands, SCTP_CMD_REPLY, SCTP_CHUNK(asconf_ack));
Michio Honda6af29cc2011-06-16 17:14:34 +09003623 if (asoc->new_transport) {
3624 sctp_sf_heartbeat(ep, asoc, type, asoc->new_transport,
3625 commands);
3626 ((struct sctp_association *)asoc)->new_transport = NULL;
3627 }
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09003628
Linus Torvalds1da177e2005-04-16 15:20:36 -07003629 return SCTP_DISPOSITION_CONSUME;
3630}
3631
3632/*
3633 * ADDIP Section 4.3 General rules for address manipulation
3634 * When building TLV parameters for the ASCONF Chunk that will add or
3635 * delete IP addresses the D0 to D13 rules should be applied:
3636 */
3637sctp_disposition_t sctp_sf_do_asconf_ack(const struct sctp_endpoint *ep,
3638 const struct sctp_association *asoc,
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09003639 const sctp_subtype_t type, void *arg,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003640 sctp_cmd_seq_t *commands)
3641{
3642 struct sctp_chunk *asconf_ack = arg;
3643 struct sctp_chunk *last_asconf = asoc->addip_last_asconf;
3644 struct sctp_chunk *abort;
Wei Yongjun6f4c6182007-09-19 17:19:52 +08003645 struct sctp_paramhdr *err_param = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003646 sctp_addiphdr_t *addip_hdr;
3647 __u32 sent_serial, rcvd_serial;
3648
3649 if (!sctp_vtag_verify(asconf_ack, asoc)) {
3650 sctp_add_cmd_sf(commands, SCTP_CMD_REPORT_BAD_TAG,
3651 SCTP_NULL());
3652 return sctp_sf_pdiscard(ep, asoc, type, arg, commands);
3653 }
3654
Vlad Yasevich6afd2e82007-12-20 14:08:04 -08003655 /* ADD-IP, Section 4.1.2:
3656 * This chunk MUST be sent in an authenticated way by using
3657 * the mechanism defined in [I-D.ietf-tsvwg-sctp-auth]. If this chunk
3658 * is received unauthenticated it MUST be silently discarded as
3659 * described in [I-D.ietf-tsvwg-sctp-auth].
3660 */
3661 if (!sctp_addip_noauth && !asconf_ack->auth)
3662 return sctp_sf_discard_chunk(ep, asoc, type, arg, commands);
3663
Linus Torvalds1da177e2005-04-16 15:20:36 -07003664 /* Make sure that the ADDIP chunk has a valid length. */
3665 if (!sctp_chunk_length_valid(asconf_ack, sizeof(sctp_addip_chunk_t)))
3666 return sctp_sf_violation_chunklen(ep, asoc, type, arg,
3667 commands);
3668
3669 addip_hdr = (sctp_addiphdr_t *)asconf_ack->skb->data;
3670 rcvd_serial = ntohl(addip_hdr->serial);
3671
Wei Yongjun6f4c6182007-09-19 17:19:52 +08003672 /* Verify the ASCONF-ACK chunk before processing it. */
3673 if (!sctp_verify_asconf(asoc,
3674 (sctp_paramhdr_t *)addip_hdr->params,
3675 (void *)asconf_ack->chunk_end,
3676 &err_param))
Wei Yongjunba016672008-09-30 05:32:24 -07003677 return sctp_sf_violation_paramlen(ep, asoc, type, arg,
3678 (void *)err_param, commands);
Wei Yongjun6f4c6182007-09-19 17:19:52 +08003679
Linus Torvalds1da177e2005-04-16 15:20:36 -07003680 if (last_asconf) {
3681 addip_hdr = (sctp_addiphdr_t *)last_asconf->subh.addip_hdr;
3682 sent_serial = ntohl(addip_hdr->serial);
3683 } else {
3684 sent_serial = asoc->addip_serial - 1;
3685 }
3686
3687 /* D0) If an endpoint receives an ASCONF-ACK that is greater than or
3688 * equal to the next serial number to be used but no ASCONF chunk is
3689 * outstanding the endpoint MUST ABORT the association. Note that a
3690 * sequence number is greater than if it is no more than 2^^31-1
3691 * larger than the current sequence number (using serial arithmetic).
3692 */
3693 if (ADDIP_SERIAL_gte(rcvd_serial, sent_serial + 1) &&
3694 !(asoc->addip_last_asconf)) {
3695 abort = sctp_make_abort(asoc, asconf_ack,
3696 sizeof(sctp_errhdr_t));
3697 if (abort) {
Wei Yongjun00f1c2d2007-08-21 15:50:01 +08003698 sctp_init_cause(abort, SCTP_ERROR_ASCONF_ACK, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003699 sctp_add_cmd_sf(commands, SCTP_CMD_REPLY,
3700 SCTP_CHUNK(abort));
3701 }
3702 /* We are going to ABORT, so we might as well stop
3703 * processing the rest of the chunks in the packet.
3704 */
3705 sctp_add_cmd_sf(commands, SCTP_CMD_TIMER_STOP,
3706 SCTP_TO(SCTP_EVENT_TIMEOUT_T4_RTO));
3707 sctp_add_cmd_sf(commands, SCTP_CMD_DISCARD_PACKET,SCTP_NULL());
Sridhar Samudrala8de8c872006-05-19 10:58:12 -07003708 sctp_add_cmd_sf(commands, SCTP_CMD_SET_SK_ERR,
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09003709 SCTP_ERROR(ECONNABORTED));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003710 sctp_add_cmd_sf(commands, SCTP_CMD_ASSOC_FAILED,
Al Viro5be291f2006-11-20 17:01:06 -08003711 SCTP_PERR(SCTP_ERROR_ASCONF_ACK));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003712 SCTP_INC_STATS(SCTP_MIB_ABORTEDS);
3713 SCTP_DEC_STATS(SCTP_MIB_CURRESTAB);
3714 return SCTP_DISPOSITION_ABORT;
3715 }
3716
3717 if ((rcvd_serial == sent_serial) && asoc->addip_last_asconf) {
3718 sctp_add_cmd_sf(commands, SCTP_CMD_TIMER_STOP,
3719 SCTP_TO(SCTP_EVENT_TIMEOUT_T4_RTO));
3720
3721 if (!sctp_process_asconf_ack((struct sctp_association *)asoc,
Vlad Yasevichc0786692010-04-28 08:47:22 +00003722 asconf_ack)) {
3723 /* Successfully processed ASCONF_ACK. We can
3724 * release the next asconf if we have one.
3725 */
3726 sctp_add_cmd_sf(commands, SCTP_CMD_SEND_NEXT_ASCONF,
3727 SCTP_NULL());
Linus Torvalds1da177e2005-04-16 15:20:36 -07003728 return SCTP_DISPOSITION_CONSUME;
Vlad Yasevichc0786692010-04-28 08:47:22 +00003729 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003730
3731 abort = sctp_make_abort(asoc, asconf_ack,
3732 sizeof(sctp_errhdr_t));
3733 if (abort) {
Wei Yongjun00f1c2d2007-08-21 15:50:01 +08003734 sctp_init_cause(abort, SCTP_ERROR_RSRC_LOW, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003735 sctp_add_cmd_sf(commands, SCTP_CMD_REPLY,
3736 SCTP_CHUNK(abort));
3737 }
3738 /* We are going to ABORT, so we might as well stop
3739 * processing the rest of the chunks in the packet.
3740 */
3741 sctp_add_cmd_sf(commands, SCTP_CMD_DISCARD_PACKET,SCTP_NULL());
Sridhar Samudrala8de8c872006-05-19 10:58:12 -07003742 sctp_add_cmd_sf(commands, SCTP_CMD_SET_SK_ERR,
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09003743 SCTP_ERROR(ECONNABORTED));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003744 sctp_add_cmd_sf(commands, SCTP_CMD_ASSOC_FAILED,
Al Viro5be291f2006-11-20 17:01:06 -08003745 SCTP_PERR(SCTP_ERROR_ASCONF_ACK));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003746 SCTP_INC_STATS(SCTP_MIB_ABORTEDS);
3747 SCTP_DEC_STATS(SCTP_MIB_CURRESTAB);
3748 return SCTP_DISPOSITION_ABORT;
3749 }
3750
3751 return SCTP_DISPOSITION_DISCARD;
3752}
3753
3754/*
3755 * PR-SCTP Section 3.6 Receiver Side Implementation of PR-SCTP
3756 *
3757 * When a FORWARD TSN chunk arrives, the data receiver MUST first update
3758 * its cumulative TSN point to the value carried in the FORWARD TSN
3759 * chunk, and then MUST further advance its cumulative TSN point locally
3760 * if possible.
3761 * After the above processing, the data receiver MUST stop reporting any
3762 * missing TSNs earlier than or equal to the new cumulative TSN point.
3763 *
3764 * Verification Tag: 8.5 Verification Tag [Normal verification]
3765 *
3766 * The return value is the disposition of the chunk.
3767 */
3768sctp_disposition_t sctp_sf_eat_fwd_tsn(const struct sctp_endpoint *ep,
3769 const struct sctp_association *asoc,
3770 const sctp_subtype_t type,
3771 void *arg,
3772 sctp_cmd_seq_t *commands)
3773{
3774 struct sctp_chunk *chunk = arg;
3775 struct sctp_fwdtsn_hdr *fwdtsn_hdr;
Wei Yongjun9fcb95a2008-12-25 16:58:11 -08003776 struct sctp_fwdtsn_skip *skip;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003777 __u16 len;
3778 __u32 tsn;
3779
3780 if (!sctp_vtag_verify(chunk, asoc)) {
3781 sctp_add_cmd_sf(commands, SCTP_CMD_REPORT_BAD_TAG,
3782 SCTP_NULL());
3783 return sctp_sf_pdiscard(ep, asoc, type, arg, commands);
3784 }
3785
3786 /* Make sure that the FORWARD_TSN chunk has valid length. */
3787 if (!sctp_chunk_length_valid(chunk, sizeof(struct sctp_fwdtsn_chunk)))
3788 return sctp_sf_violation_chunklen(ep, asoc, type, arg,
3789 commands);
3790
3791 fwdtsn_hdr = (struct sctp_fwdtsn_hdr *)chunk->skb->data;
3792 chunk->subh.fwdtsn_hdr = fwdtsn_hdr;
3793 len = ntohs(chunk->chunk_hdr->length);
3794 len -= sizeof(struct sctp_chunkhdr);
3795 skb_pull(chunk->skb, len);
3796
3797 tsn = ntohl(fwdtsn_hdr->new_cum_tsn);
Harvey Harrison0dc47872008-03-05 20:47:47 -08003798 SCTP_DEBUG_PRINTK("%s: TSN 0x%x.\n", __func__, tsn);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003799
3800 /* The TSN is too high--silently discard the chunk and count on it
3801 * getting retransmitted later.
3802 */
3803 if (sctp_tsnmap_check(&asoc->peer.tsn_map, tsn) < 0)
3804 goto discard_noforce;
3805
Wei Yongjun9fcb95a2008-12-25 16:58:11 -08003806 /* Silently discard the chunk if stream-id is not valid */
3807 sctp_walk_fwdtsn(skip, chunk) {
3808 if (ntohs(skip->stream) >= asoc->c.sinit_max_instreams)
3809 goto discard_noforce;
3810 }
3811
Linus Torvalds1da177e2005-04-16 15:20:36 -07003812 sctp_add_cmd_sf(commands, SCTP_CMD_REPORT_FWDTSN, SCTP_U32(tsn));
3813 if (len > sizeof(struct sctp_fwdtsn_hdr))
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09003814 sctp_add_cmd_sf(commands, SCTP_CMD_PROCESS_FWDTSN,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003815 SCTP_CHUNK(chunk));
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09003816
Linus Torvalds1da177e2005-04-16 15:20:36 -07003817 /* Count this as receiving DATA. */
3818 if (asoc->autoclose) {
3819 sctp_add_cmd_sf(commands, SCTP_CMD_TIMER_RESTART,
3820 SCTP_TO(SCTP_EVENT_TIMEOUT_AUTOCLOSE));
3821 }
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09003822
Linus Torvalds1da177e2005-04-16 15:20:36 -07003823 /* FIXME: For now send a SACK, but DATA processing may
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09003824 * send another.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003825 */
3826 sctp_add_cmd_sf(commands, SCTP_CMD_GEN_SACK, SCTP_NOFORCE());
Linus Torvalds1da177e2005-04-16 15:20:36 -07003827
3828 return SCTP_DISPOSITION_CONSUME;
3829
3830discard_noforce:
3831 return SCTP_DISPOSITION_DISCARD;
3832}
3833
3834sctp_disposition_t sctp_sf_eat_fwd_tsn_fast(
3835 const struct sctp_endpoint *ep,
3836 const struct sctp_association *asoc,
3837 const sctp_subtype_t type,
3838 void *arg,
3839 sctp_cmd_seq_t *commands)
3840{
3841 struct sctp_chunk *chunk = arg;
3842 struct sctp_fwdtsn_hdr *fwdtsn_hdr;
Wei Yongjun9fcb95a2008-12-25 16:58:11 -08003843 struct sctp_fwdtsn_skip *skip;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003844 __u16 len;
3845 __u32 tsn;
3846
3847 if (!sctp_vtag_verify(chunk, asoc)) {
3848 sctp_add_cmd_sf(commands, SCTP_CMD_REPORT_BAD_TAG,
3849 SCTP_NULL());
3850 return sctp_sf_pdiscard(ep, asoc, type, arg, commands);
3851 }
3852
3853 /* Make sure that the FORWARD_TSN chunk has a valid length. */
3854 if (!sctp_chunk_length_valid(chunk, sizeof(struct sctp_fwdtsn_chunk)))
3855 return sctp_sf_violation_chunklen(ep, asoc, type, arg,
3856 commands);
3857
3858 fwdtsn_hdr = (struct sctp_fwdtsn_hdr *)chunk->skb->data;
3859 chunk->subh.fwdtsn_hdr = fwdtsn_hdr;
3860 len = ntohs(chunk->chunk_hdr->length);
3861 len -= sizeof(struct sctp_chunkhdr);
3862 skb_pull(chunk->skb, len);
3863
3864 tsn = ntohl(fwdtsn_hdr->new_cum_tsn);
Harvey Harrison0dc47872008-03-05 20:47:47 -08003865 SCTP_DEBUG_PRINTK("%s: TSN 0x%x.\n", __func__, tsn);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003866
3867 /* The TSN is too high--silently discard the chunk and count on it
3868 * getting retransmitted later.
3869 */
3870 if (sctp_tsnmap_check(&asoc->peer.tsn_map, tsn) < 0)
3871 goto gen_shutdown;
3872
Wei Yongjun9fcb95a2008-12-25 16:58:11 -08003873 /* Silently discard the chunk if stream-id is not valid */
3874 sctp_walk_fwdtsn(skip, chunk) {
3875 if (ntohs(skip->stream) >= asoc->c.sinit_max_instreams)
3876 goto gen_shutdown;
3877 }
3878
Linus Torvalds1da177e2005-04-16 15:20:36 -07003879 sctp_add_cmd_sf(commands, SCTP_CMD_REPORT_FWDTSN, SCTP_U32(tsn));
3880 if (len > sizeof(struct sctp_fwdtsn_hdr))
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09003881 sctp_add_cmd_sf(commands, SCTP_CMD_PROCESS_FWDTSN,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003882 SCTP_CHUNK(chunk));
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09003883
Linus Torvalds1da177e2005-04-16 15:20:36 -07003884 /* Go a head and force a SACK, since we are shutting down. */
3885gen_shutdown:
3886 /* Implementor's Guide.
3887 *
3888 * While in SHUTDOWN-SENT state, the SHUTDOWN sender MUST immediately
3889 * respond to each received packet containing one or more DATA chunk(s)
3890 * with a SACK, a SHUTDOWN chunk, and restart the T2-shutdown timer
3891 */
3892 sctp_add_cmd_sf(commands, SCTP_CMD_GEN_SHUTDOWN, SCTP_NULL());
3893 sctp_add_cmd_sf(commands, SCTP_CMD_GEN_SACK, SCTP_FORCE());
3894 sctp_add_cmd_sf(commands, SCTP_CMD_TIMER_RESTART,
3895 SCTP_TO(SCTP_EVENT_TIMEOUT_T2_SHUTDOWN));
3896
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09003897 return SCTP_DISPOSITION_CONSUME;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003898}
3899
3900/*
Lucas De Marchi25985ed2011-03-30 22:57:33 -03003901 * SCTP-AUTH Section 6.3 Receiving authenticated chukns
Vlad Yasevichbbd0d592007-10-03 17:51:34 -07003902 *
3903 * The receiver MUST use the HMAC algorithm indicated in the HMAC
3904 * Identifier field. If this algorithm was not specified by the
3905 * receiver in the HMAC-ALGO parameter in the INIT or INIT-ACK chunk
3906 * during association setup, the AUTH chunk and all chunks after it MUST
3907 * be discarded and an ERROR chunk SHOULD be sent with the error cause
3908 * defined in Section 4.1.
3909 *
3910 * If an endpoint with no shared key receives a Shared Key Identifier
3911 * other than 0, it MUST silently discard all authenticated chunks. If
3912 * the endpoint has at least one endpoint pair shared key for the peer,
3913 * it MUST use the key specified by the Shared Key Identifier if a
3914 * key has been configured for that Shared Key Identifier. If no
3915 * endpoint pair shared key has been configured for that Shared Key
3916 * Identifier, all authenticated chunks MUST be silently discarded.
3917 *
3918 * Verification Tag: 8.5 Verification Tag [Normal verification]
3919 *
3920 * The return value is the disposition of the chunk.
3921 */
3922static sctp_ierror_t sctp_sf_authenticate(const struct sctp_endpoint *ep,
3923 const struct sctp_association *asoc,
3924 const sctp_subtype_t type,
3925 struct sctp_chunk *chunk)
3926{
3927 struct sctp_authhdr *auth_hdr;
3928 struct sctp_hmac *hmac;
3929 unsigned int sig_len;
3930 __u16 key_id;
3931 __u8 *save_digest;
3932 __u8 *digest;
3933
3934 /* Pull in the auth header, so we can do some more verification */
3935 auth_hdr = (struct sctp_authhdr *)chunk->skb->data;
3936 chunk->subh.auth_hdr = auth_hdr;
3937 skb_pull(chunk->skb, sizeof(struct sctp_authhdr));
3938
3939 /* Make sure that we suport the HMAC algorithm from the auth
3940 * chunk.
3941 */
3942 if (!sctp_auth_asoc_verify_hmac_id(asoc, auth_hdr->hmac_id))
3943 return SCTP_IERROR_AUTH_BAD_HMAC;
3944
3945 /* Make sure that the provided shared key identifier has been
3946 * configured
3947 */
3948 key_id = ntohs(auth_hdr->shkey_id);
3949 if (key_id != asoc->active_key_id && !sctp_auth_get_shkey(asoc, key_id))
3950 return SCTP_IERROR_AUTH_BAD_KEYID;
3951
3952
3953 /* Make sure that the length of the signature matches what
3954 * we expect.
3955 */
3956 sig_len = ntohs(chunk->chunk_hdr->length) - sizeof(sctp_auth_chunk_t);
3957 hmac = sctp_auth_get_hmac(ntohs(auth_hdr->hmac_id));
3958 if (sig_len != hmac->hmac_len)
3959 return SCTP_IERROR_PROTO_VIOLATION;
3960
3961 /* Now that we've done validation checks, we can compute and
3962 * verify the hmac. The steps involved are:
3963 * 1. Save the digest from the chunk.
3964 * 2. Zero out the digest in the chunk.
3965 * 3. Compute the new digest
3966 * 4. Compare saved and new digests.
3967 */
3968 digest = auth_hdr->hmac;
3969 skb_pull(chunk->skb, sig_len);
3970
3971 save_digest = kmemdup(digest, sig_len, GFP_ATOMIC);
3972 if (!save_digest)
3973 goto nomem;
3974
3975 memset(digest, 0, sig_len);
3976
3977 sctp_auth_calculate_hmac(asoc, chunk->skb,
3978 (struct sctp_auth_chunk *)chunk->chunk_hdr,
3979 GFP_ATOMIC);
3980
3981 /* Discard the packet if the digests do not match */
3982 if (memcmp(save_digest, digest, sig_len)) {
3983 kfree(save_digest);
3984 return SCTP_IERROR_BAD_SIG;
3985 }
3986
3987 kfree(save_digest);
3988 chunk->auth = 1;
3989
3990 return SCTP_IERROR_NO_ERROR;
3991nomem:
3992 return SCTP_IERROR_NOMEM;
3993}
3994
3995sctp_disposition_t sctp_sf_eat_auth(const struct sctp_endpoint *ep,
3996 const struct sctp_association *asoc,
3997 const sctp_subtype_t type,
3998 void *arg,
3999 sctp_cmd_seq_t *commands)
4000{
4001 struct sctp_authhdr *auth_hdr;
4002 struct sctp_chunk *chunk = arg;
4003 struct sctp_chunk *err_chunk;
4004 sctp_ierror_t error;
4005
Wei Yongjund2f19fa2008-02-05 03:02:26 -08004006 /* Make sure that the peer has AUTH capable */
4007 if (!asoc->peer.auth_capable)
4008 return sctp_sf_unk_chunk(ep, asoc, type, arg, commands);
4009
Vlad Yasevichbbd0d592007-10-03 17:51:34 -07004010 if (!sctp_vtag_verify(chunk, asoc)) {
4011 sctp_add_cmd_sf(commands, SCTP_CMD_REPORT_BAD_TAG,
4012 SCTP_NULL());
4013 return sctp_sf_pdiscard(ep, asoc, type, arg, commands);
4014 }
4015
4016 /* Make sure that the AUTH chunk has valid length. */
4017 if (!sctp_chunk_length_valid(chunk, sizeof(struct sctp_auth_chunk)))
4018 return sctp_sf_violation_chunklen(ep, asoc, type, arg,
4019 commands);
4020
4021 auth_hdr = (struct sctp_authhdr *)chunk->skb->data;
4022 error = sctp_sf_authenticate(ep, asoc, type, chunk);
4023 switch (error) {
Joe Perches7fd71b12011-07-01 09:43:11 +00004024 case SCTP_IERROR_AUTH_BAD_HMAC:
4025 /* Generate the ERROR chunk and discard the rest
4026 * of the packet
4027 */
4028 err_chunk = sctp_make_op_error(asoc, chunk,
4029 SCTP_ERROR_UNSUP_HMAC,
4030 &auth_hdr->hmac_id,
4031 sizeof(__u16), 0);
4032 if (err_chunk) {
4033 sctp_add_cmd_sf(commands, SCTP_CMD_REPLY,
4034 SCTP_CHUNK(err_chunk));
4035 }
4036 /* Fall Through */
4037 case SCTP_IERROR_AUTH_BAD_KEYID:
4038 case SCTP_IERROR_BAD_SIG:
4039 return sctp_sf_pdiscard(ep, asoc, type, arg, commands);
4040
4041 case SCTP_IERROR_PROTO_VIOLATION:
4042 return sctp_sf_violation_chunklen(ep, asoc, type, arg,
4043 commands);
4044
4045 case SCTP_IERROR_NOMEM:
4046 return SCTP_DISPOSITION_NOMEM;
4047
4048 default: /* Prevent gcc warnings */
4049 break;
Vlad Yasevichbbd0d592007-10-03 17:51:34 -07004050 }
4051
Vlad Yasevich65b07e52007-09-16 19:34:00 -07004052 if (asoc->active_key_id != ntohs(auth_hdr->shkey_id)) {
4053 struct sctp_ulpevent *ev;
4054
4055 ev = sctp_ulpevent_make_authkey(asoc, ntohs(auth_hdr->shkey_id),
4056 SCTP_AUTH_NEWKEY, GFP_ATOMIC);
4057
4058 if (!ev)
4059 return -ENOMEM;
4060
4061 sctp_add_cmd_sf(commands, SCTP_CMD_EVENT_ULP,
4062 SCTP_ULPEVENT(ev));
4063 }
4064
Vlad Yasevichbbd0d592007-10-03 17:51:34 -07004065 return SCTP_DISPOSITION_CONSUME;
4066}
4067
4068/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004069 * Process an unknown chunk.
4070 *
4071 * Section: 3.2. Also, 2.1 in the implementor's guide.
4072 *
4073 * Chunk Types are encoded such that the highest-order two bits specify
4074 * the action that must be taken if the processing endpoint does not
4075 * recognize the Chunk Type.
4076 *
4077 * 00 - Stop processing this SCTP packet and discard it, do not process
4078 * any further chunks within it.
4079 *
4080 * 01 - Stop processing this SCTP packet and discard it, do not process
4081 * any further chunks within it, and report the unrecognized
4082 * chunk in an 'Unrecognized Chunk Type'.
4083 *
4084 * 10 - Skip this chunk and continue processing.
4085 *
4086 * 11 - Skip this chunk and continue processing, but report in an ERROR
4087 * Chunk using the 'Unrecognized Chunk Type' cause of error.
4088 *
4089 * The return value is the disposition of the chunk.
4090 */
4091sctp_disposition_t sctp_sf_unk_chunk(const struct sctp_endpoint *ep,
4092 const struct sctp_association *asoc,
4093 const sctp_subtype_t type,
4094 void *arg,
4095 sctp_cmd_seq_t *commands)
4096{
4097 struct sctp_chunk *unk_chunk = arg;
4098 struct sctp_chunk *err_chunk;
4099 sctp_chunkhdr_t *hdr;
4100
4101 SCTP_DEBUG_PRINTK("Processing the unknown chunk id %d.\n", type.chunk);
4102
4103 if (!sctp_vtag_verify(unk_chunk, asoc))
4104 return sctp_sf_pdiscard(ep, asoc, type, arg, commands);
4105
4106 /* Make sure that the chunk has a valid length.
4107 * Since we don't know the chunk type, we use a general
4108 * chunkhdr structure to make a comparison.
4109 */
4110 if (!sctp_chunk_length_valid(unk_chunk, sizeof(sctp_chunkhdr_t)))
4111 return sctp_sf_violation_chunklen(ep, asoc, type, arg,
4112 commands);
4113
4114 switch (type.chunk & SCTP_CID_ACTION_MASK) {
4115 case SCTP_CID_ACTION_DISCARD:
4116 /* Discard the packet. */
4117 return sctp_sf_pdiscard(ep, asoc, type, arg, commands);
4118 break;
4119 case SCTP_CID_ACTION_DISCARD_ERR:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004120 /* Generate an ERROR chunk as response. */
4121 hdr = unk_chunk->chunk_hdr;
4122 err_chunk = sctp_make_op_error(asoc, unk_chunk,
4123 SCTP_ERROR_UNKNOWN_CHUNK, hdr,
Vlad Yasevich6383cfb2009-11-23 15:53:56 -05004124 WORD_ROUND(ntohs(hdr->length)),
4125 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004126 if (err_chunk) {
4127 sctp_add_cmd_sf(commands, SCTP_CMD_REPLY,
4128 SCTP_CHUNK(err_chunk));
4129 }
Vlad Yasevich2e3216c2008-06-19 16:08:18 -07004130
4131 /* Discard the packet. */
4132 sctp_sf_pdiscard(ep, asoc, type, arg, commands);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004133 return SCTP_DISPOSITION_CONSUME;
4134 break;
4135 case SCTP_CID_ACTION_SKIP:
4136 /* Skip the chunk. */
4137 return SCTP_DISPOSITION_DISCARD;
4138 break;
4139 case SCTP_CID_ACTION_SKIP_ERR:
4140 /* Generate an ERROR chunk as response. */
4141 hdr = unk_chunk->chunk_hdr;
4142 err_chunk = sctp_make_op_error(asoc, unk_chunk,
4143 SCTP_ERROR_UNKNOWN_CHUNK, hdr,
Vlad Yasevich6383cfb2009-11-23 15:53:56 -05004144 WORD_ROUND(ntohs(hdr->length)),
4145 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004146 if (err_chunk) {
4147 sctp_add_cmd_sf(commands, SCTP_CMD_REPLY,
4148 SCTP_CHUNK(err_chunk));
4149 }
4150 /* Skip the chunk. */
4151 return SCTP_DISPOSITION_CONSUME;
4152 break;
4153 default:
4154 break;
4155 }
4156
4157 return SCTP_DISPOSITION_DISCARD;
4158}
4159
4160/*
4161 * Discard the chunk.
4162 *
4163 * Section: 0.2, 5.2.3, 5.2.5, 5.2.6, 6.0, 8.4.6, 8.5.1c, 9.2
4164 * [Too numerous to mention...]
4165 * Verification Tag: No verification needed.
4166 * Inputs
4167 * (endpoint, asoc, chunk)
4168 *
4169 * Outputs
4170 * (asoc, reply_msg, msg_up, timers, counters)
4171 *
4172 * The return value is the disposition of the chunk.
4173 */
4174sctp_disposition_t sctp_sf_discard_chunk(const struct sctp_endpoint *ep,
4175 const struct sctp_association *asoc,
4176 const sctp_subtype_t type,
4177 void *arg,
4178 sctp_cmd_seq_t *commands)
4179{
Vlad Yasevichece25df2007-09-07 16:30:54 -04004180 struct sctp_chunk *chunk = arg;
4181
4182 /* Make sure that the chunk has a valid length.
4183 * Since we don't know the chunk type, we use a general
4184 * chunkhdr structure to make a comparison.
4185 */
4186 if (!sctp_chunk_length_valid(chunk, sizeof(sctp_chunkhdr_t)))
4187 return sctp_sf_violation_chunklen(ep, asoc, type, arg,
4188 commands);
4189
Linus Torvalds1da177e2005-04-16 15:20:36 -07004190 SCTP_DEBUG_PRINTK("Chunk %d is discarded\n", type.chunk);
4191 return SCTP_DISPOSITION_DISCARD;
4192}
4193
4194/*
4195 * Discard the whole packet.
4196 *
4197 * Section: 8.4 2)
4198 *
4199 * 2) If the OOTB packet contains an ABORT chunk, the receiver MUST
4200 * silently discard the OOTB packet and take no further action.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004201 *
4202 * Verification Tag: No verification necessary
4203 *
4204 * Inputs
4205 * (endpoint, asoc, chunk)
4206 *
4207 * Outputs
4208 * (asoc, reply_msg, msg_up, timers, counters)
4209 *
4210 * The return value is the disposition of the chunk.
4211 */
4212sctp_disposition_t sctp_sf_pdiscard(const struct sctp_endpoint *ep,
4213 const struct sctp_association *asoc,
4214 const sctp_subtype_t type,
4215 void *arg,
4216 sctp_cmd_seq_t *commands)
4217{
Sridhar Samudralaac0b0462006-08-22 00:15:33 -07004218 SCTP_INC_STATS(SCTP_MIB_IN_PKT_DISCARDS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004219 sctp_add_cmd_sf(commands, SCTP_CMD_DISCARD_PACKET, SCTP_NULL());
4220
4221 return SCTP_DISPOSITION_CONSUME;
4222}
4223
4224
4225/*
4226 * The other end is violating protocol.
4227 *
4228 * Section: Not specified
4229 * Verification Tag: Not specified
4230 * Inputs
4231 * (endpoint, asoc, chunk)
4232 *
4233 * Outputs
4234 * (asoc, reply_msg, msg_up, timers, counters)
4235 *
4236 * We simply tag the chunk as a violation. The state machine will log
4237 * the violation and continue.
4238 */
4239sctp_disposition_t sctp_sf_violation(const struct sctp_endpoint *ep,
4240 const struct sctp_association *asoc,
4241 const sctp_subtype_t type,
4242 void *arg,
4243 sctp_cmd_seq_t *commands)
4244{
Vlad Yasevichece25df2007-09-07 16:30:54 -04004245 struct sctp_chunk *chunk = arg;
4246
4247 /* Make sure that the chunk has a valid length. */
4248 if (!sctp_chunk_length_valid(chunk, sizeof(sctp_chunkhdr_t)))
4249 return sctp_sf_violation_chunklen(ep, asoc, type, arg,
4250 commands);
4251
Linus Torvalds1da177e2005-04-16 15:20:36 -07004252 return SCTP_DISPOSITION_VIOLATION;
4253}
4254
Linus Torvalds1da177e2005-04-16 15:20:36 -07004255/*
Wei Yongjunaecedea2007-08-02 16:57:44 +08004256 * Common function to handle a protocol violation.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004257 */
Wei Yongjunaecedea2007-08-02 16:57:44 +08004258static sctp_disposition_t sctp_sf_abort_violation(
Vlad Yasevichece25df2007-09-07 16:30:54 -04004259 const struct sctp_endpoint *ep,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004260 const struct sctp_association *asoc,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004261 void *arg,
Wei Yongjunaecedea2007-08-02 16:57:44 +08004262 sctp_cmd_seq_t *commands,
4263 const __u8 *payload,
4264 const size_t paylen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004265{
Vlad Yasevichece25df2007-09-07 16:30:54 -04004266 struct sctp_packet *packet = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004267 struct sctp_chunk *chunk = arg;
4268 struct sctp_chunk *abort = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004269
Vlad Yasevichbbd0d592007-10-03 17:51:34 -07004270 /* SCTP-AUTH, Section 6.3:
4271 * It should be noted that if the receiver wants to tear
4272 * down an association in an authenticated way only, the
4273 * handling of malformed packets should not result in
4274 * tearing down the association.
4275 *
4276 * This means that if we only want to abort associations
4277 * in an authenticated way (i.e AUTH+ABORT), then we
Lucas De Marchi25985ed2011-03-30 22:57:33 -03004278 * can't destroy this association just because the packet
Vlad Yasevichbbd0d592007-10-03 17:51:34 -07004279 * was malformed.
4280 */
4281 if (sctp_auth_recv_cid(SCTP_CID_ABORT, asoc))
4282 goto discard;
4283
Jesper Juhl9abed242007-11-11 23:57:49 +01004284 /* Make the abort chunk. */
4285 abort = sctp_make_abort_violation(asoc, chunk, payload, paylen);
4286 if (!abort)
4287 goto nomem;
4288
Vlad Yasevichece25df2007-09-07 16:30:54 -04004289 if (asoc) {
Gui Jianfengf4ad85c2008-04-12 18:39:34 -07004290 /* Treat INIT-ACK as a special case during COOKIE-WAIT. */
4291 if (chunk->chunk_hdr->type == SCTP_CID_INIT_ACK &&
4292 !asoc->peer.i.init_tag) {
4293 sctp_initack_chunk_t *initack;
4294
4295 initack = (sctp_initack_chunk_t *)chunk->chunk_hdr;
4296 if (!sctp_chunk_length_valid(chunk,
4297 sizeof(sctp_initack_chunk_t)))
4298 abort->chunk_hdr->flags |= SCTP_CHUNK_FLAG_T;
4299 else {
4300 unsigned int inittag;
4301
4302 inittag = ntohl(initack->init_hdr.init_tag);
4303 sctp_add_cmd_sf(commands, SCTP_CMD_UPDATE_INITTAG,
4304 SCTP_U32(inittag));
4305 }
4306 }
4307
Vlad Yasevichece25df2007-09-07 16:30:54 -04004308 sctp_add_cmd_sf(commands, SCTP_CMD_REPLY, SCTP_CHUNK(abort));
4309 SCTP_INC_STATS(SCTP_MIB_OUTCTRLCHUNKS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004310
Vlad Yasevichece25df2007-09-07 16:30:54 -04004311 if (asoc->state <= SCTP_STATE_COOKIE_ECHOED) {
4312 sctp_add_cmd_sf(commands, SCTP_CMD_TIMER_STOP,
4313 SCTP_TO(SCTP_EVENT_TIMEOUT_T1_INIT));
4314 sctp_add_cmd_sf(commands, SCTP_CMD_SET_SK_ERR,
4315 SCTP_ERROR(ECONNREFUSED));
4316 sctp_add_cmd_sf(commands, SCTP_CMD_INIT_FAILED,
4317 SCTP_PERR(SCTP_ERROR_PROTO_VIOLATION));
4318 } else {
4319 sctp_add_cmd_sf(commands, SCTP_CMD_SET_SK_ERR,
4320 SCTP_ERROR(ECONNABORTED));
4321 sctp_add_cmd_sf(commands, SCTP_CMD_ASSOC_FAILED,
4322 SCTP_PERR(SCTP_ERROR_PROTO_VIOLATION));
4323 SCTP_DEC_STATS(SCTP_MIB_CURRESTAB);
4324 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004325 } else {
Vlad Yasevichece25df2007-09-07 16:30:54 -04004326 packet = sctp_ootb_pkt_new(asoc, chunk);
4327
4328 if (!packet)
4329 goto nomem_pkt;
4330
4331 if (sctp_test_T_bit(abort))
4332 packet->vtag = ntohl(chunk->sctp_hdr->vtag);
4333
4334 abort->skb->sk = ep->base.sk;
4335
4336 sctp_packet_append_chunk(packet, abort);
4337
4338 sctp_add_cmd_sf(commands, SCTP_CMD_SEND_PKT,
4339 SCTP_PACKET(packet));
4340
4341 SCTP_INC_STATS(SCTP_MIB_OUTCTRLCHUNKS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004342 }
4343
Linus Torvalds1da177e2005-04-16 15:20:36 -07004344 SCTP_INC_STATS(SCTP_MIB_ABORTEDS);
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09004345
Vlad Yasevich56eb82b2008-10-09 14:33:01 -07004346discard:
4347 sctp_sf_pdiscard(ep, asoc, SCTP_ST_CHUNK(0), arg, commands);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004348 return SCTP_DISPOSITION_ABORT;
4349
Vlad Yasevichece25df2007-09-07 16:30:54 -04004350nomem_pkt:
4351 sctp_chunk_free(abort);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004352nomem:
4353 return SCTP_DISPOSITION_NOMEM;
4354}
4355
Wei Yongjunaecedea2007-08-02 16:57:44 +08004356/*
4357 * Handle a protocol violation when the chunk length is invalid.
Frederik Schwarzer025dfda2008-10-16 19:02:37 +02004358 * "Invalid" length is identified as smaller than the minimal length a
Wei Yongjunaecedea2007-08-02 16:57:44 +08004359 * given chunk can be. For example, a SACK chunk has invalid length
Frederik Schwarzer025dfda2008-10-16 19:02:37 +02004360 * if its length is set to be smaller than the size of sctp_sack_chunk_t.
Wei Yongjunaecedea2007-08-02 16:57:44 +08004361 *
4362 * We inform the other end by sending an ABORT with a Protocol Violation
4363 * error code.
4364 *
4365 * Section: Not specified
4366 * Verification Tag: Nothing to do
4367 * Inputs
4368 * (endpoint, asoc, chunk)
4369 *
4370 * Outputs
4371 * (reply_msg, msg_up, counters)
4372 *
4373 * Generate an ABORT chunk and terminate the association.
4374 */
4375static sctp_disposition_t sctp_sf_violation_chunklen(
4376 const struct sctp_endpoint *ep,
4377 const struct sctp_association *asoc,
4378 const sctp_subtype_t type,
4379 void *arg,
4380 sctp_cmd_seq_t *commands)
4381{
Florian Westphal24448442008-03-23 22:46:34 -07004382 static const char err_str[]="The following chunk had invalid length:";
Wei Yongjunaecedea2007-08-02 16:57:44 +08004383
Vlad Yasevichece25df2007-09-07 16:30:54 -04004384 return sctp_sf_abort_violation(ep, asoc, arg, commands, err_str,
Wei Yongjunaecedea2007-08-02 16:57:44 +08004385 sizeof(err_str));
4386}
4387
Wei Yongjun6f4c6182007-09-19 17:19:52 +08004388/*
4389 * Handle a protocol violation when the parameter length is invalid.
Shan Wei33c7cfd2011-04-18 19:11:01 +00004390 * If the length is smaller than the minimum length of a given parameter,
4391 * or accumulated length in multi parameters exceeds the end of the chunk,
4392 * the length is considered as invalid.
Wei Yongjun6f4c6182007-09-19 17:19:52 +08004393 */
4394static sctp_disposition_t sctp_sf_violation_paramlen(
4395 const struct sctp_endpoint *ep,
4396 const struct sctp_association *asoc,
4397 const sctp_subtype_t type,
Wei Yongjunba016672008-09-30 05:32:24 -07004398 void *arg, void *ext,
4399 sctp_cmd_seq_t *commands)
4400{
4401 struct sctp_chunk *chunk = arg;
4402 struct sctp_paramhdr *param = ext;
4403 struct sctp_chunk *abort = NULL;
Wei Yongjun6f4c6182007-09-19 17:19:52 +08004404
Wei Yongjunba016672008-09-30 05:32:24 -07004405 if (sctp_auth_recv_cid(SCTP_CID_ABORT, asoc))
4406 goto discard;
4407
4408 /* Make the abort chunk. */
4409 abort = sctp_make_violation_paramlen(asoc, chunk, param);
4410 if (!abort)
4411 goto nomem;
4412
4413 sctp_add_cmd_sf(commands, SCTP_CMD_REPLY, SCTP_CHUNK(abort));
4414 SCTP_INC_STATS(SCTP_MIB_OUTCTRLCHUNKS);
4415
4416 sctp_add_cmd_sf(commands, SCTP_CMD_SET_SK_ERR,
4417 SCTP_ERROR(ECONNABORTED));
4418 sctp_add_cmd_sf(commands, SCTP_CMD_ASSOC_FAILED,
4419 SCTP_PERR(SCTP_ERROR_PROTO_VIOLATION));
4420 SCTP_DEC_STATS(SCTP_MIB_CURRESTAB);
Vlad Yasevich56eb82b2008-10-09 14:33:01 -07004421 SCTP_INC_STATS(SCTP_MIB_ABORTEDS);
Wei Yongjunba016672008-09-30 05:32:24 -07004422
4423discard:
4424 sctp_sf_pdiscard(ep, asoc, SCTP_ST_CHUNK(0), arg, commands);
Wei Yongjunba016672008-09-30 05:32:24 -07004425 return SCTP_DISPOSITION_ABORT;
4426nomem:
4427 return SCTP_DISPOSITION_NOMEM;
Wei Yongjun6f4c6182007-09-19 17:19:52 +08004428}
4429
Wei Yongjunaecedea2007-08-02 16:57:44 +08004430/* Handle a protocol violation when the peer trying to advance the
4431 * cumulative tsn ack to a point beyond the max tsn currently sent.
4432 *
4433 * We inform the other end by sending an ABORT with a Protocol Violation
4434 * error code.
4435 */
4436static sctp_disposition_t sctp_sf_violation_ctsn(
4437 const struct sctp_endpoint *ep,
4438 const struct sctp_association *asoc,
4439 const sctp_subtype_t type,
4440 void *arg,
4441 sctp_cmd_seq_t *commands)
4442{
Florian Westphal24448442008-03-23 22:46:34 -07004443 static const char err_str[]="The cumulative tsn ack beyond the max tsn currently sent:";
Wei Yongjunaecedea2007-08-02 16:57:44 +08004444
Vlad Yasevichece25df2007-09-07 16:30:54 -04004445 return sctp_sf_abort_violation(ep, asoc, arg, commands, err_str,
Wei Yongjunaecedea2007-08-02 16:57:44 +08004446 sizeof(err_str));
4447}
4448
Vlad Yasevichece25df2007-09-07 16:30:54 -04004449/* Handle protocol violation of an invalid chunk bundling. For example,
Lucas De Marchi25985ed2011-03-30 22:57:33 -03004450 * when we have an association and we receive bundled INIT-ACK, or
Vlad Yasevichece25df2007-09-07 16:30:54 -04004451 * SHUDOWN-COMPLETE, our peer is clearly violationg the "MUST NOT bundle"
Lucas De Marchi25985ed2011-03-30 22:57:33 -03004452 * statement from the specs. Additionally, there might be an attacker
Vlad Yasevichece25df2007-09-07 16:30:54 -04004453 * on the path and we may not want to continue this communication.
4454 */
4455static sctp_disposition_t sctp_sf_violation_chunk(
4456 const struct sctp_endpoint *ep,
4457 const struct sctp_association *asoc,
4458 const sctp_subtype_t type,
4459 void *arg,
4460 sctp_cmd_seq_t *commands)
4461{
Florian Westphal24448442008-03-23 22:46:34 -07004462 static const char err_str[]="The following chunk violates protocol:";
Vlad Yasevichece25df2007-09-07 16:30:54 -04004463
4464 if (!asoc)
4465 return sctp_sf_violation(ep, asoc, type, arg, commands);
4466
4467 return sctp_sf_abort_violation(ep, asoc, arg, commands, err_str,
4468 sizeof(err_str));
4469}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004470/***************************************************************************
4471 * These are the state functions for handling primitive (Section 10) events.
4472 ***************************************************************************/
4473/*
4474 * sctp_sf_do_prm_asoc
4475 *
4476 * Section: 10.1 ULP-to-SCTP
4477 * B) Associate
4478 *
4479 * Format: ASSOCIATE(local SCTP instance name, destination transport addr,
4480 * outbound stream count)
4481 * -> association id [,destination transport addr list] [,outbound stream
4482 * count]
4483 *
4484 * This primitive allows the upper layer to initiate an association to a
4485 * specific peer endpoint.
4486 *
4487 * The peer endpoint shall be specified by one of the transport addresses
4488 * which defines the endpoint (see Section 1.4). If the local SCTP
4489 * instance has not been initialized, the ASSOCIATE is considered an
4490 * error.
4491 * [This is not relevant for the kernel implementation since we do all
4492 * initialization at boot time. It we hadn't initialized we wouldn't
4493 * get anywhere near this code.]
4494 *
4495 * An association id, which is a local handle to the SCTP association,
4496 * will be returned on successful establishment of the association. If
4497 * SCTP is not able to open an SCTP association with the peer endpoint,
4498 * an error is returned.
4499 * [In the kernel implementation, the struct sctp_association needs to
4500 * be created BEFORE causing this primitive to run.]
4501 *
4502 * Other association parameters may be returned, including the
4503 * complete destination transport addresses of the peer as well as the
4504 * outbound stream count of the local endpoint. One of the transport
4505 * address from the returned destination addresses will be selected by
4506 * the local endpoint as default primary path for sending SCTP packets
4507 * to this peer. The returned "destination transport addr list" can
4508 * be used by the ULP to change the default primary path or to force
4509 * sending a packet to a specific transport address. [All of this
4510 * stuff happens when the INIT ACK arrives. This is a NON-BLOCKING
4511 * function.]
4512 *
4513 * Mandatory attributes:
4514 *
4515 * o local SCTP instance name - obtained from the INITIALIZE operation.
4516 * [This is the argument asoc.]
4517 * o destination transport addr - specified as one of the transport
4518 * addresses of the peer endpoint with which the association is to be
4519 * established.
4520 * [This is asoc->peer.active_path.]
4521 * o outbound stream count - the number of outbound streams the ULP
4522 * would like to open towards this peer endpoint.
4523 * [BUG: This is not currently implemented.]
4524 * Optional attributes:
4525 *
4526 * None.
4527 *
4528 * The return value is a disposition.
4529 */
4530sctp_disposition_t sctp_sf_do_prm_asoc(const struct sctp_endpoint *ep,
4531 const struct sctp_association *asoc,
4532 const sctp_subtype_t type,
4533 void *arg,
4534 sctp_cmd_seq_t *commands)
4535{
4536 struct sctp_chunk *repl;
Vlad Yasevichab38fb02008-04-12 18:40:06 -07004537 struct sctp_association* my_asoc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004538
4539 /* The comment below says that we enter COOKIE-WAIT AFTER
4540 * sending the INIT, but that doesn't actually work in our
4541 * implementation...
4542 */
4543 sctp_add_cmd_sf(commands, SCTP_CMD_NEW_STATE,
4544 SCTP_STATE(SCTP_STATE_COOKIE_WAIT));
4545
4546 /* RFC 2960 5.1 Normal Establishment of an Association
4547 *
4548 * A) "A" first sends an INIT chunk to "Z". In the INIT, "A"
4549 * must provide its Verification Tag (Tag_A) in the Initiate
4550 * Tag field. Tag_A SHOULD be a random number in the range of
4551 * 1 to 4294967295 (see 5.3.1 for Tag value selection). ...
4552 */
4553
4554 repl = sctp_make_init(asoc, &asoc->base.bind_addr, GFP_ATOMIC, 0);
4555 if (!repl)
4556 goto nomem;
4557
4558 /* Cast away the const modifier, as we want to just
4559 * rerun it through as a sideffect.
4560 */
Vlad Yasevichab38fb02008-04-12 18:40:06 -07004561 my_asoc = (struct sctp_association *)asoc;
4562 sctp_add_cmd_sf(commands, SCTP_CMD_NEW_ASOC, SCTP_ASOC(my_asoc));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004563
Frank Filz3f7a87d2005-06-20 13:14:57 -07004564 /* Choose transport for INIT. */
4565 sctp_add_cmd_sf(commands, SCTP_CMD_INIT_CHOOSE_TRANSPORT,
4566 SCTP_CHUNK(repl));
4567
Linus Torvalds1da177e2005-04-16 15:20:36 -07004568 /* After sending the INIT, "A" starts the T1-init timer and
4569 * enters the COOKIE-WAIT state.
4570 */
4571 sctp_add_cmd_sf(commands, SCTP_CMD_TIMER_START,
4572 SCTP_TO(SCTP_EVENT_TIMEOUT_T1_INIT));
4573 sctp_add_cmd_sf(commands, SCTP_CMD_REPLY, SCTP_CHUNK(repl));
4574 return SCTP_DISPOSITION_CONSUME;
4575
4576nomem:
4577 return SCTP_DISPOSITION_NOMEM;
4578}
4579
4580/*
4581 * Process the SEND primitive.
4582 *
4583 * Section: 10.1 ULP-to-SCTP
4584 * E) Send
4585 *
4586 * Format: SEND(association id, buffer address, byte count [,context]
4587 * [,stream id] [,life time] [,destination transport address]
4588 * [,unorder flag] [,no-bundle flag] [,payload protocol-id] )
4589 * -> result
4590 *
4591 * This is the main method to send user data via SCTP.
4592 *
4593 * Mandatory attributes:
4594 *
4595 * o association id - local handle to the SCTP association
4596 *
4597 * o buffer address - the location where the user message to be
4598 * transmitted is stored;
4599 *
4600 * o byte count - The size of the user data in number of bytes;
4601 *
4602 * Optional attributes:
4603 *
4604 * o context - an optional 32 bit integer that will be carried in the
4605 * sending failure notification to the ULP if the transportation of
4606 * this User Message fails.
4607 *
4608 * o stream id - to indicate which stream to send the data on. If not
4609 * specified, stream 0 will be used.
4610 *
4611 * o life time - specifies the life time of the user data. The user data
4612 * will not be sent by SCTP after the life time expires. This
4613 * parameter can be used to avoid efforts to transmit stale
4614 * user messages. SCTP notifies the ULP if the data cannot be
4615 * initiated to transport (i.e. sent to the destination via SCTP's
4616 * send primitive) within the life time variable. However, the
4617 * user data will be transmitted if SCTP has attempted to transmit a
4618 * chunk before the life time expired.
4619 *
4620 * o destination transport address - specified as one of the destination
4621 * transport addresses of the peer endpoint to which this packet
4622 * should be sent. Whenever possible, SCTP should use this destination
4623 * transport address for sending the packets, instead of the current
4624 * primary path.
4625 *
4626 * o unorder flag - this flag, if present, indicates that the user
4627 * would like the data delivered in an unordered fashion to the peer
4628 * (i.e., the U flag is set to 1 on all DATA chunks carrying this
4629 * message).
4630 *
4631 * o no-bundle flag - instructs SCTP not to bundle this user data with
4632 * other outbound DATA chunks. SCTP MAY still bundle even when
4633 * this flag is present, when faced with network congestion.
4634 *
4635 * o payload protocol-id - A 32 bit unsigned integer that is to be
4636 * passed to the peer indicating the type of payload protocol data
4637 * being transmitted. This value is passed as opaque data by SCTP.
4638 *
4639 * The return value is the disposition.
4640 */
4641sctp_disposition_t sctp_sf_do_prm_send(const struct sctp_endpoint *ep,
4642 const struct sctp_association *asoc,
4643 const sctp_subtype_t type,
4644 void *arg,
4645 sctp_cmd_seq_t *commands)
4646{
Vlad Yasevich9c5c62b2009-08-10 13:51:03 -04004647 struct sctp_datamsg *msg = arg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004648
Vlad Yasevich9c5c62b2009-08-10 13:51:03 -04004649 sctp_add_cmd_sf(commands, SCTP_CMD_SEND_MSG, SCTP_DATAMSG(msg));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004650 return SCTP_DISPOSITION_CONSUME;
4651}
4652
4653/*
4654 * Process the SHUTDOWN primitive.
4655 *
4656 * Section: 10.1:
4657 * C) Shutdown
4658 *
4659 * Format: SHUTDOWN(association id)
4660 * -> result
4661 *
4662 * Gracefully closes an association. Any locally queued user data
4663 * will be delivered to the peer. The association will be terminated only
4664 * after the peer acknowledges all the SCTP packets sent. A success code
4665 * will be returned on successful termination of the association. If
4666 * attempting to terminate the association results in a failure, an error
4667 * code shall be returned.
4668 *
4669 * Mandatory attributes:
4670 *
4671 * o association id - local handle to the SCTP association
4672 *
4673 * Optional attributes:
4674 *
4675 * None.
4676 *
4677 * The return value is the disposition.
4678 */
4679sctp_disposition_t sctp_sf_do_9_2_prm_shutdown(
4680 const struct sctp_endpoint *ep,
4681 const struct sctp_association *asoc,
4682 const sctp_subtype_t type,
4683 void *arg,
4684 sctp_cmd_seq_t *commands)
4685{
4686 int disposition;
4687
4688 /* From 9.2 Shutdown of an Association
4689 * Upon receipt of the SHUTDOWN primitive from its upper
4690 * layer, the endpoint enters SHUTDOWN-PENDING state and
4691 * remains there until all outstanding data has been
4692 * acknowledged by its peer. The endpoint accepts no new data
4693 * from its upper layer, but retransmits data to the far end
4694 * if necessary to fill gaps.
4695 */
4696 sctp_add_cmd_sf(commands, SCTP_CMD_NEW_STATE,
4697 SCTP_STATE(SCTP_STATE_SHUTDOWN_PENDING));
4698
Linus Torvalds1da177e2005-04-16 15:20:36 -07004699 disposition = SCTP_DISPOSITION_CONSUME;
4700 if (sctp_outq_is_empty(&asoc->outqueue)) {
4701 disposition = sctp_sf_do_9_2_start_shutdown(ep, asoc, type,
4702 arg, commands);
4703 }
4704 return disposition;
4705}
4706
4707/*
4708 * Process the ABORT primitive.
4709 *
4710 * Section: 10.1:
4711 * C) Abort
4712 *
4713 * Format: Abort(association id [, cause code])
4714 * -> result
4715 *
4716 * Ungracefully closes an association. Any locally queued user data
4717 * will be discarded and an ABORT chunk is sent to the peer. A success code
4718 * will be returned on successful abortion of the association. If
4719 * attempting to abort the association results in a failure, an error
4720 * code shall be returned.
4721 *
4722 * Mandatory attributes:
4723 *
4724 * o association id - local handle to the SCTP association
4725 *
4726 * Optional attributes:
4727 *
4728 * o cause code - reason of the abort to be passed to the peer
4729 *
4730 * None.
4731 *
4732 * The return value is the disposition.
4733 */
4734sctp_disposition_t sctp_sf_do_9_1_prm_abort(
4735 const struct sctp_endpoint *ep,
4736 const struct sctp_association *asoc,
4737 const sctp_subtype_t type,
4738 void *arg,
4739 sctp_cmd_seq_t *commands)
4740{
4741 /* From 9.1 Abort of an Association
4742 * Upon receipt of the ABORT primitive from its upper
4743 * layer, the endpoint enters CLOSED state and
4744 * discard all outstanding data has been
4745 * acknowledged by its peer. The endpoint accepts no new data
4746 * from its upper layer, but retransmits data to the far end
4747 * if necessary to fill gaps.
4748 */
Sridhar Samudralac164a9b2006-08-22 11:50:39 -07004749 struct sctp_chunk *abort = arg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004750 sctp_disposition_t retval;
4751
4752 retval = SCTP_DISPOSITION_CONSUME;
4753
Sridhar Samudralac164a9b2006-08-22 11:50:39 -07004754 sctp_add_cmd_sf(commands, SCTP_CMD_REPLY, SCTP_CHUNK(abort));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004755
4756 /* Even if we can't send the ABORT due to low memory delete the
4757 * TCB. This is a departure from our typical NOMEM handling.
4758 */
4759
Sridhar Samudrala8de8c872006-05-19 10:58:12 -07004760 sctp_add_cmd_sf(commands, SCTP_CMD_SET_SK_ERR,
4761 SCTP_ERROR(ECONNABORTED));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004762 /* Delete the established association. */
4763 sctp_add_cmd_sf(commands, SCTP_CMD_ASSOC_FAILED,
Al Viro5be291f2006-11-20 17:01:06 -08004764 SCTP_PERR(SCTP_ERROR_USER_ABORT));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004765
4766 SCTP_INC_STATS(SCTP_MIB_ABORTEDS);
4767 SCTP_DEC_STATS(SCTP_MIB_CURRESTAB);
4768
4769 return retval;
4770}
4771
4772/* We tried an illegal operation on an association which is closed. */
4773sctp_disposition_t sctp_sf_error_closed(const struct sctp_endpoint *ep,
4774 const struct sctp_association *asoc,
4775 const sctp_subtype_t type,
4776 void *arg,
4777 sctp_cmd_seq_t *commands)
4778{
4779 sctp_add_cmd_sf(commands, SCTP_CMD_REPORT_ERROR, SCTP_ERROR(-EINVAL));
4780 return SCTP_DISPOSITION_CONSUME;
4781}
4782
4783/* We tried an illegal operation on an association which is shutting
4784 * down.
4785 */
4786sctp_disposition_t sctp_sf_error_shutdown(const struct sctp_endpoint *ep,
4787 const struct sctp_association *asoc,
4788 const sctp_subtype_t type,
4789 void *arg,
4790 sctp_cmd_seq_t *commands)
4791{
4792 sctp_add_cmd_sf(commands, SCTP_CMD_REPORT_ERROR,
4793 SCTP_ERROR(-ESHUTDOWN));
4794 return SCTP_DISPOSITION_CONSUME;
4795}
4796
4797/*
4798 * sctp_cookie_wait_prm_shutdown
4799 *
4800 * Section: 4 Note: 2
4801 * Verification Tag:
4802 * Inputs
4803 * (endpoint, asoc)
4804 *
4805 * The RFC does not explicitly address this issue, but is the route through the
4806 * state table when someone issues a shutdown while in COOKIE_WAIT state.
4807 *
4808 * Outputs
4809 * (timers)
4810 */
4811sctp_disposition_t sctp_sf_cookie_wait_prm_shutdown(
4812 const struct sctp_endpoint *ep,
4813 const struct sctp_association *asoc,
4814 const sctp_subtype_t type,
4815 void *arg,
4816 sctp_cmd_seq_t *commands)
4817{
4818 sctp_add_cmd_sf(commands, SCTP_CMD_TIMER_STOP,
4819 SCTP_TO(SCTP_EVENT_TIMEOUT_T1_INIT));
4820
4821 sctp_add_cmd_sf(commands, SCTP_CMD_NEW_STATE,
4822 SCTP_STATE(SCTP_STATE_CLOSED));
4823
4824 SCTP_INC_STATS(SCTP_MIB_SHUTDOWNS);
4825
4826 sctp_add_cmd_sf(commands, SCTP_CMD_DELETE_TCB, SCTP_NULL());
4827
4828 return SCTP_DISPOSITION_DELETE_TCB;
4829}
4830
4831/*
4832 * sctp_cookie_echoed_prm_shutdown
4833 *
4834 * Section: 4 Note: 2
4835 * Verification Tag:
4836 * Inputs
4837 * (endpoint, asoc)
4838 *
4839 * The RFC does not explcitly address this issue, but is the route through the
4840 * state table when someone issues a shutdown while in COOKIE_ECHOED state.
4841 *
4842 * Outputs
4843 * (timers)
4844 */
4845sctp_disposition_t sctp_sf_cookie_echoed_prm_shutdown(
4846 const struct sctp_endpoint *ep,
4847 const struct sctp_association *asoc,
4848 const sctp_subtype_t type,
4849 void *arg, sctp_cmd_seq_t *commands)
4850{
4851 /* There is a single T1 timer, so we should be able to use
4852 * common function with the COOKIE-WAIT state.
4853 */
4854 return sctp_sf_cookie_wait_prm_shutdown(ep, asoc, type, arg, commands);
4855}
4856
4857/*
4858 * sctp_sf_cookie_wait_prm_abort
4859 *
4860 * Section: 4 Note: 2
4861 * Verification Tag:
4862 * Inputs
4863 * (endpoint, asoc)
4864 *
4865 * The RFC does not explicitly address this issue, but is the route through the
4866 * state table when someone issues an abort while in COOKIE_WAIT state.
4867 *
4868 * Outputs
4869 * (timers)
4870 */
4871sctp_disposition_t sctp_sf_cookie_wait_prm_abort(
4872 const struct sctp_endpoint *ep,
4873 const struct sctp_association *asoc,
4874 const sctp_subtype_t type,
4875 void *arg,
4876 sctp_cmd_seq_t *commands)
4877{
Sridhar Samudralac164a9b2006-08-22 11:50:39 -07004878 struct sctp_chunk *abort = arg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004879 sctp_disposition_t retval;
4880
4881 /* Stop T1-init timer */
4882 sctp_add_cmd_sf(commands, SCTP_CMD_TIMER_STOP,
4883 SCTP_TO(SCTP_EVENT_TIMEOUT_T1_INIT));
4884 retval = SCTP_DISPOSITION_CONSUME;
4885
Sridhar Samudralac164a9b2006-08-22 11:50:39 -07004886 sctp_add_cmd_sf(commands, SCTP_CMD_REPLY, SCTP_CHUNK(abort));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004887
4888 sctp_add_cmd_sf(commands, SCTP_CMD_NEW_STATE,
4889 SCTP_STATE(SCTP_STATE_CLOSED));
4890
4891 SCTP_INC_STATS(SCTP_MIB_ABORTEDS);
4892
4893 /* Even if we can't send the ABORT due to low memory delete the
4894 * TCB. This is a departure from our typical NOMEM handling.
4895 */
4896
Sridhar Samudrala8de8c872006-05-19 10:58:12 -07004897 sctp_add_cmd_sf(commands, SCTP_CMD_SET_SK_ERR,
4898 SCTP_ERROR(ECONNREFUSED));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004899 /* Delete the established association. */
4900 sctp_add_cmd_sf(commands, SCTP_CMD_INIT_FAILED,
Al Virodc251b22006-11-20 17:00:44 -08004901 SCTP_PERR(SCTP_ERROR_USER_ABORT));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004902
4903 return retval;
4904}
4905
4906/*
4907 * sctp_sf_cookie_echoed_prm_abort
4908 *
4909 * Section: 4 Note: 3
4910 * Verification Tag:
4911 * Inputs
4912 * (endpoint, asoc)
4913 *
4914 * The RFC does not explcitly address this issue, but is the route through the
4915 * state table when someone issues an abort while in COOKIE_ECHOED state.
4916 *
4917 * Outputs
4918 * (timers)
4919 */
4920sctp_disposition_t sctp_sf_cookie_echoed_prm_abort(
4921 const struct sctp_endpoint *ep,
4922 const struct sctp_association *asoc,
4923 const sctp_subtype_t type,
4924 void *arg,
4925 sctp_cmd_seq_t *commands)
4926{
4927 /* There is a single T1 timer, so we should be able to use
4928 * common function with the COOKIE-WAIT state.
4929 */
4930 return sctp_sf_cookie_wait_prm_abort(ep, asoc, type, arg, commands);
4931}
4932
4933/*
4934 * sctp_sf_shutdown_pending_prm_abort
4935 *
4936 * Inputs
4937 * (endpoint, asoc)
4938 *
4939 * The RFC does not explicitly address this issue, but is the route through the
4940 * state table when someone issues an abort while in SHUTDOWN-PENDING state.
4941 *
4942 * Outputs
4943 * (timers)
4944 */
4945sctp_disposition_t sctp_sf_shutdown_pending_prm_abort(
4946 const struct sctp_endpoint *ep,
4947 const struct sctp_association *asoc,
4948 const sctp_subtype_t type,
4949 void *arg,
4950 sctp_cmd_seq_t *commands)
4951{
4952 /* Stop the T5-shutdown guard timer. */
4953 sctp_add_cmd_sf(commands, SCTP_CMD_TIMER_STOP,
4954 SCTP_TO(SCTP_EVENT_TIMEOUT_T5_SHUTDOWN_GUARD));
4955
4956 return sctp_sf_do_9_1_prm_abort(ep, asoc, type, arg, commands);
4957}
4958
4959/*
4960 * sctp_sf_shutdown_sent_prm_abort
4961 *
4962 * Inputs
4963 * (endpoint, asoc)
4964 *
4965 * The RFC does not explicitly address this issue, but is the route through the
4966 * state table when someone issues an abort while in SHUTDOWN-SENT state.
4967 *
4968 * Outputs
4969 * (timers)
4970 */
4971sctp_disposition_t sctp_sf_shutdown_sent_prm_abort(
4972 const struct sctp_endpoint *ep,
4973 const struct sctp_association *asoc,
4974 const sctp_subtype_t type,
4975 void *arg,
4976 sctp_cmd_seq_t *commands)
4977{
4978 /* Stop the T2-shutdown timer. */
4979 sctp_add_cmd_sf(commands, SCTP_CMD_TIMER_STOP,
4980 SCTP_TO(SCTP_EVENT_TIMEOUT_T2_SHUTDOWN));
4981
4982 /* Stop the T5-shutdown guard timer. */
4983 sctp_add_cmd_sf(commands, SCTP_CMD_TIMER_STOP,
4984 SCTP_TO(SCTP_EVENT_TIMEOUT_T5_SHUTDOWN_GUARD));
4985
4986 return sctp_sf_do_9_1_prm_abort(ep, asoc, type, arg, commands);
4987}
4988
4989/*
4990 * sctp_sf_cookie_echoed_prm_abort
4991 *
4992 * Inputs
4993 * (endpoint, asoc)
4994 *
4995 * The RFC does not explcitly address this issue, but is the route through the
4996 * state table when someone issues an abort while in COOKIE_ECHOED state.
4997 *
4998 * Outputs
4999 * (timers)
5000 */
5001sctp_disposition_t sctp_sf_shutdown_ack_sent_prm_abort(
5002 const struct sctp_endpoint *ep,
5003 const struct sctp_association *asoc,
5004 const sctp_subtype_t type,
5005 void *arg,
5006 sctp_cmd_seq_t *commands)
5007{
5008 /* The same T2 timer, so we should be able to use
5009 * common function with the SHUTDOWN-SENT state.
5010 */
5011 return sctp_sf_shutdown_sent_prm_abort(ep, asoc, type, arg, commands);
5012}
5013
5014/*
5015 * Process the REQUESTHEARTBEAT primitive
5016 *
5017 * 10.1 ULP-to-SCTP
5018 * J) Request Heartbeat
5019 *
5020 * Format: REQUESTHEARTBEAT(association id, destination transport address)
5021 *
5022 * -> result
5023 *
5024 * Instructs the local endpoint to perform a HeartBeat on the specified
5025 * destination transport address of the given association. The returned
5026 * result should indicate whether the transmission of the HEARTBEAT
5027 * chunk to the destination address is successful.
5028 *
5029 * Mandatory attributes:
5030 *
5031 * o association id - local handle to the SCTP association
5032 *
5033 * o destination transport address - the transport address of the
5034 * association on which a heartbeat should be issued.
5035 */
5036sctp_disposition_t sctp_sf_do_prm_requestheartbeat(
5037 const struct sctp_endpoint *ep,
5038 const struct sctp_association *asoc,
5039 const sctp_subtype_t type,
5040 void *arg,
5041 sctp_cmd_seq_t *commands)
5042{
Vlad Yasevichfb785252007-03-19 17:02:03 -07005043 if (SCTP_DISPOSITION_NOMEM == sctp_sf_heartbeat(ep, asoc, type,
5044 (struct sctp_transport *)arg, commands))
5045 return SCTP_DISPOSITION_NOMEM;
5046
5047 /*
5048 * RFC 2960 (bis), section 8.3
5049 *
5050 * D) Request an on-demand HEARTBEAT on a specific destination
5051 * transport address of a given association.
5052 *
5053 * The endpoint should increment the respective error counter of
5054 * the destination transport address each time a HEARTBEAT is sent
5055 * to that address and not acknowledged within one RTO.
5056 *
5057 */
Vlad Yasevich7e990132009-03-02 09:46:14 +00005058 sctp_add_cmd_sf(commands, SCTP_CMD_TRANSPORT_HB_SENT,
Vlad Yasevichfb785252007-03-19 17:02:03 -07005059 SCTP_TRANSPORT(arg));
5060 return SCTP_DISPOSITION_CONSUME;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005061}
5062
5063/*
5064 * ADDIP Section 4.1 ASCONF Chunk Procedures
5065 * When an endpoint has an ASCONF signaled change to be sent to the
5066 * remote endpoint it should do A1 to A9
5067 */
5068sctp_disposition_t sctp_sf_do_prm_asconf(const struct sctp_endpoint *ep,
5069 const struct sctp_association *asoc,
5070 const sctp_subtype_t type,
5071 void *arg,
5072 sctp_cmd_seq_t *commands)
5073{
5074 struct sctp_chunk *chunk = arg;
5075
5076 sctp_add_cmd_sf(commands, SCTP_CMD_SETUP_T4, SCTP_CHUNK(chunk));
5077 sctp_add_cmd_sf(commands, SCTP_CMD_TIMER_START,
5078 SCTP_TO(SCTP_EVENT_TIMEOUT_T4_RTO));
5079 sctp_add_cmd_sf(commands, SCTP_CMD_REPLY, SCTP_CHUNK(chunk));
5080 return SCTP_DISPOSITION_CONSUME;
5081}
5082
5083/*
5084 * Ignore the primitive event
5085 *
5086 * The return value is the disposition of the primitive.
5087 */
5088sctp_disposition_t sctp_sf_ignore_primitive(
5089 const struct sctp_endpoint *ep,
5090 const struct sctp_association *asoc,
5091 const sctp_subtype_t type,
5092 void *arg,
5093 sctp_cmd_seq_t *commands)
5094{
5095 SCTP_DEBUG_PRINTK("Primitive type %d is ignored.\n", type.primitive);
5096 return SCTP_DISPOSITION_DISCARD;
5097}
5098
5099/***************************************************************************
5100 * These are the state functions for the OTHER events.
5101 ***************************************************************************/
5102
5103/*
Wei Yongjune1cdd552011-04-17 17:29:03 +00005104 * When the SCTP stack has no more user data to send or retransmit, this
5105 * notification is given to the user. Also, at the time when a user app
5106 * subscribes to this event, if there is no data to be sent or
5107 * retransmit, the stack will immediately send up this notification.
5108 */
5109sctp_disposition_t sctp_sf_do_no_pending_tsn(
5110 const struct sctp_endpoint *ep,
5111 const struct sctp_association *asoc,
5112 const sctp_subtype_t type,
5113 void *arg,
5114 sctp_cmd_seq_t *commands)
5115{
5116 struct sctp_ulpevent *event;
5117
5118 event = sctp_ulpevent_make_sender_dry_event(asoc, GFP_ATOMIC);
5119 if (!event)
5120 return SCTP_DISPOSITION_NOMEM;
5121
5122 sctp_add_cmd_sf(commands, SCTP_CMD_EVENT_ULP, SCTP_ULPEVENT(event));
5123
5124 return SCTP_DISPOSITION_CONSUME;
5125}
5126
5127/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005128 * Start the shutdown negotiation.
5129 *
5130 * From Section 9.2:
5131 * Once all its outstanding data has been acknowledged, the endpoint
5132 * shall send a SHUTDOWN chunk to its peer including in the Cumulative
5133 * TSN Ack field the last sequential TSN it has received from the peer.
5134 * It shall then start the T2-shutdown timer and enter the SHUTDOWN-SENT
5135 * state. If the timer expires, the endpoint must re-send the SHUTDOWN
5136 * with the updated last sequential TSN received from its peer.
5137 *
5138 * The return value is the disposition.
5139 */
5140sctp_disposition_t sctp_sf_do_9_2_start_shutdown(
5141 const struct sctp_endpoint *ep,
5142 const struct sctp_association *asoc,
5143 const sctp_subtype_t type,
5144 void *arg,
5145 sctp_cmd_seq_t *commands)
5146{
5147 struct sctp_chunk *reply;
5148
5149 /* Once all its outstanding data has been acknowledged, the
5150 * endpoint shall send a SHUTDOWN chunk to its peer including
5151 * in the Cumulative TSN Ack field the last sequential TSN it
5152 * has received from the peer.
5153 */
5154 reply = sctp_make_shutdown(asoc, NULL);
5155 if (!reply)
5156 goto nomem;
5157
5158 /* Set the transport for the SHUTDOWN chunk and the timeout for the
5159 * T2-shutdown timer.
5160 */
5161 sctp_add_cmd_sf(commands, SCTP_CMD_SETUP_T2, SCTP_CHUNK(reply));
5162
5163 /* It shall then start the T2-shutdown timer */
5164 sctp_add_cmd_sf(commands, SCTP_CMD_TIMER_START,
5165 SCTP_TO(SCTP_EVENT_TIMEOUT_T2_SHUTDOWN));
5166
Wei Yongjun536428a2008-09-05 08:55:26 +08005167 /* RFC 4960 Section 9.2
5168 * The sender of the SHUTDOWN MAY also start an overall guard timer
5169 * 'T5-shutdown-guard' to bound the overall time for shutdown sequence.
5170 */
Thomas Graff8d96052011-07-07 00:28:35 +00005171 sctp_add_cmd_sf(commands, SCTP_CMD_TIMER_RESTART,
Wei Yongjun536428a2008-09-05 08:55:26 +08005172 SCTP_TO(SCTP_EVENT_TIMEOUT_T5_SHUTDOWN_GUARD));
5173
Linus Torvalds1da177e2005-04-16 15:20:36 -07005174 if (asoc->autoclose)
5175 sctp_add_cmd_sf(commands, SCTP_CMD_TIMER_STOP,
5176 SCTP_TO(SCTP_EVENT_TIMEOUT_AUTOCLOSE));
5177
5178 /* and enter the SHUTDOWN-SENT state. */
5179 sctp_add_cmd_sf(commands, SCTP_CMD_NEW_STATE,
5180 SCTP_STATE(SCTP_STATE_SHUTDOWN_SENT));
5181
5182 /* sctp-implguide 2.10 Issues with Heartbeating and failover
5183 *
5184 * HEARTBEAT ... is discontinued after sending either SHUTDOWN
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09005185 * or SHUTDOWN-ACK.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005186 */
5187 sctp_add_cmd_sf(commands, SCTP_CMD_HB_TIMERS_STOP, SCTP_NULL());
5188
5189 sctp_add_cmd_sf(commands, SCTP_CMD_REPLY, SCTP_CHUNK(reply));
5190
5191 return SCTP_DISPOSITION_CONSUME;
5192
5193nomem:
5194 return SCTP_DISPOSITION_NOMEM;
5195}
5196
5197/*
5198 * Generate a SHUTDOWN ACK now that everything is SACK'd.
5199 *
5200 * From Section 9.2:
5201 *
5202 * If it has no more outstanding DATA chunks, the SHUTDOWN receiver
5203 * shall send a SHUTDOWN ACK and start a T2-shutdown timer of its own,
5204 * entering the SHUTDOWN-ACK-SENT state. If the timer expires, the
5205 * endpoint must re-send the SHUTDOWN ACK.
5206 *
5207 * The return value is the disposition.
5208 */
5209sctp_disposition_t sctp_sf_do_9_2_shutdown_ack(
5210 const struct sctp_endpoint *ep,
5211 const struct sctp_association *asoc,
5212 const sctp_subtype_t type,
5213 void *arg,
5214 sctp_cmd_seq_t *commands)
5215{
5216 struct sctp_chunk *chunk = (struct sctp_chunk *) arg;
5217 struct sctp_chunk *reply;
5218
5219 /* There are 2 ways of getting here:
5220 * 1) called in response to a SHUTDOWN chunk
5221 * 2) called when SCTP_EVENT_NO_PENDING_TSN event is issued.
5222 *
5223 * For the case (2), the arg parameter is set to NULL. We need
5224 * to check that we have a chunk before accessing it's fields.
5225 */
5226 if (chunk) {
5227 if (!sctp_vtag_verify(chunk, asoc))
5228 return sctp_sf_pdiscard(ep, asoc, type, arg, commands);
5229
5230 /* Make sure that the SHUTDOWN chunk has a valid length. */
5231 if (!sctp_chunk_length_valid(chunk, sizeof(struct sctp_shutdown_chunk_t)))
5232 return sctp_sf_violation_chunklen(ep, asoc, type, arg,
5233 commands);
5234 }
5235
5236 /* If it has no more outstanding DATA chunks, the SHUTDOWN receiver
5237 * shall send a SHUTDOWN ACK ...
5238 */
5239 reply = sctp_make_shutdown_ack(asoc, chunk);
5240 if (!reply)
5241 goto nomem;
5242
5243 /* Set the transport for the SHUTDOWN ACK chunk and the timeout for
5244 * the T2-shutdown timer.
5245 */
5246 sctp_add_cmd_sf(commands, SCTP_CMD_SETUP_T2, SCTP_CHUNK(reply));
5247
5248 /* and start/restart a T2-shutdown timer of its own, */
5249 sctp_add_cmd_sf(commands, SCTP_CMD_TIMER_RESTART,
5250 SCTP_TO(SCTP_EVENT_TIMEOUT_T2_SHUTDOWN));
5251
5252 if (asoc->autoclose)
5253 sctp_add_cmd_sf(commands, SCTP_CMD_TIMER_STOP,
5254 SCTP_TO(SCTP_EVENT_TIMEOUT_AUTOCLOSE));
5255
5256 /* Enter the SHUTDOWN-ACK-SENT state. */
5257 sctp_add_cmd_sf(commands, SCTP_CMD_NEW_STATE,
5258 SCTP_STATE(SCTP_STATE_SHUTDOWN_ACK_SENT));
5259
5260 /* sctp-implguide 2.10 Issues with Heartbeating and failover
5261 *
5262 * HEARTBEAT ... is discontinued after sending either SHUTDOWN
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09005263 * or SHUTDOWN-ACK.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005264 */
5265 sctp_add_cmd_sf(commands, SCTP_CMD_HB_TIMERS_STOP, SCTP_NULL());
5266
5267 sctp_add_cmd_sf(commands, SCTP_CMD_REPLY, SCTP_CHUNK(reply));
5268
5269 return SCTP_DISPOSITION_CONSUME;
5270
5271nomem:
5272 return SCTP_DISPOSITION_NOMEM;
5273}
5274
5275/*
5276 * Ignore the event defined as other
5277 *
5278 * The return value is the disposition of the event.
5279 */
5280sctp_disposition_t sctp_sf_ignore_other(const struct sctp_endpoint *ep,
5281 const struct sctp_association *asoc,
5282 const sctp_subtype_t type,
5283 void *arg,
5284 sctp_cmd_seq_t *commands)
5285{
5286 SCTP_DEBUG_PRINTK("The event other type %d is ignored\n", type.other);
5287 return SCTP_DISPOSITION_DISCARD;
5288}
5289
5290/************************************************************
5291 * These are the state functions for handling timeout events.
5292 ************************************************************/
5293
5294/*
5295 * RTX Timeout
5296 *
5297 * Section: 6.3.3 Handle T3-rtx Expiration
5298 *
5299 * Whenever the retransmission timer T3-rtx expires for a destination
5300 * address, do the following:
5301 * [See below]
5302 *
5303 * The return value is the disposition of the chunk.
5304 */
5305sctp_disposition_t sctp_sf_do_6_3_3_rtx(const struct sctp_endpoint *ep,
5306 const struct sctp_association *asoc,
5307 const sctp_subtype_t type,
5308 void *arg,
5309 sctp_cmd_seq_t *commands)
5310{
5311 struct sctp_transport *transport = arg;
5312
Sridhar Samudralaac0b0462006-08-22 00:15:33 -07005313 SCTP_INC_STATS(SCTP_MIB_T3_RTX_EXPIREDS);
5314
Linus Torvalds1da177e2005-04-16 15:20:36 -07005315 if (asoc->overall_error_count >= asoc->max_retrans) {
Thomas Graff8d96052011-07-07 00:28:35 +00005316 if (asoc->state == SCTP_STATE_SHUTDOWN_PENDING) {
5317 /*
5318 * We are here likely because the receiver had its rwnd
5319 * closed for a while and we have not been able to
5320 * transmit the locally queued data within the maximum
5321 * retransmission attempts limit. Start the T5
5322 * shutdown guard timer to give the receiver one last
5323 * chance and some additional time to recover before
5324 * aborting.
5325 */
5326 sctp_add_cmd_sf(commands, SCTP_CMD_TIMER_START_ONCE,
5327 SCTP_TO(SCTP_EVENT_TIMEOUT_T5_SHUTDOWN_GUARD));
5328 } else {
5329 sctp_add_cmd_sf(commands, SCTP_CMD_SET_SK_ERR,
5330 SCTP_ERROR(ETIMEDOUT));
5331 /* CMD_ASSOC_FAILED calls CMD_DELETE_TCB. */
5332 sctp_add_cmd_sf(commands, SCTP_CMD_ASSOC_FAILED,
5333 SCTP_PERR(SCTP_ERROR_NO_ERROR));
5334 SCTP_INC_STATS(SCTP_MIB_ABORTEDS);
5335 SCTP_DEC_STATS(SCTP_MIB_CURRESTAB);
5336 return SCTP_DISPOSITION_DELETE_TCB;
5337 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005338 }
5339
5340 /* E1) For the destination address for which the timer
5341 * expires, adjust its ssthresh with rules defined in Section
5342 * 7.2.3 and set the cwnd <- MTU.
5343 */
5344
5345 /* E2) For the destination address for which the timer
5346 * expires, set RTO <- RTO * 2 ("back off the timer"). The
5347 * maximum value discussed in rule C7 above (RTO.max) may be
5348 * used to provide an upper bound to this doubling operation.
5349 */
5350
5351 /* E3) Determine how many of the earliest (i.e., lowest TSN)
5352 * outstanding DATA chunks for the address for which the
5353 * T3-rtx has expired will fit into a single packet, subject
5354 * to the MTU constraint for the path corresponding to the
5355 * destination transport address to which the retransmission
5356 * is being sent (this may be different from the address for
5357 * which the timer expires [see Section 6.4]). Call this
5358 * value K. Bundle and retransmit those K DATA chunks in a
5359 * single packet to the destination endpoint.
5360 *
5361 * Note: Any DATA chunks that were sent to the address for
5362 * which the T3-rtx timer expired but did not fit in one MTU
5363 * (rule E3 above), should be marked for retransmission and
5364 * sent as soon as cwnd allows (normally when a SACK arrives).
5365 */
5366
Linus Torvalds1da177e2005-04-16 15:20:36 -07005367 /* Do some failure management (Section 8.2). */
5368 sctp_add_cmd_sf(commands, SCTP_CMD_STRIKE, SCTP_TRANSPORT(transport));
5369
Vlad Yasevich1845a572007-02-21 02:06:19 -08005370 /* NB: Rules E4 and F1 are implicit in R1. */
5371 sctp_add_cmd_sf(commands, SCTP_CMD_RETRAN, SCTP_TRANSPORT(transport));
5372
Linus Torvalds1da177e2005-04-16 15:20:36 -07005373 return SCTP_DISPOSITION_CONSUME;
5374}
5375
5376/*
5377 * Generate delayed SACK on timeout
5378 *
5379 * Section: 6.2 Acknowledgement on Reception of DATA Chunks
5380 *
5381 * The guidelines on delayed acknowledgement algorithm specified in
5382 * Section 4.2 of [RFC2581] SHOULD be followed. Specifically, an
5383 * acknowledgement SHOULD be generated for at least every second packet
5384 * (not every second DATA chunk) received, and SHOULD be generated
5385 * within 200 ms of the arrival of any unacknowledged DATA chunk. In
5386 * some situations it may be beneficial for an SCTP transmitter to be
5387 * more conservative than the algorithms detailed in this document
5388 * allow. However, an SCTP transmitter MUST NOT be more aggressive than
5389 * the following algorithms allow.
5390 */
5391sctp_disposition_t sctp_sf_do_6_2_sack(const struct sctp_endpoint *ep,
5392 const struct sctp_association *asoc,
5393 const sctp_subtype_t type,
5394 void *arg,
5395 sctp_cmd_seq_t *commands)
5396{
Sridhar Samudralaac0b0462006-08-22 00:15:33 -07005397 SCTP_INC_STATS(SCTP_MIB_DELAY_SACK_EXPIREDS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005398 sctp_add_cmd_sf(commands, SCTP_CMD_GEN_SACK, SCTP_FORCE());
5399 return SCTP_DISPOSITION_CONSUME;
5400}
5401
5402/*
Frank Filz3f7a87d2005-06-20 13:14:57 -07005403 * sctp_sf_t1_init_timer_expire
Linus Torvalds1da177e2005-04-16 15:20:36 -07005404 *
5405 * Section: 4 Note: 2
5406 * Verification Tag:
5407 * Inputs
5408 * (endpoint, asoc)
5409 *
5410 * RFC 2960 Section 4 Notes
5411 * 2) If the T1-init timer expires, the endpoint MUST retransmit INIT
5412 * and re-start the T1-init timer without changing state. This MUST
5413 * be repeated up to 'Max.Init.Retransmits' times. After that, the
5414 * endpoint MUST abort the initialization process and report the
5415 * error to SCTP user.
5416 *
Frank Filz3f7a87d2005-06-20 13:14:57 -07005417 * Outputs
5418 * (timers, events)
5419 *
5420 */
5421sctp_disposition_t sctp_sf_t1_init_timer_expire(const struct sctp_endpoint *ep,
5422 const struct sctp_association *asoc,
5423 const sctp_subtype_t type,
5424 void *arg,
5425 sctp_cmd_seq_t *commands)
5426{
5427 struct sctp_chunk *repl = NULL;
5428 struct sctp_bind_addr *bp;
5429 int attempts = asoc->init_err_counter + 1;
5430
5431 SCTP_DEBUG_PRINTK("Timer T1 expired (INIT).\n");
Sridhar Samudralaac0b0462006-08-22 00:15:33 -07005432 SCTP_INC_STATS(SCTP_MIB_T1_INIT_EXPIREDS);
Frank Filz3f7a87d2005-06-20 13:14:57 -07005433
Vlad Yasevich81845c22006-01-30 15:59:54 -08005434 if (attempts <= asoc->max_init_attempts) {
Frank Filz3f7a87d2005-06-20 13:14:57 -07005435 bp = (struct sctp_bind_addr *) &asoc->base.bind_addr;
5436 repl = sctp_make_init(asoc, bp, GFP_ATOMIC, 0);
5437 if (!repl)
5438 return SCTP_DISPOSITION_NOMEM;
5439
5440 /* Choose transport for INIT. */
5441 sctp_add_cmd_sf(commands, SCTP_CMD_INIT_CHOOSE_TRANSPORT,
5442 SCTP_CHUNK(repl));
5443
5444 /* Issue a sideeffect to do the needed accounting. */
5445 sctp_add_cmd_sf(commands, SCTP_CMD_INIT_RESTART,
5446 SCTP_TO(SCTP_EVENT_TIMEOUT_T1_INIT));
5447
5448 sctp_add_cmd_sf(commands, SCTP_CMD_REPLY, SCTP_CHUNK(repl));
5449 } else {
5450 SCTP_DEBUG_PRINTK("Giving up on INIT, attempts: %d"
5451 " max_init_attempts: %d\n",
5452 attempts, asoc->max_init_attempts);
Sridhar Samudrala8de8c872006-05-19 10:58:12 -07005453 sctp_add_cmd_sf(commands, SCTP_CMD_SET_SK_ERR,
5454 SCTP_ERROR(ETIMEDOUT));
Frank Filz3f7a87d2005-06-20 13:14:57 -07005455 sctp_add_cmd_sf(commands, SCTP_CMD_INIT_FAILED,
Al Virodc251b22006-11-20 17:00:44 -08005456 SCTP_PERR(SCTP_ERROR_NO_ERROR));
Frank Filz3f7a87d2005-06-20 13:14:57 -07005457 return SCTP_DISPOSITION_DELETE_TCB;
5458 }
5459
5460 return SCTP_DISPOSITION_CONSUME;
5461}
5462
5463/*
5464 * sctp_sf_t1_cookie_timer_expire
5465 *
5466 * Section: 4 Note: 2
5467 * Verification Tag:
5468 * Inputs
5469 * (endpoint, asoc)
5470 *
5471 * RFC 2960 Section 4 Notes
5472 * 3) If the T1-cookie timer expires, the endpoint MUST retransmit
Linus Torvalds1da177e2005-04-16 15:20:36 -07005473 * COOKIE ECHO and re-start the T1-cookie timer without changing
5474 * state. This MUST be repeated up to 'Max.Init.Retransmits' times.
5475 * After that, the endpoint MUST abort the initialization process and
5476 * report the error to SCTP user.
5477 *
5478 * Outputs
5479 * (timers, events)
5480 *
5481 */
Frank Filz3f7a87d2005-06-20 13:14:57 -07005482sctp_disposition_t sctp_sf_t1_cookie_timer_expire(const struct sctp_endpoint *ep,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005483 const struct sctp_association *asoc,
5484 const sctp_subtype_t type,
5485 void *arg,
5486 sctp_cmd_seq_t *commands)
5487{
Frank Filz3f7a87d2005-06-20 13:14:57 -07005488 struct sctp_chunk *repl = NULL;
5489 int attempts = asoc->init_err_counter + 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005490
Frank Filz3f7a87d2005-06-20 13:14:57 -07005491 SCTP_DEBUG_PRINTK("Timer T1 expired (COOKIE-ECHO).\n");
Sridhar Samudralaac0b0462006-08-22 00:15:33 -07005492 SCTP_INC_STATS(SCTP_MIB_T1_COOKIE_EXPIREDS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005493
Vlad Yasevich81845c22006-01-30 15:59:54 -08005494 if (attempts <= asoc->max_init_attempts) {
Frank Filz3f7a87d2005-06-20 13:14:57 -07005495 repl = sctp_make_cookie_echo(asoc, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005496 if (!repl)
Frank Filz3f7a87d2005-06-20 13:14:57 -07005497 return SCTP_DISPOSITION_NOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005498
Vlad Yasevich96cd0d32008-09-08 14:00:26 -04005499 sctp_add_cmd_sf(commands, SCTP_CMD_INIT_CHOOSE_TRANSPORT,
5500 SCTP_CHUNK(repl));
Linus Torvalds1da177e2005-04-16 15:20:36 -07005501 /* Issue a sideeffect to do the needed accounting. */
Frank Filz3f7a87d2005-06-20 13:14:57 -07005502 sctp_add_cmd_sf(commands, SCTP_CMD_COOKIEECHO_RESTART,
5503 SCTP_TO(SCTP_EVENT_TIMEOUT_T1_COOKIE));
5504
Linus Torvalds1da177e2005-04-16 15:20:36 -07005505 sctp_add_cmd_sf(commands, SCTP_CMD_REPLY, SCTP_CHUNK(repl));
5506 } else {
Sridhar Samudrala8de8c872006-05-19 10:58:12 -07005507 sctp_add_cmd_sf(commands, SCTP_CMD_SET_SK_ERR,
5508 SCTP_ERROR(ETIMEDOUT));
Linus Torvalds1da177e2005-04-16 15:20:36 -07005509 sctp_add_cmd_sf(commands, SCTP_CMD_INIT_FAILED,
Al Virodc251b22006-11-20 17:00:44 -08005510 SCTP_PERR(SCTP_ERROR_NO_ERROR));
Linus Torvalds1da177e2005-04-16 15:20:36 -07005511 return SCTP_DISPOSITION_DELETE_TCB;
5512 }
5513
5514 return SCTP_DISPOSITION_CONSUME;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005515}
5516
5517/* RFC2960 9.2 If the timer expires, the endpoint must re-send the SHUTDOWN
5518 * with the updated last sequential TSN received from its peer.
5519 *
5520 * An endpoint should limit the number of retransmissions of the
5521 * SHUTDOWN chunk to the protocol parameter 'Association.Max.Retrans'.
5522 * If this threshold is exceeded the endpoint should destroy the TCB and
5523 * MUST report the peer endpoint unreachable to the upper layer (and
5524 * thus the association enters the CLOSED state). The reception of any
5525 * packet from its peer (i.e. as the peer sends all of its queued DATA
5526 * chunks) should clear the endpoint's retransmission count and restart
5527 * the T2-Shutdown timer, giving its peer ample opportunity to transmit
5528 * all of its queued DATA chunks that have not yet been sent.
5529 */
5530sctp_disposition_t sctp_sf_t2_timer_expire(const struct sctp_endpoint *ep,
5531 const struct sctp_association *asoc,
5532 const sctp_subtype_t type,
5533 void *arg,
5534 sctp_cmd_seq_t *commands)
5535{
5536 struct sctp_chunk *reply = NULL;
5537
5538 SCTP_DEBUG_PRINTK("Timer T2 expired.\n");
Sridhar Samudralaac0b0462006-08-22 00:15:33 -07005539 SCTP_INC_STATS(SCTP_MIB_T2_SHUTDOWN_EXPIREDS);
5540
Neil Horman58fbbed2008-02-29 11:40:56 -08005541 ((struct sctp_association *)asoc)->shutdown_retries++;
5542
Linus Torvalds1da177e2005-04-16 15:20:36 -07005543 if (asoc->overall_error_count >= asoc->max_retrans) {
Sridhar Samudrala8de8c872006-05-19 10:58:12 -07005544 sctp_add_cmd_sf(commands, SCTP_CMD_SET_SK_ERR,
5545 SCTP_ERROR(ETIMEDOUT));
Linus Torvalds1da177e2005-04-16 15:20:36 -07005546 /* Note: CMD_ASSOC_FAILED calls CMD_DELETE_TCB. */
5547 sctp_add_cmd_sf(commands, SCTP_CMD_ASSOC_FAILED,
Al Viro5be291f2006-11-20 17:01:06 -08005548 SCTP_PERR(SCTP_ERROR_NO_ERROR));
Linus Torvalds1da177e2005-04-16 15:20:36 -07005549 SCTP_INC_STATS(SCTP_MIB_ABORTEDS);
5550 SCTP_DEC_STATS(SCTP_MIB_CURRESTAB);
5551 return SCTP_DISPOSITION_DELETE_TCB;
5552 }
5553
5554 switch (asoc->state) {
5555 case SCTP_STATE_SHUTDOWN_SENT:
5556 reply = sctp_make_shutdown(asoc, NULL);
5557 break;
5558
5559 case SCTP_STATE_SHUTDOWN_ACK_SENT:
5560 reply = sctp_make_shutdown_ack(asoc, NULL);
5561 break;
5562
5563 default:
5564 BUG();
5565 break;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07005566 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005567
5568 if (!reply)
5569 goto nomem;
5570
Wei Yongjun6345b192009-04-26 23:13:35 +08005571 /* Do some failure management (Section 8.2).
5572 * If we remove the transport an SHUTDOWN was last sent to, don't
5573 * do failure management.
5574 */
5575 if (asoc->shutdown_last_sent_to)
5576 sctp_add_cmd_sf(commands, SCTP_CMD_STRIKE,
5577 SCTP_TRANSPORT(asoc->shutdown_last_sent_to));
Linus Torvalds1da177e2005-04-16 15:20:36 -07005578
5579 /* Set the transport for the SHUTDOWN/ACK chunk and the timeout for
5580 * the T2-shutdown timer.
5581 */
5582 sctp_add_cmd_sf(commands, SCTP_CMD_SETUP_T2, SCTP_CHUNK(reply));
5583
5584 /* Restart the T2-shutdown timer. */
5585 sctp_add_cmd_sf(commands, SCTP_CMD_TIMER_RESTART,
5586 SCTP_TO(SCTP_EVENT_TIMEOUT_T2_SHUTDOWN));
5587 sctp_add_cmd_sf(commands, SCTP_CMD_REPLY, SCTP_CHUNK(reply));
5588 return SCTP_DISPOSITION_CONSUME;
5589
5590nomem:
5591 return SCTP_DISPOSITION_NOMEM;
5592}
5593
5594/*
5595 * ADDIP Section 4.1 ASCONF CHunk Procedures
5596 * If the T4 RTO timer expires the endpoint should do B1 to B5
5597 */
5598sctp_disposition_t sctp_sf_t4_timer_expire(
5599 const struct sctp_endpoint *ep,
5600 const struct sctp_association *asoc,
5601 const sctp_subtype_t type,
5602 void *arg,
5603 sctp_cmd_seq_t *commands)
5604{
5605 struct sctp_chunk *chunk = asoc->addip_last_asconf;
5606 struct sctp_transport *transport = chunk->transport;
5607
Sridhar Samudralaac0b0462006-08-22 00:15:33 -07005608 SCTP_INC_STATS(SCTP_MIB_T4_RTO_EXPIREDS);
5609
Linus Torvalds1da177e2005-04-16 15:20:36 -07005610 /* ADDIP 4.1 B1) Increment the error counters and perform path failure
5611 * detection on the appropriate destination address as defined in
5612 * RFC2960 [5] section 8.1 and 8.2.
5613 */
Wei Yongjun10a43ce2009-04-26 23:14:42 +08005614 if (transport)
5615 sctp_add_cmd_sf(commands, SCTP_CMD_STRIKE,
5616 SCTP_TRANSPORT(transport));
Linus Torvalds1da177e2005-04-16 15:20:36 -07005617
5618 /* Reconfig T4 timer and transport. */
5619 sctp_add_cmd_sf(commands, SCTP_CMD_SETUP_T4, SCTP_CHUNK(chunk));
5620
5621 /* ADDIP 4.1 B2) Increment the association error counters and perform
5622 * endpoint failure detection on the association as defined in
5623 * RFC2960 [5] section 8.1 and 8.2.
5624 * association error counter is incremented in SCTP_CMD_STRIKE.
5625 */
5626 if (asoc->overall_error_count >= asoc->max_retrans) {
5627 sctp_add_cmd_sf(commands, SCTP_CMD_TIMER_STOP,
5628 SCTP_TO(SCTP_EVENT_TIMEOUT_T4_RTO));
Sridhar Samudrala8de8c872006-05-19 10:58:12 -07005629 sctp_add_cmd_sf(commands, SCTP_CMD_SET_SK_ERR,
5630 SCTP_ERROR(ETIMEDOUT));
Linus Torvalds1da177e2005-04-16 15:20:36 -07005631 sctp_add_cmd_sf(commands, SCTP_CMD_ASSOC_FAILED,
Al Viro5be291f2006-11-20 17:01:06 -08005632 SCTP_PERR(SCTP_ERROR_NO_ERROR));
Linus Torvalds1da177e2005-04-16 15:20:36 -07005633 SCTP_INC_STATS(SCTP_MIB_ABORTEDS);
Wei Yongjun3d5a0192008-10-09 14:32:24 -07005634 SCTP_DEC_STATS(SCTP_MIB_CURRESTAB);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005635 return SCTP_DISPOSITION_ABORT;
5636 }
5637
5638 /* ADDIP 4.1 B3) Back-off the destination address RTO value to which
5639 * the ASCONF chunk was sent by doubling the RTO timer value.
5640 * This is done in SCTP_CMD_STRIKE.
5641 */
5642
5643 /* ADDIP 4.1 B4) Re-transmit the ASCONF Chunk last sent and if possible
5644 * choose an alternate destination address (please refer to RFC2960
5645 * [5] section 6.4.1). An endpoint MUST NOT add new parameters to this
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09005646 * chunk, it MUST be the same (including its serial number) as the last
Linus Torvalds1da177e2005-04-16 15:20:36 -07005647 * ASCONF sent.
5648 */
5649 sctp_chunk_hold(asoc->addip_last_asconf);
5650 sctp_add_cmd_sf(commands, SCTP_CMD_REPLY,
5651 SCTP_CHUNK(asoc->addip_last_asconf));
5652
5653 /* ADDIP 4.1 B5) Restart the T-4 RTO timer. Note that if a different
5654 * destination is selected, then the RTO used will be that of the new
5655 * destination address.
5656 */
5657 sctp_add_cmd_sf(commands, SCTP_CMD_TIMER_RESTART,
5658 SCTP_TO(SCTP_EVENT_TIMEOUT_T4_RTO));
5659
5660 return SCTP_DISPOSITION_CONSUME;
5661}
5662
5663/* sctpimpguide-05 Section 2.12.2
5664 * The sender of the SHUTDOWN MAY also start an overall guard timer
5665 * 'T5-shutdown-guard' to bound the overall time for shutdown sequence.
5666 * At the expiration of this timer the sender SHOULD abort the association
5667 * by sending an ABORT chunk.
5668 */
5669sctp_disposition_t sctp_sf_t5_timer_expire(const struct sctp_endpoint *ep,
5670 const struct sctp_association *asoc,
5671 const sctp_subtype_t type,
5672 void *arg,
5673 sctp_cmd_seq_t *commands)
5674{
5675 struct sctp_chunk *reply = NULL;
5676
5677 SCTP_DEBUG_PRINTK("Timer T5 expired.\n");
Sridhar Samudralaac0b0462006-08-22 00:15:33 -07005678 SCTP_INC_STATS(SCTP_MIB_T5_SHUTDOWN_GUARD_EXPIREDS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005679
5680 reply = sctp_make_abort(asoc, NULL, 0);
5681 if (!reply)
5682 goto nomem;
5683
5684 sctp_add_cmd_sf(commands, SCTP_CMD_REPLY, SCTP_CHUNK(reply));
Sridhar Samudrala8de8c872006-05-19 10:58:12 -07005685 sctp_add_cmd_sf(commands, SCTP_CMD_SET_SK_ERR,
5686 SCTP_ERROR(ETIMEDOUT));
Linus Torvalds1da177e2005-04-16 15:20:36 -07005687 sctp_add_cmd_sf(commands, SCTP_CMD_ASSOC_FAILED,
Al Viro5be291f2006-11-20 17:01:06 -08005688 SCTP_PERR(SCTP_ERROR_NO_ERROR));
Linus Torvalds1da177e2005-04-16 15:20:36 -07005689
Vlad Yasevicha1080a82008-10-09 14:33:26 -07005690 SCTP_INC_STATS(SCTP_MIB_ABORTEDS);
5691 SCTP_DEC_STATS(SCTP_MIB_CURRESTAB);
5692
Linus Torvalds1da177e2005-04-16 15:20:36 -07005693 return SCTP_DISPOSITION_DELETE_TCB;
5694nomem:
5695 return SCTP_DISPOSITION_NOMEM;
5696}
5697
5698/* Handle expiration of AUTOCLOSE timer. When the autoclose timer expires,
5699 * the association is automatically closed by starting the shutdown process.
5700 * The work that needs to be done is same as when SHUTDOWN is initiated by
5701 * the user. So this routine looks same as sctp_sf_do_9_2_prm_shutdown().
5702 */
5703sctp_disposition_t sctp_sf_autoclose_timer_expire(
5704 const struct sctp_endpoint *ep,
5705 const struct sctp_association *asoc,
5706 const sctp_subtype_t type,
5707 void *arg,
5708 sctp_cmd_seq_t *commands)
5709{
5710 int disposition;
5711
Sridhar Samudralaac0b0462006-08-22 00:15:33 -07005712 SCTP_INC_STATS(SCTP_MIB_AUTOCLOSE_EXPIREDS);
5713
Linus Torvalds1da177e2005-04-16 15:20:36 -07005714 /* From 9.2 Shutdown of an Association
5715 * Upon receipt of the SHUTDOWN primitive from its upper
5716 * layer, the endpoint enters SHUTDOWN-PENDING state and
5717 * remains there until all outstanding data has been
5718 * acknowledged by its peer. The endpoint accepts no new data
5719 * from its upper layer, but retransmits data to the far end
5720 * if necessary to fill gaps.
5721 */
5722 sctp_add_cmd_sf(commands, SCTP_CMD_NEW_STATE,
5723 SCTP_STATE(SCTP_STATE_SHUTDOWN_PENDING));
5724
Linus Torvalds1da177e2005-04-16 15:20:36 -07005725 disposition = SCTP_DISPOSITION_CONSUME;
5726 if (sctp_outq_is_empty(&asoc->outqueue)) {
5727 disposition = sctp_sf_do_9_2_start_shutdown(ep, asoc, type,
5728 arg, commands);
5729 }
5730 return disposition;
5731}
5732
5733/*****************************************************************************
5734 * These are sa state functions which could apply to all types of events.
5735 ****************************************************************************/
5736
5737/*
5738 * This table entry is not implemented.
5739 *
5740 * Inputs
5741 * (endpoint, asoc, chunk)
5742 *
5743 * The return value is the disposition of the chunk.
5744 */
5745sctp_disposition_t sctp_sf_not_impl(const struct sctp_endpoint *ep,
5746 const struct sctp_association *asoc,
5747 const sctp_subtype_t type,
5748 void *arg,
5749 sctp_cmd_seq_t *commands)
5750{
5751 return SCTP_DISPOSITION_NOT_IMPL;
5752}
5753
5754/*
5755 * This table entry represents a bug.
5756 *
5757 * Inputs
5758 * (endpoint, asoc, chunk)
5759 *
5760 * The return value is the disposition of the chunk.
5761 */
5762sctp_disposition_t sctp_sf_bug(const struct sctp_endpoint *ep,
5763 const struct sctp_association *asoc,
5764 const sctp_subtype_t type,
5765 void *arg,
5766 sctp_cmd_seq_t *commands)
5767{
5768 return SCTP_DISPOSITION_BUG;
5769}
5770
5771/*
5772 * This table entry represents the firing of a timer in the wrong state.
5773 * Since timer deletion cannot be guaranteed a timer 'may' end up firing
5774 * when the association is in the wrong state. This event should
5775 * be ignored, so as to prevent any rearming of the timer.
5776 *
5777 * Inputs
5778 * (endpoint, asoc, chunk)
5779 *
5780 * The return value is the disposition of the chunk.
5781 */
5782sctp_disposition_t sctp_sf_timer_ignore(const struct sctp_endpoint *ep,
5783 const struct sctp_association *asoc,
5784 const sctp_subtype_t type,
5785 void *arg,
5786 sctp_cmd_seq_t *commands)
5787{
5788 SCTP_DEBUG_PRINTK("Timer %d ignored.\n", type.chunk);
5789 return SCTP_DISPOSITION_CONSUME;
5790}
5791
5792/********************************************************************
5793 * 2nd Level Abstractions
5794 ********************************************************************/
5795
5796/* Pull the SACK chunk based on the SACK header. */
5797static struct sctp_sackhdr *sctp_sm_pull_sack(struct sctp_chunk *chunk)
5798{
5799 struct sctp_sackhdr *sack;
5800 unsigned int len;
5801 __u16 num_blocks;
5802 __u16 num_dup_tsns;
5803
5804 /* Protect ourselves from reading too far into
5805 * the skb from a bogus sender.
5806 */
5807 sack = (struct sctp_sackhdr *) chunk->skb->data;
5808
5809 num_blocks = ntohs(sack->num_gap_ack_blocks);
5810 num_dup_tsns = ntohs(sack->num_dup_tsns);
5811 len = sizeof(struct sctp_sackhdr);
5812 len += (num_blocks + num_dup_tsns) * sizeof(__u32);
5813 if (len > chunk->skb->len)
5814 return NULL;
5815
5816 skb_pull(chunk->skb, len);
5817
5818 return sack;
5819}
5820
5821/* Create an ABORT packet to be sent as a response, with the specified
5822 * error causes.
5823 */
5824static struct sctp_packet *sctp_abort_pkt_new(const struct sctp_endpoint *ep,
5825 const struct sctp_association *asoc,
5826 struct sctp_chunk *chunk,
5827 const void *payload,
5828 size_t paylen)
5829{
5830 struct sctp_packet *packet;
5831 struct sctp_chunk *abort;
5832
5833 packet = sctp_ootb_pkt_new(asoc, chunk);
5834
5835 if (packet) {
5836 /* Make an ABORT.
5837 * The T bit will be set if the asoc is NULL.
5838 */
5839 abort = sctp_make_abort(asoc, chunk, paylen);
5840 if (!abort) {
5841 sctp_ootb_pkt_free(packet);
5842 return NULL;
5843 }
Jerome Forissier047a2422005-04-28 11:58:43 -07005844
5845 /* Reflect vtag if T-Bit is set */
5846 if (sctp_test_T_bit(abort))
5847 packet->vtag = ntohl(chunk->sctp_hdr->vtag);
5848
Linus Torvalds1da177e2005-04-16 15:20:36 -07005849 /* Add specified error causes, i.e., payload, to the
5850 * end of the chunk.
5851 */
5852 sctp_addto_chunk(abort, paylen, payload);
5853
5854 /* Set the skb to the belonging sock for accounting. */
5855 abort->skb->sk = ep->base.sk;
5856
5857 sctp_packet_append_chunk(packet, abort);
5858
5859 }
5860
5861 return packet;
5862}
5863
5864/* Allocate a packet for responding in the OOTB conditions. */
5865static struct sctp_packet *sctp_ootb_pkt_new(const struct sctp_association *asoc,
5866 const struct sctp_chunk *chunk)
5867{
5868 struct sctp_packet *packet;
5869 struct sctp_transport *transport;
5870 __u16 sport;
5871 __u16 dport;
5872 __u32 vtag;
5873
5874 /* Get the source and destination port from the inbound packet. */
5875 sport = ntohs(chunk->sctp_hdr->dest);
5876 dport = ntohs(chunk->sctp_hdr->source);
5877
5878 /* The V-tag is going to be the same as the inbound packet if no
5879 * association exists, otherwise, use the peer's vtag.
5880 */
5881 if (asoc) {
Wei Yongjun02c4e122007-08-31 10:03:58 +08005882 /* Special case the INIT-ACK as there is no peer's vtag
5883 * yet.
5884 */
5885 switch(chunk->chunk_hdr->type) {
5886 case SCTP_CID_INIT_ACK:
5887 {
5888 sctp_initack_chunk_t *initack;
5889
5890 initack = (sctp_initack_chunk_t *)chunk->chunk_hdr;
5891 vtag = ntohl(initack->init_hdr.init_tag);
5892 break;
5893 }
5894 default:
5895 vtag = asoc->peer.i.init_tag;
5896 break;
5897 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005898 } else {
5899 /* Special case the INIT and stale COOKIE_ECHO as there is no
5900 * vtag yet.
5901 */
5902 switch(chunk->chunk_hdr->type) {
5903 case SCTP_CID_INIT:
5904 {
5905 sctp_init_chunk_t *init;
5906
5907 init = (sctp_init_chunk_t *)chunk->chunk_hdr;
5908 vtag = ntohl(init->init_hdr.init_tag);
5909 break;
5910 }
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09005911 default:
Linus Torvalds1da177e2005-04-16 15:20:36 -07005912 vtag = ntohl(chunk->sctp_hdr->vtag);
5913 break;
5914 }
5915 }
5916
5917 /* Make a transport for the bucket, Eliza... */
Al Viro6a1e5f32006-11-20 17:12:25 -08005918 transport = sctp_transport_new(sctp_source(chunk), GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005919 if (!transport)
5920 goto nomem;
5921
5922 /* Cache a route for the transport with the chunk's destination as
5923 * the source address.
5924 */
Al Viro16b0a032006-11-20 17:13:38 -08005925 sctp_transport_route(transport, (union sctp_addr *)&chunk->dest,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005926 sctp_sk(sctp_get_ctl_sock()));
5927
5928 packet = sctp_packet_init(&transport->packet, transport, sport, dport);
5929 packet = sctp_packet_config(packet, vtag, 0);
5930
5931 return packet;
5932
5933nomem:
5934 return NULL;
5935}
5936
5937/* Free the packet allocated earlier for responding in the OOTB condition. */
5938void sctp_ootb_pkt_free(struct sctp_packet *packet)
5939{
5940 sctp_transport_free(packet->transport);
5941}
5942
5943/* Send a stale cookie error when a invalid COOKIE ECHO chunk is found */
5944static void sctp_send_stale_cookie_err(const struct sctp_endpoint *ep,
5945 const struct sctp_association *asoc,
5946 const struct sctp_chunk *chunk,
5947 sctp_cmd_seq_t *commands,
5948 struct sctp_chunk *err_chunk)
5949{
5950 struct sctp_packet *packet;
5951
5952 if (err_chunk) {
5953 packet = sctp_ootb_pkt_new(asoc, chunk);
5954 if (packet) {
5955 struct sctp_signed_cookie *cookie;
5956
5957 /* Override the OOTB vtag from the cookie. */
5958 cookie = chunk->subh.cookie_hdr;
5959 packet->vtag = cookie->c.peer_vtag;
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09005960
Linus Torvalds1da177e2005-04-16 15:20:36 -07005961 /* Set the skb to the belonging sock for accounting. */
5962 err_chunk->skb->sk = ep->base.sk;
5963 sctp_packet_append_chunk(packet, err_chunk);
5964 sctp_add_cmd_sf(commands, SCTP_CMD_SEND_PKT,
5965 SCTP_PACKET(packet));
5966 SCTP_INC_STATS(SCTP_MIB_OUTCTRLCHUNKS);
5967 } else
5968 sctp_chunk_free (err_chunk);
5969 }
5970}
5971
5972
5973/* Process a data chunk */
5974static int sctp_eat_data(const struct sctp_association *asoc,
5975 struct sctp_chunk *chunk,
5976 sctp_cmd_seq_t *commands)
5977{
5978 sctp_datahdr_t *data_hdr;
5979 struct sctp_chunk *err;
5980 size_t datalen;
5981 sctp_verb_t deliver;
5982 int tmp;
5983 __u32 tsn;
Neil Horman7c3ceb4f2006-05-05 17:02:09 -07005984 struct sctp_tsnmap *map = (struct sctp_tsnmap *)&asoc->peer.tsn_map;
Neil Horman049b3ff2005-11-11 16:08:24 -08005985 struct sock *sk = asoc->base.sk;
Vlad Yasevichf1751c52009-09-04 18:21:03 -04005986 u16 ssn;
5987 u16 sid;
5988 u8 ordered = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005989
5990 data_hdr = chunk->subh.data_hdr = (sctp_datahdr_t *)chunk->skb->data;
5991 skb_pull(chunk->skb, sizeof(sctp_datahdr_t));
5992
5993 tsn = ntohl(data_hdr->tsn);
5994 SCTP_DEBUG_PRINTK("eat_data: TSN 0x%x.\n", tsn);
5995
5996 /* ASSERT: Now skb->data is really the user data. */
5997
Linus Torvalds1da177e2005-04-16 15:20:36 -07005998 /* Process ECN based congestion.
5999 *
6000 * Since the chunk structure is reused for all chunks within
6001 * a packet, we use ecn_ce_done to track if we've already
6002 * done CE processing for this packet.
6003 *
6004 * We need to do ECN processing even if we plan to discard the
6005 * chunk later.
6006 */
6007
6008 if (!chunk->ecn_ce_done) {
6009 struct sctp_af *af;
6010 chunk->ecn_ce_done = 1;
6011
6012 af = sctp_get_af_specific(
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -07006013 ipver2af(ip_hdr(chunk->skb)->version));
Linus Torvalds1da177e2005-04-16 15:20:36 -07006014
6015 if (af && af->is_ce(chunk->skb) && asoc->peer.ecn_capable) {
6016 /* Do real work as sideffect. */
6017 sctp_add_cmd_sf(commands, SCTP_CMD_ECN_CE,
6018 SCTP_U32(tsn));
6019 }
6020 }
6021
6022 tmp = sctp_tsnmap_check(&asoc->peer.tsn_map, tsn);
6023 if (tmp < 0) {
6024 /* The TSN is too high--silently discard the chunk and
6025 * count on it getting retransmitted later.
6026 */
6027 return SCTP_IERROR_HIGH_TSN;
6028 } else if (tmp > 0) {
6029 /* This is a duplicate. Record it. */
6030 sctp_add_cmd_sf(commands, SCTP_CMD_REPORT_DUP, SCTP_U32(tsn));
6031 return SCTP_IERROR_DUP_TSN;
6032 }
6033
6034 /* This is a new TSN. */
6035
6036 /* Discard if there is no room in the receive window.
6037 * Actually, allow a little bit of overflow (up to a MTU).
6038 */
6039 datalen = ntohs(chunk->chunk_hdr->length);
6040 datalen -= sizeof(sctp_data_chunk_t);
6041
6042 deliver = SCTP_CMD_CHUNK_ULP;
6043
6044 /* Think about partial delivery. */
6045 if ((datalen >= asoc->rwnd) && (!asoc->ulpq.pd_mode)) {
6046
6047 /* Even if we don't accept this chunk there is
6048 * memory pressure.
6049 */
6050 sctp_add_cmd_sf(commands, SCTP_CMD_PART_DELIVER, SCTP_NULL());
6051 }
6052
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09006053 /* Spill over rwnd a little bit. Note: While allowed, this spill over
Linus Torvalds1da177e2005-04-16 15:20:36 -07006054 * seems a bit troublesome in that frag_point varies based on
6055 * PMTU. In cases, such as loopback, this might be a rather
6056 * large spill over.
6057 */
Neil Horman4d93df02007-08-15 16:07:44 -07006058 if ((!chunk->data_accepted) && (!asoc->rwnd || asoc->rwnd_over ||
6059 (datalen > asoc->rwnd + asoc->frag_point))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07006060
6061 /* If this is the next TSN, consider reneging to make
6062 * room. Note: Playing nice with a confused sender. A
6063 * malicious sender can still eat up all our buffer
6064 * space and in the future we may want to detect and
6065 * do more drastic reneging.
6066 */
Neil Horman7c3ceb4f2006-05-05 17:02:09 -07006067 if (sctp_tsnmap_has_gap(map) &&
6068 (sctp_tsnmap_get_ctsn(map) + 1) == tsn) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07006069 SCTP_DEBUG_PRINTK("Reneging for tsn:%u\n", tsn);
6070 deliver = SCTP_CMD_RENEGE;
6071 } else {
6072 SCTP_DEBUG_PRINTK("Discard tsn: %u len: %Zd, "
6073 "rwnd: %d\n", tsn, datalen,
6074 asoc->rwnd);
6075 return SCTP_IERROR_IGNORE_TSN;
6076 }
6077 }
6078
6079 /*
Neil Horman4d93df02007-08-15 16:07:44 -07006080 * Also try to renege to limit our memory usage in the event that
6081 * we are under memory pressure
Hideo Aoki3ab224b2007-12-31 00:11:19 -08006082 * If we can't renege, don't worry about it, the sk_rmem_schedule
Neil Horman4d93df02007-08-15 16:07:44 -07006083 * in sctp_ulpevent_make_rcvmsg will drop the frame if we grow our
6084 * memory usage too much
6085 */
6086 if (*sk->sk_prot_creator->memory_pressure) {
6087 if (sctp_tsnmap_has_gap(map) &&
6088 (sctp_tsnmap_get_ctsn(map) + 1) == tsn) {
6089 SCTP_DEBUG_PRINTK("Under Pressure! Reneging for tsn:%u\n", tsn);
6090 deliver = SCTP_CMD_RENEGE;
6091 }
6092 }
6093
6094 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006095 * Section 3.3.10.9 No User Data (9)
6096 *
6097 * Cause of error
6098 * ---------------
6099 * No User Data: This error cause is returned to the originator of a
6100 * DATA chunk if a received DATA chunk has no user data.
6101 */
6102 if (unlikely(0 == datalen)) {
6103 err = sctp_make_abort_no_data(asoc, chunk, tsn);
6104 if (err) {
6105 sctp_add_cmd_sf(commands, SCTP_CMD_REPLY,
6106 SCTP_CHUNK(err));
6107 }
6108 /* We are going to ABORT, so we might as well stop
6109 * processing the rest of the chunks in the packet.
6110 */
6111 sctp_add_cmd_sf(commands, SCTP_CMD_DISCARD_PACKET,SCTP_NULL());
Sridhar Samudrala8de8c872006-05-19 10:58:12 -07006112 sctp_add_cmd_sf(commands, SCTP_CMD_SET_SK_ERR,
6113 SCTP_ERROR(ECONNABORTED));
Linus Torvalds1da177e2005-04-16 15:20:36 -07006114 sctp_add_cmd_sf(commands, SCTP_CMD_ASSOC_FAILED,
Al Viro5be291f2006-11-20 17:01:06 -08006115 SCTP_PERR(SCTP_ERROR_NO_DATA));
Linus Torvalds1da177e2005-04-16 15:20:36 -07006116 SCTP_INC_STATS(SCTP_MIB_ABORTEDS);
6117 SCTP_DEC_STATS(SCTP_MIB_CURRESTAB);
6118 return SCTP_IERROR_NO_DATA;
6119 }
6120
Sridhar Samudrala9faa7302006-07-21 14:49:07 -07006121 chunk->data_accepted = 1;
6122
Linus Torvalds1da177e2005-04-16 15:20:36 -07006123 /* Note: Some chunks may get overcounted (if we drop) or overcounted
6124 * if we renege and the chunk arrives again.
6125 */
6126 if (chunk->chunk_hdr->flags & SCTP_DATA_UNORDERED)
6127 SCTP_INC_STATS(SCTP_MIB_INUNORDERCHUNKS);
Vlad Yasevichf1751c52009-09-04 18:21:03 -04006128 else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07006129 SCTP_INC_STATS(SCTP_MIB_INORDERCHUNKS);
Vlad Yasevichf1751c52009-09-04 18:21:03 -04006130 ordered = 1;
6131 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006132
6133 /* RFC 2960 6.5 Stream Identifier and Stream Sequence Number
6134 *
6135 * If an endpoint receive a DATA chunk with an invalid stream
6136 * identifier, it shall acknowledge the reception of the DATA chunk
6137 * following the normal procedure, immediately send an ERROR chunk
6138 * with cause set to "Invalid Stream Identifier" (See Section 3.3.10)
6139 * and discard the DATA chunk.
6140 */
Vlad Yasevichf1751c52009-09-04 18:21:03 -04006141 sid = ntohs(data_hdr->stream);
6142 if (sid >= asoc->c.sinit_max_instreams) {
Vlad Yasevich3888e9e2008-07-08 02:28:39 -07006143 /* Mark tsn as received even though we drop it */
6144 sctp_add_cmd_sf(commands, SCTP_CMD_REPORT_TSN, SCTP_U32(tsn));
6145
Linus Torvalds1da177e2005-04-16 15:20:36 -07006146 err = sctp_make_op_error(asoc, chunk, SCTP_ERROR_INV_STRM,
6147 &data_hdr->stream,
Vlad Yasevich6383cfb2009-11-23 15:53:56 -05006148 sizeof(data_hdr->stream),
6149 sizeof(u16));
Linus Torvalds1da177e2005-04-16 15:20:36 -07006150 if (err)
6151 sctp_add_cmd_sf(commands, SCTP_CMD_REPLY,
6152 SCTP_CHUNK(err));
6153 return SCTP_IERROR_BAD_STREAM;
6154 }
6155
Vlad Yasevichf1751c52009-09-04 18:21:03 -04006156 /* Check to see if the SSN is possible for this TSN.
6157 * The biggest gap we can record is 4K wide. Since SSNs wrap
6158 * at an unsigned short, there is no way that an SSN can
6159 * wrap and for a valid TSN. We can simply check if the current
6160 * SSN is smaller then the next expected one. If it is, it wrapped
6161 * and is invalid.
6162 */
6163 ssn = ntohs(data_hdr->ssn);
6164 if (ordered && SSN_lt(ssn, sctp_ssn_peek(&asoc->ssnmap->in, sid))) {
6165 return SCTP_IERROR_PROTO_VIOLATION;
6166 }
6167
Linus Torvalds1da177e2005-04-16 15:20:36 -07006168 /* Send the data up to the user. Note: Schedule the
6169 * SCTP_CMD_CHUNK_ULP cmd before the SCTP_CMD_GEN_SACK, as the SACK
6170 * chunk needs the updated rwnd.
6171 */
6172 sctp_add_cmd_sf(commands, deliver, SCTP_CHUNK(chunk));
6173
6174 return SCTP_IERROR_NO_ERROR;
6175}