[SCTP]: Implement the receive and verification of AUTH chunk
[GitHub/moto-9609/android_kernel_motorola_exynos9610.git] / net / sctp / sm_statefuns.c
CommitLineData
1da177e4
LT
1/* SCTP kernel reference Implementation
2 * (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 *
8 * This file is part of the SCTP kernel reference Implementation
9 *
10 * This is part of the SCTP Linux Kernel Reference Implementation.
11 *
12 * These are the state functions for the state machine.
13 *
14 * The SCTP reference implementation is free software;
15 * you can redistribute it and/or modify it under the terms of
16 * the GNU General Public License as published by
17 * the Free Software Foundation; either version 2, or (at your option)
18 * any later version.
19 *
20 * The SCTP reference implementation is distributed in the hope that it
21 * will be useful, but WITHOUT ANY WARRANTY; without even the implied
22 * ************************
23 * warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
24 * See the GNU General Public License for more details.
25 *
26 * You should have received a copy of the GNU General Public License
27 * along with GNU CC; see the file COPYING. If not, write to
28 * the Free Software Foundation, 59 Temple Place - Suite 330,
29 * Boston, MA 02111-1307, USA.
30 *
31 * Please send any bug reports or fixes you make to the
32 * email address(es):
33 * lksctp developers <lksctp-developers@lists.sourceforge.net>
34 *
35 * Or submit a bug report through the following website:
36 * http://www.sf.net/projects/lksctp
37 *
38 * Written or modified by:
39 * La Monte H.P. Yarroll <piggy@acm.org>
40 * Karl Knutson <karl@athena.chicago.il.us>
41 * Mathew Kotowsky <kotowsky@sctp.org>
42 * Sridhar Samudrala <samudrala@us.ibm.com>
43 * Jon Grimm <jgrimm@us.ibm.com>
44 * Hui Huang <hui.huang@nokia.com>
45 * Dajiang Zhang <dajiang.zhang@nokia.com>
46 * Daisy Chang <daisyc@us.ibm.com>
47 * Ardelle Fan <ardelle.fan@intel.com>
48 * Ryan Layer <rmlayer@us.ibm.com>
49 * Kevin Gao <kevin.gao@intel.com>
50 *
51 * Any bugs reported given to us we will try to fix... any fixes shared will
52 * be incorporated into the next SCTP release.
53 */
54
55#include <linux/types.h>
56#include <linux/kernel.h>
57#include <linux/ip.h>
58#include <linux/ipv6.h>
59#include <linux/net.h>
60#include <linux/inet.h>
61#include <net/sock.h>
62#include <net/inet_ecn.h>
63#include <linux/skbuff.h>
64#include <net/sctp/sctp.h>
65#include <net/sctp/sm.h>
66#include <net/sctp/structs.h>
67
68static struct sctp_packet *sctp_abort_pkt_new(const struct sctp_endpoint *ep,
69 const struct sctp_association *asoc,
70 struct sctp_chunk *chunk,
71 const void *payload,
72 size_t paylen);
73static int sctp_eat_data(const struct sctp_association *asoc,
74 struct sctp_chunk *chunk,
75 sctp_cmd_seq_t *commands);
76static struct sctp_packet *sctp_ootb_pkt_new(const struct sctp_association *asoc,
77 const struct sctp_chunk *chunk);
78static void sctp_send_stale_cookie_err(const struct sctp_endpoint *ep,
79 const struct sctp_association *asoc,
80 const struct sctp_chunk *chunk,
81 sctp_cmd_seq_t *commands,
82 struct sctp_chunk *err_chunk);
83static sctp_disposition_t sctp_sf_do_5_2_6_stale(const struct sctp_endpoint *ep,
84 const struct sctp_association *asoc,
85 const sctp_subtype_t type,
86 void *arg,
87 sctp_cmd_seq_t *commands);
88static sctp_disposition_t sctp_sf_shut_8_4_5(const struct sctp_endpoint *ep,
89 const struct sctp_association *asoc,
90 const sctp_subtype_t type,
91 void *arg,
92 sctp_cmd_seq_t *commands);
ece25dfa
VY
93static sctp_disposition_t sctp_sf_tabort_8_4_8(const struct sctp_endpoint *ep,
94 const struct sctp_association *asoc,
95 const sctp_subtype_t type,
96 void *arg,
97 sctp_cmd_seq_t *commands);
1da177e4
LT
98static struct sctp_sackhdr *sctp_sm_pull_sack(struct sctp_chunk *chunk);
99
52c1da39 100static sctp_disposition_t sctp_stop_t1_and_abort(sctp_cmd_seq_t *commands,
f94c0198 101 __be16 error, int sk_err,
52c1da39
AB
102 const struct sctp_association *asoc,
103 struct sctp_transport *transport);
104
aecedeab 105static sctp_disposition_t sctp_sf_abort_violation(
ece25dfa 106 const struct sctp_endpoint *ep,
aecedeab
WY
107 const struct sctp_association *asoc,
108 void *arg,
109 sctp_cmd_seq_t *commands,
110 const __u8 *payload,
111 const size_t paylen);
112
52c1da39
AB
113static sctp_disposition_t sctp_sf_violation_chunklen(
114 const struct sctp_endpoint *ep,
115 const struct sctp_association *asoc,
116 const sctp_subtype_t type,
117 void *arg,
118 sctp_cmd_seq_t *commands);
1da177e4 119
6f4c618d
WY
120static sctp_disposition_t sctp_sf_violation_paramlen(
121 const struct sctp_endpoint *ep,
122 const struct sctp_association *asoc,
123 const sctp_subtype_t type,
124 void *arg,
125 sctp_cmd_seq_t *commands);
126
aecedeab
WY
127static sctp_disposition_t sctp_sf_violation_ctsn(
128 const struct sctp_endpoint *ep,
129 const struct sctp_association *asoc,
130 const sctp_subtype_t type,
131 void *arg,
132 sctp_cmd_seq_t *commands);
133
ece25dfa
VY
134static sctp_disposition_t sctp_sf_violation_chunk(
135 const struct sctp_endpoint *ep,
136 const struct sctp_association *asoc,
137 const sctp_subtype_t type,
138 void *arg,
139 sctp_cmd_seq_t *commands);
140
bbd0d598
VY
141static sctp_ierror_t sctp_sf_authenticate(const struct sctp_endpoint *ep,
142 const struct sctp_association *asoc,
143 const sctp_subtype_t type,
144 struct sctp_chunk *chunk);
145
1da177e4
LT
146/* Small helper function that checks if the chunk length
147 * is of the appropriate length. The 'required_length' argument
148 * is set to be the size of a specific chunk we are testing.
149 * Return Values: 1 = Valid length
150 * 0 = Invalid length
151 *
152 */
153static inline int
154sctp_chunk_length_valid(struct sctp_chunk *chunk,
155 __u16 required_length)
156{
157 __u16 chunk_length = ntohs(chunk->chunk_hdr->length);
158
159 if (unlikely(chunk_length < required_length))
160 return 0;
161
162 return 1;
163}
164
165/**********************************************************
166 * These are the state functions for handling chunk events.
167 **********************************************************/
168
169/*
170 * Process the final SHUTDOWN COMPLETE.
171 *
172 * Section: 4 (C) (diagram), 9.2
173 * Upon reception of the SHUTDOWN COMPLETE chunk the endpoint will verify
174 * that it is in SHUTDOWN-ACK-SENT state, if it is not the chunk should be
175 * discarded. If the endpoint is in the SHUTDOWN-ACK-SENT state the endpoint
176 * should stop the T2-shutdown timer and remove all knowledge of the
177 * association (and thus the association enters the CLOSED state).
178 *
047a2428 179 * Verification Tag: 8.5.1(C), sctpimpguide 2.41.
1da177e4
LT
180 * C) Rules for packet carrying SHUTDOWN COMPLETE:
181 * ...
047a2428
JF
182 * - The receiver of a SHUTDOWN COMPLETE shall accept the packet
183 * if the Verification Tag field of the packet matches its own tag and
184 * the T bit is not set
185 * OR
186 * it is set to its peer's tag and the T bit is set in the Chunk
187 * Flags.
188 * Otherwise, the receiver MUST silently discard the packet
189 * and take no further action. An endpoint MUST ignore the
190 * SHUTDOWN COMPLETE if it is not in the SHUTDOWN-ACK-SENT state.
1da177e4
LT
191 *
192 * Inputs
193 * (endpoint, asoc, chunk)
194 *
195 * Outputs
196 * (asoc, reply_msg, msg_up, timers, counters)
197 *
198 * The return value is the disposition of the chunk.
199 */
200sctp_disposition_t sctp_sf_do_4_C(const struct sctp_endpoint *ep,
201 const struct sctp_association *asoc,
202 const sctp_subtype_t type,
203 void *arg,
204 sctp_cmd_seq_t *commands)
205{
206 struct sctp_chunk *chunk = arg;
207 struct sctp_ulpevent *ev;
208
ece25dfa
VY
209 if (!sctp_vtag_verify_either(chunk, asoc))
210 return sctp_sf_pdiscard(ep, asoc, type, arg, commands);
211
1da177e4
LT
212 /* RFC 2960 6.10 Bundling
213 *
214 * An endpoint MUST NOT bundle INIT, INIT ACK or
215 * SHUTDOWN COMPLETE with any other chunks.
216 */
217 if (!chunk->singleton)
ece25dfa 218 return sctp_sf_violation_chunk(ep, asoc, type, arg, commands);
1da177e4 219
ece25dfa
VY
220 /* Make sure that the SHUTDOWN_COMPLETE chunk has a valid length. */
221 if (!sctp_chunk_length_valid(chunk, sizeof(sctp_chunkhdr_t)))
222 return sctp_sf_violation_chunklen(ep, asoc, type, arg,
223 commands);
1da177e4
LT
224
225 /* RFC 2960 10.2 SCTP-to-ULP
226 *
227 * H) SHUTDOWN COMPLETE notification
228 *
229 * When SCTP completes the shutdown procedures (section 9.2) this
230 * notification is passed to the upper layer.
231 */
232 ev = sctp_ulpevent_make_assoc_change(asoc, 0, SCTP_SHUTDOWN_COMP,
a5a35e76 233 0, 0, 0, NULL, GFP_ATOMIC);
df7deeb5
VY
234 if (ev)
235 sctp_add_cmd_sf(commands, SCTP_CMD_EVENT_ULP,
d808ad9a 236 SCTP_ULPEVENT(ev));
1da177e4
LT
237
238 /* Upon reception of the SHUTDOWN COMPLETE chunk the endpoint
239 * will verify that it is in SHUTDOWN-ACK-SENT state, if it is
240 * not the chunk should be discarded. If the endpoint is in
241 * the SHUTDOWN-ACK-SENT state the endpoint should stop the
242 * T2-shutdown timer and remove all knowledge of the
243 * association (and thus the association enters the CLOSED
244 * state).
245 */
246 sctp_add_cmd_sf(commands, SCTP_CMD_TIMER_STOP,
247 SCTP_TO(SCTP_EVENT_TIMEOUT_T2_SHUTDOWN));
248
249 sctp_add_cmd_sf(commands, SCTP_CMD_TIMER_STOP,
250 SCTP_TO(SCTP_EVENT_TIMEOUT_T5_SHUTDOWN_GUARD));
251
252 sctp_add_cmd_sf(commands, SCTP_CMD_NEW_STATE,
253 SCTP_STATE(SCTP_STATE_CLOSED));
254
255 SCTP_INC_STATS(SCTP_MIB_SHUTDOWNS);
256 SCTP_DEC_STATS(SCTP_MIB_CURRESTAB);
257
258 sctp_add_cmd_sf(commands, SCTP_CMD_DELETE_TCB, SCTP_NULL());
259
260 return SCTP_DISPOSITION_DELETE_TCB;
1da177e4
LT
261}
262
263/*
264 * Respond to a normal INIT chunk.
265 * We are the side that is being asked for an association.
266 *
267 * Section: 5.1 Normal Establishment of an Association, B
268 * B) "Z" shall respond immediately with an INIT ACK chunk. The
269 * destination IP address of the INIT ACK MUST be set to the source
270 * IP address of the INIT to which this INIT ACK is responding. In
271 * the response, besides filling in other parameters, "Z" must set the
272 * Verification Tag field to Tag_A, and also provide its own
273 * Verification Tag (Tag_Z) in the Initiate Tag field.
274 *
d808ad9a 275 * Verification Tag: Must be 0.
1da177e4
LT
276 *
277 * Inputs
278 * (endpoint, asoc, chunk)
279 *
280 * Outputs
281 * (asoc, reply_msg, msg_up, timers, counters)
282 *
283 * The return value is the disposition of the chunk.
284 */
285sctp_disposition_t sctp_sf_do_5_1B_init(const struct sctp_endpoint *ep,
286 const struct sctp_association *asoc,
287 const sctp_subtype_t type,
288 void *arg,
289 sctp_cmd_seq_t *commands)
290{
291 struct sctp_chunk *chunk = arg;
292 struct sctp_chunk *repl;
293 struct sctp_association *new_asoc;
294 struct sctp_chunk *err_chunk;
295 struct sctp_packet *packet;
296 sctp_unrecognized_param_t *unk_param;
1da177e4
LT
297 int len;
298
299 /* 6.10 Bundling
300 * An endpoint MUST NOT bundle INIT, INIT ACK or
301 * SHUTDOWN COMPLETE with any other chunks.
d808ad9a 302 *
1da177e4
LT
303 * IG Section 2.11.2
304 * Furthermore, we require that the receiver of an INIT chunk MUST
305 * enforce these rules by silently discarding an arriving packet
306 * with an INIT chunk that is bundled with other chunks.
307 */
308 if (!chunk->singleton)
309 return sctp_sf_pdiscard(ep, asoc, type, arg, commands);
310
311 /* If the packet is an OOTB packet which is temporarily on the
312 * control endpoint, respond with an ABORT.
313 */
314 if (ep == sctp_sk((sctp_get_ctl_sock()))->ep)
315 return sctp_sf_tabort_8_4_8(ep, asoc, type, arg, commands);
316
1da177e4 317 /* 3.1 A packet containing an INIT chunk MUST have a zero Verification
d808ad9a 318 * Tag.
1da177e4
LT
319 */
320 if (chunk->sctp_hdr->vtag != 0)
321 return sctp_sf_tabort_8_4_8(ep, asoc, type, arg, commands);
322
323 /* Make sure that the INIT chunk has a valid length.
324 * Normally, this would cause an ABORT with a Protocol Violation
325 * error, but since we don't have an association, we'll
326 * just discard the packet.
327 */
328 if (!sctp_chunk_length_valid(chunk, sizeof(sctp_init_chunk_t)))
329 return sctp_sf_pdiscard(ep, asoc, type, arg, commands);
330
331 /* Verify the INIT chunk before processing it. */
332 err_chunk = NULL;
333 if (!sctp_verify_init(asoc, chunk->chunk_hdr->type,
334 (sctp_init_chunk_t *)chunk->chunk_hdr, chunk,
335 &err_chunk)) {
336 /* This chunk contains fatal error. It is to be discarded.
337 * Send an ABORT, with causes if there is any.
338 */
339 if (err_chunk) {
340 packet = sctp_abort_pkt_new(ep, asoc, arg,
341 (__u8 *)(err_chunk->chunk_hdr) +
342 sizeof(sctp_chunkhdr_t),
343 ntohs(err_chunk->chunk_hdr->length) -
344 sizeof(sctp_chunkhdr_t));
345
346 sctp_chunk_free(err_chunk);
347
348 if (packet) {
349 sctp_add_cmd_sf(commands, SCTP_CMD_SEND_PKT,
350 SCTP_PACKET(packet));
351 SCTP_INC_STATS(SCTP_MIB_OUTCTRLCHUNKS);
352 return SCTP_DISPOSITION_CONSUME;
353 } else {
354 return SCTP_DISPOSITION_NOMEM;
355 }
356 } else {
357 return sctp_sf_tabort_8_4_8(ep, asoc, type, arg,
358 commands);
359 }
360 }
361
d808ad9a 362 /* Grab the INIT header. */
1da177e4
LT
363 chunk->subh.init_hdr = (sctp_inithdr_t *)chunk->skb->data;
364
365 /* Tag the variable length parameters. */
366 chunk->param_hdr.v = skb_pull(chunk->skb, sizeof(sctp_inithdr_t));
367
368 new_asoc = sctp_make_temp_asoc(ep, chunk, GFP_ATOMIC);
369 if (!new_asoc)
370 goto nomem;
371
372 /* The call, sctp_process_init(), can fail on memory allocation. */
373 if (!sctp_process_init(new_asoc, chunk->chunk_hdr->type,
374 sctp_source(chunk),
375 (sctp_init_chunk_t *)chunk->chunk_hdr,
376 GFP_ATOMIC))
377 goto nomem_init;
378
1da177e4
LT
379 /* B) "Z" shall respond immediately with an INIT ACK chunk. */
380
381 /* If there are errors need to be reported for unknown parameters,
382 * make sure to reserve enough room in the INIT ACK for them.
383 */
384 len = 0;
385 if (err_chunk)
386 len = ntohs(err_chunk->chunk_hdr->length) -
387 sizeof(sctp_chunkhdr_t);
388
389 if (sctp_assoc_set_bind_addr_from_ep(new_asoc, GFP_ATOMIC) < 0)
df7deeb5 390 goto nomem_init;
1da177e4
LT
391
392 repl = sctp_make_init_ack(new_asoc, chunk, GFP_ATOMIC, len);
393 if (!repl)
df7deeb5 394 goto nomem_init;
1da177e4
LT
395
396 /* If there are errors need to be reported for unknown parameters,
397 * include them in the outgoing INIT ACK as "Unrecognized parameter"
398 * parameter.
399 */
400 if (err_chunk) {
401 /* Get the "Unrecognized parameter" parameter(s) out of the
402 * ERROR chunk generated by sctp_verify_init(). Since the
403 * error cause code for "unknown parameter" and the
404 * "Unrecognized parameter" type is the same, we can
405 * construct the parameters in INIT ACK by copying the
406 * ERROR causes over.
407 */
408 unk_param = (sctp_unrecognized_param_t *)
409 ((__u8 *)(err_chunk->chunk_hdr) +
410 sizeof(sctp_chunkhdr_t));
411 /* Replace the cause code with the "Unrecognized parameter"
412 * parameter type.
413 */
414 sctp_addto_chunk(repl, len, unk_param);
415 sctp_chunk_free(err_chunk);
416 }
417
df7deeb5
VY
418 sctp_add_cmd_sf(commands, SCTP_CMD_NEW_ASOC, SCTP_ASOC(new_asoc));
419
1da177e4
LT
420 sctp_add_cmd_sf(commands, SCTP_CMD_REPLY, SCTP_CHUNK(repl));
421
422 /*
423 * Note: After sending out INIT ACK with the State Cookie parameter,
424 * "Z" MUST NOT allocate any resources, nor keep any states for the
425 * new association. Otherwise, "Z" will be vulnerable to resource
426 * attacks.
427 */
428 sctp_add_cmd_sf(commands, SCTP_CMD_DELETE_TCB, SCTP_NULL());
429
430 return SCTP_DISPOSITION_DELETE_TCB;
431
1da177e4
LT
432nomem_init:
433 sctp_association_free(new_asoc);
434nomem:
df7deeb5
VY
435 if (err_chunk)
436 sctp_chunk_free(err_chunk);
1da177e4
LT
437 return SCTP_DISPOSITION_NOMEM;
438}
439
440/*
441 * Respond to a normal INIT ACK chunk.
442 * We are the side that is initiating the association.
443 *
444 * Section: 5.1 Normal Establishment of an Association, C
445 * C) Upon reception of the INIT ACK from "Z", "A" shall stop the T1-init
446 * timer and leave COOKIE-WAIT state. "A" shall then send the State
447 * Cookie received in the INIT ACK chunk in a COOKIE ECHO chunk, start
448 * the T1-cookie timer, and enter the COOKIE-ECHOED state.
449 *
450 * Note: The COOKIE ECHO chunk can be bundled with any pending outbound
451 * DATA chunks, but it MUST be the first chunk in the packet and
452 * until the COOKIE ACK is returned the sender MUST NOT send any
453 * other packets to the peer.
454 *
455 * Verification Tag: 3.3.3
456 * If the value of the Initiate Tag in a received INIT ACK chunk is
457 * found to be 0, the receiver MUST treat it as an error and close the
458 * association by transmitting an ABORT.
459 *
460 * Inputs
461 * (endpoint, asoc, chunk)
462 *
463 * Outputs
464 * (asoc, reply_msg, msg_up, timers, counters)
465 *
466 * The return value is the disposition of the chunk.
467 */
468sctp_disposition_t sctp_sf_do_5_1C_ack(const struct sctp_endpoint *ep,
469 const struct sctp_association *asoc,
470 const sctp_subtype_t type,
471 void *arg,
472 sctp_cmd_seq_t *commands)
473{
474 struct sctp_chunk *chunk = arg;
475 sctp_init_chunk_t *initchunk;
1da177e4
LT
476 struct sctp_chunk *err_chunk;
477 struct sctp_packet *packet;
f94c0198 478 sctp_error_t error;
1da177e4
LT
479
480 if (!sctp_vtag_verify(chunk, asoc))
481 return sctp_sf_pdiscard(ep, asoc, type, arg, commands);
482
1da177e4
LT
483 /* 6.10 Bundling
484 * An endpoint MUST NOT bundle INIT, INIT ACK or
485 * SHUTDOWN COMPLETE with any other chunks.
486 */
487 if (!chunk->singleton)
ece25dfa 488 return sctp_sf_violation_chunk(ep, asoc, type, arg, commands);
1da177e4 489
ece25dfa
VY
490 /* Make sure that the INIT-ACK chunk has a valid length */
491 if (!sctp_chunk_length_valid(chunk, sizeof(sctp_initack_chunk_t)))
492 return sctp_sf_violation_chunklen(ep, asoc, type, arg,
493 commands);
1da177e4
LT
494 /* Grab the INIT header. */
495 chunk->subh.init_hdr = (sctp_inithdr_t *) chunk->skb->data;
496
1da177e4
LT
497 /* Verify the INIT chunk before processing it. */
498 err_chunk = NULL;
499 if (!sctp_verify_init(asoc, chunk->chunk_hdr->type,
500 (sctp_init_chunk_t *)chunk->chunk_hdr, chunk,
501 &err_chunk)) {
502
1da177e4
LT
503 /* This chunk contains fatal error. It is to be discarded.
504 * Send an ABORT, with causes if there is any.
505 */
506 if (err_chunk) {
507 packet = sctp_abort_pkt_new(ep, asoc, arg,
508 (__u8 *)(err_chunk->chunk_hdr) +
509 sizeof(sctp_chunkhdr_t),
510 ntohs(err_chunk->chunk_hdr->length) -
511 sizeof(sctp_chunkhdr_t));
512
513 sctp_chunk_free(err_chunk);
514
515 if (packet) {
516 sctp_add_cmd_sf(commands, SCTP_CMD_SEND_PKT,
517 SCTP_PACKET(packet));
518 SCTP_INC_STATS(SCTP_MIB_OUTCTRLCHUNKS);
8de8c873 519 error = SCTP_ERROR_INV_PARAM;
1da177e4 520 } else {
8de8c873 521 error = SCTP_ERROR_NO_RESOURCE;
1da177e4
LT
522 }
523 } else {
8de8c873
SS
524 sctp_sf_tabort_8_4_8(ep, asoc, type, arg, commands);
525 error = SCTP_ERROR_INV_PARAM;
1da177e4 526 }
bbd0d598
VY
527
528 /* SCTP-AUTH, Section 6.3:
529 * It should be noted that if the receiver wants to tear
530 * down an association in an authenticated way only, the
531 * handling of malformed packets should not result in
532 * tearing down the association.
533 *
534 * This means that if we only want to abort associations
535 * in an authenticated way (i.e AUTH+ABORT), then we
536 * can't destory this association just becuase the packet
537 * was malformed.
538 */
539 if (sctp_auth_recv_cid(SCTP_CID_ABORT, asoc))
540 return sctp_sf_pdiscard(ep, asoc, type, arg, commands);
541
542 SCTP_INC_STATS(SCTP_MIB_ABORTEDS);
8de8c873
SS
543 return sctp_stop_t1_and_abort(commands, error, ECONNREFUSED,
544 asoc, chunk->transport);
1da177e4
LT
545 }
546
547 /* Tag the variable length parameters. Note that we never
548 * convert the parameters in an INIT chunk.
549 */
550 chunk->param_hdr.v = skb_pull(chunk->skb, sizeof(sctp_inithdr_t));
551
552 initchunk = (sctp_init_chunk_t *) chunk->chunk_hdr;
553
554 sctp_add_cmd_sf(commands, SCTP_CMD_PEER_INIT,
555 SCTP_PEER_INIT(initchunk));
556
3f7a87d2
FF
557 /* Reset init error count upon receipt of INIT-ACK. */
558 sctp_add_cmd_sf(commands, SCTP_CMD_INIT_COUNTER_RESET, SCTP_NULL());
559
1da177e4
LT
560 /* 5.1 C) "A" shall stop the T1-init timer and leave
561 * COOKIE-WAIT state. "A" shall then ... start the T1-cookie
562 * timer, and enter the COOKIE-ECHOED state.
563 */
564 sctp_add_cmd_sf(commands, SCTP_CMD_TIMER_STOP,
565 SCTP_TO(SCTP_EVENT_TIMEOUT_T1_INIT));
566 sctp_add_cmd_sf(commands, SCTP_CMD_TIMER_START,
567 SCTP_TO(SCTP_EVENT_TIMEOUT_T1_COOKIE));
568 sctp_add_cmd_sf(commands, SCTP_CMD_NEW_STATE,
569 SCTP_STATE(SCTP_STATE_COOKIE_ECHOED));
570
730fc3d0
VY
571 /* SCTP-AUTH: genereate the assocition shared keys so that
572 * we can potentially signe the COOKIE-ECHO.
573 */
574 sctp_add_cmd_sf(commands, SCTP_CMD_ASSOC_SHKEY, SCTP_NULL());
575
1da177e4
LT
576 /* 5.1 C) "A" shall then send the State Cookie received in the
577 * INIT ACK chunk in a COOKIE ECHO chunk, ...
578 */
579 /* If there is any errors to report, send the ERROR chunk generated
580 * for unknown parameters as well.
581 */
582 sctp_add_cmd_sf(commands, SCTP_CMD_GEN_COOKIE_ECHO,
583 SCTP_CHUNK(err_chunk));
584
585 return SCTP_DISPOSITION_CONSUME;
1da177e4
LT
586}
587
588/*
589 * Respond to a normal COOKIE ECHO chunk.
590 * We are the side that is being asked for an association.
591 *
592 * Section: 5.1 Normal Establishment of an Association, D
593 * D) Upon reception of the COOKIE ECHO chunk, Endpoint "Z" will reply
594 * with a COOKIE ACK chunk after building a TCB and moving to
595 * the ESTABLISHED state. A COOKIE ACK chunk may be bundled with
596 * any pending DATA chunks (and/or SACK chunks), but the COOKIE ACK
597 * chunk MUST be the first chunk in the packet.
598 *
599 * IMPLEMENTATION NOTE: An implementation may choose to send the
600 * Communication Up notification to the SCTP user upon reception
601 * of a valid COOKIE ECHO chunk.
602 *
603 * Verification Tag: 8.5.1 Exceptions in Verification Tag Rules
604 * D) Rules for packet carrying a COOKIE ECHO
605 *
606 * - When sending a COOKIE ECHO, the endpoint MUST use the value of the
607 * Initial Tag received in the INIT ACK.
608 *
609 * - The receiver of a COOKIE ECHO follows the procedures in Section 5.
610 *
611 * Inputs
612 * (endpoint, asoc, chunk)
613 *
614 * Outputs
615 * (asoc, reply_msg, msg_up, timers, counters)
616 *
617 * The return value is the disposition of the chunk.
618 */
619sctp_disposition_t sctp_sf_do_5_1D_ce(const struct sctp_endpoint *ep,
620 const struct sctp_association *asoc,
621 const sctp_subtype_t type, void *arg,
622 sctp_cmd_seq_t *commands)
623{
624 struct sctp_chunk *chunk = arg;
625 struct sctp_association *new_asoc;
626 sctp_init_chunk_t *peer_init;
627 struct sctp_chunk *repl;
df7deeb5 628 struct sctp_ulpevent *ev, *ai_ev = NULL;
1da177e4
LT
629 int error = 0;
630 struct sctp_chunk *err_chk_p;
609ee467 631 struct sock *sk;
1da177e4
LT
632
633 /* If the packet is an OOTB packet which is temporarily on the
634 * control endpoint, respond with an ABORT.
635 */
636 if (ep == sctp_sk((sctp_get_ctl_sock()))->ep)
ece25dfa 637 return sctp_sf_tabort_8_4_8(ep, asoc, type, arg, commands);
1da177e4
LT
638
639 /* Make sure that the COOKIE_ECHO chunk has a valid length.
640 * In this case, we check that we have enough for at least a
641 * chunk header. More detailed verification is done
642 * in sctp_unpack_cookie().
643 */
644 if (!sctp_chunk_length_valid(chunk, sizeof(sctp_chunkhdr_t)))
645 return sctp_sf_pdiscard(ep, asoc, type, arg, commands);
646
609ee467
VY
647 /* If the endpoint is not listening or if the number of associations
648 * on the TCP-style socket exceed the max backlog, respond with an
649 * ABORT.
650 */
651 sk = ep->base.sk;
652 if (!sctp_sstate(sk, LISTENING) ||
653 (sctp_style(sk, TCP) && sk_acceptq_is_full(sk)))
654 return sctp_sf_tabort_8_4_8(ep, asoc, type, arg, commands);
655
1da177e4
LT
656 /* "Decode" the chunk. We have no optional parameters so we
657 * are in good shape.
658 */
d808ad9a 659 chunk->subh.cookie_hdr =
1da177e4 660 (struct sctp_signed_cookie *)chunk->skb->data;
62b08083
SS
661 if (!pskb_pull(chunk->skb, ntohs(chunk->chunk_hdr->length) -
662 sizeof(sctp_chunkhdr_t)))
663 goto nomem;
1da177e4
LT
664
665 /* 5.1 D) Upon reception of the COOKIE ECHO chunk, Endpoint
666 * "Z" will reply with a COOKIE ACK chunk after building a TCB
667 * and moving to the ESTABLISHED state.
668 */
669 new_asoc = sctp_unpack_cookie(ep, asoc, chunk, GFP_ATOMIC, &error,
670 &err_chk_p);
671
672 /* FIXME:
673 * If the re-build failed, what is the proper error path
674 * from here?
675 *
676 * [We should abort the association. --piggy]
677 */
678 if (!new_asoc) {
679 /* FIXME: Several errors are possible. A bad cookie should
680 * be silently discarded, but think about logging it too.
681 */
682 switch (error) {
683 case -SCTP_IERROR_NOMEM:
684 goto nomem;
685
686 case -SCTP_IERROR_STALE_COOKIE:
687 sctp_send_stale_cookie_err(ep, asoc, chunk, commands,
688 err_chk_p);
689 return sctp_sf_pdiscard(ep, asoc, type, arg, commands);
690
691 case -SCTP_IERROR_BAD_SIG:
692 default:
693 return sctp_sf_pdiscard(ep, asoc, type, arg, commands);
3ff50b79 694 }
1da177e4
LT
695 }
696
1da177e4 697
df7deeb5
VY
698 /* Delay state machine commands until later.
699 *
700 * Re-build the bind address for the association is done in
1da177e4
LT
701 * the sctp_unpack_cookie() already.
702 */
703 /* This is a brand-new association, so these are not yet side
704 * effects--it is safe to run them here.
705 */
706 peer_init = &chunk->subh.cookie_hdr->c.peer_init[0];
707
708 if (!sctp_process_init(new_asoc, chunk->chunk_hdr->type,
6a1e5f33 709 &chunk->subh.cookie_hdr->c.peer_addr,
1da177e4
LT
710 peer_init, GFP_ATOMIC))
711 goto nomem_init;
712
730fc3d0
VY
713 /* SCTP-AUTH: Now that we've populate required fields in
714 * sctp_process_init, set up the assocaition shared keys as
715 * necessary so that we can potentially authenticate the ACK
716 */
717 error = sctp_auth_asoc_init_active_key(new_asoc, GFP_ATOMIC);
718 if (error)
719 goto nomem_init;
720
bbd0d598
VY
721 /* SCTP-AUTH: auth_chunk pointer is only set when the cookie-echo
722 * is supposed to be authenticated and we have to do delayed
723 * authentication. We've just recreated the association using
724 * the information in the cookie and now it's much easier to
725 * do the authentication.
726 */
727 if (chunk->auth_chunk) {
728 struct sctp_chunk auth;
729 sctp_ierror_t ret;
730
731 /* set-up our fake chunk so that we can process it */
732 auth.skb = chunk->auth_chunk;
733 auth.asoc = chunk->asoc;
734 auth.sctp_hdr = chunk->sctp_hdr;
735 auth.chunk_hdr = (sctp_chunkhdr_t *)skb_push(chunk->auth_chunk,
736 sizeof(sctp_chunkhdr_t));
737 skb_pull(chunk->auth_chunk, sizeof(sctp_chunkhdr_t));
738 auth.transport = chunk->transport;
739
740 ret = sctp_sf_authenticate(ep, new_asoc, type, &auth);
741
742 /* We can now safely free the auth_chunk clone */
743 kfree_skb(chunk->auth_chunk);
744
745 if (ret != SCTP_IERROR_NO_ERROR) {
746 sctp_association_free(new_asoc);
747 return sctp_sf_pdiscard(ep, asoc, type, arg, commands);
748 }
749 }
750
1da177e4
LT
751 repl = sctp_make_cookie_ack(new_asoc, chunk);
752 if (!repl)
df7deeb5 753 goto nomem_init;
1da177e4
LT
754
755 /* RFC 2960 5.1 Normal Establishment of an Association
756 *
757 * D) IMPLEMENTATION NOTE: An implementation may choose to
758 * send the Communication Up notification to the SCTP user
759 * upon reception of a valid COOKIE ECHO chunk.
760 */
761 ev = sctp_ulpevent_make_assoc_change(new_asoc, 0, SCTP_COMM_UP, 0,
762 new_asoc->c.sinit_num_ostreams,
763 new_asoc->c.sinit_max_instreams,
a5a35e76 764 NULL, GFP_ATOMIC);
1da177e4
LT
765 if (!ev)
766 goto nomem_ev;
767
d808ad9a 768 /* Sockets API Draft Section 5.3.1.6
0f3fffd8 769 * When a peer sends a Adaptation Layer Indication parameter , SCTP
1da177e4 770 * delivers this notification to inform the application that of the
0f3fffd8 771 * peers requested adaptation layer.
1da177e4 772 */
0f3fffd8
ISJ
773 if (new_asoc->peer.adaptation_ind) {
774 ai_ev = sctp_ulpevent_make_adaptation_indication(new_asoc,
1da177e4 775 GFP_ATOMIC);
df7deeb5
VY
776 if (!ai_ev)
777 goto nomem_aiev;
778 }
779
780 /* Add all the state machine commands now since we've created
781 * everything. This way we don't introduce memory corruptions
782 * during side-effect processing and correclty count established
783 * associations.
784 */
785 sctp_add_cmd_sf(commands, SCTP_CMD_NEW_ASOC, SCTP_ASOC(new_asoc));
786 sctp_add_cmd_sf(commands, SCTP_CMD_NEW_STATE,
787 SCTP_STATE(SCTP_STATE_ESTABLISHED));
788 SCTP_INC_STATS(SCTP_MIB_CURRESTAB);
789 SCTP_INC_STATS(SCTP_MIB_PASSIVEESTABS);
790 sctp_add_cmd_sf(commands, SCTP_CMD_HB_TIMERS_START, SCTP_NULL());
791
792 if (new_asoc->autoclose)
793 sctp_add_cmd_sf(commands, SCTP_CMD_TIMER_START,
794 SCTP_TO(SCTP_EVENT_TIMEOUT_AUTOCLOSE));
795
796 sctp_add_cmd_sf(commands, SCTP_CMD_TRANSMIT, SCTP_NULL());
1da177e4 797
df7deeb5
VY
798 /* This will send the COOKIE ACK */
799 sctp_add_cmd_sf(commands, SCTP_CMD_REPLY, SCTP_CHUNK(repl));
800
801 /* Queue the ASSOC_CHANGE event */
802 sctp_add_cmd_sf(commands, SCTP_CMD_EVENT_ULP, SCTP_ULPEVENT(ev));
803
804 /* Send up the Adaptation Layer Indication event */
805 if (ai_ev)
1da177e4 806 sctp_add_cmd_sf(commands, SCTP_CMD_EVENT_ULP,
df7deeb5 807 SCTP_ULPEVENT(ai_ev));
1da177e4
LT
808
809 return SCTP_DISPOSITION_CONSUME;
810
df7deeb5
VY
811nomem_aiev:
812 sctp_ulpevent_free(ev);
1da177e4
LT
813nomem_ev:
814 sctp_chunk_free(repl);
1da177e4
LT
815nomem_init:
816 sctp_association_free(new_asoc);
817nomem:
818 return SCTP_DISPOSITION_NOMEM;
819}
820
821/*
822 * Respond to a normal COOKIE ACK chunk.
823 * We are the side that is being asked for an association.
824 *
825 * RFC 2960 5.1 Normal Establishment of an Association
826 *
827 * E) Upon reception of the COOKIE ACK, endpoint "A" will move from the
828 * COOKIE-ECHOED state to the ESTABLISHED state, stopping the T1-cookie
829 * timer. It may also notify its ULP about the successful
830 * establishment of the association with a Communication Up
831 * notification (see Section 10).
832 *
833 * Verification Tag:
834 * Inputs
835 * (endpoint, asoc, chunk)
836 *
837 * Outputs
838 * (asoc, reply_msg, msg_up, timers, counters)
839 *
840 * The return value is the disposition of the chunk.
841 */
842sctp_disposition_t sctp_sf_do_5_1E_ca(const struct sctp_endpoint *ep,
843 const struct sctp_association *asoc,
844 const sctp_subtype_t type, void *arg,
845 sctp_cmd_seq_t *commands)
846{
847 struct sctp_chunk *chunk = arg;
848 struct sctp_ulpevent *ev;
849
850 if (!sctp_vtag_verify(chunk, asoc))
851 return sctp_sf_pdiscard(ep, asoc, type, arg, commands);
852
853 /* Verify that the chunk length for the COOKIE-ACK is OK.
854 * If we don't do this, any bundled chunks may be junked.
855 */
856 if (!sctp_chunk_length_valid(chunk, sizeof(sctp_chunkhdr_t)))
857 return sctp_sf_violation_chunklen(ep, asoc, type, arg,
858 commands);
859
860 /* Reset init error count upon receipt of COOKIE-ACK,
861 * to avoid problems with the managemement of this
862 * counter in stale cookie situations when a transition back
863 * from the COOKIE-ECHOED state to the COOKIE-WAIT
864 * state is performed.
865 */
3f7a87d2 866 sctp_add_cmd_sf(commands, SCTP_CMD_INIT_COUNTER_RESET, SCTP_NULL());
1da177e4
LT
867
868 /* RFC 2960 5.1 Normal Establishment of an Association
869 *
870 * E) Upon reception of the COOKIE ACK, endpoint "A" will move
871 * from the COOKIE-ECHOED state to the ESTABLISHED state,
872 * stopping the T1-cookie timer.
873 */
874 sctp_add_cmd_sf(commands, SCTP_CMD_TIMER_STOP,
875 SCTP_TO(SCTP_EVENT_TIMEOUT_T1_COOKIE));
876 sctp_add_cmd_sf(commands, SCTP_CMD_NEW_STATE,
877 SCTP_STATE(SCTP_STATE_ESTABLISHED));
878 SCTP_INC_STATS(SCTP_MIB_CURRESTAB);
879 SCTP_INC_STATS(SCTP_MIB_ACTIVEESTABS);
880 sctp_add_cmd_sf(commands, SCTP_CMD_HB_TIMERS_START, SCTP_NULL());
881 if (asoc->autoclose)
882 sctp_add_cmd_sf(commands, SCTP_CMD_TIMER_START,
883 SCTP_TO(SCTP_EVENT_TIMEOUT_AUTOCLOSE));
884 sctp_add_cmd_sf(commands, SCTP_CMD_TRANSMIT, SCTP_NULL());
885
886 /* It may also notify its ULP about the successful
887 * establishment of the association with a Communication Up
888 * notification (see Section 10).
889 */
890 ev = sctp_ulpevent_make_assoc_change(asoc, 0, SCTP_COMM_UP,
891 0, asoc->c.sinit_num_ostreams,
892 asoc->c.sinit_max_instreams,
a5a35e76 893 NULL, GFP_ATOMIC);
1da177e4
LT
894
895 if (!ev)
896 goto nomem;
897
898 sctp_add_cmd_sf(commands, SCTP_CMD_EVENT_ULP, SCTP_ULPEVENT(ev));
899
900 /* Sockets API Draft Section 5.3.1.6
0f3fffd8 901 * When a peer sends a Adaptation Layer Indication parameter , SCTP
1da177e4 902 * delivers this notification to inform the application that of the
0f3fffd8 903 * peers requested adaptation layer.
1da177e4 904 */
0f3fffd8
ISJ
905 if (asoc->peer.adaptation_ind) {
906 ev = sctp_ulpevent_make_adaptation_indication(asoc, GFP_ATOMIC);
1da177e4
LT
907 if (!ev)
908 goto nomem;
909
910 sctp_add_cmd_sf(commands, SCTP_CMD_EVENT_ULP,
911 SCTP_ULPEVENT(ev));
912 }
913
914 return SCTP_DISPOSITION_CONSUME;
915nomem:
916 return SCTP_DISPOSITION_NOMEM;
917}
918
919/* Generate and sendout a heartbeat packet. */
920static sctp_disposition_t sctp_sf_heartbeat(const struct sctp_endpoint *ep,
921 const struct sctp_association *asoc,
922 const sctp_subtype_t type,
923 void *arg,
924 sctp_cmd_seq_t *commands)
925{
926 struct sctp_transport *transport = (struct sctp_transport *) arg;
927 struct sctp_chunk *reply;
928 sctp_sender_hb_info_t hbinfo;
929 size_t paylen = 0;
930
931 hbinfo.param_hdr.type = SCTP_PARAM_HEARTBEAT_INFO;
932 hbinfo.param_hdr.length = htons(sizeof(sctp_sender_hb_info_t));
63de08f4 933 hbinfo.daddr = transport->ipaddr;
1da177e4 934 hbinfo.sent_at = jiffies;
ad8fec17 935 hbinfo.hb_nonce = transport->hb_nonce;
1da177e4
LT
936
937 /* Send a heartbeat to our peer. */
938 paylen = sizeof(sctp_sender_hb_info_t);
939 reply = sctp_make_heartbeat(asoc, transport, &hbinfo, paylen);
940 if (!reply)
941 return SCTP_DISPOSITION_NOMEM;
942
943 /* Set rto_pending indicating that an RTT measurement
944 * is started with this heartbeat chunk.
945 */
946 sctp_add_cmd_sf(commands, SCTP_CMD_RTO_PENDING,
947 SCTP_TRANSPORT(transport));
948
949 sctp_add_cmd_sf(commands, SCTP_CMD_REPLY, SCTP_CHUNK(reply));
950 return SCTP_DISPOSITION_CONSUME;
951}
952
953/* Generate a HEARTBEAT packet on the given transport. */
954sctp_disposition_t sctp_sf_sendbeat_8_3(const struct sctp_endpoint *ep,
955 const struct sctp_association *asoc,
956 const sctp_subtype_t type,
957 void *arg,
958 sctp_cmd_seq_t *commands)
959{
960 struct sctp_transport *transport = (struct sctp_transport *) arg;
961
e2c2fc2c 962 if (asoc->overall_error_count >= asoc->max_retrans) {
8de8c873
SS
963 sctp_add_cmd_sf(commands, SCTP_CMD_SET_SK_ERR,
964 SCTP_ERROR(ETIMEDOUT));
1da177e4
LT
965 /* CMD_ASSOC_FAILED calls CMD_DELETE_TCB. */
966 sctp_add_cmd_sf(commands, SCTP_CMD_ASSOC_FAILED,
5be291fe 967 SCTP_PERR(SCTP_ERROR_NO_ERROR));
1da177e4
LT
968 SCTP_INC_STATS(SCTP_MIB_ABORTEDS);
969 SCTP_DEC_STATS(SCTP_MIB_CURRESTAB);
970 return SCTP_DISPOSITION_DELETE_TCB;
971 }
972
973 /* Section 3.3.5.
974 * The Sender-specific Heartbeat Info field should normally include
975 * information about the sender's current time when this HEARTBEAT
976 * chunk is sent and the destination transport address to which this
977 * HEARTBEAT is sent (see Section 8.3).
978 */
979
52ccb8e9 980 if (transport->param_flags & SPP_HB_ENABLE) {
1da177e4
LT
981 if (SCTP_DISPOSITION_NOMEM ==
982 sctp_sf_heartbeat(ep, asoc, type, arg,
983 commands))
984 return SCTP_DISPOSITION_NOMEM;
985 /* Set transport error counter and association error counter
986 * when sending heartbeat.
987 */
988 sctp_add_cmd_sf(commands, SCTP_CMD_TRANSPORT_RESET,
989 SCTP_TRANSPORT(transport));
990 }
991 sctp_add_cmd_sf(commands, SCTP_CMD_HB_TIMER_UPDATE,
992 SCTP_TRANSPORT(transport));
993
d808ad9a 994 return SCTP_DISPOSITION_CONSUME;
1da177e4
LT
995}
996
997/*
998 * Process an heartbeat request.
999 *
1000 * Section: 8.3 Path Heartbeat
1001 * The receiver of the HEARTBEAT should immediately respond with a
1002 * HEARTBEAT ACK that contains the Heartbeat Information field copied
1003 * from the received HEARTBEAT chunk.
1004 *
1005 * Verification Tag: 8.5 Verification Tag [Normal verification]
1006 * When receiving an SCTP packet, the endpoint MUST ensure that the
1007 * value in the Verification Tag field of the received SCTP packet
1008 * matches its own Tag. If the received Verification Tag value does not
1009 * match the receiver's own tag value, the receiver shall silently
1010 * discard the packet and shall not process it any further except for
1011 * those cases listed in Section 8.5.1 below.
1012 *
1013 * Inputs
1014 * (endpoint, asoc, chunk)
1015 *
1016 * Outputs
1017 * (asoc, reply_msg, msg_up, timers, counters)
1018 *
1019 * The return value is the disposition of the chunk.
1020 */
1021sctp_disposition_t sctp_sf_beat_8_3(const struct sctp_endpoint *ep,
1022 const struct sctp_association *asoc,
1023 const sctp_subtype_t type,
1024 void *arg,
1025 sctp_cmd_seq_t *commands)
1026{
1027 struct sctp_chunk *chunk = arg;
1028 struct sctp_chunk *reply;
1029 size_t paylen = 0;
1030
1031 if (!sctp_vtag_verify(chunk, asoc))
1032 return sctp_sf_pdiscard(ep, asoc, type, arg, commands);
1033
1034 /* Make sure that the HEARTBEAT chunk has a valid length. */
1035 if (!sctp_chunk_length_valid(chunk, sizeof(sctp_heartbeat_chunk_t)))
1036 return sctp_sf_violation_chunklen(ep, asoc, type, arg,
1037 commands);
1038
1039 /* 8.3 The receiver of the HEARTBEAT should immediately
1040 * respond with a HEARTBEAT ACK that contains the Heartbeat
1041 * Information field copied from the received HEARTBEAT chunk.
1042 */
1043 chunk->subh.hb_hdr = (sctp_heartbeathdr_t *) chunk->skb->data;
1044 paylen = ntohs(chunk->chunk_hdr->length) - sizeof(sctp_chunkhdr_t);
62b08083
SS
1045 if (!pskb_pull(chunk->skb, paylen))
1046 goto nomem;
1da177e4
LT
1047
1048 reply = sctp_make_heartbeat_ack(asoc, chunk,
1049 chunk->subh.hb_hdr, paylen);
1050 if (!reply)
1051 goto nomem;
1052
1053 sctp_add_cmd_sf(commands, SCTP_CMD_REPLY, SCTP_CHUNK(reply));
1054 return SCTP_DISPOSITION_CONSUME;
1055
1056nomem:
1057 return SCTP_DISPOSITION_NOMEM;
1058}
1059
1060/*
1061 * Process the returning HEARTBEAT ACK.
1062 *
1063 * Section: 8.3 Path Heartbeat
1064 * Upon the receipt of the HEARTBEAT ACK, the sender of the HEARTBEAT
1065 * should clear the error counter of the destination transport
1066 * address to which the HEARTBEAT was sent, and mark the destination
1067 * transport address as active if it is not so marked. The endpoint may
1068 * optionally report to the upper layer when an inactive destination
1069 * address is marked as active due to the reception of the latest
1070 * HEARTBEAT ACK. The receiver of the HEARTBEAT ACK must also
1071 * clear the association overall error count as well (as defined
1072 * in section 8.1).
1073 *
1074 * The receiver of the HEARTBEAT ACK should also perform an RTT
1075 * measurement for that destination transport address using the time
1076 * value carried in the HEARTBEAT ACK chunk.
1077 *
1078 * Verification Tag: 8.5 Verification Tag [Normal verification]
1079 *
1080 * Inputs
1081 * (endpoint, asoc, chunk)
1082 *
1083 * Outputs
1084 * (asoc, reply_msg, msg_up, timers, counters)
1085 *
1086 * The return value is the disposition of the chunk.
1087 */
1088sctp_disposition_t sctp_sf_backbeat_8_3(const struct sctp_endpoint *ep,
1089 const struct sctp_association *asoc,
1090 const sctp_subtype_t type,
1091 void *arg,
1092 sctp_cmd_seq_t *commands)
1093{
1094 struct sctp_chunk *chunk = arg;
1095 union sctp_addr from_addr;
1096 struct sctp_transport *link;
1097 sctp_sender_hb_info_t *hbinfo;
1098 unsigned long max_interval;
1099
1100 if (!sctp_vtag_verify(chunk, asoc))
1101 return sctp_sf_pdiscard(ep, asoc, type, arg, commands);
1102
1103 /* Make sure that the HEARTBEAT-ACK chunk has a valid length. */
1104 if (!sctp_chunk_length_valid(chunk, sizeof(sctp_heartbeat_chunk_t)))
1105 return sctp_sf_violation_chunklen(ep, asoc, type, arg,
1106 commands);
1107
1108 hbinfo = (sctp_sender_hb_info_t *) chunk->skb->data;
a601266e
VY
1109 /* Make sure that the length of the parameter is what we expect */
1110 if (ntohs(hbinfo->param_hdr.length) !=
1111 sizeof(sctp_sender_hb_info_t)) {
1112 return SCTP_DISPOSITION_DISCARD;
1113 }
1114
1da177e4 1115 from_addr = hbinfo->daddr;
63de08f4 1116 link = sctp_assoc_lookup_paddr(asoc, &from_addr);
1da177e4
LT
1117
1118 /* This should never happen, but lets log it if so. */
3f7a87d2
FF
1119 if (unlikely(!link)) {
1120 if (from_addr.sa.sa_family == AF_INET6) {
d99fa429
WY
1121 if (net_ratelimit())
1122 printk(KERN_WARNING
1123 "%s association %p could not find address "
1124 NIP6_FMT "\n",
1125 __FUNCTION__,
1126 asoc,
1127 NIP6(from_addr.v6.sin6_addr));
3f7a87d2 1128 } else {
d99fa429
WY
1129 if (net_ratelimit())
1130 printk(KERN_WARNING
1131 "%s association %p could not find address "
1132 NIPQUAD_FMT "\n",
1133 __FUNCTION__,
1134 asoc,
1135 NIPQUAD(from_addr.v4.sin_addr.s_addr));
3f7a87d2 1136 }
1da177e4
LT
1137 return SCTP_DISPOSITION_DISCARD;
1138 }
1139
ad8fec17
SS
1140 /* Validate the 64-bit random nonce. */
1141 if (hbinfo->hb_nonce != link->hb_nonce)
1142 return SCTP_DISPOSITION_DISCARD;
1143
52ccb8e9 1144 max_interval = link->hbinterval + link->rto;
1da177e4
LT
1145
1146 /* Check if the timestamp looks valid. */
1147 if (time_after(hbinfo->sent_at, jiffies) ||
1148 time_after(jiffies, hbinfo->sent_at + max_interval)) {
1149 SCTP_DEBUG_PRINTK("%s: HEARTBEAT ACK with invalid timestamp"
1150 "received for transport: %p\n",
1151 __FUNCTION__, link);
1152 return SCTP_DISPOSITION_DISCARD;
1153 }
1154
1155 /* 8.3 Upon the receipt of the HEARTBEAT ACK, the sender of
1156 * the HEARTBEAT should clear the error counter of the
1157 * destination transport address to which the HEARTBEAT was
1158 * sent and mark the destination transport address as active if
1159 * it is not so marked.
1160 */
1161 sctp_add_cmd_sf(commands, SCTP_CMD_TRANSPORT_ON, SCTP_TRANSPORT(link));
1162
1163 return SCTP_DISPOSITION_CONSUME;
1164}
1165
1166/* Helper function to send out an abort for the restart
1167 * condition.
1168 */
1169static int sctp_sf_send_restart_abort(union sctp_addr *ssa,
1170 struct sctp_chunk *init,
1171 sctp_cmd_seq_t *commands)
1172{
1173 int len;
1174 struct sctp_packet *pkt;
1175 union sctp_addr_param *addrparm;
1176 struct sctp_errhdr *errhdr;
1177 struct sctp_endpoint *ep;
1178 char buffer[sizeof(struct sctp_errhdr)+sizeof(union sctp_addr_param)];
1179 struct sctp_af *af = sctp_get_af_specific(ssa->v4.sin_family);
1180
1181 /* Build the error on the stack. We are way to malloc crazy
1182 * throughout the code today.
1183 */
1184 errhdr = (struct sctp_errhdr *)buffer;
1185 addrparm = (union sctp_addr_param *)errhdr->variable;
1186
1187 /* Copy into a parm format. */
1188 len = af->to_addr_param(ssa, addrparm);
1189 len += sizeof(sctp_errhdr_t);
1190
1191 errhdr->cause = SCTP_ERROR_RESTART;
1192 errhdr->length = htons(len);
1193
1194 /* Assign to the control socket. */
1195 ep = sctp_sk((sctp_get_ctl_sock()))->ep;
1196
1197 /* Association is NULL since this may be a restart attack and we
1198 * want to send back the attacker's vtag.
1199 */
1200 pkt = sctp_abort_pkt_new(ep, NULL, init, errhdr, len);
1201
1202 if (!pkt)
1203 goto out;
1204 sctp_add_cmd_sf(commands, SCTP_CMD_SEND_PKT, SCTP_PACKET(pkt));
1205
1206 SCTP_INC_STATS(SCTP_MIB_OUTCTRLCHUNKS);
1207
1208 /* Discard the rest of the inbound packet. */
1209 sctp_add_cmd_sf(commands, SCTP_CMD_DISCARD_PACKET, SCTP_NULL());
1210
1211out:
1212 /* Even if there is no memory, treat as a failure so
1213 * the packet will get dropped.
1214 */
1215 return 0;
1216}
1217
1218/* A restart is occurring, check to make sure no new addresses
1219 * are being added as we may be under a takeover attack.
1220 */
1221static int sctp_sf_check_restart_addrs(const struct sctp_association *new_asoc,
1222 const struct sctp_association *asoc,
1223 struct sctp_chunk *init,
1224 sctp_cmd_seq_t *commands)
1225{
1226 struct sctp_transport *new_addr, *addr;
1227 struct list_head *pos, *pos2;
1228 int found;
1229
1230 /* Implementor's Guide - Sectin 5.2.2
1231 * ...
1232 * Before responding the endpoint MUST check to see if the
1233 * unexpected INIT adds new addresses to the association. If new
1234 * addresses are added to the association, the endpoint MUST respond
1235 * with an ABORT..
1236 */
1237
1238 /* Search through all current addresses and make sure
1239 * we aren't adding any new ones.
1240 */
1241 new_addr = NULL;
1242 found = 0;
1243
1244 list_for_each(pos, &new_asoc->peer.transport_addr_list) {
1245 new_addr = list_entry(pos, struct sctp_transport, transports);
1246 found = 0;
1247 list_for_each(pos2, &asoc->peer.transport_addr_list) {
1248 addr = list_entry(pos2, struct sctp_transport,
1249 transports);
5f242a13
AV
1250 if (sctp_cmp_addr_exact(&new_addr->ipaddr,
1251 &addr->ipaddr)) {
1da177e4
LT
1252 found = 1;
1253 break;
1254 }
1255 }
1256 if (!found)
1257 break;
1258 }
1259
1260 /* If a new address was added, ABORT the sender. */
1261 if (!found && new_addr) {
7dd8a582 1262 sctp_sf_send_restart_abort(&new_addr->ipaddr, init, commands);
1da177e4
LT
1263 }
1264
1265 /* Return success if all addresses were found. */
1266 return found;
1267}
1268
1269/* Populate the verification/tie tags based on overlapping INIT
1270 * scenario.
1271 *
1272 * Note: Do not use in CLOSED or SHUTDOWN-ACK-SENT state.
1273 */
1274static void sctp_tietags_populate(struct sctp_association *new_asoc,
1275 const struct sctp_association *asoc)
1276{
1277 switch (asoc->state) {
1278
1279 /* 5.2.1 INIT received in COOKIE-WAIT or COOKIE-ECHOED State */
1280
1281 case SCTP_STATE_COOKIE_WAIT:
1282 new_asoc->c.my_vtag = asoc->c.my_vtag;
1283 new_asoc->c.my_ttag = asoc->c.my_vtag;
1284 new_asoc->c.peer_ttag = 0;
1285 break;
1286
1287 case SCTP_STATE_COOKIE_ECHOED:
1288 new_asoc->c.my_vtag = asoc->c.my_vtag;
1289 new_asoc->c.my_ttag = asoc->c.my_vtag;
1290 new_asoc->c.peer_ttag = asoc->c.peer_vtag;
1291 break;
1292
1293 /* 5.2.2 Unexpected INIT in States Other than CLOSED, COOKIE-ECHOED,
1294 * COOKIE-WAIT and SHUTDOWN-ACK-SENT
1295 */
1296 default:
1297 new_asoc->c.my_ttag = asoc->c.my_vtag;
1298 new_asoc->c.peer_ttag = asoc->c.peer_vtag;
1299 break;
3ff50b79 1300 }
1da177e4
LT
1301
1302 /* Other parameters for the endpoint SHOULD be copied from the
1303 * existing parameters of the association (e.g. number of
1304 * outbound streams) into the INIT ACK and cookie.
1305 */
1306 new_asoc->rwnd = asoc->rwnd;
1307 new_asoc->c.sinit_num_ostreams = asoc->c.sinit_num_ostreams;
1308 new_asoc->c.sinit_max_instreams = asoc->c.sinit_max_instreams;
1309 new_asoc->c.initial_tsn = asoc->c.initial_tsn;
1310}
1311
730fc3d0
VY
1312static void sctp_auth_params_populate(struct sctp_association *new_asoc,
1313 const struct sctp_association *asoc)
1314{
1315 /* Only perform this if AUTH extension is enabled */
1316 if (!sctp_auth_enable)
1317 return;
1318
1319 /* We need to provide the same parameter information as
1320 * was in the original INIT. This means that we need to copy
1321 * the HMACS, CHUNKS, and RANDOM parameter from the original
1322 * assocaition.
1323 */
1324 memcpy(new_asoc->c.auth_random, asoc->c.auth_random,
1325 sizeof(asoc->c.auth_random));
1326 memcpy(new_asoc->c.auth_hmacs, asoc->c.auth_hmacs,
1327 sizeof(asoc->c.auth_hmacs));
1328 memcpy(new_asoc->c.auth_chunks, asoc->c.auth_chunks,
1329 sizeof(asoc->c.auth_chunks));
1330}
1331
1da177e4
LT
1332/*
1333 * Compare vtag/tietag values to determine unexpected COOKIE-ECHO
1334 * handling action.
1335 *
1336 * RFC 2960 5.2.4 Handle a COOKIE ECHO when a TCB exists.
1337 *
1338 * Returns value representing action to be taken. These action values
1339 * correspond to Action/Description values in RFC 2960, Table 2.
1340 */
1341static char sctp_tietags_compare(struct sctp_association *new_asoc,
1342 const struct sctp_association *asoc)
1343{
1344 /* In this case, the peer may have restarted. */
1345 if ((asoc->c.my_vtag != new_asoc->c.my_vtag) &&
1346 (asoc->c.peer_vtag != new_asoc->c.peer_vtag) &&
1347 (asoc->c.my_vtag == new_asoc->c.my_ttag) &&
1348 (asoc->c.peer_vtag == new_asoc->c.peer_ttag))
1349 return 'A';
1350
1351 /* Collision case B. */
1352 if ((asoc->c.my_vtag == new_asoc->c.my_vtag) &&
1353 ((asoc->c.peer_vtag != new_asoc->c.peer_vtag) ||
1354 (0 == asoc->c.peer_vtag))) {
1355 return 'B';
1356 }
1357
1358 /* Collision case D. */
1359 if ((asoc->c.my_vtag == new_asoc->c.my_vtag) &&
1360 (asoc->c.peer_vtag == new_asoc->c.peer_vtag))
1361 return 'D';
1362
1363 /* Collision case C. */
1364 if ((asoc->c.my_vtag != new_asoc->c.my_vtag) &&
1365 (asoc->c.peer_vtag == new_asoc->c.peer_vtag) &&
1366 (0 == new_asoc->c.my_ttag) &&
1367 (0 == new_asoc->c.peer_ttag))
1368 return 'C';
1369
1370 /* No match to any of the special cases; discard this packet. */
1371 return 'E';
1372}
1373
1374/* Common helper routine for both duplicate and simulataneous INIT
1375 * chunk handling.
1376 */
1377static sctp_disposition_t sctp_sf_do_unexpected_init(
1378 const struct sctp_endpoint *ep,
1379 const struct sctp_association *asoc,
1380 const sctp_subtype_t type,
1381 void *arg, sctp_cmd_seq_t *commands)
1382{
1383 sctp_disposition_t retval;
1384 struct sctp_chunk *chunk = arg;
1385 struct sctp_chunk *repl;
1386 struct sctp_association *new_asoc;
1387 struct sctp_chunk *err_chunk;
1388 struct sctp_packet *packet;
1389 sctp_unrecognized_param_t *unk_param;
1390 int len;
1391
1392 /* 6.10 Bundling
1393 * An endpoint MUST NOT bundle INIT, INIT ACK or
1394 * SHUTDOWN COMPLETE with any other chunks.
1395 *
1396 * IG Section 2.11.2
1397 * Furthermore, we require that the receiver of an INIT chunk MUST
1398 * enforce these rules by silently discarding an arriving packet
1399 * with an INIT chunk that is bundled with other chunks.
1400 */
1401 if (!chunk->singleton)
1402 return sctp_sf_pdiscard(ep, asoc, type, arg, commands);
1403
1404 /* 3.1 A packet containing an INIT chunk MUST have a zero Verification
d808ad9a 1405 * Tag.
1da177e4
LT
1406 */
1407 if (chunk->sctp_hdr->vtag != 0)
1408 return sctp_sf_tabort_8_4_8(ep, asoc, type, arg, commands);
1409
1410 /* Make sure that the INIT chunk has a valid length.
1411 * In this case, we generate a protocol violation since we have
1412 * an association established.
1413 */
1414 if (!sctp_chunk_length_valid(chunk, sizeof(sctp_init_chunk_t)))
1415 return sctp_sf_violation_chunklen(ep, asoc, type, arg,
1416 commands);
1417 /* Grab the INIT header. */
1418 chunk->subh.init_hdr = (sctp_inithdr_t *) chunk->skb->data;
1419
1420 /* Tag the variable length parameters. */
1421 chunk->param_hdr.v = skb_pull(chunk->skb, sizeof(sctp_inithdr_t));
1422
1423 /* Verify the INIT chunk before processing it. */
1424 err_chunk = NULL;
1425 if (!sctp_verify_init(asoc, chunk->chunk_hdr->type,
1426 (sctp_init_chunk_t *)chunk->chunk_hdr, chunk,
1427 &err_chunk)) {
1428 /* This chunk contains fatal error. It is to be discarded.
1429 * Send an ABORT, with causes if there is any.
1430 */
1431 if (err_chunk) {
1432 packet = sctp_abort_pkt_new(ep, asoc, arg,
1433 (__u8 *)(err_chunk->chunk_hdr) +
1434 sizeof(sctp_chunkhdr_t),
1435 ntohs(err_chunk->chunk_hdr->length) -
1436 sizeof(sctp_chunkhdr_t));
1437
1438 if (packet) {
1439 sctp_add_cmd_sf(commands, SCTP_CMD_SEND_PKT,
1440 SCTP_PACKET(packet));
1441 SCTP_INC_STATS(SCTP_MIB_OUTCTRLCHUNKS);
1442 retval = SCTP_DISPOSITION_CONSUME;
1443 } else {
1444 retval = SCTP_DISPOSITION_NOMEM;
1445 }
1446 goto cleanup;
1447 } else {
1448 return sctp_sf_tabort_8_4_8(ep, asoc, type, arg,
1449 commands);
1450 }
1451 }
1452
1453 /*
1454 * Other parameters for the endpoint SHOULD be copied from the
1455 * existing parameters of the association (e.g. number of
1456 * outbound streams) into the INIT ACK and cookie.
1457 * FIXME: We are copying parameters from the endpoint not the
1458 * association.
1459 */
1460 new_asoc = sctp_make_temp_asoc(ep, chunk, GFP_ATOMIC);
1461 if (!new_asoc)
1462 goto nomem;
1463
1464 /* In the outbound INIT ACK the endpoint MUST copy its current
1465 * Verification Tag and Peers Verification tag into a reserved
1466 * place (local tie-tag and per tie-tag) within the state cookie.
1467 */
1468 if (!sctp_process_init(new_asoc, chunk->chunk_hdr->type,
1469 sctp_source(chunk),
1470 (sctp_init_chunk_t *)chunk->chunk_hdr,
df7deeb5
VY
1471 GFP_ATOMIC))
1472 goto nomem;
1da177e4
LT
1473
1474 /* Make sure no new addresses are being added during the
1475 * restart. Do not do this check for COOKIE-WAIT state,
1476 * since there are no peer addresses to check against.
1477 * Upon return an ABORT will have been sent if needed.
1478 */
1479 if (!sctp_state(asoc, COOKIE_WAIT)) {
1480 if (!sctp_sf_check_restart_addrs(new_asoc, asoc, chunk,
1481 commands)) {
1482 retval = SCTP_DISPOSITION_CONSUME;
df7deeb5 1483 goto nomem_retval;
1da177e4
LT
1484 }
1485 }
1486
1487 sctp_tietags_populate(new_asoc, asoc);
1488
730fc3d0
VY
1489 sctp_auth_params_populate(new_asoc, asoc);
1490
1da177e4
LT
1491 /* B) "Z" shall respond immediately with an INIT ACK chunk. */
1492
1493 /* If there are errors need to be reported for unknown parameters,
1494 * make sure to reserve enough room in the INIT ACK for them.
1495 */
1496 len = 0;
1497 if (err_chunk) {
1498 len = ntohs(err_chunk->chunk_hdr->length) -
1499 sizeof(sctp_chunkhdr_t);
1500 }
1501
1502 if (sctp_assoc_set_bind_addr_from_ep(new_asoc, GFP_ATOMIC) < 0)
1503 goto nomem;
1504
1505 repl = sctp_make_init_ack(new_asoc, chunk, GFP_ATOMIC, len);
1506 if (!repl)
1507 goto nomem;
1508
1509 /* If there are errors need to be reported for unknown parameters,
1510 * include them in the outgoing INIT ACK as "Unrecognized parameter"
1511 * parameter.
1512 */
1513 if (err_chunk) {
1514 /* Get the "Unrecognized parameter" parameter(s) out of the
1515 * ERROR chunk generated by sctp_verify_init(). Since the
1516 * error cause code for "unknown parameter" and the
1517 * "Unrecognized parameter" type is the same, we can
1518 * construct the parameters in INIT ACK by copying the
1519 * ERROR causes over.
1520 */
1521 unk_param = (sctp_unrecognized_param_t *)
1522 ((__u8 *)(err_chunk->chunk_hdr) +
1523 sizeof(sctp_chunkhdr_t));
1524 /* Replace the cause code with the "Unrecognized parameter"
1525 * parameter type.
1526 */
1527 sctp_addto_chunk(repl, len, unk_param);
1528 }
1529
1530 sctp_add_cmd_sf(commands, SCTP_CMD_NEW_ASOC, SCTP_ASOC(new_asoc));
1531 sctp_add_cmd_sf(commands, SCTP_CMD_REPLY, SCTP_CHUNK(repl));
1532
1533 /*
1534 * Note: After sending out INIT ACK with the State Cookie parameter,
1535 * "Z" MUST NOT allocate any resources for this new association.
1536 * Otherwise, "Z" will be vulnerable to resource attacks.
1537 */
1538 sctp_add_cmd_sf(commands, SCTP_CMD_DELETE_TCB, SCTP_NULL());
1539 retval = SCTP_DISPOSITION_CONSUME;
1540
df7deeb5
VY
1541 return retval;
1542
1543nomem:
1544 retval = SCTP_DISPOSITION_NOMEM;
1545nomem_retval:
1546 if (new_asoc)
1547 sctp_association_free(new_asoc);
1da177e4
LT
1548cleanup:
1549 if (err_chunk)
1550 sctp_chunk_free(err_chunk);
1551 return retval;
1da177e4
LT
1552}
1553
1554/*
1555 * Handle simultanous INIT.
1556 * This means we started an INIT and then we got an INIT request from
1557 * our peer.
1558 *
1559 * Section: 5.2.1 INIT received in COOKIE-WAIT or COOKIE-ECHOED State (Item B)
1560 * This usually indicates an initialization collision, i.e., each
1561 * endpoint is attempting, at about the same time, to establish an
1562 * association with the other endpoint.
1563 *
1564 * Upon receipt of an INIT in the COOKIE-WAIT or COOKIE-ECHOED state, an
1565 * endpoint MUST respond with an INIT ACK using the same parameters it
1566 * sent in its original INIT chunk (including its Verification Tag,
1567 * unchanged). These original parameters are combined with those from the
1568 * newly received INIT chunk. The endpoint shall also generate a State
1569 * Cookie with the INIT ACK. The endpoint uses the parameters sent in its
1570 * INIT to calculate the State Cookie.
1571 *
1572 * After that, the endpoint MUST NOT change its state, the T1-init
1573 * timer shall be left running and the corresponding TCB MUST NOT be
1574 * destroyed. The normal procedures for handling State Cookies when
1575 * a TCB exists will resolve the duplicate INITs to a single association.
1576 *
1577 * For an endpoint that is in the COOKIE-ECHOED state it MUST populate
1578 * its Tie-Tags with the Tag information of itself and its peer (see
1579 * section 5.2.2 for a description of the Tie-Tags).
1580 *
1581 * Verification Tag: Not explicit, but an INIT can not have a valid
1582 * verification tag, so we skip the check.
1583 *
1584 * Inputs
1585 * (endpoint, asoc, chunk)
1586 *
1587 * Outputs
1588 * (asoc, reply_msg, msg_up, timers, counters)
1589 *
1590 * The return value is the disposition of the chunk.
1591 */
1592sctp_disposition_t sctp_sf_do_5_2_1_siminit(const struct sctp_endpoint *ep,
1593 const struct sctp_association *asoc,
1594 const sctp_subtype_t type,
1595 void *arg,
1596 sctp_cmd_seq_t *commands)
1597{
1598 /* Call helper to do the real work for both simulataneous and
1599 * duplicate INIT chunk handling.
1600 */
1601 return sctp_sf_do_unexpected_init(ep, asoc, type, arg, commands);
1602}
1603
1604/*
1605 * Handle duplicated INIT messages. These are usually delayed
1606 * restransmissions.
1607 *
1608 * Section: 5.2.2 Unexpected INIT in States Other than CLOSED,
1609 * COOKIE-ECHOED and COOKIE-WAIT
1610 *
1611 * Unless otherwise stated, upon reception of an unexpected INIT for
1612 * this association, the endpoint shall generate an INIT ACK with a
1613 * State Cookie. In the outbound INIT ACK the endpoint MUST copy its
1614 * current Verification Tag and peer's Verification Tag into a reserved
1615 * place within the state cookie. We shall refer to these locations as
1616 * the Peer's-Tie-Tag and the Local-Tie-Tag. The outbound SCTP packet
1617 * containing this INIT ACK MUST carry a Verification Tag value equal to
1618 * the Initiation Tag found in the unexpected INIT. And the INIT ACK
1619 * MUST contain a new Initiation Tag (randomly generated see Section
1620 * 5.3.1). Other parameters for the endpoint SHOULD be copied from the
1621 * existing parameters of the association (e.g. number of outbound
1622 * streams) into the INIT ACK and cookie.
1623 *
1624 * After sending out the INIT ACK, the endpoint shall take no further
1625 * actions, i.e., the existing association, including its current state,
1626 * and the corresponding TCB MUST NOT be changed.
1627 *
1628 * Note: Only when a TCB exists and the association is not in a COOKIE-
1629 * WAIT state are the Tie-Tags populated. For a normal association INIT
1630 * (i.e. the endpoint is in a COOKIE-WAIT state), the Tie-Tags MUST be
1631 * set to 0 (indicating that no previous TCB existed). The INIT ACK and
1632 * State Cookie are populated as specified in section 5.2.1.
1633 *
1634 * Verification Tag: Not specified, but an INIT has no way of knowing
1635 * what the verification tag could be, so we ignore it.
1636 *
1637 * Inputs
1638 * (endpoint, asoc, chunk)
1639 *
1640 * Outputs
1641 * (asoc, reply_msg, msg_up, timers, counters)
1642 *
1643 * The return value is the disposition of the chunk.
1644 */
1645sctp_disposition_t sctp_sf_do_5_2_2_dupinit(const struct sctp_endpoint *ep,
1646 const struct sctp_association *asoc,
1647 const sctp_subtype_t type,
1648 void *arg,
1649 sctp_cmd_seq_t *commands)
1650{
1651 /* Call helper to do the real work for both simulataneous and
1652 * duplicate INIT chunk handling.
1653 */
1654 return sctp_sf_do_unexpected_init(ep, asoc, type, arg, commands);
1655}
1656
1657
610ab73a
VY
1658/*
1659 * Unexpected INIT-ACK handler.
1660 *
1661 * Section 5.2.3
1662 * If an INIT ACK received by an endpoint in any state other than the
1663 * COOKIE-WAIT state, the endpoint should discard the INIT ACK chunk.
1664 * An unexpected INIT ACK usually indicates the processing of an old or
1665 * duplicated INIT chunk.
1666*/
1667sctp_disposition_t sctp_sf_do_5_2_3_initack(const struct sctp_endpoint *ep,
1668 const struct sctp_association *asoc,
1669 const sctp_subtype_t type,
1670 void *arg, sctp_cmd_seq_t *commands)
1671{
1672 /* Per the above section, we'll discard the chunk if we have an
1673 * endpoint. If this is an OOTB INIT-ACK, treat it as such.
1674 */
d808ad9a 1675 if (ep == sctp_sk((sctp_get_ctl_sock()))->ep)
610ab73a
VY
1676 return sctp_sf_ootb(ep, asoc, type, arg, commands);
1677 else
1678 return sctp_sf_discard_chunk(ep, asoc, type, arg, commands);
1679}
1da177e4
LT
1680
1681/* Unexpected COOKIE-ECHO handler for peer restart (Table 2, action 'A')
1682 *
1683 * Section 5.2.4
1684 * A) In this case, the peer may have restarted.
1685 */
1686static sctp_disposition_t sctp_sf_do_dupcook_a(const struct sctp_endpoint *ep,
1687 const struct sctp_association *asoc,
1688 struct sctp_chunk *chunk,
1689 sctp_cmd_seq_t *commands,
1690 struct sctp_association *new_asoc)
1691{
1692 sctp_init_chunk_t *peer_init;
1693 struct sctp_ulpevent *ev;
1694 struct sctp_chunk *repl;
1695 struct sctp_chunk *err;
1696 sctp_disposition_t disposition;
1697
1698 /* new_asoc is a brand-new association, so these are not yet
1699 * side effects--it is safe to run them here.
1700 */
1701 peer_init = &chunk->subh.cookie_hdr->c.peer_init[0];
1702
1703 if (!sctp_process_init(new_asoc, chunk->chunk_hdr->type,
1704 sctp_source(chunk), peer_init,
1705 GFP_ATOMIC))
1706 goto nomem;
1707
1708 /* Make sure no new addresses are being added during the
1709 * restart. Though this is a pretty complicated attack
1710 * since you'd have to get inside the cookie.
1711 */
1712 if (!sctp_sf_check_restart_addrs(new_asoc, asoc, chunk, commands)) {
1713 return SCTP_DISPOSITION_CONSUME;
1714 }
1715
1716 /* If the endpoint is in the SHUTDOWN-ACK-SENT state and recognizes
1717 * the peer has restarted (Action A), it MUST NOT setup a new
1718 * association but instead resend the SHUTDOWN ACK and send an ERROR
1719 * chunk with a "Cookie Received while Shutting Down" error cause to
1720 * its peer.
1721 */
1722 if (sctp_state(asoc, SHUTDOWN_ACK_SENT)) {
1723 disposition = sctp_sf_do_9_2_reshutack(ep, asoc,
1724 SCTP_ST_CHUNK(chunk->chunk_hdr->type),
1725 chunk, commands);
1726 if (SCTP_DISPOSITION_NOMEM == disposition)
1727 goto nomem;
1728
1729 err = sctp_make_op_error(asoc, chunk,
1730 SCTP_ERROR_COOKIE_IN_SHUTDOWN,
1731 NULL, 0);
1732 if (err)
1733 sctp_add_cmd_sf(commands, SCTP_CMD_REPLY,
1734 SCTP_CHUNK(err));
1735
1736 return SCTP_DISPOSITION_CONSUME;
1737 }
1738
1739 /* For now, fail any unsent/unacked data. Consider the optional
1740 * choice of resending of this data.
1741 */
1742 sctp_add_cmd_sf(commands, SCTP_CMD_PURGE_OUTQUEUE, SCTP_NULL());
1743
1da177e4
LT
1744 repl = sctp_make_cookie_ack(new_asoc, chunk);
1745 if (!repl)
1746 goto nomem;
1747
1da177e4
LT
1748 /* Report association restart to upper layer. */
1749 ev = sctp_ulpevent_make_assoc_change(asoc, 0, SCTP_RESTART, 0,
1750 new_asoc->c.sinit_num_ostreams,
1751 new_asoc->c.sinit_max_instreams,
a5a35e76 1752 NULL, GFP_ATOMIC);
1da177e4
LT
1753 if (!ev)
1754 goto nomem_ev;
1755
df7deeb5
VY
1756 /* Update the content of current association. */
1757 sctp_add_cmd_sf(commands, SCTP_CMD_UPDATE_ASSOC, SCTP_ASOC(new_asoc));
1758 sctp_add_cmd_sf(commands, SCTP_CMD_REPLY, SCTP_CHUNK(repl));
1da177e4
LT
1759 sctp_add_cmd_sf(commands, SCTP_CMD_EVENT_ULP, SCTP_ULPEVENT(ev));
1760 return SCTP_DISPOSITION_CONSUME;
1761
1762nomem_ev:
1763 sctp_chunk_free(repl);
1764nomem:
1765 return SCTP_DISPOSITION_NOMEM;
1766}
1767
1768/* Unexpected COOKIE-ECHO handler for setup collision (Table 2, action 'B')
1769 *
1770 * Section 5.2.4
1771 * B) In this case, both sides may be attempting to start an association
1772 * at about the same time but the peer endpoint started its INIT
1773 * after responding to the local endpoint's INIT
1774 */
1775/* This case represents an initialization collision. */
1776static sctp_disposition_t sctp_sf_do_dupcook_b(const struct sctp_endpoint *ep,
1777 const struct sctp_association *asoc,
1778 struct sctp_chunk *chunk,
1779 sctp_cmd_seq_t *commands,
1780 struct sctp_association *new_asoc)
1781{
1782 sctp_init_chunk_t *peer_init;
1da177e4
LT
1783 struct sctp_chunk *repl;
1784
1785 /* new_asoc is a brand-new association, so these are not yet
1786 * side effects--it is safe to run them here.
1787 */
1788 peer_init = &chunk->subh.cookie_hdr->c.peer_init[0];
1789 if (!sctp_process_init(new_asoc, chunk->chunk_hdr->type,
1790 sctp_source(chunk), peer_init,
1791 GFP_ATOMIC))
1792 goto nomem;
1793
1794 /* Update the content of current association. */
1795 sctp_add_cmd_sf(commands, SCTP_CMD_UPDATE_ASSOC, SCTP_ASOC(new_asoc));
1796 sctp_add_cmd_sf(commands, SCTP_CMD_NEW_STATE,
1797 SCTP_STATE(SCTP_STATE_ESTABLISHED));
1798 SCTP_INC_STATS(SCTP_MIB_CURRESTAB);
1799 sctp_add_cmd_sf(commands, SCTP_CMD_HB_TIMERS_START, SCTP_NULL());
1800
1801 repl = sctp_make_cookie_ack(new_asoc, chunk);
1802 if (!repl)
1803 goto nomem;
1804
1805 sctp_add_cmd_sf(commands, SCTP_CMD_REPLY, SCTP_CHUNK(repl));
1806 sctp_add_cmd_sf(commands, SCTP_CMD_TRANSMIT, SCTP_NULL());
1807
1808 /* RFC 2960 5.1 Normal Establishment of an Association
1809 *
1810 * D) IMPLEMENTATION NOTE: An implementation may choose to
1811 * send the Communication Up notification to the SCTP user
1812 * upon reception of a valid COOKIE ECHO chunk.
07d93967
VY
1813 *
1814 * Sadly, this needs to be implemented as a side-effect, because
1815 * we are not guaranteed to have set the association id of the real
1816 * association and so these notifications need to be delayed until
1817 * the association id is allocated.
1da177e4 1818 */
1da177e4 1819
07d93967 1820 sctp_add_cmd_sf(commands, SCTP_CMD_ASSOC_CHANGE, SCTP_U8(SCTP_COMM_UP));
1da177e4
LT
1821
1822 /* Sockets API Draft Section 5.3.1.6
0f3fffd8 1823 * When a peer sends a Adaptation Layer Indication parameter , SCTP
1da177e4 1824 * delivers this notification to inform the application that of the
0f3fffd8 1825 * peers requested adaptation layer.
07d93967
VY
1826 *
1827 * This also needs to be done as a side effect for the same reason as
1828 * above.
1da177e4 1829 */
07d93967
VY
1830 if (asoc->peer.adaptation_ind)
1831 sctp_add_cmd_sf(commands, SCTP_CMD_ADAPTATION_IND, SCTP_NULL());
1da177e4
LT
1832
1833 return SCTP_DISPOSITION_CONSUME;
1834
1da177e4
LT
1835nomem:
1836 return SCTP_DISPOSITION_NOMEM;
1837}
1838
1839/* Unexpected COOKIE-ECHO handler for setup collision (Table 2, action 'C')
1840 *
1841 * Section 5.2.4
1842 * C) In this case, the local endpoint's cookie has arrived late.
1843 * Before it arrived, the local endpoint sent an INIT and received an
1844 * INIT-ACK and finally sent a COOKIE ECHO with the peer's same tag
1845 * but a new tag of its own.
1846 */
1847/* This case represents an initialization collision. */
1848static sctp_disposition_t sctp_sf_do_dupcook_c(const struct sctp_endpoint *ep,
1849 const struct sctp_association *asoc,
1850 struct sctp_chunk *chunk,
1851 sctp_cmd_seq_t *commands,
1852 struct sctp_association *new_asoc)
1853{
1854 /* The cookie should be silently discarded.
1855 * The endpoint SHOULD NOT change states and should leave
1856 * any timers running.
1857 */
1858 return SCTP_DISPOSITION_DISCARD;
1859}
1860
1861/* Unexpected COOKIE-ECHO handler lost chunk (Table 2, action 'D')
1862 *
1863 * Section 5.2.4
1864 *
1865 * D) When both local and remote tags match the endpoint should always
1866 * enter the ESTABLISHED state, if it has not already done so.
1867 */
1868/* This case represents an initialization collision. */
1869static sctp_disposition_t sctp_sf_do_dupcook_d(const struct sctp_endpoint *ep,
1870 const struct sctp_association *asoc,
1871 struct sctp_chunk *chunk,
1872 sctp_cmd_seq_t *commands,
1873 struct sctp_association *new_asoc)
1874{
df7deeb5 1875 struct sctp_ulpevent *ev = NULL, *ai_ev = NULL;
1da177e4
LT
1876 struct sctp_chunk *repl;
1877
1878 /* Clarification from Implementor's Guide:
1879 * D) When both local and remote tags match the endpoint should
d808ad9a
YH
1880 * enter the ESTABLISHED state, if it is in the COOKIE-ECHOED state.
1881 * It should stop any cookie timer that may be running and send
1882 * a COOKIE ACK.
1da177e4
LT
1883 */
1884
1885 /* Don't accidentally move back into established state. */
1886 if (asoc->state < SCTP_STATE_ESTABLISHED) {
1887 sctp_add_cmd_sf(commands, SCTP_CMD_TIMER_STOP,
1888 SCTP_TO(SCTP_EVENT_TIMEOUT_T1_COOKIE));
1889 sctp_add_cmd_sf(commands, SCTP_CMD_NEW_STATE,
1890 SCTP_STATE(SCTP_STATE_ESTABLISHED));
1891 SCTP_INC_STATS(SCTP_MIB_CURRESTAB);
1892 sctp_add_cmd_sf(commands, SCTP_CMD_HB_TIMERS_START,
1893 SCTP_NULL());
1894
1895 /* RFC 2960 5.1 Normal Establishment of an Association
1896 *
1897 * D) IMPLEMENTATION NOTE: An implementation may choose
1898 * to send the Communication Up notification to the
1899 * SCTP user upon reception of a valid COOKIE
1900 * ECHO chunk.
1901 */
df7deeb5 1902 ev = sctp_ulpevent_make_assoc_change(asoc, 0,
1da177e4 1903 SCTP_COMM_UP, 0,
df7deeb5
VY
1904 asoc->c.sinit_num_ostreams,
1905 asoc->c.sinit_max_instreams,
9cbcbf4e 1906 NULL, GFP_ATOMIC);
1da177e4
LT
1907 if (!ev)
1908 goto nomem;
1da177e4
LT
1909
1910 /* Sockets API Draft Section 5.3.1.6
0f3fffd8 1911 * When a peer sends a Adaptation Layer Indication parameter,
1da177e4 1912 * SCTP delivers this notification to inform the application
0f3fffd8 1913 * that of the peers requested adaptation layer.
1da177e4 1914 */
0f3fffd8
ISJ
1915 if (asoc->peer.adaptation_ind) {
1916 ai_ev = sctp_ulpevent_make_adaptation_indication(asoc,
1da177e4 1917 GFP_ATOMIC);
df7deeb5 1918 if (!ai_ev)
1da177e4
LT
1919 goto nomem;
1920
1da177e4
LT
1921 }
1922 }
1923 sctp_add_cmd_sf(commands, SCTP_CMD_TRANSMIT, SCTP_NULL());
1924
1925 repl = sctp_make_cookie_ack(new_asoc, chunk);
1926 if (!repl)
1927 goto nomem;
1928
df7deeb5
VY
1929 if (ev)
1930 sctp_add_cmd_sf(commands, SCTP_CMD_EVENT_ULP,
1931 SCTP_ULPEVENT(ev));
1932 if (ai_ev)
1933 sctp_add_cmd_sf(commands, SCTP_CMD_EVENT_ULP,
1934 SCTP_ULPEVENT(ai_ev));
1935
1da177e4
LT
1936 sctp_add_cmd_sf(commands, SCTP_CMD_REPLY, SCTP_CHUNK(repl));
1937 sctp_add_cmd_sf(commands, SCTP_CMD_TRANSMIT, SCTP_NULL());
1938
1939 return SCTP_DISPOSITION_CONSUME;
1940
1941nomem:
df7deeb5
VY
1942 if (ai_ev)
1943 sctp_ulpevent_free(ai_ev);
1da177e4
LT
1944 if (ev)
1945 sctp_ulpevent_free(ev);
1946 return SCTP_DISPOSITION_NOMEM;
1947}
1948
1949/*
1950 * Handle a duplicate COOKIE-ECHO. This usually means a cookie-carrying
1951 * chunk was retransmitted and then delayed in the network.
1952 *
1953 * Section: 5.2.4 Handle a COOKIE ECHO when a TCB exists
1954 *
1955 * Verification Tag: None. Do cookie validation.
1956 *
1957 * Inputs
1958 * (endpoint, asoc, chunk)
1959 *
1960 * Outputs
1961 * (asoc, reply_msg, msg_up, timers, counters)
1962 *
1963 * The return value is the disposition of the chunk.
1964 */
1965sctp_disposition_t sctp_sf_do_5_2_4_dupcook(const struct sctp_endpoint *ep,
1966 const struct sctp_association *asoc,
1967 const sctp_subtype_t type,
1968 void *arg,
1969 sctp_cmd_seq_t *commands)
1970{
1971 sctp_disposition_t retval;
1972 struct sctp_chunk *chunk = arg;
1973 struct sctp_association *new_asoc;
1974 int error = 0;
1975 char action;
1976 struct sctp_chunk *err_chk_p;
1977
1978 /* Make sure that the chunk has a valid length from the protocol
1979 * perspective. In this case check to make sure we have at least
1980 * enough for the chunk header. Cookie length verification is
1981 * done later.
1982 */
1983 if (!sctp_chunk_length_valid(chunk, sizeof(sctp_chunkhdr_t)))
1984 return sctp_sf_violation_chunklen(ep, asoc, type, arg,
1985 commands);
1986
1987 /* "Decode" the chunk. We have no optional parameters so we
1988 * are in good shape.
1989 */
d808ad9a 1990 chunk->subh.cookie_hdr = (struct sctp_signed_cookie *)chunk->skb->data;
62b08083
SS
1991 if (!pskb_pull(chunk->skb, ntohs(chunk->chunk_hdr->length) -
1992 sizeof(sctp_chunkhdr_t)))
1993 goto nomem;
1da177e4
LT
1994
1995 /* In RFC 2960 5.2.4 3, if both Verification Tags in the State Cookie
1996 * of a duplicate COOKIE ECHO match the Verification Tags of the
1997 * current association, consider the State Cookie valid even if
1998 * the lifespan is exceeded.
1999 */
2000 new_asoc = sctp_unpack_cookie(ep, asoc, chunk, GFP_ATOMIC, &error,
2001 &err_chk_p);
2002
2003 /* FIXME:
2004 * If the re-build failed, what is the proper error path
2005 * from here?
2006 *
2007 * [We should abort the association. --piggy]
2008 */
2009 if (!new_asoc) {
2010 /* FIXME: Several errors are possible. A bad cookie should
2011 * be silently discarded, but think about logging it too.
2012 */
2013 switch (error) {
2014 case -SCTP_IERROR_NOMEM:
2015 goto nomem;
2016
2017 case -SCTP_IERROR_STALE_COOKIE:
2018 sctp_send_stale_cookie_err(ep, asoc, chunk, commands,
2019 err_chk_p);
2020 return sctp_sf_pdiscard(ep, asoc, type, arg, commands);
2021 case -SCTP_IERROR_BAD_SIG:
2022 default:
2023 return sctp_sf_pdiscard(ep, asoc, type, arg, commands);
3ff50b79 2024 }
1da177e4
LT
2025 }
2026
2027 /* Compare the tie_tag in cookie with the verification tag of
2028 * current association.
2029 */
2030 action = sctp_tietags_compare(new_asoc, asoc);
2031
2032 switch (action) {
2033 case 'A': /* Association restart. */
2034 retval = sctp_sf_do_dupcook_a(ep, asoc, chunk, commands,
2035 new_asoc);
2036 break;
2037
2038 case 'B': /* Collision case B. */
2039 retval = sctp_sf_do_dupcook_b(ep, asoc, chunk, commands,
2040 new_asoc);
2041 break;
2042
2043 case 'C': /* Collision case C. */
2044 retval = sctp_sf_do_dupcook_c(ep, asoc, chunk, commands,
2045 new_asoc);
2046 break;
2047
2048 case 'D': /* Collision case D. */
2049 retval = sctp_sf_do_dupcook_d(ep, asoc, chunk, commands,
2050 new_asoc);
2051 break;
2052
2053 default: /* Discard packet for all others. */
2054 retval = sctp_sf_pdiscard(ep, asoc, type, arg, commands);
2055 break;
3ff50b79 2056 }
1da177e4
LT
2057
2058 /* Delete the tempory new association. */
2059 sctp_add_cmd_sf(commands, SCTP_CMD_NEW_ASOC, SCTP_ASOC(new_asoc));
2060 sctp_add_cmd_sf(commands, SCTP_CMD_DELETE_TCB, SCTP_NULL());
2061
2062 return retval;
2063
2064nomem:
2065 return SCTP_DISPOSITION_NOMEM;
2066}
2067
2068/*
2069 * Process an ABORT. (SHUTDOWN-PENDING state)
2070 *
2071 * See sctp_sf_do_9_1_abort().
2072 */
2073sctp_disposition_t sctp_sf_shutdown_pending_abort(
2074 const struct sctp_endpoint *ep,
2075 const struct sctp_association *asoc,
2076 const sctp_subtype_t type,
2077 void *arg,
2078 sctp_cmd_seq_t *commands)
2079{
2080 struct sctp_chunk *chunk = arg;
2081
2082 if (!sctp_vtag_verify_either(chunk, asoc))
2083 return sctp_sf_pdiscard(ep, asoc, type, arg, commands);
2084
2085 /* Make sure that the ABORT chunk has a valid length.
2086 * Since this is an ABORT chunk, we have to discard it
2087 * because of the following text:
2088 * RFC 2960, Section 3.3.7
2089 * If an endpoint receives an ABORT with a format error or for an
2090 * association that doesn't exist, it MUST silently discard it.
2091 * Becasue the length is "invalid", we can't really discard just
2092 * as we do not know its true length. So, to be safe, discard the
2093 * packet.
2094 */
2095 if (!sctp_chunk_length_valid(chunk, sizeof(sctp_abort_chunk_t)))
2096 return sctp_sf_pdiscard(ep, asoc, type, arg, commands);
2097
2098 /* Stop the T5-shutdown guard timer. */
2099 sctp_add_cmd_sf(commands, SCTP_CMD_TIMER_STOP,
2100 SCTP_TO(SCTP_EVENT_TIMEOUT_T5_SHUTDOWN_GUARD));
2101
2102 return sctp_sf_do_9_1_abort(ep, asoc, type, arg, commands);
2103}
2104
2105/*
2106 * Process an ABORT. (SHUTDOWN-SENT state)
2107 *
2108 * See sctp_sf_do_9_1_abort().
2109 */
2110sctp_disposition_t sctp_sf_shutdown_sent_abort(const struct sctp_endpoint *ep,
2111 const struct sctp_association *asoc,
2112 const sctp_subtype_t type,
2113 void *arg,
2114 sctp_cmd_seq_t *commands)
2115{
2116 struct sctp_chunk *chunk = arg;
2117
2118 if (!sctp_vtag_verify_either(chunk, asoc))
2119 return sctp_sf_pdiscard(ep, asoc, type, arg, commands);
2120
2121 /* Make sure that the ABORT chunk has a valid length.
2122 * Since this is an ABORT chunk, we have to discard it
2123 * because of the following text:
2124 * RFC 2960, Section 3.3.7
2125 * If an endpoint receives an ABORT with a format error or for an
2126 * association that doesn't exist, it MUST silently discard it.
2127 * Becasue the length is "invalid", we can't really discard just
2128 * as we do not know its true length. So, to be safe, discard the
2129 * packet.
2130 */
2131 if (!sctp_chunk_length_valid(chunk, sizeof(sctp_abort_chunk_t)))
2132 return sctp_sf_pdiscard(ep, asoc, type, arg, commands);
2133
2134 /* Stop the T2-shutdown timer. */
2135 sctp_add_cmd_sf(commands, SCTP_CMD_TIMER_STOP,
2136 SCTP_TO(SCTP_EVENT_TIMEOUT_T2_SHUTDOWN));
2137
2138 /* Stop the T5-shutdown guard timer. */
2139 sctp_add_cmd_sf(commands, SCTP_CMD_TIMER_STOP,
2140 SCTP_TO(SCTP_EVENT_TIMEOUT_T5_SHUTDOWN_GUARD));
2141
2142 return sctp_sf_do_9_1_abort(ep, asoc, type, arg, commands);
2143}
2144
2145/*
2146 * Process an ABORT. (SHUTDOWN-ACK-SENT state)
2147 *
2148 * See sctp_sf_do_9_1_abort().
2149 */
2150sctp_disposition_t sctp_sf_shutdown_ack_sent_abort(
2151 const struct sctp_endpoint *ep,
2152 const struct sctp_association *asoc,
2153 const sctp_subtype_t type,
2154 void *arg,
2155 sctp_cmd_seq_t *commands)
2156{
2157 /* The same T2 timer, so we should be able to use
2158 * common function with the SHUTDOWN-SENT state.
2159 */
2160 return sctp_sf_shutdown_sent_abort(ep, asoc, type, arg, commands);
2161}
2162
2163/*
2164 * Handle an Error received in COOKIE_ECHOED state.
2165 *
2166 * Only handle the error type of stale COOKIE Error, the other errors will
2167 * be ignored.
2168 *
2169 * Inputs
2170 * (endpoint, asoc, chunk)
2171 *
2172 * Outputs
2173 * (asoc, reply_msg, msg_up, timers, counters)
2174 *
2175 * The return value is the disposition of the chunk.
2176 */
2177sctp_disposition_t sctp_sf_cookie_echoed_err(const struct sctp_endpoint *ep,
2178 const struct sctp_association *asoc,
2179 const sctp_subtype_t type,
2180 void *arg,
2181 sctp_cmd_seq_t *commands)
2182{
2183 struct sctp_chunk *chunk = arg;
2184 sctp_errhdr_t *err;
2185
2186 if (!sctp_vtag_verify(chunk, asoc))
2187 return sctp_sf_pdiscard(ep, asoc, type, arg, commands);
2188
2189 /* Make sure that the ERROR chunk has a valid length.
2190 * The parameter walking depends on this as well.
2191 */
2192 if (!sctp_chunk_length_valid(chunk, sizeof(sctp_operr_chunk_t)))
2193 return sctp_sf_violation_chunklen(ep, asoc, type, arg,
2194 commands);
2195
2196 /* Process the error here */
2197 /* FUTURE FIXME: When PR-SCTP related and other optional
2198 * parms are emitted, this will have to change to handle multiple
2199 * errors.
2200 */
2201 sctp_walk_errors(err, chunk->chunk_hdr) {
2202 if (SCTP_ERROR_STALE_COOKIE == err->cause)
d808ad9a 2203 return sctp_sf_do_5_2_6_stale(ep, asoc, type,
1da177e4
LT
2204 arg, commands);
2205 }
2206
2207 /* It is possible to have malformed error causes, and that
2208 * will cause us to end the walk early. However, since
2209 * we are discarding the packet, there should be no adverse
2210 * affects.
2211 */
2212 return sctp_sf_pdiscard(ep, asoc, type, arg, commands);
2213}
2214
2215/*
2216 * Handle a Stale COOKIE Error
2217 *
2218 * Section: 5.2.6 Handle Stale COOKIE Error
2219 * If the association is in the COOKIE-ECHOED state, the endpoint may elect
2220 * one of the following three alternatives.
2221 * ...
2222 * 3) Send a new INIT chunk to the endpoint, adding a Cookie
2223 * Preservative parameter requesting an extension to the lifetime of
2224 * the State Cookie. When calculating the time extension, an
2225 * implementation SHOULD use the RTT information measured based on the
2226 * previous COOKIE ECHO / ERROR exchange, and should add no more
2227 * than 1 second beyond the measured RTT, due to long State Cookie
2228 * lifetimes making the endpoint more subject to a replay attack.
2229 *
2230 * Verification Tag: Not explicit, but safe to ignore.
2231 *
2232 * Inputs
2233 * (endpoint, asoc, chunk)
2234 *
2235 * Outputs
2236 * (asoc, reply_msg, msg_up, timers, counters)
2237 *
2238 * The return value is the disposition of the chunk.
2239 */
2240static sctp_disposition_t sctp_sf_do_5_2_6_stale(const struct sctp_endpoint *ep,
2241 const struct sctp_association *asoc,
2242 const sctp_subtype_t type,
2243 void *arg,
2244 sctp_cmd_seq_t *commands)
2245{
2246 struct sctp_chunk *chunk = arg;
2247 time_t stale;
2248 sctp_cookie_preserve_param_t bht;
2249 sctp_errhdr_t *err;
2250 struct sctp_chunk *reply;
2251 struct sctp_bind_addr *bp;
3f7a87d2 2252 int attempts = asoc->init_err_counter + 1;
1da177e4 2253
81845c21 2254 if (attempts > asoc->max_init_attempts) {
8de8c873
SS
2255 sctp_add_cmd_sf(commands, SCTP_CMD_SET_SK_ERR,
2256 SCTP_ERROR(ETIMEDOUT));
1da177e4 2257 sctp_add_cmd_sf(commands, SCTP_CMD_INIT_FAILED,
dc251b2b 2258 SCTP_PERR(SCTP_ERROR_STALE_COOKIE));
1da177e4
LT
2259 return SCTP_DISPOSITION_DELETE_TCB;
2260 }
2261
2262 err = (sctp_errhdr_t *)(chunk->skb->data);
2263
2264 /* When calculating the time extension, an implementation
2265 * SHOULD use the RTT information measured based on the
2266 * previous COOKIE ECHO / ERROR exchange, and should add no
2267 * more than 1 second beyond the measured RTT, due to long
2268 * State Cookie lifetimes making the endpoint more subject to
2269 * a replay attack.
2270 * Measure of Staleness's unit is usec. (1/1000000 sec)
2271 * Suggested Cookie Life-span Increment's unit is msec.
2272 * (1/1000 sec)
2273 * In general, if you use the suggested cookie life, the value
2274 * found in the field of measure of staleness should be doubled
2275 * to give ample time to retransmit the new cookie and thus
2276 * yield a higher probability of success on the reattempt.
2277 */
34bcca28 2278 stale = ntohl(*(__be32 *)((u8 *)err + sizeof(sctp_errhdr_t)));
1da177e4
LT
2279 stale = (stale * 2) / 1000;
2280
2281 bht.param_hdr.type = SCTP_PARAM_COOKIE_PRESERVATIVE;
2282 bht.param_hdr.length = htons(sizeof(bht));
2283 bht.lifespan_increment = htonl(stale);
2284
2285 /* Build that new INIT chunk. */
2286 bp = (struct sctp_bind_addr *) &asoc->base.bind_addr;
2287 reply = sctp_make_init(asoc, bp, GFP_ATOMIC, sizeof(bht));
2288 if (!reply)
2289 goto nomem;
2290
2291 sctp_addto_chunk(reply, sizeof(bht), &bht);
2292
2293 /* Clear peer's init_tag cached in assoc as we are sending a new INIT */
2294 sctp_add_cmd_sf(commands, SCTP_CMD_CLEAR_INIT_TAG, SCTP_NULL());
2295
2296 /* Stop pending T3-rtx and heartbeat timers */
2297 sctp_add_cmd_sf(commands, SCTP_CMD_T3_RTX_TIMERS_STOP, SCTP_NULL());
2298 sctp_add_cmd_sf(commands, SCTP_CMD_HB_TIMERS_STOP, SCTP_NULL());
2299
2300 /* Delete non-primary peer ip addresses since we are transitioning
2301 * back to the COOKIE-WAIT state
2302 */
2303 sctp_add_cmd_sf(commands, SCTP_CMD_DEL_NON_PRIMARY, SCTP_NULL());
2304
d808ad9a
YH
2305 /* If we've sent any data bundled with COOKIE-ECHO we will need to
2306 * resend
1da177e4 2307 */
d808ad9a 2308 sctp_add_cmd_sf(commands, SCTP_CMD_RETRAN,
1da177e4
LT
2309 SCTP_TRANSPORT(asoc->peer.primary_path));
2310
2311 /* Cast away the const modifier, as we want to just
2312 * rerun it through as a sideffect.
2313 */
3f7a87d2 2314 sctp_add_cmd_sf(commands, SCTP_CMD_INIT_COUNTER_INC, SCTP_NULL());
1da177e4
LT
2315
2316 sctp_add_cmd_sf(commands, SCTP_CMD_TIMER_STOP,
2317 SCTP_TO(SCTP_EVENT_TIMEOUT_T1_COOKIE));
2318 sctp_add_cmd_sf(commands, SCTP_CMD_NEW_STATE,
2319 SCTP_STATE(SCTP_STATE_COOKIE_WAIT));
2320 sctp_add_cmd_sf(commands, SCTP_CMD_TIMER_START,
2321 SCTP_TO(SCTP_EVENT_TIMEOUT_T1_INIT));
2322
2323 sctp_add_cmd_sf(commands, SCTP_CMD_REPLY, SCTP_CHUNK(reply));
2324
2325 return SCTP_DISPOSITION_CONSUME;
2326
2327nomem:
2328 return SCTP_DISPOSITION_NOMEM;
2329}
2330
2331/*
2332 * Process an ABORT.
2333 *
2334 * Section: 9.1
2335 * After checking the Verification Tag, the receiving endpoint shall
2336 * remove the association from its record, and shall report the
2337 * termination to its upper layer.
2338 *
2339 * Verification Tag: 8.5.1 Exceptions in Verification Tag Rules
2340 * B) Rules for packet carrying ABORT:
2341 *
2342 * - The endpoint shall always fill in the Verification Tag field of the
2343 * outbound packet with the destination endpoint's tag value if it
2344 * is known.
2345 *
2346 * - If the ABORT is sent in response to an OOTB packet, the endpoint
2347 * MUST follow the procedure described in Section 8.4.
2348 *
2349 * - The receiver MUST accept the packet if the Verification Tag
2350 * matches either its own tag, OR the tag of its peer. Otherwise, the
2351 * receiver MUST silently discard the packet and take no further
2352 * action.
2353 *
2354 * Inputs
2355 * (endpoint, asoc, chunk)
2356 *
2357 * Outputs
2358 * (asoc, reply_msg, msg_up, timers, counters)
2359 *
2360 * The return value is the disposition of the chunk.
2361 */
2362sctp_disposition_t sctp_sf_do_9_1_abort(const struct sctp_endpoint *ep,
2363 const struct sctp_association *asoc,
2364 const sctp_subtype_t type,
2365 void *arg,
2366 sctp_cmd_seq_t *commands)
2367{
2368 struct sctp_chunk *chunk = arg;
2369 unsigned len;
5be291fe 2370 __be16 error = SCTP_ERROR_NO_ERROR;
1da177e4
LT
2371
2372 if (!sctp_vtag_verify_either(chunk, asoc))
2373 return sctp_sf_pdiscard(ep, asoc, type, arg, commands);
2374
2375 /* Make sure that the ABORT chunk has a valid length.
2376 * Since this is an ABORT chunk, we have to discard it
2377 * because of the following text:
2378 * RFC 2960, Section 3.3.7
2379 * If an endpoint receives an ABORT with a format error or for an
2380 * association that doesn't exist, it MUST silently discard it.
2381 * Becasue the length is "invalid", we can't really discard just
2382 * as we do not know its true length. So, to be safe, discard the
2383 * packet.
2384 */
2385 if (!sctp_chunk_length_valid(chunk, sizeof(sctp_abort_chunk_t)))
2386 return sctp_sf_pdiscard(ep, asoc, type, arg, commands);
2387
2388 /* See if we have an error cause code in the chunk. */
2389 len = ntohs(chunk->chunk_hdr->length);
2390 if (len >= sizeof(struct sctp_chunkhdr) + sizeof(struct sctp_errhdr))
2391 error = ((sctp_errhdr_t *)chunk->skb->data)->cause;
2392
8de8c873 2393 sctp_add_cmd_sf(commands, SCTP_CMD_SET_SK_ERR, SCTP_ERROR(ECONNRESET));
d808ad9a 2394 /* ASSOC_FAILED will DELETE_TCB. */
5be291fe 2395 sctp_add_cmd_sf(commands, SCTP_CMD_ASSOC_FAILED, SCTP_PERR(error));
1da177e4
LT
2396 SCTP_INC_STATS(SCTP_MIB_ABORTEDS);
2397 SCTP_DEC_STATS(SCTP_MIB_CURRESTAB);
2398
2399 return SCTP_DISPOSITION_ABORT;
2400}
2401
2402/*
2403 * Process an ABORT. (COOKIE-WAIT state)
2404 *
2405 * See sctp_sf_do_9_1_abort() above.
2406 */
2407sctp_disposition_t sctp_sf_cookie_wait_abort(const struct sctp_endpoint *ep,
2408 const struct sctp_association *asoc,
2409 const sctp_subtype_t type,
2410 void *arg,
2411 sctp_cmd_seq_t *commands)
2412{
2413 struct sctp_chunk *chunk = arg;
2414 unsigned len;
f94c0198 2415 __be16 error = SCTP_ERROR_NO_ERROR;
1da177e4
LT
2416
2417 if (!sctp_vtag_verify_either(chunk, asoc))
2418 return sctp_sf_pdiscard(ep, asoc, type, arg, commands);
2419
2420 /* Make sure that the ABORT chunk has a valid length.
2421 * Since this is an ABORT chunk, we have to discard it
2422 * because of the following text:
2423 * RFC 2960, Section 3.3.7
2424 * If an endpoint receives an ABORT with a format error or for an
2425 * association that doesn't exist, it MUST silently discard it.
2426 * Becasue the length is "invalid", we can't really discard just
2427 * as we do not know its true length. So, to be safe, discard the
2428 * packet.
2429 */
2430 if (!sctp_chunk_length_valid(chunk, sizeof(sctp_abort_chunk_t)))
2431 return sctp_sf_pdiscard(ep, asoc, type, arg, commands);
2432
2433 /* See if we have an error cause code in the chunk. */
2434 len = ntohs(chunk->chunk_hdr->length);
2435 if (len >= sizeof(struct sctp_chunkhdr) + sizeof(struct sctp_errhdr))
2436 error = ((sctp_errhdr_t *)chunk->skb->data)->cause;
2437
8de8c873
SS
2438 return sctp_stop_t1_and_abort(commands, error, ECONNREFUSED, asoc,
2439 chunk->transport);
1da177e4
LT
2440}
2441
2442/*
2443 * Process an incoming ICMP as an ABORT. (COOKIE-WAIT state)
2444 */
2445sctp_disposition_t sctp_sf_cookie_wait_icmp_abort(const struct sctp_endpoint *ep,
2446 const struct sctp_association *asoc,
2447 const sctp_subtype_t type,
2448 void *arg,
2449 sctp_cmd_seq_t *commands)
2450{
8de8c873
SS
2451 return sctp_stop_t1_and_abort(commands, SCTP_ERROR_NO_ERROR,
2452 ENOPROTOOPT, asoc,
3f7a87d2 2453 (struct sctp_transport *)arg);
1da177e4
LT
2454}
2455
2456/*
2457 * Process an ABORT. (COOKIE-ECHOED state)
2458 */
2459sctp_disposition_t sctp_sf_cookie_echoed_abort(const struct sctp_endpoint *ep,
2460 const struct sctp_association *asoc,
2461 const sctp_subtype_t type,
2462 void *arg,
2463 sctp_cmd_seq_t *commands)
2464{
2465 /* There is a single T1 timer, so we should be able to use
2466 * common function with the COOKIE-WAIT state.
2467 */
2468 return sctp_sf_cookie_wait_abort(ep, asoc, type, arg, commands);
2469}
2470
2471/*
2472 * Stop T1 timer and abort association with "INIT failed".
2473 *
2474 * This is common code called by several sctp_sf_*_abort() functions above.
2475 */
52c1da39 2476static sctp_disposition_t sctp_stop_t1_and_abort(sctp_cmd_seq_t *commands,
f94c0198 2477 __be16 error, int sk_err,
3f7a87d2
FF
2478 const struct sctp_association *asoc,
2479 struct sctp_transport *transport)
1da177e4 2480{
3f7a87d2 2481 SCTP_DEBUG_PRINTK("ABORT received (INIT).\n");
1da177e4
LT
2482 sctp_add_cmd_sf(commands, SCTP_CMD_NEW_STATE,
2483 SCTP_STATE(SCTP_STATE_CLOSED));
2484 SCTP_INC_STATS(SCTP_MIB_ABORTEDS);
2485 sctp_add_cmd_sf(commands, SCTP_CMD_TIMER_STOP,
2486 SCTP_TO(SCTP_EVENT_TIMEOUT_T1_INIT));
8de8c873 2487 sctp_add_cmd_sf(commands, SCTP_CMD_SET_SK_ERR, SCTP_ERROR(sk_err));
1da177e4
LT
2488 /* CMD_INIT_FAILED will DELETE_TCB. */
2489 sctp_add_cmd_sf(commands, SCTP_CMD_INIT_FAILED,
dc251b2b 2490 SCTP_PERR(error));
3f7a87d2 2491 return SCTP_DISPOSITION_ABORT;
1da177e4
LT
2492}
2493
2494/*
2495 * sctp_sf_do_9_2_shut
2496 *
2497 * Section: 9.2
2498 * Upon the reception of the SHUTDOWN, the peer endpoint shall
2499 * - enter the SHUTDOWN-RECEIVED state,
2500 *
2501 * - stop accepting new data from its SCTP user
2502 *
2503 * - verify, by checking the Cumulative TSN Ack field of the chunk,
2504 * that all its outstanding DATA chunks have been received by the
2505 * SHUTDOWN sender.
2506 *
2507 * Once an endpoint as reached the SHUTDOWN-RECEIVED state it MUST NOT
2508 * send a SHUTDOWN in response to a ULP request. And should discard
2509 * subsequent SHUTDOWN chunks.
2510 *
2511 * If there are still outstanding DATA chunks left, the SHUTDOWN
2512 * receiver shall continue to follow normal data transmission
2513 * procedures defined in Section 6 until all outstanding DATA chunks
2514 * are acknowledged; however, the SHUTDOWN receiver MUST NOT accept
2515 * new data from its SCTP user.
2516 *
2517 * Verification Tag: 8.5 Verification Tag [Normal verification]
2518 *
2519 * Inputs
2520 * (endpoint, asoc, chunk)
2521 *
2522 * Outputs
2523 * (asoc, reply_msg, msg_up, timers, counters)
2524 *
2525 * The return value is the disposition of the chunk.
2526 */
2527sctp_disposition_t sctp_sf_do_9_2_shutdown(const struct sctp_endpoint *ep,
2528 const struct sctp_association *asoc,
2529 const sctp_subtype_t type,
2530 void *arg,
2531 sctp_cmd_seq_t *commands)
2532{
2533 struct sctp_chunk *chunk = arg;
2534 sctp_shutdownhdr_t *sdh;
2535 sctp_disposition_t disposition;
2536 struct sctp_ulpevent *ev;
2537
2538 if (!sctp_vtag_verify(chunk, asoc))
2539 return sctp_sf_pdiscard(ep, asoc, type, arg, commands);
2540
2541 /* Make sure that the SHUTDOWN chunk has a valid length. */
2542 if (!sctp_chunk_length_valid(chunk,
2543 sizeof(struct sctp_shutdown_chunk_t)))
2544 return sctp_sf_violation_chunklen(ep, asoc, type, arg,
2545 commands);
2546
2547 /* Convert the elaborate header. */
2548 sdh = (sctp_shutdownhdr_t *)chunk->skb->data;
2549 skb_pull(chunk->skb, sizeof(sctp_shutdownhdr_t));
2550 chunk->subh.shutdown_hdr = sdh;
2551
eb0e0076
SS
2552 /* API 5.3.1.5 SCTP_SHUTDOWN_EVENT
2553 * When a peer sends a SHUTDOWN, SCTP delivers this notification to
2554 * inform the application that it should cease sending data.
2555 */
2556 ev = sctp_ulpevent_make_shutdown_event(asoc, 0, GFP_ATOMIC);
2557 if (!ev) {
2558 disposition = SCTP_DISPOSITION_NOMEM;
d808ad9a 2559 goto out;
eb0e0076
SS
2560 }
2561 sctp_add_cmd_sf(commands, SCTP_CMD_EVENT_ULP, SCTP_ULPEVENT(ev));
2562
1da177e4
LT
2563 /* Upon the reception of the SHUTDOWN, the peer endpoint shall
2564 * - enter the SHUTDOWN-RECEIVED state,
2565 * - stop accepting new data from its SCTP user
2566 *
2567 * [This is implicit in the new state.]
2568 */
2569 sctp_add_cmd_sf(commands, SCTP_CMD_NEW_STATE,
2570 SCTP_STATE(SCTP_STATE_SHUTDOWN_RECEIVED));
2571 disposition = SCTP_DISPOSITION_CONSUME;
2572
2573 if (sctp_outq_is_empty(&asoc->outqueue)) {
2574 disposition = sctp_sf_do_9_2_shutdown_ack(ep, asoc, type,
2575 arg, commands);
2576 }
2577
2578 if (SCTP_DISPOSITION_NOMEM == disposition)
2579 goto out;
2580
2581 /* - verify, by checking the Cumulative TSN Ack field of the
2582 * chunk, that all its outstanding DATA chunks have been
2583 * received by the SHUTDOWN sender.
2584 */
2585 sctp_add_cmd_sf(commands, SCTP_CMD_PROCESS_CTSN,
2178eda8 2586 SCTP_BE32(chunk->subh.shutdown_hdr->cum_tsn_ack));
1da177e4 2587
1da177e4
LT
2588out:
2589 return disposition;
2590}
2591
2592/* RFC 2960 9.2
2593 * If an endpoint is in SHUTDOWN-ACK-SENT state and receives an INIT chunk
2594 * (e.g., if the SHUTDOWN COMPLETE was lost) with source and destination
2595 * transport addresses (either in the IP addresses or in the INIT chunk)
2596 * that belong to this association, it should discard the INIT chunk and
2597 * retransmit the SHUTDOWN ACK chunk.
2598 */
2599sctp_disposition_t sctp_sf_do_9_2_reshutack(const struct sctp_endpoint *ep,
2600 const struct sctp_association *asoc,
2601 const sctp_subtype_t type,
2602 void *arg,
2603 sctp_cmd_seq_t *commands)
2604{
2605 struct sctp_chunk *chunk = (struct sctp_chunk *) arg;
2606 struct sctp_chunk *reply;
2607
ece25dfa
VY
2608 /* Make sure that the chunk has a valid length */
2609 if (!sctp_chunk_length_valid(chunk, sizeof(sctp_chunkhdr_t)))
2610 return sctp_sf_violation_chunklen(ep, asoc, type, arg,
2611 commands);
2612
1da177e4
LT
2613 /* Since we are not going to really process this INIT, there
2614 * is no point in verifying chunk boundries. Just generate
2615 * the SHUTDOWN ACK.
2616 */
2617 reply = sctp_make_shutdown_ack(asoc, chunk);
2618 if (NULL == reply)
2619 goto nomem;
2620
2621 /* Set the transport for the SHUTDOWN ACK chunk and the timeout for
2622 * the T2-SHUTDOWN timer.
2623 */
2624 sctp_add_cmd_sf(commands, SCTP_CMD_SETUP_T2, SCTP_CHUNK(reply));
2625
2626 /* and restart the T2-shutdown timer. */
2627 sctp_add_cmd_sf(commands, SCTP_CMD_TIMER_RESTART,
2628 SCTP_TO(SCTP_EVENT_TIMEOUT_T2_SHUTDOWN));
2629
2630 sctp_add_cmd_sf(commands, SCTP_CMD_REPLY, SCTP_CHUNK(reply));
2631
2632 return SCTP_DISPOSITION_CONSUME;
2633nomem:
2634 return SCTP_DISPOSITION_NOMEM;
2635}
2636
2637/*
2638 * sctp_sf_do_ecn_cwr
2639 *
2640 * Section: Appendix A: Explicit Congestion Notification
2641 *
2642 * CWR:
2643 *
2644 * RFC 2481 details a specific bit for a sender to send in the header of
2645 * its next outbound TCP segment to indicate to its peer that it has
2646 * reduced its congestion window. This is termed the CWR bit. For
2647 * SCTP the same indication is made by including the CWR chunk.
2648 * This chunk contains one data element, i.e. the TSN number that
2649 * was sent in the ECNE chunk. This element represents the lowest
2650 * TSN number in the datagram that was originally marked with the
2651 * CE bit.
2652 *
2653 * Verification Tag: 8.5 Verification Tag [Normal verification]
2654 * Inputs
2655 * (endpoint, asoc, chunk)
2656 *
2657 * Outputs
2658 * (asoc, reply_msg, msg_up, timers, counters)
2659 *
2660 * The return value is the disposition of the chunk.
2661 */
2662sctp_disposition_t sctp_sf_do_ecn_cwr(const struct sctp_endpoint *ep,
2663 const struct sctp_association *asoc,
2664 const sctp_subtype_t type,
2665 void *arg,
2666 sctp_cmd_seq_t *commands)
2667{
2668 sctp_cwrhdr_t *cwr;
2669 struct sctp_chunk *chunk = arg;
34bcca28 2670 u32 lowest_tsn;
1da177e4
LT
2671
2672 if (!sctp_vtag_verify(chunk, asoc))
2673 return sctp_sf_pdiscard(ep, asoc, type, arg, commands);
2674
2675 if (!sctp_chunk_length_valid(chunk, sizeof(sctp_ecne_chunk_t)))
2676 return sctp_sf_violation_chunklen(ep, asoc, type, arg,
2677 commands);
d808ad9a 2678
1da177e4
LT
2679 cwr = (sctp_cwrhdr_t *) chunk->skb->data;
2680 skb_pull(chunk->skb, sizeof(sctp_cwrhdr_t));
2681
34bcca28 2682 lowest_tsn = ntohl(cwr->lowest_tsn);
1da177e4
LT
2683
2684 /* Does this CWR ack the last sent congestion notification? */
34bcca28 2685 if (TSN_lte(asoc->last_ecne_tsn, lowest_tsn)) {
1da177e4
LT
2686 /* Stop sending ECNE. */
2687 sctp_add_cmd_sf(commands,
2688 SCTP_CMD_ECN_CWR,
34bcca28 2689 SCTP_U32(lowest_tsn));
1da177e4
LT
2690 }
2691 return SCTP_DISPOSITION_CONSUME;
2692}
2693
2694/*
2695 * sctp_sf_do_ecne
2696 *
2697 * Section: Appendix A: Explicit Congestion Notification
2698 *
2699 * ECN-Echo
2700 *
2701 * RFC 2481 details a specific bit for a receiver to send back in its
2702 * TCP acknowledgements to notify the sender of the Congestion
2703 * Experienced (CE) bit having arrived from the network. For SCTP this
2704 * same indication is made by including the ECNE chunk. This chunk
2705 * contains one data element, i.e. the lowest TSN associated with the IP
2706 * datagram marked with the CE bit.....
2707 *
2708 * Verification Tag: 8.5 Verification Tag [Normal verification]
2709 * Inputs
2710 * (endpoint, asoc, chunk)
2711 *
2712 * Outputs
2713 * (asoc, reply_msg, msg_up, timers, counters)
2714 *
2715 * The return value is the disposition of the chunk.
2716 */
2717sctp_disposition_t sctp_sf_do_ecne(const struct sctp_endpoint *ep,
2718 const struct sctp_association *asoc,
2719 const sctp_subtype_t type,
2720 void *arg,
2721 sctp_cmd_seq_t *commands)
2722{
2723 sctp_ecnehdr_t *ecne;
2724 struct sctp_chunk *chunk = arg;
2725
2726 if (!sctp_vtag_verify(chunk, asoc))
2727 return sctp_sf_pdiscard(ep, asoc, type, arg, commands);
2728
2729 if (!sctp_chunk_length_valid(chunk, sizeof(sctp_ecne_chunk_t)))
2730 return sctp_sf_violation_chunklen(ep, asoc, type, arg,
2731 commands);
2732
2733 ecne = (sctp_ecnehdr_t *) chunk->skb->data;
2734 skb_pull(chunk->skb, sizeof(sctp_ecnehdr_t));
2735
2736 /* If this is a newer ECNE than the last CWR packet we sent out */
2737 sctp_add_cmd_sf(commands, SCTP_CMD_ECN_ECNE,
2738 SCTP_U32(ntohl(ecne->lowest_tsn)));
2739
2740 return SCTP_DISPOSITION_CONSUME;
2741}
2742
2743/*
2744 * Section: 6.2 Acknowledgement on Reception of DATA Chunks
2745 *
2746 * The SCTP endpoint MUST always acknowledge the reception of each valid
2747 * DATA chunk.
2748 *
2749 * The guidelines on delayed acknowledgement algorithm specified in
2750 * Section 4.2 of [RFC2581] SHOULD be followed. Specifically, an
2751 * acknowledgement SHOULD be generated for at least every second packet
2752 * (not every second DATA chunk) received, and SHOULD be generated within
2753 * 200 ms of the arrival of any unacknowledged DATA chunk. In some
2754 * situations it may be beneficial for an SCTP transmitter to be more
2755 * conservative than the algorithms detailed in this document allow.
2756 * However, an SCTP transmitter MUST NOT be more aggressive than the
2757 * following algorithms allow.
2758 *
2759 * A SCTP receiver MUST NOT generate more than one SACK for every
2760 * incoming packet, other than to update the offered window as the
2761 * receiving application consumes new data.
2762 *
2763 * Verification Tag: 8.5 Verification Tag [Normal verification]
2764 *
2765 * Inputs
2766 * (endpoint, asoc, chunk)
2767 *
2768 * Outputs
2769 * (asoc, reply_msg, msg_up, timers, counters)
2770 *
2771 * The return value is the disposition of the chunk.
2772 */
2773sctp_disposition_t sctp_sf_eat_data_6_2(const struct sctp_endpoint *ep,
2774 const struct sctp_association *asoc,
2775 const sctp_subtype_t type,
2776 void *arg,
2777 sctp_cmd_seq_t *commands)
2778{
2779 struct sctp_chunk *chunk = arg;
2780 int error;
2781
2782 if (!sctp_vtag_verify(chunk, asoc)) {
2783 sctp_add_cmd_sf(commands, SCTP_CMD_REPORT_BAD_TAG,
2784 SCTP_NULL());
2785 return sctp_sf_pdiscard(ep, asoc, type, arg, commands);
d808ad9a 2786 }
1da177e4
LT
2787
2788 if (!sctp_chunk_length_valid(chunk, sizeof(sctp_data_chunk_t)))
2789 return sctp_sf_violation_chunklen(ep, asoc, type, arg,
2790 commands);
2791
2792 error = sctp_eat_data(asoc, chunk, commands );
2793 switch (error) {
2794 case SCTP_IERROR_NO_ERROR:
2795 break;
2796 case SCTP_IERROR_HIGH_TSN:
2797 case SCTP_IERROR_BAD_STREAM:
ac0b0462 2798 SCTP_INC_STATS(SCTP_MIB_IN_DATA_CHUNK_DISCARDS);
1da177e4
LT
2799 goto discard_noforce;
2800 case SCTP_IERROR_DUP_TSN:
2801 case SCTP_IERROR_IGNORE_TSN:
ac0b0462 2802 SCTP_INC_STATS(SCTP_MIB_IN_DATA_CHUNK_DISCARDS);
1da177e4
LT
2803 goto discard_force;
2804 case SCTP_IERROR_NO_DATA:
2805 goto consume;
2806 default:
2807 BUG();
2808 }
2809
2810 if (asoc->autoclose) {
2811 sctp_add_cmd_sf(commands, SCTP_CMD_TIMER_RESTART,
2812 SCTP_TO(SCTP_EVENT_TIMEOUT_AUTOCLOSE));
2813 }
2814
2815 /* If this is the last chunk in a packet, we need to count it
2816 * toward sack generation. Note that we need to SACK every
2817 * OTHER packet containing data chunks, EVEN IF WE DISCARD
2818 * THEM. We elect to NOT generate SACK's if the chunk fails
2819 * the verification tag test.
2820 *
2821 * RFC 2960 6.2 Acknowledgement on Reception of DATA Chunks
2822 *
2823 * The SCTP endpoint MUST always acknowledge the reception of
2824 * each valid DATA chunk.
2825 *
2826 * The guidelines on delayed acknowledgement algorithm
2827 * specified in Section 4.2 of [RFC2581] SHOULD be followed.
2828 * Specifically, an acknowledgement SHOULD be generated for at
2829 * least every second packet (not every second DATA chunk)
2830 * received, and SHOULD be generated within 200 ms of the
2831 * arrival of any unacknowledged DATA chunk. In some
2832 * situations it may be beneficial for an SCTP transmitter to
2833 * be more conservative than the algorithms detailed in this
2834 * document allow. However, an SCTP transmitter MUST NOT be
2835 * more aggressive than the following algorithms allow.
2836 */
52ccb8e9 2837 if (chunk->end_of_packet)
1da177e4
LT
2838 sctp_add_cmd_sf(commands, SCTP_CMD_GEN_SACK, SCTP_NOFORCE());
2839
1da177e4
LT
2840 return SCTP_DISPOSITION_CONSUME;
2841
2842discard_force:
2843 /* RFC 2960 6.2 Acknowledgement on Reception of DATA Chunks
2844 *
2845 * When a packet arrives with duplicate DATA chunk(s) and with
2846 * no new DATA chunk(s), the endpoint MUST immediately send a
2847 * SACK with no delay. If a packet arrives with duplicate
2848 * DATA chunk(s) bundled with new DATA chunks, the endpoint
2849 * MAY immediately send a SACK. Normally receipt of duplicate
2850 * DATA chunks will occur when the original SACK chunk was lost
2851 * and the peer's RTO has expired. The duplicate TSN number(s)
2852 * SHOULD be reported in the SACK as duplicate.
2853 */
2854 /* In our case, we split the MAY SACK advice up whether or not
2855 * the last chunk is a duplicate.'
2856 */
2857 if (chunk->end_of_packet)
2858 sctp_add_cmd_sf(commands, SCTP_CMD_GEN_SACK, SCTP_FORCE());
2859 return SCTP_DISPOSITION_DISCARD;
2860
2861discard_noforce:
52ccb8e9 2862 if (chunk->end_of_packet)
1da177e4
LT
2863 sctp_add_cmd_sf(commands, SCTP_CMD_GEN_SACK, SCTP_NOFORCE());
2864
1da177e4
LT
2865 return SCTP_DISPOSITION_DISCARD;
2866consume:
2867 return SCTP_DISPOSITION_CONSUME;
d808ad9a 2868
1da177e4
LT
2869}
2870
2871/*
2872 * sctp_sf_eat_data_fast_4_4
2873 *
2874 * Section: 4 (4)
2875 * (4) In SHUTDOWN-SENT state the endpoint MUST acknowledge any received
2876 * DATA chunks without delay.
2877 *
2878 * Verification Tag: 8.5 Verification Tag [Normal verification]
2879 * Inputs
2880 * (endpoint, asoc, chunk)
2881 *
2882 * Outputs
2883 * (asoc, reply_msg, msg_up, timers, counters)
2884 *
2885 * The return value is the disposition of the chunk.
2886 */
2887sctp_disposition_t sctp_sf_eat_data_fast_4_4(const struct sctp_endpoint *ep,
2888 const struct sctp_association *asoc,
2889 const sctp_subtype_t type,
2890 void *arg,
2891 sctp_cmd_seq_t *commands)
2892{
2893 struct sctp_chunk *chunk = arg;
2894 int error;
2895
2896 if (!sctp_vtag_verify(chunk, asoc)) {
2897 sctp_add_cmd_sf(commands, SCTP_CMD_REPORT_BAD_TAG,
2898 SCTP_NULL());
2899 return sctp_sf_pdiscard(ep, asoc, type, arg, commands);
2900 }
2901
2902 if (!sctp_chunk_length_valid(chunk, sizeof(sctp_data_chunk_t)))
2903 return sctp_sf_violation_chunklen(ep, asoc, type, arg,
2904 commands);
2905
2906 error = sctp_eat_data(asoc, chunk, commands );
2907 switch (error) {
2908 case SCTP_IERROR_NO_ERROR:
2909 case SCTP_IERROR_HIGH_TSN:
2910 case SCTP_IERROR_DUP_TSN:
2911 case SCTP_IERROR_IGNORE_TSN:
2912 case SCTP_IERROR_BAD_STREAM:
2913 break;
2914 case SCTP_IERROR_NO_DATA:
2915 goto consume;
2916 default:
2917 BUG();
2918 }
2919
2920 /* Go a head and force a SACK, since we are shutting down. */
2921
2922 /* Implementor's Guide.
2923 *
2924 * While in SHUTDOWN-SENT state, the SHUTDOWN sender MUST immediately
2925 * respond to each received packet containing one or more DATA chunk(s)
2926 * with a SACK, a SHUTDOWN chunk, and restart the T2-shutdown timer
2927 */
2928 if (chunk->end_of_packet) {
2929 /* We must delay the chunk creation since the cumulative
2930 * TSN has not been updated yet.
2931 */
2932 sctp_add_cmd_sf(commands, SCTP_CMD_GEN_SHUTDOWN, SCTP_NULL());
2933 sctp_add_cmd_sf(commands, SCTP_CMD_GEN_SACK, SCTP_FORCE());
2934 sctp_add_cmd_sf(commands, SCTP_CMD_TIMER_RESTART,
2935 SCTP_TO(SCTP_EVENT_TIMEOUT_T2_SHUTDOWN));
2936 }
2937
2938consume:
2939 return SCTP_DISPOSITION_CONSUME;
2940}
2941
2942/*
2943 * Section: 6.2 Processing a Received SACK
2944 * D) Any time a SACK arrives, the endpoint performs the following:
2945 *
2946 * i) If Cumulative TSN Ack is less than the Cumulative TSN Ack Point,
2947 * then drop the SACK. Since Cumulative TSN Ack is monotonically
2948 * increasing, a SACK whose Cumulative TSN Ack is less than the
2949 * Cumulative TSN Ack Point indicates an out-of-order SACK.
2950 *
2951 * ii) Set rwnd equal to the newly received a_rwnd minus the number
2952 * of bytes still outstanding after processing the Cumulative TSN Ack
2953 * and the Gap Ack Blocks.
2954 *
2955 * iii) If the SACK is missing a TSN that was previously
2956 * acknowledged via a Gap Ack Block (e.g., the data receiver
2957 * reneged on the data), then mark the corresponding DATA chunk
2958 * as available for retransmit: Mark it as missing for fast
2959 * retransmit as described in Section 7.2.4 and if no retransmit
2960 * timer is running for the destination address to which the DATA
2961 * chunk was originally transmitted, then T3-rtx is started for
2962 * that destination address.
2963 *
2964 * Verification Tag: 8.5 Verification Tag [Normal verification]
2965 *
2966 * Inputs
2967 * (endpoint, asoc, chunk)
2968 *
2969 * Outputs
2970 * (asoc, reply_msg, msg_up, timers, counters)
2971 *
2972 * The return value is the disposition of the chunk.
2973 */
2974sctp_disposition_t sctp_sf_eat_sack_6_2(const struct sctp_endpoint *ep,
2975 const struct sctp_association *asoc,
2976 const sctp_subtype_t type,
2977 void *arg,
2978 sctp_cmd_seq_t *commands)
2979{
2980 struct sctp_chunk *chunk = arg;
2981 sctp_sackhdr_t *sackh;
2982 __u32 ctsn;
2983
2984 if (!sctp_vtag_verify(chunk, asoc))
2985 return sctp_sf_pdiscard(ep, asoc, type, arg, commands);
2986
2987 /* Make sure that the SACK chunk has a valid length. */
2988 if (!sctp_chunk_length_valid(chunk, sizeof(sctp_sack_chunk_t)))
2989 return sctp_sf_violation_chunklen(ep, asoc, type, arg,
2990 commands);
2991
2992 /* Pull the SACK chunk from the data buffer */
2993 sackh = sctp_sm_pull_sack(chunk);
2994 /* Was this a bogus SACK? */
2995 if (!sackh)
2996 return sctp_sf_pdiscard(ep, asoc, type, arg, commands);
2997 chunk->subh.sack_hdr = sackh;
2998 ctsn = ntohl(sackh->cum_tsn_ack);
2999
3000 /* i) If Cumulative TSN Ack is less than the Cumulative TSN
3001 * Ack Point, then drop the SACK. Since Cumulative TSN
3002 * Ack is monotonically increasing, a SACK whose
3003 * Cumulative TSN Ack is less than the Cumulative TSN Ack
3004 * Point indicates an out-of-order SACK.
3005 */
3006 if (TSN_lt(ctsn, asoc->ctsn_ack_point)) {
3007 SCTP_DEBUG_PRINTK("ctsn %x\n", ctsn);
3008 SCTP_DEBUG_PRINTK("ctsn_ack_point %x\n", asoc->ctsn_ack_point);
3009 return SCTP_DISPOSITION_DISCARD;
3010 }
3011
aecedeab
WY
3012 /* If Cumulative TSN Ack beyond the max tsn currently
3013 * send, terminating the association and respond to the
3014 * sender with an ABORT.
3015 */
3016 if (!TSN_lt(ctsn, asoc->next_tsn))
3017 return sctp_sf_violation_ctsn(ep, asoc, type, arg, commands);
3018
1da177e4
LT
3019 /* Return this SACK for further processing. */
3020 sctp_add_cmd_sf(commands, SCTP_CMD_PROCESS_SACK, SCTP_SACKH(sackh));
3021
3022 /* Note: We do the rest of the work on the PROCESS_SACK
3023 * sideeffect.
3024 */
3025 return SCTP_DISPOSITION_CONSUME;
3026}
3027
3028/*
3029 * Generate an ABORT in response to a packet.
3030 *
047a2428 3031 * Section: 8.4 Handle "Out of the blue" Packets, sctpimpguide 2.41
1da177e4 3032 *
047a2428
JF
3033 * 8) The receiver should respond to the sender of the OOTB packet with
3034 * an ABORT. When sending the ABORT, the receiver of the OOTB packet
3035 * MUST fill in the Verification Tag field of the outbound packet
3036 * with the value found in the Verification Tag field of the OOTB
3037 * packet and set the T-bit in the Chunk Flags to indicate that the
3038 * Verification Tag is reflected. After sending this ABORT, the
3039 * receiver of the OOTB packet shall discard the OOTB packet and take
3040 * no further action.
1da177e4
LT
3041 *
3042 * Verification Tag:
3043 *
3044 * The return value is the disposition of the chunk.
3045*/
ece25dfa 3046static sctp_disposition_t sctp_sf_tabort_8_4_8(const struct sctp_endpoint *ep,
1da177e4
LT
3047 const struct sctp_association *asoc,
3048 const sctp_subtype_t type,
3049 void *arg,
3050 sctp_cmd_seq_t *commands)
3051{
3052 struct sctp_packet *packet = NULL;
3053 struct sctp_chunk *chunk = arg;
3054 struct sctp_chunk *abort;
3055
3056 packet = sctp_ootb_pkt_new(asoc, chunk);
3057
3058 if (packet) {
3059 /* Make an ABORT. The T bit will be set if the asoc
3060 * is NULL.
3061 */
d808ad9a 3062 abort = sctp_make_abort(asoc, chunk, 0);
1da177e4
LT
3063 if (!abort) {
3064 sctp_ootb_pkt_free(packet);
3065 return SCTP_DISPOSITION_NOMEM;
3066 }
3067
047a2428
JF
3068 /* Reflect vtag if T-Bit is set */
3069 if (sctp_test_T_bit(abort))
3070 packet->vtag = ntohl(chunk->sctp_hdr->vtag);
3071
1da177e4
LT
3072 /* Set the skb to the belonging sock for accounting. */
3073 abort->skb->sk = ep->base.sk;
3074
3075 sctp_packet_append_chunk(packet, abort);
3076
3077 sctp_add_cmd_sf(commands, SCTP_CMD_SEND_PKT,
3078 SCTP_PACKET(packet));
3079
3080 SCTP_INC_STATS(SCTP_MIB_OUTCTRLCHUNKS);
3081
d3f25968 3082 sctp_sf_pdiscard(ep, asoc, type, arg, commands);
1da177e4
LT
3083 return SCTP_DISPOSITION_CONSUME;
3084 }
3085
3086 return SCTP_DISPOSITION_NOMEM;
3087}
3088
3089/*
3090 * Received an ERROR chunk from peer. Generate SCTP_REMOTE_ERROR
3091 * event as ULP notification for each cause included in the chunk.
3092 *
3093 * API 5.3.1.3 - SCTP_REMOTE_ERROR
3094 *
3095 * The return value is the disposition of the chunk.
3096*/
3097sctp_disposition_t sctp_sf_operr_notify(const struct sctp_endpoint *ep,
3098 const struct sctp_association *asoc,
3099 const sctp_subtype_t type,
3100 void *arg,
3101 sctp_cmd_seq_t *commands)
3102{
3103 struct sctp_chunk *chunk = arg;
3104 struct sctp_ulpevent *ev;
3105
3106 if (!sctp_vtag_verify(chunk, asoc))
3107 return sctp_sf_pdiscard(ep, asoc, type, arg, commands);
3108
3109 /* Make sure that the ERROR chunk has a valid length. */
3110 if (!sctp_chunk_length_valid(chunk, sizeof(sctp_operr_chunk_t)))
3111 return sctp_sf_violation_chunklen(ep, asoc, type, arg,
3112 commands);
3113
3114 while (chunk->chunk_end > chunk->skb->data) {
3115 ev = sctp_ulpevent_make_remote_error(asoc, chunk, 0,
3116 GFP_ATOMIC);
3117 if (!ev)
3118 goto nomem;
3119
3120 if (!sctp_add_cmd(commands, SCTP_CMD_EVENT_ULP,
3121 SCTP_ULPEVENT(ev))) {
3122 sctp_ulpevent_free(ev);
3123 goto nomem;
3124 }
3125
3126 sctp_add_cmd_sf(commands, SCTP_CMD_PROCESS_OPERR,
d808ad9a 3127 SCTP_CHUNK(chunk));
1da177e4
LT
3128 }
3129 return SCTP_DISPOSITION_CONSUME;
3130
3131nomem:
3132 return SCTP_DISPOSITION_NOMEM;
3133}
3134
3135/*
3136 * Process an inbound SHUTDOWN ACK.
3137 *
3138 * From Section 9.2:
3139 * Upon the receipt of the SHUTDOWN ACK, the SHUTDOWN sender shall
3140 * stop the T2-shutdown timer, send a SHUTDOWN COMPLETE chunk to its
3141 * peer, and remove all record of the association.
3142 *
3143 * The return value is the disposition.
3144 */
3145sctp_disposition_t sctp_sf_do_9_2_final(const struct sctp_endpoint *ep,
3146 const struct sctp_association *asoc,
3147 const sctp_subtype_t type,
3148 void *arg,
3149 sctp_cmd_seq_t *commands)
3150{
3151 struct sctp_chunk *chunk = arg;
3152 struct sctp_chunk *reply;
3153 struct sctp_ulpevent *ev;
3154
3155 if (!sctp_vtag_verify(chunk, asoc))
3156 return sctp_sf_pdiscard(ep, asoc, type, arg, commands);
3157
3158 /* Make sure that the SHUTDOWN_ACK chunk has a valid length. */
3159 if (!sctp_chunk_length_valid(chunk, sizeof(sctp_chunkhdr_t)))
3160 return sctp_sf_violation_chunklen(ep, asoc, type, arg,
3161 commands);
1da177e4
LT
3162 /* 10.2 H) SHUTDOWN COMPLETE notification
3163 *
3164 * When SCTP completes the shutdown procedures (section 9.2) this
3165 * notification is passed to the upper layer.
3166 */
3167 ev = sctp_ulpevent_make_assoc_change(asoc, 0, SCTP_SHUTDOWN_COMP,
a5a35e76 3168 0, 0, 0, NULL, GFP_ATOMIC);
1da177e4
LT
3169 if (!ev)
3170 goto nomem;
3171
df7deeb5
VY
3172 /* ...send a SHUTDOWN COMPLETE chunk to its peer, */
3173 reply = sctp_make_shutdown_complete(asoc, chunk);
3174 if (!reply)
3175 goto nomem_chunk;
3176
3177 /* Do all the commands now (after allocation), so that we
3178 * have consistent state if memory allocation failes
3179 */
1da177e4
LT
3180 sctp_add_cmd_sf(commands, SCTP_CMD_EVENT_ULP, SCTP_ULPEVENT(ev));
3181
3182 /* Upon the receipt of the SHUTDOWN ACK, the SHUTDOWN sender shall
3183 * stop the T2-shutdown timer,
3184 */
3185 sctp_add_cmd_sf(commands, SCTP_CMD_TIMER_STOP,
3186 SCTP_TO(SCTP_EVENT_TIMEOUT_T2_SHUTDOWN));
3187
3188 sctp_add_cmd_sf(commands, SCTP_CMD_TIMER_STOP,
3189 SCTP_TO(SCTP_EVENT_TIMEOUT_T5_SHUTDOWN_GUARD));
3190
1da177e4
LT
3191 sctp_add_cmd_sf(commands, SCTP_CMD_NEW_STATE,
3192 SCTP_STATE(SCTP_STATE_CLOSED));
3193 SCTP_INC_STATS(SCTP_MIB_SHUTDOWNS);
3194 SCTP_DEC_STATS(SCTP_MIB_CURRESTAB);
3195 sctp_add_cmd_sf(commands, SCTP_CMD_REPLY, SCTP_CHUNK(reply));
3196
3197 /* ...and remove all record of the association. */
3198 sctp_add_cmd_sf(commands, SCTP_CMD_DELETE_TCB, SCTP_NULL());
3199 return SCTP_DISPOSITION_DELETE_TCB;
3200
df7deeb5
VY
3201nomem_chunk:
3202 sctp_ulpevent_free(ev);
1da177e4
LT
3203nomem:
3204 return SCTP_DISPOSITION_NOMEM;
3205}
3206
3207/*
047a2428
JF
3208 * RFC 2960, 8.4 - Handle "Out of the blue" Packets, sctpimpguide 2.41.
3209 *
1da177e4
LT
3210 * 5) If the packet contains a SHUTDOWN ACK chunk, the receiver should
3211 * respond to the sender of the OOTB packet with a SHUTDOWN COMPLETE.
3212 * When sending the SHUTDOWN COMPLETE, the receiver of the OOTB
3213 * packet must fill in the Verification Tag field of the outbound
3214 * packet with the Verification Tag received in the SHUTDOWN ACK and
047a2428
JF
3215 * set the T-bit in the Chunk Flags to indicate that the Verification
3216 * Tag is reflected.
1da177e4
LT
3217 *
3218 * 8) The receiver should respond to the sender of the OOTB packet with
3219 * an ABORT. When sending the ABORT, the receiver of the OOTB packet
3220 * MUST fill in the Verification Tag field of the outbound packet
3221 * with the value found in the Verification Tag field of the OOTB
047a2428
JF
3222 * packet and set the T-bit in the Chunk Flags to indicate that the
3223 * Verification Tag is reflected. After sending this ABORT, the
3224 * receiver of the OOTB packet shall discard the OOTB packet and take
3225 * no further action.
1da177e4
LT
3226 */
3227sctp_disposition_t sctp_sf_ootb(const struct sctp_endpoint *ep,
3228 const struct sctp_association *asoc,
3229 const sctp_subtype_t type,
3230 void *arg,
3231 sctp_cmd_seq_t *commands)
3232{
3233 struct sctp_chunk *chunk = arg;
3234 struct sk_buff *skb = chunk->skb;
3235 sctp_chunkhdr_t *ch;
3236 __u8 *ch_end;
3237 int ootb_shut_ack = 0;
3238
3239 SCTP_INC_STATS(SCTP_MIB_OUTOFBLUES);
3240
3241 ch = (sctp_chunkhdr_t *) chunk->chunk_hdr;
3242 do {
ece25dfa 3243 /* Report violation if the chunk is less then minimal */
1da177e4 3244 if (ntohs(ch->length) < sizeof(sctp_chunkhdr_t))
ece25dfa
VY
3245 return sctp_sf_violation_chunklen(ep, asoc, type, arg,
3246 commands);
1da177e4 3247
ece25dfa
VY
3248 /* Now that we know we at least have a chunk header,
3249 * do things that are type appropriate.
3250 */
1da177e4
LT
3251 if (SCTP_CID_SHUTDOWN_ACK == ch->type)
3252 ootb_shut_ack = 1;
3253
3254 /* RFC 2960, Section 3.3.7
3255 * Moreover, under any circumstances, an endpoint that
3256 * receives an ABORT MUST NOT respond to that ABORT by
3257 * sending an ABORT of its own.
3258 */
3259 if (SCTP_CID_ABORT == ch->type)
3260 return sctp_sf_pdiscard(ep, asoc, type, arg, commands);
d808ad9a 3261
ece25dfa
VY
3262 /* Report violation if chunk len overflows */
3263 ch_end = ((__u8 *)ch) + WORD_ROUND(ntohs(ch->length));
3264 if (ch_end > skb_tail_pointer(skb))
3265 return sctp_sf_violation_chunklen(ep, asoc, type, arg,
3266 commands);
3267
1da177e4 3268 ch = (sctp_chunkhdr_t *) ch_end;
27a884dc 3269 } while (ch_end < skb_tail_pointer(skb));
1da177e4
LT
3270
3271 if (ootb_shut_ack)
d3f25968 3272 return sctp_sf_shut_8_4_5(ep, asoc, type, arg, commands);
1da177e4 3273 else
d3f25968 3274 return sctp_sf_tabort_8_4_8(ep, asoc, type, arg, commands);
1da177e4
LT
3275}
3276
3277/*
3278 * Handle an "Out of the blue" SHUTDOWN ACK.
3279 *
047a2428
JF
3280 * Section: 8.4 5, sctpimpguide 2.41.
3281 *
1da177e4 3282 * 5) If the packet contains a SHUTDOWN ACK chunk, the receiver should
047a2428
JF
3283 * respond to the sender of the OOTB packet with a SHUTDOWN COMPLETE.
3284 * When sending the SHUTDOWN COMPLETE, the receiver of the OOTB
3285 * packet must fill in the Verification Tag field of the outbound
3286 * packet with the Verification Tag received in the SHUTDOWN ACK and
3287 * set the T-bit in the Chunk Flags to indicate that the Verification
3288 * Tag is reflected.
1da177e4
LT
3289 *
3290 * Inputs
3291 * (endpoint, asoc, type, arg, commands)
3292 *
3293 * Outputs
3294 * (sctp_disposition_t)
3295 *
3296 * The return value is the disposition of the chunk.
3297 */
3298static sctp_disposition_t sctp_sf_shut_8_4_5(const struct sctp_endpoint *ep,
3299 const struct sctp_association *asoc,
3300 const sctp_subtype_t type,
3301 void *arg,
3302 sctp_cmd_seq_t *commands)
3303{
3304 struct sctp_packet *packet = NULL;
3305 struct sctp_chunk *chunk = arg;
3306 struct sctp_chunk *shut;
3307
3308 packet = sctp_ootb_pkt_new(asoc, chunk);
3309
3310 if (packet) {
3311 /* Make an SHUTDOWN_COMPLETE.
d808ad9a
YH
3312 * The T bit will be set if the asoc is NULL.
3313 */
1da177e4
LT
3314 shut = sctp_make_shutdown_complete(asoc, chunk);
3315 if (!shut) {
3316 sctp_ootb_pkt_free(packet);
3317 return SCTP_DISPOSITION_NOMEM;
3318 }
3319
047a2428
JF
3320 /* Reflect vtag if T-Bit is set */
3321 if (sctp_test_T_bit(shut))
3322 packet->vtag = ntohl(chunk->sctp_hdr->vtag);
3323
1da177e4
LT
3324 /* Set the skb to the belonging sock for accounting. */
3325 shut->skb->sk = ep->base.sk;
3326
3327 sctp_packet_append_chunk(packet, shut);
3328
3329 sctp_add_cmd_sf(commands, SCTP_CMD_SEND_PKT,
3330 SCTP_PACKET(packet));
3331
3332 SCTP_INC_STATS(SCTP_MIB_OUTCTRLCHUNKS);
3333
3334 /* If the chunk length is invalid, we don't want to process
3335 * the reset of the packet.
3336 */
3337 if (!sctp_chunk_length_valid(chunk, sizeof(sctp_chunkhdr_t)))
3338 return sctp_sf_pdiscard(ep, asoc, type, arg, commands);
3339
d3f25968
VY
3340 /* We need to discard the rest of the packet to prevent
3341 * potential bomming attacks from additional bundled chunks.
3342 * This is documented in SCTP Threats ID.
3343 */
3344 return sctp_sf_pdiscard(ep, asoc, type, arg, commands);
1da177e4
LT
3345 }
3346
3347 return SCTP_DISPOSITION_NOMEM;
3348}
3349
3350/*
3351 * Handle SHUTDOWN ACK in COOKIE_ECHOED or COOKIE_WAIT state.
3352 *
3353 * Verification Tag: 8.5.1 E) Rules for packet carrying a SHUTDOWN ACK
3354 * If the receiver is in COOKIE-ECHOED or COOKIE-WAIT state the
3355 * procedures in section 8.4 SHOULD be followed, in other words it
3356 * should be treated as an Out Of The Blue packet.
3357 * [This means that we do NOT check the Verification Tag on these
3358 * chunks. --piggy ]
3359 *
3360 */
3361sctp_disposition_t sctp_sf_do_8_5_1_E_sa(const struct sctp_endpoint *ep,
3362 const struct sctp_association *asoc,
3363 const sctp_subtype_t type,
3364 void *arg,
3365 sctp_cmd_seq_t *commands)
3366{
ece25dfa
VY
3367 struct sctp_chunk *chunk = arg;
3368
3369 /* Make sure that the SHUTDOWN_ACK chunk has a valid length. */
3370 if (!sctp_chunk_length_valid(chunk, sizeof(sctp_chunkhdr_t)))
3371 return sctp_sf_violation_chunklen(ep, asoc, type, arg,
3372 commands);
3373
1da177e4
LT
3374 /* Although we do have an association in this case, it corresponds
3375 * to a restarted association. So the packet is treated as an OOTB
3376 * packet and the state function that handles OOTB SHUTDOWN_ACK is
3377 * called with a NULL association.
3378 */
3379 return sctp_sf_shut_8_4_5(ep, NULL, type, arg, commands);
3380}
3381
3382/* ADDIP Section 4.2 Upon reception of an ASCONF Chunk. */
3383sctp_disposition_t sctp_sf_do_asconf(const struct sctp_endpoint *ep,
3384 const struct sctp_association *asoc,
3385 const sctp_subtype_t type, void *arg,
3386 sctp_cmd_seq_t *commands)
3387{
3388 struct sctp_chunk *chunk = arg;
3389 struct sctp_chunk *asconf_ack = NULL;
6f4c618d 3390 struct sctp_paramhdr *err_param = NULL;
1da177e4 3391 sctp_addiphdr_t *hdr;
6f4c618d 3392 union sctp_addr_param *addr_param;
1da177e4 3393 __u32 serial;
6f4c618d 3394 int length;
1da177e4
LT
3395
3396 if (!sctp_vtag_verify(chunk, asoc)) {
3397 sctp_add_cmd_sf(commands, SCTP_CMD_REPORT_BAD_TAG,
3398 SCTP_NULL());
3399 return sctp_sf_pdiscard(ep, asoc, type, arg, commands);
3400 }
3401
3402 /* Make sure that the ASCONF ADDIP chunk has a valid length. */
3403 if (!sctp_chunk_length_valid(chunk, sizeof(sctp_addip_chunk_t)))
3404 return sctp_sf_violation_chunklen(ep, asoc, type, arg,
3405 commands);
3406
3407 hdr = (sctp_addiphdr_t *)chunk->skb->data;
3408 serial = ntohl(hdr->serial);
3409
6f4c618d
WY
3410 addr_param = (union sctp_addr_param *)hdr->params;
3411 length = ntohs(addr_param->p.length);
3412 if (length < sizeof(sctp_paramhdr_t))
3413 return sctp_sf_violation_paramlen(ep, asoc, type,
3414 (void *)addr_param, commands);
3415
3416 /* Verify the ASCONF chunk before processing it. */
3417 if (!sctp_verify_asconf(asoc,
3418 (sctp_paramhdr_t *)((void *)addr_param + length),
3419 (void *)chunk->chunk_end,
3420 &err_param))
3421 return sctp_sf_violation_paramlen(ep, asoc, type,
3422 (void *)&err_param, commands);
3423
1da177e4
LT
3424 /* ADDIP 4.2 C1) Compare the value of the serial number to the value
3425 * the endpoint stored in a new association variable
d808ad9a 3426 * 'Peer-Serial-Number'.
1da177e4
LT
3427 */
3428 if (serial == asoc->peer.addip_serial + 1) {
d808ad9a 3429 /* ADDIP 4.2 C2) If the value found in the serial number is
1da177e4
LT
3430 * equal to the ('Peer-Serial-Number' + 1), the endpoint MUST
3431 * do V1-V5.
3432 */
3433 asconf_ack = sctp_process_asconf((struct sctp_association *)
3434 asoc, chunk);
3435 if (!asconf_ack)
3436 return SCTP_DISPOSITION_NOMEM;
3437 } else if (serial == asoc->peer.addip_serial) {
3438 /* ADDIP 4.2 C3) If the value found in the serial number is
3439 * equal to the value stored in the 'Peer-Serial-Number'
3440 * IMPLEMENTATION NOTE: As an optimization a receiver may wish
3441 * to save the last ASCONF-ACK for some predetermined period of
3442 * time and instead of re-processing the ASCONF (with the same
3443 * serial number) it may just re-transmit the ASCONF-ACK.
3444 */
3445 if (asoc->addip_last_asconf_ack)
3446 asconf_ack = asoc->addip_last_asconf_ack;
3447 else
3448 return SCTP_DISPOSITION_DISCARD;
3449 } else {
d808ad9a 3450 /* ADDIP 4.2 C4) Otherwise, the ASCONF Chunk is discarded since
1da177e4 3451 * it must be either a stale packet or from an attacker.
d808ad9a 3452 */
1da177e4
LT
3453 return SCTP_DISPOSITION_DISCARD;
3454 }
3455
3456 /* ADDIP 4.2 C5) In both cases C2 and C3 the ASCONF-ACK MUST be sent
3457 * back to the source address contained in the IP header of the ASCONF
3458 * being responded to.
3459 */
3460 sctp_add_cmd_sf(commands, SCTP_CMD_REPLY, SCTP_CHUNK(asconf_ack));
d808ad9a 3461
1da177e4
LT
3462 return SCTP_DISPOSITION_CONSUME;
3463}
3464
3465/*
3466 * ADDIP Section 4.3 General rules for address manipulation
3467 * When building TLV parameters for the ASCONF Chunk that will add or
3468 * delete IP addresses the D0 to D13 rules should be applied:
3469 */
3470sctp_disposition_t sctp_sf_do_asconf_ack(const struct sctp_endpoint *ep,
3471 const struct sctp_association *asoc,
d808ad9a 3472 const sctp_subtype_t type, void *arg,
1da177e4
LT
3473 sctp_cmd_seq_t *commands)
3474{
3475 struct sctp_chunk *asconf_ack = arg;
3476 struct sctp_chunk *last_asconf = asoc->addip_last_asconf;
3477 struct sctp_chunk *abort;
6f4c618d 3478 struct sctp_paramhdr *err_param = NULL;
1da177e4
LT
3479 sctp_addiphdr_t *addip_hdr;
3480 __u32 sent_serial, rcvd_serial;
3481
3482 if (!sctp_vtag_verify(asconf_ack, asoc)) {
3483 sctp_add_cmd_sf(commands, SCTP_CMD_REPORT_BAD_TAG,
3484 SCTP_NULL());
3485 return sctp_sf_pdiscard(ep, asoc, type, arg, commands);
3486 }
3487
3488 /* Make sure that the ADDIP chunk has a valid length. */
3489 if (!sctp_chunk_length_valid(asconf_ack, sizeof(sctp_addip_chunk_t)))
3490 return sctp_sf_violation_chunklen(ep, asoc, type, arg,
3491 commands);
3492
3493 addip_hdr = (sctp_addiphdr_t *)asconf_ack->skb->data;
3494 rcvd_serial = ntohl(addip_hdr->serial);
3495
6f4c618d
WY
3496 /* Verify the ASCONF-ACK chunk before processing it. */
3497 if (!sctp_verify_asconf(asoc,
3498 (sctp_paramhdr_t *)addip_hdr->params,
3499 (void *)asconf_ack->chunk_end,
3500 &err_param))
3501 return sctp_sf_violation_paramlen(ep, asoc, type,
3502 (void *)&err_param, commands);
3503
1da177e4
LT
3504 if (last_asconf) {
3505 addip_hdr = (sctp_addiphdr_t *)last_asconf->subh.addip_hdr;
3506 sent_serial = ntohl(addip_hdr->serial);
3507 } else {
3508 sent_serial = asoc->addip_serial - 1;
3509 }
3510
3511 /* D0) If an endpoint receives an ASCONF-ACK that is greater than or
3512 * equal to the next serial number to be used but no ASCONF chunk is
3513 * outstanding the endpoint MUST ABORT the association. Note that a
3514 * sequence number is greater than if it is no more than 2^^31-1
3515 * larger than the current sequence number (using serial arithmetic).
3516 */
3517 if (ADDIP_SERIAL_gte(rcvd_serial, sent_serial + 1) &&
3518 !(asoc->addip_last_asconf)) {
3519 abort = sctp_make_abort(asoc, asconf_ack,
3520 sizeof(sctp_errhdr_t));
3521 if (abort) {
00f1c2df 3522 sctp_init_cause(abort, SCTP_ERROR_ASCONF_ACK, 0);
1da177e4
LT
3523 sctp_add_cmd_sf(commands, SCTP_CMD_REPLY,
3524 SCTP_CHUNK(abort));
3525 }
3526 /* We are going to ABORT, so we might as well stop
3527 * processing the rest of the chunks in the packet.
3528 */
3529 sctp_add_cmd_sf(commands, SCTP_CMD_TIMER_STOP,
3530 SCTP_TO(SCTP_EVENT_TIMEOUT_T4_RTO));
3531 sctp_add_cmd_sf(commands, SCTP_CMD_DISCARD_PACKET,SCTP_NULL());
8de8c873 3532 sctp_add_cmd_sf(commands, SCTP_CMD_SET_SK_ERR,
d808ad9a 3533 SCTP_ERROR(ECONNABORTED));
1da177e4 3534 sctp_add_cmd_sf(commands, SCTP_CMD_ASSOC_FAILED,
5be291fe 3535 SCTP_PERR(SCTP_ERROR_ASCONF_ACK));
1da177e4
LT
3536 SCTP_INC_STATS(SCTP_MIB_ABORTEDS);
3537 SCTP_DEC_STATS(SCTP_MIB_CURRESTAB);
3538 return SCTP_DISPOSITION_ABORT;
3539 }
3540
3541 if ((rcvd_serial == sent_serial) && asoc->addip_last_asconf) {
3542 sctp_add_cmd_sf(commands, SCTP_CMD_TIMER_STOP,
3543 SCTP_TO(SCTP_EVENT_TIMEOUT_T4_RTO));
3544
3545 if (!sctp_process_asconf_ack((struct sctp_association *)asoc,
3546 asconf_ack))
3547 return SCTP_DISPOSITION_CONSUME;
3548
3549 abort = sctp_make_abort(asoc, asconf_ack,
3550 sizeof(sctp_errhdr_t));
3551 if (abort) {
00f1c2df 3552 sctp_init_cause(abort, SCTP_ERROR_RSRC_LOW, 0);
1da177e4
LT
3553 sctp_add_cmd_sf(commands, SCTP_CMD_REPLY,
3554 SCTP_CHUNK(abort));
3555 }
3556 /* We are going to ABORT, so we might as well stop
3557 * processing the rest of the chunks in the packet.
3558 */
3559 sctp_add_cmd_sf(commands, SCTP_CMD_DISCARD_PACKET,SCTP_NULL());
8de8c873 3560 sctp_add_cmd_sf(commands, SCTP_CMD_SET_SK_ERR,
d808ad9a 3561 SCTP_ERROR(ECONNABORTED));
1da177e4 3562 sctp_add_cmd_sf(commands, SCTP_CMD_ASSOC_FAILED,
5be291fe 3563 SCTP_PERR(SCTP_ERROR_ASCONF_ACK));
1da177e4
LT
3564 SCTP_INC_STATS(SCTP_MIB_ABORTEDS);
3565 SCTP_DEC_STATS(SCTP_MIB_CURRESTAB);
3566 return SCTP_DISPOSITION_ABORT;
3567 }
3568
3569 return SCTP_DISPOSITION_DISCARD;
3570}
3571
3572/*
3573 * PR-SCTP Section 3.6 Receiver Side Implementation of PR-SCTP
3574 *
3575 * When a FORWARD TSN chunk arrives, the data receiver MUST first update
3576 * its cumulative TSN point to the value carried in the FORWARD TSN
3577 * chunk, and then MUST further advance its cumulative TSN point locally
3578 * if possible.
3579 * After the above processing, the data receiver MUST stop reporting any
3580 * missing TSNs earlier than or equal to the new cumulative TSN point.
3581 *
3582 * Verification Tag: 8.5 Verification Tag [Normal verification]
3583 *
3584 * The return value is the disposition of the chunk.
3585 */
3586sctp_disposition_t sctp_sf_eat_fwd_tsn(const struct sctp_endpoint *ep,
3587 const struct sctp_association *asoc,
3588 const sctp_subtype_t type,
3589 void *arg,
3590 sctp_cmd_seq_t *commands)
3591{
3592 struct sctp_chunk *chunk = arg;
3593 struct sctp_fwdtsn_hdr *fwdtsn_hdr;
3594 __u16 len;
3595 __u32 tsn;
3596
3597 if (!sctp_vtag_verify(chunk, asoc)) {
3598 sctp_add_cmd_sf(commands, SCTP_CMD_REPORT_BAD_TAG,
3599 SCTP_NULL());
3600 return sctp_sf_pdiscard(ep, asoc, type, arg, commands);
3601 }
3602
3603 /* Make sure that the FORWARD_TSN chunk has valid length. */
3604 if (!sctp_chunk_length_valid(chunk, sizeof(struct sctp_fwdtsn_chunk)))
3605 return sctp_sf_violation_chunklen(ep, asoc, type, arg,
3606 commands);
3607
3608 fwdtsn_hdr = (struct sctp_fwdtsn_hdr *)chunk->skb->data;
3609 chunk->subh.fwdtsn_hdr = fwdtsn_hdr;
3610 len = ntohs(chunk->chunk_hdr->length);
3611 len -= sizeof(struct sctp_chunkhdr);
3612 skb_pull(chunk->skb, len);
3613
3614 tsn = ntohl(fwdtsn_hdr->new_cum_tsn);
3615 SCTP_DEBUG_PRINTK("%s: TSN 0x%x.\n", __FUNCTION__, tsn);
3616
3617 /* The TSN is too high--silently discard the chunk and count on it
3618 * getting retransmitted later.
3619 */
3620 if (sctp_tsnmap_check(&asoc->peer.tsn_map, tsn) < 0)
3621 goto discard_noforce;
3622
3623 sctp_add_cmd_sf(commands, SCTP_CMD_REPORT_FWDTSN, SCTP_U32(tsn));
3624 if (len > sizeof(struct sctp_fwdtsn_hdr))
d808ad9a 3625 sctp_add_cmd_sf(commands, SCTP_CMD_PROCESS_FWDTSN,
1da177e4 3626 SCTP_CHUNK(chunk));
d808ad9a 3627
1da177e4
LT
3628 /* Count this as receiving DATA. */
3629 if (asoc->autoclose) {
3630 sctp_add_cmd_sf(commands, SCTP_CMD_TIMER_RESTART,
3631 SCTP_TO(SCTP_EVENT_TIMEOUT_AUTOCLOSE));
3632 }
d808ad9a 3633
1da177e4 3634 /* FIXME: For now send a SACK, but DATA processing may
d808ad9a 3635 * send another.
1da177e4
LT
3636 */
3637 sctp_add_cmd_sf(commands, SCTP_CMD_GEN_SACK, SCTP_NOFORCE());
1da177e4
LT
3638
3639 return SCTP_DISPOSITION_CONSUME;
3640
3641discard_noforce:
3642 return SCTP_DISPOSITION_DISCARD;
3643}
3644
3645sctp_disposition_t sctp_sf_eat_fwd_tsn_fast(
3646 const struct sctp_endpoint *ep,
3647 const struct sctp_association *asoc,
3648 const sctp_subtype_t type,
3649 void *arg,
3650 sctp_cmd_seq_t *commands)
3651{
3652 struct sctp_chunk *chunk = arg;
3653 struct sctp_fwdtsn_hdr *fwdtsn_hdr;
3654 __u16 len;
3655 __u32 tsn;
3656
3657 if (!sctp_vtag_verify(chunk, asoc)) {
3658 sctp_add_cmd_sf(commands, SCTP_CMD_REPORT_BAD_TAG,
3659 SCTP_NULL());
3660 return sctp_sf_pdiscard(ep, asoc, type, arg, commands);
3661 }
3662
3663 /* Make sure that the FORWARD_TSN chunk has a valid length. */
3664 if (!sctp_chunk_length_valid(chunk, sizeof(struct sctp_fwdtsn_chunk)))
3665 return sctp_sf_violation_chunklen(ep, asoc, type, arg,
3666 commands);
3667
3668 fwdtsn_hdr = (struct sctp_fwdtsn_hdr *)chunk->skb->data;
3669 chunk->subh.fwdtsn_hdr = fwdtsn_hdr;
3670 len = ntohs(chunk->chunk_hdr->length);
3671 len -= sizeof(struct sctp_chunkhdr);
3672 skb_pull(chunk->skb, len);
3673
3674 tsn = ntohl(fwdtsn_hdr->new_cum_tsn);
3675 SCTP_DEBUG_PRINTK("%s: TSN 0x%x.\n", __FUNCTION__, tsn);
3676
3677 /* The TSN is too high--silently discard the chunk and count on it
3678 * getting retransmitted later.
3679 */
3680 if (sctp_tsnmap_check(&asoc->peer.tsn_map, tsn) < 0)
3681 goto gen_shutdown;
3682
3683 sctp_add_cmd_sf(commands, SCTP_CMD_REPORT_FWDTSN, SCTP_U32(tsn));
3684 if (len > sizeof(struct sctp_fwdtsn_hdr))
d808ad9a 3685 sctp_add_cmd_sf(commands, SCTP_CMD_PROCESS_FWDTSN,
1da177e4 3686 SCTP_CHUNK(chunk));
d808ad9a 3687
1da177e4
LT
3688 /* Go a head and force a SACK, since we are shutting down. */
3689gen_shutdown:
3690 /* Implementor's Guide.
3691 *
3692 * While in SHUTDOWN-SENT state, the SHUTDOWN sender MUST immediately
3693 * respond to each received packet containing one or more DATA chunk(s)
3694 * with a SACK, a SHUTDOWN chunk, and restart the T2-shutdown timer
3695 */
3696 sctp_add_cmd_sf(commands, SCTP_CMD_GEN_SHUTDOWN, SCTP_NULL());
3697 sctp_add_cmd_sf(commands, SCTP_CMD_GEN_SACK, SCTP_FORCE());
3698 sctp_add_cmd_sf(commands, SCTP_CMD_TIMER_RESTART,
3699 SCTP_TO(SCTP_EVENT_TIMEOUT_T2_SHUTDOWN));
3700
d808ad9a 3701 return SCTP_DISPOSITION_CONSUME;
1da177e4
LT
3702}
3703
bbd0d598
VY
3704/*
3705 * SCTP-AUTH Section 6.3 Receving authenticated chukns
3706 *
3707 * The receiver MUST use the HMAC algorithm indicated in the HMAC
3708 * Identifier field. If this algorithm was not specified by the
3709 * receiver in the HMAC-ALGO parameter in the INIT or INIT-ACK chunk
3710 * during association setup, the AUTH chunk and all chunks after it MUST
3711 * be discarded and an ERROR chunk SHOULD be sent with the error cause
3712 * defined in Section 4.1.
3713 *
3714 * If an endpoint with no shared key receives a Shared Key Identifier
3715 * other than 0, it MUST silently discard all authenticated chunks. If
3716 * the endpoint has at least one endpoint pair shared key for the peer,
3717 * it MUST use the key specified by the Shared Key Identifier if a
3718 * key has been configured for that Shared Key Identifier. If no
3719 * endpoint pair shared key has been configured for that Shared Key
3720 * Identifier, all authenticated chunks MUST be silently discarded.
3721 *
3722 * Verification Tag: 8.5 Verification Tag [Normal verification]
3723 *
3724 * The return value is the disposition of the chunk.
3725 */
3726static sctp_ierror_t sctp_sf_authenticate(const struct sctp_endpoint *ep,
3727 const struct sctp_association *asoc,
3728 const sctp_subtype_t type,
3729 struct sctp_chunk *chunk)
3730{
3731 struct sctp_authhdr *auth_hdr;
3732 struct sctp_hmac *hmac;
3733 unsigned int sig_len;
3734 __u16 key_id;
3735 __u8 *save_digest;
3736 __u8 *digest;
3737
3738 /* Pull in the auth header, so we can do some more verification */
3739 auth_hdr = (struct sctp_authhdr *)chunk->skb->data;
3740 chunk->subh.auth_hdr = auth_hdr;
3741 skb_pull(chunk->skb, sizeof(struct sctp_authhdr));
3742
3743 /* Make sure that we suport the HMAC algorithm from the auth
3744 * chunk.
3745 */
3746 if (!sctp_auth_asoc_verify_hmac_id(asoc, auth_hdr->hmac_id))
3747 return SCTP_IERROR_AUTH_BAD_HMAC;
3748
3749 /* Make sure that the provided shared key identifier has been
3750 * configured
3751 */
3752 key_id = ntohs(auth_hdr->shkey_id);
3753 if (key_id != asoc->active_key_id && !sctp_auth_get_shkey(asoc, key_id))
3754 return SCTP_IERROR_AUTH_BAD_KEYID;
3755
3756
3757 /* Make sure that the length of the signature matches what
3758 * we expect.
3759 */
3760 sig_len = ntohs(chunk->chunk_hdr->length) - sizeof(sctp_auth_chunk_t);
3761 hmac = sctp_auth_get_hmac(ntohs(auth_hdr->hmac_id));
3762 if (sig_len != hmac->hmac_len)
3763 return SCTP_IERROR_PROTO_VIOLATION;
3764
3765 /* Now that we've done validation checks, we can compute and
3766 * verify the hmac. The steps involved are:
3767 * 1. Save the digest from the chunk.
3768 * 2. Zero out the digest in the chunk.
3769 * 3. Compute the new digest
3770 * 4. Compare saved and new digests.
3771 */
3772 digest = auth_hdr->hmac;
3773 skb_pull(chunk->skb, sig_len);
3774
3775 save_digest = kmemdup(digest, sig_len, GFP_ATOMIC);
3776 if (!save_digest)
3777 goto nomem;
3778
3779 memset(digest, 0, sig_len);
3780
3781 sctp_auth_calculate_hmac(asoc, chunk->skb,
3782 (struct sctp_auth_chunk *)chunk->chunk_hdr,
3783 GFP_ATOMIC);
3784
3785 /* Discard the packet if the digests do not match */
3786 if (memcmp(save_digest, digest, sig_len)) {
3787 kfree(save_digest);
3788 return SCTP_IERROR_BAD_SIG;
3789 }
3790
3791 kfree(save_digest);
3792 chunk->auth = 1;
3793
3794 return SCTP_IERROR_NO_ERROR;
3795nomem:
3796 return SCTP_IERROR_NOMEM;
3797}
3798
3799sctp_disposition_t sctp_sf_eat_auth(const struct sctp_endpoint *ep,
3800 const struct sctp_association *asoc,
3801 const sctp_subtype_t type,
3802 void *arg,
3803 sctp_cmd_seq_t *commands)
3804{
3805 struct sctp_authhdr *auth_hdr;
3806 struct sctp_chunk *chunk = arg;
3807 struct sctp_chunk *err_chunk;
3808 sctp_ierror_t error;
3809
3810 if (!sctp_vtag_verify(chunk, asoc)) {
3811 sctp_add_cmd_sf(commands, SCTP_CMD_REPORT_BAD_TAG,
3812 SCTP_NULL());
3813 return sctp_sf_pdiscard(ep, asoc, type, arg, commands);
3814 }
3815
3816 /* Make sure that the AUTH chunk has valid length. */
3817 if (!sctp_chunk_length_valid(chunk, sizeof(struct sctp_auth_chunk)))
3818 return sctp_sf_violation_chunklen(ep, asoc, type, arg,
3819 commands);
3820
3821 auth_hdr = (struct sctp_authhdr *)chunk->skb->data;
3822 error = sctp_sf_authenticate(ep, asoc, type, chunk);
3823 switch (error) {
3824 case SCTP_IERROR_AUTH_BAD_HMAC:
3825 /* Generate the ERROR chunk and discard the rest
3826 * of the packet
3827 */
3828 err_chunk = sctp_make_op_error(asoc, chunk,
3829 SCTP_ERROR_UNSUP_HMAC,
3830 &auth_hdr->hmac_id,
3831 sizeof(__u16));
3832 if (err_chunk) {
3833 sctp_add_cmd_sf(commands, SCTP_CMD_REPLY,
3834 SCTP_CHUNK(err_chunk));
3835 }
3836 /* Fall Through */
3837 case SCTP_IERROR_AUTH_BAD_KEYID:
3838 case SCTP_IERROR_BAD_SIG:
3839 return sctp_sf_pdiscard(ep, asoc, type, arg, commands);
3840 break;
3841 case SCTP_IERROR_PROTO_VIOLATION:
3842 return sctp_sf_violation_chunklen(ep, asoc, type, arg,
3843 commands);
3844 break;
3845 case SCTP_IERROR_NOMEM:
3846 return SCTP_DISPOSITION_NOMEM;
3847 default:
3848 break;
3849 }
3850
3851 return SCTP_DISPOSITION_CONSUME;
3852}
3853
1da177e4
LT
3854/*
3855 * Process an unknown chunk.
3856 *
3857 * Section: 3.2. Also, 2.1 in the implementor's guide.
3858 *
3859 * Chunk Types are encoded such that the highest-order two bits specify
3860 * the action that must be taken if the processing endpoint does not
3861 * recognize the Chunk Type.
3862 *
3863 * 00 - Stop processing this SCTP packet and discard it, do not process
3864 * any further chunks within it.
3865 *
3866 * 01 - Stop processing this SCTP packet and discard it, do not process
3867 * any further chunks within it, and report the unrecognized
3868 * chunk in an 'Unrecognized Chunk Type'.
3869 *
3870 * 10 - Skip this chunk and continue processing.
3871 *
3872 * 11 - Skip this chunk and continue processing, but report in an ERROR
3873 * Chunk using the 'Unrecognized Chunk Type' cause of error.
3874 *
3875 * The return value is the disposition of the chunk.
3876 */
3877sctp_disposition_t sctp_sf_unk_chunk(const struct sctp_endpoint *ep,
3878 const struct sctp_association *asoc,
3879 const sctp_subtype_t type,
3880 void *arg,
3881 sctp_cmd_seq_t *commands)
3882{
3883 struct sctp_chunk *unk_chunk = arg;
3884 struct sctp_chunk *err_chunk;
3885 sctp_chunkhdr_t *hdr;
3886
3887 SCTP_DEBUG_PRINTK("Processing the unknown chunk id %d.\n", type.chunk);
3888
3889 if (!sctp_vtag_verify(unk_chunk, asoc))
3890 return sctp_sf_pdiscard(ep, asoc, type, arg, commands);
3891
3892 /* Make sure that the chunk has a valid length.
3893 * Since we don't know the chunk type, we use a general
3894 * chunkhdr structure to make a comparison.
3895 */
3896 if (!sctp_chunk_length_valid(unk_chunk, sizeof(sctp_chunkhdr_t)))
3897 return sctp_sf_violation_chunklen(ep, asoc, type, arg,
3898 commands);
3899
3900 switch (type.chunk & SCTP_CID_ACTION_MASK) {
3901 case SCTP_CID_ACTION_DISCARD:
3902 /* Discard the packet. */
3903 return sctp_sf_pdiscard(ep, asoc, type, arg, commands);
3904 break;
3905 case SCTP_CID_ACTION_DISCARD_ERR:
3906 /* Discard the packet. */
3907 sctp_sf_pdiscard(ep, asoc, type, arg, commands);
3908
3909 /* Generate an ERROR chunk as response. */
3910 hdr = unk_chunk->chunk_hdr;
3911 err_chunk = sctp_make_op_error(asoc, unk_chunk,
3912 SCTP_ERROR_UNKNOWN_CHUNK, hdr,
3913 WORD_ROUND(ntohs(hdr->length)));
3914 if (err_chunk) {
3915 sctp_add_cmd_sf(commands, SCTP_CMD_REPLY,
3916 SCTP_CHUNK(err_chunk));
3917 }
3918 return SCTP_DISPOSITION_CONSUME;
3919 break;
3920 case SCTP_CID_ACTION_SKIP:
3921 /* Skip the chunk. */
3922 return SCTP_DISPOSITION_DISCARD;
3923 break;
3924 case SCTP_CID_ACTION_SKIP_ERR:
3925 /* Generate an ERROR chunk as response. */
3926 hdr = unk_chunk->chunk_hdr;
3927 err_chunk = sctp_make_op_error(asoc, unk_chunk,
3928 SCTP_ERROR_UNKNOWN_CHUNK, hdr,
3929 WORD_ROUND(ntohs(hdr->length)));
3930 if (err_chunk) {
3931 sctp_add_cmd_sf(commands, SCTP_CMD_REPLY,
3932 SCTP_CHUNK(err_chunk));
3933 }
3934 /* Skip the chunk. */
3935 return SCTP_DISPOSITION_CONSUME;
3936 break;
3937 default:
3938 break;
3939 }
3940
3941 return SCTP_DISPOSITION_DISCARD;
3942}
3943
3944/*
3945 * Discard the chunk.
3946 *
3947 * Section: 0.2, 5.2.3, 5.2.5, 5.2.6, 6.0, 8.4.6, 8.5.1c, 9.2
3948 * [Too numerous to mention...]
3949 * Verification Tag: No verification needed.
3950 * Inputs
3951 * (endpoint, asoc, chunk)
3952 *
3953 * Outputs
3954 * (asoc, reply_msg, msg_up, timers, counters)
3955 *
3956 * The return value is the disposition of the chunk.
3957 */
3958sctp_disposition_t sctp_sf_discard_chunk(const struct sctp_endpoint *ep,
3959 const struct sctp_association *asoc,
3960 const sctp_subtype_t type,
3961 void *arg,
3962 sctp_cmd_seq_t *commands)
3963{
ece25dfa
VY
3964 struct sctp_chunk *chunk = arg;
3965
3966 /* Make sure that the chunk has a valid length.
3967 * Since we don't know the chunk type, we use a general
3968 * chunkhdr structure to make a comparison.
3969 */
3970 if (!sctp_chunk_length_valid(chunk, sizeof(sctp_chunkhdr_t)))
3971 return sctp_sf_violation_chunklen(ep, asoc, type, arg,
3972 commands);
3973
1da177e4
LT
3974 SCTP_DEBUG_PRINTK("Chunk %d is discarded\n", type.chunk);
3975 return SCTP_DISPOSITION_DISCARD;
3976}
3977
3978/*
3979 * Discard the whole packet.
3980 *
3981 * Section: 8.4 2)
3982 *
3983 * 2) If the OOTB packet contains an ABORT chunk, the receiver MUST
3984 * silently discard the OOTB packet and take no further action.
1da177e4
LT
3985 *
3986 * Verification Tag: No verification necessary
3987 *
3988 * Inputs
3989 * (endpoint, asoc, chunk)
3990 *
3991 * Outputs
3992 * (asoc, reply_msg, msg_up, timers, counters)
3993 *
3994 * The return value is the disposition of the chunk.
3995 */
3996sctp_disposition_t sctp_sf_pdiscard(const struct sctp_endpoint *ep,
3997 const struct sctp_association *asoc,
3998 const sctp_subtype_t type,
3999 void *arg,
4000 sctp_cmd_seq_t *commands)
4001{
ac0b0462 4002 SCTP_INC_STATS(SCTP_MIB_IN_PKT_DISCARDS);
1da177e4
LT
4003 sctp_add_cmd_sf(commands, SCTP_CMD_DISCARD_PACKET, SCTP_NULL());
4004
4005 return SCTP_DISPOSITION_CONSUME;
4006}
4007
4008
4009/*
4010 * The other end is violating protocol.
4011 *
4012 * Section: Not specified
4013 * Verification Tag: Not specified
4014 * Inputs
4015 * (endpoint, asoc, chunk)
4016 *
4017 * Outputs
4018 * (asoc, reply_msg, msg_up, timers, counters)
4019 *
4020 * We simply tag the chunk as a violation. The state machine will log
4021 * the violation and continue.
4022 */
4023sctp_disposition_t sctp_sf_violation(const struct sctp_endpoint *ep,
4024 const struct sctp_association *asoc,
4025 const sctp_subtype_t type,
4026 void *arg,
4027 sctp_cmd_seq_t *commands)
4028{
ece25dfa
VY
4029 struct sctp_chunk *chunk = arg;
4030
4031 /* Make sure that the chunk has a valid length. */
4032 if (!sctp_chunk_length_valid(chunk, sizeof(sctp_chunkhdr_t)))
4033 return sctp_sf_violation_chunklen(ep, asoc, type, arg,
4034 commands);
4035
1da177e4
LT
4036 return SCTP_DISPOSITION_VIOLATION;
4037}
4038
1da177e4 4039/*
aecedeab 4040 * Common function to handle a protocol violation.
1da177e4 4041 */
aecedeab 4042static sctp_disposition_t sctp_sf_abort_violation(
ece25dfa 4043 const struct sctp_endpoint *ep,
1da177e4 4044 const struct sctp_association *asoc,
1da177e4 4045 void *arg,
aecedeab
WY
4046 sctp_cmd_seq_t *commands,
4047 const __u8 *payload,
4048 const size_t paylen)
1da177e4 4049{
ece25dfa 4050 struct sctp_packet *packet = NULL;
1da177e4
LT
4051 struct sctp_chunk *chunk = arg;
4052 struct sctp_chunk *abort = NULL;
1da177e4
LT
4053
4054 /* Make the abort chunk. */
aecedeab 4055 abort = sctp_make_abort_violation(asoc, chunk, payload, paylen);
1da177e4
LT
4056 if (!abort)
4057 goto nomem;
4058
bbd0d598
VY
4059 /* SCTP-AUTH, Section 6.3:
4060 * It should be noted that if the receiver wants to tear
4061 * down an association in an authenticated way only, the
4062 * handling of malformed packets should not result in
4063 * tearing down the association.
4064 *
4065 * This means that if we only want to abort associations
4066 * in an authenticated way (i.e AUTH+ABORT), then we
4067 * can't destory this association just becuase the packet
4068 * was malformed.
4069 */
4070 if (sctp_auth_recv_cid(SCTP_CID_ABORT, asoc))
4071 goto discard;
4072
ece25dfa
VY
4073 if (asoc) {
4074 sctp_add_cmd_sf(commands, SCTP_CMD_REPLY, SCTP_CHUNK(abort));
4075 SCTP_INC_STATS(SCTP_MIB_OUTCTRLCHUNKS);
1da177e4 4076
ece25dfa
VY
4077 if (asoc->state <= SCTP_STATE_COOKIE_ECHOED) {
4078 sctp_add_cmd_sf(commands, SCTP_CMD_TIMER_STOP,
4079 SCTP_TO(SCTP_EVENT_TIMEOUT_T1_INIT));
4080 sctp_add_cmd_sf(commands, SCTP_CMD_SET_SK_ERR,
4081 SCTP_ERROR(ECONNREFUSED));
4082 sctp_add_cmd_sf(commands, SCTP_CMD_INIT_FAILED,
4083 SCTP_PERR(SCTP_ERROR_PROTO_VIOLATION));
4084 } else {
4085 sctp_add_cmd_sf(commands, SCTP_CMD_SET_SK_ERR,
4086 SCTP_ERROR(ECONNABORTED));
4087 sctp_add_cmd_sf(commands, SCTP_CMD_ASSOC_FAILED,
4088 SCTP_PERR(SCTP_ERROR_PROTO_VIOLATION));
4089 SCTP_DEC_STATS(SCTP_MIB_CURRESTAB);
4090 }
1da177e4 4091 } else {
ece25dfa
VY
4092 packet = sctp_ootb_pkt_new(asoc, chunk);
4093
4094 if (!packet)
4095 goto nomem_pkt;
4096
4097 if (sctp_test_T_bit(abort))
4098 packet->vtag = ntohl(chunk->sctp_hdr->vtag);
4099
4100 abort->skb->sk = ep->base.sk;
4101
4102 sctp_packet_append_chunk(packet, abort);
4103
4104 sctp_add_cmd_sf(commands, SCTP_CMD_SEND_PKT,
4105 SCTP_PACKET(packet));
4106
4107 SCTP_INC_STATS(SCTP_MIB_OUTCTRLCHUNKS);
1da177e4
LT
4108 }
4109
bbd0d598 4110discard:
ece25dfa 4111 sctp_sf_pdiscard(ep, asoc, SCTP_ST_CHUNK(0), arg, commands);
1da177e4
LT
4112
4113 SCTP_INC_STATS(SCTP_MIB_ABORTEDS);
d808ad9a 4114
1da177e4
LT
4115 return SCTP_DISPOSITION_ABORT;
4116
ece25dfa
VY
4117nomem_pkt:
4118 sctp_chunk_free(abort);
1da177e4
LT
4119nomem:
4120 return SCTP_DISPOSITION_NOMEM;
4121}
4122
aecedeab
WY
4123/*
4124 * Handle a protocol violation when the chunk length is invalid.
4125 * "Invalid" length is identified as smaller then the minimal length a
4126 * given chunk can be. For example, a SACK chunk has invalid length
4127 * if it's length is set to be smaller then the size of sctp_sack_chunk_t.
4128 *
4129 * We inform the other end by sending an ABORT with a Protocol Violation
4130 * error code.
4131 *
4132 * Section: Not specified
4133 * Verification Tag: Nothing to do
4134 * Inputs
4135 * (endpoint, asoc, chunk)
4136 *
4137 * Outputs
4138 * (reply_msg, msg_up, counters)
4139 *
4140 * Generate an ABORT chunk and terminate the association.
4141 */
4142static sctp_disposition_t sctp_sf_violation_chunklen(
4143 const struct sctp_endpoint *ep,
4144 const struct sctp_association *asoc,
4145 const sctp_subtype_t type,
4146 void *arg,
4147 sctp_cmd_seq_t *commands)
4148{
4149 char err_str[]="The following chunk had invalid length:";
4150
ece25dfa 4151 return sctp_sf_abort_violation(ep, asoc, arg, commands, err_str,
aecedeab
WY
4152 sizeof(err_str));
4153}
4154
6f4c618d
WY
4155/*
4156 * Handle a protocol violation when the parameter length is invalid.
4157 * "Invalid" length is identified as smaller then the minimal length a
4158 * given parameter can be.
4159 */
4160static sctp_disposition_t sctp_sf_violation_paramlen(
4161 const struct sctp_endpoint *ep,
4162 const struct sctp_association *asoc,
4163 const sctp_subtype_t type,
4164 void *arg,
4165 sctp_cmd_seq_t *commands) {
4166 char err_str[] = "The following parameter had invalid length:";
4167
4168 return sctp_sf_abort_violation(ep, asoc, arg, commands, err_str,
4169 sizeof(err_str));
4170}
4171
aecedeab
WY
4172/* Handle a protocol violation when the peer trying to advance the
4173 * cumulative tsn ack to a point beyond the max tsn currently sent.
4174 *
4175 * We inform the other end by sending an ABORT with a Protocol Violation
4176 * error code.
4177 */
4178static sctp_disposition_t sctp_sf_violation_ctsn(
4179 const struct sctp_endpoint *ep,
4180 const struct sctp_association *asoc,
4181 const sctp_subtype_t type,
4182 void *arg,
4183 sctp_cmd_seq_t *commands)
4184{
4185 char err_str[]="The cumulative tsn ack beyond the max tsn currently sent:";
4186
ece25dfa 4187 return sctp_sf_abort_violation(ep, asoc, arg, commands, err_str,
aecedeab
WY
4188 sizeof(err_str));
4189}
4190
ece25dfa
VY
4191/* Handle protocol violation of an invalid chunk bundling. For example,
4192 * when we have an association and we recieve bundled INIT-ACK, or
4193 * SHUDOWN-COMPLETE, our peer is clearly violationg the "MUST NOT bundle"
4194 * statement from the specs. Additinally, there might be an attacker
4195 * on the path and we may not want to continue this communication.
4196 */
4197static sctp_disposition_t sctp_sf_violation_chunk(
4198 const struct sctp_endpoint *ep,
4199 const struct sctp_association *asoc,
4200 const sctp_subtype_t type,
4201 void *arg,
4202 sctp_cmd_seq_t *commands)
4203{
4204 char err_str[]="The following chunk violates protocol:";
4205
4206 if (!asoc)
4207 return sctp_sf_violation(ep, asoc, type, arg, commands);
4208
4209 return sctp_sf_abort_violation(ep, asoc, arg, commands, err_str,
4210 sizeof(err_str));
4211}
1da177e4
LT
4212/***************************************************************************
4213 * These are the state functions for handling primitive (Section 10) events.
4214 ***************************************************************************/
4215/*
4216 * sctp_sf_do_prm_asoc
4217 *
4218 * Section: 10.1 ULP-to-SCTP
4219 * B) Associate
4220 *
4221 * Format: ASSOCIATE(local SCTP instance name, destination transport addr,
4222 * outbound stream count)
4223 * -> association id [,destination transport addr list] [,outbound stream
4224 * count]
4225 *
4226 * This primitive allows the upper layer to initiate an association to a
4227 * specific peer endpoint.
4228 *
4229 * The peer endpoint shall be specified by one of the transport addresses
4230 * which defines the endpoint (see Section 1.4). If the local SCTP
4231 * instance has not been initialized, the ASSOCIATE is considered an
4232 * error.
4233 * [This is not relevant for the kernel implementation since we do all
4234 * initialization at boot time. It we hadn't initialized we wouldn't
4235 * get anywhere near this code.]
4236 *
4237 * An association id, which is a local handle to the SCTP association,
4238 * will be returned on successful establishment of the association. If
4239 * SCTP is not able to open an SCTP association with the peer endpoint,
4240 * an error is returned.
4241 * [In the kernel implementation, the struct sctp_association needs to
4242 * be created BEFORE causing this primitive to run.]
4243 *
4244 * Other association parameters may be returned, including the
4245 * complete destination transport addresses of the peer as well as the
4246 * outbound stream count of the local endpoint. One of the transport
4247 * address from the returned destination addresses will be selected by
4248 * the local endpoint as default primary path for sending SCTP packets
4249 * to this peer. The returned "destination transport addr list" can
4250 * be used by the ULP to change the default primary path or to force
4251 * sending a packet to a specific transport address. [All of this
4252 * stuff happens when the INIT ACK arrives. This is a NON-BLOCKING
4253 * function.]
4254 *
4255 * Mandatory attributes:
4256 *
4257 * o local SCTP instance name - obtained from the INITIALIZE operation.
4258 * [This is the argument asoc.]
4259 * o destination transport addr - specified as one of the transport
4260 * addresses of the peer endpoint with which the association is to be
4261 * established.
4262 * [This is asoc->peer.active_path.]
4263 * o outbound stream count - the number of outbound streams the ULP
4264 * would like to open towards this peer endpoint.
4265 * [BUG: This is not currently implemented.]
4266 * Optional attributes:
4267 *
4268 * None.
4269 *
4270 * The return value is a disposition.
4271 */
4272sctp_disposition_t sctp_sf_do_prm_asoc(const struct sctp_endpoint *ep,
4273 const struct sctp_association *asoc,
4274 const sctp_subtype_t type,
4275 void *arg,
4276 sctp_cmd_seq_t *commands)
4277{
4278 struct sctp_chunk *repl;
4279
4280 /* The comment below says that we enter COOKIE-WAIT AFTER
4281 * sending the INIT, but that doesn't actually work in our
4282 * implementation...
4283 */
4284 sctp_add_cmd_sf(commands, SCTP_CMD_NEW_STATE,
4285 SCTP_STATE(SCTP_STATE_COOKIE_WAIT));
4286
4287 /* RFC 2960 5.1 Normal Establishment of an Association
4288 *
4289 * A) "A" first sends an INIT chunk to "Z". In the INIT, "A"
4290 * must provide its Verification Tag (Tag_A) in the Initiate
4291 * Tag field. Tag_A SHOULD be a random number in the range of
4292 * 1 to 4294967295 (see 5.3.1 for Tag value selection). ...
4293 */
4294
4295 repl = sctp_make_init(asoc, &asoc->base.bind_addr, GFP_ATOMIC, 0);
4296 if (!repl)
4297 goto nomem;
4298
4299 /* Cast away the const modifier, as we want to just
4300 * rerun it through as a sideffect.
4301 */
4302 sctp_add_cmd_sf(commands, SCTP_CMD_NEW_ASOC,
4303 SCTP_ASOC((struct sctp_association *) asoc));
4304
3f7a87d2
FF
4305 /* Choose transport for INIT. */
4306 sctp_add_cmd_sf(commands, SCTP_CMD_INIT_CHOOSE_TRANSPORT,
4307 SCTP_CHUNK(repl));
4308
1da177e4
LT
4309 /* After sending the INIT, "A" starts the T1-init timer and
4310 * enters the COOKIE-WAIT state.
4311 */
4312 sctp_add_cmd_sf(commands, SCTP_CMD_TIMER_START,
4313 SCTP_TO(SCTP_EVENT_TIMEOUT_T1_INIT));
4314 sctp_add_cmd_sf(commands, SCTP_CMD_REPLY, SCTP_CHUNK(repl));
4315 return SCTP_DISPOSITION_CONSUME;
4316
4317nomem:
4318 return SCTP_DISPOSITION_NOMEM;
4319}
4320
4321/*
4322 * Process the SEND primitive.
4323 *
4324 * Section: 10.1 ULP-to-SCTP
4325 * E) Send
4326 *
4327 * Format: SEND(association id, buffer address, byte count [,context]
4328 * [,stream id] [,life time] [,destination transport address]
4329 * [,unorder flag] [,no-bundle flag] [,payload protocol-id] )
4330 * -> result
4331 *
4332 * This is the main method to send user data via SCTP.
4333 *
4334 * Mandatory attributes:
4335 *
4336 * o association id - local handle to the SCTP association
4337 *
4338 * o buffer address - the location where the user message to be
4339 * transmitted is stored;
4340 *
4341 * o byte count - The size of the user data in number of bytes;
4342 *
4343 * Optional attributes:
4344 *
4345 * o context - an optional 32 bit integer that will be carried in the
4346 * sending failure notification to the ULP if the transportation of
4347 * this User Message fails.
4348 *
4349 * o stream id - to indicate which stream to send the data on. If not
4350 * specified, stream 0 will be used.
4351 *
4352 * o life time - specifies the life time of the user data. The user data
4353 * will not be sent by SCTP after the life time expires. This
4354 * parameter can be used to avoid efforts to transmit stale
4355 * user messages. SCTP notifies the ULP if the data cannot be
4356 * initiated to transport (i.e. sent to the destination via SCTP's
4357 * send primitive) within the life time variable. However, the
4358 * user data will be transmitted if SCTP has attempted to transmit a
4359 * chunk before the life time expired.
4360 *
4361 * o destination transport address - specified as one of the destination
4362 * transport addresses of the peer endpoint to which this packet
4363 * should be sent. Whenever possible, SCTP should use this destination
4364 * transport address for sending the packets, instead of the current
4365 * primary path.
4366 *
4367 * o unorder flag - this flag, if present, indicates that the user
4368 * would like the data delivered in an unordered fashion to the peer
4369 * (i.e., the U flag is set to 1 on all DATA chunks carrying this
4370 * message).
4371 *
4372 * o no-bundle flag - instructs SCTP not to bundle this user data with
4373 * other outbound DATA chunks. SCTP MAY still bundle even when
4374 * this flag is present, when faced with network congestion.
4375 *
4376 * o payload protocol-id - A 32 bit unsigned integer that is to be
4377 * passed to the peer indicating the type of payload protocol data
4378 * being transmitted. This value is passed as opaque data by SCTP.
4379 *
4380 * The return value is the disposition.
4381 */
4382sctp_disposition_t sctp_sf_do_prm_send(const struct sctp_endpoint *ep,
4383 const struct sctp_association *asoc,
4384 const sctp_subtype_t type,
4385 void *arg,
4386 sctp_cmd_seq_t *commands)
4387{
4388 struct sctp_chunk *chunk = arg;
4389
4390 sctp_add_cmd_sf(commands, SCTP_CMD_REPLY, SCTP_CHUNK(chunk));
4391 return SCTP_DISPOSITION_CONSUME;
4392}
4393
4394/*
4395 * Process the SHUTDOWN primitive.
4396 *
4397 * Section: 10.1:
4398 * C) Shutdown
4399 *
4400 * Format: SHUTDOWN(association id)
4401 * -> result
4402 *
4403 * Gracefully closes an association. Any locally queued user data
4404 * will be delivered to the peer. The association will be terminated only
4405 * after the peer acknowledges all the SCTP packets sent. A success code
4406 * will be returned on successful termination of the association. If
4407 * attempting to terminate the association results in a failure, an error
4408 * code shall be returned.
4409 *
4410 * Mandatory attributes:
4411 *
4412 * o association id - local handle to the SCTP association
4413 *
4414 * Optional attributes:
4415 *
4416 * None.
4417 *
4418 * The return value is the disposition.
4419 */
4420sctp_disposition_t sctp_sf_do_9_2_prm_shutdown(
4421 const struct sctp_endpoint *ep,
4422 const struct sctp_association *asoc,
4423 const sctp_subtype_t type,
4424 void *arg,
4425 sctp_cmd_seq_t *commands)
4426{
4427 int disposition;
4428
4429 /* From 9.2 Shutdown of an Association
4430 * Upon receipt of the SHUTDOWN primitive from its upper
4431 * layer, the endpoint enters SHUTDOWN-PENDING state and
4432 * remains there until all outstanding data has been
4433 * acknowledged by its peer. The endpoint accepts no new data
4434 * from its upper layer, but retransmits data to the far end
4435 * if necessary to fill gaps.
4436 */
4437 sctp_add_cmd_sf(commands, SCTP_CMD_NEW_STATE,
4438 SCTP_STATE(SCTP_STATE_SHUTDOWN_PENDING));
4439
4440 /* sctpimpguide-05 Section 2.12.2
4441 * The sender of the SHUTDOWN MAY also start an overall guard timer
4442 * 'T5-shutdown-guard' to bound the overall time for shutdown sequence.
4443 */
4444 sctp_add_cmd_sf(commands, SCTP_CMD_TIMER_START,
4445 SCTP_TO(SCTP_EVENT_TIMEOUT_T5_SHUTDOWN_GUARD));
4446
4447 disposition = SCTP_DISPOSITION_CONSUME;
4448 if (sctp_outq_is_empty(&asoc->outqueue)) {
4449 disposition = sctp_sf_do_9_2_start_shutdown(ep, asoc, type,
4450 arg, commands);
4451 }
4452 return disposition;
4453}
4454
4455/*
4456 * Process the ABORT primitive.
4457 *
4458 * Section: 10.1:
4459 * C) Abort
4460 *
4461 * Format: Abort(association id [, cause code])
4462 * -> result
4463 *
4464 * Ungracefully closes an association. Any locally queued user data
4465 * will be discarded and an ABORT chunk is sent to the peer. A success code
4466 * will be returned on successful abortion of the association. If
4467 * attempting to abort the association results in a failure, an error
4468 * code shall be returned.
4469 *
4470 * Mandatory attributes:
4471 *
4472 * o association id - local handle to the SCTP association
4473 *
4474 * Optional attributes:
4475 *
4476 * o cause code - reason of the abort to be passed to the peer
4477 *
4478 * None.
4479 *
4480 * The return value is the disposition.
4481 */
4482sctp_disposition_t sctp_sf_do_9_1_prm_abort(
4483 const struct sctp_endpoint *ep,
4484 const struct sctp_association *asoc,
4485 const sctp_subtype_t type,
4486 void *arg,
4487 sctp_cmd_seq_t *commands)
4488{
4489 /* From 9.1 Abort of an Association
4490 * Upon receipt of the ABORT primitive from its upper
4491 * layer, the endpoint enters CLOSED state and
4492 * discard all outstanding data has been
4493 * acknowledged by its peer. The endpoint accepts no new data
4494 * from its upper layer, but retransmits data to the far end
4495 * if necessary to fill gaps.
4496 */
c164a9ba 4497 struct sctp_chunk *abort = arg;
1da177e4
LT
4498 sctp_disposition_t retval;
4499
4500 retval = SCTP_DISPOSITION_CONSUME;
4501
c164a9ba 4502 sctp_add_cmd_sf(commands, SCTP_CMD_REPLY, SCTP_CHUNK(abort));
1da177e4
LT
4503
4504 /* Even if we can't send the ABORT due to low memory delete the
4505 * TCB. This is a departure from our typical NOMEM handling.
4506 */
4507
8de8c873
SS
4508 sctp_add_cmd_sf(commands, SCTP_CMD_SET_SK_ERR,
4509 SCTP_ERROR(ECONNABORTED));
1da177e4
LT
4510 /* Delete the established association. */
4511 sctp_add_cmd_sf(commands, SCTP_CMD_ASSOC_FAILED,
5be291fe 4512 SCTP_PERR(SCTP_ERROR_USER_ABORT));
1da177e4
LT
4513
4514 SCTP_INC_STATS(SCTP_MIB_ABORTEDS);
4515 SCTP_DEC_STATS(SCTP_MIB_CURRESTAB);
4516
4517 return retval;
4518}
4519
4520/* We tried an illegal operation on an association which is closed. */
4521sctp_disposition_t sctp_sf_error_closed(const struct sctp_endpoint *ep,
4522 const struct sctp_association *asoc,
4523 const sctp_subtype_t type,
4524 void *arg,
4525 sctp_cmd_seq_t *commands)
4526{
4527 sctp_add_cmd_sf(commands, SCTP_CMD_REPORT_ERROR, SCTP_ERROR(-EINVAL));
4528 return SCTP_DISPOSITION_CONSUME;
4529}
4530
4531/* We tried an illegal operation on an association which is shutting
4532 * down.
4533 */
4534sctp_disposition_t sctp_sf_error_shutdown(const struct sctp_endpoint *ep,
4535 const struct sctp_association *asoc,
4536 const sctp_subtype_t type,
4537 void *arg,
4538 sctp_cmd_seq_t *commands)
4539{
4540 sctp_add_cmd_sf(commands, SCTP_CMD_REPORT_ERROR,
4541 SCTP_ERROR(-ESHUTDOWN));
4542 return SCTP_DISPOSITION_CONSUME;
4543}
4544
4545/*
4546 * sctp_cookie_wait_prm_shutdown
4547 *
4548 * Section: 4 Note: 2
4549 * Verification Tag:
4550 * Inputs
4551 * (endpoint, asoc)
4552 *
4553 * The RFC does not explicitly address this issue, but is the route through the
4554 * state table when someone issues a shutdown while in COOKIE_WAIT state.
4555 *
4556 * Outputs
4557 * (timers)
4558 */
4559sctp_disposition_t sctp_sf_cookie_wait_prm_shutdown(
4560 const struct sctp_endpoint *ep,
4561 const struct sctp_association *asoc,
4562 const sctp_subtype_t type,
4563 void *arg,
4564 sctp_cmd_seq_t *commands)
4565{
4566 sctp_add_cmd_sf(commands, SCTP_CMD_TIMER_STOP,
4567 SCTP_TO(SCTP_EVENT_TIMEOUT_T1_INIT));
4568
4569 sctp_add_cmd_sf(commands, SCTP_CMD_NEW_STATE,
4570 SCTP_STATE(SCTP_STATE_CLOSED));
4571
4572 SCTP_INC_STATS(SCTP_MIB_SHUTDOWNS);
4573
4574 sctp_add_cmd_sf(commands, SCTP_CMD_DELETE_TCB, SCTP_NULL());
4575
4576 return SCTP_DISPOSITION_DELETE_TCB;
4577}
4578
4579/*
4580 * sctp_cookie_echoed_prm_shutdown
4581 *
4582 * Section: 4 Note: 2
4583 * Verification Tag:
4584 * Inputs
4585 * (endpoint, asoc)
4586 *
4587 * The RFC does not explcitly address this issue, but is the route through the
4588 * state table when someone issues a shutdown while in COOKIE_ECHOED state.
4589 *
4590 * Outputs
4591 * (timers)
4592 */
4593sctp_disposition_t sctp_sf_cookie_echoed_prm_shutdown(
4594 const struct sctp_endpoint *ep,
4595 const struct sctp_association *asoc,
4596 const sctp_subtype_t type,
4597 void *arg, sctp_cmd_seq_t *commands)
4598{
4599 /* There is a single T1 timer, so we should be able to use
4600 * common function with the COOKIE-WAIT state.
4601 */
4602 return sctp_sf_cookie_wait_prm_shutdown(ep, asoc, type, arg, commands);
4603}
4604
4605/*
4606 * sctp_sf_cookie_wait_prm_abort
4607 *
4608 * Section: 4 Note: 2
4609 * Verification Tag:
4610 * Inputs
4611 * (endpoint, asoc)
4612 *
4613 * The RFC does not explicitly address this issue, but is the route through the
4614 * state table when someone issues an abort while in COOKIE_WAIT state.
4615 *
4616 * Outputs
4617 * (timers)
4618 */
4619sctp_disposition_t sctp_sf_cookie_wait_prm_abort(
4620 const struct sctp_endpoint *ep,
4621 const struct sctp_association *asoc,
4622 const sctp_subtype_t type,
4623 void *arg,
4624 sctp_cmd_seq_t *commands)
4625{
c164a9ba 4626 struct sctp_chunk *abort = arg;
1da177e4
LT
4627 sctp_disposition_t retval;
4628
4629 /* Stop T1-init timer */
4630 sctp_add_cmd_sf(commands, SCTP_CMD_TIMER_STOP,
4631 SCTP_TO(SCTP_EVENT_TIMEOUT_T1_INIT));
4632 retval = SCTP_DISPOSITION_CONSUME;
4633
c164a9ba 4634 sctp_add_cmd_sf(commands, SCTP_CMD_REPLY, SCTP_CHUNK(abort));
1da177e4
LT
4635
4636 sctp_add_cmd_sf(commands, SCTP_CMD_NEW_STATE,
4637 SCTP_STATE(SCTP_STATE_CLOSED));
4638
4639 SCTP_INC_STATS(SCTP_MIB_ABORTEDS);
4640
4641 /* Even if we can't send the ABORT due to low memory delete the
4642 * TCB. This is a departure from our typical NOMEM handling.
4643 */
4644
8de8c873
SS
4645 sctp_add_cmd_sf(commands, SCTP_CMD_SET_SK_ERR,
4646 SCTP_ERROR(ECONNREFUSED));
1da177e4
LT
4647 /* Delete the established association. */
4648 sctp_add_cmd_sf(commands, SCTP_CMD_INIT_FAILED,
dc251b2b 4649 SCTP_PERR(SCTP_ERROR_USER_ABORT));
1da177e4
LT
4650
4651 return retval;
4652}
4653
4654/*
4655 * sctp_sf_cookie_echoed_prm_abort
4656 *
4657 * Section: 4 Note: 3
4658 * Verification Tag:
4659 * Inputs
4660 * (endpoint, asoc)
4661 *
4662 * The RFC does not explcitly address this issue, but is the route through the
4663 * state table when someone issues an abort while in COOKIE_ECHOED state.
4664 *
4665 * Outputs
4666 * (timers)
4667 */
4668sctp_disposition_t sctp_sf_cookie_echoed_prm_abort(
4669 const struct sctp_endpoint *ep,
4670 const struct sctp_association *asoc,
4671 const sctp_subtype_t type,
4672 void *arg,
4673 sctp_cmd_seq_t *commands)
4674{
4675 /* There is a single T1 timer, so we should be able to use
4676 * common function with the COOKIE-WAIT state.
4677 */
4678 return sctp_sf_cookie_wait_prm_abort(ep, asoc, type, arg, commands);
4679}
4680
4681/*
4682 * sctp_sf_shutdown_pending_prm_abort
4683 *
4684 * Inputs
4685 * (endpoint, asoc)
4686 *
4687 * The RFC does not explicitly address this issue, but is the route through the
4688 * state table when someone issues an abort while in SHUTDOWN-PENDING state.
4689 *
4690 * Outputs
4691 * (timers)
4692 */
4693sctp_disposition_t sctp_sf_shutdown_pending_prm_abort(
4694 const struct sctp_endpoint *ep,
4695 const struct sctp_association *asoc,
4696 const sctp_subtype_t type,
4697 void *arg,
4698 sctp_cmd_seq_t *commands)
4699{
4700 /* Stop the T5-shutdown guard timer. */
4701 sctp_add_cmd_sf(commands, SCTP_CMD_TIMER_STOP,
4702 SCTP_TO(SCTP_EVENT_TIMEOUT_T5_SHUTDOWN_GUARD));
4703
4704 return sctp_sf_do_9_1_prm_abort(ep, asoc, type, arg, commands);
4705}
4706
4707/*
4708 * sctp_sf_shutdown_sent_prm_abort
4709 *
4710 * Inputs
4711 * (endpoint, asoc)
4712 *
4713 * The RFC does not explicitly address this issue, but is the route through the
4714 * state table when someone issues an abort while in SHUTDOWN-SENT state.
4715 *
4716 * Outputs
4717 * (timers)
4718 */
4719sctp_disposition_t sctp_sf_shutdown_sent_prm_abort(
4720 const struct sctp_endpoint *ep,
4721 const struct sctp_association *asoc,
4722 const sctp_subtype_t type,
4723 void *arg,
4724 sctp_cmd_seq_t *commands)
4725{
4726 /* Stop the T2-shutdown timer. */
4727 sctp_add_cmd_sf(commands, SCTP_CMD_TIMER_STOP,
4728 SCTP_TO(SCTP_EVENT_TIMEOUT_T2_SHUTDOWN));
4729
4730 /* Stop the T5-shutdown guard timer. */
4731 sctp_add_cmd_sf(commands, SCTP_CMD_TIMER_STOP,
4732 SCTP_TO(SCTP_EVENT_TIMEOUT_T5_SHUTDOWN_GUARD));
4733
4734 return sctp_sf_do_9_1_prm_abort(ep, asoc, type, arg, commands);
4735}
4736
4737/*
4738 * sctp_sf_cookie_echoed_prm_abort
4739 *
4740 * Inputs
4741 * (endpoint, asoc)
4742 *
4743 * The RFC does not explcitly address this issue, but is the route through the
4744 * state table when someone issues an abort while in COOKIE_ECHOED state.
4745 *
4746 * Outputs
4747 * (timers)
4748 */
4749sctp_disposition_t sctp_sf_shutdown_ack_sent_prm_abort(
4750 const struct sctp_endpoint *ep,
4751 const struct sctp_association *asoc,
4752 const sctp_subtype_t type,
4753 void *arg,
4754 sctp_cmd_seq_t *commands)
4755{
4756 /* The same T2 timer, so we should be able to use
4757 * common function with the SHUTDOWN-SENT state.
4758 */
4759 return sctp_sf_shutdown_sent_prm_abort(ep, asoc, type, arg, commands);
4760}
4761
4762/*
4763 * Process the REQUESTHEARTBEAT primitive
4764 *
4765 * 10.1 ULP-to-SCTP
4766 * J) Request Heartbeat
4767 *
4768 * Format: REQUESTHEARTBEAT(association id, destination transport address)
4769 *
4770 * -> result
4771 *
4772 * Instructs the local endpoint to perform a HeartBeat on the specified
4773 * destination transport address of the given association. The returned
4774 * result should indicate whether the transmission of the HEARTBEAT
4775 * chunk to the destination address is successful.
4776 *
4777 * Mandatory attributes:
4778 *
4779 * o association id - local handle to the SCTP association
4780 *
4781 * o destination transport address - the transport address of the
4782 * association on which a heartbeat should be issued.
4783 */
4784sctp_disposition_t sctp_sf_do_prm_requestheartbeat(
4785 const struct sctp_endpoint *ep,
4786 const struct sctp_association *asoc,
4787 const sctp_subtype_t type,
4788 void *arg,
4789 sctp_cmd_seq_t *commands)
4790{
fb78525a
VY
4791 if (SCTP_DISPOSITION_NOMEM == sctp_sf_heartbeat(ep, asoc, type,
4792 (struct sctp_transport *)arg, commands))
4793 return SCTP_DISPOSITION_NOMEM;
4794
4795 /*
4796 * RFC 2960 (bis), section 8.3
4797 *
4798 * D) Request an on-demand HEARTBEAT on a specific destination
4799 * transport address of a given association.
4800 *
4801 * The endpoint should increment the respective error counter of
4802 * the destination transport address each time a HEARTBEAT is sent
4803 * to that address and not acknowledged within one RTO.
4804 *
4805 */
4806 sctp_add_cmd_sf(commands, SCTP_CMD_TRANSPORT_RESET,
4807 SCTP_TRANSPORT(arg));
4808 return SCTP_DISPOSITION_CONSUME;
1da177e4
LT
4809}
4810
4811/*
4812 * ADDIP Section 4.1 ASCONF Chunk Procedures
4813 * When an endpoint has an ASCONF signaled change to be sent to the
4814 * remote endpoint it should do A1 to A9
4815 */
4816sctp_disposition_t sctp_sf_do_prm_asconf(const struct sctp_endpoint *ep,
4817 const struct sctp_association *asoc,
4818 const sctp_subtype_t type,
4819 void *arg,
4820 sctp_cmd_seq_t *commands)
4821{
4822 struct sctp_chunk *chunk = arg;
4823
4824 sctp_add_cmd_sf(commands, SCTP_CMD_SETUP_T4, SCTP_CHUNK(chunk));
4825 sctp_add_cmd_sf(commands, SCTP_CMD_TIMER_START,
4826 SCTP_TO(SCTP_EVENT_TIMEOUT_T4_RTO));
4827 sctp_add_cmd_sf(commands, SCTP_CMD_REPLY, SCTP_CHUNK(chunk));
4828 return SCTP_DISPOSITION_CONSUME;
4829}
4830
4831/*
4832 * Ignore the primitive event
4833 *
4834 * The return value is the disposition of the primitive.
4835 */
4836sctp_disposition_t sctp_sf_ignore_primitive(
4837 const struct sctp_endpoint *ep,
4838 const struct sctp_association *asoc,
4839 const sctp_subtype_t type,
4840 void *arg,
4841 sctp_cmd_seq_t *commands)
4842{
4843 SCTP_DEBUG_PRINTK("Primitive type %d is ignored.\n", type.primitive);
4844 return SCTP_DISPOSITION_DISCARD;
4845}
4846
4847/***************************************************************************
4848 * These are the state functions for the OTHER events.
4849 ***************************************************************************/
4850
4851/*
4852 * Start the shutdown negotiation.
4853 *
4854 * From Section 9.2:
4855 * Once all its outstanding data has been acknowledged, the endpoint
4856 * shall send a SHUTDOWN chunk to its peer including in the Cumulative
4857 * TSN Ack field the last sequential TSN it has received from the peer.
4858 * It shall then start the T2-shutdown timer and enter the SHUTDOWN-SENT
4859 * state. If the timer expires, the endpoint must re-send the SHUTDOWN
4860 * with the updated last sequential TSN received from its peer.
4861 *
4862 * The return value is the disposition.
4863 */
4864sctp_disposition_t sctp_sf_do_9_2_start_shutdown(
4865 const struct sctp_endpoint *ep,
4866 const struct sctp_association *asoc,
4867 const sctp_subtype_t type,
4868 void *arg,
4869 sctp_cmd_seq_t *commands)
4870{
4871 struct sctp_chunk *reply;
4872
4873 /* Once all its outstanding data has been acknowledged, the
4874 * endpoint shall send a SHUTDOWN chunk to its peer including
4875 * in the Cumulative TSN Ack field the last sequential TSN it
4876 * has received from the peer.
4877 */
4878 reply = sctp_make_shutdown(asoc, NULL);
4879 if (!reply)
4880 goto nomem;
4881
4882 /* Set the transport for the SHUTDOWN chunk and the timeout for the
4883 * T2-shutdown timer.
4884 */
4885 sctp_add_cmd_sf(commands, SCTP_CMD_SETUP_T2, SCTP_CHUNK(reply));
4886
4887 /* It shall then start the T2-shutdown timer */
4888 sctp_add_cmd_sf(commands, SCTP_CMD_TIMER_START,
4889 SCTP_TO(SCTP_EVENT_TIMEOUT_T2_SHUTDOWN));
4890
4891 if (asoc->autoclose)
4892 sctp_add_cmd_sf(commands, SCTP_CMD_TIMER_STOP,
4893 SCTP_TO(SCTP_EVENT_TIMEOUT_AUTOCLOSE));
4894
4895 /* and enter the SHUTDOWN-SENT state. */
4896 sctp_add_cmd_sf(commands, SCTP_CMD_NEW_STATE,
4897 SCTP_STATE(SCTP_STATE_SHUTDOWN_SENT));
4898
4899 /* sctp-implguide 2.10 Issues with Heartbeating and failover
4900 *
4901 * HEARTBEAT ... is discontinued after sending either SHUTDOWN
d808ad9a 4902 * or SHUTDOWN-ACK.
1da177e4
LT
4903 */
4904 sctp_add_cmd_sf(commands, SCTP_CMD_HB_TIMERS_STOP, SCTP_NULL());
4905
4906 sctp_add_cmd_sf(commands, SCTP_CMD_REPLY, SCTP_CHUNK(reply));
4907
4908 return SCTP_DISPOSITION_CONSUME;
4909
4910nomem:
4911 return SCTP_DISPOSITION_NOMEM;
4912}
4913
4914/*
4915 * Generate a SHUTDOWN ACK now that everything is SACK'd.
4916 *
4917 * From Section 9.2:
4918 *
4919 * If it has no more outstanding DATA chunks, the SHUTDOWN receiver
4920 * shall send a SHUTDOWN ACK and start a T2-shutdown timer of its own,
4921 * entering the SHUTDOWN-ACK-SENT state. If the timer expires, the
4922 * endpoint must re-send the SHUTDOWN ACK.
4923 *
4924 * The return value is the disposition.
4925 */
4926sctp_disposition_t sctp_sf_do_9_2_shutdown_ack(
4927 const struct sctp_endpoint *ep,
4928 const struct sctp_association *asoc,
4929 const sctp_subtype_t type,
4930 void *arg,
4931 sctp_cmd_seq_t *commands)
4932{
4933 struct sctp_chunk *chunk = (struct sctp_chunk *) arg;
4934 struct sctp_chunk *reply;
4935
4936 /* There are 2 ways of getting here:
4937 * 1) called in response to a SHUTDOWN chunk
4938 * 2) called when SCTP_EVENT_NO_PENDING_TSN event is issued.
4939 *
4940 * For the case (2), the arg parameter is set to NULL. We need
4941 * to check that we have a chunk before accessing it's fields.
4942 */
4943 if (chunk) {
4944 if (!sctp_vtag_verify(chunk, asoc))
4945 return sctp_sf_pdiscard(ep, asoc, type, arg, commands);
4946
4947 /* Make sure that the SHUTDOWN chunk has a valid length. */
4948 if (!sctp_chunk_length_valid(chunk, sizeof(struct sctp_shutdown_chunk_t)))
4949 return sctp_sf_violation_chunklen(ep, asoc, type, arg,
4950 commands);
4951 }
4952
4953 /* If it has no more outstanding DATA chunks, the SHUTDOWN receiver
4954 * shall send a SHUTDOWN ACK ...
4955 */
4956 reply = sctp_make_shutdown_ack(asoc, chunk);
4957 if (!reply)
4958 goto nomem;
4959
4960 /* Set the transport for the SHUTDOWN ACK chunk and the timeout for
4961 * the T2-shutdown timer.
4962 */
4963 sctp_add_cmd_sf(commands, SCTP_CMD_SETUP_T2, SCTP_CHUNK(reply));
4964
4965 /* and start/restart a T2-shutdown timer of its own, */
4966 sctp_add_cmd_sf(commands, SCTP_CMD_TIMER_RESTART,
4967 SCTP_TO(SCTP_EVENT_TIMEOUT_T2_SHUTDOWN));
4968
4969 if (asoc->autoclose)
4970 sctp_add_cmd_sf(commands, SCTP_CMD_TIMER_STOP,
4971 SCTP_TO(SCTP_EVENT_TIMEOUT_AUTOCLOSE));
4972
4973 /* Enter the SHUTDOWN-ACK-SENT state. */
4974 sctp_add_cmd_sf(commands, SCTP_CMD_NEW_STATE,
4975 SCTP_STATE(SCTP_STATE_SHUTDOWN_ACK_SENT));
4976
4977 /* sctp-implguide 2.10 Issues with Heartbeating and failover
4978 *
4979 * HEARTBEAT ... is discontinued after sending either SHUTDOWN
d808ad9a 4980 * or SHUTDOWN-ACK.
1da177e4
LT
4981 */
4982 sctp_add_cmd_sf(commands, SCTP_CMD_HB_TIMERS_STOP, SCTP_NULL());
4983
4984 sctp_add_cmd_sf(commands, SCTP_CMD_REPLY, SCTP_CHUNK(reply));
4985
4986 return SCTP_DISPOSITION_CONSUME;
4987
4988nomem:
4989 return SCTP_DISPOSITION_NOMEM;
4990}
4991
4992/*
4993 * Ignore the event defined as other
4994 *
4995 * The return value is the disposition of the event.
4996 */
4997sctp_disposition_t sctp_sf_ignore_other(const struct sctp_endpoint *ep,
4998 const struct sctp_association *asoc,
4999 const sctp_subtype_t type,
5000 void *arg,
5001 sctp_cmd_seq_t *commands)
5002{
5003 SCTP_DEBUG_PRINTK("The event other type %d is ignored\n", type.other);
5004 return SCTP_DISPOSITION_DISCARD;
5005}
5006
5007/************************************************************
5008 * These are the state functions for handling timeout events.
5009 ************************************************************/
5010
5011/*
5012 * RTX Timeout
5013 *
5014 * Section: 6.3.3 Handle T3-rtx Expiration
5015 *
5016 * Whenever the retransmission timer T3-rtx expires for a destination
5017 * address, do the following:
5018 * [See below]
5019 *
5020 * The return value is the disposition of the chunk.
5021 */
5022sctp_disposition_t sctp_sf_do_6_3_3_rtx(const struct sctp_endpoint *ep,
5023 const struct sctp_association *asoc,
5024 const sctp_subtype_t type,
5025 void *arg,
5026 sctp_cmd_seq_t *commands)
5027{
5028 struct sctp_transport *transport = arg;
5029
ac0b0462
SS
5030 SCTP_INC_STATS(SCTP_MIB_T3_RTX_EXPIREDS);
5031
1da177e4 5032 if (asoc->overall_error_count >= asoc->max_retrans) {
8de8c873
SS
5033 sctp_add_cmd_sf(commands, SCTP_CMD_SET_SK_ERR,
5034 SCTP_ERROR(ETIMEDOUT));
1da177e4
LT
5035 /* CMD_ASSOC_FAILED calls CMD_DELETE_TCB. */
5036 sctp_add_cmd_sf(commands, SCTP_CMD_ASSOC_FAILED,
5be291fe 5037 SCTP_PERR(SCTP_ERROR_NO_ERROR));
1da177e4
LT
5038 SCTP_INC_STATS(SCTP_MIB_ABORTEDS);
5039 SCTP_DEC_STATS(SCTP_MIB_CURRESTAB);
5040 return SCTP_DISPOSITION_DELETE_TCB;
5041 }
5042
5043 /* E1) For the destination address for which the timer
5044 * expires, adjust its ssthresh with rules defined in Section
5045 * 7.2.3 and set the cwnd <- MTU.
5046 */
5047
5048 /* E2) For the destination address for which the timer
5049 * expires, set RTO <- RTO * 2 ("back off the timer"). The
5050 * maximum value discussed in rule C7 above (RTO.max) may be
5051 * used to provide an upper bound to this doubling operation.
5052 */
5053
5054 /* E3) Determine how many of the earliest (i.e., lowest TSN)
5055 * outstanding DATA chunks for the address for which the
5056 * T3-rtx has expired will fit into a single packet, subject
5057 * to the MTU constraint for the path corresponding to the
5058 * destination transport address to which the retransmission
5059 * is being sent (this may be different from the address for
5060 * which the timer expires [see Section 6.4]). Call this
5061 * value K. Bundle and retransmit those K DATA chunks in a
5062 * single packet to the destination endpoint.
5063 *
5064 * Note: Any DATA chunks that were sent to the address for
5065 * which the T3-rtx timer expired but did not fit in one MTU
5066 * (rule E3 above), should be marked for retransmission and
5067 * sent as soon as cwnd allows (normally when a SACK arrives).
5068 */
5069
1da177e4
LT
5070 /* Do some failure management (Section 8.2). */
5071 sctp_add_cmd_sf(commands, SCTP_CMD_STRIKE, SCTP_TRANSPORT(transport));
5072
1845a579
VY
5073 /* NB: Rules E4 and F1 are implicit in R1. */
5074 sctp_add_cmd_sf(commands, SCTP_CMD_RETRAN, SCTP_TRANSPORT(transport));
5075
1da177e4
LT
5076 return SCTP_DISPOSITION_CONSUME;
5077}
5078
5079/*
5080 * Generate delayed SACK on timeout
5081 *
5082 * Section: 6.2 Acknowledgement on Reception of DATA Chunks
5083 *
5084 * The guidelines on delayed acknowledgement algorithm specified in
5085 * Section 4.2 of [RFC2581] SHOULD be followed. Specifically, an
5086 * acknowledgement SHOULD be generated for at least every second packet
5087 * (not every second DATA chunk) received, and SHOULD be generated
5088 * within 200 ms of the arrival of any unacknowledged DATA chunk. In
5089 * some situations it may be beneficial for an SCTP transmitter to be
5090 * more conservative than the algorithms detailed in this document
5091 * allow. However, an SCTP transmitter MUST NOT be more aggressive than
5092 * the following algorithms allow.
5093 */
5094sctp_disposition_t sctp_sf_do_6_2_sack(const struct sctp_endpoint *ep,
5095 const struct sctp_association *asoc,
5096 const sctp_subtype_t type,
5097 void *arg,
5098 sctp_cmd_seq_t *commands)
5099{
ac0b0462 5100 SCTP_INC_STATS(SCTP_MIB_DELAY_SACK_EXPIREDS);
1da177e4
LT
5101 sctp_add_cmd_sf(commands, SCTP_CMD_GEN_SACK, SCTP_FORCE());
5102 return SCTP_DISPOSITION_CONSUME;
5103}
5104
5105/*
3f7a87d2 5106 * sctp_sf_t1_init_timer_expire
1da177e4
LT
5107 *
5108 * Section: 4 Note: 2
5109 * Verification Tag:
5110 * Inputs
5111 * (endpoint, asoc)
5112 *
5113 * RFC 2960 Section 4 Notes
5114 * 2) If the T1-init timer expires, the endpoint MUST retransmit INIT
5115 * and re-start the T1-init timer without changing state. This MUST
5116 * be repeated up to 'Max.Init.Retransmits' times. After that, the
5117 * endpoint MUST abort the initialization process and report the
5118 * error to SCTP user.
5119 *
3f7a87d2
FF
5120 * Outputs
5121 * (timers, events)
5122 *
5123 */
5124sctp_disposition_t sctp_sf_t1_init_timer_expire(const struct sctp_endpoint *ep,
5125 const struct sctp_association *asoc,
5126 const sctp_subtype_t type,
5127 void *arg,
5128 sctp_cmd_seq_t *commands)
5129{
5130 struct sctp_chunk *repl = NULL;
5131 struct sctp_bind_addr *bp;
5132 int attempts = asoc->init_err_counter + 1;
5133
5134 SCTP_DEBUG_PRINTK("Timer T1 expired (INIT).\n");
ac0b0462 5135 SCTP_INC_STATS(SCTP_MIB_T1_INIT_EXPIREDS);
3f7a87d2 5136
81845c21 5137 if (attempts <= asoc->max_init_attempts) {
3f7a87d2
FF
5138 bp = (struct sctp_bind_addr *) &asoc->base.bind_addr;
5139 repl = sctp_make_init(asoc, bp, GFP_ATOMIC, 0);
5140 if (!repl)
5141 return SCTP_DISPOSITION_NOMEM;
5142
5143 /* Choose transport for INIT. */
5144 sctp_add_cmd_sf(commands, SCTP_CMD_INIT_CHOOSE_TRANSPORT,
5145 SCTP_CHUNK(repl));
5146
5147 /* Issue a sideeffect to do the needed accounting. */
5148 sctp_add_cmd_sf(commands, SCTP_CMD_INIT_RESTART,
5149 SCTP_TO(SCTP_EVENT_TIMEOUT_T1_INIT));
5150
5151 sctp_add_cmd_sf(commands, SCTP_CMD_REPLY, SCTP_CHUNK(repl));
5152 } else {
5153 SCTP_DEBUG_PRINTK("Giving up on INIT, attempts: %d"
5154 " max_init_attempts: %d\n",
5155 attempts, asoc->max_init_attempts);
8de8c873
SS
5156 sctp_add_cmd_sf(commands, SCTP_CMD_SET_SK_ERR,
5157 SCTP_ERROR(ETIMEDOUT));
3f7a87d2 5158 sctp_add_cmd_sf(commands, SCTP_CMD_INIT_FAILED,
dc251b2b 5159 SCTP_PERR(SCTP_ERROR_NO_ERROR));
3f7a87d2
FF
5160 return SCTP_DISPOSITION_DELETE_TCB;
5161 }
5162
5163 return SCTP_DISPOSITION_CONSUME;
5164}
5165
5166/*
5167 * sctp_sf_t1_cookie_timer_expire
5168 *
5169 * Section: 4 Note: 2
5170 * Verification Tag:
5171 * Inputs
5172 * (endpoint, asoc)
5173 *
5174 * RFC 2960 Section 4 Notes
5175 * 3) If the T1-cookie timer expires, the endpoint MUST retransmit
1da177e4
LT
5176 * COOKIE ECHO and re-start the T1-cookie timer without changing
5177 * state. This MUST be repeated up to 'Max.Init.Retransmits' times.
5178 * After that, the endpoint MUST abort the initialization process and
5179 * report the error to SCTP user.
5180 *
5181 * Outputs
5182 * (timers, events)
5183 *
5184 */
3f7a87d2 5185sctp_disposition_t sctp_sf_t1_cookie_timer_expire(const struct sctp_endpoint *ep,
1da177e4
LT
5186 const struct sctp_association *asoc,
5187 const sctp_subtype_t type,
5188 void *arg,
5189 sctp_cmd_seq_t *commands)
5190{
3f7a87d2
FF
5191 struct sctp_chunk *repl = NULL;
5192 int attempts = asoc->init_err_counter + 1;
1da177e4 5193
3f7a87d2 5194 SCTP_DEBUG_PRINTK("Timer T1 expired (COOKIE-ECHO).\n");
ac0b0462 5195 SCTP_INC_STATS(SCTP_MIB_T1_COOKIE_EXPIREDS);
1da177e4 5196
81845c21 5197 if (attempts <= asoc->max_init_attempts) {
3f7a87d2 5198 repl = sctp_make_cookie_echo(asoc, NULL);
1da177e4 5199 if (!repl)
3f7a87d2 5200 return SCTP_DISPOSITION_NOMEM;
1da177e4
LT
5201
5202 /* Issue a sideeffect to do the needed accounting. */
3f7a87d2
FF
5203 sctp_add_cmd_sf(commands, SCTP_CMD_COOKIEECHO_RESTART,
5204 SCTP_TO(SCTP_EVENT_TIMEOUT_T1_COOKIE));
5205
1da177e4
LT
5206 sctp_add_cmd_sf(commands, SCTP_CMD_REPLY, SCTP_CHUNK(repl));
5207 } else {
8de8c873
SS
5208 sctp_add_cmd_sf(commands, SCTP_CMD_SET_SK_ERR,
5209 SCTP_ERROR(ETIMEDOUT));
1da177e4 5210 sctp_add_cmd_sf(commands, SCTP_CMD_INIT_FAILED,
dc251b2b 5211 SCTP_PERR(SCTP_ERROR_NO_ERROR));
1da177e4
LT
5212 return SCTP_DISPOSITION_DELETE_TCB;
5213 }
5214
5215 return SCTP_DISPOSITION_CONSUME;
1da177e4
LT
5216}
5217
5218/* RFC2960 9.2 If the timer expires, the endpoint must re-send the SHUTDOWN
5219 * with the updated last sequential TSN received from its peer.
5220 *
5221 * An endpoint should limit the number of retransmissions of the
5222 * SHUTDOWN chunk to the protocol parameter 'Association.Max.Retrans'.
5223 * If this threshold is exceeded the endpoint should destroy the TCB and
5224 * MUST report the peer endpoint unreachable to the upper layer (and
5225 * thus the association enters the CLOSED state). The reception of any
5226 * packet from its peer (i.e. as the peer sends all of its queued DATA
5227 * chunks) should clear the endpoint's retransmission count and restart
5228 * the T2-Shutdown timer, giving its peer ample opportunity to transmit
5229 * all of its queued DATA chunks that have not yet been sent.
5230 */
5231sctp_disposition_t sctp_sf_t2_timer_expire(const struct sctp_endpoint *ep,
5232 const struct sctp_association *asoc,
5233 const sctp_subtype_t type,
5234 void *arg,
5235 sctp_cmd_seq_t *commands)
5236{
5237 struct sctp_chunk *reply = NULL;
5238
5239 SCTP_DEBUG_PRINTK("Timer T2 expired.\n");
ac0b0462
SS
5240 SCTP_INC_STATS(SCTP_MIB_T2_SHUTDOWN_EXPIREDS);
5241
1da177e4 5242 if (asoc->overall_error_count >= asoc->max_retrans) {
8de8c873
SS
5243 sctp_add_cmd_sf(commands, SCTP_CMD_SET_SK_ERR,
5244 SCTP_ERROR(ETIMEDOUT));
1da177e4
LT
5245 /* Note: CMD_ASSOC_FAILED calls CMD_DELETE_TCB. */
5246 sctp_add_cmd_sf(commands, SCTP_CMD_ASSOC_FAILED,
5be291fe 5247 SCTP_PERR(SCTP_ERROR_NO_ERROR));
1da177e4
LT
5248 SCTP_INC_STATS(SCTP_MIB_ABORTEDS);
5249 SCTP_DEC_STATS(SCTP_MIB_CURRESTAB);
5250 return SCTP_DISPOSITION_DELETE_TCB;
5251 }
5252
5253 switch (asoc->state) {
5254 case SCTP_STATE_SHUTDOWN_SENT:
5255 reply = sctp_make_shutdown(asoc, NULL);
5256 break;
5257
5258 case SCTP_STATE_SHUTDOWN_ACK_SENT:
5259 reply = sctp_make_shutdown_ack(asoc, NULL);
5260 break;
5261
5262 default:
5263 BUG();
5264 break;
3ff50b79 5265 }
1da177e4
LT
5266
5267 if (!reply)
5268 goto nomem;
5269
5270 /* Do some failure management (Section 8.2). */
5271 sctp_add_cmd_sf(commands, SCTP_CMD_STRIKE,
5272 SCTP_TRANSPORT(asoc->shutdown_last_sent_to));
5273
5274 /* Set the transport for the SHUTDOWN/ACK chunk and the timeout for
5275 * the T2-shutdown timer.
5276 */
5277 sctp_add_cmd_sf(commands, SCTP_CMD_SETUP_T2, SCTP_CHUNK(reply));
5278
5279 /* Restart the T2-shutdown timer. */
5280 sctp_add_cmd_sf(commands, SCTP_CMD_TIMER_RESTART,
5281 SCTP_TO(SCTP_EVENT_TIMEOUT_T2_SHUTDOWN));
5282 sctp_add_cmd_sf(commands, SCTP_CMD_REPLY, SCTP_CHUNK(reply));
5283 return SCTP_DISPOSITION_CONSUME;
5284
5285nomem:
5286 return SCTP_DISPOSITION_NOMEM;
5287}
5288
5289/*
5290 * ADDIP Section 4.1 ASCONF CHunk Procedures
5291 * If the T4 RTO timer expires the endpoint should do B1 to B5
5292 */
5293sctp_disposition_t sctp_sf_t4_timer_expire(
5294 const struct sctp_endpoint *ep,
5295 const struct sctp_association *asoc,
5296 const sctp_subtype_t type,
5297 void *arg,
5298 sctp_cmd_seq_t *commands)
5299{
5300 struct sctp_chunk *chunk = asoc->addip_last_asconf;
5301 struct sctp_transport *transport = chunk->transport;
5302
ac0b0462
SS
5303 SCTP_INC_STATS(SCTP_MIB_T4_RTO_EXPIREDS);
5304
1da177e4
LT
5305 /* ADDIP 4.1 B1) Increment the error counters and perform path failure
5306 * detection on the appropriate destination address as defined in
5307 * RFC2960 [5] section 8.1 and 8.2.
5308 */
5309 sctp_add_cmd_sf(commands, SCTP_CMD_STRIKE, SCTP_TRANSPORT(transport));
5310
5311 /* Reconfig T4 timer and transport. */
5312 sctp_add_cmd_sf(commands, SCTP_CMD_SETUP_T4, SCTP_CHUNK(chunk));
5313
5314 /* ADDIP 4.1 B2) Increment the association error counters and perform
5315 * endpoint failure detection on the association as defined in
5316 * RFC2960 [5] section 8.1 and 8.2.
5317 * association error counter is incremented in SCTP_CMD_STRIKE.
5318 */
5319 if (asoc->overall_error_count >= asoc->max_retrans) {
5320 sctp_add_cmd_sf(commands, SCTP_CMD_TIMER_STOP,
5321 SCTP_TO(SCTP_EVENT_TIMEOUT_T4_RTO));
8de8c873
SS
5322 sctp_add_cmd_sf(commands, SCTP_CMD_SET_SK_ERR,
5323 SCTP_ERROR(ETIMEDOUT));
1da177e4 5324 sctp_add_cmd_sf(commands, SCTP_CMD_ASSOC_FAILED,
5be291fe 5325 SCTP_PERR(SCTP_ERROR_NO_ERROR));
1da177e4
LT
5326 SCTP_INC_STATS(SCTP_MIB_ABORTEDS);
5327 SCTP_INC_STATS(SCTP_MIB_CURRESTAB);
5328 return SCTP_DISPOSITION_ABORT;
5329 }
5330
5331 /* ADDIP 4.1 B3) Back-off the destination address RTO value to which
5332 * the ASCONF chunk was sent by doubling the RTO timer value.
5333 * This is done in SCTP_CMD_STRIKE.
5334 */
5335
5336 /* ADDIP 4.1 B4) Re-transmit the ASCONF Chunk last sent and if possible
5337 * choose an alternate destination address (please refer to RFC2960
5338 * [5] section 6.4.1). An endpoint MUST NOT add new parameters to this
d808ad9a 5339 * chunk, it MUST be the same (including its serial number) as the last
1da177e4
LT
5340 * ASCONF sent.
5341 */
5342 sctp_chunk_hold(asoc->addip_last_asconf);
5343 sctp_add_cmd_sf(commands, SCTP_CMD_REPLY,
5344 SCTP_CHUNK(asoc->addip_last_asconf));
5345
5346 /* ADDIP 4.1 B5) Restart the T-4 RTO timer. Note that if a different
5347 * destination is selected, then the RTO used will be that of the new
5348 * destination address.
5349 */
5350 sctp_add_cmd_sf(commands, SCTP_CMD_TIMER_RESTART,
5351 SCTP_TO(SCTP_EVENT_TIMEOUT_T4_RTO));
5352
5353 return SCTP_DISPOSITION_CONSUME;
5354}
5355
5356/* sctpimpguide-05 Section 2.12.2
5357 * The sender of the SHUTDOWN MAY also start an overall guard timer
5358 * 'T5-shutdown-guard' to bound the overall time for shutdown sequence.
5359 * At the expiration of this timer the sender SHOULD abort the association
5360 * by sending an ABORT chunk.
5361 */
5362sctp_disposition_t sctp_sf_t5_timer_expire(const struct sctp_endpoint *ep,
5363 const struct sctp_association *asoc,
5364 const sctp_subtype_t type,
5365 void *arg,
5366 sctp_cmd_seq_t *commands)
5367{
5368 struct sctp_chunk *reply = NULL;
5369
5370 SCTP_DEBUG_PRINTK("Timer T5 expired.\n");
ac0b0462 5371 SCTP_INC_STATS(SCTP_MIB_T5_SHUTDOWN_GUARD_EXPIREDS);
1da177e4
LT
5372
5373 reply = sctp_make_abort(asoc, NULL, 0);
5374 if (!reply)
5375 goto nomem;
5376
5377 sctp_add_cmd_sf(commands, SCTP_CMD_REPLY, SCTP_CHUNK(reply));
8de8c873
SS
5378 sctp_add_cmd_sf(commands, SCTP_CMD_SET_SK_ERR,
5379 SCTP_ERROR(ETIMEDOUT));
1da177e4 5380 sctp_add_cmd_sf(commands, SCTP_CMD_ASSOC_FAILED,
5be291fe 5381 SCTP_PERR(SCTP_ERROR_NO_ERROR));
1da177e4
LT
5382
5383 return SCTP_DISPOSITION_DELETE_TCB;
5384nomem:
5385 return SCTP_DISPOSITION_NOMEM;
5386}
5387
5388/* Handle expiration of AUTOCLOSE timer. When the autoclose timer expires,
5389 * the association is automatically closed by starting the shutdown process.
5390 * The work that needs to be done is same as when SHUTDOWN is initiated by
5391 * the user. So this routine looks same as sctp_sf_do_9_2_prm_shutdown().
5392 */
5393sctp_disposition_t sctp_sf_autoclose_timer_expire(
5394 const struct sctp_endpoint *ep,
5395 const struct sctp_association *asoc,
5396 const sctp_subtype_t type,
5397 void *arg,
5398 sctp_cmd_seq_t *commands)
5399{
5400 int disposition;
5401
ac0b0462
SS
5402 SCTP_INC_STATS(SCTP_MIB_AUTOCLOSE_EXPIREDS);
5403
1da177e4
LT
5404 /* From 9.2 Shutdown of an Association
5405 * Upon receipt of the SHUTDOWN primitive from its upper
5406 * layer, the endpoint enters SHUTDOWN-PENDING state and
5407 * remains there until all outstanding data has been
5408 * acknowledged by its peer. The endpoint accepts no new data
5409 * from its upper layer, but retransmits data to the far end
5410 * if necessary to fill gaps.
5411 */
5412 sctp_add_cmd_sf(commands, SCTP_CMD_NEW_STATE,
5413 SCTP_STATE(SCTP_STATE_SHUTDOWN_PENDING));
5414
5415 /* sctpimpguide-05 Section 2.12.2
5416 * The sender of the SHUTDOWN MAY also start an overall guard timer
5417 * 'T5-shutdown-guard' to bound the overall time for shutdown sequence.
d808ad9a 5418 */
1da177e4
LT
5419 sctp_add_cmd_sf(commands, SCTP_CMD_TIMER_START,
5420 SCTP_TO(SCTP_EVENT_TIMEOUT_T5_SHUTDOWN_GUARD));
5421 disposition = SCTP_DISPOSITION_CONSUME;
5422 if (sctp_outq_is_empty(&asoc->outqueue)) {
5423 disposition = sctp_sf_do_9_2_start_shutdown(ep, asoc, type,
5424 arg, commands);
5425 }
5426 return disposition;
5427}
5428
5429/*****************************************************************************
5430 * These are sa state functions which could apply to all types of events.
5431 ****************************************************************************/
5432
5433/*
5434 * This table entry is not implemented.
5435 *
5436 * Inputs
5437 * (endpoint, asoc, chunk)
5438 *
5439 * The return value is the disposition of the chunk.
5440 */
5441sctp_disposition_t sctp_sf_not_impl(const struct sctp_endpoint *ep,
5442 const struct sctp_association *asoc,
5443 const sctp_subtype_t type,
5444 void *arg,
5445 sctp_cmd_seq_t *commands)
5446{
5447 return SCTP_DISPOSITION_NOT_IMPL;
5448}
5449
5450/*
5451 * This table entry represents a bug.
5452 *
5453 * Inputs
5454 * (endpoint, asoc, chunk)
5455 *
5456 * The return value is the disposition of the chunk.
5457 */
5458sctp_disposition_t sctp_sf_bug(const struct sctp_endpoint *ep,
5459 const struct sctp_association *asoc,
5460 const sctp_subtype_t type,
5461 void *arg,
5462 sctp_cmd_seq_t *commands)
5463{
5464 return SCTP_DISPOSITION_BUG;
5465}
5466
5467/*
5468 * This table entry represents the firing of a timer in the wrong state.
5469 * Since timer deletion cannot be guaranteed a timer 'may' end up firing
5470 * when the association is in the wrong state. This event should
5471 * be ignored, so as to prevent any rearming of the timer.
5472 *
5473 * Inputs
5474 * (endpoint, asoc, chunk)
5475 *
5476 * The return value is the disposition of the chunk.
5477 */
5478sctp_disposition_t sctp_sf_timer_ignore(const struct sctp_endpoint *ep,
5479 const struct sctp_association *asoc,
5480 const sctp_subtype_t type,
5481 void *arg,
5482 sctp_cmd_seq_t *commands)
5483{
5484 SCTP_DEBUG_PRINTK("Timer %d ignored.\n", type.chunk);
5485 return SCTP_DISPOSITION_CONSUME;
5486}
5487
5488/********************************************************************
5489 * 2nd Level Abstractions
5490 ********************************************************************/
5491
5492/* Pull the SACK chunk based on the SACK header. */
5493static struct sctp_sackhdr *sctp_sm_pull_sack(struct sctp_chunk *chunk)
5494{
5495 struct sctp_sackhdr *sack;
5496 unsigned int len;
5497 __u16 num_blocks;
5498 __u16 num_dup_tsns;
5499
5500 /* Protect ourselves from reading too far into
5501 * the skb from a bogus sender.
5502 */
5503 sack = (struct sctp_sackhdr *) chunk->skb->data;
5504
5505 num_blocks = ntohs(sack->num_gap_ack_blocks);
5506 num_dup_tsns = ntohs(sack->num_dup_tsns);
5507 len = sizeof(struct sctp_sackhdr);
5508 len += (num_blocks + num_dup_tsns) * sizeof(__u32);
5509 if (len > chunk->skb->len)
5510 return NULL;
5511
5512 skb_pull(chunk->skb, len);
5513
5514 return sack;
5515}
5516
5517/* Create an ABORT packet to be sent as a response, with the specified
5518 * error causes.
5519 */
5520static struct sctp_packet *sctp_abort_pkt_new(const struct sctp_endpoint *ep,
5521 const struct sctp_association *asoc,
5522 struct sctp_chunk *chunk,
5523 const void *payload,
5524 size_t paylen)
5525{
5526 struct sctp_packet *packet;
5527 struct sctp_chunk *abort;
5528
5529 packet = sctp_ootb_pkt_new(asoc, chunk);
5530
5531 if (packet) {
5532 /* Make an ABORT.
5533 * The T bit will be set if the asoc is NULL.
5534 */
5535 abort = sctp_make_abort(asoc, chunk, paylen);
5536 if (!abort) {
5537 sctp_ootb_pkt_free(packet);
5538 return NULL;
5539 }
047a2428
JF
5540
5541 /* Reflect vtag if T-Bit is set */
5542 if (sctp_test_T_bit(abort))
5543 packet->vtag = ntohl(chunk->sctp_hdr->vtag);
5544
1da177e4
LT
5545 /* Add specified error causes, i.e., payload, to the
5546 * end of the chunk.
5547 */
5548 sctp_addto_chunk(abort, paylen, payload);
5549
5550 /* Set the skb to the belonging sock for accounting. */
5551 abort->skb->sk = ep->base.sk;
5552
5553 sctp_packet_append_chunk(packet, abort);
5554
5555 }
5556
5557 return packet;
5558}
5559
5560/* Allocate a packet for responding in the OOTB conditions. */
5561static struct sctp_packet *sctp_ootb_pkt_new(const struct sctp_association *asoc,
5562 const struct sctp_chunk *chunk)
5563{
5564 struct sctp_packet *packet;
5565 struct sctp_transport *transport;
5566 __u16 sport;
5567 __u16 dport;
5568 __u32 vtag;
5569
5570 /* Get the source and destination port from the inbound packet. */
5571 sport = ntohs(chunk->sctp_hdr->dest);
5572 dport = ntohs(chunk->sctp_hdr->source);
5573
5574 /* The V-tag is going to be the same as the inbound packet if no
5575 * association exists, otherwise, use the peer's vtag.
5576 */
5577 if (asoc) {
02c4e12c
WY
5578 /* Special case the INIT-ACK as there is no peer's vtag
5579 * yet.
5580 */
5581 switch(chunk->chunk_hdr->type) {
5582 case SCTP_CID_INIT_ACK:
5583 {
5584 sctp_initack_chunk_t *initack;
5585
5586 initack = (sctp_initack_chunk_t *)chunk->chunk_hdr;
5587 vtag = ntohl(initack->init_hdr.init_tag);
5588 break;
5589 }
5590 default:
5591 vtag = asoc->peer.i.init_tag;
5592 break;
5593 }
1da177e4
LT
5594 } else {
5595 /* Special case the INIT and stale COOKIE_ECHO as there is no
5596 * vtag yet.
5597 */
5598 switch(chunk->chunk_hdr->type) {
5599 case SCTP_CID_INIT:
5600 {
5601 sctp_init_chunk_t *init;
5602
5603 init = (sctp_init_chunk_t *)chunk->chunk_hdr;
5604 vtag = ntohl(init->init_hdr.init_tag);
5605 break;
5606 }
d808ad9a 5607 default:
1da177e4
LT
5608 vtag = ntohl(chunk->sctp_hdr->vtag);
5609 break;
5610 }
5611 }
5612
5613 /* Make a transport for the bucket, Eliza... */
6a1e5f33 5614 transport = sctp_transport_new(sctp_source(chunk), GFP_ATOMIC);
1da177e4
LT
5615 if (!transport)
5616 goto nomem;
5617
5618 /* Cache a route for the transport with the chunk's destination as
5619 * the source address.
5620 */
16b0a030 5621 sctp_transport_route(transport, (union sctp_addr *)&chunk->dest,
1da177e4
LT
5622 sctp_sk(sctp_get_ctl_sock()));
5623
5624 packet = sctp_packet_init(&transport->packet, transport, sport, dport);
5625 packet = sctp_packet_config(packet, vtag, 0);
5626
5627 return packet;
5628
5629nomem:
5630 return NULL;
5631}
5632
5633/* Free the packet allocated earlier for responding in the OOTB condition. */
5634void sctp_ootb_pkt_free(struct sctp_packet *packet)
5635{
5636 sctp_transport_free(packet->transport);
5637}
5638
5639/* Send a stale cookie error when a invalid COOKIE ECHO chunk is found */
5640static void sctp_send_stale_cookie_err(const struct sctp_endpoint *ep,
5641 const struct sctp_association *asoc,
5642 const struct sctp_chunk *chunk,
5643 sctp_cmd_seq_t *commands,
5644 struct sctp_chunk *err_chunk)
5645{
5646 struct sctp_packet *packet;
5647
5648 if (err_chunk) {
5649 packet = sctp_ootb_pkt_new(asoc, chunk);
5650 if (packet) {
5651 struct sctp_signed_cookie *cookie;
5652
5653 /* Override the OOTB vtag from the cookie. */
5654 cookie = chunk->subh.cookie_hdr;
5655 packet->vtag = cookie->c.peer_vtag;
d808ad9a 5656
1da177e4
LT
5657 /* Set the skb to the belonging sock for accounting. */
5658 err_chunk->skb->sk = ep->base.sk;
5659 sctp_packet_append_chunk(packet, err_chunk);
5660 sctp_add_cmd_sf(commands, SCTP_CMD_SEND_PKT,
5661 SCTP_PACKET(packet));
5662 SCTP_INC_STATS(SCTP_MIB_OUTCTRLCHUNKS);
5663 } else
5664 sctp_chunk_free (err_chunk);
5665 }
5666}
5667
5668
5669/* Process a data chunk */
5670static int sctp_eat_data(const struct sctp_association *asoc,
5671 struct sctp_chunk *chunk,
5672 sctp_cmd_seq_t *commands)
5673{
5674 sctp_datahdr_t *data_hdr;
5675 struct sctp_chunk *err;
5676 size_t datalen;
5677 sctp_verb_t deliver;
5678 int tmp;
5679 __u32 tsn;
7c3ceb4f 5680 struct sctp_tsnmap *map = (struct sctp_tsnmap *)&asoc->peer.tsn_map;
049b3ff5 5681 struct sock *sk = asoc->base.sk;
1da177e4
LT
5682
5683 data_hdr = chunk->subh.data_hdr = (sctp_datahdr_t *)chunk->skb->data;
5684 skb_pull(chunk->skb, sizeof(sctp_datahdr_t));
5685
5686 tsn = ntohl(data_hdr->tsn);
5687 SCTP_DEBUG_PRINTK("eat_data: TSN 0x%x.\n", tsn);
5688
5689 /* ASSERT: Now skb->data is really the user data. */
5690
5691 /* Process ECN based congestion.
5692 *
5693 * Since the chunk structure is reused for all chunks within
5694 * a packet, we use ecn_ce_done to track if we've already
5695 * done CE processing for this packet.
5696 *
5697 * We need to do ECN processing even if we plan to discard the
5698 * chunk later.
5699 */
5700
5701 if (!chunk->ecn_ce_done) {
5702 struct sctp_af *af;
5703 chunk->ecn_ce_done = 1;
5704
5705 af = sctp_get_af_specific(
eddc9ec5 5706 ipver2af(ip_hdr(chunk->skb)->version));
1da177e4
LT
5707
5708 if (af && af->is_ce(chunk->skb) && asoc->peer.ecn_capable) {
5709 /* Do real work as sideffect. */
5710 sctp_add_cmd_sf(commands, SCTP_CMD_ECN_CE,
5711 SCTP_U32(tsn));
5712 }
5713 }
5714
5715 tmp = sctp_tsnmap_check(&asoc->peer.tsn_map, tsn);
5716 if (tmp < 0) {
5717 /* The TSN is too high--silently discard the chunk and
5718 * count on it getting retransmitted later.
5719 */
5720 return SCTP_IERROR_HIGH_TSN;
5721 } else if (tmp > 0) {
5722 /* This is a duplicate. Record it. */
5723 sctp_add_cmd_sf(commands, SCTP_CMD_REPORT_DUP, SCTP_U32(tsn));
5724 return SCTP_IERROR_DUP_TSN;
5725 }
5726
5727 /* This is a new TSN. */
5728
5729 /* Discard if there is no room in the receive window.
5730 * Actually, allow a little bit of overflow (up to a MTU).
5731 */
5732 datalen = ntohs(chunk->chunk_hdr->length);
5733 datalen -= sizeof(sctp_data_chunk_t);
5734
5735 deliver = SCTP_CMD_CHUNK_ULP;
5736
5737 /* Think about partial delivery. */
5738 if ((datalen >= asoc->rwnd) && (!asoc->ulpq.pd_mode)) {
5739
5740 /* Even if we don't accept this chunk there is
5741 * memory pressure.
5742 */
5743 sctp_add_cmd_sf(commands, SCTP_CMD_PART_DELIVER, SCTP_NULL());
5744 }
5745
d808ad9a 5746 /* Spill over rwnd a little bit. Note: While allowed, this spill over
1da177e4
LT
5747 * seems a bit troublesome in that frag_point varies based on
5748 * PMTU. In cases, such as loopback, this might be a rather
5749 * large spill over.
4d93df0a
NH
5750 */
5751 if ((!chunk->data_accepted) && (!asoc->rwnd || asoc->rwnd_over ||
5752 (datalen > asoc->rwnd + asoc->frag_point))) {
1da177e4
LT
5753
5754 /* If this is the next TSN, consider reneging to make
5755 * room. Note: Playing nice with a confused sender. A
5756 * malicious sender can still eat up all our buffer
5757 * space and in the future we may want to detect and
5758 * do more drastic reneging.
5759 */
7c3ceb4f
NH
5760 if (sctp_tsnmap_has_gap(map) &&
5761 (sctp_tsnmap_get_ctsn(map) + 1) == tsn) {
1da177e4
LT
5762 SCTP_DEBUG_PRINTK("Reneging for tsn:%u\n", tsn);
5763 deliver = SCTP_CMD_RENEGE;
5764 } else {
5765 SCTP_DEBUG_PRINTK("Discard tsn: %u len: %Zd, "
5766 "rwnd: %d\n", tsn, datalen,
5767 asoc->rwnd);
5768 return SCTP_IERROR_IGNORE_TSN;
5769 }
5770 }
5771
4d93df0a
NH
5772 /*
5773 * Also try to renege to limit our memory usage in the event that
5774 * we are under memory pressure
5775 * If we can't renege, don't worry about it, the sk_stream_rmem_schedule
5776 * in sctp_ulpevent_make_rcvmsg will drop the frame if we grow our
5777 * memory usage too much
5778 */
5779 if (*sk->sk_prot_creator->memory_pressure) {
5780 if (sctp_tsnmap_has_gap(map) &&
5781 (sctp_tsnmap_get_ctsn(map) + 1) == tsn) {
5782 SCTP_DEBUG_PRINTK("Under Pressure! Reneging for tsn:%u\n", tsn);
5783 deliver = SCTP_CMD_RENEGE;
5784 }
5785 }
5786
1da177e4
LT
5787 /*
5788 * Section 3.3.10.9 No User Data (9)
5789 *
5790 * Cause of error
5791 * ---------------
5792 * No User Data: This error cause is returned to the originator of a
5793 * DATA chunk if a received DATA chunk has no user data.
5794 */
5795 if (unlikely(0 == datalen)) {
5796 err = sctp_make_abort_no_data(asoc, chunk, tsn);
5797 if (err) {
5798 sctp_add_cmd_sf(commands, SCTP_CMD_REPLY,
5799 SCTP_CHUNK(err));
5800 }
5801 /* We are going to ABORT, so we might as well stop
5802 * processing the rest of the chunks in the packet.
5803 */
5804 sctp_add_cmd_sf(commands, SCTP_CMD_DISCARD_PACKET,SCTP_NULL());
8de8c873
SS
5805 sctp_add_cmd_sf(commands, SCTP_CMD_SET_SK_ERR,
5806 SCTP_ERROR(ECONNABORTED));
1da177e4 5807 sctp_add_cmd_sf(commands, SCTP_CMD_ASSOC_FAILED,
5be291fe 5808 SCTP_PERR(SCTP_ERROR_NO_DATA));
1da177e4
LT
5809 SCTP_INC_STATS(SCTP_MIB_ABORTEDS);
5810 SCTP_DEC_STATS(SCTP_MIB_CURRESTAB);
5811 return SCTP_IERROR_NO_DATA;
5812 }
5813
5814 /* If definately accepting the DATA chunk, record its TSN, otherwise
5815 * wait for renege processing.
5816 */
5817 if (SCTP_CMD_CHUNK_ULP == deliver)
5818 sctp_add_cmd_sf(commands, SCTP_CMD_REPORT_TSN, SCTP_U32(tsn));
5819
9faa730f
SS
5820 chunk->data_accepted = 1;
5821
1da177e4
LT
5822 /* Note: Some chunks may get overcounted (if we drop) or overcounted
5823 * if we renege and the chunk arrives again.
5824 */
5825 if (chunk->chunk_hdr->flags & SCTP_DATA_UNORDERED)
5826 SCTP_INC_STATS(SCTP_MIB_INUNORDERCHUNKS);
5827 else
5828 SCTP_INC_STATS(SCTP_MIB_INORDERCHUNKS);
5829
5830 /* RFC 2960 6.5 Stream Identifier and Stream Sequence Number
5831 *
5832 * If an endpoint receive a DATA chunk with an invalid stream
5833 * identifier, it shall acknowledge the reception of the DATA chunk
5834 * following the normal procedure, immediately send an ERROR chunk
5835 * with cause set to "Invalid Stream Identifier" (See Section 3.3.10)
5836 * and discard the DATA chunk.
5837 */
5838 if (ntohs(data_hdr->stream) >= asoc->c.sinit_max_instreams) {
5839 err = sctp_make_op_error(asoc, chunk, SCTP_ERROR_INV_STRM,
5840 &data_hdr->stream,
5841 sizeof(data_hdr->stream));
5842 if (err)
5843 sctp_add_cmd_sf(commands, SCTP_CMD_REPLY,
5844 SCTP_CHUNK(err));
5845 return SCTP_IERROR_BAD_STREAM;
5846 }
5847
5848 /* Send the data up to the user. Note: Schedule the
5849 * SCTP_CMD_CHUNK_ULP cmd before the SCTP_CMD_GEN_SACK, as the SACK
5850 * chunk needs the updated rwnd.
5851 */
5852 sctp_add_cmd_sf(commands, deliver, SCTP_CHUNK(chunk));
5853
5854 return SCTP_IERROR_NO_ERROR;
5855}