constants.h 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413
  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 Intel Corp.
  6. *
  7. * This file is part of the SCTP kernel reference Implementation
  8. *
  9. * The SCTP reference 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. * The SCTP reference 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_CHUNK_TYPES (SCTP_NUM_BASE_CHUNKTYPES + 2)
  63. #define SCTP_NUM_ADDIP_CHUNK_TYPES 2
  64. #define SCTP_NUM_PRSCTP_CHUNK_TYPES 1
  65. /* These are the different flavours of event. */
  66. typedef enum {
  67. SCTP_EVENT_T_CHUNK = 1,
  68. SCTP_EVENT_T_TIMEOUT,
  69. SCTP_EVENT_T_OTHER,
  70. SCTP_EVENT_T_PRIMITIVE
  71. } sctp_event_t;
  72. #define SCTP_EVENT_T_MAX SCTP_EVENT_T_PRIMITIVE
  73. #define SCTP_EVENT_T_NUM (SCTP_EVENT_T_MAX + 1)
  74. /* As a convenience for the state machine, we append SCTP_EVENT_* and
  75. * SCTP_ULP_* to the list of possible chunks.
  76. */
  77. typedef enum {
  78. SCTP_EVENT_TIMEOUT_NONE = 0,
  79. SCTP_EVENT_TIMEOUT_T1_COOKIE,
  80. SCTP_EVENT_TIMEOUT_T1_INIT,
  81. SCTP_EVENT_TIMEOUT_T2_SHUTDOWN,
  82. SCTP_EVENT_TIMEOUT_T3_RTX,
  83. SCTP_EVENT_TIMEOUT_T4_RTO,
  84. SCTP_EVENT_TIMEOUT_T5_SHUTDOWN_GUARD,
  85. SCTP_EVENT_TIMEOUT_HEARTBEAT,
  86. SCTP_EVENT_TIMEOUT_SACK,
  87. SCTP_EVENT_TIMEOUT_AUTOCLOSE,
  88. } sctp_event_timeout_t;
  89. #define SCTP_EVENT_TIMEOUT_MAX SCTP_EVENT_TIMEOUT_AUTOCLOSE
  90. #define SCTP_NUM_TIMEOUT_TYPES (SCTP_EVENT_TIMEOUT_MAX + 1)
  91. typedef enum {
  92. SCTP_EVENT_NO_PENDING_TSN = 0,
  93. SCTP_EVENT_ICMP_PROTO_UNREACH,
  94. } sctp_event_other_t;
  95. #define SCTP_EVENT_OTHER_MAX SCTP_EVENT_ICMP_PROTO_UNREACH
  96. #define SCTP_NUM_OTHER_TYPES (SCTP_EVENT_OTHER_MAX + 1)
  97. /* These are primitive requests from the ULP. */
  98. typedef enum {
  99. SCTP_PRIMITIVE_ASSOCIATE = 0,
  100. SCTP_PRIMITIVE_SHUTDOWN,
  101. SCTP_PRIMITIVE_ABORT,
  102. SCTP_PRIMITIVE_SEND,
  103. SCTP_PRIMITIVE_REQUESTHEARTBEAT,
  104. SCTP_PRIMITIVE_ASCONF,
  105. } sctp_event_primitive_t;
  106. #define SCTP_EVENT_PRIMITIVE_MAX SCTP_PRIMITIVE_ASCONF
  107. #define SCTP_NUM_PRIMITIVE_TYPES (SCTP_EVENT_PRIMITIVE_MAX + 1)
  108. /* We define here a utility type for manipulating subtypes.
  109. * The subtype constructors all work like this:
  110. *
  111. * sctp_subtype_t foo = SCTP_ST_CHUNK(SCTP_CID_INIT);
  112. */
  113. typedef union {
  114. sctp_cid_t chunk;
  115. sctp_event_timeout_t timeout;
  116. sctp_event_other_t other;
  117. sctp_event_primitive_t primitive;
  118. } sctp_subtype_t;
  119. #define SCTP_SUBTYPE_CONSTRUCTOR(_name, _type, _elt) \
  120. static inline sctp_subtype_t \
  121. SCTP_ST_## _name (_type _arg) \
  122. { sctp_subtype_t _retval; _retval._elt = _arg; return _retval; }
  123. SCTP_SUBTYPE_CONSTRUCTOR(CHUNK, sctp_cid_t, chunk)
  124. SCTP_SUBTYPE_CONSTRUCTOR(TIMEOUT, sctp_event_timeout_t, timeout)
  125. SCTP_SUBTYPE_CONSTRUCTOR(OTHER, sctp_event_other_t, other)
  126. SCTP_SUBTYPE_CONSTRUCTOR(PRIMITIVE, sctp_event_primitive_t, primitive)
  127. #define sctp_chunk_is_control(a) (a->chunk_hdr->type != SCTP_CID_DATA)
  128. #define sctp_chunk_is_data(a) (a->chunk_hdr->type == SCTP_CID_DATA)
  129. /* Calculate the actual data size in a data chunk */
  130. #define SCTP_DATA_SNDSIZE(c) ((int)((unsigned long)(c->chunk_end)\
  131. - (unsigned long)(c->chunk_hdr)\
  132. - sizeof(sctp_data_chunk_t)))
  133. #define SCTP_MAX_ERROR_CAUSE SCTP_ERROR_NONEXIST_IP
  134. #define SCTP_NUM_ERROR_CAUSE 10
  135. /* Internal error codes */
  136. typedef enum {
  137. SCTP_IERROR_NO_ERROR = 0,
  138. SCTP_IERROR_BASE = 1000,
  139. SCTP_IERROR_NO_COOKIE,
  140. SCTP_IERROR_BAD_SIG,
  141. SCTP_IERROR_STALE_COOKIE,
  142. SCTP_IERROR_NOMEM,
  143. SCTP_IERROR_MALFORMED,
  144. SCTP_IERROR_BAD_TAG,
  145. SCTP_IERROR_BIG_GAP,
  146. SCTP_IERROR_DUP_TSN,
  147. SCTP_IERROR_HIGH_TSN,
  148. SCTP_IERROR_IGNORE_TSN,
  149. SCTP_IERROR_NO_DATA,
  150. SCTP_IERROR_BAD_STREAM,
  151. SCTP_IERROR_BAD_PORTS,
  152. } sctp_ierror_t;
  153. /* SCTP state defines for internal state machine */
  154. typedef enum {
  155. SCTP_STATE_EMPTY = 0,
  156. SCTP_STATE_CLOSED = 1,
  157. SCTP_STATE_COOKIE_WAIT = 2,
  158. SCTP_STATE_COOKIE_ECHOED = 3,
  159. SCTP_STATE_ESTABLISHED = 4,
  160. SCTP_STATE_SHUTDOWN_PENDING = 5,
  161. SCTP_STATE_SHUTDOWN_SENT = 6,
  162. SCTP_STATE_SHUTDOWN_RECEIVED = 7,
  163. SCTP_STATE_SHUTDOWN_ACK_SENT = 8,
  164. } sctp_state_t;
  165. #define SCTP_STATE_MAX SCTP_STATE_SHUTDOWN_ACK_SENT
  166. #define SCTP_STATE_NUM_STATES (SCTP_STATE_MAX + 1)
  167. /* These are values for sk->state.
  168. * For a UDP-style SCTP socket, the states are defined as follows
  169. * - A socket in SCTP_SS_CLOSED state indicates that it is not willing to
  170. * accept new associations, but it can initiate the creation of new ones.
  171. * - A socket in SCTP_SS_LISTENING state indicates that it is willing to
  172. * accept new associations and can initiate the creation of new ones.
  173. * - A socket in SCTP_SS_ESTABLISHED state indicates that it is a peeled off
  174. * socket with one association.
  175. * For a TCP-style SCTP socket, the states are defined as follows
  176. * - A socket in SCTP_SS_CLOSED state indicates that it is not willing to
  177. * accept new associations, but it can initiate the creation of new ones.
  178. * - A socket in SCTP_SS_LISTENING state indicates that it is willing to
  179. * accept new associations, but cannot initiate the creation of new ones.
  180. * - A socket in SCTP_SS_ESTABLISHED state indicates that it has a single
  181. * association.
  182. */
  183. typedef enum {
  184. SCTP_SS_CLOSED = TCP_CLOSE,
  185. SCTP_SS_LISTENING = TCP_LISTEN,
  186. SCTP_SS_ESTABLISHING = TCP_SYN_SENT,
  187. SCTP_SS_ESTABLISHED = TCP_ESTABLISHED,
  188. SCTP_SS_DISCONNECTING = TCP_CLOSING,
  189. } sctp_sock_state_t;
  190. /* These functions map various type to printable names. */
  191. const char *sctp_cname(const sctp_subtype_t); /* chunk types */
  192. const char *sctp_oname(const sctp_subtype_t); /* other events */
  193. const char *sctp_tname(const sctp_subtype_t); /* timeouts */
  194. const char *sctp_pname(const sctp_subtype_t); /* primitives */
  195. /* This is a table of printable names of sctp_state_t's. */
  196. extern const char *sctp_state_tbl[], *sctp_evttype_tbl[], *sctp_status_tbl[];
  197. /* Maximum chunk length considering padding requirements. */
  198. enum { SCTP_MAX_CHUNK_LEN = ((1<<16) - sizeof(__u32)) };
  199. /* Encourage Cookie-Echo bundling by pre-fragmenting chunks a little
  200. * harder (until reaching ESTABLISHED state).
  201. */
  202. enum { SCTP_ARBITRARY_COOKIE_ECHO_LEN = 200 };
  203. /* Guess at how big to make the TSN mapping array.
  204. * We guarantee that we can handle at least this big a gap between the
  205. * cumulative ACK and the highest TSN. In practice, we can often
  206. * handle up to twice this value.
  207. *
  208. * NEVER make this more than 32767 (2^15-1). The Gap Ack Blocks in a
  209. * SACK (see section 3.3.4) are only 16 bits, so 2*SCTP_TSN_MAP_SIZE
  210. * must be less than 65535 (2^16 - 1), or we will have overflow
  211. * problems creating SACK's.
  212. */
  213. #define SCTP_TSN_MAP_SIZE 2048
  214. #define SCTP_TSN_MAX_GAP 65535
  215. /* We will not record more than this many duplicate TSNs between two
  216. * SACKs. The minimum PMTU is 576. Remove all the headers and there
  217. * is enough room for 131 duplicate reports. Round down to the
  218. * nearest power of 2.
  219. */
  220. enum { SCTP_MIN_PMTU = 576 };
  221. enum { SCTP_MAX_DUP_TSNS = 16 };
  222. enum { SCTP_MAX_GABS = 16 };
  223. /* Heartbeat interval - 30 secs */
  224. #define SCTP_DEFAULT_TIMEOUT_HEARTBEAT (30 * HZ)
  225. /* Delayed sack timer - 200ms */
  226. #define SCTP_DEFAULT_TIMEOUT_SACK ((200 * HZ) / 1000)
  227. /* RTO.Initial - 3 seconds
  228. * RTO.Min - 1 second
  229. * RTO.Max - 60 seconds
  230. * RTO.Alpha - 1/8
  231. * RTO.Beta - 1/4
  232. */
  233. #define SCTP_RTO_INITIAL (3 * HZ)
  234. #define SCTP_RTO_MIN (1 * HZ)
  235. #define SCTP_RTO_MAX (60 * HZ)
  236. #define SCTP_RTO_ALPHA 3 /* 1/8 when converted to right shifts. */
  237. #define SCTP_RTO_BETA 2 /* 1/4 when converted to right shifts. */
  238. /* Maximum number of new data packets that can be sent in a burst. */
  239. #define SCTP_MAX_BURST 4
  240. #define SCTP_CLOCK_GRANULARITY 1 /* 1 jiffy */
  241. #define SCTP_DEF_MAX_INIT 6
  242. #define SCTP_DEF_MAX_SEND 10
  243. #define SCTP_DEFAULT_COOKIE_LIFE_SEC 60 /* seconds */
  244. #define SCTP_DEFAULT_COOKIE_LIFE_USEC 0 /* microseconds */
  245. #define SCTP_DEFAULT_MINWINDOW 1500 /* default minimum rwnd size */
  246. #define SCTP_DEFAULT_MAXWINDOW 65535 /* default rwnd size */
  247. #define SCTP_DEFAULT_MAXSEGMENT 1500 /* MTU size, this is the limit
  248. * to which we will raise the P-MTU.
  249. */
  250. #define SCTP_DEFAULT_MINSEGMENT 512 /* MTU size ... if no mtu disc */
  251. #define SCTP_HOW_MANY_SECRETS 2 /* How many secrets I keep */
  252. #define SCTP_HOW_LONG_COOKIE_LIVE 3600 /* How many seconds the current
  253. * secret will live?
  254. */
  255. #define SCTP_SECRET_SIZE 32 /* Number of octets in a 256 bits. */
  256. #define SCTP_SIGNATURE_SIZE 20 /* size of a SLA-1 signature */
  257. #define SCTP_COOKIE_MULTIPLE 32 /* Pad out our cookie to make our hash
  258. * functions simpler to write.
  259. */
  260. #if defined (CONFIG_SCTP_HMAC_MD5)
  261. #define SCTP_COOKIE_HMAC_ALG "md5"
  262. #elif defined (CONFIG_SCTP_HMAC_SHA1)
  263. #define SCTP_COOKIE_HMAC_ALG "sha1"
  264. #else
  265. #define SCTP_COOKIE_HMAC_ALG NULL
  266. #endif
  267. /* These return values describe the success or failure of a number of
  268. * routines which form the lower interface to SCTP_outqueue.
  269. */
  270. typedef enum {
  271. SCTP_XMIT_OK,
  272. SCTP_XMIT_PMTU_FULL,
  273. SCTP_XMIT_RWND_FULL,
  274. SCTP_XMIT_NAGLE_DELAY,
  275. } sctp_xmit_t;
  276. /* These are the commands for manipulating transports. */
  277. typedef enum {
  278. SCTP_TRANSPORT_UP,
  279. SCTP_TRANSPORT_DOWN,
  280. } sctp_transport_cmd_t;
  281. /* These are the address scopes defined mainly for IPv4 addresses
  282. * based on draft of SCTP IPv4 scoping <draft-stewart-tsvwg-sctp-ipv4-00.txt>.
  283. * These scopes are hopefully generic enough to be used on scoping both
  284. * IPv4 and IPv6 addresses in SCTP.
  285. * At this point, the IPv6 scopes will be mapped to these internal scopes
  286. * as much as possible.
  287. */
  288. typedef enum {
  289. SCTP_SCOPE_GLOBAL, /* IPv4 global addresses */
  290. SCTP_SCOPE_PRIVATE, /* IPv4 private addresses */
  291. SCTP_SCOPE_LINK, /* IPv4 link local address */
  292. SCTP_SCOPE_LOOPBACK, /* IPv4 loopback address */
  293. SCTP_SCOPE_UNUSABLE, /* IPv4 unusable addresses */
  294. } sctp_scope_t;
  295. /* Based on IPv4 scoping <draft-stewart-tsvwg-sctp-ipv4-00.txt>,
  296. * SCTP IPv4 unusable addresses: 0.0.0.0/8, 224.0.0.0/4, 198.18.0.0/24,
  297. * 192.88.99.0/24.
  298. * Also, RFC 8.4, non-unicast addresses are not considered valid SCTP
  299. * addresses.
  300. */
  301. #define IS_IPV4_UNUSABLE_ADDRESS(a) \
  302. ((INADDR_BROADCAST == *a) || \
  303. (MULTICAST(*a)) || \
  304. (((unsigned char *)(a))[0] == 0) || \
  305. ((((unsigned char *)(a))[0] == 198) && \
  306. (((unsigned char *)(a))[1] == 18) && \
  307. (((unsigned char *)(a))[2] == 0)) || \
  308. ((((unsigned char *)(a))[0] == 192) && \
  309. (((unsigned char *)(a))[1] == 88) && \
  310. (((unsigned char *)(a))[2] == 99)))
  311. /* IPv4 Link-local addresses: 169.254.0.0/16. */
  312. #define IS_IPV4_LINK_ADDRESS(a) \
  313. ((((unsigned char *)(a))[0] == 169) && \
  314. (((unsigned char *)(a))[1] == 254))
  315. /* RFC 1918 "Address Allocation for Private Internets" defines the IPv4
  316. * private address space as the following:
  317. *
  318. * 10.0.0.0 - 10.255.255.255 (10/8 prefix)
  319. * 172.16.0.0.0 - 172.31.255.255 (172.16/12 prefix)
  320. * 192.168.0.0 - 192.168.255.255 (192.168/16 prefix)
  321. */
  322. #define IS_IPV4_PRIVATE_ADDRESS(a) \
  323. ((((unsigned char *)(a))[0] == 10) || \
  324. ((((unsigned char *)(a))[0] == 172) && \
  325. (((unsigned char *)(a))[1] >= 16) && \
  326. (((unsigned char *)(a))[1] < 32)) || \
  327. ((((unsigned char *)(a))[0] == 192) && \
  328. (((unsigned char *)(a))[1] == 168)))
  329. /* Flags used for the bind address copy functions. */
  330. #define SCTP_ADDR6_ALLOWED 0x00000001 /* IPv6 address is allowed by
  331. local sock family */
  332. #define SCTP_ADDR4_PEERSUPP 0x00000002 /* IPv4 address is supported by
  333. peer */
  334. #define SCTP_ADDR6_PEERSUPP 0x00000004 /* IPv6 address is supported by
  335. peer */
  336. /* Reasons to retransmit. */
  337. typedef enum {
  338. SCTP_RTXR_T3_RTX,
  339. SCTP_RTXR_FAST_RTX,
  340. SCTP_RTXR_PMTUD,
  341. } sctp_retransmit_reason_t;
  342. /* Reasons to lower cwnd. */
  343. typedef enum {
  344. SCTP_LOWER_CWND_T3_RTX,
  345. SCTP_LOWER_CWND_FAST_RTX,
  346. SCTP_LOWER_CWND_ECNE,
  347. SCTP_LOWER_CWND_INACTIVE,
  348. } sctp_lower_cwnd_t;
  349. #endif /* __sctp_constants_h__ */