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