blob: deaafa9b09cbea18a438070c0579ababf73dcfba [file] [log] [blame]
Vlad Yasevich60c778b2008-01-11 09:57:09 -05001/* SCTP kernel implementation
Linus Torvalds1da177e2005-04-16 15:20:36 -07002 * (C) Copyright IBM Corp. 2001, 2004
3 * Copyright (c) 1999-2000 Cisco, Inc.
4 * Copyright (c) 1999-2001 Motorola, Inc.
5 * Copyright (c) 2001 Intel Corp.
6 *
Vlad Yasevich60c778b2008-01-11 09:57:09 -05007 * This file is part of the SCTP kernel implementation
Linus Torvalds1da177e2005-04-16 15:20:36 -07008 *
Vlad Yasevich60c778b2008-01-11 09:57:09 -05009 * This SCTP implementation is free software;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010 * you can redistribute it and/or modify it under the terms of
11 * the GNU General Public License as published by
12 * the Free Software Foundation; either version 2, or (at your option)
13 * any later version.
14 *
Vlad Yasevich60c778b2008-01-11 09:57:09 -050015 * This SCTP implementation is distributed in the hope that it
Linus Torvalds1da177e2005-04-16 15:20:36 -070016 * will be useful, but WITHOUT ANY WARRANTY; without even the implied
17 * ************************
18 * warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
19 * See the GNU General Public License for more details.
20 *
21 * You should have received a copy of the GNU General Public License
Jeff Kirshera6227e22013-12-06 09:13:40 -080022 * along with GNU CC; see the file COPYING. If not, see
23 * <http://www.gnu.org/licenses/>.
Linus Torvalds1da177e2005-04-16 15:20:36 -070024 *
25 * Please send any bug reports or fixes you make to the
26 * email address(es):
Daniel Borkmann91705c62013-07-23 14:51:47 +020027 * lksctp developers <linux-sctp@vger.kernel.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -070028 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070029 * Written or modified by:
30 * La Monte H.P. Yarroll <piggy@acm.org>
31 * Karl Knutson <karl@athena.chicago.il.us>
32 * Randall Stewart <randall@stewart.chicago.il.us>
33 * Ken Morneau <kmorneau@cisco.com>
34 * Qiaobing Xie <qxie1@motorola.com>
35 * Xingang Guo <xingang.guo@intel.com>
36 * Sridhar Samudrala <samudrala@us.ibm.com>
37 * Daisy Chang <daisyc@us.ibm.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -070038 */
39
40#ifndef __sctp_constants_h__
41#define __sctp_constants_h__
42
Linus Torvalds1da177e2005-04-16 15:20:36 -070043#include <linux/sctp.h>
44#include <linux/ipv6.h> /* For ipv6hdr. */
Xin Long84965612017-08-05 19:59:56 +080045#include <net/tcp_states.h> /* For TCP states used in enum sctp_sock_state */
Linus Torvalds1da177e2005-04-16 15:20:36 -070046
47/* Value used for stream negotiation. */
48enum { SCTP_MAX_STREAM = 0xffff };
49enum { SCTP_DEFAULT_OUTSTREAMS = 10 };
50enum { SCTP_DEFAULT_INSTREAMS = SCTP_MAX_STREAM };
51
52/* Since CIDs are sparse, we need all four of the following
53 * symbols. CIDs are dense through SCTP_CID_BASE_MAX.
54 */
55#define SCTP_CID_BASE_MAX SCTP_CID_SHUTDOWN_COMPLETE
Linus Torvalds1da177e2005-04-16 15:20:36 -070056
57#define SCTP_NUM_BASE_CHUNK_TYPES (SCTP_CID_BASE_MAX + 1)
Linus Torvalds1da177e2005-04-16 15:20:36 -070058
59#define SCTP_NUM_ADDIP_CHUNK_TYPES 2
60
61#define SCTP_NUM_PRSCTP_CHUNK_TYPES 1
62
Xin Longd884aa62017-02-17 12:45:43 +080063#define SCTP_NUM_RECONF_CHUNK_TYPES 1
64
Vlad Yasevich1f485642007-10-09 01:15:59 -070065#define SCTP_NUM_AUTH_CHUNK_TYPES 1
66
67#define SCTP_NUM_CHUNK_TYPES (SCTP_NUM_BASE_CHUNK_TYPES + \
68 SCTP_NUM_ADDIP_CHUNK_TYPES +\
69 SCTP_NUM_PRSCTP_CHUNK_TYPES +\
Xin Longd884aa62017-02-17 12:45:43 +080070 SCTP_NUM_RECONF_CHUNK_TYPES +\
Vlad Yasevich1f485642007-10-09 01:15:59 -070071 SCTP_NUM_AUTH_CHUNK_TYPES)
72
Linus Torvalds1da177e2005-04-16 15:20:36 -070073/* These are the different flavours of event. */
Xin Long61f0eb02017-08-05 20:00:03 +080074enum sctp_event {
Linus Torvalds1da177e2005-04-16 15:20:36 -070075 SCTP_EVENT_T_CHUNK = 1,
76 SCTP_EVENT_T_TIMEOUT,
77 SCTP_EVENT_T_OTHER,
78 SCTP_EVENT_T_PRIMITIVE
Xin Long61f0eb02017-08-05 20:00:03 +080079};
Linus Torvalds1da177e2005-04-16 15:20:36 -070080
Linus Torvalds1da177e2005-04-16 15:20:36 -070081/* As a convenience for the state machine, we append SCTP_EVENT_* and
82 * SCTP_ULP_* to the list of possible chunks.
83 */
84
Xin Long19cd1592017-08-05 20:00:02 +080085enum sctp_event_timeout {
Linus Torvalds1da177e2005-04-16 15:20:36 -070086 SCTP_EVENT_TIMEOUT_NONE = 0,
87 SCTP_EVENT_TIMEOUT_T1_COOKIE,
88 SCTP_EVENT_TIMEOUT_T1_INIT,
89 SCTP_EVENT_TIMEOUT_T2_SHUTDOWN,
90 SCTP_EVENT_TIMEOUT_T3_RTX,
91 SCTP_EVENT_TIMEOUT_T4_RTO,
92 SCTP_EVENT_TIMEOUT_T5_SHUTDOWN_GUARD,
93 SCTP_EVENT_TIMEOUT_HEARTBEAT,
Xin Long7b9438d2017-01-18 00:44:43 +080094 SCTP_EVENT_TIMEOUT_RECONF,
Linus Torvalds1da177e2005-04-16 15:20:36 -070095 SCTP_EVENT_TIMEOUT_SACK,
96 SCTP_EVENT_TIMEOUT_AUTOCLOSE,
Xin Long19cd1592017-08-05 20:00:02 +080097};
Linus Torvalds1da177e2005-04-16 15:20:36 -070098
99#define SCTP_EVENT_TIMEOUT_MAX SCTP_EVENT_TIMEOUT_AUTOCLOSE
100#define SCTP_NUM_TIMEOUT_TYPES (SCTP_EVENT_TIMEOUT_MAX + 1)
101
Xin Longa0f098d2017-08-05 20:00:01 +0800102enum sctp_event_other {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103 SCTP_EVENT_NO_PENDING_TSN = 0,
104 SCTP_EVENT_ICMP_PROTO_UNREACH,
Xin Longa0f098d2017-08-05 20:00:01 +0800105};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106
107#define SCTP_EVENT_OTHER_MAX SCTP_EVENT_ICMP_PROTO_UNREACH
108#define SCTP_NUM_OTHER_TYPES (SCTP_EVENT_OTHER_MAX + 1)
109
110/* These are primitive requests from the ULP. */
Xin Longdc1e0e62017-08-05 20:00:00 +0800111enum sctp_event_primitive {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112 SCTP_PRIMITIVE_ASSOCIATE = 0,
113 SCTP_PRIMITIVE_SHUTDOWN,
114 SCTP_PRIMITIVE_ABORT,
115 SCTP_PRIMITIVE_SEND,
116 SCTP_PRIMITIVE_REQUESTHEARTBEAT,
117 SCTP_PRIMITIVE_ASCONF,
Xin Long7a090b02017-01-18 00:44:44 +0800118 SCTP_PRIMITIVE_RECONF,
Xin Longdc1e0e62017-08-05 20:00:00 +0800119};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120
Xin Long7a090b02017-01-18 00:44:44 +0800121#define SCTP_EVENT_PRIMITIVE_MAX SCTP_PRIMITIVE_RECONF
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122#define SCTP_NUM_PRIMITIVE_TYPES (SCTP_EVENT_PRIMITIVE_MAX + 1)
123
124/* We define here a utility type for manipulating subtypes.
125 * The subtype constructors all work like this:
126 *
Xin Longbfc6f822017-08-05 20:00:04 +0800127 * union sctp_subtype foo = SCTP_ST_CHUNK(SCTP_CID_INIT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128 */
129
Xin Longbfc6f822017-08-05 20:00:04 +0800130union sctp_subtype {
Xin Long6d85e682017-06-30 11:52:14 +0800131 enum sctp_cid chunk;
Xin Long19cd1592017-08-05 20:00:02 +0800132 enum sctp_event_timeout timeout;
Xin Longa0f098d2017-08-05 20:00:01 +0800133 enum sctp_event_other other;
Xin Longdc1e0e62017-08-05 20:00:00 +0800134 enum sctp_event_primitive primitive;
Xin Longbfc6f822017-08-05 20:00:04 +0800135};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136
137#define SCTP_SUBTYPE_CONSTRUCTOR(_name, _type, _elt) \
Xin Longbfc6f822017-08-05 20:00:04 +0800138static inline union sctp_subtype \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139SCTP_ST_## _name (_type _arg) \
Xin Longbfc6f822017-08-05 20:00:04 +0800140{ union sctp_subtype _retval; _retval._elt = _arg; return _retval; }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141
Xin Long6d85e682017-06-30 11:52:14 +0800142SCTP_SUBTYPE_CONSTRUCTOR(CHUNK, enum sctp_cid, chunk)
Xin Long19cd1592017-08-05 20:00:02 +0800143SCTP_SUBTYPE_CONSTRUCTOR(TIMEOUT, enum sctp_event_timeout, timeout)
Xin Longa0f098d2017-08-05 20:00:01 +0800144SCTP_SUBTYPE_CONSTRUCTOR(OTHER, enum sctp_event_other, other)
Xin Longdc1e0e62017-08-05 20:00:00 +0800145SCTP_SUBTYPE_CONSTRUCTOR(PRIMITIVE, enum sctp_event_primitive, primitive)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146
147
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148#define sctp_chunk_is_data(a) (a->chunk_hdr->type == SCTP_CID_DATA)
149
150/* Calculate the actual data size in a data chunk */
151#define SCTP_DATA_SNDSIZE(c) ((int)((unsigned long)(c->chunk_end)\
152 - (unsigned long)(c->chunk_hdr)\
Xin Long9f8d3142017-06-30 11:52:20 +0800153 - sizeof(struct sctp_data_chunk)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155/* Internal error codes */
Xin Long4785c7a2017-08-05 19:59:58 +0800156enum sctp_ierror {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157 SCTP_IERROR_NO_ERROR = 0,
158 SCTP_IERROR_BASE = 1000,
159 SCTP_IERROR_NO_COOKIE,
160 SCTP_IERROR_BAD_SIG,
161 SCTP_IERROR_STALE_COOKIE,
162 SCTP_IERROR_NOMEM,
163 SCTP_IERROR_MALFORMED,
164 SCTP_IERROR_BAD_TAG,
165 SCTP_IERROR_BIG_GAP,
166 SCTP_IERROR_DUP_TSN,
167 SCTP_IERROR_HIGH_TSN,
168 SCTP_IERROR_IGNORE_TSN,
169 SCTP_IERROR_NO_DATA,
170 SCTP_IERROR_BAD_STREAM,
171 SCTP_IERROR_BAD_PORTS,
Vlad Yasevichbbd0d592007-10-03 17:51:34 -0700172 SCTP_IERROR_AUTH_BAD_HMAC,
173 SCTP_IERROR_AUTH_BAD_KEYID,
174 SCTP_IERROR_PROTO_VIOLATION,
Vlad Yasevich7ab90802007-11-09 11:43:41 -0500175 SCTP_IERROR_ERROR,
176 SCTP_IERROR_ABORT,
Xin Long4785c7a2017-08-05 19:59:58 +0800177};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178
179
180
181/* SCTP state defines for internal state machine */
Xin Long52106012017-08-05 19:59:59 +0800182enum sctp_state {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183
Vlad Yasevich0b8f9e22011-04-19 21:28:26 +0000184 SCTP_STATE_CLOSED = 0,
185 SCTP_STATE_COOKIE_WAIT = 1,
186 SCTP_STATE_COOKIE_ECHOED = 2,
187 SCTP_STATE_ESTABLISHED = 3,
188 SCTP_STATE_SHUTDOWN_PENDING = 4,
189 SCTP_STATE_SHUTDOWN_SENT = 5,
190 SCTP_STATE_SHUTDOWN_RECEIVED = 6,
191 SCTP_STATE_SHUTDOWN_ACK_SENT = 7,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192
Xin Long52106012017-08-05 19:59:59 +0800193};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194
195#define SCTP_STATE_MAX SCTP_STATE_SHUTDOWN_ACK_SENT
196#define SCTP_STATE_NUM_STATES (SCTP_STATE_MAX + 1)
197
198/* These are values for sk->state.
199 * For a UDP-style SCTP socket, the states are defined as follows
200 * - A socket in SCTP_SS_CLOSED state indicates that it is not willing to
201 * accept new associations, but it can initiate the creation of new ones.
202 * - A socket in SCTP_SS_LISTENING state indicates that it is willing to
203 * accept new associations and can initiate the creation of new ones.
204 * - A socket in SCTP_SS_ESTABLISHED state indicates that it is a peeled off
205 * socket with one association.
206 * For a TCP-style SCTP socket, the states are defined as follows
207 * - A socket in SCTP_SS_CLOSED state indicates that it is not willing to
208 * accept new associations, but it can initiate the creation of new ones.
209 * - A socket in SCTP_SS_LISTENING state indicates that it is willing to
210 * accept new associations, but cannot initiate the creation of new ones.
211 * - A socket in SCTP_SS_ESTABLISHED state indicates that it has a single
212 * association.
213 */
Xin Long84965612017-08-05 19:59:56 +0800214enum sctp_sock_state {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215 SCTP_SS_CLOSED = TCP_CLOSE,
216 SCTP_SS_LISTENING = TCP_LISTEN,
217 SCTP_SS_ESTABLISHING = TCP_SYN_SENT,
218 SCTP_SS_ESTABLISHED = TCP_ESTABLISHED,
Xin Longdf7e88f62016-07-30 20:00:45 +0800219 SCTP_SS_CLOSING = TCP_CLOSE_WAIT,
Xin Long84965612017-08-05 19:59:56 +0800220};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221
222/* These functions map various type to printable names. */
Xin Longbfc6f822017-08-05 20:00:04 +0800223const char *sctp_cname(const union sctp_subtype id); /* chunk types */
224const char *sctp_oname(const union sctp_subtype id); /* other events */
225const char *sctp_tname(const union sctp_subtype id); /* timeouts */
226const char *sctp_pname(const union sctp_subtype id); /* primitives */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227
228/* This is a table of printable names of sctp_state_t's. */
Jan Engelhardt36cbd3d2009-08-05 10:42:58 -0700229extern const char *const sctp_state_tbl[];
230extern const char *const sctp_evttype_tbl[];
231extern const char *const sctp_status_tbl[];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232
233/* Maximum chunk length considering padding requirements. */
234enum { SCTP_MAX_CHUNK_LEN = ((1<<16) - sizeof(__u32)) };
235
236/* Encourage Cookie-Echo bundling by pre-fragmenting chunks a little
237 * harder (until reaching ESTABLISHED state).
238 */
239enum { SCTP_ARBITRARY_COOKIE_ECHO_LEN = 200 };
240
241/* Guess at how big to make the TSN mapping array.
242 * We guarantee that we can handle at least this big a gap between the
243 * cumulative ACK and the highest TSN. In practice, we can often
244 * handle up to twice this value.
245 *
246 * NEVER make this more than 32767 (2^15-1). The Gap Ack Blocks in a
247 * SACK (see section 3.3.4) are only 16 bits, so 2*SCTP_TSN_MAP_SIZE
248 * must be less than 65535 (2^16 - 1), or we will have overflow
249 * problems creating SACK's.
250 */
Vlad Yasevich8e1ee182008-10-08 14:18:39 -0700251#define SCTP_TSN_MAP_INITIAL BITS_PER_LONG
252#define SCTP_TSN_MAP_INCREMENT SCTP_TSN_MAP_INITIAL
253#define SCTP_TSN_MAP_SIZE 4096
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254
255/* We will not record more than this many duplicate TSNs between two
256 * SACKs. The minimum PMTU is 576. Remove all the headers and there
257 * is enough room for 131 duplicate reports. Round down to the
258 * nearest power of 2.
259 */
260enum { SCTP_MIN_PMTU = 576 };
261enum { SCTP_MAX_DUP_TSNS = 16 };
262enum { SCTP_MAX_GABS = 16 };
263
Vlad Yasevich2f85a422005-06-28 13:24:23 -0700264/* Heartbeat interval - 30 secs */
Vladislav Yasevich3fd091e2006-08-22 13:29:17 -0700265#define SCTP_DEFAULT_TIMEOUT_HEARTBEAT (30*1000)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266
Vlad Yasevich2f85a422005-06-28 13:24:23 -0700267/* Delayed sack timer - 200ms */
Vladislav Yasevich3fd091e2006-08-22 13:29:17 -0700268#define SCTP_DEFAULT_TIMEOUT_SACK (200)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269
270/* RTO.Initial - 3 seconds
271 * RTO.Min - 1 second
272 * RTO.Max - 60 seconds
273 * RTO.Alpha - 1/8
274 * RTO.Beta - 1/4
275 */
Vladislav Yasevich3fd091e2006-08-22 13:29:17 -0700276#define SCTP_RTO_INITIAL (3 * 1000)
277#define SCTP_RTO_MIN (1 * 1000)
278#define SCTP_RTO_MAX (60 * 1000)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279
280#define SCTP_RTO_ALPHA 3 /* 1/8 when converted to right shifts. */
281#define SCTP_RTO_BETA 2 /* 1/4 when converted to right shifts. */
282
283/* Maximum number of new data packets that can be sent in a burst. */
Vlad Yasevich70331572007-03-23 11:34:36 -0700284#define SCTP_DEFAULT_MAX_BURST 4
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285
286#define SCTP_CLOCK_GRANULARITY 1 /* 1 jiffy */
287
Vladislav Yasevich3fd091e2006-08-22 13:29:17 -0700288#define SCTP_DEFAULT_COOKIE_LIFE (60 * 1000) /* 60 seconds */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289
290#define SCTP_DEFAULT_MINWINDOW 1500 /* default minimum rwnd size */
291#define SCTP_DEFAULT_MAXWINDOW 65535 /* default rwnd size */
Vlad Yasevich90f2f532009-11-23 15:53:57 -0500292#define SCTP_DEFAULT_RWND_SHIFT 4 /* by default, update on 1/16 of
293 * rcvbuf, which is 1/8 of initial
294 * window
295 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296#define SCTP_DEFAULT_MAXSEGMENT 1500 /* MTU size, this is the limit
297 * to which we will raise the P-MTU.
298 */
299#define SCTP_DEFAULT_MINSEGMENT 512 /* MTU size ... if no mtu disc */
Daniel Borkmann570617e2013-02-12 05:15:33 +0000300
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301#define SCTP_SECRET_SIZE 32 /* Number of octets in a 256 bits. */
302
303#define SCTP_SIGNATURE_SIZE 20 /* size of a SLA-1 signature */
304
305#define SCTP_COOKIE_MULTIPLE 32 /* Pad out our cookie to make our hash
306 * functions simpler to write.
307 */
308
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309/* These return values describe the success or failure of a number of
310 * routines which form the lower interface to SCTP_outqueue.
311 */
Xin Long86b36f22017-08-05 19:59:57 +0800312enum sctp_xmit {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313 SCTP_XMIT_OK,
314 SCTP_XMIT_PMTU_FULL,
315 SCTP_XMIT_RWND_FULL,
David Laight526cbef2014-07-22 08:59:14 +0000316 SCTP_XMIT_DELAY,
Xin Long86b36f22017-08-05 19:59:57 +0800317};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318
319/* These are the commands for manipulating transports. */
Xin Long0ceaeeb2017-08-05 19:59:55 +0800320enum sctp_transport_cmd {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321 SCTP_TRANSPORT_UP,
322 SCTP_TRANSPORT_DOWN,
Neil Horman5aa93bc2012-07-21 07:56:07 +0000323 SCTP_TRANSPORT_PF,
Xin Long0ceaeeb2017-08-05 19:59:55 +0800324};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325
326/* These are the address scopes defined mainly for IPv4 addresses
327 * based on draft of SCTP IPv4 scoping <draft-stewart-tsvwg-sctp-ipv4-00.txt>.
328 * These scopes are hopefully generic enough to be used on scoping both
329 * IPv4 and IPv6 addresses in SCTP.
330 * At this point, the IPv6 scopes will be mapped to these internal scopes
331 * as much as possible.
332 */
Xin Long1c662012017-08-05 19:59:54 +0800333enum sctp_scope {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334 SCTP_SCOPE_GLOBAL, /* IPv4 global addresses */
335 SCTP_SCOPE_PRIVATE, /* IPv4 private addresses */
336 SCTP_SCOPE_LINK, /* IPv4 link local address */
337 SCTP_SCOPE_LOOPBACK, /* IPv4 loopback address */
338 SCTP_SCOPE_UNUSABLE, /* IPv4 unusable addresses */
Xin Long1c662012017-08-05 19:59:54 +0800339};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340
Xin Long701ef3e2017-08-05 19:59:53 +0800341enum {
Bhaskar Dutta72388432009-09-03 17:25:47 +0530342 SCTP_SCOPE_POLICY_DISABLE, /* Disable IPv4 address scoping */
343 SCTP_SCOPE_POLICY_ENABLE, /* Enable IPv4 address scoping */
344 SCTP_SCOPE_POLICY_PRIVATE, /* Follow draft but allow IPv4 private addresses */
345 SCTP_SCOPE_POLICY_LINK, /* Follow draft but allow IPv4 link local addresses */
Xin Long701ef3e2017-08-05 19:59:53 +0800346};
347
348#define SCTP_SCOPE_POLICY_MAX SCTP_SCOPE_POLICY_LINK
Bhaskar Dutta72388432009-09-03 17:25:47 +0530349
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350/* Based on IPv4 scoping <draft-stewart-tsvwg-sctp-ipv4-00.txt>,
351 * SCTP IPv4 unusable addresses: 0.0.0.0/8, 224.0.0.0/4, 198.18.0.0/24,
352 * 192.88.99.0/24.
353 * Also, RFC 8.4, non-unicast addresses are not considered valid SCTP
354 * addresses.
355 */
Joe Perchesb5cb2bb2007-12-16 13:46:59 -0800356#define IS_IPV4_UNUSABLE_ADDRESS(a) \
357 ((htonl(INADDR_BROADCAST) == a) || \
358 ipv4_is_multicast(a) || \
359 ipv4_is_zeronet(a) || \
360 ipv4_is_test_198(a) || \
361 ipv4_is_anycast_6to4(a))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362
363/* Flags used for the bind address copy functions. */
364#define SCTP_ADDR6_ALLOWED 0x00000001 /* IPv6 address is allowed by
365 local sock family */
366#define SCTP_ADDR4_PEERSUPP 0x00000002 /* IPv4 address is supported by
367 peer */
368#define SCTP_ADDR6_PEERSUPP 0x00000004 /* IPv6 address is supported by
369 peer */
370
371/* Reasons to retransmit. */
Xin Long125c2982017-08-05 19:59:52 +0800372enum sctp_retransmit_reason {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373 SCTP_RTXR_T3_RTX,
374 SCTP_RTXR_FAST_RTX,
375 SCTP_RTXR_PMTUD,
Vlad Yasevichb6157d82007-10-24 15:59:16 -0400376 SCTP_RTXR_T1_RTX,
Xin Long125c2982017-08-05 19:59:52 +0800377};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378
379/* Reasons to lower cwnd. */
Xin Long233e7932017-08-05 19:59:51 +0800380enum sctp_lower_cwnd {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381 SCTP_LOWER_CWND_T3_RTX,
382 SCTP_LOWER_CWND_FAST_RTX,
383 SCTP_LOWER_CWND_ECNE,
384 SCTP_LOWER_CWND_INACTIVE,
Xin Long233e7932017-08-05 19:59:51 +0800385};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386
Vlad Yasevich1f485642007-10-09 01:15:59 -0700387
388/* SCTP-AUTH Necessary constants */
389
390/* SCTP-AUTH, Section 3.3
391 *
392 * The following Table 2 shows the currently defined values for HMAC
393 * identifiers.
394 *
395 * +-----------------+--------------------------+
396 * | HMAC Identifier | Message Digest Algorithm |
397 * +-----------------+--------------------------+
398 * | 0 | Reserved |
399 * | 1 | SHA-1 defined in [8] |
400 * | 2 | Reserved |
401 * | 3 | SHA-256 defined in [8] |
402 * +-----------------+--------------------------+
403 */
404enum {
405 SCTP_AUTH_HMAC_ID_RESERVED_0,
406 SCTP_AUTH_HMAC_ID_SHA1,
407 SCTP_AUTH_HMAC_ID_RESERVED_2,
Vlad Yasevichb7e0fe92007-11-29 09:53:52 -0500408#if defined (CONFIG_CRYPTO_SHA256) || defined (CONFIG_CRYPTO_SHA256_MODULE)
409 SCTP_AUTH_HMAC_ID_SHA256,
410#endif
411 __SCTP_AUTH_HMAC_MAX
Vlad Yasevich1f485642007-10-09 01:15:59 -0700412};
413
Vlad Yasevichb7e0fe92007-11-29 09:53:52 -0500414#define SCTP_AUTH_HMAC_ID_MAX __SCTP_AUTH_HMAC_MAX - 1
415#define SCTP_AUTH_NUM_HMACS __SCTP_AUTH_HMAC_MAX
Vlad Yasevich1f485642007-10-09 01:15:59 -0700416#define SCTP_SHA1_SIG_SIZE 20
417#define SCTP_SHA256_SIG_SIZE 32
418
419/* SCTP-AUTH, Section 3.2
420 * The chunk types for INIT, INIT-ACK, SHUTDOWN-COMPLETE and AUTH chunks
421 * MUST NOT be listed in the CHUNKS parameter
422 */
423#define SCTP_NUM_NOAUTH_CHUNKS 4
424#define SCTP_AUTH_MAX_CHUNKS (SCTP_NUM_CHUNK_TYPES - SCTP_NUM_NOAUTH_CHUNKS)
425
426/* SCTP-AUTH Section 6.1
427 * The RANDOM parameter MUST contain a 32 byte random number.
428 */
429#define SCTP_AUTH_RANDOM_LENGTH 32
430
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431#endif /* __sctp_constants_h__ */