xref: /freebsd/sys/netinet6/sctp6_usrreq.c (revision c6989859ae9388eeb46a24fe88f9b8d07101c710)
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 #include <netinet/sctp_os.h>
39 #ifdef INET6
40 #include <sys/proc.h>
41 #include <netinet/sctp_pcb.h>
42 #include <netinet/sctp_header.h>
43 #include <netinet/sctp_var.h>
44 #include <netinet6/sctp6_var.h>
45 #include <netinet/sctp_sysctl.h>
46 #include <netinet/sctp_output.h>
47 #include <netinet/sctp_uio.h>
48 #include <netinet/sctp_asconf.h>
49 #include <netinet/sctputil.h>
50 #include <netinet/sctp_indata.h>
51 #include <netinet/sctp_timer.h>
52 #include <netinet/sctp_auth.h>
53 #include <netinet/sctp_input.h>
54 #include <netinet/sctp_output.h>
55 #include <netinet/sctp_bsd_addr.h>
56 #include <netinet/sctp_crc32.h>
57 #include <netinet/icmp6.h>
58 #include <netinet/udp.h>
59 
60 int
61 sctp6_input_with_port(struct mbuf **i_pak, int *offp, uint16_t port)
62 {
63 	struct mbuf *m;
64 	int iphlen;
65 	uint32_t vrf_id;
66 	uint8_t ecn_bits;
67 	struct sockaddr_in6 src, dst;
68 	struct ip6_hdr *ip6;
69 	struct sctphdr *sh;
70 	struct sctp_chunkhdr *ch;
71 	int length, offset;
72 	uint8_t compute_crc;
73 	uint32_t mflowid;
74 	uint8_t mflowtype;
75 	uint16_t fibnum;
76 
77 	iphlen = *offp;
78 	if (SCTP_GET_PKT_VRFID(*i_pak, vrf_id)) {
79 		SCTP_RELEASE_PKT(*i_pak);
80 		return (IPPROTO_DONE);
81 	}
82 	m = SCTP_HEADER_TO_CHAIN(*i_pak);
83 #ifdef SCTP_MBUF_LOGGING
84 	/* Log in any input mbufs */
85 	if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_MBUF_LOGGING_ENABLE) {
86 		sctp_log_mbc(m, SCTP_MBUF_INPUT);
87 	}
88 #endif
89 #ifdef SCTP_PACKET_LOGGING
90 	if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_LAST_PACKET_TRACING) {
91 		sctp_packet_log(m);
92 	}
93 #endif
94 	SCTPDBG(SCTP_DEBUG_CRCOFFLOAD,
95 	    "sctp6_input(): Packet of length %d received on %s with csum_flags 0x%b.\n",
96 	    m->m_pkthdr.len,
97 	    if_name(m->m_pkthdr.rcvif),
98 	    (int)m->m_pkthdr.csum_flags, CSUM_BITS);
99 	mflowid = m->m_pkthdr.flowid;
100 	mflowtype = M_HASHTYPE_GET(m);
101 	fibnum = M_GETFIB(m);
102 	SCTP_STAT_INCR(sctps_recvpackets);
103 	SCTP_STAT_INCR_COUNTER64(sctps_inpackets);
104 	/* Get IP, SCTP, and first chunk header together in the first mbuf. */
105 	offset = iphlen + sizeof(struct sctphdr) + sizeof(struct sctp_chunkhdr);
106 	if (m->m_len < offset) {
107 		m = m_pullup(m, offset);
108 		if (m == NULL) {
109 			SCTP_STAT_INCR(sctps_hdrops);
110 			return (IPPROTO_DONE);
111 		}
112 	}
113 	ip6 = mtod(m, struct ip6_hdr *);
114 	sh = (struct sctphdr *)(mtod(m, caddr_t)+iphlen);
115 	ch = (struct sctp_chunkhdr *)((caddr_t)sh + sizeof(struct sctphdr));
116 	offset -= sizeof(struct sctp_chunkhdr);
117 	memset(&src, 0, sizeof(struct sockaddr_in6));
118 	src.sin6_family = AF_INET6;
119 	src.sin6_len = sizeof(struct sockaddr_in6);
120 	src.sin6_port = sh->src_port;
121 	src.sin6_addr = ip6->ip6_src;
122 	if (in6_setscope(&src.sin6_addr, m->m_pkthdr.rcvif, NULL) != 0) {
123 		goto out;
124 	}
125 	memset(&dst, 0, sizeof(struct sockaddr_in6));
126 	dst.sin6_family = AF_INET6;
127 	dst.sin6_len = sizeof(struct sockaddr_in6);
128 	dst.sin6_port = sh->dest_port;
129 	dst.sin6_addr = ip6->ip6_dst;
130 	if (in6_setscope(&dst.sin6_addr, m->m_pkthdr.rcvif, NULL) != 0) {
131 		goto out;
132 	}
133 	length = ntohs(ip6->ip6_plen) + iphlen;
134 	/* Validate mbuf chain length with IP payload length. */
135 	if (SCTP_HEADER_LEN(m) != length) {
136 		SCTPDBG(SCTP_DEBUG_INPUT1,
137 		    "sctp6_input() length:%d reported length:%d\n", length, SCTP_HEADER_LEN(m));
138 		SCTP_STAT_INCR(sctps_hdrops);
139 		goto out;
140 	}
141 	if (IN6_IS_ADDR_MULTICAST(&ip6->ip6_dst)) {
142 		goto out;
143 	}
144 	ecn_bits = ((ntohl(ip6->ip6_flow) >> 20) & 0x000000ff);
145 	if (m->m_pkthdr.csum_flags & CSUM_SCTP_VALID) {
146 		SCTP_STAT_INCR(sctps_recvhwcrc);
147 		compute_crc = 0;
148 	} else {
149 		SCTP_STAT_INCR(sctps_recvswcrc);
150 		compute_crc = 1;
151 	}
152 	sctp_common_input_processing(&m, iphlen, offset, length,
153 	    (struct sockaddr *)&src,
154 	    (struct sockaddr *)&dst,
155 	    sh, ch,
156 	    compute_crc,
157 	    ecn_bits,
158 	    mflowtype, mflowid, fibnum,
159 	    vrf_id, port);
160 out:
161 	if (m) {
162 		sctp_m_freem(m);
163 	}
164 	return (IPPROTO_DONE);
165 }
166 
167 int
168 sctp6_input(struct mbuf **i_pak, int *offp, int proto SCTP_UNUSED)
169 {
170 	return (sctp6_input_with_port(i_pak, offp, 0));
171 }
172 
173 void
174 sctp6_notify(struct sctp_inpcb *inp,
175     struct sctp_tcb *stcb,
176     struct sctp_nets *net,
177     uint8_t icmp6_type,
178     uint8_t icmp6_code,
179     uint32_t next_mtu)
180 {
181 	int timer_stopped;
182 
183 	switch (icmp6_type) {
184 	case ICMP6_DST_UNREACH:
185 		if ((icmp6_code == ICMP6_DST_UNREACH_NOROUTE) ||
186 		    (icmp6_code == ICMP6_DST_UNREACH_ADMIN) ||
187 		    (icmp6_code == ICMP6_DST_UNREACH_BEYONDSCOPE) ||
188 		    (icmp6_code == ICMP6_DST_UNREACH_ADDR)) {
189 			/* Mark the net unreachable. */
190 			if (net->dest_state & SCTP_ADDR_REACHABLE) {
191 				/* Ok that destination is not reachable */
192 				net->dest_state &= ~SCTP_ADDR_REACHABLE;
193 				net->dest_state &= ~SCTP_ADDR_PF;
194 				sctp_ulp_notify(SCTP_NOTIFY_INTERFACE_DOWN,
195 				    stcb, 0, (void *)net, SCTP_SO_NOT_LOCKED);
196 			}
197 		}
198 		SCTP_TCB_UNLOCK(stcb);
199 		break;
200 	case ICMP6_PARAM_PROB:
201 		/* Treat it like an ABORT. */
202 		if (icmp6_code == ICMP6_PARAMPROB_NEXTHEADER) {
203 			sctp_abort_notification(stcb, 1, 0, NULL, SCTP_SO_NOT_LOCKED);
204 			(void)sctp_free_assoc(inp, stcb, SCTP_NORMAL_PROC,
205 			    SCTP_FROM_SCTP_USRREQ + SCTP_LOC_2);
206 		} else {
207 			SCTP_TCB_UNLOCK(stcb);
208 		}
209 		break;
210 	case ICMP6_PACKET_TOO_BIG:
211 		if (net->dest_state & SCTP_ADDR_NO_PMTUD) {
212 			SCTP_TCB_UNLOCK(stcb);
213 			break;
214 		}
215 		if (SCTP_OS_TIMER_PENDING(&net->pmtu_timer.timer)) {
216 			timer_stopped = 1;
217 			sctp_timer_stop(SCTP_TIMER_TYPE_PATHMTURAISE, inp, stcb, net,
218 			    SCTP_FROM_SCTP_USRREQ + SCTP_LOC_1);
219 		} else {
220 			timer_stopped = 0;
221 		}
222 		/* Update the path MTU. */
223 		if (net->port) {
224 			next_mtu -= sizeof(struct udphdr);
225 		}
226 		if (net->mtu > next_mtu) {
227 			net->mtu = next_mtu;
228 			if (net->port) {
229 				sctp_hc_set_mtu(&net->ro._l_addr, inp->fibnum, next_mtu + sizeof(struct udphdr));
230 			} else {
231 				sctp_hc_set_mtu(&net->ro._l_addr, inp->fibnum, next_mtu);
232 			}
233 		}
234 		/* Update the association MTU */
235 		if (stcb->asoc.smallest_mtu > next_mtu) {
236 			sctp_pathmtu_adjustment(stcb, next_mtu);
237 		}
238 		/* Finally, start the PMTU timer if it was running before. */
239 		if (timer_stopped) {
240 			sctp_timer_start(SCTP_TIMER_TYPE_PATHMTURAISE, inp, stcb, net);
241 		}
242 		SCTP_TCB_UNLOCK(stcb);
243 		break;
244 	default:
245 		SCTP_TCB_UNLOCK(stcb);
246 		break;
247 	}
248 }
249 
250 void
251 sctp6_ctlinput(int cmd, struct sockaddr *pktdst, void *d)
252 {
253 	struct ip6ctlparam *ip6cp;
254 	struct sctp_inpcb *inp;
255 	struct sctp_tcb *stcb;
256 	struct sctp_nets *net;
257 	struct sctphdr sh;
258 	struct sockaddr_in6 src, dst;
259 
260 	if (pktdst->sa_family != AF_INET6 ||
261 	    pktdst->sa_len != sizeof(struct sockaddr_in6)) {
262 		return;
263 	}
264 
265 	if ((unsigned)cmd >= PRC_NCMDS) {
266 		return;
267 	}
268 	if (PRC_IS_REDIRECT(cmd)) {
269 		d = NULL;
270 	} else if (inet6ctlerrmap[cmd] == 0) {
271 		return;
272 	}
273 	/* If the parameter is from icmp6, decode it. */
274 	if (d != NULL) {
275 		ip6cp = (struct ip6ctlparam *)d;
276 	} else {
277 		ip6cp = (struct ip6ctlparam *)NULL;
278 	}
279 
280 	if (ip6cp != NULL) {
281 		/*
282 		 * XXX: We assume that when IPV6 is non NULL, M and OFF are
283 		 * valid.
284 		 */
285 		if (ip6cp->ip6c_m == NULL) {
286 			return;
287 		}
288 
289 		/*
290 		 * Check if we can safely examine the ports and the
291 		 * verification tag of the SCTP common header.
292 		 */
293 		if (ip6cp->ip6c_m->m_pkthdr.len <
294 		    (int32_t)(ip6cp->ip6c_off + offsetof(struct sctphdr, checksum))) {
295 			return;
296 		}
297 
298 		/* Copy out the port numbers and the verification tag. */
299 		memset(&sh, 0, sizeof(sh));
300 		m_copydata(ip6cp->ip6c_m,
301 		    ip6cp->ip6c_off,
302 		    sizeof(uint16_t) + sizeof(uint16_t) + sizeof(uint32_t),
303 		    (caddr_t)&sh);
304 		memset(&src, 0, sizeof(struct sockaddr_in6));
305 		src.sin6_family = AF_INET6;
306 		src.sin6_len = sizeof(struct sockaddr_in6);
307 		src.sin6_port = sh.src_port;
308 		src.sin6_addr = ip6cp->ip6c_ip6->ip6_src;
309 		if (in6_setscope(&src.sin6_addr, ip6cp->ip6c_m->m_pkthdr.rcvif, NULL) != 0) {
310 			return;
311 		}
312 		memset(&dst, 0, sizeof(struct sockaddr_in6));
313 		dst.sin6_family = AF_INET6;
314 		dst.sin6_len = sizeof(struct sockaddr_in6);
315 		dst.sin6_port = sh.dest_port;
316 		dst.sin6_addr = ip6cp->ip6c_ip6->ip6_dst;
317 		if (in6_setscope(&dst.sin6_addr, ip6cp->ip6c_m->m_pkthdr.rcvif, NULL) != 0) {
318 			return;
319 		}
320 		inp = NULL;
321 		net = NULL;
322 		stcb = sctp_findassociation_addr_sa((struct sockaddr *)&dst,
323 		    (struct sockaddr *)&src,
324 		    &inp, &net, 1, SCTP_DEFAULT_VRFID);
325 		if ((stcb != NULL) &&
326 		    (net != NULL) &&
327 		    (inp != NULL)) {
328 			/* Check the verification tag */
329 			if (ntohl(sh.v_tag) != 0) {
330 				/*
331 				 * This must be the verification tag used
332 				 * for sending out packets. We don't
333 				 * consider packets reflecting the
334 				 * verification tag.
335 				 */
336 				if (ntohl(sh.v_tag) != stcb->asoc.peer_vtag) {
337 					SCTP_TCB_UNLOCK(stcb);
338 					return;
339 				}
340 			} else {
341 				if (ip6cp->ip6c_m->m_pkthdr.len >=
342 				    ip6cp->ip6c_off + sizeof(struct sctphdr) +
343 				    sizeof(struct sctp_chunkhdr) +
344 				    offsetof(struct sctp_init, a_rwnd)) {
345 					/*
346 					 * In this case we can check if we
347 					 * got an INIT chunk and if the
348 					 * initiate tag matches.
349 					 */
350 					uint32_t initiate_tag;
351 					uint8_t chunk_type;
352 
353 					m_copydata(ip6cp->ip6c_m,
354 					    ip6cp->ip6c_off +
355 					    sizeof(struct sctphdr),
356 					    sizeof(uint8_t),
357 					    (caddr_t)&chunk_type);
358 					m_copydata(ip6cp->ip6c_m,
359 					    ip6cp->ip6c_off +
360 					    sizeof(struct sctphdr) +
361 					    sizeof(struct sctp_chunkhdr),
362 					    sizeof(uint32_t),
363 					    (caddr_t)&initiate_tag);
364 					if ((chunk_type != SCTP_INITIATION) ||
365 					    (ntohl(initiate_tag) != stcb->asoc.my_vtag)) {
366 						SCTP_TCB_UNLOCK(stcb);
367 						return;
368 					}
369 				} else {
370 					SCTP_TCB_UNLOCK(stcb);
371 					return;
372 				}
373 			}
374 			sctp6_notify(inp, stcb, net,
375 			    ip6cp->ip6c_icmp6->icmp6_type,
376 			    ip6cp->ip6c_icmp6->icmp6_code,
377 			    ntohl(ip6cp->ip6c_icmp6->icmp6_mtu));
378 		} else {
379 			if ((stcb == NULL) && (inp != NULL)) {
380 				/* reduce inp's ref-count */
381 				SCTP_INP_WLOCK(inp);
382 				SCTP_INP_DECR_REF(inp);
383 				SCTP_INP_WUNLOCK(inp);
384 			}
385 			if (stcb) {
386 				SCTP_TCB_UNLOCK(stcb);
387 			}
388 		}
389 	}
390 }
391 
392 /*
393  * this routine can probably be collasped into the one in sctp_userreq.c
394  * since they do the same thing and now we lookup with a sockaddr
395  */
396 static int
397 sctp6_getcred(SYSCTL_HANDLER_ARGS)
398 {
399 	struct xucred xuc;
400 	struct sockaddr_in6 addrs[2];
401 	struct sctp_inpcb *inp;
402 	struct sctp_nets *net;
403 	struct sctp_tcb *stcb;
404 	int error;
405 	uint32_t vrf_id;
406 
407 	vrf_id = SCTP_DEFAULT_VRFID;
408 
409 	error = priv_check(req->td, PRIV_NETINET_GETCRED);
410 	if (error)
411 		return (error);
412 
413 	if (req->newlen != sizeof(addrs)) {
414 		SCTP_LTRACE_ERR_RET(NULL, NULL, NULL, SCTP_FROM_SCTP6_USRREQ, EINVAL);
415 		return (EINVAL);
416 	}
417 	if (req->oldlen != sizeof(struct ucred)) {
418 		SCTP_LTRACE_ERR_RET(NULL, NULL, NULL, SCTP_FROM_SCTP6_USRREQ, EINVAL);
419 		return (EINVAL);
420 	}
421 	error = SYSCTL_IN(req, addrs, sizeof(addrs));
422 	if (error)
423 		return (error);
424 
425 	stcb = sctp_findassociation_addr_sa(sin6tosa(&addrs[1]),
426 	    sin6tosa(&addrs[0]),
427 	    &inp, &net, 1, vrf_id);
428 	if (stcb == NULL || inp == NULL || inp->sctp_socket == NULL) {
429 		if ((inp != NULL) && (stcb == NULL)) {
430 			/* reduce ref-count */
431 			SCTP_INP_WLOCK(inp);
432 			SCTP_INP_DECR_REF(inp);
433 			goto cred_can_cont;
434 		}
435 		SCTP_LTRACE_ERR_RET(inp, NULL, NULL, SCTP_FROM_SCTP6_USRREQ, ENOENT);
436 		error = ENOENT;
437 		goto out;
438 	}
439 	SCTP_TCB_UNLOCK(stcb);
440 	/*
441 	 * We use the write lock here, only since in the error leg we need
442 	 * it. If we used RLOCK, then we would have to
443 	 * wlock/decr/unlock/rlock. Which in theory could create a hole.
444 	 * Better to use higher wlock.
445 	 */
446 	SCTP_INP_WLOCK(inp);
447 cred_can_cont:
448 	error = cr_canseesocket(req->td->td_ucred, inp->sctp_socket);
449 	if (error) {
450 		SCTP_INP_WUNLOCK(inp);
451 		goto out;
452 	}
453 	cru2x(inp->sctp_socket->so_cred, &xuc);
454 	SCTP_INP_WUNLOCK(inp);
455 	error = SYSCTL_OUT(req, &xuc, sizeof(struct xucred));
456 out:
457 	return (error);
458 }
459 
460 SYSCTL_PROC(_net_inet6_sctp6, OID_AUTO, getcred,
461     CTLTYPE_OPAQUE | CTLFLAG_RW | CTLFLAG_NEEDGIANT,
462     0, 0, sctp6_getcred, "S,ucred",
463     "Get the ucred of a SCTP6 connection");
464 
465 /* This is the same as the sctp_abort() could be made common */
466 static void
467 sctp6_abort(struct socket *so)
468 {
469 	struct epoch_tracker et;
470 	struct sctp_inpcb *inp;
471 	uint32_t flags;
472 
473 	inp = (struct sctp_inpcb *)so->so_pcb;
474 	if (inp == NULL) {
475 		SCTP_LTRACE_ERR_RET(inp, NULL, NULL, SCTP_FROM_SCTP6_USRREQ, EINVAL);
476 		return;
477 	}
478 	NET_EPOCH_ENTER(et);
479 sctp_must_try_again:
480 	flags = inp->sctp_flags;
481 #ifdef SCTP_LOG_CLOSING
482 	sctp_log_closing(inp, NULL, 17);
483 #endif
484 	if (((flags & SCTP_PCB_FLAGS_SOCKET_GONE) == 0) &&
485 	    (atomic_cmpset_int(&inp->sctp_flags, flags, (flags | SCTP_PCB_FLAGS_SOCKET_GONE | SCTP_PCB_FLAGS_CLOSE_IP)))) {
486 #ifdef SCTP_LOG_CLOSING
487 		sctp_log_closing(inp, NULL, 16);
488 #endif
489 		sctp_inpcb_free(inp, SCTP_FREE_SHOULD_USE_ABORT,
490 		    SCTP_CALLED_AFTER_CMPSET_OFCLOSE);
491 		SOCK_LOCK(so);
492 		SCTP_SB_CLEAR(so->so_snd);
493 		/*
494 		 * same for the rcv ones, they are only here for the
495 		 * accounting/select.
496 		 */
497 		SCTP_SB_CLEAR(so->so_rcv);
498 		/* Now null out the reference, we are completely detached. */
499 		so->so_pcb = NULL;
500 		SOCK_UNLOCK(so);
501 	} else {
502 		flags = inp->sctp_flags;
503 		if ((flags & SCTP_PCB_FLAGS_SOCKET_GONE) == 0) {
504 			goto sctp_must_try_again;
505 		}
506 	}
507 	NET_EPOCH_EXIT(et);
508 	return;
509 }
510 
511 static int
512 sctp6_attach(struct socket *so, int proto SCTP_UNUSED, struct thread *p SCTP_UNUSED)
513 {
514 	int error;
515 	struct sctp_inpcb *inp;
516 	uint32_t vrf_id = SCTP_DEFAULT_VRFID;
517 
518 	inp = (struct sctp_inpcb *)so->so_pcb;
519 	if (inp != NULL) {
520 		SCTP_LTRACE_ERR_RET(inp, NULL, NULL, SCTP_FROM_SCTP6_USRREQ, EINVAL);
521 		return (EINVAL);
522 	}
523 
524 	if (so->so_snd.sb_hiwat == 0 || so->so_rcv.sb_hiwat == 0) {
525 		error = SCTP_SORESERVE(so, SCTP_BASE_SYSCTL(sctp_sendspace), SCTP_BASE_SYSCTL(sctp_recvspace));
526 		if (error)
527 			return (error);
528 	}
529 	error = sctp_inpcb_alloc(so, vrf_id);
530 	if (error)
531 		return (error);
532 	inp = (struct sctp_inpcb *)so->so_pcb;
533 	SCTP_INP_WLOCK(inp);
534 	inp->sctp_flags |= SCTP_PCB_FLAGS_BOUND_V6;	/* I'm v6! */
535 
536 	inp->ip_inp.inp.inp_vflag |= INP_IPV6;
537 	inp->ip_inp.inp.in6p_hops = -1;	/* use kernel default */
538 	inp->ip_inp.inp.in6p_cksum = -1;	/* just to be sure */
539 #ifdef INET
540 	/*
541 	 * XXX: ugly!! IPv4 TTL initialization is necessary for an IPv6
542 	 * socket as well, because the socket may be bound to an IPv6
543 	 * wildcard address, which may match an IPv4-mapped IPv6 address.
544 	 */
545 	inp->ip_inp.inp.inp_ip_ttl = MODULE_GLOBAL(ip_defttl);
546 #endif
547 	SCTP_INP_WUNLOCK(inp);
548 	return (0);
549 }
550 
551 static int
552 sctp6_bind(struct socket *so, struct sockaddr *addr, struct thread *p)
553 {
554 	struct sctp_inpcb *inp;
555 	int error;
556 	u_char vflagsav;
557 
558 	inp = (struct sctp_inpcb *)so->so_pcb;
559 	if (inp == NULL) {
560 		SCTP_LTRACE_ERR_RET(inp, NULL, NULL, SCTP_FROM_SCTP6_USRREQ, EINVAL);
561 		return (EINVAL);
562 	}
563 
564 	if (addr) {
565 		switch (addr->sa_family) {
566 #ifdef INET
567 		case AF_INET:
568 			if (addr->sa_len != sizeof(struct sockaddr_in)) {
569 				SCTP_LTRACE_ERR_RET(inp, NULL, NULL, SCTP_FROM_SCTP6_USRREQ, EINVAL);
570 				return (EINVAL);
571 			}
572 			break;
573 #endif
574 #ifdef INET6
575 		case AF_INET6:
576 			if (addr->sa_len != sizeof(struct sockaddr_in6)) {
577 				SCTP_LTRACE_ERR_RET(inp, NULL, NULL, SCTP_FROM_SCTP6_USRREQ, EINVAL);
578 				return (EINVAL);
579 			}
580 			break;
581 #endif
582 		default:
583 			SCTP_LTRACE_ERR_RET(inp, NULL, NULL, SCTP_FROM_SCTP6_USRREQ, EINVAL);
584 			return (EINVAL);
585 		}
586 	}
587 	vflagsav = inp->ip_inp.inp.inp_vflag;
588 	inp->ip_inp.inp.inp_vflag &= ~INP_IPV4;
589 	inp->ip_inp.inp.inp_vflag |= INP_IPV6;
590 	if ((addr != NULL) && (SCTP_IPV6_V6ONLY(inp) == 0)) {
591 		switch (addr->sa_family) {
592 #ifdef INET
593 		case AF_INET:
594 			/* binding v4 addr to v6 socket, so reset flags */
595 			inp->ip_inp.inp.inp_vflag |= INP_IPV4;
596 			inp->ip_inp.inp.inp_vflag &= ~INP_IPV6;
597 			break;
598 #endif
599 #ifdef INET6
600 		case AF_INET6:
601 			{
602 				struct sockaddr_in6 *sin6_p;
603 
604 				sin6_p = (struct sockaddr_in6 *)addr;
605 
606 				if (IN6_IS_ADDR_UNSPECIFIED(&sin6_p->sin6_addr)) {
607 					inp->ip_inp.inp.inp_vflag |= INP_IPV4;
608 				}
609 #ifdef INET
610 				if (IN6_IS_ADDR_V4MAPPED(&sin6_p->sin6_addr)) {
611 					struct sockaddr_in sin;
612 
613 					in6_sin6_2_sin(&sin, sin6_p);
614 					inp->ip_inp.inp.inp_vflag |= INP_IPV4;
615 					inp->ip_inp.inp.inp_vflag &= ~INP_IPV6;
616 					error = sctp_inpcb_bind(so, (struct sockaddr *)&sin, NULL, p);
617 					goto out;
618 				}
619 #endif
620 				break;
621 			}
622 #endif
623 		default:
624 			break;
625 		}
626 	} else if (addr != NULL) {
627 		struct sockaddr_in6 *sin6_p;
628 
629 		/* IPV6_V6ONLY socket */
630 #ifdef INET
631 		if (addr->sa_family == AF_INET) {
632 			/* can't bind v4 addr to v6 only socket! */
633 			SCTP_LTRACE_ERR_RET(inp, NULL, NULL, SCTP_FROM_SCTP6_USRREQ, EINVAL);
634 			error = EINVAL;
635 			goto out;
636 		}
637 #endif
638 		sin6_p = (struct sockaddr_in6 *)addr;
639 
640 		if (IN6_IS_ADDR_V4MAPPED(&sin6_p->sin6_addr)) {
641 			/* can't bind v4-mapped addrs either! */
642 			/* NOTE: we don't support SIIT */
643 			SCTP_LTRACE_ERR_RET(inp, NULL, NULL, SCTP_FROM_SCTP6_USRREQ, EINVAL);
644 			error = EINVAL;
645 			goto out;
646 		}
647 	}
648 	error = sctp_inpcb_bind(so, addr, NULL, p);
649 out:
650 	if (error != 0)
651 		inp->ip_inp.inp.inp_vflag = vflagsav;
652 	return (error);
653 }
654 
655 static void
656 sctp6_close(struct socket *so)
657 {
658 	sctp_close(so);
659 }
660 
661 /* This could be made common with sctp_detach() since they are identical */
662 
663 static
664 int
665 sctp6_disconnect(struct socket *so)
666 {
667 	return (sctp_disconnect(so));
668 }
669 
670 int
671 sctp_sendm(struct socket *so, int flags, struct mbuf *m, struct sockaddr *addr,
672     struct mbuf *control, struct thread *p);
673 
674 static int
675 sctp6_send(struct socket *so, int flags, struct mbuf *m, struct sockaddr *addr,
676     struct mbuf *control, struct thread *p)
677 {
678 	struct sctp_inpcb *inp;
679 
680 #ifdef INET
681 	struct sockaddr_in6 *sin6;
682 #endif				/* INET */
683 	/* No SPL needed since sctp_output does this */
684 
685 	inp = (struct sctp_inpcb *)so->so_pcb;
686 	if (inp == NULL) {
687 		if (control) {
688 			SCTP_RELEASE_PKT(control);
689 			control = NULL;
690 		}
691 		SCTP_RELEASE_PKT(m);
692 		SCTP_LTRACE_ERR_RET(inp, NULL, NULL, SCTP_FROM_SCTP6_USRREQ, EINVAL);
693 		return (EINVAL);
694 	}
695 	/*
696 	 * For the TCP model we may get a NULL addr, if we are a connected
697 	 * socket thats ok.
698 	 */
699 	if ((inp->sctp_flags & SCTP_PCB_FLAGS_CONNECTED) &&
700 	    (addr == NULL)) {
701 		goto connected_type;
702 	}
703 	if (addr == NULL) {
704 		SCTP_RELEASE_PKT(m);
705 		if (control) {
706 			SCTP_RELEASE_PKT(control);
707 			control = NULL;
708 		}
709 		SCTP_LTRACE_ERR_RET(inp, NULL, NULL, SCTP_FROM_SCTP6_USRREQ, EDESTADDRREQ);
710 		return (EDESTADDRREQ);
711 	}
712 #ifdef INET
713 	sin6 = (struct sockaddr_in6 *)addr;
714 	if (SCTP_IPV6_V6ONLY(inp)) {
715 		/*
716 		 * if IPV6_V6ONLY flag, we discard datagrams destined to a
717 		 * v4 addr or v4-mapped addr
718 		 */
719 		if (addr->sa_family == AF_INET) {
720 			SCTP_LTRACE_ERR_RET(inp, NULL, NULL, SCTP_FROM_SCTP6_USRREQ, EINVAL);
721 			return (EINVAL);
722 		}
723 		if (IN6_IS_ADDR_V4MAPPED(&sin6->sin6_addr)) {
724 			SCTP_LTRACE_ERR_RET(inp, NULL, NULL, SCTP_FROM_SCTP6_USRREQ, EINVAL);
725 			return (EINVAL);
726 		}
727 	}
728 	if (IN6_IS_ADDR_V4MAPPED(&sin6->sin6_addr)) {
729 		struct sockaddr_in sin;
730 
731 		/* convert v4-mapped into v4 addr and send */
732 		in6_sin6_2_sin(&sin, sin6);
733 		return (sctp_sendm(so, flags, m, (struct sockaddr *)&sin, control, p));
734 	}
735 #endif				/* INET */
736 connected_type:
737 	/* now what about control */
738 	if (control) {
739 		if (inp->control) {
740 			SCTP_PRINTF("huh? control set?\n");
741 			SCTP_RELEASE_PKT(inp->control);
742 			inp->control = NULL;
743 		}
744 		inp->control = control;
745 	}
746 	/* Place the data */
747 	if (inp->pkt) {
748 		SCTP_BUF_NEXT(inp->pkt_last) = m;
749 		inp->pkt_last = m;
750 	} else {
751 		inp->pkt_last = inp->pkt = m;
752 	}
753 	if (
754 	/* FreeBSD and MacOSX uses a flag passed */
755 	    ((flags & PRUS_MORETOCOME) == 0)
756 	    ) {
757 		/*
758 		 * note with the current version this code will only be used
759 		 * by OpenBSD, NetBSD and FreeBSD have methods for
760 		 * re-defining sosend() to use sctp_sosend().  One can
761 		 * optionaly switch back to this code (by changing back the
762 		 * defininitions but this is not advisable.
763 		 */
764 		struct epoch_tracker et;
765 		int ret;
766 
767 		NET_EPOCH_ENTER(et);
768 		ret = sctp_output(inp, inp->pkt, addr, inp->control, p, flags);
769 		NET_EPOCH_EXIT(et);
770 		inp->pkt = NULL;
771 		inp->control = NULL;
772 		return (ret);
773 	} else {
774 		return (0);
775 	}
776 }
777 
778 static int
779 sctp6_connect(struct socket *so, struct sockaddr *addr, struct thread *p)
780 {
781 	struct epoch_tracker et;
782 	uint32_t vrf_id;
783 	int error = 0;
784 	struct sctp_inpcb *inp;
785 	struct sctp_tcb *stcb;
786 #ifdef INET
787 	struct sockaddr_in6 *sin6;
788 	union sctp_sockstore store;
789 #endif
790 
791 	inp = (struct sctp_inpcb *)so->so_pcb;
792 	if (inp == NULL) {
793 		SCTP_LTRACE_ERR_RET(inp, NULL, NULL, SCTP_FROM_SCTP6_USRREQ, ECONNRESET);
794 		return (ECONNRESET);	/* I made the same as TCP since we are
795 					 * not setup? */
796 	}
797 	if (addr == NULL) {
798 		SCTP_LTRACE_ERR_RET(inp, NULL, NULL, SCTP_FROM_SCTP6_USRREQ, EINVAL);
799 		return (EINVAL);
800 	}
801 	switch (addr->sa_family) {
802 #ifdef INET
803 	case AF_INET:
804 		if (addr->sa_len != sizeof(struct sockaddr_in)) {
805 			SCTP_LTRACE_ERR_RET(inp, NULL, NULL, SCTP_FROM_SCTP6_USRREQ, EINVAL);
806 			return (EINVAL);
807 		}
808 		break;
809 #endif
810 #ifdef INET6
811 	case AF_INET6:
812 		if (addr->sa_len != sizeof(struct sockaddr_in6)) {
813 			SCTP_LTRACE_ERR_RET(inp, NULL, NULL, SCTP_FROM_SCTP6_USRREQ, EINVAL);
814 			return (EINVAL);
815 		}
816 		break;
817 #endif
818 	default:
819 		SCTP_LTRACE_ERR_RET(inp, NULL, NULL, SCTP_FROM_SCTP6_USRREQ, EINVAL);
820 		return (EINVAL);
821 	}
822 
823 	vrf_id = inp->def_vrf_id;
824 	SCTP_ASOC_CREATE_LOCK(inp);
825 	SCTP_INP_RLOCK(inp);
826 	if ((inp->sctp_flags & SCTP_PCB_FLAGS_UNBOUND) ==
827 	    SCTP_PCB_FLAGS_UNBOUND) {
828 		/* Bind a ephemeral port */
829 		SCTP_INP_RUNLOCK(inp);
830 		error = sctp6_bind(so, NULL, p);
831 		if (error) {
832 			SCTP_ASOC_CREATE_UNLOCK(inp);
833 
834 			return (error);
835 		}
836 		SCTP_INP_RLOCK(inp);
837 	}
838 	if ((inp->sctp_flags & SCTP_PCB_FLAGS_TCPTYPE) &&
839 	    (inp->sctp_flags & SCTP_PCB_FLAGS_CONNECTED)) {
840 		/* We are already connected AND the TCP model */
841 		SCTP_INP_RUNLOCK(inp);
842 		SCTP_ASOC_CREATE_UNLOCK(inp);
843 		SCTP_LTRACE_ERR_RET(inp, NULL, NULL, SCTP_FROM_SCTP6_USRREQ, EADDRINUSE);
844 		return (EADDRINUSE);
845 	}
846 #ifdef INET
847 	sin6 = (struct sockaddr_in6 *)addr;
848 	if (SCTP_IPV6_V6ONLY(inp)) {
849 		/*
850 		 * if IPV6_V6ONLY flag, ignore connections destined to a v4
851 		 * addr or v4-mapped addr
852 		 */
853 		if (addr->sa_family == AF_INET) {
854 			SCTP_INP_RUNLOCK(inp);
855 			SCTP_ASOC_CREATE_UNLOCK(inp);
856 			SCTP_LTRACE_ERR_RET(inp, NULL, NULL, SCTP_FROM_SCTP6_USRREQ, EINVAL);
857 			return (EINVAL);
858 		}
859 		if (IN6_IS_ADDR_V4MAPPED(&sin6->sin6_addr)) {
860 			SCTP_INP_RUNLOCK(inp);
861 			SCTP_ASOC_CREATE_UNLOCK(inp);
862 			SCTP_LTRACE_ERR_RET(inp, NULL, NULL, SCTP_FROM_SCTP6_USRREQ, EINVAL);
863 			return (EINVAL);
864 		}
865 	}
866 	if (IN6_IS_ADDR_V4MAPPED(&sin6->sin6_addr)) {
867 		/* convert v4-mapped into v4 addr */
868 		in6_sin6_2_sin(&store.sin, sin6);
869 		addr = &store.sa;
870 	}
871 #endif				/* INET */
872 	/* Now do we connect? */
873 	if (inp->sctp_flags & SCTP_PCB_FLAGS_CONNECTED) {
874 		stcb = LIST_FIRST(&inp->sctp_asoc_list);
875 		if (stcb) {
876 			SCTP_TCB_LOCK(stcb);
877 		}
878 		SCTP_INP_RUNLOCK(inp);
879 	} else {
880 		SCTP_INP_RUNLOCK(inp);
881 		SCTP_INP_WLOCK(inp);
882 		SCTP_INP_INCR_REF(inp);
883 		SCTP_INP_WUNLOCK(inp);
884 		stcb = sctp_findassociation_ep_addr(&inp, addr, NULL, NULL, NULL);
885 		if (stcb == NULL) {
886 			SCTP_INP_WLOCK(inp);
887 			SCTP_INP_DECR_REF(inp);
888 			SCTP_INP_WUNLOCK(inp);
889 		}
890 	}
891 
892 	if (stcb != NULL) {
893 		/* Already have or am bring up an association */
894 		SCTP_ASOC_CREATE_UNLOCK(inp);
895 		SCTP_TCB_UNLOCK(stcb);
896 		SCTP_LTRACE_ERR_RET(inp, NULL, NULL, SCTP_FROM_SCTP6_USRREQ, EALREADY);
897 		return (EALREADY);
898 	}
899 	/* We are GOOD to go */
900 	stcb = sctp_aloc_assoc(inp, addr, &error, 0, vrf_id,
901 	    inp->sctp_ep.pre_open_stream_count,
902 	    inp->sctp_ep.port, p,
903 	    SCTP_INITIALIZE_AUTH_PARAMS);
904 	SCTP_ASOC_CREATE_UNLOCK(inp);
905 	if (stcb == NULL) {
906 		/* Gak! no memory */
907 		return (error);
908 	}
909 	if (stcb->sctp_ep->sctp_flags & SCTP_PCB_FLAGS_TCPTYPE) {
910 		stcb->sctp_ep->sctp_flags |= SCTP_PCB_FLAGS_CONNECTED;
911 		/* Set the connected flag so we can queue data */
912 		soisconnecting(so);
913 	}
914 	SCTP_SET_STATE(stcb, SCTP_STATE_COOKIE_WAIT);
915 	(void)SCTP_GETTIME_TIMEVAL(&stcb->asoc.time_entered);
916 	NET_EPOCH_ENTER(et);
917 	sctp_send_initiate(inp, stcb, SCTP_SO_LOCKED);
918 	SCTP_TCB_UNLOCK(stcb);
919 	NET_EPOCH_EXIT(et);
920 	return (error);
921 }
922 
923 static int
924 sctp6_getaddr(struct socket *so, struct sockaddr **addr)
925 {
926 	struct sockaddr_in6 *sin6;
927 	struct sctp_inpcb *inp;
928 	uint32_t vrf_id;
929 	struct sctp_ifa *sctp_ifa;
930 
931 	int error;
932 
933 	/*
934 	 * Do the malloc first in case it blocks.
935 	 */
936 	SCTP_MALLOC_SONAME(sin6, struct sockaddr_in6 *, sizeof(*sin6));
937 	if (sin6 == NULL)
938 		return (ENOMEM);
939 	sin6->sin6_family = AF_INET6;
940 	sin6->sin6_len = sizeof(*sin6);
941 
942 	inp = (struct sctp_inpcb *)so->so_pcb;
943 	if (inp == NULL) {
944 		SCTP_FREE_SONAME(sin6);
945 		SCTP_LTRACE_ERR_RET(inp, NULL, NULL, SCTP_FROM_SCTP6_USRREQ, ECONNRESET);
946 		return (ECONNRESET);
947 	}
948 	SCTP_INP_RLOCK(inp);
949 	sin6->sin6_port = inp->sctp_lport;
950 	if (inp->sctp_flags & SCTP_PCB_FLAGS_BOUNDALL) {
951 		/* For the bound all case you get back 0 */
952 		if (inp->sctp_flags & SCTP_PCB_FLAGS_CONNECTED) {
953 			struct sctp_tcb *stcb;
954 			struct sockaddr_in6 *sin_a6;
955 			struct sctp_nets *net;
956 			int fnd;
957 
958 			stcb = LIST_FIRST(&inp->sctp_asoc_list);
959 			if (stcb == NULL) {
960 				SCTP_INP_RUNLOCK(inp);
961 				SCTP_FREE_SONAME(sin6);
962 				SCTP_LTRACE_ERR_RET(inp, NULL, NULL, SCTP_FROM_SCTP6_USRREQ, ENOENT);
963 				return (ENOENT);
964 			}
965 			fnd = 0;
966 			sin_a6 = NULL;
967 			TAILQ_FOREACH(net, &stcb->asoc.nets, sctp_next) {
968 				sin_a6 = (struct sockaddr_in6 *)&net->ro._l_addr;
969 				if (sin_a6 == NULL)
970 					/* this will make coverity happy */
971 					continue;
972 
973 				if (sin_a6->sin6_family == AF_INET6) {
974 					fnd = 1;
975 					break;
976 				}
977 			}
978 			if ((!fnd) || (sin_a6 == NULL)) {
979 				/* punt */
980 				SCTP_INP_RUNLOCK(inp);
981 				SCTP_FREE_SONAME(sin6);
982 				SCTP_LTRACE_ERR_RET(inp, NULL, NULL, SCTP_FROM_SCTP6_USRREQ, ENOENT);
983 				return (ENOENT);
984 			}
985 			vrf_id = inp->def_vrf_id;
986 			sctp_ifa = sctp_source_address_selection(inp, stcb, (sctp_route_t *)&net->ro, net, 0, vrf_id);
987 			if (sctp_ifa) {
988 				sin6->sin6_addr = sctp_ifa->address.sin6.sin6_addr;
989 			}
990 		} else {
991 			/* For the bound all case you get back 0 */
992 			memset(&sin6->sin6_addr, 0, sizeof(sin6->sin6_addr));
993 		}
994 	} else {
995 		/* Take the first IPv6 address in the list */
996 		struct sctp_laddr *laddr;
997 		int fnd = 0;
998 
999 		LIST_FOREACH(laddr, &inp->sctp_addr_list, sctp_nxt_addr) {
1000 			if (laddr->ifa->address.sa.sa_family == AF_INET6) {
1001 				struct sockaddr_in6 *sin_a;
1002 
1003 				sin_a = &laddr->ifa->address.sin6;
1004 				sin6->sin6_addr = sin_a->sin6_addr;
1005 				fnd = 1;
1006 				break;
1007 			}
1008 		}
1009 		if (!fnd) {
1010 			SCTP_FREE_SONAME(sin6);
1011 			SCTP_INP_RUNLOCK(inp);
1012 			SCTP_LTRACE_ERR_RET(inp, NULL, NULL, SCTP_FROM_SCTP6_USRREQ, ENOENT);
1013 			return (ENOENT);
1014 		}
1015 	}
1016 	SCTP_INP_RUNLOCK(inp);
1017 	/* Scoping things for v6 */
1018 	if ((error = sa6_recoverscope(sin6)) != 0) {
1019 		SCTP_FREE_SONAME(sin6);
1020 		return (error);
1021 	}
1022 	(*addr) = (struct sockaddr *)sin6;
1023 	return (0);
1024 }
1025 
1026 static int
1027 sctp6_peeraddr(struct socket *so, struct sockaddr **addr)
1028 {
1029 	struct sockaddr_in6 *sin6;
1030 	int fnd;
1031 	struct sockaddr_in6 *sin_a6;
1032 	struct sctp_inpcb *inp;
1033 	struct sctp_tcb *stcb;
1034 	struct sctp_nets *net;
1035 	int error;
1036 
1037 	/* Do the malloc first in case it blocks. */
1038 	SCTP_MALLOC_SONAME(sin6, struct sockaddr_in6 *, sizeof *sin6);
1039 	if (sin6 == NULL)
1040 		return (ENOMEM);
1041 	sin6->sin6_family = AF_INET6;
1042 	sin6->sin6_len = sizeof(*sin6);
1043 
1044 	inp = (struct sctp_inpcb *)so->so_pcb;
1045 	if ((inp == NULL) ||
1046 	    ((inp->sctp_flags & SCTP_PCB_FLAGS_CONNECTED) == 0)) {
1047 		/* UDP type and listeners will drop out here */
1048 		SCTP_FREE_SONAME(sin6);
1049 		SCTP_LTRACE_ERR_RET(inp, NULL, NULL, SCTP_FROM_SCTP6_USRREQ, ENOTCONN);
1050 		return (ENOTCONN);
1051 	}
1052 	SCTP_INP_RLOCK(inp);
1053 	stcb = LIST_FIRST(&inp->sctp_asoc_list);
1054 	if (stcb) {
1055 		SCTP_TCB_LOCK(stcb);
1056 	}
1057 	SCTP_INP_RUNLOCK(inp);
1058 	if (stcb == NULL) {
1059 		SCTP_FREE_SONAME(sin6);
1060 		SCTP_LTRACE_ERR_RET(inp, NULL, NULL, SCTP_FROM_SCTP6_USRREQ, ECONNRESET);
1061 		return (ECONNRESET);
1062 	}
1063 	fnd = 0;
1064 	TAILQ_FOREACH(net, &stcb->asoc.nets, sctp_next) {
1065 		sin_a6 = (struct sockaddr_in6 *)&net->ro._l_addr;
1066 		if (sin_a6->sin6_family == AF_INET6) {
1067 			fnd = 1;
1068 			sin6->sin6_port = stcb->rport;
1069 			sin6->sin6_addr = sin_a6->sin6_addr;
1070 			break;
1071 		}
1072 	}
1073 	SCTP_TCB_UNLOCK(stcb);
1074 	if (!fnd) {
1075 		/* No IPv4 address */
1076 		SCTP_FREE_SONAME(sin6);
1077 		SCTP_LTRACE_ERR_RET(inp, NULL, NULL, SCTP_FROM_SCTP6_USRREQ, ENOENT);
1078 		return (ENOENT);
1079 	}
1080 	if ((error = sa6_recoverscope(sin6)) != 0) {
1081 		SCTP_FREE_SONAME(sin6);
1082 		SCTP_LTRACE_ERR_RET(inp, NULL, NULL, SCTP_FROM_SCTP6_USRREQ, error);
1083 		return (error);
1084 	}
1085 	*addr = (struct sockaddr *)sin6;
1086 	return (0);
1087 }
1088 
1089 static int
1090 sctp6_in6getaddr(struct socket *so, struct sockaddr **nam)
1091 {
1092 	struct inpcb *inp = sotoinpcb(so);
1093 	int error;
1094 
1095 	if (inp == NULL) {
1096 		SCTP_LTRACE_ERR_RET(NULL, NULL, NULL, SCTP_FROM_SCTP6_USRREQ, EINVAL);
1097 		return (EINVAL);
1098 	}
1099 
1100 	/* allow v6 addresses precedence */
1101 	error = sctp6_getaddr(so, nam);
1102 #ifdef INET
1103 	if (error) {
1104 		struct sockaddr_in6 *sin6;
1105 
1106 		/* try v4 next if v6 failed */
1107 		error = sctp_ingetaddr(so, nam);
1108 		if (error) {
1109 			return (error);
1110 		}
1111 		SCTP_MALLOC_SONAME(sin6, struct sockaddr_in6 *, sizeof *sin6);
1112 		if (sin6 == NULL) {
1113 			SCTP_FREE_SONAME(*nam);
1114 			return (ENOMEM);
1115 		}
1116 		in6_sin_2_v4mapsin6((struct sockaddr_in *)*nam, sin6);
1117 		SCTP_FREE_SONAME(*nam);
1118 		*nam = (struct sockaddr *)sin6;
1119 	}
1120 #endif
1121 	return (error);
1122 }
1123 
1124 static int
1125 sctp6_getpeeraddr(struct socket *so, struct sockaddr **nam)
1126 {
1127 	struct inpcb *inp = sotoinpcb(so);
1128 	int error;
1129 
1130 	if (inp == NULL) {
1131 		SCTP_LTRACE_ERR_RET(NULL, NULL, NULL, SCTP_FROM_SCTP6_USRREQ, EINVAL);
1132 		return (EINVAL);
1133 	}
1134 
1135 	/* allow v6 addresses precedence */
1136 	error = sctp6_peeraddr(so, nam);
1137 #ifdef INET
1138 	if (error) {
1139 		struct sockaddr_in6 *sin6;
1140 
1141 		/* try v4 next if v6 failed */
1142 		error = sctp_peeraddr(so, nam);
1143 		if (error) {
1144 			return (error);
1145 		}
1146 		SCTP_MALLOC_SONAME(sin6, struct sockaddr_in6 *, sizeof *sin6);
1147 		if (sin6 == NULL) {
1148 			SCTP_FREE_SONAME(*nam);
1149 			return (ENOMEM);
1150 		}
1151 		in6_sin_2_v4mapsin6((struct sockaddr_in *)*nam, sin6);
1152 		SCTP_FREE_SONAME(*nam);
1153 		*nam = (struct sockaddr *)sin6;
1154 	}
1155 #endif
1156 	return (error);
1157 }
1158 
1159 struct pr_usrreqs sctp6_usrreqs = {
1160 	.pru_abort = sctp6_abort,
1161 	.pru_accept = sctp_accept,
1162 	.pru_attach = sctp6_attach,
1163 	.pru_bind = sctp6_bind,
1164 	.pru_connect = sctp6_connect,
1165 	.pru_control = in6_control,
1166 	.pru_close = sctp6_close,
1167 	.pru_detach = sctp6_close,
1168 	.pru_sopoll = sopoll_generic,
1169 	.pru_flush = sctp_flush,
1170 	.pru_disconnect = sctp6_disconnect,
1171 	.pru_listen = sctp_listen,
1172 	.pru_peeraddr = sctp6_getpeeraddr,
1173 	.pru_send = sctp6_send,
1174 	.pru_shutdown = sctp_shutdown,
1175 	.pru_sockaddr = sctp6_in6getaddr,
1176 	.pru_sosend = sctp_sosend,
1177 	.pru_soreceive = sctp_soreceive
1178 };
1179 
1180 #endif
1181