xref: /freebsd/sys/netinet/sctp_structs.h (revision 51369649b03ece2aed3eb61b0c8214b9aa5b2fa2)
1f8829a4aSRandall Stewart /*-
2*51369649SPedro F. Giffuni  * SPDX-License-Identifier: BSD-3-Clause
3*51369649SPedro F. Giffuni  *
4830d754dSRandall Stewart  * Copyright (c) 2001-2008, by Cisco Systems, Inc. All rights reserved.
5807aad63SMichael Tuexen  * Copyright (c) 2008-2012, by Randall Stewart. All rights reserved.
6807aad63SMichael Tuexen  * Copyright (c) 2008-2012, by Michael Tuexen. All rights reserved.
7f8829a4aSRandall Stewart  *
8f8829a4aSRandall Stewart  * Redistribution and use in source and binary forms, with or without
9f8829a4aSRandall Stewart  * modification, are permitted provided that the following conditions are met:
10f8829a4aSRandall Stewart  *
11f8829a4aSRandall Stewart  * a) Redistributions of source code must retain the above copyright notice,
12f8829a4aSRandall Stewart  *    this list of conditions and the following disclaimer.
13f8829a4aSRandall Stewart  *
14f8829a4aSRandall Stewart  * b) Redistributions in binary form must reproduce the above copyright
15f8829a4aSRandall Stewart  *    notice, this list of conditions and the following disclaimer in
16f8829a4aSRandall Stewart  *    the documentation and/or other materials provided with the distribution.
17f8829a4aSRandall Stewart  *
18f8829a4aSRandall Stewart  * c) Neither the name of Cisco Systems, Inc. nor the names of its
19f8829a4aSRandall Stewart  *    contributors may be used to endorse or promote products derived
20f8829a4aSRandall Stewart  *    from this software without specific prior written permission.
21f8829a4aSRandall Stewart  *
22f8829a4aSRandall Stewart  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
23f8829a4aSRandall Stewart  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
24f8829a4aSRandall Stewart  * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
25f8829a4aSRandall Stewart  * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
26f8829a4aSRandall Stewart  * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
27f8829a4aSRandall Stewart  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
28f8829a4aSRandall Stewart  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
29f8829a4aSRandall Stewart  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
30f8829a4aSRandall Stewart  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
31f8829a4aSRandall Stewart  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
32f8829a4aSRandall Stewart  * THE POSSIBILITY OF SUCH DAMAGE.
33f8829a4aSRandall Stewart  */
34f8829a4aSRandall Stewart 
35f8829a4aSRandall Stewart #include <sys/cdefs.h>
36f8829a4aSRandall Stewart __FBSDID("$FreeBSD$");
37f8829a4aSRandall Stewart 
38807aad63SMichael Tuexen #ifndef _NETINET_SCTP_STRUCTS_H_
39807aad63SMichael Tuexen #define _NETINET_SCTP_STRUCTS_H_
40f8829a4aSRandall Stewart 
41139bc87fSRandall Stewart #include <netinet/sctp_os.h>
42f8829a4aSRandall Stewart #include <netinet/sctp_header.h>
43f8829a4aSRandall Stewart #include <netinet/sctp_auth.h>
44f8829a4aSRandall Stewart 
45f8829a4aSRandall Stewart struct sctp_timer {
46139bc87fSRandall Stewart 	sctp_os_timer_t timer;
47139bc87fSRandall Stewart 
48f8829a4aSRandall Stewart 	int type;
49f8829a4aSRandall Stewart 	/*
50f8829a4aSRandall Stewart 	 * Depending on the timer type these will be setup and cast with the
51f8829a4aSRandall Stewart 	 * appropriate entity.
52f8829a4aSRandall Stewart 	 */
53f8829a4aSRandall Stewart 	void *ep;
54f8829a4aSRandall Stewart 	void *tcb;
55f8829a4aSRandall Stewart 	void *net;
568518270eSMichael Tuexen 	void *vnet;
57f8829a4aSRandall Stewart 
58f8829a4aSRandall Stewart 	/* for sanity checking */
59f8829a4aSRandall Stewart 	void *self;
60f8829a4aSRandall Stewart 	uint32_t ticks;
61a5d547adSRandall Stewart 	uint32_t stopped_from;
62f8829a4aSRandall Stewart };
63f8829a4aSRandall Stewart 
64f8829a4aSRandall Stewart 
65a5d547adSRandall Stewart struct sctp_foo_stuff {
66a5d547adSRandall Stewart 	struct sctp_inpcb *inp;
67a5d547adSRandall Stewart 	uint32_t lineno;
68a5d547adSRandall Stewart 	uint32_t ticks;
69a5d547adSRandall Stewart 	int updown;
70a5d547adSRandall Stewart };
71a5d547adSRandall Stewart 
72f8829a4aSRandall Stewart 
73f8829a4aSRandall Stewart /*
74f8829a4aSRandall Stewart  * This is the information we track on each interface that we know about from
75f8829a4aSRandall Stewart  * the distant end.
76f8829a4aSRandall Stewart  */
77f8829a4aSRandall Stewart TAILQ_HEAD(sctpnetlisthead, sctp_nets);
78f8829a4aSRandall Stewart 
79f8829a4aSRandall Stewart struct sctp_stream_reset_list {
80f8829a4aSRandall Stewart 	TAILQ_ENTRY(sctp_stream_reset_list) next_resp;
817cca1775SRandall Stewart 	uint32_t seq;
82f8829a4aSRandall Stewart 	uint32_t tsn;
83a169d6ecSMichael Tuexen 	uint32_t number_entries;
84a169d6ecSMichael Tuexen 	uint16_t list_of_streams[];
85f8829a4aSRandall Stewart };
86f8829a4aSRandall Stewart 
87f8829a4aSRandall Stewart TAILQ_HEAD(sctp_resethead, sctp_stream_reset_list);
88f8829a4aSRandall Stewart 
89f8829a4aSRandall Stewart /*
90f8829a4aSRandall Stewart  * Users of the iterator need to malloc a iterator with a call to
9142551e99SRandall Stewart  * sctp_initiate_iterator(inp_func, assoc_func, inp_func,  pcb_flags, pcb_features,
92f8829a4aSRandall Stewart  *     asoc_state, void-ptr-arg, uint32-arg, end_func, inp);
93f8829a4aSRandall Stewart  *
94f8829a4aSRandall Stewart  * Use the following two defines if you don't care what pcb flags are on the EP
95f8829a4aSRandall Stewart  * and/or you don't care what state the association is in.
96f8829a4aSRandall Stewart  *
97f8829a4aSRandall Stewart  * Note that if you specify an INP as the last argument then ONLY each
98f8829a4aSRandall Stewart  * association of that single INP will be executed upon. Note that the pcb
99f8829a4aSRandall Stewart  * flags STILL apply so if the inp you specify has different pcb_flags then
100f8829a4aSRandall Stewart  * what you put in pcb_flags nothing will happen. use SCTP_PCB_ANY_FLAGS to
101f8829a4aSRandall Stewart  * assure the inp you specify gets treated.
102f8829a4aSRandall Stewart  */
103f8829a4aSRandall Stewart #define SCTP_PCB_ANY_FLAGS	0x00000000
104f8829a4aSRandall Stewart #define SCTP_PCB_ANY_FEATURES	0x00000000
105f8829a4aSRandall Stewart #define SCTP_ASOC_ANY_STATE	0x00000000
106f8829a4aSRandall Stewart 
107f8829a4aSRandall Stewart typedef void (*asoc_func) (struct sctp_inpcb *, struct sctp_tcb *, void *ptr,
108f8829a4aSRandall Stewart          uint32_t val);
10942551e99SRandall Stewart typedef int (*inp_func) (struct sctp_inpcb *, void *ptr, uint32_t val);
110f8829a4aSRandall Stewart typedef void (*end_func) (void *ptr, uint32_t val);
111f8829a4aSRandall Stewart 
112bfc46083SRandall Stewart #if defined(__FreeBSD__) && defined(SCTP_MCORE_INPUT) && defined(SMP)
113bfc46083SRandall Stewart /* whats on the mcore control struct */
114bfc46083SRandall Stewart struct sctp_mcore_queue {
115bfc46083SRandall Stewart 	TAILQ_ENTRY(sctp_mcore_queue) next;
116bfc46083SRandall Stewart 	struct vnet *vn;
117bfc46083SRandall Stewart 	struct mbuf *m;
118bfc46083SRandall Stewart 	int off;
119bfc46083SRandall Stewart 	int v6;
120bfc46083SRandall Stewart };
121bfc46083SRandall Stewart 
122bfc46083SRandall Stewart TAILQ_HEAD(sctp_mcore_qhead, sctp_mcore_queue);
123bfc46083SRandall Stewart 
124bfc46083SRandall Stewart struct sctp_mcore_ctrl {
125bfc46083SRandall Stewart 	SCTP_PROCESS_STRUCT thread_proc;
126bfc46083SRandall Stewart 	struct sctp_mcore_qhead que;
127bfc46083SRandall Stewart 	struct mtx core_mtx;
128bfc46083SRandall Stewart 	struct mtx que_mtx;
129bfc46083SRandall Stewart 	int running;
130bfc46083SRandall Stewart 	int cpuid;
131bfc46083SRandall Stewart };
132bfc46083SRandall Stewart 
133bfc46083SRandall Stewart 
134bfc46083SRandall Stewart #endif
135bfc46083SRandall Stewart 
136bfc46083SRandall Stewart 
137f8829a4aSRandall Stewart struct sctp_iterator {
13842551e99SRandall Stewart 	TAILQ_ENTRY(sctp_iterator) sctp_nxt_itr;
139f7517433SRandall Stewart 	struct vnet *vn;
140f8829a4aSRandall Stewart 	struct sctp_timer tmr;
141f8829a4aSRandall Stewart 	struct sctp_inpcb *inp;	/* current endpoint */
142f8829a4aSRandall Stewart 	struct sctp_tcb *stcb;	/* current* assoc */
143f7517433SRandall Stewart 	struct sctp_inpcb *next_inp;	/* special hook to skip to */
144f8829a4aSRandall Stewart 	asoc_func function_assoc;	/* per assoc function */
145f8829a4aSRandall Stewart 	inp_func function_inp;	/* per endpoint function */
14642551e99SRandall Stewart 	inp_func function_inp_end;	/* end INP function */
147f8829a4aSRandall Stewart 	end_func function_atend;/* iterator completion function */
148f8829a4aSRandall Stewart 	void *pointer;		/* pointer for apply func to use */
149f8829a4aSRandall Stewart 	uint32_t val;		/* value for apply func to use */
150f8829a4aSRandall Stewart 	uint32_t pcb_flags;	/* endpoint flags being checked */
151f8829a4aSRandall Stewart 	uint32_t pcb_features;	/* endpoint features being checked */
152f8829a4aSRandall Stewart 	uint32_t asoc_state;	/* assoc state being checked */
153f8829a4aSRandall Stewart 	uint32_t iterator_flags;
154f8829a4aSRandall Stewart 	uint8_t no_chunk_output;
15542551e99SRandall Stewart 	uint8_t done_current_ep;
156f8829a4aSRandall Stewart };
157f8829a4aSRandall Stewart 
158f8829a4aSRandall Stewart /* iterator_flags values */
159f8829a4aSRandall Stewart #define SCTP_ITERATOR_DO_ALL_INP	0x00000001
160f8829a4aSRandall Stewart #define SCTP_ITERATOR_DO_SINGLE_INP	0x00000002
161f8829a4aSRandall Stewart 
162f7517433SRandall Stewart 
16342551e99SRandall Stewart TAILQ_HEAD(sctpiterators, sctp_iterator);
164f8829a4aSRandall Stewart 
165f8829a4aSRandall Stewart struct sctp_copy_all {
166f8829a4aSRandall Stewart 	struct sctp_inpcb *inp;	/* ep */
167f8829a4aSRandall Stewart 	struct mbuf *m;
168f8829a4aSRandall Stewart 	struct sctp_sndrcvinfo sndrcv;
169f8829a4aSRandall Stewart 	int sndlen;
170f8829a4aSRandall Stewart 	int cnt_sent;
171f8829a4aSRandall Stewart 	int cnt_failed;
172f8829a4aSRandall Stewart };
173f8829a4aSRandall Stewart 
17442551e99SRandall Stewart struct sctp_asconf_iterator {
17542551e99SRandall Stewart 	struct sctpladdr list_of_work;
17642551e99SRandall Stewart 	int cnt;
17742551e99SRandall Stewart };
17842551e99SRandall Stewart 
179f7517433SRandall Stewart struct iterator_control {
180f7517433SRandall Stewart 	struct mtx ipi_iterator_wq_mtx;
181f7517433SRandall Stewart 	struct mtx it_mtx;
182f7517433SRandall Stewart 	SCTP_PROCESS_STRUCT thread_proc;
183f7517433SRandall Stewart 	struct sctpiterators iteratorhead;
184f7517433SRandall Stewart 	struct sctp_iterator *cur_it;
185f7517433SRandall Stewart 	uint32_t iterator_running;
186f7517433SRandall Stewart 	uint32_t iterator_flags;
187f7517433SRandall Stewart };
18887eac1ceSMichael Tuexen #define SCTP_ITERATOR_STOP_CUR_IT	0x00000004
18987eac1ceSMichael Tuexen #define SCTP_ITERATOR_STOP_CUR_INP	0x00000008
190f7517433SRandall Stewart 
19117205eccSRandall Stewart struct sctp_net_route {
19217205eccSRandall Stewart 	sctp_rtentry_t *ro_rt;
193273e3163SMichael Tuexen 	struct llentry *ro_lle;
19479cadff4SMichael Tuexen 	char *ro_prepend;
19579cadff4SMichael Tuexen 	uint16_t ro_plen;
19679cadff4SMichael Tuexen 	uint16_t ro_flags;
19779cadff4SMichael Tuexen 	uint16_t ro_mtu;
19879cadff4SMichael Tuexen 	uint16_t spare;
19917205eccSRandall Stewart 	union sctp_sockstore _l_addr;	/* remote peer addr */
20017205eccSRandall Stewart 	struct sctp_ifa *_s_addr;	/* our selected src addr */
20117205eccSRandall Stewart };
20217205eccSRandall Stewart 
203b54d3a6cSRandall Stewart struct htcp {
204b54d3a6cSRandall Stewart 	uint16_t alpha;		/* Fixed point arith, << 7 */
205b54d3a6cSRandall Stewart 	uint8_t beta;		/* Fixed point arith, << 7 */
206b54d3a6cSRandall Stewart 	uint8_t modeswitch;	/* Delay modeswitch until we had at least one
207b54d3a6cSRandall Stewart 				 * congestion event */
208b54d3a6cSRandall Stewart 	uint32_t last_cong;	/* Time since last congestion event end */
209b54d3a6cSRandall Stewart 	uint32_t undo_last_cong;
210b54d3a6cSRandall Stewart 	uint16_t bytes_acked;
211b54d3a6cSRandall Stewart 	uint32_t bytecount;
212b54d3a6cSRandall Stewart 	uint32_t minRTT;
213b54d3a6cSRandall Stewart 	uint32_t maxRTT;
214b54d3a6cSRandall Stewart 
215b54d3a6cSRandall Stewart 	uint32_t undo_maxRTT;
216b54d3a6cSRandall Stewart 	uint32_t undo_old_maxB;
217b54d3a6cSRandall Stewart 
218b54d3a6cSRandall Stewart 	/* Bandwidth estimation */
219b54d3a6cSRandall Stewart 	uint32_t minB;
220b54d3a6cSRandall Stewart 	uint32_t maxB;
221b54d3a6cSRandall Stewart 	uint32_t old_maxB;
222b54d3a6cSRandall Stewart 	uint32_t Bi;
223b54d3a6cSRandall Stewart 	uint32_t lasttime;
224b54d3a6cSRandall Stewart };
225b54d3a6cSRandall Stewart 
22648b6c649SRandall Stewart struct rtcc_cc {
22748b6c649SRandall Stewart 	struct timeval tls;	/* The time we started the sending  */
22848b6c649SRandall Stewart 	uint64_t lbw;		/* Our last estimated bw */
22948b6c649SRandall Stewart 	uint64_t lbw_rtt;	/* RTT at bw estimate */
23048b6c649SRandall Stewart 	uint64_t bw_bytes;	/* The total bytes since this sending began */
23148b6c649SRandall Stewart 	uint64_t bw_tot_time;	/* The total time since sending began */
23248b6c649SRandall Stewart 	uint64_t new_tot_time;	/* temp holding the new value */
233f79aab18SRandall Stewart 	uint64_t bw_bytes_at_last_rttc;	/* What bw_bytes was at last rtt calc */
234f79aab18SRandall Stewart 	uint32_t cwnd_at_bw_set;/* Cwnd at last bw saved - lbw */
235f79aab18SRandall Stewart 	uint32_t vol_reduce;	/* cnt of voluntary reductions */
236f79aab18SRandall Stewart 	uint16_t steady_step;	/* The number required to be in steady state */
237f79aab18SRandall Stewart 	uint16_t step_cnt;	/* The current number */
238f79aab18SRandall Stewart 	uint8_t ret_from_eq;	/* When all things are equal what do I return
239f79aab18SRandall Stewart 				 * 0/1 - 1 no cc advance */
240f79aab18SRandall Stewart 	uint8_t use_dccc_ecn;	/* Flag to enable DCCC ECN */
24148b6c649SRandall Stewart 	uint8_t tls_needs_set;	/* Flag to indicate we need to set tls 0 or 1
24248b6c649SRandall Stewart 				 * means set at send 2 not */
243f79aab18SRandall Stewart 	uint8_t last_step_state;/* Last state if steady state stepdown is on */
244f79aab18SRandall Stewart 	uint8_t rtt_set_this_sack;	/* Flag saying this sack had RTT calc
245f79aab18SRandall Stewart 					 * on it */
246f79aab18SRandall Stewart 	uint8_t last_inst_ind;	/* Last saved inst indication */
24748b6c649SRandall Stewart };
24848b6c649SRandall Stewart 
24948b6c649SRandall Stewart 
250f8829a4aSRandall Stewart struct sctp_nets {
251f8829a4aSRandall Stewart 	TAILQ_ENTRY(sctp_nets) sctp_next;	/* next link */
252f8829a4aSRandall Stewart 
253f8829a4aSRandall Stewart 	/*
254f8829a4aSRandall Stewart 	 * Things on the top half may be able to be split into a common
255f8829a4aSRandall Stewart 	 * structure shared by all.
256f8829a4aSRandall Stewart 	 */
257f8829a4aSRandall Stewart 	struct sctp_timer pmtu_timer;
258ca85e948SMichael Tuexen 	struct sctp_timer hb_timer;
259f8829a4aSRandall Stewart 
260f8829a4aSRandall Stewart 	/*
261f8829a4aSRandall Stewart 	 * The following two in combination equate to a route entry for v6
262f8829a4aSRandall Stewart 	 * or v4.
263f8829a4aSRandall Stewart 	 */
26417205eccSRandall Stewart 	struct sctp_net_route ro;
26517205eccSRandall Stewart 
266f8829a4aSRandall Stewart 	/* mtu discovered so far */
267f8829a4aSRandall Stewart 	uint32_t mtu;
268f8829a4aSRandall Stewart 	uint32_t ssthresh;	/* not sure about this one for split */
269a21779f0SRandall Stewart 	uint32_t last_cwr_tsn;
270a21779f0SRandall Stewart 	uint32_t cwr_window_tsn;
271a21779f0SRandall Stewart 	uint32_t ecn_ce_pkt_cnt;
272a21779f0SRandall Stewart 	uint32_t lost_cnt;
273f8829a4aSRandall Stewart 	/* smoothed average things for RTT and RTO itself */
274f8829a4aSRandall Stewart 	int lastsa;
275f8829a4aSRandall Stewart 	int lastsv;
276be1d9176SMichael Tuexen 	uint64_t rtt;		/* last measured rtt value in us */
277f8829a4aSRandall Stewart 	unsigned int RTO;
278f8829a4aSRandall Stewart 
279f8829a4aSRandall Stewart 	/* This is used for SHUTDOWN/SHUTDOWN-ACK/SEND or INIT timers */
280f8829a4aSRandall Stewart 	struct sctp_timer rxt_timer;
281f8829a4aSRandall Stewart 
282f8829a4aSRandall Stewart 	/* last time in seconds I sent to it */
283f8829a4aSRandall Stewart 	struct timeval last_sent_time;
284299108c5SRandall Stewart 	union cc_control_data {
285299108c5SRandall Stewart 		struct htcp htcp_ca;	/* JRS - struct used in HTCP algorithm */
28648b6c649SRandall Stewart 		struct rtcc_cc rtcc;	/* rtcc module cc stuff  */
287299108c5SRandall Stewart 	}               cc_mod;
288f8829a4aSRandall Stewart 	int ref_count;
289f8829a4aSRandall Stewart 
290f8829a4aSRandall Stewart 	/* Congestion stats per destination */
291f8829a4aSRandall Stewart 	/*
292f8829a4aSRandall Stewart 	 * flight size variables and such, sorry Vern, I could not avoid
293f8829a4aSRandall Stewart 	 * this if I wanted performance :>
294f8829a4aSRandall Stewart 	 */
295f8829a4aSRandall Stewart 	uint32_t flight_size;
296f8829a4aSRandall Stewart 	uint32_t cwnd;		/* actual cwnd */
297f8829a4aSRandall Stewart 	uint32_t prev_cwnd;	/* cwnd before any processing */
298899288aeSRandall Stewart 	uint32_t ecn_prev_cwnd;	/* ECN prev cwnd at first ecn_echo seen in new
299899288aeSRandall Stewart 				 * window */
300f8829a4aSRandall Stewart 	uint32_t partial_bytes_acked;	/* in CA tracks when to incr a MTU */
301f8829a4aSRandall Stewart 	/* tracking variables to avoid the aloc/free in sack processing */
302f8829a4aSRandall Stewart 	unsigned int net_ack;
303f8829a4aSRandall Stewart 	unsigned int net_ack2;
304f8829a4aSRandall Stewart 
305f8829a4aSRandall Stewart 	/*
306b54d3a6cSRandall Stewart 	 * JRS - 5/8/07 - Variable to track last time a destination was
307b54d3a6cSRandall Stewart 	 * active for CMT PF
308b54d3a6cSRandall Stewart 	 */
309b54d3a6cSRandall Stewart 	uint32_t last_active;
310b54d3a6cSRandall Stewart 
311b54d3a6cSRandall Stewart 	/*
312f8829a4aSRandall Stewart 	 * CMT variables (iyengar@cis.udel.edu)
313f8829a4aSRandall Stewart 	 */
314f8829a4aSRandall Stewart 	uint32_t this_sack_highest_newack;	/* tracks highest TSN newly
315f8829a4aSRandall Stewart 						 * acked for a given dest in
316f8829a4aSRandall Stewart 						 * the current SACK. Used in
317f8829a4aSRandall Stewart 						 * SFR and HTNA algos */
318f8829a4aSRandall Stewart 	uint32_t pseudo_cumack;	/* CMT CUC algorithm. Maintains next expected
319f8829a4aSRandall Stewart 				 * pseudo-cumack for this destination */
320f8829a4aSRandall Stewart 	uint32_t rtx_pseudo_cumack;	/* CMT CUC algorithm. Maintains next
321f8829a4aSRandall Stewart 					 * expected pseudo-cumack for this
322f8829a4aSRandall Stewart 					 * destination */
323f8829a4aSRandall Stewart 
324f8829a4aSRandall Stewart 	/* CMT fast recovery variables */
325f8829a4aSRandall Stewart 	uint32_t fast_recovery_tsn;
326f8829a4aSRandall Stewart 	uint32_t heartbeat_random1;
327f8829a4aSRandall Stewart 	uint32_t heartbeat_random2;
32858bdb691SMichael Tuexen #ifdef INET6
329b10f2dc8SMichael Tuexen 	uint32_t flowlabel;
33058bdb691SMichael Tuexen #endif
331b10f2dc8SMichael Tuexen 	uint8_t dscp;
332f8829a4aSRandall Stewart 
3335e54f665SRandall Stewart 	struct timeval start_time;	/* time when this net was created */
3345e54f665SRandall Stewart 	uint32_t marked_retrans;/* number or DATA chunks marked for timer
3355e54f665SRandall Stewart 				 * based retransmissions */
3365e54f665SRandall Stewart 	uint32_t marked_fastretrans;
337ca85e948SMichael Tuexen 	uint32_t heart_beat_delay;	/* Heart Beat delay in ms */
3385e54f665SRandall Stewart 
339f8829a4aSRandall Stewart 	/* if this guy is ok or not ... status */
340f8829a4aSRandall Stewart 	uint16_t dest_state;
341ca85e948SMichael Tuexen 	/* number of timeouts to consider the destination unreachable */
342f8829a4aSRandall Stewart 	uint16_t failure_threshold;
343ca85e948SMichael Tuexen 	/* number of timeouts to consider the destination potentially failed */
344ca85e948SMichael Tuexen 	uint16_t pf_threshold;
345ca85e948SMichael Tuexen 	/* error stats on the destination */
346f8829a4aSRandall Stewart 	uint16_t error_count;
347c54a18d2SRandall Stewart 	/* UDP port number in case of UDP tunneling */
348c54a18d2SRandall Stewart 	uint16_t port;
349f8829a4aSRandall Stewart 
350f8829a4aSRandall Stewart 	uint8_t fast_retran_loss_recovery;
351f8829a4aSRandall Stewart 	uint8_t will_exit_fast_recovery;
352f8829a4aSRandall Stewart 	/* Flags that probably can be combined into dest_state */
353f8829a4aSRandall Stewart 	uint8_t fast_retran_ip;	/* fast retransmit in progress */
354f8829a4aSRandall Stewart 	uint8_t hb_responded;
355f8829a4aSRandall Stewart 	uint8_t saw_newack;	/* CMT's SFR algorithm flag */
356f8829a4aSRandall Stewart 	uint8_t src_addr_selected;	/* if we split we move */
357f8829a4aSRandall Stewart 	uint8_t indx_of_eligible_next_to_use;
358f8829a4aSRandall Stewart 	uint8_t addr_is_local;	/* its a local address (if known) could move
359f8829a4aSRandall Stewart 				 * in split */
360f8829a4aSRandall Stewart 
361f8829a4aSRandall Stewart 	/*
362f8829a4aSRandall Stewart 	 * CMT variables (iyengar@cis.udel.edu)
363f8829a4aSRandall Stewart 	 */
364f8829a4aSRandall Stewart 	uint8_t find_pseudo_cumack;	/* CMT CUC algorithm. Flag used to
365f8829a4aSRandall Stewart 					 * find a new pseudocumack. This flag
366f8829a4aSRandall Stewart 					 * is set after a new pseudo-cumack
367f8829a4aSRandall Stewart 					 * has been received and indicates
368f8829a4aSRandall Stewart 					 * that the sender should find the
369f8829a4aSRandall Stewart 					 * next pseudo-cumack expected for
370f8829a4aSRandall Stewart 					 * this destination */
371f8829a4aSRandall Stewart 	uint8_t find_rtx_pseudo_cumack;	/* CMT CUCv2 algorithm. Flag used to
372f8829a4aSRandall Stewart 					 * find a new rtx-pseudocumack. This
373f8829a4aSRandall Stewart 					 * flag is set after a new
374f8829a4aSRandall Stewart 					 * rtx-pseudo-cumack has been received
375f8829a4aSRandall Stewart 					 * and indicates that the sender
376f8829a4aSRandall Stewart 					 * should find the next
377f8829a4aSRandall Stewart 					 * rtx-pseudo-cumack expected for this
378f8829a4aSRandall Stewart 					 * destination */
379f8829a4aSRandall Stewart 	uint8_t new_pseudo_cumack;	/* CMT CUC algorithm. Flag used to
380f8829a4aSRandall Stewart 					 * indicate if a new pseudo-cumack or
381f8829a4aSRandall Stewart 					 * rtx-pseudo-cumack has been received */
3825e54f665SRandall Stewart 	uint8_t window_probe;	/* Doing a window probe? */
3839a972525SRandall Stewart 	uint8_t RTO_measured;	/* Have we done the first measure */
384f8829a4aSRandall Stewart 	uint8_t last_hs_used;	/* index into the last HS table entry we used */
385899288aeSRandall Stewart 	uint8_t lan_type;
386f79aab18SRandall Stewart 	uint8_t rto_needed;
387a4ae38f1SMichael Tuexen 	uint32_t flowid;
388457b4b88SMichael Tuexen 	uint8_t flowtype;
389f8829a4aSRandall Stewart };
390f8829a4aSRandall Stewart 
391f8829a4aSRandall Stewart 
392f8829a4aSRandall Stewart struct sctp_data_chunkrec {
39349656eefSMichael Tuexen 	uint32_t tsn;		/* the TSN of this transmit */
39449656eefSMichael Tuexen 	uint32_t mid;		/* the message identifier of this transmit */
39549656eefSMichael Tuexen 	uint16_t sid;		/* the stream number of this guy */
39649656eefSMichael Tuexen 	uint32_t ppid;
397f8829a4aSRandall Stewart 	uint32_t context;	/* from send */
398899288aeSRandall Stewart 	uint32_t cwnd_at_send;
399f8829a4aSRandall Stewart 	/*
400f8829a4aSRandall Stewart 	 * part of the Highest sacked algorithm to be able to stroke counts
401f8829a4aSRandall Stewart 	 * on ones that are FR'd.
402f8829a4aSRandall Stewart 	 */
403f8829a4aSRandall Stewart 	uint32_t fast_retran_tsn;	/* sending_seq at the time of FR */
404f8829a4aSRandall Stewart 	struct timeval timetodrop;	/* time we drop it from queue */
40549656eefSMichael Tuexen 	uint32_t fsn;		/* Fragment Sequence Number */
406f8829a4aSRandall Stewart 	uint8_t doing_fast_retransmit;
407f8829a4aSRandall Stewart 	uint8_t rcv_flags;	/* flags pulled from data chunk on inbound for
408a5d547adSRandall Stewart 				 * outbound holds sending flags for PR-SCTP. */
409f8829a4aSRandall Stewart 	uint8_t state_flags;
410f8829a4aSRandall Stewart 	uint8_t chunk_was_revoked;
411899288aeSRandall Stewart 	uint8_t fwd_tsn_cnt;
412f8829a4aSRandall Stewart };
413f8829a4aSRandall Stewart 
414f8829a4aSRandall Stewart TAILQ_HEAD(sctpchunk_listhead, sctp_tmit_chunk);
415f8829a4aSRandall Stewart 
416f8829a4aSRandall Stewart /* The lower byte is used to enumerate PR_SCTP policies */
417f8829a4aSRandall Stewart #define CHUNK_FLAGS_PR_SCTP_TTL	        SCTP_PR_SCTP_TTL
418f8829a4aSRandall Stewart #define CHUNK_FLAGS_PR_SCTP_BUF	        SCTP_PR_SCTP_BUF
419f8829a4aSRandall Stewart #define CHUNK_FLAGS_PR_SCTP_RTX         SCTP_PR_SCTP_RTX
420f8829a4aSRandall Stewart 
421f1cf0245SMichael Tuexen /* The upper byte is used as a bit mask */
422f8829a4aSRandall Stewart #define CHUNK_FLAGS_FRAGMENT_OK	        0x0100
423f8829a4aSRandall Stewart 
424f8829a4aSRandall Stewart struct chk_id {
425aa7e5af8SMichael Tuexen 	uint8_t id;
426aa7e5af8SMichael Tuexen 	uint8_t can_take_data;
427f8829a4aSRandall Stewart };
428f8829a4aSRandall Stewart 
429f8829a4aSRandall Stewart 
430f8829a4aSRandall Stewart struct sctp_tmit_chunk {
431f8829a4aSRandall Stewart 	union {
432f8829a4aSRandall Stewart 		struct sctp_data_chunkrec data;
433f8829a4aSRandall Stewart 		struct chk_id chunk_id;
434f8829a4aSRandall Stewart 	}     rec;
435f8829a4aSRandall Stewart 	struct sctp_association *asoc;	/* bp to asoc this belongs to */
436f8829a4aSRandall Stewart 	struct timeval sent_rcv_time;	/* filled in if RTT being calculated */
437f8829a4aSRandall Stewart 	struct mbuf *data;	/* pointer to mbuf chain of data */
438f8829a4aSRandall Stewart 	struct mbuf *last_mbuf;	/* pointer to last mbuf in chain */
439f8829a4aSRandall Stewart 	struct sctp_nets *whoTo;
440f8829a4aSRandall Stewart 	          TAILQ_ENTRY(sctp_tmit_chunk) sctp_next;	/* next link */
441f8829a4aSRandall Stewart 	int32_t sent;		/* the send status */
442f8829a4aSRandall Stewart 	uint16_t snd_count;	/* number of times I sent */
443f8829a4aSRandall Stewart 	uint16_t flags;		/* flags, such as FRAGMENT_OK */
444f8829a4aSRandall Stewart 	uint16_t send_size;
445f8829a4aSRandall Stewart 	uint16_t book_size;
446f8829a4aSRandall Stewart 	uint16_t mbcnt;
447830d754dSRandall Stewart 	uint16_t auth_keyid;
448830d754dSRandall Stewart 	uint8_t holds_key_ref;	/* flag if auth keyid refcount is held */
449f8829a4aSRandall Stewart 	uint8_t pad_inplace;
450f8829a4aSRandall Stewart 	uint8_t do_rtt;
451f8829a4aSRandall Stewart 	uint8_t book_size_scale;
452f8829a4aSRandall Stewart 	uint8_t no_fr_allowed;
453f8829a4aSRandall Stewart 	uint8_t copy_by_ref;
4545e54f665SRandall Stewart 	uint8_t window_probe;
455f8829a4aSRandall Stewart };
456f8829a4aSRandall Stewart 
457f8829a4aSRandall Stewart struct sctp_queued_to_read {	/* sinfo structure Pluse more */
458f8829a4aSRandall Stewart 	uint16_t sinfo_stream;	/* off the wire */
459f8829a4aSRandall Stewart 	uint16_t sinfo_flags;	/* SCTP_UNORDERED from wire use SCTP_EOF for
460f8829a4aSRandall Stewart 				 * EOR */
461f8829a4aSRandall Stewart 	uint32_t sinfo_ppid;	/* off the wire */
462f8829a4aSRandall Stewart 	uint32_t sinfo_context;	/* pick this up from assoc def context? */
463f8829a4aSRandall Stewart 	uint32_t sinfo_timetolive;	/* not used by kernel */
464f8829a4aSRandall Stewart 	uint32_t sinfo_tsn;	/* Use this in reassembly as first TSN */
465f8829a4aSRandall Stewart 	uint32_t sinfo_cumtsn;	/* Use this in reassembly as last TSN */
466f8829a4aSRandall Stewart 	sctp_assoc_t sinfo_assoc_id;	/* our assoc id */
467f8829a4aSRandall Stewart 	/* Non sinfo stuff */
46849656eefSMichael Tuexen 	uint32_t mid;		/* Fragment Index */
469f8829a4aSRandall Stewart 	uint32_t length;	/* length of data */
470f8829a4aSRandall Stewart 	uint32_t held_length;	/* length held in sb */
47144249214SRandall Stewart 	uint32_t top_fsn;	/* Highest FSN in queue */
47244249214SRandall Stewart 	uint32_t fsn_included;	/* Highest FSN in *data portion */
473f8829a4aSRandall Stewart 	struct sctp_nets *whoFrom;	/* where it came from */
474f8829a4aSRandall Stewart 	struct mbuf *data;	/* front of the mbuf chain of data with
475f8829a4aSRandall Stewart 				 * PKT_HDR */
476f8829a4aSRandall Stewart 	struct mbuf *tail_mbuf;	/* used for multi-part data */
47717205eccSRandall Stewart 	struct mbuf *aux_data;	/* used to hold/cache  control if o/s does not
47817205eccSRandall Stewart 				 * take it from us */
479f8829a4aSRandall Stewart 	struct sctp_tcb *stcb;	/* assoc, used for window update */
480f8829a4aSRandall Stewart 	         TAILQ_ENTRY(sctp_queued_to_read) next;
48144249214SRandall Stewart 	         TAILQ_ENTRY(sctp_queued_to_read) next_instrm;
48244249214SRandall Stewart 	struct sctpchunk_listhead reasm;
483f8829a4aSRandall Stewart 	uint16_t port_from;
484139bc87fSRandall Stewart 	uint16_t spec_flags;	/* Flags to hold the notification field */
485f8829a4aSRandall Stewart 	uint8_t do_not_ref_stcb;
486f8829a4aSRandall Stewart 	uint8_t end_added;
48703b0b021SRandall Stewart 	uint8_t pdapi_aborted;
48844249214SRandall Stewart 	uint8_t pdapi_started;
4899a6142d8SRandall Stewart 	uint8_t some_taken;
49044249214SRandall Stewart 	uint8_t last_frag_seen;
49144249214SRandall Stewart 	uint8_t first_frag_seen;
49244249214SRandall Stewart 	uint8_t on_read_q;
49344249214SRandall Stewart 	uint8_t on_strm_q;
494f8829a4aSRandall Stewart };
495f8829a4aSRandall Stewart 
49644249214SRandall Stewart #define SCTP_ON_ORDERED 1
49744249214SRandall Stewart #define SCTP_ON_UNORDERED 2
49844249214SRandall Stewart 
499f8829a4aSRandall Stewart /* This data structure will be on the outbound
500f8829a4aSRandall Stewart  * stream queues. Data will be pulled off from
501f8829a4aSRandall Stewart  * the front of the mbuf data and chunk-ified
502f8829a4aSRandall Stewart  * by the output routines. We will custom
503f8829a4aSRandall Stewart  * fit every chunk we pull to the send/sent
504f8829a4aSRandall Stewart  * queue to make up the next full packet
505f8829a4aSRandall Stewart  * if we can. An entry cannot be removed
506f8829a4aSRandall Stewart  * from the stream_out queue until
507f8829a4aSRandall Stewart  * the msg_is_complete flag is set. This
508f8829a4aSRandall Stewart  * means at times data/tail_mbuf MIGHT
509f8829a4aSRandall Stewart  * be NULL.. If that occurs it happens
510f8829a4aSRandall Stewart  * for one of two reasons. Either the user
511f8829a4aSRandall Stewart  * is blocked on a send() call and has not
512f8829a4aSRandall Stewart  * awoken to copy more data down... OR
513f8829a4aSRandall Stewart  * the user is in the explict MSG_EOR mode
514f8829a4aSRandall Stewart  * and wrote some data, but has not completed
515f8829a4aSRandall Stewart  * sending.
516f8829a4aSRandall Stewart  */
517f8829a4aSRandall Stewart struct sctp_stream_queue_pending {
518f8829a4aSRandall Stewart 	struct mbuf *data;
519f8829a4aSRandall Stewart 	struct mbuf *tail_mbuf;
520f8829a4aSRandall Stewart 	struct timeval ts;
521f8829a4aSRandall Stewart 	struct sctp_nets *net;
522f8829a4aSRandall Stewart 	          TAILQ_ENTRY(sctp_stream_queue_pending) next;
523252f7f93SMichael Tuexen 	          TAILQ_ENTRY(sctp_stream_queue_pending) ss_next;
52444249214SRandall Stewart 	uint32_t fsn;
525f8829a4aSRandall Stewart 	uint32_t length;
526f8829a4aSRandall Stewart 	uint32_t timetolive;
527f8829a4aSRandall Stewart 	uint32_t ppid;
528f8829a4aSRandall Stewart 	uint32_t context;
529f8829a4aSRandall Stewart 	uint16_t sinfo_flags;
53049656eefSMichael Tuexen 	uint16_t sid;
531a5d547adSRandall Stewart 	uint16_t act_flags;
532830d754dSRandall Stewart 	uint16_t auth_keyid;
533830d754dSRandall Stewart 	uint8_t holds_key_ref;
534f8829a4aSRandall Stewart 	uint8_t msg_is_complete;
535f8829a4aSRandall Stewart 	uint8_t some_taken;
536478d3f09SRandall Stewart 	uint8_t sender_all_done;
537f1f73e57SRandall Stewart 	uint8_t put_last_out;
53849633f4bSRandall Stewart 	uint8_t discard_rest;
539f8829a4aSRandall Stewart };
540f8829a4aSRandall Stewart 
541f8829a4aSRandall Stewart /*
542f8829a4aSRandall Stewart  * this struct contains info that is used to track inbound stream data and
543f8829a4aSRandall Stewart  * help with ordering.
544f8829a4aSRandall Stewart  */
545f8829a4aSRandall Stewart TAILQ_HEAD(sctpwheelunrel_listhead, sctp_stream_in);
546f8829a4aSRandall Stewart struct sctp_stream_in {
547f8829a4aSRandall Stewart 	struct sctp_readhead inqueue;
54844249214SRandall Stewart 	struct sctp_readhead uno_inqueue;
54949656eefSMichael Tuexen 	uint32_t last_mid_delivered;	/* used for re-order */
55049656eefSMichael Tuexen 	uint16_t sid;
5519a6142d8SRandall Stewart 	uint8_t delivery_started;
55244249214SRandall Stewart 	uint8_t pd_api_started;
553f8829a4aSRandall Stewart };
554f8829a4aSRandall Stewart 
555f8829a4aSRandall Stewart TAILQ_HEAD(sctpwheel_listhead, sctp_stream_out);
556f7a77f6fSMichael Tuexen TAILQ_HEAD(sctplist_listhead, sctp_stream_queue_pending);
557f7a77f6fSMichael Tuexen 
558d1ea5fa9SMichael Tuexen 
559f7a77f6fSMichael Tuexen /* Round-robin schedulers */
560f7a77f6fSMichael Tuexen struct ss_rr {
561f7a77f6fSMichael Tuexen 	/* next link in wheel */
562f7a77f6fSMichael Tuexen 	TAILQ_ENTRY(sctp_stream_out) next_spoke;
563f7a77f6fSMichael Tuexen };
564f7a77f6fSMichael Tuexen 
565f7a77f6fSMichael Tuexen /* Priority scheduler */
566f7a77f6fSMichael Tuexen struct ss_prio {
567f7a77f6fSMichael Tuexen 	/* next link in wheel */
568f7a77f6fSMichael Tuexen 	TAILQ_ENTRY(sctp_stream_out) next_spoke;
569f7a77f6fSMichael Tuexen 	/* priority id */
570f7a77f6fSMichael Tuexen 	uint16_t priority;
571f7a77f6fSMichael Tuexen };
572f7a77f6fSMichael Tuexen 
573f7a77f6fSMichael Tuexen /* Fair Bandwidth scheduler */
574f7a77f6fSMichael Tuexen struct ss_fb {
575f7a77f6fSMichael Tuexen 	/* next link in wheel */
576f7a77f6fSMichael Tuexen 	TAILQ_ENTRY(sctp_stream_out) next_spoke;
577f7a77f6fSMichael Tuexen 	/* stores message size */
578f7a77f6fSMichael Tuexen 	int32_t rounds;
579f7a77f6fSMichael Tuexen };
580f7a77f6fSMichael Tuexen 
581f7a77f6fSMichael Tuexen /*
582f7a77f6fSMichael Tuexen  * This union holds all data necessary for
583f7a77f6fSMichael Tuexen  * different stream schedulers.
584f7a77f6fSMichael Tuexen  */
585d1ea5fa9SMichael Tuexen struct scheduling_data {
586d1ea5fa9SMichael Tuexen 	struct sctp_stream_out *locked_on_sending;
587d1ea5fa9SMichael Tuexen 	/* circular looking for output selection */
588d1ea5fa9SMichael Tuexen 	struct sctp_stream_out *last_out_stream;
589d1ea5fa9SMichael Tuexen 	union {
590d1ea5fa9SMichael Tuexen 		struct sctpwheel_listhead wheel;
591d1ea5fa9SMichael Tuexen 		struct sctplist_listhead list;
592d1ea5fa9SMichael Tuexen 	}     out;
593f7a77f6fSMichael Tuexen };
594f7a77f6fSMichael Tuexen 
595f7a77f6fSMichael Tuexen /*
596f7a77f6fSMichael Tuexen  * This union holds all parameters per stream
597f7a77f6fSMichael Tuexen  * necessary for different stream schedulers.
598f7a77f6fSMichael Tuexen  */
599f7a77f6fSMichael Tuexen union scheduling_parameters {
600f7a77f6fSMichael Tuexen 	struct ss_rr rr;
601f7a77f6fSMichael Tuexen 	struct ss_prio prio;
602f7a77f6fSMichael Tuexen 	struct ss_fb fb;
603f7a77f6fSMichael Tuexen };
604f7a77f6fSMichael Tuexen 
6057cca1775SRandall Stewart /* States for outgoing streams */
6067cca1775SRandall Stewart #define SCTP_STREAM_CLOSED           0x00
6077cca1775SRandall Stewart #define SCTP_STREAM_OPENING          0x01
6087cca1775SRandall Stewart #define SCTP_STREAM_OPEN             0x02
6097cca1775SRandall Stewart #define SCTP_STREAM_RESET_PENDING    0x03
6107cca1775SRandall Stewart #define SCTP_STREAM_RESET_IN_FLIGHT  0x04
6117cca1775SRandall Stewart 
6127cca1775SRandall Stewart #define SCTP_MAX_STREAMS_AT_ONCE_RESET 200
6137cca1775SRandall Stewart 
614f7a77f6fSMichael Tuexen /* This struct is used to track the traffic on outbound streams */
615f8829a4aSRandall Stewart struct sctp_stream_out {
616f8829a4aSRandall Stewart 	struct sctp_streamhead outqueue;
617f7a77f6fSMichael Tuexen 	union scheduling_parameters ss_params;
6187cca1775SRandall Stewart 	uint32_t chunks_on_queues;	/* send queue and sent queue */
619f0396ad1SMichael Tuexen #if defined(SCTP_DETAILED_STR_STATS)
620f0396ad1SMichael Tuexen 	uint32_t abandoned_unsent[SCTP_PR_SCTP_MAX + 1];
621f0396ad1SMichael Tuexen 	uint32_t abandoned_sent[SCTP_PR_SCTP_MAX + 1];
622f0396ad1SMichael Tuexen #else
623f0396ad1SMichael Tuexen 	/* Only the aggregation */
624f0396ad1SMichael Tuexen 	uint32_t abandoned_unsent[1];
625f0396ad1SMichael Tuexen 	uint32_t abandoned_sent[1];
626f0396ad1SMichael Tuexen #endif
62763d5b568SMichael Tuexen 	/*
62863d5b568SMichael Tuexen 	 * For associations using DATA chunks, the lower 16-bit of
62963d5b568SMichael Tuexen 	 * next_mid_ordered are used as the next SSN.
63063d5b568SMichael Tuexen 	 */
63163d5b568SMichael Tuexen 	uint32_t next_mid_ordered;
63263d5b568SMichael Tuexen 	uint32_t next_mid_unordered;
63349656eefSMichael Tuexen 	uint16_t sid;
634f8829a4aSRandall Stewart 	uint8_t last_msg_incomplete;
6357cca1775SRandall Stewart 	uint8_t state;
636f8829a4aSRandall Stewart };
637f8829a4aSRandall Stewart 
638f8829a4aSRandall Stewart /* used to keep track of the addresses yet to try to add/delete */
639f8829a4aSRandall Stewart TAILQ_HEAD(sctp_asconf_addrhead, sctp_asconf_addr);
640f8829a4aSRandall Stewart struct sctp_asconf_addr {
641f8829a4aSRandall Stewart 	TAILQ_ENTRY(sctp_asconf_addr) next;
642f8829a4aSRandall Stewart 	struct sctp_asconf_addr_param ap;
64342551e99SRandall Stewart 	struct sctp_ifa *ifa;	/* save the ifa for add/del ip */
644f8829a4aSRandall Stewart 	uint8_t sent;		/* has this been sent yet? */
645830d754dSRandall Stewart 	uint8_t special_del;	/* not to be used in lookup */
646f8829a4aSRandall Stewart };
647f8829a4aSRandall Stewart 
648f8829a4aSRandall Stewart struct sctp_scoping {
649f8829a4aSRandall Stewart 	uint8_t ipv4_addr_legal;
650f8829a4aSRandall Stewart 	uint8_t ipv6_addr_legal;
651f8829a4aSRandall Stewart 	uint8_t loopback_scope;
652f8829a4aSRandall Stewart 	uint8_t ipv4_local_scope;
653f8829a4aSRandall Stewart 	uint8_t local_scope;
654f8829a4aSRandall Stewart 	uint8_t site_scope;
655f8829a4aSRandall Stewart };
656f8829a4aSRandall Stewart 
657f42a358aSRandall Stewart #define SCTP_TSN_LOG_SIZE 40
658f42a358aSRandall Stewart 
659f42a358aSRandall Stewart struct sctp_tsn_log {
66018e198d3SRandall Stewart 	void *stcb;
661f42a358aSRandall Stewart 	uint32_t tsn;
66244249214SRandall Stewart 	uint32_t seq;
663f42a358aSRandall Stewart 	uint16_t strm;
664f1f73e57SRandall Stewart 	uint16_t sz;
665f1f73e57SRandall Stewart 	uint16_t flgs;
66618e198d3SRandall Stewart 	uint16_t in_pos;
66718e198d3SRandall Stewart 	uint16_t in_out;
66844249214SRandall Stewart 	uint16_t resv;
669f42a358aSRandall Stewart };
670f42a358aSRandall Stewart 
671b54d3a6cSRandall Stewart #define SCTP_FS_SPEC_LOG_SIZE 200
672b54d3a6cSRandall Stewart struct sctp_fs_spec_log {
673b54d3a6cSRandall Stewart 	uint32_t sent;
674b54d3a6cSRandall Stewart 	uint32_t total_flight;
675b54d3a6cSRandall Stewart 	uint32_t tsn;
676b54d3a6cSRandall Stewart 	uint16_t book;
677b54d3a6cSRandall Stewart 	uint8_t incr;
678b54d3a6cSRandall Stewart 	uint8_t decr;
679b54d3a6cSRandall Stewart };
680d61a0ae0SRandall Stewart 
681d61a0ae0SRandall Stewart /* This struct is here to cut out the compatiabilty
682d61a0ae0SRandall Stewart  * pad that bulks up both the inp and stcb. The non
683d61a0ae0SRandall Stewart  * pad portion MUST stay in complete sync with
684d61a0ae0SRandall Stewart  * sctp_sndrcvinfo... i.e. if sinfo_xxxx is added
685d61a0ae0SRandall Stewart  * this must be done here too.
686d61a0ae0SRandall Stewart  */
687d61a0ae0SRandall Stewart struct sctp_nonpad_sndrcvinfo {
688d61a0ae0SRandall Stewart 	uint16_t sinfo_stream;
689d61a0ae0SRandall Stewart 	uint16_t sinfo_ssn;
690d61a0ae0SRandall Stewart 	uint16_t sinfo_flags;
691d61a0ae0SRandall Stewart 	uint32_t sinfo_ppid;
692d61a0ae0SRandall Stewart 	uint32_t sinfo_context;
693d61a0ae0SRandall Stewart 	uint32_t sinfo_timetolive;
694d61a0ae0SRandall Stewart 	uint32_t sinfo_tsn;
695d61a0ae0SRandall Stewart 	uint32_t sinfo_cumtsn;
696d61a0ae0SRandall Stewart 	sctp_assoc_t sinfo_assoc_id;
697e2e7c62eSMichael Tuexen 	uint16_t sinfo_keynumber;
698e2e7c62eSMichael Tuexen 	uint16_t sinfo_keynumber_valid;
699d61a0ae0SRandall Stewart };
700d61a0ae0SRandall Stewart 
701f8829a4aSRandall Stewart /*
702b54d3a6cSRandall Stewart  * JRS - Structure to hold function pointers to the functions responsible
703b54d3a6cSRandall Stewart  * for congestion control.
704b54d3a6cSRandall Stewart  */
705b54d3a6cSRandall Stewart 
706b54d3a6cSRandall Stewart struct sctp_cc_functions {
707b54d3a6cSRandall Stewart 	void (*sctp_set_initial_cc_param) (struct sctp_tcb *stcb, struct sctp_nets *net);
708b54d3a6cSRandall Stewart 	void (*sctp_cwnd_update_after_sack) (struct sctp_tcb *stcb,
709b54d3a6cSRandall Stewart 	         struct sctp_association *asoc,
710b54d3a6cSRandall Stewart 	         int accum_moved, int reneged_all, int will_exit);
711ca85e948SMichael Tuexen 	void (*sctp_cwnd_update_exit_pf) (struct sctp_tcb *stcb, struct sctp_nets *net);
712b54d3a6cSRandall Stewart 	void (*sctp_cwnd_update_after_fr) (struct sctp_tcb *stcb,
713b54d3a6cSRandall Stewart 	         struct sctp_association *asoc);
714b54d3a6cSRandall Stewart 	void (*sctp_cwnd_update_after_timeout) (struct sctp_tcb *stcb,
715b54d3a6cSRandall Stewart 	         struct sctp_nets *net);
716b54d3a6cSRandall Stewart 	void (*sctp_cwnd_update_after_ecn_echo) (struct sctp_tcb *stcb,
717493d8e5aSRandall Stewart 	         struct sctp_nets *net, int in_window, int num_pkt_lost);
718b54d3a6cSRandall Stewart 	void (*sctp_cwnd_update_after_packet_dropped) (struct sctp_tcb *stcb,
719b54d3a6cSRandall Stewart 	         struct sctp_nets *net, struct sctp_pktdrop_chunk *cp,
720b54d3a6cSRandall Stewart 	         uint32_t *bottle_bw, uint32_t *on_queue);
721b54d3a6cSRandall Stewart 	void (*sctp_cwnd_update_after_output) (struct sctp_tcb *stcb,
722b54d3a6cSRandall Stewart 	         struct sctp_nets *net, int burst_limit);
723299108c5SRandall Stewart 	void (*sctp_cwnd_update_packet_transmitted) (struct sctp_tcb *stcb,
724299108c5SRandall Stewart 	         struct sctp_nets *net);
725299108c5SRandall Stewart 	void (*sctp_cwnd_update_tsn_acknowledged) (struct sctp_nets *net,
726299108c5SRandall Stewart 	         struct sctp_tmit_chunk *);
727299108c5SRandall Stewart 	void (*sctp_cwnd_new_transmission_begins) (struct sctp_tcb *stcb,
728299108c5SRandall Stewart 	         struct sctp_nets *net);
729299108c5SRandall Stewart 	void (*sctp_cwnd_prepare_net_for_sack) (struct sctp_tcb *stcb,
730299108c5SRandall Stewart 	         struct sctp_nets *net);
731299108c5SRandall Stewart 	int (*sctp_cwnd_socket_option) (struct sctp_tcb *stcb, int set, struct sctp_cc_option *);
732f79aab18SRandall Stewart 	void (*sctp_rtt_calculated) (struct sctp_tcb *, struct sctp_nets *, struct timeval *);
733b54d3a6cSRandall Stewart };
734b54d3a6cSRandall Stewart 
735f7a77f6fSMichael Tuexen /*
736f7a77f6fSMichael Tuexen  * RS - Structure to hold function pointers to the functions responsible
737f7a77f6fSMichael Tuexen  * for stream scheduling.
738f7a77f6fSMichael Tuexen  */
739f7a77f6fSMichael Tuexen struct sctp_ss_functions {
740f7a77f6fSMichael Tuexen 	void (*sctp_ss_init) (struct sctp_tcb *stcb, struct sctp_association *asoc,
741f7a77f6fSMichael Tuexen 	         int holds_lock);
742f7a77f6fSMichael Tuexen 	void (*sctp_ss_clear) (struct sctp_tcb *stcb, struct sctp_association *asoc,
743f7a77f6fSMichael Tuexen 	         int clear_values, int holds_lock);
744d1ea5fa9SMichael Tuexen 	void (*sctp_ss_init_stream) (struct sctp_tcb *stcb, struct sctp_stream_out *strq, struct sctp_stream_out *with_strq);
745f7a77f6fSMichael Tuexen 	void (*sctp_ss_add_to_stream) (struct sctp_tcb *stcb, struct sctp_association *asoc,
746f7a77f6fSMichael Tuexen 	         struct sctp_stream_out *strq, struct sctp_stream_queue_pending *sp, int holds_lock);
747f7a77f6fSMichael Tuexen 	int (*sctp_ss_is_empty) (struct sctp_tcb *stcb, struct sctp_association *asoc);
748f7a77f6fSMichael Tuexen 	void (*sctp_ss_remove_from_stream) (struct sctp_tcb *stcb, struct sctp_association *asoc,
749f7a77f6fSMichael Tuexen 	         struct sctp_stream_out *strq, struct sctp_stream_queue_pending *sp, int holds_lock);
750f7a77f6fSMichael Tuexen 	struct sctp_stream_out *(*sctp_ss_select_stream) (struct sctp_tcb *stcb,
751f7a77f6fSMichael Tuexen 	                    struct sctp_nets *net, struct sctp_association *asoc);
752f7a77f6fSMichael Tuexen 	void (*sctp_ss_scheduled) (struct sctp_tcb *stcb, struct sctp_nets *net,
753f7a77f6fSMichael Tuexen 	         struct sctp_association *asoc, struct sctp_stream_out *strq, int moved_how_much);
754f7a77f6fSMichael Tuexen 	void (*sctp_ss_packet_done) (struct sctp_tcb *stcb, struct sctp_nets *net,
755f7a77f6fSMichael Tuexen 	         struct sctp_association *asoc);
756f7a77f6fSMichael Tuexen 	int (*sctp_ss_get_value) (struct sctp_tcb *stcb, struct sctp_association *asoc,
757f7a77f6fSMichael Tuexen 	        struct sctp_stream_out *strq, uint16_t *value);
758f7a77f6fSMichael Tuexen 	int (*sctp_ss_set_value) (struct sctp_tcb *stcb, struct sctp_association *asoc,
759f7a77f6fSMichael Tuexen 	        struct sctp_stream_out *strq, uint16_t value);
760d1ea5fa9SMichael Tuexen 	int (*sctp_ss_is_user_msgs_incomplete) (struct sctp_tcb *stcb, struct sctp_association *asoc);
761f7a77f6fSMichael Tuexen };
762f7a77f6fSMichael Tuexen 
763c54a18d2SRandall Stewart /* used to save ASCONF chunks for retransmission */
764c54a18d2SRandall Stewart TAILQ_HEAD(sctp_asconf_head, sctp_asconf);
765c54a18d2SRandall Stewart struct sctp_asconf {
766c54a18d2SRandall Stewart 	TAILQ_ENTRY(sctp_asconf) next;
767c54a18d2SRandall Stewart 	uint32_t serial_number;
768c54a18d2SRandall Stewart 	uint16_t snd_count;
769c54a18d2SRandall Stewart 	struct mbuf *data;
770c54a18d2SRandall Stewart 	uint16_t len;
771c54a18d2SRandall Stewart };
772c54a18d2SRandall Stewart 
7732afb3e84SRandall Stewart /* used to save ASCONF-ACK chunks for retransmission */
7742afb3e84SRandall Stewart TAILQ_HEAD(sctp_asconf_ackhead, sctp_asconf_ack);
7752afb3e84SRandall Stewart struct sctp_asconf_ack {
7762afb3e84SRandall Stewart 	TAILQ_ENTRY(sctp_asconf_ack) next;
7772afb3e84SRandall Stewart 	uint32_t serial_number;
7782afb3e84SRandall Stewart 	struct sctp_nets *last_sent_to;
7792afb3e84SRandall Stewart 	struct mbuf *data;
7802afb3e84SRandall Stewart 	uint16_t len;
7812afb3e84SRandall Stewart };
7822afb3e84SRandall Stewart 
783b54d3a6cSRandall Stewart /*
784f8829a4aSRandall Stewart  * Here we have information about each individual association that we track.
785f8829a4aSRandall Stewart  * We probably in production would be more dynamic. But for ease of
786f8829a4aSRandall Stewart  * implementation we will have a fixed array that we hunt for in a linear
787f8829a4aSRandall Stewart  * fashion.
788f8829a4aSRandall Stewart  */
789f8829a4aSRandall Stewart struct sctp_association {
790f8829a4aSRandall Stewart 	/* association state */
791f8829a4aSRandall Stewart 	int state;
7921b649582SRandall Stewart 
793f8829a4aSRandall Stewart 	/* queue of pending addrs to add/delete */
794f8829a4aSRandall Stewart 	struct sctp_asconf_addrhead asconf_queue;
7951b649582SRandall Stewart 
796f8829a4aSRandall Stewart 	struct timeval time_entered;	/* time we entered state */
797f8829a4aSRandall Stewart 	struct timeval time_last_rcvd;
798f8829a4aSRandall Stewart 	struct timeval time_last_sent;
799f8829a4aSRandall Stewart 	struct timeval time_last_sat_advance;
800d61a0ae0SRandall Stewart 	struct sctp_nonpad_sndrcvinfo def_send;
801f8829a4aSRandall Stewart 
802f8829a4aSRandall Stewart 	/* timers and such */
803f8829a4aSRandall Stewart 	struct sctp_timer dack_timer;	/* Delayed ack timer */
8041b649582SRandall Stewart 	struct sctp_timer asconf_timer;	/* asconf */
805f8829a4aSRandall Stewart 	struct sctp_timer strreset_timer;	/* stream reset */
8061b649582SRandall Stewart 	struct sctp_timer shut_guard_timer;	/* shutdown guard */
807f8829a4aSRandall Stewart 	struct sctp_timer autoclose_timer;	/* automatic close timer */
808f8829a4aSRandall Stewart 	struct sctp_timer delayed_event_timer;	/* timer for delayed events */
809851b7298SRandall Stewart 	struct sctp_timer delete_prim_timer;	/* deleting primary dst */
810f8829a4aSRandall Stewart 
8111b649582SRandall Stewart 	/* list of restricted local addresses */
81242551e99SRandall Stewart 	struct sctpladdr sctp_restricted_addrs;
81342551e99SRandall Stewart 
8141b649582SRandall Stewart 	/* last local address pending deletion (waiting for an address add) */
8151b649582SRandall Stewart 	struct sctp_ifa *asconf_addr_del_pending;
816851b7298SRandall Stewart 	/* Deleted primary destination (used to stop timer) */
817851b7298SRandall Stewart 	struct sctp_nets *deleted_primary;
8181b649582SRandall Stewart 
8191b649582SRandall Stewart 	struct sctpnetlisthead nets;	/* remote address list */
820f8829a4aSRandall Stewart 
821f8829a4aSRandall Stewart 	/* Free chunk list */
822f8829a4aSRandall Stewart 	struct sctpchunk_listhead free_chunks;
823f8829a4aSRandall Stewart 
824f8829a4aSRandall Stewart 	/* Control chunk queue */
825f8829a4aSRandall Stewart 	struct sctpchunk_listhead control_send_queue;
826f8829a4aSRandall Stewart 
827c54a18d2SRandall Stewart 	/* ASCONF chunk queue */
828c54a18d2SRandall Stewart 	struct sctpchunk_listhead asconf_send_queue;
829c54a18d2SRandall Stewart 
830f8829a4aSRandall Stewart 	/*
831f8829a4aSRandall Stewart 	 * Once a TSN hits the wire it is moved to the sent_queue. We
832f8829a4aSRandall Stewart 	 * maintain two counts here (don't know if any but retran_cnt is
833f8829a4aSRandall Stewart 	 * needed). The idea is that the sent_queue_retran_cnt reflects how
834f8829a4aSRandall Stewart 	 * many chunks have been marked for retranmission by either T3-rxt
835f8829a4aSRandall Stewart 	 * or FR.
836f8829a4aSRandall Stewart 	 */
837f8829a4aSRandall Stewart 	struct sctpchunk_listhead sent_queue;
838f8829a4aSRandall Stewart 	struct sctpchunk_listhead send_queue;
839f8829a4aSRandall Stewart 
840252f7f93SMichael Tuexen 	/* Scheduling queues */
841d1ea5fa9SMichael Tuexen 	struct scheduling_data ss_data;
842f8829a4aSRandall Stewart 
843f8829a4aSRandall Stewart 	/* If an iterator is looking at me, this is it */
844f8829a4aSRandall Stewart 	struct sctp_iterator *stcb_starting_point_for_iterator;
845f8829a4aSRandall Stewart 
846f8829a4aSRandall Stewart 	/* ASCONF save the last ASCONF-ACK so we can resend it if necessary */
8472afb3e84SRandall Stewart 	struct sctp_asconf_ackhead asconf_ack_sent;
848f8829a4aSRandall Stewart 
849f8829a4aSRandall Stewart 	/*
850f8829a4aSRandall Stewart 	 * pointer to last stream reset queued to control queue by us with
851f8829a4aSRandall Stewart 	 * requests.
852f8829a4aSRandall Stewart 	 */
853f8829a4aSRandall Stewart 	struct sctp_tmit_chunk *str_reset;
854f8829a4aSRandall Stewart 	/*
855f8829a4aSRandall Stewart 	 * if Source Address Selection happening, this will rotate through
856f8829a4aSRandall Stewart 	 * the link list.
857f8829a4aSRandall Stewart 	 */
858f8829a4aSRandall Stewart 	struct sctp_laddr *last_used_address;
859f8829a4aSRandall Stewart 
860f8829a4aSRandall Stewart 	/* stream arrays */
861f8829a4aSRandall Stewart 	struct sctp_stream_in *strmin;
862f8829a4aSRandall Stewart 	struct sctp_stream_out *strmout;
863f8829a4aSRandall Stewart 	uint8_t *mapping_array;
864f8829a4aSRandall Stewart 	/* primary destination to use */
865f8829a4aSRandall Stewart 	struct sctp_nets *primary_destination;
866ca85e948SMichael Tuexen 	struct sctp_nets *alternate;	/* If primary is down or PF */
867f8829a4aSRandall Stewart 	/* For CMT */
8688933fa13SRandall Stewart 	struct sctp_nets *last_net_cmt_send_started;
869f8829a4aSRandall Stewart 	/* last place I got a data chunk from */
870f8829a4aSRandall Stewart 	struct sctp_nets *last_data_chunk_from;
871f8829a4aSRandall Stewart 	/* last place I got a control from */
872f8829a4aSRandall Stewart 	struct sctp_nets *last_control_chunk_from;
873f8829a4aSRandall Stewart 
874f8829a4aSRandall Stewart 
875f8829a4aSRandall Stewart 	/*
876f8829a4aSRandall Stewart 	 * wait to the point the cum-ack passes req->send_reset_at_tsn for
877f8829a4aSRandall Stewart 	 * any req on the list.
878f8829a4aSRandall Stewart 	 */
879f8829a4aSRandall Stewart 	struct sctp_resethead resetHead;
880f8829a4aSRandall Stewart 
881f8829a4aSRandall Stewart 	/* queue of chunks waiting to be sent into the local stack */
882f8829a4aSRandall Stewart 	struct sctp_readhead pending_reply_queue;
883f8829a4aSRandall Stewart 
884b54d3a6cSRandall Stewart 	/* JRS - the congestion control functions are in this struct */
885b54d3a6cSRandall Stewart 	struct sctp_cc_functions cc_functions;
886b7b84c0eSMichael Tuexen 	/*
887b7b84c0eSMichael Tuexen 	 * JRS - value to store the currently loaded congestion control
888b7b84c0eSMichael Tuexen 	 * module
889b7b84c0eSMichael Tuexen 	 */
890b54d3a6cSRandall Stewart 	uint32_t congestion_control_module;
891f7a77f6fSMichael Tuexen 	/* RS - the stream scheduling functions are in this struct */
892f7a77f6fSMichael Tuexen 	struct sctp_ss_functions ss_functions;
893f7a77f6fSMichael Tuexen 	/* RS - value to store the currently loaded stream scheduling module */
894f7a77f6fSMichael Tuexen 	uint32_t stream_scheduling_module;
895b54d3a6cSRandall Stewart 
89642551e99SRandall Stewart 	uint32_t vrf_id;
897f8829a4aSRandall Stewart 	uint32_t cookie_preserve_req;
898f8829a4aSRandall Stewart 	/* ASCONF next seq I am sending out, inits at init-tsn */
899f8829a4aSRandall Stewart 	uint32_t asconf_seq_out;
900c54a18d2SRandall Stewart 	uint32_t asconf_seq_out_acked;
901f8829a4aSRandall Stewart 	/* ASCONF last received ASCONF from peer, starts at peer's TSN-1 */
902f8829a4aSRandall Stewart 	uint32_t asconf_seq_in;
903f8829a4aSRandall Stewart 
904f8829a4aSRandall Stewart 	/* next seq I am sending in str reset messages */
905f8829a4aSRandall Stewart 	uint32_t str_reset_seq_out;
906f8829a4aSRandall Stewart 	/* next seq I am expecting in str reset messages */
907f8829a4aSRandall Stewart 	uint32_t str_reset_seq_in;
908f8829a4aSRandall Stewart 
909f8829a4aSRandall Stewart 	/* various verification tag information */
910f8829a4aSRandall Stewart 	uint32_t my_vtag;	/* The tag to be used. if assoc is re-initited
911f8829a4aSRandall Stewart 				 * by remote end, and I have unlocked this
912f8829a4aSRandall Stewart 				 * will be regenerated to a new random value. */
913f8829a4aSRandall Stewart 	uint32_t peer_vtag;	/* The peers last tag */
914f8829a4aSRandall Stewart 
915f8829a4aSRandall Stewart 	uint32_t my_vtag_nonce;
916f8829a4aSRandall Stewart 	uint32_t peer_vtag_nonce;
917f8829a4aSRandall Stewart 
918f8829a4aSRandall Stewart 	uint32_t assoc_id;
919f8829a4aSRandall Stewart 
920f8829a4aSRandall Stewart 	/* This is the SCTP fragmentation threshold */
921f8829a4aSRandall Stewart 	uint32_t smallest_mtu;
922f8829a4aSRandall Stewart 
923f8829a4aSRandall Stewart 	/*
924f8829a4aSRandall Stewart 	 * Special hook for Fast retransmit, allows us to track the highest
925f8829a4aSRandall Stewart 	 * TSN that is NEW in this SACK if gap ack blocks are present.
926f8829a4aSRandall Stewart 	 */
927f8829a4aSRandall Stewart 	uint32_t this_sack_highest_gap;
928f8829a4aSRandall Stewart 
929f8829a4aSRandall Stewart 	/*
930f8829a4aSRandall Stewart 	 * The highest consecutive TSN that has been acked by peer on my
931f8829a4aSRandall Stewart 	 * sends
932f8829a4aSRandall Stewart 	 */
933f8829a4aSRandall Stewart 	uint32_t last_acked_seq;
934f8829a4aSRandall Stewart 
935f8829a4aSRandall Stewart 	/* The next TSN that I will use in sending. */
936f8829a4aSRandall Stewart 	uint32_t sending_seq;
937f8829a4aSRandall Stewart 
938f8829a4aSRandall Stewart 	/* Original seq number I used ??questionable to keep?? */
939f8829a4aSRandall Stewart 	uint32_t init_seq_number;
940f8829a4aSRandall Stewart 
941f8829a4aSRandall Stewart 
942f8829a4aSRandall Stewart 	/* The Advanced Peer Ack Point, as required by the PR-SCTP */
943f8829a4aSRandall Stewart 	/* (A1 in Section 4.2) */
944f8829a4aSRandall Stewart 	uint32_t advanced_peer_ack_point;
945f8829a4aSRandall Stewart 
946f8829a4aSRandall Stewart 	/*
947f8829a4aSRandall Stewart 	 * The highest consequetive TSN at the bottom of the mapping array
948f8829a4aSRandall Stewart 	 * (for his sends).
949f8829a4aSRandall Stewart 	 */
950f8829a4aSRandall Stewart 	uint32_t cumulative_tsn;
951f8829a4aSRandall Stewart 	/*
952f8829a4aSRandall Stewart 	 * Used to track the mapping array and its offset bits. This MAY be
953f8829a4aSRandall Stewart 	 * lower then cumulative_tsn.
954f8829a4aSRandall Stewart 	 */
955f8829a4aSRandall Stewart 	uint32_t mapping_array_base_tsn;
956f8829a4aSRandall Stewart 	/*
957f8829a4aSRandall Stewart 	 * used to track highest TSN we have received and is listed in the
958f8829a4aSRandall Stewart 	 * mapping array.
959f8829a4aSRandall Stewart 	 */
960f8829a4aSRandall Stewart 	uint32_t highest_tsn_inside_map;
961f8829a4aSRandall Stewart 
962830d754dSRandall Stewart 	/* EY - new NR variables used for nr_sack based on mapping_array */
963830d754dSRandall Stewart 	uint8_t *nr_mapping_array;
964830d754dSRandall Stewart 	uint32_t highest_tsn_inside_nr_map;
965830d754dSRandall Stewart 
966f8829a4aSRandall Stewart 	uint32_t fast_recovery_tsn;
967f8829a4aSRandall Stewart 	uint32_t sat_t3_recovery_tsn;
968f8829a4aSRandall Stewart 	uint32_t tsn_last_delivered;
969f8829a4aSRandall Stewart 	/*
970cd0a4ff6SPedro F. Giffuni 	 * For the pd-api we should re-write this a bit more efficient. We
971f8829a4aSRandall Stewart 	 * could have multiple sctp_queued_to_read's that we are building at
972f8829a4aSRandall Stewart 	 * once. Now we only do this when we get ready to deliver to the
973f8829a4aSRandall Stewart 	 * socket buffer. Note that we depend on the fact that the struct is
974f8829a4aSRandall Stewart 	 * "stuck" on the read queue until we finish all the pd-api.
975f8829a4aSRandall Stewart 	 */
976f8829a4aSRandall Stewart 	struct sctp_queued_to_read *control_pdapi;
977f8829a4aSRandall Stewart 
978f8829a4aSRandall Stewart 	uint32_t tsn_of_pdapi_last_delivered;
979f8829a4aSRandall Stewart 	uint32_t pdapi_ppid;
980f8829a4aSRandall Stewart 	uint32_t context;
981f8829a4aSRandall Stewart 	uint32_t last_reset_action[SCTP_MAX_RESET_PARAMS];
982f8829a4aSRandall Stewart 	uint32_t last_sending_seq[SCTP_MAX_RESET_PARAMS];
983f8829a4aSRandall Stewart 	uint32_t last_base_tsnsent[SCTP_MAX_RESET_PARAMS];
984f42a358aSRandall Stewart #ifdef SCTP_ASOCLOG_OF_TSNS
985f42a358aSRandall Stewart 	/*
986f42a358aSRandall Stewart 	 * special log  - This adds considerable size to the asoc, but
987f42a358aSRandall Stewart 	 * provides a log that you can use to detect problems via kgdb.
988f42a358aSRandall Stewart 	 */
989f42a358aSRandall Stewart 	struct sctp_tsn_log in_tsnlog[SCTP_TSN_LOG_SIZE];
990f42a358aSRandall Stewart 	struct sctp_tsn_log out_tsnlog[SCTP_TSN_LOG_SIZE];
99118e198d3SRandall Stewart 	uint32_t cumack_log[SCTP_TSN_LOG_SIZE];
992b201f536SRandall Stewart 	uint32_t cumack_logsnt[SCTP_TSN_LOG_SIZE];
993f42a358aSRandall Stewart 	uint16_t tsn_in_at;
994f42a358aSRandall Stewart 	uint16_t tsn_out_at;
995f1f73e57SRandall Stewart 	uint16_t tsn_in_wrapped;
996f1f73e57SRandall Stewart 	uint16_t tsn_out_wrapped;
99718e198d3SRandall Stewart 	uint16_t cumack_log_at;
998b201f536SRandall Stewart 	uint16_t cumack_log_atsnt;
999f42a358aSRandall Stewart #endif				/* SCTP_ASOCLOG_OF_TSNS */
1000b54d3a6cSRandall Stewart #ifdef SCTP_FS_SPEC_LOG
1001b54d3a6cSRandall Stewart 	struct sctp_fs_spec_log fslog[SCTP_FS_SPEC_LOG_SIZE];
1002b54d3a6cSRandall Stewart 	uint16_t fs_index;
1003b54d3a6cSRandall Stewart #endif
1004b54d3a6cSRandall Stewart 
1005f8829a4aSRandall Stewart 	/*
1006f8829a4aSRandall Stewart 	 * window state information and smallest MTU that I use to bound
1007f8829a4aSRandall Stewart 	 * segmentation
1008f8829a4aSRandall Stewart 	 */
1009f8829a4aSRandall Stewart 	uint32_t peers_rwnd;
1010f8829a4aSRandall Stewart 	uint32_t my_rwnd;
1011f8829a4aSRandall Stewart 	uint32_t my_last_reported_rwnd;
1012d61a0ae0SRandall Stewart 	uint32_t sctp_frag_point;
1013f8829a4aSRandall Stewart 
1014f8829a4aSRandall Stewart 	uint32_t total_output_queue_size;
1015f8829a4aSRandall Stewart 
10164e88d37aSMichael Tuexen 	uint32_t sb_cc;		/* shadow of sb_cc */
10179f22f500SRandall Stewart 	uint32_t sb_send_resv;	/* amount reserved on a send */
1018c4739e2fSRandall Stewart 	uint32_t my_rwnd_control_len;	/* shadow of sb_mbcnt used for rwnd
1019c4739e2fSRandall Stewart 					 * control */
102058bdb691SMichael Tuexen #ifdef INET6
1021f8829a4aSRandall Stewart 	uint32_t default_flowlabel;
102258bdb691SMichael Tuexen #endif
1023f8829a4aSRandall Stewart 	uint32_t pr_sctp_cnt;
1024493d8e5aSRandall Stewart 	int ctrl_queue_cnt;	/* could be removed  REM - NO IT CAN'T!! RRS */
1025f8829a4aSRandall Stewart 	/*
1026f8829a4aSRandall Stewart 	 * All outbound datagrams queue into this list from the individual
1027f8829a4aSRandall Stewart 	 * stream queue. Here they get assigned a TSN and then await
1028f8829a4aSRandall Stewart 	 * sending. The stream seq comes when it is first put in the
1029f8829a4aSRandall Stewart 	 * individual str queue
1030f8829a4aSRandall Stewart 	 */
1031f8829a4aSRandall Stewart 	unsigned int stream_queue_cnt;
1032f8829a4aSRandall Stewart 	unsigned int send_queue_cnt;
1033f8829a4aSRandall Stewart 	unsigned int sent_queue_cnt;
1034f8829a4aSRandall Stewart 	unsigned int sent_queue_cnt_removeable;
1035f8829a4aSRandall Stewart 	/*
1036f8829a4aSRandall Stewart 	 * Number on sent queue that are marked for retran until this value
1037f8829a4aSRandall Stewart 	 * is 0 we only send one packet of retran'ed data.
1038f8829a4aSRandall Stewart 	 */
1039f8829a4aSRandall Stewart 	unsigned int sent_queue_retran_cnt;
1040f8829a4aSRandall Stewart 
1041f8829a4aSRandall Stewart 	unsigned int size_on_reasm_queue;
1042f8829a4aSRandall Stewart 	unsigned int cnt_on_reasm_queue;
104344fbe462SRandall Stewart 	unsigned int fwd_tsn_cnt;
1044f8829a4aSRandall Stewart 	/* amount of data (bytes) currently in flight (on all destinations) */
1045f8829a4aSRandall Stewart 	unsigned int total_flight;
1046f8829a4aSRandall Stewart 	/* Total book size in flight */
1047f8829a4aSRandall Stewart 	unsigned int total_flight_count;	/* count of chunks used with
1048f8829a4aSRandall Stewart 						 * book total */
1049f8829a4aSRandall Stewart 	/* count of destinaton nets and list of destination nets */
1050f8829a4aSRandall Stewart 	unsigned int numnets;
1051f8829a4aSRandall Stewart 
1052f8829a4aSRandall Stewart 	/* Total error count on this association */
1053f8829a4aSRandall Stewart 	unsigned int overall_error_count;
1054f8829a4aSRandall Stewart 
1055f8829a4aSRandall Stewart 	unsigned int cnt_msg_on_sb;
1056f8829a4aSRandall Stewart 
1057f8829a4aSRandall Stewart 	/* All stream count of chunks for delivery */
1058f8829a4aSRandall Stewart 	unsigned int size_on_all_streams;
1059f8829a4aSRandall Stewart 	unsigned int cnt_on_all_streams;
1060f8829a4aSRandall Stewart 
1061ca85e948SMichael Tuexen 	/* Heart Beat delay in ms */
1062ca85e948SMichael Tuexen 	uint32_t heart_beat_delay;
1063f8829a4aSRandall Stewart 
1064f8829a4aSRandall Stewart 	/* autoclose */
1065f8829a4aSRandall Stewart 	unsigned int sctp_autoclose_ticks;
1066f8829a4aSRandall Stewart 
1067f8829a4aSRandall Stewart 	/* how many preopen streams we have */
1068f8829a4aSRandall Stewart 	unsigned int pre_open_streams;
1069f8829a4aSRandall Stewart 
1070f8829a4aSRandall Stewart 	/* How many streams I support coming into me */
1071f8829a4aSRandall Stewart 	unsigned int max_inbound_streams;
1072f8829a4aSRandall Stewart 
1073f8829a4aSRandall Stewart 	/* the cookie life I award for any cookie, in seconds */
1074f8829a4aSRandall Stewart 	unsigned int cookie_life;
1075f8829a4aSRandall Stewart 	/* time to delay acks for */
1076f8829a4aSRandall Stewart 	unsigned int delayed_ack;
107742551e99SRandall Stewart 	unsigned int old_delayed_ack;
107842551e99SRandall Stewart 	unsigned int sack_freq;
107942551e99SRandall Stewart 	unsigned int data_pkts_seen;
1080f8829a4aSRandall Stewart 
1081f8829a4aSRandall Stewart 	unsigned int numduptsns;
1082f8829a4aSRandall Stewart 	int dup_tsns[SCTP_MAX_DUP_TSNS];
1083f8829a4aSRandall Stewart 	unsigned int initial_init_rto_max;	/* initial RTO for INIT's */
1084f8829a4aSRandall Stewart 	unsigned int initial_rto;	/* initial send RTO */
1085f8829a4aSRandall Stewart 	unsigned int minrto;	/* per assoc RTO-MIN */
1086f8829a4aSRandall Stewart 	unsigned int maxrto;	/* per assoc RTO-MAX */
1087f8829a4aSRandall Stewart 
1088f8829a4aSRandall Stewart 	/* authentication fields */
1089f8829a4aSRandall Stewart 	sctp_auth_chklist_t *local_auth_chunks;
1090f8829a4aSRandall Stewart 	sctp_auth_chklist_t *peer_auth_chunks;
1091f8829a4aSRandall Stewart 	sctp_hmaclist_t *local_hmacs;	/* local HMACs supported */
1092f8829a4aSRandall Stewart 	sctp_hmaclist_t *peer_hmacs;	/* peer HMACs supported */
1093f8829a4aSRandall Stewart 	struct sctp_keyhead shared_keys;	/* assoc's shared keys */
1094f8829a4aSRandall Stewart 	sctp_authinfo_t authinfo;	/* randoms, cached keys */
1095f8829a4aSRandall Stewart 	/*
1096f8829a4aSRandall Stewart 	 * refcnt to block freeing when a sender or receiver is off coping
1097f8829a4aSRandall Stewart 	 * user data in.
1098f8829a4aSRandall Stewart 	 */
109950cec919SRandall Stewart 	uint32_t refcnt;
110050cec919SRandall Stewart 	uint32_t chunks_on_out_queue;	/* total chunks floating around,
110150cec919SRandall Stewart 					 * locked by send socket buffer */
11022afb3e84SRandall Stewart 	uint32_t peers_adaptation;
110328a6addeSMichael Tuexen 	uint32_t default_mtu;
110450cec919SRandall Stewart 	uint16_t peer_hmac_id;	/* peer HMAC id to send */
1105f8829a4aSRandall Stewart 
1106f8829a4aSRandall Stewart 	/*
1107f8829a4aSRandall Stewart 	 * Being that we have no bag to collect stale cookies, and that we
1108f8829a4aSRandall Stewart 	 * really would not want to anyway.. we will count them in this
1109f8829a4aSRandall Stewart 	 * counter. We of course feed them to the pigeons right away (I have
1110f8829a4aSRandall Stewart 	 * always thought of pigeons as flying rats).
1111f8829a4aSRandall Stewart 	 */
1112f8829a4aSRandall Stewart 	uint16_t stale_cookie_count;
1113f8829a4aSRandall Stewart 
1114f8829a4aSRandall Stewart 	/*
1115f8829a4aSRandall Stewart 	 * For the partial delivery API, if up, invoked this is what last
1116f8829a4aSRandall Stewart 	 * TSN I delivered
1117f8829a4aSRandall Stewart 	 */
1118f8829a4aSRandall Stewart 	uint16_t str_of_pdapi;
1119f8829a4aSRandall Stewart 	uint16_t ssn_of_pdapi;
1120f8829a4aSRandall Stewart 
1121f8829a4aSRandall Stewart 	/* counts of actual built streams. Allocation may be more however */
1122f8829a4aSRandall Stewart 	/* could re-arrange to optimize space here. */
1123f8829a4aSRandall Stewart 	uint16_t streamincnt;
1124f8829a4aSRandall Stewart 	uint16_t streamoutcnt;
1125ea44232bSRandall Stewart 	uint16_t strm_realoutsize;
1126c4e848b7SRandall Stewart 	uint16_t strm_pending_add_size;
1127f8829a4aSRandall Stewart 	/* my maximum number of retrans of INIT and SEND */
1128f8829a4aSRandall Stewart 	/* copied from SCTP but should be individually setable */
1129f8829a4aSRandall Stewart 	uint16_t max_init_times;
1130f8829a4aSRandall Stewart 	uint16_t max_send_times;
1131f8829a4aSRandall Stewart 
1132f8829a4aSRandall Stewart 	uint16_t def_net_failure;
1133f8829a4aSRandall Stewart 
1134ca85e948SMichael Tuexen 	uint16_t def_net_pf_threshold;
1135ca85e948SMichael Tuexen 
1136f8829a4aSRandall Stewart 	/*
1137f8829a4aSRandall Stewart 	 * lock flag: 0 is ok to send, 1+ (duals as a retran count) is
1138f8829a4aSRandall Stewart 	 * awaiting ACK
1139f8829a4aSRandall Stewart 	 */
1140f8829a4aSRandall Stewart 	uint16_t mapping_array_size;
1141f8829a4aSRandall Stewart 
1142f8829a4aSRandall Stewart 	uint16_t last_strm_seq_delivered;
1143f8829a4aSRandall Stewart 	uint16_t last_strm_no_delivered;
1144f8829a4aSRandall Stewart 
1145f8829a4aSRandall Stewart 	uint16_t last_revoke_count;
1146f8829a4aSRandall Stewart 	int16_t num_send_timers_up;
1147f8829a4aSRandall Stewart 
1148f8829a4aSRandall Stewart 	uint16_t stream_locked_on;
1149f8829a4aSRandall Stewart 	uint16_t ecn_echo_cnt_onq;
1150f8829a4aSRandall Stewart 
1151f8829a4aSRandall Stewart 	uint16_t free_chunk_cnt;
1152f8829a4aSRandall Stewart 	uint8_t stream_locked;
1153f8829a4aSRandall Stewart 	uint8_t authenticated;	/* packet authenticated ok */
1154f8829a4aSRandall Stewart 	/*
115542551e99SRandall Stewart 	 * This flag indicates that a SACK need to be sent. Initially this
115642551e99SRandall Stewart 	 * is 1 to send the first sACK immediately.
1157f8829a4aSRandall Stewart 	 */
115842551e99SRandall Stewart 	uint8_t send_sack;
1159f8829a4aSRandall Stewart 
1160899288aeSRandall Stewart 	/* max burst of new packets into the network */
116190fed1d8SMichael Tuexen 	uint32_t max_burst;
1162899288aeSRandall Stewart 	/* max burst of fast retransmit packets */
1163899288aeSRandall Stewart 	uint32_t fr_max_burst;
1164f8829a4aSRandall Stewart 
1165f8829a4aSRandall Stewart 	uint8_t sat_network;	/* RTT is in range of sat net or greater */
1166f8829a4aSRandall Stewart 	uint8_t sat_network_lockout;	/* lockout code */
1167f8829a4aSRandall Stewart 	uint8_t burst_limit_applied;	/* Burst limit in effect at last send? */
1168f8829a4aSRandall Stewart 	/* flag goes on when we are doing a partial delivery api */
1169f8829a4aSRandall Stewart 	uint8_t hb_random_values[4];
1170f8829a4aSRandall Stewart 	uint8_t fragmented_delivery_inprogress;
1171f8829a4aSRandall Stewart 	uint8_t fragment_flags;
1172f8829a4aSRandall Stewart 	uint8_t last_flags_delivered;
1173f8829a4aSRandall Stewart 	uint8_t hb_ect_randombit;
1174f8829a4aSRandall Stewart 	uint8_t hb_random_idx;
1175b10f2dc8SMichael Tuexen 	uint8_t default_dscp;
11761b649582SRandall Stewart 	uint8_t asconf_del_pending;	/* asconf delete last addr pending */
11777cca1775SRandall Stewart 	uint8_t trigger_reset;
1178f8829a4aSRandall Stewart 	/*
1179f8829a4aSRandall Stewart 	 * This value, plus all other ack'd but above cum-ack is added
1180f8829a4aSRandall Stewart 	 * together to cross check against the bit that we have yet to
1181f8829a4aSRandall Stewart 	 * define (probably in the SACK). When the cum-ack is updated, this
1182f8829a4aSRandall Stewart 	 * sum is updated as well.
1183f8829a4aSRandall Stewart 	 */
1184493d8e5aSRandall Stewart 
1185dd973b0eSMichael Tuexen 	/* Flags whether an extension is supported or not */
1186f342355aSMichael Tuexen 	uint8_t ecn_supported;
1187dd973b0eSMichael Tuexen 	uint8_t prsctp_supported;
1188c79bec9cSMichael Tuexen 	uint8_t auth_supported;
1189c79bec9cSMichael Tuexen 	uint8_t asconf_supported;
1190317e00efSMichael Tuexen 	uint8_t reconfig_supported;
1191caea9879SMichael Tuexen 	uint8_t nrsack_supported;
1192cb9b8e6fSMichael Tuexen 	uint8_t pktdrop_supported;
119344249214SRandall Stewart 	uint8_t idata_supported;
1194f8829a4aSRandall Stewart 
1195c4e848b7SRandall Stewart 	/* Did the peer make the stream config (add out) request */
1196c4e848b7SRandall Stewart 	uint8_t peer_req_out;
1197c4e848b7SRandall Stewart 
1198c4e848b7SRandall Stewart 	uint8_t local_strreset_support;
1199830d754dSRandall Stewart 	uint8_t peer_supports_nat;
1200f8829a4aSRandall Stewart 
1201a1cb341bSMichael Tuexen 	struct sctp_scoping scope;
1202f8829a4aSRandall Stewart 	/* flags to handle send alternate net tracking */
1203f8829a4aSRandall Stewart 	uint8_t used_alt_asconfack;
1204f8829a4aSRandall Stewart 	uint8_t fast_retran_loss_recovery;
1205f8829a4aSRandall Stewart 	uint8_t sat_t3_loss_recovery;
1206f8829a4aSRandall Stewart 	uint8_t dropped_special_cnt;
1207f8829a4aSRandall Stewart 	uint8_t seen_a_sack_this_pkt;
1208f8829a4aSRandall Stewart 	uint8_t stream_reset_outstanding;
1209f8829a4aSRandall Stewart 	uint8_t stream_reset_out_is_outstanding;
1210f8829a4aSRandall Stewart 	uint8_t delayed_connection;
1211f8829a4aSRandall Stewart 	uint8_t ifp_had_enobuf;
1212f8829a4aSRandall Stewart 	uint8_t saw_sack_with_frags;
1213d9c5cfeaSMichael Tuexen 	uint8_t saw_sack_with_nr_frags;
1214830d754dSRandall Stewart 	uint8_t in_asocid_hash;
1215f8829a4aSRandall Stewart 	uint8_t assoc_up_sent;
12162afb3e84SRandall Stewart 	uint8_t adaptation_needed;
12172afb3e84SRandall Stewart 	uint8_t adaptation_sent;
1218f8829a4aSRandall Stewart 	/* CMT variables */
1219f8829a4aSRandall Stewart 	uint8_t cmt_dac_pkts_rcvd;
1220f8829a4aSRandall Stewart 	uint8_t sctp_cmt_on_off;
1221f8829a4aSRandall Stewart 	uint8_t iam_blocking;
122244b7479bSRandall Stewart 	uint8_t cookie_how[8];
1223b54d3a6cSRandall Stewart 	/* JRS 5/21/07 - CMT PF variable */
1224b54d3a6cSRandall Stewart 	uint8_t sctp_cmt_pf;
1225299108c5SRandall Stewart 	uint8_t use_precise_time;
122606c9f9bdSMichael Tuexen 	uint64_t sctp_features;
122759b6d5beSMichael Tuexen 	uint32_t max_cwnd;
1228c9c58059SMichael Tuexen 	uint16_t port;		/* remote UDP encapsulation port */
1229f8829a4aSRandall Stewart 	/*
1230f8829a4aSRandall Stewart 	 * The mapping array is used to track out of order sequences above
1231f8829a4aSRandall Stewart 	 * last_acked_seq. 0 indicates packet missing 1 indicates packet
1232f8829a4aSRandall Stewart 	 * rec'd. We slide it up every time we raise last_acked_seq and 0
1233f8829a4aSRandall Stewart 	 * trailing locactions out.  If I get a TSN above the array
1234f8829a4aSRandall Stewart 	 * mappingArraySz, I discard the datagram and let retransmit happen.
1235f8829a4aSRandall Stewart 	 */
1236f42a358aSRandall Stewart 	uint32_t marked_retrans;
1237f42a358aSRandall Stewart 	uint32_t timoinit;
1238f42a358aSRandall Stewart 	uint32_t timodata;
1239f42a358aSRandall Stewart 	uint32_t timosack;
1240f42a358aSRandall Stewart 	uint32_t timoshutdown;
1241f42a358aSRandall Stewart 	uint32_t timoheartbeat;
1242f42a358aSRandall Stewart 	uint32_t timocookie;
1243f42a358aSRandall Stewart 	uint32_t timoshutdownack;
1244f42a358aSRandall Stewart 	struct timeval start_time;
1245f42a358aSRandall Stewart 	struct timeval discontinuity_time;
1246f0396ad1SMichael Tuexen 	uint64_t abandoned_unsent[SCTP_PR_SCTP_MAX + 1];
1247f0396ad1SMichael Tuexen 	uint64_t abandoned_sent[SCTP_PR_SCTP_MAX + 1];
1248f8829a4aSRandall Stewart };
1249f8829a4aSRandall Stewart 
1250f8829a4aSRandall Stewart #endif
1251