FreeBSD kernel IPv4 code
sctputil.h
Go to the documentation of this file.
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
35#include <sys/cdefs.h>
36__FBSDID("$FreeBSD$");
37
38#ifndef _NETINET_SCTP_UTIL_H_
39#define _NETINET_SCTP_UTIL_H_
40
41#if defined(_KERNEL) || defined(__Userspace__)
42
43#define SCTP_READ_LOCK_HELD 1
44#define SCTP_READ_LOCK_NOT_HELD 0
45
46#ifdef SCTP_ASOCLOG_OF_TSNS
47void sctp_print_out_track_log(struct sctp_tcb *stcb);
48#endif
49
50#ifdef SCTP_MBUF_LOGGING
51struct mbuf *sctp_m_free(struct mbuf *m);
52void sctp_m_freem(struct mbuf *m);
53#else
54#define sctp_m_free m_free
55#define sctp_m_freem m_freem
56#endif
57
58#if defined(SCTP_LOCAL_TRACE_BUF)
59void
60 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);
61#endif
62
63#define sctp_get_associd(stcb) ((sctp_assoc_t)stcb->asoc.assoc_id)
64
65/*
66 * Function prototypes
67 */
68int32_t
70
72 sctp_get_ifa_hash_val(struct sockaddr *addr);
73
74struct sctp_ifa *sctp_find_ifa_in_ep(struct sctp_inpcb *inp, struct sockaddr *addr, int hold_lock);
75
76struct sctp_ifa *sctp_find_ifa_by_addr(struct sockaddr *addr, uint32_t vrf_id, int holds_lock);
77
79
80uint32_t sctp_select_a_tag(struct sctp_inpcb *, uint16_t lport, uint16_t rport, int);
81
83
84void sctp_fill_random_store(struct sctp_pcb *);
85
86void
88 uint16_t numberout, int flag);
89void
90 sctp_notify_stream_reset_tsn(struct sctp_tcb *stcb, uint32_t sending_tsn, uint32_t recv_tsn, int flag);
91
92/*
93 * NOTE: sctp_timer_start() will increment the reference count of any relevant
94 * structure the timer is referencing, in order to prevent a race condition
95 * between the timer executing and the structure being freed.
96 *
97 * When the timer fires or sctp_timer_stop() is called, these references are
98 * removed.
99 */
100void
101sctp_timer_start(int, struct sctp_inpcb *, struct sctp_tcb *,
102 struct sctp_nets *);
103
104void
105sctp_timer_stop(int, struct sctp_inpcb *, struct sctp_tcb *,
106 struct sctp_nets *, uint32_t);
107
108int
109 sctp_dynamic_set_primary(struct sockaddr *sa, uint32_t vrf_id);
110
111void
112sctp_wakeup_the_read_socket(struct sctp_inpcb *inp, struct sctp_tcb *stcb,
113 int so_locked
115);
116
117void
118sctp_add_to_readq(struct sctp_inpcb *inp,
119 struct sctp_tcb *stcb,
120 struct sctp_queued_to_read *control,
121 struct sockbuf *sb,
122 int end,
123 int inpread_locked,
124 int so_locked);
125
126void sctp_iterator_worker(void);
127
130
131void
132 sctp_timeout_handler(void *);
133
134int
136 struct sctp_nets *, struct timeval *, int);
137
138uint32_t sctp_calculate_len(struct mbuf *);
139
140caddr_t sctp_m_getptr(struct mbuf *, int, int, uint8_t *);
141
142struct sctp_paramhdr *
143sctp_get_next_param(struct mbuf *, int,
144 struct sctp_paramhdr *, int);
145
146struct mbuf *sctp_add_pad_tombuf(struct mbuf *, int);
147
148struct mbuf *sctp_pad_lastmbuf(struct mbuf *, int, struct mbuf *);
149
150void sctp_ulp_notify(uint32_t, struct sctp_tcb *, uint32_t, void *, int);
151
152void
154 struct sctp_inpcb *new_inp,
155 struct sctp_tcb *stcb, int waitflags);
156
158
159/* Stop all timers for association and remote addresses. */
160void sctp_stop_association_timers(struct sctp_tcb *, bool);
161
162void sctp_report_all_outbound(struct sctp_tcb *, uint16_t, int);
163
165
166void
167sctp_abort_notification(struct sctp_tcb *, bool, bool, uint16_t,
168 struct sctp_abort_chunk *, int);
169
170/* We abort responding to an IP packet for some reason */
171void
172sctp_abort_association(struct sctp_inpcb *, struct sctp_tcb *, struct mbuf *,
173 int, struct sockaddr *, struct sockaddr *,
174 struct sctphdr *, struct mbuf *,
177
178/* We choose to abort via user input */
179void
181 struct mbuf *, bool, int);
182
183void
184sctp_handle_ootb(struct mbuf *, int, int,
185 struct sockaddr *, struct sockaddr *,
186 struct sctphdr *, struct sctp_inpcb *,
187 struct mbuf *,
190
191int
192sctp_connectx_helper_add(struct sctp_tcb *stcb, struct sockaddr *addr,
193 int totaddr, int *error);
194
195int
196sctp_connectx_helper_find(struct sctp_inpcb *, struct sockaddr *,
197 unsigned int, unsigned int *, unsigned int *, unsigned int);
198
199int sctp_is_there_an_abort_here(struct mbuf *, int, uint32_t *);
200#ifdef INET6
201uint32_t sctp_is_same_scope(struct sockaddr_in6 *, struct sockaddr_in6 *);
202
203struct sockaddr_in6 *sctp_recover_scope(struct sockaddr_in6 *, struct sockaddr_in6 *);
204
205#define sctp_recover_scope_mac(addr, store) do { \
206 if ((addr->sin6_family == AF_INET6) && \
207 (IN6_IS_SCOPE_LINKLOCAL(&addr->sin6_addr))) { \
208 *store = *addr; \
209 if (addr->sin6_scope_id == 0) { \
210 if (!sa6_recoverscope(store)) { \
211 addr = store; \
212 } \
213 } else { \
214 in6_clearscope(&addr->sin6_addr); \
215 addr = store; \
216 } \
217 } \
218} while (0)
219#endif
220
221int sctp_cmpaddr(struct sockaddr *, struct sockaddr *);
222
223void sctp_print_address(struct sockaddr *);
224
225int
227 uint8_t, int);
228
229struct mbuf *sctp_generate_cause(uint16_t, char *);
231
232void
233sctp_bindx_add_address(struct socket *so, struct sctp_inpcb *inp,
234 struct sockaddr *sa, uint32_t vrf_id, int *error,
235 void *p);
236void
237sctp_bindx_delete_address(struct sctp_inpcb *inp, struct sockaddr *sa,
238 uint32_t vrf_id, int *error);
239
240int sctp_local_addr_count(struct sctp_tcb *stcb);
241
242#ifdef SCTP_MBCNT_LOGGING
243void
245 struct sctp_tmit_chunk *, int);
246
247#else
248#define sctp_free_bufspace(stcb, asoc, tp1, chk_cnt) \
249do { \
250 if (tp1->data != NULL) { \
251 atomic_subtract_int(&((asoc)->chunks_on_out_queue), chk_cnt); \
252 if ((asoc)->total_output_queue_size >= tp1->book_size) { \
253 atomic_subtract_int(&((asoc)->total_output_queue_size), tp1->book_size); \
254 } else { \
255 (asoc)->total_output_queue_size = 0; \
256 } \
257 if (stcb->sctp_socket && ((stcb->sctp_ep->sctp_flags & SCTP_PCB_FLAGS_TCPTYPE) || \
258 (stcb->sctp_ep->sctp_flags & SCTP_PCB_FLAGS_IN_TCPPOOL))) { \
259 if (stcb->sctp_socket->so_snd.sb_cc >= tp1->book_size) { \
260 atomic_subtract_int(&((stcb)->sctp_socket->so_snd.sb_cc), tp1->book_size); \
261 } else { \
262 stcb->sctp_socket->so_snd.sb_cc = 0; \
263 } \
264 } \
265 } \
266} while (0)
267
268#endif
269
270#define sctp_free_spbufspace(stcb, asoc, sp) \
271do { \
272 if (sp->data != NULL) { \
273 if ((asoc)->total_output_queue_size >= sp->length) { \
274 atomic_subtract_int(&(asoc)->total_output_queue_size, sp->length); \
275 } else { \
276 (asoc)->total_output_queue_size = 0; \
277 } \
278 if (stcb->sctp_socket && ((stcb->sctp_ep->sctp_flags & SCTP_PCB_FLAGS_TCPTYPE) || \
279 (stcb->sctp_ep->sctp_flags & SCTP_PCB_FLAGS_IN_TCPPOOL))) { \
280 if (stcb->sctp_socket->so_snd.sb_cc >= sp->length) { \
281 atomic_subtract_int(&stcb->sctp_socket->so_snd.sb_cc,sp->length); \
282 } else { \
283 stcb->sctp_socket->so_snd.sb_cc = 0; \
284 } \
285 } \
286 } \
287} while (0)
288
289#define sctp_snd_sb_alloc(stcb, sz) \
290do { \
291 atomic_add_int(&stcb->asoc.total_output_queue_size,sz); \
292 if ((stcb->sctp_socket != NULL) && \
293 ((stcb->sctp_ep->sctp_flags & SCTP_PCB_FLAGS_TCPTYPE) || \
294 (stcb->sctp_ep->sctp_flags & SCTP_PCB_FLAGS_IN_TCPPOOL))) { \
295 atomic_add_int(&stcb->sctp_socket->so_snd.sb_cc,sz); \
296 } \
297} while (0)
298
299/* functions to start/stop udp tunneling */
300void sctp_over_udp_stop(void);
301int sctp_over_udp_start(void);
302
303int
304sctp_soreceive(struct socket *so, struct sockaddr **psa,
305 struct uio *uio,
306 struct mbuf **mp0,
307 struct mbuf **controlp,
308 int *flagsp);
309
310void
312
313void
314sctp_wakeup_log(struct sctp_tcb *stcb,
315 uint32_t wake_cnt, int from);
316
317void sctp_log_strm_del_alt(struct sctp_tcb *stcb, uint32_t, uint16_t, uint16_t, int);
318
319void sctp_log_nagle_event(struct sctp_tcb *stcb, int action);
320
321#ifdef SCTP_MBUF_LOGGING
322void
323 sctp_log_mb(struct mbuf *m, int from);
324
325void
326 sctp_log_mbc(struct mbuf *m, int from);
327#endif
328
329void
330sctp_sblog(struct sockbuf *sb,
331 struct sctp_tcb *stcb, int from, int incr);
332
333void
335 struct sctp_queued_to_read *poschk,
336 int from);
337void sctp_log_cwnd(struct sctp_tcb *stcb, struct sctp_nets *, int, uint8_t);
338void rto_logging(struct sctp_nets *net, int from);
339
340void sctp_log_closing(struct sctp_inpcb *inp, struct sctp_tcb *stcb, int16_t loc);
341
342void sctp_log_lock(struct sctp_inpcb *inp, struct sctp_tcb *stcb, uint8_t from);
343void sctp_log_maxburst(struct sctp_tcb *stcb, struct sctp_nets *, int, int, uint8_t);
344void sctp_log_block(uint8_t, struct sctp_association *, ssize_t);
347int sctp_fill_stat_log(void *, size_t *);
353
354#ifdef SCTP_AUDITING_ENABLED
355void
356sctp_auditing(int, struct sctp_inpcb *, struct sctp_tcb *,
357 struct sctp_nets *);
358void sctp_audit_log(uint8_t, uint8_t);
359
360#endif
364void sctp_set_state(struct sctp_tcb *, int);
365void sctp_add_substate(struct sctp_tcb *, int);
370
371#endif /* _KERNEL */
372#endif
#define SCTP_UNUSED
Definition: alias_sctp.h:86
__uint32_t uint32_t
Definition: in.h:62
__uint16_t uint16_t
Definition: in.h:57
__uint8_t uint8_t
Definition: in.h:52
uint32_t sctp_min_mtu(uint32_t, uint32_t, uint32_t)
Definition: sctputil.c:7544
struct mbuf * sctp_add_pad_tombuf(struct mbuf *, int)
Definition: sctputil.c:3084
void rto_logging(struct sctp_nets *net, int from)
Definition: sctputil.c:122
struct mbuf * sctp_pad_lastmbuf(struct mbuf *, int, struct mbuf *)
Definition: sctputil.c:3115
void sctp_abort_an_association(struct sctp_inpcb *, struct sctp_tcb *, struct mbuf *, bool, int)
Definition: sctputil.c:4465
#define sctp_free_bufspace(stcb, asoc, tp1, chk_cnt)
Definition: sctputil.h:248
void sctp_misc_ints(uint8_t from, uint32_t a, uint32_t b, uint32_t c, uint32_t d)
Definition: sctputil.c:489
void sctp_log_maxburst(struct sctp_tcb *stcb, struct sctp_nets *, int, int, uint8_t)
Definition: sctputil.c:398
struct sctp_ifa * sctp_find_ifa_in_ep(struct sctp_inpcb *inp, struct sockaddr *addr, int hold_lock)
Definition: sctputil.c:5251
void sctp_add_substate(struct sctp_tcb *, int)
Definition: sctputil.c:7649
void sctp_set_state(struct sctp_tcb *, int)
Definition: sctputil.c:7624
uint32_t sctp_msecs_to_ticks(uint32_t)
Definition: sctputil.c:780
uint32_t sctp_secs_to_ticks(uint32_t)
Definition: sctputil.c:818
void sctp_log_sack(uint32_t, uint32_t, uint32_t, uint16_t, uint16_t, int)
Definition: sctputil.c:184
int sctp_local_addr_count(struct sctp_tcb *stcb)
Definition: sctputil.c:6930
#define sctp_m_freem
Definition: sctputil.h:55
void sctp_log_rwnd(uint8_t, uint32_t, uint32_t, uint32_t)
Definition: sctputil.c:427
void sctp_handle_ootb(struct mbuf *, int, int, struct sockaddr *, struct sockaddr *, struct sctphdr *, struct sctp_inpcb *, struct mbuf *, uint8_t, uint32_t, uint16_t, uint32_t, uint16_t)
Definition: sctputil.c:4508
uint32_t sctp_hc_get_mtu(union sctp_sockstore *, uint16_t)
Definition: sctputil.c:7599
int sctp_over_udp_start(void)
Definition: sctputil.c:7453
void sctp_print_address(struct sockaddr *)
Definition: sctputil.c:4718
void sctp_wakeup_log(struct sctp_tcb *stcb, uint32_t wake_cnt, int from)
Definition: sctputil.c:500
void sctp_over_udp_stop(void)
Definition: sctputil.c:7432
void sctp_abort_association(struct sctp_inpcb *, struct sctp_tcb *, struct mbuf *, int, struct sockaddr *, struct sockaddr *, struct sctphdr *, struct mbuf *, uint8_t, uint32_t, uint32_t, uint16_t)
Definition: sctputil.c:4361
int sctp_connectx_helper_find(struct sctp_inpcb *, struct sockaddr *, unsigned int, unsigned int *, unsigned int *, unsigned int)
Definition: sctputil.c:6660
void sctp_log_strm_del_alt(struct sctp_tcb *stcb, uint32_t, uint16_t, uint16_t, int)
Definition: sctputil.c:141
void sctp_log_map(uint32_t, uint32_t, uint32_t, int)
Definition: sctputil.c:205
uint32_t sctp_ticks_to_secs(uint32_t)
Definition: sctputil.c:833
void sctp_fill_random_store(struct sctp_pcb *)
Definition: sctputil.c:992
void sctp_iterator_worker(void)
Definition: sctputil.c:1616
uint32_t sctp_get_next_mtu(uint32_t)
Definition: sctputil.c:975
void sctp_bindx_add_address(struct socket *so, struct sctp_inpcb *inp, struct sockaddr *sa, uint32_t vrf_id, int *error, void *p)
Definition: sctputil.c:6733
void sctp_stop_association_timers(struct sctp_tcb *, bool)
Definition: sctputil.c:877
void sctp_sblog(struct sockbuf *sb, struct sctp_tcb *stcb, int from, int incr)
Definition: sctputil.c:73
void sctp_log_fr(uint32_t, uint32_t, uint32_t, int)
Definition: sctputil.c:225
void sctp_add_to_readq(struct sctp_inpcb *inp, struct sctp_tcb *stcb, struct sctp_queued_to_read *control, struct sockbuf *sb, int end, int inpread_locked, int so_locked)
Definition: sctputil.c:4845
void sctp_log_block(uint8_t, struct sctp_association *, ssize_t)
Definition: sctputil.c:548
void sctp_notify_stream_reset_tsn(struct sctp_tcb *stcb, uint32_t sending_tsn, uint32_t recv_tsn, int flag)
Definition: sctputil.c:3863
struct sctp_ifa * sctp_find_ifa_by_addr(struct sockaddr *addr, uint32_t vrf_id, int holds_lock)
Definition: sctputil.c:5329
uint32_t sctp_get_prev_mtu(uint32_t)
Definition: sctputil.c:950
void sctp_log_strm_del(struct sctp_queued_to_read *control, struct sctp_queued_to_read *poschk, int from)
Definition: sctputil.c:284
void sctp_print_mapping_array(struct sctp_association *asoc)
Definition: sctputil.c:1382
int32_t sctp_map_assoc_state(int)
Definition: sctputil.c:1071
void sctp_log_rwnd_set(uint8_t, uint32_t, uint32_t, uint32_t, uint32_t)
Definition: sctputil.c:447
int sctp_dynamic_set_primary(struct sockaddr *sa, uint32_t vrf_id)
Definition: sctputil.c:6461
__FBSDID("$FreeBSD$")
struct mbuf * sctp_generate_no_user_data_cause(uint32_t)
Definition: sctputil.c:4978
void sctp_bindx_delete_address(struct sctp_inpcb *inp, struct sockaddr *sa, uint32_t vrf_id, int *error)
Definition: sctputil.c:6849
void sctp_abort_notification(struct sctp_tcb *, bool, bool, uint16_t, struct sctp_abort_chunk *, int)
Definition: sctputil.c:4327
#define sctp_m_free
Definition: sctputil.h:54
void sctp_stop_timers_for_shutdown(struct sctp_tcb *)
Definition: sctputil.c:853
void sctp_log_lock(struct sctp_inpcb *inp, struct sctp_tcb *stcb, uint8_t from)
Definition: sctputil.c:352
void sctp_ulp_notify(uint32_t, struct sctp_tcb *, uint32_t, void *, int)
Definition: sctputil.c:4042
uint32_t sctp_select_a_tag(struct sctp_inpcb *, uint16_t lport, uint16_t rport, int)
Definition: sctputil.c:1049
void sctp_timer_stop(int, struct sctp_inpcb *, struct sctp_tcb *, struct sctp_nets *, uint32_t)
Definition: sctputil.c:2615
struct mbuf * sctp_generate_cause(uint16_t, char *)
Definition: sctputil.c:4951
void sctp_notify_stream_reset_add(struct sctp_tcb *stcb, uint16_t numberin, uint16_t numberout, int flag)
Definition: sctputil.c:3807
void sctp_pull_off_control_to_new_inp(struct sctp_inpcb *old_inp, struct sctp_inpcb *new_inp, struct sctp_tcb *stcb, int waitflags)
Definition: sctputil.c:4758
uint32_t sctp_ticks_to_msecs(uint32_t)
Definition: sctputil.c:799
int sctp_expand_mapping_array(struct sctp_association *, uint32_t)
Definition: sctputil.c:1417
uint32_t sctp_get_ifa_hash_val(struct sockaddr *addr)
Definition: sctputil.c:5295
void sctp_timeout_handler(void *)
Definition: sctputil.c:1719
int sctp_soreceive(struct socket *so, struct sockaddr **psa, struct uio *uio, struct mbuf **mp0, struct mbuf **controlp, int *flagsp)
Definition: sctputil.c:6508
int sctp_init_asoc(struct sctp_inpcb *, struct sctp_tcb *, uint32_t, uint32_t, uint32_t, uint16_t)
Definition: sctputil.c:1114
void sctp_log_cwnd(struct sctp_tcb *stcb, struct sctp_nets *, int, uint8_t)
Definition: sctputil.c:315
uint32_t sctp_select_initial_TSN(struct sctp_pcb *)
Definition: sctputil.c:1011
void sctp_log_closing(struct sctp_inpcb *inp, struct sctp_tcb *stcb, int16_t loc)
Definition: sctputil.c:96
void sctp_wakeup_the_read_socket(struct sctp_inpcb *inp, struct sctp_tcb *stcb, int so_locked SCTP_UNUSED)
Definition: sctputil.c:4833
void sctp_hc_set_mtu(union sctp_sockstore *, uint16_t, uint32_t)
Definition: sctputil.c:7574
void sctp_clr_stat_log(void)
void sctp_timer_start(int, struct sctp_inpcb *, struct sctp_tcb *, struct sctp_nets *)
Definition: sctputil.c:2157
int sctp_release_pr_sctp_chunk(struct sctp_tcb *, struct sctp_tmit_chunk *, uint8_t, int)
Definition: sctputil.c:5031
caddr_t sctp_m_getptr(struct mbuf *, int, int, uint8_t *)
Definition: sctputil.c:3033
int sctp_cmpaddr(struct sockaddr *, struct sockaddr *)
Definition: sctputil.c:4676
int sctp_connectx_helper_add(struct sctp_tcb *stcb, struct sockaddr *addr, int totaddr, int *error)
Definition: sctputil.c:6579
struct sctp_paramhdr * sctp_get_next_param(struct mbuf *, int, struct sctp_paramhdr *, int)
Definition: sctputil.c:3073
void sctp_log_nagle_event(struct sctp_tcb *stcb, int action)
Definition: sctputil.c:163
void sctp_report_all_outbound(struct sctp_tcb *, uint16_t, int)
Definition: sctputil.c:4226
uint32_t sctp_calculate_len(struct mbuf *)
Definition: sctputil.c:2896
int sctp_is_there_an_abort_here(struct mbuf *, int, uint32_t *)
Definition: sctputil.c:4578
int sctp_fill_stat_log(void *, size_t *)
int sctp_calculate_rto(struct sctp_tcb *, struct sctp_association *, struct sctp_nets *, struct timeval *, int)
Definition: sctputil.c:2916
uint32_t vrf_id
Definition: sctp_pcb.h:109
Definition: sctp.h:48