sctp_bsd_addr.c revision 229621
1/*-
2 * Copyright (c) 2001-2007, by Cisco Systems, Inc. All rights reserved.
3 * Copyright (c) 2008-2011, by Randall Stewart. All rights reserved.
4 * Copyright (c) 2008-2011, by Michael Tuexen. All rights reserved.
5 *
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions are met:
8 *
9 * a) Redistributions of source code must retain the above copyright notice,
10 *    this list of conditions and the following disclaimer.
11 *
12 * b) Redistributions in binary form must reproduce the above copyright
13 *    notice, this list of conditions and the following disclaimer in
14 *    the documentation and/or other materials provided with the distribution.
15 *
16 * c) Neither the name of Cisco Systems, Inc. nor the names of its
17 *    contributors may be used to endorse or promote products derived
18 *    from this software without specific prior written permission.
19 *
20 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
21 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
22 * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
23 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
24 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
25 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
26 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
27 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
28 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
29 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
30 * THE POSSIBILITY OF SUCH DAMAGE.
31 */
32
33/* $KAME: sctp_output.c,v 1.46 2005/03/06 16:04:17 itojun Exp $	 */
34
35#include <sys/cdefs.h>
36__FBSDID("$FreeBSD: head/sys/netinet/sctp_bsd_addr.c 229621 2012-01-05 19:00:36Z jhb $");
37
38#include <netinet/sctp_os.h>
39#include <netinet/sctp_var.h>
40#include <netinet/sctp_pcb.h>
41#include <netinet/sctp_header.h>
42#include <netinet/sctputil.h>
43#include <netinet/sctp_output.h>
44#include <netinet/sctp_bsd_addr.h>
45#include <netinet/sctp_uio.h>
46#include <netinet/sctputil.h>
47#include <netinet/sctp_timer.h>
48#include <netinet/sctp_asconf.h>
49#include <netinet/sctp_sysctl.h>
50#include <netinet/sctp_indata.h>
51#include <sys/unistd.h>
52
53/* Declare all of our malloc named types */
54MALLOC_DEFINE(SCTP_M_MAP, "sctp_map", "sctp asoc map descriptor");
55MALLOC_DEFINE(SCTP_M_STRMI, "sctp_stri", "sctp stream in array");
56MALLOC_DEFINE(SCTP_M_STRMO, "sctp_stro", "sctp stream out array");
57MALLOC_DEFINE(SCTP_M_ASC_ADDR, "sctp_aadr", "sctp asconf address");
58MALLOC_DEFINE(SCTP_M_ASC_IT, "sctp_a_it", "sctp asconf iterator");
59MALLOC_DEFINE(SCTP_M_AUTH_CL, "sctp_atcl", "sctp auth chunklist");
60MALLOC_DEFINE(SCTP_M_AUTH_KY, "sctp_atky", "sctp auth key");
61MALLOC_DEFINE(SCTP_M_AUTH_HL, "sctp_athm", "sctp auth hmac list");
62MALLOC_DEFINE(SCTP_M_AUTH_IF, "sctp_athi", "sctp auth info");
63MALLOC_DEFINE(SCTP_M_STRESET, "sctp_stre", "sctp stream reset");
64MALLOC_DEFINE(SCTP_M_CMSG, "sctp_cmsg", "sctp CMSG buffer");
65MALLOC_DEFINE(SCTP_M_COPYAL, "sctp_cpal", "sctp copy all");
66MALLOC_DEFINE(SCTP_M_VRF, "sctp_vrf", "sctp vrf struct");
67MALLOC_DEFINE(SCTP_M_IFA, "sctp_ifa", "sctp ifa struct");
68MALLOC_DEFINE(SCTP_M_IFN, "sctp_ifn", "sctp ifn struct");
69MALLOC_DEFINE(SCTP_M_TIMW, "sctp_timw", "sctp time block");
70MALLOC_DEFINE(SCTP_M_MVRF, "sctp_mvrf", "sctp mvrf pcb list");
71MALLOC_DEFINE(SCTP_M_ITER, "sctp_iter", "sctp iterator control");
72MALLOC_DEFINE(SCTP_M_SOCKOPT, "sctp_socko", "sctp socket option");
73MALLOC_DEFINE(SCTP_M_MCORE, "sctp_mcore", "sctp mcore queue");
74
75/* Global NON-VNET structure that controls the iterator */
76struct iterator_control sctp_it_ctl;
77
78
79void
80sctp_wakeup_iterator(void)
81{
82	wakeup(&sctp_it_ctl.iterator_running);
83}
84
85static void
86sctp_iterator_thread(void *v SCTP_UNUSED)
87{
88	SCTP_IPI_ITERATOR_WQ_LOCK();
89	/* In FreeBSD this thread never terminates. */
90	for (;;) {
91		msleep(&sctp_it_ctl.iterator_running,
92		    &sctp_it_ctl.ipi_iterator_wq_mtx,
93		    0, "waiting_for_work", 0);
94		sctp_iterator_worker();
95	}
96}
97
98void
99sctp_startup_iterator(void)
100{
101	static int called = 0;
102	int ret;
103
104	if (called) {
105		/* You only get one */
106		return;
107	}
108	/* init the iterator head */
109	called = 1;
110	sctp_it_ctl.iterator_running = 0;
111	sctp_it_ctl.iterator_flags = 0;
112	sctp_it_ctl.cur_it = NULL;
113	SCTP_ITERATOR_LOCK_INIT();
114	SCTP_IPI_ITERATOR_WQ_INIT();
115	TAILQ_INIT(&sctp_it_ctl.iteratorhead);
116	ret = kproc_create(sctp_iterator_thread,
117	    (void *)NULL,
118	    &sctp_it_ctl.thread_proc,
119	    RFPROC,
120	    SCTP_KTHREAD_PAGES,
121	    SCTP_KTRHEAD_NAME);
122}
123
124#ifdef INET6
125
126void
127sctp_gather_internal_ifa_flags(struct sctp_ifa *ifa)
128{
129	struct in6_ifaddr *ifa6;
130
131	ifa6 = (struct in6_ifaddr *)ifa->ifa;
132	ifa->flags = ifa6->ia6_flags;
133	if (!MODULE_GLOBAL(ip6_use_deprecated)) {
134		if (ifa->flags &
135		    IN6_IFF_DEPRECATED) {
136			ifa->localifa_flags |= SCTP_ADDR_IFA_UNUSEABLE;
137		} else {
138			ifa->localifa_flags &= ~SCTP_ADDR_IFA_UNUSEABLE;
139		}
140	} else {
141		ifa->localifa_flags &= ~SCTP_ADDR_IFA_UNUSEABLE;
142	}
143	if (ifa->flags &
144	    (IN6_IFF_DETACHED |
145	    IN6_IFF_ANYCAST |
146	    IN6_IFF_NOTREADY)) {
147		ifa->localifa_flags |= SCTP_ADDR_IFA_UNUSEABLE;
148	} else {
149		ifa->localifa_flags &= ~SCTP_ADDR_IFA_UNUSEABLE;
150	}
151}
152
153#endif				/* INET6 */
154
155
156static uint32_t
157sctp_is_desired_interface_type(struct ifaddr *ifa)
158{
159	int result;
160
161	/* check the interface type to see if it's one we care about */
162	switch (ifa->ifa_ifp->if_type) {
163	case IFT_ETHER:
164	case IFT_ISO88023:
165	case IFT_ISO88024:
166	case IFT_ISO88025:
167	case IFT_ISO88026:
168	case IFT_STARLAN:
169	case IFT_P10:
170	case IFT_P80:
171	case IFT_HY:
172	case IFT_FDDI:
173	case IFT_XETHER:
174	case IFT_ISDNBASIC:
175	case IFT_ISDNPRIMARY:
176	case IFT_PTPSERIAL:
177	case IFT_OTHER:
178	case IFT_PPP:
179	case IFT_LOOP:
180	case IFT_SLIP:
181	case IFT_GIF:
182	case IFT_L2VLAN:
183	case IFT_IP:
184	case IFT_IPOVERCDLC:
185	case IFT_IPOVERCLAW:
186	case IFT_VIRTUALIPADDRESS:
187		result = 1;
188		break;
189	default:
190		result = 0;
191	}
192
193	return (result);
194}
195
196
197
198
199static void
200sctp_init_ifns_for_vrf(int vrfid)
201{
202	/*
203	 * Here we must apply ANY locks needed by the IFN we access and also
204	 * make sure we lock any IFA that exists as we float through the
205	 * list of IFA's
206	 */
207	struct ifnet *ifn;
208	struct ifaddr *ifa;
209	struct sctp_ifa *sctp_ifa;
210	uint32_t ifa_flags;
211
212#ifdef INET6
213	struct in6_ifaddr *ifa6;
214
215#endif
216
217	IFNET_RLOCK();
218	TAILQ_FOREACH(ifn, &MODULE_GLOBAL(ifnet), if_list) {
219		IF_ADDR_RLOCK(ifn);
220		TAILQ_FOREACH(ifa, &ifn->if_addrlist, ifa_list) {
221			if (ifa->ifa_addr == NULL) {
222				continue;
223			}
224			switch (ifa->ifa_addr->sa_family) {
225#ifdef INET
226			case AF_INET:
227				if (((struct sockaddr_in *)ifa->ifa_addr)->sin_addr.s_addr == 0) {
228					continue;
229				}
230				break;
231#endif
232#ifdef INET6
233			case AF_INET6:
234				if (IN6_IS_ADDR_UNSPECIFIED(&((struct sockaddr_in6 *)ifa->ifa_addr)->sin6_addr)) {
235					/* skip unspecifed addresses */
236					continue;
237				}
238				break;
239#endif
240			default:
241				continue;
242			}
243			if (sctp_is_desired_interface_type(ifa) == 0) {
244				/* non desired type */
245				continue;
246			}
247			switch (ifa->ifa_addr->sa_family) {
248#ifdef INET
249			case AF_INET:
250				ifa_flags = 0;
251				break;
252#endif
253#ifdef INET6
254			case AF_INET6:
255				ifa6 = (struct in6_ifaddr *)ifa;
256				ifa_flags = ifa6->ia6_flags;
257				break;
258#endif
259			default:
260				ifa_flags = 0;
261				break;
262			}
263			sctp_ifa = sctp_add_addr_to_vrf(vrfid,
264			    (void *)ifn,
265			    ifn->if_index,
266			    ifn->if_type,
267			    ifn->if_xname,
268			    (void *)ifa,
269			    ifa->ifa_addr,
270			    ifa_flags,
271			    0);
272			if (sctp_ifa) {
273				sctp_ifa->localifa_flags &= ~SCTP_ADDR_DEFER_USE;
274			}
275		}
276		IF_ADDR_RUNLOCK(ifn);
277	}
278	IFNET_RUNLOCK();
279}
280
281void
282sctp_init_vrf_list(int vrfid)
283{
284	if (vrfid > SCTP_MAX_VRF_ID)
285		/* can't do that */
286		return;
287
288	/* Don't care about return here */
289	(void)sctp_allocate_vrf(vrfid);
290
291	/*
292	 * Now we need to build all the ifn's for this vrf and there
293	 * addresses
294	 */
295	sctp_init_ifns_for_vrf(vrfid);
296}
297
298void
299sctp_addr_change(struct ifaddr *ifa, int cmd)
300{
301	uint32_t ifa_flags = 0;
302
303	/*
304	 * BSD only has one VRF, if this changes we will need to hook in the
305	 * right things here to get the id to pass to the address managment
306	 * routine.
307	 */
308	if (SCTP_BASE_VAR(first_time) == 0) {
309		/* Special test to see if my ::1 will showup with this */
310		SCTP_BASE_VAR(first_time) = 1;
311		sctp_init_ifns_for_vrf(SCTP_DEFAULT_VRFID);
312	}
313	if ((cmd != RTM_ADD) && (cmd != RTM_DELETE)) {
314		/* don't know what to do with this */
315		return;
316	}
317	if (ifa->ifa_addr == NULL) {
318		return;
319	}
320	switch (ifa->ifa_addr->sa_family) {
321#ifdef INET
322	case AF_INET:
323		if (((struct sockaddr_in *)ifa->ifa_addr)->sin_addr.s_addr == 0) {
324			return;
325		}
326		break;
327#endif
328#ifdef INET6
329	case AF_INET6:
330		ifa_flags = ((struct in6_ifaddr *)ifa)->ia6_flags;
331		if (IN6_IS_ADDR_UNSPECIFIED(&((struct sockaddr_in6 *)ifa->ifa_addr)->sin6_addr)) {
332			/* skip unspecifed addresses */
333			return;
334		}
335		break;
336#endif
337	default:
338		/* non inet/inet6 skip */
339		return;
340	}
341
342	if (sctp_is_desired_interface_type(ifa) == 0) {
343		/* non desired type */
344		return;
345	}
346	if (cmd == RTM_ADD) {
347		(void)sctp_add_addr_to_vrf(SCTP_DEFAULT_VRFID, (void *)ifa->ifa_ifp,
348		    ifa->ifa_ifp->if_index, ifa->ifa_ifp->if_type,
349		    ifa->ifa_ifp->if_xname,
350		    (void *)ifa, ifa->ifa_addr, ifa_flags, 1);
351	} else {
352
353		sctp_del_addr_from_vrf(SCTP_DEFAULT_VRFID, ifa->ifa_addr,
354		    ifa->ifa_ifp->if_index,
355		    ifa->ifa_ifp->if_xname
356		    );
357		/*
358		 * We don't bump refcount here so when it completes the
359		 * final delete will happen.
360		 */
361	}
362}
363
364void
365     sctp_add_or_del_interfaces(int (*pred) (struct ifnet *), int add){
366	struct ifnet *ifn;
367	struct ifaddr *ifa;
368
369	IFNET_RLOCK();
370	TAILQ_FOREACH(ifn, &MODULE_GLOBAL(ifnet), if_list) {
371		if (!(*pred) (ifn)) {
372			continue;
373		}
374		TAILQ_FOREACH(ifa, &ifn->if_addrlist, ifa_list) {
375			sctp_addr_change(ifa, add ? RTM_ADD : RTM_DELETE);
376		}
377	}
378	IFNET_RUNLOCK();
379}
380
381struct mbuf *
382sctp_get_mbuf_for_msg(unsigned int space_needed, int want_header,
383    int how, int allonebuf, int type)
384{
385	struct mbuf *m = NULL;
386
387	m = m_getm2(NULL, space_needed, how, type, want_header ? M_PKTHDR : 0);
388	if (m == NULL) {
389		/* bad, no memory */
390		return (m);
391	}
392	if (allonebuf) {
393		int siz;
394
395		if (SCTP_BUF_IS_EXTENDED(m)) {
396			siz = SCTP_BUF_EXTEND_SIZE(m);
397		} else {
398			if (want_header)
399				siz = MHLEN;
400			else
401				siz = MLEN;
402		}
403		if (siz < space_needed) {
404			m_freem(m);
405			return (NULL);
406		}
407	}
408	if (SCTP_BUF_NEXT(m)) {
409		sctp_m_freem(SCTP_BUF_NEXT(m));
410		SCTP_BUF_NEXT(m) = NULL;
411	}
412#ifdef SCTP_MBUF_LOGGING
413	if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_MBUF_LOGGING_ENABLE) {
414		if (SCTP_BUF_IS_EXTENDED(m)) {
415			sctp_log_mb(m, SCTP_MBUF_IALLOC);
416		}
417	}
418#endif
419	return (m);
420}
421
422
423#ifdef SCTP_PACKET_LOGGING
424void
425sctp_packet_log(struct mbuf *m, int length)
426{
427	int *lenat, thisone;
428	void *copyto;
429	uint32_t *tick_tock;
430	int total_len;
431	int grabbed_lock = 0;
432	int value, newval, thisend, thisbegin;
433
434	/*
435	 * Buffer layout. -sizeof this entry (total_len) -previous end
436	 * (value) -ticks of log      (ticks) o -ip packet o -as logged -
437	 * where this started (thisbegin) x <--end points here
438	 */
439	total_len = SCTP_SIZE32((length + (4 * sizeof(int))));
440	/* Log a packet to the buffer. */
441	if (total_len > SCTP_PACKET_LOG_SIZE) {
442		/* Can't log this packet I have not a buffer big enough */
443		return;
444	}
445	if (length < (int)(SCTP_MIN_V4_OVERHEAD + sizeof(struct sctp_cookie_ack_chunk))) {
446		return;
447	}
448	atomic_add_int(&SCTP_BASE_VAR(packet_log_writers), 1);
449try_again:
450	if (SCTP_BASE_VAR(packet_log_writers) > SCTP_PKTLOG_WRITERS_NEED_LOCK) {
451		SCTP_IP_PKTLOG_LOCK();
452		grabbed_lock = 1;
453again_locked:
454		value = SCTP_BASE_VAR(packet_log_end);
455		newval = SCTP_BASE_VAR(packet_log_end) + total_len;
456		if (newval >= SCTP_PACKET_LOG_SIZE) {
457			/* we wrapped */
458			thisbegin = 0;
459			thisend = total_len;
460		} else {
461			thisbegin = SCTP_BASE_VAR(packet_log_end);
462			thisend = newval;
463		}
464		if (!(atomic_cmpset_int(&SCTP_BASE_VAR(packet_log_end), value, thisend))) {
465			goto again_locked;
466		}
467	} else {
468		value = SCTP_BASE_VAR(packet_log_end);
469		newval = SCTP_BASE_VAR(packet_log_end) + total_len;
470		if (newval >= SCTP_PACKET_LOG_SIZE) {
471			/* we wrapped */
472			thisbegin = 0;
473			thisend = total_len;
474		} else {
475			thisbegin = SCTP_BASE_VAR(packet_log_end);
476			thisend = newval;
477		}
478		if (!(atomic_cmpset_int(&SCTP_BASE_VAR(packet_log_end), value, thisend))) {
479			goto try_again;
480		}
481	}
482	/* Sanity check */
483	if (thisend >= SCTP_PACKET_LOG_SIZE) {
484		printf("Insanity stops a log thisbegin:%d thisend:%d writers:%d lock:%d end:%d\n",
485		    thisbegin,
486		    thisend,
487		    SCTP_BASE_VAR(packet_log_writers),
488		    grabbed_lock,
489		    SCTP_BASE_VAR(packet_log_end));
490		SCTP_BASE_VAR(packet_log_end) = 0;
491		goto no_log;
492
493	}
494	lenat = (int *)&SCTP_BASE_VAR(packet_log_buffer)[thisbegin];
495	*lenat = total_len;
496	lenat++;
497	*lenat = value;
498	lenat++;
499	tick_tock = (uint32_t *) lenat;
500	lenat++;
501	*tick_tock = sctp_get_tick_count();
502	copyto = (void *)lenat;
503	thisone = thisend - sizeof(int);
504	lenat = (int *)&SCTP_BASE_VAR(packet_log_buffer)[thisone];
505	*lenat = thisbegin;
506	if (grabbed_lock) {
507		SCTP_IP_PKTLOG_UNLOCK();
508		grabbed_lock = 0;
509	}
510	m_copydata(m, 0, length, (caddr_t)copyto);
511no_log:
512	if (grabbed_lock) {
513		SCTP_IP_PKTLOG_UNLOCK();
514	}
515	atomic_subtract_int(&SCTP_BASE_VAR(packet_log_writers), 1);
516}
517
518
519int
520sctp_copy_out_packet_log(uint8_t * target, int length)
521{
522	/*
523	 * We wind through the packet log starting at start copying up to
524	 * length bytes out. We return the number of bytes copied.
525	 */
526	int tocopy, this_copy;
527	int *lenat;
528	int did_delay = 0;
529
530	tocopy = length;
531	if (length < (int)(2 * sizeof(int))) {
532		/* not enough room */
533		return (0);
534	}
535	if (SCTP_PKTLOG_WRITERS_NEED_LOCK) {
536		atomic_add_int(&SCTP_BASE_VAR(packet_log_writers), SCTP_PKTLOG_WRITERS_NEED_LOCK);
537again:
538		if ((did_delay == 0) && (SCTP_BASE_VAR(packet_log_writers) != SCTP_PKTLOG_WRITERS_NEED_LOCK)) {
539			/*
540			 * we delay here for just a moment hoping the
541			 * writer(s) that were present when we entered will
542			 * have left and we only have locking ones that will
543			 * contend with us for the lock. This does not
544			 * assure 100% access, but its good enough for a
545			 * logging facility like this.
546			 */
547			did_delay = 1;
548			DELAY(10);
549			goto again;
550		}
551	}
552	SCTP_IP_PKTLOG_LOCK();
553	lenat = (int *)target;
554	*lenat = SCTP_BASE_VAR(packet_log_end);
555	lenat++;
556	this_copy = min((length - sizeof(int)), SCTP_PACKET_LOG_SIZE);
557	memcpy((void *)lenat, (void *)SCTP_BASE_VAR(packet_log_buffer), this_copy);
558	if (SCTP_PKTLOG_WRITERS_NEED_LOCK) {
559		atomic_subtract_int(&SCTP_BASE_VAR(packet_log_writers),
560		    SCTP_PKTLOG_WRITERS_NEED_LOCK);
561	}
562	SCTP_IP_PKTLOG_UNLOCK();
563	return (this_copy + sizeof(int));
564}
565
566#endif
567