1 /* SCTP kernel reference Implementation
2 * (C) Copyright IBM Corp. 2001, 2004
3 * Copyright (c) 1999-2000 Cisco, Inc.
4 * Copyright (c) 1999-2001 Motorola, Inc.
5 * Copyright (c) 2001-2002 Intel Corp.
6 * Copyright (c) 2002 Nokia Corp.
8 * This file is part of the SCTP kernel reference Implementation
10 * This is part of the SCTP Linux Kernel Reference Implementation.
12 * These are the state functions for the state machine.
14 * The SCTP reference implementation is free software;
15 * you can redistribute it and/or modify it under the terms of
16 * the GNU General Public License as published by
17 * the Free Software Foundation; either version 2, or (at your option)
20 * The SCTP reference implementation is distributed in the hope that it
21 * will be useful, but WITHOUT ANY WARRANTY; without even the implied
22 * ************************
23 * warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
24 * See the GNU General Public License for more details.
26 * You should have received a copy of the GNU General Public License
27 * along with GNU CC; see the file COPYING. If not, write to
28 * the Free Software Foundation, 59 Temple Place - Suite 330,
29 * Boston, MA 02111-1307, USA.
31 * Please send any bug reports or fixes you make to the
33 * lksctp developers <lksctp-developers@lists.sourceforge.net>
35 * Or submit a bug report through the following website:
36 * http://www.sf.net/projects/lksctp
38 * Written or modified by:
39 * La Monte H.P. Yarroll <piggy@acm.org>
40 * Karl Knutson <karl@athena.chicago.il.us>
41 * Mathew Kotowsky <kotowsky@sctp.org>
42 * Sridhar Samudrala <samudrala@us.ibm.com>
43 * Jon Grimm <jgrimm@us.ibm.com>
44 * Hui Huang <hui.huang@nokia.com>
45 * Dajiang Zhang <dajiang.zhang@nokia.com>
46 * Daisy Chang <daisyc@us.ibm.com>
47 * Ardelle Fan <ardelle.fan@intel.com>
48 * Ryan Layer <rmlayer@us.ibm.com>
49 * Kevin Gao <kevin.gao@intel.com>
51 * Any bugs reported given to us we will try to fix... any fixes shared will
52 * be incorporated into the next SCTP release.
55 #include <linux/types.h>
56 #include <linux/kernel.h>
58 #include <linux/ipv6.h>
59 #include <linux/net.h>
60 #include <linux/inet.h>
62 #include <net/inet_ecn.h>
63 #include <linux/skbuff.h>
64 #include <net/sctp/sctp.h>
65 #include <net/sctp/sm.h>
66 #include <net/sctp/structs.h>
68 static struct sctp_packet
*sctp_abort_pkt_new(const struct sctp_endpoint
*ep
,
69 const struct sctp_association
*asoc
,
70 struct sctp_chunk
*chunk
,
73 static int sctp_eat_data(const struct sctp_association
*asoc
,
74 struct sctp_chunk
*chunk
,
75 sctp_cmd_seq_t
*commands
);
76 static struct sctp_packet
*sctp_ootb_pkt_new(const struct sctp_association
*asoc
,
77 const struct sctp_chunk
*chunk
);
78 static void sctp_send_stale_cookie_err(const struct sctp_endpoint
*ep
,
79 const struct sctp_association
*asoc
,
80 const struct sctp_chunk
*chunk
,
81 sctp_cmd_seq_t
*commands
,
82 struct sctp_chunk
*err_chunk
);
83 static sctp_disposition_t
sctp_sf_do_5_2_6_stale(const struct sctp_endpoint
*ep
,
84 const struct sctp_association
*asoc
,
85 const sctp_subtype_t type
,
87 sctp_cmd_seq_t
*commands
);
88 static sctp_disposition_t
sctp_sf_shut_8_4_5(const struct sctp_endpoint
*ep
,
89 const struct sctp_association
*asoc
,
90 const sctp_subtype_t type
,
92 sctp_cmd_seq_t
*commands
);
93 static struct sctp_sackhdr
*sctp_sm_pull_sack(struct sctp_chunk
*chunk
);
96 /* Small helper function that checks if the chunk length
97 * is of the appropriate length. The 'required_length' argument
98 * is set to be the size of a specific chunk we are testing.
99 * Return Values: 1 = Valid length
104 sctp_chunk_length_valid(struct sctp_chunk
*chunk
,
105 __u16 required_length
)
107 __u16 chunk_length
= ntohs(chunk
->chunk_hdr
->length
);
109 if (unlikely(chunk_length
< required_length
))
115 /**********************************************************
116 * These are the state functions for handling chunk events.
117 **********************************************************/
120 * Process the final SHUTDOWN COMPLETE.
122 * Section: 4 (C) (diagram), 9.2
123 * Upon reception of the SHUTDOWN COMPLETE chunk the endpoint will verify
124 * that it is in SHUTDOWN-ACK-SENT state, if it is not the chunk should be
125 * discarded. If the endpoint is in the SHUTDOWN-ACK-SENT state the endpoint
126 * should stop the T2-shutdown timer and remove all knowledge of the
127 * association (and thus the association enters the CLOSED state).
129 * Verification Tag: 8.5.1(C), sctpimpguide 2.41.
130 * C) Rules for packet carrying SHUTDOWN COMPLETE:
132 * - The receiver of a SHUTDOWN COMPLETE shall accept the packet
133 * if the Verification Tag field of the packet matches its own tag and
134 * the T bit is not set
136 * it is set to its peer's tag and the T bit is set in the Chunk
138 * Otherwise, the receiver MUST silently discard the packet
139 * and take no further action. An endpoint MUST ignore the
140 * SHUTDOWN COMPLETE if it is not in the SHUTDOWN-ACK-SENT state.
143 * (endpoint, asoc, chunk)
146 * (asoc, reply_msg, msg_up, timers, counters)
148 * The return value is the disposition of the chunk.
150 sctp_disposition_t
sctp_sf_do_4_C(const struct sctp_endpoint
*ep
,
151 const struct sctp_association
*asoc
,
152 const sctp_subtype_t type
,
154 sctp_cmd_seq_t
*commands
)
156 struct sctp_chunk
*chunk
= arg
;
157 struct sctp_ulpevent
*ev
;
159 /* RFC 2960 6.10 Bundling
161 * An endpoint MUST NOT bundle INIT, INIT ACK or
162 * SHUTDOWN COMPLETE with any other chunks.
164 if (!chunk
->singleton
)
165 return SCTP_DISPOSITION_VIOLATION
;
167 if (!sctp_vtag_verify_either(chunk
, asoc
))
168 return sctp_sf_pdiscard(ep
, asoc
, type
, arg
, commands
);
170 /* RFC 2960 10.2 SCTP-to-ULP
172 * H) SHUTDOWN COMPLETE notification
174 * When SCTP completes the shutdown procedures (section 9.2) this
175 * notification is passed to the upper layer.
177 ev
= sctp_ulpevent_make_assoc_change(asoc
, 0, SCTP_SHUTDOWN_COMP
,
178 0, 0, 0, GFP_ATOMIC
);
182 sctp_add_cmd_sf(commands
, SCTP_CMD_EVENT_ULP
, SCTP_ULPEVENT(ev
));
184 /* Upon reception of the SHUTDOWN COMPLETE chunk the endpoint
185 * will verify that it is in SHUTDOWN-ACK-SENT state, if it is
186 * not the chunk should be discarded. If the endpoint is in
187 * the SHUTDOWN-ACK-SENT state the endpoint should stop the
188 * T2-shutdown timer and remove all knowledge of the
189 * association (and thus the association enters the CLOSED
192 sctp_add_cmd_sf(commands
, SCTP_CMD_TIMER_STOP
,
193 SCTP_TO(SCTP_EVENT_TIMEOUT_T2_SHUTDOWN
));
195 sctp_add_cmd_sf(commands
, SCTP_CMD_TIMER_STOP
,
196 SCTP_TO(SCTP_EVENT_TIMEOUT_T5_SHUTDOWN_GUARD
));
198 sctp_add_cmd_sf(commands
, SCTP_CMD_NEW_STATE
,
199 SCTP_STATE(SCTP_STATE_CLOSED
));
201 SCTP_INC_STATS(SCTP_MIB_SHUTDOWNS
);
202 SCTP_DEC_STATS(SCTP_MIB_CURRESTAB
);
204 sctp_add_cmd_sf(commands
, SCTP_CMD_DELETE_TCB
, SCTP_NULL());
206 return SCTP_DISPOSITION_DELETE_TCB
;
209 return SCTP_DISPOSITION_NOMEM
;
213 * Respond to a normal INIT chunk.
214 * We are the side that is being asked for an association.
216 * Section: 5.1 Normal Establishment of an Association, B
217 * B) "Z" shall respond immediately with an INIT ACK chunk. The
218 * destination IP address of the INIT ACK MUST be set to the source
219 * IP address of the INIT to which this INIT ACK is responding. In
220 * the response, besides filling in other parameters, "Z" must set the
221 * Verification Tag field to Tag_A, and also provide its own
222 * Verification Tag (Tag_Z) in the Initiate Tag field.
224 * Verification Tag: Must be 0.
227 * (endpoint, asoc, chunk)
230 * (asoc, reply_msg, msg_up, timers, counters)
232 * The return value is the disposition of the chunk.
234 sctp_disposition_t
sctp_sf_do_5_1B_init(const struct sctp_endpoint
*ep
,
235 const struct sctp_association
*asoc
,
236 const sctp_subtype_t type
,
238 sctp_cmd_seq_t
*commands
)
240 struct sctp_chunk
*chunk
= arg
;
241 struct sctp_chunk
*repl
;
242 struct sctp_association
*new_asoc
;
243 struct sctp_chunk
*err_chunk
;
244 struct sctp_packet
*packet
;
245 sctp_unrecognized_param_t
*unk_param
;
250 * An endpoint MUST NOT bundle INIT, INIT ACK or
251 * SHUTDOWN COMPLETE with any other chunks.
254 * Furthermore, we require that the receiver of an INIT chunk MUST
255 * enforce these rules by silently discarding an arriving packet
256 * with an INIT chunk that is bundled with other chunks.
258 if (!chunk
->singleton
)
259 return sctp_sf_pdiscard(ep
, asoc
, type
, arg
, commands
);
261 /* If the packet is an OOTB packet which is temporarily on the
262 * control endpoint, respond with an ABORT.
264 if (ep
== sctp_sk((sctp_get_ctl_sock()))->ep
)
265 return sctp_sf_tabort_8_4_8(ep
, asoc
, type
, arg
, commands
);
268 /* If the endpoint is not listening or if the number of associations
269 * on the TCP-style socket exceed the max backlog, respond with an
272 if (!sctp_sstate(sk
, LISTENING
) ||
273 (sctp_style(sk
, TCP
) &&
274 sk_acceptq_is_full(sk
)))
275 return sctp_sf_tabort_8_4_8(ep
, asoc
, type
, arg
, commands
);
277 /* 3.1 A packet containing an INIT chunk MUST have a zero Verification
280 if (chunk
->sctp_hdr
->vtag
!= 0)
281 return sctp_sf_tabort_8_4_8(ep
, asoc
, type
, arg
, commands
);
283 /* Make sure that the INIT chunk has a valid length.
284 * Normally, this would cause an ABORT with a Protocol Violation
285 * error, but since we don't have an association, we'll
286 * just discard the packet.
288 if (!sctp_chunk_length_valid(chunk
, sizeof(sctp_init_chunk_t
)))
289 return sctp_sf_pdiscard(ep
, asoc
, type
, arg
, commands
);
291 /* Verify the INIT chunk before processing it. */
293 if (!sctp_verify_init(asoc
, chunk
->chunk_hdr
->type
,
294 (sctp_init_chunk_t
*)chunk
->chunk_hdr
, chunk
,
296 /* This chunk contains fatal error. It is to be discarded.
297 * Send an ABORT, with causes if there is any.
300 packet
= sctp_abort_pkt_new(ep
, asoc
, arg
,
301 (__u8
*)(err_chunk
->chunk_hdr
) +
302 sizeof(sctp_chunkhdr_t
),
303 ntohs(err_chunk
->chunk_hdr
->length
) -
304 sizeof(sctp_chunkhdr_t
));
306 sctp_chunk_free(err_chunk
);
309 sctp_add_cmd_sf(commands
, SCTP_CMD_SEND_PKT
,
310 SCTP_PACKET(packet
));
311 SCTP_INC_STATS(SCTP_MIB_OUTCTRLCHUNKS
);
312 return SCTP_DISPOSITION_CONSUME
;
314 return SCTP_DISPOSITION_NOMEM
;
317 return sctp_sf_tabort_8_4_8(ep
, asoc
, type
, arg
,
322 /* Grab the INIT header. */
323 chunk
->subh
.init_hdr
= (sctp_inithdr_t
*)chunk
->skb
->data
;
325 /* Tag the variable length parameters. */
326 chunk
->param_hdr
.v
= skb_pull(chunk
->skb
, sizeof(sctp_inithdr_t
));
328 new_asoc
= sctp_make_temp_asoc(ep
, chunk
, GFP_ATOMIC
);
332 /* The call, sctp_process_init(), can fail on memory allocation. */
333 if (!sctp_process_init(new_asoc
, chunk
->chunk_hdr
->type
,
335 (sctp_init_chunk_t
*)chunk
->chunk_hdr
,
339 sctp_add_cmd_sf(commands
, SCTP_CMD_NEW_ASOC
, SCTP_ASOC(new_asoc
));
341 /* B) "Z" shall respond immediately with an INIT ACK chunk. */
343 /* If there are errors need to be reported for unknown parameters,
344 * make sure to reserve enough room in the INIT ACK for them.
348 len
= ntohs(err_chunk
->chunk_hdr
->length
) -
349 sizeof(sctp_chunkhdr_t
);
351 if (sctp_assoc_set_bind_addr_from_ep(new_asoc
, GFP_ATOMIC
) < 0)
354 repl
= sctp_make_init_ack(new_asoc
, chunk
, GFP_ATOMIC
, len
);
358 /* If there are errors need to be reported for unknown parameters,
359 * include them in the outgoing INIT ACK as "Unrecognized parameter"
363 /* Get the "Unrecognized parameter" parameter(s) out of the
364 * ERROR chunk generated by sctp_verify_init(). Since the
365 * error cause code for "unknown parameter" and the
366 * "Unrecognized parameter" type is the same, we can
367 * construct the parameters in INIT ACK by copying the
370 unk_param
= (sctp_unrecognized_param_t
*)
371 ((__u8
*)(err_chunk
->chunk_hdr
) +
372 sizeof(sctp_chunkhdr_t
));
373 /* Replace the cause code with the "Unrecognized parameter"
376 sctp_addto_chunk(repl
, len
, unk_param
);
377 sctp_chunk_free(err_chunk
);
380 sctp_add_cmd_sf(commands
, SCTP_CMD_REPLY
, SCTP_CHUNK(repl
));
383 * Note: After sending out INIT ACK with the State Cookie parameter,
384 * "Z" MUST NOT allocate any resources, nor keep any states for the
385 * new association. Otherwise, "Z" will be vulnerable to resource
388 sctp_add_cmd_sf(commands
, SCTP_CMD_DELETE_TCB
, SCTP_NULL());
390 return SCTP_DISPOSITION_DELETE_TCB
;
394 sctp_chunk_free(err_chunk
);
396 sctp_association_free(new_asoc
);
398 return SCTP_DISPOSITION_NOMEM
;
402 * Respond to a normal INIT ACK chunk.
403 * We are the side that is initiating the association.
405 * Section: 5.1 Normal Establishment of an Association, C
406 * C) Upon reception of the INIT ACK from "Z", "A" shall stop the T1-init
407 * timer and leave COOKIE-WAIT state. "A" shall then send the State
408 * Cookie received in the INIT ACK chunk in a COOKIE ECHO chunk, start
409 * the T1-cookie timer, and enter the COOKIE-ECHOED state.
411 * Note: The COOKIE ECHO chunk can be bundled with any pending outbound
412 * DATA chunks, but it MUST be the first chunk in the packet and
413 * until the COOKIE ACK is returned the sender MUST NOT send any
414 * other packets to the peer.
416 * Verification Tag: 3.3.3
417 * If the value of the Initiate Tag in a received INIT ACK chunk is
418 * found to be 0, the receiver MUST treat it as an error and close the
419 * association by transmitting an ABORT.
422 * (endpoint, asoc, chunk)
425 * (asoc, reply_msg, msg_up, timers, counters)
427 * The return value is the disposition of the chunk.
429 sctp_disposition_t
sctp_sf_do_5_1C_ack(const struct sctp_endpoint
*ep
,
430 const struct sctp_association
*asoc
,
431 const sctp_subtype_t type
,
433 sctp_cmd_seq_t
*commands
)
435 struct sctp_chunk
*chunk
= arg
;
436 sctp_init_chunk_t
*initchunk
;
438 struct sctp_chunk
*err_chunk
;
439 struct sctp_packet
*packet
;
440 sctp_disposition_t ret
;
442 if (!sctp_vtag_verify(chunk
, asoc
))
443 return sctp_sf_pdiscard(ep
, asoc
, type
, arg
, commands
);
445 /* Make sure that the INIT-ACK chunk has a valid length */
446 if (!sctp_chunk_length_valid(chunk
, sizeof(sctp_initack_chunk_t
)))
447 return sctp_sf_violation_chunklen(ep
, asoc
, type
, arg
,
450 * An endpoint MUST NOT bundle INIT, INIT ACK or
451 * SHUTDOWN COMPLETE with any other chunks.
453 if (!chunk
->singleton
)
454 return SCTP_DISPOSITION_VIOLATION
;
456 /* Grab the INIT header. */
457 chunk
->subh
.init_hdr
= (sctp_inithdr_t
*) chunk
->skb
->data
;
459 init_tag
= ntohl(chunk
->subh
.init_hdr
->init_tag
);
461 /* Verification Tag: 3.3.3
462 * If the value of the Initiate Tag in a received INIT ACK
463 * chunk is found to be 0, the receiver MUST treat it as an
464 * error and close the association by transmitting an ABORT.
467 struct sctp_chunk
*reply
= sctp_make_abort(asoc
, chunk
, 0);
471 sctp_add_cmd_sf(commands
, SCTP_CMD_REPLY
, SCTP_CHUNK(reply
));
472 sctp_add_cmd_sf(commands
, SCTP_CMD_NEW_STATE
,
473 SCTP_STATE(SCTP_STATE_CLOSED
));
474 SCTP_INC_STATS(SCTP_MIB_ABORTEDS
);
475 sctp_add_cmd_sf(commands
, SCTP_CMD_DELETE_TCB
, SCTP_NULL());
476 return SCTP_DISPOSITION_DELETE_TCB
;
479 /* Verify the INIT chunk before processing it. */
481 if (!sctp_verify_init(asoc
, chunk
->chunk_hdr
->type
,
482 (sctp_init_chunk_t
*)chunk
->chunk_hdr
, chunk
,
485 SCTP_INC_STATS(SCTP_MIB_ABORTEDS
);
487 /* This chunk contains fatal error. It is to be discarded.
488 * Send an ABORT, with causes if there is any.
491 packet
= sctp_abort_pkt_new(ep
, asoc
, arg
,
492 (__u8
*)(err_chunk
->chunk_hdr
) +
493 sizeof(sctp_chunkhdr_t
),
494 ntohs(err_chunk
->chunk_hdr
->length
) -
495 sizeof(sctp_chunkhdr_t
));
497 sctp_chunk_free(err_chunk
);
500 sctp_add_cmd_sf(commands
, SCTP_CMD_SEND_PKT
,
501 SCTP_PACKET(packet
));
502 SCTP_INC_STATS(SCTP_MIB_OUTCTRLCHUNKS
);
503 sctp_add_cmd_sf(commands
, SCTP_CMD_NEW_STATE
,
504 SCTP_STATE(SCTP_STATE_CLOSED
));
505 sctp_add_cmd_sf(commands
, SCTP_CMD_DELETE_TCB
,
507 return SCTP_DISPOSITION_CONSUME
;
509 sctp_add_cmd_sf(commands
, SCTP_CMD_NEW_STATE
,
510 SCTP_STATE(SCTP_STATE_CLOSED
));
511 sctp_add_cmd_sf(commands
, SCTP_CMD_DELETE_TCB
,
513 return SCTP_DISPOSITION_NOMEM
;
516 ret
= sctp_sf_tabort_8_4_8(ep
, asoc
, type
, arg
,
518 sctp_add_cmd_sf(commands
, SCTP_CMD_NEW_STATE
,
519 SCTP_STATE(SCTP_STATE_CLOSED
));
520 sctp_add_cmd_sf(commands
, SCTP_CMD_DELETE_TCB
,
526 /* Tag the variable length parameters. Note that we never
527 * convert the parameters in an INIT chunk.
529 chunk
->param_hdr
.v
= skb_pull(chunk
->skb
, sizeof(sctp_inithdr_t
));
531 initchunk
= (sctp_init_chunk_t
*) chunk
->chunk_hdr
;
533 sctp_add_cmd_sf(commands
, SCTP_CMD_PEER_INIT
,
534 SCTP_PEER_INIT(initchunk
));
536 /* 5.1 C) "A" shall stop the T1-init timer and leave
537 * COOKIE-WAIT state. "A" shall then ... start the T1-cookie
538 * timer, and enter the COOKIE-ECHOED state.
540 sctp_add_cmd_sf(commands
, SCTP_CMD_TIMER_STOP
,
541 SCTP_TO(SCTP_EVENT_TIMEOUT_T1_INIT
));
542 sctp_add_cmd_sf(commands
, SCTP_CMD_TIMER_START
,
543 SCTP_TO(SCTP_EVENT_TIMEOUT_T1_COOKIE
));
544 sctp_add_cmd_sf(commands
, SCTP_CMD_NEW_STATE
,
545 SCTP_STATE(SCTP_STATE_COOKIE_ECHOED
));
547 /* 5.1 C) "A" shall then send the State Cookie received in the
548 * INIT ACK chunk in a COOKIE ECHO chunk, ...
550 /* If there is any errors to report, send the ERROR chunk generated
551 * for unknown parameters as well.
553 sctp_add_cmd_sf(commands
, SCTP_CMD_GEN_COOKIE_ECHO
,
554 SCTP_CHUNK(err_chunk
));
556 return SCTP_DISPOSITION_CONSUME
;
559 return SCTP_DISPOSITION_NOMEM
;
563 * Respond to a normal COOKIE ECHO chunk.
564 * We are the side that is being asked for an association.
566 * Section: 5.1 Normal Establishment of an Association, D
567 * D) Upon reception of the COOKIE ECHO chunk, Endpoint "Z" will reply
568 * with a COOKIE ACK chunk after building a TCB and moving to
569 * the ESTABLISHED state. A COOKIE ACK chunk may be bundled with
570 * any pending DATA chunks (and/or SACK chunks), but the COOKIE ACK
571 * chunk MUST be the first chunk in the packet.
573 * IMPLEMENTATION NOTE: An implementation may choose to send the
574 * Communication Up notification to the SCTP user upon reception
575 * of a valid COOKIE ECHO chunk.
577 * Verification Tag: 8.5.1 Exceptions in Verification Tag Rules
578 * D) Rules for packet carrying a COOKIE ECHO
580 * - When sending a COOKIE ECHO, the endpoint MUST use the value of the
581 * Initial Tag received in the INIT ACK.
583 * - The receiver of a COOKIE ECHO follows the procedures in Section 5.
586 * (endpoint, asoc, chunk)
589 * (asoc, reply_msg, msg_up, timers, counters)
591 * The return value is the disposition of the chunk.
593 sctp_disposition_t
sctp_sf_do_5_1D_ce(const struct sctp_endpoint
*ep
,
594 const struct sctp_association
*asoc
,
595 const sctp_subtype_t type
, void *arg
,
596 sctp_cmd_seq_t
*commands
)
598 struct sctp_chunk
*chunk
= arg
;
599 struct sctp_association
*new_asoc
;
600 sctp_init_chunk_t
*peer_init
;
601 struct sctp_chunk
*repl
;
602 struct sctp_ulpevent
*ev
;
604 struct sctp_chunk
*err_chk_p
;
606 /* If the packet is an OOTB packet which is temporarily on the
607 * control endpoint, respond with an ABORT.
609 if (ep
== sctp_sk((sctp_get_ctl_sock()))->ep
)
610 return sctp_sf_ootb(ep
, asoc
, type
, arg
, commands
);
612 /* Make sure that the COOKIE_ECHO chunk has a valid length.
613 * In this case, we check that we have enough for at least a
614 * chunk header. More detailed verification is done
615 * in sctp_unpack_cookie().
617 if (!sctp_chunk_length_valid(chunk
, sizeof(sctp_chunkhdr_t
)))
618 return sctp_sf_pdiscard(ep
, asoc
, type
, arg
, commands
);
620 /* "Decode" the chunk. We have no optional parameters so we
623 chunk
->subh
.cookie_hdr
=
624 (struct sctp_signed_cookie
*)chunk
->skb
->data
;
626 ntohs(chunk
->chunk_hdr
->length
) - sizeof(sctp_chunkhdr_t
));
628 /* 5.1 D) Upon reception of the COOKIE ECHO chunk, Endpoint
629 * "Z" will reply with a COOKIE ACK chunk after building a TCB
630 * and moving to the ESTABLISHED state.
632 new_asoc
= sctp_unpack_cookie(ep
, asoc
, chunk
, GFP_ATOMIC
, &error
,
636 * If the re-build failed, what is the proper error path
639 * [We should abort the association. --piggy]
642 /* FIXME: Several errors are possible. A bad cookie should
643 * be silently discarded, but think about logging it too.
646 case -SCTP_IERROR_NOMEM
:
649 case -SCTP_IERROR_STALE_COOKIE
:
650 sctp_send_stale_cookie_err(ep
, asoc
, chunk
, commands
,
652 return sctp_sf_pdiscard(ep
, asoc
, type
, arg
, commands
);
654 case -SCTP_IERROR_BAD_SIG
:
656 return sctp_sf_pdiscard(ep
, asoc
, type
, arg
, commands
);
660 sctp_add_cmd_sf(commands
, SCTP_CMD_NEW_ASOC
, SCTP_ASOC(new_asoc
));
661 sctp_add_cmd_sf(commands
, SCTP_CMD_NEW_STATE
,
662 SCTP_STATE(SCTP_STATE_ESTABLISHED
));
663 SCTP_INC_STATS(SCTP_MIB_CURRESTAB
);
664 SCTP_INC_STATS(SCTP_MIB_PASSIVEESTABS
);
665 sctp_add_cmd_sf(commands
, SCTP_CMD_HB_TIMERS_START
, SCTP_NULL());
667 if (new_asoc
->autoclose
)
668 sctp_add_cmd_sf(commands
, SCTP_CMD_TIMER_START
,
669 SCTP_TO(SCTP_EVENT_TIMEOUT_AUTOCLOSE
));
671 sctp_add_cmd_sf(commands
, SCTP_CMD_TRANSMIT
, SCTP_NULL());
673 /* Re-build the bind address for the association is done in
674 * the sctp_unpack_cookie() already.
676 /* This is a brand-new association, so these are not yet side
677 * effects--it is safe to run them here.
679 peer_init
= &chunk
->subh
.cookie_hdr
->c
.peer_init
[0];
681 if (!sctp_process_init(new_asoc
, chunk
->chunk_hdr
->type
,
682 &chunk
->subh
.cookie_hdr
->c
.peer_addr
,
683 peer_init
, GFP_ATOMIC
))
686 repl
= sctp_make_cookie_ack(new_asoc
, chunk
);
690 sctp_add_cmd_sf(commands
, SCTP_CMD_REPLY
, SCTP_CHUNK(repl
));
692 /* RFC 2960 5.1 Normal Establishment of an Association
694 * D) IMPLEMENTATION NOTE: An implementation may choose to
695 * send the Communication Up notification to the SCTP user
696 * upon reception of a valid COOKIE ECHO chunk.
698 ev
= sctp_ulpevent_make_assoc_change(new_asoc
, 0, SCTP_COMM_UP
, 0,
699 new_asoc
->c
.sinit_num_ostreams
,
700 new_asoc
->c
.sinit_max_instreams
,
705 sctp_add_cmd_sf(commands
, SCTP_CMD_EVENT_ULP
, SCTP_ULPEVENT(ev
));
707 /* Sockets API Draft Section 5.3.1.6
708 * When a peer sends a Adaption Layer Indication parameter , SCTP
709 * delivers this notification to inform the application that of the
710 * peers requested adaption layer.
712 if (new_asoc
->peer
.adaption_ind
) {
713 ev
= sctp_ulpevent_make_adaption_indication(new_asoc
,
718 sctp_add_cmd_sf(commands
, SCTP_CMD_EVENT_ULP
,
722 return SCTP_DISPOSITION_CONSUME
;
725 sctp_chunk_free(repl
);
728 sctp_association_free(new_asoc
);
730 return SCTP_DISPOSITION_NOMEM
;
734 * Respond to a normal COOKIE ACK chunk.
735 * We are the side that is being asked for an association.
737 * RFC 2960 5.1 Normal Establishment of an Association
739 * E) Upon reception of the COOKIE ACK, endpoint "A" will move from the
740 * COOKIE-ECHOED state to the ESTABLISHED state, stopping the T1-cookie
741 * timer. It may also notify its ULP about the successful
742 * establishment of the association with a Communication Up
743 * notification (see Section 10).
747 * (endpoint, asoc, chunk)
750 * (asoc, reply_msg, msg_up, timers, counters)
752 * The return value is the disposition of the chunk.
754 sctp_disposition_t
sctp_sf_do_5_1E_ca(const struct sctp_endpoint
*ep
,
755 const struct sctp_association
*asoc
,
756 const sctp_subtype_t type
, void *arg
,
757 sctp_cmd_seq_t
*commands
)
759 struct sctp_chunk
*chunk
= arg
;
760 struct sctp_ulpevent
*ev
;
762 if (!sctp_vtag_verify(chunk
, asoc
))
763 return sctp_sf_pdiscard(ep
, asoc
, type
, arg
, commands
);
765 /* Verify that the chunk length for the COOKIE-ACK is OK.
766 * If we don't do this, any bundled chunks may be junked.
768 if (!sctp_chunk_length_valid(chunk
, sizeof(sctp_chunkhdr_t
)))
769 return sctp_sf_violation_chunklen(ep
, asoc
, type
, arg
,
772 /* Reset init error count upon receipt of COOKIE-ACK,
773 * to avoid problems with the managemement of this
774 * counter in stale cookie situations when a transition back
775 * from the COOKIE-ECHOED state to the COOKIE-WAIT
776 * state is performed.
778 sctp_add_cmd_sf(commands
, SCTP_CMD_COUNTER_RESET
,
779 SCTP_COUNTER(SCTP_COUNTER_INIT_ERROR
));
781 /* RFC 2960 5.1 Normal Establishment of an Association
783 * E) Upon reception of the COOKIE ACK, endpoint "A" will move
784 * from the COOKIE-ECHOED state to the ESTABLISHED state,
785 * stopping the T1-cookie timer.
787 sctp_add_cmd_sf(commands
, SCTP_CMD_TIMER_STOP
,
788 SCTP_TO(SCTP_EVENT_TIMEOUT_T1_COOKIE
));
789 sctp_add_cmd_sf(commands
, SCTP_CMD_NEW_STATE
,
790 SCTP_STATE(SCTP_STATE_ESTABLISHED
));
791 SCTP_INC_STATS(SCTP_MIB_CURRESTAB
);
792 SCTP_INC_STATS(SCTP_MIB_ACTIVEESTABS
);
793 sctp_add_cmd_sf(commands
, SCTP_CMD_HB_TIMERS_START
, SCTP_NULL());
795 sctp_add_cmd_sf(commands
, SCTP_CMD_TIMER_START
,
796 SCTP_TO(SCTP_EVENT_TIMEOUT_AUTOCLOSE
));
797 sctp_add_cmd_sf(commands
, SCTP_CMD_TRANSMIT
, SCTP_NULL());
799 /* It may also notify its ULP about the successful
800 * establishment of the association with a Communication Up
801 * notification (see Section 10).
803 ev
= sctp_ulpevent_make_assoc_change(asoc
, 0, SCTP_COMM_UP
,
804 0, asoc
->c
.sinit_num_ostreams
,
805 asoc
->c
.sinit_max_instreams
,
811 sctp_add_cmd_sf(commands
, SCTP_CMD_EVENT_ULP
, SCTP_ULPEVENT(ev
));
813 /* Sockets API Draft Section 5.3.1.6
814 * When a peer sends a Adaption Layer Indication parameter , SCTP
815 * delivers this notification to inform the application that of the
816 * peers requested adaption layer.
818 if (asoc
->peer
.adaption_ind
) {
819 ev
= sctp_ulpevent_make_adaption_indication(asoc
, GFP_ATOMIC
);
823 sctp_add_cmd_sf(commands
, SCTP_CMD_EVENT_ULP
,
827 return SCTP_DISPOSITION_CONSUME
;
829 return SCTP_DISPOSITION_NOMEM
;
832 /* Generate and sendout a heartbeat packet. */
833 static sctp_disposition_t
sctp_sf_heartbeat(const struct sctp_endpoint
*ep
,
834 const struct sctp_association
*asoc
,
835 const sctp_subtype_t type
,
837 sctp_cmd_seq_t
*commands
)
839 struct sctp_transport
*transport
= (struct sctp_transport
*) arg
;
840 struct sctp_chunk
*reply
;
841 sctp_sender_hb_info_t hbinfo
;
844 hbinfo
.param_hdr
.type
= SCTP_PARAM_HEARTBEAT_INFO
;
845 hbinfo
.param_hdr
.length
= htons(sizeof(sctp_sender_hb_info_t
));
846 hbinfo
.daddr
= transport
->ipaddr
;
847 hbinfo
.sent_at
= jiffies
;
849 /* Send a heartbeat to our peer. */
850 paylen
= sizeof(sctp_sender_hb_info_t
);
851 reply
= sctp_make_heartbeat(asoc
, transport
, &hbinfo
, paylen
);
853 return SCTP_DISPOSITION_NOMEM
;
855 /* Set rto_pending indicating that an RTT measurement
856 * is started with this heartbeat chunk.
858 sctp_add_cmd_sf(commands
, SCTP_CMD_RTO_PENDING
,
859 SCTP_TRANSPORT(transport
));
861 sctp_add_cmd_sf(commands
, SCTP_CMD_REPLY
, SCTP_CHUNK(reply
));
862 return SCTP_DISPOSITION_CONSUME
;
865 /* Generate a HEARTBEAT packet on the given transport. */
866 sctp_disposition_t
sctp_sf_sendbeat_8_3(const struct sctp_endpoint
*ep
,
867 const struct sctp_association
*asoc
,
868 const sctp_subtype_t type
,
870 sctp_cmd_seq_t
*commands
)
872 struct sctp_transport
*transport
= (struct sctp_transport
*) arg
;
874 if (asoc
->overall_error_count
> asoc
->max_retrans
) {
875 /* CMD_ASSOC_FAILED calls CMD_DELETE_TCB. */
876 sctp_add_cmd_sf(commands
, SCTP_CMD_ASSOC_FAILED
,
877 SCTP_U32(SCTP_ERROR_NO_ERROR
));
878 SCTP_INC_STATS(SCTP_MIB_ABORTEDS
);
879 SCTP_DEC_STATS(SCTP_MIB_CURRESTAB
);
880 return SCTP_DISPOSITION_DELETE_TCB
;
884 * The Sender-specific Heartbeat Info field should normally include
885 * information about the sender's current time when this HEARTBEAT
886 * chunk is sent and the destination transport address to which this
887 * HEARTBEAT is sent (see Section 8.3).
890 if (transport
->hb_allowed
) {
891 if (SCTP_DISPOSITION_NOMEM
==
892 sctp_sf_heartbeat(ep
, asoc
, type
, arg
,
894 return SCTP_DISPOSITION_NOMEM
;
895 /* Set transport error counter and association error counter
896 * when sending heartbeat.
898 sctp_add_cmd_sf(commands
, SCTP_CMD_TRANSPORT_RESET
,
899 SCTP_TRANSPORT(transport
));
901 sctp_add_cmd_sf(commands
, SCTP_CMD_HB_TIMER_UPDATE
,
902 SCTP_TRANSPORT(transport
));
904 return SCTP_DISPOSITION_CONSUME
;
908 * Process an heartbeat request.
910 * Section: 8.3 Path Heartbeat
911 * The receiver of the HEARTBEAT should immediately respond with a
912 * HEARTBEAT ACK that contains the Heartbeat Information field copied
913 * from the received HEARTBEAT chunk.
915 * Verification Tag: 8.5 Verification Tag [Normal verification]
916 * When receiving an SCTP packet, the endpoint MUST ensure that the
917 * value in the Verification Tag field of the received SCTP packet
918 * matches its own Tag. If the received Verification Tag value does not
919 * match the receiver's own tag value, the receiver shall silently
920 * discard the packet and shall not process it any further except for
921 * those cases listed in Section 8.5.1 below.
924 * (endpoint, asoc, chunk)
927 * (asoc, reply_msg, msg_up, timers, counters)
929 * The return value is the disposition of the chunk.
931 sctp_disposition_t
sctp_sf_beat_8_3(const struct sctp_endpoint
*ep
,
932 const struct sctp_association
*asoc
,
933 const sctp_subtype_t type
,
935 sctp_cmd_seq_t
*commands
)
937 struct sctp_chunk
*chunk
= arg
;
938 struct sctp_chunk
*reply
;
941 if (!sctp_vtag_verify(chunk
, asoc
))
942 return sctp_sf_pdiscard(ep
, asoc
, type
, arg
, commands
);
944 /* Make sure that the HEARTBEAT chunk has a valid length. */
945 if (!sctp_chunk_length_valid(chunk
, sizeof(sctp_heartbeat_chunk_t
)))
946 return sctp_sf_violation_chunklen(ep
, asoc
, type
, arg
,
949 /* 8.3 The receiver of the HEARTBEAT should immediately
950 * respond with a HEARTBEAT ACK that contains the Heartbeat
951 * Information field copied from the received HEARTBEAT chunk.
953 chunk
->subh
.hb_hdr
= (sctp_heartbeathdr_t
*) chunk
->skb
->data
;
954 paylen
= ntohs(chunk
->chunk_hdr
->length
) - sizeof(sctp_chunkhdr_t
);
955 skb_pull(chunk
->skb
, paylen
);
957 reply
= sctp_make_heartbeat_ack(asoc
, chunk
,
958 chunk
->subh
.hb_hdr
, paylen
);
962 sctp_add_cmd_sf(commands
, SCTP_CMD_REPLY
, SCTP_CHUNK(reply
));
963 return SCTP_DISPOSITION_CONSUME
;
966 return SCTP_DISPOSITION_NOMEM
;
970 * Process the returning HEARTBEAT ACK.
972 * Section: 8.3 Path Heartbeat
973 * Upon the receipt of the HEARTBEAT ACK, the sender of the HEARTBEAT
974 * should clear the error counter of the destination transport
975 * address to which the HEARTBEAT was sent, and mark the destination
976 * transport address as active if it is not so marked. The endpoint may
977 * optionally report to the upper layer when an inactive destination
978 * address is marked as active due to the reception of the latest
979 * HEARTBEAT ACK. The receiver of the HEARTBEAT ACK must also
980 * clear the association overall error count as well (as defined
983 * The receiver of the HEARTBEAT ACK should also perform an RTT
984 * measurement for that destination transport address using the time
985 * value carried in the HEARTBEAT ACK chunk.
987 * Verification Tag: 8.5 Verification Tag [Normal verification]
990 * (endpoint, asoc, chunk)
993 * (asoc, reply_msg, msg_up, timers, counters)
995 * The return value is the disposition of the chunk.
997 sctp_disposition_t
sctp_sf_backbeat_8_3(const struct sctp_endpoint
*ep
,
998 const struct sctp_association
*asoc
,
999 const sctp_subtype_t type
,
1001 sctp_cmd_seq_t
*commands
)
1003 struct sctp_chunk
*chunk
= arg
;
1004 union sctp_addr from_addr
;
1005 struct sctp_transport
*link
;
1006 sctp_sender_hb_info_t
*hbinfo
;
1007 unsigned long max_interval
;
1009 if (!sctp_vtag_verify(chunk
, asoc
))
1010 return sctp_sf_pdiscard(ep
, asoc
, type
, arg
, commands
);
1012 /* Make sure that the HEARTBEAT-ACK chunk has a valid length. */
1013 if (!sctp_chunk_length_valid(chunk
, sizeof(sctp_heartbeat_chunk_t
)))
1014 return sctp_sf_violation_chunklen(ep
, asoc
, type
, arg
,
1017 hbinfo
= (sctp_sender_hb_info_t
*) chunk
->skb
->data
;
1018 from_addr
= hbinfo
->daddr
;
1019 link
= sctp_assoc_lookup_paddr(asoc
, &from_addr
);
1021 /* This should never happen, but lets log it if so. */
1024 "%s: Could not find address %d.%d.%d.%d\n",
1025 __FUNCTION__
, NIPQUAD(from_addr
.v4
.sin_addr
));
1026 return SCTP_DISPOSITION_DISCARD
;
1029 max_interval
= link
->hb_interval
+ link
->rto
;
1031 /* Check if the timestamp looks valid. */
1032 if (time_after(hbinfo
->sent_at
, jiffies
) ||
1033 time_after(jiffies
, hbinfo
->sent_at
+ max_interval
)) {
1034 SCTP_DEBUG_PRINTK("%s: HEARTBEAT ACK with invalid timestamp"
1035 "received for transport: %p\n",
1036 __FUNCTION__
, link
);
1037 return SCTP_DISPOSITION_DISCARD
;
1040 /* 8.3 Upon the receipt of the HEARTBEAT ACK, the sender of
1041 * the HEARTBEAT should clear the error counter of the
1042 * destination transport address to which the HEARTBEAT was
1043 * sent and mark the destination transport address as active if
1044 * it is not so marked.
1046 sctp_add_cmd_sf(commands
, SCTP_CMD_TRANSPORT_ON
, SCTP_TRANSPORT(link
));
1048 return SCTP_DISPOSITION_CONSUME
;
1051 /* Helper function to send out an abort for the restart
1054 static int sctp_sf_send_restart_abort(union sctp_addr
*ssa
,
1055 struct sctp_chunk
*init
,
1056 sctp_cmd_seq_t
*commands
)
1059 struct sctp_packet
*pkt
;
1060 union sctp_addr_param
*addrparm
;
1061 struct sctp_errhdr
*errhdr
;
1062 struct sctp_endpoint
*ep
;
1063 char buffer
[sizeof(struct sctp_errhdr
)+sizeof(union sctp_addr_param
)];
1064 struct sctp_af
*af
= sctp_get_af_specific(ssa
->v4
.sin_family
);
1066 /* Build the error on the stack. We are way to malloc crazy
1067 * throughout the code today.
1069 errhdr
= (struct sctp_errhdr
*)buffer
;
1070 addrparm
= (union sctp_addr_param
*)errhdr
->variable
;
1072 /* Copy into a parm format. */
1073 len
= af
->to_addr_param(ssa
, addrparm
);
1074 len
+= sizeof(sctp_errhdr_t
);
1076 errhdr
->cause
= SCTP_ERROR_RESTART
;
1077 errhdr
->length
= htons(len
);
1079 /* Assign to the control socket. */
1080 ep
= sctp_sk((sctp_get_ctl_sock()))->ep
;
1082 /* Association is NULL since this may be a restart attack and we
1083 * want to send back the attacker's vtag.
1085 pkt
= sctp_abort_pkt_new(ep
, NULL
, init
, errhdr
, len
);
1089 sctp_add_cmd_sf(commands
, SCTP_CMD_SEND_PKT
, SCTP_PACKET(pkt
));
1091 SCTP_INC_STATS(SCTP_MIB_OUTCTRLCHUNKS
);
1093 /* Discard the rest of the inbound packet. */
1094 sctp_add_cmd_sf(commands
, SCTP_CMD_DISCARD_PACKET
, SCTP_NULL());
1097 /* Even if there is no memory, treat as a failure so
1098 * the packet will get dropped.
1103 /* A restart is occurring, check to make sure no new addresses
1104 * are being added as we may be under a takeover attack.
1106 static int sctp_sf_check_restart_addrs(const struct sctp_association
*new_asoc
,
1107 const struct sctp_association
*asoc
,
1108 struct sctp_chunk
*init
,
1109 sctp_cmd_seq_t
*commands
)
1111 struct sctp_transport
*new_addr
, *addr
;
1112 struct list_head
*pos
, *pos2
;
1115 /* Implementor's Guide - Sectin 5.2.2
1117 * Before responding the endpoint MUST check to see if the
1118 * unexpected INIT adds new addresses to the association. If new
1119 * addresses are added to the association, the endpoint MUST respond
1123 /* Search through all current addresses and make sure
1124 * we aren't adding any new ones.
1129 list_for_each(pos
, &new_asoc
->peer
.transport_addr_list
) {
1130 new_addr
= list_entry(pos
, struct sctp_transport
, transports
);
1132 list_for_each(pos2
, &asoc
->peer
.transport_addr_list
) {
1133 addr
= list_entry(pos2
, struct sctp_transport
,
1135 if (sctp_cmp_addr_exact(&new_addr
->ipaddr
,
1145 /* If a new address was added, ABORT the sender. */
1146 if (!found
&& new_addr
) {
1147 sctp_sf_send_restart_abort(&new_addr
->ipaddr
, init
, commands
);
1150 /* Return success if all addresses were found. */
1154 /* Populate the verification/tie tags based on overlapping INIT
1157 * Note: Do not use in CLOSED or SHUTDOWN-ACK-SENT state.
1159 static void sctp_tietags_populate(struct sctp_association
*new_asoc
,
1160 const struct sctp_association
*asoc
)
1162 switch (asoc
->state
) {
1164 /* 5.2.1 INIT received in COOKIE-WAIT or COOKIE-ECHOED State */
1166 case SCTP_STATE_COOKIE_WAIT
:
1167 new_asoc
->c
.my_vtag
= asoc
->c
.my_vtag
;
1168 new_asoc
->c
.my_ttag
= asoc
->c
.my_vtag
;
1169 new_asoc
->c
.peer_ttag
= 0;
1172 case SCTP_STATE_COOKIE_ECHOED
:
1173 new_asoc
->c
.my_vtag
= asoc
->c
.my_vtag
;
1174 new_asoc
->c
.my_ttag
= asoc
->c
.my_vtag
;
1175 new_asoc
->c
.peer_ttag
= asoc
->c
.peer_vtag
;
1178 /* 5.2.2 Unexpected INIT in States Other than CLOSED, COOKIE-ECHOED,
1179 * COOKIE-WAIT and SHUTDOWN-ACK-SENT
1182 new_asoc
->c
.my_ttag
= asoc
->c
.my_vtag
;
1183 new_asoc
->c
.peer_ttag
= asoc
->c
.peer_vtag
;
1187 /* Other parameters for the endpoint SHOULD be copied from the
1188 * existing parameters of the association (e.g. number of
1189 * outbound streams) into the INIT ACK and cookie.
1191 new_asoc
->rwnd
= asoc
->rwnd
;
1192 new_asoc
->c
.sinit_num_ostreams
= asoc
->c
.sinit_num_ostreams
;
1193 new_asoc
->c
.sinit_max_instreams
= asoc
->c
.sinit_max_instreams
;
1194 new_asoc
->c
.initial_tsn
= asoc
->c
.initial_tsn
;
1198 * Compare vtag/tietag values to determine unexpected COOKIE-ECHO
1201 * RFC 2960 5.2.4 Handle a COOKIE ECHO when a TCB exists.
1203 * Returns value representing action to be taken. These action values
1204 * correspond to Action/Description values in RFC 2960, Table 2.
1206 static char sctp_tietags_compare(struct sctp_association
*new_asoc
,
1207 const struct sctp_association
*asoc
)
1209 /* In this case, the peer may have restarted. */
1210 if ((asoc
->c
.my_vtag
!= new_asoc
->c
.my_vtag
) &&
1211 (asoc
->c
.peer_vtag
!= new_asoc
->c
.peer_vtag
) &&
1212 (asoc
->c
.my_vtag
== new_asoc
->c
.my_ttag
) &&
1213 (asoc
->c
.peer_vtag
== new_asoc
->c
.peer_ttag
))
1216 /* Collision case B. */
1217 if ((asoc
->c
.my_vtag
== new_asoc
->c
.my_vtag
) &&
1218 ((asoc
->c
.peer_vtag
!= new_asoc
->c
.peer_vtag
) ||
1219 (0 == asoc
->c
.peer_vtag
))) {
1223 /* Collision case D. */
1224 if ((asoc
->c
.my_vtag
== new_asoc
->c
.my_vtag
) &&
1225 (asoc
->c
.peer_vtag
== new_asoc
->c
.peer_vtag
))
1228 /* Collision case C. */
1229 if ((asoc
->c
.my_vtag
!= new_asoc
->c
.my_vtag
) &&
1230 (asoc
->c
.peer_vtag
== new_asoc
->c
.peer_vtag
) &&
1231 (0 == new_asoc
->c
.my_ttag
) &&
1232 (0 == new_asoc
->c
.peer_ttag
))
1235 /* No match to any of the special cases; discard this packet. */
1239 /* Common helper routine for both duplicate and simulataneous INIT
1242 static sctp_disposition_t
sctp_sf_do_unexpected_init(
1243 const struct sctp_endpoint
*ep
,
1244 const struct sctp_association
*asoc
,
1245 const sctp_subtype_t type
,
1246 void *arg
, sctp_cmd_seq_t
*commands
)
1248 sctp_disposition_t retval
;
1249 struct sctp_chunk
*chunk
= arg
;
1250 struct sctp_chunk
*repl
;
1251 struct sctp_association
*new_asoc
;
1252 struct sctp_chunk
*err_chunk
;
1253 struct sctp_packet
*packet
;
1254 sctp_unrecognized_param_t
*unk_param
;
1258 * An endpoint MUST NOT bundle INIT, INIT ACK or
1259 * SHUTDOWN COMPLETE with any other chunks.
1262 * Furthermore, we require that the receiver of an INIT chunk MUST
1263 * enforce these rules by silently discarding an arriving packet
1264 * with an INIT chunk that is bundled with other chunks.
1266 if (!chunk
->singleton
)
1267 return sctp_sf_pdiscard(ep
, asoc
, type
, arg
, commands
);
1269 /* 3.1 A packet containing an INIT chunk MUST have a zero Verification
1272 if (chunk
->sctp_hdr
->vtag
!= 0)
1273 return sctp_sf_tabort_8_4_8(ep
, asoc
, type
, arg
, commands
);
1275 /* Make sure that the INIT chunk has a valid length.
1276 * In this case, we generate a protocol violation since we have
1277 * an association established.
1279 if (!sctp_chunk_length_valid(chunk
, sizeof(sctp_init_chunk_t
)))
1280 return sctp_sf_violation_chunklen(ep
, asoc
, type
, arg
,
1282 /* Grab the INIT header. */
1283 chunk
->subh
.init_hdr
= (sctp_inithdr_t
*) chunk
->skb
->data
;
1285 /* Tag the variable length parameters. */
1286 chunk
->param_hdr
.v
= skb_pull(chunk
->skb
, sizeof(sctp_inithdr_t
));
1288 /* Verify the INIT chunk before processing it. */
1290 if (!sctp_verify_init(asoc
, chunk
->chunk_hdr
->type
,
1291 (sctp_init_chunk_t
*)chunk
->chunk_hdr
, chunk
,
1293 /* This chunk contains fatal error. It is to be discarded.
1294 * Send an ABORT, with causes if there is any.
1297 packet
= sctp_abort_pkt_new(ep
, asoc
, arg
,
1298 (__u8
*)(err_chunk
->chunk_hdr
) +
1299 sizeof(sctp_chunkhdr_t
),
1300 ntohs(err_chunk
->chunk_hdr
->length
) -
1301 sizeof(sctp_chunkhdr_t
));
1304 sctp_add_cmd_sf(commands
, SCTP_CMD_SEND_PKT
,
1305 SCTP_PACKET(packet
));
1306 SCTP_INC_STATS(SCTP_MIB_OUTCTRLCHUNKS
);
1307 retval
= SCTP_DISPOSITION_CONSUME
;
1309 retval
= SCTP_DISPOSITION_NOMEM
;
1313 return sctp_sf_tabort_8_4_8(ep
, asoc
, type
, arg
,
1319 * Other parameters for the endpoint SHOULD be copied from the
1320 * existing parameters of the association (e.g. number of
1321 * outbound streams) into the INIT ACK and cookie.
1322 * FIXME: We are copying parameters from the endpoint not the
1325 new_asoc
= sctp_make_temp_asoc(ep
, chunk
, GFP_ATOMIC
);
1329 /* In the outbound INIT ACK the endpoint MUST copy its current
1330 * Verification Tag and Peers Verification tag into a reserved
1331 * place (local tie-tag and per tie-tag) within the state cookie.
1333 if (!sctp_process_init(new_asoc
, chunk
->chunk_hdr
->type
,
1335 (sctp_init_chunk_t
*)chunk
->chunk_hdr
,
1337 retval
= SCTP_DISPOSITION_NOMEM
;
1341 /* Make sure no new addresses are being added during the
1342 * restart. Do not do this check for COOKIE-WAIT state,
1343 * since there are no peer addresses to check against.
1344 * Upon return an ABORT will have been sent if needed.
1346 if (!sctp_state(asoc
, COOKIE_WAIT
)) {
1347 if (!sctp_sf_check_restart_addrs(new_asoc
, asoc
, chunk
,
1349 retval
= SCTP_DISPOSITION_CONSUME
;
1354 sctp_tietags_populate(new_asoc
, asoc
);
1356 /* B) "Z" shall respond immediately with an INIT ACK chunk. */
1358 /* If there are errors need to be reported for unknown parameters,
1359 * make sure to reserve enough room in the INIT ACK for them.
1363 len
= ntohs(err_chunk
->chunk_hdr
->length
) -
1364 sizeof(sctp_chunkhdr_t
);
1367 if (sctp_assoc_set_bind_addr_from_ep(new_asoc
, GFP_ATOMIC
) < 0)
1370 repl
= sctp_make_init_ack(new_asoc
, chunk
, GFP_ATOMIC
, len
);
1374 /* If there are errors need to be reported for unknown parameters,
1375 * include them in the outgoing INIT ACK as "Unrecognized parameter"
1379 /* Get the "Unrecognized parameter" parameter(s) out of the
1380 * ERROR chunk generated by sctp_verify_init(). Since the
1381 * error cause code for "unknown parameter" and the
1382 * "Unrecognized parameter" type is the same, we can
1383 * construct the parameters in INIT ACK by copying the
1384 * ERROR causes over.
1386 unk_param
= (sctp_unrecognized_param_t
*)
1387 ((__u8
*)(err_chunk
->chunk_hdr
) +
1388 sizeof(sctp_chunkhdr_t
));
1389 /* Replace the cause code with the "Unrecognized parameter"
1392 sctp_addto_chunk(repl
, len
, unk_param
);
1395 sctp_add_cmd_sf(commands
, SCTP_CMD_NEW_ASOC
, SCTP_ASOC(new_asoc
));
1396 sctp_add_cmd_sf(commands
, SCTP_CMD_REPLY
, SCTP_CHUNK(repl
));
1399 * Note: After sending out INIT ACK with the State Cookie parameter,
1400 * "Z" MUST NOT allocate any resources for this new association.
1401 * Otherwise, "Z" will be vulnerable to resource attacks.
1403 sctp_add_cmd_sf(commands
, SCTP_CMD_DELETE_TCB
, SCTP_NULL());
1404 retval
= SCTP_DISPOSITION_CONSUME
;
1408 sctp_chunk_free(err_chunk
);
1411 retval
= SCTP_DISPOSITION_NOMEM
;
1415 sctp_association_free(new_asoc
);
1420 * Handle simultanous INIT.
1421 * This means we started an INIT and then we got an INIT request from
1424 * Section: 5.2.1 INIT received in COOKIE-WAIT or COOKIE-ECHOED State (Item B)
1425 * This usually indicates an initialization collision, i.e., each
1426 * endpoint is attempting, at about the same time, to establish an
1427 * association with the other endpoint.
1429 * Upon receipt of an INIT in the COOKIE-WAIT or COOKIE-ECHOED state, an
1430 * endpoint MUST respond with an INIT ACK using the same parameters it
1431 * sent in its original INIT chunk (including its Verification Tag,
1432 * unchanged). These original parameters are combined with those from the
1433 * newly received INIT chunk. The endpoint shall also generate a State
1434 * Cookie with the INIT ACK. The endpoint uses the parameters sent in its
1435 * INIT to calculate the State Cookie.
1437 * After that, the endpoint MUST NOT change its state, the T1-init
1438 * timer shall be left running and the corresponding TCB MUST NOT be
1439 * destroyed. The normal procedures for handling State Cookies when
1440 * a TCB exists will resolve the duplicate INITs to a single association.
1442 * For an endpoint that is in the COOKIE-ECHOED state it MUST populate
1443 * its Tie-Tags with the Tag information of itself and its peer (see
1444 * section 5.2.2 for a description of the Tie-Tags).
1446 * Verification Tag: Not explicit, but an INIT can not have a valid
1447 * verification tag, so we skip the check.
1450 * (endpoint, asoc, chunk)
1453 * (asoc, reply_msg, msg_up, timers, counters)
1455 * The return value is the disposition of the chunk.
1457 sctp_disposition_t
sctp_sf_do_5_2_1_siminit(const struct sctp_endpoint
*ep
,
1458 const struct sctp_association
*asoc
,
1459 const sctp_subtype_t type
,
1461 sctp_cmd_seq_t
*commands
)
1463 /* Call helper to do the real work for both simulataneous and
1464 * duplicate INIT chunk handling.
1466 return sctp_sf_do_unexpected_init(ep
, asoc
, type
, arg
, commands
);
1470 * Handle duplicated INIT messages. These are usually delayed
1473 * Section: 5.2.2 Unexpected INIT in States Other than CLOSED,
1474 * COOKIE-ECHOED and COOKIE-WAIT
1476 * Unless otherwise stated, upon reception of an unexpected INIT for
1477 * this association, the endpoint shall generate an INIT ACK with a
1478 * State Cookie. In the outbound INIT ACK the endpoint MUST copy its
1479 * current Verification Tag and peer's Verification Tag into a reserved
1480 * place within the state cookie. We shall refer to these locations as
1481 * the Peer's-Tie-Tag and the Local-Tie-Tag. The outbound SCTP packet
1482 * containing this INIT ACK MUST carry a Verification Tag value equal to
1483 * the Initiation Tag found in the unexpected INIT. And the INIT ACK
1484 * MUST contain a new Initiation Tag (randomly generated see Section
1485 * 5.3.1). Other parameters for the endpoint SHOULD be copied from the
1486 * existing parameters of the association (e.g. number of outbound
1487 * streams) into the INIT ACK and cookie.
1489 * After sending out the INIT ACK, the endpoint shall take no further
1490 * actions, i.e., the existing association, including its current state,
1491 * and the corresponding TCB MUST NOT be changed.
1493 * Note: Only when a TCB exists and the association is not in a COOKIE-
1494 * WAIT state are the Tie-Tags populated. For a normal association INIT
1495 * (i.e. the endpoint is in a COOKIE-WAIT state), the Tie-Tags MUST be
1496 * set to 0 (indicating that no previous TCB existed). The INIT ACK and
1497 * State Cookie are populated as specified in section 5.2.1.
1499 * Verification Tag: Not specified, but an INIT has no way of knowing
1500 * what the verification tag could be, so we ignore it.
1503 * (endpoint, asoc, chunk)
1506 * (asoc, reply_msg, msg_up, timers, counters)
1508 * The return value is the disposition of the chunk.
1510 sctp_disposition_t
sctp_sf_do_5_2_2_dupinit(const struct sctp_endpoint
*ep
,
1511 const struct sctp_association
*asoc
,
1512 const sctp_subtype_t type
,
1514 sctp_cmd_seq_t
*commands
)
1516 /* Call helper to do the real work for both simulataneous and
1517 * duplicate INIT chunk handling.
1519 return sctp_sf_do_unexpected_init(ep
, asoc
, type
, arg
, commands
);
1524 /* Unexpected COOKIE-ECHO handler for peer restart (Table 2, action 'A')
1527 * A) In this case, the peer may have restarted.
1529 static sctp_disposition_t
sctp_sf_do_dupcook_a(const struct sctp_endpoint
*ep
,
1530 const struct sctp_association
*asoc
,
1531 struct sctp_chunk
*chunk
,
1532 sctp_cmd_seq_t
*commands
,
1533 struct sctp_association
*new_asoc
)
1535 sctp_init_chunk_t
*peer_init
;
1536 struct sctp_ulpevent
*ev
;
1537 struct sctp_chunk
*repl
;
1538 struct sctp_chunk
*err
;
1539 sctp_disposition_t disposition
;
1541 /* new_asoc is a brand-new association, so these are not yet
1542 * side effects--it is safe to run them here.
1544 peer_init
= &chunk
->subh
.cookie_hdr
->c
.peer_init
[0];
1546 if (!sctp_process_init(new_asoc
, chunk
->chunk_hdr
->type
,
1547 sctp_source(chunk
), peer_init
,
1551 /* Make sure no new addresses are being added during the
1552 * restart. Though this is a pretty complicated attack
1553 * since you'd have to get inside the cookie.
1555 if (!sctp_sf_check_restart_addrs(new_asoc
, asoc
, chunk
, commands
)) {
1556 return SCTP_DISPOSITION_CONSUME
;
1559 /* If the endpoint is in the SHUTDOWN-ACK-SENT state and recognizes
1560 * the peer has restarted (Action A), it MUST NOT setup a new
1561 * association but instead resend the SHUTDOWN ACK and send an ERROR
1562 * chunk with a "Cookie Received while Shutting Down" error cause to
1565 if (sctp_state(asoc
, SHUTDOWN_ACK_SENT
)) {
1566 disposition
= sctp_sf_do_9_2_reshutack(ep
, asoc
,
1567 SCTP_ST_CHUNK(chunk
->chunk_hdr
->type
),
1569 if (SCTP_DISPOSITION_NOMEM
== disposition
)
1572 err
= sctp_make_op_error(asoc
, chunk
,
1573 SCTP_ERROR_COOKIE_IN_SHUTDOWN
,
1576 sctp_add_cmd_sf(commands
, SCTP_CMD_REPLY
,
1579 return SCTP_DISPOSITION_CONSUME
;
1582 /* For now, fail any unsent/unacked data. Consider the optional
1583 * choice of resending of this data.
1585 sctp_add_cmd_sf(commands
, SCTP_CMD_PURGE_OUTQUEUE
, SCTP_NULL());
1587 /* Update the content of current association. */
1588 sctp_add_cmd_sf(commands
, SCTP_CMD_UPDATE_ASSOC
, SCTP_ASOC(new_asoc
));
1590 repl
= sctp_make_cookie_ack(new_asoc
, chunk
);
1594 sctp_add_cmd_sf(commands
, SCTP_CMD_REPLY
, SCTP_CHUNK(repl
));
1596 /* Report association restart to upper layer. */
1597 ev
= sctp_ulpevent_make_assoc_change(asoc
, 0, SCTP_RESTART
, 0,
1598 new_asoc
->c
.sinit_num_ostreams
,
1599 new_asoc
->c
.sinit_max_instreams
,
1604 sctp_add_cmd_sf(commands
, SCTP_CMD_EVENT_ULP
, SCTP_ULPEVENT(ev
));
1605 return SCTP_DISPOSITION_CONSUME
;
1608 sctp_chunk_free(repl
);
1610 return SCTP_DISPOSITION_NOMEM
;
1613 /* Unexpected COOKIE-ECHO handler for setup collision (Table 2, action 'B')
1616 * B) In this case, both sides may be attempting to start an association
1617 * at about the same time but the peer endpoint started its INIT
1618 * after responding to the local endpoint's INIT
1620 /* This case represents an initialization collision. */
1621 static sctp_disposition_t
sctp_sf_do_dupcook_b(const struct sctp_endpoint
*ep
,
1622 const struct sctp_association
*asoc
,
1623 struct sctp_chunk
*chunk
,
1624 sctp_cmd_seq_t
*commands
,
1625 struct sctp_association
*new_asoc
)
1627 sctp_init_chunk_t
*peer_init
;
1628 struct sctp_ulpevent
*ev
;
1629 struct sctp_chunk
*repl
;
1631 /* new_asoc is a brand-new association, so these are not yet
1632 * side effects--it is safe to run them here.
1634 peer_init
= &chunk
->subh
.cookie_hdr
->c
.peer_init
[0];
1635 if (!sctp_process_init(new_asoc
, chunk
->chunk_hdr
->type
,
1636 sctp_source(chunk
), peer_init
,
1640 /* Update the content of current association. */
1641 sctp_add_cmd_sf(commands
, SCTP_CMD_UPDATE_ASSOC
, SCTP_ASOC(new_asoc
));
1642 sctp_add_cmd_sf(commands
, SCTP_CMD_NEW_STATE
,
1643 SCTP_STATE(SCTP_STATE_ESTABLISHED
));
1644 SCTP_INC_STATS(SCTP_MIB_CURRESTAB
);
1645 sctp_add_cmd_sf(commands
, SCTP_CMD_HB_TIMERS_START
, SCTP_NULL());
1647 repl
= sctp_make_cookie_ack(new_asoc
, chunk
);
1651 sctp_add_cmd_sf(commands
, SCTP_CMD_REPLY
, SCTP_CHUNK(repl
));
1652 sctp_add_cmd_sf(commands
, SCTP_CMD_TRANSMIT
, SCTP_NULL());
1654 /* RFC 2960 5.1 Normal Establishment of an Association
1656 * D) IMPLEMENTATION NOTE: An implementation may choose to
1657 * send the Communication Up notification to the SCTP user
1658 * upon reception of a valid COOKIE ECHO chunk.
1660 ev
= sctp_ulpevent_make_assoc_change(asoc
, 0, SCTP_COMM_UP
, 0,
1661 new_asoc
->c
.sinit_num_ostreams
,
1662 new_asoc
->c
.sinit_max_instreams
,
1667 sctp_add_cmd_sf(commands
, SCTP_CMD_EVENT_ULP
, SCTP_ULPEVENT(ev
));
1669 /* Sockets API Draft Section 5.3.1.6
1670 * When a peer sends a Adaption Layer Indication parameter , SCTP
1671 * delivers this notification to inform the application that of the
1672 * peers requested adaption layer.
1674 if (asoc
->peer
.adaption_ind
) {
1675 ev
= sctp_ulpevent_make_adaption_indication(asoc
, GFP_ATOMIC
);
1679 sctp_add_cmd_sf(commands
, SCTP_CMD_EVENT_ULP
,
1683 return SCTP_DISPOSITION_CONSUME
;
1686 sctp_chunk_free(repl
);
1688 return SCTP_DISPOSITION_NOMEM
;
1691 /* Unexpected COOKIE-ECHO handler for setup collision (Table 2, action 'C')
1694 * C) In this case, the local endpoint's cookie has arrived late.
1695 * Before it arrived, the local endpoint sent an INIT and received an
1696 * INIT-ACK and finally sent a COOKIE ECHO with the peer's same tag
1697 * but a new tag of its own.
1699 /* This case represents an initialization collision. */
1700 static sctp_disposition_t
sctp_sf_do_dupcook_c(const struct sctp_endpoint
*ep
,
1701 const struct sctp_association
*asoc
,
1702 struct sctp_chunk
*chunk
,
1703 sctp_cmd_seq_t
*commands
,
1704 struct sctp_association
*new_asoc
)
1706 /* The cookie should be silently discarded.
1707 * The endpoint SHOULD NOT change states and should leave
1708 * any timers running.
1710 return SCTP_DISPOSITION_DISCARD
;
1713 /* Unexpected COOKIE-ECHO handler lost chunk (Table 2, action 'D')
1717 * D) When both local and remote tags match the endpoint should always
1718 * enter the ESTABLISHED state, if it has not already done so.
1720 /* This case represents an initialization collision. */
1721 static sctp_disposition_t
sctp_sf_do_dupcook_d(const struct sctp_endpoint
*ep
,
1722 const struct sctp_association
*asoc
,
1723 struct sctp_chunk
*chunk
,
1724 sctp_cmd_seq_t
*commands
,
1725 struct sctp_association
*new_asoc
)
1727 struct sctp_ulpevent
*ev
= NULL
;
1728 struct sctp_chunk
*repl
;
1730 /* Clarification from Implementor's Guide:
1731 * D) When both local and remote tags match the endpoint should
1732 * enter the ESTABLISHED state, if it is in the COOKIE-ECHOED state.
1733 * It should stop any cookie timer that may be running and send
1737 /* Don't accidentally move back into established state. */
1738 if (asoc
->state
< SCTP_STATE_ESTABLISHED
) {
1739 sctp_add_cmd_sf(commands
, SCTP_CMD_TIMER_STOP
,
1740 SCTP_TO(SCTP_EVENT_TIMEOUT_T1_COOKIE
));
1741 sctp_add_cmd_sf(commands
, SCTP_CMD_NEW_STATE
,
1742 SCTP_STATE(SCTP_STATE_ESTABLISHED
));
1743 SCTP_INC_STATS(SCTP_MIB_CURRESTAB
);
1744 sctp_add_cmd_sf(commands
, SCTP_CMD_HB_TIMERS_START
,
1747 /* RFC 2960 5.1 Normal Establishment of an Association
1749 * D) IMPLEMENTATION NOTE: An implementation may choose
1750 * to send the Communication Up notification to the
1751 * SCTP user upon reception of a valid COOKIE
1754 ev
= sctp_ulpevent_make_assoc_change(new_asoc
, 0,
1756 new_asoc
->c
.sinit_num_ostreams
,
1757 new_asoc
->c
.sinit_max_instreams
,
1761 sctp_add_cmd_sf(commands
, SCTP_CMD_EVENT_ULP
,
1764 /* Sockets API Draft Section 5.3.1.6
1765 * When a peer sends a Adaption Layer Indication parameter,
1766 * SCTP delivers this notification to inform the application
1767 * that of the peers requested adaption layer.
1769 if (new_asoc
->peer
.adaption_ind
) {
1770 ev
= sctp_ulpevent_make_adaption_indication(new_asoc
,
1775 sctp_add_cmd_sf(commands
, SCTP_CMD_EVENT_ULP
,
1779 sctp_add_cmd_sf(commands
, SCTP_CMD_TRANSMIT
, SCTP_NULL());
1781 repl
= sctp_make_cookie_ack(new_asoc
, chunk
);
1785 sctp_add_cmd_sf(commands
, SCTP_CMD_REPLY
, SCTP_CHUNK(repl
));
1786 sctp_add_cmd_sf(commands
, SCTP_CMD_TRANSMIT
, SCTP_NULL());
1788 return SCTP_DISPOSITION_CONSUME
;
1792 sctp_ulpevent_free(ev
);
1793 return SCTP_DISPOSITION_NOMEM
;
1797 * Handle a duplicate COOKIE-ECHO. This usually means a cookie-carrying
1798 * chunk was retransmitted and then delayed in the network.
1800 * Section: 5.2.4 Handle a COOKIE ECHO when a TCB exists
1802 * Verification Tag: None. Do cookie validation.
1805 * (endpoint, asoc, chunk)
1808 * (asoc, reply_msg, msg_up, timers, counters)
1810 * The return value is the disposition of the chunk.
1812 sctp_disposition_t
sctp_sf_do_5_2_4_dupcook(const struct sctp_endpoint
*ep
,
1813 const struct sctp_association
*asoc
,
1814 const sctp_subtype_t type
,
1816 sctp_cmd_seq_t
*commands
)
1818 sctp_disposition_t retval
;
1819 struct sctp_chunk
*chunk
= arg
;
1820 struct sctp_association
*new_asoc
;
1823 struct sctp_chunk
*err_chk_p
;
1825 /* Make sure that the chunk has a valid length from the protocol
1826 * perspective. In this case check to make sure we have at least
1827 * enough for the chunk header. Cookie length verification is
1830 if (!sctp_chunk_length_valid(chunk
, sizeof(sctp_chunkhdr_t
)))
1831 return sctp_sf_violation_chunklen(ep
, asoc
, type
, arg
,
1834 /* "Decode" the chunk. We have no optional parameters so we
1835 * are in good shape.
1837 chunk
->subh
.cookie_hdr
= (struct sctp_signed_cookie
*)chunk
->skb
->data
;
1838 skb_pull(chunk
->skb
, ntohs(chunk
->chunk_hdr
->length
) -
1839 sizeof(sctp_chunkhdr_t
));
1841 /* In RFC 2960 5.2.4 3, if both Verification Tags in the State Cookie
1842 * of a duplicate COOKIE ECHO match the Verification Tags of the
1843 * current association, consider the State Cookie valid even if
1844 * the lifespan is exceeded.
1846 new_asoc
= sctp_unpack_cookie(ep
, asoc
, chunk
, GFP_ATOMIC
, &error
,
1850 * If the re-build failed, what is the proper error path
1853 * [We should abort the association. --piggy]
1856 /* FIXME: Several errors are possible. A bad cookie should
1857 * be silently discarded, but think about logging it too.
1860 case -SCTP_IERROR_NOMEM
:
1863 case -SCTP_IERROR_STALE_COOKIE
:
1864 sctp_send_stale_cookie_err(ep
, asoc
, chunk
, commands
,
1866 return sctp_sf_pdiscard(ep
, asoc
, type
, arg
, commands
);
1867 case -SCTP_IERROR_BAD_SIG
:
1869 return sctp_sf_pdiscard(ep
, asoc
, type
, arg
, commands
);
1873 /* Compare the tie_tag in cookie with the verification tag of
1874 * current association.
1876 action
= sctp_tietags_compare(new_asoc
, asoc
);
1879 case 'A': /* Association restart. */
1880 retval
= sctp_sf_do_dupcook_a(ep
, asoc
, chunk
, commands
,
1884 case 'B': /* Collision case B. */
1885 retval
= sctp_sf_do_dupcook_b(ep
, asoc
, chunk
, commands
,
1889 case 'C': /* Collision case C. */
1890 retval
= sctp_sf_do_dupcook_c(ep
, asoc
, chunk
, commands
,
1894 case 'D': /* Collision case D. */
1895 retval
= sctp_sf_do_dupcook_d(ep
, asoc
, chunk
, commands
,
1899 default: /* Discard packet for all others. */
1900 retval
= sctp_sf_pdiscard(ep
, asoc
, type
, arg
, commands
);
1904 /* Delete the tempory new association. */
1905 sctp_add_cmd_sf(commands
, SCTP_CMD_NEW_ASOC
, SCTP_ASOC(new_asoc
));
1906 sctp_add_cmd_sf(commands
, SCTP_CMD_DELETE_TCB
, SCTP_NULL());
1911 return SCTP_DISPOSITION_NOMEM
;
1915 * Process an ABORT. (SHUTDOWN-PENDING state)
1917 * See sctp_sf_do_9_1_abort().
1919 sctp_disposition_t
sctp_sf_shutdown_pending_abort(
1920 const struct sctp_endpoint
*ep
,
1921 const struct sctp_association
*asoc
,
1922 const sctp_subtype_t type
,
1924 sctp_cmd_seq_t
*commands
)
1926 struct sctp_chunk
*chunk
= arg
;
1928 if (!sctp_vtag_verify_either(chunk
, asoc
))
1929 return sctp_sf_pdiscard(ep
, asoc
, type
, arg
, commands
);
1931 /* Make sure that the ABORT chunk has a valid length.
1932 * Since this is an ABORT chunk, we have to discard it
1933 * because of the following text:
1934 * RFC 2960, Section 3.3.7
1935 * If an endpoint receives an ABORT with a format error or for an
1936 * association that doesn't exist, it MUST silently discard it.
1937 * Becasue the length is "invalid", we can't really discard just
1938 * as we do not know its true length. So, to be safe, discard the
1941 if (!sctp_chunk_length_valid(chunk
, sizeof(sctp_abort_chunk_t
)))
1942 return sctp_sf_pdiscard(ep
, asoc
, type
, arg
, commands
);
1944 /* Stop the T5-shutdown guard timer. */
1945 sctp_add_cmd_sf(commands
, SCTP_CMD_TIMER_STOP
,
1946 SCTP_TO(SCTP_EVENT_TIMEOUT_T5_SHUTDOWN_GUARD
));
1948 return sctp_sf_do_9_1_abort(ep
, asoc
, type
, arg
, commands
);
1952 * Process an ABORT. (SHUTDOWN-SENT state)
1954 * See sctp_sf_do_9_1_abort().
1956 sctp_disposition_t
sctp_sf_shutdown_sent_abort(const struct sctp_endpoint
*ep
,
1957 const struct sctp_association
*asoc
,
1958 const sctp_subtype_t type
,
1960 sctp_cmd_seq_t
*commands
)
1962 struct sctp_chunk
*chunk
= arg
;
1964 if (!sctp_vtag_verify_either(chunk
, asoc
))
1965 return sctp_sf_pdiscard(ep
, asoc
, type
, arg
, commands
);
1967 /* Make sure that the ABORT chunk has a valid length.
1968 * Since this is an ABORT chunk, we have to discard it
1969 * because of the following text:
1970 * RFC 2960, Section 3.3.7
1971 * If an endpoint receives an ABORT with a format error or for an
1972 * association that doesn't exist, it MUST silently discard it.
1973 * Becasue the length is "invalid", we can't really discard just
1974 * as we do not know its true length. So, to be safe, discard the
1977 if (!sctp_chunk_length_valid(chunk
, sizeof(sctp_abort_chunk_t
)))
1978 return sctp_sf_pdiscard(ep
, asoc
, type
, arg
, commands
);
1980 /* Stop the T2-shutdown timer. */
1981 sctp_add_cmd_sf(commands
, SCTP_CMD_TIMER_STOP
,
1982 SCTP_TO(SCTP_EVENT_TIMEOUT_T2_SHUTDOWN
));
1984 /* Stop the T5-shutdown guard timer. */
1985 sctp_add_cmd_sf(commands
, SCTP_CMD_TIMER_STOP
,
1986 SCTP_TO(SCTP_EVENT_TIMEOUT_T5_SHUTDOWN_GUARD
));
1988 return sctp_sf_do_9_1_abort(ep
, asoc
, type
, arg
, commands
);
1992 * Process an ABORT. (SHUTDOWN-ACK-SENT state)
1994 * See sctp_sf_do_9_1_abort().
1996 sctp_disposition_t
sctp_sf_shutdown_ack_sent_abort(
1997 const struct sctp_endpoint
*ep
,
1998 const struct sctp_association
*asoc
,
1999 const sctp_subtype_t type
,
2001 sctp_cmd_seq_t
*commands
)
2003 /* The same T2 timer, so we should be able to use
2004 * common function with the SHUTDOWN-SENT state.
2006 return sctp_sf_shutdown_sent_abort(ep
, asoc
, type
, arg
, commands
);
2010 * Handle an Error received in COOKIE_ECHOED state.
2012 * Only handle the error type of stale COOKIE Error, the other errors will
2016 * (endpoint, asoc, chunk)
2019 * (asoc, reply_msg, msg_up, timers, counters)
2021 * The return value is the disposition of the chunk.
2023 sctp_disposition_t
sctp_sf_cookie_echoed_err(const struct sctp_endpoint
*ep
,
2024 const struct sctp_association
*asoc
,
2025 const sctp_subtype_t type
,
2027 sctp_cmd_seq_t
*commands
)
2029 struct sctp_chunk
*chunk
= arg
;
2032 if (!sctp_vtag_verify(chunk
, asoc
))
2033 return sctp_sf_pdiscard(ep
, asoc
, type
, arg
, commands
);
2035 /* Make sure that the ERROR chunk has a valid length.
2036 * The parameter walking depends on this as well.
2038 if (!sctp_chunk_length_valid(chunk
, sizeof(sctp_operr_chunk_t
)))
2039 return sctp_sf_violation_chunklen(ep
, asoc
, type
, arg
,
2042 /* Process the error here */
2043 /* FUTURE FIXME: When PR-SCTP related and other optional
2044 * parms are emitted, this will have to change to handle multiple
2047 sctp_walk_errors(err
, chunk
->chunk_hdr
) {
2048 if (SCTP_ERROR_STALE_COOKIE
== err
->cause
)
2049 return sctp_sf_do_5_2_6_stale(ep
, asoc
, type
,
2053 /* It is possible to have malformed error causes, and that
2054 * will cause us to end the walk early. However, since
2055 * we are discarding the packet, there should be no adverse
2058 return sctp_sf_pdiscard(ep
, asoc
, type
, arg
, commands
);
2062 * Handle a Stale COOKIE Error
2064 * Section: 5.2.6 Handle Stale COOKIE Error
2065 * If the association is in the COOKIE-ECHOED state, the endpoint may elect
2066 * one of the following three alternatives.
2068 * 3) Send a new INIT chunk to the endpoint, adding a Cookie
2069 * Preservative parameter requesting an extension to the lifetime of
2070 * the State Cookie. When calculating the time extension, an
2071 * implementation SHOULD use the RTT information measured based on the
2072 * previous COOKIE ECHO / ERROR exchange, and should add no more
2073 * than 1 second beyond the measured RTT, due to long State Cookie
2074 * lifetimes making the endpoint more subject to a replay attack.
2076 * Verification Tag: Not explicit, but safe to ignore.
2079 * (endpoint, asoc, chunk)
2082 * (asoc, reply_msg, msg_up, timers, counters)
2084 * The return value is the disposition of the chunk.
2086 static sctp_disposition_t
sctp_sf_do_5_2_6_stale(const struct sctp_endpoint
*ep
,
2087 const struct sctp_association
*asoc
,
2088 const sctp_subtype_t type
,
2090 sctp_cmd_seq_t
*commands
)
2092 struct sctp_chunk
*chunk
= arg
;
2094 sctp_cookie_preserve_param_t bht
;
2096 struct sctp_chunk
*reply
;
2097 struct sctp_bind_addr
*bp
;
2100 attempts
= asoc
->counters
[SCTP_COUNTER_INIT_ERROR
] + 1;
2102 if (attempts
>= asoc
->max_init_attempts
) {
2103 sctp_add_cmd_sf(commands
, SCTP_CMD_INIT_FAILED
,
2104 SCTP_U32(SCTP_ERROR_STALE_COOKIE
));
2105 return SCTP_DISPOSITION_DELETE_TCB
;
2108 err
= (sctp_errhdr_t
*)(chunk
->skb
->data
);
2110 /* When calculating the time extension, an implementation
2111 * SHOULD use the RTT information measured based on the
2112 * previous COOKIE ECHO / ERROR exchange, and should add no
2113 * more than 1 second beyond the measured RTT, due to long
2114 * State Cookie lifetimes making the endpoint more subject to
2116 * Measure of Staleness's unit is usec. (1/1000000 sec)
2117 * Suggested Cookie Life-span Increment's unit is msec.
2119 * In general, if you use the suggested cookie life, the value
2120 * found in the field of measure of staleness should be doubled
2121 * to give ample time to retransmit the new cookie and thus
2122 * yield a higher probability of success on the reattempt.
2124 stale
= ntohl(*(suseconds_t
*)((u8
*)err
+ sizeof(sctp_errhdr_t
)));
2125 stale
= (stale
* 2) / 1000;
2127 bht
.param_hdr
.type
= SCTP_PARAM_COOKIE_PRESERVATIVE
;
2128 bht
.param_hdr
.length
= htons(sizeof(bht
));
2129 bht
.lifespan_increment
= htonl(stale
);
2131 /* Build that new INIT chunk. */
2132 bp
= (struct sctp_bind_addr
*) &asoc
->base
.bind_addr
;
2133 reply
= sctp_make_init(asoc
, bp
, GFP_ATOMIC
, sizeof(bht
));
2137 sctp_addto_chunk(reply
, sizeof(bht
), &bht
);
2139 /* Clear peer's init_tag cached in assoc as we are sending a new INIT */
2140 sctp_add_cmd_sf(commands
, SCTP_CMD_CLEAR_INIT_TAG
, SCTP_NULL());
2142 /* Stop pending T3-rtx and heartbeat timers */
2143 sctp_add_cmd_sf(commands
, SCTP_CMD_T3_RTX_TIMERS_STOP
, SCTP_NULL());
2144 sctp_add_cmd_sf(commands
, SCTP_CMD_HB_TIMERS_STOP
, SCTP_NULL());
2146 /* Delete non-primary peer ip addresses since we are transitioning
2147 * back to the COOKIE-WAIT state
2149 sctp_add_cmd_sf(commands
, SCTP_CMD_DEL_NON_PRIMARY
, SCTP_NULL());
2151 /* If we've sent any data bundled with COOKIE-ECHO we will need to
2154 sctp_add_cmd_sf(commands
, SCTP_CMD_RETRAN
,
2155 SCTP_TRANSPORT(asoc
->peer
.primary_path
));
2157 /* Cast away the const modifier, as we want to just
2158 * rerun it through as a sideffect.
2160 sctp_add_cmd_sf(commands
, SCTP_CMD_COUNTER_INC
,
2161 SCTP_COUNTER(SCTP_COUNTER_INIT_ERROR
));
2163 sctp_add_cmd_sf(commands
, SCTP_CMD_TIMER_STOP
,
2164 SCTP_TO(SCTP_EVENT_TIMEOUT_T1_COOKIE
));
2165 sctp_add_cmd_sf(commands
, SCTP_CMD_NEW_STATE
,
2166 SCTP_STATE(SCTP_STATE_COOKIE_WAIT
));
2167 sctp_add_cmd_sf(commands
, SCTP_CMD_TIMER_START
,
2168 SCTP_TO(SCTP_EVENT_TIMEOUT_T1_INIT
));
2170 sctp_add_cmd_sf(commands
, SCTP_CMD_REPLY
, SCTP_CHUNK(reply
));
2172 return SCTP_DISPOSITION_CONSUME
;
2175 return SCTP_DISPOSITION_NOMEM
;
2182 * After checking the Verification Tag, the receiving endpoint shall
2183 * remove the association from its record, and shall report the
2184 * termination to its upper layer.
2186 * Verification Tag: 8.5.1 Exceptions in Verification Tag Rules
2187 * B) Rules for packet carrying ABORT:
2189 * - The endpoint shall always fill in the Verification Tag field of the
2190 * outbound packet with the destination endpoint's tag value if it
2193 * - If the ABORT is sent in response to an OOTB packet, the endpoint
2194 * MUST follow the procedure described in Section 8.4.
2196 * - The receiver MUST accept the packet if the Verification Tag
2197 * matches either its own tag, OR the tag of its peer. Otherwise, the
2198 * receiver MUST silently discard the packet and take no further
2202 * (endpoint, asoc, chunk)
2205 * (asoc, reply_msg, msg_up, timers, counters)
2207 * The return value is the disposition of the chunk.
2209 sctp_disposition_t
sctp_sf_do_9_1_abort(const struct sctp_endpoint
*ep
,
2210 const struct sctp_association
*asoc
,
2211 const sctp_subtype_t type
,
2213 sctp_cmd_seq_t
*commands
)
2215 struct sctp_chunk
*chunk
= arg
;
2217 __u16 error
= SCTP_ERROR_NO_ERROR
;
2219 if (!sctp_vtag_verify_either(chunk
, asoc
))
2220 return sctp_sf_pdiscard(ep
, asoc
, type
, arg
, commands
);
2222 /* Make sure that the ABORT chunk has a valid length.
2223 * Since this is an ABORT chunk, we have to discard it
2224 * because of the following text:
2225 * RFC 2960, Section 3.3.7
2226 * If an endpoint receives an ABORT with a format error or for an
2227 * association that doesn't exist, it MUST silently discard it.
2228 * Becasue the length is "invalid", we can't really discard just
2229 * as we do not know its true length. So, to be safe, discard the
2232 if (!sctp_chunk_length_valid(chunk
, sizeof(sctp_abort_chunk_t
)))
2233 return sctp_sf_pdiscard(ep
, asoc
, type
, arg
, commands
);
2235 /* See if we have an error cause code in the chunk. */
2236 len
= ntohs(chunk
->chunk_hdr
->length
);
2237 if (len
>= sizeof(struct sctp_chunkhdr
) + sizeof(struct sctp_errhdr
))
2238 error
= ((sctp_errhdr_t
*)chunk
->skb
->data
)->cause
;
2240 /* ASSOC_FAILED will DELETE_TCB. */
2241 sctp_add_cmd_sf(commands
, SCTP_CMD_ASSOC_FAILED
, SCTP_U32(error
));
2242 SCTP_INC_STATS(SCTP_MIB_ABORTEDS
);
2243 SCTP_DEC_STATS(SCTP_MIB_CURRESTAB
);
2245 return SCTP_DISPOSITION_ABORT
;
2249 * Process an ABORT. (COOKIE-WAIT state)
2251 * See sctp_sf_do_9_1_abort() above.
2253 sctp_disposition_t
sctp_sf_cookie_wait_abort(const struct sctp_endpoint
*ep
,
2254 const struct sctp_association
*asoc
,
2255 const sctp_subtype_t type
,
2257 sctp_cmd_seq_t
*commands
)
2259 struct sctp_chunk
*chunk
= arg
;
2261 __u16 error
= SCTP_ERROR_NO_ERROR
;
2263 if (!sctp_vtag_verify_either(chunk
, asoc
))
2264 return sctp_sf_pdiscard(ep
, asoc
, type
, arg
, commands
);
2266 /* Make sure that the ABORT chunk has a valid length.
2267 * Since this is an ABORT chunk, we have to discard it
2268 * because of the following text:
2269 * RFC 2960, Section 3.3.7
2270 * If an endpoint receives an ABORT with a format error or for an
2271 * association that doesn't exist, it MUST silently discard it.
2272 * Becasue the length is "invalid", we can't really discard just
2273 * as we do not know its true length. So, to be safe, discard the
2276 if (!sctp_chunk_length_valid(chunk
, sizeof(sctp_abort_chunk_t
)))
2277 return sctp_sf_pdiscard(ep
, asoc
, type
, arg
, commands
);
2279 /* See if we have an error cause code in the chunk. */
2280 len
= ntohs(chunk
->chunk_hdr
->length
);
2281 if (len
>= sizeof(struct sctp_chunkhdr
) + sizeof(struct sctp_errhdr
))
2282 error
= ((sctp_errhdr_t
*)chunk
->skb
->data
)->cause
;
2284 sctp_stop_t1_and_abort(commands
, error
);
2285 return SCTP_DISPOSITION_ABORT
;
2289 * Process an incoming ICMP as an ABORT. (COOKIE-WAIT state)
2291 sctp_disposition_t
sctp_sf_cookie_wait_icmp_abort(const struct sctp_endpoint
*ep
,
2292 const struct sctp_association
*asoc
,
2293 const sctp_subtype_t type
,
2295 sctp_cmd_seq_t
*commands
)
2297 sctp_stop_t1_and_abort(commands
, SCTP_ERROR_NO_ERROR
);
2298 return SCTP_DISPOSITION_ABORT
;
2302 * Process an ABORT. (COOKIE-ECHOED state)
2304 sctp_disposition_t
sctp_sf_cookie_echoed_abort(const struct sctp_endpoint
*ep
,
2305 const struct sctp_association
*asoc
,
2306 const sctp_subtype_t type
,
2308 sctp_cmd_seq_t
*commands
)
2310 /* There is a single T1 timer, so we should be able to use
2311 * common function with the COOKIE-WAIT state.
2313 return sctp_sf_cookie_wait_abort(ep
, asoc
, type
, arg
, commands
);
2317 * Stop T1 timer and abort association with "INIT failed".
2319 * This is common code called by several sctp_sf_*_abort() functions above.
2321 void sctp_stop_t1_and_abort(sctp_cmd_seq_t
*commands
, __u16 error
)
2323 sctp_add_cmd_sf(commands
, SCTP_CMD_NEW_STATE
,
2324 SCTP_STATE(SCTP_STATE_CLOSED
));
2325 SCTP_INC_STATS(SCTP_MIB_ABORTEDS
);
2326 sctp_add_cmd_sf(commands
, SCTP_CMD_TIMER_STOP
,
2327 SCTP_TO(SCTP_EVENT_TIMEOUT_T1_INIT
));
2328 /* CMD_INIT_FAILED will DELETE_TCB. */
2329 sctp_add_cmd_sf(commands
, SCTP_CMD_INIT_FAILED
,
2334 * sctp_sf_do_9_2_shut
2337 * Upon the reception of the SHUTDOWN, the peer endpoint shall
2338 * - enter the SHUTDOWN-RECEIVED state,
2340 * - stop accepting new data from its SCTP user
2342 * - verify, by checking the Cumulative TSN Ack field of the chunk,
2343 * that all its outstanding DATA chunks have been received by the
2346 * Once an endpoint as reached the SHUTDOWN-RECEIVED state it MUST NOT
2347 * send a SHUTDOWN in response to a ULP request. And should discard
2348 * subsequent SHUTDOWN chunks.
2350 * If there are still outstanding DATA chunks left, the SHUTDOWN
2351 * receiver shall continue to follow normal data transmission
2352 * procedures defined in Section 6 until all outstanding DATA chunks
2353 * are acknowledged; however, the SHUTDOWN receiver MUST NOT accept
2354 * new data from its SCTP user.
2356 * Verification Tag: 8.5 Verification Tag [Normal verification]
2359 * (endpoint, asoc, chunk)
2362 * (asoc, reply_msg, msg_up, timers, counters)
2364 * The return value is the disposition of the chunk.
2366 sctp_disposition_t
sctp_sf_do_9_2_shutdown(const struct sctp_endpoint
*ep
,
2367 const struct sctp_association
*asoc
,
2368 const sctp_subtype_t type
,
2370 sctp_cmd_seq_t
*commands
)
2372 struct sctp_chunk
*chunk
= arg
;
2373 sctp_shutdownhdr_t
*sdh
;
2374 sctp_disposition_t disposition
;
2375 struct sctp_ulpevent
*ev
;
2377 if (!sctp_vtag_verify(chunk
, asoc
))
2378 return sctp_sf_pdiscard(ep
, asoc
, type
, arg
, commands
);
2380 /* Make sure that the SHUTDOWN chunk has a valid length. */
2381 if (!sctp_chunk_length_valid(chunk
,
2382 sizeof(struct sctp_shutdown_chunk_t
)))
2383 return sctp_sf_violation_chunklen(ep
, asoc
, type
, arg
,
2386 /* Convert the elaborate header. */
2387 sdh
= (sctp_shutdownhdr_t
*)chunk
->skb
->data
;
2388 skb_pull(chunk
->skb
, sizeof(sctp_shutdownhdr_t
));
2389 chunk
->subh
.shutdown_hdr
= sdh
;
2391 /* Upon the reception of the SHUTDOWN, the peer endpoint shall
2392 * - enter the SHUTDOWN-RECEIVED state,
2393 * - stop accepting new data from its SCTP user
2395 * [This is implicit in the new state.]
2397 sctp_add_cmd_sf(commands
, SCTP_CMD_NEW_STATE
,
2398 SCTP_STATE(SCTP_STATE_SHUTDOWN_RECEIVED
));
2399 disposition
= SCTP_DISPOSITION_CONSUME
;
2401 if (sctp_outq_is_empty(&asoc
->outqueue
)) {
2402 disposition
= sctp_sf_do_9_2_shutdown_ack(ep
, asoc
, type
,
2406 if (SCTP_DISPOSITION_NOMEM
== disposition
)
2409 /* - verify, by checking the Cumulative TSN Ack field of the
2410 * chunk, that all its outstanding DATA chunks have been
2411 * received by the SHUTDOWN sender.
2413 sctp_add_cmd_sf(commands
, SCTP_CMD_PROCESS_CTSN
,
2414 SCTP_U32(chunk
->subh
.shutdown_hdr
->cum_tsn_ack
));
2416 /* API 5.3.1.5 SCTP_SHUTDOWN_EVENT
2417 * When a peer sends a SHUTDOWN, SCTP delivers this notification to
2418 * inform the application that it should cease sending data.
2420 ev
= sctp_ulpevent_make_shutdown_event(asoc
, 0, GFP_ATOMIC
);
2422 disposition
= SCTP_DISPOSITION_NOMEM
;
2425 sctp_add_cmd_sf(commands
, SCTP_CMD_EVENT_ULP
, SCTP_ULPEVENT(ev
));
2432 * If an endpoint is in SHUTDOWN-ACK-SENT state and receives an INIT chunk
2433 * (e.g., if the SHUTDOWN COMPLETE was lost) with source and destination
2434 * transport addresses (either in the IP addresses or in the INIT chunk)
2435 * that belong to this association, it should discard the INIT chunk and
2436 * retransmit the SHUTDOWN ACK chunk.
2438 sctp_disposition_t
sctp_sf_do_9_2_reshutack(const struct sctp_endpoint
*ep
,
2439 const struct sctp_association
*asoc
,
2440 const sctp_subtype_t type
,
2442 sctp_cmd_seq_t
*commands
)
2444 struct sctp_chunk
*chunk
= (struct sctp_chunk
*) arg
;
2445 struct sctp_chunk
*reply
;
2447 /* Since we are not going to really process this INIT, there
2448 * is no point in verifying chunk boundries. Just generate
2451 reply
= sctp_make_shutdown_ack(asoc
, chunk
);
2455 /* Set the transport for the SHUTDOWN ACK chunk and the timeout for
2456 * the T2-SHUTDOWN timer.
2458 sctp_add_cmd_sf(commands
, SCTP_CMD_SETUP_T2
, SCTP_CHUNK(reply
));
2460 /* and restart the T2-shutdown timer. */
2461 sctp_add_cmd_sf(commands
, SCTP_CMD_TIMER_RESTART
,
2462 SCTP_TO(SCTP_EVENT_TIMEOUT_T2_SHUTDOWN
));
2464 sctp_add_cmd_sf(commands
, SCTP_CMD_REPLY
, SCTP_CHUNK(reply
));
2466 return SCTP_DISPOSITION_CONSUME
;
2468 return SCTP_DISPOSITION_NOMEM
;
2472 * sctp_sf_do_ecn_cwr
2474 * Section: Appendix A: Explicit Congestion Notification
2478 * RFC 2481 details a specific bit for a sender to send in the header of
2479 * its next outbound TCP segment to indicate to its peer that it has
2480 * reduced its congestion window. This is termed the CWR bit. For
2481 * SCTP the same indication is made by including the CWR chunk.
2482 * This chunk contains one data element, i.e. the TSN number that
2483 * was sent in the ECNE chunk. This element represents the lowest
2484 * TSN number in the datagram that was originally marked with the
2487 * Verification Tag: 8.5 Verification Tag [Normal verification]
2489 * (endpoint, asoc, chunk)
2492 * (asoc, reply_msg, msg_up, timers, counters)
2494 * The return value is the disposition of the chunk.
2496 sctp_disposition_t
sctp_sf_do_ecn_cwr(const struct sctp_endpoint
*ep
,
2497 const struct sctp_association
*asoc
,
2498 const sctp_subtype_t type
,
2500 sctp_cmd_seq_t
*commands
)
2503 struct sctp_chunk
*chunk
= arg
;
2505 if (!sctp_vtag_verify(chunk
, asoc
))
2506 return sctp_sf_pdiscard(ep
, asoc
, type
, arg
, commands
);
2508 if (!sctp_chunk_length_valid(chunk
, sizeof(sctp_ecne_chunk_t
)))
2509 return sctp_sf_violation_chunklen(ep
, asoc
, type
, arg
,
2512 cwr
= (sctp_cwrhdr_t
*) chunk
->skb
->data
;
2513 skb_pull(chunk
->skb
, sizeof(sctp_cwrhdr_t
));
2515 cwr
->lowest_tsn
= ntohl(cwr
->lowest_tsn
);
2517 /* Does this CWR ack the last sent congestion notification? */
2518 if (TSN_lte(asoc
->last_ecne_tsn
, cwr
->lowest_tsn
)) {
2519 /* Stop sending ECNE. */
2520 sctp_add_cmd_sf(commands
,
2522 SCTP_U32(cwr
->lowest_tsn
));
2524 return SCTP_DISPOSITION_CONSUME
;
2530 * Section: Appendix A: Explicit Congestion Notification
2534 * RFC 2481 details a specific bit for a receiver to send back in its
2535 * TCP acknowledgements to notify the sender of the Congestion
2536 * Experienced (CE) bit having arrived from the network. For SCTP this
2537 * same indication is made by including the ECNE chunk. This chunk
2538 * contains one data element, i.e. the lowest TSN associated with the IP
2539 * datagram marked with the CE bit.....
2541 * Verification Tag: 8.5 Verification Tag [Normal verification]
2543 * (endpoint, asoc, chunk)
2546 * (asoc, reply_msg, msg_up, timers, counters)
2548 * The return value is the disposition of the chunk.
2550 sctp_disposition_t
sctp_sf_do_ecne(const struct sctp_endpoint
*ep
,
2551 const struct sctp_association
*asoc
,
2552 const sctp_subtype_t type
,
2554 sctp_cmd_seq_t
*commands
)
2556 sctp_ecnehdr_t
*ecne
;
2557 struct sctp_chunk
*chunk
= arg
;
2559 if (!sctp_vtag_verify(chunk
, asoc
))
2560 return sctp_sf_pdiscard(ep
, asoc
, type
, arg
, commands
);
2562 if (!sctp_chunk_length_valid(chunk
, sizeof(sctp_ecne_chunk_t
)))
2563 return sctp_sf_violation_chunklen(ep
, asoc
, type
, arg
,
2566 ecne
= (sctp_ecnehdr_t
*) chunk
->skb
->data
;
2567 skb_pull(chunk
->skb
, sizeof(sctp_ecnehdr_t
));
2569 /* If this is a newer ECNE than the last CWR packet we sent out */
2570 sctp_add_cmd_sf(commands
, SCTP_CMD_ECN_ECNE
,
2571 SCTP_U32(ntohl(ecne
->lowest_tsn
)));
2573 return SCTP_DISPOSITION_CONSUME
;
2577 * Section: 6.2 Acknowledgement on Reception of DATA Chunks
2579 * The SCTP endpoint MUST always acknowledge the reception of each valid
2582 * The guidelines on delayed acknowledgement algorithm specified in
2583 * Section 4.2 of [RFC2581] SHOULD be followed. Specifically, an
2584 * acknowledgement SHOULD be generated for at least every second packet
2585 * (not every second DATA chunk) received, and SHOULD be generated within
2586 * 200 ms of the arrival of any unacknowledged DATA chunk. In some
2587 * situations it may be beneficial for an SCTP transmitter to be more
2588 * conservative than the algorithms detailed in this document allow.
2589 * However, an SCTP transmitter MUST NOT be more aggressive than the
2590 * following algorithms allow.
2592 * A SCTP receiver MUST NOT generate more than one SACK for every
2593 * incoming packet, other than to update the offered window as the
2594 * receiving application consumes new data.
2596 * Verification Tag: 8.5 Verification Tag [Normal verification]
2599 * (endpoint, asoc, chunk)
2602 * (asoc, reply_msg, msg_up, timers, counters)
2604 * The return value is the disposition of the chunk.
2606 sctp_disposition_t
sctp_sf_eat_data_6_2(const struct sctp_endpoint
*ep
,
2607 const struct sctp_association
*asoc
,
2608 const sctp_subtype_t type
,
2610 sctp_cmd_seq_t
*commands
)
2612 struct sctp_chunk
*chunk
= arg
;
2615 if (!sctp_vtag_verify(chunk
, asoc
)) {
2616 sctp_add_cmd_sf(commands
, SCTP_CMD_REPORT_BAD_TAG
,
2618 return sctp_sf_pdiscard(ep
, asoc
, type
, arg
, commands
);
2621 if (!sctp_chunk_length_valid(chunk
, sizeof(sctp_data_chunk_t
)))
2622 return sctp_sf_violation_chunklen(ep
, asoc
, type
, arg
,
2625 error
= sctp_eat_data(asoc
, chunk
, commands
);
2627 case SCTP_IERROR_NO_ERROR
:
2629 case SCTP_IERROR_HIGH_TSN
:
2630 case SCTP_IERROR_BAD_STREAM
:
2631 goto discard_noforce
;
2632 case SCTP_IERROR_DUP_TSN
:
2633 case SCTP_IERROR_IGNORE_TSN
:
2635 case SCTP_IERROR_NO_DATA
:
2641 if (asoc
->autoclose
) {
2642 sctp_add_cmd_sf(commands
, SCTP_CMD_TIMER_RESTART
,
2643 SCTP_TO(SCTP_EVENT_TIMEOUT_AUTOCLOSE
));
2646 /* If this is the last chunk in a packet, we need to count it
2647 * toward sack generation. Note that we need to SACK every
2648 * OTHER packet containing data chunks, EVEN IF WE DISCARD
2649 * THEM. We elect to NOT generate SACK's if the chunk fails
2650 * the verification tag test.
2652 * RFC 2960 6.2 Acknowledgement on Reception of DATA Chunks
2654 * The SCTP endpoint MUST always acknowledge the reception of
2655 * each valid DATA chunk.
2657 * The guidelines on delayed acknowledgement algorithm
2658 * specified in Section 4.2 of [RFC2581] SHOULD be followed.
2659 * Specifically, an acknowledgement SHOULD be generated for at
2660 * least every second packet (not every second DATA chunk)
2661 * received, and SHOULD be generated within 200 ms of the
2662 * arrival of any unacknowledged DATA chunk. In some
2663 * situations it may be beneficial for an SCTP transmitter to
2664 * be more conservative than the algorithms detailed in this
2665 * document allow. However, an SCTP transmitter MUST NOT be
2666 * more aggressive than the following algorithms allow.
2668 if (chunk
->end_of_packet
) {
2669 sctp_add_cmd_sf(commands
, SCTP_CMD_GEN_SACK
, SCTP_NOFORCE());
2671 /* Start the SACK timer. */
2672 sctp_add_cmd_sf(commands
, SCTP_CMD_TIMER_RESTART
,
2673 SCTP_TO(SCTP_EVENT_TIMEOUT_SACK
));
2676 return SCTP_DISPOSITION_CONSUME
;
2679 /* RFC 2960 6.2 Acknowledgement on Reception of DATA Chunks
2681 * When a packet arrives with duplicate DATA chunk(s) and with
2682 * no new DATA chunk(s), the endpoint MUST immediately send a
2683 * SACK with no delay. If a packet arrives with duplicate
2684 * DATA chunk(s) bundled with new DATA chunks, the endpoint
2685 * MAY immediately send a SACK. Normally receipt of duplicate
2686 * DATA chunks will occur when the original SACK chunk was lost
2687 * and the peer's RTO has expired. The duplicate TSN number(s)
2688 * SHOULD be reported in the SACK as duplicate.
2690 /* In our case, we split the MAY SACK advice up whether or not
2691 * the last chunk is a duplicate.'
2693 if (chunk
->end_of_packet
)
2694 sctp_add_cmd_sf(commands
, SCTP_CMD_GEN_SACK
, SCTP_FORCE());
2695 return SCTP_DISPOSITION_DISCARD
;
2698 if (chunk
->end_of_packet
) {
2699 sctp_add_cmd_sf(commands
, SCTP_CMD_GEN_SACK
, SCTP_NOFORCE());
2701 /* Start the SACK timer. */
2702 sctp_add_cmd_sf(commands
, SCTP_CMD_TIMER_RESTART
,
2703 SCTP_TO(SCTP_EVENT_TIMEOUT_SACK
));
2705 return SCTP_DISPOSITION_DISCARD
;
2707 return SCTP_DISPOSITION_CONSUME
;
2712 * sctp_sf_eat_data_fast_4_4
2715 * (4) In SHUTDOWN-SENT state the endpoint MUST acknowledge any received
2716 * DATA chunks without delay.
2718 * Verification Tag: 8.5 Verification Tag [Normal verification]
2720 * (endpoint, asoc, chunk)
2723 * (asoc, reply_msg, msg_up, timers, counters)
2725 * The return value is the disposition of the chunk.
2727 sctp_disposition_t
sctp_sf_eat_data_fast_4_4(const struct sctp_endpoint
*ep
,
2728 const struct sctp_association
*asoc
,
2729 const sctp_subtype_t type
,
2731 sctp_cmd_seq_t
*commands
)
2733 struct sctp_chunk
*chunk
= arg
;
2736 if (!sctp_vtag_verify(chunk
, asoc
)) {
2737 sctp_add_cmd_sf(commands
, SCTP_CMD_REPORT_BAD_TAG
,
2739 return sctp_sf_pdiscard(ep
, asoc
, type
, arg
, commands
);
2742 if (!sctp_chunk_length_valid(chunk
, sizeof(sctp_data_chunk_t
)))
2743 return sctp_sf_violation_chunklen(ep
, asoc
, type
, arg
,
2746 error
= sctp_eat_data(asoc
, chunk
, commands
);
2748 case SCTP_IERROR_NO_ERROR
:
2749 case SCTP_IERROR_HIGH_TSN
:
2750 case SCTP_IERROR_DUP_TSN
:
2751 case SCTP_IERROR_IGNORE_TSN
:
2752 case SCTP_IERROR_BAD_STREAM
:
2754 case SCTP_IERROR_NO_DATA
:
2760 /* Go a head and force a SACK, since we are shutting down. */
2762 /* Implementor's Guide.
2764 * While in SHUTDOWN-SENT state, the SHUTDOWN sender MUST immediately
2765 * respond to each received packet containing one or more DATA chunk(s)
2766 * with a SACK, a SHUTDOWN chunk, and restart the T2-shutdown timer
2768 if (chunk
->end_of_packet
) {
2769 /* We must delay the chunk creation since the cumulative
2770 * TSN has not been updated yet.
2772 sctp_add_cmd_sf(commands
, SCTP_CMD_GEN_SHUTDOWN
, SCTP_NULL());
2773 sctp_add_cmd_sf(commands
, SCTP_CMD_GEN_SACK
, SCTP_FORCE());
2774 sctp_add_cmd_sf(commands
, SCTP_CMD_TIMER_RESTART
,
2775 SCTP_TO(SCTP_EVENT_TIMEOUT_T2_SHUTDOWN
));
2779 return SCTP_DISPOSITION_CONSUME
;
2783 * Section: 6.2 Processing a Received SACK
2784 * D) Any time a SACK arrives, the endpoint performs the following:
2786 * i) If Cumulative TSN Ack is less than the Cumulative TSN Ack Point,
2787 * then drop the SACK. Since Cumulative TSN Ack is monotonically
2788 * increasing, a SACK whose Cumulative TSN Ack is less than the
2789 * Cumulative TSN Ack Point indicates an out-of-order SACK.
2791 * ii) Set rwnd equal to the newly received a_rwnd minus the number
2792 * of bytes still outstanding after processing the Cumulative TSN Ack
2793 * and the Gap Ack Blocks.
2795 * iii) If the SACK is missing a TSN that was previously
2796 * acknowledged via a Gap Ack Block (e.g., the data receiver
2797 * reneged on the data), then mark the corresponding DATA chunk
2798 * as available for retransmit: Mark it as missing for fast
2799 * retransmit as described in Section 7.2.4 and if no retransmit
2800 * timer is running for the destination address to which the DATA
2801 * chunk was originally transmitted, then T3-rtx is started for
2802 * that destination address.
2804 * Verification Tag: 8.5 Verification Tag [Normal verification]
2807 * (endpoint, asoc, chunk)
2810 * (asoc, reply_msg, msg_up, timers, counters)
2812 * The return value is the disposition of the chunk.
2814 sctp_disposition_t
sctp_sf_eat_sack_6_2(const struct sctp_endpoint
*ep
,
2815 const struct sctp_association
*asoc
,
2816 const sctp_subtype_t type
,
2818 sctp_cmd_seq_t
*commands
)
2820 struct sctp_chunk
*chunk
= arg
;
2821 sctp_sackhdr_t
*sackh
;
2824 if (!sctp_vtag_verify(chunk
, asoc
))
2825 return sctp_sf_pdiscard(ep
, asoc
, type
, arg
, commands
);
2827 /* Make sure that the SACK chunk has a valid length. */
2828 if (!sctp_chunk_length_valid(chunk
, sizeof(sctp_sack_chunk_t
)))
2829 return sctp_sf_violation_chunklen(ep
, asoc
, type
, arg
,
2832 /* Pull the SACK chunk from the data buffer */
2833 sackh
= sctp_sm_pull_sack(chunk
);
2834 /* Was this a bogus SACK? */
2836 return sctp_sf_pdiscard(ep
, asoc
, type
, arg
, commands
);
2837 chunk
->subh
.sack_hdr
= sackh
;
2838 ctsn
= ntohl(sackh
->cum_tsn_ack
);
2840 /* i) If Cumulative TSN Ack is less than the Cumulative TSN
2841 * Ack Point, then drop the SACK. Since Cumulative TSN
2842 * Ack is monotonically increasing, a SACK whose
2843 * Cumulative TSN Ack is less than the Cumulative TSN Ack
2844 * Point indicates an out-of-order SACK.
2846 if (TSN_lt(ctsn
, asoc
->ctsn_ack_point
)) {
2847 SCTP_DEBUG_PRINTK("ctsn %x\n", ctsn
);
2848 SCTP_DEBUG_PRINTK("ctsn_ack_point %x\n", asoc
->ctsn_ack_point
);
2849 return SCTP_DISPOSITION_DISCARD
;
2852 /* Return this SACK for further processing. */
2853 sctp_add_cmd_sf(commands
, SCTP_CMD_PROCESS_SACK
, SCTP_SACKH(sackh
));
2855 /* Note: We do the rest of the work on the PROCESS_SACK
2858 return SCTP_DISPOSITION_CONSUME
;
2862 * Generate an ABORT in response to a packet.
2864 * Section: 8.4 Handle "Out of the blue" Packets, sctpimpguide 2.41
2866 * 8) The receiver should respond to the sender of the OOTB packet with
2867 * an ABORT. When sending the ABORT, the receiver of the OOTB packet
2868 * MUST fill in the Verification Tag field of the outbound packet
2869 * with the value found in the Verification Tag field of the OOTB
2870 * packet and set the T-bit in the Chunk Flags to indicate that the
2871 * Verification Tag is reflected. After sending this ABORT, the
2872 * receiver of the OOTB packet shall discard the OOTB packet and take
2873 * no further action.
2877 * The return value is the disposition of the chunk.
2879 sctp_disposition_t
sctp_sf_tabort_8_4_8(const struct sctp_endpoint
*ep
,
2880 const struct sctp_association
*asoc
,
2881 const sctp_subtype_t type
,
2883 sctp_cmd_seq_t
*commands
)
2885 struct sctp_packet
*packet
= NULL
;
2886 struct sctp_chunk
*chunk
= arg
;
2887 struct sctp_chunk
*abort
;
2889 packet
= sctp_ootb_pkt_new(asoc
, chunk
);
2892 /* Make an ABORT. The T bit will be set if the asoc
2895 abort
= sctp_make_abort(asoc
, chunk
, 0);
2897 sctp_ootb_pkt_free(packet
);
2898 return SCTP_DISPOSITION_NOMEM
;
2901 /* Reflect vtag if T-Bit is set */
2902 if (sctp_test_T_bit(abort
))
2903 packet
->vtag
= ntohl(chunk
->sctp_hdr
->vtag
);
2905 /* Set the skb to the belonging sock for accounting. */
2906 abort
->skb
->sk
= ep
->base
.sk
;
2908 sctp_packet_append_chunk(packet
, abort
);
2910 sctp_add_cmd_sf(commands
, SCTP_CMD_SEND_PKT
,
2911 SCTP_PACKET(packet
));
2913 SCTP_INC_STATS(SCTP_MIB_OUTCTRLCHUNKS
);
2915 return SCTP_DISPOSITION_CONSUME
;
2918 return SCTP_DISPOSITION_NOMEM
;
2922 * Received an ERROR chunk from peer. Generate SCTP_REMOTE_ERROR
2923 * event as ULP notification for each cause included in the chunk.
2925 * API 5.3.1.3 - SCTP_REMOTE_ERROR
2927 * The return value is the disposition of the chunk.
2929 sctp_disposition_t
sctp_sf_operr_notify(const struct sctp_endpoint
*ep
,
2930 const struct sctp_association
*asoc
,
2931 const sctp_subtype_t type
,
2933 sctp_cmd_seq_t
*commands
)
2935 struct sctp_chunk
*chunk
= arg
;
2936 struct sctp_ulpevent
*ev
;
2938 if (!sctp_vtag_verify(chunk
, asoc
))
2939 return sctp_sf_pdiscard(ep
, asoc
, type
, arg
, commands
);
2941 /* Make sure that the ERROR chunk has a valid length. */
2942 if (!sctp_chunk_length_valid(chunk
, sizeof(sctp_operr_chunk_t
)))
2943 return sctp_sf_violation_chunklen(ep
, asoc
, type
, arg
,
2946 while (chunk
->chunk_end
> chunk
->skb
->data
) {
2947 ev
= sctp_ulpevent_make_remote_error(asoc
, chunk
, 0,
2952 if (!sctp_add_cmd(commands
, SCTP_CMD_EVENT_ULP
,
2953 SCTP_ULPEVENT(ev
))) {
2954 sctp_ulpevent_free(ev
);
2958 sctp_add_cmd_sf(commands
, SCTP_CMD_PROCESS_OPERR
,
2961 return SCTP_DISPOSITION_CONSUME
;
2964 return SCTP_DISPOSITION_NOMEM
;
2968 * Process an inbound SHUTDOWN ACK.
2971 * Upon the receipt of the SHUTDOWN ACK, the SHUTDOWN sender shall
2972 * stop the T2-shutdown timer, send a SHUTDOWN COMPLETE chunk to its
2973 * peer, and remove all record of the association.
2975 * The return value is the disposition.
2977 sctp_disposition_t
sctp_sf_do_9_2_final(const struct sctp_endpoint
*ep
,
2978 const struct sctp_association
*asoc
,
2979 const sctp_subtype_t type
,
2981 sctp_cmd_seq_t
*commands
)
2983 struct sctp_chunk
*chunk
= arg
;
2984 struct sctp_chunk
*reply
;
2985 struct sctp_ulpevent
*ev
;
2987 if (!sctp_vtag_verify(chunk
, asoc
))
2988 return sctp_sf_pdiscard(ep
, asoc
, type
, arg
, commands
);
2990 /* Make sure that the SHUTDOWN_ACK chunk has a valid length. */
2991 if (!sctp_chunk_length_valid(chunk
, sizeof(sctp_chunkhdr_t
)))
2992 return sctp_sf_violation_chunklen(ep
, asoc
, type
, arg
,
2995 /* 10.2 H) SHUTDOWN COMPLETE notification
2997 * When SCTP completes the shutdown procedures (section 9.2) this
2998 * notification is passed to the upper layer.
3000 ev
= sctp_ulpevent_make_assoc_change(asoc
, 0, SCTP_SHUTDOWN_COMP
,
3001 0, 0, 0, GFP_ATOMIC
);
3005 sctp_add_cmd_sf(commands
, SCTP_CMD_EVENT_ULP
, SCTP_ULPEVENT(ev
));
3007 /* Upon the receipt of the SHUTDOWN ACK, the SHUTDOWN sender shall
3008 * stop the T2-shutdown timer,
3010 sctp_add_cmd_sf(commands
, SCTP_CMD_TIMER_STOP
,
3011 SCTP_TO(SCTP_EVENT_TIMEOUT_T2_SHUTDOWN
));
3013 sctp_add_cmd_sf(commands
, SCTP_CMD_TIMER_STOP
,
3014 SCTP_TO(SCTP_EVENT_TIMEOUT_T5_SHUTDOWN_GUARD
));
3016 /* ...send a SHUTDOWN COMPLETE chunk to its peer, */
3017 reply
= sctp_make_shutdown_complete(asoc
, chunk
);
3021 sctp_add_cmd_sf(commands
, SCTP_CMD_NEW_STATE
,
3022 SCTP_STATE(SCTP_STATE_CLOSED
));
3023 SCTP_INC_STATS(SCTP_MIB_SHUTDOWNS
);
3024 SCTP_DEC_STATS(SCTP_MIB_CURRESTAB
);
3025 sctp_add_cmd_sf(commands
, SCTP_CMD_REPLY
, SCTP_CHUNK(reply
));
3027 /* ...and remove all record of the association. */
3028 sctp_add_cmd_sf(commands
, SCTP_CMD_DELETE_TCB
, SCTP_NULL());
3029 return SCTP_DISPOSITION_DELETE_TCB
;
3032 return SCTP_DISPOSITION_NOMEM
;
3036 * RFC 2960, 8.4 - Handle "Out of the blue" Packets, sctpimpguide 2.41.
3038 * 5) If the packet contains a SHUTDOWN ACK chunk, the receiver should
3039 * respond to the sender of the OOTB packet with a SHUTDOWN COMPLETE.
3040 * When sending the SHUTDOWN COMPLETE, the receiver of the OOTB
3041 * packet must fill in the Verification Tag field of the outbound
3042 * packet with the Verification Tag received in the SHUTDOWN ACK and
3043 * set the T-bit in the Chunk Flags to indicate that the Verification
3046 * 8) The receiver should respond to the sender of the OOTB packet with
3047 * an ABORT. When sending the ABORT, the receiver of the OOTB packet
3048 * MUST fill in the Verification Tag field of the outbound packet
3049 * with the value found in the Verification Tag field of the OOTB
3050 * packet and set the T-bit in the Chunk Flags to indicate that the
3051 * Verification Tag is reflected. After sending this ABORT, the
3052 * receiver of the OOTB packet shall discard the OOTB packet and take
3053 * no further action.
3055 sctp_disposition_t
sctp_sf_ootb(const struct sctp_endpoint
*ep
,
3056 const struct sctp_association
*asoc
,
3057 const sctp_subtype_t type
,
3059 sctp_cmd_seq_t
*commands
)
3061 struct sctp_chunk
*chunk
= arg
;
3062 struct sk_buff
*skb
= chunk
->skb
;
3063 sctp_chunkhdr_t
*ch
;
3065 int ootb_shut_ack
= 0;
3067 SCTP_INC_STATS(SCTP_MIB_OUTOFBLUES
);
3069 ch
= (sctp_chunkhdr_t
*) chunk
->chunk_hdr
;
3071 /* Break out if chunk length is less then minimal. */
3072 if (ntohs(ch
->length
) < sizeof(sctp_chunkhdr_t
))
3075 ch_end
= ((__u8
*)ch
) + WORD_ROUND(ntohs(ch
->length
));
3077 if (SCTP_CID_SHUTDOWN_ACK
== ch
->type
)
3080 /* RFC 2960, Section 3.3.7
3081 * Moreover, under any circumstances, an endpoint that
3082 * receives an ABORT MUST NOT respond to that ABORT by
3083 * sending an ABORT of its own.
3085 if (SCTP_CID_ABORT
== ch
->type
)
3086 return sctp_sf_pdiscard(ep
, asoc
, type
, arg
, commands
);
3088 ch
= (sctp_chunkhdr_t
*) ch_end
;
3089 } while (ch_end
< skb
->tail
);
3092 sctp_sf_shut_8_4_5(ep
, asoc
, type
, arg
, commands
);
3094 sctp_sf_tabort_8_4_8(ep
, asoc
, type
, arg
, commands
);
3096 return sctp_sf_pdiscard(ep
, asoc
, type
, arg
, commands
);
3100 * Handle an "Out of the blue" SHUTDOWN ACK.
3102 * Section: 8.4 5, sctpimpguide 2.41.
3104 * 5) If the packet contains a SHUTDOWN ACK chunk, the receiver should
3105 * respond to the sender of the OOTB packet with a SHUTDOWN COMPLETE.
3106 * When sending the SHUTDOWN COMPLETE, the receiver of the OOTB
3107 * packet must fill in the Verification Tag field of the outbound
3108 * packet with the Verification Tag received in the SHUTDOWN ACK and
3109 * set the T-bit in the Chunk Flags to indicate that the Verification
3113 * (endpoint, asoc, type, arg, commands)
3116 * (sctp_disposition_t)
3118 * The return value is the disposition of the chunk.
3120 static sctp_disposition_t
sctp_sf_shut_8_4_5(const struct sctp_endpoint
*ep
,
3121 const struct sctp_association
*asoc
,
3122 const sctp_subtype_t type
,
3124 sctp_cmd_seq_t
*commands
)
3126 struct sctp_packet
*packet
= NULL
;
3127 struct sctp_chunk
*chunk
= arg
;
3128 struct sctp_chunk
*shut
;
3130 packet
= sctp_ootb_pkt_new(asoc
, chunk
);
3133 /* Make an SHUTDOWN_COMPLETE.
3134 * The T bit will be set if the asoc is NULL.
3136 shut
= sctp_make_shutdown_complete(asoc
, chunk
);
3138 sctp_ootb_pkt_free(packet
);
3139 return SCTP_DISPOSITION_NOMEM
;
3142 /* Reflect vtag if T-Bit is set */
3143 if (sctp_test_T_bit(shut
))
3144 packet
->vtag
= ntohl(chunk
->sctp_hdr
->vtag
);
3146 /* Set the skb to the belonging sock for accounting. */
3147 shut
->skb
->sk
= ep
->base
.sk
;
3149 sctp_packet_append_chunk(packet
, shut
);
3151 sctp_add_cmd_sf(commands
, SCTP_CMD_SEND_PKT
,
3152 SCTP_PACKET(packet
));
3154 SCTP_INC_STATS(SCTP_MIB_OUTCTRLCHUNKS
);
3156 /* If the chunk length is invalid, we don't want to process
3157 * the reset of the packet.
3159 if (!sctp_chunk_length_valid(chunk
, sizeof(sctp_chunkhdr_t
)))
3160 return sctp_sf_pdiscard(ep
, asoc
, type
, arg
, commands
);
3162 return SCTP_DISPOSITION_CONSUME
;
3165 return SCTP_DISPOSITION_NOMEM
;
3169 * Handle SHUTDOWN ACK in COOKIE_ECHOED or COOKIE_WAIT state.
3171 * Verification Tag: 8.5.1 E) Rules for packet carrying a SHUTDOWN ACK
3172 * If the receiver is in COOKIE-ECHOED or COOKIE-WAIT state the
3173 * procedures in section 8.4 SHOULD be followed, in other words it
3174 * should be treated as an Out Of The Blue packet.
3175 * [This means that we do NOT check the Verification Tag on these
3179 sctp_disposition_t
sctp_sf_do_8_5_1_E_sa(const struct sctp_endpoint
*ep
,
3180 const struct sctp_association
*asoc
,
3181 const sctp_subtype_t type
,
3183 sctp_cmd_seq_t
*commands
)
3185 /* Although we do have an association in this case, it corresponds
3186 * to a restarted association. So the packet is treated as an OOTB
3187 * packet and the state function that handles OOTB SHUTDOWN_ACK is
3188 * called with a NULL association.
3190 return sctp_sf_shut_8_4_5(ep
, NULL
, type
, arg
, commands
);
3193 /* ADDIP Section 4.2 Upon reception of an ASCONF Chunk. */
3194 sctp_disposition_t
sctp_sf_do_asconf(const struct sctp_endpoint
*ep
,
3195 const struct sctp_association
*asoc
,
3196 const sctp_subtype_t type
, void *arg
,
3197 sctp_cmd_seq_t
*commands
)
3199 struct sctp_chunk
*chunk
= arg
;
3200 struct sctp_chunk
*asconf_ack
= NULL
;
3201 sctp_addiphdr_t
*hdr
;
3204 if (!sctp_vtag_verify(chunk
, asoc
)) {
3205 sctp_add_cmd_sf(commands
, SCTP_CMD_REPORT_BAD_TAG
,
3207 return sctp_sf_pdiscard(ep
, asoc
, type
, arg
, commands
);
3210 /* Make sure that the ASCONF ADDIP chunk has a valid length. */
3211 if (!sctp_chunk_length_valid(chunk
, sizeof(sctp_addip_chunk_t
)))
3212 return sctp_sf_violation_chunklen(ep
, asoc
, type
, arg
,
3215 hdr
= (sctp_addiphdr_t
*)chunk
->skb
->data
;
3216 serial
= ntohl(hdr
->serial
);
3218 /* ADDIP 4.2 C1) Compare the value of the serial number to the value
3219 * the endpoint stored in a new association variable
3220 * 'Peer-Serial-Number'.
3222 if (serial
== asoc
->peer
.addip_serial
+ 1) {
3223 /* ADDIP 4.2 C2) If the value found in the serial number is
3224 * equal to the ('Peer-Serial-Number' + 1), the endpoint MUST
3227 asconf_ack
= sctp_process_asconf((struct sctp_association
*)
3230 return SCTP_DISPOSITION_NOMEM
;
3231 } else if (serial
== asoc
->peer
.addip_serial
) {
3232 /* ADDIP 4.2 C3) If the value found in the serial number is
3233 * equal to the value stored in the 'Peer-Serial-Number'
3234 * IMPLEMENTATION NOTE: As an optimization a receiver may wish
3235 * to save the last ASCONF-ACK for some predetermined period of
3236 * time and instead of re-processing the ASCONF (with the same
3237 * serial number) it may just re-transmit the ASCONF-ACK.
3239 if (asoc
->addip_last_asconf_ack
)
3240 asconf_ack
= asoc
->addip_last_asconf_ack
;
3242 return SCTP_DISPOSITION_DISCARD
;
3244 /* ADDIP 4.2 C4) Otherwise, the ASCONF Chunk is discarded since
3245 * it must be either a stale packet or from an attacker.
3247 return SCTP_DISPOSITION_DISCARD
;
3250 /* ADDIP 4.2 C5) In both cases C2 and C3 the ASCONF-ACK MUST be sent
3251 * back to the source address contained in the IP header of the ASCONF
3252 * being responded to.
3254 sctp_add_cmd_sf(commands
, SCTP_CMD_REPLY
, SCTP_CHUNK(asconf_ack
));
3256 return SCTP_DISPOSITION_CONSUME
;
3260 * ADDIP Section 4.3 General rules for address manipulation
3261 * When building TLV parameters for the ASCONF Chunk that will add or
3262 * delete IP addresses the D0 to D13 rules should be applied:
3264 sctp_disposition_t
sctp_sf_do_asconf_ack(const struct sctp_endpoint
*ep
,
3265 const struct sctp_association
*asoc
,
3266 const sctp_subtype_t type
, void *arg
,
3267 sctp_cmd_seq_t
*commands
)
3269 struct sctp_chunk
*asconf_ack
= arg
;
3270 struct sctp_chunk
*last_asconf
= asoc
->addip_last_asconf
;
3271 struct sctp_chunk
*abort
;
3272 sctp_addiphdr_t
*addip_hdr
;
3273 __u32 sent_serial
, rcvd_serial
;
3275 if (!sctp_vtag_verify(asconf_ack
, asoc
)) {
3276 sctp_add_cmd_sf(commands
, SCTP_CMD_REPORT_BAD_TAG
,
3278 return sctp_sf_pdiscard(ep
, asoc
, type
, arg
, commands
);
3281 /* Make sure that the ADDIP chunk has a valid length. */
3282 if (!sctp_chunk_length_valid(asconf_ack
, sizeof(sctp_addip_chunk_t
)))
3283 return sctp_sf_violation_chunklen(ep
, asoc
, type
, arg
,
3286 addip_hdr
= (sctp_addiphdr_t
*)asconf_ack
->skb
->data
;
3287 rcvd_serial
= ntohl(addip_hdr
->serial
);
3290 addip_hdr
= (sctp_addiphdr_t
*)last_asconf
->subh
.addip_hdr
;
3291 sent_serial
= ntohl(addip_hdr
->serial
);
3293 sent_serial
= asoc
->addip_serial
- 1;
3296 /* D0) If an endpoint receives an ASCONF-ACK that is greater than or
3297 * equal to the next serial number to be used but no ASCONF chunk is
3298 * outstanding the endpoint MUST ABORT the association. Note that a
3299 * sequence number is greater than if it is no more than 2^^31-1
3300 * larger than the current sequence number (using serial arithmetic).
3302 if (ADDIP_SERIAL_gte(rcvd_serial
, sent_serial
+ 1) &&
3303 !(asoc
->addip_last_asconf
)) {
3304 abort
= sctp_make_abort(asoc
, asconf_ack
,
3305 sizeof(sctp_errhdr_t
));
3307 sctp_init_cause(abort
, SCTP_ERROR_ASCONF_ACK
, NULL
, 0);
3308 sctp_add_cmd_sf(commands
, SCTP_CMD_REPLY
,
3311 /* We are going to ABORT, so we might as well stop
3312 * processing the rest of the chunks in the packet.
3314 sctp_add_cmd_sf(commands
, SCTP_CMD_TIMER_STOP
,
3315 SCTP_TO(SCTP_EVENT_TIMEOUT_T4_RTO
));
3316 sctp_add_cmd_sf(commands
, SCTP_CMD_DISCARD_PACKET
,SCTP_NULL());
3317 sctp_add_cmd_sf(commands
, SCTP_CMD_ASSOC_FAILED
,
3318 SCTP_U32(SCTP_ERROR_ASCONF_ACK
));
3319 SCTP_INC_STATS(SCTP_MIB_ABORTEDS
);
3320 SCTP_DEC_STATS(SCTP_MIB_CURRESTAB
);
3321 return SCTP_DISPOSITION_ABORT
;
3324 if ((rcvd_serial
== sent_serial
) && asoc
->addip_last_asconf
) {
3325 sctp_add_cmd_sf(commands
, SCTP_CMD_TIMER_STOP
,
3326 SCTP_TO(SCTP_EVENT_TIMEOUT_T4_RTO
));
3328 if (!sctp_process_asconf_ack((struct sctp_association
*)asoc
,
3330 return SCTP_DISPOSITION_CONSUME
;
3332 abort
= sctp_make_abort(asoc
, asconf_ack
,
3333 sizeof(sctp_errhdr_t
));
3335 sctp_init_cause(abort
, SCTP_ERROR_RSRC_LOW
, NULL
, 0);
3336 sctp_add_cmd_sf(commands
, SCTP_CMD_REPLY
,
3339 /* We are going to ABORT, so we might as well stop
3340 * processing the rest of the chunks in the packet.
3342 sctp_add_cmd_sf(commands
, SCTP_CMD_DISCARD_PACKET
,SCTP_NULL());
3343 sctp_add_cmd_sf(commands
, SCTP_CMD_ASSOC_FAILED
,
3344 SCTP_U32(SCTP_ERROR_ASCONF_ACK
));
3345 SCTP_INC_STATS(SCTP_MIB_ABORTEDS
);
3346 SCTP_DEC_STATS(SCTP_MIB_CURRESTAB
);
3347 return SCTP_DISPOSITION_ABORT
;
3350 return SCTP_DISPOSITION_DISCARD
;
3354 * PR-SCTP Section 3.6 Receiver Side Implementation of PR-SCTP
3356 * When a FORWARD TSN chunk arrives, the data receiver MUST first update
3357 * its cumulative TSN point to the value carried in the FORWARD TSN
3358 * chunk, and then MUST further advance its cumulative TSN point locally
3360 * After the above processing, the data receiver MUST stop reporting any
3361 * missing TSNs earlier than or equal to the new cumulative TSN point.
3363 * Verification Tag: 8.5 Verification Tag [Normal verification]
3365 * The return value is the disposition of the chunk.
3367 sctp_disposition_t
sctp_sf_eat_fwd_tsn(const struct sctp_endpoint
*ep
,
3368 const struct sctp_association
*asoc
,
3369 const sctp_subtype_t type
,
3371 sctp_cmd_seq_t
*commands
)
3373 struct sctp_chunk
*chunk
= arg
;
3374 struct sctp_fwdtsn_hdr
*fwdtsn_hdr
;
3378 if (!sctp_vtag_verify(chunk
, asoc
)) {
3379 sctp_add_cmd_sf(commands
, SCTP_CMD_REPORT_BAD_TAG
,
3381 return sctp_sf_pdiscard(ep
, asoc
, type
, arg
, commands
);
3384 /* Make sure that the FORWARD_TSN chunk has valid length. */
3385 if (!sctp_chunk_length_valid(chunk
, sizeof(struct sctp_fwdtsn_chunk
)))
3386 return sctp_sf_violation_chunklen(ep
, asoc
, type
, arg
,
3389 fwdtsn_hdr
= (struct sctp_fwdtsn_hdr
*)chunk
->skb
->data
;
3390 chunk
->subh
.fwdtsn_hdr
= fwdtsn_hdr
;
3391 len
= ntohs(chunk
->chunk_hdr
->length
);
3392 len
-= sizeof(struct sctp_chunkhdr
);
3393 skb_pull(chunk
->skb
, len
);
3395 tsn
= ntohl(fwdtsn_hdr
->new_cum_tsn
);
3396 SCTP_DEBUG_PRINTK("%s: TSN 0x%x.\n", __FUNCTION__
, tsn
);
3398 /* The TSN is too high--silently discard the chunk and count on it
3399 * getting retransmitted later.
3401 if (sctp_tsnmap_check(&asoc
->peer
.tsn_map
, tsn
) < 0)
3402 goto discard_noforce
;
3404 sctp_add_cmd_sf(commands
, SCTP_CMD_REPORT_FWDTSN
, SCTP_U32(tsn
));
3405 if (len
> sizeof(struct sctp_fwdtsn_hdr
))
3406 sctp_add_cmd_sf(commands
, SCTP_CMD_PROCESS_FWDTSN
,
3409 /* Count this as receiving DATA. */
3410 if (asoc
->autoclose
) {
3411 sctp_add_cmd_sf(commands
, SCTP_CMD_TIMER_RESTART
,
3412 SCTP_TO(SCTP_EVENT_TIMEOUT_AUTOCLOSE
));
3415 /* FIXME: For now send a SACK, but DATA processing may
3418 sctp_add_cmd_sf(commands
, SCTP_CMD_GEN_SACK
, SCTP_NOFORCE());
3419 /* Start the SACK timer. */
3420 sctp_add_cmd_sf(commands
, SCTP_CMD_TIMER_RESTART
,
3421 SCTP_TO(SCTP_EVENT_TIMEOUT_SACK
));
3423 return SCTP_DISPOSITION_CONSUME
;
3426 return SCTP_DISPOSITION_DISCARD
;
3429 sctp_disposition_t
sctp_sf_eat_fwd_tsn_fast(
3430 const struct sctp_endpoint
*ep
,
3431 const struct sctp_association
*asoc
,
3432 const sctp_subtype_t type
,
3434 sctp_cmd_seq_t
*commands
)
3436 struct sctp_chunk
*chunk
= arg
;
3437 struct sctp_fwdtsn_hdr
*fwdtsn_hdr
;
3441 if (!sctp_vtag_verify(chunk
, asoc
)) {
3442 sctp_add_cmd_sf(commands
, SCTP_CMD_REPORT_BAD_TAG
,
3444 return sctp_sf_pdiscard(ep
, asoc
, type
, arg
, commands
);
3447 /* Make sure that the FORWARD_TSN chunk has a valid length. */
3448 if (!sctp_chunk_length_valid(chunk
, sizeof(struct sctp_fwdtsn_chunk
)))
3449 return sctp_sf_violation_chunklen(ep
, asoc
, type
, arg
,
3452 fwdtsn_hdr
= (struct sctp_fwdtsn_hdr
*)chunk
->skb
->data
;
3453 chunk
->subh
.fwdtsn_hdr
= fwdtsn_hdr
;
3454 len
= ntohs(chunk
->chunk_hdr
->length
);
3455 len
-= sizeof(struct sctp_chunkhdr
);
3456 skb_pull(chunk
->skb
, len
);
3458 tsn
= ntohl(fwdtsn_hdr
->new_cum_tsn
);
3459 SCTP_DEBUG_PRINTK("%s: TSN 0x%x.\n", __FUNCTION__
, tsn
);
3461 /* The TSN is too high--silently discard the chunk and count on it
3462 * getting retransmitted later.
3464 if (sctp_tsnmap_check(&asoc
->peer
.tsn_map
, tsn
) < 0)
3467 sctp_add_cmd_sf(commands
, SCTP_CMD_REPORT_FWDTSN
, SCTP_U32(tsn
));
3468 if (len
> sizeof(struct sctp_fwdtsn_hdr
))
3469 sctp_add_cmd_sf(commands
, SCTP_CMD_PROCESS_FWDTSN
,
3472 /* Go a head and force a SACK, since we are shutting down. */
3474 /* Implementor's Guide.
3476 * While in SHUTDOWN-SENT state, the SHUTDOWN sender MUST immediately
3477 * respond to each received packet containing one or more DATA chunk(s)
3478 * with a SACK, a SHUTDOWN chunk, and restart the T2-shutdown timer
3480 sctp_add_cmd_sf(commands
, SCTP_CMD_GEN_SHUTDOWN
, SCTP_NULL());
3481 sctp_add_cmd_sf(commands
, SCTP_CMD_GEN_SACK
, SCTP_FORCE());
3482 sctp_add_cmd_sf(commands
, SCTP_CMD_TIMER_RESTART
,
3483 SCTP_TO(SCTP_EVENT_TIMEOUT_T2_SHUTDOWN
));
3485 return SCTP_DISPOSITION_CONSUME
;
3489 * Process an unknown chunk.
3491 * Section: 3.2. Also, 2.1 in the implementor's guide.
3493 * Chunk Types are encoded such that the highest-order two bits specify
3494 * the action that must be taken if the processing endpoint does not
3495 * recognize the Chunk Type.
3497 * 00 - Stop processing this SCTP packet and discard it, do not process
3498 * any further chunks within it.
3500 * 01 - Stop processing this SCTP packet and discard it, do not process
3501 * any further chunks within it, and report the unrecognized
3502 * chunk in an 'Unrecognized Chunk Type'.
3504 * 10 - Skip this chunk and continue processing.
3506 * 11 - Skip this chunk and continue processing, but report in an ERROR
3507 * Chunk using the 'Unrecognized Chunk Type' cause of error.
3509 * The return value is the disposition of the chunk.
3511 sctp_disposition_t
sctp_sf_unk_chunk(const struct sctp_endpoint
*ep
,
3512 const struct sctp_association
*asoc
,
3513 const sctp_subtype_t type
,
3515 sctp_cmd_seq_t
*commands
)
3517 struct sctp_chunk
*unk_chunk
= arg
;
3518 struct sctp_chunk
*err_chunk
;
3519 sctp_chunkhdr_t
*hdr
;
3521 SCTP_DEBUG_PRINTK("Processing the unknown chunk id %d.\n", type
.chunk
);
3523 if (!sctp_vtag_verify(unk_chunk
, asoc
))
3524 return sctp_sf_pdiscard(ep
, asoc
, type
, arg
, commands
);
3526 /* Make sure that the chunk has a valid length.
3527 * Since we don't know the chunk type, we use a general
3528 * chunkhdr structure to make a comparison.
3530 if (!sctp_chunk_length_valid(unk_chunk
, sizeof(sctp_chunkhdr_t
)))
3531 return sctp_sf_violation_chunklen(ep
, asoc
, type
, arg
,
3534 switch (type
.chunk
& SCTP_CID_ACTION_MASK
) {
3535 case SCTP_CID_ACTION_DISCARD
:
3536 /* Discard the packet. */
3537 return sctp_sf_pdiscard(ep
, asoc
, type
, arg
, commands
);
3539 case SCTP_CID_ACTION_DISCARD_ERR
:
3540 /* Discard the packet. */
3541 sctp_sf_pdiscard(ep
, asoc
, type
, arg
, commands
);
3543 /* Generate an ERROR chunk as response. */
3544 hdr
= unk_chunk
->chunk_hdr
;
3545 err_chunk
= sctp_make_op_error(asoc
, unk_chunk
,
3546 SCTP_ERROR_UNKNOWN_CHUNK
, hdr
,
3547 WORD_ROUND(ntohs(hdr
->length
)));
3549 sctp_add_cmd_sf(commands
, SCTP_CMD_REPLY
,
3550 SCTP_CHUNK(err_chunk
));
3552 return SCTP_DISPOSITION_CONSUME
;
3554 case SCTP_CID_ACTION_SKIP
:
3555 /* Skip the chunk. */
3556 return SCTP_DISPOSITION_DISCARD
;
3558 case SCTP_CID_ACTION_SKIP_ERR
:
3559 /* Generate an ERROR chunk as response. */
3560 hdr
= unk_chunk
->chunk_hdr
;
3561 err_chunk
= sctp_make_op_error(asoc
, unk_chunk
,
3562 SCTP_ERROR_UNKNOWN_CHUNK
, hdr
,
3563 WORD_ROUND(ntohs(hdr
->length
)));
3565 sctp_add_cmd_sf(commands
, SCTP_CMD_REPLY
,
3566 SCTP_CHUNK(err_chunk
));
3568 /* Skip the chunk. */
3569 return SCTP_DISPOSITION_CONSUME
;
3575 return SCTP_DISPOSITION_DISCARD
;
3579 * Discard the chunk.
3581 * Section: 0.2, 5.2.3, 5.2.5, 5.2.6, 6.0, 8.4.6, 8.5.1c, 9.2
3582 * [Too numerous to mention...]
3583 * Verification Tag: No verification needed.
3585 * (endpoint, asoc, chunk)
3588 * (asoc, reply_msg, msg_up, timers, counters)
3590 * The return value is the disposition of the chunk.
3592 sctp_disposition_t
sctp_sf_discard_chunk(const struct sctp_endpoint
*ep
,
3593 const struct sctp_association
*asoc
,
3594 const sctp_subtype_t type
,
3596 sctp_cmd_seq_t
*commands
)
3598 SCTP_DEBUG_PRINTK("Chunk %d is discarded\n", type
.chunk
);
3599 return SCTP_DISPOSITION_DISCARD
;
3603 * Discard the whole packet.
3607 * 2) If the OOTB packet contains an ABORT chunk, the receiver MUST
3608 * silently discard the OOTB packet and take no further action.
3610 * Verification Tag: No verification necessary
3613 * (endpoint, asoc, chunk)
3616 * (asoc, reply_msg, msg_up, timers, counters)
3618 * The return value is the disposition of the chunk.
3620 sctp_disposition_t
sctp_sf_pdiscard(const struct sctp_endpoint
*ep
,
3621 const struct sctp_association
*asoc
,
3622 const sctp_subtype_t type
,
3624 sctp_cmd_seq_t
*commands
)
3626 sctp_add_cmd_sf(commands
, SCTP_CMD_DISCARD_PACKET
, SCTP_NULL());
3628 return SCTP_DISPOSITION_CONSUME
;
3633 * The other end is violating protocol.
3635 * Section: Not specified
3636 * Verification Tag: Not specified
3638 * (endpoint, asoc, chunk)
3641 * (asoc, reply_msg, msg_up, timers, counters)
3643 * We simply tag the chunk as a violation. The state machine will log
3644 * the violation and continue.
3646 sctp_disposition_t
sctp_sf_violation(const struct sctp_endpoint
*ep
,
3647 const struct sctp_association
*asoc
,
3648 const sctp_subtype_t type
,
3650 sctp_cmd_seq_t
*commands
)
3652 return SCTP_DISPOSITION_VIOLATION
;
3657 * Handle a protocol violation when the chunk length is invalid.
3658 * "Invalid" length is identified as smaller then the minimal length a
3659 * given chunk can be. For example, a SACK chunk has invalid length
3660 * if it's length is set to be smaller then the size of sctp_sack_chunk_t.
3662 * We inform the other end by sending an ABORT with a Protocol Violation
3665 * Section: Not specified
3666 * Verification Tag: Nothing to do
3668 * (endpoint, asoc, chunk)
3671 * (reply_msg, msg_up, counters)
3673 * Generate an ABORT chunk and terminate the association.
3675 sctp_disposition_t
sctp_sf_violation_chunklen(const struct sctp_endpoint
*ep
,
3676 const struct sctp_association
*asoc
,
3677 const sctp_subtype_t type
,
3679 sctp_cmd_seq_t
*commands
)
3681 struct sctp_chunk
*chunk
= arg
;
3682 struct sctp_chunk
*abort
= NULL
;
3683 char err_str
[]="The following chunk had invalid length:";
3685 /* Make the abort chunk. */
3686 abort
= sctp_make_abort_violation(asoc
, chunk
, err_str
,
3691 sctp_add_cmd_sf(commands
, SCTP_CMD_REPLY
, SCTP_CHUNK(abort
));
3692 SCTP_INC_STATS(SCTP_MIB_OUTCTRLCHUNKS
);
3694 if (asoc
->state
<= SCTP_STATE_COOKIE_ECHOED
) {
3695 sctp_add_cmd_sf(commands
, SCTP_CMD_TIMER_STOP
,
3696 SCTP_TO(SCTP_EVENT_TIMEOUT_T1_INIT
));
3697 sctp_add_cmd_sf(commands
, SCTP_CMD_INIT_FAILED
,
3698 SCTP_U32(SCTP_ERROR_PROTO_VIOLATION
));
3700 sctp_add_cmd_sf(commands
, SCTP_CMD_ASSOC_FAILED
,
3701 SCTP_U32(SCTP_ERROR_PROTO_VIOLATION
));
3702 SCTP_DEC_STATS(SCTP_MIB_CURRESTAB
);
3705 sctp_add_cmd_sf(commands
, SCTP_CMD_DISCARD_PACKET
, SCTP_NULL());
3707 SCTP_INC_STATS(SCTP_MIB_ABORTEDS
);
3709 return SCTP_DISPOSITION_ABORT
;
3712 return SCTP_DISPOSITION_NOMEM
;
3715 /***************************************************************************
3716 * These are the state functions for handling primitive (Section 10) events.
3717 ***************************************************************************/
3719 * sctp_sf_do_prm_asoc
3721 * Section: 10.1 ULP-to-SCTP
3724 * Format: ASSOCIATE(local SCTP instance name, destination transport addr,
3725 * outbound stream count)
3726 * -> association id [,destination transport addr list] [,outbound stream
3729 * This primitive allows the upper layer to initiate an association to a
3730 * specific peer endpoint.
3732 * The peer endpoint shall be specified by one of the transport addresses
3733 * which defines the endpoint (see Section 1.4). If the local SCTP
3734 * instance has not been initialized, the ASSOCIATE is considered an
3736 * [This is not relevant for the kernel implementation since we do all
3737 * initialization at boot time. It we hadn't initialized we wouldn't
3738 * get anywhere near this code.]
3740 * An association id, which is a local handle to the SCTP association,
3741 * will be returned on successful establishment of the association. If
3742 * SCTP is not able to open an SCTP association with the peer endpoint,
3743 * an error is returned.
3744 * [In the kernel implementation, the struct sctp_association needs to
3745 * be created BEFORE causing this primitive to run.]
3747 * Other association parameters may be returned, including the
3748 * complete destination transport addresses of the peer as well as the
3749 * outbound stream count of the local endpoint. One of the transport
3750 * address from the returned destination addresses will be selected by
3751 * the local endpoint as default primary path for sending SCTP packets
3752 * to this peer. The returned "destination transport addr list" can
3753 * be used by the ULP to change the default primary path or to force
3754 * sending a packet to a specific transport address. [All of this
3755 * stuff happens when the INIT ACK arrives. This is a NON-BLOCKING
3758 * Mandatory attributes:
3760 * o local SCTP instance name - obtained from the INITIALIZE operation.
3761 * [This is the argument asoc.]
3762 * o destination transport addr - specified as one of the transport
3763 * addresses of the peer endpoint with which the association is to be
3765 * [This is asoc->peer.active_path.]
3766 * o outbound stream count - the number of outbound streams the ULP
3767 * would like to open towards this peer endpoint.
3768 * [BUG: This is not currently implemented.]
3769 * Optional attributes:
3773 * The return value is a disposition.
3775 sctp_disposition_t
sctp_sf_do_prm_asoc(const struct sctp_endpoint
*ep
,
3776 const struct sctp_association
*asoc
,
3777 const sctp_subtype_t type
,
3779 sctp_cmd_seq_t
*commands
)
3781 struct sctp_chunk
*repl
;
3783 /* The comment below says that we enter COOKIE-WAIT AFTER
3784 * sending the INIT, but that doesn't actually work in our
3787 sctp_add_cmd_sf(commands
, SCTP_CMD_NEW_STATE
,
3788 SCTP_STATE(SCTP_STATE_COOKIE_WAIT
));
3790 /* RFC 2960 5.1 Normal Establishment of an Association
3792 * A) "A" first sends an INIT chunk to "Z". In the INIT, "A"
3793 * must provide its Verification Tag (Tag_A) in the Initiate
3794 * Tag field. Tag_A SHOULD be a random number in the range of
3795 * 1 to 4294967295 (see 5.3.1 for Tag value selection). ...
3798 repl
= sctp_make_init(asoc
, &asoc
->base
.bind_addr
, GFP_ATOMIC
, 0);
3802 /* Cast away the const modifier, as we want to just
3803 * rerun it through as a sideffect.
3805 sctp_add_cmd_sf(commands
, SCTP_CMD_NEW_ASOC
,
3806 SCTP_ASOC((struct sctp_association
*) asoc
));
3808 /* After sending the INIT, "A" starts the T1-init timer and
3809 * enters the COOKIE-WAIT state.
3811 sctp_add_cmd_sf(commands
, SCTP_CMD_TIMER_START
,
3812 SCTP_TO(SCTP_EVENT_TIMEOUT_T1_INIT
));
3813 sctp_add_cmd_sf(commands
, SCTP_CMD_REPLY
, SCTP_CHUNK(repl
));
3814 return SCTP_DISPOSITION_CONSUME
;
3817 return SCTP_DISPOSITION_NOMEM
;
3821 * Process the SEND primitive.
3823 * Section: 10.1 ULP-to-SCTP
3826 * Format: SEND(association id, buffer address, byte count [,context]
3827 * [,stream id] [,life time] [,destination transport address]
3828 * [,unorder flag] [,no-bundle flag] [,payload protocol-id] )
3831 * This is the main method to send user data via SCTP.
3833 * Mandatory attributes:
3835 * o association id - local handle to the SCTP association
3837 * o buffer address - the location where the user message to be
3838 * transmitted is stored;
3840 * o byte count - The size of the user data in number of bytes;
3842 * Optional attributes:
3844 * o context - an optional 32 bit integer that will be carried in the
3845 * sending failure notification to the ULP if the transportation of
3846 * this User Message fails.
3848 * o stream id - to indicate which stream to send the data on. If not
3849 * specified, stream 0 will be used.
3851 * o life time - specifies the life time of the user data. The user data
3852 * will not be sent by SCTP after the life time expires. This
3853 * parameter can be used to avoid efforts to transmit stale
3854 * user messages. SCTP notifies the ULP if the data cannot be
3855 * initiated to transport (i.e. sent to the destination via SCTP's
3856 * send primitive) within the life time variable. However, the
3857 * user data will be transmitted if SCTP has attempted to transmit a
3858 * chunk before the life time expired.
3860 * o destination transport address - specified as one of the destination
3861 * transport addresses of the peer endpoint to which this packet
3862 * should be sent. Whenever possible, SCTP should use this destination
3863 * transport address for sending the packets, instead of the current
3866 * o unorder flag - this flag, if present, indicates that the user
3867 * would like the data delivered in an unordered fashion to the peer
3868 * (i.e., the U flag is set to 1 on all DATA chunks carrying this
3871 * o no-bundle flag - instructs SCTP not to bundle this user data with
3872 * other outbound DATA chunks. SCTP MAY still bundle even when
3873 * this flag is present, when faced with network congestion.
3875 * o payload protocol-id - A 32 bit unsigned integer that is to be
3876 * passed to the peer indicating the type of payload protocol data
3877 * being transmitted. This value is passed as opaque data by SCTP.
3879 * The return value is the disposition.
3881 sctp_disposition_t
sctp_sf_do_prm_send(const struct sctp_endpoint
*ep
,
3882 const struct sctp_association
*asoc
,
3883 const sctp_subtype_t type
,
3885 sctp_cmd_seq_t
*commands
)
3887 struct sctp_chunk
*chunk
= arg
;
3889 sctp_add_cmd_sf(commands
, SCTP_CMD_REPLY
, SCTP_CHUNK(chunk
));
3890 return SCTP_DISPOSITION_CONSUME
;
3894 * Process the SHUTDOWN primitive.
3899 * Format: SHUTDOWN(association id)
3902 * Gracefully closes an association. Any locally queued user data
3903 * will be delivered to the peer. The association will be terminated only
3904 * after the peer acknowledges all the SCTP packets sent. A success code
3905 * will be returned on successful termination of the association. If
3906 * attempting to terminate the association results in a failure, an error
3907 * code shall be returned.
3909 * Mandatory attributes:
3911 * o association id - local handle to the SCTP association
3913 * Optional attributes:
3917 * The return value is the disposition.
3919 sctp_disposition_t
sctp_sf_do_9_2_prm_shutdown(
3920 const struct sctp_endpoint
*ep
,
3921 const struct sctp_association
*asoc
,
3922 const sctp_subtype_t type
,
3924 sctp_cmd_seq_t
*commands
)
3928 /* From 9.2 Shutdown of an Association
3929 * Upon receipt of the SHUTDOWN primitive from its upper
3930 * layer, the endpoint enters SHUTDOWN-PENDING state and
3931 * remains there until all outstanding data has been
3932 * acknowledged by its peer. The endpoint accepts no new data
3933 * from its upper layer, but retransmits data to the far end
3934 * if necessary to fill gaps.
3936 sctp_add_cmd_sf(commands
, SCTP_CMD_NEW_STATE
,
3937 SCTP_STATE(SCTP_STATE_SHUTDOWN_PENDING
));
3939 /* sctpimpguide-05 Section 2.12.2
3940 * The sender of the SHUTDOWN MAY also start an overall guard timer
3941 * 'T5-shutdown-guard' to bound the overall time for shutdown sequence.
3943 sctp_add_cmd_sf(commands
, SCTP_CMD_TIMER_START
,
3944 SCTP_TO(SCTP_EVENT_TIMEOUT_T5_SHUTDOWN_GUARD
));
3946 disposition
= SCTP_DISPOSITION_CONSUME
;
3947 if (sctp_outq_is_empty(&asoc
->outqueue
)) {
3948 disposition
= sctp_sf_do_9_2_start_shutdown(ep
, asoc
, type
,
3955 * Process the ABORT primitive.
3960 * Format: Abort(association id [, cause code])
3963 * Ungracefully closes an association. Any locally queued user data
3964 * will be discarded and an ABORT chunk is sent to the peer. A success code
3965 * will be returned on successful abortion of the association. If
3966 * attempting to abort the association results in a failure, an error
3967 * code shall be returned.
3969 * Mandatory attributes:
3971 * o association id - local handle to the SCTP association
3973 * Optional attributes:
3975 * o cause code - reason of the abort to be passed to the peer
3979 * The return value is the disposition.
3981 sctp_disposition_t
sctp_sf_do_9_1_prm_abort(
3982 const struct sctp_endpoint
*ep
,
3983 const struct sctp_association
*asoc
,
3984 const sctp_subtype_t type
,
3986 sctp_cmd_seq_t
*commands
)
3988 /* From 9.1 Abort of an Association
3989 * Upon receipt of the ABORT primitive from its upper
3990 * layer, the endpoint enters CLOSED state and
3991 * discard all outstanding data has been
3992 * acknowledged by its peer. The endpoint accepts no new data
3993 * from its upper layer, but retransmits data to the far end
3994 * if necessary to fill gaps.
3996 struct msghdr
*msg
= arg
;
3997 struct sctp_chunk
*abort
;
3998 sctp_disposition_t retval
;
4000 retval
= SCTP_DISPOSITION_CONSUME
;
4002 /* Generate ABORT chunk to send the peer. */
4003 abort
= sctp_make_abort_user(asoc
, NULL
, msg
);
4005 retval
= SCTP_DISPOSITION_NOMEM
;
4007 sctp_add_cmd_sf(commands
, SCTP_CMD_REPLY
, SCTP_CHUNK(abort
));
4009 /* Even if we can't send the ABORT due to low memory delete the
4010 * TCB. This is a departure from our typical NOMEM handling.
4013 /* Delete the established association. */
4014 sctp_add_cmd_sf(commands
, SCTP_CMD_ASSOC_FAILED
,
4015 SCTP_U32(SCTP_ERROR_USER_ABORT
));
4017 SCTP_INC_STATS(SCTP_MIB_ABORTEDS
);
4018 SCTP_DEC_STATS(SCTP_MIB_CURRESTAB
);
4023 /* We tried an illegal operation on an association which is closed. */
4024 sctp_disposition_t
sctp_sf_error_closed(const struct sctp_endpoint
*ep
,
4025 const struct sctp_association
*asoc
,
4026 const sctp_subtype_t type
,
4028 sctp_cmd_seq_t
*commands
)
4030 sctp_add_cmd_sf(commands
, SCTP_CMD_REPORT_ERROR
, SCTP_ERROR(-EINVAL
));
4031 return SCTP_DISPOSITION_CONSUME
;
4034 /* We tried an illegal operation on an association which is shutting
4037 sctp_disposition_t
sctp_sf_error_shutdown(const struct sctp_endpoint
*ep
,
4038 const struct sctp_association
*asoc
,
4039 const sctp_subtype_t type
,
4041 sctp_cmd_seq_t
*commands
)
4043 sctp_add_cmd_sf(commands
, SCTP_CMD_REPORT_ERROR
,
4044 SCTP_ERROR(-ESHUTDOWN
));
4045 return SCTP_DISPOSITION_CONSUME
;
4049 * sctp_cookie_wait_prm_shutdown
4051 * Section: 4 Note: 2
4056 * The RFC does not explicitly address this issue, but is the route through the
4057 * state table when someone issues a shutdown while in COOKIE_WAIT state.
4062 sctp_disposition_t
sctp_sf_cookie_wait_prm_shutdown(
4063 const struct sctp_endpoint
*ep
,
4064 const struct sctp_association
*asoc
,
4065 const sctp_subtype_t type
,
4067 sctp_cmd_seq_t
*commands
)
4069 sctp_add_cmd_sf(commands
, SCTP_CMD_TIMER_STOP
,
4070 SCTP_TO(SCTP_EVENT_TIMEOUT_T1_INIT
));
4072 sctp_add_cmd_sf(commands
, SCTP_CMD_NEW_STATE
,
4073 SCTP_STATE(SCTP_STATE_CLOSED
));
4075 SCTP_INC_STATS(SCTP_MIB_SHUTDOWNS
);
4077 sctp_add_cmd_sf(commands
, SCTP_CMD_DELETE_TCB
, SCTP_NULL());
4079 return SCTP_DISPOSITION_DELETE_TCB
;
4083 * sctp_cookie_echoed_prm_shutdown
4085 * Section: 4 Note: 2
4090 * The RFC does not explcitly address this issue, but is the route through the
4091 * state table when someone issues a shutdown while in COOKIE_ECHOED state.
4096 sctp_disposition_t
sctp_sf_cookie_echoed_prm_shutdown(
4097 const struct sctp_endpoint
*ep
,
4098 const struct sctp_association
*asoc
,
4099 const sctp_subtype_t type
,
4100 void *arg
, sctp_cmd_seq_t
*commands
)
4102 /* There is a single T1 timer, so we should be able to use
4103 * common function with the COOKIE-WAIT state.
4105 return sctp_sf_cookie_wait_prm_shutdown(ep
, asoc
, type
, arg
, commands
);
4109 * sctp_sf_cookie_wait_prm_abort
4111 * Section: 4 Note: 2
4116 * The RFC does not explicitly address this issue, but is the route through the
4117 * state table when someone issues an abort while in COOKIE_WAIT state.
4122 sctp_disposition_t
sctp_sf_cookie_wait_prm_abort(
4123 const struct sctp_endpoint
*ep
,
4124 const struct sctp_association
*asoc
,
4125 const sctp_subtype_t type
,
4127 sctp_cmd_seq_t
*commands
)
4129 struct msghdr
*msg
= arg
;
4130 struct sctp_chunk
*abort
;
4131 sctp_disposition_t retval
;
4133 /* Stop T1-init timer */
4134 sctp_add_cmd_sf(commands
, SCTP_CMD_TIMER_STOP
,
4135 SCTP_TO(SCTP_EVENT_TIMEOUT_T1_INIT
));
4136 retval
= SCTP_DISPOSITION_CONSUME
;
4138 /* Generate ABORT chunk to send the peer */
4139 abort
= sctp_make_abort_user(asoc
, NULL
, msg
);
4141 retval
= SCTP_DISPOSITION_NOMEM
;
4143 sctp_add_cmd_sf(commands
, SCTP_CMD_REPLY
, SCTP_CHUNK(abort
));
4145 sctp_add_cmd_sf(commands
, SCTP_CMD_NEW_STATE
,
4146 SCTP_STATE(SCTP_STATE_CLOSED
));
4148 SCTP_INC_STATS(SCTP_MIB_ABORTEDS
);
4150 /* Even if we can't send the ABORT due to low memory delete the
4151 * TCB. This is a departure from our typical NOMEM handling.
4154 /* Delete the established association. */
4155 sctp_add_cmd_sf(commands
, SCTP_CMD_INIT_FAILED
,
4156 SCTP_U32(SCTP_ERROR_USER_ABORT
));
4162 * sctp_sf_cookie_echoed_prm_abort
4164 * Section: 4 Note: 3
4169 * The RFC does not explcitly address this issue, but is the route through the
4170 * state table when someone issues an abort while in COOKIE_ECHOED state.
4175 sctp_disposition_t
sctp_sf_cookie_echoed_prm_abort(
4176 const struct sctp_endpoint
*ep
,
4177 const struct sctp_association
*asoc
,
4178 const sctp_subtype_t type
,
4180 sctp_cmd_seq_t
*commands
)
4182 /* There is a single T1 timer, so we should be able to use
4183 * common function with the COOKIE-WAIT state.
4185 return sctp_sf_cookie_wait_prm_abort(ep
, asoc
, type
, arg
, commands
);
4189 * sctp_sf_shutdown_pending_prm_abort
4194 * The RFC does not explicitly address this issue, but is the route through the
4195 * state table when someone issues an abort while in SHUTDOWN-PENDING state.
4200 sctp_disposition_t
sctp_sf_shutdown_pending_prm_abort(
4201 const struct sctp_endpoint
*ep
,
4202 const struct sctp_association
*asoc
,
4203 const sctp_subtype_t type
,
4205 sctp_cmd_seq_t
*commands
)
4207 /* Stop the T5-shutdown guard timer. */
4208 sctp_add_cmd_sf(commands
, SCTP_CMD_TIMER_STOP
,
4209 SCTP_TO(SCTP_EVENT_TIMEOUT_T5_SHUTDOWN_GUARD
));
4211 return sctp_sf_do_9_1_prm_abort(ep
, asoc
, type
, arg
, commands
);
4215 * sctp_sf_shutdown_sent_prm_abort
4220 * The RFC does not explicitly address this issue, but is the route through the
4221 * state table when someone issues an abort while in SHUTDOWN-SENT state.
4226 sctp_disposition_t
sctp_sf_shutdown_sent_prm_abort(
4227 const struct sctp_endpoint
*ep
,
4228 const struct sctp_association
*asoc
,
4229 const sctp_subtype_t type
,
4231 sctp_cmd_seq_t
*commands
)
4233 /* Stop the T2-shutdown timer. */
4234 sctp_add_cmd_sf(commands
, SCTP_CMD_TIMER_STOP
,
4235 SCTP_TO(SCTP_EVENT_TIMEOUT_T2_SHUTDOWN
));
4237 /* Stop the T5-shutdown guard timer. */
4238 sctp_add_cmd_sf(commands
, SCTP_CMD_TIMER_STOP
,
4239 SCTP_TO(SCTP_EVENT_TIMEOUT_T5_SHUTDOWN_GUARD
));
4241 return sctp_sf_do_9_1_prm_abort(ep
, asoc
, type
, arg
, commands
);
4245 * sctp_sf_cookie_echoed_prm_abort
4250 * The RFC does not explcitly address this issue, but is the route through the
4251 * state table when someone issues an abort while in COOKIE_ECHOED state.
4256 sctp_disposition_t
sctp_sf_shutdown_ack_sent_prm_abort(
4257 const struct sctp_endpoint
*ep
,
4258 const struct sctp_association
*asoc
,
4259 const sctp_subtype_t type
,
4261 sctp_cmd_seq_t
*commands
)
4263 /* The same T2 timer, so we should be able to use
4264 * common function with the SHUTDOWN-SENT state.
4266 return sctp_sf_shutdown_sent_prm_abort(ep
, asoc
, type
, arg
, commands
);
4270 * Process the REQUESTHEARTBEAT primitive
4273 * J) Request Heartbeat
4275 * Format: REQUESTHEARTBEAT(association id, destination transport address)
4279 * Instructs the local endpoint to perform a HeartBeat on the specified
4280 * destination transport address of the given association. The returned
4281 * result should indicate whether the transmission of the HEARTBEAT
4282 * chunk to the destination address is successful.
4284 * Mandatory attributes:
4286 * o association id - local handle to the SCTP association
4288 * o destination transport address - the transport address of the
4289 * association on which a heartbeat should be issued.
4291 sctp_disposition_t
sctp_sf_do_prm_requestheartbeat(
4292 const struct sctp_endpoint
*ep
,
4293 const struct sctp_association
*asoc
,
4294 const sctp_subtype_t type
,
4296 sctp_cmd_seq_t
*commands
)
4298 return sctp_sf_heartbeat(ep
, asoc
, type
, (struct sctp_transport
*)arg
,
4303 * ADDIP Section 4.1 ASCONF Chunk Procedures
4304 * When an endpoint has an ASCONF signaled change to be sent to the
4305 * remote endpoint it should do A1 to A9
4307 sctp_disposition_t
sctp_sf_do_prm_asconf(const struct sctp_endpoint
*ep
,
4308 const struct sctp_association
*asoc
,
4309 const sctp_subtype_t type
,
4311 sctp_cmd_seq_t
*commands
)
4313 struct sctp_chunk
*chunk
= arg
;
4315 sctp_add_cmd_sf(commands
, SCTP_CMD_SETUP_T4
, SCTP_CHUNK(chunk
));
4316 sctp_add_cmd_sf(commands
, SCTP_CMD_TIMER_START
,
4317 SCTP_TO(SCTP_EVENT_TIMEOUT_T4_RTO
));
4318 sctp_add_cmd_sf(commands
, SCTP_CMD_REPLY
, SCTP_CHUNK(chunk
));
4319 return SCTP_DISPOSITION_CONSUME
;
4323 * Ignore the primitive event
4325 * The return value is the disposition of the primitive.
4327 sctp_disposition_t
sctp_sf_ignore_primitive(
4328 const struct sctp_endpoint
*ep
,
4329 const struct sctp_association
*asoc
,
4330 const sctp_subtype_t type
,
4332 sctp_cmd_seq_t
*commands
)
4334 SCTP_DEBUG_PRINTK("Primitive type %d is ignored.\n", type
.primitive
);
4335 return SCTP_DISPOSITION_DISCARD
;
4338 /***************************************************************************
4339 * These are the state functions for the OTHER events.
4340 ***************************************************************************/
4343 * Start the shutdown negotiation.
4346 * Once all its outstanding data has been acknowledged, the endpoint
4347 * shall send a SHUTDOWN chunk to its peer including in the Cumulative
4348 * TSN Ack field the last sequential TSN it has received from the peer.
4349 * It shall then start the T2-shutdown timer and enter the SHUTDOWN-SENT
4350 * state. If the timer expires, the endpoint must re-send the SHUTDOWN
4351 * with the updated last sequential TSN received from its peer.
4353 * The return value is the disposition.
4355 sctp_disposition_t
sctp_sf_do_9_2_start_shutdown(
4356 const struct sctp_endpoint
*ep
,
4357 const struct sctp_association
*asoc
,
4358 const sctp_subtype_t type
,
4360 sctp_cmd_seq_t
*commands
)
4362 struct sctp_chunk
*reply
;
4364 /* Once all its outstanding data has been acknowledged, the
4365 * endpoint shall send a SHUTDOWN chunk to its peer including
4366 * in the Cumulative TSN Ack field the last sequential TSN it
4367 * has received from the peer.
4369 reply
= sctp_make_shutdown(asoc
, NULL
);
4373 /* Set the transport for the SHUTDOWN chunk and the timeout for the
4374 * T2-shutdown timer.
4376 sctp_add_cmd_sf(commands
, SCTP_CMD_SETUP_T2
, SCTP_CHUNK(reply
));
4378 /* It shall then start the T2-shutdown timer */
4379 sctp_add_cmd_sf(commands
, SCTP_CMD_TIMER_START
,
4380 SCTP_TO(SCTP_EVENT_TIMEOUT_T2_SHUTDOWN
));
4382 if (asoc
->autoclose
)
4383 sctp_add_cmd_sf(commands
, SCTP_CMD_TIMER_STOP
,
4384 SCTP_TO(SCTP_EVENT_TIMEOUT_AUTOCLOSE
));
4386 /* and enter the SHUTDOWN-SENT state. */
4387 sctp_add_cmd_sf(commands
, SCTP_CMD_NEW_STATE
,
4388 SCTP_STATE(SCTP_STATE_SHUTDOWN_SENT
));
4390 /* sctp-implguide 2.10 Issues with Heartbeating and failover
4392 * HEARTBEAT ... is discontinued after sending either SHUTDOWN
4395 sctp_add_cmd_sf(commands
, SCTP_CMD_HB_TIMERS_STOP
, SCTP_NULL());
4397 sctp_add_cmd_sf(commands
, SCTP_CMD_REPLY
, SCTP_CHUNK(reply
));
4399 return SCTP_DISPOSITION_CONSUME
;
4402 return SCTP_DISPOSITION_NOMEM
;
4406 * Generate a SHUTDOWN ACK now that everything is SACK'd.
4410 * If it has no more outstanding DATA chunks, the SHUTDOWN receiver
4411 * shall send a SHUTDOWN ACK and start a T2-shutdown timer of its own,
4412 * entering the SHUTDOWN-ACK-SENT state. If the timer expires, the
4413 * endpoint must re-send the SHUTDOWN ACK.
4415 * The return value is the disposition.
4417 sctp_disposition_t
sctp_sf_do_9_2_shutdown_ack(
4418 const struct sctp_endpoint
*ep
,
4419 const struct sctp_association
*asoc
,
4420 const sctp_subtype_t type
,
4422 sctp_cmd_seq_t
*commands
)
4424 struct sctp_chunk
*chunk
= (struct sctp_chunk
*) arg
;
4425 struct sctp_chunk
*reply
;
4427 /* There are 2 ways of getting here:
4428 * 1) called in response to a SHUTDOWN chunk
4429 * 2) called when SCTP_EVENT_NO_PENDING_TSN event is issued.
4431 * For the case (2), the arg parameter is set to NULL. We need
4432 * to check that we have a chunk before accessing it's fields.
4435 if (!sctp_vtag_verify(chunk
, asoc
))
4436 return sctp_sf_pdiscard(ep
, asoc
, type
, arg
, commands
);
4438 /* Make sure that the SHUTDOWN chunk has a valid length. */
4439 if (!sctp_chunk_length_valid(chunk
, sizeof(struct sctp_shutdown_chunk_t
)))
4440 return sctp_sf_violation_chunklen(ep
, asoc
, type
, arg
,
4444 /* If it has no more outstanding DATA chunks, the SHUTDOWN receiver
4445 * shall send a SHUTDOWN ACK ...
4447 reply
= sctp_make_shutdown_ack(asoc
, chunk
);
4451 /* Set the transport for the SHUTDOWN ACK chunk and the timeout for
4452 * the T2-shutdown timer.
4454 sctp_add_cmd_sf(commands
, SCTP_CMD_SETUP_T2
, SCTP_CHUNK(reply
));
4456 /* and start/restart a T2-shutdown timer of its own, */
4457 sctp_add_cmd_sf(commands
, SCTP_CMD_TIMER_RESTART
,
4458 SCTP_TO(SCTP_EVENT_TIMEOUT_T2_SHUTDOWN
));
4460 if (asoc
->autoclose
)
4461 sctp_add_cmd_sf(commands
, SCTP_CMD_TIMER_STOP
,
4462 SCTP_TO(SCTP_EVENT_TIMEOUT_AUTOCLOSE
));
4464 /* Enter the SHUTDOWN-ACK-SENT state. */
4465 sctp_add_cmd_sf(commands
, SCTP_CMD_NEW_STATE
,
4466 SCTP_STATE(SCTP_STATE_SHUTDOWN_ACK_SENT
));
4468 /* sctp-implguide 2.10 Issues with Heartbeating and failover
4470 * HEARTBEAT ... is discontinued after sending either SHUTDOWN
4473 sctp_add_cmd_sf(commands
, SCTP_CMD_HB_TIMERS_STOP
, SCTP_NULL());
4475 sctp_add_cmd_sf(commands
, SCTP_CMD_REPLY
, SCTP_CHUNK(reply
));
4477 return SCTP_DISPOSITION_CONSUME
;
4480 return SCTP_DISPOSITION_NOMEM
;
4484 * Ignore the event defined as other
4486 * The return value is the disposition of the event.
4488 sctp_disposition_t
sctp_sf_ignore_other(const struct sctp_endpoint
*ep
,
4489 const struct sctp_association
*asoc
,
4490 const sctp_subtype_t type
,
4492 sctp_cmd_seq_t
*commands
)
4494 SCTP_DEBUG_PRINTK("The event other type %d is ignored\n", type
.other
);
4495 return SCTP_DISPOSITION_DISCARD
;
4498 /************************************************************
4499 * These are the state functions for handling timeout events.
4500 ************************************************************/
4505 * Section: 6.3.3 Handle T3-rtx Expiration
4507 * Whenever the retransmission timer T3-rtx expires for a destination
4508 * address, do the following:
4511 * The return value is the disposition of the chunk.
4513 sctp_disposition_t
sctp_sf_do_6_3_3_rtx(const struct sctp_endpoint
*ep
,
4514 const struct sctp_association
*asoc
,
4515 const sctp_subtype_t type
,
4517 sctp_cmd_seq_t
*commands
)
4519 struct sctp_transport
*transport
= arg
;
4521 if (asoc
->overall_error_count
>= asoc
->max_retrans
) {
4522 /* CMD_ASSOC_FAILED calls CMD_DELETE_TCB. */
4523 sctp_add_cmd_sf(commands
, SCTP_CMD_ASSOC_FAILED
,
4524 SCTP_U32(SCTP_ERROR_NO_ERROR
));
4525 SCTP_INC_STATS(SCTP_MIB_ABORTEDS
);
4526 SCTP_DEC_STATS(SCTP_MIB_CURRESTAB
);
4527 return SCTP_DISPOSITION_DELETE_TCB
;
4530 /* E1) For the destination address for which the timer
4531 * expires, adjust its ssthresh with rules defined in Section
4532 * 7.2.3 and set the cwnd <- MTU.
4535 /* E2) For the destination address for which the timer
4536 * expires, set RTO <- RTO * 2 ("back off the timer"). The
4537 * maximum value discussed in rule C7 above (RTO.max) may be
4538 * used to provide an upper bound to this doubling operation.
4541 /* E3) Determine how many of the earliest (i.e., lowest TSN)
4542 * outstanding DATA chunks for the address for which the
4543 * T3-rtx has expired will fit into a single packet, subject
4544 * to the MTU constraint for the path corresponding to the
4545 * destination transport address to which the retransmission
4546 * is being sent (this may be different from the address for
4547 * which the timer expires [see Section 6.4]). Call this
4548 * value K. Bundle and retransmit those K DATA chunks in a
4549 * single packet to the destination endpoint.
4551 * Note: Any DATA chunks that were sent to the address for
4552 * which the T3-rtx timer expired but did not fit in one MTU
4553 * (rule E3 above), should be marked for retransmission and
4554 * sent as soon as cwnd allows (normally when a SACK arrives).
4557 /* NB: Rules E4 and F1 are implicit in R1. */
4558 sctp_add_cmd_sf(commands
, SCTP_CMD_RETRAN
, SCTP_TRANSPORT(transport
));
4560 /* Do some failure management (Section 8.2). */
4561 sctp_add_cmd_sf(commands
, SCTP_CMD_STRIKE
, SCTP_TRANSPORT(transport
));
4563 return SCTP_DISPOSITION_CONSUME
;
4567 * Generate delayed SACK on timeout
4569 * Section: 6.2 Acknowledgement on Reception of DATA Chunks
4571 * The guidelines on delayed acknowledgement algorithm specified in
4572 * Section 4.2 of [RFC2581] SHOULD be followed. Specifically, an
4573 * acknowledgement SHOULD be generated for at least every second packet
4574 * (not every second DATA chunk) received, and SHOULD be generated
4575 * within 200 ms of the arrival of any unacknowledged DATA chunk. In
4576 * some situations it may be beneficial for an SCTP transmitter to be
4577 * more conservative than the algorithms detailed in this document
4578 * allow. However, an SCTP transmitter MUST NOT be more aggressive than
4579 * the following algorithms allow.
4581 sctp_disposition_t
sctp_sf_do_6_2_sack(const struct sctp_endpoint
*ep
,
4582 const struct sctp_association
*asoc
,
4583 const sctp_subtype_t type
,
4585 sctp_cmd_seq_t
*commands
)
4587 sctp_add_cmd_sf(commands
, SCTP_CMD_GEN_SACK
, SCTP_FORCE());
4588 return SCTP_DISPOSITION_CONSUME
;
4592 * sctp_sf_t1_timer_expire
4594 * Section: 4 Note: 2
4599 * RFC 2960 Section 4 Notes
4600 * 2) If the T1-init timer expires, the endpoint MUST retransmit INIT
4601 * and re-start the T1-init timer without changing state. This MUST
4602 * be repeated up to 'Max.Init.Retransmits' times. After that, the
4603 * endpoint MUST abort the initialization process and report the
4604 * error to SCTP user.
4606 * 3) If the T1-cookie timer expires, the endpoint MUST retransmit
4607 * COOKIE ECHO and re-start the T1-cookie timer without changing
4608 * state. This MUST be repeated up to 'Max.Init.Retransmits' times.
4609 * After that, the endpoint MUST abort the initialization process and
4610 * report the error to SCTP user.
4616 sctp_disposition_t
sctp_sf_t1_timer_expire(const struct sctp_endpoint
*ep
,
4617 const struct sctp_association
*asoc
,
4618 const sctp_subtype_t type
,
4620 sctp_cmd_seq_t
*commands
)
4622 struct sctp_chunk
*repl
;
4623 struct sctp_bind_addr
*bp
;
4624 sctp_event_timeout_t timer
= (sctp_event_timeout_t
) arg
;
4628 timeout
= asoc
->timeouts
[timer
];
4629 attempts
= asoc
->counters
[SCTP_COUNTER_INIT_ERROR
] + 1;
4632 SCTP_DEBUG_PRINTK("Timer T1 expired.\n");
4634 if (attempts
< asoc
->max_init_attempts
) {
4636 case SCTP_EVENT_TIMEOUT_T1_INIT
:
4637 bp
= (struct sctp_bind_addr
*) &asoc
->base
.bind_addr
;
4638 repl
= sctp_make_init(asoc
, bp
, GFP_ATOMIC
, 0);
4641 case SCTP_EVENT_TIMEOUT_T1_COOKIE
:
4642 repl
= sctp_make_cookie_echo(asoc
, NULL
);
4653 /* Issue a sideeffect to do the needed accounting. */
4654 sctp_add_cmd_sf(commands
, SCTP_CMD_INIT_RESTART
,
4656 sctp_add_cmd_sf(commands
, SCTP_CMD_REPLY
, SCTP_CHUNK(repl
));
4658 sctp_add_cmd_sf(commands
, SCTP_CMD_INIT_FAILED
,
4659 SCTP_U32(SCTP_ERROR_NO_ERROR
));
4660 return SCTP_DISPOSITION_DELETE_TCB
;
4663 return SCTP_DISPOSITION_CONSUME
;
4666 return SCTP_DISPOSITION_NOMEM
;
4669 /* RFC2960 9.2 If the timer expires, the endpoint must re-send the SHUTDOWN
4670 * with the updated last sequential TSN received from its peer.
4672 * An endpoint should limit the number of retransmissions of the
4673 * SHUTDOWN chunk to the protocol parameter 'Association.Max.Retrans'.
4674 * If this threshold is exceeded the endpoint should destroy the TCB and
4675 * MUST report the peer endpoint unreachable to the upper layer (and
4676 * thus the association enters the CLOSED state). The reception of any
4677 * packet from its peer (i.e. as the peer sends all of its queued DATA
4678 * chunks) should clear the endpoint's retransmission count and restart
4679 * the T2-Shutdown timer, giving its peer ample opportunity to transmit
4680 * all of its queued DATA chunks that have not yet been sent.
4682 sctp_disposition_t
sctp_sf_t2_timer_expire(const struct sctp_endpoint
*ep
,
4683 const struct sctp_association
*asoc
,
4684 const sctp_subtype_t type
,
4686 sctp_cmd_seq_t
*commands
)
4688 struct sctp_chunk
*reply
= NULL
;
4690 SCTP_DEBUG_PRINTK("Timer T2 expired.\n");
4691 if (asoc
->overall_error_count
>= asoc
->max_retrans
) {
4692 /* Note: CMD_ASSOC_FAILED calls CMD_DELETE_TCB. */
4693 sctp_add_cmd_sf(commands
, SCTP_CMD_ASSOC_FAILED
,
4694 SCTP_U32(SCTP_ERROR_NO_ERROR
));
4695 SCTP_INC_STATS(SCTP_MIB_ABORTEDS
);
4696 SCTP_DEC_STATS(SCTP_MIB_CURRESTAB
);
4697 return SCTP_DISPOSITION_DELETE_TCB
;
4700 switch (asoc
->state
) {
4701 case SCTP_STATE_SHUTDOWN_SENT
:
4702 reply
= sctp_make_shutdown(asoc
, NULL
);
4705 case SCTP_STATE_SHUTDOWN_ACK_SENT
:
4706 reply
= sctp_make_shutdown_ack(asoc
, NULL
);
4717 /* Do some failure management (Section 8.2). */
4718 sctp_add_cmd_sf(commands
, SCTP_CMD_STRIKE
,
4719 SCTP_TRANSPORT(asoc
->shutdown_last_sent_to
));
4721 /* Set the transport for the SHUTDOWN/ACK chunk and the timeout for
4722 * the T2-shutdown timer.
4724 sctp_add_cmd_sf(commands
, SCTP_CMD_SETUP_T2
, SCTP_CHUNK(reply
));
4726 /* Restart the T2-shutdown timer. */
4727 sctp_add_cmd_sf(commands
, SCTP_CMD_TIMER_RESTART
,
4728 SCTP_TO(SCTP_EVENT_TIMEOUT_T2_SHUTDOWN
));
4729 sctp_add_cmd_sf(commands
, SCTP_CMD_REPLY
, SCTP_CHUNK(reply
));
4730 return SCTP_DISPOSITION_CONSUME
;
4733 return SCTP_DISPOSITION_NOMEM
;
4737 * ADDIP Section 4.1 ASCONF CHunk Procedures
4738 * If the T4 RTO timer expires the endpoint should do B1 to B5
4740 sctp_disposition_t
sctp_sf_t4_timer_expire(
4741 const struct sctp_endpoint
*ep
,
4742 const struct sctp_association
*asoc
,
4743 const sctp_subtype_t type
,
4745 sctp_cmd_seq_t
*commands
)
4747 struct sctp_chunk
*chunk
= asoc
->addip_last_asconf
;
4748 struct sctp_transport
*transport
= chunk
->transport
;
4750 /* ADDIP 4.1 B1) Increment the error counters and perform path failure
4751 * detection on the appropriate destination address as defined in
4752 * RFC2960 [5] section 8.1 and 8.2.
4754 sctp_add_cmd_sf(commands
, SCTP_CMD_STRIKE
, SCTP_TRANSPORT(transport
));
4756 /* Reconfig T4 timer and transport. */
4757 sctp_add_cmd_sf(commands
, SCTP_CMD_SETUP_T4
, SCTP_CHUNK(chunk
));
4759 /* ADDIP 4.1 B2) Increment the association error counters and perform
4760 * endpoint failure detection on the association as defined in
4761 * RFC2960 [5] section 8.1 and 8.2.
4762 * association error counter is incremented in SCTP_CMD_STRIKE.
4764 if (asoc
->overall_error_count
>= asoc
->max_retrans
) {
4765 sctp_add_cmd_sf(commands
, SCTP_CMD_TIMER_STOP
,
4766 SCTP_TO(SCTP_EVENT_TIMEOUT_T4_RTO
));
4767 sctp_add_cmd_sf(commands
, SCTP_CMD_ASSOC_FAILED
,
4768 SCTP_U32(SCTP_ERROR_NO_ERROR
));
4769 SCTP_INC_STATS(SCTP_MIB_ABORTEDS
);
4770 SCTP_INC_STATS(SCTP_MIB_CURRESTAB
);
4771 return SCTP_DISPOSITION_ABORT
;
4774 /* ADDIP 4.1 B3) Back-off the destination address RTO value to which
4775 * the ASCONF chunk was sent by doubling the RTO timer value.
4776 * This is done in SCTP_CMD_STRIKE.
4779 /* ADDIP 4.1 B4) Re-transmit the ASCONF Chunk last sent and if possible
4780 * choose an alternate destination address (please refer to RFC2960
4781 * [5] section 6.4.1). An endpoint MUST NOT add new parameters to this
4782 * chunk, it MUST be the same (including its serial number) as the last
4785 sctp_chunk_hold(asoc
->addip_last_asconf
);
4786 sctp_add_cmd_sf(commands
, SCTP_CMD_REPLY
,
4787 SCTP_CHUNK(asoc
->addip_last_asconf
));
4789 /* ADDIP 4.1 B5) Restart the T-4 RTO timer. Note that if a different
4790 * destination is selected, then the RTO used will be that of the new
4791 * destination address.
4793 sctp_add_cmd_sf(commands
, SCTP_CMD_TIMER_RESTART
,
4794 SCTP_TO(SCTP_EVENT_TIMEOUT_T4_RTO
));
4796 return SCTP_DISPOSITION_CONSUME
;
4799 /* sctpimpguide-05 Section 2.12.2
4800 * The sender of the SHUTDOWN MAY also start an overall guard timer
4801 * 'T5-shutdown-guard' to bound the overall time for shutdown sequence.
4802 * At the expiration of this timer the sender SHOULD abort the association
4803 * by sending an ABORT chunk.
4805 sctp_disposition_t
sctp_sf_t5_timer_expire(const struct sctp_endpoint
*ep
,
4806 const struct sctp_association
*asoc
,
4807 const sctp_subtype_t type
,
4809 sctp_cmd_seq_t
*commands
)
4811 struct sctp_chunk
*reply
= NULL
;
4813 SCTP_DEBUG_PRINTK("Timer T5 expired.\n");
4815 reply
= sctp_make_abort(asoc
, NULL
, 0);
4819 sctp_add_cmd_sf(commands
, SCTP_CMD_REPLY
, SCTP_CHUNK(reply
));
4820 sctp_add_cmd_sf(commands
, SCTP_CMD_ASSOC_FAILED
,
4821 SCTP_U32(SCTP_ERROR_NO_ERROR
));
4823 return SCTP_DISPOSITION_DELETE_TCB
;
4825 return SCTP_DISPOSITION_NOMEM
;
4828 /* Handle expiration of AUTOCLOSE timer. When the autoclose timer expires,
4829 * the association is automatically closed by starting the shutdown process.
4830 * The work that needs to be done is same as when SHUTDOWN is initiated by
4831 * the user. So this routine looks same as sctp_sf_do_9_2_prm_shutdown().
4833 sctp_disposition_t
sctp_sf_autoclose_timer_expire(
4834 const struct sctp_endpoint
*ep
,
4835 const struct sctp_association
*asoc
,
4836 const sctp_subtype_t type
,
4838 sctp_cmd_seq_t
*commands
)
4842 /* From 9.2 Shutdown of an Association
4843 * Upon receipt of the SHUTDOWN primitive from its upper
4844 * layer, the endpoint enters SHUTDOWN-PENDING state and
4845 * remains there until all outstanding data has been
4846 * acknowledged by its peer. The endpoint accepts no new data
4847 * from its upper layer, but retransmits data to the far end
4848 * if necessary to fill gaps.
4850 sctp_add_cmd_sf(commands
, SCTP_CMD_NEW_STATE
,
4851 SCTP_STATE(SCTP_STATE_SHUTDOWN_PENDING
));
4853 /* sctpimpguide-05 Section 2.12.2
4854 * The sender of the SHUTDOWN MAY also start an overall guard timer
4855 * 'T5-shutdown-guard' to bound the overall time for shutdown sequence.
4857 sctp_add_cmd_sf(commands
, SCTP_CMD_TIMER_START
,
4858 SCTP_TO(SCTP_EVENT_TIMEOUT_T5_SHUTDOWN_GUARD
));
4859 disposition
= SCTP_DISPOSITION_CONSUME
;
4860 if (sctp_outq_is_empty(&asoc
->outqueue
)) {
4861 disposition
= sctp_sf_do_9_2_start_shutdown(ep
, asoc
, type
,
4867 /*****************************************************************************
4868 * These are sa state functions which could apply to all types of events.
4869 ****************************************************************************/
4872 * This table entry is not implemented.
4875 * (endpoint, asoc, chunk)
4877 * The return value is the disposition of the chunk.
4879 sctp_disposition_t
sctp_sf_not_impl(const struct sctp_endpoint
*ep
,
4880 const struct sctp_association
*asoc
,
4881 const sctp_subtype_t type
,
4883 sctp_cmd_seq_t
*commands
)
4885 return SCTP_DISPOSITION_NOT_IMPL
;
4889 * This table entry represents a bug.
4892 * (endpoint, asoc, chunk)
4894 * The return value is the disposition of the chunk.
4896 sctp_disposition_t
sctp_sf_bug(const struct sctp_endpoint
*ep
,
4897 const struct sctp_association
*asoc
,
4898 const sctp_subtype_t type
,
4900 sctp_cmd_seq_t
*commands
)
4902 return SCTP_DISPOSITION_BUG
;
4906 * This table entry represents the firing of a timer in the wrong state.
4907 * Since timer deletion cannot be guaranteed a timer 'may' end up firing
4908 * when the association is in the wrong state. This event should
4909 * be ignored, so as to prevent any rearming of the timer.
4912 * (endpoint, asoc, chunk)
4914 * The return value is the disposition of the chunk.
4916 sctp_disposition_t
sctp_sf_timer_ignore(const struct sctp_endpoint
*ep
,
4917 const struct sctp_association
*asoc
,
4918 const sctp_subtype_t type
,
4920 sctp_cmd_seq_t
*commands
)
4922 SCTP_DEBUG_PRINTK("Timer %d ignored.\n", type
.chunk
);
4923 return SCTP_DISPOSITION_CONSUME
;
4926 /********************************************************************
4927 * 2nd Level Abstractions
4928 ********************************************************************/
4930 /* Pull the SACK chunk based on the SACK header. */
4931 static struct sctp_sackhdr
*sctp_sm_pull_sack(struct sctp_chunk
*chunk
)
4933 struct sctp_sackhdr
*sack
;
4938 /* Protect ourselves from reading too far into
4939 * the skb from a bogus sender.
4941 sack
= (struct sctp_sackhdr
*) chunk
->skb
->data
;
4943 num_blocks
= ntohs(sack
->num_gap_ack_blocks
);
4944 num_dup_tsns
= ntohs(sack
->num_dup_tsns
);
4945 len
= sizeof(struct sctp_sackhdr
);
4946 len
+= (num_blocks
+ num_dup_tsns
) * sizeof(__u32
);
4947 if (len
> chunk
->skb
->len
)
4950 skb_pull(chunk
->skb
, len
);
4955 /* Create an ABORT packet to be sent as a response, with the specified
4958 static struct sctp_packet
*sctp_abort_pkt_new(const struct sctp_endpoint
*ep
,
4959 const struct sctp_association
*asoc
,
4960 struct sctp_chunk
*chunk
,
4961 const void *payload
,
4964 struct sctp_packet
*packet
;
4965 struct sctp_chunk
*abort
;
4967 packet
= sctp_ootb_pkt_new(asoc
, chunk
);
4971 * The T bit will be set if the asoc is NULL.
4973 abort
= sctp_make_abort(asoc
, chunk
, paylen
);
4975 sctp_ootb_pkt_free(packet
);
4979 /* Reflect vtag if T-Bit is set */
4980 if (sctp_test_T_bit(abort
))
4981 packet
->vtag
= ntohl(chunk
->sctp_hdr
->vtag
);
4983 /* Add specified error causes, i.e., payload, to the
4986 sctp_addto_chunk(abort
, paylen
, payload
);
4988 /* Set the skb to the belonging sock for accounting. */
4989 abort
->skb
->sk
= ep
->base
.sk
;
4991 sctp_packet_append_chunk(packet
, abort
);
4998 /* Allocate a packet for responding in the OOTB conditions. */
4999 static struct sctp_packet
*sctp_ootb_pkt_new(const struct sctp_association
*asoc
,
5000 const struct sctp_chunk
*chunk
)
5002 struct sctp_packet
*packet
;
5003 struct sctp_transport
*transport
;
5008 /* Get the source and destination port from the inbound packet. */
5009 sport
= ntohs(chunk
->sctp_hdr
->dest
);
5010 dport
= ntohs(chunk
->sctp_hdr
->source
);
5012 /* The V-tag is going to be the same as the inbound packet if no
5013 * association exists, otherwise, use the peer's vtag.
5016 vtag
= asoc
->peer
.i
.init_tag
;
5018 /* Special case the INIT and stale COOKIE_ECHO as there is no
5021 switch(chunk
->chunk_hdr
->type
) {
5024 sctp_init_chunk_t
*init
;
5026 init
= (sctp_init_chunk_t
*)chunk
->chunk_hdr
;
5027 vtag
= ntohl(init
->init_hdr
.init_tag
);
5031 vtag
= ntohl(chunk
->sctp_hdr
->vtag
);
5036 /* Make a transport for the bucket, Eliza... */
5037 transport
= sctp_transport_new(sctp_source(chunk
), GFP_ATOMIC
);
5041 /* Cache a route for the transport with the chunk's destination as
5042 * the source address.
5044 sctp_transport_route(transport
, (union sctp_addr
*)&chunk
->dest
,
5045 sctp_sk(sctp_get_ctl_sock()));
5047 packet
= sctp_packet_init(&transport
->packet
, transport
, sport
, dport
);
5048 packet
= sctp_packet_config(packet
, vtag
, 0);
5056 /* Free the packet allocated earlier for responding in the OOTB condition. */
5057 void sctp_ootb_pkt_free(struct sctp_packet
*packet
)
5059 sctp_transport_free(packet
->transport
);
5062 /* Send a stale cookie error when a invalid COOKIE ECHO chunk is found */
5063 static void sctp_send_stale_cookie_err(const struct sctp_endpoint
*ep
,
5064 const struct sctp_association
*asoc
,
5065 const struct sctp_chunk
*chunk
,
5066 sctp_cmd_seq_t
*commands
,
5067 struct sctp_chunk
*err_chunk
)
5069 struct sctp_packet
*packet
;
5072 packet
= sctp_ootb_pkt_new(asoc
, chunk
);
5074 struct sctp_signed_cookie
*cookie
;
5076 /* Override the OOTB vtag from the cookie. */
5077 cookie
= chunk
->subh
.cookie_hdr
;
5078 packet
->vtag
= cookie
->c
.peer_vtag
;
5080 /* Set the skb to the belonging sock for accounting. */
5081 err_chunk
->skb
->sk
= ep
->base
.sk
;
5082 sctp_packet_append_chunk(packet
, err_chunk
);
5083 sctp_add_cmd_sf(commands
, SCTP_CMD_SEND_PKT
,
5084 SCTP_PACKET(packet
));
5085 SCTP_INC_STATS(SCTP_MIB_OUTCTRLCHUNKS
);
5087 sctp_chunk_free (err_chunk
);
5092 /* Process a data chunk */
5093 static int sctp_eat_data(const struct sctp_association
*asoc
,
5094 struct sctp_chunk
*chunk
,
5095 sctp_cmd_seq_t
*commands
)
5097 sctp_datahdr_t
*data_hdr
;
5098 struct sctp_chunk
*err
;
5100 sctp_verb_t deliver
;
5104 data_hdr
= chunk
->subh
.data_hdr
= (sctp_datahdr_t
*)chunk
->skb
->data
;
5105 skb_pull(chunk
->skb
, sizeof(sctp_datahdr_t
));
5107 tsn
= ntohl(data_hdr
->tsn
);
5108 SCTP_DEBUG_PRINTK("eat_data: TSN 0x%x.\n", tsn
);
5110 /* ASSERT: Now skb->data is really the user data. */
5112 /* Process ECN based congestion.
5114 * Since the chunk structure is reused for all chunks within
5115 * a packet, we use ecn_ce_done to track if we've already
5116 * done CE processing for this packet.
5118 * We need to do ECN processing even if we plan to discard the
5122 if (!chunk
->ecn_ce_done
) {
5124 chunk
->ecn_ce_done
= 1;
5126 af
= sctp_get_af_specific(
5127 ipver2af(chunk
->skb
->nh
.iph
->version
));
5129 if (af
&& af
->is_ce(chunk
->skb
) && asoc
->peer
.ecn_capable
) {
5130 /* Do real work as sideffect. */
5131 sctp_add_cmd_sf(commands
, SCTP_CMD_ECN_CE
,
5136 tmp
= sctp_tsnmap_check(&asoc
->peer
.tsn_map
, tsn
);
5138 /* The TSN is too high--silently discard the chunk and
5139 * count on it getting retransmitted later.
5141 return SCTP_IERROR_HIGH_TSN
;
5142 } else if (tmp
> 0) {
5143 /* This is a duplicate. Record it. */
5144 sctp_add_cmd_sf(commands
, SCTP_CMD_REPORT_DUP
, SCTP_U32(tsn
));
5145 return SCTP_IERROR_DUP_TSN
;
5148 /* This is a new TSN. */
5150 /* Discard if there is no room in the receive window.
5151 * Actually, allow a little bit of overflow (up to a MTU).
5153 datalen
= ntohs(chunk
->chunk_hdr
->length
);
5154 datalen
-= sizeof(sctp_data_chunk_t
);
5156 deliver
= SCTP_CMD_CHUNK_ULP
;
5158 /* Think about partial delivery. */
5159 if ((datalen
>= asoc
->rwnd
) && (!asoc
->ulpq
.pd_mode
)) {
5161 /* Even if we don't accept this chunk there is
5164 sctp_add_cmd_sf(commands
, SCTP_CMD_PART_DELIVER
, SCTP_NULL());
5167 /* Spill over rwnd a little bit. Note: While allowed, this spill over
5168 * seems a bit troublesome in that frag_point varies based on
5169 * PMTU. In cases, such as loopback, this might be a rather
5172 if (!asoc
->rwnd
|| asoc
->rwnd_over
||
5173 (datalen
> asoc
->rwnd
+ asoc
->frag_point
)) {
5175 /* If this is the next TSN, consider reneging to make
5176 * room. Note: Playing nice with a confused sender. A
5177 * malicious sender can still eat up all our buffer
5178 * space and in the future we may want to detect and
5179 * do more drastic reneging.
5181 if (sctp_tsnmap_has_gap(&asoc
->peer
.tsn_map
) &&
5182 (sctp_tsnmap_get_ctsn(&asoc
->peer
.tsn_map
) + 1) == tsn
) {
5183 SCTP_DEBUG_PRINTK("Reneging for tsn:%u\n", tsn
);
5184 deliver
= SCTP_CMD_RENEGE
;
5186 SCTP_DEBUG_PRINTK("Discard tsn: %u len: %Zd, "
5187 "rwnd: %d\n", tsn
, datalen
,
5189 return SCTP_IERROR_IGNORE_TSN
;
5194 * Section 3.3.10.9 No User Data (9)
5198 * No User Data: This error cause is returned to the originator of a
5199 * DATA chunk if a received DATA chunk has no user data.
5201 if (unlikely(0 == datalen
)) {
5202 err
= sctp_make_abort_no_data(asoc
, chunk
, tsn
);
5204 sctp_add_cmd_sf(commands
, SCTP_CMD_REPLY
,
5207 /* We are going to ABORT, so we might as well stop
5208 * processing the rest of the chunks in the packet.
5210 sctp_add_cmd_sf(commands
, SCTP_CMD_DISCARD_PACKET
,SCTP_NULL());
5211 sctp_add_cmd_sf(commands
, SCTP_CMD_ASSOC_FAILED
,
5212 SCTP_U32(SCTP_ERROR_NO_DATA
));
5213 SCTP_INC_STATS(SCTP_MIB_ABORTEDS
);
5214 SCTP_DEC_STATS(SCTP_MIB_CURRESTAB
);
5215 return SCTP_IERROR_NO_DATA
;
5218 /* If definately accepting the DATA chunk, record its TSN, otherwise
5219 * wait for renege processing.
5221 if (SCTP_CMD_CHUNK_ULP
== deliver
)
5222 sctp_add_cmd_sf(commands
, SCTP_CMD_REPORT_TSN
, SCTP_U32(tsn
));
5224 /* Note: Some chunks may get overcounted (if we drop) or overcounted
5225 * if we renege and the chunk arrives again.
5227 if (chunk
->chunk_hdr
->flags
& SCTP_DATA_UNORDERED
)
5228 SCTP_INC_STATS(SCTP_MIB_INUNORDERCHUNKS
);
5230 SCTP_INC_STATS(SCTP_MIB_INORDERCHUNKS
);
5232 /* RFC 2960 6.5 Stream Identifier and Stream Sequence Number
5234 * If an endpoint receive a DATA chunk with an invalid stream
5235 * identifier, it shall acknowledge the reception of the DATA chunk
5236 * following the normal procedure, immediately send an ERROR chunk
5237 * with cause set to "Invalid Stream Identifier" (See Section 3.3.10)
5238 * and discard the DATA chunk.
5240 if (ntohs(data_hdr
->stream
) >= asoc
->c
.sinit_max_instreams
) {
5241 err
= sctp_make_op_error(asoc
, chunk
, SCTP_ERROR_INV_STRM
,
5243 sizeof(data_hdr
->stream
));
5245 sctp_add_cmd_sf(commands
, SCTP_CMD_REPLY
,
5247 return SCTP_IERROR_BAD_STREAM
;
5250 /* Send the data up to the user. Note: Schedule the
5251 * SCTP_CMD_CHUNK_ULP cmd before the SCTP_CMD_GEN_SACK, as the SACK
5252 * chunk needs the updated rwnd.
5254 sctp_add_cmd_sf(commands
, deliver
, SCTP_CHUNK(chunk
));
5256 return SCTP_IERROR_NO_ERROR
;