blob: a907bab0963db4d9dda9cfc70c2e60e66599a81f [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
53#include <linux/types.h>
54#include <linux/kernel.h>
55#include <linux/ip.h>
56#include <linux/ipv6.h>
57#include <linux/net.h>
58#include <linux/inet.h>
59#include <net/sock.h>
60#include <net/inet_ecn.h>
61#include <linux/skbuff.h>
62#include <net/sctp/sctp.h>
63#include <net/sctp/sm.h>
64#include <net/sctp/structs.h>
65
66static struct sctp_packet *sctp_abort_pkt_new(const struct sctp_endpoint *ep,
67 const struct sctp_association *asoc,
68 struct sctp_chunk *chunk,
69 const void *payload,
70 size_t paylen);
71static int sctp_eat_data(const struct sctp_association *asoc,
72 struct sctp_chunk *chunk,
73 sctp_cmd_seq_t *commands);
74static struct sctp_packet *sctp_ootb_pkt_new(const struct sctp_association *asoc,
75 const struct sctp_chunk *chunk);
76static void sctp_send_stale_cookie_err(const struct sctp_endpoint *ep,
77 const struct sctp_association *asoc,
78 const struct sctp_chunk *chunk,
79 sctp_cmd_seq_t *commands,
80 struct sctp_chunk *err_chunk);
81static sctp_disposition_t sctp_sf_do_5_2_6_stale(const struct sctp_endpoint *ep,
82 const struct sctp_association *asoc,
83 const sctp_subtype_t type,
84 void *arg,
85 sctp_cmd_seq_t *commands);
86static sctp_disposition_t sctp_sf_shut_8_4_5(const struct sctp_endpoint *ep,
87 const struct sctp_association *asoc,
88 const sctp_subtype_t type,
89 void *arg,
90 sctp_cmd_seq_t *commands);
Vlad Yasevichece25df2007-09-07 16:30:54 -040091static sctp_disposition_t sctp_sf_tabort_8_4_8(const struct sctp_endpoint *ep,
92 const struct sctp_association *asoc,
93 const sctp_subtype_t type,
94 void *arg,
95 sctp_cmd_seq_t *commands);
Linus Torvalds1da177e2005-04-16 15:20:36 -070096static struct sctp_sackhdr *sctp_sm_pull_sack(struct sctp_chunk *chunk);
97
Adrian Bunk52c1da32005-06-23 22:05:33 -070098static sctp_disposition_t sctp_stop_t1_and_abort(sctp_cmd_seq_t *commands,
Al Virof94c0192006-11-20 17:00:25 -080099 __be16 error, int sk_err,
Adrian Bunk52c1da32005-06-23 22:05:33 -0700100 const struct sctp_association *asoc,
101 struct sctp_transport *transport);
102
Wei Yongjunaecedea2007-08-02 16:57:44 +0800103static sctp_disposition_t sctp_sf_abort_violation(
Vlad Yasevichece25df2007-09-07 16:30:54 -0400104 const struct sctp_endpoint *ep,
Wei Yongjunaecedea2007-08-02 16:57:44 +0800105 const struct sctp_association *asoc,
106 void *arg,
107 sctp_cmd_seq_t *commands,
108 const __u8 *payload,
109 const size_t paylen);
110
Adrian Bunk52c1da32005-06-23 22:05:33 -0700111static sctp_disposition_t sctp_sf_violation_chunklen(
112 const struct sctp_endpoint *ep,
113 const struct sctp_association *asoc,
114 const sctp_subtype_t type,
115 void *arg,
116 sctp_cmd_seq_t *commands);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117
Wei Yongjun6f4c6182007-09-19 17:19:52 +0800118static sctp_disposition_t sctp_sf_violation_paramlen(
119 const struct sctp_endpoint *ep,
120 const struct sctp_association *asoc,
121 const sctp_subtype_t type,
Wei Yongjunba016672008-09-30 05:32:24 -0700122 void *arg, void *ext,
Wei Yongjun6f4c6182007-09-19 17:19:52 +0800123 sctp_cmd_seq_t *commands);
124
Wei Yongjunaecedea2007-08-02 16:57:44 +0800125static sctp_disposition_t sctp_sf_violation_ctsn(
126 const struct sctp_endpoint *ep,
127 const struct sctp_association *asoc,
128 const sctp_subtype_t type,
129 void *arg,
130 sctp_cmd_seq_t *commands);
131
Vlad Yasevichece25df2007-09-07 16:30:54 -0400132static sctp_disposition_t sctp_sf_violation_chunk(
133 const struct sctp_endpoint *ep,
134 const struct sctp_association *asoc,
135 const sctp_subtype_t type,
136 void *arg,
137 sctp_cmd_seq_t *commands);
138
Vlad Yasevichbbd0d592007-10-03 17:51:34 -0700139static sctp_ierror_t sctp_sf_authenticate(const struct sctp_endpoint *ep,
140 const struct sctp_association *asoc,
141 const sctp_subtype_t type,
142 struct sctp_chunk *chunk);
143
Vlad Yasevich75205f42007-12-20 14:12:59 -0800144static sctp_disposition_t __sctp_sf_do_9_1_abort(const struct sctp_endpoint *ep,
145 const struct sctp_association *asoc,
146 const sctp_subtype_t type,
147 void *arg,
148 sctp_cmd_seq_t *commands);
149
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150/* Small helper function that checks if the chunk length
151 * is of the appropriate length. The 'required_length' argument
152 * is set to be the size of a specific chunk we are testing.
153 * Return Values: 1 = Valid length
154 * 0 = Invalid length
155 *
156 */
157static inline int
158sctp_chunk_length_valid(struct sctp_chunk *chunk,
159 __u16 required_length)
160{
161 __u16 chunk_length = ntohs(chunk->chunk_hdr->length);
162
163 if (unlikely(chunk_length < required_length))
164 return 0;
165
166 return 1;
167}
168
169/**********************************************************
170 * These are the state functions for handling chunk events.
171 **********************************************************/
172
173/*
174 * Process the final SHUTDOWN COMPLETE.
175 *
176 * Section: 4 (C) (diagram), 9.2
177 * Upon reception of the SHUTDOWN COMPLETE chunk the endpoint will verify
178 * that it is in SHUTDOWN-ACK-SENT state, if it is not the chunk should be
179 * discarded. If the endpoint is in the SHUTDOWN-ACK-SENT state the endpoint
180 * should stop the T2-shutdown timer and remove all knowledge of the
181 * association (and thus the association enters the CLOSED state).
182 *
Jerome Forissier047a2422005-04-28 11:58:43 -0700183 * Verification Tag: 8.5.1(C), sctpimpguide 2.41.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184 * C) Rules for packet carrying SHUTDOWN COMPLETE:
185 * ...
Jerome Forissier047a2422005-04-28 11:58:43 -0700186 * - The receiver of a SHUTDOWN COMPLETE shall accept the packet
187 * if the Verification Tag field of the packet matches its own tag and
188 * the T bit is not set
189 * OR
190 * it is set to its peer's tag and the T bit is set in the Chunk
191 * Flags.
192 * Otherwise, the receiver MUST silently discard the packet
193 * and take no further action. An endpoint MUST ignore the
194 * SHUTDOWN COMPLETE if it is not in the SHUTDOWN-ACK-SENT state.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195 *
196 * Inputs
197 * (endpoint, asoc, chunk)
198 *
199 * Outputs
200 * (asoc, reply_msg, msg_up, timers, counters)
201 *
202 * The return value is the disposition of the chunk.
203 */
204sctp_disposition_t sctp_sf_do_4_C(const struct sctp_endpoint *ep,
205 const struct sctp_association *asoc,
206 const sctp_subtype_t type,
207 void *arg,
208 sctp_cmd_seq_t *commands)
209{
210 struct sctp_chunk *chunk = arg;
211 struct sctp_ulpevent *ev;
212
Vlad Yasevichece25df2007-09-07 16:30:54 -0400213 if (!sctp_vtag_verify_either(chunk, asoc))
214 return sctp_sf_pdiscard(ep, asoc, type, arg, commands);
215
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216 /* RFC 2960 6.10 Bundling
217 *
218 * An endpoint MUST NOT bundle INIT, INIT ACK or
219 * SHUTDOWN COMPLETE with any other chunks.
220 */
221 if (!chunk->singleton)
Vlad Yasevichece25df2007-09-07 16:30:54 -0400222 return sctp_sf_violation_chunk(ep, asoc, type, arg, commands);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223
Vlad Yasevichece25df2007-09-07 16:30:54 -0400224 /* Make sure that the SHUTDOWN_COMPLETE chunk has a valid length. */
225 if (!sctp_chunk_length_valid(chunk, sizeof(sctp_chunkhdr_t)))
226 return sctp_sf_violation_chunklen(ep, asoc, type, arg,
227 commands);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228
229 /* RFC 2960 10.2 SCTP-to-ULP
230 *
231 * H) SHUTDOWN COMPLETE notification
232 *
233 * When SCTP completes the shutdown procedures (section 9.2) this
234 * notification is passed to the upper layer.
235 */
236 ev = sctp_ulpevent_make_assoc_change(asoc, 0, SCTP_SHUTDOWN_COMP,
Vlad Yasevicha5a35e72007-03-23 11:34:08 -0700237 0, 0, 0, NULL, GFP_ATOMIC);
Vladislav Yasevichdf7deeb2006-08-22 00:19:51 -0700238 if (ev)
239 sctp_add_cmd_sf(commands, SCTP_CMD_EVENT_ULP,
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +0900240 SCTP_ULPEVENT(ev));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241
242 /* Upon reception of the SHUTDOWN COMPLETE chunk the endpoint
243 * will verify that it is in SHUTDOWN-ACK-SENT state, if it is
244 * not the chunk should be discarded. If the endpoint is in
245 * the SHUTDOWN-ACK-SENT state the endpoint should stop the
246 * T2-shutdown timer and remove all knowledge of the
247 * association (and thus the association enters the CLOSED
248 * state).
249 */
250 sctp_add_cmd_sf(commands, SCTP_CMD_TIMER_STOP,
251 SCTP_TO(SCTP_EVENT_TIMEOUT_T2_SHUTDOWN));
252
253 sctp_add_cmd_sf(commands, SCTP_CMD_TIMER_STOP,
254 SCTP_TO(SCTP_EVENT_TIMEOUT_T5_SHUTDOWN_GUARD));
255
256 sctp_add_cmd_sf(commands, SCTP_CMD_NEW_STATE,
257 SCTP_STATE(SCTP_STATE_CLOSED));
258
259 SCTP_INC_STATS(SCTP_MIB_SHUTDOWNS);
260 SCTP_DEC_STATS(SCTP_MIB_CURRESTAB);
261
262 sctp_add_cmd_sf(commands, SCTP_CMD_DELETE_TCB, SCTP_NULL());
263
264 return SCTP_DISPOSITION_DELETE_TCB;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265}
266
267/*
268 * Respond to a normal INIT chunk.
269 * We are the side that is being asked for an association.
270 *
271 * Section: 5.1 Normal Establishment of an Association, B
272 * B) "Z" shall respond immediately with an INIT ACK chunk. The
273 * destination IP address of the INIT ACK MUST be set to the source
274 * IP address of the INIT to which this INIT ACK is responding. In
275 * the response, besides filling in other parameters, "Z" must set the
276 * Verification Tag field to Tag_A, and also provide its own
277 * Verification Tag (Tag_Z) in the Initiate Tag field.
278 *
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +0900279 * Verification Tag: Must be 0.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280 *
281 * Inputs
282 * (endpoint, asoc, chunk)
283 *
284 * Outputs
285 * (asoc, reply_msg, msg_up, timers, counters)
286 *
287 * The return value is the disposition of the chunk.
288 */
289sctp_disposition_t sctp_sf_do_5_1B_init(const struct sctp_endpoint *ep,
290 const struct sctp_association *asoc,
291 const sctp_subtype_t type,
292 void *arg,
293 sctp_cmd_seq_t *commands)
294{
295 struct sctp_chunk *chunk = arg;
296 struct sctp_chunk *repl;
297 struct sctp_association *new_asoc;
298 struct sctp_chunk *err_chunk;
299 struct sctp_packet *packet;
300 sctp_unrecognized_param_t *unk_param;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301 int len;
302
303 /* 6.10 Bundling
304 * An endpoint MUST NOT bundle INIT, INIT ACK or
305 * SHUTDOWN COMPLETE with any other chunks.
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +0900306 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307 * IG Section 2.11.2
308 * Furthermore, we require that the receiver of an INIT chunk MUST
309 * enforce these rules by silently discarding an arriving packet
310 * with an INIT chunk that is bundled with other chunks.
311 */
312 if (!chunk->singleton)
313 return sctp_sf_pdiscard(ep, asoc, type, arg, commands);
314
315 /* If the packet is an OOTB packet which is temporarily on the
316 * control endpoint, respond with an ABORT.
317 */
Wei Yongjun8190f892008-09-08 12:13:55 +0800318 if (ep == sctp_sk((sctp_get_ctl_sock()))->ep) {
319 SCTP_INC_STATS(SCTP_MIB_OUTOFBLUES);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320 return sctp_sf_tabort_8_4_8(ep, asoc, type, arg, commands);
Wei Yongjun8190f892008-09-08 12:13:55 +0800321 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323 /* 3.1 A packet containing an INIT chunk MUST have a zero Verification
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +0900324 * Tag.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325 */
326 if (chunk->sctp_hdr->vtag != 0)
327 return sctp_sf_tabort_8_4_8(ep, asoc, type, arg, commands);
328
329 /* Make sure that the INIT chunk has a valid length.
330 * Normally, this would cause an ABORT with a Protocol Violation
331 * error, but since we don't have an association, we'll
332 * just discard the packet.
333 */
334 if (!sctp_chunk_length_valid(chunk, sizeof(sctp_init_chunk_t)))
335 return sctp_sf_pdiscard(ep, asoc, type, arg, commands);
336
337 /* Verify the INIT chunk before processing it. */
338 err_chunk = NULL;
339 if (!sctp_verify_init(asoc, chunk->chunk_hdr->type,
340 (sctp_init_chunk_t *)chunk->chunk_hdr, chunk,
341 &err_chunk)) {
342 /* This chunk contains fatal error. It is to be discarded.
343 * Send an ABORT, with causes if there is any.
344 */
345 if (err_chunk) {
346 packet = sctp_abort_pkt_new(ep, asoc, arg,
347 (__u8 *)(err_chunk->chunk_hdr) +
348 sizeof(sctp_chunkhdr_t),
349 ntohs(err_chunk->chunk_hdr->length) -
350 sizeof(sctp_chunkhdr_t));
351
352 sctp_chunk_free(err_chunk);
353
354 if (packet) {
355 sctp_add_cmd_sf(commands, SCTP_CMD_SEND_PKT,
356 SCTP_PACKET(packet));
357 SCTP_INC_STATS(SCTP_MIB_OUTCTRLCHUNKS);
358 return SCTP_DISPOSITION_CONSUME;
359 } else {
360 return SCTP_DISPOSITION_NOMEM;
361 }
362 } else {
363 return sctp_sf_tabort_8_4_8(ep, asoc, type, arg,
364 commands);
365 }
366 }
367
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +0900368 /* Grab the INIT header. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369 chunk->subh.init_hdr = (sctp_inithdr_t *)chunk->skb->data;
370
371 /* Tag the variable length parameters. */
372 chunk->param_hdr.v = skb_pull(chunk->skb, sizeof(sctp_inithdr_t));
373
374 new_asoc = sctp_make_temp_asoc(ep, chunk, GFP_ATOMIC);
375 if (!new_asoc)
376 goto nomem;
377
378 /* The call, sctp_process_init(), can fail on memory allocation. */
379 if (!sctp_process_init(new_asoc, chunk->chunk_hdr->type,
380 sctp_source(chunk),
381 (sctp_init_chunk_t *)chunk->chunk_hdr,
382 GFP_ATOMIC))
383 goto nomem_init;
384
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385 /* B) "Z" shall respond immediately with an INIT ACK chunk. */
386
387 /* If there are errors need to be reported for unknown parameters,
388 * make sure to reserve enough room in the INIT ACK for them.
389 */
390 len = 0;
391 if (err_chunk)
392 len = ntohs(err_chunk->chunk_hdr->length) -
393 sizeof(sctp_chunkhdr_t);
394
395 if (sctp_assoc_set_bind_addr_from_ep(new_asoc, GFP_ATOMIC) < 0)
Vladislav Yasevichdf7deeb2006-08-22 00:19:51 -0700396 goto nomem_init;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397
398 repl = sctp_make_init_ack(new_asoc, chunk, GFP_ATOMIC, len);
399 if (!repl)
Vladislav Yasevichdf7deeb2006-08-22 00:19:51 -0700400 goto nomem_init;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401
402 /* If there are errors need to be reported for unknown parameters,
403 * include them in the outgoing INIT ACK as "Unrecognized parameter"
404 * parameter.
405 */
406 if (err_chunk) {
407 /* Get the "Unrecognized parameter" parameter(s) out of the
408 * ERROR chunk generated by sctp_verify_init(). Since the
409 * error cause code for "unknown parameter" and the
410 * "Unrecognized parameter" type is the same, we can
411 * construct the parameters in INIT ACK by copying the
412 * ERROR causes over.
413 */
414 unk_param = (sctp_unrecognized_param_t *)
415 ((__u8 *)(err_chunk->chunk_hdr) +
416 sizeof(sctp_chunkhdr_t));
417 /* Replace the cause code with the "Unrecognized parameter"
418 * parameter type.
419 */
420 sctp_addto_chunk(repl, len, unk_param);
421 sctp_chunk_free(err_chunk);
422 }
423
Vladislav Yasevichdf7deeb2006-08-22 00:19:51 -0700424 sctp_add_cmd_sf(commands, SCTP_CMD_NEW_ASOC, SCTP_ASOC(new_asoc));
425
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426 sctp_add_cmd_sf(commands, SCTP_CMD_REPLY, SCTP_CHUNK(repl));
427
428 /*
429 * Note: After sending out INIT ACK with the State Cookie parameter,
430 * "Z" MUST NOT allocate any resources, nor keep any states for the
431 * new association. Otherwise, "Z" will be vulnerable to resource
432 * attacks.
433 */
434 sctp_add_cmd_sf(commands, SCTP_CMD_DELETE_TCB, SCTP_NULL());
435
436 return SCTP_DISPOSITION_DELETE_TCB;
437
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438nomem_init:
439 sctp_association_free(new_asoc);
440nomem:
Vladislav Yasevichdf7deeb2006-08-22 00:19:51 -0700441 if (err_chunk)
442 sctp_chunk_free(err_chunk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443 return SCTP_DISPOSITION_NOMEM;
444}
445
446/*
447 * Respond to a normal INIT ACK chunk.
448 * We are the side that is initiating the association.
449 *
450 * Section: 5.1 Normal Establishment of an Association, C
451 * C) Upon reception of the INIT ACK from "Z", "A" shall stop the T1-init
452 * timer and leave COOKIE-WAIT state. "A" shall then send the State
453 * Cookie received in the INIT ACK chunk in a COOKIE ECHO chunk, start
454 * the T1-cookie timer, and enter the COOKIE-ECHOED state.
455 *
456 * Note: The COOKIE ECHO chunk can be bundled with any pending outbound
457 * DATA chunks, but it MUST be the first chunk in the packet and
458 * until the COOKIE ACK is returned the sender MUST NOT send any
459 * other packets to the peer.
460 *
461 * Verification Tag: 3.3.3
462 * If the value of the Initiate Tag in a received INIT ACK chunk is
463 * found to be 0, the receiver MUST treat it as an error and close the
464 * association by transmitting an ABORT.
465 *
466 * Inputs
467 * (endpoint, asoc, chunk)
468 *
469 * Outputs
470 * (asoc, reply_msg, msg_up, timers, counters)
471 *
472 * The return value is the disposition of the chunk.
473 */
474sctp_disposition_t sctp_sf_do_5_1C_ack(const struct sctp_endpoint *ep,
475 const struct sctp_association *asoc,
476 const sctp_subtype_t type,
477 void *arg,
478 sctp_cmd_seq_t *commands)
479{
480 struct sctp_chunk *chunk = arg;
481 sctp_init_chunk_t *initchunk;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482 struct sctp_chunk *err_chunk;
483 struct sctp_packet *packet;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484
485 if (!sctp_vtag_verify(chunk, asoc))
486 return sctp_sf_pdiscard(ep, asoc, type, arg, commands);
487
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488 /* 6.10 Bundling
489 * An endpoint MUST NOT bundle INIT, INIT ACK or
490 * SHUTDOWN COMPLETE with any other chunks.
491 */
492 if (!chunk->singleton)
Vlad Yasevichece25df2007-09-07 16:30:54 -0400493 return sctp_sf_violation_chunk(ep, asoc, type, arg, commands);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494
Vlad Yasevichece25df2007-09-07 16:30:54 -0400495 /* Make sure that the INIT-ACK chunk has a valid length */
496 if (!sctp_chunk_length_valid(chunk, sizeof(sctp_initack_chunk_t)))
497 return sctp_sf_violation_chunklen(ep, asoc, type, arg,
498 commands);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700499 /* Grab the INIT header. */
500 chunk->subh.init_hdr = (sctp_inithdr_t *) chunk->skb->data;
501
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502 /* Verify the INIT chunk before processing it. */
503 err_chunk = NULL;
504 if (!sctp_verify_init(asoc, chunk->chunk_hdr->type,
505 (sctp_init_chunk_t *)chunk->chunk_hdr, chunk,
506 &err_chunk)) {
507
Vlad Yasevich853f4b52008-01-20 06:10:46 -0800508 sctp_error_t error = SCTP_ERROR_NO_RESOURCE;
509
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510 /* This chunk contains fatal error. It is to be discarded.
Vlad Yasevichd6701192007-12-20 14:13:31 -0800511 * Send an ABORT, with causes. If there are no causes,
512 * then there wasn't enough memory. Just terminate
513 * the association.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514 */
515 if (err_chunk) {
516 packet = sctp_abort_pkt_new(ep, asoc, arg,
517 (__u8 *)(err_chunk->chunk_hdr) +
518 sizeof(sctp_chunkhdr_t),
519 ntohs(err_chunk->chunk_hdr->length) -
520 sizeof(sctp_chunkhdr_t));
521
522 sctp_chunk_free(err_chunk);
523
524 if (packet) {
525 sctp_add_cmd_sf(commands, SCTP_CMD_SEND_PKT,
526 SCTP_PACKET(packet));
527 SCTP_INC_STATS(SCTP_MIB_OUTCTRLCHUNKS);
Sridhar Samudrala8de8c872006-05-19 10:58:12 -0700528 error = SCTP_ERROR_INV_PARAM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700530 }
Vlad Yasevichbbd0d592007-10-03 17:51:34 -0700531
532 /* SCTP-AUTH, Section 6.3:
533 * It should be noted that if the receiver wants to tear
534 * down an association in an authenticated way only, the
535 * handling of malformed packets should not result in
536 * tearing down the association.
537 *
538 * This means that if we only want to abort associations
539 * in an authenticated way (i.e AUTH+ABORT), then we
Oliver Pinterac461a02008-02-03 17:52:41 +0200540 * can't destroy this association just becuase the packet
Vlad Yasevichbbd0d592007-10-03 17:51:34 -0700541 * was malformed.
542 */
543 if (sctp_auth_recv_cid(SCTP_CID_ABORT, asoc))
544 return sctp_sf_pdiscard(ep, asoc, type, arg, commands);
545
546 SCTP_INC_STATS(SCTP_MIB_ABORTEDS);
Sridhar Samudrala8de8c872006-05-19 10:58:12 -0700547 return sctp_stop_t1_and_abort(commands, error, ECONNREFUSED,
548 asoc, chunk->transport);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549 }
550
551 /* Tag the variable length parameters. Note that we never
552 * convert the parameters in an INIT chunk.
553 */
554 chunk->param_hdr.v = skb_pull(chunk->skb, sizeof(sctp_inithdr_t));
555
556 initchunk = (sctp_init_chunk_t *) chunk->chunk_hdr;
557
558 sctp_add_cmd_sf(commands, SCTP_CMD_PEER_INIT,
559 SCTP_PEER_INIT(initchunk));
560
Frank Filz3f7a87d2005-06-20 13:14:57 -0700561 /* Reset init error count upon receipt of INIT-ACK. */
562 sctp_add_cmd_sf(commands, SCTP_CMD_INIT_COUNTER_RESET, SCTP_NULL());
563
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564 /* 5.1 C) "A" shall stop the T1-init timer and leave
565 * COOKIE-WAIT state. "A" shall then ... start the T1-cookie
566 * timer, and enter the COOKIE-ECHOED state.
567 */
568 sctp_add_cmd_sf(commands, SCTP_CMD_TIMER_STOP,
569 SCTP_TO(SCTP_EVENT_TIMEOUT_T1_INIT));
570 sctp_add_cmd_sf(commands, SCTP_CMD_TIMER_START,
571 SCTP_TO(SCTP_EVENT_TIMEOUT_T1_COOKIE));
572 sctp_add_cmd_sf(commands, SCTP_CMD_NEW_STATE,
573 SCTP_STATE(SCTP_STATE_COOKIE_ECHOED));
574
Vlad Yasevich730fc3d2007-09-16 19:32:11 -0700575 /* SCTP-AUTH: genereate the assocition shared keys so that
576 * we can potentially signe the COOKIE-ECHO.
577 */
578 sctp_add_cmd_sf(commands, SCTP_CMD_ASSOC_SHKEY, SCTP_NULL());
579
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580 /* 5.1 C) "A" shall then send the State Cookie received in the
581 * INIT ACK chunk in a COOKIE ECHO chunk, ...
582 */
583 /* If there is any errors to report, send the ERROR chunk generated
584 * for unknown parameters as well.
585 */
586 sctp_add_cmd_sf(commands, SCTP_CMD_GEN_COOKIE_ECHO,
587 SCTP_CHUNK(err_chunk));
588
589 return SCTP_DISPOSITION_CONSUME;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700590}
591
592/*
593 * Respond to a normal COOKIE ECHO chunk.
594 * We are the side that is being asked for an association.
595 *
596 * Section: 5.1 Normal Establishment of an Association, D
597 * D) Upon reception of the COOKIE ECHO chunk, Endpoint "Z" will reply
598 * with a COOKIE ACK chunk after building a TCB and moving to
599 * the ESTABLISHED state. A COOKIE ACK chunk may be bundled with
600 * any pending DATA chunks (and/or SACK chunks), but the COOKIE ACK
601 * chunk MUST be the first chunk in the packet.
602 *
603 * IMPLEMENTATION NOTE: An implementation may choose to send the
604 * Communication Up notification to the SCTP user upon reception
605 * of a valid COOKIE ECHO chunk.
606 *
607 * Verification Tag: 8.5.1 Exceptions in Verification Tag Rules
608 * D) Rules for packet carrying a COOKIE ECHO
609 *
610 * - When sending a COOKIE ECHO, the endpoint MUST use the value of the
611 * Initial Tag received in the INIT ACK.
612 *
613 * - The receiver of a COOKIE ECHO follows the procedures in Section 5.
614 *
615 * Inputs
616 * (endpoint, asoc, chunk)
617 *
618 * Outputs
619 * (asoc, reply_msg, msg_up, timers, counters)
620 *
621 * The return value is the disposition of the chunk.
622 */
623sctp_disposition_t sctp_sf_do_5_1D_ce(const struct sctp_endpoint *ep,
624 const struct sctp_association *asoc,
625 const sctp_subtype_t type, void *arg,
626 sctp_cmd_seq_t *commands)
627{
628 struct sctp_chunk *chunk = arg;
629 struct sctp_association *new_asoc;
630 sctp_init_chunk_t *peer_init;
631 struct sctp_chunk *repl;
Vladislav Yasevichdf7deeb2006-08-22 00:19:51 -0700632 struct sctp_ulpevent *ev, *ai_ev = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633 int error = 0;
634 struct sctp_chunk *err_chk_p;
Vlad Yasevich609ee462007-08-31 03:10:59 +0900635 struct sock *sk;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700636
637 /* If the packet is an OOTB packet which is temporarily on the
638 * control endpoint, respond with an ABORT.
639 */
Wei Yongjun8190f892008-09-08 12:13:55 +0800640 if (ep == sctp_sk((sctp_get_ctl_sock()))->ep) {
641 SCTP_INC_STATS(SCTP_MIB_OUTOFBLUES);
Vlad Yasevichece25df2007-09-07 16:30:54 -0400642 return sctp_sf_tabort_8_4_8(ep, asoc, type, arg, commands);
Wei Yongjun8190f892008-09-08 12:13:55 +0800643 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700644
645 /* Make sure that the COOKIE_ECHO chunk has a valid length.
646 * In this case, we check that we have enough for at least a
647 * chunk header. More detailed verification is done
648 * in sctp_unpack_cookie().
649 */
650 if (!sctp_chunk_length_valid(chunk, sizeof(sctp_chunkhdr_t)))
651 return sctp_sf_pdiscard(ep, asoc, type, arg, commands);
652
Vlad Yasevich609ee462007-08-31 03:10:59 +0900653 /* If the endpoint is not listening or if the number of associations
654 * on the TCP-style socket exceed the max backlog, respond with an
655 * ABORT.
656 */
657 sk = ep->base.sk;
658 if (!sctp_sstate(sk, LISTENING) ||
659 (sctp_style(sk, TCP) && sk_acceptq_is_full(sk)))
660 return sctp_sf_tabort_8_4_8(ep, asoc, type, arg, commands);
661
Linus Torvalds1da177e2005-04-16 15:20:36 -0700662 /* "Decode" the chunk. We have no optional parameters so we
663 * are in good shape.
664 */
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +0900665 chunk->subh.cookie_hdr =
Linus Torvalds1da177e2005-04-16 15:20:36 -0700666 (struct sctp_signed_cookie *)chunk->skb->data;
Sridhar Samudrala62b08082006-05-05 17:04:43 -0700667 if (!pskb_pull(chunk->skb, ntohs(chunk->chunk_hdr->length) -
668 sizeof(sctp_chunkhdr_t)))
669 goto nomem;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700670
671 /* 5.1 D) Upon reception of the COOKIE ECHO chunk, Endpoint
672 * "Z" will reply with a COOKIE ACK chunk after building a TCB
673 * and moving to the ESTABLISHED state.
674 */
675 new_asoc = sctp_unpack_cookie(ep, asoc, chunk, GFP_ATOMIC, &error,
676 &err_chk_p);
677
678 /* FIXME:
679 * If the re-build failed, what is the proper error path
680 * from here?
681 *
682 * [We should abort the association. --piggy]
683 */
684 if (!new_asoc) {
685 /* FIXME: Several errors are possible. A bad cookie should
686 * be silently discarded, but think about logging it too.
687 */
688 switch (error) {
689 case -SCTP_IERROR_NOMEM:
690 goto nomem;
691
692 case -SCTP_IERROR_STALE_COOKIE:
693 sctp_send_stale_cookie_err(ep, asoc, chunk, commands,
694 err_chk_p);
695 return sctp_sf_pdiscard(ep, asoc, type, arg, commands);
696
697 case -SCTP_IERROR_BAD_SIG:
698 default:
699 return sctp_sf_pdiscard(ep, asoc, type, arg, commands);
Stephen Hemminger3ff50b72007-04-20 17:09:22 -0700700 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700701 }
702
Linus Torvalds1da177e2005-04-16 15:20:36 -0700703
Vladislav Yasevichdf7deeb2006-08-22 00:19:51 -0700704 /* Delay state machine commands until later.
705 *
706 * Re-build the bind address for the association is done in
Linus Torvalds1da177e2005-04-16 15:20:36 -0700707 * the sctp_unpack_cookie() already.
708 */
709 /* This is a brand-new association, so these are not yet side
710 * effects--it is safe to run them here.
711 */
712 peer_init = &chunk->subh.cookie_hdr->c.peer_init[0];
713
714 if (!sctp_process_init(new_asoc, chunk->chunk_hdr->type,
Al Viro6a1e5f32006-11-20 17:12:25 -0800715 &chunk->subh.cookie_hdr->c.peer_addr,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700716 peer_init, GFP_ATOMIC))
717 goto nomem_init;
718
Vlad Yasevich730fc3d2007-09-16 19:32:11 -0700719 /* SCTP-AUTH: Now that we've populate required fields in
720 * sctp_process_init, set up the assocaition shared keys as
721 * necessary so that we can potentially authenticate the ACK
722 */
723 error = sctp_auth_asoc_init_active_key(new_asoc, GFP_ATOMIC);
724 if (error)
725 goto nomem_init;
726
Vlad Yasevichbbd0d592007-10-03 17:51:34 -0700727 /* SCTP-AUTH: auth_chunk pointer is only set when the cookie-echo
728 * is supposed to be authenticated and we have to do delayed
729 * authentication. We've just recreated the association using
730 * the information in the cookie and now it's much easier to
731 * do the authentication.
732 */
733 if (chunk->auth_chunk) {
734 struct sctp_chunk auth;
735 sctp_ierror_t ret;
736
737 /* set-up our fake chunk so that we can process it */
738 auth.skb = chunk->auth_chunk;
739 auth.asoc = chunk->asoc;
740 auth.sctp_hdr = chunk->sctp_hdr;
741 auth.chunk_hdr = (sctp_chunkhdr_t *)skb_push(chunk->auth_chunk,
742 sizeof(sctp_chunkhdr_t));
743 skb_pull(chunk->auth_chunk, sizeof(sctp_chunkhdr_t));
744 auth.transport = chunk->transport;
745
746 ret = sctp_sf_authenticate(ep, new_asoc, type, &auth);
747
748 /* We can now safely free the auth_chunk clone */
749 kfree_skb(chunk->auth_chunk);
750
751 if (ret != SCTP_IERROR_NO_ERROR) {
752 sctp_association_free(new_asoc);
753 return sctp_sf_pdiscard(ep, asoc, type, arg, commands);
754 }
755 }
756
Linus Torvalds1da177e2005-04-16 15:20:36 -0700757 repl = sctp_make_cookie_ack(new_asoc, chunk);
758 if (!repl)
Vladislav Yasevichdf7deeb2006-08-22 00:19:51 -0700759 goto nomem_init;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700760
761 /* RFC 2960 5.1 Normal Establishment of an Association
762 *
763 * D) IMPLEMENTATION NOTE: An implementation may choose to
764 * send the Communication Up notification to the SCTP user
765 * upon reception of a valid COOKIE ECHO chunk.
766 */
767 ev = sctp_ulpevent_make_assoc_change(new_asoc, 0, SCTP_COMM_UP, 0,
768 new_asoc->c.sinit_num_ostreams,
769 new_asoc->c.sinit_max_instreams,
Vlad Yasevicha5a35e72007-03-23 11:34:08 -0700770 NULL, GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700771 if (!ev)
772 goto nomem_ev;
773
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +0900774 /* Sockets API Draft Section 5.3.1.6
Ivan Skytte Jorgensen0f3fffd2006-12-20 16:07:04 -0800775 * When a peer sends a Adaptation Layer Indication parameter , SCTP
Linus Torvalds1da177e2005-04-16 15:20:36 -0700776 * delivers this notification to inform the application that of the
Ivan Skytte Jorgensen0f3fffd2006-12-20 16:07:04 -0800777 * peers requested adaptation layer.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700778 */
Ivan Skytte Jorgensen0f3fffd2006-12-20 16:07:04 -0800779 if (new_asoc->peer.adaptation_ind) {
780 ai_ev = sctp_ulpevent_make_adaptation_indication(new_asoc,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700781 GFP_ATOMIC);
Vladislav Yasevichdf7deeb2006-08-22 00:19:51 -0700782 if (!ai_ev)
783 goto nomem_aiev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700784 }
785
Vladislav Yasevichdf7deeb2006-08-22 00:19:51 -0700786 /* Add all the state machine commands now since we've created
787 * everything. This way we don't introduce memory corruptions
788 * during side-effect processing and correclty count established
789 * associations.
790 */
791 sctp_add_cmd_sf(commands, SCTP_CMD_NEW_ASOC, SCTP_ASOC(new_asoc));
792 sctp_add_cmd_sf(commands, SCTP_CMD_NEW_STATE,
793 SCTP_STATE(SCTP_STATE_ESTABLISHED));
794 SCTP_INC_STATS(SCTP_MIB_CURRESTAB);
795 SCTP_INC_STATS(SCTP_MIB_PASSIVEESTABS);
796 sctp_add_cmd_sf(commands, SCTP_CMD_HB_TIMERS_START, SCTP_NULL());
797
798 if (new_asoc->autoclose)
799 sctp_add_cmd_sf(commands, SCTP_CMD_TIMER_START,
800 SCTP_TO(SCTP_EVENT_TIMEOUT_AUTOCLOSE));
801
Vladislav Yasevichdf7deeb2006-08-22 00:19:51 -0700802 /* This will send the COOKIE ACK */
803 sctp_add_cmd_sf(commands, SCTP_CMD_REPLY, SCTP_CHUNK(repl));
804
805 /* Queue the ASSOC_CHANGE event */
806 sctp_add_cmd_sf(commands, SCTP_CMD_EVENT_ULP, SCTP_ULPEVENT(ev));
807
808 /* Send up the Adaptation Layer Indication event */
809 if (ai_ev)
810 sctp_add_cmd_sf(commands, SCTP_CMD_EVENT_ULP,
811 SCTP_ULPEVENT(ai_ev));
812
Linus Torvalds1da177e2005-04-16 15:20:36 -0700813 return SCTP_DISPOSITION_CONSUME;
814
Vladislav Yasevichdf7deeb2006-08-22 00:19:51 -0700815nomem_aiev:
816 sctp_ulpevent_free(ev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700817nomem_ev:
818 sctp_chunk_free(repl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700819nomem_init:
820 sctp_association_free(new_asoc);
821nomem:
822 return SCTP_DISPOSITION_NOMEM;
823}
824
825/*
826 * Respond to a normal COOKIE ACK chunk.
827 * We are the side that is being asked for an association.
828 *
829 * RFC 2960 5.1 Normal Establishment of an Association
830 *
831 * E) Upon reception of the COOKIE ACK, endpoint "A" will move from the
832 * COOKIE-ECHOED state to the ESTABLISHED state, stopping the T1-cookie
833 * timer. It may also notify its ULP about the successful
834 * establishment of the association with a Communication Up
835 * notification (see Section 10).
836 *
837 * Verification Tag:
838 * Inputs
839 * (endpoint, asoc, chunk)
840 *
841 * Outputs
842 * (asoc, reply_msg, msg_up, timers, counters)
843 *
844 * The return value is the disposition of the chunk.
845 */
846sctp_disposition_t sctp_sf_do_5_1E_ca(const struct sctp_endpoint *ep,
847 const struct sctp_association *asoc,
848 const sctp_subtype_t type, void *arg,
849 sctp_cmd_seq_t *commands)
850{
851 struct sctp_chunk *chunk = arg;
852 struct sctp_ulpevent *ev;
853
854 if (!sctp_vtag_verify(chunk, asoc))
855 return sctp_sf_pdiscard(ep, asoc, type, arg, commands);
856
857 /* Verify that the chunk length for the COOKIE-ACK is OK.
858 * If we don't do this, any bundled chunks may be junked.
859 */
860 if (!sctp_chunk_length_valid(chunk, sizeof(sctp_chunkhdr_t)))
861 return sctp_sf_violation_chunklen(ep, asoc, type, arg,
862 commands);
863
864 /* Reset init error count upon receipt of COOKIE-ACK,
865 * to avoid problems with the managemement of this
866 * counter in stale cookie situations when a transition back
867 * from the COOKIE-ECHOED state to the COOKIE-WAIT
868 * state is performed.
869 */
Frank Filz3f7a87d2005-06-20 13:14:57 -0700870 sctp_add_cmd_sf(commands, SCTP_CMD_INIT_COUNTER_RESET, SCTP_NULL());
Linus Torvalds1da177e2005-04-16 15:20:36 -0700871
872 /* RFC 2960 5.1 Normal Establishment of an Association
873 *
874 * E) Upon reception of the COOKIE ACK, endpoint "A" will move
875 * from the COOKIE-ECHOED state to the ESTABLISHED state,
876 * stopping the T1-cookie timer.
877 */
878 sctp_add_cmd_sf(commands, SCTP_CMD_TIMER_STOP,
879 SCTP_TO(SCTP_EVENT_TIMEOUT_T1_COOKIE));
880 sctp_add_cmd_sf(commands, SCTP_CMD_NEW_STATE,
881 SCTP_STATE(SCTP_STATE_ESTABLISHED));
882 SCTP_INC_STATS(SCTP_MIB_CURRESTAB);
883 SCTP_INC_STATS(SCTP_MIB_ACTIVEESTABS);
884 sctp_add_cmd_sf(commands, SCTP_CMD_HB_TIMERS_START, SCTP_NULL());
885 if (asoc->autoclose)
886 sctp_add_cmd_sf(commands, SCTP_CMD_TIMER_START,
887 SCTP_TO(SCTP_EVENT_TIMEOUT_AUTOCLOSE));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700888
889 /* It may also notify its ULP about the successful
890 * establishment of the association with a Communication Up
891 * notification (see Section 10).
892 */
893 ev = sctp_ulpevent_make_assoc_change(asoc, 0, SCTP_COMM_UP,
894 0, asoc->c.sinit_num_ostreams,
895 asoc->c.sinit_max_instreams,
Vlad Yasevicha5a35e72007-03-23 11:34:08 -0700896 NULL, GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700897
898 if (!ev)
899 goto nomem;
900
901 sctp_add_cmd_sf(commands, SCTP_CMD_EVENT_ULP, SCTP_ULPEVENT(ev));
902
903 /* Sockets API Draft Section 5.3.1.6
Ivan Skytte Jorgensen0f3fffd2006-12-20 16:07:04 -0800904 * When a peer sends a Adaptation Layer Indication parameter , SCTP
Linus Torvalds1da177e2005-04-16 15:20:36 -0700905 * delivers this notification to inform the application that of the
Ivan Skytte Jorgensen0f3fffd2006-12-20 16:07:04 -0800906 * peers requested adaptation layer.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700907 */
Ivan Skytte Jorgensen0f3fffd2006-12-20 16:07:04 -0800908 if (asoc->peer.adaptation_ind) {
909 ev = sctp_ulpevent_make_adaptation_indication(asoc, GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700910 if (!ev)
911 goto nomem;
912
913 sctp_add_cmd_sf(commands, SCTP_CMD_EVENT_ULP,
914 SCTP_ULPEVENT(ev));
915 }
916
917 return SCTP_DISPOSITION_CONSUME;
918nomem:
919 return SCTP_DISPOSITION_NOMEM;
920}
921
922/* Generate and sendout a heartbeat packet. */
923static sctp_disposition_t sctp_sf_heartbeat(const struct sctp_endpoint *ep,
924 const struct sctp_association *asoc,
925 const sctp_subtype_t type,
926 void *arg,
927 sctp_cmd_seq_t *commands)
928{
929 struct sctp_transport *transport = (struct sctp_transport *) arg;
930 struct sctp_chunk *reply;
931 sctp_sender_hb_info_t hbinfo;
932 size_t paylen = 0;
933
934 hbinfo.param_hdr.type = SCTP_PARAM_HEARTBEAT_INFO;
935 hbinfo.param_hdr.length = htons(sizeof(sctp_sender_hb_info_t));
Al Viro63de08f2006-11-20 17:07:25 -0800936 hbinfo.daddr = transport->ipaddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700937 hbinfo.sent_at = jiffies;
Sridhar Samudralaad8fec12006-07-21 14:48:50 -0700938 hbinfo.hb_nonce = transport->hb_nonce;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700939
940 /* Send a heartbeat to our peer. */
941 paylen = sizeof(sctp_sender_hb_info_t);
942 reply = sctp_make_heartbeat(asoc, transport, &hbinfo, paylen);
943 if (!reply)
944 return SCTP_DISPOSITION_NOMEM;
945
946 /* Set rto_pending indicating that an RTT measurement
947 * is started with this heartbeat chunk.
948 */
949 sctp_add_cmd_sf(commands, SCTP_CMD_RTO_PENDING,
950 SCTP_TRANSPORT(transport));
951
952 sctp_add_cmd_sf(commands, SCTP_CMD_REPLY, SCTP_CHUNK(reply));
953 return SCTP_DISPOSITION_CONSUME;
954}
955
956/* Generate a HEARTBEAT packet on the given transport. */
957sctp_disposition_t sctp_sf_sendbeat_8_3(const struct sctp_endpoint *ep,
958 const struct sctp_association *asoc,
959 const sctp_subtype_t type,
960 void *arg,
961 sctp_cmd_seq_t *commands)
962{
963 struct sctp_transport *transport = (struct sctp_transport *) arg;
964
Vlad Yasevichfd102792007-11-15 12:13:32 -0500965 if (asoc->overall_error_count > asoc->max_retrans) {
Sridhar Samudrala8de8c872006-05-19 10:58:12 -0700966 sctp_add_cmd_sf(commands, SCTP_CMD_SET_SK_ERR,
967 SCTP_ERROR(ETIMEDOUT));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700968 /* CMD_ASSOC_FAILED calls CMD_DELETE_TCB. */
969 sctp_add_cmd_sf(commands, SCTP_CMD_ASSOC_FAILED,
Al Viro5be291f2006-11-20 17:01:06 -0800970 SCTP_PERR(SCTP_ERROR_NO_ERROR));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700971 SCTP_INC_STATS(SCTP_MIB_ABORTEDS);
972 SCTP_DEC_STATS(SCTP_MIB_CURRESTAB);
973 return SCTP_DISPOSITION_DELETE_TCB;
974 }
975
976 /* Section 3.3.5.
977 * The Sender-specific Heartbeat Info field should normally include
978 * information about the sender's current time when this HEARTBEAT
979 * chunk is sent and the destination transport address to which this
980 * HEARTBEAT is sent (see Section 8.3).
981 */
982
Frank Filz52ccb8e2005-12-22 11:36:46 -0800983 if (transport->param_flags & SPP_HB_ENABLE) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700984 if (SCTP_DISPOSITION_NOMEM ==
985 sctp_sf_heartbeat(ep, asoc, type, arg,
986 commands))
987 return SCTP_DISPOSITION_NOMEM;
988 /* Set transport error counter and association error counter
989 * when sending heartbeat.
990 */
Vlad Yasevich7e990132009-03-02 09:46:14 +0000991 sctp_add_cmd_sf(commands, SCTP_CMD_TRANSPORT_IDLE,
992 SCTP_TRANSPORT(transport));
993 sctp_add_cmd_sf(commands, SCTP_CMD_TRANSPORT_HB_SENT,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700994 SCTP_TRANSPORT(transport));
995 }
996 sctp_add_cmd_sf(commands, SCTP_CMD_HB_TIMER_UPDATE,
997 SCTP_TRANSPORT(transport));
998
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +0900999 return SCTP_DISPOSITION_CONSUME;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001000}
1001
1002/*
1003 * Process an heartbeat request.
1004 *
1005 * Section: 8.3 Path Heartbeat
1006 * The receiver of the HEARTBEAT should immediately respond with a
1007 * HEARTBEAT ACK that contains the Heartbeat Information field copied
1008 * from the received HEARTBEAT chunk.
1009 *
1010 * Verification Tag: 8.5 Verification Tag [Normal verification]
1011 * When receiving an SCTP packet, the endpoint MUST ensure that the
1012 * value in the Verification Tag field of the received SCTP packet
1013 * matches its own Tag. If the received Verification Tag value does not
1014 * match the receiver's own tag value, the receiver shall silently
1015 * discard the packet and shall not process it any further except for
1016 * those cases listed in Section 8.5.1 below.
1017 *
1018 * Inputs
1019 * (endpoint, asoc, chunk)
1020 *
1021 * Outputs
1022 * (asoc, reply_msg, msg_up, timers, counters)
1023 *
1024 * The return value is the disposition of the chunk.
1025 */
1026sctp_disposition_t sctp_sf_beat_8_3(const struct sctp_endpoint *ep,
1027 const struct sctp_association *asoc,
1028 const sctp_subtype_t type,
1029 void *arg,
1030 sctp_cmd_seq_t *commands)
1031{
1032 struct sctp_chunk *chunk = arg;
1033 struct sctp_chunk *reply;
1034 size_t paylen = 0;
1035
1036 if (!sctp_vtag_verify(chunk, asoc))
1037 return sctp_sf_pdiscard(ep, asoc, type, arg, commands);
1038
1039 /* Make sure that the HEARTBEAT chunk has a valid length. */
1040 if (!sctp_chunk_length_valid(chunk, sizeof(sctp_heartbeat_chunk_t)))
1041 return sctp_sf_violation_chunklen(ep, asoc, type, arg,
1042 commands);
1043
1044 /* 8.3 The receiver of the HEARTBEAT should immediately
1045 * respond with a HEARTBEAT ACK that contains the Heartbeat
1046 * Information field copied from the received HEARTBEAT chunk.
1047 */
1048 chunk->subh.hb_hdr = (sctp_heartbeathdr_t *) chunk->skb->data;
1049 paylen = ntohs(chunk->chunk_hdr->length) - sizeof(sctp_chunkhdr_t);
Sridhar Samudrala62b08082006-05-05 17:04:43 -07001050 if (!pskb_pull(chunk->skb, paylen))
1051 goto nomem;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001052
1053 reply = sctp_make_heartbeat_ack(asoc, chunk,
1054 chunk->subh.hb_hdr, paylen);
1055 if (!reply)
1056 goto nomem;
1057
1058 sctp_add_cmd_sf(commands, SCTP_CMD_REPLY, SCTP_CHUNK(reply));
1059 return SCTP_DISPOSITION_CONSUME;
1060
1061nomem:
1062 return SCTP_DISPOSITION_NOMEM;
1063}
1064
1065/*
1066 * Process the returning HEARTBEAT ACK.
1067 *
1068 * Section: 8.3 Path Heartbeat
1069 * Upon the receipt of the HEARTBEAT ACK, the sender of the HEARTBEAT
1070 * should clear the error counter of the destination transport
1071 * address to which the HEARTBEAT was sent, and mark the destination
1072 * transport address as active if it is not so marked. The endpoint may
1073 * optionally report to the upper layer when an inactive destination
1074 * address is marked as active due to the reception of the latest
1075 * HEARTBEAT ACK. The receiver of the HEARTBEAT ACK must also
1076 * clear the association overall error count as well (as defined
1077 * in section 8.1).
1078 *
1079 * The receiver of the HEARTBEAT ACK should also perform an RTT
1080 * measurement for that destination transport address using the time
1081 * value carried in the HEARTBEAT ACK chunk.
1082 *
1083 * Verification Tag: 8.5 Verification Tag [Normal verification]
1084 *
1085 * Inputs
1086 * (endpoint, asoc, chunk)
1087 *
1088 * Outputs
1089 * (asoc, reply_msg, msg_up, timers, counters)
1090 *
1091 * The return value is the disposition of the chunk.
1092 */
1093sctp_disposition_t sctp_sf_backbeat_8_3(const struct sctp_endpoint *ep,
1094 const struct sctp_association *asoc,
1095 const sctp_subtype_t type,
1096 void *arg,
1097 sctp_cmd_seq_t *commands)
1098{
1099 struct sctp_chunk *chunk = arg;
1100 union sctp_addr from_addr;
1101 struct sctp_transport *link;
1102 sctp_sender_hb_info_t *hbinfo;
1103 unsigned long max_interval;
1104
1105 if (!sctp_vtag_verify(chunk, asoc))
1106 return sctp_sf_pdiscard(ep, asoc, type, arg, commands);
1107
1108 /* Make sure that the HEARTBEAT-ACK chunk has a valid length. */
1109 if (!sctp_chunk_length_valid(chunk, sizeof(sctp_heartbeat_chunk_t)))
1110 return sctp_sf_violation_chunklen(ep, asoc, type, arg,
1111 commands);
1112
1113 hbinfo = (sctp_sender_hb_info_t *) chunk->skb->data;
Vladislav Yasevicha6012662006-05-19 14:25:53 -07001114 /* Make sure that the length of the parameter is what we expect */
1115 if (ntohs(hbinfo->param_hdr.length) !=
1116 sizeof(sctp_sender_hb_info_t)) {
1117 return SCTP_DISPOSITION_DISCARD;
1118 }
1119
Linus Torvalds1da177e2005-04-16 15:20:36 -07001120 from_addr = hbinfo->daddr;
Al Viro63de08f2006-11-20 17:07:25 -08001121 link = sctp_assoc_lookup_paddr(asoc, &from_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001122
1123 /* This should never happen, but lets log it if so. */
Frank Filz3f7a87d2005-06-20 13:14:57 -07001124 if (unlikely(!link)) {
1125 if (from_addr.sa.sa_family == AF_INET6) {
Wei Yongjund99fa422007-08-27 11:19:24 +08001126 if (net_ratelimit())
1127 printk(KERN_WARNING
Harvey Harrison5b095d9892008-10-29 12:52:50 -07001128 "%s association %p could not find address %pI6\n",
Harvey Harrison0dc47872008-03-05 20:47:47 -08001129 __func__,
Wei Yongjund99fa422007-08-27 11:19:24 +08001130 asoc,
Harvey Harrisonfdb46ee2008-10-28 16:10:17 -07001131 &from_addr.v6.sin6_addr);
Frank Filz3f7a87d2005-06-20 13:14:57 -07001132 } else {
Wei Yongjund99fa422007-08-27 11:19:24 +08001133 if (net_ratelimit())
1134 printk(KERN_WARNING
Harvey Harrison21454aa2008-10-31 00:54:56 -07001135 "%s association %p could not find address %pI4\n",
Harvey Harrison0dc47872008-03-05 20:47:47 -08001136 __func__,
Wei Yongjund99fa422007-08-27 11:19:24 +08001137 asoc,
Harvey Harrison21454aa2008-10-31 00:54:56 -07001138 &from_addr.v4.sin_addr.s_addr);
Frank Filz3f7a87d2005-06-20 13:14:57 -07001139 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001140 return SCTP_DISPOSITION_DISCARD;
1141 }
1142
Sridhar Samudralaad8fec12006-07-21 14:48:50 -07001143 /* Validate the 64-bit random nonce. */
1144 if (hbinfo->hb_nonce != link->hb_nonce)
1145 return SCTP_DISPOSITION_DISCARD;
1146
Frank Filz52ccb8e2005-12-22 11:36:46 -08001147 max_interval = link->hbinterval + link->rto;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001148
1149 /* Check if the timestamp looks valid. */
1150 if (time_after(hbinfo->sent_at, jiffies) ||
1151 time_after(jiffies, hbinfo->sent_at + max_interval)) {
Joe Perches9ee46f12007-11-19 23:47:47 -08001152 SCTP_DEBUG_PRINTK("%s: HEARTBEAT ACK with invalid timestamp "
Linus Torvalds1da177e2005-04-16 15:20:36 -07001153 "received for transport: %p\n",
Harvey Harrison0dc47872008-03-05 20:47:47 -08001154 __func__, link);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001155 return SCTP_DISPOSITION_DISCARD;
1156 }
1157
1158 /* 8.3 Upon the receipt of the HEARTBEAT ACK, the sender of
1159 * the HEARTBEAT should clear the error counter of the
1160 * destination transport address to which the HEARTBEAT was
1161 * sent and mark the destination transport address as active if
1162 * it is not so marked.
1163 */
1164 sctp_add_cmd_sf(commands, SCTP_CMD_TRANSPORT_ON, SCTP_TRANSPORT(link));
1165
1166 return SCTP_DISPOSITION_CONSUME;
1167}
1168
1169/* Helper function to send out an abort for the restart
1170 * condition.
1171 */
1172static int sctp_sf_send_restart_abort(union sctp_addr *ssa,
1173 struct sctp_chunk *init,
1174 sctp_cmd_seq_t *commands)
1175{
1176 int len;
1177 struct sctp_packet *pkt;
1178 union sctp_addr_param *addrparm;
1179 struct sctp_errhdr *errhdr;
1180 struct sctp_endpoint *ep;
1181 char buffer[sizeof(struct sctp_errhdr)+sizeof(union sctp_addr_param)];
1182 struct sctp_af *af = sctp_get_af_specific(ssa->v4.sin_family);
1183
1184 /* Build the error on the stack. We are way to malloc crazy
1185 * throughout the code today.
1186 */
1187 errhdr = (struct sctp_errhdr *)buffer;
1188 addrparm = (union sctp_addr_param *)errhdr->variable;
1189
1190 /* Copy into a parm format. */
1191 len = af->to_addr_param(ssa, addrparm);
1192 len += sizeof(sctp_errhdr_t);
1193
1194 errhdr->cause = SCTP_ERROR_RESTART;
1195 errhdr->length = htons(len);
1196
1197 /* Assign to the control socket. */
1198 ep = sctp_sk((sctp_get_ctl_sock()))->ep;
1199
1200 /* Association is NULL since this may be a restart attack and we
1201 * want to send back the attacker's vtag.
1202 */
1203 pkt = sctp_abort_pkt_new(ep, NULL, init, errhdr, len);
1204
1205 if (!pkt)
1206 goto out;
1207 sctp_add_cmd_sf(commands, SCTP_CMD_SEND_PKT, SCTP_PACKET(pkt));
1208
1209 SCTP_INC_STATS(SCTP_MIB_OUTCTRLCHUNKS);
1210
1211 /* Discard the rest of the inbound packet. */
1212 sctp_add_cmd_sf(commands, SCTP_CMD_DISCARD_PACKET, SCTP_NULL());
1213
1214out:
1215 /* Even if there is no memory, treat as a failure so
1216 * the packet will get dropped.
1217 */
1218 return 0;
1219}
1220
1221/* A restart is occurring, check to make sure no new addresses
1222 * are being added as we may be under a takeover attack.
1223 */
1224static int sctp_sf_check_restart_addrs(const struct sctp_association *new_asoc,
1225 const struct sctp_association *asoc,
1226 struct sctp_chunk *init,
1227 sctp_cmd_seq_t *commands)
1228{
1229 struct sctp_transport *new_addr, *addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001230 int found;
1231
1232 /* Implementor's Guide - Sectin 5.2.2
1233 * ...
1234 * Before responding the endpoint MUST check to see if the
1235 * unexpected INIT adds new addresses to the association. If new
1236 * addresses are added to the association, the endpoint MUST respond
1237 * with an ABORT..
1238 */
1239
1240 /* Search through all current addresses and make sure
1241 * we aren't adding any new ones.
1242 */
1243 new_addr = NULL;
1244 found = 0;
1245
Robert P. J. Day9dbc15f2008-04-12 18:54:24 -07001246 list_for_each_entry(new_addr, &new_asoc->peer.transport_addr_list,
1247 transports) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001248 found = 0;
Robert P. J. Day9dbc15f2008-04-12 18:54:24 -07001249 list_for_each_entry(addr, &asoc->peer.transport_addr_list,
1250 transports) {
Al Viro5f242a12006-11-20 17:05:23 -08001251 if (sctp_cmp_addr_exact(&new_addr->ipaddr,
1252 &addr->ipaddr)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001253 found = 1;
1254 break;
1255 }
1256 }
1257 if (!found)
1258 break;
1259 }
1260
1261 /* If a new address was added, ABORT the sender. */
1262 if (!found && new_addr) {
Al Viro7dd8a582006-11-20 17:23:25 -08001263 sctp_sf_send_restart_abort(&new_addr->ipaddr, init, commands);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001264 }
1265
1266 /* Return success if all addresses were found. */
1267 return found;
1268}
1269
1270/* Populate the verification/tie tags based on overlapping INIT
1271 * scenario.
1272 *
1273 * Note: Do not use in CLOSED or SHUTDOWN-ACK-SENT state.
1274 */
1275static void sctp_tietags_populate(struct sctp_association *new_asoc,
1276 const struct sctp_association *asoc)
1277{
1278 switch (asoc->state) {
1279
1280 /* 5.2.1 INIT received in COOKIE-WAIT or COOKIE-ECHOED State */
1281
1282 case SCTP_STATE_COOKIE_WAIT:
1283 new_asoc->c.my_vtag = asoc->c.my_vtag;
1284 new_asoc->c.my_ttag = asoc->c.my_vtag;
1285 new_asoc->c.peer_ttag = 0;
1286 break;
1287
1288 case SCTP_STATE_COOKIE_ECHOED:
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 = asoc->c.peer_vtag;
1292 break;
1293
1294 /* 5.2.2 Unexpected INIT in States Other than CLOSED, COOKIE-ECHOED,
1295 * COOKIE-WAIT and SHUTDOWN-ACK-SENT
1296 */
1297 default:
1298 new_asoc->c.my_ttag = asoc->c.my_vtag;
1299 new_asoc->c.peer_ttag = asoc->c.peer_vtag;
1300 break;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07001301 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001302
1303 /* Other parameters for the endpoint SHOULD be copied from the
1304 * existing parameters of the association (e.g. number of
1305 * outbound streams) into the INIT ACK and cookie.
1306 */
1307 new_asoc->rwnd = asoc->rwnd;
1308 new_asoc->c.sinit_num_ostreams = asoc->c.sinit_num_ostreams;
1309 new_asoc->c.sinit_max_instreams = asoc->c.sinit_max_instreams;
1310 new_asoc->c.initial_tsn = asoc->c.initial_tsn;
1311}
1312
1313/*
1314 * Compare vtag/tietag values to determine unexpected COOKIE-ECHO
1315 * handling action.
1316 *
1317 * RFC 2960 5.2.4 Handle a COOKIE ECHO when a TCB exists.
1318 *
1319 * Returns value representing action to be taken. These action values
1320 * correspond to Action/Description values in RFC 2960, Table 2.
1321 */
1322static char sctp_tietags_compare(struct sctp_association *new_asoc,
1323 const struct sctp_association *asoc)
1324{
1325 /* In this case, the peer may have restarted. */
1326 if ((asoc->c.my_vtag != new_asoc->c.my_vtag) &&
1327 (asoc->c.peer_vtag != new_asoc->c.peer_vtag) &&
1328 (asoc->c.my_vtag == new_asoc->c.my_ttag) &&
1329 (asoc->c.peer_vtag == new_asoc->c.peer_ttag))
1330 return 'A';
1331
1332 /* Collision case B. */
1333 if ((asoc->c.my_vtag == new_asoc->c.my_vtag) &&
1334 ((asoc->c.peer_vtag != new_asoc->c.peer_vtag) ||
1335 (0 == asoc->c.peer_vtag))) {
1336 return 'B';
1337 }
1338
1339 /* Collision case D. */
1340 if ((asoc->c.my_vtag == new_asoc->c.my_vtag) &&
1341 (asoc->c.peer_vtag == new_asoc->c.peer_vtag))
1342 return 'D';
1343
1344 /* Collision case C. */
1345 if ((asoc->c.my_vtag != new_asoc->c.my_vtag) &&
1346 (asoc->c.peer_vtag == new_asoc->c.peer_vtag) &&
1347 (0 == new_asoc->c.my_ttag) &&
1348 (0 == new_asoc->c.peer_ttag))
1349 return 'C';
1350
1351 /* No match to any of the special cases; discard this packet. */
1352 return 'E';
1353}
1354
1355/* Common helper routine for both duplicate and simulataneous INIT
1356 * chunk handling.
1357 */
1358static sctp_disposition_t sctp_sf_do_unexpected_init(
1359 const struct sctp_endpoint *ep,
1360 const struct sctp_association *asoc,
1361 const sctp_subtype_t type,
1362 void *arg, sctp_cmd_seq_t *commands)
1363{
1364 sctp_disposition_t retval;
1365 struct sctp_chunk *chunk = arg;
1366 struct sctp_chunk *repl;
1367 struct sctp_association *new_asoc;
1368 struct sctp_chunk *err_chunk;
1369 struct sctp_packet *packet;
1370 sctp_unrecognized_param_t *unk_param;
1371 int len;
1372
1373 /* 6.10 Bundling
1374 * An endpoint MUST NOT bundle INIT, INIT ACK or
1375 * SHUTDOWN COMPLETE with any other chunks.
1376 *
1377 * IG Section 2.11.2
1378 * Furthermore, we require that the receiver of an INIT chunk MUST
1379 * enforce these rules by silently discarding an arriving packet
1380 * with an INIT chunk that is bundled with other chunks.
1381 */
1382 if (!chunk->singleton)
1383 return sctp_sf_pdiscard(ep, asoc, type, arg, commands);
1384
1385 /* 3.1 A packet containing an INIT chunk MUST have a zero Verification
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09001386 * Tag.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001387 */
1388 if (chunk->sctp_hdr->vtag != 0)
1389 return sctp_sf_tabort_8_4_8(ep, asoc, type, arg, commands);
1390
1391 /* Make sure that the INIT chunk has a valid length.
1392 * In this case, we generate a protocol violation since we have
1393 * an association established.
1394 */
1395 if (!sctp_chunk_length_valid(chunk, sizeof(sctp_init_chunk_t)))
1396 return sctp_sf_violation_chunklen(ep, asoc, type, arg,
1397 commands);
1398 /* Grab the INIT header. */
1399 chunk->subh.init_hdr = (sctp_inithdr_t *) chunk->skb->data;
1400
1401 /* Tag the variable length parameters. */
1402 chunk->param_hdr.v = skb_pull(chunk->skb, sizeof(sctp_inithdr_t));
1403
1404 /* Verify the INIT chunk before processing it. */
1405 err_chunk = NULL;
1406 if (!sctp_verify_init(asoc, chunk->chunk_hdr->type,
1407 (sctp_init_chunk_t *)chunk->chunk_hdr, chunk,
1408 &err_chunk)) {
1409 /* This chunk contains fatal error. It is to be discarded.
1410 * Send an ABORT, with causes if there is any.
1411 */
1412 if (err_chunk) {
1413 packet = sctp_abort_pkt_new(ep, asoc, arg,
1414 (__u8 *)(err_chunk->chunk_hdr) +
1415 sizeof(sctp_chunkhdr_t),
1416 ntohs(err_chunk->chunk_hdr->length) -
1417 sizeof(sctp_chunkhdr_t));
1418
1419 if (packet) {
1420 sctp_add_cmd_sf(commands, SCTP_CMD_SEND_PKT,
1421 SCTP_PACKET(packet));
1422 SCTP_INC_STATS(SCTP_MIB_OUTCTRLCHUNKS);
1423 retval = SCTP_DISPOSITION_CONSUME;
1424 } else {
1425 retval = SCTP_DISPOSITION_NOMEM;
1426 }
1427 goto cleanup;
1428 } else {
1429 return sctp_sf_tabort_8_4_8(ep, asoc, type, arg,
1430 commands);
1431 }
1432 }
1433
1434 /*
1435 * Other parameters for the endpoint SHOULD be copied from the
1436 * existing parameters of the association (e.g. number of
1437 * outbound streams) into the INIT ACK and cookie.
1438 * FIXME: We are copying parameters from the endpoint not the
1439 * association.
1440 */
1441 new_asoc = sctp_make_temp_asoc(ep, chunk, GFP_ATOMIC);
1442 if (!new_asoc)
1443 goto nomem;
1444
1445 /* In the outbound INIT ACK the endpoint MUST copy its current
1446 * Verification Tag and Peers Verification tag into a reserved
1447 * place (local tie-tag and per tie-tag) within the state cookie.
1448 */
1449 if (!sctp_process_init(new_asoc, chunk->chunk_hdr->type,
1450 sctp_source(chunk),
1451 (sctp_init_chunk_t *)chunk->chunk_hdr,
Vladislav Yasevichdf7deeb2006-08-22 00:19:51 -07001452 GFP_ATOMIC))
1453 goto nomem;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001454
1455 /* Make sure no new addresses are being added during the
1456 * restart. Do not do this check for COOKIE-WAIT state,
1457 * since there are no peer addresses to check against.
1458 * Upon return an ABORT will have been sent if needed.
1459 */
1460 if (!sctp_state(asoc, COOKIE_WAIT)) {
1461 if (!sctp_sf_check_restart_addrs(new_asoc, asoc, chunk,
1462 commands)) {
1463 retval = SCTP_DISPOSITION_CONSUME;
Vladislav Yasevichdf7deeb2006-08-22 00:19:51 -07001464 goto nomem_retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001465 }
1466 }
1467
1468 sctp_tietags_populate(new_asoc, asoc);
1469
1470 /* B) "Z" shall respond immediately with an INIT ACK chunk. */
1471
1472 /* If there are errors need to be reported for unknown parameters,
1473 * make sure to reserve enough room in the INIT ACK for them.
1474 */
1475 len = 0;
1476 if (err_chunk) {
1477 len = ntohs(err_chunk->chunk_hdr->length) -
1478 sizeof(sctp_chunkhdr_t);
1479 }
1480
1481 if (sctp_assoc_set_bind_addr_from_ep(new_asoc, GFP_ATOMIC) < 0)
1482 goto nomem;
1483
1484 repl = sctp_make_init_ack(new_asoc, chunk, GFP_ATOMIC, len);
1485 if (!repl)
1486 goto nomem;
1487
1488 /* If there are errors need to be reported for unknown parameters,
1489 * include them in the outgoing INIT ACK as "Unrecognized parameter"
1490 * parameter.
1491 */
1492 if (err_chunk) {
1493 /* Get the "Unrecognized parameter" parameter(s) out of the
1494 * ERROR chunk generated by sctp_verify_init(). Since the
1495 * error cause code for "unknown parameter" and the
1496 * "Unrecognized parameter" type is the same, we can
1497 * construct the parameters in INIT ACK by copying the
1498 * ERROR causes over.
1499 */
1500 unk_param = (sctp_unrecognized_param_t *)
1501 ((__u8 *)(err_chunk->chunk_hdr) +
1502 sizeof(sctp_chunkhdr_t));
1503 /* Replace the cause code with the "Unrecognized parameter"
1504 * parameter type.
1505 */
1506 sctp_addto_chunk(repl, len, unk_param);
1507 }
1508
1509 sctp_add_cmd_sf(commands, SCTP_CMD_NEW_ASOC, SCTP_ASOC(new_asoc));
1510 sctp_add_cmd_sf(commands, SCTP_CMD_REPLY, SCTP_CHUNK(repl));
1511
1512 /*
1513 * Note: After sending out INIT ACK with the State Cookie parameter,
1514 * "Z" MUST NOT allocate any resources for this new association.
1515 * Otherwise, "Z" will be vulnerable to resource attacks.
1516 */
1517 sctp_add_cmd_sf(commands, SCTP_CMD_DELETE_TCB, SCTP_NULL());
1518 retval = SCTP_DISPOSITION_CONSUME;
1519
Vladislav Yasevichdf7deeb2006-08-22 00:19:51 -07001520 return retval;
1521
1522nomem:
1523 retval = SCTP_DISPOSITION_NOMEM;
1524nomem_retval:
1525 if (new_asoc)
1526 sctp_association_free(new_asoc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001527cleanup:
1528 if (err_chunk)
1529 sctp_chunk_free(err_chunk);
1530 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001531}
1532
1533/*
1534 * Handle simultanous INIT.
1535 * This means we started an INIT and then we got an INIT request from
1536 * our peer.
1537 *
1538 * Section: 5.2.1 INIT received in COOKIE-WAIT or COOKIE-ECHOED State (Item B)
1539 * This usually indicates an initialization collision, i.e., each
1540 * endpoint is attempting, at about the same time, to establish an
1541 * association with the other endpoint.
1542 *
1543 * Upon receipt of an INIT in the COOKIE-WAIT or COOKIE-ECHOED state, an
1544 * endpoint MUST respond with an INIT ACK using the same parameters it
1545 * sent in its original INIT chunk (including its Verification Tag,
1546 * unchanged). These original parameters are combined with those from the
1547 * newly received INIT chunk. The endpoint shall also generate a State
1548 * Cookie with the INIT ACK. The endpoint uses the parameters sent in its
1549 * INIT to calculate the State Cookie.
1550 *
1551 * After that, the endpoint MUST NOT change its state, the T1-init
1552 * timer shall be left running and the corresponding TCB MUST NOT be
1553 * destroyed. The normal procedures for handling State Cookies when
1554 * a TCB exists will resolve the duplicate INITs to a single association.
1555 *
1556 * For an endpoint that is in the COOKIE-ECHOED state it MUST populate
1557 * its Tie-Tags with the Tag information of itself and its peer (see
1558 * section 5.2.2 for a description of the Tie-Tags).
1559 *
1560 * Verification Tag: Not explicit, but an INIT can not have a valid
1561 * verification tag, so we skip the check.
1562 *
1563 * Inputs
1564 * (endpoint, asoc, chunk)
1565 *
1566 * Outputs
1567 * (asoc, reply_msg, msg_up, timers, counters)
1568 *
1569 * The return value is the disposition of the chunk.
1570 */
1571sctp_disposition_t sctp_sf_do_5_2_1_siminit(const struct sctp_endpoint *ep,
1572 const struct sctp_association *asoc,
1573 const sctp_subtype_t type,
1574 void *arg,
1575 sctp_cmd_seq_t *commands)
1576{
1577 /* Call helper to do the real work for both simulataneous and
1578 * duplicate INIT chunk handling.
1579 */
1580 return sctp_sf_do_unexpected_init(ep, asoc, type, arg, commands);
1581}
1582
1583/*
1584 * Handle duplicated INIT messages. These are usually delayed
1585 * restransmissions.
1586 *
1587 * Section: 5.2.2 Unexpected INIT in States Other than CLOSED,
1588 * COOKIE-ECHOED and COOKIE-WAIT
1589 *
1590 * Unless otherwise stated, upon reception of an unexpected INIT for
1591 * this association, the endpoint shall generate an INIT ACK with a
1592 * State Cookie. In the outbound INIT ACK the endpoint MUST copy its
1593 * current Verification Tag and peer's Verification Tag into a reserved
1594 * place within the state cookie. We shall refer to these locations as
1595 * the Peer's-Tie-Tag and the Local-Tie-Tag. The outbound SCTP packet
1596 * containing this INIT ACK MUST carry a Verification Tag value equal to
1597 * the Initiation Tag found in the unexpected INIT. And the INIT ACK
1598 * MUST contain a new Initiation Tag (randomly generated see Section
1599 * 5.3.1). Other parameters for the endpoint SHOULD be copied from the
1600 * existing parameters of the association (e.g. number of outbound
1601 * streams) into the INIT ACK and cookie.
1602 *
1603 * After sending out the INIT ACK, the endpoint shall take no further
1604 * actions, i.e., the existing association, including its current state,
1605 * and the corresponding TCB MUST NOT be changed.
1606 *
1607 * Note: Only when a TCB exists and the association is not in a COOKIE-
1608 * WAIT state are the Tie-Tags populated. For a normal association INIT
1609 * (i.e. the endpoint is in a COOKIE-WAIT state), the Tie-Tags MUST be
1610 * set to 0 (indicating that no previous TCB existed). The INIT ACK and
1611 * State Cookie are populated as specified in section 5.2.1.
1612 *
1613 * Verification Tag: Not specified, but an INIT has no way of knowing
1614 * what the verification tag could be, so we ignore it.
1615 *
1616 * Inputs
1617 * (endpoint, asoc, chunk)
1618 *
1619 * Outputs
1620 * (asoc, reply_msg, msg_up, timers, counters)
1621 *
1622 * The return value is the disposition of the chunk.
1623 */
1624sctp_disposition_t sctp_sf_do_5_2_2_dupinit(const struct sctp_endpoint *ep,
1625 const struct sctp_association *asoc,
1626 const sctp_subtype_t type,
1627 void *arg,
1628 sctp_cmd_seq_t *commands)
1629{
1630 /* Call helper to do the real work for both simulataneous and
1631 * duplicate INIT chunk handling.
1632 */
1633 return sctp_sf_do_unexpected_init(ep, asoc, type, arg, commands);
1634}
1635
1636
Vlad Yasevich610ab732007-01-15 19:18:30 -08001637/*
1638 * Unexpected INIT-ACK handler.
1639 *
1640 * Section 5.2.3
1641 * If an INIT ACK received by an endpoint in any state other than the
1642 * COOKIE-WAIT state, the endpoint should discard the INIT ACK chunk.
1643 * An unexpected INIT ACK usually indicates the processing of an old or
1644 * duplicated INIT chunk.
1645*/
1646sctp_disposition_t sctp_sf_do_5_2_3_initack(const struct sctp_endpoint *ep,
1647 const struct sctp_association *asoc,
1648 const sctp_subtype_t type,
1649 void *arg, sctp_cmd_seq_t *commands)
1650{
1651 /* Per the above section, we'll discard the chunk if we have an
1652 * endpoint. If this is an OOTB INIT-ACK, treat it as such.
1653 */
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09001654 if (ep == sctp_sk((sctp_get_ctl_sock()))->ep)
Vlad Yasevich610ab732007-01-15 19:18:30 -08001655 return sctp_sf_ootb(ep, asoc, type, arg, commands);
1656 else
1657 return sctp_sf_discard_chunk(ep, asoc, type, arg, commands);
1658}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001659
1660/* Unexpected COOKIE-ECHO handler for peer restart (Table 2, action 'A')
1661 *
1662 * Section 5.2.4
1663 * A) In this case, the peer may have restarted.
1664 */
1665static sctp_disposition_t sctp_sf_do_dupcook_a(const struct sctp_endpoint *ep,
1666 const struct sctp_association *asoc,
1667 struct sctp_chunk *chunk,
1668 sctp_cmd_seq_t *commands,
1669 struct sctp_association *new_asoc)
1670{
1671 sctp_init_chunk_t *peer_init;
1672 struct sctp_ulpevent *ev;
1673 struct sctp_chunk *repl;
1674 struct sctp_chunk *err;
1675 sctp_disposition_t disposition;
1676
1677 /* new_asoc is a brand-new association, so these are not yet
1678 * side effects--it is safe to run them here.
1679 */
1680 peer_init = &chunk->subh.cookie_hdr->c.peer_init[0];
1681
1682 if (!sctp_process_init(new_asoc, chunk->chunk_hdr->type,
1683 sctp_source(chunk), peer_init,
1684 GFP_ATOMIC))
1685 goto nomem;
1686
1687 /* Make sure no new addresses are being added during the
1688 * restart. Though this is a pretty complicated attack
1689 * since you'd have to get inside the cookie.
1690 */
1691 if (!sctp_sf_check_restart_addrs(new_asoc, asoc, chunk, commands)) {
1692 return SCTP_DISPOSITION_CONSUME;
1693 }
1694
1695 /* If the endpoint is in the SHUTDOWN-ACK-SENT state and recognizes
1696 * the peer has restarted (Action A), it MUST NOT setup a new
1697 * association but instead resend the SHUTDOWN ACK and send an ERROR
1698 * chunk with a "Cookie Received while Shutting Down" error cause to
1699 * its peer.
1700 */
1701 if (sctp_state(asoc, SHUTDOWN_ACK_SENT)) {
1702 disposition = sctp_sf_do_9_2_reshutack(ep, asoc,
1703 SCTP_ST_CHUNK(chunk->chunk_hdr->type),
1704 chunk, commands);
1705 if (SCTP_DISPOSITION_NOMEM == disposition)
1706 goto nomem;
1707
1708 err = sctp_make_op_error(asoc, chunk,
1709 SCTP_ERROR_COOKIE_IN_SHUTDOWN,
1710 NULL, 0);
1711 if (err)
1712 sctp_add_cmd_sf(commands, SCTP_CMD_REPLY,
1713 SCTP_CHUNK(err));
1714
1715 return SCTP_DISPOSITION_CONSUME;
1716 }
1717
1718 /* For now, fail any unsent/unacked data. Consider the optional
1719 * choice of resending of this data.
1720 */
1721 sctp_add_cmd_sf(commands, SCTP_CMD_PURGE_OUTQUEUE, SCTP_NULL());
1722
Linus Torvalds1da177e2005-04-16 15:20:36 -07001723 repl = sctp_make_cookie_ack(new_asoc, chunk);
1724 if (!repl)
1725 goto nomem;
1726
Linus Torvalds1da177e2005-04-16 15:20:36 -07001727 /* Report association restart to upper layer. */
1728 ev = sctp_ulpevent_make_assoc_change(asoc, 0, SCTP_RESTART, 0,
1729 new_asoc->c.sinit_num_ostreams,
1730 new_asoc->c.sinit_max_instreams,
Vlad Yasevicha5a35e72007-03-23 11:34:08 -07001731 NULL, GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001732 if (!ev)
1733 goto nomem_ev;
1734
Vladislav Yasevichdf7deeb2006-08-22 00:19:51 -07001735 /* Update the content of current association. */
1736 sctp_add_cmd_sf(commands, SCTP_CMD_UPDATE_ASSOC, SCTP_ASOC(new_asoc));
1737 sctp_add_cmd_sf(commands, SCTP_CMD_REPLY, SCTP_CHUNK(repl));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001738 sctp_add_cmd_sf(commands, SCTP_CMD_EVENT_ULP, SCTP_ULPEVENT(ev));
1739 return SCTP_DISPOSITION_CONSUME;
1740
1741nomem_ev:
1742 sctp_chunk_free(repl);
1743nomem:
1744 return SCTP_DISPOSITION_NOMEM;
1745}
1746
1747/* Unexpected COOKIE-ECHO handler for setup collision (Table 2, action 'B')
1748 *
1749 * Section 5.2.4
1750 * B) In this case, both sides may be attempting to start an association
1751 * at about the same time but the peer endpoint started its INIT
1752 * after responding to the local endpoint's INIT
1753 */
1754/* This case represents an initialization collision. */
1755static sctp_disposition_t sctp_sf_do_dupcook_b(const struct sctp_endpoint *ep,
1756 const struct sctp_association *asoc,
1757 struct sctp_chunk *chunk,
1758 sctp_cmd_seq_t *commands,
1759 struct sctp_association *new_asoc)
1760{
1761 sctp_init_chunk_t *peer_init;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001762 struct sctp_chunk *repl;
1763
1764 /* new_asoc is a brand-new association, so these are not yet
1765 * side effects--it is safe to run them here.
1766 */
1767 peer_init = &chunk->subh.cookie_hdr->c.peer_init[0];
1768 if (!sctp_process_init(new_asoc, chunk->chunk_hdr->type,
1769 sctp_source(chunk), peer_init,
1770 GFP_ATOMIC))
1771 goto nomem;
1772
1773 /* Update the content of current association. */
1774 sctp_add_cmd_sf(commands, SCTP_CMD_UPDATE_ASSOC, SCTP_ASOC(new_asoc));
1775 sctp_add_cmd_sf(commands, SCTP_CMD_NEW_STATE,
1776 SCTP_STATE(SCTP_STATE_ESTABLISHED));
1777 SCTP_INC_STATS(SCTP_MIB_CURRESTAB);
1778 sctp_add_cmd_sf(commands, SCTP_CMD_HB_TIMERS_START, SCTP_NULL());
1779
1780 repl = sctp_make_cookie_ack(new_asoc, chunk);
1781 if (!repl)
1782 goto nomem;
1783
1784 sctp_add_cmd_sf(commands, SCTP_CMD_REPLY, SCTP_CHUNK(repl));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001785
1786 /* RFC 2960 5.1 Normal Establishment of an Association
1787 *
1788 * D) IMPLEMENTATION NOTE: An implementation may choose to
1789 * send the Communication Up notification to the SCTP user
1790 * upon reception of a valid COOKIE ECHO chunk.
Vlad Yasevich07d93962007-05-04 13:55:27 -07001791 *
1792 * Sadly, this needs to be implemented as a side-effect, because
1793 * we are not guaranteed to have set the association id of the real
1794 * association and so these notifications need to be delayed until
1795 * the association id is allocated.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001796 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001797
Vlad Yasevich07d93962007-05-04 13:55:27 -07001798 sctp_add_cmd_sf(commands, SCTP_CMD_ASSOC_CHANGE, SCTP_U8(SCTP_COMM_UP));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001799
1800 /* Sockets API Draft Section 5.3.1.6
Ivan Skytte Jorgensen0f3fffd2006-12-20 16:07:04 -08001801 * When a peer sends a Adaptation Layer Indication parameter , SCTP
Linus Torvalds1da177e2005-04-16 15:20:36 -07001802 * delivers this notification to inform the application that of the
Ivan Skytte Jorgensen0f3fffd2006-12-20 16:07:04 -08001803 * peers requested adaptation layer.
Vlad Yasevich07d93962007-05-04 13:55:27 -07001804 *
1805 * This also needs to be done as a side effect for the same reason as
1806 * above.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001807 */
Vlad Yasevich07d93962007-05-04 13:55:27 -07001808 if (asoc->peer.adaptation_ind)
1809 sctp_add_cmd_sf(commands, SCTP_CMD_ADAPTATION_IND, SCTP_NULL());
Linus Torvalds1da177e2005-04-16 15:20:36 -07001810
1811 return SCTP_DISPOSITION_CONSUME;
1812
Linus Torvalds1da177e2005-04-16 15:20:36 -07001813nomem:
1814 return SCTP_DISPOSITION_NOMEM;
1815}
1816
1817/* Unexpected COOKIE-ECHO handler for setup collision (Table 2, action 'C')
1818 *
1819 * Section 5.2.4
1820 * C) In this case, the local endpoint's cookie has arrived late.
1821 * Before it arrived, the local endpoint sent an INIT and received an
1822 * INIT-ACK and finally sent a COOKIE ECHO with the peer's same tag
1823 * but a new tag of its own.
1824 */
1825/* This case represents an initialization collision. */
1826static sctp_disposition_t sctp_sf_do_dupcook_c(const struct sctp_endpoint *ep,
1827 const struct sctp_association *asoc,
1828 struct sctp_chunk *chunk,
1829 sctp_cmd_seq_t *commands,
1830 struct sctp_association *new_asoc)
1831{
1832 /* The cookie should be silently discarded.
1833 * The endpoint SHOULD NOT change states and should leave
1834 * any timers running.
1835 */
1836 return SCTP_DISPOSITION_DISCARD;
1837}
1838
1839/* Unexpected COOKIE-ECHO handler lost chunk (Table 2, action 'D')
1840 *
1841 * Section 5.2.4
1842 *
1843 * D) When both local and remote tags match the endpoint should always
1844 * enter the ESTABLISHED state, if it has not already done so.
1845 */
1846/* This case represents an initialization collision. */
1847static sctp_disposition_t sctp_sf_do_dupcook_d(const struct sctp_endpoint *ep,
1848 const struct sctp_association *asoc,
1849 struct sctp_chunk *chunk,
1850 sctp_cmd_seq_t *commands,
1851 struct sctp_association *new_asoc)
1852{
Vladislav Yasevichdf7deeb2006-08-22 00:19:51 -07001853 struct sctp_ulpevent *ev = NULL, *ai_ev = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001854 struct sctp_chunk *repl;
1855
1856 /* Clarification from Implementor's Guide:
1857 * D) When both local and remote tags match the endpoint should
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09001858 * enter the ESTABLISHED state, if it is in the COOKIE-ECHOED state.
1859 * It should stop any cookie timer that may be running and send
1860 * a COOKIE ACK.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001861 */
1862
1863 /* Don't accidentally move back into established state. */
1864 if (asoc->state < SCTP_STATE_ESTABLISHED) {
1865 sctp_add_cmd_sf(commands, SCTP_CMD_TIMER_STOP,
1866 SCTP_TO(SCTP_EVENT_TIMEOUT_T1_COOKIE));
1867 sctp_add_cmd_sf(commands, SCTP_CMD_NEW_STATE,
1868 SCTP_STATE(SCTP_STATE_ESTABLISHED));
1869 SCTP_INC_STATS(SCTP_MIB_CURRESTAB);
1870 sctp_add_cmd_sf(commands, SCTP_CMD_HB_TIMERS_START,
1871 SCTP_NULL());
1872
1873 /* RFC 2960 5.1 Normal Establishment of an Association
1874 *
1875 * D) IMPLEMENTATION NOTE: An implementation may choose
1876 * to send the Communication Up notification to the
1877 * SCTP user upon reception of a valid COOKIE
1878 * ECHO chunk.
1879 */
Vladislav Yasevichdf7deeb2006-08-22 00:19:51 -07001880 ev = sctp_ulpevent_make_assoc_change(asoc, 0,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001881 SCTP_COMM_UP, 0,
Vladislav Yasevichdf7deeb2006-08-22 00:19:51 -07001882 asoc->c.sinit_num_ostreams,
1883 asoc->c.sinit_max_instreams,
YOSHIFUJI Hideaki9cbcbf42007-07-19 10:44:50 +09001884 NULL, GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001885 if (!ev)
1886 goto nomem;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001887
1888 /* Sockets API Draft Section 5.3.1.6
Ivan Skytte Jorgensen0f3fffd2006-12-20 16:07:04 -08001889 * When a peer sends a Adaptation Layer Indication parameter,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001890 * SCTP delivers this notification to inform the application
Ivan Skytte Jorgensen0f3fffd2006-12-20 16:07:04 -08001891 * that of the peers requested adaptation layer.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001892 */
Ivan Skytte Jorgensen0f3fffd2006-12-20 16:07:04 -08001893 if (asoc->peer.adaptation_ind) {
1894 ai_ev = sctp_ulpevent_make_adaptation_indication(asoc,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001895 GFP_ATOMIC);
Vladislav Yasevichdf7deeb2006-08-22 00:19:51 -07001896 if (!ai_ev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001897 goto nomem;
1898
Linus Torvalds1da177e2005-04-16 15:20:36 -07001899 }
1900 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001901
1902 repl = sctp_make_cookie_ack(new_asoc, chunk);
1903 if (!repl)
1904 goto nomem;
1905
Vlad Yasevich2e3216c2008-06-19 16:08:18 -07001906 sctp_add_cmd_sf(commands, SCTP_CMD_REPLY, SCTP_CHUNK(repl));
1907
Vladislav Yasevichdf7deeb2006-08-22 00:19:51 -07001908 if (ev)
1909 sctp_add_cmd_sf(commands, SCTP_CMD_EVENT_ULP,
1910 SCTP_ULPEVENT(ev));
1911 if (ai_ev)
1912 sctp_add_cmd_sf(commands, SCTP_CMD_EVENT_ULP,
1913 SCTP_ULPEVENT(ai_ev));
1914
Linus Torvalds1da177e2005-04-16 15:20:36 -07001915 return SCTP_DISPOSITION_CONSUME;
1916
1917nomem:
Vladislav Yasevichdf7deeb2006-08-22 00:19:51 -07001918 if (ai_ev)
1919 sctp_ulpevent_free(ai_ev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001920 if (ev)
1921 sctp_ulpevent_free(ev);
1922 return SCTP_DISPOSITION_NOMEM;
1923}
1924
1925/*
1926 * Handle a duplicate COOKIE-ECHO. This usually means a cookie-carrying
1927 * chunk was retransmitted and then delayed in the network.
1928 *
1929 * Section: 5.2.4 Handle a COOKIE ECHO when a TCB exists
1930 *
1931 * Verification Tag: None. Do cookie validation.
1932 *
1933 * Inputs
1934 * (endpoint, asoc, chunk)
1935 *
1936 * Outputs
1937 * (asoc, reply_msg, msg_up, timers, counters)
1938 *
1939 * The return value is the disposition of the chunk.
1940 */
1941sctp_disposition_t sctp_sf_do_5_2_4_dupcook(const struct sctp_endpoint *ep,
1942 const struct sctp_association *asoc,
1943 const sctp_subtype_t type,
1944 void *arg,
1945 sctp_cmd_seq_t *commands)
1946{
1947 sctp_disposition_t retval;
1948 struct sctp_chunk *chunk = arg;
1949 struct sctp_association *new_asoc;
1950 int error = 0;
1951 char action;
1952 struct sctp_chunk *err_chk_p;
1953
1954 /* Make sure that the chunk has a valid length from the protocol
1955 * perspective. In this case check to make sure we have at least
1956 * enough for the chunk header. Cookie length verification is
1957 * done later.
1958 */
1959 if (!sctp_chunk_length_valid(chunk, sizeof(sctp_chunkhdr_t)))
1960 return sctp_sf_violation_chunklen(ep, asoc, type, arg,
1961 commands);
1962
1963 /* "Decode" the chunk. We have no optional parameters so we
1964 * are in good shape.
1965 */
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09001966 chunk->subh.cookie_hdr = (struct sctp_signed_cookie *)chunk->skb->data;
Sridhar Samudrala62b08082006-05-05 17:04:43 -07001967 if (!pskb_pull(chunk->skb, ntohs(chunk->chunk_hdr->length) -
1968 sizeof(sctp_chunkhdr_t)))
1969 goto nomem;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001970
1971 /* In RFC 2960 5.2.4 3, if both Verification Tags in the State Cookie
1972 * of a duplicate COOKIE ECHO match the Verification Tags of the
1973 * current association, consider the State Cookie valid even if
1974 * the lifespan is exceeded.
1975 */
1976 new_asoc = sctp_unpack_cookie(ep, asoc, chunk, GFP_ATOMIC, &error,
1977 &err_chk_p);
1978
1979 /* FIXME:
1980 * If the re-build failed, what is the proper error path
1981 * from here?
1982 *
1983 * [We should abort the association. --piggy]
1984 */
1985 if (!new_asoc) {
1986 /* FIXME: Several errors are possible. A bad cookie should
1987 * be silently discarded, but think about logging it too.
1988 */
1989 switch (error) {
1990 case -SCTP_IERROR_NOMEM:
1991 goto nomem;
1992
1993 case -SCTP_IERROR_STALE_COOKIE:
1994 sctp_send_stale_cookie_err(ep, asoc, chunk, commands,
1995 err_chk_p);
1996 return sctp_sf_pdiscard(ep, asoc, type, arg, commands);
1997 case -SCTP_IERROR_BAD_SIG:
1998 default:
1999 return sctp_sf_pdiscard(ep, asoc, type, arg, commands);
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07002000 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002001 }
2002
2003 /* Compare the tie_tag in cookie with the verification tag of
2004 * current association.
2005 */
2006 action = sctp_tietags_compare(new_asoc, asoc);
2007
2008 switch (action) {
2009 case 'A': /* Association restart. */
2010 retval = sctp_sf_do_dupcook_a(ep, asoc, chunk, commands,
2011 new_asoc);
2012 break;
2013
2014 case 'B': /* Collision case B. */
2015 retval = sctp_sf_do_dupcook_b(ep, asoc, chunk, commands,
2016 new_asoc);
2017 break;
2018
2019 case 'C': /* Collision case C. */
2020 retval = sctp_sf_do_dupcook_c(ep, asoc, chunk, commands,
2021 new_asoc);
2022 break;
2023
2024 case 'D': /* Collision case D. */
2025 retval = sctp_sf_do_dupcook_d(ep, asoc, chunk, commands,
2026 new_asoc);
2027 break;
2028
2029 default: /* Discard packet for all others. */
2030 retval = sctp_sf_pdiscard(ep, asoc, type, arg, commands);
2031 break;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07002032 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002033
2034 /* Delete the tempory new association. */
2035 sctp_add_cmd_sf(commands, SCTP_CMD_NEW_ASOC, SCTP_ASOC(new_asoc));
2036 sctp_add_cmd_sf(commands, SCTP_CMD_DELETE_TCB, SCTP_NULL());
2037
2038 return retval;
2039
2040nomem:
2041 return SCTP_DISPOSITION_NOMEM;
2042}
2043
2044/*
2045 * Process an ABORT. (SHUTDOWN-PENDING state)
2046 *
2047 * See sctp_sf_do_9_1_abort().
2048 */
2049sctp_disposition_t sctp_sf_shutdown_pending_abort(
2050 const struct sctp_endpoint *ep,
2051 const struct sctp_association *asoc,
2052 const sctp_subtype_t type,
2053 void *arg,
2054 sctp_cmd_seq_t *commands)
2055{
2056 struct sctp_chunk *chunk = arg;
2057
2058 if (!sctp_vtag_verify_either(chunk, asoc))
2059 return sctp_sf_pdiscard(ep, asoc, type, arg, commands);
2060
2061 /* Make sure that the ABORT chunk has a valid length.
2062 * Since this is an ABORT chunk, we have to discard it
2063 * because of the following text:
2064 * RFC 2960, Section 3.3.7
2065 * If an endpoint receives an ABORT with a format error or for an
2066 * association that doesn't exist, it MUST silently discard it.
2067 * Becasue the length is "invalid", we can't really discard just
2068 * as we do not know its true length. So, to be safe, discard the
2069 * packet.
2070 */
2071 if (!sctp_chunk_length_valid(chunk, sizeof(sctp_abort_chunk_t)))
2072 return sctp_sf_pdiscard(ep, asoc, type, arg, commands);
2073
Vlad Yasevich75205f42007-12-20 14:12:59 -08002074 /* ADD-IP: Special case for ABORT chunks
2075 * F4) One special consideration is that ABORT Chunks arriving
2076 * destined to the IP address being deleted MUST be
2077 * ignored (see Section 5.3.1 for further details).
2078 */
2079 if (SCTP_ADDR_DEL ==
2080 sctp_bind_addr_state(&asoc->base.bind_addr, &chunk->dest))
2081 return sctp_sf_discard_chunk(ep, asoc, type, arg, commands);
2082
Vlad Yasevich75205f42007-12-20 14:12:59 -08002083 return __sctp_sf_do_9_1_abort(ep, asoc, type, arg, commands);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002084}
2085
2086/*
2087 * Process an ABORT. (SHUTDOWN-SENT state)
2088 *
2089 * See sctp_sf_do_9_1_abort().
2090 */
2091sctp_disposition_t sctp_sf_shutdown_sent_abort(const struct sctp_endpoint *ep,
2092 const struct sctp_association *asoc,
2093 const sctp_subtype_t type,
2094 void *arg,
2095 sctp_cmd_seq_t *commands)
2096{
2097 struct sctp_chunk *chunk = arg;
2098
2099 if (!sctp_vtag_verify_either(chunk, asoc))
2100 return sctp_sf_pdiscard(ep, asoc, type, arg, commands);
2101
2102 /* Make sure that the ABORT chunk has a valid length.
2103 * Since this is an ABORT chunk, we have to discard it
2104 * because of the following text:
2105 * RFC 2960, Section 3.3.7
2106 * If an endpoint receives an ABORT with a format error or for an
2107 * association that doesn't exist, it MUST silently discard it.
2108 * Becasue the length is "invalid", we can't really discard just
2109 * as we do not know its true length. So, to be safe, discard the
2110 * packet.
2111 */
2112 if (!sctp_chunk_length_valid(chunk, sizeof(sctp_abort_chunk_t)))
2113 return sctp_sf_pdiscard(ep, asoc, type, arg, commands);
2114
Vlad Yasevich75205f42007-12-20 14:12:59 -08002115 /* ADD-IP: Special case for ABORT chunks
2116 * F4) One special consideration is that ABORT Chunks arriving
2117 * destined to the IP address being deleted MUST be
2118 * ignored (see Section 5.3.1 for further details).
2119 */
2120 if (SCTP_ADDR_DEL ==
2121 sctp_bind_addr_state(&asoc->base.bind_addr, &chunk->dest))
2122 return sctp_sf_discard_chunk(ep, asoc, type, arg, commands);
2123
Linus Torvalds1da177e2005-04-16 15:20:36 -07002124 /* Stop the T2-shutdown timer. */
2125 sctp_add_cmd_sf(commands, SCTP_CMD_TIMER_STOP,
2126 SCTP_TO(SCTP_EVENT_TIMEOUT_T2_SHUTDOWN));
2127
2128 /* Stop the T5-shutdown guard timer. */
2129 sctp_add_cmd_sf(commands, SCTP_CMD_TIMER_STOP,
2130 SCTP_TO(SCTP_EVENT_TIMEOUT_T5_SHUTDOWN_GUARD));
2131
Vlad Yasevich75205f42007-12-20 14:12:59 -08002132 return __sctp_sf_do_9_1_abort(ep, asoc, type, arg, commands);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002133}
2134
2135/*
2136 * Process an ABORT. (SHUTDOWN-ACK-SENT state)
2137 *
2138 * See sctp_sf_do_9_1_abort().
2139 */
2140sctp_disposition_t sctp_sf_shutdown_ack_sent_abort(
2141 const struct sctp_endpoint *ep,
2142 const struct sctp_association *asoc,
2143 const sctp_subtype_t type,
2144 void *arg,
2145 sctp_cmd_seq_t *commands)
2146{
2147 /* The same T2 timer, so we should be able to use
2148 * common function with the SHUTDOWN-SENT state.
2149 */
2150 return sctp_sf_shutdown_sent_abort(ep, asoc, type, arg, commands);
2151}
2152
2153/*
2154 * Handle an Error received in COOKIE_ECHOED state.
2155 *
2156 * Only handle the error type of stale COOKIE Error, the other errors will
2157 * be ignored.
2158 *
2159 * Inputs
2160 * (endpoint, asoc, chunk)
2161 *
2162 * Outputs
2163 * (asoc, reply_msg, msg_up, timers, counters)
2164 *
2165 * The return value is the disposition of the chunk.
2166 */
2167sctp_disposition_t sctp_sf_cookie_echoed_err(const struct sctp_endpoint *ep,
2168 const struct sctp_association *asoc,
2169 const sctp_subtype_t type,
2170 void *arg,
2171 sctp_cmd_seq_t *commands)
2172{
2173 struct sctp_chunk *chunk = arg;
2174 sctp_errhdr_t *err;
2175
2176 if (!sctp_vtag_verify(chunk, asoc))
2177 return sctp_sf_pdiscard(ep, asoc, type, arg, commands);
2178
2179 /* Make sure that the ERROR chunk has a valid length.
2180 * The parameter walking depends on this as well.
2181 */
2182 if (!sctp_chunk_length_valid(chunk, sizeof(sctp_operr_chunk_t)))
2183 return sctp_sf_violation_chunklen(ep, asoc, type, arg,
2184 commands);
2185
2186 /* Process the error here */
2187 /* FUTURE FIXME: When PR-SCTP related and other optional
2188 * parms are emitted, this will have to change to handle multiple
2189 * errors.
2190 */
2191 sctp_walk_errors(err, chunk->chunk_hdr) {
2192 if (SCTP_ERROR_STALE_COOKIE == err->cause)
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09002193 return sctp_sf_do_5_2_6_stale(ep, asoc, type,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002194 arg, commands);
2195 }
2196
2197 /* It is possible to have malformed error causes, and that
2198 * will cause us to end the walk early. However, since
2199 * we are discarding the packet, there should be no adverse
2200 * affects.
2201 */
2202 return sctp_sf_pdiscard(ep, asoc, type, arg, commands);
2203}
2204
2205/*
2206 * Handle a Stale COOKIE Error
2207 *
2208 * Section: 5.2.6 Handle Stale COOKIE Error
2209 * If the association is in the COOKIE-ECHOED state, the endpoint may elect
2210 * one of the following three alternatives.
2211 * ...
2212 * 3) Send a new INIT chunk to the endpoint, adding a Cookie
2213 * Preservative parameter requesting an extension to the lifetime of
2214 * the State Cookie. When calculating the time extension, an
2215 * implementation SHOULD use the RTT information measured based on the
2216 * previous COOKIE ECHO / ERROR exchange, and should add no more
2217 * than 1 second beyond the measured RTT, due to long State Cookie
2218 * lifetimes making the endpoint more subject to a replay attack.
2219 *
2220 * Verification Tag: Not explicit, but safe to ignore.
2221 *
2222 * Inputs
2223 * (endpoint, asoc, chunk)
2224 *
2225 * Outputs
2226 * (asoc, reply_msg, msg_up, timers, counters)
2227 *
2228 * The return value is the disposition of the chunk.
2229 */
2230static sctp_disposition_t sctp_sf_do_5_2_6_stale(const struct sctp_endpoint *ep,
2231 const struct sctp_association *asoc,
2232 const sctp_subtype_t type,
2233 void *arg,
2234 sctp_cmd_seq_t *commands)
2235{
2236 struct sctp_chunk *chunk = arg;
2237 time_t stale;
2238 sctp_cookie_preserve_param_t bht;
2239 sctp_errhdr_t *err;
2240 struct sctp_chunk *reply;
2241 struct sctp_bind_addr *bp;
Frank Filz3f7a87d2005-06-20 13:14:57 -07002242 int attempts = asoc->init_err_counter + 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002243
Vlad Yasevich81845c22006-01-30 15:59:54 -08002244 if (attempts > asoc->max_init_attempts) {
Sridhar Samudrala8de8c872006-05-19 10:58:12 -07002245 sctp_add_cmd_sf(commands, SCTP_CMD_SET_SK_ERR,
2246 SCTP_ERROR(ETIMEDOUT));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002247 sctp_add_cmd_sf(commands, SCTP_CMD_INIT_FAILED,
Al Virodc251b22006-11-20 17:00:44 -08002248 SCTP_PERR(SCTP_ERROR_STALE_COOKIE));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002249 return SCTP_DISPOSITION_DELETE_TCB;
2250 }
2251
2252 err = (sctp_errhdr_t *)(chunk->skb->data);
2253
2254 /* When calculating the time extension, an implementation
2255 * SHOULD use the RTT information measured based on the
2256 * previous COOKIE ECHO / ERROR exchange, and should add no
2257 * more than 1 second beyond the measured RTT, due to long
2258 * State Cookie lifetimes making the endpoint more subject to
2259 * a replay attack.
2260 * Measure of Staleness's unit is usec. (1/1000000 sec)
2261 * Suggested Cookie Life-span Increment's unit is msec.
2262 * (1/1000 sec)
2263 * In general, if you use the suggested cookie life, the value
2264 * found in the field of measure of staleness should be doubled
2265 * to give ample time to retransmit the new cookie and thus
2266 * yield a higher probability of success on the reattempt.
2267 */
Al Viro34bcca22006-11-20 17:27:15 -08002268 stale = ntohl(*(__be32 *)((u8 *)err + sizeof(sctp_errhdr_t)));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002269 stale = (stale * 2) / 1000;
2270
2271 bht.param_hdr.type = SCTP_PARAM_COOKIE_PRESERVATIVE;
2272 bht.param_hdr.length = htons(sizeof(bht));
2273 bht.lifespan_increment = htonl(stale);
2274
2275 /* Build that new INIT chunk. */
2276 bp = (struct sctp_bind_addr *) &asoc->base.bind_addr;
2277 reply = sctp_make_init(asoc, bp, GFP_ATOMIC, sizeof(bht));
2278 if (!reply)
2279 goto nomem;
2280
2281 sctp_addto_chunk(reply, sizeof(bht), &bht);
2282
2283 /* Clear peer's init_tag cached in assoc as we are sending a new INIT */
2284 sctp_add_cmd_sf(commands, SCTP_CMD_CLEAR_INIT_TAG, SCTP_NULL());
2285
2286 /* Stop pending T3-rtx and heartbeat timers */
2287 sctp_add_cmd_sf(commands, SCTP_CMD_T3_RTX_TIMERS_STOP, SCTP_NULL());
2288 sctp_add_cmd_sf(commands, SCTP_CMD_HB_TIMERS_STOP, SCTP_NULL());
2289
2290 /* Delete non-primary peer ip addresses since we are transitioning
2291 * back to the COOKIE-WAIT state
2292 */
2293 sctp_add_cmd_sf(commands, SCTP_CMD_DEL_NON_PRIMARY, SCTP_NULL());
2294
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09002295 /* If we've sent any data bundled with COOKIE-ECHO we will need to
2296 * resend
Linus Torvalds1da177e2005-04-16 15:20:36 -07002297 */
Vlad Yasevichb6157d82007-10-24 15:59:16 -04002298 sctp_add_cmd_sf(commands, SCTP_CMD_T1_RETRAN,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002299 SCTP_TRANSPORT(asoc->peer.primary_path));
2300
2301 /* Cast away the const modifier, as we want to just
2302 * rerun it through as a sideffect.
2303 */
Frank Filz3f7a87d2005-06-20 13:14:57 -07002304 sctp_add_cmd_sf(commands, SCTP_CMD_INIT_COUNTER_INC, SCTP_NULL());
Linus Torvalds1da177e2005-04-16 15:20:36 -07002305
2306 sctp_add_cmd_sf(commands, SCTP_CMD_TIMER_STOP,
2307 SCTP_TO(SCTP_EVENT_TIMEOUT_T1_COOKIE));
2308 sctp_add_cmd_sf(commands, SCTP_CMD_NEW_STATE,
2309 SCTP_STATE(SCTP_STATE_COOKIE_WAIT));
2310 sctp_add_cmd_sf(commands, SCTP_CMD_TIMER_START,
2311 SCTP_TO(SCTP_EVENT_TIMEOUT_T1_INIT));
2312
2313 sctp_add_cmd_sf(commands, SCTP_CMD_REPLY, SCTP_CHUNK(reply));
2314
2315 return SCTP_DISPOSITION_CONSUME;
2316
2317nomem:
2318 return SCTP_DISPOSITION_NOMEM;
2319}
2320
2321/*
2322 * Process an ABORT.
2323 *
2324 * Section: 9.1
2325 * After checking the Verification Tag, the receiving endpoint shall
2326 * remove the association from its record, and shall report the
2327 * termination to its upper layer.
2328 *
2329 * Verification Tag: 8.5.1 Exceptions in Verification Tag Rules
2330 * B) Rules for packet carrying ABORT:
2331 *
2332 * - The endpoint shall always fill in the Verification Tag field of the
2333 * outbound packet with the destination endpoint's tag value if it
2334 * is known.
2335 *
2336 * - If the ABORT is sent in response to an OOTB packet, the endpoint
2337 * MUST follow the procedure described in Section 8.4.
2338 *
2339 * - The receiver MUST accept the packet if the Verification Tag
2340 * matches either its own tag, OR the tag of its peer. Otherwise, the
2341 * receiver MUST silently discard the packet and take no further
2342 * action.
2343 *
2344 * Inputs
2345 * (endpoint, asoc, chunk)
2346 *
2347 * Outputs
2348 * (asoc, reply_msg, msg_up, timers, counters)
2349 *
2350 * The return value is the disposition of the chunk.
2351 */
2352sctp_disposition_t sctp_sf_do_9_1_abort(const struct sctp_endpoint *ep,
2353 const struct sctp_association *asoc,
2354 const sctp_subtype_t type,
2355 void *arg,
2356 sctp_cmd_seq_t *commands)
2357{
2358 struct sctp_chunk *chunk = arg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002359
2360 if (!sctp_vtag_verify_either(chunk, asoc))
2361 return sctp_sf_pdiscard(ep, asoc, type, arg, commands);
2362
2363 /* Make sure that the ABORT chunk has a valid length.
2364 * Since this is an ABORT chunk, we have to discard it
2365 * because of the following text:
2366 * RFC 2960, Section 3.3.7
2367 * If an endpoint receives an ABORT with a format error or for an
2368 * association that doesn't exist, it MUST silently discard it.
2369 * Becasue the length is "invalid", we can't really discard just
2370 * as we do not know its true length. So, to be safe, discard the
2371 * packet.
2372 */
2373 if (!sctp_chunk_length_valid(chunk, sizeof(sctp_abort_chunk_t)))
2374 return sctp_sf_pdiscard(ep, asoc, type, arg, commands);
2375
Vlad Yasevich75205f42007-12-20 14:12:59 -08002376 /* ADD-IP: Special case for ABORT chunks
2377 * F4) One special consideration is that ABORT Chunks arriving
2378 * destined to the IP address being deleted MUST be
2379 * ignored (see Section 5.3.1 for further details).
2380 */
2381 if (SCTP_ADDR_DEL ==
2382 sctp_bind_addr_state(&asoc->base.bind_addr, &chunk->dest))
2383 return sctp_sf_discard_chunk(ep, asoc, type, arg, commands);
2384
2385 return __sctp_sf_do_9_1_abort(ep, asoc, type, arg, commands);
2386}
2387
2388static sctp_disposition_t __sctp_sf_do_9_1_abort(const struct sctp_endpoint *ep,
2389 const struct sctp_association *asoc,
2390 const sctp_subtype_t type,
2391 void *arg,
2392 sctp_cmd_seq_t *commands)
2393{
2394 struct sctp_chunk *chunk = arg;
2395 unsigned len;
2396 __be16 error = SCTP_ERROR_NO_ERROR;
2397
Linus Torvalds1da177e2005-04-16 15:20:36 -07002398 /* See if we have an error cause code in the chunk. */
2399 len = ntohs(chunk->chunk_hdr->length);
2400 if (len >= sizeof(struct sctp_chunkhdr) + sizeof(struct sctp_errhdr))
2401 error = ((sctp_errhdr_t *)chunk->skb->data)->cause;
2402
Sridhar Samudrala8de8c872006-05-19 10:58:12 -07002403 sctp_add_cmd_sf(commands, SCTP_CMD_SET_SK_ERR, SCTP_ERROR(ECONNRESET));
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09002404 /* ASSOC_FAILED will DELETE_TCB. */
Al Viro5be291f2006-11-20 17:01:06 -08002405 sctp_add_cmd_sf(commands, SCTP_CMD_ASSOC_FAILED, SCTP_PERR(error));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002406 SCTP_INC_STATS(SCTP_MIB_ABORTEDS);
2407 SCTP_DEC_STATS(SCTP_MIB_CURRESTAB);
2408
2409 return SCTP_DISPOSITION_ABORT;
2410}
2411
2412/*
2413 * Process an ABORT. (COOKIE-WAIT state)
2414 *
2415 * See sctp_sf_do_9_1_abort() above.
2416 */
2417sctp_disposition_t sctp_sf_cookie_wait_abort(const struct sctp_endpoint *ep,
2418 const struct sctp_association *asoc,
2419 const sctp_subtype_t type,
2420 void *arg,
2421 sctp_cmd_seq_t *commands)
2422{
2423 struct sctp_chunk *chunk = arg;
2424 unsigned len;
Al Virof94c0192006-11-20 17:00:25 -08002425 __be16 error = SCTP_ERROR_NO_ERROR;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002426
2427 if (!sctp_vtag_verify_either(chunk, asoc))
2428 return sctp_sf_pdiscard(ep, asoc, type, arg, commands);
2429
2430 /* Make sure that the ABORT chunk has a valid length.
2431 * Since this is an ABORT chunk, we have to discard it
2432 * because of the following text:
2433 * RFC 2960, Section 3.3.7
2434 * If an endpoint receives an ABORT with a format error or for an
2435 * association that doesn't exist, it MUST silently discard it.
2436 * Becasue the length is "invalid", we can't really discard just
2437 * as we do not know its true length. So, to be safe, discard the
2438 * packet.
2439 */
2440 if (!sctp_chunk_length_valid(chunk, sizeof(sctp_abort_chunk_t)))
2441 return sctp_sf_pdiscard(ep, asoc, type, arg, commands);
2442
2443 /* See if we have an error cause code in the chunk. */
2444 len = ntohs(chunk->chunk_hdr->length);
2445 if (len >= sizeof(struct sctp_chunkhdr) + sizeof(struct sctp_errhdr))
2446 error = ((sctp_errhdr_t *)chunk->skb->data)->cause;
2447
Sridhar Samudrala8de8c872006-05-19 10:58:12 -07002448 return sctp_stop_t1_and_abort(commands, error, ECONNREFUSED, asoc,
2449 chunk->transport);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002450}
2451
2452/*
2453 * Process an incoming ICMP as an ABORT. (COOKIE-WAIT state)
2454 */
2455sctp_disposition_t sctp_sf_cookie_wait_icmp_abort(const struct sctp_endpoint *ep,
2456 const struct sctp_association *asoc,
2457 const sctp_subtype_t type,
2458 void *arg,
2459 sctp_cmd_seq_t *commands)
2460{
Sridhar Samudrala8de8c872006-05-19 10:58:12 -07002461 return sctp_stop_t1_and_abort(commands, SCTP_ERROR_NO_ERROR,
2462 ENOPROTOOPT, asoc,
Frank Filz3f7a87d2005-06-20 13:14:57 -07002463 (struct sctp_transport *)arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002464}
2465
2466/*
2467 * Process an ABORT. (COOKIE-ECHOED state)
2468 */
2469sctp_disposition_t sctp_sf_cookie_echoed_abort(const struct sctp_endpoint *ep,
2470 const struct sctp_association *asoc,
2471 const sctp_subtype_t type,
2472 void *arg,
2473 sctp_cmd_seq_t *commands)
2474{
2475 /* There is a single T1 timer, so we should be able to use
2476 * common function with the COOKIE-WAIT state.
2477 */
2478 return sctp_sf_cookie_wait_abort(ep, asoc, type, arg, commands);
2479}
2480
2481/*
2482 * Stop T1 timer and abort association with "INIT failed".
2483 *
2484 * This is common code called by several sctp_sf_*_abort() functions above.
2485 */
Adrian Bunk52c1da32005-06-23 22:05:33 -07002486static sctp_disposition_t sctp_stop_t1_and_abort(sctp_cmd_seq_t *commands,
Al Virof94c0192006-11-20 17:00:25 -08002487 __be16 error, int sk_err,
Frank Filz3f7a87d2005-06-20 13:14:57 -07002488 const struct sctp_association *asoc,
2489 struct sctp_transport *transport)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002490{
Frank Filz3f7a87d2005-06-20 13:14:57 -07002491 SCTP_DEBUG_PRINTK("ABORT received (INIT).\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002492 sctp_add_cmd_sf(commands, SCTP_CMD_NEW_STATE,
2493 SCTP_STATE(SCTP_STATE_CLOSED));
2494 SCTP_INC_STATS(SCTP_MIB_ABORTEDS);
2495 sctp_add_cmd_sf(commands, SCTP_CMD_TIMER_STOP,
2496 SCTP_TO(SCTP_EVENT_TIMEOUT_T1_INIT));
Sridhar Samudrala8de8c872006-05-19 10:58:12 -07002497 sctp_add_cmd_sf(commands, SCTP_CMD_SET_SK_ERR, SCTP_ERROR(sk_err));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002498 /* CMD_INIT_FAILED will DELETE_TCB. */
2499 sctp_add_cmd_sf(commands, SCTP_CMD_INIT_FAILED,
Al Virodc251b22006-11-20 17:00:44 -08002500 SCTP_PERR(error));
Frank Filz3f7a87d2005-06-20 13:14:57 -07002501 return SCTP_DISPOSITION_ABORT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002502}
2503
2504/*
2505 * sctp_sf_do_9_2_shut
2506 *
2507 * Section: 9.2
2508 * Upon the reception of the SHUTDOWN, the peer endpoint shall
2509 * - enter the SHUTDOWN-RECEIVED state,
2510 *
2511 * - stop accepting new data from its SCTP user
2512 *
2513 * - verify, by checking the Cumulative TSN Ack field of the chunk,
2514 * that all its outstanding DATA chunks have been received by the
2515 * SHUTDOWN sender.
2516 *
2517 * Once an endpoint as reached the SHUTDOWN-RECEIVED state it MUST NOT
2518 * send a SHUTDOWN in response to a ULP request. And should discard
2519 * subsequent SHUTDOWN chunks.
2520 *
2521 * If there are still outstanding DATA chunks left, the SHUTDOWN
2522 * receiver shall continue to follow normal data transmission
2523 * procedures defined in Section 6 until all outstanding DATA chunks
2524 * are acknowledged; however, the SHUTDOWN receiver MUST NOT accept
2525 * new data from its SCTP user.
2526 *
2527 * Verification Tag: 8.5 Verification Tag [Normal verification]
2528 *
2529 * Inputs
2530 * (endpoint, asoc, chunk)
2531 *
2532 * Outputs
2533 * (asoc, reply_msg, msg_up, timers, counters)
2534 *
2535 * The return value is the disposition of the chunk.
2536 */
2537sctp_disposition_t sctp_sf_do_9_2_shutdown(const struct sctp_endpoint *ep,
2538 const struct sctp_association *asoc,
2539 const sctp_subtype_t type,
2540 void *arg,
2541 sctp_cmd_seq_t *commands)
2542{
2543 struct sctp_chunk *chunk = arg;
2544 sctp_shutdownhdr_t *sdh;
2545 sctp_disposition_t disposition;
2546 struct sctp_ulpevent *ev;
Wei Yongjundf10eec2008-10-23 01:00:21 -07002547 __u32 ctsn;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002548
2549 if (!sctp_vtag_verify(chunk, asoc))
2550 return sctp_sf_pdiscard(ep, asoc, type, arg, commands);
2551
2552 /* Make sure that the SHUTDOWN chunk has a valid length. */
2553 if (!sctp_chunk_length_valid(chunk,
2554 sizeof(struct sctp_shutdown_chunk_t)))
2555 return sctp_sf_violation_chunklen(ep, asoc, type, arg,
2556 commands);
2557
2558 /* Convert the elaborate header. */
2559 sdh = (sctp_shutdownhdr_t *)chunk->skb->data;
2560 skb_pull(chunk->skb, sizeof(sctp_shutdownhdr_t));
2561 chunk->subh.shutdown_hdr = sdh;
Wei Yongjundf10eec2008-10-23 01:00:21 -07002562 ctsn = ntohl(sdh->cum_tsn_ack);
2563
2564 /* If Cumulative TSN Ack beyond the max tsn currently
2565 * send, terminating the association and respond to the
2566 * sender with an ABORT.
2567 */
2568 if (!TSN_lt(ctsn, asoc->next_tsn))
2569 return sctp_sf_violation_ctsn(ep, asoc, type, arg, commands);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002570
Sridhar Samudralaeb0e0072005-09-22 23:48:38 -07002571 /* API 5.3.1.5 SCTP_SHUTDOWN_EVENT
2572 * When a peer sends a SHUTDOWN, SCTP delivers this notification to
2573 * inform the application that it should cease sending data.
2574 */
2575 ev = sctp_ulpevent_make_shutdown_event(asoc, 0, GFP_ATOMIC);
2576 if (!ev) {
2577 disposition = SCTP_DISPOSITION_NOMEM;
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09002578 goto out;
Sridhar Samudralaeb0e0072005-09-22 23:48:38 -07002579 }
2580 sctp_add_cmd_sf(commands, SCTP_CMD_EVENT_ULP, SCTP_ULPEVENT(ev));
2581
Linus Torvalds1da177e2005-04-16 15:20:36 -07002582 /* Upon the reception of the SHUTDOWN, the peer endpoint shall
2583 * - enter the SHUTDOWN-RECEIVED state,
2584 * - stop accepting new data from its SCTP user
2585 *
2586 * [This is implicit in the new state.]
2587 */
2588 sctp_add_cmd_sf(commands, SCTP_CMD_NEW_STATE,
2589 SCTP_STATE(SCTP_STATE_SHUTDOWN_RECEIVED));
2590 disposition = SCTP_DISPOSITION_CONSUME;
2591
2592 if (sctp_outq_is_empty(&asoc->outqueue)) {
2593 disposition = sctp_sf_do_9_2_shutdown_ack(ep, asoc, type,
2594 arg, commands);
2595 }
2596
2597 if (SCTP_DISPOSITION_NOMEM == disposition)
2598 goto out;
2599
2600 /* - verify, by checking the Cumulative TSN Ack field of the
2601 * chunk, that all its outstanding DATA chunks have been
2602 * received by the SHUTDOWN sender.
2603 */
2604 sctp_add_cmd_sf(commands, SCTP_CMD_PROCESS_CTSN,
Al Viro2178eda2006-11-20 17:26:53 -08002605 SCTP_BE32(chunk->subh.shutdown_hdr->cum_tsn_ack));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002606
Linus Torvalds1da177e2005-04-16 15:20:36 -07002607out:
2608 return disposition;
2609}
2610
Wei Yongjun2e3f92d2008-10-23 01:01:18 -07002611/*
2612 * sctp_sf_do_9_2_shut_ctsn
2613 *
2614 * Once an endpoint has reached the SHUTDOWN-RECEIVED state,
2615 * it MUST NOT send a SHUTDOWN in response to a ULP request.
2616 * The Cumulative TSN Ack of the received SHUTDOWN chunk
2617 * MUST be processed.
2618 */
2619sctp_disposition_t sctp_sf_do_9_2_shut_ctsn(const struct sctp_endpoint *ep,
2620 const struct sctp_association *asoc,
2621 const sctp_subtype_t type,
2622 void *arg,
2623 sctp_cmd_seq_t *commands)
2624{
2625 struct sctp_chunk *chunk = arg;
2626 sctp_shutdownhdr_t *sdh;
2627
2628 if (!sctp_vtag_verify(chunk, asoc))
2629 return sctp_sf_pdiscard(ep, asoc, type, arg, commands);
2630
2631 /* Make sure that the SHUTDOWN chunk has a valid length. */
2632 if (!sctp_chunk_length_valid(chunk,
2633 sizeof(struct sctp_shutdown_chunk_t)))
2634 return sctp_sf_violation_chunklen(ep, asoc, type, arg,
2635 commands);
2636
2637 sdh = (sctp_shutdownhdr_t *)chunk->skb->data;
2638
2639 /* If Cumulative TSN Ack beyond the max tsn currently
2640 * send, terminating the association and respond to the
2641 * sender with an ABORT.
2642 */
2643 if (!TSN_lt(ntohl(sdh->cum_tsn_ack), asoc->next_tsn))
2644 return sctp_sf_violation_ctsn(ep, asoc, type, arg, commands);
2645
2646 /* verify, by checking the Cumulative TSN Ack field of the
2647 * chunk, that all its outstanding DATA chunks have been
2648 * received by the SHUTDOWN sender.
2649 */
2650 sctp_add_cmd_sf(commands, SCTP_CMD_PROCESS_CTSN,
2651 SCTP_BE32(sdh->cum_tsn_ack));
2652
2653 return SCTP_DISPOSITION_CONSUME;
2654}
2655
Linus Torvalds1da177e2005-04-16 15:20:36 -07002656/* RFC 2960 9.2
2657 * If an endpoint is in SHUTDOWN-ACK-SENT state and receives an INIT chunk
2658 * (e.g., if the SHUTDOWN COMPLETE was lost) with source and destination
2659 * transport addresses (either in the IP addresses or in the INIT chunk)
2660 * that belong to this association, it should discard the INIT chunk and
2661 * retransmit the SHUTDOWN ACK chunk.
2662 */
2663sctp_disposition_t sctp_sf_do_9_2_reshutack(const struct sctp_endpoint *ep,
2664 const struct sctp_association *asoc,
2665 const sctp_subtype_t type,
2666 void *arg,
2667 sctp_cmd_seq_t *commands)
2668{
2669 struct sctp_chunk *chunk = (struct sctp_chunk *) arg;
2670 struct sctp_chunk *reply;
2671
Vlad Yasevichece25df2007-09-07 16:30:54 -04002672 /* Make sure that the chunk has a valid length */
2673 if (!sctp_chunk_length_valid(chunk, sizeof(sctp_chunkhdr_t)))
2674 return sctp_sf_violation_chunklen(ep, asoc, type, arg,
2675 commands);
2676
Linus Torvalds1da177e2005-04-16 15:20:36 -07002677 /* Since we are not going to really process this INIT, there
2678 * is no point in verifying chunk boundries. Just generate
2679 * the SHUTDOWN ACK.
2680 */
2681 reply = sctp_make_shutdown_ack(asoc, chunk);
2682 if (NULL == reply)
2683 goto nomem;
2684
2685 /* Set the transport for the SHUTDOWN ACK chunk and the timeout for
2686 * the T2-SHUTDOWN timer.
2687 */
2688 sctp_add_cmd_sf(commands, SCTP_CMD_SETUP_T2, SCTP_CHUNK(reply));
2689
2690 /* and restart the T2-shutdown timer. */
2691 sctp_add_cmd_sf(commands, SCTP_CMD_TIMER_RESTART,
2692 SCTP_TO(SCTP_EVENT_TIMEOUT_T2_SHUTDOWN));
2693
2694 sctp_add_cmd_sf(commands, SCTP_CMD_REPLY, SCTP_CHUNK(reply));
2695
2696 return SCTP_DISPOSITION_CONSUME;
2697nomem:
2698 return SCTP_DISPOSITION_NOMEM;
2699}
2700
2701/*
2702 * sctp_sf_do_ecn_cwr
2703 *
2704 * Section: Appendix A: Explicit Congestion Notification
2705 *
2706 * CWR:
2707 *
2708 * RFC 2481 details a specific bit for a sender to send in the header of
2709 * its next outbound TCP segment to indicate to its peer that it has
2710 * reduced its congestion window. This is termed the CWR bit. For
2711 * SCTP the same indication is made by including the CWR chunk.
2712 * This chunk contains one data element, i.e. the TSN number that
2713 * was sent in the ECNE chunk. This element represents the lowest
2714 * TSN number in the datagram that was originally marked with the
2715 * CE bit.
2716 *
2717 * Verification Tag: 8.5 Verification Tag [Normal verification]
2718 * Inputs
2719 * (endpoint, asoc, chunk)
2720 *
2721 * Outputs
2722 * (asoc, reply_msg, msg_up, timers, counters)
2723 *
2724 * The return value is the disposition of the chunk.
2725 */
2726sctp_disposition_t sctp_sf_do_ecn_cwr(const struct sctp_endpoint *ep,
2727 const struct sctp_association *asoc,
2728 const sctp_subtype_t type,
2729 void *arg,
2730 sctp_cmd_seq_t *commands)
2731{
2732 sctp_cwrhdr_t *cwr;
2733 struct sctp_chunk *chunk = arg;
Al Viro34bcca22006-11-20 17:27:15 -08002734 u32 lowest_tsn;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002735
2736 if (!sctp_vtag_verify(chunk, asoc))
2737 return sctp_sf_pdiscard(ep, asoc, type, arg, commands);
2738
2739 if (!sctp_chunk_length_valid(chunk, sizeof(sctp_ecne_chunk_t)))
2740 return sctp_sf_violation_chunklen(ep, asoc, type, arg,
2741 commands);
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09002742
Linus Torvalds1da177e2005-04-16 15:20:36 -07002743 cwr = (sctp_cwrhdr_t *) chunk->skb->data;
2744 skb_pull(chunk->skb, sizeof(sctp_cwrhdr_t));
2745
Al Viro34bcca22006-11-20 17:27:15 -08002746 lowest_tsn = ntohl(cwr->lowest_tsn);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002747
2748 /* Does this CWR ack the last sent congestion notification? */
Al Viro34bcca22006-11-20 17:27:15 -08002749 if (TSN_lte(asoc->last_ecne_tsn, lowest_tsn)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002750 /* Stop sending ECNE. */
2751 sctp_add_cmd_sf(commands,
2752 SCTP_CMD_ECN_CWR,
Al Viro34bcca22006-11-20 17:27:15 -08002753 SCTP_U32(lowest_tsn));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002754 }
2755 return SCTP_DISPOSITION_CONSUME;
2756}
2757
2758/*
2759 * sctp_sf_do_ecne
2760 *
2761 * Section: Appendix A: Explicit Congestion Notification
2762 *
2763 * ECN-Echo
2764 *
2765 * RFC 2481 details a specific bit for a receiver to send back in its
2766 * TCP acknowledgements to notify the sender of the Congestion
2767 * Experienced (CE) bit having arrived from the network. For SCTP this
2768 * same indication is made by including the ECNE chunk. This chunk
2769 * contains one data element, i.e. the lowest TSN associated with the IP
2770 * datagram marked with the CE bit.....
2771 *
2772 * Verification Tag: 8.5 Verification Tag [Normal verification]
2773 * Inputs
2774 * (endpoint, asoc, chunk)
2775 *
2776 * Outputs
2777 * (asoc, reply_msg, msg_up, timers, counters)
2778 *
2779 * The return value is the disposition of the chunk.
2780 */
2781sctp_disposition_t sctp_sf_do_ecne(const struct sctp_endpoint *ep,
2782 const struct sctp_association *asoc,
2783 const sctp_subtype_t type,
2784 void *arg,
2785 sctp_cmd_seq_t *commands)
2786{
2787 sctp_ecnehdr_t *ecne;
2788 struct sctp_chunk *chunk = arg;
2789
2790 if (!sctp_vtag_verify(chunk, asoc))
2791 return sctp_sf_pdiscard(ep, asoc, type, arg, commands);
2792
2793 if (!sctp_chunk_length_valid(chunk, sizeof(sctp_ecne_chunk_t)))
2794 return sctp_sf_violation_chunklen(ep, asoc, type, arg,
2795 commands);
2796
2797 ecne = (sctp_ecnehdr_t *) chunk->skb->data;
2798 skb_pull(chunk->skb, sizeof(sctp_ecnehdr_t));
2799
2800 /* If this is a newer ECNE than the last CWR packet we sent out */
2801 sctp_add_cmd_sf(commands, SCTP_CMD_ECN_ECNE,
2802 SCTP_U32(ntohl(ecne->lowest_tsn)));
2803
2804 return SCTP_DISPOSITION_CONSUME;
2805}
2806
2807/*
2808 * Section: 6.2 Acknowledgement on Reception of DATA Chunks
2809 *
2810 * The SCTP endpoint MUST always acknowledge the reception of each valid
2811 * DATA chunk.
2812 *
2813 * The guidelines on delayed acknowledgement algorithm specified in
2814 * Section 4.2 of [RFC2581] SHOULD be followed. Specifically, an
2815 * acknowledgement SHOULD be generated for at least every second packet
2816 * (not every second DATA chunk) received, and SHOULD be generated within
2817 * 200 ms of the arrival of any unacknowledged DATA chunk. In some
2818 * situations it may be beneficial for an SCTP transmitter to be more
2819 * conservative than the algorithms detailed in this document allow.
2820 * However, an SCTP transmitter MUST NOT be more aggressive than the
2821 * following algorithms allow.
2822 *
2823 * A SCTP receiver MUST NOT generate more than one SACK for every
2824 * incoming packet, other than to update the offered window as the
2825 * receiving application consumes new data.
2826 *
2827 * Verification Tag: 8.5 Verification Tag [Normal verification]
2828 *
2829 * Inputs
2830 * (endpoint, asoc, chunk)
2831 *
2832 * Outputs
2833 * (asoc, reply_msg, msg_up, timers, counters)
2834 *
2835 * The return value is the disposition of the chunk.
2836 */
2837sctp_disposition_t sctp_sf_eat_data_6_2(const struct sctp_endpoint *ep,
2838 const struct sctp_association *asoc,
2839 const sctp_subtype_t type,
2840 void *arg,
2841 sctp_cmd_seq_t *commands)
2842{
2843 struct sctp_chunk *chunk = arg;
2844 int error;
2845
2846 if (!sctp_vtag_verify(chunk, asoc)) {
2847 sctp_add_cmd_sf(commands, SCTP_CMD_REPORT_BAD_TAG,
2848 SCTP_NULL());
2849 return sctp_sf_pdiscard(ep, asoc, type, arg, commands);
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09002850 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002851
2852 if (!sctp_chunk_length_valid(chunk, sizeof(sctp_data_chunk_t)))
2853 return sctp_sf_violation_chunklen(ep, asoc, type, arg,
2854 commands);
2855
2856 error = sctp_eat_data(asoc, chunk, commands );
2857 switch (error) {
2858 case SCTP_IERROR_NO_ERROR:
2859 break;
2860 case SCTP_IERROR_HIGH_TSN:
2861 case SCTP_IERROR_BAD_STREAM:
Sridhar Samudralaac0b0462006-08-22 00:15:33 -07002862 SCTP_INC_STATS(SCTP_MIB_IN_DATA_CHUNK_DISCARDS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002863 goto discard_noforce;
2864 case SCTP_IERROR_DUP_TSN:
2865 case SCTP_IERROR_IGNORE_TSN:
Sridhar Samudralaac0b0462006-08-22 00:15:33 -07002866 SCTP_INC_STATS(SCTP_MIB_IN_DATA_CHUNK_DISCARDS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002867 goto discard_force;
2868 case SCTP_IERROR_NO_DATA:
2869 goto consume;
2870 default:
2871 BUG();
2872 }
2873
2874 if (asoc->autoclose) {
2875 sctp_add_cmd_sf(commands, SCTP_CMD_TIMER_RESTART,
2876 SCTP_TO(SCTP_EVENT_TIMEOUT_AUTOCLOSE));
2877 }
2878
2879 /* If this is the last chunk in a packet, we need to count it
2880 * toward sack generation. Note that we need to SACK every
2881 * OTHER packet containing data chunks, EVEN IF WE DISCARD
2882 * THEM. We elect to NOT generate SACK's if the chunk fails
2883 * the verification tag test.
2884 *
2885 * RFC 2960 6.2 Acknowledgement on Reception of DATA Chunks
2886 *
2887 * The SCTP endpoint MUST always acknowledge the reception of
2888 * each valid DATA chunk.
2889 *
2890 * The guidelines on delayed acknowledgement algorithm
2891 * specified in Section 4.2 of [RFC2581] SHOULD be followed.
2892 * Specifically, an acknowledgement SHOULD be generated for at
2893 * least every second packet (not every second DATA chunk)
2894 * received, and SHOULD be generated within 200 ms of the
2895 * arrival of any unacknowledged DATA chunk. In some
2896 * situations it may be beneficial for an SCTP transmitter to
2897 * be more conservative than the algorithms detailed in this
2898 * document allow. However, an SCTP transmitter MUST NOT be
2899 * more aggressive than the following algorithms allow.
2900 */
Frank Filz52ccb8e2005-12-22 11:36:46 -08002901 if (chunk->end_of_packet)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002902 sctp_add_cmd_sf(commands, SCTP_CMD_GEN_SACK, SCTP_NOFORCE());
2903
Linus Torvalds1da177e2005-04-16 15:20:36 -07002904 return SCTP_DISPOSITION_CONSUME;
2905
2906discard_force:
2907 /* RFC 2960 6.2 Acknowledgement on Reception of DATA Chunks
2908 *
2909 * When a packet arrives with duplicate DATA chunk(s) and with
2910 * no new DATA chunk(s), the endpoint MUST immediately send a
2911 * SACK with no delay. If a packet arrives with duplicate
2912 * DATA chunk(s) bundled with new DATA chunks, the endpoint
2913 * MAY immediately send a SACK. Normally receipt of duplicate
2914 * DATA chunks will occur when the original SACK chunk was lost
2915 * and the peer's RTO has expired. The duplicate TSN number(s)
2916 * SHOULD be reported in the SACK as duplicate.
2917 */
2918 /* In our case, we split the MAY SACK advice up whether or not
2919 * the last chunk is a duplicate.'
2920 */
2921 if (chunk->end_of_packet)
2922 sctp_add_cmd_sf(commands, SCTP_CMD_GEN_SACK, SCTP_FORCE());
2923 return SCTP_DISPOSITION_DISCARD;
2924
2925discard_noforce:
Frank Filz52ccb8e2005-12-22 11:36:46 -08002926 if (chunk->end_of_packet)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002927 sctp_add_cmd_sf(commands, SCTP_CMD_GEN_SACK, SCTP_NOFORCE());
2928
Linus Torvalds1da177e2005-04-16 15:20:36 -07002929 return SCTP_DISPOSITION_DISCARD;
2930consume:
2931 return SCTP_DISPOSITION_CONSUME;
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09002932
Linus Torvalds1da177e2005-04-16 15:20:36 -07002933}
2934
2935/*
2936 * sctp_sf_eat_data_fast_4_4
2937 *
2938 * Section: 4 (4)
2939 * (4) In SHUTDOWN-SENT state the endpoint MUST acknowledge any received
2940 * DATA chunks without delay.
2941 *
2942 * Verification Tag: 8.5 Verification Tag [Normal verification]
2943 * Inputs
2944 * (endpoint, asoc, chunk)
2945 *
2946 * Outputs
2947 * (asoc, reply_msg, msg_up, timers, counters)
2948 *
2949 * The return value is the disposition of the chunk.
2950 */
2951sctp_disposition_t sctp_sf_eat_data_fast_4_4(const struct sctp_endpoint *ep,
2952 const struct sctp_association *asoc,
2953 const sctp_subtype_t type,
2954 void *arg,
2955 sctp_cmd_seq_t *commands)
2956{
2957 struct sctp_chunk *chunk = arg;
2958 int error;
2959
2960 if (!sctp_vtag_verify(chunk, asoc)) {
2961 sctp_add_cmd_sf(commands, SCTP_CMD_REPORT_BAD_TAG,
2962 SCTP_NULL());
2963 return sctp_sf_pdiscard(ep, asoc, type, arg, commands);
2964 }
2965
2966 if (!sctp_chunk_length_valid(chunk, sizeof(sctp_data_chunk_t)))
2967 return sctp_sf_violation_chunklen(ep, asoc, type, arg,
2968 commands);
2969
2970 error = sctp_eat_data(asoc, chunk, commands );
2971 switch (error) {
2972 case SCTP_IERROR_NO_ERROR:
2973 case SCTP_IERROR_HIGH_TSN:
2974 case SCTP_IERROR_DUP_TSN:
2975 case SCTP_IERROR_IGNORE_TSN:
2976 case SCTP_IERROR_BAD_STREAM:
2977 break;
2978 case SCTP_IERROR_NO_DATA:
2979 goto consume;
2980 default:
2981 BUG();
2982 }
2983
2984 /* Go a head and force a SACK, since we are shutting down. */
2985
2986 /* Implementor's Guide.
2987 *
2988 * While in SHUTDOWN-SENT state, the SHUTDOWN sender MUST immediately
2989 * respond to each received packet containing one or more DATA chunk(s)
2990 * with a SACK, a SHUTDOWN chunk, and restart the T2-shutdown timer
2991 */
2992 if (chunk->end_of_packet) {
2993 /* We must delay the chunk creation since the cumulative
2994 * TSN has not been updated yet.
2995 */
2996 sctp_add_cmd_sf(commands, SCTP_CMD_GEN_SHUTDOWN, SCTP_NULL());
2997 sctp_add_cmd_sf(commands, SCTP_CMD_GEN_SACK, SCTP_FORCE());
2998 sctp_add_cmd_sf(commands, SCTP_CMD_TIMER_RESTART,
2999 SCTP_TO(SCTP_EVENT_TIMEOUT_T2_SHUTDOWN));
3000 }
3001
3002consume:
3003 return SCTP_DISPOSITION_CONSUME;
3004}
3005
3006/*
3007 * Section: 6.2 Processing a Received SACK
3008 * D) Any time a SACK arrives, the endpoint performs the following:
3009 *
3010 * i) If Cumulative TSN Ack is less than the Cumulative TSN Ack Point,
3011 * then drop the SACK. Since Cumulative TSN Ack is monotonically
3012 * increasing, a SACK whose Cumulative TSN Ack is less than the
3013 * Cumulative TSN Ack Point indicates an out-of-order SACK.
3014 *
3015 * ii) Set rwnd equal to the newly received a_rwnd minus the number
3016 * of bytes still outstanding after processing the Cumulative TSN Ack
3017 * and the Gap Ack Blocks.
3018 *
3019 * iii) If the SACK is missing a TSN that was previously
3020 * acknowledged via a Gap Ack Block (e.g., the data receiver
3021 * reneged on the data), then mark the corresponding DATA chunk
3022 * as available for retransmit: Mark it as missing for fast
3023 * retransmit as described in Section 7.2.4 and if no retransmit
3024 * timer is running for the destination address to which the DATA
3025 * chunk was originally transmitted, then T3-rtx is started for
3026 * that destination address.
3027 *
3028 * Verification Tag: 8.5 Verification Tag [Normal verification]
3029 *
3030 * Inputs
3031 * (endpoint, asoc, chunk)
3032 *
3033 * Outputs
3034 * (asoc, reply_msg, msg_up, timers, counters)
3035 *
3036 * The return value is the disposition of the chunk.
3037 */
3038sctp_disposition_t sctp_sf_eat_sack_6_2(const struct sctp_endpoint *ep,
3039 const struct sctp_association *asoc,
3040 const sctp_subtype_t type,
3041 void *arg,
3042 sctp_cmd_seq_t *commands)
3043{
3044 struct sctp_chunk *chunk = arg;
3045 sctp_sackhdr_t *sackh;
3046 __u32 ctsn;
3047
3048 if (!sctp_vtag_verify(chunk, asoc))
3049 return sctp_sf_pdiscard(ep, asoc, type, arg, commands);
3050
3051 /* Make sure that the SACK chunk has a valid length. */
3052 if (!sctp_chunk_length_valid(chunk, sizeof(sctp_sack_chunk_t)))
3053 return sctp_sf_violation_chunklen(ep, asoc, type, arg,
3054 commands);
3055
3056 /* Pull the SACK chunk from the data buffer */
3057 sackh = sctp_sm_pull_sack(chunk);
3058 /* Was this a bogus SACK? */
3059 if (!sackh)
3060 return sctp_sf_pdiscard(ep, asoc, type, arg, commands);
3061 chunk->subh.sack_hdr = sackh;
3062 ctsn = ntohl(sackh->cum_tsn_ack);
3063
3064 /* i) If Cumulative TSN Ack is less than the Cumulative TSN
3065 * Ack Point, then drop the SACK. Since Cumulative TSN
3066 * Ack is monotonically increasing, a SACK whose
3067 * Cumulative TSN Ack is less than the Cumulative TSN Ack
3068 * Point indicates an out-of-order SACK.
3069 */
3070 if (TSN_lt(ctsn, asoc->ctsn_ack_point)) {
3071 SCTP_DEBUG_PRINTK("ctsn %x\n", ctsn);
3072 SCTP_DEBUG_PRINTK("ctsn_ack_point %x\n", asoc->ctsn_ack_point);
3073 return SCTP_DISPOSITION_DISCARD;
3074 }
3075
Wei Yongjunaecedea2007-08-02 16:57:44 +08003076 /* If Cumulative TSN Ack beyond the max tsn currently
3077 * send, terminating the association and respond to the
3078 * sender with an ABORT.
3079 */
3080 if (!TSN_lt(ctsn, asoc->next_tsn))
3081 return sctp_sf_violation_ctsn(ep, asoc, type, arg, commands);
3082
Linus Torvalds1da177e2005-04-16 15:20:36 -07003083 /* Return this SACK for further processing. */
3084 sctp_add_cmd_sf(commands, SCTP_CMD_PROCESS_SACK, SCTP_SACKH(sackh));
3085
3086 /* Note: We do the rest of the work on the PROCESS_SACK
3087 * sideeffect.
3088 */
3089 return SCTP_DISPOSITION_CONSUME;
3090}
3091
3092/*
3093 * Generate an ABORT in response to a packet.
3094 *
Jerome Forissier047a2422005-04-28 11:58:43 -07003095 * Section: 8.4 Handle "Out of the blue" Packets, sctpimpguide 2.41
Linus Torvalds1da177e2005-04-16 15:20:36 -07003096 *
Jerome Forissier047a2422005-04-28 11:58:43 -07003097 * 8) The receiver should respond to the sender of the OOTB packet with
3098 * an ABORT. When sending the ABORT, the receiver of the OOTB packet
3099 * MUST fill in the Verification Tag field of the outbound packet
3100 * with the value found in the Verification Tag field of the OOTB
3101 * packet and set the T-bit in the Chunk Flags to indicate that the
3102 * Verification Tag is reflected. After sending this ABORT, the
3103 * receiver of the OOTB packet shall discard the OOTB packet and take
3104 * no further action.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003105 *
3106 * Verification Tag:
3107 *
3108 * The return value is the disposition of the chunk.
3109*/
Vlad Yasevichece25df2007-09-07 16:30:54 -04003110static sctp_disposition_t sctp_sf_tabort_8_4_8(const struct sctp_endpoint *ep,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003111 const struct sctp_association *asoc,
3112 const sctp_subtype_t type,
3113 void *arg,
3114 sctp_cmd_seq_t *commands)
3115{
3116 struct sctp_packet *packet = NULL;
3117 struct sctp_chunk *chunk = arg;
3118 struct sctp_chunk *abort;
3119
3120 packet = sctp_ootb_pkt_new(asoc, chunk);
3121
3122 if (packet) {
3123 /* Make an ABORT. The T bit will be set if the asoc
3124 * is NULL.
3125 */
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09003126 abort = sctp_make_abort(asoc, chunk, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003127 if (!abort) {
3128 sctp_ootb_pkt_free(packet);
3129 return SCTP_DISPOSITION_NOMEM;
3130 }
3131
Jerome Forissier047a2422005-04-28 11:58:43 -07003132 /* Reflect vtag if T-Bit is set */
3133 if (sctp_test_T_bit(abort))
3134 packet->vtag = ntohl(chunk->sctp_hdr->vtag);
3135
Linus Torvalds1da177e2005-04-16 15:20:36 -07003136 /* Set the skb to the belonging sock for accounting. */
3137 abort->skb->sk = ep->base.sk;
3138
3139 sctp_packet_append_chunk(packet, abort);
3140
3141 sctp_add_cmd_sf(commands, SCTP_CMD_SEND_PKT,
3142 SCTP_PACKET(packet));
3143
3144 SCTP_INC_STATS(SCTP_MIB_OUTCTRLCHUNKS);
3145
Vlad Yasevichd3f25962007-09-07 11:47:45 -04003146 sctp_sf_pdiscard(ep, asoc, type, arg, commands);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003147 return SCTP_DISPOSITION_CONSUME;
3148 }
3149
3150 return SCTP_DISPOSITION_NOMEM;
3151}
3152
3153/*
3154 * Received an ERROR chunk from peer. Generate SCTP_REMOTE_ERROR
3155 * event as ULP notification for each cause included in the chunk.
3156 *
3157 * API 5.3.1.3 - SCTP_REMOTE_ERROR
3158 *
3159 * The return value is the disposition of the chunk.
3160*/
3161sctp_disposition_t sctp_sf_operr_notify(const struct sctp_endpoint *ep,
3162 const struct sctp_association *asoc,
3163 const sctp_subtype_t type,
3164 void *arg,
3165 sctp_cmd_seq_t *commands)
3166{
3167 struct sctp_chunk *chunk = arg;
3168 struct sctp_ulpevent *ev;
3169
3170 if (!sctp_vtag_verify(chunk, asoc))
3171 return sctp_sf_pdiscard(ep, asoc, type, arg, commands);
3172
3173 /* Make sure that the ERROR chunk has a valid length. */
3174 if (!sctp_chunk_length_valid(chunk, sizeof(sctp_operr_chunk_t)))
3175 return sctp_sf_violation_chunklen(ep, asoc, type, arg,
3176 commands);
3177
3178 while (chunk->chunk_end > chunk->skb->data) {
3179 ev = sctp_ulpevent_make_remote_error(asoc, chunk, 0,
3180 GFP_ATOMIC);
3181 if (!ev)
3182 goto nomem;
3183
Ilpo Järvinenbc09dff2008-03-27 17:54:29 -07003184 sctp_add_cmd_sf(commands, SCTP_CMD_EVENT_ULP,
3185 SCTP_ULPEVENT(ev));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003186 sctp_add_cmd_sf(commands, SCTP_CMD_PROCESS_OPERR,
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09003187 SCTP_CHUNK(chunk));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003188 }
3189 return SCTP_DISPOSITION_CONSUME;
3190
3191nomem:
3192 return SCTP_DISPOSITION_NOMEM;
3193}
3194
3195/*
3196 * Process an inbound SHUTDOWN ACK.
3197 *
3198 * From Section 9.2:
3199 * Upon the receipt of the SHUTDOWN ACK, the SHUTDOWN sender shall
3200 * stop the T2-shutdown timer, send a SHUTDOWN COMPLETE chunk to its
3201 * peer, and remove all record of the association.
3202 *
3203 * The return value is the disposition.
3204 */
3205sctp_disposition_t sctp_sf_do_9_2_final(const struct sctp_endpoint *ep,
3206 const struct sctp_association *asoc,
3207 const sctp_subtype_t type,
3208 void *arg,
3209 sctp_cmd_seq_t *commands)
3210{
3211 struct sctp_chunk *chunk = arg;
3212 struct sctp_chunk *reply;
3213 struct sctp_ulpevent *ev;
3214
3215 if (!sctp_vtag_verify(chunk, asoc))
3216 return sctp_sf_pdiscard(ep, asoc, type, arg, commands);
3217
3218 /* Make sure that the SHUTDOWN_ACK chunk has a valid length. */
3219 if (!sctp_chunk_length_valid(chunk, sizeof(sctp_chunkhdr_t)))
3220 return sctp_sf_violation_chunklen(ep, asoc, type, arg,
3221 commands);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003222 /* 10.2 H) SHUTDOWN COMPLETE notification
3223 *
3224 * When SCTP completes the shutdown procedures (section 9.2) this
3225 * notification is passed to the upper layer.
3226 */
3227 ev = sctp_ulpevent_make_assoc_change(asoc, 0, SCTP_SHUTDOWN_COMP,
Vlad Yasevicha5a35e72007-03-23 11:34:08 -07003228 0, 0, 0, NULL, GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003229 if (!ev)
3230 goto nomem;
3231
Vladislav Yasevichdf7deeb2006-08-22 00:19:51 -07003232 /* ...send a SHUTDOWN COMPLETE chunk to its peer, */
3233 reply = sctp_make_shutdown_complete(asoc, chunk);
3234 if (!reply)
3235 goto nomem_chunk;
3236
3237 /* Do all the commands now (after allocation), so that we
3238 * have consistent state if memory allocation failes
3239 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003240 sctp_add_cmd_sf(commands, SCTP_CMD_EVENT_ULP, SCTP_ULPEVENT(ev));
3241
3242 /* Upon the receipt of the SHUTDOWN ACK, the SHUTDOWN sender shall
3243 * stop the T2-shutdown timer,
3244 */
3245 sctp_add_cmd_sf(commands, SCTP_CMD_TIMER_STOP,
3246 SCTP_TO(SCTP_EVENT_TIMEOUT_T2_SHUTDOWN));
3247
3248 sctp_add_cmd_sf(commands, SCTP_CMD_TIMER_STOP,
3249 SCTP_TO(SCTP_EVENT_TIMEOUT_T5_SHUTDOWN_GUARD));
3250
Linus Torvalds1da177e2005-04-16 15:20:36 -07003251 sctp_add_cmd_sf(commands, SCTP_CMD_NEW_STATE,
3252 SCTP_STATE(SCTP_STATE_CLOSED));
3253 SCTP_INC_STATS(SCTP_MIB_SHUTDOWNS);
3254 SCTP_DEC_STATS(SCTP_MIB_CURRESTAB);
3255 sctp_add_cmd_sf(commands, SCTP_CMD_REPLY, SCTP_CHUNK(reply));
3256
3257 /* ...and remove all record of the association. */
3258 sctp_add_cmd_sf(commands, SCTP_CMD_DELETE_TCB, SCTP_NULL());
3259 return SCTP_DISPOSITION_DELETE_TCB;
3260
Vladislav Yasevichdf7deeb2006-08-22 00:19:51 -07003261nomem_chunk:
3262 sctp_ulpevent_free(ev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003263nomem:
3264 return SCTP_DISPOSITION_NOMEM;
3265}
3266
3267/*
Jerome Forissier047a2422005-04-28 11:58:43 -07003268 * RFC 2960, 8.4 - Handle "Out of the blue" Packets, sctpimpguide 2.41.
3269 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07003270 * 5) If the packet contains a SHUTDOWN ACK chunk, the receiver should
3271 * respond to the sender of the OOTB packet with a SHUTDOWN COMPLETE.
3272 * When sending the SHUTDOWN COMPLETE, the receiver of the OOTB
3273 * packet must fill in the Verification Tag field of the outbound
3274 * packet with the Verification Tag received in the SHUTDOWN ACK and
Jerome Forissier047a2422005-04-28 11:58:43 -07003275 * set the T-bit in the Chunk Flags to indicate that the Verification
3276 * Tag is reflected.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003277 *
3278 * 8) The receiver should respond to the sender of the OOTB packet with
3279 * an ABORT. When sending the ABORT, the receiver of the OOTB packet
3280 * MUST fill in the Verification Tag field of the outbound packet
3281 * with the value found in the Verification Tag field of the OOTB
Jerome Forissier047a2422005-04-28 11:58:43 -07003282 * packet and set the T-bit in the Chunk Flags to indicate that the
3283 * Verification Tag is reflected. After sending this ABORT, the
3284 * receiver of the OOTB packet shall discard the OOTB packet and take
3285 * no further action.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003286 */
3287sctp_disposition_t sctp_sf_ootb(const struct sctp_endpoint *ep,
3288 const struct sctp_association *asoc,
3289 const sctp_subtype_t type,
3290 void *arg,
3291 sctp_cmd_seq_t *commands)
3292{
3293 struct sctp_chunk *chunk = arg;
3294 struct sk_buff *skb = chunk->skb;
3295 sctp_chunkhdr_t *ch;
3296 __u8 *ch_end;
3297 int ootb_shut_ack = 0;
3298
3299 SCTP_INC_STATS(SCTP_MIB_OUTOFBLUES);
3300
3301 ch = (sctp_chunkhdr_t *) chunk->chunk_hdr;
3302 do {
Vlad Yasevichece25df2007-09-07 16:30:54 -04003303 /* Report violation if the chunk is less then minimal */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003304 if (ntohs(ch->length) < sizeof(sctp_chunkhdr_t))
Vlad Yasevichece25df2007-09-07 16:30:54 -04003305 return sctp_sf_violation_chunklen(ep, asoc, type, arg,
3306 commands);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003307
Vlad Yasevichece25df2007-09-07 16:30:54 -04003308 /* Now that we know we at least have a chunk header,
3309 * do things that are type appropriate.
3310 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003311 if (SCTP_CID_SHUTDOWN_ACK == ch->type)
3312 ootb_shut_ack = 1;
3313
3314 /* RFC 2960, Section 3.3.7
3315 * Moreover, under any circumstances, an endpoint that
3316 * receives an ABORT MUST NOT respond to that ABORT by
3317 * sending an ABORT of its own.
3318 */
3319 if (SCTP_CID_ABORT == ch->type)
3320 return sctp_sf_pdiscard(ep, asoc, type, arg, commands);
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09003321
Vlad Yasevichece25df2007-09-07 16:30:54 -04003322 /* Report violation if chunk len overflows */
3323 ch_end = ((__u8 *)ch) + WORD_ROUND(ntohs(ch->length));
3324 if (ch_end > skb_tail_pointer(skb))
3325 return sctp_sf_violation_chunklen(ep, asoc, type, arg,
3326 commands);
3327
Linus Torvalds1da177e2005-04-16 15:20:36 -07003328 ch = (sctp_chunkhdr_t *) ch_end;
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -07003329 } while (ch_end < skb_tail_pointer(skb));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003330
3331 if (ootb_shut_ack)
Vlad Yasevichd3f25962007-09-07 11:47:45 -04003332 return sctp_sf_shut_8_4_5(ep, asoc, type, arg, commands);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003333 else
Vlad Yasevichd3f25962007-09-07 11:47:45 -04003334 return sctp_sf_tabort_8_4_8(ep, asoc, type, arg, commands);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003335}
3336
3337/*
3338 * Handle an "Out of the blue" SHUTDOWN ACK.
3339 *
Jerome Forissier047a2422005-04-28 11:58:43 -07003340 * Section: 8.4 5, sctpimpguide 2.41.
3341 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07003342 * 5) If the packet contains a SHUTDOWN ACK chunk, the receiver should
Jerome Forissier047a2422005-04-28 11:58:43 -07003343 * respond to the sender of the OOTB packet with a SHUTDOWN COMPLETE.
3344 * When sending the SHUTDOWN COMPLETE, the receiver of the OOTB
3345 * packet must fill in the Verification Tag field of the outbound
3346 * packet with the Verification Tag received in the SHUTDOWN ACK and
3347 * set the T-bit in the Chunk Flags to indicate that the Verification
3348 * Tag is reflected.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003349 *
3350 * Inputs
3351 * (endpoint, asoc, type, arg, commands)
3352 *
3353 * Outputs
3354 * (sctp_disposition_t)
3355 *
3356 * The return value is the disposition of the chunk.
3357 */
3358static sctp_disposition_t sctp_sf_shut_8_4_5(const struct sctp_endpoint *ep,
3359 const struct sctp_association *asoc,
3360 const sctp_subtype_t type,
3361 void *arg,
3362 sctp_cmd_seq_t *commands)
3363{
3364 struct sctp_packet *packet = NULL;
3365 struct sctp_chunk *chunk = arg;
3366 struct sctp_chunk *shut;
3367
3368 packet = sctp_ootb_pkt_new(asoc, chunk);
3369
3370 if (packet) {
3371 /* Make an SHUTDOWN_COMPLETE.
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09003372 * The T bit will be set if the asoc is NULL.
3373 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003374 shut = sctp_make_shutdown_complete(asoc, chunk);
3375 if (!shut) {
3376 sctp_ootb_pkt_free(packet);
3377 return SCTP_DISPOSITION_NOMEM;
3378 }
3379
Jerome Forissier047a2422005-04-28 11:58:43 -07003380 /* Reflect vtag if T-Bit is set */
3381 if (sctp_test_T_bit(shut))
3382 packet->vtag = ntohl(chunk->sctp_hdr->vtag);
3383
Linus Torvalds1da177e2005-04-16 15:20:36 -07003384 /* Set the skb to the belonging sock for accounting. */
3385 shut->skb->sk = ep->base.sk;
3386
3387 sctp_packet_append_chunk(packet, shut);
3388
3389 sctp_add_cmd_sf(commands, SCTP_CMD_SEND_PKT,
3390 SCTP_PACKET(packet));
3391
3392 SCTP_INC_STATS(SCTP_MIB_OUTCTRLCHUNKS);
3393
3394 /* If the chunk length is invalid, we don't want to process
3395 * the reset of the packet.
3396 */
3397 if (!sctp_chunk_length_valid(chunk, sizeof(sctp_chunkhdr_t)))
3398 return sctp_sf_pdiscard(ep, asoc, type, arg, commands);
3399
Vlad Yasevichd3f25962007-09-07 11:47:45 -04003400 /* We need to discard the rest of the packet to prevent
3401 * potential bomming attacks from additional bundled chunks.
3402 * This is documented in SCTP Threats ID.
3403 */
3404 return sctp_sf_pdiscard(ep, asoc, type, arg, commands);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003405 }
3406
3407 return SCTP_DISPOSITION_NOMEM;
3408}
3409
3410/*
3411 * Handle SHUTDOWN ACK in COOKIE_ECHOED or COOKIE_WAIT state.
3412 *
3413 * Verification Tag: 8.5.1 E) Rules for packet carrying a SHUTDOWN ACK
3414 * If the receiver is in COOKIE-ECHOED or COOKIE-WAIT state the
3415 * procedures in section 8.4 SHOULD be followed, in other words it
3416 * should be treated as an Out Of The Blue packet.
3417 * [This means that we do NOT check the Verification Tag on these
3418 * chunks. --piggy ]
3419 *
3420 */
3421sctp_disposition_t sctp_sf_do_8_5_1_E_sa(const struct sctp_endpoint *ep,
3422 const struct sctp_association *asoc,
3423 const sctp_subtype_t type,
3424 void *arg,
3425 sctp_cmd_seq_t *commands)
3426{
Vlad Yasevichece25df2007-09-07 16:30:54 -04003427 struct sctp_chunk *chunk = arg;
3428
3429 /* Make sure that the SHUTDOWN_ACK chunk has a valid length. */
3430 if (!sctp_chunk_length_valid(chunk, sizeof(sctp_chunkhdr_t)))
3431 return sctp_sf_violation_chunklen(ep, asoc, type, arg,
3432 commands);
3433
Linus Torvalds1da177e2005-04-16 15:20:36 -07003434 /* Although we do have an association in this case, it corresponds
3435 * to a restarted association. So the packet is treated as an OOTB
3436 * packet and the state function that handles OOTB SHUTDOWN_ACK is
3437 * called with a NULL association.
3438 */
Wei Yongjun8190f892008-09-08 12:13:55 +08003439 SCTP_INC_STATS(SCTP_MIB_OUTOFBLUES);
3440
Linus Torvalds1da177e2005-04-16 15:20:36 -07003441 return sctp_sf_shut_8_4_5(ep, NULL, type, arg, commands);
3442}
3443
3444/* ADDIP Section 4.2 Upon reception of an ASCONF Chunk. */
3445sctp_disposition_t sctp_sf_do_asconf(const struct sctp_endpoint *ep,
3446 const struct sctp_association *asoc,
3447 const sctp_subtype_t type, void *arg,
3448 sctp_cmd_seq_t *commands)
3449{
3450 struct sctp_chunk *chunk = arg;
3451 struct sctp_chunk *asconf_ack = NULL;
Wei Yongjun6f4c6182007-09-19 17:19:52 +08003452 struct sctp_paramhdr *err_param = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003453 sctp_addiphdr_t *hdr;
Wei Yongjun6f4c6182007-09-19 17:19:52 +08003454 union sctp_addr_param *addr_param;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003455 __u32 serial;
Wei Yongjun6f4c6182007-09-19 17:19:52 +08003456 int length;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003457
3458 if (!sctp_vtag_verify(chunk, asoc)) {
3459 sctp_add_cmd_sf(commands, SCTP_CMD_REPORT_BAD_TAG,
3460 SCTP_NULL());
3461 return sctp_sf_pdiscard(ep, asoc, type, arg, commands);
3462 }
3463
Vlad Yasevich6afd2e82007-12-20 14:08:04 -08003464 /* ADD-IP: Section 4.1.1
3465 * This chunk MUST be sent in an authenticated way by using
3466 * the mechanism defined in [I-D.ietf-tsvwg-sctp-auth]. If this chunk
3467 * is received unauthenticated it MUST be silently discarded as
3468 * described in [I-D.ietf-tsvwg-sctp-auth].
3469 */
3470 if (!sctp_addip_noauth && !chunk->auth)
3471 return sctp_sf_discard_chunk(ep, asoc, type, arg, commands);
3472
Linus Torvalds1da177e2005-04-16 15:20:36 -07003473 /* Make sure that the ASCONF ADDIP chunk has a valid length. */
3474 if (!sctp_chunk_length_valid(chunk, sizeof(sctp_addip_chunk_t)))
3475 return sctp_sf_violation_chunklen(ep, asoc, type, arg,
3476 commands);
3477
3478 hdr = (sctp_addiphdr_t *)chunk->skb->data;
3479 serial = ntohl(hdr->serial);
3480
Wei Yongjun6f4c6182007-09-19 17:19:52 +08003481 addr_param = (union sctp_addr_param *)hdr->params;
3482 length = ntohs(addr_param->p.length);
3483 if (length < sizeof(sctp_paramhdr_t))
Wei Yongjunba016672008-09-30 05:32:24 -07003484 return sctp_sf_violation_paramlen(ep, asoc, type, arg,
Wei Yongjun6f4c6182007-09-19 17:19:52 +08003485 (void *)addr_param, commands);
3486
3487 /* Verify the ASCONF chunk before processing it. */
3488 if (!sctp_verify_asconf(asoc,
Vlad Yasevicha08de642007-12-20 14:11:47 -08003489 (sctp_paramhdr_t *)((void *)addr_param + length),
3490 (void *)chunk->chunk_end,
3491 &err_param))
Wei Yongjunba016672008-09-30 05:32:24 -07003492 return sctp_sf_violation_paramlen(ep, asoc, type, arg,
3493 (void *)err_param, commands);
Wei Yongjun6f4c6182007-09-19 17:19:52 +08003494
Vlad Yasevicha08de642007-12-20 14:11:47 -08003495 /* ADDIP 5.2 E1) Compare the value of the serial number to the value
Linus Torvalds1da177e2005-04-16 15:20:36 -07003496 * the endpoint stored in a new association variable
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09003497 * 'Peer-Serial-Number'.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003498 */
3499 if (serial == asoc->peer.addip_serial + 1) {
Vlad Yasevicha08de642007-12-20 14:11:47 -08003500 /* If this is the first instance of ASCONF in the packet,
3501 * we can clean our old ASCONF-ACKs.
3502 */
3503 if (!chunk->has_asconf)
3504 sctp_assoc_clean_asconf_ack_cache(asoc);
3505
3506 /* ADDIP 5.2 E4) When the Sequence Number matches the next one
3507 * expected, process the ASCONF as described below and after
3508 * processing the ASCONF Chunk, append an ASCONF-ACK Chunk to
3509 * the response packet and cache a copy of it (in the event it
3510 * later needs to be retransmitted).
3511 *
3512 * Essentially, do V1-V5.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003513 */
3514 asconf_ack = sctp_process_asconf((struct sctp_association *)
3515 asoc, chunk);
3516 if (!asconf_ack)
3517 return SCTP_DISPOSITION_NOMEM;
Vlad Yasevicha08de642007-12-20 14:11:47 -08003518 } else if (serial < asoc->peer.addip_serial + 1) {
3519 /* ADDIP 5.2 E2)
3520 * If the value found in the Sequence Number is less than the
3521 * ('Peer- Sequence-Number' + 1), simply skip to the next
3522 * ASCONF, and include in the outbound response packet
3523 * any previously cached ASCONF-ACK response that was
3524 * sent and saved that matches the Sequence Number of the
3525 * ASCONF. Note: It is possible that no cached ASCONF-ACK
3526 * Chunk exists. This will occur when an older ASCONF
3527 * arrives out of order. In such a case, the receiver
3528 * should skip the ASCONF Chunk and not include ASCONF-ACK
3529 * Chunk for that chunk.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003530 */
Vlad Yasevicha08de642007-12-20 14:11:47 -08003531 asconf_ack = sctp_assoc_lookup_asconf_ack(asoc, hdr->serial);
3532 if (!asconf_ack)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003533 return SCTP_DISPOSITION_DISCARD;
3534 } else {
Vlad Yasevicha08de642007-12-20 14:11:47 -08003535 /* ADDIP 5.2 E5) Otherwise, the ASCONF Chunk is discarded since
Linus Torvalds1da177e2005-04-16 15:20:36 -07003536 * it must be either a stale packet or from an attacker.
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09003537 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003538 return SCTP_DISPOSITION_DISCARD;
3539 }
3540
Vlad Yasevicha08de642007-12-20 14:11:47 -08003541 /* ADDIP 5.2 E6) The destination address of the SCTP packet
3542 * containing the ASCONF-ACK Chunks MUST be the source address of
3543 * the SCTP packet that held the ASCONF Chunks.
3544 *
3545 * To do this properly, we'll set the destination address of the chunk
3546 * and at the transmit time, will try look up the transport to use.
3547 * Since ASCONFs may be bundled, the correct transport may not be
3548 * created untill we process the entire packet, thus this workaround.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003549 */
Vlad Yasevicha08de642007-12-20 14:11:47 -08003550 asconf_ack->dest = chunk->source;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003551 sctp_add_cmd_sf(commands, SCTP_CMD_REPLY, SCTP_CHUNK(asconf_ack));
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09003552
Linus Torvalds1da177e2005-04-16 15:20:36 -07003553 return SCTP_DISPOSITION_CONSUME;
3554}
3555
3556/*
3557 * ADDIP Section 4.3 General rules for address manipulation
3558 * When building TLV parameters for the ASCONF Chunk that will add or
3559 * delete IP addresses the D0 to D13 rules should be applied:
3560 */
3561sctp_disposition_t sctp_sf_do_asconf_ack(const struct sctp_endpoint *ep,
3562 const struct sctp_association *asoc,
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09003563 const sctp_subtype_t type, void *arg,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003564 sctp_cmd_seq_t *commands)
3565{
3566 struct sctp_chunk *asconf_ack = arg;
3567 struct sctp_chunk *last_asconf = asoc->addip_last_asconf;
3568 struct sctp_chunk *abort;
Wei Yongjun6f4c6182007-09-19 17:19:52 +08003569 struct sctp_paramhdr *err_param = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003570 sctp_addiphdr_t *addip_hdr;
3571 __u32 sent_serial, rcvd_serial;
3572
3573 if (!sctp_vtag_verify(asconf_ack, asoc)) {
3574 sctp_add_cmd_sf(commands, SCTP_CMD_REPORT_BAD_TAG,
3575 SCTP_NULL());
3576 return sctp_sf_pdiscard(ep, asoc, type, arg, commands);
3577 }
3578
Vlad Yasevich6afd2e82007-12-20 14:08:04 -08003579 /* ADD-IP, Section 4.1.2:
3580 * This chunk MUST be sent in an authenticated way by using
3581 * the mechanism defined in [I-D.ietf-tsvwg-sctp-auth]. If this chunk
3582 * is received unauthenticated it MUST be silently discarded as
3583 * described in [I-D.ietf-tsvwg-sctp-auth].
3584 */
3585 if (!sctp_addip_noauth && !asconf_ack->auth)
3586 return sctp_sf_discard_chunk(ep, asoc, type, arg, commands);
3587
Linus Torvalds1da177e2005-04-16 15:20:36 -07003588 /* Make sure that the ADDIP chunk has a valid length. */
3589 if (!sctp_chunk_length_valid(asconf_ack, sizeof(sctp_addip_chunk_t)))
3590 return sctp_sf_violation_chunklen(ep, asoc, type, arg,
3591 commands);
3592
3593 addip_hdr = (sctp_addiphdr_t *)asconf_ack->skb->data;
3594 rcvd_serial = ntohl(addip_hdr->serial);
3595
Wei Yongjun6f4c6182007-09-19 17:19:52 +08003596 /* Verify the ASCONF-ACK chunk before processing it. */
3597 if (!sctp_verify_asconf(asoc,
3598 (sctp_paramhdr_t *)addip_hdr->params,
3599 (void *)asconf_ack->chunk_end,
3600 &err_param))
Wei Yongjunba016672008-09-30 05:32:24 -07003601 return sctp_sf_violation_paramlen(ep, asoc, type, arg,
3602 (void *)err_param, commands);
Wei Yongjun6f4c6182007-09-19 17:19:52 +08003603
Linus Torvalds1da177e2005-04-16 15:20:36 -07003604 if (last_asconf) {
3605 addip_hdr = (sctp_addiphdr_t *)last_asconf->subh.addip_hdr;
3606 sent_serial = ntohl(addip_hdr->serial);
3607 } else {
3608 sent_serial = asoc->addip_serial - 1;
3609 }
3610
3611 /* D0) If an endpoint receives an ASCONF-ACK that is greater than or
3612 * equal to the next serial number to be used but no ASCONF chunk is
3613 * outstanding the endpoint MUST ABORT the association. Note that a
3614 * sequence number is greater than if it is no more than 2^^31-1
3615 * larger than the current sequence number (using serial arithmetic).
3616 */
3617 if (ADDIP_SERIAL_gte(rcvd_serial, sent_serial + 1) &&
3618 !(asoc->addip_last_asconf)) {
3619 abort = sctp_make_abort(asoc, asconf_ack,
3620 sizeof(sctp_errhdr_t));
3621 if (abort) {
Wei Yongjun00f1c2d2007-08-21 15:50:01 +08003622 sctp_init_cause(abort, SCTP_ERROR_ASCONF_ACK, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003623 sctp_add_cmd_sf(commands, SCTP_CMD_REPLY,
3624 SCTP_CHUNK(abort));
3625 }
3626 /* We are going to ABORT, so we might as well stop
3627 * processing the rest of the chunks in the packet.
3628 */
3629 sctp_add_cmd_sf(commands, SCTP_CMD_TIMER_STOP,
3630 SCTP_TO(SCTP_EVENT_TIMEOUT_T4_RTO));
3631 sctp_add_cmd_sf(commands, SCTP_CMD_DISCARD_PACKET,SCTP_NULL());
Sridhar Samudrala8de8c872006-05-19 10:58:12 -07003632 sctp_add_cmd_sf(commands, SCTP_CMD_SET_SK_ERR,
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09003633 SCTP_ERROR(ECONNABORTED));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003634 sctp_add_cmd_sf(commands, SCTP_CMD_ASSOC_FAILED,
Al Viro5be291f2006-11-20 17:01:06 -08003635 SCTP_PERR(SCTP_ERROR_ASCONF_ACK));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003636 SCTP_INC_STATS(SCTP_MIB_ABORTEDS);
3637 SCTP_DEC_STATS(SCTP_MIB_CURRESTAB);
3638 return SCTP_DISPOSITION_ABORT;
3639 }
3640
3641 if ((rcvd_serial == sent_serial) && asoc->addip_last_asconf) {
3642 sctp_add_cmd_sf(commands, SCTP_CMD_TIMER_STOP,
3643 SCTP_TO(SCTP_EVENT_TIMEOUT_T4_RTO));
3644
3645 if (!sctp_process_asconf_ack((struct sctp_association *)asoc,
3646 asconf_ack))
3647 return SCTP_DISPOSITION_CONSUME;
3648
3649 abort = sctp_make_abort(asoc, asconf_ack,
3650 sizeof(sctp_errhdr_t));
3651 if (abort) {
Wei Yongjun00f1c2d2007-08-21 15:50:01 +08003652 sctp_init_cause(abort, SCTP_ERROR_RSRC_LOW, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003653 sctp_add_cmd_sf(commands, SCTP_CMD_REPLY,
3654 SCTP_CHUNK(abort));
3655 }
3656 /* We are going to ABORT, so we might as well stop
3657 * processing the rest of the chunks in the packet.
3658 */
3659 sctp_add_cmd_sf(commands, SCTP_CMD_DISCARD_PACKET,SCTP_NULL());
Sridhar Samudrala8de8c872006-05-19 10:58:12 -07003660 sctp_add_cmd_sf(commands, SCTP_CMD_SET_SK_ERR,
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09003661 SCTP_ERROR(ECONNABORTED));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003662 sctp_add_cmd_sf(commands, SCTP_CMD_ASSOC_FAILED,
Al Viro5be291f2006-11-20 17:01:06 -08003663 SCTP_PERR(SCTP_ERROR_ASCONF_ACK));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003664 SCTP_INC_STATS(SCTP_MIB_ABORTEDS);
3665 SCTP_DEC_STATS(SCTP_MIB_CURRESTAB);
3666 return SCTP_DISPOSITION_ABORT;
3667 }
3668
3669 return SCTP_DISPOSITION_DISCARD;
3670}
3671
3672/*
3673 * PR-SCTP Section 3.6 Receiver Side Implementation of PR-SCTP
3674 *
3675 * When a FORWARD TSN chunk arrives, the data receiver MUST first update
3676 * its cumulative TSN point to the value carried in the FORWARD TSN
3677 * chunk, and then MUST further advance its cumulative TSN point locally
3678 * if possible.
3679 * After the above processing, the data receiver MUST stop reporting any
3680 * missing TSNs earlier than or equal to the new cumulative TSN point.
3681 *
3682 * Verification Tag: 8.5 Verification Tag [Normal verification]
3683 *
3684 * The return value is the disposition of the chunk.
3685 */
3686sctp_disposition_t sctp_sf_eat_fwd_tsn(const struct sctp_endpoint *ep,
3687 const struct sctp_association *asoc,
3688 const sctp_subtype_t type,
3689 void *arg,
3690 sctp_cmd_seq_t *commands)
3691{
3692 struct sctp_chunk *chunk = arg;
3693 struct sctp_fwdtsn_hdr *fwdtsn_hdr;
Wei Yongjun9fcb95a2008-12-25 16:58:11 -08003694 struct sctp_fwdtsn_skip *skip;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003695 __u16 len;
3696 __u32 tsn;
3697
3698 if (!sctp_vtag_verify(chunk, asoc)) {
3699 sctp_add_cmd_sf(commands, SCTP_CMD_REPORT_BAD_TAG,
3700 SCTP_NULL());
3701 return sctp_sf_pdiscard(ep, asoc, type, arg, commands);
3702 }
3703
3704 /* Make sure that the FORWARD_TSN chunk has valid length. */
3705 if (!sctp_chunk_length_valid(chunk, sizeof(struct sctp_fwdtsn_chunk)))
3706 return sctp_sf_violation_chunklen(ep, asoc, type, arg,
3707 commands);
3708
3709 fwdtsn_hdr = (struct sctp_fwdtsn_hdr *)chunk->skb->data;
3710 chunk->subh.fwdtsn_hdr = fwdtsn_hdr;
3711 len = ntohs(chunk->chunk_hdr->length);
3712 len -= sizeof(struct sctp_chunkhdr);
3713 skb_pull(chunk->skb, len);
3714
3715 tsn = ntohl(fwdtsn_hdr->new_cum_tsn);
Harvey Harrison0dc47872008-03-05 20:47:47 -08003716 SCTP_DEBUG_PRINTK("%s: TSN 0x%x.\n", __func__, tsn);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003717
3718 /* The TSN is too high--silently discard the chunk and count on it
3719 * getting retransmitted later.
3720 */
3721 if (sctp_tsnmap_check(&asoc->peer.tsn_map, tsn) < 0)
3722 goto discard_noforce;
3723
Wei Yongjun9fcb95a2008-12-25 16:58:11 -08003724 /* Silently discard the chunk if stream-id is not valid */
3725 sctp_walk_fwdtsn(skip, chunk) {
3726 if (ntohs(skip->stream) >= asoc->c.sinit_max_instreams)
3727 goto discard_noforce;
3728 }
3729
Linus Torvalds1da177e2005-04-16 15:20:36 -07003730 sctp_add_cmd_sf(commands, SCTP_CMD_REPORT_FWDTSN, SCTP_U32(tsn));
3731 if (len > sizeof(struct sctp_fwdtsn_hdr))
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09003732 sctp_add_cmd_sf(commands, SCTP_CMD_PROCESS_FWDTSN,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003733 SCTP_CHUNK(chunk));
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09003734
Linus Torvalds1da177e2005-04-16 15:20:36 -07003735 /* Count this as receiving DATA. */
3736 if (asoc->autoclose) {
3737 sctp_add_cmd_sf(commands, SCTP_CMD_TIMER_RESTART,
3738 SCTP_TO(SCTP_EVENT_TIMEOUT_AUTOCLOSE));
3739 }
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09003740
Linus Torvalds1da177e2005-04-16 15:20:36 -07003741 /* FIXME: For now send a SACK, but DATA processing may
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09003742 * send another.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003743 */
3744 sctp_add_cmd_sf(commands, SCTP_CMD_GEN_SACK, SCTP_NOFORCE());
Linus Torvalds1da177e2005-04-16 15:20:36 -07003745
3746 return SCTP_DISPOSITION_CONSUME;
3747
3748discard_noforce:
3749 return SCTP_DISPOSITION_DISCARD;
3750}
3751
3752sctp_disposition_t sctp_sf_eat_fwd_tsn_fast(
3753 const struct sctp_endpoint *ep,
3754 const struct sctp_association *asoc,
3755 const sctp_subtype_t type,
3756 void *arg,
3757 sctp_cmd_seq_t *commands)
3758{
3759 struct sctp_chunk *chunk = arg;
3760 struct sctp_fwdtsn_hdr *fwdtsn_hdr;
Wei Yongjun9fcb95a2008-12-25 16:58:11 -08003761 struct sctp_fwdtsn_skip *skip;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003762 __u16 len;
3763 __u32 tsn;
3764
3765 if (!sctp_vtag_verify(chunk, asoc)) {
3766 sctp_add_cmd_sf(commands, SCTP_CMD_REPORT_BAD_TAG,
3767 SCTP_NULL());
3768 return sctp_sf_pdiscard(ep, asoc, type, arg, commands);
3769 }
3770
3771 /* Make sure that the FORWARD_TSN chunk has a valid length. */
3772 if (!sctp_chunk_length_valid(chunk, sizeof(struct sctp_fwdtsn_chunk)))
3773 return sctp_sf_violation_chunklen(ep, asoc, type, arg,
3774 commands);
3775
3776 fwdtsn_hdr = (struct sctp_fwdtsn_hdr *)chunk->skb->data;
3777 chunk->subh.fwdtsn_hdr = fwdtsn_hdr;
3778 len = ntohs(chunk->chunk_hdr->length);
3779 len -= sizeof(struct sctp_chunkhdr);
3780 skb_pull(chunk->skb, len);
3781
3782 tsn = ntohl(fwdtsn_hdr->new_cum_tsn);
Harvey Harrison0dc47872008-03-05 20:47:47 -08003783 SCTP_DEBUG_PRINTK("%s: TSN 0x%x.\n", __func__, tsn);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003784
3785 /* The TSN is too high--silently discard the chunk and count on it
3786 * getting retransmitted later.
3787 */
3788 if (sctp_tsnmap_check(&asoc->peer.tsn_map, tsn) < 0)
3789 goto gen_shutdown;
3790
Wei Yongjun9fcb95a2008-12-25 16:58:11 -08003791 /* Silently discard the chunk if stream-id is not valid */
3792 sctp_walk_fwdtsn(skip, chunk) {
3793 if (ntohs(skip->stream) >= asoc->c.sinit_max_instreams)
3794 goto gen_shutdown;
3795 }
3796
Linus Torvalds1da177e2005-04-16 15:20:36 -07003797 sctp_add_cmd_sf(commands, SCTP_CMD_REPORT_FWDTSN, SCTP_U32(tsn));
3798 if (len > sizeof(struct sctp_fwdtsn_hdr))
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09003799 sctp_add_cmd_sf(commands, SCTP_CMD_PROCESS_FWDTSN,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003800 SCTP_CHUNK(chunk));
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09003801
Linus Torvalds1da177e2005-04-16 15:20:36 -07003802 /* Go a head and force a SACK, since we are shutting down. */
3803gen_shutdown:
3804 /* Implementor's Guide.
3805 *
3806 * While in SHUTDOWN-SENT state, the SHUTDOWN sender MUST immediately
3807 * respond to each received packet containing one or more DATA chunk(s)
3808 * with a SACK, a SHUTDOWN chunk, and restart the T2-shutdown timer
3809 */
3810 sctp_add_cmd_sf(commands, SCTP_CMD_GEN_SHUTDOWN, SCTP_NULL());
3811 sctp_add_cmd_sf(commands, SCTP_CMD_GEN_SACK, SCTP_FORCE());
3812 sctp_add_cmd_sf(commands, SCTP_CMD_TIMER_RESTART,
3813 SCTP_TO(SCTP_EVENT_TIMEOUT_T2_SHUTDOWN));
3814
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09003815 return SCTP_DISPOSITION_CONSUME;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003816}
3817
3818/*
Vlad Yasevichbbd0d592007-10-03 17:51:34 -07003819 * SCTP-AUTH Section 6.3 Receving authenticated chukns
3820 *
3821 * The receiver MUST use the HMAC algorithm indicated in the HMAC
3822 * Identifier field. If this algorithm was not specified by the
3823 * receiver in the HMAC-ALGO parameter in the INIT or INIT-ACK chunk
3824 * during association setup, the AUTH chunk and all chunks after it MUST
3825 * be discarded and an ERROR chunk SHOULD be sent with the error cause
3826 * defined in Section 4.1.
3827 *
3828 * If an endpoint with no shared key receives a Shared Key Identifier
3829 * other than 0, it MUST silently discard all authenticated chunks. If
3830 * the endpoint has at least one endpoint pair shared key for the peer,
3831 * it MUST use the key specified by the Shared Key Identifier if a
3832 * key has been configured for that Shared Key Identifier. If no
3833 * endpoint pair shared key has been configured for that Shared Key
3834 * Identifier, all authenticated chunks MUST be silently discarded.
3835 *
3836 * Verification Tag: 8.5 Verification Tag [Normal verification]
3837 *
3838 * The return value is the disposition of the chunk.
3839 */
3840static sctp_ierror_t sctp_sf_authenticate(const struct sctp_endpoint *ep,
3841 const struct sctp_association *asoc,
3842 const sctp_subtype_t type,
3843 struct sctp_chunk *chunk)
3844{
3845 struct sctp_authhdr *auth_hdr;
3846 struct sctp_hmac *hmac;
3847 unsigned int sig_len;
3848 __u16 key_id;
3849 __u8 *save_digest;
3850 __u8 *digest;
3851
3852 /* Pull in the auth header, so we can do some more verification */
3853 auth_hdr = (struct sctp_authhdr *)chunk->skb->data;
3854 chunk->subh.auth_hdr = auth_hdr;
3855 skb_pull(chunk->skb, sizeof(struct sctp_authhdr));
3856
3857 /* Make sure that we suport the HMAC algorithm from the auth
3858 * chunk.
3859 */
3860 if (!sctp_auth_asoc_verify_hmac_id(asoc, auth_hdr->hmac_id))
3861 return SCTP_IERROR_AUTH_BAD_HMAC;
3862
3863 /* Make sure that the provided shared key identifier has been
3864 * configured
3865 */
3866 key_id = ntohs(auth_hdr->shkey_id);
3867 if (key_id != asoc->active_key_id && !sctp_auth_get_shkey(asoc, key_id))
3868 return SCTP_IERROR_AUTH_BAD_KEYID;
3869
3870
3871 /* Make sure that the length of the signature matches what
3872 * we expect.
3873 */
3874 sig_len = ntohs(chunk->chunk_hdr->length) - sizeof(sctp_auth_chunk_t);
3875 hmac = sctp_auth_get_hmac(ntohs(auth_hdr->hmac_id));
3876 if (sig_len != hmac->hmac_len)
3877 return SCTP_IERROR_PROTO_VIOLATION;
3878
3879 /* Now that we've done validation checks, we can compute and
3880 * verify the hmac. The steps involved are:
3881 * 1. Save the digest from the chunk.
3882 * 2. Zero out the digest in the chunk.
3883 * 3. Compute the new digest
3884 * 4. Compare saved and new digests.
3885 */
3886 digest = auth_hdr->hmac;
3887 skb_pull(chunk->skb, sig_len);
3888
3889 save_digest = kmemdup(digest, sig_len, GFP_ATOMIC);
3890 if (!save_digest)
3891 goto nomem;
3892
3893 memset(digest, 0, sig_len);
3894
3895 sctp_auth_calculate_hmac(asoc, chunk->skb,
3896 (struct sctp_auth_chunk *)chunk->chunk_hdr,
3897 GFP_ATOMIC);
3898
3899 /* Discard the packet if the digests do not match */
3900 if (memcmp(save_digest, digest, sig_len)) {
3901 kfree(save_digest);
3902 return SCTP_IERROR_BAD_SIG;
3903 }
3904
3905 kfree(save_digest);
3906 chunk->auth = 1;
3907
3908 return SCTP_IERROR_NO_ERROR;
3909nomem:
3910 return SCTP_IERROR_NOMEM;
3911}
3912
3913sctp_disposition_t sctp_sf_eat_auth(const struct sctp_endpoint *ep,
3914 const struct sctp_association *asoc,
3915 const sctp_subtype_t type,
3916 void *arg,
3917 sctp_cmd_seq_t *commands)
3918{
3919 struct sctp_authhdr *auth_hdr;
3920 struct sctp_chunk *chunk = arg;
3921 struct sctp_chunk *err_chunk;
3922 sctp_ierror_t error;
3923
Wei Yongjund2f19fa2008-02-05 03:02:26 -08003924 /* Make sure that the peer has AUTH capable */
3925 if (!asoc->peer.auth_capable)
3926 return sctp_sf_unk_chunk(ep, asoc, type, arg, commands);
3927
Vlad Yasevichbbd0d592007-10-03 17:51:34 -07003928 if (!sctp_vtag_verify(chunk, asoc)) {
3929 sctp_add_cmd_sf(commands, SCTP_CMD_REPORT_BAD_TAG,
3930 SCTP_NULL());
3931 return sctp_sf_pdiscard(ep, asoc, type, arg, commands);
3932 }
3933
3934 /* Make sure that the AUTH chunk has valid length. */
3935 if (!sctp_chunk_length_valid(chunk, sizeof(struct sctp_auth_chunk)))
3936 return sctp_sf_violation_chunklen(ep, asoc, type, arg,
3937 commands);
3938
3939 auth_hdr = (struct sctp_authhdr *)chunk->skb->data;
3940 error = sctp_sf_authenticate(ep, asoc, type, chunk);
3941 switch (error) {
3942 case SCTP_IERROR_AUTH_BAD_HMAC:
3943 /* Generate the ERROR chunk and discard the rest
3944 * of the packet
3945 */
3946 err_chunk = sctp_make_op_error(asoc, chunk,
3947 SCTP_ERROR_UNSUP_HMAC,
3948 &auth_hdr->hmac_id,
3949 sizeof(__u16));
3950 if (err_chunk) {
3951 sctp_add_cmd_sf(commands, SCTP_CMD_REPLY,
3952 SCTP_CHUNK(err_chunk));
3953 }
3954 /* Fall Through */
3955 case SCTP_IERROR_AUTH_BAD_KEYID:
3956 case SCTP_IERROR_BAD_SIG:
3957 return sctp_sf_pdiscard(ep, asoc, type, arg, commands);
3958 break;
3959 case SCTP_IERROR_PROTO_VIOLATION:
3960 return sctp_sf_violation_chunklen(ep, asoc, type, arg,
3961 commands);
3962 break;
3963 case SCTP_IERROR_NOMEM:
3964 return SCTP_DISPOSITION_NOMEM;
3965 default:
3966 break;
3967 }
3968
Vlad Yasevich65b07e52007-09-16 19:34:00 -07003969 if (asoc->active_key_id != ntohs(auth_hdr->shkey_id)) {
3970 struct sctp_ulpevent *ev;
3971
3972 ev = sctp_ulpevent_make_authkey(asoc, ntohs(auth_hdr->shkey_id),
3973 SCTP_AUTH_NEWKEY, GFP_ATOMIC);
3974
3975 if (!ev)
3976 return -ENOMEM;
3977
3978 sctp_add_cmd_sf(commands, SCTP_CMD_EVENT_ULP,
3979 SCTP_ULPEVENT(ev));
3980 }
3981
Vlad Yasevichbbd0d592007-10-03 17:51:34 -07003982 return SCTP_DISPOSITION_CONSUME;
3983}
3984
3985/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003986 * Process an unknown chunk.
3987 *
3988 * Section: 3.2. Also, 2.1 in the implementor's guide.
3989 *
3990 * Chunk Types are encoded such that the highest-order two bits specify
3991 * the action that must be taken if the processing endpoint does not
3992 * recognize the Chunk Type.
3993 *
3994 * 00 - Stop processing this SCTP packet and discard it, do not process
3995 * any further chunks within it.
3996 *
3997 * 01 - Stop processing this SCTP packet and discard it, do not process
3998 * any further chunks within it, and report the unrecognized
3999 * chunk in an 'Unrecognized Chunk Type'.
4000 *
4001 * 10 - Skip this chunk and continue processing.
4002 *
4003 * 11 - Skip this chunk and continue processing, but report in an ERROR
4004 * Chunk using the 'Unrecognized Chunk Type' cause of error.
4005 *
4006 * The return value is the disposition of the chunk.
4007 */
4008sctp_disposition_t sctp_sf_unk_chunk(const struct sctp_endpoint *ep,
4009 const struct sctp_association *asoc,
4010 const sctp_subtype_t type,
4011 void *arg,
4012 sctp_cmd_seq_t *commands)
4013{
4014 struct sctp_chunk *unk_chunk = arg;
4015 struct sctp_chunk *err_chunk;
4016 sctp_chunkhdr_t *hdr;
4017
4018 SCTP_DEBUG_PRINTK("Processing the unknown chunk id %d.\n", type.chunk);
4019
4020 if (!sctp_vtag_verify(unk_chunk, asoc))
4021 return sctp_sf_pdiscard(ep, asoc, type, arg, commands);
4022
4023 /* Make sure that the chunk has a valid length.
4024 * Since we don't know the chunk type, we use a general
4025 * chunkhdr structure to make a comparison.
4026 */
4027 if (!sctp_chunk_length_valid(unk_chunk, sizeof(sctp_chunkhdr_t)))
4028 return sctp_sf_violation_chunklen(ep, asoc, type, arg,
4029 commands);
4030
4031 switch (type.chunk & SCTP_CID_ACTION_MASK) {
4032 case SCTP_CID_ACTION_DISCARD:
4033 /* Discard the packet. */
4034 return sctp_sf_pdiscard(ep, asoc, type, arg, commands);
4035 break;
4036 case SCTP_CID_ACTION_DISCARD_ERR:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004037 /* Generate an ERROR chunk as response. */
4038 hdr = unk_chunk->chunk_hdr;
4039 err_chunk = sctp_make_op_error(asoc, unk_chunk,
4040 SCTP_ERROR_UNKNOWN_CHUNK, hdr,
4041 WORD_ROUND(ntohs(hdr->length)));
4042 if (err_chunk) {
4043 sctp_add_cmd_sf(commands, SCTP_CMD_REPLY,
4044 SCTP_CHUNK(err_chunk));
4045 }
Vlad Yasevich2e3216c2008-06-19 16:08:18 -07004046
4047 /* Discard the packet. */
4048 sctp_sf_pdiscard(ep, asoc, type, arg, commands);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004049 return SCTP_DISPOSITION_CONSUME;
4050 break;
4051 case SCTP_CID_ACTION_SKIP:
4052 /* Skip the chunk. */
4053 return SCTP_DISPOSITION_DISCARD;
4054 break;
4055 case SCTP_CID_ACTION_SKIP_ERR:
4056 /* Generate an ERROR chunk as response. */
4057 hdr = unk_chunk->chunk_hdr;
4058 err_chunk = sctp_make_op_error(asoc, unk_chunk,
4059 SCTP_ERROR_UNKNOWN_CHUNK, hdr,
4060 WORD_ROUND(ntohs(hdr->length)));
4061 if (err_chunk) {
4062 sctp_add_cmd_sf(commands, SCTP_CMD_REPLY,
4063 SCTP_CHUNK(err_chunk));
4064 }
4065 /* Skip the chunk. */
4066 return SCTP_DISPOSITION_CONSUME;
4067 break;
4068 default:
4069 break;
4070 }
4071
4072 return SCTP_DISPOSITION_DISCARD;
4073}
4074
4075/*
4076 * Discard the chunk.
4077 *
4078 * Section: 0.2, 5.2.3, 5.2.5, 5.2.6, 6.0, 8.4.6, 8.5.1c, 9.2
4079 * [Too numerous to mention...]
4080 * Verification Tag: No verification needed.
4081 * Inputs
4082 * (endpoint, asoc, chunk)
4083 *
4084 * Outputs
4085 * (asoc, reply_msg, msg_up, timers, counters)
4086 *
4087 * The return value is the disposition of the chunk.
4088 */
4089sctp_disposition_t sctp_sf_discard_chunk(const struct sctp_endpoint *ep,
4090 const struct sctp_association *asoc,
4091 const sctp_subtype_t type,
4092 void *arg,
4093 sctp_cmd_seq_t *commands)
4094{
Vlad Yasevichece25df2007-09-07 16:30:54 -04004095 struct sctp_chunk *chunk = arg;
4096
4097 /* Make sure that the chunk has a valid length.
4098 * Since we don't know the chunk type, we use a general
4099 * chunkhdr structure to make a comparison.
4100 */
4101 if (!sctp_chunk_length_valid(chunk, sizeof(sctp_chunkhdr_t)))
4102 return sctp_sf_violation_chunklen(ep, asoc, type, arg,
4103 commands);
4104
Linus Torvalds1da177e2005-04-16 15:20:36 -07004105 SCTP_DEBUG_PRINTK("Chunk %d is discarded\n", type.chunk);
4106 return SCTP_DISPOSITION_DISCARD;
4107}
4108
4109/*
4110 * Discard the whole packet.
4111 *
4112 * Section: 8.4 2)
4113 *
4114 * 2) If the OOTB packet contains an ABORT chunk, the receiver MUST
4115 * silently discard the OOTB packet and take no further action.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004116 *
4117 * Verification Tag: No verification necessary
4118 *
4119 * Inputs
4120 * (endpoint, asoc, chunk)
4121 *
4122 * Outputs
4123 * (asoc, reply_msg, msg_up, timers, counters)
4124 *
4125 * The return value is the disposition of the chunk.
4126 */
4127sctp_disposition_t sctp_sf_pdiscard(const struct sctp_endpoint *ep,
4128 const struct sctp_association *asoc,
4129 const sctp_subtype_t type,
4130 void *arg,
4131 sctp_cmd_seq_t *commands)
4132{
Sridhar Samudralaac0b0462006-08-22 00:15:33 -07004133 SCTP_INC_STATS(SCTP_MIB_IN_PKT_DISCARDS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004134 sctp_add_cmd_sf(commands, SCTP_CMD_DISCARD_PACKET, SCTP_NULL());
4135
4136 return SCTP_DISPOSITION_CONSUME;
4137}
4138
4139
4140/*
4141 * The other end is violating protocol.
4142 *
4143 * Section: Not specified
4144 * Verification Tag: Not specified
4145 * Inputs
4146 * (endpoint, asoc, chunk)
4147 *
4148 * Outputs
4149 * (asoc, reply_msg, msg_up, timers, counters)
4150 *
4151 * We simply tag the chunk as a violation. The state machine will log
4152 * the violation and continue.
4153 */
4154sctp_disposition_t sctp_sf_violation(const struct sctp_endpoint *ep,
4155 const struct sctp_association *asoc,
4156 const sctp_subtype_t type,
4157 void *arg,
4158 sctp_cmd_seq_t *commands)
4159{
Vlad Yasevichece25df2007-09-07 16:30:54 -04004160 struct sctp_chunk *chunk = arg;
4161
4162 /* Make sure that the chunk has a valid length. */
4163 if (!sctp_chunk_length_valid(chunk, sizeof(sctp_chunkhdr_t)))
4164 return sctp_sf_violation_chunklen(ep, asoc, type, arg,
4165 commands);
4166
Linus Torvalds1da177e2005-04-16 15:20:36 -07004167 return SCTP_DISPOSITION_VIOLATION;
4168}
4169
Linus Torvalds1da177e2005-04-16 15:20:36 -07004170/*
Wei Yongjunaecedea2007-08-02 16:57:44 +08004171 * Common function to handle a protocol violation.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004172 */
Wei Yongjunaecedea2007-08-02 16:57:44 +08004173static sctp_disposition_t sctp_sf_abort_violation(
Vlad Yasevichece25df2007-09-07 16:30:54 -04004174 const struct sctp_endpoint *ep,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004175 const struct sctp_association *asoc,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004176 void *arg,
Wei Yongjunaecedea2007-08-02 16:57:44 +08004177 sctp_cmd_seq_t *commands,
4178 const __u8 *payload,
4179 const size_t paylen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004180{
Vlad Yasevichece25df2007-09-07 16:30:54 -04004181 struct sctp_packet *packet = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004182 struct sctp_chunk *chunk = arg;
4183 struct sctp_chunk *abort = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004184
Vlad Yasevichbbd0d592007-10-03 17:51:34 -07004185 /* SCTP-AUTH, Section 6.3:
4186 * It should be noted that if the receiver wants to tear
4187 * down an association in an authenticated way only, the
4188 * handling of malformed packets should not result in
4189 * tearing down the association.
4190 *
4191 * This means that if we only want to abort associations
4192 * in an authenticated way (i.e AUTH+ABORT), then we
Oliver Pinterac461a02008-02-03 17:52:41 +02004193 * can't destroy this association just becuase the packet
Vlad Yasevichbbd0d592007-10-03 17:51:34 -07004194 * was malformed.
4195 */
4196 if (sctp_auth_recv_cid(SCTP_CID_ABORT, asoc))
4197 goto discard;
4198
Jesper Juhl9abed242007-11-11 23:57:49 +01004199 /* Make the abort chunk. */
4200 abort = sctp_make_abort_violation(asoc, chunk, payload, paylen);
4201 if (!abort)
4202 goto nomem;
4203
Vlad Yasevichece25df2007-09-07 16:30:54 -04004204 if (asoc) {
Gui Jianfengf4ad85c2008-04-12 18:39:34 -07004205 /* Treat INIT-ACK as a special case during COOKIE-WAIT. */
4206 if (chunk->chunk_hdr->type == SCTP_CID_INIT_ACK &&
4207 !asoc->peer.i.init_tag) {
4208 sctp_initack_chunk_t *initack;
4209
4210 initack = (sctp_initack_chunk_t *)chunk->chunk_hdr;
4211 if (!sctp_chunk_length_valid(chunk,
4212 sizeof(sctp_initack_chunk_t)))
4213 abort->chunk_hdr->flags |= SCTP_CHUNK_FLAG_T;
4214 else {
4215 unsigned int inittag;
4216
4217 inittag = ntohl(initack->init_hdr.init_tag);
4218 sctp_add_cmd_sf(commands, SCTP_CMD_UPDATE_INITTAG,
4219 SCTP_U32(inittag));
4220 }
4221 }
4222
Vlad Yasevichece25df2007-09-07 16:30:54 -04004223 sctp_add_cmd_sf(commands, SCTP_CMD_REPLY, SCTP_CHUNK(abort));
4224 SCTP_INC_STATS(SCTP_MIB_OUTCTRLCHUNKS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004225
Vlad Yasevichece25df2007-09-07 16:30:54 -04004226 if (asoc->state <= SCTP_STATE_COOKIE_ECHOED) {
4227 sctp_add_cmd_sf(commands, SCTP_CMD_TIMER_STOP,
4228 SCTP_TO(SCTP_EVENT_TIMEOUT_T1_INIT));
4229 sctp_add_cmd_sf(commands, SCTP_CMD_SET_SK_ERR,
4230 SCTP_ERROR(ECONNREFUSED));
4231 sctp_add_cmd_sf(commands, SCTP_CMD_INIT_FAILED,
4232 SCTP_PERR(SCTP_ERROR_PROTO_VIOLATION));
4233 } else {
4234 sctp_add_cmd_sf(commands, SCTP_CMD_SET_SK_ERR,
4235 SCTP_ERROR(ECONNABORTED));
4236 sctp_add_cmd_sf(commands, SCTP_CMD_ASSOC_FAILED,
4237 SCTP_PERR(SCTP_ERROR_PROTO_VIOLATION));
4238 SCTP_DEC_STATS(SCTP_MIB_CURRESTAB);
4239 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004240 } else {
Vlad Yasevichece25df2007-09-07 16:30:54 -04004241 packet = sctp_ootb_pkt_new(asoc, chunk);
4242
4243 if (!packet)
4244 goto nomem_pkt;
4245
4246 if (sctp_test_T_bit(abort))
4247 packet->vtag = ntohl(chunk->sctp_hdr->vtag);
4248
4249 abort->skb->sk = ep->base.sk;
4250
4251 sctp_packet_append_chunk(packet, abort);
4252
4253 sctp_add_cmd_sf(commands, SCTP_CMD_SEND_PKT,
4254 SCTP_PACKET(packet));
4255
4256 SCTP_INC_STATS(SCTP_MIB_OUTCTRLCHUNKS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004257 }
4258
Linus Torvalds1da177e2005-04-16 15:20:36 -07004259 SCTP_INC_STATS(SCTP_MIB_ABORTEDS);
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09004260
Vlad Yasevich56eb82b2008-10-09 14:33:01 -07004261discard:
4262 sctp_sf_pdiscard(ep, asoc, SCTP_ST_CHUNK(0), arg, commands);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004263 return SCTP_DISPOSITION_ABORT;
4264
Vlad Yasevichece25df2007-09-07 16:30:54 -04004265nomem_pkt:
4266 sctp_chunk_free(abort);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004267nomem:
4268 return SCTP_DISPOSITION_NOMEM;
4269}
4270
Wei Yongjunaecedea2007-08-02 16:57:44 +08004271/*
4272 * Handle a protocol violation when the chunk length is invalid.
Frederik Schwarzer025dfda2008-10-16 19:02:37 +02004273 * "Invalid" length is identified as smaller than the minimal length a
Wei Yongjunaecedea2007-08-02 16:57:44 +08004274 * given chunk can be. For example, a SACK chunk has invalid length
Frederik Schwarzer025dfda2008-10-16 19:02:37 +02004275 * if its length is set to be smaller than the size of sctp_sack_chunk_t.
Wei Yongjunaecedea2007-08-02 16:57:44 +08004276 *
4277 * We inform the other end by sending an ABORT with a Protocol Violation
4278 * error code.
4279 *
4280 * Section: Not specified
4281 * Verification Tag: Nothing to do
4282 * Inputs
4283 * (endpoint, asoc, chunk)
4284 *
4285 * Outputs
4286 * (reply_msg, msg_up, counters)
4287 *
4288 * Generate an ABORT chunk and terminate the association.
4289 */
4290static sctp_disposition_t sctp_sf_violation_chunklen(
4291 const struct sctp_endpoint *ep,
4292 const struct sctp_association *asoc,
4293 const sctp_subtype_t type,
4294 void *arg,
4295 sctp_cmd_seq_t *commands)
4296{
Florian Westphal24448442008-03-23 22:46:34 -07004297 static const char err_str[]="The following chunk had invalid length:";
Wei Yongjunaecedea2007-08-02 16:57:44 +08004298
Vlad Yasevichece25df2007-09-07 16:30:54 -04004299 return sctp_sf_abort_violation(ep, asoc, arg, commands, err_str,
Wei Yongjunaecedea2007-08-02 16:57:44 +08004300 sizeof(err_str));
4301}
4302
Wei Yongjun6f4c6182007-09-19 17:19:52 +08004303/*
4304 * Handle a protocol violation when the parameter length is invalid.
Frederik Schwarzer025dfda2008-10-16 19:02:37 +02004305 * "Invalid" length is identified as smaller than the minimal length a
Wei Yongjun6f4c6182007-09-19 17:19:52 +08004306 * given parameter can be.
4307 */
4308static sctp_disposition_t sctp_sf_violation_paramlen(
4309 const struct sctp_endpoint *ep,
4310 const struct sctp_association *asoc,
4311 const sctp_subtype_t type,
Wei Yongjunba016672008-09-30 05:32:24 -07004312 void *arg, void *ext,
4313 sctp_cmd_seq_t *commands)
4314{
4315 struct sctp_chunk *chunk = arg;
4316 struct sctp_paramhdr *param = ext;
4317 struct sctp_chunk *abort = NULL;
Wei Yongjun6f4c6182007-09-19 17:19:52 +08004318
Wei Yongjunba016672008-09-30 05:32:24 -07004319 if (sctp_auth_recv_cid(SCTP_CID_ABORT, asoc))
4320 goto discard;
4321
4322 /* Make the abort chunk. */
4323 abort = sctp_make_violation_paramlen(asoc, chunk, param);
4324 if (!abort)
4325 goto nomem;
4326
4327 sctp_add_cmd_sf(commands, SCTP_CMD_REPLY, SCTP_CHUNK(abort));
4328 SCTP_INC_STATS(SCTP_MIB_OUTCTRLCHUNKS);
4329
4330 sctp_add_cmd_sf(commands, SCTP_CMD_SET_SK_ERR,
4331 SCTP_ERROR(ECONNABORTED));
4332 sctp_add_cmd_sf(commands, SCTP_CMD_ASSOC_FAILED,
4333 SCTP_PERR(SCTP_ERROR_PROTO_VIOLATION));
4334 SCTP_DEC_STATS(SCTP_MIB_CURRESTAB);
Vlad Yasevich56eb82b2008-10-09 14:33:01 -07004335 SCTP_INC_STATS(SCTP_MIB_ABORTEDS);
Wei Yongjunba016672008-09-30 05:32:24 -07004336
4337discard:
4338 sctp_sf_pdiscard(ep, asoc, SCTP_ST_CHUNK(0), arg, commands);
Wei Yongjunba016672008-09-30 05:32:24 -07004339 return SCTP_DISPOSITION_ABORT;
4340nomem:
4341 return SCTP_DISPOSITION_NOMEM;
Wei Yongjun6f4c6182007-09-19 17:19:52 +08004342}
4343
Wei Yongjunaecedea2007-08-02 16:57:44 +08004344/* Handle a protocol violation when the peer trying to advance the
4345 * cumulative tsn ack to a point beyond the max tsn currently sent.
4346 *
4347 * We inform the other end by sending an ABORT with a Protocol Violation
4348 * error code.
4349 */
4350static sctp_disposition_t sctp_sf_violation_ctsn(
4351 const struct sctp_endpoint *ep,
4352 const struct sctp_association *asoc,
4353 const sctp_subtype_t type,
4354 void *arg,
4355 sctp_cmd_seq_t *commands)
4356{
Florian Westphal24448442008-03-23 22:46:34 -07004357 static const char err_str[]="The cumulative tsn ack beyond the max tsn currently sent:";
Wei Yongjunaecedea2007-08-02 16:57:44 +08004358
Vlad Yasevichece25df2007-09-07 16:30:54 -04004359 return sctp_sf_abort_violation(ep, asoc, arg, commands, err_str,
Wei Yongjunaecedea2007-08-02 16:57:44 +08004360 sizeof(err_str));
4361}
4362
Vlad Yasevichece25df2007-09-07 16:30:54 -04004363/* Handle protocol violation of an invalid chunk bundling. For example,
4364 * when we have an association and we recieve bundled INIT-ACK, or
4365 * SHUDOWN-COMPLETE, our peer is clearly violationg the "MUST NOT bundle"
4366 * statement from the specs. Additinally, there might be an attacker
4367 * on the path and we may not want to continue this communication.
4368 */
4369static sctp_disposition_t sctp_sf_violation_chunk(
4370 const struct sctp_endpoint *ep,
4371 const struct sctp_association *asoc,
4372 const sctp_subtype_t type,
4373 void *arg,
4374 sctp_cmd_seq_t *commands)
4375{
Florian Westphal24448442008-03-23 22:46:34 -07004376 static const char err_str[]="The following chunk violates protocol:";
Vlad Yasevichece25df2007-09-07 16:30:54 -04004377
4378 if (!asoc)
4379 return sctp_sf_violation(ep, asoc, type, arg, commands);
4380
4381 return sctp_sf_abort_violation(ep, asoc, arg, commands, err_str,
4382 sizeof(err_str));
4383}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004384/***************************************************************************
4385 * These are the state functions for handling primitive (Section 10) events.
4386 ***************************************************************************/
4387/*
4388 * sctp_sf_do_prm_asoc
4389 *
4390 * Section: 10.1 ULP-to-SCTP
4391 * B) Associate
4392 *
4393 * Format: ASSOCIATE(local SCTP instance name, destination transport addr,
4394 * outbound stream count)
4395 * -> association id [,destination transport addr list] [,outbound stream
4396 * count]
4397 *
4398 * This primitive allows the upper layer to initiate an association to a
4399 * specific peer endpoint.
4400 *
4401 * The peer endpoint shall be specified by one of the transport addresses
4402 * which defines the endpoint (see Section 1.4). If the local SCTP
4403 * instance has not been initialized, the ASSOCIATE is considered an
4404 * error.
4405 * [This is not relevant for the kernel implementation since we do all
4406 * initialization at boot time. It we hadn't initialized we wouldn't
4407 * get anywhere near this code.]
4408 *
4409 * An association id, which is a local handle to the SCTP association,
4410 * will be returned on successful establishment of the association. If
4411 * SCTP is not able to open an SCTP association with the peer endpoint,
4412 * an error is returned.
4413 * [In the kernel implementation, the struct sctp_association needs to
4414 * be created BEFORE causing this primitive to run.]
4415 *
4416 * Other association parameters may be returned, including the
4417 * complete destination transport addresses of the peer as well as the
4418 * outbound stream count of the local endpoint. One of the transport
4419 * address from the returned destination addresses will be selected by
4420 * the local endpoint as default primary path for sending SCTP packets
4421 * to this peer. The returned "destination transport addr list" can
4422 * be used by the ULP to change the default primary path or to force
4423 * sending a packet to a specific transport address. [All of this
4424 * stuff happens when the INIT ACK arrives. This is a NON-BLOCKING
4425 * function.]
4426 *
4427 * Mandatory attributes:
4428 *
4429 * o local SCTP instance name - obtained from the INITIALIZE operation.
4430 * [This is the argument asoc.]
4431 * o destination transport addr - specified as one of the transport
4432 * addresses of the peer endpoint with which the association is to be
4433 * established.
4434 * [This is asoc->peer.active_path.]
4435 * o outbound stream count - the number of outbound streams the ULP
4436 * would like to open towards this peer endpoint.
4437 * [BUG: This is not currently implemented.]
4438 * Optional attributes:
4439 *
4440 * None.
4441 *
4442 * The return value is a disposition.
4443 */
4444sctp_disposition_t sctp_sf_do_prm_asoc(const struct sctp_endpoint *ep,
4445 const struct sctp_association *asoc,
4446 const sctp_subtype_t type,
4447 void *arg,
4448 sctp_cmd_seq_t *commands)
4449{
4450 struct sctp_chunk *repl;
Vlad Yasevichab38fb02008-04-12 18:40:06 -07004451 struct sctp_association* my_asoc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004452
4453 /* The comment below says that we enter COOKIE-WAIT AFTER
4454 * sending the INIT, but that doesn't actually work in our
4455 * implementation...
4456 */
4457 sctp_add_cmd_sf(commands, SCTP_CMD_NEW_STATE,
4458 SCTP_STATE(SCTP_STATE_COOKIE_WAIT));
4459
4460 /* RFC 2960 5.1 Normal Establishment of an Association
4461 *
4462 * A) "A" first sends an INIT chunk to "Z". In the INIT, "A"
4463 * must provide its Verification Tag (Tag_A) in the Initiate
4464 * Tag field. Tag_A SHOULD be a random number in the range of
4465 * 1 to 4294967295 (see 5.3.1 for Tag value selection). ...
4466 */
4467
4468 repl = sctp_make_init(asoc, &asoc->base.bind_addr, GFP_ATOMIC, 0);
4469 if (!repl)
4470 goto nomem;
4471
4472 /* Cast away the const modifier, as we want to just
4473 * rerun it through as a sideffect.
4474 */
Vlad Yasevichab38fb02008-04-12 18:40:06 -07004475 my_asoc = (struct sctp_association *)asoc;
4476 sctp_add_cmd_sf(commands, SCTP_CMD_NEW_ASOC, SCTP_ASOC(my_asoc));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004477
Frank Filz3f7a87d2005-06-20 13:14:57 -07004478 /* Choose transport for INIT. */
4479 sctp_add_cmd_sf(commands, SCTP_CMD_INIT_CHOOSE_TRANSPORT,
4480 SCTP_CHUNK(repl));
4481
Linus Torvalds1da177e2005-04-16 15:20:36 -07004482 /* After sending the INIT, "A" starts the T1-init timer and
4483 * enters the COOKIE-WAIT state.
4484 */
4485 sctp_add_cmd_sf(commands, SCTP_CMD_TIMER_START,
4486 SCTP_TO(SCTP_EVENT_TIMEOUT_T1_INIT));
4487 sctp_add_cmd_sf(commands, SCTP_CMD_REPLY, SCTP_CHUNK(repl));
4488 return SCTP_DISPOSITION_CONSUME;
4489
4490nomem:
4491 return SCTP_DISPOSITION_NOMEM;
4492}
4493
4494/*
4495 * Process the SEND primitive.
4496 *
4497 * Section: 10.1 ULP-to-SCTP
4498 * E) Send
4499 *
4500 * Format: SEND(association id, buffer address, byte count [,context]
4501 * [,stream id] [,life time] [,destination transport address]
4502 * [,unorder flag] [,no-bundle flag] [,payload protocol-id] )
4503 * -> result
4504 *
4505 * This is the main method to send user data via SCTP.
4506 *
4507 * Mandatory attributes:
4508 *
4509 * o association id - local handle to the SCTP association
4510 *
4511 * o buffer address - the location where the user message to be
4512 * transmitted is stored;
4513 *
4514 * o byte count - The size of the user data in number of bytes;
4515 *
4516 * Optional attributes:
4517 *
4518 * o context - an optional 32 bit integer that will be carried in the
4519 * sending failure notification to the ULP if the transportation of
4520 * this User Message fails.
4521 *
4522 * o stream id - to indicate which stream to send the data on. If not
4523 * specified, stream 0 will be used.
4524 *
4525 * o life time - specifies the life time of the user data. The user data
4526 * will not be sent by SCTP after the life time expires. This
4527 * parameter can be used to avoid efforts to transmit stale
4528 * user messages. SCTP notifies the ULP if the data cannot be
4529 * initiated to transport (i.e. sent to the destination via SCTP's
4530 * send primitive) within the life time variable. However, the
4531 * user data will be transmitted if SCTP has attempted to transmit a
4532 * chunk before the life time expired.
4533 *
4534 * o destination transport address - specified as one of the destination
4535 * transport addresses of the peer endpoint to which this packet
4536 * should be sent. Whenever possible, SCTP should use this destination
4537 * transport address for sending the packets, instead of the current
4538 * primary path.
4539 *
4540 * o unorder flag - this flag, if present, indicates that the user
4541 * would like the data delivered in an unordered fashion to the peer
4542 * (i.e., the U flag is set to 1 on all DATA chunks carrying this
4543 * message).
4544 *
4545 * o no-bundle flag - instructs SCTP not to bundle this user data with
4546 * other outbound DATA chunks. SCTP MAY still bundle even when
4547 * this flag is present, when faced with network congestion.
4548 *
4549 * o payload protocol-id - A 32 bit unsigned integer that is to be
4550 * passed to the peer indicating the type of payload protocol data
4551 * being transmitted. This value is passed as opaque data by SCTP.
4552 *
4553 * The return value is the disposition.
4554 */
4555sctp_disposition_t sctp_sf_do_prm_send(const struct sctp_endpoint *ep,
4556 const struct sctp_association *asoc,
4557 const sctp_subtype_t type,
4558 void *arg,
4559 sctp_cmd_seq_t *commands)
4560{
4561 struct sctp_chunk *chunk = arg;
4562
4563 sctp_add_cmd_sf(commands, SCTP_CMD_REPLY, SCTP_CHUNK(chunk));
4564 return SCTP_DISPOSITION_CONSUME;
4565}
4566
4567/*
4568 * Process the SHUTDOWN primitive.
4569 *
4570 * Section: 10.1:
4571 * C) Shutdown
4572 *
4573 * Format: SHUTDOWN(association id)
4574 * -> result
4575 *
4576 * Gracefully closes an association. Any locally queued user data
4577 * will be delivered to the peer. The association will be terminated only
4578 * after the peer acknowledges all the SCTP packets sent. A success code
4579 * will be returned on successful termination of the association. If
4580 * attempting to terminate the association results in a failure, an error
4581 * code shall be returned.
4582 *
4583 * Mandatory attributes:
4584 *
4585 * o association id - local handle to the SCTP association
4586 *
4587 * Optional attributes:
4588 *
4589 * None.
4590 *
4591 * The return value is the disposition.
4592 */
4593sctp_disposition_t sctp_sf_do_9_2_prm_shutdown(
4594 const struct sctp_endpoint *ep,
4595 const struct sctp_association *asoc,
4596 const sctp_subtype_t type,
4597 void *arg,
4598 sctp_cmd_seq_t *commands)
4599{
4600 int disposition;
4601
4602 /* From 9.2 Shutdown of an Association
4603 * Upon receipt of the SHUTDOWN primitive from its upper
4604 * layer, the endpoint enters SHUTDOWN-PENDING state and
4605 * remains there until all outstanding data has been
4606 * acknowledged by its peer. The endpoint accepts no new data
4607 * from its upper layer, but retransmits data to the far end
4608 * if necessary to fill gaps.
4609 */
4610 sctp_add_cmd_sf(commands, SCTP_CMD_NEW_STATE,
4611 SCTP_STATE(SCTP_STATE_SHUTDOWN_PENDING));
4612
Linus Torvalds1da177e2005-04-16 15:20:36 -07004613 disposition = SCTP_DISPOSITION_CONSUME;
4614 if (sctp_outq_is_empty(&asoc->outqueue)) {
4615 disposition = sctp_sf_do_9_2_start_shutdown(ep, asoc, type,
4616 arg, commands);
4617 }
4618 return disposition;
4619}
4620
4621/*
4622 * Process the ABORT primitive.
4623 *
4624 * Section: 10.1:
4625 * C) Abort
4626 *
4627 * Format: Abort(association id [, cause code])
4628 * -> result
4629 *
4630 * Ungracefully closes an association. Any locally queued user data
4631 * will be discarded and an ABORT chunk is sent to the peer. A success code
4632 * will be returned on successful abortion of the association. If
4633 * attempting to abort the association results in a failure, an error
4634 * code shall be returned.
4635 *
4636 * Mandatory attributes:
4637 *
4638 * o association id - local handle to the SCTP association
4639 *
4640 * Optional attributes:
4641 *
4642 * o cause code - reason of the abort to be passed to the peer
4643 *
4644 * None.
4645 *
4646 * The return value is the disposition.
4647 */
4648sctp_disposition_t sctp_sf_do_9_1_prm_abort(
4649 const struct sctp_endpoint *ep,
4650 const struct sctp_association *asoc,
4651 const sctp_subtype_t type,
4652 void *arg,
4653 sctp_cmd_seq_t *commands)
4654{
4655 /* From 9.1 Abort of an Association
4656 * Upon receipt of the ABORT primitive from its upper
4657 * layer, the endpoint enters CLOSED state and
4658 * discard all outstanding data has been
4659 * acknowledged by its peer. The endpoint accepts no new data
4660 * from its upper layer, but retransmits data to the far end
4661 * if necessary to fill gaps.
4662 */
Sridhar Samudralac164a9b2006-08-22 11:50:39 -07004663 struct sctp_chunk *abort = arg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004664 sctp_disposition_t retval;
4665
4666 retval = SCTP_DISPOSITION_CONSUME;
4667
Sridhar Samudralac164a9b2006-08-22 11:50:39 -07004668 sctp_add_cmd_sf(commands, SCTP_CMD_REPLY, SCTP_CHUNK(abort));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004669
4670 /* Even if we can't send the ABORT due to low memory delete the
4671 * TCB. This is a departure from our typical NOMEM handling.
4672 */
4673
Sridhar Samudrala8de8c872006-05-19 10:58:12 -07004674 sctp_add_cmd_sf(commands, SCTP_CMD_SET_SK_ERR,
4675 SCTP_ERROR(ECONNABORTED));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004676 /* Delete the established association. */
4677 sctp_add_cmd_sf(commands, SCTP_CMD_ASSOC_FAILED,
Al Viro5be291f2006-11-20 17:01:06 -08004678 SCTP_PERR(SCTP_ERROR_USER_ABORT));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004679
4680 SCTP_INC_STATS(SCTP_MIB_ABORTEDS);
4681 SCTP_DEC_STATS(SCTP_MIB_CURRESTAB);
4682
4683 return retval;
4684}
4685
4686/* We tried an illegal operation on an association which is closed. */
4687sctp_disposition_t sctp_sf_error_closed(const struct sctp_endpoint *ep,
4688 const struct sctp_association *asoc,
4689 const sctp_subtype_t type,
4690 void *arg,
4691 sctp_cmd_seq_t *commands)
4692{
4693 sctp_add_cmd_sf(commands, SCTP_CMD_REPORT_ERROR, SCTP_ERROR(-EINVAL));
4694 return SCTP_DISPOSITION_CONSUME;
4695}
4696
4697/* We tried an illegal operation on an association which is shutting
4698 * down.
4699 */
4700sctp_disposition_t sctp_sf_error_shutdown(const struct sctp_endpoint *ep,
4701 const struct sctp_association *asoc,
4702 const sctp_subtype_t type,
4703 void *arg,
4704 sctp_cmd_seq_t *commands)
4705{
4706 sctp_add_cmd_sf(commands, SCTP_CMD_REPORT_ERROR,
4707 SCTP_ERROR(-ESHUTDOWN));
4708 return SCTP_DISPOSITION_CONSUME;
4709}
4710
4711/*
4712 * sctp_cookie_wait_prm_shutdown
4713 *
4714 * Section: 4 Note: 2
4715 * Verification Tag:
4716 * Inputs
4717 * (endpoint, asoc)
4718 *
4719 * The RFC does not explicitly address this issue, but is the route through the
4720 * state table when someone issues a shutdown while in COOKIE_WAIT state.
4721 *
4722 * Outputs
4723 * (timers)
4724 */
4725sctp_disposition_t sctp_sf_cookie_wait_prm_shutdown(
4726 const struct sctp_endpoint *ep,
4727 const struct sctp_association *asoc,
4728 const sctp_subtype_t type,
4729 void *arg,
4730 sctp_cmd_seq_t *commands)
4731{
4732 sctp_add_cmd_sf(commands, SCTP_CMD_TIMER_STOP,
4733 SCTP_TO(SCTP_EVENT_TIMEOUT_T1_INIT));
4734
4735 sctp_add_cmd_sf(commands, SCTP_CMD_NEW_STATE,
4736 SCTP_STATE(SCTP_STATE_CLOSED));
4737
4738 SCTP_INC_STATS(SCTP_MIB_SHUTDOWNS);
4739
4740 sctp_add_cmd_sf(commands, SCTP_CMD_DELETE_TCB, SCTP_NULL());
4741
4742 return SCTP_DISPOSITION_DELETE_TCB;
4743}
4744
4745/*
4746 * sctp_cookie_echoed_prm_shutdown
4747 *
4748 * Section: 4 Note: 2
4749 * Verification Tag:
4750 * Inputs
4751 * (endpoint, asoc)
4752 *
4753 * The RFC does not explcitly address this issue, but is the route through the
4754 * state table when someone issues a shutdown while in COOKIE_ECHOED state.
4755 *
4756 * Outputs
4757 * (timers)
4758 */
4759sctp_disposition_t sctp_sf_cookie_echoed_prm_shutdown(
4760 const struct sctp_endpoint *ep,
4761 const struct sctp_association *asoc,
4762 const sctp_subtype_t type,
4763 void *arg, sctp_cmd_seq_t *commands)
4764{
4765 /* There is a single T1 timer, so we should be able to use
4766 * common function with the COOKIE-WAIT state.
4767 */
4768 return sctp_sf_cookie_wait_prm_shutdown(ep, asoc, type, arg, commands);
4769}
4770
4771/*
4772 * sctp_sf_cookie_wait_prm_abort
4773 *
4774 * Section: 4 Note: 2
4775 * Verification Tag:
4776 * Inputs
4777 * (endpoint, asoc)
4778 *
4779 * The RFC does not explicitly address this issue, but is the route through the
4780 * state table when someone issues an abort while in COOKIE_WAIT state.
4781 *
4782 * Outputs
4783 * (timers)
4784 */
4785sctp_disposition_t sctp_sf_cookie_wait_prm_abort(
4786 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{
Sridhar Samudralac164a9b2006-08-22 11:50:39 -07004792 struct sctp_chunk *abort = arg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004793 sctp_disposition_t retval;
4794
4795 /* Stop T1-init timer */
4796 sctp_add_cmd_sf(commands, SCTP_CMD_TIMER_STOP,
4797 SCTP_TO(SCTP_EVENT_TIMEOUT_T1_INIT));
4798 retval = SCTP_DISPOSITION_CONSUME;
4799
Sridhar Samudralac164a9b2006-08-22 11:50:39 -07004800 sctp_add_cmd_sf(commands, SCTP_CMD_REPLY, SCTP_CHUNK(abort));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004801
4802 sctp_add_cmd_sf(commands, SCTP_CMD_NEW_STATE,
4803 SCTP_STATE(SCTP_STATE_CLOSED));
4804
4805 SCTP_INC_STATS(SCTP_MIB_ABORTEDS);
4806
4807 /* Even if we can't send the ABORT due to low memory delete the
4808 * TCB. This is a departure from our typical NOMEM handling.
4809 */
4810
Sridhar Samudrala8de8c872006-05-19 10:58:12 -07004811 sctp_add_cmd_sf(commands, SCTP_CMD_SET_SK_ERR,
4812 SCTP_ERROR(ECONNREFUSED));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004813 /* Delete the established association. */
4814 sctp_add_cmd_sf(commands, SCTP_CMD_INIT_FAILED,
Al Virodc251b22006-11-20 17:00:44 -08004815 SCTP_PERR(SCTP_ERROR_USER_ABORT));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004816
4817 return retval;
4818}
4819
4820/*
4821 * sctp_sf_cookie_echoed_prm_abort
4822 *
4823 * Section: 4 Note: 3
4824 * Verification Tag:
4825 * Inputs
4826 * (endpoint, asoc)
4827 *
4828 * The RFC does not explcitly address this issue, but is the route through the
4829 * state table when someone issues an abort while in COOKIE_ECHOED state.
4830 *
4831 * Outputs
4832 * (timers)
4833 */
4834sctp_disposition_t sctp_sf_cookie_echoed_prm_abort(
4835 const struct sctp_endpoint *ep,
4836 const struct sctp_association *asoc,
4837 const sctp_subtype_t type,
4838 void *arg,
4839 sctp_cmd_seq_t *commands)
4840{
4841 /* There is a single T1 timer, so we should be able to use
4842 * common function with the COOKIE-WAIT state.
4843 */
4844 return sctp_sf_cookie_wait_prm_abort(ep, asoc, type, arg, commands);
4845}
4846
4847/*
4848 * sctp_sf_shutdown_pending_prm_abort
4849 *
4850 * Inputs
4851 * (endpoint, asoc)
4852 *
4853 * The RFC does not explicitly address this issue, but is the route through the
4854 * state table when someone issues an abort while in SHUTDOWN-PENDING state.
4855 *
4856 * Outputs
4857 * (timers)
4858 */
4859sctp_disposition_t sctp_sf_shutdown_pending_prm_abort(
4860 const struct sctp_endpoint *ep,
4861 const struct sctp_association *asoc,
4862 const sctp_subtype_t type,
4863 void *arg,
4864 sctp_cmd_seq_t *commands)
4865{
4866 /* Stop the T5-shutdown guard timer. */
4867 sctp_add_cmd_sf(commands, SCTP_CMD_TIMER_STOP,
4868 SCTP_TO(SCTP_EVENT_TIMEOUT_T5_SHUTDOWN_GUARD));
4869
4870 return sctp_sf_do_9_1_prm_abort(ep, asoc, type, arg, commands);
4871}
4872
4873/*
4874 * sctp_sf_shutdown_sent_prm_abort
4875 *
4876 * Inputs
4877 * (endpoint, asoc)
4878 *
4879 * The RFC does not explicitly address this issue, but is the route through the
4880 * state table when someone issues an abort while in SHUTDOWN-SENT state.
4881 *
4882 * Outputs
4883 * (timers)
4884 */
4885sctp_disposition_t sctp_sf_shutdown_sent_prm_abort(
4886 const struct sctp_endpoint *ep,
4887 const struct sctp_association *asoc,
4888 const sctp_subtype_t type,
4889 void *arg,
4890 sctp_cmd_seq_t *commands)
4891{
4892 /* Stop the T2-shutdown timer. */
4893 sctp_add_cmd_sf(commands, SCTP_CMD_TIMER_STOP,
4894 SCTP_TO(SCTP_EVENT_TIMEOUT_T2_SHUTDOWN));
4895
4896 /* Stop the T5-shutdown guard timer. */
4897 sctp_add_cmd_sf(commands, SCTP_CMD_TIMER_STOP,
4898 SCTP_TO(SCTP_EVENT_TIMEOUT_T5_SHUTDOWN_GUARD));
4899
4900 return sctp_sf_do_9_1_prm_abort(ep, asoc, type, arg, commands);
4901}
4902
4903/*
4904 * sctp_sf_cookie_echoed_prm_abort
4905 *
4906 * Inputs
4907 * (endpoint, asoc)
4908 *
4909 * The RFC does not explcitly address this issue, but is the route through the
4910 * state table when someone issues an abort while in COOKIE_ECHOED state.
4911 *
4912 * Outputs
4913 * (timers)
4914 */
4915sctp_disposition_t sctp_sf_shutdown_ack_sent_prm_abort(
4916 const struct sctp_endpoint *ep,
4917 const struct sctp_association *asoc,
4918 const sctp_subtype_t type,
4919 void *arg,
4920 sctp_cmd_seq_t *commands)
4921{
4922 /* The same T2 timer, so we should be able to use
4923 * common function with the SHUTDOWN-SENT state.
4924 */
4925 return sctp_sf_shutdown_sent_prm_abort(ep, asoc, type, arg, commands);
4926}
4927
4928/*
4929 * Process the REQUESTHEARTBEAT primitive
4930 *
4931 * 10.1 ULP-to-SCTP
4932 * J) Request Heartbeat
4933 *
4934 * Format: REQUESTHEARTBEAT(association id, destination transport address)
4935 *
4936 * -> result
4937 *
4938 * Instructs the local endpoint to perform a HeartBeat on the specified
4939 * destination transport address of the given association. The returned
4940 * result should indicate whether the transmission of the HEARTBEAT
4941 * chunk to the destination address is successful.
4942 *
4943 * Mandatory attributes:
4944 *
4945 * o association id - local handle to the SCTP association
4946 *
4947 * o destination transport address - the transport address of the
4948 * association on which a heartbeat should be issued.
4949 */
4950sctp_disposition_t sctp_sf_do_prm_requestheartbeat(
4951 const struct sctp_endpoint *ep,
4952 const struct sctp_association *asoc,
4953 const sctp_subtype_t type,
4954 void *arg,
4955 sctp_cmd_seq_t *commands)
4956{
Vlad Yasevichfb785252007-03-19 17:02:03 -07004957 if (SCTP_DISPOSITION_NOMEM == sctp_sf_heartbeat(ep, asoc, type,
4958 (struct sctp_transport *)arg, commands))
4959 return SCTP_DISPOSITION_NOMEM;
4960
4961 /*
4962 * RFC 2960 (bis), section 8.3
4963 *
4964 * D) Request an on-demand HEARTBEAT on a specific destination
4965 * transport address of a given association.
4966 *
4967 * The endpoint should increment the respective error counter of
4968 * the destination transport address each time a HEARTBEAT is sent
4969 * to that address and not acknowledged within one RTO.
4970 *
4971 */
Vlad Yasevich7e990132009-03-02 09:46:14 +00004972 sctp_add_cmd_sf(commands, SCTP_CMD_TRANSPORT_HB_SENT,
Vlad Yasevichfb785252007-03-19 17:02:03 -07004973 SCTP_TRANSPORT(arg));
4974 return SCTP_DISPOSITION_CONSUME;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004975}
4976
4977/*
4978 * ADDIP Section 4.1 ASCONF Chunk Procedures
4979 * When an endpoint has an ASCONF signaled change to be sent to the
4980 * remote endpoint it should do A1 to A9
4981 */
4982sctp_disposition_t sctp_sf_do_prm_asconf(const struct sctp_endpoint *ep,
4983 const struct sctp_association *asoc,
4984 const sctp_subtype_t type,
4985 void *arg,
4986 sctp_cmd_seq_t *commands)
4987{
4988 struct sctp_chunk *chunk = arg;
4989
4990 sctp_add_cmd_sf(commands, SCTP_CMD_SETUP_T4, SCTP_CHUNK(chunk));
4991 sctp_add_cmd_sf(commands, SCTP_CMD_TIMER_START,
4992 SCTP_TO(SCTP_EVENT_TIMEOUT_T4_RTO));
4993 sctp_add_cmd_sf(commands, SCTP_CMD_REPLY, SCTP_CHUNK(chunk));
4994 return SCTP_DISPOSITION_CONSUME;
4995}
4996
4997/*
4998 * Ignore the primitive event
4999 *
5000 * The return value is the disposition of the primitive.
5001 */
5002sctp_disposition_t sctp_sf_ignore_primitive(
5003 const struct sctp_endpoint *ep,
5004 const struct sctp_association *asoc,
5005 const sctp_subtype_t type,
5006 void *arg,
5007 sctp_cmd_seq_t *commands)
5008{
5009 SCTP_DEBUG_PRINTK("Primitive type %d is ignored.\n", type.primitive);
5010 return SCTP_DISPOSITION_DISCARD;
5011}
5012
5013/***************************************************************************
5014 * These are the state functions for the OTHER events.
5015 ***************************************************************************/
5016
5017/*
5018 * Start the shutdown negotiation.
5019 *
5020 * From Section 9.2:
5021 * Once all its outstanding data has been acknowledged, the endpoint
5022 * shall send a SHUTDOWN chunk to its peer including in the Cumulative
5023 * TSN Ack field the last sequential TSN it has received from the peer.
5024 * It shall then start the T2-shutdown timer and enter the SHUTDOWN-SENT
5025 * state. If the timer expires, the endpoint must re-send the SHUTDOWN
5026 * with the updated last sequential TSN received from its peer.
5027 *
5028 * The return value is the disposition.
5029 */
5030sctp_disposition_t sctp_sf_do_9_2_start_shutdown(
5031 const struct sctp_endpoint *ep,
5032 const struct sctp_association *asoc,
5033 const sctp_subtype_t type,
5034 void *arg,
5035 sctp_cmd_seq_t *commands)
5036{
5037 struct sctp_chunk *reply;
5038
5039 /* Once all its outstanding data has been acknowledged, the
5040 * endpoint shall send a SHUTDOWN chunk to its peer including
5041 * in the Cumulative TSN Ack field the last sequential TSN it
5042 * has received from the peer.
5043 */
5044 reply = sctp_make_shutdown(asoc, NULL);
5045 if (!reply)
5046 goto nomem;
5047
5048 /* Set the transport for the SHUTDOWN chunk and the timeout for the
5049 * T2-shutdown timer.
5050 */
5051 sctp_add_cmd_sf(commands, SCTP_CMD_SETUP_T2, SCTP_CHUNK(reply));
5052
5053 /* It shall then start the T2-shutdown timer */
5054 sctp_add_cmd_sf(commands, SCTP_CMD_TIMER_START,
5055 SCTP_TO(SCTP_EVENT_TIMEOUT_T2_SHUTDOWN));
5056
Wei Yongjun536428a2008-09-05 08:55:26 +08005057 /* RFC 4960 Section 9.2
5058 * The sender of the SHUTDOWN MAY also start an overall guard timer
5059 * 'T5-shutdown-guard' to bound the overall time for shutdown sequence.
5060 */
5061 sctp_add_cmd_sf(commands, SCTP_CMD_TIMER_START,
5062 SCTP_TO(SCTP_EVENT_TIMEOUT_T5_SHUTDOWN_GUARD));
5063
Linus Torvalds1da177e2005-04-16 15:20:36 -07005064 if (asoc->autoclose)
5065 sctp_add_cmd_sf(commands, SCTP_CMD_TIMER_STOP,
5066 SCTP_TO(SCTP_EVENT_TIMEOUT_AUTOCLOSE));
5067
5068 /* and enter the SHUTDOWN-SENT state. */
5069 sctp_add_cmd_sf(commands, SCTP_CMD_NEW_STATE,
5070 SCTP_STATE(SCTP_STATE_SHUTDOWN_SENT));
5071
5072 /* sctp-implguide 2.10 Issues with Heartbeating and failover
5073 *
5074 * HEARTBEAT ... is discontinued after sending either SHUTDOWN
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09005075 * or SHUTDOWN-ACK.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005076 */
5077 sctp_add_cmd_sf(commands, SCTP_CMD_HB_TIMERS_STOP, SCTP_NULL());
5078
5079 sctp_add_cmd_sf(commands, SCTP_CMD_REPLY, SCTP_CHUNK(reply));
5080
5081 return SCTP_DISPOSITION_CONSUME;
5082
5083nomem:
5084 return SCTP_DISPOSITION_NOMEM;
5085}
5086
5087/*
5088 * Generate a SHUTDOWN ACK now that everything is SACK'd.
5089 *
5090 * From Section 9.2:
5091 *
5092 * If it has no more outstanding DATA chunks, the SHUTDOWN receiver
5093 * shall send a SHUTDOWN ACK and start a T2-shutdown timer of its own,
5094 * entering the SHUTDOWN-ACK-SENT state. If the timer expires, the
5095 * endpoint must re-send the SHUTDOWN ACK.
5096 *
5097 * The return value is the disposition.
5098 */
5099sctp_disposition_t sctp_sf_do_9_2_shutdown_ack(
5100 const struct sctp_endpoint *ep,
5101 const struct sctp_association *asoc,
5102 const sctp_subtype_t type,
5103 void *arg,
5104 sctp_cmd_seq_t *commands)
5105{
5106 struct sctp_chunk *chunk = (struct sctp_chunk *) arg;
5107 struct sctp_chunk *reply;
5108
5109 /* There are 2 ways of getting here:
5110 * 1) called in response to a SHUTDOWN chunk
5111 * 2) called when SCTP_EVENT_NO_PENDING_TSN event is issued.
5112 *
5113 * For the case (2), the arg parameter is set to NULL. We need
5114 * to check that we have a chunk before accessing it's fields.
5115 */
5116 if (chunk) {
5117 if (!sctp_vtag_verify(chunk, asoc))
5118 return sctp_sf_pdiscard(ep, asoc, type, arg, commands);
5119
5120 /* Make sure that the SHUTDOWN chunk has a valid length. */
5121 if (!sctp_chunk_length_valid(chunk, sizeof(struct sctp_shutdown_chunk_t)))
5122 return sctp_sf_violation_chunklen(ep, asoc, type, arg,
5123 commands);
5124 }
5125
5126 /* If it has no more outstanding DATA chunks, the SHUTDOWN receiver
5127 * shall send a SHUTDOWN ACK ...
5128 */
5129 reply = sctp_make_shutdown_ack(asoc, chunk);
5130 if (!reply)
5131 goto nomem;
5132
5133 /* Set the transport for the SHUTDOWN ACK chunk and the timeout for
5134 * the T2-shutdown timer.
5135 */
5136 sctp_add_cmd_sf(commands, SCTP_CMD_SETUP_T2, SCTP_CHUNK(reply));
5137
5138 /* and start/restart a T2-shutdown timer of its own, */
5139 sctp_add_cmd_sf(commands, SCTP_CMD_TIMER_RESTART,
5140 SCTP_TO(SCTP_EVENT_TIMEOUT_T2_SHUTDOWN));
5141
5142 if (asoc->autoclose)
5143 sctp_add_cmd_sf(commands, SCTP_CMD_TIMER_STOP,
5144 SCTP_TO(SCTP_EVENT_TIMEOUT_AUTOCLOSE));
5145
5146 /* Enter the SHUTDOWN-ACK-SENT state. */
5147 sctp_add_cmd_sf(commands, SCTP_CMD_NEW_STATE,
5148 SCTP_STATE(SCTP_STATE_SHUTDOWN_ACK_SENT));
5149
5150 /* sctp-implguide 2.10 Issues with Heartbeating and failover
5151 *
5152 * HEARTBEAT ... is discontinued after sending either SHUTDOWN
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09005153 * or SHUTDOWN-ACK.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005154 */
5155 sctp_add_cmd_sf(commands, SCTP_CMD_HB_TIMERS_STOP, SCTP_NULL());
5156
5157 sctp_add_cmd_sf(commands, SCTP_CMD_REPLY, SCTP_CHUNK(reply));
5158
5159 return SCTP_DISPOSITION_CONSUME;
5160
5161nomem:
5162 return SCTP_DISPOSITION_NOMEM;
5163}
5164
5165/*
5166 * Ignore the event defined as other
5167 *
5168 * The return value is the disposition of the event.
5169 */
5170sctp_disposition_t sctp_sf_ignore_other(const struct sctp_endpoint *ep,
5171 const struct sctp_association *asoc,
5172 const sctp_subtype_t type,
5173 void *arg,
5174 sctp_cmd_seq_t *commands)
5175{
5176 SCTP_DEBUG_PRINTK("The event other type %d is ignored\n", type.other);
5177 return SCTP_DISPOSITION_DISCARD;
5178}
5179
5180/************************************************************
5181 * These are the state functions for handling timeout events.
5182 ************************************************************/
5183
5184/*
5185 * RTX Timeout
5186 *
5187 * Section: 6.3.3 Handle T3-rtx Expiration
5188 *
5189 * Whenever the retransmission timer T3-rtx expires for a destination
5190 * address, do the following:
5191 * [See below]
5192 *
5193 * The return value is the disposition of the chunk.
5194 */
5195sctp_disposition_t sctp_sf_do_6_3_3_rtx(const struct sctp_endpoint *ep,
5196 const struct sctp_association *asoc,
5197 const sctp_subtype_t type,
5198 void *arg,
5199 sctp_cmd_seq_t *commands)
5200{
5201 struct sctp_transport *transport = arg;
5202
Sridhar Samudralaac0b0462006-08-22 00:15:33 -07005203 SCTP_INC_STATS(SCTP_MIB_T3_RTX_EXPIREDS);
5204
Linus Torvalds1da177e2005-04-16 15:20:36 -07005205 if (asoc->overall_error_count >= asoc->max_retrans) {
Sridhar Samudrala8de8c872006-05-19 10:58:12 -07005206 sctp_add_cmd_sf(commands, SCTP_CMD_SET_SK_ERR,
5207 SCTP_ERROR(ETIMEDOUT));
Linus Torvalds1da177e2005-04-16 15:20:36 -07005208 /* CMD_ASSOC_FAILED calls CMD_DELETE_TCB. */
5209 sctp_add_cmd_sf(commands, SCTP_CMD_ASSOC_FAILED,
Al Viro5be291f2006-11-20 17:01:06 -08005210 SCTP_PERR(SCTP_ERROR_NO_ERROR));
Linus Torvalds1da177e2005-04-16 15:20:36 -07005211 SCTP_INC_STATS(SCTP_MIB_ABORTEDS);
5212 SCTP_DEC_STATS(SCTP_MIB_CURRESTAB);
5213 return SCTP_DISPOSITION_DELETE_TCB;
5214 }
5215
5216 /* E1) For the destination address for which the timer
5217 * expires, adjust its ssthresh with rules defined in Section
5218 * 7.2.3 and set the cwnd <- MTU.
5219 */
5220
5221 /* E2) For the destination address for which the timer
5222 * expires, set RTO <- RTO * 2 ("back off the timer"). The
5223 * maximum value discussed in rule C7 above (RTO.max) may be
5224 * used to provide an upper bound to this doubling operation.
5225 */
5226
5227 /* E3) Determine how many of the earliest (i.e., lowest TSN)
5228 * outstanding DATA chunks for the address for which the
5229 * T3-rtx has expired will fit into a single packet, subject
5230 * to the MTU constraint for the path corresponding to the
5231 * destination transport address to which the retransmission
5232 * is being sent (this may be different from the address for
5233 * which the timer expires [see Section 6.4]). Call this
5234 * value K. Bundle and retransmit those K DATA chunks in a
5235 * single packet to the destination endpoint.
5236 *
5237 * Note: Any DATA chunks that were sent to the address for
5238 * which the T3-rtx timer expired but did not fit in one MTU
5239 * (rule E3 above), should be marked for retransmission and
5240 * sent as soon as cwnd allows (normally when a SACK arrives).
5241 */
5242
Linus Torvalds1da177e2005-04-16 15:20:36 -07005243 /* Do some failure management (Section 8.2). */
5244 sctp_add_cmd_sf(commands, SCTP_CMD_STRIKE, SCTP_TRANSPORT(transport));
5245
Vlad Yasevich1845a572007-02-21 02:06:19 -08005246 /* NB: Rules E4 and F1 are implicit in R1. */
5247 sctp_add_cmd_sf(commands, SCTP_CMD_RETRAN, SCTP_TRANSPORT(transport));
5248
Linus Torvalds1da177e2005-04-16 15:20:36 -07005249 return SCTP_DISPOSITION_CONSUME;
5250}
5251
5252/*
5253 * Generate delayed SACK on timeout
5254 *
5255 * Section: 6.2 Acknowledgement on Reception of DATA Chunks
5256 *
5257 * The guidelines on delayed acknowledgement algorithm specified in
5258 * Section 4.2 of [RFC2581] SHOULD be followed. Specifically, an
5259 * acknowledgement SHOULD be generated for at least every second packet
5260 * (not every second DATA chunk) received, and SHOULD be generated
5261 * within 200 ms of the arrival of any unacknowledged DATA chunk. In
5262 * some situations it may be beneficial for an SCTP transmitter to be
5263 * more conservative than the algorithms detailed in this document
5264 * allow. However, an SCTP transmitter MUST NOT be more aggressive than
5265 * the following algorithms allow.
5266 */
5267sctp_disposition_t sctp_sf_do_6_2_sack(const struct sctp_endpoint *ep,
5268 const struct sctp_association *asoc,
5269 const sctp_subtype_t type,
5270 void *arg,
5271 sctp_cmd_seq_t *commands)
5272{
Sridhar Samudralaac0b0462006-08-22 00:15:33 -07005273 SCTP_INC_STATS(SCTP_MIB_DELAY_SACK_EXPIREDS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005274 sctp_add_cmd_sf(commands, SCTP_CMD_GEN_SACK, SCTP_FORCE());
5275 return SCTP_DISPOSITION_CONSUME;
5276}
5277
5278/*
Frank Filz3f7a87d2005-06-20 13:14:57 -07005279 * sctp_sf_t1_init_timer_expire
Linus Torvalds1da177e2005-04-16 15:20:36 -07005280 *
5281 * Section: 4 Note: 2
5282 * Verification Tag:
5283 * Inputs
5284 * (endpoint, asoc)
5285 *
5286 * RFC 2960 Section 4 Notes
5287 * 2) If the T1-init timer expires, the endpoint MUST retransmit INIT
5288 * and re-start the T1-init timer without changing state. This MUST
5289 * be repeated up to 'Max.Init.Retransmits' times. After that, the
5290 * endpoint MUST abort the initialization process and report the
5291 * error to SCTP user.
5292 *
Frank Filz3f7a87d2005-06-20 13:14:57 -07005293 * Outputs
5294 * (timers, events)
5295 *
5296 */
5297sctp_disposition_t sctp_sf_t1_init_timer_expire(const struct sctp_endpoint *ep,
5298 const struct sctp_association *asoc,
5299 const sctp_subtype_t type,
5300 void *arg,
5301 sctp_cmd_seq_t *commands)
5302{
5303 struct sctp_chunk *repl = NULL;
5304 struct sctp_bind_addr *bp;
5305 int attempts = asoc->init_err_counter + 1;
5306
5307 SCTP_DEBUG_PRINTK("Timer T1 expired (INIT).\n");
Sridhar Samudralaac0b0462006-08-22 00:15:33 -07005308 SCTP_INC_STATS(SCTP_MIB_T1_INIT_EXPIREDS);
Frank Filz3f7a87d2005-06-20 13:14:57 -07005309
Vlad Yasevich81845c22006-01-30 15:59:54 -08005310 if (attempts <= asoc->max_init_attempts) {
Frank Filz3f7a87d2005-06-20 13:14:57 -07005311 bp = (struct sctp_bind_addr *) &asoc->base.bind_addr;
5312 repl = sctp_make_init(asoc, bp, GFP_ATOMIC, 0);
5313 if (!repl)
5314 return SCTP_DISPOSITION_NOMEM;
5315
5316 /* Choose transport for INIT. */
5317 sctp_add_cmd_sf(commands, SCTP_CMD_INIT_CHOOSE_TRANSPORT,
5318 SCTP_CHUNK(repl));
5319
5320 /* Issue a sideeffect to do the needed accounting. */
5321 sctp_add_cmd_sf(commands, SCTP_CMD_INIT_RESTART,
5322 SCTP_TO(SCTP_EVENT_TIMEOUT_T1_INIT));
5323
5324 sctp_add_cmd_sf(commands, SCTP_CMD_REPLY, SCTP_CHUNK(repl));
5325 } else {
5326 SCTP_DEBUG_PRINTK("Giving up on INIT, attempts: %d"
5327 " max_init_attempts: %d\n",
5328 attempts, asoc->max_init_attempts);
Sridhar Samudrala8de8c872006-05-19 10:58:12 -07005329 sctp_add_cmd_sf(commands, SCTP_CMD_SET_SK_ERR,
5330 SCTP_ERROR(ETIMEDOUT));
Frank Filz3f7a87d2005-06-20 13:14:57 -07005331 sctp_add_cmd_sf(commands, SCTP_CMD_INIT_FAILED,
Al Virodc251b22006-11-20 17:00:44 -08005332 SCTP_PERR(SCTP_ERROR_NO_ERROR));
Frank Filz3f7a87d2005-06-20 13:14:57 -07005333 return SCTP_DISPOSITION_DELETE_TCB;
5334 }
5335
5336 return SCTP_DISPOSITION_CONSUME;
5337}
5338
5339/*
5340 * sctp_sf_t1_cookie_timer_expire
5341 *
5342 * Section: 4 Note: 2
5343 * Verification Tag:
5344 * Inputs
5345 * (endpoint, asoc)
5346 *
5347 * RFC 2960 Section 4 Notes
5348 * 3) If the T1-cookie timer expires, the endpoint MUST retransmit
Linus Torvalds1da177e2005-04-16 15:20:36 -07005349 * COOKIE ECHO and re-start the T1-cookie timer without changing
5350 * state. This MUST be repeated up to 'Max.Init.Retransmits' times.
5351 * After that, the endpoint MUST abort the initialization process and
5352 * report the error to SCTP user.
5353 *
5354 * Outputs
5355 * (timers, events)
5356 *
5357 */
Frank Filz3f7a87d2005-06-20 13:14:57 -07005358sctp_disposition_t sctp_sf_t1_cookie_timer_expire(const struct sctp_endpoint *ep,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005359 const struct sctp_association *asoc,
5360 const sctp_subtype_t type,
5361 void *arg,
5362 sctp_cmd_seq_t *commands)
5363{
Frank Filz3f7a87d2005-06-20 13:14:57 -07005364 struct sctp_chunk *repl = NULL;
5365 int attempts = asoc->init_err_counter + 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005366
Frank Filz3f7a87d2005-06-20 13:14:57 -07005367 SCTP_DEBUG_PRINTK("Timer T1 expired (COOKIE-ECHO).\n");
Sridhar Samudralaac0b0462006-08-22 00:15:33 -07005368 SCTP_INC_STATS(SCTP_MIB_T1_COOKIE_EXPIREDS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005369
Vlad Yasevich81845c22006-01-30 15:59:54 -08005370 if (attempts <= asoc->max_init_attempts) {
Frank Filz3f7a87d2005-06-20 13:14:57 -07005371 repl = sctp_make_cookie_echo(asoc, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005372 if (!repl)
Frank Filz3f7a87d2005-06-20 13:14:57 -07005373 return SCTP_DISPOSITION_NOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005374
Vlad Yasevich96cd0d32008-09-08 14:00:26 -04005375 sctp_add_cmd_sf(commands, SCTP_CMD_INIT_CHOOSE_TRANSPORT,
5376 SCTP_CHUNK(repl));
Linus Torvalds1da177e2005-04-16 15:20:36 -07005377 /* Issue a sideeffect to do the needed accounting. */
Frank Filz3f7a87d2005-06-20 13:14:57 -07005378 sctp_add_cmd_sf(commands, SCTP_CMD_COOKIEECHO_RESTART,
5379 SCTP_TO(SCTP_EVENT_TIMEOUT_T1_COOKIE));
5380
Linus Torvalds1da177e2005-04-16 15:20:36 -07005381 sctp_add_cmd_sf(commands, SCTP_CMD_REPLY, SCTP_CHUNK(repl));
5382 } else {
Sridhar Samudrala8de8c872006-05-19 10:58:12 -07005383 sctp_add_cmd_sf(commands, SCTP_CMD_SET_SK_ERR,
5384 SCTP_ERROR(ETIMEDOUT));
Linus Torvalds1da177e2005-04-16 15:20:36 -07005385 sctp_add_cmd_sf(commands, SCTP_CMD_INIT_FAILED,
Al Virodc251b22006-11-20 17:00:44 -08005386 SCTP_PERR(SCTP_ERROR_NO_ERROR));
Linus Torvalds1da177e2005-04-16 15:20:36 -07005387 return SCTP_DISPOSITION_DELETE_TCB;
5388 }
5389
5390 return SCTP_DISPOSITION_CONSUME;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005391}
5392
5393/* RFC2960 9.2 If the timer expires, the endpoint must re-send the SHUTDOWN
5394 * with the updated last sequential TSN received from its peer.
5395 *
5396 * An endpoint should limit the number of retransmissions of the
5397 * SHUTDOWN chunk to the protocol parameter 'Association.Max.Retrans'.
5398 * If this threshold is exceeded the endpoint should destroy the TCB and
5399 * MUST report the peer endpoint unreachable to the upper layer (and
5400 * thus the association enters the CLOSED state). The reception of any
5401 * packet from its peer (i.e. as the peer sends all of its queued DATA
5402 * chunks) should clear the endpoint's retransmission count and restart
5403 * the T2-Shutdown timer, giving its peer ample opportunity to transmit
5404 * all of its queued DATA chunks that have not yet been sent.
5405 */
5406sctp_disposition_t sctp_sf_t2_timer_expire(const struct sctp_endpoint *ep,
5407 const struct sctp_association *asoc,
5408 const sctp_subtype_t type,
5409 void *arg,
5410 sctp_cmd_seq_t *commands)
5411{
5412 struct sctp_chunk *reply = NULL;
5413
5414 SCTP_DEBUG_PRINTK("Timer T2 expired.\n");
Sridhar Samudralaac0b0462006-08-22 00:15:33 -07005415 SCTP_INC_STATS(SCTP_MIB_T2_SHUTDOWN_EXPIREDS);
5416
Neil Horman58fbbed2008-02-29 11:40:56 -08005417 ((struct sctp_association *)asoc)->shutdown_retries++;
5418
Linus Torvalds1da177e2005-04-16 15:20:36 -07005419 if (asoc->overall_error_count >= asoc->max_retrans) {
Sridhar Samudrala8de8c872006-05-19 10:58:12 -07005420 sctp_add_cmd_sf(commands, SCTP_CMD_SET_SK_ERR,
5421 SCTP_ERROR(ETIMEDOUT));
Linus Torvalds1da177e2005-04-16 15:20:36 -07005422 /* Note: CMD_ASSOC_FAILED calls CMD_DELETE_TCB. */
5423 sctp_add_cmd_sf(commands, SCTP_CMD_ASSOC_FAILED,
Al Viro5be291f2006-11-20 17:01:06 -08005424 SCTP_PERR(SCTP_ERROR_NO_ERROR));
Linus Torvalds1da177e2005-04-16 15:20:36 -07005425 SCTP_INC_STATS(SCTP_MIB_ABORTEDS);
5426 SCTP_DEC_STATS(SCTP_MIB_CURRESTAB);
5427 return SCTP_DISPOSITION_DELETE_TCB;
5428 }
5429
5430 switch (asoc->state) {
5431 case SCTP_STATE_SHUTDOWN_SENT:
5432 reply = sctp_make_shutdown(asoc, NULL);
5433 break;
5434
5435 case SCTP_STATE_SHUTDOWN_ACK_SENT:
5436 reply = sctp_make_shutdown_ack(asoc, NULL);
5437 break;
5438
5439 default:
5440 BUG();
5441 break;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07005442 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005443
5444 if (!reply)
5445 goto nomem;
5446
5447 /* Do some failure management (Section 8.2). */
5448 sctp_add_cmd_sf(commands, SCTP_CMD_STRIKE,
5449 SCTP_TRANSPORT(asoc->shutdown_last_sent_to));
5450
5451 /* Set the transport for the SHUTDOWN/ACK chunk and the timeout for
5452 * the T2-shutdown timer.
5453 */
5454 sctp_add_cmd_sf(commands, SCTP_CMD_SETUP_T2, SCTP_CHUNK(reply));
5455
5456 /* Restart the T2-shutdown timer. */
5457 sctp_add_cmd_sf(commands, SCTP_CMD_TIMER_RESTART,
5458 SCTP_TO(SCTP_EVENT_TIMEOUT_T2_SHUTDOWN));
5459 sctp_add_cmd_sf(commands, SCTP_CMD_REPLY, SCTP_CHUNK(reply));
5460 return SCTP_DISPOSITION_CONSUME;
5461
5462nomem:
5463 return SCTP_DISPOSITION_NOMEM;
5464}
5465
5466/*
5467 * ADDIP Section 4.1 ASCONF CHunk Procedures
5468 * If the T4 RTO timer expires the endpoint should do B1 to B5
5469 */
5470sctp_disposition_t sctp_sf_t4_timer_expire(
5471 const struct sctp_endpoint *ep,
5472 const struct sctp_association *asoc,
5473 const sctp_subtype_t type,
5474 void *arg,
5475 sctp_cmd_seq_t *commands)
5476{
5477 struct sctp_chunk *chunk = asoc->addip_last_asconf;
5478 struct sctp_transport *transport = chunk->transport;
5479
Sridhar Samudralaac0b0462006-08-22 00:15:33 -07005480 SCTP_INC_STATS(SCTP_MIB_T4_RTO_EXPIREDS);
5481
Linus Torvalds1da177e2005-04-16 15:20:36 -07005482 /* ADDIP 4.1 B1) Increment the error counters and perform path failure
5483 * detection on the appropriate destination address as defined in
5484 * RFC2960 [5] section 8.1 and 8.2.
5485 */
5486 sctp_add_cmd_sf(commands, SCTP_CMD_STRIKE, SCTP_TRANSPORT(transport));
5487
5488 /* Reconfig T4 timer and transport. */
5489 sctp_add_cmd_sf(commands, SCTP_CMD_SETUP_T4, SCTP_CHUNK(chunk));
5490
5491 /* ADDIP 4.1 B2) Increment the association error counters and perform
5492 * endpoint failure detection on the association as defined in
5493 * RFC2960 [5] section 8.1 and 8.2.
5494 * association error counter is incremented in SCTP_CMD_STRIKE.
5495 */
5496 if (asoc->overall_error_count >= asoc->max_retrans) {
5497 sctp_add_cmd_sf(commands, SCTP_CMD_TIMER_STOP,
5498 SCTP_TO(SCTP_EVENT_TIMEOUT_T4_RTO));
Sridhar Samudrala8de8c872006-05-19 10:58:12 -07005499 sctp_add_cmd_sf(commands, SCTP_CMD_SET_SK_ERR,
5500 SCTP_ERROR(ETIMEDOUT));
Linus Torvalds1da177e2005-04-16 15:20:36 -07005501 sctp_add_cmd_sf(commands, SCTP_CMD_ASSOC_FAILED,
Al Viro5be291f2006-11-20 17:01:06 -08005502 SCTP_PERR(SCTP_ERROR_NO_ERROR));
Linus Torvalds1da177e2005-04-16 15:20:36 -07005503 SCTP_INC_STATS(SCTP_MIB_ABORTEDS);
Wei Yongjun3d5a0192008-10-09 14:32:24 -07005504 SCTP_DEC_STATS(SCTP_MIB_CURRESTAB);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005505 return SCTP_DISPOSITION_ABORT;
5506 }
5507
5508 /* ADDIP 4.1 B3) Back-off the destination address RTO value to which
5509 * the ASCONF chunk was sent by doubling the RTO timer value.
5510 * This is done in SCTP_CMD_STRIKE.
5511 */
5512
5513 /* ADDIP 4.1 B4) Re-transmit the ASCONF Chunk last sent and if possible
5514 * choose an alternate destination address (please refer to RFC2960
5515 * [5] section 6.4.1). An endpoint MUST NOT add new parameters to this
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09005516 * chunk, it MUST be the same (including its serial number) as the last
Linus Torvalds1da177e2005-04-16 15:20:36 -07005517 * ASCONF sent.
5518 */
5519 sctp_chunk_hold(asoc->addip_last_asconf);
5520 sctp_add_cmd_sf(commands, SCTP_CMD_REPLY,
5521 SCTP_CHUNK(asoc->addip_last_asconf));
5522
5523 /* ADDIP 4.1 B5) Restart the T-4 RTO timer. Note that if a different
5524 * destination is selected, then the RTO used will be that of the new
5525 * destination address.
5526 */
5527 sctp_add_cmd_sf(commands, SCTP_CMD_TIMER_RESTART,
5528 SCTP_TO(SCTP_EVENT_TIMEOUT_T4_RTO));
5529
5530 return SCTP_DISPOSITION_CONSUME;
5531}
5532
5533/* sctpimpguide-05 Section 2.12.2
5534 * The sender of the SHUTDOWN MAY also start an overall guard timer
5535 * 'T5-shutdown-guard' to bound the overall time for shutdown sequence.
5536 * At the expiration of this timer the sender SHOULD abort the association
5537 * by sending an ABORT chunk.
5538 */
5539sctp_disposition_t sctp_sf_t5_timer_expire(const struct sctp_endpoint *ep,
5540 const struct sctp_association *asoc,
5541 const sctp_subtype_t type,
5542 void *arg,
5543 sctp_cmd_seq_t *commands)
5544{
5545 struct sctp_chunk *reply = NULL;
5546
5547 SCTP_DEBUG_PRINTK("Timer T5 expired.\n");
Sridhar Samudralaac0b0462006-08-22 00:15:33 -07005548 SCTP_INC_STATS(SCTP_MIB_T5_SHUTDOWN_GUARD_EXPIREDS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005549
5550 reply = sctp_make_abort(asoc, NULL, 0);
5551 if (!reply)
5552 goto nomem;
5553
5554 sctp_add_cmd_sf(commands, SCTP_CMD_REPLY, SCTP_CHUNK(reply));
Sridhar Samudrala8de8c872006-05-19 10:58:12 -07005555 sctp_add_cmd_sf(commands, SCTP_CMD_SET_SK_ERR,
5556 SCTP_ERROR(ETIMEDOUT));
Linus Torvalds1da177e2005-04-16 15:20:36 -07005557 sctp_add_cmd_sf(commands, SCTP_CMD_ASSOC_FAILED,
Al Viro5be291f2006-11-20 17:01:06 -08005558 SCTP_PERR(SCTP_ERROR_NO_ERROR));
Linus Torvalds1da177e2005-04-16 15:20:36 -07005559
Vlad Yasevicha1080a82008-10-09 14:33:26 -07005560 SCTP_INC_STATS(SCTP_MIB_ABORTEDS);
5561 SCTP_DEC_STATS(SCTP_MIB_CURRESTAB);
5562
Linus Torvalds1da177e2005-04-16 15:20:36 -07005563 return SCTP_DISPOSITION_DELETE_TCB;
5564nomem:
5565 return SCTP_DISPOSITION_NOMEM;
5566}
5567
5568/* Handle expiration of AUTOCLOSE timer. When the autoclose timer expires,
5569 * the association is automatically closed by starting the shutdown process.
5570 * The work that needs to be done is same as when SHUTDOWN is initiated by
5571 * the user. So this routine looks same as sctp_sf_do_9_2_prm_shutdown().
5572 */
5573sctp_disposition_t sctp_sf_autoclose_timer_expire(
5574 const struct sctp_endpoint *ep,
5575 const struct sctp_association *asoc,
5576 const sctp_subtype_t type,
5577 void *arg,
5578 sctp_cmd_seq_t *commands)
5579{
5580 int disposition;
5581
Sridhar Samudralaac0b0462006-08-22 00:15:33 -07005582 SCTP_INC_STATS(SCTP_MIB_AUTOCLOSE_EXPIREDS);
5583
Linus Torvalds1da177e2005-04-16 15:20:36 -07005584 /* From 9.2 Shutdown of an Association
5585 * Upon receipt of the SHUTDOWN primitive from its upper
5586 * layer, the endpoint enters SHUTDOWN-PENDING state and
5587 * remains there until all outstanding data has been
5588 * acknowledged by its peer. The endpoint accepts no new data
5589 * from its upper layer, but retransmits data to the far end
5590 * if necessary to fill gaps.
5591 */
5592 sctp_add_cmd_sf(commands, SCTP_CMD_NEW_STATE,
5593 SCTP_STATE(SCTP_STATE_SHUTDOWN_PENDING));
5594
Linus Torvalds1da177e2005-04-16 15:20:36 -07005595 disposition = SCTP_DISPOSITION_CONSUME;
5596 if (sctp_outq_is_empty(&asoc->outqueue)) {
5597 disposition = sctp_sf_do_9_2_start_shutdown(ep, asoc, type,
5598 arg, commands);
5599 }
5600 return disposition;
5601}
5602
5603/*****************************************************************************
5604 * These are sa state functions which could apply to all types of events.
5605 ****************************************************************************/
5606
5607/*
5608 * This table entry is not implemented.
5609 *
5610 * Inputs
5611 * (endpoint, asoc, chunk)
5612 *
5613 * The return value is the disposition of the chunk.
5614 */
5615sctp_disposition_t sctp_sf_not_impl(const struct sctp_endpoint *ep,
5616 const struct sctp_association *asoc,
5617 const sctp_subtype_t type,
5618 void *arg,
5619 sctp_cmd_seq_t *commands)
5620{
5621 return SCTP_DISPOSITION_NOT_IMPL;
5622}
5623
5624/*
5625 * This table entry represents a bug.
5626 *
5627 * Inputs
5628 * (endpoint, asoc, chunk)
5629 *
5630 * The return value is the disposition of the chunk.
5631 */
5632sctp_disposition_t sctp_sf_bug(const struct sctp_endpoint *ep,
5633 const struct sctp_association *asoc,
5634 const sctp_subtype_t type,
5635 void *arg,
5636 sctp_cmd_seq_t *commands)
5637{
5638 return SCTP_DISPOSITION_BUG;
5639}
5640
5641/*
5642 * This table entry represents the firing of a timer in the wrong state.
5643 * Since timer deletion cannot be guaranteed a timer 'may' end up firing
5644 * when the association is in the wrong state. This event should
5645 * be ignored, so as to prevent any rearming of the timer.
5646 *
5647 * Inputs
5648 * (endpoint, asoc, chunk)
5649 *
5650 * The return value is the disposition of the chunk.
5651 */
5652sctp_disposition_t sctp_sf_timer_ignore(const struct sctp_endpoint *ep,
5653 const struct sctp_association *asoc,
5654 const sctp_subtype_t type,
5655 void *arg,
5656 sctp_cmd_seq_t *commands)
5657{
5658 SCTP_DEBUG_PRINTK("Timer %d ignored.\n", type.chunk);
5659 return SCTP_DISPOSITION_CONSUME;
5660}
5661
5662/********************************************************************
5663 * 2nd Level Abstractions
5664 ********************************************************************/
5665
5666/* Pull the SACK chunk based on the SACK header. */
5667static struct sctp_sackhdr *sctp_sm_pull_sack(struct sctp_chunk *chunk)
5668{
5669 struct sctp_sackhdr *sack;
5670 unsigned int len;
5671 __u16 num_blocks;
5672 __u16 num_dup_tsns;
5673
5674 /* Protect ourselves from reading too far into
5675 * the skb from a bogus sender.
5676 */
5677 sack = (struct sctp_sackhdr *) chunk->skb->data;
5678
5679 num_blocks = ntohs(sack->num_gap_ack_blocks);
5680 num_dup_tsns = ntohs(sack->num_dup_tsns);
5681 len = sizeof(struct sctp_sackhdr);
5682 len += (num_blocks + num_dup_tsns) * sizeof(__u32);
5683 if (len > chunk->skb->len)
5684 return NULL;
5685
5686 skb_pull(chunk->skb, len);
5687
5688 return sack;
5689}
5690
5691/* Create an ABORT packet to be sent as a response, with the specified
5692 * error causes.
5693 */
5694static struct sctp_packet *sctp_abort_pkt_new(const struct sctp_endpoint *ep,
5695 const struct sctp_association *asoc,
5696 struct sctp_chunk *chunk,
5697 const void *payload,
5698 size_t paylen)
5699{
5700 struct sctp_packet *packet;
5701 struct sctp_chunk *abort;
5702
5703 packet = sctp_ootb_pkt_new(asoc, chunk);
5704
5705 if (packet) {
5706 /* Make an ABORT.
5707 * The T bit will be set if the asoc is NULL.
5708 */
5709 abort = sctp_make_abort(asoc, chunk, paylen);
5710 if (!abort) {
5711 sctp_ootb_pkt_free(packet);
5712 return NULL;
5713 }
Jerome Forissier047a2422005-04-28 11:58:43 -07005714
5715 /* Reflect vtag if T-Bit is set */
5716 if (sctp_test_T_bit(abort))
5717 packet->vtag = ntohl(chunk->sctp_hdr->vtag);
5718
Linus Torvalds1da177e2005-04-16 15:20:36 -07005719 /* Add specified error causes, i.e., payload, to the
5720 * end of the chunk.
5721 */
5722 sctp_addto_chunk(abort, paylen, payload);
5723
5724 /* Set the skb to the belonging sock for accounting. */
5725 abort->skb->sk = ep->base.sk;
5726
5727 sctp_packet_append_chunk(packet, abort);
5728
5729 }
5730
5731 return packet;
5732}
5733
5734/* Allocate a packet for responding in the OOTB conditions. */
5735static struct sctp_packet *sctp_ootb_pkt_new(const struct sctp_association *asoc,
5736 const struct sctp_chunk *chunk)
5737{
5738 struct sctp_packet *packet;
5739 struct sctp_transport *transport;
5740 __u16 sport;
5741 __u16 dport;
5742 __u32 vtag;
5743
5744 /* Get the source and destination port from the inbound packet. */
5745 sport = ntohs(chunk->sctp_hdr->dest);
5746 dport = ntohs(chunk->sctp_hdr->source);
5747
5748 /* The V-tag is going to be the same as the inbound packet if no
5749 * association exists, otherwise, use the peer's vtag.
5750 */
5751 if (asoc) {
Wei Yongjun02c4e122007-08-31 10:03:58 +08005752 /* Special case the INIT-ACK as there is no peer's vtag
5753 * yet.
5754 */
5755 switch(chunk->chunk_hdr->type) {
5756 case SCTP_CID_INIT_ACK:
5757 {
5758 sctp_initack_chunk_t *initack;
5759
5760 initack = (sctp_initack_chunk_t *)chunk->chunk_hdr;
5761 vtag = ntohl(initack->init_hdr.init_tag);
5762 break;
5763 }
5764 default:
5765 vtag = asoc->peer.i.init_tag;
5766 break;
5767 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005768 } else {
5769 /* Special case the INIT and stale COOKIE_ECHO as there is no
5770 * vtag yet.
5771 */
5772 switch(chunk->chunk_hdr->type) {
5773 case SCTP_CID_INIT:
5774 {
5775 sctp_init_chunk_t *init;
5776
5777 init = (sctp_init_chunk_t *)chunk->chunk_hdr;
5778 vtag = ntohl(init->init_hdr.init_tag);
5779 break;
5780 }
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09005781 default:
Linus Torvalds1da177e2005-04-16 15:20:36 -07005782 vtag = ntohl(chunk->sctp_hdr->vtag);
5783 break;
5784 }
5785 }
5786
5787 /* Make a transport for the bucket, Eliza... */
Al Viro6a1e5f32006-11-20 17:12:25 -08005788 transport = sctp_transport_new(sctp_source(chunk), GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005789 if (!transport)
5790 goto nomem;
5791
5792 /* Cache a route for the transport with the chunk's destination as
5793 * the source address.
5794 */
Al Viro16b0a032006-11-20 17:13:38 -08005795 sctp_transport_route(transport, (union sctp_addr *)&chunk->dest,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005796 sctp_sk(sctp_get_ctl_sock()));
5797
5798 packet = sctp_packet_init(&transport->packet, transport, sport, dport);
5799 packet = sctp_packet_config(packet, vtag, 0);
5800
5801 return packet;
5802
5803nomem:
5804 return NULL;
5805}
5806
5807/* Free the packet allocated earlier for responding in the OOTB condition. */
5808void sctp_ootb_pkt_free(struct sctp_packet *packet)
5809{
5810 sctp_transport_free(packet->transport);
5811}
5812
5813/* Send a stale cookie error when a invalid COOKIE ECHO chunk is found */
5814static void sctp_send_stale_cookie_err(const struct sctp_endpoint *ep,
5815 const struct sctp_association *asoc,
5816 const struct sctp_chunk *chunk,
5817 sctp_cmd_seq_t *commands,
5818 struct sctp_chunk *err_chunk)
5819{
5820 struct sctp_packet *packet;
5821
5822 if (err_chunk) {
5823 packet = sctp_ootb_pkt_new(asoc, chunk);
5824 if (packet) {
5825 struct sctp_signed_cookie *cookie;
5826
5827 /* Override the OOTB vtag from the cookie. */
5828 cookie = chunk->subh.cookie_hdr;
5829 packet->vtag = cookie->c.peer_vtag;
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09005830
Linus Torvalds1da177e2005-04-16 15:20:36 -07005831 /* Set the skb to the belonging sock for accounting. */
5832 err_chunk->skb->sk = ep->base.sk;
5833 sctp_packet_append_chunk(packet, err_chunk);
5834 sctp_add_cmd_sf(commands, SCTP_CMD_SEND_PKT,
5835 SCTP_PACKET(packet));
5836 SCTP_INC_STATS(SCTP_MIB_OUTCTRLCHUNKS);
5837 } else
5838 sctp_chunk_free (err_chunk);
5839 }
5840}
5841
5842
5843/* Process a data chunk */
5844static int sctp_eat_data(const struct sctp_association *asoc,
5845 struct sctp_chunk *chunk,
5846 sctp_cmd_seq_t *commands)
5847{
5848 sctp_datahdr_t *data_hdr;
5849 struct sctp_chunk *err;
5850 size_t datalen;
5851 sctp_verb_t deliver;
5852 int tmp;
5853 __u32 tsn;
Neil Horman7c3ceb4f2006-05-05 17:02:09 -07005854 struct sctp_tsnmap *map = (struct sctp_tsnmap *)&asoc->peer.tsn_map;
Neil Horman049b3ff2005-11-11 16:08:24 -08005855 struct sock *sk = asoc->base.sk;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005856
5857 data_hdr = chunk->subh.data_hdr = (sctp_datahdr_t *)chunk->skb->data;
5858 skb_pull(chunk->skb, sizeof(sctp_datahdr_t));
5859
5860 tsn = ntohl(data_hdr->tsn);
5861 SCTP_DEBUG_PRINTK("eat_data: TSN 0x%x.\n", tsn);
5862
5863 /* ASSERT: Now skb->data is really the user data. */
5864
Linus Torvalds1da177e2005-04-16 15:20:36 -07005865 /* Process ECN based congestion.
5866 *
5867 * Since the chunk structure is reused for all chunks within
5868 * a packet, we use ecn_ce_done to track if we've already
5869 * done CE processing for this packet.
5870 *
5871 * We need to do ECN processing even if we plan to discard the
5872 * chunk later.
5873 */
5874
5875 if (!chunk->ecn_ce_done) {
5876 struct sctp_af *af;
5877 chunk->ecn_ce_done = 1;
5878
5879 af = sctp_get_af_specific(
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -07005880 ipver2af(ip_hdr(chunk->skb)->version));
Linus Torvalds1da177e2005-04-16 15:20:36 -07005881
5882 if (af && af->is_ce(chunk->skb) && asoc->peer.ecn_capable) {
5883 /* Do real work as sideffect. */
5884 sctp_add_cmd_sf(commands, SCTP_CMD_ECN_CE,
5885 SCTP_U32(tsn));
5886 }
5887 }
5888
5889 tmp = sctp_tsnmap_check(&asoc->peer.tsn_map, tsn);
5890 if (tmp < 0) {
5891 /* The TSN is too high--silently discard the chunk and
5892 * count on it getting retransmitted later.
5893 */
5894 return SCTP_IERROR_HIGH_TSN;
5895 } else if (tmp > 0) {
5896 /* This is a duplicate. Record it. */
5897 sctp_add_cmd_sf(commands, SCTP_CMD_REPORT_DUP, SCTP_U32(tsn));
5898 return SCTP_IERROR_DUP_TSN;
5899 }
5900
5901 /* This is a new TSN. */
5902
5903 /* Discard if there is no room in the receive window.
5904 * Actually, allow a little bit of overflow (up to a MTU).
5905 */
5906 datalen = ntohs(chunk->chunk_hdr->length);
5907 datalen -= sizeof(sctp_data_chunk_t);
5908
5909 deliver = SCTP_CMD_CHUNK_ULP;
5910
5911 /* Think about partial delivery. */
5912 if ((datalen >= asoc->rwnd) && (!asoc->ulpq.pd_mode)) {
5913
5914 /* Even if we don't accept this chunk there is
5915 * memory pressure.
5916 */
5917 sctp_add_cmd_sf(commands, SCTP_CMD_PART_DELIVER, SCTP_NULL());
5918 }
5919
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09005920 /* Spill over rwnd a little bit. Note: While allowed, this spill over
Linus Torvalds1da177e2005-04-16 15:20:36 -07005921 * seems a bit troublesome in that frag_point varies based on
5922 * PMTU. In cases, such as loopback, this might be a rather
5923 * large spill over.
5924 */
Neil Horman4d93df02007-08-15 16:07:44 -07005925 if ((!chunk->data_accepted) && (!asoc->rwnd || asoc->rwnd_over ||
5926 (datalen > asoc->rwnd + asoc->frag_point))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005927
5928 /* If this is the next TSN, consider reneging to make
5929 * room. Note: Playing nice with a confused sender. A
5930 * malicious sender can still eat up all our buffer
5931 * space and in the future we may want to detect and
5932 * do more drastic reneging.
5933 */
Neil Horman7c3ceb4f2006-05-05 17:02:09 -07005934 if (sctp_tsnmap_has_gap(map) &&
5935 (sctp_tsnmap_get_ctsn(map) + 1) == tsn) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005936 SCTP_DEBUG_PRINTK("Reneging for tsn:%u\n", tsn);
5937 deliver = SCTP_CMD_RENEGE;
5938 } else {
5939 SCTP_DEBUG_PRINTK("Discard tsn: %u len: %Zd, "
5940 "rwnd: %d\n", tsn, datalen,
5941 asoc->rwnd);
5942 return SCTP_IERROR_IGNORE_TSN;
5943 }
5944 }
5945
5946 /*
Neil Horman4d93df02007-08-15 16:07:44 -07005947 * Also try to renege to limit our memory usage in the event that
5948 * we are under memory pressure
Hideo Aoki3ab224b2007-12-31 00:11:19 -08005949 * If we can't renege, don't worry about it, the sk_rmem_schedule
Neil Horman4d93df02007-08-15 16:07:44 -07005950 * in sctp_ulpevent_make_rcvmsg will drop the frame if we grow our
5951 * memory usage too much
5952 */
5953 if (*sk->sk_prot_creator->memory_pressure) {
5954 if (sctp_tsnmap_has_gap(map) &&
5955 (sctp_tsnmap_get_ctsn(map) + 1) == tsn) {
5956 SCTP_DEBUG_PRINTK("Under Pressure! Reneging for tsn:%u\n", tsn);
5957 deliver = SCTP_CMD_RENEGE;
5958 }
5959 }
5960
5961 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005962 * Section 3.3.10.9 No User Data (9)
5963 *
5964 * Cause of error
5965 * ---------------
5966 * No User Data: This error cause is returned to the originator of a
5967 * DATA chunk if a received DATA chunk has no user data.
5968 */
5969 if (unlikely(0 == datalen)) {
5970 err = sctp_make_abort_no_data(asoc, chunk, tsn);
5971 if (err) {
5972 sctp_add_cmd_sf(commands, SCTP_CMD_REPLY,
5973 SCTP_CHUNK(err));
5974 }
5975 /* We are going to ABORT, so we might as well stop
5976 * processing the rest of the chunks in the packet.
5977 */
5978 sctp_add_cmd_sf(commands, SCTP_CMD_DISCARD_PACKET,SCTP_NULL());
Sridhar Samudrala8de8c872006-05-19 10:58:12 -07005979 sctp_add_cmd_sf(commands, SCTP_CMD_SET_SK_ERR,
5980 SCTP_ERROR(ECONNABORTED));
Linus Torvalds1da177e2005-04-16 15:20:36 -07005981 sctp_add_cmd_sf(commands, SCTP_CMD_ASSOC_FAILED,
Al Viro5be291f2006-11-20 17:01:06 -08005982 SCTP_PERR(SCTP_ERROR_NO_DATA));
Linus Torvalds1da177e2005-04-16 15:20:36 -07005983 SCTP_INC_STATS(SCTP_MIB_ABORTEDS);
5984 SCTP_DEC_STATS(SCTP_MIB_CURRESTAB);
5985 return SCTP_IERROR_NO_DATA;
5986 }
5987
Sridhar Samudrala9faa7302006-07-21 14:49:07 -07005988 chunk->data_accepted = 1;
5989
Linus Torvalds1da177e2005-04-16 15:20:36 -07005990 /* Note: Some chunks may get overcounted (if we drop) or overcounted
5991 * if we renege and the chunk arrives again.
5992 */
5993 if (chunk->chunk_hdr->flags & SCTP_DATA_UNORDERED)
5994 SCTP_INC_STATS(SCTP_MIB_INUNORDERCHUNKS);
5995 else
5996 SCTP_INC_STATS(SCTP_MIB_INORDERCHUNKS);
5997
5998 /* RFC 2960 6.5 Stream Identifier and Stream Sequence Number
5999 *
6000 * If an endpoint receive a DATA chunk with an invalid stream
6001 * identifier, it shall acknowledge the reception of the DATA chunk
6002 * following the normal procedure, immediately send an ERROR chunk
6003 * with cause set to "Invalid Stream Identifier" (See Section 3.3.10)
6004 * and discard the DATA chunk.
6005 */
6006 if (ntohs(data_hdr->stream) >= asoc->c.sinit_max_instreams) {
Vlad Yasevich3888e9e2008-07-08 02:28:39 -07006007 /* Mark tsn as received even though we drop it */
6008 sctp_add_cmd_sf(commands, SCTP_CMD_REPORT_TSN, SCTP_U32(tsn));
6009
Linus Torvalds1da177e2005-04-16 15:20:36 -07006010 err = sctp_make_op_error(asoc, chunk, SCTP_ERROR_INV_STRM,
6011 &data_hdr->stream,
6012 sizeof(data_hdr->stream));
6013 if (err)
6014 sctp_add_cmd_sf(commands, SCTP_CMD_REPLY,
6015 SCTP_CHUNK(err));
6016 return SCTP_IERROR_BAD_STREAM;
6017 }
6018
6019 /* Send the data up to the user. Note: Schedule the
6020 * SCTP_CMD_CHUNK_ULP cmd before the SCTP_CMD_GEN_SACK, as the SACK
6021 * chunk needs the updated rwnd.
6022 */
6023 sctp_add_cmd_sf(commands, deliver, SCTP_CHUNK(chunk));
6024
6025 return SCTP_IERROR_NO_ERROR;
6026}