xref: /freebsd/sys/netinet/sctp_os_bsd.h (revision fd0d53f85c9f5d1a31367eb1b8b5e74cc83afd52)
1f8829a4aSRandall Stewart /*-
251369649SPedro F. Giffuni  * SPDX-License-Identifier: BSD-3-Clause
351369649SPedro F. Giffuni  *
4b1006367SRandall Stewart  * Copyright (c) 2006-2007, 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  */
34807aad63SMichael Tuexen 
3573932c69SRandall Stewart #include <sys/cdefs.h>
36f8829a4aSRandall Stewart __FBSDID("$FreeBSD$");
37807aad63SMichael Tuexen 
38807aad63SMichael Tuexen #ifndef _NETINET_SCTP_OS_BSD_H_
39807aad63SMichael Tuexen #define _NETINET_SCTP_OS_BSD_H_
40f8829a4aSRandall Stewart /*
41f8829a4aSRandall Stewart  * includes
42f8829a4aSRandall Stewart  */
4393164cf9SRandall Stewart #include "opt_inet6.h"
4493164cf9SRandall Stewart #include "opt_inet.h"
4593164cf9SRandall Stewart #include "opt_sctp.h"
46603724d3SBjoern A. Zeeb 
4793164cf9SRandall Stewart #include <sys/param.h>
48052c5ec4SMark Johnston #include <sys/domain.h>
49052c5ec4SMark Johnston #include <sys/eventhandler.h>
5080fefe0aSRandall Stewart #include <sys/ktr.h>
5193164cf9SRandall Stewart #include <sys/systm.h>
5293164cf9SRandall Stewart #include <sys/malloc.h>
53052c5ec4SMark Johnston #include <sys/module.h>
5493164cf9SRandall Stewart #include <sys/kernel.h>
5593164cf9SRandall Stewart #include <sys/sysctl.h>
5693164cf9SRandall Stewart #include <sys/mbuf.h>
5793164cf9SRandall Stewart #include <sys/protosw.h>
5893164cf9SRandall Stewart #include <sys/socket.h>
5993164cf9SRandall Stewart #include <sys/socketvar.h>
6018e198d3SRandall Stewart #include <sys/jail.h>
6193164cf9SRandall Stewart #include <sys/sysctl.h>
6293164cf9SRandall Stewart #include <sys/resourcevar.h>
6393164cf9SRandall Stewart #include <sys/uio.h>
64c99efcf6SRandall Stewart #include <sys/lock.h>
65c99efcf6SRandall Stewart #include <sys/rwlock.h>
6642551e99SRandall Stewart #include <sys/kthread.h>
6793164cf9SRandall Stewart #include <sys/priv.h>
68f8829a4aSRandall Stewart #include <sys/random.h>
6993164cf9SRandall Stewart #include <sys/limits.h>
7093164cf9SRandall Stewart #include <sys/queue.h>
7193164cf9SRandall Stewart #include <machine/cpu.h>
7293164cf9SRandall Stewart 
7393164cf9SRandall Stewart #include <net/if.h>
7493164cf9SRandall Stewart #include <net/if_types.h>
7593164cf9SRandall Stewart #include <net/if_var.h>
7693164cf9SRandall Stewart #include <net/route.h>
77983066f0SAlexander V. Chernikov #include <net/route/nhop.h>
7845623593SMichael Tuexen #include <net/vnet.h>
7993164cf9SRandall Stewart 
8093164cf9SRandall Stewart #include <netinet/in.h>
8193164cf9SRandall Stewart #include <netinet/in_systm.h>
8293164cf9SRandall Stewart #include <netinet/ip.h>
83983066f0SAlexander V. Chernikov #include <netinet/in_fib.h>
8493164cf9SRandall Stewart #include <netinet/in_pcb.h>
8593164cf9SRandall Stewart #include <netinet/in_var.h>
8693164cf9SRandall Stewart #include <netinet/ip_var.h>
8793164cf9SRandall Stewart #include <netinet/ip_icmp.h>
8893164cf9SRandall Stewart #include <netinet/icmp_var.h>
8993164cf9SRandall Stewart 
9093164cf9SRandall Stewart #ifdef INET6
9193164cf9SRandall Stewart #include <netinet/ip6.h>
92983066f0SAlexander V. Chernikov #include <netinet6/in6_fib.h>
9393164cf9SRandall Stewart #include <netinet6/ip6_var.h>
9493164cf9SRandall Stewart #include <netinet6/in6_pcb.h>
9593164cf9SRandall Stewart #include <netinet6/ip6protosw.h>
9693164cf9SRandall Stewart #include <netinet6/nd6.h>
9793164cf9SRandall Stewart #include <netinet6/scope6_var.h>
9893164cf9SRandall Stewart #endif				/* INET6 */
9993164cf9SRandall Stewart 
10093164cf9SRandall Stewart #include <netinet/ip_options.h>
10193164cf9SRandall Stewart 
102e6b2b4b6SMichael Tuexen #include <crypto/sha1.h>
1037a3f5d11SAllan Jude #include <crypto/sha2/sha256.h>
104e6b2b4b6SMichael Tuexen 
105207304d4SRandall Stewart /* Declare all the malloc names for all the various mallocs */
106207304d4SRandall Stewart MALLOC_DECLARE(SCTP_M_MAP);
107207304d4SRandall Stewart MALLOC_DECLARE(SCTP_M_STRMI);
108207304d4SRandall Stewart MALLOC_DECLARE(SCTP_M_STRMO);
109207304d4SRandall Stewart MALLOC_DECLARE(SCTP_M_ASC_ADDR);
110207304d4SRandall Stewart MALLOC_DECLARE(SCTP_M_ASC_IT);
111207304d4SRandall Stewart MALLOC_DECLARE(SCTP_M_AUTH_CL);
112207304d4SRandall Stewart MALLOC_DECLARE(SCTP_M_AUTH_KY);
113207304d4SRandall Stewart MALLOC_DECLARE(SCTP_M_AUTH_HL);
114207304d4SRandall Stewart MALLOC_DECLARE(SCTP_M_AUTH_IF);
115207304d4SRandall Stewart MALLOC_DECLARE(SCTP_M_STRESET);
116207304d4SRandall Stewart MALLOC_DECLARE(SCTP_M_CMSG);
117207304d4SRandall Stewart MALLOC_DECLARE(SCTP_M_COPYAL);
118207304d4SRandall Stewart MALLOC_DECLARE(SCTP_M_VRF);
119207304d4SRandall Stewart MALLOC_DECLARE(SCTP_M_IFA);
120207304d4SRandall Stewart MALLOC_DECLARE(SCTP_M_IFN);
121207304d4SRandall Stewart MALLOC_DECLARE(SCTP_M_TIMW);
122207304d4SRandall Stewart MALLOC_DECLARE(SCTP_M_MVRF);
123207304d4SRandall Stewart MALLOC_DECLARE(SCTP_M_ITER);
124207304d4SRandall Stewart MALLOC_DECLARE(SCTP_M_SOCKOPT);
125bfc46083SRandall Stewart MALLOC_DECLARE(SCTP_M_MCORE);
126f8829a4aSRandall Stewart 
127c4739e2fSRandall Stewart #if defined(SCTP_LOCAL_TRACE_BUF)
128c4739e2fSRandall Stewart 
129c4739e2fSRandall Stewart #define SCTP_GET_CYCLECOUNT get_cyclecount()
130c4739e2fSRandall Stewart #define SCTP_CTR6 sctp_log_trace
131c4739e2fSRandall Stewart 
132c4739e2fSRandall Stewart #else
133c4739e2fSRandall Stewart #define SCTP_CTR6 CTR6
134c4739e2fSRandall Stewart #endif
135c4739e2fSRandall Stewart 
136f8829a4aSRandall Stewart /*
137fc14de76SRandall Stewart  * Macros to expand out globals defined by various modules
138fc14de76SRandall Stewart  * to either a real global or a virtualized instance of one,
139603724d3SBjoern A. Zeeb  * depending on whether VIMAGE is defined.
140fc14de76SRandall Stewart  */
141fc14de76SRandall Stewart /* then define the macro(s) that hook into the vimage macros */
142482444b4SRandall Stewart #define MODULE_GLOBAL(__SYMBOL) V_##__SYMBOL
143482444b4SRandall Stewart 
1448518270eSMichael Tuexen #define V_system_base_info VNET(system_base_info)
145482444b4SRandall Stewart #define SCTP_BASE_INFO(__m) V_system_base_info.sctppcbinfo.__m
146482444b4SRandall Stewart #define SCTP_BASE_STATS V_system_base_info.sctpstat
147482444b4SRandall Stewart #define SCTP_BASE_STAT(__m) V_system_base_info.sctpstat.__m
148f47f328dSMichael Tuexen #define SCTP_BASE_SYSCTL(__m) V_system_base_info.sctpsysctl.__m
149482444b4SRandall Stewart #define SCTP_BASE_VAR(__m) V_system_base_info.__m
150a99b6783SRandall Stewart 
151cd3fd531SMichael Tuexen #define SCTP_PRINTF(params...)	printf(params)
15217205eccSRandall Stewart #if defined(SCTP_DEBUG)
15317205eccSRandall Stewart #define SCTPDBG(level, params...)					\
15417205eccSRandall Stewart {									\
15517205eccSRandall Stewart 	do {								\
156b3f1ea41SRandall Stewart 		if (SCTP_BASE_SYSCTL(sctp_debug_on) & level ) {		\
157cd3fd531SMichael Tuexen 			SCTP_PRINTF(params);				\
15817205eccSRandall Stewart 		}							\
15917205eccSRandall Stewart 	} while (0);							\
16017205eccSRandall Stewart }
16117205eccSRandall Stewart #define SCTPDBG_ADDR(level, addr)					\
16217205eccSRandall Stewart {									\
16317205eccSRandall Stewart 	do {								\
164b3f1ea41SRandall Stewart 		if (SCTP_BASE_SYSCTL(sctp_debug_on) & level ) {		\
16517205eccSRandall Stewart 			sctp_print_address(addr);			\
16617205eccSRandall Stewart 		}							\
16717205eccSRandall Stewart 	} while (0);							\
16817205eccSRandall Stewart }
16917205eccSRandall Stewart #else
17017205eccSRandall Stewart #define SCTPDBG(level, params...)
17117205eccSRandall Stewart #define SCTPDBG_ADDR(level, addr)
17217205eccSRandall Stewart #endif
17317205eccSRandall Stewart 
17480fefe0aSRandall Stewart #ifdef SCTP_LTRACE_CHUNKS
175dfb11ef8SRandall Stewart #define SCTP_LTRACE_CHK(a, b, c, d) if(SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_LTRACE_CHUNK_ENABLE) SCTP_CTR6(KTR_SUBSYS, "SCTP:%d[%d]:%x-%x-%x-%x", SCTP_LOG_CHUNK_PROC, 0, a, b, c, d)
17680fefe0aSRandall Stewart #else
17780fefe0aSRandall Stewart #define SCTP_LTRACE_CHK(a, b, c, d)
17880fefe0aSRandall Stewart #endif
17980fefe0aSRandall Stewart 
18080fefe0aSRandall Stewart #ifdef SCTP_LTRACE_ERRORS
181cd3fd531SMichael Tuexen #define SCTP_LTRACE_ERR_RET_PKT(m, inp, stcb, net, file, err) \
182cd3fd531SMichael Tuexen 	if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_LTRACE_ERROR_ENABLE) \
183cd3fd531SMichael Tuexen 		SCTP_PRINTF("mbuf:%p inp:%p stcb:%p net:%p file:%x line:%d error:%d\n", \
184c4739e2fSRandall Stewart 		            m, inp, stcb, net, file, __LINE__, err);
185cd3fd531SMichael Tuexen #define SCTP_LTRACE_ERR_RET(inp, stcb, net, file, err) \
186cd3fd531SMichael Tuexen 	if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_LTRACE_ERROR_ENABLE) \
187cd3fd531SMichael Tuexen 		SCTP_PRINTF("inp:%p stcb:%p net:%p file:%x line:%d error:%d\n", \
188c4739e2fSRandall Stewart 		            inp, stcb, net, file, __LINE__, err);
18980fefe0aSRandall Stewart #else
190c4739e2fSRandall Stewart #define SCTP_LTRACE_ERR_RET_PKT(m, inp, stcb, net, file, err)
191c4739e2fSRandall Stewart #define SCTP_LTRACE_ERR_RET(inp, stcb, net, file, err)
19280fefe0aSRandall Stewart #endif
19380fefe0aSRandall Stewart 
194f8829a4aSRandall Stewart /*
19542551e99SRandall Stewart  * Local address and interface list handling
19642551e99SRandall Stewart  */
19742551e99SRandall Stewart #define SCTP_MAX_VRF_ID		0
19842551e99SRandall Stewart #define SCTP_SIZE_OF_VRF_HASH	3
19942551e99SRandall Stewart #define SCTP_IFNAMSIZ		IFNAMSIZ
20042551e99SRandall Stewart #define SCTP_DEFAULT_VRFID	0
20117205eccSRandall Stewart #define SCTP_VRF_ADDR_HASH_SIZE	16
20217205eccSRandall Stewart #define SCTP_VRF_IFN_HASH_SIZE	3
203f4c93d24SRandall Stewart #define	SCTP_INIT_VRF_TABLEID(vrf)
20442551e99SRandall Stewart 
20542551e99SRandall Stewart #define SCTP_IFN_IS_IFT_LOOP(ifn) ((ifn)->ifn_type == IFT_LOOP)
206983066f0SAlexander V. Chernikov #define SCTP_ROUTE_IS_REAL_LOOP(ro) ((ro)->ro_nh && (ro)->ro_nh->nh_ifa && (ro)->ro_nh->nh_ifa->ifa_ifp && (ro)->ro_nh->nh_ifa->ifa_ifp->if_type == IFT_LOOP)
20742551e99SRandall Stewart 
20842551e99SRandall Stewart /*
20942551e99SRandall Stewart  * Access to IFN's to help with src-addr-selection
21042551e99SRandall Stewart  */
21142551e99SRandall Stewart /* This could return VOID if the index works but for BSD we provide both. */
212983066f0SAlexander V. Chernikov #define SCTP_GET_IFN_VOID_FROM_ROUTE(ro) (void *)ro->ro_nh->nh_ifp
213983066f0SAlexander V. Chernikov #define SCTP_GET_IF_INDEX_FROM_ROUTE(ro) (ro)->ro_nh->nh_ifp->if_index
214983066f0SAlexander V. Chernikov #define SCTP_ROUTE_HAS_VALID_IFN(ro) ((ro)->ro_nh && (ro)->ro_nh->nh_ifp)
21542551e99SRandall Stewart 
21642551e99SRandall Stewart /*
217f8829a4aSRandall Stewart  * general memory allocation
218f8829a4aSRandall Stewart  */
219f8829a4aSRandall Stewart #define SCTP_MALLOC(var, type, size, name) \
220f8829a4aSRandall Stewart 	do { \
2211ede983cSDag-Erling Smørgrav 		var = (type)malloc(size, name, M_NOWAIT); \
222f8829a4aSRandall Stewart 	} while (0)
223f8829a4aSRandall Stewart 
2241ede983cSDag-Erling Smørgrav #define SCTP_FREE(var, type)	free(var, type)
225f8829a4aSRandall Stewart 
226f8829a4aSRandall Stewart #define SCTP_MALLOC_SONAME(var, type, size) \
227f8829a4aSRandall Stewart 	do { \
2281ede983cSDag-Erling Smørgrav 		var = (type)malloc(size, M_SONAME, M_WAITOK | M_ZERO); \
229f8829a4aSRandall Stewart 	} while (0)
230f8829a4aSRandall Stewart 
2311ede983cSDag-Erling Smørgrav #define SCTP_FREE_SONAME(var)	free(var, M_SONAME)
232f8829a4aSRandall Stewart 
23342551e99SRandall Stewart #define SCTP_PROCESS_STRUCT struct proc *
23442551e99SRandall Stewart 
235f8829a4aSRandall Stewart /*
236f8829a4aSRandall Stewart  * zone allocation functions
237f8829a4aSRandall Stewart  */
238f8829a4aSRandall Stewart #include <vm/uma.h>
239c54a18d2SRandall Stewart 
240f8829a4aSRandall Stewart /* SCTP_ZONE_INIT: initialize the zone */
241f8829a4aSRandall Stewart typedef struct uma_zone *sctp_zone_t;
242f8829a4aSRandall Stewart #define SCTP_ZONE_INIT(zone, name, size, number) { \
243f8829a4aSRandall Stewart 	zone = uma_zcreate(name, size, NULL, NULL, NULL, NULL, UMA_ALIGN_PTR,\
244cf458c64SMichael Tuexen 		0); \
245f8829a4aSRandall Stewart 	uma_zone_set_max(zone, number); \
246f8829a4aSRandall Stewart }
247f8829a4aSRandall Stewart 
248c54a18d2SRandall Stewart #define SCTP_ZONE_DESTROY(zone) uma_zdestroy(zone)
249c54a18d2SRandall Stewart 
250f8829a4aSRandall Stewart /* SCTP_ZONE_GET: allocate element from the zone */
251f42a358aSRandall Stewart #define SCTP_ZONE_GET(zone, type) \
252f42a358aSRandall Stewart 	(type *)uma_zalloc(zone, M_NOWAIT);
253f8829a4aSRandall Stewart 
254f8829a4aSRandall Stewart /* SCTP_ZONE_FREE: free element from the zone */
255f8829a4aSRandall Stewart #define SCTP_ZONE_FREE(zone, element) \
256f8829a4aSRandall Stewart 	uma_zfree(zone, element);
257c54a18d2SRandall Stewart 
25844b7479bSRandall Stewart #define SCTP_HASH_INIT(size, hashmark) hashinit_flags(size, M_PCB, hashmark, HASH_NOWAIT)
25944b7479bSRandall Stewart #define SCTP_HASH_FREE(table, hashmark) hashdestroy(table, M_PCB, hashmark)
26044b7479bSRandall Stewart 
26144b7479bSRandall Stewart #define SCTP_M_COPYM	m_copym
262f8829a4aSRandall Stewart 
263f8829a4aSRandall Stewart /*
264139bc87fSRandall Stewart  * timers
265139bc87fSRandall Stewart  */
266139bc87fSRandall Stewart #include <sys/callout.h>
267139bc87fSRandall Stewart typedef struct callout sctp_os_timer_t;
268139bc87fSRandall Stewart 
269139bc87fSRandall Stewart #define SCTP_OS_TIMER_INIT(tmr)	callout_init(tmr, 1)
2708745f898SMichael Tuexen /*
2718745f898SMichael Tuexen  * NOTE: The next two shouldn't be called directly outside of sctp_timer_start()
2728745f898SMichael Tuexen  * and sctp_timer_stop(), since they don't handle incrementing/decrementing
2738745f898SMichael Tuexen  * relevant reference counts.
2748745f898SMichael Tuexen  */
275139bc87fSRandall Stewart #define SCTP_OS_TIMER_START		callout_reset
276139bc87fSRandall Stewart #define SCTP_OS_TIMER_STOP		callout_stop
27744b7479bSRandall Stewart #define SCTP_OS_TIMER_STOP_DRAIN	callout_drain
278139bc87fSRandall Stewart #define SCTP_OS_TIMER_PENDING		callout_pending
279139bc87fSRandall Stewart #define SCTP_OS_TIMER_ACTIVE		callout_active
280139bc87fSRandall Stewart #define SCTP_OS_TIMER_DEACTIVATE	callout_deactivate
281139bc87fSRandall Stewart 
282207304d4SRandall Stewart #define sctp_get_tick_count() (ticks)
283207304d4SRandall Stewart 
284ceaad40aSRandall Stewart #define SCTP_UNUSED __attribute__((unused))
28535918f85SRandall Stewart 
286139bc87fSRandall Stewart /*
287f8829a4aSRandall Stewart  * Functions
288f8829a4aSRandall Stewart  */
289139bc87fSRandall Stewart /* Mbuf manipulation and access macros  */
290139bc87fSRandall Stewart #define SCTP_BUF_LEN(m) (m->m_len)
291139bc87fSRandall Stewart #define SCTP_BUF_NEXT(m) (m->m_next)
292139bc87fSRandall Stewart #define SCTP_BUF_NEXT_PKT(m) (m->m_nextpkt)
293139bc87fSRandall Stewart #define SCTP_BUF_RESV_UF(m, size) m->m_data += size
294139bc87fSRandall Stewart #define SCTP_BUF_AT(m, size) m->m_data + size
295139bc87fSRandall Stewart #define SCTP_BUF_IS_EXTENDED(m) (m->m_flags & M_EXT)
296296d0b94SMichael Tuexen #define SCTP_BUF_SIZE M_SIZE
297139bc87fSRandall Stewart #define SCTP_BUF_TYPE(m) (m->m_type)
298139bc87fSRandall Stewart #define SCTP_BUF_RECVIF(m) (m->m_pkthdr.rcvif)
299139bc87fSRandall Stewart #define SCTP_BUF_PREPEND	M_PREPEND
3005e54f665SRandall Stewart 
301ed6a66caSRobert Watson #define SCTP_ALIGN_TO_END(m, len) M_ALIGN(m, len)
3020696e120SRandall Stewart 
303999f86d6SMichael Tuexen #define SCTP_SNPRINTF(...) snprintf(__VA_ARGS__)
304999f86d6SMichael Tuexen 
3050696e120SRandall Stewart /* We make it so if you have up to 4 threads
306b1ce21c6SRebecca Cran  * writing based on the default size of
3070696e120SRandall Stewart  * the packet log 65 k, that would be
3080696e120SRandall Stewart  * 4 16k packets before we would hit
3090696e120SRandall Stewart  * a problem.
3100696e120SRandall Stewart  */
3110696e120SRandall Stewart #define SCTP_PKTLOG_WRITERS_NEED_LOCK 3
3120696e120SRandall Stewart 
31317205eccSRandall Stewart /*************************/
31417205eccSRandall Stewart /*      MTU              */
31517205eccSRandall Stewart /*************************/
316*fd0d53f8SMichael Tuexen #define SCTP_GATHER_MTU_FROM_IFN_INFO(ifn, ifn_index) ((ifn != NULL) ? ((struct ifnet *)ifn)->if_mtu : 0)
317983066f0SAlexander V. Chernikov #define SCTP_GATHER_MTU_FROM_ROUTE(sctp_ifa, sa, nh) ((uint32_t)((nh != NULL) ? nh->nh_mtu : 0))
31817205eccSRandall Stewart 
319139bc87fSRandall Stewart /*************************/
320139bc87fSRandall Stewart /* These are for logging */
321139bc87fSRandall Stewart /*************************/
322139bc87fSRandall Stewart /* return the base ext data pointer */
323139bc87fSRandall Stewart #define SCTP_BUF_EXTEND_BASE(m) (m->m_ext.ext_buf)
324139bc87fSRandall Stewart  /* return the refcnt of the data pointer */
325fcc34a23SGleb Smirnoff #define SCTP_BUF_EXTEND_REFCNT(m) (*m->m_ext.ext_cnt)
326139bc87fSRandall Stewart /* return any buffer related flags, this is
327139bc87fSRandall Stewart  * used beyond logging for apple only.
328139bc87fSRandall Stewart  */
329139bc87fSRandall Stewart #define SCTP_BUF_GET_FLAGS(m) (m->m_flags)
330139bc87fSRandall Stewart 
331139bc87fSRandall Stewart /* For BSD this just accesses the M_PKTHDR length
332139bc87fSRandall Stewart  * so it operates on an mbuf with hdr flag. Other
333b1ce21c6SRebecca Cran  * O/S's may have separate packet header and mbuf
334139bc87fSRandall Stewart  * chain pointers.. thus the macro.
335139bc87fSRandall Stewart  */
336139bc87fSRandall Stewart #define SCTP_HEADER_TO_CHAIN(m) (m)
33717205eccSRandall Stewart #define SCTP_DETACH_HEADER_FROM_CHAIN(m)
338f9384252SMichael Tuexen #define SCTP_HEADER_LEN(m) ((m)->m_pkthdr.len)
33917205eccSRandall Stewart #define SCTP_GET_HEADER_FOR_OUTPUT(o_pak) 0
34017205eccSRandall Stewart #define SCTP_RELEASE_HEADER(m)
34117205eccSRandall Stewart #define SCTP_RELEASE_PKT(m)	sctp_m_freem(m)
342b3f1ea41SRandall Stewart #define SCTP_ENABLE_UDP_CSUM(m) do { \
343b3f1ea41SRandall Stewart 					m->m_pkthdr.csum_flags = CSUM_UDP; \
344b3f1ea41SRandall Stewart 					m->m_pkthdr.csum_data = offsetof(struct udphdr, uh_sum); \
345b3f1ea41SRandall Stewart 				} while (0)
34617205eccSRandall Stewart 
34772fb6fdbSRandall Stewart #define SCTP_GET_PKT_VRFID(m, vrf_id)  ((vrf_id = SCTP_DEFAULT_VRFID) != SCTP_DEFAULT_VRFID)
34872fb6fdbSRandall Stewart 
349139bc87fSRandall Stewart /* Attach the chain of data into the sendable packet. */
350139bc87fSRandall Stewart #define SCTP_ATTACH_CHAIN(pak, m, packet_length) do { \
35117205eccSRandall Stewart                                                  pak = m; \
352139bc87fSRandall Stewart                                                  pak->m_pkthdr.len = packet_length; \
353139bc87fSRandall Stewart                          } while(0)
354139bc87fSRandall Stewart 
355139bc87fSRandall Stewart /* Other m_pkthdr type things */
356207304d4SRandall Stewart #define SCTP_IS_IT_BROADCAST(dst, m) ((m->m_flags & M_PKTHDR) ? in_broadcast(dst, m->m_pkthdr.rcvif) : 0)
357207304d4SRandall Stewart #define SCTP_IS_IT_LOOPBACK(m) ((m->m_flags & M_PKTHDR) && ((m->m_pkthdr.rcvif == NULL) || (m->m_pkthdr.rcvif->if_type == IFT_LOOP)))
358139bc87fSRandall Stewart 
359139bc87fSRandall Stewart /* This converts any input packet header
360139bc87fSRandall Stewart  * into the chain of data holders, for BSD
361139bc87fSRandall Stewart  * its a NOP.
362139bc87fSRandall Stewart  */
363139bc87fSRandall Stewart 
36417205eccSRandall Stewart /* get the v6 hop limit */
365983066f0SAlexander V. Chernikov #define SCTP_GET_HLIM(inp, ro)	in6_selecthlim(&inp->ip_inp.inp, (ro ? (ro->ro_nh ? (ro->ro_nh->nh_ifp) : (NULL)) : (NULL)));
36617205eccSRandall Stewart 
36744b7479bSRandall Stewart /* is the endpoint v6only? */
36894962f6bSMichael Tuexen #define SCTP_IPV6_V6ONLY(sctp_inpcb)	((sctp_inpcb)->ip_inp.inp.inp_flags & IN6P_IPV6_V6ONLY)
36942551e99SRandall Stewart /* is the socket non-blocking? */
37042551e99SRandall Stewart #define SCTP_SO_IS_NBIO(so)	((so)->so_state & SS_NBIO)
37142551e99SRandall Stewart #define SCTP_SET_SO_NBIO(so)	((so)->so_state |= SS_NBIO)
37242551e99SRandall Stewart #define SCTP_CLEAR_SO_NBIO(so)	((so)->so_state &= ~SS_NBIO)
37342551e99SRandall Stewart /* get the socket type */
37442551e99SRandall Stewart #define SCTP_SO_TYPE(so)	((so)->so_type)
3755ba11c4cSMichael Tuexen /* Use a macro for renaming sb_cc to sb_acc.
3765ba11c4cSMichael Tuexen  * Initially sb_ccc was used, but this broke select() when used
3775ba11c4cSMichael Tuexen  * with SCTP sockets.
3785ba11c4cSMichael Tuexen  */
379975c975bSMichael Tuexen #define sb_cc sb_acc
380132dea7dSRandall Stewart /* reserve sb space for a socket */
381132dea7dSRandall Stewart #define SCTP_SORESERVE(so, send, recv)	soreserve(so, send, recv)
38217205eccSRandall Stewart /* wakeup a socket */
38317205eccSRandall Stewart #define SCTP_SOWAKEUP(so)	wakeup(&(so)->so_timeo)
384132dea7dSRandall Stewart /* clear the socket buffer state */
385132dea7dSRandall Stewart #define SCTP_SB_CLEAR(sb)	\
3864e88d37aSMichael Tuexen 	(sb).sb_cc = 0;		\
387132dea7dSRandall Stewart 	(sb).sb_mb = NULL;	\
388132dea7dSRandall Stewart 	(sb).sb_mbcnt = 0;
38944b7479bSRandall Stewart 
3909dd6ca96SMichael Tuexen #define SCTP_SB_LIMIT_RCV(so) (SOLISTENING(so) ? so->sol_sbrcv_hiwat : so->so_rcv.sb_hiwat)
3919dd6ca96SMichael Tuexen #define SCTP_SB_LIMIT_SND(so) (SOLISTENING(so) ? so->sol_sbsnd_hiwat : so->so_snd.sb_hiwat)
39262c1ff9cSRandall Stewart 
393f42a358aSRandall Stewart /*
394bff64a4dSRandall Stewart  * routes, output, etc.
395bff64a4dSRandall Stewart  */
396bff64a4dSRandall Stewart typedef struct route sctp_route_t;
397bff64a4dSRandall Stewart 
398d089f9b9SMichael Tuexen #define SCTP_RTALLOC(ro, vrf_id, fibnum) \
399983066f0SAlexander V. Chernikov { \
400983066f0SAlexander V. Chernikov 	if ((ro)->ro_nh == NULL) { \
4011d1a743eSAlexander V. Chernikov 		(ro)->ro_nh = rib_lookup(fibnum, &(ro)->ro_dst, NHR_REF, 0); \
402983066f0SAlexander V. Chernikov 	} \
403983066f0SAlexander V. Chernikov }
40417205eccSRandall Stewart 
40517205eccSRandall Stewart /*
406678d7b94SAndre Oppermann  * SCTP protocol specific mbuf flags.
407678d7b94SAndre Oppermann  */
4085fc98a78SAndre Oppermann #define	M_NOTIFICATION		M_PROTO1	/* SCTP notification */
409678d7b94SAndre Oppermann 
410678d7b94SAndre Oppermann /*
41117205eccSRandall Stewart  * IP output routines
41217205eccSRandall Stewart  */
413f32357beSMichael Tuexen #define SCTP_IP_OUTPUT(result, o_pak, ro, _inp, vrf_id)                      \
41417205eccSRandall Stewart {                                                                            \
415f32357beSMichael Tuexen 	struct sctp_inpcb *local_inp = _inp;                                 \
4169c7635e1SMichael Tuexen 	int o_flgs = IP_RAWOUTPUT;                                           \
417f32357beSMichael Tuexen 	                                                                     \
41886bd0491SAndre Oppermann 	m_clrprotoflags(o_pak);                                              \
419f32357beSMichael Tuexen 	if ((local_inp != NULL) && (local_inp->sctp_socket != NULL)) {       \
420f32357beSMichael Tuexen 		o_flgs |= local_inp->sctp_socket->so_options & SO_DONTROUTE; \
421f32357beSMichael Tuexen 	}                                                                    \
42217205eccSRandall Stewart 	result = ip_output(o_pak, NULL, ro, o_flgs, 0, NULL);                \
42317205eccSRandall Stewart }
42417205eccSRandall Stewart 
425f32357beSMichael Tuexen #define SCTP_IP6_OUTPUT(result, o_pak, ro, ifp, _inp, vrf_id)                \
42617205eccSRandall Stewart {                                                                            \
427f32357beSMichael Tuexen 	struct sctp_inpcb *local_inp = _inp;                                 \
428f32357beSMichael Tuexen 	                                                                     \
42986bd0491SAndre Oppermann 	m_clrprotoflags(o_pak);                                              \
430f32357beSMichael Tuexen 	if (local_inp != NULL) {                                             \
43117205eccSRandall Stewart 		result = ip6_output(o_pak,                                   \
432f32357beSMichael Tuexen 		                    local_inp->ip_inp.inp.in6p_outputopts,   \
43317205eccSRandall Stewart 		                    (ro), 0, 0, ifp, NULL);                  \
434f32357beSMichael Tuexen 	} else {                                                             \
43517205eccSRandall Stewart 		result = ip6_output(o_pak, NULL, (ro), 0, 0, ifp, NULL);     \
436f32357beSMichael Tuexen 	}                                                                    \
43717205eccSRandall Stewart }
438bff64a4dSRandall Stewart 
439d06c82f1SRandall Stewart struct mbuf *
440d06c82f1SRandall Stewart sctp_get_mbuf_for_msg(unsigned int space_needed,
441d06c82f1SRandall Stewart     int want_header, int how, int allonebuf, int type);
442d06c82f1SRandall Stewart 
443bff64a4dSRandall Stewart /*
444f42a358aSRandall Stewart  * SCTP AUTH
445f42a358aSRandall Stewart  */
44690ab3571SMichael Tuexen #define SCTP_READ_RANDOM(buf, len)	arc4rand(buf, len, 0)
447f42a358aSRandall Stewart 
448f42a358aSRandall Stewart /* map standard crypto API names */
449e6b2b4b6SMichael Tuexen #define SCTP_SHA1_CTX		SHA1_CTX
450e6b2b4b6SMichael Tuexen #define SCTP_SHA1_INIT		SHA1Init
451e6b2b4b6SMichael Tuexen #define SCTP_SHA1_UPDATE	SHA1Update
452e6b2b4b6SMichael Tuexen #define SCTP_SHA1_FINAL(x,y)	SHA1Final((caddr_t)x, y)
453f42a358aSRandall Stewart 
454e6b2b4b6SMichael Tuexen #define SCTP_SHA256_CTX		SHA256_CTX
455e6b2b4b6SMichael Tuexen #define SCTP_SHA256_INIT	SHA256_Init
456e6b2b4b6SMichael Tuexen #define SCTP_SHA256_UPDATE	SHA256_Update
457e6b2b4b6SMichael Tuexen #define SCTP_SHA256_FINAL(x,y)	SHA256_Final((caddr_t)x, y)
458f42a358aSRandall Stewart 
459830d754dSRandall Stewart #define SCTP_DECREMENT_AND_CHECK_REFCOUNT(addr) (atomic_fetchadd_int(addr, -1) == 1)
460830d754dSRandall Stewart #if defined(INVARIANTS)
461830d754dSRandall Stewart #define SCTP_SAVE_ATOMIC_DECREMENT(addr, val) \
462830d754dSRandall Stewart { \
463830d754dSRandall Stewart 	int32_t oldval; \
464830d754dSRandall Stewart 	oldval = atomic_fetchadd_int(addr, -val); \
465830d754dSRandall Stewart 	if (oldval < val) { \
4669d18771fSRandall Stewart 		panic("Counter goes negative"); \
467830d754dSRandall Stewart 	} \
468830d754dSRandall Stewart }
469830d754dSRandall Stewart #else
470830d754dSRandall Stewart #define SCTP_SAVE_ATOMIC_DECREMENT(addr, val) \
471830d754dSRandall Stewart { \
472830d754dSRandall Stewart 	int32_t oldval; \
473830d754dSRandall Stewart 	oldval = atomic_fetchadd_int(addr, -val); \
474830d754dSRandall Stewart 	if (oldval < val) { \
475830d754dSRandall Stewart 		*addr = 0; \
476830d754dSRandall Stewart 	} \
477830d754dSRandall Stewart }
478830d754dSRandall Stewart #endif
4795d08768aSMichael Tuexen 
4805d08768aSMichael Tuexen #define SCTP_IS_LISTENING(inp) ((inp->sctp_flags & SCTP_PCB_FLAGS_ACCEPTING) != 0)
4815d08768aSMichael Tuexen 
482052c5ec4SMark Johnston int sctp_syscalls_init(void);
483052c5ec4SMark Johnston int sctp_syscalls_uninit(void);
484052c5ec4SMark Johnston 
4855d08768aSMichael Tuexen #endif
486