xref: /freebsd/sys/netinet/sctp_header.h (revision 807aad636f325a152aa41c104fbbc438fce684f6)
1f8829a4aSRandall Stewart /*-
2b1006367SRandall Stewart  * Copyright (c) 2001-2007, by Cisco Systems, Inc. All rights reserved.
3*807aad63SMichael Tuexen  * Copyright (c) 2008-2012, by Randall Stewart. All rights reserved.
4*807aad63SMichael Tuexen  * Copyright (c) 2008-2012, by Michael Tuexen. All rights reserved.
5f8829a4aSRandall Stewart  *
6f8829a4aSRandall Stewart  * Redistribution and use in source and binary forms, with or without
7f8829a4aSRandall Stewart  * modification, are permitted provided that the following conditions are met:
8f8829a4aSRandall Stewart  *
9f8829a4aSRandall Stewart  * a) Redistributions of source code must retain the above copyright notice,
10f8829a4aSRandall Stewart  *    this list of conditions and the following disclaimer.
11f8829a4aSRandall Stewart  *
12f8829a4aSRandall Stewart  * b) Redistributions in binary form must reproduce the above copyright
13f8829a4aSRandall Stewart  *    notice, this list of conditions and the following disclaimer in
14f8829a4aSRandall Stewart  *    the documentation and/or other materials provided with the distribution.
15f8829a4aSRandall Stewart  *
16f8829a4aSRandall Stewart  * c) Neither the name of Cisco Systems, Inc. nor the names of its
17f8829a4aSRandall Stewart  *    contributors may be used to endorse or promote products derived
18f8829a4aSRandall Stewart  *    from this software without specific prior written permission.
19f8829a4aSRandall Stewart  *
20f8829a4aSRandall Stewart  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
21f8829a4aSRandall Stewart  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
22f8829a4aSRandall Stewart  * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
23f8829a4aSRandall Stewart  * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
24f8829a4aSRandall Stewart  * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
25f8829a4aSRandall Stewart  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
26f8829a4aSRandall Stewart  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
27f8829a4aSRandall Stewart  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
28f8829a4aSRandall Stewart  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
29f8829a4aSRandall Stewart  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
30f8829a4aSRandall Stewart  * THE POSSIBILITY OF SUCH DAMAGE.
31f8829a4aSRandall Stewart  */
32f8829a4aSRandall Stewart 
33f8829a4aSRandall Stewart #include <sys/cdefs.h>
34f8829a4aSRandall Stewart __FBSDID("$FreeBSD$");
35f8829a4aSRandall Stewart 
36*807aad63SMichael Tuexen #ifndef _NETINET_SCTP_HEADER_H_
37*807aad63SMichael Tuexen #define _NETINET_SCTP_HEADER_H_
38f8829a4aSRandall Stewart 
39f8829a4aSRandall Stewart #include <sys/time.h>
40f8829a4aSRandall Stewart #include <netinet/sctp.h>
41f8829a4aSRandall Stewart #include <netinet/sctp_constants.h>
42f8829a4aSRandall Stewart 
43b3f1ea41SRandall Stewart #define SCTP_PACKED __attribute__((packed))
4435918f85SRandall Stewart 
45f8829a4aSRandall Stewart /*
46f8829a4aSRandall Stewart  * Parameter structures
47f8829a4aSRandall Stewart  */
48f8829a4aSRandall Stewart struct sctp_ipv4addr_param {
49f8829a4aSRandall Stewart 	struct sctp_paramhdr ph;/* type=SCTP_IPV4_PARAM_TYPE, len=8 */
50f8829a4aSRandall Stewart 	uint32_t addr;		/* IPV4 address */
5135918f85SRandall Stewart }                   SCTP_PACKED;
52f8829a4aSRandall Stewart 
5342551e99SRandall Stewart #define SCTP_V6_ADDR_BYTES 16
5442551e99SRandall Stewart 
5542551e99SRandall Stewart 
56f8829a4aSRandall Stewart struct sctp_ipv6addr_param {
57f8829a4aSRandall Stewart 	struct sctp_paramhdr ph;/* type=SCTP_IPV6_PARAM_TYPE, len=20 */
5842551e99SRandall Stewart 	uint8_t addr[SCTP_V6_ADDR_BYTES];	/* IPV6 address */
5935918f85SRandall Stewart }                   SCTP_PACKED;
60f8829a4aSRandall Stewart 
61f8829a4aSRandall Stewart /* Cookie Preservative */
62f8829a4aSRandall Stewart struct sctp_cookie_perserve_param {
63f8829a4aSRandall Stewart 	struct sctp_paramhdr ph;/* type=SCTP_COOKIE_PRESERVE, len=8 */
64f8829a4aSRandall Stewart 	uint32_t time;		/* time in ms to extend cookie */
658d9d0613SMichael Tuexen }                          SCTP_PACKED;
66f8829a4aSRandall Stewart 
6742551e99SRandall Stewart #define SCTP_ARRAY_MIN_LEN 1
68f8829a4aSRandall Stewart /* Host Name Address */
69f8829a4aSRandall Stewart struct sctp_host_name_param {
70f8829a4aSRandall Stewart 	struct sctp_paramhdr ph;/* type=SCTP_HOSTNAME_ADDRESS */
7142551e99SRandall Stewart 	char name[SCTP_ARRAY_MIN_LEN];	/* host name */
7235918f85SRandall Stewart }                    SCTP_PACKED;
73f8829a4aSRandall Stewart 
74d06c82f1SRandall Stewart /*
75d06c82f1SRandall Stewart  * This is the maximum padded size of a s-a-p
76d06c82f1SRandall Stewart  * so paramheadr + 3 address types (6 bytes) + 2 byte pad = 12
77d06c82f1SRandall Stewart  */
78d06c82f1SRandall Stewart #define SCTP_MAX_ADDR_PARAMS_SIZE 12
79f8829a4aSRandall Stewart /* supported address type */
80f8829a4aSRandall Stewart struct sctp_supported_addr_param {
81f8829a4aSRandall Stewart 	struct sctp_paramhdr ph;/* type=SCTP_SUPPORTED_ADDRTYPE */
8270acddf1SMichael Tuexen 	uint16_t addr_type[2];	/* array of supported address types */
8335918f85SRandall Stewart }                         SCTP_PACKED;
84f8829a4aSRandall Stewart 
85f8829a4aSRandall Stewart /* ECN parameter */
86f8829a4aSRandall Stewart struct sctp_ecn_supported_param {
87f8829a4aSRandall Stewart 	struct sctp_paramhdr ph;/* type=SCTP_ECN_CAPABLE */
8835918f85SRandall Stewart }                        SCTP_PACKED;
89f8829a4aSRandall Stewart 
90f8829a4aSRandall Stewart 
91f8829a4aSRandall Stewart /* heartbeat info parameter */
92f8829a4aSRandall Stewart struct sctp_heartbeat_info_param {
93f8829a4aSRandall Stewart 	struct sctp_paramhdr ph;
94f8829a4aSRandall Stewart 	uint32_t time_value_1;
95f8829a4aSRandall Stewart 	uint32_t time_value_2;
96f8829a4aSRandall Stewart 	uint32_t random_value1;
97f8829a4aSRandall Stewart 	uint32_t random_value2;
98f8829a4aSRandall Stewart 	uint8_t addr_family;
99f8829a4aSRandall Stewart 	uint8_t addr_len;
100ca85e948SMichael Tuexen 	/* make sure that this structure is 4 byte aligned */
101ca85e948SMichael Tuexen 	uint8_t padding[2];
102f8829a4aSRandall Stewart 	char address[SCTP_ADDRMAX];
10335918f85SRandall Stewart }                         SCTP_PACKED;
104f8829a4aSRandall Stewart 
105f8829a4aSRandall Stewart 
106f8829a4aSRandall Stewart /* draft-ietf-tsvwg-prsctp */
107f8829a4aSRandall Stewart /* PR-SCTP supported parameter */
108f8829a4aSRandall Stewart struct sctp_prsctp_supported_param {
109f8829a4aSRandall Stewart 	struct sctp_paramhdr ph;
11035918f85SRandall Stewart }                           SCTP_PACKED;
111f8829a4aSRandall Stewart 
112f8829a4aSRandall Stewart 
113f8829a4aSRandall Stewart /* draft-ietf-tsvwg-addip-sctp */
114f8829a4aSRandall Stewart struct sctp_asconf_paramhdr {	/* an ASCONF "parameter" */
115f8829a4aSRandall Stewart 	struct sctp_paramhdr ph;/* a SCTP parameter header */
116f8829a4aSRandall Stewart 	uint32_t correlation_id;/* correlation id for this param */
11735918f85SRandall Stewart }                    SCTP_PACKED;
118f8829a4aSRandall Stewart 
119f8829a4aSRandall Stewart struct sctp_asconf_addr_param {	/* an ASCONF address parameter */
120f8829a4aSRandall Stewart 	struct sctp_asconf_paramhdr aph;	/* asconf "parameter" */
121f8829a4aSRandall Stewart 	struct sctp_ipv6addr_param addrp;	/* max storage size */
12235918f85SRandall Stewart }                      SCTP_PACKED;
123f8829a4aSRandall Stewart 
124830d754dSRandall Stewart 
125830d754dSRandall Stewart struct sctp_asconf_tag_param {	/* an ASCONF NAT-Vtag parameter */
126830d754dSRandall Stewart 	struct sctp_asconf_paramhdr aph;	/* asconf "parameter" */
127830d754dSRandall Stewart 	uint32_t local_vtag;
128830d754dSRandall Stewart 	uint32_t remote_vtag;
129830d754dSRandall Stewart }                     SCTP_PACKED;
130830d754dSRandall Stewart 
131830d754dSRandall Stewart 
132f8829a4aSRandall Stewart struct sctp_asconf_addrv4_param {	/* an ASCONF address (v4) parameter */
133f8829a4aSRandall Stewart 	struct sctp_asconf_paramhdr aph;	/* asconf "parameter" */
134f8829a4aSRandall Stewart 	struct sctp_ipv4addr_param addrp;	/* max storage size */
13535918f85SRandall Stewart }                        SCTP_PACKED;
136f8829a4aSRandall Stewart 
137d06c82f1SRandall Stewart #define SCTP_MAX_SUPPORTED_EXT 256
138d06c82f1SRandall Stewart 
139f8829a4aSRandall Stewart struct sctp_supported_chunk_types_param {
140f8829a4aSRandall Stewart 	struct sctp_paramhdr ph;/* type = 0x8008  len = x */
141663fdad8SMichael Tuexen 	uint8_t chunk_types[];
14235918f85SRandall Stewart }                                SCTP_PACKED;
143f8829a4aSRandall Stewart 
144f8829a4aSRandall Stewart 
145f8829a4aSRandall Stewart /*
146f8829a4aSRandall Stewart  * Structures for DATA chunks
147f8829a4aSRandall Stewart  */
148f8829a4aSRandall Stewart struct sctp_data {
149f8829a4aSRandall Stewart 	uint32_t tsn;
150f8829a4aSRandall Stewart 	uint16_t stream_id;
151f8829a4aSRandall Stewart 	uint16_t stream_sequence;
152f8829a4aSRandall Stewart 	uint32_t protocol_id;
153f8829a4aSRandall Stewart 	/* user data follows */
15435918f85SRandall Stewart }         SCTP_PACKED;
155f8829a4aSRandall Stewart 
156f8829a4aSRandall Stewart struct sctp_data_chunk {
157f8829a4aSRandall Stewart 	struct sctp_chunkhdr ch;
158f8829a4aSRandall Stewart 	struct sctp_data dp;
15935918f85SRandall Stewart }               SCTP_PACKED;
160f8829a4aSRandall Stewart 
161f8829a4aSRandall Stewart /*
162f8829a4aSRandall Stewart  * Structures for the control chunks
163f8829a4aSRandall Stewart  */
164f8829a4aSRandall Stewart 
165f8829a4aSRandall Stewart /* Initiate (INIT)/Initiate Ack (INIT ACK) */
166f8829a4aSRandall Stewart struct sctp_init {
167f8829a4aSRandall Stewart 	uint32_t initiate_tag;	/* initiate tag */
168f8829a4aSRandall Stewart 	uint32_t a_rwnd;	/* a_rwnd */
169f8829a4aSRandall Stewart 	uint16_t num_outbound_streams;	/* OS */
170f8829a4aSRandall Stewart 	uint16_t num_inbound_streams;	/* MIS */
171f8829a4aSRandall Stewart 	uint32_t initial_tsn;	/* I-TSN */
172f8829a4aSRandall Stewart 	/* optional param's follow */
17335918f85SRandall Stewart }         SCTP_PACKED;
174f8829a4aSRandall Stewart 
17542551e99SRandall Stewart #define SCTP_IDENTIFICATION_SIZE 16
17642551e99SRandall Stewart #define SCTP_ADDRESS_SIZE 4
17735918f85SRandall Stewart #define SCTP_RESERVE_SPACE 6
178f8829a4aSRandall Stewart /* state cookie header */
179f8829a4aSRandall Stewart struct sctp_state_cookie {	/* this is our definition... */
18042551e99SRandall Stewart 	uint8_t identification[SCTP_IDENTIFICATION_SIZE];	/* id of who we are */
18135918f85SRandall Stewart 	struct timeval time_entered;	/* the time I built cookie */
182f8829a4aSRandall Stewart 	uint32_t cookie_life;	/* life I will award this cookie */
183f8829a4aSRandall Stewart 	uint32_t tie_tag_my_vtag;	/* my tag in old association */
18435918f85SRandall Stewart 
185f8829a4aSRandall Stewart 	uint32_t tie_tag_peer_vtag;	/* peers tag in old association */
186f8829a4aSRandall Stewart 	uint32_t peers_vtag;	/* peers tag in INIT (for quick ref) */
18735918f85SRandall Stewart 
188f8829a4aSRandall Stewart 	uint32_t my_vtag;	/* my tag in INIT-ACK (for quick ref) */
18942551e99SRandall Stewart 	uint32_t address[SCTP_ADDRESS_SIZE];	/* 4 ints/128 bits */
190f8829a4aSRandall Stewart 	uint32_t addr_type;	/* address type */
19142551e99SRandall Stewart 	uint32_t laddress[SCTP_ADDRESS_SIZE];	/* my local from address */
192f8829a4aSRandall Stewart 	uint32_t laddr_type;	/* my local from address type */
193f8829a4aSRandall Stewart 	uint32_t scope_id;	/* v6 scope id for link-locals */
19435918f85SRandall Stewart 
195f8829a4aSRandall Stewart 	uint16_t peerport;	/* port address of the peer in the INIT */
196f8829a4aSRandall Stewart 	uint16_t myport;	/* my port address used in the INIT */
197f8829a4aSRandall Stewart 	uint8_t ipv4_addr_legal;/* Are V4 addr legal? */
198f8829a4aSRandall Stewart 	uint8_t ipv6_addr_legal;/* Are V6 addr legal? */
199f8829a4aSRandall Stewart 	uint8_t local_scope;	/* IPv6 local scope flag */
200f8829a4aSRandall Stewart 	uint8_t site_scope;	/* IPv6 site scope flag */
20135918f85SRandall Stewart 
202f8829a4aSRandall Stewart 	uint8_t ipv4_scope;	/* IPv4 private addr scope */
203f8829a4aSRandall Stewart 	uint8_t loopback_scope;	/* loopback scope information */
20435918f85SRandall Stewart 	uint8_t reserved[SCTP_RESERVE_SPACE];	/* Align to 64 bits */
205f8829a4aSRandall Stewart 	/*
206f8829a4aSRandall Stewart 	 * at the end is tacked on the INIT chunk and the INIT-ACK chunk
207f8829a4aSRandall Stewart 	 * (minus the cookie).
208f8829a4aSRandall Stewart 	 */
20935918f85SRandall Stewart }                 SCTP_PACKED;
210f8829a4aSRandall Stewart 
211830d754dSRandall Stewart 
212830d754dSRandall Stewart /* Used for NAT state error cause */
213830d754dSRandall Stewart struct sctp_missing_nat_state {
214830d754dSRandall Stewart 	uint16_t cause;
215830d754dSRandall Stewart 	uint16_t length;
216663fdad8SMichael Tuexen 	uint8_t data[];
217830d754dSRandall Stewart }                      SCTP_PACKED;
218830d754dSRandall Stewart 
219830d754dSRandall Stewart 
220f8829a4aSRandall Stewart struct sctp_inv_mandatory_param {
221f8829a4aSRandall Stewart 	uint16_t cause;
222f8829a4aSRandall Stewart 	uint16_t length;
223f8829a4aSRandall Stewart 	uint32_t num_param;
224f8829a4aSRandall Stewart 	uint16_t param;
225f8829a4aSRandall Stewart 	/*
226f8829a4aSRandall Stewart 	 * We include this to 0 it since only a missing cookie will cause
227f8829a4aSRandall Stewart 	 * this error.
228f8829a4aSRandall Stewart 	 */
229f8829a4aSRandall Stewart 	uint16_t resv;
23035918f85SRandall Stewart }                        SCTP_PACKED;
231f8829a4aSRandall Stewart 
232f8829a4aSRandall Stewart struct sctp_unresolv_addr {
233f8829a4aSRandall Stewart 	uint16_t cause;
234f8829a4aSRandall Stewart 	uint16_t length;
235f8829a4aSRandall Stewart 	uint16_t addr_type;
236f8829a4aSRandall Stewart 	uint16_t reserved;	/* Only one invalid addr type */
23735918f85SRandall Stewart }                  SCTP_PACKED;
238f8829a4aSRandall Stewart 
239f8829a4aSRandall Stewart /* state cookie parameter */
240f8829a4aSRandall Stewart struct sctp_state_cookie_param {
241f8829a4aSRandall Stewart 	struct sctp_paramhdr ph;
242f8829a4aSRandall Stewart 	struct sctp_state_cookie cookie;
24335918f85SRandall Stewart }                       SCTP_PACKED;
244f8829a4aSRandall Stewart 
245f8829a4aSRandall Stewart struct sctp_init_chunk {
246f8829a4aSRandall Stewart 	struct sctp_chunkhdr ch;
247f8829a4aSRandall Stewart 	struct sctp_init init;
24835918f85SRandall Stewart }               SCTP_PACKED;
249f8829a4aSRandall Stewart 
250f8829a4aSRandall Stewart struct sctp_init_msg {
251f8829a4aSRandall Stewart 	struct sctphdr sh;
252f8829a4aSRandall Stewart 	struct sctp_init_chunk msg;
25335918f85SRandall Stewart }             SCTP_PACKED;
254f8829a4aSRandall Stewart 
255f8829a4aSRandall Stewart /* ... used for both INIT and INIT ACK */
256f8829a4aSRandall Stewart #define sctp_init_ack		sctp_init
257f8829a4aSRandall Stewart #define sctp_init_ack_chunk	sctp_init_chunk
258f8829a4aSRandall Stewart #define sctp_init_ack_msg	sctp_init_msg
259f8829a4aSRandall Stewart 
260f8829a4aSRandall Stewart 
261f8829a4aSRandall Stewart /* Selective Ack (SACK) */
262f8829a4aSRandall Stewart struct sctp_gap_ack_block {
263f8829a4aSRandall Stewart 	uint16_t start;		/* Gap Ack block start */
264f8829a4aSRandall Stewart 	uint16_t end;		/* Gap Ack block end */
26535918f85SRandall Stewart }                  SCTP_PACKED;
266f8829a4aSRandall Stewart 
267f8829a4aSRandall Stewart struct sctp_sack {
268f8829a4aSRandall Stewart 	uint32_t cum_tsn_ack;	/* cumulative TSN Ack */
269f8829a4aSRandall Stewart 	uint32_t a_rwnd;	/* updated a_rwnd of sender */
270f8829a4aSRandall Stewart 	uint16_t num_gap_ack_blks;	/* number of Gap Ack blocks */
271f8829a4aSRandall Stewart 	uint16_t num_dup_tsns;	/* number of duplicate TSNs */
272f8829a4aSRandall Stewart 	/* struct sctp_gap_ack_block's follow */
273f8829a4aSRandall Stewart 	/* uint32_t duplicate_tsn's follow */
27435918f85SRandall Stewart }         SCTP_PACKED;
275f8829a4aSRandall Stewart 
276f8829a4aSRandall Stewart struct sctp_sack_chunk {
277f8829a4aSRandall Stewart 	struct sctp_chunkhdr ch;
278f8829a4aSRandall Stewart 	struct sctp_sack sack;
27935918f85SRandall Stewart }               SCTP_PACKED;
280f8829a4aSRandall Stewart 
281830d754dSRandall Stewart struct sctp_nr_sack {
282830d754dSRandall Stewart 	uint32_t cum_tsn_ack;	/* cumulative TSN Ack */
283830d754dSRandall Stewart 	uint32_t a_rwnd;	/* updated a_rwnd of sender */
284830d754dSRandall Stewart 	uint16_t num_gap_ack_blks;	/* number of Gap Ack blocks */
285830d754dSRandall Stewart 	uint16_t num_nr_gap_ack_blks;	/* number of NR Gap Ack blocks */
286830d754dSRandall Stewart 	uint16_t num_dup_tsns;	/* number of duplicate TSNs */
287830d754dSRandall Stewart 	uint16_t reserved;	/* not currently used */
288830d754dSRandall Stewart 	/* struct sctp_gap_ack_block's follow */
289830d754dSRandall Stewart 	/* uint32_t duplicate_tsn's follow */
290830d754dSRandall Stewart }            SCTP_PACKED;
291830d754dSRandall Stewart 
292830d754dSRandall Stewart struct sctp_nr_sack_chunk {
293830d754dSRandall Stewart 	struct sctp_chunkhdr ch;
294830d754dSRandall Stewart 	struct sctp_nr_sack nr_sack;
295830d754dSRandall Stewart }                  SCTP_PACKED;
296830d754dSRandall Stewart 
297830d754dSRandall Stewart 
298f8829a4aSRandall Stewart /* Heartbeat Request (HEARTBEAT) */
299f8829a4aSRandall Stewart struct sctp_heartbeat {
300f8829a4aSRandall Stewart 	struct sctp_heartbeat_info_param hb_info;
30135918f85SRandall Stewart }              SCTP_PACKED;
302f8829a4aSRandall Stewart 
303f8829a4aSRandall Stewart struct sctp_heartbeat_chunk {
304f8829a4aSRandall Stewart 	struct sctp_chunkhdr ch;
305f8829a4aSRandall Stewart 	struct sctp_heartbeat heartbeat;
30635918f85SRandall Stewart }                    SCTP_PACKED;
307f8829a4aSRandall Stewart 
308f8829a4aSRandall Stewart /* ... used for Heartbeat Ack (HEARTBEAT ACK) */
309f8829a4aSRandall Stewart #define sctp_heartbeat_ack		sctp_heartbeat
310f8829a4aSRandall Stewart #define sctp_heartbeat_ack_chunk	sctp_heartbeat_chunk
311f8829a4aSRandall Stewart 
312f8829a4aSRandall Stewart 
313f8829a4aSRandall Stewart /* Abort Asssociation (ABORT) */
314f8829a4aSRandall Stewart struct sctp_abort_chunk {
315f8829a4aSRandall Stewart 	struct sctp_chunkhdr ch;
316f8829a4aSRandall Stewart 	/* optional error cause may follow */
31735918f85SRandall Stewart }                SCTP_PACKED;
318f8829a4aSRandall Stewart 
319f8829a4aSRandall Stewart struct sctp_abort_msg {
320f8829a4aSRandall Stewart 	struct sctphdr sh;
321f8829a4aSRandall Stewart 	struct sctp_abort_chunk msg;
32235918f85SRandall Stewart }              SCTP_PACKED;
323f8829a4aSRandall Stewart 
324f8829a4aSRandall Stewart 
325f8829a4aSRandall Stewart /* Shutdown Association (SHUTDOWN) */
326f8829a4aSRandall Stewart struct sctp_shutdown_chunk {
327f8829a4aSRandall Stewart 	struct sctp_chunkhdr ch;
328f8829a4aSRandall Stewart 	uint32_t cumulative_tsn_ack;
32935918f85SRandall Stewart }                   SCTP_PACKED;
330f8829a4aSRandall Stewart 
331f8829a4aSRandall Stewart 
332f8829a4aSRandall Stewart /* Shutdown Acknowledgment (SHUTDOWN ACK) */
333f8829a4aSRandall Stewart struct sctp_shutdown_ack_chunk {
334f8829a4aSRandall Stewart 	struct sctp_chunkhdr ch;
33535918f85SRandall Stewart }                       SCTP_PACKED;
336f8829a4aSRandall Stewart 
337f8829a4aSRandall Stewart 
338f8829a4aSRandall Stewart /* Operation Error (ERROR) */
339f8829a4aSRandall Stewart struct sctp_error_chunk {
340f8829a4aSRandall Stewart 	struct sctp_chunkhdr ch;
341f8829a4aSRandall Stewart 	/* optional error causes follow */
34235918f85SRandall Stewart }                SCTP_PACKED;
343f8829a4aSRandall Stewart 
344f8829a4aSRandall Stewart 
345f8829a4aSRandall Stewart /* Cookie Echo (COOKIE ECHO) */
346f8829a4aSRandall Stewart struct sctp_cookie_echo_chunk {
347f8829a4aSRandall Stewart 	struct sctp_chunkhdr ch;
348f8829a4aSRandall Stewart 	struct sctp_state_cookie cookie;
34935918f85SRandall Stewart }                      SCTP_PACKED;
350f8829a4aSRandall Stewart 
351f8829a4aSRandall Stewart /* Cookie Acknowledgment (COOKIE ACK) */
352f8829a4aSRandall Stewart struct sctp_cookie_ack_chunk {
353f8829a4aSRandall Stewart 	struct sctp_chunkhdr ch;
35435918f85SRandall Stewart }                     SCTP_PACKED;
355f8829a4aSRandall Stewart 
356f8829a4aSRandall Stewart /* Explicit Congestion Notification Echo (ECNE) */
357a21779f0SRandall Stewart struct old_sctp_ecne_chunk {
358a21779f0SRandall Stewart 	struct sctp_chunkhdr ch;
359a21779f0SRandall Stewart 	uint32_t tsn;
360a21779f0SRandall Stewart }                   SCTP_PACKED;
361a21779f0SRandall Stewart 
362f8829a4aSRandall Stewart struct sctp_ecne_chunk {
363f8829a4aSRandall Stewart 	struct sctp_chunkhdr ch;
364f8829a4aSRandall Stewart 	uint32_t tsn;
365a21779f0SRandall Stewart 	uint32_t num_pkts_since_cwr;
36635918f85SRandall Stewart }               SCTP_PACKED;
367f8829a4aSRandall Stewart 
368f8829a4aSRandall Stewart /* Congestion Window Reduced (CWR) */
369f8829a4aSRandall Stewart struct sctp_cwr_chunk {
370f8829a4aSRandall Stewart 	struct sctp_chunkhdr ch;
371f8829a4aSRandall Stewart 	uint32_t tsn;
37235918f85SRandall Stewart }              SCTP_PACKED;
373f8829a4aSRandall Stewart 
374f8829a4aSRandall Stewart /* Shutdown Complete (SHUTDOWN COMPLETE) */
375f8829a4aSRandall Stewart struct sctp_shutdown_complete_chunk {
376f8829a4aSRandall Stewart 	struct sctp_chunkhdr ch;
37735918f85SRandall Stewart }                            SCTP_PACKED;
378f8829a4aSRandall Stewart 
379f8829a4aSRandall Stewart /* Oper error holding a stale cookie */
380f8829a4aSRandall Stewart struct sctp_stale_cookie_msg {
381f8829a4aSRandall Stewart 	struct sctp_paramhdr ph;/* really an error cause */
382f8829a4aSRandall Stewart 	uint32_t time_usec;
38335918f85SRandall Stewart }                     SCTP_PACKED;
384f8829a4aSRandall Stewart 
385f8829a4aSRandall Stewart struct sctp_adaptation_layer_indication {
386f8829a4aSRandall Stewart 	struct sctp_paramhdr ph;
387f8829a4aSRandall Stewart 	uint32_t indication;
38835918f85SRandall Stewart }                                SCTP_PACKED;
389f8829a4aSRandall Stewart 
390f8829a4aSRandall Stewart struct sctp_cookie_while_shutting_down {
391f8829a4aSRandall Stewart 	struct sctphdr sh;
392f8829a4aSRandall Stewart 	struct sctp_chunkhdr ch;
393f8829a4aSRandall Stewart 	struct sctp_paramhdr ph;/* really an error cause */
39435918f85SRandall Stewart }                               SCTP_PACKED;
395f8829a4aSRandall Stewart 
396f8829a4aSRandall Stewart struct sctp_shutdown_complete_msg {
397f8829a4aSRandall Stewart 	struct sctphdr sh;
398f8829a4aSRandall Stewart 	struct sctp_shutdown_complete_chunk shut_cmp;
39935918f85SRandall Stewart }                          SCTP_PACKED;
400f8829a4aSRandall Stewart 
401f8829a4aSRandall Stewart /*
402f8829a4aSRandall Stewart  * draft-ietf-tsvwg-addip-sctp
403f8829a4aSRandall Stewart  */
404f8829a4aSRandall Stewart /* Address/Stream Configuration Change (ASCONF) */
405f8829a4aSRandall Stewart struct sctp_asconf_chunk {
406f8829a4aSRandall Stewart 	struct sctp_chunkhdr ch;
407f8829a4aSRandall Stewart 	uint32_t serial_number;
408f8829a4aSRandall Stewart 	/* lookup address parameter (mandatory) */
409f8829a4aSRandall Stewart 	/* asconf parameters follow */
41035918f85SRandall Stewart }                 SCTP_PACKED;
411f8829a4aSRandall Stewart 
412f8829a4aSRandall Stewart /* Address/Stream Configuration Acknowledge (ASCONF ACK) */
413f8829a4aSRandall Stewart struct sctp_asconf_ack_chunk {
414f8829a4aSRandall Stewart 	struct sctp_chunkhdr ch;
415f8829a4aSRandall Stewart 	uint32_t serial_number;
416f8829a4aSRandall Stewart 	/* asconf parameters follow */
41735918f85SRandall Stewart }                     SCTP_PACKED;
418f8829a4aSRandall Stewart 
419f8829a4aSRandall Stewart /* draft-ietf-tsvwg-prsctp */
420f8829a4aSRandall Stewart /* Forward Cumulative TSN (FORWARD TSN) */
421f8829a4aSRandall Stewart struct sctp_forward_tsn_chunk {
422f8829a4aSRandall Stewart 	struct sctp_chunkhdr ch;
423f8829a4aSRandall Stewart 	uint32_t new_cumulative_tsn;
424f8829a4aSRandall Stewart 	/* stream/sequence pairs (sctp_strseq) follow */
42535918f85SRandall Stewart }                      SCTP_PACKED;
426f8829a4aSRandall Stewart 
427f8829a4aSRandall Stewart struct sctp_strseq {
428f8829a4aSRandall Stewart 	uint16_t stream;
429f8829a4aSRandall Stewart 	uint16_t sequence;
43035918f85SRandall Stewart }           SCTP_PACKED;
431f8829a4aSRandall Stewart 
432f8829a4aSRandall Stewart struct sctp_forward_tsn_msg {
433f8829a4aSRandall Stewart 	struct sctphdr sh;
434f8829a4aSRandall Stewart 	struct sctp_forward_tsn_chunk msg;
43535918f85SRandall Stewart }                    SCTP_PACKED;
436f8829a4aSRandall Stewart 
437f8829a4aSRandall Stewart /* should be a multiple of 4 - 1 aka 3/7/11 etc. */
438f8829a4aSRandall Stewart 
439f8829a4aSRandall Stewart #define SCTP_NUM_DB_TO_VERIFY 31
440f8829a4aSRandall Stewart 
441f8829a4aSRandall Stewart struct sctp_chunk_desc {
442f8829a4aSRandall Stewart 	uint8_t chunk_type;
443f8829a4aSRandall Stewart 	uint8_t data_bytes[SCTP_NUM_DB_TO_VERIFY];
444f8829a4aSRandall Stewart 	uint32_t tsn_ifany;
44535918f85SRandall Stewart }               SCTP_PACKED;
446f8829a4aSRandall Stewart 
447f8829a4aSRandall Stewart 
448f8829a4aSRandall Stewart struct sctp_pktdrop_chunk {
449f8829a4aSRandall Stewart 	struct sctp_chunkhdr ch;
450f8829a4aSRandall Stewart 	uint32_t bottle_bw;
451f8829a4aSRandall Stewart 	uint32_t current_onq;
452f8829a4aSRandall Stewart 	uint16_t trunc_len;
453f8829a4aSRandall Stewart 	uint16_t reserved;
454663fdad8SMichael Tuexen 	uint8_t data[];
45535918f85SRandall Stewart }                  SCTP_PACKED;
456f8829a4aSRandall Stewart 
457f8829a4aSRandall Stewart /**********STREAM RESET STUFF ******************/
458f8829a4aSRandall Stewart 
459f8829a4aSRandall Stewart struct sctp_stream_reset_out_request {
460f8829a4aSRandall Stewart 	struct sctp_paramhdr ph;
461f8829a4aSRandall Stewart 	uint32_t request_seq;	/* monotonically increasing seq no */
462f8829a4aSRandall Stewart 	uint32_t response_seq;	/* if a response, the resp seq no */
463f8829a4aSRandall Stewart 	uint32_t send_reset_at_tsn;	/* last TSN I assigned outbound */
464663fdad8SMichael Tuexen 	uint16_t list_of_streams[];	/* if not all list of streams */
46535918f85SRandall Stewart }                             SCTP_PACKED;
466f8829a4aSRandall Stewart 
467f8829a4aSRandall Stewart struct sctp_stream_reset_in_request {
468f8829a4aSRandall Stewart 	struct sctp_paramhdr ph;
469f8829a4aSRandall Stewart 	uint32_t request_seq;
470663fdad8SMichael Tuexen 	uint16_t list_of_streams[];	/* if not all list of streams */
47135918f85SRandall Stewart }                            SCTP_PACKED;
472f8829a4aSRandall Stewart 
473f8829a4aSRandall Stewart 
474f8829a4aSRandall Stewart struct sctp_stream_reset_tsn_request {
475f8829a4aSRandall Stewart 	struct sctp_paramhdr ph;
476f8829a4aSRandall Stewart 	uint32_t request_seq;
47735918f85SRandall Stewart }                             SCTP_PACKED;
478f8829a4aSRandall Stewart 
479f8829a4aSRandall Stewart struct sctp_stream_reset_response {
480f8829a4aSRandall Stewart 	struct sctp_paramhdr ph;
481f8829a4aSRandall Stewart 	uint32_t response_seq;	/* if a response, the resp seq no */
482f8829a4aSRandall Stewart 	uint32_t result;
48335918f85SRandall Stewart }                          SCTP_PACKED;
484f8829a4aSRandall Stewart 
485f8829a4aSRandall Stewart struct sctp_stream_reset_response_tsn {
486f8829a4aSRandall Stewart 	struct sctp_paramhdr ph;
487f8829a4aSRandall Stewart 	uint32_t response_seq;	/* if a response, the resp seq no */
488f8829a4aSRandall Stewart 	uint32_t result;
489f8829a4aSRandall Stewart 	uint32_t senders_next_tsn;
490f8829a4aSRandall Stewart 	uint32_t receivers_next_tsn;
49135918f85SRandall Stewart }                              SCTP_PACKED;
492f8829a4aSRandall Stewart 
493ea44232bSRandall Stewart struct sctp_stream_reset_add_strm {
494ea44232bSRandall Stewart 	struct sctp_paramhdr ph;
495ea44232bSRandall Stewart 	uint32_t request_seq;
496ea44232bSRandall Stewart 	uint16_t number_of_streams;
497ea44232bSRandall Stewart 	uint16_t reserved;
4988d9d0613SMichael Tuexen }                          SCTP_PACKED;
499f8829a4aSRandall Stewart 
500f3ebe64cSMichael Tuexen #define SCTP_STREAM_RESET_RESULT_NOTHING_TO_DO   0x00000000	/* XXX: unused */
501f3ebe64cSMichael Tuexen #define SCTP_STREAM_RESET_RESULT_PERFORMED       0x00000001
502f3ebe64cSMichael Tuexen #define SCTP_STREAM_RESET_RESULT_DENIED          0x00000002
503f3ebe64cSMichael Tuexen #define SCTP_STREAM_RESET_RESULT_ERR__WRONG_SSN  0x00000003	/* XXX: unused */
504f3ebe64cSMichael Tuexen #define SCTP_STREAM_RESET_RESULT_ERR_IN_PROGRESS 0x00000004
505f3ebe64cSMichael Tuexen #define SCTP_STREAM_RESET_RESULT_ERR_BAD_SEQNO   0x00000005
506f3ebe64cSMichael Tuexen #define SCTP_STREAM_RESET_RESULT_IN_PROGRESS     0x00000006	/* XXX: unused */
507f8829a4aSRandall Stewart 
508f8829a4aSRandall Stewart /*
509f8829a4aSRandall Stewart  * convience structures, note that if you are making a request for specific
510f8829a4aSRandall Stewart  * streams then the request will need to be an overlay structure.
511f8829a4aSRandall Stewart  */
512f8829a4aSRandall Stewart 
513f8829a4aSRandall Stewart struct sctp_stream_reset_out_req {
514f8829a4aSRandall Stewart 	struct sctp_chunkhdr ch;
515f8829a4aSRandall Stewart 	struct sctp_stream_reset_out_request sr_req;
51635918f85SRandall Stewart }                         SCTP_PACKED;
517f8829a4aSRandall Stewart 
518f8829a4aSRandall Stewart struct sctp_stream_reset_in_req {
519f8829a4aSRandall Stewart 	struct sctp_chunkhdr ch;
520f8829a4aSRandall Stewart 	struct sctp_stream_reset_in_request sr_req;
52135918f85SRandall Stewart }                        SCTP_PACKED;
522f8829a4aSRandall Stewart 
523f8829a4aSRandall Stewart struct sctp_stream_reset_tsn_req {
524f8829a4aSRandall Stewart 	struct sctp_chunkhdr ch;
525f8829a4aSRandall Stewart 	struct sctp_stream_reset_tsn_request sr_req;
52635918f85SRandall Stewart }                         SCTP_PACKED;
527f8829a4aSRandall Stewart 
528f8829a4aSRandall Stewart struct sctp_stream_reset_resp {
529f8829a4aSRandall Stewart 	struct sctp_chunkhdr ch;
530f8829a4aSRandall Stewart 	struct sctp_stream_reset_response sr_resp;
53135918f85SRandall Stewart }                      SCTP_PACKED;
532f8829a4aSRandall Stewart 
533f8829a4aSRandall Stewart /* respone only valid with a TSN request */
534f8829a4aSRandall Stewart struct sctp_stream_reset_resp_tsn {
535f8829a4aSRandall Stewart 	struct sctp_chunkhdr ch;
536f8829a4aSRandall Stewart 	struct sctp_stream_reset_response_tsn sr_resp;
53735918f85SRandall Stewart }                          SCTP_PACKED;
538f8829a4aSRandall Stewart 
539f8829a4aSRandall Stewart /****************************************************/
540f8829a4aSRandall Stewart 
541f8829a4aSRandall Stewart /*
542f8829a4aSRandall Stewart  * Authenticated chunks support draft-ietf-tsvwg-sctp-auth
543f8829a4aSRandall Stewart  */
544d06c82f1SRandall Stewart 
545d06c82f1SRandall Stewart /* Should we make the max be 32? */
546d06c82f1SRandall Stewart #define SCTP_RANDOM_MAX_SIZE 256
547f8829a4aSRandall Stewart struct sctp_auth_random {
548f8829a4aSRandall Stewart 	struct sctp_paramhdr ph;/* type = 0x8002 */
549663fdad8SMichael Tuexen 	uint8_t random_data[];
55035918f85SRandall Stewart }                SCTP_PACKED;
551f8829a4aSRandall Stewart 
552f8829a4aSRandall Stewart struct sctp_auth_chunk_list {
553f8829a4aSRandall Stewart 	struct sctp_paramhdr ph;/* type = 0x8003 */
554663fdad8SMichael Tuexen 	uint8_t chunk_types[];
55535918f85SRandall Stewart }                    SCTP_PACKED;
556f8829a4aSRandall Stewart 
557f8829a4aSRandall Stewart struct sctp_auth_hmac_algo {
558f8829a4aSRandall Stewart 	struct sctp_paramhdr ph;/* type = 0x8004 */
559663fdad8SMichael Tuexen 	uint16_t hmac_ids[];
56035918f85SRandall Stewart }                   SCTP_PACKED;
561f8829a4aSRandall Stewart 
562f8829a4aSRandall Stewart struct sctp_auth_chunk {
563f8829a4aSRandall Stewart 	struct sctp_chunkhdr ch;
564f8829a4aSRandall Stewart 	uint16_t shared_key_id;
565f8829a4aSRandall Stewart 	uint16_t hmac_id;
566663fdad8SMichael Tuexen 	uint8_t hmac[];
56735918f85SRandall Stewart }               SCTP_PACKED;
568f8829a4aSRandall Stewart 
569f8829a4aSRandall Stewart struct sctp_auth_invalid_hmac {
570f8829a4aSRandall Stewart 	struct sctp_paramhdr ph;
571f8829a4aSRandall Stewart 	uint16_t hmac_id;
572f8829a4aSRandall Stewart 	uint16_t padding;
57335918f85SRandall Stewart }                      SCTP_PACKED;
574f8829a4aSRandall Stewart 
575f8829a4aSRandall Stewart /*
576f8829a4aSRandall Stewart  * we pre-reserve enough room for a ECNE or CWR AND a SACK with no missing
577f8829a4aSRandall Stewart  * pieces. If ENCE is missing we could have a couple of blocks. This way we
578f8829a4aSRandall Stewart  * optimize so we MOST likely can bundle a SACK/ECN with the smallest size
579f8829a4aSRandall Stewart  * data chunk I will split into. We could increase throughput slightly by
580f8829a4aSRandall Stewart  * taking out these two but the  24-sack/8-CWR i.e. 32 bytes I pre-reserve I
581f8829a4aSRandall Stewart  * feel is worth it for now.
582f8829a4aSRandall Stewart  */
583f8829a4aSRandall Stewart #ifndef SCTP_MAX_OVERHEAD
58442551e99SRandall Stewart #ifdef INET6
585f8829a4aSRandall Stewart #define SCTP_MAX_OVERHEAD (sizeof(struct sctp_data_chunk) + \
586f8829a4aSRandall Stewart 			   sizeof(struct sctphdr) + \
587f8829a4aSRandall Stewart 			   sizeof(struct sctp_ecne_chunk) + \
588f8829a4aSRandall Stewart 			   sizeof(struct sctp_sack_chunk) + \
589f8829a4aSRandall Stewart 			   sizeof(struct ip6_hdr))
590f8829a4aSRandall Stewart 
591f8829a4aSRandall Stewart #define SCTP_MED_OVERHEAD (sizeof(struct sctp_data_chunk) + \
592f8829a4aSRandall Stewart 			   sizeof(struct sctphdr) + \
593f8829a4aSRandall Stewart 			   sizeof(struct ip6_hdr))
594f8829a4aSRandall Stewart 
595f8829a4aSRandall Stewart 
596f8829a4aSRandall Stewart #define SCTP_MIN_OVERHEAD (sizeof(struct ip6_hdr) + \
597f8829a4aSRandall Stewart 			   sizeof(struct sctphdr))
598f8829a4aSRandall Stewart 
599f8829a4aSRandall Stewart #else
600f8829a4aSRandall Stewart #define SCTP_MAX_OVERHEAD (sizeof(struct sctp_data_chunk) + \
601f8829a4aSRandall Stewart 			   sizeof(struct sctphdr) + \
602f8829a4aSRandall Stewart 			   sizeof(struct sctp_ecne_chunk) + \
603f8829a4aSRandall Stewart 			   sizeof(struct sctp_sack_chunk) + \
604f8829a4aSRandall Stewart 			   sizeof(struct ip))
605f8829a4aSRandall Stewart 
606f8829a4aSRandall Stewart #define SCTP_MED_OVERHEAD (sizeof(struct sctp_data_chunk) + \
607f8829a4aSRandall Stewart 			   sizeof(struct sctphdr) + \
608f8829a4aSRandall Stewart 			   sizeof(struct ip))
609f8829a4aSRandall Stewart 
610f8829a4aSRandall Stewart 
611f8829a4aSRandall Stewart #define SCTP_MIN_OVERHEAD (sizeof(struct ip) + \
612f8829a4aSRandall Stewart 			   sizeof(struct sctphdr))
613f8829a4aSRandall Stewart 
61442551e99SRandall Stewart #endif				/* INET6 */
615f8829a4aSRandall Stewart #endif				/* !SCTP_MAX_OVERHEAD */
616f8829a4aSRandall Stewart 
617f8829a4aSRandall Stewart #define SCTP_MED_V4_OVERHEAD (sizeof(struct sctp_data_chunk) + \
618f8829a4aSRandall Stewart 			      sizeof(struct sctphdr) + \
619f8829a4aSRandall Stewart 			      sizeof(struct ip))
620f8829a4aSRandall Stewart 
621f8829a4aSRandall Stewart #define SCTP_MIN_V4_OVERHEAD (sizeof(struct ip) + \
622f8829a4aSRandall Stewart 			      sizeof(struct sctphdr))
623f8829a4aSRandall Stewart 
624b3f1ea41SRandall Stewart #undef SCTP_PACKED
625f8829a4aSRandall Stewart #endif				/* !__sctp_header_h__ */
626