sctputil.h 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390
  1. /*-
  2. * SPDX-License-Identifier: BSD-3-Clause
  3. *
  4. * Copyright (c) 2001-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. #if defined(__FreeBSD__) && !defined(__Userspace__)
  35. #include <sys/cdefs.h>
  36. __FBSDID("$FreeBSD$");
  37. #endif
  38. #ifndef _NETINET_SCTP_UTIL_H_
  39. #define _NETINET_SCTP_UTIL_H_
  40. #if defined(_KERNEL) || defined(__Userspace__)
  41. #define SCTP_READ_LOCK_HELD 1
  42. #define SCTP_READ_LOCK_NOT_HELD 0
  43. #ifdef SCTP_ASOCLOG_OF_TSNS
  44. void sctp_print_out_track_log(struct sctp_tcb *stcb);
  45. #endif
  46. #ifdef SCTP_MBUF_LOGGING
  47. struct mbuf *sctp_m_free(struct mbuf *m);
  48. void sctp_m_freem(struct mbuf *m);
  49. #else
  50. #define sctp_m_free m_free
  51. #define sctp_m_freem m_freem
  52. #endif
  53. #if defined(SCTP_LOCAL_TRACE_BUF)
  54. void
  55. sctp_log_trace(uint32_t fr, const char *str SCTP_UNUSED, uint32_t a, uint32_t b, uint32_t c, uint32_t d, uint32_t e, uint32_t f);
  56. #endif
  57. #define sctp_get_associd(stcb) ((sctp_assoc_t)stcb->asoc.assoc_id)
  58. /*
  59. * Function prototypes
  60. */
  61. int32_t
  62. sctp_map_assoc_state(int);
  63. uint32_t
  64. sctp_get_ifa_hash_val(struct sockaddr *addr);
  65. struct sctp_ifa *
  66. sctp_find_ifa_in_ep(struct sctp_inpcb *inp, struct sockaddr *addr, int hold_lock);
  67. struct sctp_ifa *
  68. sctp_find_ifa_by_addr(struct sockaddr *addr, uint32_t vrf_id, int holds_lock);
  69. uint32_t sctp_select_initial_TSN(struct sctp_pcb *);
  70. uint32_t sctp_select_a_tag(struct sctp_inpcb *, uint16_t lport, uint16_t rport, int);
  71. int sctp_init_asoc(struct sctp_inpcb *, struct sctp_tcb *, uint32_t, uint32_t, uint32_t, uint16_t);
  72. void sctp_fill_random_store(struct sctp_pcb *);
  73. void
  74. sctp_notify_stream_reset_add(struct sctp_tcb *stcb, uint16_t numberin,
  75. uint16_t numberout, int flag);
  76. void
  77. sctp_notify_stream_reset_tsn(struct sctp_tcb *stcb, uint32_t sending_tsn, uint32_t recv_tsn, int flag);
  78. /*
  79. * NOTE: sctp_timer_start() will increment the reference count of any relevant
  80. * structure the timer is referencing, in order to prevent a race condition
  81. * between the timer executing and the structure being freed.
  82. *
  83. * When the timer fires or sctp_timer_stop() is called, these references are
  84. * removed.
  85. */
  86. void
  87. sctp_timer_start(int, struct sctp_inpcb *, struct sctp_tcb *,
  88. struct sctp_nets *);
  89. void
  90. sctp_timer_stop(int, struct sctp_inpcb *, struct sctp_tcb *,
  91. struct sctp_nets *, uint32_t);
  92. int
  93. sctp_dynamic_set_primary(struct sockaddr *sa, uint32_t vrf_id);
  94. void
  95. sctp_wakeup_the_read_socket(struct sctp_inpcb *inp, struct sctp_tcb *stcb,
  96. int so_locked
  97. #if !(defined(__APPLE__) && !defined(__Userspace__))
  98. SCTP_UNUSED
  99. #endif
  100. );
  101. #if defined(__Userspace__)
  102. void sctp_invoke_recv_callback(struct sctp_inpcb *,
  103. struct sctp_tcb *,
  104. struct sctp_queued_to_read *,
  105. int);
  106. #endif
  107. void
  108. sctp_add_to_readq(struct sctp_inpcb *inp,
  109. struct sctp_tcb *stcb,
  110. struct sctp_queued_to_read *control,
  111. struct sockbuf *sb,
  112. int end,
  113. int inpread_locked,
  114. int so_locked);
  115. void sctp_iterator_worker(void);
  116. uint32_t sctp_get_prev_mtu(uint32_t);
  117. uint32_t sctp_get_next_mtu(uint32_t);
  118. void
  119. sctp_timeout_handler(void *);
  120. int
  121. sctp_calculate_rto(struct sctp_tcb *, struct sctp_association *,
  122. struct sctp_nets *, struct timeval *, int);
  123. uint32_t sctp_calculate_len(struct mbuf *);
  124. caddr_t sctp_m_getptr(struct mbuf *, int, int, uint8_t *);
  125. struct sctp_paramhdr *
  126. sctp_get_next_param(struct mbuf *, int,
  127. struct sctp_paramhdr *, int);
  128. struct mbuf *
  129. sctp_add_pad_tombuf(struct mbuf *, int);
  130. struct mbuf *
  131. sctp_pad_lastmbuf(struct mbuf *, int, struct mbuf *);
  132. void sctp_ulp_notify(uint32_t, struct sctp_tcb *, uint32_t, void *, int);
  133. void
  134. sctp_pull_off_control_to_new_inp(struct sctp_inpcb *old_inp,
  135. struct sctp_inpcb *new_inp,
  136. struct sctp_tcb *stcb, int waitflags);
  137. void sctp_stop_timers_for_shutdown(struct sctp_tcb *);
  138. /* Stop all timers for association and remote addresses. */
  139. void sctp_stop_association_timers(struct sctp_tcb *, bool);
  140. void sctp_report_all_outbound(struct sctp_tcb *, uint16_t, int);
  141. int sctp_expand_mapping_array(struct sctp_association *, uint32_t);
  142. void sctp_abort_notification(struct sctp_tcb *, bool, bool, uint16_t,
  143. struct sctp_abort_chunk *, int);
  144. /* We abort responding to an IP packet for some reason */
  145. void
  146. sctp_abort_association(struct sctp_inpcb *, struct sctp_tcb *, struct mbuf *,
  147. int, struct sockaddr *, struct sockaddr *,
  148. struct sctphdr *, struct mbuf *,
  149. #if defined(__FreeBSD__) && !defined(__Userspace__)
  150. uint8_t, uint32_t,
  151. #endif
  152. uint32_t, uint16_t);
  153. /* We choose to abort via user input */
  154. void
  155. sctp_abort_an_association(struct sctp_inpcb *, struct sctp_tcb *,
  156. struct mbuf *, bool, int);
  157. void sctp_handle_ootb(struct mbuf *, int, int,
  158. struct sockaddr *, struct sockaddr *,
  159. struct sctphdr *, struct sctp_inpcb *,
  160. struct mbuf *,
  161. #if defined(__FreeBSD__) && !defined(__Userspace__)
  162. uint8_t, uint32_t, uint16_t,
  163. #endif
  164. uint32_t, uint16_t);
  165. int sctp_connectx_helper_add(struct sctp_tcb *stcb, struct sockaddr *addr,
  166. int totaddr, int *error);
  167. int
  168. sctp_connectx_helper_find(struct sctp_inpcb *, struct sockaddr *,
  169. unsigned int, unsigned int *, unsigned int *, unsigned int);
  170. int sctp_is_there_an_abort_here(struct mbuf *, int, uint32_t *);
  171. #ifdef INET6
  172. uint32_t sctp_is_same_scope(struct sockaddr_in6 *, struct sockaddr_in6 *);
  173. #if defined(SCTP_EMBEDDED_V6_SCOPE)
  174. struct sockaddr_in6 *
  175. sctp_recover_scope(struct sockaddr_in6 *, struct sockaddr_in6 *);
  176. #ifdef SCTP_KAME
  177. #define sctp_recover_scope_mac(addr, store) do { \
  178. if ((addr->sin6_family == AF_INET6) && \
  179. (IN6_IS_SCOPE_LINKLOCAL(&addr->sin6_addr))) { \
  180. *store = *addr; \
  181. if (addr->sin6_scope_id == 0) { \
  182. if (!sa6_recoverscope(store)) { \
  183. addr = store; \
  184. } \
  185. } else { \
  186. in6_clearscope(&addr->sin6_addr); \
  187. addr = store; \
  188. } \
  189. } \
  190. } while (0)
  191. #else
  192. #define sctp_recover_scope_mac(addr, store) do { \
  193. if ((addr->sin6_family == AF_INET6) && \
  194. (IN6_IS_SCOPE_LINKLOCAL(&addr->sin6_addr))) { \
  195. *store = *addr; \
  196. if (addr->sin6_scope_id == 0) { \
  197. if (!in6_recoverscope(store, &store->sin6_addr, \
  198. NULL)) { \
  199. addr = store; \
  200. } \
  201. } else { \
  202. in6_clearscope(&addr->sin6_addr); \
  203. addr = store; \
  204. } \
  205. } \
  206. } while (0)
  207. #endif
  208. #endif
  209. #endif
  210. int sctp_cmpaddr(struct sockaddr *, struct sockaddr *);
  211. void sctp_print_address(struct sockaddr *);
  212. int
  213. sctp_release_pr_sctp_chunk(struct sctp_tcb *, struct sctp_tmit_chunk *,
  214. uint8_t, int);
  215. struct mbuf *sctp_generate_cause(uint16_t, char *);
  216. struct mbuf *sctp_generate_no_user_data_cause(uint32_t);
  217. void sctp_bindx_add_address(struct socket *so, struct sctp_inpcb *inp,
  218. struct sockaddr *sa, uint32_t vrf_id, int *error,
  219. void *p);
  220. void sctp_bindx_delete_address(struct sctp_inpcb *inp, struct sockaddr *sa,
  221. uint32_t vrf_id, int *error);
  222. int sctp_local_addr_count(struct sctp_tcb *stcb);
  223. void
  224. sctp_free_bufspace(struct sctp_tcb *, struct sctp_association *,
  225. struct sctp_tmit_chunk *, int);
  226. #define sctp_free_spbufspace(stcb, asoc, sp) \
  227. do { \
  228. if (sp->data != NULL) { \
  229. if ((asoc)->total_output_queue_size >= sp->length) { \
  230. atomic_subtract_int(&(asoc)->total_output_queue_size, sp->length); \
  231. } else { \
  232. (asoc)->total_output_queue_size = 0; \
  233. } \
  234. if (stcb->sctp_socket && ((stcb->sctp_ep->sctp_flags & SCTP_PCB_FLAGS_TCPTYPE) || \
  235. (stcb->sctp_ep->sctp_flags & SCTP_PCB_FLAGS_IN_TCPPOOL))) { \
  236. if (stcb->sctp_socket->so_snd.sb_cc >= sp->length) { \
  237. atomic_subtract_int(&stcb->sctp_socket->so_snd.sb_cc,sp->length); \
  238. } else { \
  239. stcb->sctp_socket->so_snd.sb_cc = 0; \
  240. } \
  241. } \
  242. } \
  243. } while (0)
  244. #define sctp_snd_sb_alloc(stcb, sz) \
  245. do { \
  246. atomic_add_int(&stcb->asoc.total_output_queue_size,sz); \
  247. if ((stcb->sctp_socket != NULL) && \
  248. ((stcb->sctp_ep->sctp_flags & SCTP_PCB_FLAGS_TCPTYPE) || \
  249. (stcb->sctp_ep->sctp_flags & SCTP_PCB_FLAGS_IN_TCPPOOL))) { \
  250. atomic_add_int(&stcb->sctp_socket->so_snd.sb_cc,sz); \
  251. } \
  252. } while (0)
  253. /* functions to start/stop udp tunneling */
  254. #if (defined(__APPLE__) || defined(__FreeBSD__)) && !defined(__Userspace__)
  255. void sctp_over_udp_stop(void);
  256. int sctp_over_udp_start(void);
  257. #endif
  258. #if defined(_WIN32) && !defined(__Userspace__)
  259. void sctp_over_udp_restart(void);
  260. #endif
  261. int
  262. sctp_soreceive(struct socket *so, struct sockaddr **psa,
  263. struct uio *uio,
  264. struct mbuf **mp0,
  265. struct mbuf **controlp,
  266. int *flagsp);
  267. void
  268. sctp_misc_ints(uint8_t from, uint32_t a, uint32_t b, uint32_t c, uint32_t d);
  269. void
  270. sctp_wakeup_log(struct sctp_tcb *stcb,
  271. uint32_t wake_cnt, int from);
  272. void sctp_log_strm_del_alt(struct sctp_tcb *stcb, uint32_t, uint16_t, uint16_t, int);
  273. void sctp_log_nagle_event(struct sctp_tcb *stcb, int action);
  274. #ifdef SCTP_MBUF_LOGGING
  275. void
  276. sctp_log_mb(struct mbuf *m, int from);
  277. void
  278. sctp_log_mbc(struct mbuf *m, int from);
  279. #endif
  280. void
  281. sctp_sblog(struct sockbuf *sb,
  282. struct sctp_tcb *stcb, int from, int incr);
  283. void
  284. sctp_log_strm_del(struct sctp_queued_to_read *control,
  285. struct sctp_queued_to_read *poschk,
  286. int from);
  287. void sctp_log_cwnd(struct sctp_tcb *stcb, struct sctp_nets *, int, uint8_t);
  288. void rto_logging(struct sctp_nets *net, int from);
  289. void sctp_log_closing(struct sctp_inpcb *inp, struct sctp_tcb *stcb, int16_t loc);
  290. void sctp_log_lock(struct sctp_inpcb *inp, struct sctp_tcb *stcb, uint8_t from);
  291. void sctp_log_maxburst(struct sctp_tcb *stcb, struct sctp_nets *, int, int, uint8_t);
  292. void sctp_log_block(uint8_t, struct sctp_association *, ssize_t);
  293. void sctp_log_rwnd(uint8_t, uint32_t, uint32_t, uint32_t);
  294. void sctp_log_rwnd_set(uint8_t, uint32_t, uint32_t, uint32_t, uint32_t);
  295. int sctp_fill_stat_log(void *, size_t *);
  296. void sctp_log_fr(uint32_t, uint32_t, uint32_t, int);
  297. void sctp_log_sack(uint32_t, uint32_t, uint32_t, uint16_t, uint16_t, int);
  298. void sctp_log_map(uint32_t, uint32_t, uint32_t, int);
  299. void sctp_print_mapping_array(struct sctp_association *asoc);
  300. void sctp_clr_stat_log(void);
  301. #ifdef SCTP_AUDITING_ENABLED
  302. void
  303. sctp_auditing(int, struct sctp_inpcb *, struct sctp_tcb *,
  304. struct sctp_nets *);
  305. void sctp_audit_log(uint8_t, uint8_t);
  306. #endif
  307. uint32_t sctp_min_mtu(uint32_t, uint32_t, uint32_t);
  308. #if defined(__FreeBSD__) && !defined(__Userspace__)
  309. void sctp_hc_set_mtu(union sctp_sockstore *, uint16_t, uint32_t);
  310. uint32_t sctp_hc_get_mtu(union sctp_sockstore *, uint16_t);
  311. #endif
  312. void sctp_set_state(struct sctp_tcb *, int);
  313. void sctp_add_substate(struct sctp_tcb *, int);
  314. uint32_t sctp_ticks_to_msecs(uint32_t);
  315. uint32_t sctp_msecs_to_ticks(uint32_t);
  316. uint32_t sctp_ticks_to_secs(uint32_t);
  317. uint32_t sctp_secs_to_ticks(uint32_t);
  318. #endif /* _KERNEL */
  319. #endif