sctp_os_bsd.h 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485
  1. /*-
  2. * SPDX-License-Identifier: BSD-3-Clause
  3. *
  4. * Copyright (c) 2006-2007, by Cisco Systems, Inc. All rights reserved.
  5. * Copyright (c) 2008-2012, by Randall Stewart. All rights reserved.
  6. * Copyright (c) 2008-2012, by Michael Tuexen. All rights reserved.
  7. *
  8. * Redistribution and use in source and binary forms, with or without
  9. * modification, are permitted provided that the following conditions are met:
  10. *
  11. * a) Redistributions of source code must retain the above copyright notice,
  12. * this list of conditions and the following disclaimer.
  13. *
  14. * b) Redistributions in binary form must reproduce the above copyright
  15. * notice, this list of conditions and the following disclaimer in
  16. * the documentation and/or other materials provided with the distribution.
  17. *
  18. * c) Neither the name of Cisco Systems, Inc. nor the names of its
  19. * contributors may be used to endorse or promote products derived
  20. * from this software without specific prior written permission.
  21. *
  22. * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
  23. * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
  24. * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
  25. * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
  26. * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
  27. * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
  28. * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
  29. * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
  30. * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
  31. * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
  32. * THE POSSIBILITY OF SUCH DAMAGE.
  33. */
  34. #include <sys/cdefs.h>
  35. __FBSDID("$FreeBSD$");
  36. #ifndef _NETINET_SCTP_OS_BSD_H_
  37. #define _NETINET_SCTP_OS_BSD_H_
  38. /*
  39. * includes
  40. */
  41. #include "opt_inet6.h"
  42. #include "opt_inet.h"
  43. #include "opt_sctp.h"
  44. #include <sys/param.h>
  45. #include <sys/domain.h>
  46. #include <sys/eventhandler.h>
  47. #include <sys/ktr.h>
  48. #include <sys/systm.h>
  49. #include <sys/malloc.h>
  50. #include <sys/module.h>
  51. #include <sys/kernel.h>
  52. #include <sys/sysctl.h>
  53. #include <sys/mbuf.h>
  54. #include <sys/protosw.h>
  55. #include <sys/socket.h>
  56. #include <sys/socketvar.h>
  57. #include <sys/jail.h>
  58. #include <sys/sysctl.h>
  59. #include <sys/resourcevar.h>
  60. #include <sys/uio.h>
  61. #include <sys/lock.h>
  62. #include <sys/rwlock.h>
  63. #include <sys/kthread.h>
  64. #include <sys/priv.h>
  65. #include <sys/random.h>
  66. #include <sys/limits.h>
  67. #include <sys/queue.h>
  68. #include <machine/cpu.h>
  69. #include <net/if.h>
  70. #include <net/if_types.h>
  71. #include <net/if_var.h>
  72. #include <net/route.h>
  73. #include <net/route/nhop.h>
  74. #include <net/vnet.h>
  75. #include <netinet/in.h>
  76. #include <netinet/in_systm.h>
  77. #include <netinet/ip.h>
  78. #include <netinet/in_fib.h>
  79. #include <netinet/in_pcb.h>
  80. #include <netinet/in_var.h>
  81. #include <netinet/ip_var.h>
  82. #include <netinet/ip_icmp.h>
  83. #include <netinet/icmp_var.h>
  84. #ifdef INET6
  85. #include <netinet/ip6.h>
  86. #include <netinet6/in6_fib.h>
  87. #include <netinet6/ip6_var.h>
  88. #include <netinet6/in6_pcb.h>
  89. #include <netinet6/ip6protosw.h>
  90. #include <netinet6/nd6.h>
  91. #include <netinet6/scope6_var.h>
  92. #endif /* INET6 */
  93. #include <netinet/ip_options.h>
  94. #include <crypto/sha1.h>
  95. #include <crypto/sha2/sha256.h>
  96. /* Declare all the malloc names for all the various mallocs */
  97. MALLOC_DECLARE(SCTP_M_MAP);
  98. MALLOC_DECLARE(SCTP_M_STRMI);
  99. MALLOC_DECLARE(SCTP_M_STRMO);
  100. MALLOC_DECLARE(SCTP_M_ASC_ADDR);
  101. MALLOC_DECLARE(SCTP_M_ASC_IT);
  102. MALLOC_DECLARE(SCTP_M_AUTH_CL);
  103. MALLOC_DECLARE(SCTP_M_AUTH_KY);
  104. MALLOC_DECLARE(SCTP_M_AUTH_HL);
  105. MALLOC_DECLARE(SCTP_M_AUTH_IF);
  106. MALLOC_DECLARE(SCTP_M_STRESET);
  107. MALLOC_DECLARE(SCTP_M_CMSG);
  108. MALLOC_DECLARE(SCTP_M_COPYAL);
  109. MALLOC_DECLARE(SCTP_M_VRF);
  110. MALLOC_DECLARE(SCTP_M_IFA);
  111. MALLOC_DECLARE(SCTP_M_IFN);
  112. MALLOC_DECLARE(SCTP_M_TIMW);
  113. MALLOC_DECLARE(SCTP_M_MVRF);
  114. MALLOC_DECLARE(SCTP_M_ITER);
  115. MALLOC_DECLARE(SCTP_M_SOCKOPT);
  116. MALLOC_DECLARE(SCTP_M_MCORE);
  117. #if defined(SCTP_LOCAL_TRACE_BUF)
  118. #define SCTP_GET_CYCLECOUNT get_cyclecount()
  119. #define SCTP_CTR6 sctp_log_trace
  120. #else
  121. #define SCTP_CTR6 CTR6
  122. #endif
  123. /*
  124. * Macros to expand out globals defined by various modules
  125. * to either a real global or a virtualized instance of one,
  126. * depending on whether VIMAGE is defined.
  127. */
  128. /* then define the macro(s) that hook into the vimage macros */
  129. #define MODULE_GLOBAL(__SYMBOL) V_##__SYMBOL
  130. #define V_system_base_info VNET(system_base_info)
  131. #define SCTP_BASE_INFO(__m) V_system_base_info.sctppcbinfo.__m
  132. #define SCTP_BASE_STATS V_system_base_info.sctpstat
  133. #define SCTP_BASE_STAT(__m) V_system_base_info.sctpstat.__m
  134. #define SCTP_BASE_SYSCTL(__m) V_system_base_info.sctpsysctl.__m
  135. #define SCTP_BASE_VAR(__m) V_system_base_info.__m
  136. #define SCTP_PRINTF(params...) printf(params)
  137. #if defined(SCTP_DEBUG)
  138. #define SCTPDBG(level, params...) \
  139. { \
  140. do { \
  141. if (SCTP_BASE_SYSCTL(sctp_debug_on) & level ) { \
  142. SCTP_PRINTF(params); \
  143. } \
  144. } while (0); \
  145. }
  146. #define SCTPDBG_ADDR(level, addr) \
  147. { \
  148. do { \
  149. if (SCTP_BASE_SYSCTL(sctp_debug_on) & level ) { \
  150. sctp_print_address(addr); \
  151. } \
  152. } while (0); \
  153. }
  154. #else
  155. #define SCTPDBG(level, params...)
  156. #define SCTPDBG_ADDR(level, addr)
  157. #endif
  158. #ifdef SCTP_LTRACE_CHUNKS
  159. #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)
  160. #else
  161. #define SCTP_LTRACE_CHK(a, b, c, d)
  162. #endif
  163. #ifdef SCTP_LTRACE_ERRORS
  164. #define SCTP_LTRACE_ERR_RET_PKT(m, inp, stcb, net, file, err) \
  165. if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_LTRACE_ERROR_ENABLE) \
  166. SCTP_PRINTF("mbuf:%p inp:%p stcb:%p net:%p file:%x line:%d error:%d\n", \
  167. m, inp, stcb, net, file, __LINE__, err);
  168. #define SCTP_LTRACE_ERR_RET(inp, stcb, net, file, err) \
  169. if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_LTRACE_ERROR_ENABLE) \
  170. SCTP_PRINTF("inp:%p stcb:%p net:%p file:%x line:%d error:%d\n", \
  171. inp, stcb, net, file, __LINE__, err);
  172. #else
  173. #define SCTP_LTRACE_ERR_RET_PKT(m, inp, stcb, net, file, err)
  174. #define SCTP_LTRACE_ERR_RET(inp, stcb, net, file, err)
  175. #endif
  176. /*
  177. * Local address and interface list handling
  178. */
  179. #define SCTP_MAX_VRF_ID 0
  180. #define SCTP_SIZE_OF_VRF_HASH 3
  181. #define SCTP_IFNAMSIZ IFNAMSIZ
  182. #define SCTP_DEFAULT_VRFID 0
  183. #define SCTP_VRF_ADDR_HASH_SIZE 16
  184. #define SCTP_VRF_IFN_HASH_SIZE 3
  185. #define SCTP_INIT_VRF_TABLEID(vrf)
  186. #define SCTP_IFN_IS_IFT_LOOP(ifn) ((ifn)->ifn_type == IFT_LOOP)
  187. #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)
  188. /*
  189. * Access to IFN's to help with src-addr-selection
  190. */
  191. /* This could return VOID if the index works but for BSD we provide both. */
  192. #define SCTP_GET_IFN_VOID_FROM_ROUTE(ro) (void *)ro->ro_nh->nh_ifp
  193. #define SCTP_GET_IF_INDEX_FROM_ROUTE(ro) (ro)->ro_nh->nh_ifp->if_index
  194. #define SCTP_ROUTE_HAS_VALID_IFN(ro) ((ro)->ro_nh && (ro)->ro_nh->nh_ifp)
  195. /*
  196. * general memory allocation
  197. */
  198. #define SCTP_MALLOC(var, type, size, name) \
  199. do { \
  200. var = (type)malloc(size, name, M_NOWAIT); \
  201. } while (0)
  202. #define SCTP_FREE(var, type) free(var, type)
  203. #define SCTP_MALLOC_SONAME(var, type, size) \
  204. do { \
  205. var = (type)malloc(size, M_SONAME, M_WAITOK | M_ZERO); \
  206. } while (0)
  207. #define SCTP_FREE_SONAME(var) free(var, M_SONAME)
  208. #define SCTP_PROCESS_STRUCT struct proc *
  209. /*
  210. * zone allocation functions
  211. */
  212. #include <vm/uma.h>
  213. /* SCTP_ZONE_INIT: initialize the zone */
  214. typedef struct uma_zone *sctp_zone_t;
  215. #define SCTP_ZONE_INIT(zone, name, size, number) { \
  216. zone = uma_zcreate(name, size, NULL, NULL, NULL, NULL, UMA_ALIGN_PTR,\
  217. 0); \
  218. uma_zone_set_max(zone, number); \
  219. }
  220. #define SCTP_ZONE_DESTROY(zone) uma_zdestroy(zone)
  221. /* SCTP_ZONE_GET: allocate element from the zone */
  222. #define SCTP_ZONE_GET(zone, type) \
  223. (type *)uma_zalloc(zone, M_NOWAIT);
  224. /* SCTP_ZONE_FREE: free element from the zone */
  225. #define SCTP_ZONE_FREE(zone, element) \
  226. uma_zfree(zone, element);
  227. #define SCTP_HASH_INIT(size, hashmark) hashinit_flags(size, M_PCB, hashmark, HASH_NOWAIT)
  228. #define SCTP_HASH_FREE(table, hashmark) hashdestroy(table, M_PCB, hashmark)
  229. #define SCTP_M_COPYM m_copym
  230. /*
  231. * timers
  232. */
  233. #include <sys/callout.h>
  234. typedef struct callout sctp_os_timer_t;
  235. #define SCTP_OS_TIMER_INIT(tmr) callout_init(tmr, 1)
  236. /*
  237. * NOTE: The next two shouldn't be called directly outside of sctp_timer_start()
  238. * and sctp_timer_stop(), since they don't handle incrementing/decrementing
  239. * relevant reference counts.
  240. */
  241. #define SCTP_OS_TIMER_START callout_reset
  242. #define SCTP_OS_TIMER_STOP callout_stop
  243. #define SCTP_OS_TIMER_STOP_DRAIN callout_drain
  244. #define SCTP_OS_TIMER_PENDING callout_pending
  245. #define SCTP_OS_TIMER_ACTIVE callout_active
  246. #define SCTP_OS_TIMER_DEACTIVATE callout_deactivate
  247. #define sctp_get_tick_count() (ticks)
  248. #define SCTP_UNUSED __attribute__((unused))
  249. /*
  250. * Functions
  251. */
  252. /* Mbuf manipulation and access macros */
  253. #define SCTP_BUF_LEN(m) (m->m_len)
  254. #define SCTP_BUF_NEXT(m) (m->m_next)
  255. #define SCTP_BUF_NEXT_PKT(m) (m->m_nextpkt)
  256. #define SCTP_BUF_RESV_UF(m, size) m->m_data += size
  257. #define SCTP_BUF_AT(m, size) m->m_data + size
  258. #define SCTP_BUF_IS_EXTENDED(m) (m->m_flags & M_EXT)
  259. #define SCTP_BUF_SIZE M_SIZE
  260. #define SCTP_BUF_TYPE(m) (m->m_type)
  261. #define SCTP_BUF_RECVIF(m) (m->m_pkthdr.rcvif)
  262. #define SCTP_BUF_PREPEND M_PREPEND
  263. #define SCTP_ALIGN_TO_END(m, len) M_ALIGN(m, len)
  264. #define SCTP_SNPRINTF(...) snprintf(__VA_ARGS__)
  265. /* We make it so if you have up to 4 threads
  266. * writing based on the default size of
  267. * the packet log 65 k, that would be
  268. * 4 16k packets before we would hit
  269. * a problem.
  270. */
  271. #define SCTP_PKTLOG_WRITERS_NEED_LOCK 3
  272. /*************************/
  273. /* MTU */
  274. /*************************/
  275. #define SCTP_GATHER_MTU_FROM_IFN_INFO(ifn, ifn_index, af) ((struct ifnet *)ifn)->if_mtu
  276. #define SCTP_GATHER_MTU_FROM_ROUTE(sctp_ifa, sa, nh) ((uint32_t)((nh != NULL) ? nh->nh_mtu : 0))
  277. #define SCTP_GATHER_MTU_FROM_INTFC(sctp_ifn) ((sctp_ifn->ifn_p != NULL) ? ((struct ifnet *)(sctp_ifn->ifn_p))->if_mtu : 0)
  278. /*************************/
  279. /* These are for logging */
  280. /*************************/
  281. /* return the base ext data pointer */
  282. #define SCTP_BUF_EXTEND_BASE(m) (m->m_ext.ext_buf)
  283. /* return the refcnt of the data pointer */
  284. #define SCTP_BUF_EXTEND_REFCNT(m) (*m->m_ext.ext_cnt)
  285. /* return any buffer related flags, this is
  286. * used beyond logging for apple only.
  287. */
  288. #define SCTP_BUF_GET_FLAGS(m) (m->m_flags)
  289. /* For BSD this just accesses the M_PKTHDR length
  290. * so it operates on an mbuf with hdr flag. Other
  291. * O/S's may have separate packet header and mbuf
  292. * chain pointers.. thus the macro.
  293. */
  294. #define SCTP_HEADER_TO_CHAIN(m) (m)
  295. #define SCTP_DETACH_HEADER_FROM_CHAIN(m)
  296. #define SCTP_HEADER_LEN(m) ((m)->m_pkthdr.len)
  297. #define SCTP_GET_HEADER_FOR_OUTPUT(o_pak) 0
  298. #define SCTP_RELEASE_HEADER(m)
  299. #define SCTP_RELEASE_PKT(m) sctp_m_freem(m)
  300. #define SCTP_ENABLE_UDP_CSUM(m) do { \
  301. m->m_pkthdr.csum_flags = CSUM_UDP; \
  302. m->m_pkthdr.csum_data = offsetof(struct udphdr, uh_sum); \
  303. } while (0)
  304. #define SCTP_GET_PKT_VRFID(m, vrf_id) ((vrf_id = SCTP_DEFAULT_VRFID) != SCTP_DEFAULT_VRFID)
  305. /* Attach the chain of data into the sendable packet. */
  306. #define SCTP_ATTACH_CHAIN(pak, m, packet_length) do { \
  307. pak = m; \
  308. pak->m_pkthdr.len = packet_length; \
  309. } while(0)
  310. /* Other m_pkthdr type things */
  311. #define SCTP_IS_IT_BROADCAST(dst, m) ((m->m_flags & M_PKTHDR) ? in_broadcast(dst, m->m_pkthdr.rcvif) : 0)
  312. #define SCTP_IS_IT_LOOPBACK(m) ((m->m_flags & M_PKTHDR) && ((m->m_pkthdr.rcvif == NULL) || (m->m_pkthdr.rcvif->if_type == IFT_LOOP)))
  313. /* This converts any input packet header
  314. * into the chain of data holders, for BSD
  315. * its a NOP.
  316. */
  317. /* get the v6 hop limit */
  318. #define SCTP_GET_HLIM(inp, ro) in6_selecthlim(&inp->ip_inp.inp, (ro ? (ro->ro_nh ? (ro->ro_nh->nh_ifp) : (NULL)) : (NULL)));
  319. /* is the endpoint v6only? */
  320. #define SCTP_IPV6_V6ONLY(sctp_inpcb) ((sctp_inpcb)->ip_inp.inp.inp_flags & IN6P_IPV6_V6ONLY)
  321. /* is the socket non-blocking? */
  322. #define SCTP_SO_IS_NBIO(so) ((so)->so_state & SS_NBIO)
  323. #define SCTP_SET_SO_NBIO(so) ((so)->so_state |= SS_NBIO)
  324. #define SCTP_CLEAR_SO_NBIO(so) ((so)->so_state &= ~SS_NBIO)
  325. /* get the socket type */
  326. #define SCTP_SO_TYPE(so) ((so)->so_type)
  327. /* Use a macro for renaming sb_cc to sb_acc.
  328. * Initially sb_ccc was used, but this broke select() when used
  329. * with SCTP sockets.
  330. */
  331. #define sb_cc sb_acc
  332. /* reserve sb space for a socket */
  333. #define SCTP_SORESERVE(so, send, recv) soreserve(so, send, recv)
  334. /* wakeup a socket */
  335. #define SCTP_SOWAKEUP(so) wakeup(&(so)->so_timeo)
  336. /* clear the socket buffer state */
  337. #define SCTP_SB_CLEAR(sb) \
  338. (sb).sb_cc = 0; \
  339. (sb).sb_mb = NULL; \
  340. (sb).sb_mbcnt = 0;
  341. #define SCTP_SB_LIMIT_RCV(so) (SOLISTENING(so) ? so->sol_sbrcv_hiwat : so->so_rcv.sb_hiwat)
  342. #define SCTP_SB_LIMIT_SND(so) (SOLISTENING(so) ? so->sol_sbsnd_hiwat : so->so_snd.sb_hiwat)
  343. /*
  344. * routes, output, etc.
  345. */
  346. typedef struct route sctp_route_t;
  347. #define SCTP_RTALLOC(ro, vrf_id, fibnum) \
  348. { \
  349. if ((ro)->ro_nh == NULL) { \
  350. (ro)->ro_nh = rib_lookup(fibnum, &(ro)->ro_dst, NHR_REF, 0); \
  351. } \
  352. }
  353. /*
  354. * SCTP protocol specific mbuf flags.
  355. */
  356. #define M_NOTIFICATION M_PROTO1 /* SCTP notification */
  357. /*
  358. * IP output routines
  359. */
  360. #define SCTP_IP_OUTPUT(result, o_pak, ro, stcb, vrf_id) \
  361. { \
  362. int o_flgs = IP_RAWOUTPUT; \
  363. struct sctp_tcb *local_stcb = stcb; \
  364. if (local_stcb && \
  365. local_stcb->sctp_ep && \
  366. local_stcb->sctp_ep->sctp_socket) \
  367. o_flgs |= local_stcb->sctp_ep->sctp_socket->so_options & SO_DONTROUTE; \
  368. m_clrprotoflags(o_pak); \
  369. result = ip_output(o_pak, NULL, ro, o_flgs, 0, NULL); \
  370. }
  371. #define SCTP_IP6_OUTPUT(result, o_pak, ro, ifp, stcb, vrf_id) \
  372. { \
  373. struct sctp_tcb *local_stcb = stcb; \
  374. m_clrprotoflags(o_pak); \
  375. if (local_stcb && local_stcb->sctp_ep) \
  376. result = ip6_output(o_pak, \
  377. ((struct inpcb *)(local_stcb->sctp_ep))->in6p_outputopts, \
  378. (ro), 0, 0, ifp, NULL); \
  379. else \
  380. result = ip6_output(o_pak, NULL, (ro), 0, 0, ifp, NULL); \
  381. }
  382. struct mbuf *
  383. sctp_get_mbuf_for_msg(unsigned int space_needed,
  384. int want_header, int how, int allonebuf, int type);
  385. /*
  386. * SCTP AUTH
  387. */
  388. #define SCTP_READ_RANDOM(buf, len) arc4rand(buf, len, 0)
  389. /* map standard crypto API names */
  390. #define SCTP_SHA1_CTX SHA1_CTX
  391. #define SCTP_SHA1_INIT SHA1Init
  392. #define SCTP_SHA1_UPDATE SHA1Update
  393. #define SCTP_SHA1_FINAL(x,y) SHA1Final((caddr_t)x, y)
  394. #define SCTP_SHA256_CTX SHA256_CTX
  395. #define SCTP_SHA256_INIT SHA256_Init
  396. #define SCTP_SHA256_UPDATE SHA256_Update
  397. #define SCTP_SHA256_FINAL(x,y) SHA256_Final((caddr_t)x, y)
  398. #define SCTP_DECREMENT_AND_CHECK_REFCOUNT(addr) (atomic_fetchadd_int(addr, -1) == 1)
  399. #if defined(INVARIANTS)
  400. #define SCTP_SAVE_ATOMIC_DECREMENT(addr, val) \
  401. { \
  402. int32_t oldval; \
  403. oldval = atomic_fetchadd_int(addr, -val); \
  404. if (oldval < val) { \
  405. panic("Counter goes negative"); \
  406. } \
  407. }
  408. #else
  409. #define SCTP_SAVE_ATOMIC_DECREMENT(addr, val) \
  410. { \
  411. int32_t oldval; \
  412. oldval = atomic_fetchadd_int(addr, -val); \
  413. if (oldval < val) { \
  414. *addr = 0; \
  415. } \
  416. }
  417. #endif
  418. #define SCTP_IS_LISTENING(inp) ((inp->sctp_flags & SCTP_PCB_FLAGS_ACCEPTING) != 0)
  419. int sctp_syscalls_init(void);
  420. int sctp_syscalls_uninit(void);
  421. #endif