]> CyberLeo.Net >> Repos - FreeBSD/stable/8.git/blob - sys/netinet/sctp_uio.h
MFC r223152:
[FreeBSD/stable/8.git] / sys / netinet / sctp_uio.h
1 /*-
2  * Copyright (c) 2001-2007, by Cisco Systems, Inc. All rights reserved.
3  * Copyright (c) 2008-2011, by Randall Stewart. All rights reserved.
4  * Copyright (c) 2008-2011, by Michael Tuexen. All rights reserved.
5  *
6  * Redistribution and use in source and binary forms, with or without
7  * modification, are permitted provided that the following conditions are met:
8  *
9  * a) Redistributions of source code must retain the above copyright notice,
10  *   this list of conditions and the following disclaimer.
11  *
12  * b) Redistributions in binary form must reproduce the above copyright
13  *    notice, this list of conditions and the following disclaimer in
14  *   the documentation and/or other materials provided with the distribution.
15  *
16  * c) Neither the name of Cisco Systems, Inc. nor the names of its
17  *    contributors may be used to endorse or promote products derived
18  *    from this software without specific prior written permission.
19  *
20  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
21  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
22  * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
23  * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
24  * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
25  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
26  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
27  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
28  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
29  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
30  * THE POSSIBILITY OF SUCH DAMAGE.
31  */
32
33 /* $KAME: sctp_uio.h,v 1.11 2005/03/06 16:04:18 itojun Exp $     */
34 #include <sys/cdefs.h>
35 __FBSDID("$FreeBSD$");
36
37 #ifndef __sctp_uio_h__
38 #define __sctp_uio_h__
39
40
41 #if ! defined(_KERNEL)
42 #include <stdint.h>
43 #endif
44 #include <sys/types.h>
45 #include <sys/socket.h>
46 #include <netinet/in.h>
47
48 typedef uint32_t sctp_assoc_t;
49
50 #define SCTP_FUTURE_ASSOC  0
51 #define SCTP_CURRENT_ASSOC 1
52 #define SCTP_ALL_ASSOC     2
53
54 struct sctp_event {
55         sctp_assoc_t se_assoc_id;
56         uint16_t se_type;
57         uint8_t se_on;
58 };
59
60 /* Compatibility to previous define's */
61 #define sctp_stream_reset_events sctp_stream_reset_event
62
63 /* On/Off setup for subscription to events */
64 struct sctp_event_subscribe {
65         uint8_t sctp_data_io_event;
66         uint8_t sctp_association_event;
67         uint8_t sctp_address_event;
68         uint8_t sctp_send_failure_event;
69         uint8_t sctp_peer_error_event;
70         uint8_t sctp_shutdown_event;
71         uint8_t sctp_partial_delivery_event;
72         uint8_t sctp_adaptation_layer_event;
73         uint8_t sctp_authentication_event;
74         uint8_t sctp_sender_dry_event;
75         uint8_t sctp_stream_reset_event;
76 };
77
78 /* ancillary data types */
79 #define SCTP_INIT       0x0001
80 #define SCTP_SNDRCV     0x0002
81 #define SCTP_EXTRCV     0x0003
82 #define SCTP_SNDINFO    0x0004
83 #define SCTP_RCVINFO    0x0005
84 #define SCTP_NXTINFO    0x0006
85 #define SCTP_PRINFO     0x0007
86 #define SCTP_AUTHINFO   0x0008
87 #define SCTP_DSTADDRV4  0x0009
88 #define SCTP_DSTADDRV6  0x000a
89
90 /*
91  * ancillary data structures
92  */
93 struct sctp_initmsg {
94         uint16_t sinit_num_ostreams;
95         uint16_t sinit_max_instreams;
96         uint16_t sinit_max_attempts;
97         uint16_t sinit_max_init_timeo;
98 };
99
100 /* We add 96 bytes to the size of sctp_sndrcvinfo.
101  * This makes the current structure 128 bytes long
102  * which is nicely 64 bit aligned but also has room
103  * for us to add more and keep ABI compatibility.
104  * For example, already we have the sctp_extrcvinfo
105  * when enabled which is 48 bytes.
106  */
107
108 /*
109  * The assoc up needs a verfid
110  * all sendrcvinfo's need a verfid for SENDING only.
111  */
112
113
114 #define SCTP_ALIGN_RESV_PAD 92
115 #define SCTP_ALIGN_RESV_PAD_SHORT 76
116
117 struct sctp_sndrcvinfo {
118         uint16_t sinfo_stream;
119         uint16_t sinfo_ssn;
120         uint16_t sinfo_flags;
121         uint32_t sinfo_ppid;
122         uint32_t sinfo_context;
123         uint32_t sinfo_timetolive;
124         uint32_t sinfo_tsn;
125         uint32_t sinfo_cumtsn;
126         sctp_assoc_t sinfo_assoc_id;
127         uint16_t sinfo_keynumber;
128         uint16_t sinfo_keynumber_valid;
129         uint8_t __reserve_pad[SCTP_ALIGN_RESV_PAD];
130 };
131
132 struct sctp_extrcvinfo {
133         uint16_t sinfo_stream;
134         uint16_t sinfo_ssn;
135         uint16_t sinfo_flags;
136         uint32_t sinfo_ppid;
137         uint32_t sinfo_context;
138         uint32_t sinfo_timetolive;
139         uint32_t sinfo_tsn;
140         uint32_t sinfo_cumtsn;
141         sctp_assoc_t sinfo_assoc_id;
142         uint16_t sreinfo_next_flags;
143         uint16_t sreinfo_next_stream;
144         uint32_t sreinfo_next_aid;
145         uint32_t sreinfo_next_length;
146         uint32_t sreinfo_next_ppid;
147         uint16_t sinfo_keynumber;
148         uint16_t sinfo_keynumber_valid;
149         uint8_t __reserve_pad[SCTP_ALIGN_RESV_PAD_SHORT];
150 };
151
152 struct sctp_sndinfo {
153         uint16_t snd_sid;
154         uint16_t snd_flags;
155         uint32_t snd_ppid;
156         uint32_t snd_context;
157         sctp_assoc_t snd_assoc_id;
158 };
159
160 struct sctp_prinfo {
161         uint16_t pr_policy;
162         uint32_t pr_value;
163 };
164
165 struct sctp_authinfo {
166         uint16_t auth_keyid;
167 };
168
169 struct sctp_rcvinfo {
170         uint16_t rcv_sid;
171         uint16_t rcv_ssn;
172         uint16_t rcv_flags;
173         uint32_t rcv_ppid;
174         uint32_t rcv_tsn;
175         uint32_t rcv_cumtsn;
176         uint32_t rcv_context;
177         sctp_assoc_t rcv_assoc_id;
178 };
179
180 struct sctp_nxtinfo {
181         uint16_t nxt_sid;
182         uint16_t nxt_flags;
183         uint32_t nxt_ppid;
184         uint32_t nxt_length;
185         sctp_assoc_t nxt_assoc_id;
186 };
187
188 #define SCTP_NO_NEXT_MSG           0x0000
189 #define SCTP_NEXT_MSG_AVAIL        0x0001
190 #define SCTP_NEXT_MSG_ISCOMPLETE   0x0002
191 #define SCTP_NEXT_MSG_IS_UNORDERED 0x0004
192 #define SCTP_NEXT_MSG_IS_NOTIFICATION 0x0008
193
194 struct sctp_recvv_rn {
195         struct sctp_rcvinfo recvv_rcvinfo;
196         struct sctp_nxtinfo recvv_nxtinfo;
197 };
198
199 #define SCTP_RECVV_NOINFO  0
200 #define SCTP_RECVV_RCVINFO 1
201 #define SCTP_RECVV_NXTINFO 2
202 #define SCTP_RECVV_RN      3
203
204 #define SCTP_SENDV_NOINFO   0
205 #define SCTP_SENDV_SNDINFO  1
206 #define SCTP_SENDV_PRINFO   2
207 #define SCTP_SENDV_AUTHINFO 3
208 #define SCTP_SENDV_SPA      4
209
210 struct sctp_sendv_spa {
211         uint32_t sendv_flags;
212         struct sctp_sndinfo sendv_sndinfo;
213         struct sctp_prinfo sendv_prinfo;
214         struct sctp_authinfo sendv_authinfo;
215 };
216
217 #define SCTP_SEND_SNDINFO_VALID  0x00000001
218 #define SCTP_SEND_PRINFO_VALID   0x00000002
219 #define SCTP_SEND_AUTHINFO_VALID 0x00000004
220
221 struct sctp_snd_all_completes {
222         uint16_t sall_stream;
223         uint16_t sall_flags;
224         uint32_t sall_ppid;
225         uint32_t sall_context;
226         uint32_t sall_num_sent;
227         uint32_t sall_num_failed;
228 };
229
230 /* Flags that go into the sinfo->sinfo_flags field */
231 #define SCTP_NOTIFICATION     0x0010    /* next message is a notification */
232 #define SCTP_COMPLETE         0x0020    /* next message is complete */
233 #define SCTP_EOF              0x0100    /* Start shutdown procedures */
234 #define SCTP_ABORT            0x0200    /* Send an ABORT to peer */
235 #define SCTP_UNORDERED        0x0400    /* Message is un-ordered */
236 #define SCTP_ADDR_OVER        0x0800    /* Override the primary-address */
237 #define SCTP_SENDALL          0x1000    /* Send this on all associations */
238 #define SCTP_EOR              0x2000    /* end of message signal */
239 #define SCTP_SACK_IMMEDIATELY 0x4000    /* Set I-Bit */
240
241 #define INVALID_SINFO_FLAG(x) (((x) & 0xfffffff0 \
242                                     & ~(SCTP_EOF | SCTP_ABORT | SCTP_UNORDERED |\
243                                         SCTP_ADDR_OVER | SCTP_SENDALL | SCTP_EOR |\
244                                         SCTP_SACK_IMMEDIATELY)) != 0)
245 /* for the endpoint */
246
247 /* The lower byte is an enumeration of PR-SCTP policies */
248 #define SCTP_PR_SCTP_TTL  0x0001/* Time based PR-SCTP */
249 #define SCTP_PR_SCTP_BUF  0x0002/* Buffer based PR-SCTP */
250 #define SCTP_PR_SCTP_RTX  0x0003/* Number of retransmissions based PR-SCTP */
251
252 #define PR_SCTP_POLICY(x)         ((x) & 0x0f)
253 #define PR_SCTP_ENABLED(x)        (PR_SCTP_POLICY(x) != 0)
254 #define PR_SCTP_TTL_ENABLED(x)    (PR_SCTP_POLICY(x) == SCTP_PR_SCTP_TTL)
255 #define PR_SCTP_BUF_ENABLED(x)    (PR_SCTP_POLICY(x) == SCTP_PR_SCTP_BUF)
256 #define PR_SCTP_RTX_ENABLED(x)    (PR_SCTP_POLICY(x) == SCTP_PR_SCTP_RTX)
257 #define PR_SCTP_INVALID_POLICY(x) (PR_SCTP_POLICY(x) > SCTP_PR_SCTP_RTX)
258 /* Stat's */
259 struct sctp_pcbinfo {
260         uint32_t ep_count;
261         uint32_t asoc_count;
262         uint32_t laddr_count;
263         uint32_t raddr_count;
264         uint32_t chk_count;
265         uint32_t readq_count;
266         uint32_t free_chunks;
267         uint32_t stream_oque;
268 };
269
270 struct sctp_sockstat {
271         sctp_assoc_t ss_assoc_id;
272         uint32_t ss_total_sndbuf;
273         uint32_t ss_total_recv_buf;
274 };
275
276 /*
277  * notification event structures
278  */
279
280 /*
281  * association change event
282  */
283 struct sctp_assoc_change {
284         uint16_t sac_type;
285         uint16_t sac_flags;
286         uint32_t sac_length;
287         uint16_t sac_state;
288         uint16_t sac_error;
289         uint16_t sac_outbound_streams;
290         uint16_t sac_inbound_streams;
291         sctp_assoc_t sac_assoc_id;
292 };
293
294 /* sac_state values */
295 #define SCTP_COMM_UP            0x0001
296 #define SCTP_COMM_LOST          0x0002
297 #define SCTP_RESTART            0x0003
298 #define SCTP_SHUTDOWN_COMP      0x0004
299 #define SCTP_CANT_STR_ASSOC     0x0005
300
301
302 /*
303  * Address event
304  */
305 struct sctp_paddr_change {
306         uint16_t spc_type;
307         uint16_t spc_flags;
308         uint32_t spc_length;
309         struct sockaddr_storage spc_aaddr;
310         uint32_t spc_state;
311         uint32_t spc_error;
312         sctp_assoc_t spc_assoc_id;
313         uint8_t spc_padding[4];
314 };
315
316 /* paddr state values */
317 #define SCTP_ADDR_AVAILABLE     0x0001
318 #define SCTP_ADDR_UNREACHABLE   0x0002
319 #define SCTP_ADDR_REMOVED       0x0003
320 #define SCTP_ADDR_ADDED         0x0004
321 #define SCTP_ADDR_MADE_PRIM     0x0005
322 #define SCTP_ADDR_CONFIRMED     0x0006
323
324 #define SCTP_ACTIVE             0x0001  /* SCTP_ADDR_REACHABLE */
325 #define SCTP_INACTIVE           0x0002  /* SCTP_ADDR_NOT_REACHABLE */
326 #define SCTP_UNCONFIRMED        0x0200  /* SCTP_ADDR_UNCONFIRMED */
327
328 /* remote error events */
329 struct sctp_remote_error {
330         uint16_t sre_type;
331         uint16_t sre_flags;
332         uint32_t sre_length;
333         uint16_t sre_error;
334         sctp_assoc_t sre_assoc_id;
335         uint8_t sre_data[4];
336 };
337
338 /* data send failure event */
339 struct sctp_send_failed {
340         uint16_t ssf_type;
341         uint16_t ssf_flags;
342         uint32_t ssf_length;
343         uint32_t ssf_error;
344         struct sctp_sndrcvinfo ssf_info;
345         sctp_assoc_t ssf_assoc_id;
346         uint8_t ssf_data[];
347 };
348
349 /* flag that indicates state of data */
350 #define SCTP_DATA_UNSENT        0x0001  /* inqueue never on wire */
351 #define SCTP_DATA_SENT          0x0002  /* on wire at failure */
352
353 /* shutdown event */
354 struct sctp_shutdown_event {
355         uint16_t sse_type;
356         uint16_t sse_flags;
357         uint32_t sse_length;
358         sctp_assoc_t sse_assoc_id;
359 };
360
361 /* Adaptation layer indication stuff */
362 struct sctp_adaptation_event {
363         uint16_t sai_type;
364         uint16_t sai_flags;
365         uint32_t sai_length;
366         uint32_t sai_adaptation_ind;
367         sctp_assoc_t sai_assoc_id;
368 };
369
370 struct sctp_setadaptation {
371         uint32_t ssb_adaptation_ind;
372 };
373
374 /* compatible old spelling */
375 struct sctp_adaption_event {
376         uint16_t sai_type;
377         uint16_t sai_flags;
378         uint32_t sai_length;
379         uint32_t sai_adaption_ind;
380         sctp_assoc_t sai_assoc_id;
381 };
382
383 struct sctp_setadaption {
384         uint32_t ssb_adaption_ind;
385 };
386
387
388 /*
389  * Partial Delivery API event
390  */
391 struct sctp_pdapi_event {
392         uint16_t pdapi_type;
393         uint16_t pdapi_flags;
394         uint32_t pdapi_length;
395         uint32_t pdapi_indication;
396         uint16_t pdapi_stream;
397         uint16_t pdapi_seq;
398         sctp_assoc_t pdapi_assoc_id;
399 };
400
401 /* indication values */
402 #define SCTP_PARTIAL_DELIVERY_ABORTED   0x0001
403
404
405 /*
406  * authentication key event
407  */
408 struct sctp_authkey_event {
409         uint16_t auth_type;
410         uint16_t auth_flags;
411         uint32_t auth_length;
412         uint16_t auth_keynumber;
413         uint16_t auth_altkeynumber;
414         uint32_t auth_indication;
415         sctp_assoc_t auth_assoc_id;
416 };
417
418 /* indication values */
419 #define SCTP_AUTH_NEWKEY        0x0001
420 #define SCTP_AUTH_NO_AUTH       0x0002
421 #define SCTP_AUTH_FREE_KEY      0x0003
422
423
424 struct sctp_sender_dry_event {
425         uint16_t sender_dry_type;
426         uint16_t sender_dry_flags;
427         uint32_t sender_dry_length;
428         sctp_assoc_t sender_dry_assoc_id;
429 };
430
431
432 /*
433  * stream reset event
434  */
435 struct sctp_stream_reset_event {
436         uint16_t strreset_type;
437         uint16_t strreset_flags;
438         uint32_t strreset_length;
439         sctp_assoc_t strreset_assoc_id;
440         uint16_t strreset_list[];
441 };
442
443 /* flags in strreset_flags field */
444 #define SCTP_STRRESET_INBOUND_STR  0x0001
445 #define SCTP_STRRESET_OUTBOUND_STR 0x0002
446 #define SCTP_STRRESET_ALL_STREAMS  0x0004
447 #define SCTP_STRRESET_STREAM_LIST  0x0008
448 #define SCTP_STRRESET_FAILED       0x0010
449 #define SCTP_STRRESET_ADD_STREAM   0x0020
450
451 /* SCTP notification event */
452 struct sctp_tlv {
453         uint16_t sn_type;
454         uint16_t sn_flags;
455         uint32_t sn_length;
456 };
457
458 union sctp_notification {
459         struct sctp_tlv sn_header;
460         struct sctp_assoc_change sn_assoc_change;
461         struct sctp_paddr_change sn_paddr_change;
462         struct sctp_remote_error sn_remote_error;
463         struct sctp_send_failed sn_send_failed;
464         struct sctp_shutdown_event sn_shutdown_event;
465         struct sctp_adaptation_event sn_adaptation_event;
466         /* compatibility same as above */
467         struct sctp_adaption_event sn_adaption_event;
468         struct sctp_pdapi_event sn_pdapi_event;
469         struct sctp_authkey_event sn_auth_event;
470         struct sctp_sender_dry_event sn_sender_dry_event;
471         struct sctp_stream_reset_event sn_strreset_event;
472 };
473
474 /* notification types */
475 #define SCTP_ASSOC_CHANGE                       0x0001
476 #define SCTP_PEER_ADDR_CHANGE                   0x0002
477 #define SCTP_REMOTE_ERROR                       0x0003
478 #define SCTP_SEND_FAILED                        0x0004
479 #define SCTP_SHUTDOWN_EVENT                     0x0005
480 #define SCTP_ADAPTATION_INDICATION              0x0006
481 /* same as above */
482 #define SCTP_ADAPTION_INDICATION                0x0006
483 #define SCTP_PARTIAL_DELIVERY_EVENT             0x0007
484 #define SCTP_AUTHENTICATION_EVENT               0x0008
485 #define SCTP_STREAM_RESET_EVENT                 0x0009
486 #define SCTP_SENDER_DRY_EVENT                   0x000a
487 #define SCTP_NOTIFICATIONS_STOPPED_EVENT        0x000b  /* we don't send this */
488 /*
489  * socket option structs
490  */
491
492 struct sctp_paddrparams {
493         struct sockaddr_storage spp_address;
494         sctp_assoc_t spp_assoc_id;
495         uint32_t spp_hbinterval;
496         uint32_t spp_pathmtu;
497         uint32_t spp_flags;
498         uint32_t spp_ipv6_flowlabel;
499         uint16_t spp_pathmaxrxt;
500         uint8_t spp_ipv4_tos;
501 };
502
503 #define SPP_HB_ENABLE           0x00000001
504 #define SPP_HB_DISABLE          0x00000002
505 #define SPP_HB_DEMAND           0x00000004
506 #define SPP_PMTUD_ENABLE        0x00000008
507 #define SPP_PMTUD_DISABLE       0x00000010
508 #define SPP_HB_TIME_IS_ZERO     0x00000080
509 #define SPP_IPV6_FLOWLABEL      0x00000100
510 #define SPP_IPV4_TOS            0x00000200
511
512 struct sctp_paddrinfo {
513         struct sockaddr_storage spinfo_address;
514         sctp_assoc_t spinfo_assoc_id;
515         int32_t spinfo_state;
516         uint32_t spinfo_cwnd;
517         uint32_t spinfo_srtt;
518         uint32_t spinfo_rto;
519         uint32_t spinfo_mtu;
520 };
521
522 struct sctp_rtoinfo {
523         sctp_assoc_t srto_assoc_id;
524         uint32_t srto_initial;
525         uint32_t srto_max;
526         uint32_t srto_min;
527 };
528
529 struct sctp_assocparams {
530         sctp_assoc_t sasoc_assoc_id;
531         uint32_t sasoc_peer_rwnd;
532         uint32_t sasoc_local_rwnd;
533         uint32_t sasoc_cookie_life;
534         uint16_t sasoc_asocmaxrxt;
535         uint16_t sasoc_number_peer_destinations;
536 };
537
538 struct sctp_setprim {
539         struct sockaddr_storage ssp_addr;
540         sctp_assoc_t ssp_assoc_id;
541         uint8_t ssp_padding[4];
542 };
543
544 struct sctp_setpeerprim {
545         struct sockaddr_storage sspp_addr;
546         sctp_assoc_t sspp_assoc_id;
547         uint8_t sspp_padding[4];
548 };
549
550 struct sctp_getaddresses {
551         sctp_assoc_t sget_assoc_id;
552         /* addr is filled in for N * sockaddr_storage */
553         struct sockaddr addr[1];
554 };
555
556 struct sctp_setstrm_timeout {
557         sctp_assoc_t ssto_assoc_id;
558         uint32_t ssto_timeout;
559         uint32_t ssto_streamid_start;
560         uint32_t ssto_streamid_end;
561 };
562
563 struct sctp_status {
564         sctp_assoc_t sstat_assoc_id;
565         int32_t sstat_state;
566         uint32_t sstat_rwnd;
567         uint16_t sstat_unackdata;
568         uint16_t sstat_penddata;
569         uint16_t sstat_instrms;
570         uint16_t sstat_outstrms;
571         uint32_t sstat_fragmentation_point;
572         struct sctp_paddrinfo sstat_primary;
573 };
574
575 /*
576  * AUTHENTICATION support
577  */
578 /* SCTP_AUTH_CHUNK */
579 struct sctp_authchunk {
580         uint8_t sauth_chunk;
581 };
582
583 /* SCTP_AUTH_KEY */
584 struct sctp_authkey {
585         sctp_assoc_t sca_assoc_id;
586         uint16_t sca_keynumber;
587         uint8_t sca_key[];
588 };
589
590 /* SCTP_HMAC_IDENT */
591 struct sctp_hmacalgo {
592         uint32_t shmac_number_of_idents;
593         uint16_t shmac_idents[];
594 };
595
596 /* AUTH hmac_id */
597 #define SCTP_AUTH_HMAC_ID_RSVD          0x0000
598 #define SCTP_AUTH_HMAC_ID_SHA1          0x0001  /* default, mandatory */
599 #define SCTP_AUTH_HMAC_ID_SHA256        0x0003
600 #define SCTP_AUTH_HMAC_ID_SHA224        0x0004
601 #define SCTP_AUTH_HMAC_ID_SHA384        0x0005
602 #define SCTP_AUTH_HMAC_ID_SHA512        0x0006
603
604
605 /* SCTP_AUTH_ACTIVE_KEY / SCTP_AUTH_DELETE_KEY */
606 struct sctp_authkeyid {
607         sctp_assoc_t scact_assoc_id;
608         uint16_t scact_keynumber;
609 };
610
611 /* SCTP_PEER_AUTH_CHUNKS / SCTP_LOCAL_AUTH_CHUNKS */
612 struct sctp_authchunks {
613         sctp_assoc_t gauth_assoc_id;
614         uint8_t gauth_chunks[];
615 };
616
617 struct sctp_assoc_value {
618         sctp_assoc_t assoc_id;
619         uint32_t assoc_value;
620 };
621
622 struct sctp_cc_option {
623         int option;
624         struct sctp_assoc_value aid_value;
625 };
626
627 struct sctp_stream_value {
628         sctp_assoc_t assoc_id;
629         uint16_t stream_id;
630         uint16_t stream_value;
631 };
632
633 struct sctp_assoc_ids {
634         uint32_t gaids_number_of_ids;
635         sctp_assoc_t gaids_assoc_id[];
636 };
637
638 struct sctp_sack_info {
639         sctp_assoc_t sack_assoc_id;
640         uint32_t sack_delay;
641         uint32_t sack_freq;
642 };
643
644 struct sctp_timeouts {
645         sctp_assoc_t stimo_assoc_id;
646         uint32_t stimo_init;
647         uint32_t stimo_data;
648         uint32_t stimo_sack;
649         uint32_t stimo_shutdown;
650         uint32_t stimo_heartbeat;
651         uint32_t stimo_cookie;
652         uint32_t stimo_shutdownack;
653 };
654
655 struct sctp_cwnd_args {
656         struct sctp_nets *net;  /* network to *//* FIXME: LP64 issue */
657         uint32_t cwnd_new_value;/* cwnd in k */
658         uint32_t pseudo_cumack;
659         uint16_t inflight;      /* flightsize in k */
660         uint16_t cwnd_augment;  /* increment to it */
661         uint8_t meets_pseudo_cumack;
662         uint8_t need_new_pseudo_cumack;
663         uint8_t cnt_in_send;
664         uint8_t cnt_in_str;
665 };
666
667 struct sctp_blk_args {
668         uint32_t onsb;          /* in 1k bytes */
669         uint32_t sndlen;        /* len of send being attempted */
670         uint32_t peer_rwnd;     /* rwnd of peer */
671         uint16_t send_sent_qcnt;/* chnk cnt */
672         uint16_t stream_qcnt;   /* chnk cnt */
673         uint16_t chunks_on_oque;/* chunks out */
674         uint16_t flight_size;   /* flight size in k */
675 };
676
677 /*
678  * Max we can reset in one setting, note this is dictated not by the define
679  * but the size of a mbuf cluster so don't change this define and think you
680  * can specify more. You must do multiple resets if you want to reset more
681  * than SCTP_MAX_EXPLICIT_STR_RESET.
682  */
683 #define SCTP_MAX_EXPLICT_STR_RESET   1000
684
685 #define SCTP_RESET_LOCAL_RECV  0x0001
686 #define SCTP_RESET_LOCAL_SEND  0x0002
687 #define SCTP_RESET_BOTH        0x0003
688 #define SCTP_RESET_TSN         0x0004
689 #define SCTP_RESET_ADD_STREAMS 0x0005
690
691 struct sctp_stream_reset {
692         sctp_assoc_t strrst_assoc_id;
693         uint16_t strrst_flags;
694         uint16_t strrst_num_streams;    /* 0 == ALL */
695         uint16_t strrst_list[]; /* list if strrst_num_streams is not 0 */
696 };
697
698
699 struct sctp_get_nonce_values {
700         sctp_assoc_t gn_assoc_id;
701         uint32_t gn_peers_tag;
702         uint32_t gn_local_tag;
703 };
704
705 /* Debugging logs */
706 struct sctp_str_log {
707         void *stcb;             /* FIXME: LP64 issue */
708         uint32_t n_tsn;
709         uint32_t e_tsn;
710         uint16_t n_sseq;
711         uint16_t e_sseq;
712         uint16_t strm;
713 };
714
715 struct sctp_sb_log {
716         void *stcb;             /* FIXME: LP64 issue */
717         uint32_t so_sbcc;
718         uint32_t stcb_sbcc;
719         uint32_t incr;
720 };
721
722 struct sctp_fr_log {
723         uint32_t largest_tsn;
724         uint32_t largest_new_tsn;
725         uint32_t tsn;
726 };
727
728 struct sctp_fr_map {
729         uint32_t base;
730         uint32_t cum;
731         uint32_t high;
732 };
733
734 struct sctp_rwnd_log {
735         uint32_t rwnd;
736         uint32_t send_size;
737         uint32_t overhead;
738         uint32_t new_rwnd;
739 };
740
741 struct sctp_mbcnt_log {
742         uint32_t total_queue_size;
743         uint32_t size_change;
744         uint32_t total_queue_mb_size;
745         uint32_t mbcnt_change;
746 };
747
748 struct sctp_sack_log {
749         uint32_t cumack;
750         uint32_t oldcumack;
751         uint32_t tsn;
752         uint16_t numGaps;
753         uint16_t numDups;
754 };
755
756 struct sctp_lock_log {
757         void *sock;             /* FIXME: LP64 issue */
758         void *inp;              /* FIXME: LP64 issue */
759         uint8_t tcb_lock;
760         uint8_t inp_lock;
761         uint8_t info_lock;
762         uint8_t sock_lock;
763         uint8_t sockrcvbuf_lock;
764         uint8_t socksndbuf_lock;
765         uint8_t create_lock;
766         uint8_t resv;
767 };
768
769 struct sctp_rto_log {
770         void *net;              /* FIXME: LP64 issue */
771         uint32_t rtt;
772 };
773
774 struct sctp_nagle_log {
775         void *stcb;             /* FIXME: LP64 issue */
776         uint32_t total_flight;
777         uint32_t total_in_queue;
778         uint16_t count_in_queue;
779         uint16_t count_in_flight;
780 };
781
782 struct sctp_sbwake_log {
783         void *stcb;             /* FIXME: LP64 issue */
784         uint16_t send_q;
785         uint16_t sent_q;
786         uint16_t flight;
787         uint16_t wake_cnt;
788         uint8_t stream_qcnt;    /* chnk cnt */
789         uint8_t chunks_on_oque; /* chunks out */
790         uint8_t sbflags;
791         uint8_t sctpflags;
792 };
793
794 struct sctp_misc_info {
795         uint32_t log1;
796         uint32_t log2;
797         uint32_t log3;
798         uint32_t log4;
799 };
800
801 struct sctp_log_closing {
802         void *inp;              /* FIXME: LP64 issue */
803         void *stcb;             /* FIXME: LP64 issue */
804         uint32_t sctp_flags;
805         uint16_t state;
806         int16_t loc;
807 };
808
809 struct sctp_mbuf_log {
810         struct mbuf *mp;        /* FIXME: LP64 issue */
811         caddr_t ext;
812         caddr_t data;
813         uint16_t size;
814         uint8_t refcnt;
815         uint8_t mbuf_flags;
816 };
817
818 struct sctp_cwnd_log {
819         uint64_t time_event;
820         uint8_t from;
821         uint8_t event_type;
822         uint8_t resv[2];
823         union {
824                 struct sctp_log_closing close;
825                 struct sctp_blk_args blk;
826                 struct sctp_cwnd_args cwnd;
827                 struct sctp_str_log strlog;
828                 struct sctp_fr_log fr;
829                 struct sctp_fr_map map;
830                 struct sctp_rwnd_log rwnd;
831                 struct sctp_mbcnt_log mbcnt;
832                 struct sctp_sack_log sack;
833                 struct sctp_lock_log lock;
834                 struct sctp_rto_log rto;
835                 struct sctp_sb_log sb;
836                 struct sctp_nagle_log nagle;
837                 struct sctp_sbwake_log wake;
838                 struct sctp_mbuf_log mb;
839                 struct sctp_misc_info misc;
840         }     x;
841 };
842
843 struct sctp_cwnd_log_req {
844         int32_t num_in_log;     /* Number in log */
845         int32_t num_ret;        /* Number returned */
846         int32_t start_at;       /* start at this one */
847         int32_t end_at;         /* end at this one */
848         struct sctp_cwnd_log log[];
849 };
850
851 struct sctp_timeval {
852         uint32_t tv_sec;
853         uint32_t tv_usec;
854 };
855
856 struct sctpstat {
857         struct sctp_timeval sctps_discontinuitytime;    /* sctpStats 18
858                                                          * (TimeStamp) */
859         /* MIB according to RFC 3873 */
860         uint32_t sctps_currestab;       /* sctpStats  1   (Gauge32) */
861         uint32_t sctps_activeestab;     /* sctpStats  2 (Counter32) */
862         uint32_t sctps_restartestab;
863         uint32_t sctps_collisionestab;
864         uint32_t sctps_passiveestab;    /* sctpStats  3 (Counter32) */
865         uint32_t sctps_aborted; /* sctpStats  4 (Counter32) */
866         uint32_t sctps_shutdown;/* sctpStats  5 (Counter32) */
867         uint32_t sctps_outoftheblue;    /* sctpStats  6 (Counter32) */
868         uint32_t sctps_checksumerrors;  /* sctpStats  7 (Counter32) */
869         uint32_t sctps_outcontrolchunks;        /* sctpStats  8 (Counter64) */
870         uint32_t sctps_outorderchunks;  /* sctpStats  9 (Counter64) */
871         uint32_t sctps_outunorderchunks;        /* sctpStats 10 (Counter64) */
872         uint32_t sctps_incontrolchunks; /* sctpStats 11 (Counter64) */
873         uint32_t sctps_inorderchunks;   /* sctpStats 12 (Counter64) */
874         uint32_t sctps_inunorderchunks; /* sctpStats 13 (Counter64) */
875         uint32_t sctps_fragusrmsgs;     /* sctpStats 14 (Counter64) */
876         uint32_t sctps_reasmusrmsgs;    /* sctpStats 15 (Counter64) */
877         uint32_t sctps_outpackets;      /* sctpStats 16 (Counter64) */
878         uint32_t sctps_inpackets;       /* sctpStats 17 (Counter64) */
879
880         /* input statistics: */
881         uint32_t sctps_recvpackets;     /* total input packets        */
882         uint32_t sctps_recvdatagrams;   /* total input datagrams      */
883         uint32_t sctps_recvpktwithdata; /* total packets that had data */
884         uint32_t sctps_recvsacks;       /* total input SACK chunks    */
885         uint32_t sctps_recvdata;/* total input DATA chunks    */
886         uint32_t sctps_recvdupdata;     /* total input duplicate DATA chunks */
887         uint32_t sctps_recvheartbeat;   /* total input HB chunks      */
888         uint32_t sctps_recvheartbeatack;        /* total input HB-ACK chunks  */
889         uint32_t sctps_recvecne;/* total input ECNE chunks    */
890         uint32_t sctps_recvauth;/* total input AUTH chunks    */
891         uint32_t sctps_recvauthmissing; /* total input chunks missing AUTH */
892         uint32_t sctps_recvivalhmacid;  /* total number of invalid HMAC ids
893                                          * received */
894         uint32_t sctps_recvivalkeyid;   /* total number of invalid secret ids
895                                          * received */
896         uint32_t sctps_recvauthfailed;  /* total number of auth failed */
897         uint32_t sctps_recvexpress;     /* total fast path receives all one
898                                          * chunk */
899         uint32_t sctps_recvexpressm;    /* total fast path multi-part data */
900         uint32_t sctps_recvnocrc;
901         uint32_t sctps_recvswcrc;
902         uint32_t sctps_recvhwcrc;
903
904         /* output statistics: */
905         uint32_t sctps_sendpackets;     /* total output packets       */
906         uint32_t sctps_sendsacks;       /* total output SACKs         */
907         uint32_t sctps_senddata;/* total output DATA chunks   */
908         uint32_t sctps_sendretransdata; /* total output retransmitted DATA
909                                          * chunks */
910         uint32_t sctps_sendfastretrans; /* total output fast retransmitted
911                                          * DATA chunks */
912         uint32_t sctps_sendmultfastretrans;     /* total FR's that happened
913                                                  * more than once to same
914                                                  * chunk (u-del multi-fr
915                                                  * algo). */
916         uint32_t sctps_sendheartbeat;   /* total output HB chunks     */
917         uint32_t sctps_sendecne;/* total output ECNE chunks    */
918         uint32_t sctps_sendauth;/* total output AUTH chunks FIXME   */
919         uint32_t sctps_senderrors;      /* ip_output error counter */
920         uint32_t sctps_sendnocrc;
921         uint32_t sctps_sendswcrc;
922         uint32_t sctps_sendhwcrc;
923         /* PCKDROPREP statistics: */
924         uint32_t sctps_pdrpfmbox;       /* Packet drop from middle box */
925         uint32_t sctps_pdrpfehos;       /* P-drop from end host */
926         uint32_t sctps_pdrpmbda;/* P-drops with data */
927         uint32_t sctps_pdrpmbct;/* P-drops, non-data, non-endhost */
928         uint32_t sctps_pdrpbwrpt;       /* P-drop, non-endhost, bandwidth rep
929                                          * only */
930         uint32_t sctps_pdrpcrupt;       /* P-drop, not enough for chunk header */
931         uint32_t sctps_pdrpnedat;       /* P-drop, not enough data to confirm */
932         uint32_t sctps_pdrppdbrk;       /* P-drop, where process_chunk_drop
933                                          * said break */
934         uint32_t sctps_pdrptsnnf;       /* P-drop, could not find TSN */
935         uint32_t sctps_pdrpdnfnd;       /* P-drop, attempt reverse TSN lookup */
936         uint32_t sctps_pdrpdiwnp;       /* P-drop, e-host confirms zero-rwnd */
937         uint32_t sctps_pdrpdizrw;       /* P-drop, midbox confirms no space */
938         uint32_t sctps_pdrpbadd;/* P-drop, data did not match TSN */
939         uint32_t sctps_pdrpmark;/* P-drop, TSN's marked for Fast Retran */
940         /* timeouts */
941         uint32_t sctps_timoiterator;    /* Number of iterator timers that
942                                          * fired */
943         uint32_t sctps_timodata;/* Number of T3 data time outs */
944         uint32_t sctps_timowindowprobe; /* Number of window probe (T3) timers
945                                          * that fired */
946         uint32_t sctps_timoinit;/* Number of INIT timers that fired */
947         uint32_t sctps_timosack;/* Number of sack timers that fired */
948         uint32_t sctps_timoshutdown;    /* Number of shutdown timers that
949                                          * fired */
950         uint32_t sctps_timoheartbeat;   /* Number of heartbeat timers that
951                                          * fired */
952         uint32_t sctps_timocookie;      /* Number of times a cookie timeout
953                                          * fired */
954         uint32_t sctps_timosecret;      /* Number of times an endpoint changed
955                                          * its cookie secret */
956         uint32_t sctps_timopathmtu;     /* Number of PMTU timers that fired */
957         uint32_t sctps_timoshutdownack; /* Number of shutdown ack timers that
958                                          * fired */
959         uint32_t sctps_timoshutdownguard;       /* Number of shutdown guard
960                                                  * timers that fired */
961         uint32_t sctps_timostrmrst;     /* Number of stream reset timers that
962                                          * fired */
963         uint32_t sctps_timoearlyfr;     /* Number of early FR timers that
964                                          * fired */
965         uint32_t sctps_timoasconf;      /* Number of times an asconf timer
966                                          * fired */
967         uint32_t sctps_timodelprim;     /* Number of times a prim_deleted
968                                          * timer fired */
969         uint32_t sctps_timoautoclose;   /* Number of times auto close timer
970                                          * fired */
971         uint32_t sctps_timoassockill;   /* Number of asoc free timers expired */
972         uint32_t sctps_timoinpkill;     /* Number of inp free timers expired */
973         /* Early fast retransmission counters */
974         uint32_t sctps_earlyfrstart;
975         uint32_t sctps_earlyfrstop;
976         uint32_t sctps_earlyfrmrkretrans;
977         uint32_t sctps_earlyfrstpout;
978         uint32_t sctps_earlyfrstpidsck1;
979         uint32_t sctps_earlyfrstpidsck2;
980         uint32_t sctps_earlyfrstpidsck3;
981         uint32_t sctps_earlyfrstpidsck4;
982         uint32_t sctps_earlyfrstrid;
983         uint32_t sctps_earlyfrstrout;
984         uint32_t sctps_earlyfrstrtmr;
985         /* others */
986         uint32_t sctps_hdrops;  /* packet shorter than header */
987         uint32_t sctps_badsum;  /* checksum error             */
988         uint32_t sctps_noport;  /* no endpoint for port       */
989         uint32_t sctps_badvtag; /* bad v-tag                  */
990         uint32_t sctps_badsid;  /* bad SID                    */
991         uint32_t sctps_nomem;   /* no memory                  */
992         uint32_t sctps_fastretransinrtt;        /* number of multiple FR in a
993                                                  * RTT window */
994         uint32_t sctps_markedretrans;
995         uint32_t sctps_naglesent;       /* nagle allowed sending      */
996         uint32_t sctps_naglequeued;     /* nagle doesn't allow sending */
997         uint32_t sctps_maxburstqueued;  /* max burst doesn't allow sending */
998         uint32_t sctps_ifnomemqueued;   /* look ahead tells us no memory in
999                                          * interface ring buffer OR we had a
1000                                          * send error and are queuing one
1001                                          * send. */
1002         uint32_t sctps_windowprobed;    /* total number of window probes sent */
1003         uint32_t sctps_lowlevelerr;     /* total times an output error causes
1004                                          * us to clamp down on next user send. */
1005         uint32_t sctps_lowlevelerrusr;  /* total times sctp_senderrors were
1006                                          * caused from a user send from a user
1007                                          * invoked send not a sack response */
1008         uint32_t sctps_datadropchklmt;  /* Number of in data drops due to
1009                                          * chunk limit reached */
1010         uint32_t sctps_datadroprwnd;    /* Number of in data drops due to rwnd
1011                                          * limit reached */
1012         uint32_t sctps_ecnereducedcwnd; /* Number of times a ECN reduced the
1013                                          * cwnd */
1014         uint32_t sctps_vtagexpress;     /* Used express lookup via vtag */
1015         uint32_t sctps_vtagbogus;       /* Collision in express lookup. */
1016         uint32_t sctps_primary_randry;  /* Number of times the sender ran dry
1017                                          * of user data on primary */
1018         uint32_t sctps_cmt_randry;      /* Same for above */
1019         uint32_t sctps_slowpath_sack;   /* Sacks the slow way */
1020         uint32_t sctps_wu_sacks_sent;   /* Window Update only sacks sent */
1021         uint32_t sctps_sends_with_flags;        /* number of sends with
1022                                                  * sinfo_flags !=0 */
1023         uint32_t sctps_sends_with_unord;        /* number of unordered sends */
1024         uint32_t sctps_sends_with_eof;  /* number of sends with EOF flag set */
1025         uint32_t sctps_sends_with_abort;        /* number of sends with ABORT
1026                                                  * flag set */
1027         uint32_t sctps_protocol_drain_calls;    /* number of times protocol
1028                                                  * drain called */
1029         uint32_t sctps_protocol_drains_done;    /* number of times we did a
1030                                                  * protocol drain */
1031         uint32_t sctps_read_peeks;      /* Number of times recv was called
1032                                          * with peek */
1033         uint32_t sctps_cached_chk;      /* Number of cached chunks used */
1034         uint32_t sctps_cached_strmoq;   /* Number of cached stream oq's used */
1035         uint32_t sctps_left_abandon;    /* Number of unread messages abandoned
1036                                          * by close */
1037         uint32_t sctps_send_burst_avoid;        /* Unused */
1038         uint32_t sctps_send_cwnd_avoid; /* Send cwnd full  avoidance, already
1039                                          * max burst inflight to net */
1040         uint32_t sctps_fwdtsn_map_over; /* number of map array over-runs via
1041                                          * fwd-tsn's */
1042         uint32_t sctps_queue_upd_ecne;  /* Number of times we queued or
1043                                          * updated an ECN chunk on send queue */
1044         uint32_t sctps_reserved[31];    /* Future ABI compat - remove int's
1045                                          * from here when adding new */
1046 };
1047
1048 #define SCTP_STAT_INCR(_x) SCTP_STAT_INCR_BY(_x,1)
1049 #define SCTP_STAT_DECR(_x) SCTP_STAT_DECR_BY(_x,1)
1050 #if defined(__FreeBSD__) && defined(SMP) && defined(SCTP_USE_PERCPU_STAT)
1051 #define SCTP_STAT_INCR_BY(_x,_d) (SCTP_BASE_STATS[PCPU_GET(cpuid)]._x += _d)
1052 #define SCTP_STAT_DECR_BY(_x,_d) (SCTP_BASE_STATS[PCPU_GET(cpuid)]._x -= _d)
1053 #else
1054 #define SCTP_STAT_INCR_BY(_x,_d) atomic_add_int(&SCTP_BASE_STAT(_x), _d)
1055 #define SCTP_STAT_DECR_BY(_x,_d) atomic_subtract_int(&SCTP_BASE_STAT(_x), _d)
1056 #endif
1057 /* The following macros are for handling MIB values, */
1058 #define SCTP_STAT_INCR_COUNTER32(_x) SCTP_STAT_INCR(_x)
1059 #define SCTP_STAT_INCR_COUNTER64(_x) SCTP_STAT_INCR(_x)
1060 #define SCTP_STAT_INCR_GAUGE32(_x) SCTP_STAT_INCR(_x)
1061 #define SCTP_STAT_DECR_COUNTER32(_x) SCTP_STAT_DECR(_x)
1062 #define SCTP_STAT_DECR_COUNTER64(_x) SCTP_STAT_DECR(_x)
1063 #define SCTP_STAT_DECR_GAUGE32(_x) SCTP_STAT_DECR(_x)
1064
1065 union sctp_sockstore {
1066 #if defined(INET) || !defined(_KERNEL)
1067         struct sockaddr_in sin;
1068 #endif
1069 #if defined(INET6) || !defined(_KERNEL)
1070         struct sockaddr_in6 sin6;
1071 #endif
1072         struct sockaddr sa;
1073 };
1074
1075
1076 /***********************************/
1077 /* And something for us old timers */
1078 /***********************************/
1079
1080 #ifndef ntohll
1081 #include <sys/endian.h>
1082 #define ntohll(x) be64toh(x)
1083 #endif
1084
1085 #ifndef htonll
1086 #include <sys/endian.h>
1087 #define htonll(x) htobe64(x)
1088 #endif
1089 /***********************************/
1090
1091
1092 struct xsctp_inpcb {
1093         uint32_t last;
1094         uint32_t flags;
1095         uint32_t features;
1096         uint32_t total_sends;
1097         uint32_t total_recvs;
1098         uint32_t total_nospaces;
1099         uint32_t fragmentation_point;
1100         uint16_t local_port;
1101         uint16_t qlen;
1102         uint16_t maxqlen;
1103         uint32_t extra_padding[32];     /* future */
1104 };
1105
1106 struct xsctp_tcb {
1107         union sctp_sockstore primary_addr;      /* sctpAssocEntry 5/6 */
1108         uint32_t last;
1109         uint32_t heartbeat_interval;    /* sctpAssocEntry 7   */
1110         uint32_t state;         /* sctpAssocEntry 8   */
1111         uint32_t in_streams;    /* sctpAssocEntry 9   */
1112         uint32_t out_streams;   /* sctpAssocEntry 10  */
1113         uint32_t max_nr_retrans;/* sctpAssocEntry 11  */
1114         uint32_t primary_process;       /* sctpAssocEntry 12  */
1115         uint32_t T1_expireries; /* sctpAssocEntry 13  */
1116         uint32_t T2_expireries; /* sctpAssocEntry 14  */
1117         uint32_t retransmitted_tsns;    /* sctpAssocEntry 15  */
1118         uint32_t total_sends;
1119         uint32_t total_recvs;
1120         uint32_t local_tag;
1121         uint32_t remote_tag;
1122         uint32_t initial_tsn;
1123         uint32_t highest_tsn;
1124         uint32_t cumulative_tsn;
1125         uint32_t cumulative_tsn_ack;
1126         uint32_t mtu;
1127         uint32_t refcnt;
1128         uint16_t local_port;    /* sctpAssocEntry 3   */
1129         uint16_t remote_port;   /* sctpAssocEntry 4   */
1130         struct sctp_timeval start_time; /* sctpAssocEntry 16  */
1131         struct sctp_timeval discontinuity_time; /* sctpAssocEntry 17  */
1132         uint32_t peers_rwnd;
1133         sctp_assoc_t assoc_id;  /* sctpAssocEntry 1   */
1134         uint32_t extra_padding[32];     /* future */
1135 };
1136
1137 struct xsctp_laddr {
1138         union sctp_sockstore address;   /* sctpAssocLocalAddrEntry 1/2 */
1139         uint32_t last;
1140         struct sctp_timeval start_time; /* sctpAssocLocalAddrEntry 3   */
1141         uint32_t extra_padding[32];     /* future */
1142 };
1143
1144 struct xsctp_raddr {
1145         union sctp_sockstore address;   /* sctpAssocLocalRemEntry 1/2 */
1146         uint32_t last;
1147         uint32_t rto;           /* sctpAssocLocalRemEntry 5   */
1148         uint32_t max_path_rtx;  /* sctpAssocLocalRemEntry 6   */
1149         uint32_t rtx;           /* sctpAssocLocalRemEntry 7   */
1150         uint32_t error_counter; /* */
1151         uint32_t cwnd;          /* */
1152         uint32_t flight_size;   /* */
1153         uint32_t mtu;           /* */
1154         uint8_t active;         /* sctpAssocLocalRemEntry 3   */
1155         uint8_t confirmed;      /* */
1156         uint8_t heartbeat_enabled;      /* sctpAssocLocalRemEntry 4   */
1157         struct sctp_timeval start_time; /* sctpAssocLocalRemEntry 8   */
1158         uint32_t rtt;
1159         uint32_t extra_padding[32];     /* future */
1160 };
1161
1162 #define SCTP_MAX_LOGGING_SIZE 30000
1163 #define SCTP_TRACE_PARAMS 6     /* This number MUST be even   */
1164
1165 struct sctp_log_entry {
1166         uint64_t timestamp;
1167         uint32_t subsys;
1168         uint32_t padding;
1169         uint32_t params[SCTP_TRACE_PARAMS];
1170 };
1171
1172 struct sctp_log {
1173         struct sctp_log_entry entry[SCTP_MAX_LOGGING_SIZE];
1174         uint32_t index;
1175         uint32_t padding;
1176 };
1177
1178 /*
1179  * Kernel defined for sctp_send
1180  */
1181 #if defined(_KERNEL) || defined(__Userspace__)
1182 int
1183 sctp_lower_sosend(struct socket *so,
1184     struct sockaddr *addr,
1185     struct uio *uio,
1186     struct mbuf *i_pak,
1187     struct mbuf *control,
1188     int flags,
1189     struct sctp_sndrcvinfo *srcv
1190     ,struct thread *p
1191 );
1192
1193 int
1194 sctp_sorecvmsg(struct socket *so,
1195     struct uio *uio,
1196     struct mbuf **mp,
1197     struct sockaddr *from,
1198     int fromlen,
1199     int *msg_flags,
1200     struct sctp_sndrcvinfo *sinfo,
1201     int filling_sinfo);
1202
1203 #endif
1204
1205 /*
1206  * API system calls
1207  */
1208 #if !(defined(_KERNEL)) && !(defined(__Userspace__))
1209
1210 __BEGIN_DECLS
1211 int sctp_peeloff __P((int, sctp_assoc_t));
1212 int sctp_bindx __P((int, struct sockaddr *, int, int));
1213 int sctp_connectx __P((int, const struct sockaddr *, int, sctp_assoc_t *));
1214 int sctp_getaddrlen __P((sa_family_t));
1215 int sctp_getpaddrs __P((int, sctp_assoc_t, struct sockaddr **));
1216 void sctp_freepaddrs __P((struct sockaddr *));
1217 int sctp_getladdrs __P((int, sctp_assoc_t, struct sockaddr **));
1218 void sctp_freeladdrs __P((struct sockaddr *));
1219 int sctp_opt_info __P((int, sctp_assoc_t, int, void *, socklen_t *));
1220
1221 /* deprecated */
1222 ssize_t sctp_sendmsg 
1223 __P((int, const void *, size_t, const struct sockaddr *,
1224     socklen_t, uint32_t, uint32_t, uint16_t, uint32_t, uint32_t));
1225
1226 /* deprecated */
1227         ssize_t sctp_send __P((int, const void *, size_t,
1228               const struct sctp_sndrcvinfo *, int));
1229
1230 /* deprecated */
1231         ssize_t sctp_sendx __P((int, const void *, size_t, struct sockaddr *,
1232                int, struct sctp_sndrcvinfo *, int));
1233
1234 /* deprecated */
1235         ssize_t sctp_sendmsgx __P((int sd, const void *, size_t, struct sockaddr *,
1236                   int, uint32_t, uint32_t, uint16_t, uint32_t, uint32_t));
1237
1238         sctp_assoc_t sctp_getassocid __P((int, struct sockaddr *));
1239
1240 /* deprecated */
1241         ssize_t sctp_recvmsg __P((int, void *, size_t, struct sockaddr *, socklen_t *,
1242                  struct sctp_sndrcvinfo *, int *));
1243
1244         ssize_t sctp_sendv __P((int, const struct iovec *, int, struct sockaddr *,
1245                int, void *, socklen_t, unsigned int, int));
1246
1247         ssize_t sctp_recvv __P((int, const struct iovec *, int, struct sockaddr *,
1248                socklen_t *, void *, socklen_t *, unsigned int *, int *));
1249
1250 __END_DECLS
1251
1252 #endif                          /* !_KERNEL */
1253 #endif                          /* !__sctp_uio_h__ */