/kern_oII/include/net/sctp/constants.h

http://omnia2droid.googlecode.com/ · C++ Header · 445 lines · 217 code · 69 blank · 159 comment · 5 complexity · 6fa6e3178849507cc7621836757f9d6a MD5 · raw file

  1. /* SCTP kernel 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 Intel Corp.
  6. *
  7. * This file is part of the SCTP kernel implementation
  8. *
  9. * This SCTP implementation is free software;
  10. * 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. *
  15. * This SCTP implementation is distributed in the hope that it
  16. * 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
  22. * along with GNU CC; see the file COPYING. If not, write to
  23. * the Free Software Foundation, 59 Temple Place - Suite 330,
  24. * Boston, MA 02111-1307, USA.
  25. *
  26. * Please send any bug reports or fixes you make to the
  27. * email address(es):
  28. * lksctp developers <lksctp-developers@lists.sourceforge.net>
  29. *
  30. * Or submit a bug report through the following website:
  31. * http://www.sf.net/projects/lksctp
  32. *
  33. * Written or modified by:
  34. * La Monte H.P. Yarroll <piggy@acm.org>
  35. * Karl Knutson <karl@athena.chicago.il.us>
  36. * Randall Stewart <randall@stewart.chicago.il.us>
  37. * Ken Morneau <kmorneau@cisco.com>
  38. * Qiaobing Xie <qxie1@motorola.com>
  39. * Xingang Guo <xingang.guo@intel.com>
  40. * Sridhar Samudrala <samudrala@us.ibm.com>
  41. * Daisy Chang <daisyc@us.ibm.com>
  42. *
  43. * Any bugs reported given to us we will try to fix... any fixes shared will
  44. * be incorporated into the next SCTP release.
  45. */
  46. #ifndef __sctp_constants_h__
  47. #define __sctp_constants_h__
  48. #include <linux/sctp.h>
  49. #include <linux/ipv6.h> /* For ipv6hdr. */
  50. #include <net/sctp/user.h>
  51. #include <net/tcp_states.h> /* For TCP states used in sctp_sock_state_t */
  52. /* Value used for stream negotiation. */
  53. enum { SCTP_MAX_STREAM = 0xffff };
  54. enum { SCTP_DEFAULT_OUTSTREAMS = 10 };
  55. enum { SCTP_DEFAULT_INSTREAMS = SCTP_MAX_STREAM };
  56. /* Since CIDs are sparse, we need all four of the following
  57. * symbols. CIDs are dense through SCTP_CID_BASE_MAX.
  58. */
  59. #define SCTP_CID_BASE_MAX SCTP_CID_SHUTDOWN_COMPLETE
  60. #define SCTP_CID_MAX SCTP_CID_ASCONF_ACK
  61. #define SCTP_NUM_BASE_CHUNK_TYPES (SCTP_CID_BASE_MAX + 1)
  62. #define SCTP_NUM_ADDIP_CHUNK_TYPES 2
  63. #define SCTP_NUM_PRSCTP_CHUNK_TYPES 1
  64. #define SCTP_NUM_AUTH_CHUNK_TYPES 1
  65. #define SCTP_NUM_CHUNK_TYPES (SCTP_NUM_BASE_CHUNK_TYPES + \
  66. SCTP_NUM_ADDIP_CHUNK_TYPES +\
  67. SCTP_NUM_PRSCTP_CHUNK_TYPES +\
  68. SCTP_NUM_AUTH_CHUNK_TYPES)
  69. /* These are the different flavours of event. */
  70. typedef enum {
  71. SCTP_EVENT_T_CHUNK = 1,
  72. SCTP_EVENT_T_TIMEOUT,
  73. SCTP_EVENT_T_OTHER,
  74. SCTP_EVENT_T_PRIMITIVE
  75. } sctp_event_t;
  76. #define SCTP_EVENT_T_MAX SCTP_EVENT_T_PRIMITIVE
  77. #define SCTP_EVENT_T_NUM (SCTP_EVENT_T_MAX + 1)
  78. /* As a convenience for the state machine, we append SCTP_EVENT_* and
  79. * SCTP_ULP_* to the list of possible chunks.
  80. */
  81. typedef enum {
  82. SCTP_EVENT_TIMEOUT_NONE = 0,
  83. SCTP_EVENT_TIMEOUT_T1_COOKIE,
  84. SCTP_EVENT_TIMEOUT_T1_INIT,
  85. SCTP_EVENT_TIMEOUT_T2_SHUTDOWN,
  86. SCTP_EVENT_TIMEOUT_T3_RTX,
  87. SCTP_EVENT_TIMEOUT_T4_RTO,
  88. SCTP_EVENT_TIMEOUT_T5_SHUTDOWN_GUARD,
  89. SCTP_EVENT_TIMEOUT_HEARTBEAT,
  90. SCTP_EVENT_TIMEOUT_SACK,
  91. SCTP_EVENT_TIMEOUT_AUTOCLOSE,
  92. } sctp_event_timeout_t;
  93. #define SCTP_EVENT_TIMEOUT_MAX SCTP_EVENT_TIMEOUT_AUTOCLOSE
  94. #define SCTP_NUM_TIMEOUT_TYPES (SCTP_EVENT_TIMEOUT_MAX + 1)
  95. typedef enum {
  96. SCTP_EVENT_NO_PENDING_TSN = 0,
  97. SCTP_EVENT_ICMP_PROTO_UNREACH,
  98. } sctp_event_other_t;
  99. #define SCTP_EVENT_OTHER_MAX SCTP_EVENT_ICMP_PROTO_UNREACH
  100. #define SCTP_NUM_OTHER_TYPES (SCTP_EVENT_OTHER_MAX + 1)
  101. /* These are primitive requests from the ULP. */
  102. typedef enum {
  103. SCTP_PRIMITIVE_ASSOCIATE = 0,
  104. SCTP_PRIMITIVE_SHUTDOWN,
  105. SCTP_PRIMITIVE_ABORT,
  106. SCTP_PRIMITIVE_SEND,
  107. SCTP_PRIMITIVE_REQUESTHEARTBEAT,
  108. SCTP_PRIMITIVE_ASCONF,
  109. } sctp_event_primitive_t;
  110. #define SCTP_EVENT_PRIMITIVE_MAX SCTP_PRIMITIVE_ASCONF
  111. #define SCTP_NUM_PRIMITIVE_TYPES (SCTP_EVENT_PRIMITIVE_MAX + 1)
  112. /* We define here a utility type for manipulating subtypes.
  113. * The subtype constructors all work like this:
  114. *
  115. * sctp_subtype_t foo = SCTP_ST_CHUNK(SCTP_CID_INIT);
  116. */
  117. typedef union {
  118. sctp_cid_t chunk;
  119. sctp_event_timeout_t timeout;
  120. sctp_event_other_t other;
  121. sctp_event_primitive_t primitive;
  122. } sctp_subtype_t;
  123. #define SCTP_SUBTYPE_CONSTRUCTOR(_name, _type, _elt) \
  124. static inline sctp_subtype_t \
  125. SCTP_ST_## _name (_type _arg) \
  126. { sctp_subtype_t _retval; _retval._elt = _arg; return _retval; }
  127. SCTP_SUBTYPE_CONSTRUCTOR(CHUNK, sctp_cid_t, chunk)
  128. SCTP_SUBTYPE_CONSTRUCTOR(TIMEOUT, sctp_event_timeout_t, timeout)
  129. SCTP_SUBTYPE_CONSTRUCTOR(OTHER, sctp_event_other_t, other)
  130. SCTP_SUBTYPE_CONSTRUCTOR(PRIMITIVE, sctp_event_primitive_t, primitive)
  131. #define sctp_chunk_is_control(a) (a->chunk_hdr->type != SCTP_CID_DATA)
  132. #define sctp_chunk_is_data(a) (a->chunk_hdr->type == SCTP_CID_DATA)
  133. /* Calculate the actual data size in a data chunk */
  134. #define SCTP_DATA_SNDSIZE(c) ((int)((unsigned long)(c->chunk_end)\
  135. - (unsigned long)(c->chunk_hdr)\
  136. - sizeof(sctp_data_chunk_t)))
  137. #define SCTP_MAX_ERROR_CAUSE SCTP_ERROR_NONEXIST_IP
  138. #define SCTP_NUM_ERROR_CAUSE 10
  139. /* Internal error codes */
  140. typedef enum {
  141. SCTP_IERROR_NO_ERROR = 0,
  142. SCTP_IERROR_BASE = 1000,
  143. SCTP_IERROR_NO_COOKIE,
  144. SCTP_IERROR_BAD_SIG,
  145. SCTP_IERROR_STALE_COOKIE,
  146. SCTP_IERROR_NOMEM,
  147. SCTP_IERROR_MALFORMED,
  148. SCTP_IERROR_BAD_TAG,
  149. SCTP_IERROR_BIG_GAP,
  150. SCTP_IERROR_DUP_TSN,
  151. SCTP_IERROR_HIGH_TSN,
  152. SCTP_IERROR_IGNORE_TSN,
  153. SCTP_IERROR_NO_DATA,
  154. SCTP_IERROR_BAD_STREAM,
  155. SCTP_IERROR_BAD_PORTS,
  156. SCTP_IERROR_AUTH_BAD_HMAC,
  157. SCTP_IERROR_AUTH_BAD_KEYID,
  158. SCTP_IERROR_PROTO_VIOLATION,
  159. SCTP_IERROR_ERROR,
  160. SCTP_IERROR_ABORT,
  161. } sctp_ierror_t;
  162. /* SCTP state defines for internal state machine */
  163. typedef enum {
  164. SCTP_STATE_EMPTY = 0,
  165. SCTP_STATE_CLOSED = 1,
  166. SCTP_STATE_COOKIE_WAIT = 2,
  167. SCTP_STATE_COOKIE_ECHOED = 3,
  168. SCTP_STATE_ESTABLISHED = 4,
  169. SCTP_STATE_SHUTDOWN_PENDING = 5,
  170. SCTP_STATE_SHUTDOWN_SENT = 6,
  171. SCTP_STATE_SHUTDOWN_RECEIVED = 7,
  172. SCTP_STATE_SHUTDOWN_ACK_SENT = 8,
  173. } sctp_state_t;
  174. #define SCTP_STATE_MAX SCTP_STATE_SHUTDOWN_ACK_SENT
  175. #define SCTP_STATE_NUM_STATES (SCTP_STATE_MAX + 1)
  176. /* These are values for sk->state.
  177. * For a UDP-style SCTP socket, the states are defined as follows
  178. * - A socket in SCTP_SS_CLOSED state indicates that it is not willing to
  179. * accept new associations, but it can initiate the creation of new ones.
  180. * - A socket in SCTP_SS_LISTENING state indicates that it is willing to
  181. * accept new associations and can initiate the creation of new ones.
  182. * - A socket in SCTP_SS_ESTABLISHED state indicates that it is a peeled off
  183. * socket with one association.
  184. * For a TCP-style SCTP socket, the states are defined as follows
  185. * - A socket in SCTP_SS_CLOSED state indicates that it is not willing to
  186. * accept new associations, but it can initiate the creation of new ones.
  187. * - A socket in SCTP_SS_LISTENING state indicates that it is willing to
  188. * accept new associations, but cannot initiate the creation of new ones.
  189. * - A socket in SCTP_SS_ESTABLISHED state indicates that it has a single
  190. * association.
  191. */
  192. typedef enum {
  193. SCTP_SS_CLOSED = TCP_CLOSE,
  194. SCTP_SS_LISTENING = TCP_LISTEN,
  195. SCTP_SS_ESTABLISHING = TCP_SYN_SENT,
  196. SCTP_SS_ESTABLISHED = TCP_ESTABLISHED,
  197. SCTP_SS_DISCONNECTING = TCP_CLOSING,
  198. } sctp_sock_state_t;
  199. /* These functions map various type to printable names. */
  200. const char *sctp_cname(const sctp_subtype_t); /* chunk types */
  201. const char *sctp_oname(const sctp_subtype_t); /* other events */
  202. const char *sctp_tname(const sctp_subtype_t); /* timeouts */
  203. const char *sctp_pname(const sctp_subtype_t); /* primitives */
  204. /* This is a table of printable names of sctp_state_t's. */
  205. extern const char *sctp_state_tbl[], *sctp_evttype_tbl[], *sctp_status_tbl[];
  206. /* Maximum chunk length considering padding requirements. */
  207. enum { SCTP_MAX_CHUNK_LEN = ((1<<16) - sizeof(__u32)) };
  208. /* Encourage Cookie-Echo bundling by pre-fragmenting chunks a little
  209. * harder (until reaching ESTABLISHED state).
  210. */
  211. enum { SCTP_ARBITRARY_COOKIE_ECHO_LEN = 200 };
  212. /* Guess at how big to make the TSN mapping array.
  213. * We guarantee that we can handle at least this big a gap between the
  214. * cumulative ACK and the highest TSN. In practice, we can often
  215. * handle up to twice this value.
  216. *
  217. * NEVER make this more than 32767 (2^15-1). The Gap Ack Blocks in a
  218. * SACK (see section 3.3.4) are only 16 bits, so 2*SCTP_TSN_MAP_SIZE
  219. * must be less than 65535 (2^16 - 1), or we will have overflow
  220. * problems creating SACK's.
  221. */
  222. #define SCTP_TSN_MAP_INITIAL BITS_PER_LONG
  223. #define SCTP_TSN_MAP_INCREMENT SCTP_TSN_MAP_INITIAL
  224. #define SCTP_TSN_MAP_SIZE 4096
  225. #define SCTP_TSN_MAX_GAP 65535
  226. /* We will not record more than this many duplicate TSNs between two
  227. * SACKs. The minimum PMTU is 576. Remove all the headers and there
  228. * is enough room for 131 duplicate reports. Round down to the
  229. * nearest power of 2.
  230. */
  231. enum { SCTP_MIN_PMTU = 576 };
  232. enum { SCTP_MAX_DUP_TSNS = 16 };
  233. enum { SCTP_MAX_GABS = 16 };
  234. /* Heartbeat interval - 30 secs */
  235. #define SCTP_DEFAULT_TIMEOUT_HEARTBEAT (30*1000)
  236. /* Delayed sack timer - 200ms */
  237. #define SCTP_DEFAULT_TIMEOUT_SACK (200)
  238. /* RTO.Initial - 3 seconds
  239. * RTO.Min - 1 second
  240. * RTO.Max - 60 seconds
  241. * RTO.Alpha - 1/8
  242. * RTO.Beta - 1/4
  243. */
  244. #define SCTP_RTO_INITIAL (3 * 1000)
  245. #define SCTP_RTO_MIN (1 * 1000)
  246. #define SCTP_RTO_MAX (60 * 1000)
  247. #define SCTP_RTO_ALPHA 3 /* 1/8 when converted to right shifts. */
  248. #define SCTP_RTO_BETA 2 /* 1/4 when converted to right shifts. */
  249. /* Maximum number of new data packets that can be sent in a burst. */
  250. #define SCTP_DEFAULT_MAX_BURST 4
  251. #define SCTP_CLOCK_GRANULARITY 1 /* 1 jiffy */
  252. #define SCTP_DEF_MAX_INIT 6
  253. #define SCTP_DEF_MAX_SEND 10
  254. #define SCTP_DEFAULT_COOKIE_LIFE (60 * 1000) /* 60 seconds */
  255. #define SCTP_DEFAULT_MINWINDOW 1500 /* default minimum rwnd size */
  256. #define SCTP_DEFAULT_MAXWINDOW 65535 /* default rwnd size */
  257. #define SCTP_DEFAULT_MAXSEGMENT 1500 /* MTU size, this is the limit
  258. * to which we will raise the P-MTU.
  259. */
  260. #define SCTP_DEFAULT_MINSEGMENT 512 /* MTU size ... if no mtu disc */
  261. #define SCTP_HOW_MANY_SECRETS 2 /* How many secrets I keep */
  262. #define SCTP_HOW_LONG_COOKIE_LIVE 3600 /* How many seconds the current
  263. * secret will live?
  264. */
  265. #define SCTP_SECRET_SIZE 32 /* Number of octets in a 256 bits. */
  266. #define SCTP_SIGNATURE_SIZE 20 /* size of a SLA-1 signature */
  267. #define SCTP_COOKIE_MULTIPLE 32 /* Pad out our cookie to make our hash
  268. * functions simpler to write.
  269. */
  270. #if defined (CONFIG_SCTP_HMAC_MD5)
  271. #define SCTP_COOKIE_HMAC_ALG "hmac(md5)"
  272. #elif defined (CONFIG_SCTP_HMAC_SHA1)
  273. #define SCTP_COOKIE_HMAC_ALG "hmac(sha1)"
  274. #else
  275. #define SCTP_COOKIE_HMAC_ALG NULL
  276. #endif
  277. /* These return values describe the success or failure of a number of
  278. * routines which form the lower interface to SCTP_outqueue.
  279. */
  280. typedef enum {
  281. SCTP_XMIT_OK,
  282. SCTP_XMIT_PMTU_FULL,
  283. SCTP_XMIT_RWND_FULL,
  284. SCTP_XMIT_NAGLE_DELAY,
  285. } sctp_xmit_t;
  286. /* These are the commands for manipulating transports. */
  287. typedef enum {
  288. SCTP_TRANSPORT_UP,
  289. SCTP_TRANSPORT_DOWN,
  290. } sctp_transport_cmd_t;
  291. /* These are the address scopes defined mainly for IPv4 addresses
  292. * based on draft of SCTP IPv4 scoping <draft-stewart-tsvwg-sctp-ipv4-00.txt>.
  293. * These scopes are hopefully generic enough to be used on scoping both
  294. * IPv4 and IPv6 addresses in SCTP.
  295. * At this point, the IPv6 scopes will be mapped to these internal scopes
  296. * as much as possible.
  297. */
  298. typedef enum {
  299. SCTP_SCOPE_GLOBAL, /* IPv4 global addresses */
  300. SCTP_SCOPE_PRIVATE, /* IPv4 private addresses */
  301. SCTP_SCOPE_LINK, /* IPv4 link local address */
  302. SCTP_SCOPE_LOOPBACK, /* IPv4 loopback address */
  303. SCTP_SCOPE_UNUSABLE, /* IPv4 unusable addresses */
  304. } sctp_scope_t;
  305. /* Based on IPv4 scoping <draft-stewart-tsvwg-sctp-ipv4-00.txt>,
  306. * SCTP IPv4 unusable addresses: 0.0.0.0/8, 224.0.0.0/4, 198.18.0.0/24,
  307. * 192.88.99.0/24.
  308. * Also, RFC 8.4, non-unicast addresses are not considered valid SCTP
  309. * addresses.
  310. */
  311. #define IS_IPV4_UNUSABLE_ADDRESS(a) \
  312. ((htonl(INADDR_BROADCAST) == a) || \
  313. ipv4_is_multicast(a) || \
  314. ipv4_is_zeronet(a) || \
  315. ipv4_is_test_198(a) || \
  316. ipv4_is_anycast_6to4(a))
  317. /* Flags used for the bind address copy functions. */
  318. #define SCTP_ADDR6_ALLOWED 0x00000001 /* IPv6 address is allowed by
  319. local sock family */
  320. #define SCTP_ADDR4_PEERSUPP 0x00000002 /* IPv4 address is supported by
  321. peer */
  322. #define SCTP_ADDR6_PEERSUPP 0x00000004 /* IPv6 address is supported by
  323. peer */
  324. /* Reasons to retransmit. */
  325. typedef enum {
  326. SCTP_RTXR_T3_RTX,
  327. SCTP_RTXR_FAST_RTX,
  328. SCTP_RTXR_PMTUD,
  329. SCTP_RTXR_T1_RTX,
  330. } sctp_retransmit_reason_t;
  331. /* Reasons to lower cwnd. */
  332. typedef enum {
  333. SCTP_LOWER_CWND_T3_RTX,
  334. SCTP_LOWER_CWND_FAST_RTX,
  335. SCTP_LOWER_CWND_ECNE,
  336. SCTP_LOWER_CWND_INACTIVE,
  337. } sctp_lower_cwnd_t;
  338. /* SCTP-AUTH Necessary constants */
  339. /* SCTP-AUTH, Section 3.3
  340. *
  341. * The following Table 2 shows the currently defined values for HMAC
  342. * identifiers.
  343. *
  344. * +-----------------+--------------------------+
  345. * | HMAC Identifier | Message Digest Algorithm |
  346. * +-----------------+--------------------------+
  347. * | 0 | Reserved |
  348. * | 1 | SHA-1 defined in [8] |
  349. * | 2 | Reserved |
  350. * | 3 | SHA-256 defined in [8] |
  351. * +-----------------+--------------------------+
  352. */
  353. enum {
  354. SCTP_AUTH_HMAC_ID_RESERVED_0,
  355. SCTP_AUTH_HMAC_ID_SHA1,
  356. SCTP_AUTH_HMAC_ID_RESERVED_2,
  357. #if defined (CONFIG_CRYPTO_SHA256) || defined (CONFIG_CRYPTO_SHA256_MODULE)
  358. SCTP_AUTH_HMAC_ID_SHA256,
  359. #endif
  360. __SCTP_AUTH_HMAC_MAX
  361. };
  362. #define SCTP_AUTH_HMAC_ID_MAX __SCTP_AUTH_HMAC_MAX - 1
  363. #define SCTP_AUTH_NUM_HMACS __SCTP_AUTH_HMAC_MAX
  364. #define SCTP_SHA1_SIG_SIZE 20
  365. #define SCTP_SHA256_SIG_SIZE 32
  366. /* SCTP-AUTH, Section 3.2
  367. * The chunk types for INIT, INIT-ACK, SHUTDOWN-COMPLETE and AUTH chunks
  368. * MUST NOT be listed in the CHUNKS parameter
  369. */
  370. #define SCTP_NUM_NOAUTH_CHUNKS 4
  371. #define SCTP_AUTH_MAX_CHUNKS (SCTP_NUM_CHUNK_TYPES - SCTP_NUM_NOAUTH_CHUNKS)
  372. /* SCTP-AUTH Section 6.1
  373. * The RANDOM parameter MUST contain a 32 byte random number.
  374. */
  375. #define SCTP_AUTH_RANDOM_LENGTH 32
  376. #endif /* __sctp_constants_h__ */