1 |
1275 |
phoenix |
/* SCTP kernel reference Implementation
|
2 |
|
|
* (C) Copyright IBM Corp. 2001, 2003
|
3 |
|
|
* Copyright (c) 1999-2000 Cisco, Inc.
|
4 |
|
|
* Copyright (c) 1999-2001 Motorola, Inc.
|
5 |
|
|
* Copyright (c) 2001 Intel Corp.
|
6 |
|
|
*
|
7 |
|
|
* This file is part of the SCTP kernel reference Implementation
|
8 |
|
|
*
|
9 |
|
|
* These are definitions needed by the state machine.
|
10 |
|
|
*
|
11 |
|
|
* The SCTP reference implementation is free software;
|
12 |
|
|
* you can redistribute it and/or modify it under the terms of
|
13 |
|
|
* the GNU General Public License as published by
|
14 |
|
|
* the Free Software Foundation; either version 2, or (at your option)
|
15 |
|
|
* any later version.
|
16 |
|
|
*
|
17 |
|
|
* The SCTP reference implementation is distributed in the hope that it
|
18 |
|
|
* will be useful, but WITHOUT ANY WARRANTY; without even the implied
|
19 |
|
|
* ************************
|
20 |
|
|
* warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
21 |
|
|
* See the GNU General Public License for more details.
|
22 |
|
|
*
|
23 |
|
|
* You should have received a copy of the GNU General Public License
|
24 |
|
|
* along with GNU CC; see the file COPYING. If not, write to
|
25 |
|
|
* the Free Software Foundation, 59 Temple Place - Suite 330,
|
26 |
|
|
* Boston, MA 02111-1307, USA.
|
27 |
|
|
*
|
28 |
|
|
* Please send any bug reports or fixes you make to the
|
29 |
|
|
* email addresses:
|
30 |
|
|
* lksctp developers <lksctp-developers@lists.sourceforge.net>
|
31 |
|
|
*
|
32 |
|
|
* Or submit a bug report through the following website:
|
33 |
|
|
* http://www.sf.net/projects/lksctp
|
34 |
|
|
*
|
35 |
|
|
* Written or modified by:
|
36 |
|
|
* La Monte H.P. Yarroll <piggy@acm.org>
|
37 |
|
|
* Karl Knutson <karl@athena.chicago.il.us>
|
38 |
|
|
* Xingang Guo <xingang.guo@intel.com>
|
39 |
|
|
* Jon Grimm <jgrimm@us.ibm.com>
|
40 |
|
|
* Dajiang Zhang <dajiang.zhang@nokia.com>
|
41 |
|
|
* Sridhar Samudrala <sri@us.ibm.com>
|
42 |
|
|
* Daisy Chang <daisyc@us.ibm.com>
|
43 |
|
|
* Ardelle Fan <ardelle.fan@intel.com>
|
44 |
|
|
* Kevin Gao <kevin.gao@intel.com>
|
45 |
|
|
*
|
46 |
|
|
* Any bugs reported given to us we will try to fix... any fixes shared will
|
47 |
|
|
* be incorporated into the next SCTP release.
|
48 |
|
|
*/
|
49 |
|
|
|
50 |
|
|
#include <linux/types.h>
|
51 |
|
|
#include <linux/compiler.h>
|
52 |
|
|
#include <linux/slab.h>
|
53 |
|
|
#include <linux/in.h>
|
54 |
|
|
#include <net/sctp/command.h>
|
55 |
|
|
#include <net/sctp/sctp.h>
|
56 |
|
|
|
57 |
|
|
#ifndef __sctp_sm_h__
|
58 |
|
|
#define __sctp_sm_h__
|
59 |
|
|
|
60 |
|
|
/*
|
61 |
|
|
* Possible values for the disposition are:
|
62 |
|
|
*/
|
63 |
|
|
typedef enum {
|
64 |
|
|
SCTP_DISPOSITION_DISCARD, /* No further processing. */
|
65 |
|
|
SCTP_DISPOSITION_CONSUME, /* Process return values normally. */
|
66 |
|
|
SCTP_DISPOSITION_NOMEM, /* We ran out of memory--recover. */
|
67 |
|
|
SCTP_DISPOSITION_DELETE_TCB, /* Close the association. */
|
68 |
|
|
SCTP_DISPOSITION_ABORT, /* Close the association NOW. */
|
69 |
|
|
SCTP_DISPOSITION_VIOLATION, /* The peer is misbehaving. */
|
70 |
|
|
SCTP_DISPOSITION_NOT_IMPL, /* This entry is not implemented. */
|
71 |
|
|
SCTP_DISPOSITION_ERROR, /* This is plain old user error. */
|
72 |
|
|
SCTP_DISPOSITION_BUG, /* This is a bug. */
|
73 |
|
|
} sctp_disposition_t;
|
74 |
|
|
|
75 |
|
|
typedef struct {
|
76 |
|
|
int name;
|
77 |
|
|
int action;
|
78 |
|
|
} sctp_sm_command_t;
|
79 |
|
|
|
80 |
|
|
typedef sctp_disposition_t (sctp_state_fn_t) (const struct sctp_endpoint *,
|
81 |
|
|
const struct sctp_association *,
|
82 |
|
|
const sctp_subtype_t type,
|
83 |
|
|
void *arg,
|
84 |
|
|
sctp_cmd_seq_t *);
|
85 |
|
|
typedef void (sctp_timer_event_t) (unsigned long);
|
86 |
|
|
typedef struct {
|
87 |
|
|
sctp_state_fn_t *fn;
|
88 |
|
|
const char *name;
|
89 |
|
|
} sctp_sm_table_entry_t;
|
90 |
|
|
|
91 |
|
|
/* A naming convention of "sctp_sf_xxx" applies to all the state functions
|
92 |
|
|
* currently in use.
|
93 |
|
|
*/
|
94 |
|
|
|
95 |
|
|
/* Prototypes for generic state functions. */
|
96 |
|
|
sctp_state_fn_t sctp_sf_not_impl;
|
97 |
|
|
sctp_state_fn_t sctp_sf_bug;
|
98 |
|
|
|
99 |
|
|
/* Prototypes for gener timer state functions. */
|
100 |
|
|
sctp_state_fn_t sctp_sf_timer_ignore;
|
101 |
|
|
|
102 |
|
|
/* Prototypes for chunk state functions. */
|
103 |
|
|
sctp_state_fn_t sctp_sf_do_9_1_abort;
|
104 |
|
|
sctp_state_fn_t sctp_sf_cookie_wait_abort;
|
105 |
|
|
sctp_state_fn_t sctp_sf_cookie_echoed_abort;
|
106 |
|
|
sctp_state_fn_t sctp_sf_shutdown_pending_abort;
|
107 |
|
|
sctp_state_fn_t sctp_sf_shutdown_sent_abort;
|
108 |
|
|
sctp_state_fn_t sctp_sf_shutdown_ack_sent_abort;
|
109 |
|
|
sctp_state_fn_t sctp_sf_do_5_1B_init;
|
110 |
|
|
sctp_state_fn_t sctp_sf_do_5_1C_ack;
|
111 |
|
|
sctp_state_fn_t sctp_sf_do_5_1D_ce;
|
112 |
|
|
sctp_state_fn_t sctp_sf_do_5_1E_ca;
|
113 |
|
|
sctp_state_fn_t sctp_sf_do_4_C;
|
114 |
|
|
sctp_state_fn_t sctp_sf_eat_data_6_2;
|
115 |
|
|
sctp_state_fn_t sctp_sf_eat_data_fast_4_4;
|
116 |
|
|
sctp_state_fn_t sctp_sf_eat_sack_6_2;
|
117 |
|
|
sctp_state_fn_t sctp_sf_tabort_8_4_8;
|
118 |
|
|
sctp_state_fn_t sctp_sf_operr_notify;
|
119 |
|
|
sctp_state_fn_t sctp_sf_t1_timer_expire;
|
120 |
|
|
sctp_state_fn_t sctp_sf_t2_timer_expire;
|
121 |
|
|
sctp_state_fn_t sctp_sf_t4_timer_expire;
|
122 |
|
|
sctp_state_fn_t sctp_sf_t5_timer_expire;
|
123 |
|
|
sctp_state_fn_t sctp_sf_sendbeat_8_3;
|
124 |
|
|
sctp_state_fn_t sctp_sf_beat_8_3;
|
125 |
|
|
sctp_state_fn_t sctp_sf_backbeat_8_3;
|
126 |
|
|
sctp_state_fn_t sctp_sf_do_9_2_final;
|
127 |
|
|
sctp_state_fn_t sctp_sf_do_9_2_shutdown;
|
128 |
|
|
sctp_state_fn_t sctp_sf_do_ecn_cwr;
|
129 |
|
|
sctp_state_fn_t sctp_sf_do_ecne;
|
130 |
|
|
sctp_state_fn_t sctp_sf_ootb;
|
131 |
|
|
sctp_state_fn_t sctp_sf_shut_8_4_5;
|
132 |
|
|
sctp_state_fn_t sctp_sf_pdiscard;
|
133 |
|
|
sctp_state_fn_t sctp_sf_violation;
|
134 |
|
|
sctp_state_fn_t sctp_sf_discard_chunk;
|
135 |
|
|
sctp_state_fn_t sctp_sf_do_5_2_1_siminit;
|
136 |
|
|
sctp_state_fn_t sctp_sf_do_5_2_2_dupinit;
|
137 |
|
|
sctp_state_fn_t sctp_sf_do_5_2_4_dupcook;
|
138 |
|
|
sctp_state_fn_t sctp_sf_unk_chunk;
|
139 |
|
|
sctp_state_fn_t sctp_sf_do_8_5_1_E_sa;
|
140 |
|
|
sctp_state_fn_t sctp_sf_cookie_echoed_err;
|
141 |
|
|
sctp_state_fn_t sctp_sf_do_5_2_6_stale;
|
142 |
|
|
sctp_state_fn_t sctp_sf_do_asconf;
|
143 |
|
|
sctp_state_fn_t sctp_sf_do_asconf_ack;
|
144 |
|
|
|
145 |
|
|
/* Prototypes for primitive event state functions. */
|
146 |
|
|
sctp_state_fn_t sctp_sf_do_prm_asoc;
|
147 |
|
|
sctp_state_fn_t sctp_sf_do_prm_send;
|
148 |
|
|
sctp_state_fn_t sctp_sf_do_9_2_prm_shutdown;
|
149 |
|
|
sctp_state_fn_t sctp_sf_cookie_wait_prm_shutdown;
|
150 |
|
|
sctp_state_fn_t sctp_sf_cookie_echoed_prm_shutdown;
|
151 |
|
|
sctp_state_fn_t sctp_sf_do_9_1_prm_abort;
|
152 |
|
|
sctp_state_fn_t sctp_sf_cookie_wait_prm_abort;
|
153 |
|
|
sctp_state_fn_t sctp_sf_cookie_echoed_prm_abort;
|
154 |
|
|
sctp_state_fn_t sctp_sf_shutdown_pending_prm_abort;
|
155 |
|
|
sctp_state_fn_t sctp_sf_shutdown_sent_prm_abort;
|
156 |
|
|
sctp_state_fn_t sctp_sf_shutdown_ack_sent_prm_abort;
|
157 |
|
|
sctp_state_fn_t sctp_sf_error_closed;
|
158 |
|
|
sctp_state_fn_t sctp_sf_error_shutdown;
|
159 |
|
|
sctp_state_fn_t sctp_sf_ignore_primitive;
|
160 |
|
|
sctp_state_fn_t sctp_sf_do_prm_requestheartbeat;
|
161 |
|
|
sctp_state_fn_t sctp_sf_do_prm_asconf;
|
162 |
|
|
|
163 |
|
|
/* Prototypes for other event state functions. */
|
164 |
|
|
sctp_state_fn_t sctp_sf_do_9_2_start_shutdown;
|
165 |
|
|
sctp_state_fn_t sctp_sf_do_9_2_shutdown_ack;
|
166 |
|
|
sctp_state_fn_t sctp_sf_ignore_other;
|
167 |
|
|
|
168 |
|
|
/* Prototypes for timeout event state functions. */
|
169 |
|
|
sctp_state_fn_t sctp_sf_do_6_3_3_rtx;
|
170 |
|
|
sctp_state_fn_t sctp_sf_do_6_2_sack;
|
171 |
|
|
sctp_state_fn_t sctp_sf_autoclose_timer_expire;
|
172 |
|
|
|
173 |
|
|
|
174 |
|
|
/* These are state functions which are either obsolete or not in use yet.
|
175 |
|
|
* If any of these functions needs to be revived, it should be renamed with
|
176 |
|
|
* the "sctp_sf_xxx" prefix, and be moved to the above prototype groups.
|
177 |
|
|
*/
|
178 |
|
|
|
179 |
|
|
/* Prototypes for chunk state functions. Not in use. */
|
180 |
|
|
sctp_state_fn_t sctp_sf_do_9_2_reshutack;
|
181 |
|
|
sctp_state_fn_t sctp_sf_do_9_2_reshut;
|
182 |
|
|
sctp_state_fn_t sctp_sf_do_9_2_shutack;
|
183 |
|
|
|
184 |
|
|
/* Prototypes for timeout event state functions. Not in use. */
|
185 |
|
|
sctp_state_fn_t sctp_do_4_2_reinit;
|
186 |
|
|
sctp_state_fn_t sctp_do_4_3_reecho;
|
187 |
|
|
sctp_state_fn_t sctp_do_9_2_reshut;
|
188 |
|
|
sctp_state_fn_t sctp_do_9_2_reshutack;
|
189 |
|
|
sctp_state_fn_t sctp_do_8_3_hb_err;
|
190 |
|
|
sctp_state_fn_t sctp_heartoff;
|
191 |
|
|
|
192 |
|
|
/* Prototypes for utility support functions. */
|
193 |
|
|
__u8 sctp_get_chunk_type(struct sctp_chunk *chunk);
|
194 |
|
|
const sctp_sm_table_entry_t *sctp_sm_lookup_event(sctp_event_t,
|
195 |
|
|
sctp_state_t,
|
196 |
|
|
sctp_subtype_t);
|
197 |
|
|
int sctp_chunk_iif(const struct sctp_chunk *);
|
198 |
|
|
struct sctp_association *sctp_make_temp_asoc(const struct sctp_endpoint *,
|
199 |
|
|
struct sctp_chunk *,
|
200 |
|
|
int gfp);
|
201 |
|
|
__u32 sctp_generate_verification_tag(void);
|
202 |
|
|
void sctp_populate_tie_tags(__u8 *cookie, __u32 curTag, __u32 hisTag);
|
203 |
|
|
|
204 |
|
|
/* Prototypes for chunk-building functions. */
|
205 |
|
|
struct sctp_chunk *sctp_make_init(const struct sctp_association *,
|
206 |
|
|
const struct sctp_bind_addr *,
|
207 |
|
|
int gfp, int vparam_len);
|
208 |
|
|
struct sctp_chunk *sctp_make_init_ack(const struct sctp_association *,
|
209 |
|
|
const struct sctp_chunk *,
|
210 |
|
|
const int gfp,
|
211 |
|
|
const int unkparam_len);
|
212 |
|
|
struct sctp_chunk *sctp_make_cookie_echo(const struct sctp_association *,
|
213 |
|
|
const struct sctp_chunk *);
|
214 |
|
|
struct sctp_chunk *sctp_make_cookie_ack(const struct sctp_association *,
|
215 |
|
|
const struct sctp_chunk *);
|
216 |
|
|
struct sctp_chunk *sctp_make_cwr(const struct sctp_association *,
|
217 |
|
|
const __u32 lowest_tsn,
|
218 |
|
|
const struct sctp_chunk *);
|
219 |
|
|
struct sctp_chunk *sctp_make_datafrag(struct sctp_association *,
|
220 |
|
|
const struct sctp_sndrcvinfo *sinfo,
|
221 |
|
|
int len, const __u8 *data,
|
222 |
|
|
__u8 flags, __u16 ssn);
|
223 |
|
|
struct sctp_chunk * sctp_make_datafrag_empty(struct sctp_association *,
|
224 |
|
|
const struct sctp_sndrcvinfo *sinfo,
|
225 |
|
|
int len, const __u8 flags,
|
226 |
|
|
__u16 ssn);
|
227 |
|
|
struct sctp_chunk *sctp_make_data(struct sctp_association *,
|
228 |
|
|
const struct sctp_sndrcvinfo *sinfo,
|
229 |
|
|
int len, const __u8 *data);
|
230 |
|
|
struct sctp_chunk *sctp_make_data_empty(struct sctp_association *,
|
231 |
|
|
const struct sctp_sndrcvinfo *, int len);
|
232 |
|
|
struct sctp_chunk *sctp_make_ecne(const struct sctp_association *,
|
233 |
|
|
const __u32);
|
234 |
|
|
struct sctp_chunk *sctp_make_sack(const struct sctp_association *);
|
235 |
|
|
struct sctp_chunk *sctp_make_shutdown(const struct sctp_association *asoc,
|
236 |
|
|
const struct sctp_chunk *chunk);
|
237 |
|
|
struct sctp_chunk *sctp_make_shutdown_ack(const struct sctp_association *asoc,
|
238 |
|
|
const struct sctp_chunk *);
|
239 |
|
|
struct sctp_chunk *sctp_make_shutdown_complete(const struct sctp_association *,
|
240 |
|
|
const struct sctp_chunk *);
|
241 |
|
|
void sctp_init_cause(struct sctp_chunk *, __u16 cause, const void *, size_t);
|
242 |
|
|
struct sctp_chunk *sctp_make_abort(const struct sctp_association *,
|
243 |
|
|
const struct sctp_chunk *,
|
244 |
|
|
const size_t hint);
|
245 |
|
|
struct sctp_chunk *sctp_make_abort_no_data(const struct sctp_association *,
|
246 |
|
|
const struct sctp_chunk *,
|
247 |
|
|
__u32 tsn);
|
248 |
|
|
struct sctp_chunk *sctp_make_abort_user(const struct sctp_association *,
|
249 |
|
|
const struct sctp_chunk *,
|
250 |
|
|
const struct msghdr *);
|
251 |
|
|
struct sctp_chunk *sctp_make_heartbeat(const struct sctp_association *,
|
252 |
|
|
const struct sctp_transport *,
|
253 |
|
|
const void *payload,
|
254 |
|
|
const size_t paylen);
|
255 |
|
|
struct sctp_chunk *sctp_make_heartbeat_ack(const struct sctp_association *,
|
256 |
|
|
const struct sctp_chunk *,
|
257 |
|
|
const void *payload,
|
258 |
|
|
const size_t paylen);
|
259 |
|
|
struct sctp_chunk *sctp_make_op_error(const struct sctp_association *,
|
260 |
|
|
const struct sctp_chunk *chunk,
|
261 |
|
|
__u16 cause_code,
|
262 |
|
|
const void *payload,
|
263 |
|
|
size_t paylen);
|
264 |
|
|
|
265 |
|
|
struct sctp_chunk *sctp_make_asconf(struct sctp_association *asoc,
|
266 |
|
|
union sctp_addr *addr,
|
267 |
|
|
int vparam_len);
|
268 |
|
|
struct sctp_chunk *sctp_make_asconf_update_ip(struct sctp_association *,
|
269 |
|
|
union sctp_addr *,
|
270 |
|
|
struct sockaddr *,
|
271 |
|
|
int, __u16);
|
272 |
|
|
struct sctp_chunk *sctp_make_asconf_set_prim(struct sctp_association *asoc,
|
273 |
|
|
union sctp_addr *addr);
|
274 |
|
|
struct sctp_chunk *sctp_make_asconf_ack(const struct sctp_association *asoc,
|
275 |
|
|
__u32 serial, int vparam_len);
|
276 |
|
|
struct sctp_chunk *sctp_process_asconf(struct sctp_association *asoc,
|
277 |
|
|
struct sctp_chunk *asconf);
|
278 |
|
|
int sctp_process_asconf_ack(struct sctp_association *asoc,
|
279 |
|
|
struct sctp_chunk *asconf_ack);
|
280 |
|
|
|
281 |
|
|
void sctp_chunk_assign_tsn(struct sctp_chunk *);
|
282 |
|
|
void sctp_chunk_assign_ssn(struct sctp_chunk *);
|
283 |
|
|
|
284 |
|
|
/* Prototypes for statetable processing. */
|
285 |
|
|
|
286 |
|
|
int sctp_do_sm(sctp_event_t event_type, sctp_subtype_t subtype,
|
287 |
|
|
sctp_state_t state,
|
288 |
|
|
struct sctp_endpoint *,
|
289 |
|
|
struct sctp_association *asoc,
|
290 |
|
|
void *event_arg,
|
291 |
|
|
int gfp);
|
292 |
|
|
|
293 |
|
|
int sctp_side_effects(sctp_event_t event_type, sctp_subtype_t subtype,
|
294 |
|
|
sctp_state_t state,
|
295 |
|
|
struct sctp_endpoint *,
|
296 |
|
|
struct sctp_association *asoc,
|
297 |
|
|
void *event_arg,
|
298 |
|
|
sctp_disposition_t status,
|
299 |
|
|
sctp_cmd_seq_t *commands,
|
300 |
|
|
int gfp);
|
301 |
|
|
|
302 |
|
|
/* 2nd level prototypes */
|
303 |
|
|
int sctp_cmd_interpreter(sctp_event_t, sctp_subtype_t, sctp_state_t,
|
304 |
|
|
struct sctp_endpoint *, struct sctp_association *,
|
305 |
|
|
void *event_arg, sctp_disposition_t,
|
306 |
|
|
sctp_cmd_seq_t *retval, int gfp);
|
307 |
|
|
|
308 |
|
|
|
309 |
|
|
int sctp_gen_sack(struct sctp_association *, int force, sctp_cmd_seq_t *);
|
310 |
|
|
void sctp_generate_t3_rtx_event(unsigned long peer);
|
311 |
|
|
void sctp_generate_heartbeat_event(unsigned long peer);
|
312 |
|
|
|
313 |
|
|
sctp_sackhdr_t *sctp_sm_pull_sack(struct sctp_chunk *);
|
314 |
|
|
struct sctp_packet *sctp_abort_pkt_new(const struct sctp_endpoint *,
|
315 |
|
|
const struct sctp_association *,
|
316 |
|
|
struct sctp_chunk *chunk,
|
317 |
|
|
const void *payload,
|
318 |
|
|
size_t paylen);
|
319 |
|
|
struct sctp_packet *sctp_ootb_pkt_new(const struct sctp_association *,
|
320 |
|
|
const struct sctp_chunk *);
|
321 |
|
|
void sctp_ootb_pkt_free(struct sctp_packet *);
|
322 |
|
|
|
323 |
|
|
struct sctp_cookie_param *
|
324 |
|
|
sctp_pack_cookie(const struct sctp_endpoint *, const struct sctp_association *,
|
325 |
|
|
const struct sctp_chunk *, int *cookie_len,
|
326 |
|
|
const __u8 *, int addrs_len);
|
327 |
|
|
struct sctp_association *sctp_unpack_cookie(const struct sctp_endpoint *,
|
328 |
|
|
const struct sctp_association *,
|
329 |
|
|
struct sctp_chunk *, int gfp, int *err,
|
330 |
|
|
struct sctp_chunk **err_chk_p);
|
331 |
|
|
int sctp_addip_addr_config(struct sctp_association *, sctp_param_t,
|
332 |
|
|
struct sockaddr_storage*, int);
|
333 |
|
|
void sctp_send_stale_cookie_err(const struct sctp_endpoint *ep,
|
334 |
|
|
const struct sctp_association *asoc,
|
335 |
|
|
const struct sctp_chunk *chunk,
|
336 |
|
|
sctp_cmd_seq_t *commands,
|
337 |
|
|
struct sctp_chunk *err_chunk);
|
338 |
|
|
|
339 |
|
|
/* 3rd level prototypes */
|
340 |
|
|
__u32 sctp_generate_tag(const struct sctp_endpoint *);
|
341 |
|
|
__u32 sctp_generate_tsn(const struct sctp_endpoint *);
|
342 |
|
|
|
343 |
|
|
/* Extern declarations for major data structures. */
|
344 |
|
|
const sctp_sm_table_entry_t *sctp_chunk_event_lookup(sctp_cid_t, sctp_state_t);
|
345 |
|
|
extern const sctp_sm_table_entry_t
|
346 |
|
|
primitive_event_table[SCTP_NUM_PRIMITIVE_TYPES][SCTP_STATE_NUM_STATES];
|
347 |
|
|
extern const sctp_sm_table_entry_t
|
348 |
|
|
other_event_table[SCTP_NUM_OTHER_TYPES][SCTP_STATE_NUM_STATES];
|
349 |
|
|
extern const sctp_sm_table_entry_t
|
350 |
|
|
timeout_event_table[SCTP_NUM_TIMEOUT_TYPES][SCTP_STATE_NUM_STATES];
|
351 |
|
|
extern sctp_timer_event_t *sctp_timer_events[SCTP_NUM_TIMEOUT_TYPES];
|
352 |
|
|
|
353 |
|
|
/* These are some handy utility macros... */
|
354 |
|
|
|
355 |
|
|
|
356 |
|
|
/* Get the size of a DATA chunk payload. */
|
357 |
|
|
static inline __u16 sctp_data_size(struct sctp_chunk *chunk)
|
358 |
|
|
{
|
359 |
|
|
__u16 size;
|
360 |
|
|
|
361 |
|
|
size = ntohs(chunk->chunk_hdr->length);
|
362 |
|
|
size -= sizeof(sctp_data_chunk_t);
|
363 |
|
|
|
364 |
|
|
return size;
|
365 |
|
|
}
|
366 |
|
|
|
367 |
|
|
/* Compare two TSNs */
|
368 |
|
|
|
369 |
|
|
/* RFC 1982 - Serial Number Arithmetic
|
370 |
|
|
*
|
371 |
|
|
* 2. Comparison
|
372 |
|
|
* Then, s1 is said to be equal to s2 if and only if i1 is equal to i2,
|
373 |
|
|
* in all other cases, s1 is not equal to s2.
|
374 |
|
|
*
|
375 |
|
|
* s1 is said to be less than s2 if, and only if, s1 is not equal to s2,
|
376 |
|
|
* and
|
377 |
|
|
*
|
378 |
|
|
* (i1 < i2 and i2 - i1 < 2^(SERIAL_BITS - 1)) or
|
379 |
|
|
* (i1 > i2 and i1 - i2 > 2^(SERIAL_BITS - 1))
|
380 |
|
|
*
|
381 |
|
|
* s1 is said to be greater than s2 if, and only if, s1 is not equal to
|
382 |
|
|
* s2, and
|
383 |
|
|
*
|
384 |
|
|
* (i1 < i2 and i2 - i1 > 2^(SERIAL_BITS - 1)) or
|
385 |
|
|
* (i1 > i2 and i1 - i2 < 2^(SERIAL_BITS - 1))
|
386 |
|
|
*/
|
387 |
|
|
|
388 |
|
|
/*
|
389 |
|
|
* RFC 2960
|
390 |
|
|
* 1.6 Serial Number Arithmetic
|
391 |
|
|
*
|
392 |
|
|
* Comparisons and arithmetic on TSNs in this document SHOULD use Serial
|
393 |
|
|
* Number Arithmetic as defined in [RFC1982] where SERIAL_BITS = 32.
|
394 |
|
|
*/
|
395 |
|
|
|
396 |
|
|
enum {
|
397 |
|
|
TSN_SIGN_BIT = (1<<31)
|
398 |
|
|
};
|
399 |
|
|
|
400 |
|
|
static inline int TSN_lt(__u32 s, __u32 t)
|
401 |
|
|
{
|
402 |
|
|
return (((s) - (t)) & TSN_SIGN_BIT);
|
403 |
|
|
}
|
404 |
|
|
|
405 |
|
|
static inline int TSN_lte(__u32 s, __u32 t)
|
406 |
|
|
{
|
407 |
|
|
return (((s) == (t)) || (((s) - (t)) & TSN_SIGN_BIT));
|
408 |
|
|
}
|
409 |
|
|
|
410 |
|
|
/* Compare two SSNs */
|
411 |
|
|
|
412 |
|
|
/*
|
413 |
|
|
* RFC 2960
|
414 |
|
|
* 1.6 Serial Number Arithmetic
|
415 |
|
|
*
|
416 |
|
|
* Comparisons and arithmetic on Stream Sequence Numbers in this document
|
417 |
|
|
* SHOULD use Serial Number Arithmetic as defined in [RFC1982] where
|
418 |
|
|
* SERIAL_BITS = 16.
|
419 |
|
|
*/
|
420 |
|
|
enum {
|
421 |
|
|
SSN_SIGN_BIT = (1<<15)
|
422 |
|
|
};
|
423 |
|
|
|
424 |
|
|
static inline int SSN_lt(__u16 s, __u16 t)
|
425 |
|
|
{
|
426 |
|
|
return (((s) - (t)) & SSN_SIGN_BIT);
|
427 |
|
|
}
|
428 |
|
|
|
429 |
|
|
static inline int SSN_lte(__u16 s, __u16 t)
|
430 |
|
|
{
|
431 |
|
|
return (((s) == (t)) || (((s) - (t)) & SSN_SIGN_BIT));
|
432 |
|
|
}
|
433 |
|
|
|
434 |
|
|
/*
|
435 |
|
|
* ADDIP 3.1.1
|
436 |
|
|
* The valid range of Serial Number is from 0 to 4294967295 (2**32 - 1). Serial
|
437 |
|
|
* Numbers wrap back to 0 after reaching 4294967295.
|
438 |
|
|
*/
|
439 |
|
|
enum {
|
440 |
|
|
ADDIP_SERIAL_SIGN_BIT = (1<<31)
|
441 |
|
|
};
|
442 |
|
|
|
443 |
|
|
static inline int ADDIP_SERIAL_gte(__u16 s, __u16 t)
|
444 |
|
|
{
|
445 |
|
|
return (((s) == (t)) || (((t) - (s)) & ADDIP_SERIAL_SIGN_BIT));
|
446 |
|
|
}
|
447 |
|
|
|
448 |
|
|
|
449 |
|
|
/* Run sctp_add_cmd() generating a BUG() if there is a failure. */
|
450 |
|
|
static inline void sctp_add_cmd_sf(sctp_cmd_seq_t *seq, sctp_verb_t verb, sctp_arg_t obj)
|
451 |
|
|
{
|
452 |
|
|
if (unlikely(!sctp_add_cmd(seq, verb, obj)))
|
453 |
|
|
BUG();
|
454 |
|
|
}
|
455 |
|
|
|
456 |
|
|
/* Check VTAG of the packet matches the sender's own tag OR its peer's
|
457 |
|
|
* tag and the T bit is set in the Chunk Flags.
|
458 |
|
|
*/
|
459 |
|
|
static inline int
|
460 |
|
|
sctp_vtag_verify_either(const struct sctp_chunk *chunk,
|
461 |
|
|
const struct sctp_association *asoc)
|
462 |
|
|
{
|
463 |
|
|
/* RFC 2960 Section 8.5.1, sctpimpguide-06 Section 2.13.2
|
464 |
|
|
*
|
465 |
|
|
* B) The receiver of a ABORT shall accept the packet if the
|
466 |
|
|
* Verification Tag field of the packet matches its own tag OR it
|
467 |
|
|
* is set to its peer's tag and the T bit is set in the Chunk
|
468 |
|
|
* Flags. Otherwise, the receiver MUST silently discard the packet
|
469 |
|
|
* and take no further action.
|
470 |
|
|
*
|
471 |
|
|
* (C) The receiver of a SHUTDOWN COMPLETE shall accept the
|
472 |
|
|
* packet if the Verification Tag field of the packet
|
473 |
|
|
* matches its own tag OR it is set to its peer's tag and
|
474 |
|
|
* the T bit is set in the Chunk Flags. Otherwise, the
|
475 |
|
|
* receiver MUST silently discard the packet and take no
|
476 |
|
|
* further action....
|
477 |
|
|
*
|
478 |
|
|
*/
|
479 |
|
|
if ((ntohl(chunk->sctp_hdr->vtag) == asoc->c.my_vtag) ||
|
480 |
|
|
(sctp_test_T_bit(chunk) && (ntohl(chunk->sctp_hdr->vtag)
|
481 |
|
|
== asoc->c.peer_vtag))) {
|
482 |
|
|
return 1;
|
483 |
|
|
}
|
484 |
|
|
|
485 |
|
|
return 0;
|
486 |
|
|
}
|
487 |
|
|
|
488 |
|
|
#endif /* __sctp_sm_h__ */
|