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