]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - sys/netinet/sctp_os_bsd.h
This commit was generated by cvs2svn to compensate for changes in r171831,
[FreeBSD/FreeBSD.git] / sys / netinet / sctp_os_bsd.h
1 /*-
2  * Copyright (c) 2006-2007, by Cisco Systems, Inc. All rights reserved.
3  *
4  * Redistribution and use in source and binary forms, with or without
5  * modification, are permitted provided that the following conditions are met:
6  *
7  * a) Redistributions of source code must retain the above copyright notice,
8  *   this list of conditions and the following disclaimer.
9  *
10  * b) Redistributions in binary form must reproduce the above copyright
11  *    notice, this list of conditions and the following disclaimer in
12  *   the documentation and/or other materials provided with the distribution.
13  *
14  * c) Neither the name of Cisco Systems, Inc. nor the names of its
15  *    contributors may be used to endorse or promote products derived
16  *    from this software without specific prior written permission.
17  *
18  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
19  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
20  * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
21  * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
22  * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
23  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
24  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
25  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
26  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
27  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
28  * THE POSSIBILITY OF SUCH DAMAGE.
29  */
30 #include <sys/cdefs.h>
31 __FBSDID("$FreeBSD$");
32 #ifndef __sctp_os_bsd_h__
33 #define __sctp_os_bsd_h__
34 /*
35  * includes
36  */
37 #include "opt_ipsec.h"
38 #include "opt_compat.h"
39 #include "opt_inet6.h"
40 #include "opt_inet.h"
41 #include "opt_sctp.h"
42 #include <sys/param.h>
43 #include <sys/ktr.h>
44 #include <sys/systm.h>
45 #include <sys/malloc.h>
46 #include <sys/kernel.h>
47 #include <sys/sysctl.h>
48 #include <sys/mbuf.h>
49 #include <sys/protosw.h>
50 #include <sys/socket.h>
51 #include <sys/socketvar.h>
52 #include <sys/jail.h>
53 #include <sys/sysctl.h>
54 #include <sys/resourcevar.h>
55 #include <sys/uio.h>
56 #include <sys/kthread.h>
57 #include <sys/priv.h>
58 #include <sys/random.h>
59 #include <sys/limits.h>
60 #include <sys/queue.h>
61 #include <machine/cpu.h>
62
63 #include <net/if.h>
64 #include <net/if_types.h>
65 #include <net/if_var.h>
66 #include <net/route.h>
67
68 #include <netinet/in.h>
69 #include <netinet/in_systm.h>
70 #include <netinet/ip.h>
71 #include <netinet/in_pcb.h>
72 #include <netinet/in_var.h>
73 #include <netinet/ip_var.h>
74 #include <netinet/ip_icmp.h>
75 #include <netinet/icmp_var.h>
76
77
78 #ifdef IPSEC
79 #include <netipsec/ipsec.h>
80 #include <netipsec/key.h>
81 #endif                          /* IPSEC */
82
83 #ifdef INET6
84 #include <sys/domain.h>
85 #ifdef IPSEC
86 #include <netipsec/ipsec6.h>
87 #endif
88 #include <netinet/ip6.h>
89 #include <netinet6/ip6_var.h>
90 #include <netinet6/in6_pcb.h>
91 #include <netinet/icmp6.h>
92 #include <netinet6/ip6protosw.h>
93 #include <netinet6/nd6.h>
94 #include <netinet6/scope6_var.h>
95 #endif                          /* INET6 */
96
97
98 #include <netinet/ip_options.h>
99
100 #ifndef in6pcb
101 #define in6pcb          inpcb
102 #endif
103 /* Declare all the malloc names for all the various mallocs */
104 MALLOC_DECLARE(SCTP_M_MAP);
105 MALLOC_DECLARE(SCTP_M_STRMI);
106 MALLOC_DECLARE(SCTP_M_STRMO);
107 MALLOC_DECLARE(SCTP_M_ASC_ADDR);
108 MALLOC_DECLARE(SCTP_M_ASC_IT);
109 MALLOC_DECLARE(SCTP_M_AUTH_CL);
110 MALLOC_DECLARE(SCTP_M_AUTH_KY);
111 MALLOC_DECLARE(SCTP_M_AUTH_HL);
112 MALLOC_DECLARE(SCTP_M_AUTH_IF);
113 MALLOC_DECLARE(SCTP_M_STRESET);
114 MALLOC_DECLARE(SCTP_M_CMSG);
115 MALLOC_DECLARE(SCTP_M_COPYAL);
116 MALLOC_DECLARE(SCTP_M_VRF);
117 MALLOC_DECLARE(SCTP_M_IFA);
118 MALLOC_DECLARE(SCTP_M_IFN);
119 MALLOC_DECLARE(SCTP_M_TIMW);
120 MALLOC_DECLARE(SCTP_M_MVRF);
121 MALLOC_DECLARE(SCTP_M_ITER);
122 MALLOC_DECLARE(SCTP_M_SOCKOPT);
123
124 /*
125  *
126  */
127 #define USER_ADDR_NULL  (NULL)  /* FIX ME: temp */
128 #define SCTP_LIST_EMPTY(list)   LIST_EMPTY(list)
129
130 #if defined(SCTP_DEBUG)
131 #define SCTPDBG(level, params...)                                       \
132 {                                                                       \
133     do {                                                                \
134         if (sctp_debug_on & level ) {                                   \
135             printf(params);                                             \
136         }                                                               \
137     } while (0);                                                        \
138 }
139 #define SCTPDBG_ADDR(level, addr)                                       \
140 {                                                                       \
141     do {                                                                \
142         if (sctp_debug_on & level ) {                                   \
143             sctp_print_address(addr);                                   \
144         }                                                               \
145     } while (0);                                                        \
146 }
147 #define SCTPDBG_PKT(level, iph, sh)                                     \
148 {                                                                       \
149     do {                                                                \
150             if (sctp_debug_on & level) {                                \
151                     sctp_print_address_pkt(iph, sh);                    \
152             }                                                           \
153     } while (0);                                                        \
154 }
155 #else
156 #define SCTPDBG(level, params...)
157 #define SCTPDBG_ADDR(level, addr)
158 #define SCTPDBG_PKT(level, iph, sh)
159 #endif
160 #define SCTP_PRINTF(params...)  printf(params)
161
162 #ifdef SCTP_LTRACE_CHUNKS
163 #define SCTP_LTRACE_CHK(a, b, c, d) if(sctp_logging_level & SCTP_LTRACE_CHUNK_ENABLE) CTR6(KTR_SUBSYS, "SCTP:%d[%d]:%x-%x-%x-%x", SCTP_LOG_CHUNK_PROC, 0, a, b, c, d)
164 #else
165 #define SCTP_LTRACE_CHK(a, b, c, d)
166 #endif
167
168 #ifdef SCTP_LTRACE_ERRORS
169 #define SCTP_LTRACE_ERR(a, b, c, d) if(sctp_logging_level & SCTP_LTRACE_ERROR_ENABLE) CTR6(KTR_SUBSYS, "SCTP:%d[%d]:%x-%x-%x-%x", SCTP_LOG_ERROR_RET, 0, a, b, c, d)
170 #else
171 #define SCTP_LTRACE_ERR(a, b, c, d)
172 #endif
173
174 /*
175  * Local address and interface list handling
176  */
177 #define SCTP_MAX_VRF_ID         0
178 #define SCTP_SIZE_OF_VRF_HASH   3
179 #define SCTP_IFNAMSIZ           IFNAMSIZ
180 #define SCTP_DEFAULT_VRFID      0
181 #define SCTP_VRF_ADDR_HASH_SIZE 16
182 #define SCTP_VRF_IFN_HASH_SIZE  3
183 #define SCTP_INIT_VRF_TABLEID(vrf)
184
185 #define SCTP_IFN_IS_IFT_LOOP(ifn) ((ifn)->ifn_type == IFT_LOOP)
186
187 /*
188  * Access to IFN's to help with src-addr-selection
189  */
190 /* This could return VOID if the index works but for BSD we provide both. */
191 #define SCTP_GET_IFN_VOID_FROM_ROUTE(ro) (void *)ro->ro_rt->rt_ifp
192 #define SCTP_GET_IF_INDEX_FROM_ROUTE(ro) (ro)->ro_rt->rt_ifp->if_index
193 #define SCTP_ROUTE_HAS_VALID_IFN(ro) ((ro)->ro_rt && (ro)->ro_rt->rt_ifp)
194
195 /*
196  * general memory allocation
197  */
198 #define SCTP_MALLOC(var, type, size, name) \
199     do { \
200         MALLOC(var, type, size, name, M_NOWAIT); \
201     } while (0)
202
203 #define SCTP_FREE(var, type)    FREE(var, type)
204
205 #define SCTP_MALLOC_SONAME(var, type, size) \
206     do { \
207         MALLOC(var, type, size, M_SONAME, M_WAITOK | M_ZERO); \
208     } while (0)
209
210 #define SCTP_FREE_SONAME(var)   FREE(var, M_SONAME)
211
212 #define SCTP_PROCESS_STRUCT struct proc *
213
214 /*
215  * zone allocation functions
216  */
217 #include <vm/uma.h>
218 /* SCTP_ZONE_INIT: initialize the zone */
219 typedef struct uma_zone *sctp_zone_t;
220
221 #define UMA_ZFLAG_FULL  0x0020
222 #define SCTP_ZONE_INIT(zone, name, size, number) { \
223         zone = uma_zcreate(name, size, NULL, NULL, NULL, NULL, UMA_ALIGN_PTR,\
224                 UMA_ZFLAG_FULL); \
225         uma_zone_set_max(zone, number); \
226 }
227
228 /* SCTP_ZONE_GET: allocate element from the zone */
229 #define SCTP_ZONE_GET(zone, type) \
230         (type *)uma_zalloc(zone, M_NOWAIT);
231
232 /* SCTP_ZONE_FREE: free element from the zone */
233 #define SCTP_ZONE_FREE(zone, element) \
234         uma_zfree(zone, element);
235 #define SCTP_HASH_INIT(size, hashmark) hashinit_flags(size, M_PCB, hashmark, HASH_NOWAIT)
236 #define SCTP_HASH_FREE(table, hashmark) hashdestroy(table, M_PCB, hashmark)
237
238 #define SCTP_M_COPYM    m_copym
239
240 /*
241  * timers
242  */
243 #include <sys/callout.h>
244 typedef struct callout sctp_os_timer_t;
245
246 #define SCTP_OS_TIMER_INIT(tmr) callout_init(tmr, 1)
247 #define SCTP_OS_TIMER_START     callout_reset
248 #define SCTP_OS_TIMER_STOP      callout_stop
249 #define SCTP_OS_TIMER_STOP_DRAIN callout_drain
250 #define SCTP_OS_TIMER_PENDING   callout_pending
251 #define SCTP_OS_TIMER_ACTIVE    callout_active
252 #define SCTP_OS_TIMER_DEACTIVATE callout_deactivate
253
254 #define sctp_get_tick_count() (ticks)
255
256 /* The packed define for 64 bit platforms */
257 #define SCTP_PACKED __attribute__((packed))
258
259 /*
260  * Functions
261  */
262 /* Mbuf manipulation and access macros  */
263 #define SCTP_BUF_LEN(m) (m->m_len)
264 #define SCTP_BUF_NEXT(m) (m->m_next)
265 #define SCTP_BUF_NEXT_PKT(m) (m->m_nextpkt)
266 #define SCTP_BUF_RESV_UF(m, size) m->m_data += size
267 #define SCTP_BUF_AT(m, size) m->m_data + size
268 #define SCTP_BUF_IS_EXTENDED(m) (m->m_flags & M_EXT)
269 #define SCTP_BUF_EXTEND_SIZE(m) (m->m_ext.ext_size)
270 #define SCTP_BUF_TYPE(m) (m->m_type)
271 #define SCTP_BUF_RECVIF(m) (m->m_pkthdr.rcvif)
272 #define SCTP_BUF_PREPEND        M_PREPEND
273
274 #define SCTP_ALIGN_TO_END(m, len) if(m->m_flags & M_PKTHDR) { \
275                                      MH_ALIGN(m, len); \
276                                   } else if ((m->m_flags & M_EXT) == 0) { \
277                                      M_ALIGN(m, len); \
278                                   }
279
280 /* We make it so if you have up to 4 threads
281  * writting based on the default size of
282  * the packet log 65 k, that would be
283  * 4 16k packets before we would hit
284  * a problem.
285  */
286 #define SCTP_PKTLOG_WRITERS_NEED_LOCK 3
287
288 /*************************/
289 /*      MTU              */
290 /*************************/
291 #define SCTP_GATHER_MTU_FROM_IFN_INFO(ifn, ifn_index, af) ((struct ifnet *)ifn)->if_mtu
292 #define SCTP_GATHER_MTU_FROM_ROUTE(sctp_ifa, sa, rt) ((rt != NULL) ? rt->rt_rmx.rmx_mtu : 0)
293 #define SCTP_GATHER_MTU_FROM_INTFC(sctp_ifn) ((sctp_ifn->ifn_p != NULL) ? ((struct ifnet *)(sctp_ifn->ifn_p))->if_mtu : 0)
294 #define SCTP_SET_MTU_OF_ROUTE(sa, rt, mtu) do { \
295                                               if (rt != NULL) \
296                                                  rt->rt_rmx.rmx_mtu = mtu; \
297                                            } while(0)
298
299 /* (de-)register interface event notifications */
300 #define SCTP_REGISTER_INTERFACE(ifhandle, af)
301 #define SCTP_DEREGISTER_INTERFACE(ifhandle, af)
302
303
304 /*************************/
305 /* These are for logging */
306 /*************************/
307 /* return the base ext data pointer */
308 #define SCTP_BUF_EXTEND_BASE(m) (m->m_ext.ext_buf)
309  /* return the refcnt of the data pointer */
310 #define SCTP_BUF_EXTEND_REFCNT(m) (*m->m_ext.ref_cnt)
311 /* return any buffer related flags, this is
312  * used beyond logging for apple only.
313  */
314 #define SCTP_BUF_GET_FLAGS(m) (m->m_flags)
315
316 /* For BSD this just accesses the M_PKTHDR length
317  * so it operates on an mbuf with hdr flag. Other
318  * O/S's may have seperate packet header and mbuf
319  * chain pointers.. thus the macro.
320  */
321 #define SCTP_HEADER_TO_CHAIN(m) (m)
322 #define SCTP_DETACH_HEADER_FROM_CHAIN(m)
323 #define SCTP_HEADER_LEN(m) (m->m_pkthdr.len)
324 #define SCTP_GET_HEADER_FOR_OUTPUT(o_pak) 0
325 #define SCTP_RELEASE_HEADER(m)
326 #define SCTP_RELEASE_PKT(m)     sctp_m_freem(m)
327
328 #define SCTP_GET_PKT_VRFID(m, vrf_id)  ((vrf_id = SCTP_DEFAULT_VRFID) != SCTP_DEFAULT_VRFID)
329
330
331
332 /* Attach the chain of data into the sendable packet. */
333 #define SCTP_ATTACH_CHAIN(pak, m, packet_length) do { \
334                                                  pak = m; \
335                                                  pak->m_pkthdr.len = packet_length; \
336                          } while(0)
337
338 /* Other m_pkthdr type things */
339 #define SCTP_IS_IT_BROADCAST(dst, m) ((m->m_flags & M_PKTHDR) ? in_broadcast(dst, m->m_pkthdr.rcvif) : 0)
340 #define SCTP_IS_IT_LOOPBACK(m) ((m->m_flags & M_PKTHDR) && ((m->m_pkthdr.rcvif == NULL) || (m->m_pkthdr.rcvif->if_type == IFT_LOOP)))
341
342
343 /* This converts any input packet header
344  * into the chain of data holders, for BSD
345  * its a NOP.
346  */
347
348 /* Macro's for getting length from V6/V4 header */
349 #define SCTP_GET_IPV4_LENGTH(iph) (iph->ip_len)
350 #define SCTP_GET_IPV6_LENGTH(ip6) (ntohs(ip6->ip6_plen))
351
352 /* get the v6 hop limit */
353 #define SCTP_GET_HLIM(inp, ro)  in6_selecthlim((struct in6pcb *)&inp->ip_inp.inp, (ro ? (ro->ro_rt ? (ro->ro_rt->rt_ifp) : (NULL)) : (NULL)));
354
355 /* is the endpoint v6only? */
356 #define SCTP_IPV6_V6ONLY(inp)   (((struct inpcb *)inp)->inp_flags & IN6P_IPV6_V6ONLY)
357 /* is the socket non-blocking? */
358 #define SCTP_SO_IS_NBIO(so)     ((so)->so_state & SS_NBIO)
359 #define SCTP_SET_SO_NBIO(so)    ((so)->so_state |= SS_NBIO)
360 #define SCTP_CLEAR_SO_NBIO(so)  ((so)->so_state &= ~SS_NBIO)
361 /* get the socket type */
362 #define SCTP_SO_TYPE(so)        ((so)->so_type)
363 /* reserve sb space for a socket */
364 #define SCTP_SORESERVE(so, send, recv)  soreserve(so, send, recv)
365 /* wakeup a socket */
366 #define SCTP_SOWAKEUP(so)       wakeup(&(so)->so_timeo)
367 /* clear the socket buffer state */
368 #define SCTP_SB_CLEAR(sb)       \
369         (sb).sb_cc = 0;         \
370         (sb).sb_mb = NULL;      \
371         (sb).sb_mbcnt = 0;
372
373 #define SCTP_SB_LIMIT_RCV(so) so->so_rcv.sb_hiwat
374 #define SCTP_SB_LIMIT_SND(so) so->so_snd.sb_hiwat
375
376 /*
377  * routes, output, etc.
378  */
379 typedef struct route sctp_route_t;
380 typedef struct rtentry sctp_rtentry_t;
381
382 #define SCTP_RTALLOC(ro, vrf_id) rtalloc_ign((struct route *)ro, 0UL)
383
384 /* Future zero copy wakeup/send  function */
385 #define SCTP_ZERO_COPY_EVENT(inp, so)
386 /* This is re-pulse ourselves for sendbuf */
387 #define SCTP_ZERO_COPY_SENDQ_EVENT(inp, so)
388
389 /*
390  * IP output routines
391  */
392 #define SCTP_IP_OUTPUT(result, o_pak, ro, stcb, vrf_id) \
393 { \
394         int o_flgs = 0; \
395         if (stcb && stcb->sctp_ep && stcb->sctp_ep->sctp_socket) { \
396                 o_flgs = IP_RAWOUTPUT | (stcb->sctp_ep->sctp_socket->so_options & SO_DONTROUTE); \
397         } else { \
398                 o_flgs = IP_RAWOUTPUT; \
399         } \
400         result = ip_output(o_pak, NULL, ro, o_flgs, 0, NULL); \
401 }
402
403 #define SCTP_IP6_OUTPUT(result, o_pak, ro, ifp, stcb, vrf_id) \
404 { \
405         if (stcb && stcb->sctp_ep) \
406                 result = ip6_output(o_pak, \
407                                     ((struct in6pcb *)(stcb->sctp_ep))->in6p_outputopts, \
408                                     (ro), 0, 0, ifp, NULL); \
409         else \
410                 result = ip6_output(o_pak, NULL, (ro), 0, 0, ifp, NULL); \
411 }
412
413 struct mbuf *
414 sctp_get_mbuf_for_msg(unsigned int space_needed,
415     int want_header, int how, int allonebuf, int type);
416
417
418 /*
419  * SCTP AUTH
420  */
421 #define HAVE_SHA2
422
423 #define SCTP_READ_RANDOM(buf, len)      read_random(buf, len)
424
425 #ifdef USE_SCTP_SHA1
426 #include <netinet/sctp_sha1.h>
427 #else
428 #include <crypto/sha1.h>
429 /* map standard crypto API names */
430 #define SHA1_Init       SHA1Init
431 #define SHA1_Update     SHA1Update
432 #define SHA1_Final(x,y) SHA1Final((caddr_t)x, y)
433 #endif
434
435 #if defined(HAVE_SHA2)
436 #include <crypto/sha2/sha2.h>
437 #endif
438
439 #include <sys/md5.h>
440 /* map standard crypto API names */
441 #define MD5_Init        MD5Init
442 #define MD5_Update      MD5Update
443 #define MD5_Final       MD5Final
444
445 #endif