2 * Copyright (c) 2001-2007, by Cisco Systems, Inc. All rights reserved.
4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions are met:
7 * a) Redistributions of source code must retain the above copyright notice,
8 * this list of conditions and the following disclaimer.
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.
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.
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.
31 /* $KAME: sctp_output.c,v 1.46 2005/03/06 16:04:17 itojun Exp $ */
33 #include <sys/cdefs.h>
34 __FBSDID("$FreeBSD$");
36 #include <netinet/sctp_os.h>
37 #include <netinet/sctp_var.h>
38 #include <netinet/sctp_pcb.h>
39 #include <netinet/sctp_header.h>
40 #include <netinet/sctputil.h>
41 #include <netinet/sctp_output.h>
42 #include <netinet/sctp_bsd_addr.h>
43 #include <netinet/sctp_uio.h>
44 #include <netinet/sctputil.h>
45 #include <netinet/sctp_timer.h>
46 #include <netinet/sctp_asconf.h>
47 #include <netinet/sctp_sysctl.h>
48 #include <netinet/sctp_indata.h>
49 #include <sys/unistd.h>
51 /* Declare all of our malloc named types */
53 /* Note to Michael/Peter for mac-os,
54 * I think mac has this too since I
55 * do see the M_PCB type, so I
56 * will also put in the mac file the
57 * MALLOC_DECLARE. If this does not
58 * work for mac uncomment the defines for
59 * the strings that we use in Panda, I put
60 * them in comments in the mac-os file.
62 MALLOC_DEFINE(SCTP_M_MAP
, "sctp_map", "sctp asoc map descriptor");
63 MALLOC_DEFINE(SCTP_M_STRMI
, "sctp_stri", "sctp stream in array");
64 MALLOC_DEFINE(SCTP_M_STRMO
, "sctp_stro", "sctp stream out array");
65 MALLOC_DEFINE(SCTP_M_ASC_ADDR
, "sctp_aadr", "sctp asconf address");
66 MALLOC_DEFINE(SCTP_M_ASC_IT
, "sctp_a_it", "sctp asconf iterator");
67 MALLOC_DEFINE(SCTP_M_AUTH_CL
, "sctp_atcl", "sctp auth chunklist");
68 MALLOC_DEFINE(SCTP_M_AUTH_KY
, "sctp_atky", "sctp auth key");
69 MALLOC_DEFINE(SCTP_M_AUTH_HL
, "sctp_athm", "sctp auth hmac list");
70 MALLOC_DEFINE(SCTP_M_AUTH_IF
, "sctp_athi", "sctp auth info");
71 MALLOC_DEFINE(SCTP_M_STRESET
, "sctp_stre", "sctp stream reset");
72 MALLOC_DEFINE(SCTP_M_CMSG
, "sctp_cmsg", "sctp CMSG buffer");
73 MALLOC_DEFINE(SCTP_M_COPYAL
, "sctp_cpal", "sctp copy all");
74 MALLOC_DEFINE(SCTP_M_VRF
, "sctp_vrf", "sctp vrf struct");
75 MALLOC_DEFINE(SCTP_M_IFA
, "sctp_ifa", "sctp ifa struct");
76 MALLOC_DEFINE(SCTP_M_IFN
, "sctp_ifn", "sctp ifn struct");
77 MALLOC_DEFINE(SCTP_M_TIMW
, "sctp_timw", "sctp time block");
78 MALLOC_DEFINE(SCTP_M_MVRF
, "sctp_mvrf", "sctp mvrf pcb list");
79 MALLOC_DEFINE(SCTP_M_ITER
, "sctp_iter", "sctp iterator control");
80 MALLOC_DEFINE(SCTP_M_SOCKOPT
, "sctp_socko", "sctp socket option");
82 #if defined(SCTP_USE_THREAD_BASED_ITERATOR)
84 sctp_wakeup_iterator(void)
86 wakeup(&SCTP_BASE_INFO(iterator_running
));
90 sctp_iterator_thread(void *v
)
92 SCTP_IPI_ITERATOR_WQ_LOCK();
93 SCTP_BASE_INFO(iterator_running
) = 0;
95 msleep(&SCTP_BASE_INFO(iterator_running
),
96 &SCTP_BASE_INFO(ipi_iterator_wq_mtx
),
97 0, "waiting_for_work", 0);
98 if (SCTP_BASE_INFO(threads_must_exit
)) {
101 sctp_iterator_worker();
106 sctp_startup_iterator(void)
110 ret
= kproc_create(sctp_iterator_thread
,
112 &SCTP_BASE_INFO(thread_proc
),
123 sctp_gather_internal_ifa_flags(struct sctp_ifa
*ifa
)
125 struct in6_ifaddr
*ifa6
;
127 ifa6
= (struct in6_ifaddr
*)ifa
->ifa
;
128 ifa
->flags
= ifa6
->ia6_flags
;
129 if (!MODULE_GLOBAL(MOD_INET6
, ip6_use_deprecated
)) {
131 IN6_IFF_DEPRECATED
) {
132 ifa
->localifa_flags
|= SCTP_ADDR_IFA_UNUSEABLE
;
134 ifa
->localifa_flags
&= ~SCTP_ADDR_IFA_UNUSEABLE
;
137 ifa
->localifa_flags
&= ~SCTP_ADDR_IFA_UNUSEABLE
;
143 ifa
->localifa_flags
|= SCTP_ADDR_IFA_UNUSEABLE
;
145 ifa
->localifa_flags
&= ~SCTP_ADDR_IFA_UNUSEABLE
;
153 sctp_is_desired_interface_type(struct ifaddr
*ifa
)
157 /* check the interface type to see if it's one we care about */
158 switch (ifa
->ifa_ifp
->if_type
) {
171 case IFT_ISDNPRIMARY
:
181 case IFT_VIRTUALIPADDRESS
:
193 sctp_init_ifns_for_vrf(int vrfid
)
198 * Here we must apply ANY locks needed by the IFN we access and also
199 * make sure we lock any IFA that exists as we float through the
204 struct in6_ifaddr
*ifa6
;
205 struct sctp_ifa
*sctp_ifa
;
208 TAILQ_FOREACH(ifn
, &MODULE_GLOBAL(MOD_NET
, ifnet
), if_list
) {
209 TAILQ_FOREACH(ifa
, &ifn
->if_addrlist
, ifa_list
) {
211 if (ifa
->ifa_addr
== NULL
) {
214 if ((ifa
->ifa_addr
->sa_family
!= AF_INET
) && (ifa
->ifa_addr
->sa_family
!= AF_INET6
)) {
215 /* non inet/inet6 skip */
218 if (ifa
->ifa_addr
->sa_family
== AF_INET6
) {
219 if (IN6_IS_ADDR_UNSPECIFIED(&((struct sockaddr_in6
*)ifa
->ifa_addr
)->sin6_addr
)) {
220 /* skip unspecifed addresses */
224 if (((struct sockaddr_in
*)ifa
->ifa_addr
)->sin_addr
.s_addr
== 0) {
228 if (sctp_is_desired_interface_type(ifa
) == 0) {
229 /* non desired type */
232 if (ifa
->ifa_addr
->sa_family
== AF_INET6
) {
233 ifa6
= (struct in6_ifaddr
*)ifa
;
234 ifa_flags
= ifa6
->ia6_flags
;
238 sctp_ifa
= sctp_add_addr_to_vrf(vrfid
,
248 sctp_ifa
->localifa_flags
&= ~SCTP_ADDR_DEFER_USE
;
256 sctp_init_vrf_list(int vrfid
)
258 if (vrfid
> SCTP_MAX_VRF_ID
)
262 /* Don't care about return here */
263 (void)sctp_allocate_vrf(vrfid
);
266 * Now we need to build all the ifn's for this vrf and there
269 sctp_init_ifns_for_vrf(vrfid
);
273 sctp_addr_change(struct ifaddr
*ifa
, int cmd
)
275 struct sctp_ifa
*ifap
= NULL
;
276 uint32_t ifa_flags
= 0;
279 * BSD only has one VRF, if this changes we will need to hook in the
280 * right things here to get the id to pass to the address managment
283 if (SCTP_BASE_VAR(first_time
) == 0) {
284 /* Special test to see if my ::1 will showup with this */
285 SCTP_BASE_VAR(first_time
) = 1;
286 sctp_init_ifns_for_vrf(SCTP_DEFAULT_VRFID
);
288 if ((cmd
!= RTM_ADD
) && (cmd
!= RTM_DELETE
)) {
289 /* don't know what to do with this */
292 if (ifa
->ifa_addr
== NULL
) {
295 if ((ifa
->ifa_addr
->sa_family
!= AF_INET
) && (ifa
->ifa_addr
->sa_family
!= AF_INET6
)) {
296 /* non inet/inet6 skip */
299 if (ifa
->ifa_addr
->sa_family
== AF_INET6
) {
300 ifa_flags
= ((struct in6_ifaddr
*)ifa
)->ia6_flags
;
301 if (IN6_IS_ADDR_UNSPECIFIED(&((struct sockaddr_in6
*)ifa
->ifa_addr
)->sin6_addr
)) {
302 /* skip unspecifed addresses */
306 if (((struct sockaddr_in
*)ifa
->ifa_addr
)->sin_addr
.s_addr
== 0) {
311 if (sctp_is_desired_interface_type(ifa
) == 0) {
312 /* non desired type */
315 if (cmd
== RTM_ADD
) {
316 ifap
= sctp_add_addr_to_vrf(SCTP_DEFAULT_VRFID
, (void *)ifa
->ifa_ifp
,
317 ifa
->ifa_ifp
->if_index
, ifa
->ifa_ifp
->if_type
,
318 ifa
->ifa_ifp
->if_xname
,
319 (void *)ifa
, ifa
->ifa_addr
, ifa_flags
, 1);
322 sctp_del_addr_from_vrf(SCTP_DEFAULT_VRFID
, ifa
->ifa_addr
,
323 ifa
->ifa_ifp
->if_index
,
324 ifa
->ifa_ifp
->if_xname
327 * We don't bump refcount here so when it completes the
328 * final delete will happen.
334 sctp_add_or_del_interfaces(int (*pred
) (struct ifnet
*), int add
){
338 TAILQ_FOREACH(ifn
, &MODULE_GLOBAL(MOD_NET
, ifnet
), if_list
) {
339 if (!(*pred
) (ifn
)) {
342 TAILQ_FOREACH(ifa
, &ifn
->if_addrlist
, ifa_list
) {
343 sctp_addr_change(ifa
, add
? RTM_ADD
: RTM_DELETE
);
349 sctp_get_mbuf_for_msg(unsigned int space_needed
, int want_header
,
350 int how
, int allonebuf
, int type
)
352 struct mbuf
*m
= NULL
;
354 m
= m_getm2(NULL
, space_needed
, how
, type
, want_header
? M_PKTHDR
: 0);
362 if (SCTP_BUF_IS_EXTENDED(m
)) {
363 siz
= SCTP_BUF_EXTEND_SIZE(m
);
370 if (siz
< space_needed
) {
375 if (SCTP_BUF_NEXT(m
)) {
376 sctp_m_freem(SCTP_BUF_NEXT(m
));
377 SCTP_BUF_NEXT(m
) = NULL
;
379 #ifdef SCTP_MBUF_LOGGING
380 if (SCTP_BASE_SYSCTL(sctp_logging_level
) & SCTP_MBUF_LOGGING_ENABLE
) {
381 if (SCTP_BUF_IS_EXTENDED(m
)) {
382 sctp_log_mb(m
, SCTP_MBUF_IALLOC
);
390 #ifdef SCTP_PACKET_LOGGING
392 sctp_packet_log(struct mbuf
*m
, int length
)
398 int grabbed_lock
= 0;
399 int value
, newval
, thisend
, thisbegin
;
402 * Buffer layout. -sizeof this entry (total_len) -previous end
403 * (value) -ticks of log (ticks) o -ip packet o -as logged -
404 * where this started (thisbegin) x <--end points here
406 total_len
= SCTP_SIZE32((length
+ (4 * sizeof(int))));
407 /* Log a packet to the buffer. */
408 if (total_len
> SCTP_PACKET_LOG_SIZE
) {
409 /* Can't log this packet I have not a buffer big enough */
412 if (length
< (int)(SCTP_MIN_V4_OVERHEAD
+ sizeof(struct sctp_cookie_ack_chunk
))) {
415 atomic_add_int(&SCTP_BASE_VAR(packet_log_writers
), 1);
417 if (SCTP_BASE_VAR(packet_log_writers
) > SCTP_PKTLOG_WRITERS_NEED_LOCK
) {
418 SCTP_IP_PKTLOG_LOCK();
421 value
= SCTP_BASE_VAR(packet_log_end
);
422 newval
= SCTP_BASE_VAR(packet_log_end
) + total_len
;
423 if (newval
>= SCTP_PACKET_LOG_SIZE
) {
428 thisbegin
= SCTP_BASE_VAR(packet_log_end
);
431 if (!(atomic_cmpset_int(&SCTP_BASE_VAR(packet_log_end
), value
, thisend
))) {
435 value
= SCTP_BASE_VAR(packet_log_end
);
436 newval
= SCTP_BASE_VAR(packet_log_end
) + total_len
;
437 if (newval
>= SCTP_PACKET_LOG_SIZE
) {
442 thisbegin
= SCTP_BASE_VAR(packet_log_end
);
445 if (!(atomic_cmpset_int(&SCTP_BASE_VAR(packet_log_end
), value
, thisend
))) {
450 if (thisend
>= SCTP_PACKET_LOG_SIZE
) {
451 printf("Insanity stops a log thisbegin:%d thisend:%d writers:%d lock:%d end:%d\n",
454 SCTP_BASE_VAR(packet_log_writers
),
456 SCTP_BASE_VAR(packet_log_end
));
457 SCTP_BASE_VAR(packet_log_end
) = 0;
461 lenat
= (int *)&SCTP_BASE_VAR(packet_log_buffer
)[thisbegin
];
466 tick_tock
= (uint32_t *) lenat
;
468 *tick_tock
= sctp_get_tick_count();
469 copyto
= (void *)lenat
;
470 thisone
= thisend
- sizeof(int);
471 lenat
= (int *)&SCTP_BASE_VAR(packet_log_buffer
)[thisone
];
474 SCTP_IP_PKTLOG_UNLOCK();
477 m_copydata(m
, 0, length
, (caddr_t
)copyto
);
480 SCTP_IP_PKTLOG_UNLOCK();
482 atomic_subtract_int(&SCTP_BASE_VAR(packet_log_writers
), 1);
487 sctp_copy_out_packet_log(uint8_t * target
, int length
)
490 * We wind through the packet log starting at start copying up to
491 * length bytes out. We return the number of bytes copied.
493 int tocopy
, this_copy
;
498 if (length
< (int)(2 * sizeof(int))) {
499 /* not enough room */
502 if (SCTP_PKTLOG_WRITERS_NEED_LOCK
) {
503 atomic_add_int(&SCTP_BASE_VAR(packet_log_writers
), SCTP_PKTLOG_WRITERS_NEED_LOCK
);
505 if ((did_delay
== 0) && (SCTP_BASE_VAR(packet_log_writers
) != SCTP_PKTLOG_WRITERS_NEED_LOCK
)) {
507 * we delay here for just a moment hoping the
508 * writer(s) that were present when we entered will
509 * have left and we only have locking ones that will
510 * contend with us for the lock. This does not
511 * assure 100% access, but its good enough for a
512 * logging facility like this.
519 SCTP_IP_PKTLOG_LOCK();
520 lenat
= (int *)target
;
521 *lenat
= SCTP_BASE_VAR(packet_log_end
);
523 this_copy
= min((length
- sizeof(int)), SCTP_PACKET_LOG_SIZE
);
524 memcpy((void *)lenat
, (void *)SCTP_BASE_VAR(packet_log_buffer
), this_copy
);
525 if (SCTP_PKTLOG_WRITERS_NEED_LOCK
) {
526 atomic_subtract_int(&SCTP_BASE_VAR(packet_log_writers
),
527 SCTP_PKTLOG_WRITERS_NEED_LOCK
);
529 SCTP_IP_PKTLOG_UNLOCK();
530 return (this_copy
+ sizeof(int));