]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - sys/netinet/sctp_os_bsd.h
- Macroizes the V6ONLY flag check.
[FreeBSD/FreeBSD.git] / sys / netinet / sctp_os_bsd.h
1 /*-
2  * Copyright (c) 2006, 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 /*
36  * includes
37  */
38 #include <sys/random.h>
39
40 /*
41  *
42  */
43 typedef struct mbuf *sctp_mbuf_t;
44
45 #define USER_ADDR_NULL  (NULL)  /* FIX ME: temp */
46
47 /*
48  * general memory allocation
49  */
50 #define SCTP_MALLOC(var, type, size, name) \
51     do { \
52         MALLOC(var, type, size, M_PCB, M_NOWAIT); \
53     } while (0)
54
55 #define SCTP_FREE(var)  FREE(var, M_PCB)
56
57 #define SCTP_MALLOC_SONAME(var, type, size) \
58     do { \
59         MALLOC(var, type, size, M_SONAME, M_WAITOK | M_ZERO); \
60     } while (0)
61
62 #define SCTP_FREE_SONAME(var)   FREE(var, M_SONAME)
63
64 /*
65  * zone allocation functions
66  */
67 #include <vm/uma.h>
68 /* SCTP_ZONE_INIT: initialize the zone */
69 typedef struct uma_zone *sctp_zone_t;
70
71 #define UMA_ZFLAG_FULL  0x0020
72 #define SCTP_ZONE_INIT(zone, name, size, number) { \
73         zone = uma_zcreate(name, size, NULL, NULL, NULL, NULL, UMA_ALIGN_PTR,\
74                 UMA_ZFLAG_FULL); \
75         uma_zone_set_max(zone, number); \
76 }
77
78 /* SCTP_ZONE_GET: allocate element from the zone */
79 #define SCTP_ZONE_GET(zone) \
80         uma_zalloc(zone, M_NOWAIT);
81
82 /* SCTP_ZONE_FREE: free element from the zone */
83 #define SCTP_ZONE_FREE(zone, element) \
84         uma_zfree(zone, element);
85 #define SCTP_HASH_INIT(size, hashmark) hashinit_flags(size, M_PCB, hashmark, HASH_NOWAIT)
86 #define SCTP_HASH_FREE(table, hashmark) hashdestroy(table, M_PCB, hashmark)
87
88 #define SCTP_M_COPYM    m_copym
89
90 /*
91  * timers
92  */
93 #include <sys/callout.h>
94 typedef struct callout sctp_os_timer_t;
95
96 #define SCTP_OS_TIMER_INIT(tmr) callout_init(tmr, 1)
97 #define SCTP_OS_TIMER_START     callout_reset
98 #define SCTP_OS_TIMER_STOP      callout_stop
99 #define SCTP_OS_TIMER_STOP_DRAIN callout_drain
100 #define SCTP_OS_TIMER_PENDING   callout_pending
101 #define SCTP_OS_TIMER_ACTIVE    callout_active
102 #define SCTP_OS_TIMER_DEACTIVATE callout_deactivate
103
104 /*
105  * Functions
106  */
107 #define SCTP_READ_RANDOM(buf, len)      read_random(buf, len)
108
109 /* Mbuf manipulation and access macros  */
110 #define SCTP_BUF_LEN(m) (m->m_len)
111 #define SCTP_BUF_NEXT(m) (m->m_next)
112 #define SCTP_BUF_NEXT_PKT(m) (m->m_nextpkt)
113 #define SCTP_BUF_RESV_UF(m, size) m->m_data += size
114 #define SCTP_BUF_AT(m, size) m->m_data + size
115 #define SCTP_BUF_IS_EXTENDED(m) (m->m_flags & M_EXT)
116 #define SCTP_BUF_EXTEND_SIZE(m) (m->m_ext.ext_size)
117 #define SCTP_BUF_TYPE(m) (m->m_type)
118 #define SCTP_BUF_RECVIF(m) (m->m_pkthdr.rcvif)
119 #define SCTP_BUF_PREPEND        M_PREPEND
120 /*************************/
121 /* These are for logging */
122 /*************************/
123 /* return the base ext data pointer */
124 #define SCTP_BUF_EXTEND_BASE(m) (m->m_ext.ext_buf)
125  /* return the refcnt of the data pointer */
126 #define SCTP_BUF_EXTEND_REFCNT(m) (*m->m_ext.ref_cnt)
127 /* return any buffer related flags, this is
128  * used beyond logging for apple only.
129  */
130 #define SCTP_BUF_GET_FLAGS(m) (m->m_flags)
131
132 /* For BSD this just accesses the M_PKTHDR length
133  * so it operates on an mbuf with hdr flag. Other
134  * O/S's may have seperate packet header and mbuf
135  * chain pointers.. thus the macro.
136  */
137 #define SCTP_HEADER_TO_CHAIN(m) (m)
138 #define SCTP_HEADER_LEN(m) (m->m_pkthdr.len)
139 #define SCTP_GET_HEADER_FOR_OUTPUT(len) sctp_get_mbuf_for_msg(len, 1, M_DONTWAIT, 1, MT_DATA)
140
141 /* Attach the chain of data into the sendable packet. */
142 #define SCTP_ATTACH_CHAIN(pak, m, packet_length) do { \
143                                                  pak->m_next = m; \
144                                                  pak->m_pkthdr.len = packet_length; \
145                          } while(0)
146
147 /* Other m_pkthdr type things */
148 #define SCTP_IS_IT_BROADCAST(dst, m) in_broadcast(dst, m->m_pkthdr.rcvif)
149 #define SCTP_IS_IT_LOOPBACK(m) ((m->m_pkthdr.rcvif == NULL) ||(m->m_pkthdr.rcvif->if_type == IFT_LOOP))
150
151
152 /* This converts any input packet header
153  * into the chain of data holders, for BSD
154  * its a NOP.
155  */
156 #define SCTP_PAK_TO_BUF(i_pak) (i_pak)
157
158 /* Macro's for getting length from V6/V4 header */
159 #define SCTP_GET_IPV4_LENGTH(iph) (iph->ip_len)
160 #define SCTP_GET_IPV6_LENGTH(ip6) (ntohs(ip6->ip6_plen))
161
162 /* is the endpoint v6only? */
163 #define SCTP_IPV6_V6ONLY(inp)   (((struct inpcb *)inp)->inp_flags & IN6P_IPV6_V6ONLY)
164
165
166 #endif