sctp.h 35 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224
  1. /* SPDX-License-Identifier: GPL-2.0+ WITH Linux-syscall-note */
  2. /* SCTP kernel implementation
  3. * (C) Copyright IBM Corp. 2001, 2004
  4. * Copyright (c) 1999-2000 Cisco, Inc.
  5. * Copyright (c) 1999-2001 Motorola, Inc.
  6. * Copyright (c) 2002 Intel Corp.
  7. *
  8. * This file is part of the SCTP kernel implementation
  9. *
  10. * This header represents the structures and constants needed to support
  11. * the SCTP Extension to the Sockets API.
  12. *
  13. * This SCTP implementation is free software;
  14. * you can redistribute it and/or modify it under the terms of
  15. * the GNU General Public License as published by
  16. * the Free Software Foundation; either version 2, or (at your option)
  17. * any later version.
  18. *
  19. * This SCTP implementation is distributed in the hope that it
  20. * will be useful, but WITHOUT ANY WARRANTY; without even the implied
  21. * ************************
  22. * warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
  23. * See the GNU General Public License for more details.
  24. *
  25. * You should have received a copy of the GNU General Public License
  26. * along with GNU CC; see the file COPYING. If not, see
  27. * <http://www.gnu.org/licenses/>.
  28. *
  29. * Please send any bug reports or fixes you make to the
  30. * email address(es):
  31. * lksctp developers <[email protected]>
  32. *
  33. * Or submit a bug report through the following website:
  34. * http://www.sf.net/projects/lksctp
  35. *
  36. * Written or modified by:
  37. * La Monte H.P. Yarroll <[email protected]>
  38. * R. Stewart <[email protected]>
  39. * K. Morneau <[email protected]>
  40. * Q. Xie <[email protected]>
  41. * Karl Knutson <[email protected]>
  42. * Jon Grimm <[email protected]>
  43. * Daisy Chang <[email protected]>
  44. * Ryan Layer <[email protected]>
  45. * Ardelle Fan <[email protected]>
  46. * Sridhar Samudrala <[email protected]>
  47. * Inaky Perez-Gonzalez <[email protected]>
  48. * Vlad Yasevich <[email protected]>
  49. *
  50. * Any bugs reported given to us we will try to fix... any fixes shared will
  51. * be incorporated into the next SCTP release.
  52. */
  53. #ifndef _UAPI_SCTP_H
  54. #define _UAPI_SCTP_H
  55. #include <linux/types.h>
  56. #include <linux/socket.h>
  57. typedef __s32 sctp_assoc_t;
  58. #define SCTP_FUTURE_ASSOC 0
  59. #define SCTP_CURRENT_ASSOC 1
  60. #define SCTP_ALL_ASSOC 2
  61. /* The following symbols come from the Sockets API Extensions for
  62. * SCTP <draft-ietf-tsvwg-sctpsocket-07.txt>.
  63. */
  64. #define SCTP_RTOINFO 0
  65. #define SCTP_ASSOCINFO 1
  66. #define SCTP_INITMSG 2
  67. #define SCTP_NODELAY 3 /* Get/set nodelay option. */
  68. #define SCTP_AUTOCLOSE 4
  69. #define SCTP_SET_PEER_PRIMARY_ADDR 5
  70. #define SCTP_PRIMARY_ADDR 6
  71. #define SCTP_ADAPTATION_LAYER 7
  72. #define SCTP_DISABLE_FRAGMENTS 8
  73. #define SCTP_PEER_ADDR_PARAMS 9
  74. #define SCTP_DEFAULT_SEND_PARAM 10
  75. #define SCTP_EVENTS 11
  76. #define SCTP_I_WANT_MAPPED_V4_ADDR 12 /* Turn on/off mapped v4 addresses */
  77. #define SCTP_MAXSEG 13 /* Get/set maximum fragment. */
  78. #define SCTP_STATUS 14
  79. #define SCTP_GET_PEER_ADDR_INFO 15
  80. #define SCTP_DELAYED_ACK_TIME 16
  81. #define SCTP_DELAYED_ACK SCTP_DELAYED_ACK_TIME
  82. #define SCTP_DELAYED_SACK SCTP_DELAYED_ACK_TIME
  83. #define SCTP_CONTEXT 17
  84. #define SCTP_FRAGMENT_INTERLEAVE 18
  85. #define SCTP_PARTIAL_DELIVERY_POINT 19 /* Set/Get partial delivery point */
  86. #define SCTP_MAX_BURST 20 /* Set/Get max burst */
  87. #define SCTP_AUTH_CHUNK 21 /* Set only: add a chunk type to authenticate */
  88. #define SCTP_HMAC_IDENT 22
  89. #define SCTP_AUTH_KEY 23
  90. #define SCTP_AUTH_ACTIVE_KEY 24
  91. #define SCTP_AUTH_DELETE_KEY 25
  92. #define SCTP_PEER_AUTH_CHUNKS 26 /* Read only */
  93. #define SCTP_LOCAL_AUTH_CHUNKS 27 /* Read only */
  94. #define SCTP_GET_ASSOC_NUMBER 28 /* Read only */
  95. #define SCTP_GET_ASSOC_ID_LIST 29 /* Read only */
  96. #define SCTP_AUTO_ASCONF 30
  97. #define SCTP_PEER_ADDR_THLDS 31
  98. #define SCTP_RECVRCVINFO 32
  99. #define SCTP_RECVNXTINFO 33
  100. #define SCTP_DEFAULT_SNDINFO 34
  101. #define SCTP_AUTH_DEACTIVATE_KEY 35
  102. #define SCTP_REUSE_PORT 36
  103. #define SCTP_PEER_ADDR_THLDS_V2 37
  104. /* Internal Socket Options. Some of the sctp library functions are
  105. * implemented using these socket options.
  106. */
  107. #define SCTP_SOCKOPT_BINDX_ADD 100 /* BINDX requests for adding addrs */
  108. #define SCTP_SOCKOPT_BINDX_REM 101 /* BINDX requests for removing addrs. */
  109. #define SCTP_SOCKOPT_PEELOFF 102 /* peel off association. */
  110. /* Options 104-106 are deprecated and removed. Do not use this space */
  111. #define SCTP_SOCKOPT_CONNECTX_OLD 107 /* CONNECTX old requests. */
  112. #define SCTP_GET_PEER_ADDRS 108 /* Get all peer address. */
  113. #define SCTP_GET_LOCAL_ADDRS 109 /* Get all local address. */
  114. #define SCTP_SOCKOPT_CONNECTX 110 /* CONNECTX requests. */
  115. #define SCTP_SOCKOPT_CONNECTX3 111 /* CONNECTX requests (updated) */
  116. #define SCTP_GET_ASSOC_STATS 112 /* Read only */
  117. #define SCTP_PR_SUPPORTED 113
  118. #define SCTP_DEFAULT_PRINFO 114
  119. #define SCTP_PR_ASSOC_STATUS 115
  120. #define SCTP_PR_STREAM_STATUS 116
  121. #define SCTP_RECONFIG_SUPPORTED 117
  122. #define SCTP_ENABLE_STREAM_RESET 118
  123. #define SCTP_RESET_STREAMS 119
  124. #define SCTP_RESET_ASSOC 120
  125. #define SCTP_ADD_STREAMS 121
  126. #define SCTP_SOCKOPT_PEELOFF_FLAGS 122
  127. #define SCTP_STREAM_SCHEDULER 123
  128. #define SCTP_STREAM_SCHEDULER_VALUE 124
  129. #define SCTP_INTERLEAVING_SUPPORTED 125
  130. #define SCTP_SENDMSG_CONNECT 126
  131. #define SCTP_EVENT 127
  132. #define SCTP_ASCONF_SUPPORTED 128
  133. #define SCTP_AUTH_SUPPORTED 129
  134. #define SCTP_ECN_SUPPORTED 130
  135. #define SCTP_EXPOSE_POTENTIALLY_FAILED_STATE 131
  136. #define SCTP_EXPOSE_PF_STATE SCTP_EXPOSE_POTENTIALLY_FAILED_STATE
  137. #define SCTP_REMOTE_UDP_ENCAPS_PORT 132
  138. #define SCTP_PLPMTUD_PROBE_INTERVAL 133
  139. /* PR-SCTP policies */
  140. #define SCTP_PR_SCTP_NONE 0x0000
  141. #define SCTP_PR_SCTP_TTL 0x0010
  142. #define SCTP_PR_SCTP_RTX 0x0020
  143. #define SCTP_PR_SCTP_PRIO 0x0030
  144. #define SCTP_PR_SCTP_MAX SCTP_PR_SCTP_PRIO
  145. #define SCTP_PR_SCTP_MASK 0x0030
  146. #define __SCTP_PR_INDEX(x) ((x >> 4) - 1)
  147. #define SCTP_PR_INDEX(x) __SCTP_PR_INDEX(SCTP_PR_SCTP_ ## x)
  148. #define SCTP_PR_POLICY(x) ((x) & SCTP_PR_SCTP_MASK)
  149. #define SCTP_PR_SET_POLICY(flags, x) \
  150. do { \
  151. flags &= ~SCTP_PR_SCTP_MASK; \
  152. flags |= x; \
  153. } while (0)
  154. #define SCTP_PR_TTL_ENABLED(x) (SCTP_PR_POLICY(x) == SCTP_PR_SCTP_TTL)
  155. #define SCTP_PR_RTX_ENABLED(x) (SCTP_PR_POLICY(x) == SCTP_PR_SCTP_RTX)
  156. #define SCTP_PR_PRIO_ENABLED(x) (SCTP_PR_POLICY(x) == SCTP_PR_SCTP_PRIO)
  157. /* For enable stream reset */
  158. #define SCTP_ENABLE_RESET_STREAM_REQ 0x01
  159. #define SCTP_ENABLE_RESET_ASSOC_REQ 0x02
  160. #define SCTP_ENABLE_CHANGE_ASSOC_REQ 0x04
  161. #define SCTP_ENABLE_STRRESET_MASK 0x07
  162. #define SCTP_STREAM_RESET_INCOMING 0x01
  163. #define SCTP_STREAM_RESET_OUTGOING 0x02
  164. /* These are bit fields for msghdr->msg_flags. See section 5.1. */
  165. /* On user space Linux, these live in <bits/socket.h> as an enum. */
  166. enum sctp_msg_flags {
  167. MSG_NOTIFICATION = 0x8000,
  168. #define MSG_NOTIFICATION MSG_NOTIFICATION
  169. };
  170. /* 5.3.1 SCTP Initiation Structure (SCTP_INIT)
  171. *
  172. * This cmsghdr structure provides information for initializing new
  173. * SCTP associations with sendmsg(). The SCTP_INITMSG socket option
  174. * uses this same data structure. This structure is not used for
  175. * recvmsg().
  176. *
  177. * cmsg_level cmsg_type cmsg_data[]
  178. * ------------ ------------ ----------------------
  179. * IPPROTO_SCTP SCTP_INIT struct sctp_initmsg
  180. */
  181. struct sctp_initmsg {
  182. __u16 sinit_num_ostreams;
  183. __u16 sinit_max_instreams;
  184. __u16 sinit_max_attempts;
  185. __u16 sinit_max_init_timeo;
  186. };
  187. /* 5.3.2 SCTP Header Information Structure (SCTP_SNDRCV)
  188. *
  189. * This cmsghdr structure specifies SCTP options for sendmsg() and
  190. * describes SCTP header information about a received message through
  191. * recvmsg().
  192. *
  193. * cmsg_level cmsg_type cmsg_data[]
  194. * ------------ ------------ ----------------------
  195. * IPPROTO_SCTP SCTP_SNDRCV struct sctp_sndrcvinfo
  196. */
  197. struct sctp_sndrcvinfo {
  198. __u16 sinfo_stream;
  199. __u16 sinfo_ssn;
  200. __u16 sinfo_flags;
  201. __u32 sinfo_ppid;
  202. __u32 sinfo_context;
  203. __u32 sinfo_timetolive;
  204. __u32 sinfo_tsn;
  205. __u32 sinfo_cumtsn;
  206. sctp_assoc_t sinfo_assoc_id;
  207. };
  208. /* 5.3.4 SCTP Send Information Structure (SCTP_SNDINFO)
  209. *
  210. * This cmsghdr structure specifies SCTP options for sendmsg().
  211. *
  212. * cmsg_level cmsg_type cmsg_data[]
  213. * ------------ ------------ -------------------
  214. * IPPROTO_SCTP SCTP_SNDINFO struct sctp_sndinfo
  215. */
  216. struct sctp_sndinfo {
  217. __u16 snd_sid;
  218. __u16 snd_flags;
  219. __u32 snd_ppid;
  220. __u32 snd_context;
  221. sctp_assoc_t snd_assoc_id;
  222. };
  223. /* 5.3.5 SCTP Receive Information Structure (SCTP_RCVINFO)
  224. *
  225. * This cmsghdr structure describes SCTP receive information
  226. * about a received message through recvmsg().
  227. *
  228. * cmsg_level cmsg_type cmsg_data[]
  229. * ------------ ------------ -------------------
  230. * IPPROTO_SCTP SCTP_RCVINFO struct sctp_rcvinfo
  231. */
  232. struct sctp_rcvinfo {
  233. __u16 rcv_sid;
  234. __u16 rcv_ssn;
  235. __u16 rcv_flags;
  236. __u32 rcv_ppid;
  237. __u32 rcv_tsn;
  238. __u32 rcv_cumtsn;
  239. __u32 rcv_context;
  240. sctp_assoc_t rcv_assoc_id;
  241. };
  242. /* 5.3.6 SCTP Next Receive Information Structure (SCTP_NXTINFO)
  243. *
  244. * This cmsghdr structure describes SCTP receive information
  245. * of the next message that will be delivered through recvmsg()
  246. * if this information is already available when delivering
  247. * the current message.
  248. *
  249. * cmsg_level cmsg_type cmsg_data[]
  250. * ------------ ------------ -------------------
  251. * IPPROTO_SCTP SCTP_NXTINFO struct sctp_nxtinfo
  252. */
  253. struct sctp_nxtinfo {
  254. __u16 nxt_sid;
  255. __u16 nxt_flags;
  256. __u32 nxt_ppid;
  257. __u32 nxt_length;
  258. sctp_assoc_t nxt_assoc_id;
  259. };
  260. /* 5.3.7 SCTP PR-SCTP Information Structure (SCTP_PRINFO)
  261. *
  262. * This cmsghdr structure specifies SCTP options for sendmsg().
  263. *
  264. * cmsg_level cmsg_type cmsg_data[]
  265. * ------------ ------------ -------------------
  266. * IPPROTO_SCTP SCTP_PRINFO struct sctp_prinfo
  267. */
  268. struct sctp_prinfo {
  269. __u16 pr_policy;
  270. __u32 pr_value;
  271. };
  272. /* 5.3.8 SCTP AUTH Information Structure (SCTP_AUTHINFO)
  273. *
  274. * This cmsghdr structure specifies SCTP options for sendmsg().
  275. *
  276. * cmsg_level cmsg_type cmsg_data[]
  277. * ------------ ------------ -------------------
  278. * IPPROTO_SCTP SCTP_AUTHINFO struct sctp_authinfo
  279. */
  280. struct sctp_authinfo {
  281. __u16 auth_keynumber;
  282. };
  283. /*
  284. * sinfo_flags: 16 bits (unsigned integer)
  285. *
  286. * This field may contain any of the following flags and is composed of
  287. * a bitwise OR of these values.
  288. */
  289. enum sctp_sinfo_flags {
  290. SCTP_UNORDERED = (1 << 0), /* Send/receive message unordered. */
  291. SCTP_ADDR_OVER = (1 << 1), /* Override the primary destination. */
  292. SCTP_ABORT = (1 << 2), /* Send an ABORT message to the peer. */
  293. SCTP_SACK_IMMEDIATELY = (1 << 3), /* SACK should be sent without delay. */
  294. /* 2 bits here have been used by SCTP_PR_SCTP_MASK */
  295. SCTP_SENDALL = (1 << 6),
  296. SCTP_PR_SCTP_ALL = (1 << 7),
  297. SCTP_NOTIFICATION = MSG_NOTIFICATION, /* Next message is not user msg but notification. */
  298. SCTP_EOF = MSG_FIN, /* Initiate graceful shutdown process. */
  299. };
  300. typedef union {
  301. __u8 raw;
  302. struct sctp_initmsg init;
  303. struct sctp_sndrcvinfo sndrcv;
  304. } sctp_cmsg_data_t;
  305. /* These are cmsg_types. */
  306. typedef enum sctp_cmsg_type {
  307. SCTP_INIT, /* 5.2.1 SCTP Initiation Structure */
  308. #define SCTP_INIT SCTP_INIT
  309. SCTP_SNDRCV, /* 5.2.2 SCTP Header Information Structure */
  310. #define SCTP_SNDRCV SCTP_SNDRCV
  311. SCTP_SNDINFO, /* 5.3.4 SCTP Send Information Structure */
  312. #define SCTP_SNDINFO SCTP_SNDINFO
  313. SCTP_RCVINFO, /* 5.3.5 SCTP Receive Information Structure */
  314. #define SCTP_RCVINFO SCTP_RCVINFO
  315. SCTP_NXTINFO, /* 5.3.6 SCTP Next Receive Information Structure */
  316. #define SCTP_NXTINFO SCTP_NXTINFO
  317. SCTP_PRINFO, /* 5.3.7 SCTP PR-SCTP Information Structure */
  318. #define SCTP_PRINFO SCTP_PRINFO
  319. SCTP_AUTHINFO, /* 5.3.8 SCTP AUTH Information Structure */
  320. #define SCTP_AUTHINFO SCTP_AUTHINFO
  321. SCTP_DSTADDRV4, /* 5.3.9 SCTP Destination IPv4 Address Structure */
  322. #define SCTP_DSTADDRV4 SCTP_DSTADDRV4
  323. SCTP_DSTADDRV6, /* 5.3.10 SCTP Destination IPv6 Address Structure */
  324. #define SCTP_DSTADDRV6 SCTP_DSTADDRV6
  325. } sctp_cmsg_t;
  326. /*
  327. * 5.3.1.1 SCTP_ASSOC_CHANGE
  328. *
  329. * Communication notifications inform the ULP that an SCTP association
  330. * has either begun or ended. The identifier for a new association is
  331. * provided by this notificaion. The notification information has the
  332. * following format:
  333. *
  334. */
  335. struct sctp_assoc_change {
  336. __u16 sac_type;
  337. __u16 sac_flags;
  338. __u32 sac_length;
  339. __u16 sac_state;
  340. __u16 sac_error;
  341. __u16 sac_outbound_streams;
  342. __u16 sac_inbound_streams;
  343. sctp_assoc_t sac_assoc_id;
  344. __u8 sac_info[];
  345. };
  346. /*
  347. * sac_state: 32 bits (signed integer)
  348. *
  349. * This field holds one of a number of values that communicate the
  350. * event that happened to the association. They include:
  351. *
  352. * Note: The following state names deviate from the API draft as
  353. * the names clash too easily with other kernel symbols.
  354. */
  355. enum sctp_sac_state {
  356. SCTP_COMM_UP,
  357. SCTP_COMM_LOST,
  358. SCTP_RESTART,
  359. SCTP_SHUTDOWN_COMP,
  360. SCTP_CANT_STR_ASSOC,
  361. };
  362. /*
  363. * 5.3.1.2 SCTP_PEER_ADDR_CHANGE
  364. *
  365. * When a destination address on a multi-homed peer encounters a change
  366. * an interface details event is sent. The information has the
  367. * following structure:
  368. */
  369. struct sctp_paddr_change {
  370. __u16 spc_type;
  371. __u16 spc_flags;
  372. __u32 spc_length;
  373. struct sockaddr_storage spc_aaddr;
  374. int spc_state;
  375. int spc_error;
  376. sctp_assoc_t spc_assoc_id;
  377. } __attribute__((packed, aligned(4)));
  378. /*
  379. * spc_state: 32 bits (signed integer)
  380. *
  381. * This field holds one of a number of values that communicate the
  382. * event that happened to the address. They include:
  383. */
  384. enum sctp_spc_state {
  385. SCTP_ADDR_AVAILABLE,
  386. SCTP_ADDR_UNREACHABLE,
  387. SCTP_ADDR_REMOVED,
  388. SCTP_ADDR_ADDED,
  389. SCTP_ADDR_MADE_PRIM,
  390. SCTP_ADDR_CONFIRMED,
  391. SCTP_ADDR_POTENTIALLY_FAILED,
  392. #define SCTP_ADDR_PF SCTP_ADDR_POTENTIALLY_FAILED
  393. };
  394. /*
  395. * 5.3.1.3 SCTP_REMOTE_ERROR
  396. *
  397. * A remote peer may send an Operational Error message to its peer.
  398. * This message indicates a variety of error conditions on an
  399. * association. The entire error TLV as it appears on the wire is
  400. * included in a SCTP_REMOTE_ERROR event. Please refer to the SCTP
  401. * specification [SCTP] and any extensions for a list of possible
  402. * error formats. SCTP error TLVs have the format:
  403. */
  404. struct sctp_remote_error {
  405. __u16 sre_type;
  406. __u16 sre_flags;
  407. __u32 sre_length;
  408. __be16 sre_error;
  409. sctp_assoc_t sre_assoc_id;
  410. __u8 sre_data[];
  411. };
  412. /*
  413. * 5.3.1.4 SCTP_SEND_FAILED
  414. *
  415. * If SCTP cannot deliver a message it may return the message as a
  416. * notification.
  417. */
  418. struct sctp_send_failed {
  419. __u16 ssf_type;
  420. __u16 ssf_flags;
  421. __u32 ssf_length;
  422. __u32 ssf_error;
  423. struct sctp_sndrcvinfo ssf_info;
  424. sctp_assoc_t ssf_assoc_id;
  425. __u8 ssf_data[];
  426. };
  427. struct sctp_send_failed_event {
  428. __u16 ssf_type;
  429. __u16 ssf_flags;
  430. __u32 ssf_length;
  431. __u32 ssf_error;
  432. struct sctp_sndinfo ssfe_info;
  433. sctp_assoc_t ssf_assoc_id;
  434. __u8 ssf_data[];
  435. };
  436. /*
  437. * ssf_flags: 16 bits (unsigned integer)
  438. *
  439. * The flag value will take one of the following values
  440. *
  441. * SCTP_DATA_UNSENT - Indicates that the data was never put on
  442. * the wire.
  443. *
  444. * SCTP_DATA_SENT - Indicates that the data was put on the wire.
  445. * Note that this does not necessarily mean that the
  446. * data was (or was not) successfully delivered.
  447. */
  448. enum sctp_ssf_flags {
  449. SCTP_DATA_UNSENT,
  450. SCTP_DATA_SENT,
  451. };
  452. /*
  453. * 5.3.1.5 SCTP_SHUTDOWN_EVENT
  454. *
  455. * When a peer sends a SHUTDOWN, SCTP delivers this notification to
  456. * inform the application that it should cease sending data.
  457. */
  458. struct sctp_shutdown_event {
  459. __u16 sse_type;
  460. __u16 sse_flags;
  461. __u32 sse_length;
  462. sctp_assoc_t sse_assoc_id;
  463. };
  464. /*
  465. * 5.3.1.6 SCTP_ADAPTATION_INDICATION
  466. *
  467. * When a peer sends a Adaptation Layer Indication parameter , SCTP
  468. * delivers this notification to inform the application
  469. * that of the peers requested adaptation layer.
  470. */
  471. struct sctp_adaptation_event {
  472. __u16 sai_type;
  473. __u16 sai_flags;
  474. __u32 sai_length;
  475. __u32 sai_adaptation_ind;
  476. sctp_assoc_t sai_assoc_id;
  477. };
  478. /*
  479. * 5.3.1.7 SCTP_PARTIAL_DELIVERY_EVENT
  480. *
  481. * When a receiver is engaged in a partial delivery of a
  482. * message this notification will be used to indicate
  483. * various events.
  484. */
  485. struct sctp_pdapi_event {
  486. __u16 pdapi_type;
  487. __u16 pdapi_flags;
  488. __u32 pdapi_length;
  489. __u32 pdapi_indication;
  490. sctp_assoc_t pdapi_assoc_id;
  491. __u32 pdapi_stream;
  492. __u32 pdapi_seq;
  493. };
  494. enum { SCTP_PARTIAL_DELIVERY_ABORTED=0, };
  495. /*
  496. * 5.3.1.8. SCTP_AUTHENTICATION_EVENT
  497. *
  498. * When a receiver is using authentication this message will provide
  499. * notifications regarding new keys being made active as well as errors.
  500. */
  501. struct sctp_authkey_event {
  502. __u16 auth_type;
  503. __u16 auth_flags;
  504. __u32 auth_length;
  505. __u16 auth_keynumber;
  506. __u16 auth_altkeynumber;
  507. __u32 auth_indication;
  508. sctp_assoc_t auth_assoc_id;
  509. };
  510. enum {
  511. SCTP_AUTH_NEW_KEY,
  512. #define SCTP_AUTH_NEWKEY SCTP_AUTH_NEW_KEY /* compatible with before */
  513. SCTP_AUTH_FREE_KEY,
  514. SCTP_AUTH_NO_AUTH,
  515. };
  516. /*
  517. * 6.1.9. SCTP_SENDER_DRY_EVENT
  518. *
  519. * When the SCTP stack has no more user data to send or retransmit, this
  520. * notification is given to the user. Also, at the time when a user app
  521. * subscribes to this event, if there is no data to be sent or
  522. * retransmit, the stack will immediately send up this notification.
  523. */
  524. struct sctp_sender_dry_event {
  525. __u16 sender_dry_type;
  526. __u16 sender_dry_flags;
  527. __u32 sender_dry_length;
  528. sctp_assoc_t sender_dry_assoc_id;
  529. };
  530. #define SCTP_STREAM_RESET_INCOMING_SSN 0x0001
  531. #define SCTP_STREAM_RESET_OUTGOING_SSN 0x0002
  532. #define SCTP_STREAM_RESET_DENIED 0x0004
  533. #define SCTP_STREAM_RESET_FAILED 0x0008
  534. struct sctp_stream_reset_event {
  535. __u16 strreset_type;
  536. __u16 strreset_flags;
  537. __u32 strreset_length;
  538. sctp_assoc_t strreset_assoc_id;
  539. __u16 strreset_stream_list[];
  540. };
  541. #define SCTP_ASSOC_RESET_DENIED 0x0004
  542. #define SCTP_ASSOC_RESET_FAILED 0x0008
  543. struct sctp_assoc_reset_event {
  544. __u16 assocreset_type;
  545. __u16 assocreset_flags;
  546. __u32 assocreset_length;
  547. sctp_assoc_t assocreset_assoc_id;
  548. __u32 assocreset_local_tsn;
  549. __u32 assocreset_remote_tsn;
  550. };
  551. #define SCTP_ASSOC_CHANGE_DENIED 0x0004
  552. #define SCTP_ASSOC_CHANGE_FAILED 0x0008
  553. #define SCTP_STREAM_CHANGE_DENIED SCTP_ASSOC_CHANGE_DENIED
  554. #define SCTP_STREAM_CHANGE_FAILED SCTP_ASSOC_CHANGE_FAILED
  555. struct sctp_stream_change_event {
  556. __u16 strchange_type;
  557. __u16 strchange_flags;
  558. __u32 strchange_length;
  559. sctp_assoc_t strchange_assoc_id;
  560. __u16 strchange_instrms;
  561. __u16 strchange_outstrms;
  562. };
  563. /*
  564. * Described in Section 7.3
  565. * Ancillary Data and Notification Interest Options
  566. */
  567. struct sctp_event_subscribe {
  568. __u8 sctp_data_io_event;
  569. __u8 sctp_association_event;
  570. __u8 sctp_address_event;
  571. __u8 sctp_send_failure_event;
  572. __u8 sctp_peer_error_event;
  573. __u8 sctp_shutdown_event;
  574. __u8 sctp_partial_delivery_event;
  575. __u8 sctp_adaptation_layer_event;
  576. __u8 sctp_authentication_event;
  577. __u8 sctp_sender_dry_event;
  578. __u8 sctp_stream_reset_event;
  579. __u8 sctp_assoc_reset_event;
  580. __u8 sctp_stream_change_event;
  581. __u8 sctp_send_failure_event_event;
  582. };
  583. /*
  584. * 5.3.1 SCTP Notification Structure
  585. *
  586. * The notification structure is defined as the union of all
  587. * notification types.
  588. *
  589. */
  590. union sctp_notification {
  591. struct {
  592. __u16 sn_type; /* Notification type. */
  593. __u16 sn_flags;
  594. __u32 sn_length;
  595. } sn_header;
  596. struct sctp_assoc_change sn_assoc_change;
  597. struct sctp_paddr_change sn_paddr_change;
  598. struct sctp_remote_error sn_remote_error;
  599. struct sctp_send_failed sn_send_failed;
  600. struct sctp_shutdown_event sn_shutdown_event;
  601. struct sctp_adaptation_event sn_adaptation_event;
  602. struct sctp_pdapi_event sn_pdapi_event;
  603. struct sctp_authkey_event sn_authkey_event;
  604. struct sctp_sender_dry_event sn_sender_dry_event;
  605. struct sctp_stream_reset_event sn_strreset_event;
  606. struct sctp_assoc_reset_event sn_assocreset_event;
  607. struct sctp_stream_change_event sn_strchange_event;
  608. struct sctp_send_failed_event sn_send_failed_event;
  609. };
  610. /* Section 5.3.1
  611. * All standard values for sn_type flags are greater than 2^15.
  612. * Values from 2^15 and down are reserved.
  613. */
  614. enum sctp_sn_type {
  615. SCTP_SN_TYPE_BASE = (1<<15),
  616. SCTP_DATA_IO_EVENT = SCTP_SN_TYPE_BASE,
  617. #define SCTP_DATA_IO_EVENT SCTP_DATA_IO_EVENT
  618. SCTP_ASSOC_CHANGE,
  619. #define SCTP_ASSOC_CHANGE SCTP_ASSOC_CHANGE
  620. SCTP_PEER_ADDR_CHANGE,
  621. #define SCTP_PEER_ADDR_CHANGE SCTP_PEER_ADDR_CHANGE
  622. SCTP_SEND_FAILED,
  623. #define SCTP_SEND_FAILED SCTP_SEND_FAILED
  624. SCTP_REMOTE_ERROR,
  625. #define SCTP_REMOTE_ERROR SCTP_REMOTE_ERROR
  626. SCTP_SHUTDOWN_EVENT,
  627. #define SCTP_SHUTDOWN_EVENT SCTP_SHUTDOWN_EVENT
  628. SCTP_PARTIAL_DELIVERY_EVENT,
  629. #define SCTP_PARTIAL_DELIVERY_EVENT SCTP_PARTIAL_DELIVERY_EVENT
  630. SCTP_ADAPTATION_INDICATION,
  631. #define SCTP_ADAPTATION_INDICATION SCTP_ADAPTATION_INDICATION
  632. SCTP_AUTHENTICATION_EVENT,
  633. #define SCTP_AUTHENTICATION_INDICATION SCTP_AUTHENTICATION_EVENT
  634. SCTP_SENDER_DRY_EVENT,
  635. #define SCTP_SENDER_DRY_EVENT SCTP_SENDER_DRY_EVENT
  636. SCTP_STREAM_RESET_EVENT,
  637. #define SCTP_STREAM_RESET_EVENT SCTP_STREAM_RESET_EVENT
  638. SCTP_ASSOC_RESET_EVENT,
  639. #define SCTP_ASSOC_RESET_EVENT SCTP_ASSOC_RESET_EVENT
  640. SCTP_STREAM_CHANGE_EVENT,
  641. #define SCTP_STREAM_CHANGE_EVENT SCTP_STREAM_CHANGE_EVENT
  642. SCTP_SEND_FAILED_EVENT,
  643. #define SCTP_SEND_FAILED_EVENT SCTP_SEND_FAILED_EVENT
  644. SCTP_SN_TYPE_MAX = SCTP_SEND_FAILED_EVENT,
  645. #define SCTP_SN_TYPE_MAX SCTP_SN_TYPE_MAX
  646. };
  647. /* Notification error codes used to fill up the error fields in some
  648. * notifications.
  649. * SCTP_PEER_ADDRESS_CHAGE : spc_error
  650. * SCTP_ASSOC_CHANGE : sac_error
  651. * These names should be potentially included in the draft 04 of the SCTP
  652. * sockets API specification.
  653. */
  654. typedef enum sctp_sn_error {
  655. SCTP_FAILED_THRESHOLD,
  656. SCTP_RECEIVED_SACK,
  657. SCTP_HEARTBEAT_SUCCESS,
  658. SCTP_RESPONSE_TO_USER_REQ,
  659. SCTP_INTERNAL_ERROR,
  660. SCTP_SHUTDOWN_GUARD_EXPIRES,
  661. SCTP_PEER_FAULTY,
  662. } sctp_sn_error_t;
  663. /*
  664. * 7.1.1 Retransmission Timeout Parameters (SCTP_RTOINFO)
  665. *
  666. * The protocol parameters used to initialize and bound retransmission
  667. * timeout (RTO) are tunable. See [SCTP] for more information on how
  668. * these parameters are used in RTO calculation.
  669. */
  670. struct sctp_rtoinfo {
  671. sctp_assoc_t srto_assoc_id;
  672. __u32 srto_initial;
  673. __u32 srto_max;
  674. __u32 srto_min;
  675. };
  676. /*
  677. * 7.1.2 Association Parameters (SCTP_ASSOCINFO)
  678. *
  679. * This option is used to both examine and set various association and
  680. * endpoint parameters.
  681. */
  682. struct sctp_assocparams {
  683. sctp_assoc_t sasoc_assoc_id;
  684. __u16 sasoc_asocmaxrxt;
  685. __u16 sasoc_number_peer_destinations;
  686. __u32 sasoc_peer_rwnd;
  687. __u32 sasoc_local_rwnd;
  688. __u32 sasoc_cookie_life;
  689. };
  690. /*
  691. * 7.1.9 Set Peer Primary Address (SCTP_SET_PEER_PRIMARY_ADDR)
  692. *
  693. * Requests that the peer mark the enclosed address as the association
  694. * primary. The enclosed address must be one of the association's
  695. * locally bound addresses. The following structure is used to make a
  696. * set primary request:
  697. */
  698. struct sctp_setpeerprim {
  699. sctp_assoc_t sspp_assoc_id;
  700. struct sockaddr_storage sspp_addr;
  701. } __attribute__((packed, aligned(4)));
  702. /*
  703. * 7.1.10 Set Primary Address (SCTP_PRIMARY_ADDR)
  704. *
  705. * Requests that the local SCTP stack use the enclosed peer address as
  706. * the association primary. The enclosed address must be one of the
  707. * association peer's addresses. The following structure is used to
  708. * make a set peer primary request:
  709. */
  710. struct sctp_prim {
  711. sctp_assoc_t ssp_assoc_id;
  712. struct sockaddr_storage ssp_addr;
  713. } __attribute__((packed, aligned(4)));
  714. /* For backward compatibility use, define the old name too */
  715. #define sctp_setprim sctp_prim
  716. /*
  717. * 7.1.11 Set Adaptation Layer Indicator (SCTP_ADAPTATION_LAYER)
  718. *
  719. * Requests that the local endpoint set the specified Adaptation Layer
  720. * Indication parameter for all future INIT and INIT-ACK exchanges.
  721. */
  722. struct sctp_setadaptation {
  723. __u32 ssb_adaptation_ind;
  724. };
  725. /*
  726. * 7.1.13 Peer Address Parameters (SCTP_PEER_ADDR_PARAMS)
  727. *
  728. * Applications can enable or disable heartbeats for any peer address
  729. * of an association, modify an address's heartbeat interval, force a
  730. * heartbeat to be sent immediately, and adjust the address's maximum
  731. * number of retransmissions sent before an address is considered
  732. * unreachable. The following structure is used to access and modify an
  733. * address's parameters:
  734. */
  735. enum sctp_spp_flags {
  736. SPP_HB_ENABLE = 1<<0, /*Enable heartbeats*/
  737. SPP_HB_DISABLE = 1<<1, /*Disable heartbeats*/
  738. SPP_HB = SPP_HB_ENABLE | SPP_HB_DISABLE,
  739. SPP_HB_DEMAND = 1<<2, /*Send heartbeat immediately*/
  740. SPP_PMTUD_ENABLE = 1<<3, /*Enable PMTU discovery*/
  741. SPP_PMTUD_DISABLE = 1<<4, /*Disable PMTU discovery*/
  742. SPP_PMTUD = SPP_PMTUD_ENABLE | SPP_PMTUD_DISABLE,
  743. SPP_SACKDELAY_ENABLE = 1<<5, /*Enable SACK*/
  744. SPP_SACKDELAY_DISABLE = 1<<6, /*Disable SACK*/
  745. SPP_SACKDELAY = SPP_SACKDELAY_ENABLE | SPP_SACKDELAY_DISABLE,
  746. SPP_HB_TIME_IS_ZERO = 1<<7, /* Set HB delay to 0 */
  747. SPP_IPV6_FLOWLABEL = 1<<8,
  748. SPP_DSCP = 1<<9,
  749. };
  750. struct sctp_paddrparams {
  751. sctp_assoc_t spp_assoc_id;
  752. struct sockaddr_storage spp_address;
  753. __u32 spp_hbinterval;
  754. __u16 spp_pathmaxrxt;
  755. __u32 spp_pathmtu;
  756. __u32 spp_sackdelay;
  757. __u32 spp_flags;
  758. __u32 spp_ipv6_flowlabel;
  759. __u8 spp_dscp;
  760. } __attribute__((packed, aligned(4)));
  761. /*
  762. * 7.1.18. Add a chunk that must be authenticated (SCTP_AUTH_CHUNK)
  763. *
  764. * This set option adds a chunk type that the user is requesting to be
  765. * received only in an authenticated way. Changes to the list of chunks
  766. * will only effect future associations on the socket.
  767. */
  768. struct sctp_authchunk {
  769. __u8 sauth_chunk;
  770. };
  771. /*
  772. * 7.1.19. Get or set the list of supported HMAC Identifiers (SCTP_HMAC_IDENT)
  773. *
  774. * This option gets or sets the list of HMAC algorithms that the local
  775. * endpoint requires the peer to use.
  776. */
  777. #ifndef __KERNEL__
  778. /* This here is only used by user space as is. It might not be a good idea
  779. * to export/reveal the whole structure with reserved fields etc.
  780. */
  781. enum {
  782. SCTP_AUTH_HMAC_ID_SHA1 = 1,
  783. SCTP_AUTH_HMAC_ID_SHA256 = 3,
  784. };
  785. #endif
  786. struct sctp_hmacalgo {
  787. __u32 shmac_num_idents;
  788. __u16 shmac_idents[];
  789. };
  790. /* Sadly, user and kernel space have different names for
  791. * this structure member, so this is to not break anything.
  792. */
  793. #define shmac_number_of_idents shmac_num_idents
  794. /*
  795. * 7.1.20. Set a shared key (SCTP_AUTH_KEY)
  796. *
  797. * This option will set a shared secret key which is used to build an
  798. * association shared key.
  799. */
  800. struct sctp_authkey {
  801. sctp_assoc_t sca_assoc_id;
  802. __u16 sca_keynumber;
  803. __u16 sca_keylength;
  804. __u8 sca_key[];
  805. };
  806. /*
  807. * 7.1.21. Get or set the active shared key (SCTP_AUTH_ACTIVE_KEY)
  808. *
  809. * This option will get or set the active shared key to be used to build
  810. * the association shared key.
  811. */
  812. struct sctp_authkeyid {
  813. sctp_assoc_t scact_assoc_id;
  814. __u16 scact_keynumber;
  815. };
  816. /*
  817. * 7.1.23. Get or set delayed ack timer (SCTP_DELAYED_SACK)
  818. *
  819. * This option will effect the way delayed acks are performed. This
  820. * option allows you to get or set the delayed ack time, in
  821. * milliseconds. It also allows changing the delayed ack frequency.
  822. * Changing the frequency to 1 disables the delayed sack algorithm. If
  823. * the assoc_id is 0, then this sets or gets the endpoints default
  824. * values. If the assoc_id field is non-zero, then the set or get
  825. * effects the specified association for the one to many model (the
  826. * assoc_id field is ignored by the one to one model). Note that if
  827. * sack_delay or sack_freq are 0 when setting this option, then the
  828. * current values will remain unchanged.
  829. */
  830. struct sctp_sack_info {
  831. sctp_assoc_t sack_assoc_id;
  832. uint32_t sack_delay;
  833. uint32_t sack_freq;
  834. };
  835. struct sctp_assoc_value {
  836. sctp_assoc_t assoc_id;
  837. uint32_t assoc_value;
  838. };
  839. struct sctp_stream_value {
  840. sctp_assoc_t assoc_id;
  841. uint16_t stream_id;
  842. uint16_t stream_value;
  843. };
  844. /*
  845. * 7.2.2 Peer Address Information
  846. *
  847. * Applications can retrieve information about a specific peer address
  848. * of an association, including its reachability state, congestion
  849. * window, and retransmission timer values. This information is
  850. * read-only. The following structure is used to access this
  851. * information:
  852. */
  853. struct sctp_paddrinfo {
  854. sctp_assoc_t spinfo_assoc_id;
  855. struct sockaddr_storage spinfo_address;
  856. __s32 spinfo_state;
  857. __u32 spinfo_cwnd;
  858. __u32 spinfo_srtt;
  859. __u32 spinfo_rto;
  860. __u32 spinfo_mtu;
  861. } __attribute__((packed, aligned(4)));
  862. /* Peer addresses's state. */
  863. /* UNKNOWN: Peer address passed by the upper layer in sendmsg or connect[x]
  864. * calls.
  865. * UNCONFIRMED: Peer address received in INIT/INIT-ACK address parameters.
  866. * Not yet confirmed by a heartbeat and not available for data
  867. * transfers.
  868. * ACTIVE : Peer address confirmed, active and available for data transfers.
  869. * INACTIVE: Peer address inactive and not available for data transfers.
  870. */
  871. enum sctp_spinfo_state {
  872. SCTP_INACTIVE,
  873. SCTP_PF,
  874. #define SCTP_POTENTIALLY_FAILED SCTP_PF
  875. SCTP_ACTIVE,
  876. SCTP_UNCONFIRMED,
  877. SCTP_UNKNOWN = 0xffff /* Value used for transport state unknown */
  878. };
  879. /*
  880. * 7.2.1 Association Status (SCTP_STATUS)
  881. *
  882. * Applications can retrieve current status information about an
  883. * association, including association state, peer receiver window size,
  884. * number of unacked data chunks, and number of data chunks pending
  885. * receipt. This information is read-only. The following structure is
  886. * used to access this information:
  887. */
  888. struct sctp_status {
  889. sctp_assoc_t sstat_assoc_id;
  890. __s32 sstat_state;
  891. __u32 sstat_rwnd;
  892. __u16 sstat_unackdata;
  893. __u16 sstat_penddata;
  894. __u16 sstat_instrms;
  895. __u16 sstat_outstrms;
  896. __u32 sstat_fragmentation_point;
  897. struct sctp_paddrinfo sstat_primary;
  898. };
  899. /*
  900. * 7.2.3. Get the list of chunks the peer requires to be authenticated
  901. * (SCTP_PEER_AUTH_CHUNKS)
  902. *
  903. * This option gets a list of chunks for a specified association that
  904. * the peer requires to be received authenticated only.
  905. */
  906. struct sctp_authchunks {
  907. sctp_assoc_t gauth_assoc_id;
  908. __u32 gauth_number_of_chunks;
  909. uint8_t gauth_chunks[];
  910. };
  911. /* The broken spelling has been released already in lksctp-tools header,
  912. * so don't break anyone, now that it's fixed.
  913. */
  914. #define guth_number_of_chunks gauth_number_of_chunks
  915. /* Association states. */
  916. enum sctp_sstat_state {
  917. SCTP_EMPTY = 0,
  918. SCTP_CLOSED = 1,
  919. SCTP_COOKIE_WAIT = 2,
  920. SCTP_COOKIE_ECHOED = 3,
  921. SCTP_ESTABLISHED = 4,
  922. SCTP_SHUTDOWN_PENDING = 5,
  923. SCTP_SHUTDOWN_SENT = 6,
  924. SCTP_SHUTDOWN_RECEIVED = 7,
  925. SCTP_SHUTDOWN_ACK_SENT = 8,
  926. };
  927. /*
  928. * 8.2.6. Get the Current Identifiers of Associations
  929. * (SCTP_GET_ASSOC_ID_LIST)
  930. *
  931. * This option gets the current list of SCTP association identifiers of
  932. * the SCTP associations handled by a one-to-many style socket.
  933. */
  934. struct sctp_assoc_ids {
  935. __u32 gaids_number_of_ids;
  936. sctp_assoc_t gaids_assoc_id[];
  937. };
  938. /*
  939. * 8.3, 8.5 get all peer/local addresses in an association.
  940. * This parameter struct is used by SCTP_GET_PEER_ADDRS and
  941. * SCTP_GET_LOCAL_ADDRS socket options used internally to implement
  942. * sctp_getpaddrs() and sctp_getladdrs() API.
  943. */
  944. struct sctp_getaddrs_old {
  945. sctp_assoc_t assoc_id;
  946. int addr_num;
  947. #ifdef __KERNEL__
  948. struct sockaddr __user *addrs;
  949. #else
  950. struct sockaddr *addrs;
  951. #endif
  952. };
  953. struct sctp_getaddrs {
  954. sctp_assoc_t assoc_id; /*input*/
  955. __u32 addr_num; /*output*/
  956. __u8 addrs[]; /*output, variable size*/
  957. };
  958. /* A socket user request obtained via SCTP_GET_ASSOC_STATS that retrieves
  959. * association stats. All stats are counts except sas_maxrto and
  960. * sas_obs_rto_ipaddr. maxrto is the max observed rto + transport since
  961. * the last call. Will return 0 when RTO was not update since last call
  962. */
  963. struct sctp_assoc_stats {
  964. sctp_assoc_t sas_assoc_id; /* Input */
  965. /* Transport of observed max RTO */
  966. struct sockaddr_storage sas_obs_rto_ipaddr;
  967. __u64 sas_maxrto; /* Maximum Observed RTO for period */
  968. __u64 sas_isacks; /* SACKs received */
  969. __u64 sas_osacks; /* SACKs sent */
  970. __u64 sas_opackets; /* Packets sent */
  971. __u64 sas_ipackets; /* Packets received */
  972. __u64 sas_rtxchunks; /* Retransmitted Chunks */
  973. __u64 sas_outofseqtsns;/* TSN received > next expected */
  974. __u64 sas_idupchunks; /* Dups received (ordered+unordered) */
  975. __u64 sas_gapcnt; /* Gap Acknowledgements Received */
  976. __u64 sas_ouodchunks; /* Unordered data chunks sent */
  977. __u64 sas_iuodchunks; /* Unordered data chunks received */
  978. __u64 sas_oodchunks; /* Ordered data chunks sent */
  979. __u64 sas_iodchunks; /* Ordered data chunks received */
  980. __u64 sas_octrlchunks; /* Control chunks sent */
  981. __u64 sas_ictrlchunks; /* Control chunks received */
  982. };
  983. /*
  984. * 8.1 sctp_bindx()
  985. *
  986. * The flags parameter is formed from the bitwise OR of zero or more of the
  987. * following currently defined flags:
  988. */
  989. #define SCTP_BINDX_ADD_ADDR 0x01
  990. #define SCTP_BINDX_REM_ADDR 0x02
  991. /* This is the structure that is passed as an argument(optval) to
  992. * getsockopt(SCTP_SOCKOPT_PEELOFF).
  993. */
  994. typedef struct {
  995. sctp_assoc_t associd;
  996. int sd;
  997. } sctp_peeloff_arg_t;
  998. typedef struct {
  999. sctp_peeloff_arg_t p_arg;
  1000. unsigned flags;
  1001. } sctp_peeloff_flags_arg_t;
  1002. /*
  1003. * Peer Address Thresholds socket option
  1004. */
  1005. struct sctp_paddrthlds {
  1006. sctp_assoc_t spt_assoc_id;
  1007. struct sockaddr_storage spt_address;
  1008. __u16 spt_pathmaxrxt;
  1009. __u16 spt_pathpfthld;
  1010. };
  1011. /* Use a new structure with spt_pathcpthld for back compatibility */
  1012. struct sctp_paddrthlds_v2 {
  1013. sctp_assoc_t spt_assoc_id;
  1014. struct sockaddr_storage spt_address;
  1015. __u16 spt_pathmaxrxt;
  1016. __u16 spt_pathpfthld;
  1017. __u16 spt_pathcpthld;
  1018. };
  1019. /*
  1020. * Socket Option for Getting the Association/Stream-Specific PR-SCTP Status
  1021. */
  1022. struct sctp_prstatus {
  1023. sctp_assoc_t sprstat_assoc_id;
  1024. __u16 sprstat_sid;
  1025. __u16 sprstat_policy;
  1026. __u64 sprstat_abandoned_unsent;
  1027. __u64 sprstat_abandoned_sent;
  1028. };
  1029. struct sctp_default_prinfo {
  1030. sctp_assoc_t pr_assoc_id;
  1031. __u32 pr_value;
  1032. __u16 pr_policy;
  1033. };
  1034. struct sctp_info {
  1035. __u32 sctpi_tag;
  1036. __u32 sctpi_state;
  1037. __u32 sctpi_rwnd;
  1038. __u16 sctpi_unackdata;
  1039. __u16 sctpi_penddata;
  1040. __u16 sctpi_instrms;
  1041. __u16 sctpi_outstrms;
  1042. __u32 sctpi_fragmentation_point;
  1043. __u32 sctpi_inqueue;
  1044. __u32 sctpi_outqueue;
  1045. __u32 sctpi_overall_error;
  1046. __u32 sctpi_max_burst;
  1047. __u32 sctpi_maxseg;
  1048. __u32 sctpi_peer_rwnd;
  1049. __u32 sctpi_peer_tag;
  1050. __u8 sctpi_peer_capable;
  1051. __u8 sctpi_peer_sack;
  1052. __u16 __reserved1;
  1053. /* assoc status info */
  1054. __u64 sctpi_isacks;
  1055. __u64 sctpi_osacks;
  1056. __u64 sctpi_opackets;
  1057. __u64 sctpi_ipackets;
  1058. __u64 sctpi_rtxchunks;
  1059. __u64 sctpi_outofseqtsns;
  1060. __u64 sctpi_idupchunks;
  1061. __u64 sctpi_gapcnt;
  1062. __u64 sctpi_ouodchunks;
  1063. __u64 sctpi_iuodchunks;
  1064. __u64 sctpi_oodchunks;
  1065. __u64 sctpi_iodchunks;
  1066. __u64 sctpi_octrlchunks;
  1067. __u64 sctpi_ictrlchunks;
  1068. /* primary transport info */
  1069. struct sockaddr_storage sctpi_p_address;
  1070. __s32 sctpi_p_state;
  1071. __u32 sctpi_p_cwnd;
  1072. __u32 sctpi_p_srtt;
  1073. __u32 sctpi_p_rto;
  1074. __u32 sctpi_p_hbinterval;
  1075. __u32 sctpi_p_pathmaxrxt;
  1076. __u32 sctpi_p_sackdelay;
  1077. __u32 sctpi_p_sackfreq;
  1078. __u32 sctpi_p_ssthresh;
  1079. __u32 sctpi_p_partial_bytes_acked;
  1080. __u32 sctpi_p_flight_size;
  1081. __u16 sctpi_p_error;
  1082. __u16 __reserved2;
  1083. /* sctp sock info */
  1084. __u32 sctpi_s_autoclose;
  1085. __u32 sctpi_s_adaptation_ind;
  1086. __u32 sctpi_s_pd_point;
  1087. __u8 sctpi_s_nodelay;
  1088. __u8 sctpi_s_disable_fragments;
  1089. __u8 sctpi_s_v4mapped;
  1090. __u8 sctpi_s_frag_interleave;
  1091. __u32 sctpi_s_type;
  1092. __u32 __reserved3;
  1093. };
  1094. struct sctp_reset_streams {
  1095. sctp_assoc_t srs_assoc_id;
  1096. uint16_t srs_flags;
  1097. uint16_t srs_number_streams; /* 0 == ALL */
  1098. uint16_t srs_stream_list[]; /* list if srs_num_streams is not 0 */
  1099. };
  1100. struct sctp_add_streams {
  1101. sctp_assoc_t sas_assoc_id;
  1102. uint16_t sas_instrms;
  1103. uint16_t sas_outstrms;
  1104. };
  1105. struct sctp_event {
  1106. sctp_assoc_t se_assoc_id;
  1107. uint16_t se_type;
  1108. uint8_t se_on;
  1109. };
  1110. struct sctp_udpencaps {
  1111. sctp_assoc_t sue_assoc_id;
  1112. struct sockaddr_storage sue_address;
  1113. uint16_t sue_port;
  1114. };
  1115. /* SCTP Stream schedulers */
  1116. enum sctp_sched_type {
  1117. SCTP_SS_FCFS,
  1118. SCTP_SS_DEFAULT = SCTP_SS_FCFS,
  1119. SCTP_SS_PRIO,
  1120. SCTP_SS_RR,
  1121. SCTP_SS_MAX = SCTP_SS_RR
  1122. };
  1123. /* Probe Interval socket option */
  1124. struct sctp_probeinterval {
  1125. sctp_assoc_t spi_assoc_id;
  1126. struct sockaddr_storage spi_address;
  1127. __u32 spi_interval;
  1128. };
  1129. #endif /* _UAPI_SCTP_H */