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 = IPV6_TRAFFIC_CLASS(ip6); 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 switch (addr->sa_family) { 713 #ifdef INET 714 case AF_INET: 715 if (addr->sa_len != sizeof(struct sockaddr_in)) { 716 SCTP_LTRACE_ERR_RET(inp, NULL, NULL, SCTP_FROM_SCTP6_USRREQ, EINVAL); 717 return (EINVAL); 718 } 719 break; 720 #endif 721 #ifdef INET6 722 case AF_INET6: 723 if (addr->sa_len != sizeof(struct sockaddr_in6)) { 724 SCTP_LTRACE_ERR_RET(inp, NULL, NULL, SCTP_FROM_SCTP6_USRREQ, EINVAL); 725 return (EINVAL); 726 } 727 break; 728 #endif 729 default: 730 SCTP_LTRACE_ERR_RET(inp, NULL, NULL, SCTP_FROM_SCTP6_USRREQ, EINVAL); 731 return (EINVAL); 732 } 733 #ifdef INET 734 sin6 = (struct sockaddr_in6 *)addr; 735 if (SCTP_IPV6_V6ONLY(inp)) { 736 /* 737 * if IPV6_V6ONLY flag, we discard datagrams destined to a 738 * v4 addr or v4-mapped addr 739 */ 740 if (addr->sa_family == AF_INET) { 741 SCTP_LTRACE_ERR_RET(inp, NULL, NULL, SCTP_FROM_SCTP6_USRREQ, EINVAL); 742 return (EINVAL); 743 } 744 if (IN6_IS_ADDR_V4MAPPED(&sin6->sin6_addr)) { 745 SCTP_LTRACE_ERR_RET(inp, NULL, NULL, SCTP_FROM_SCTP6_USRREQ, EINVAL); 746 return (EINVAL); 747 } 748 } 749 if (IN6_IS_ADDR_V4MAPPED(&sin6->sin6_addr)) { 750 struct sockaddr_in sin; 751 752 /* convert v4-mapped into v4 addr and send */ 753 in6_sin6_2_sin(&sin, sin6); 754 return (sctp_sendm(so, flags, m, (struct sockaddr *)&sin, control, p)); 755 } 756 #endif /* INET */ 757 connected_type: 758 /* now what about control */ 759 if (control) { 760 if (inp->control) { 761 SCTP_PRINTF("huh? control set?\n"); 762 SCTP_RELEASE_PKT(inp->control); 763 inp->control = NULL; 764 } 765 inp->control = control; 766 } 767 /* Place the data */ 768 if (inp->pkt) { 769 SCTP_BUF_NEXT(inp->pkt_last) = m; 770 inp->pkt_last = m; 771 } else { 772 inp->pkt_last = inp->pkt = m; 773 } 774 if ( 775 /* FreeBSD and MacOSX uses a flag passed */ 776 ((flags & PRUS_MORETOCOME) == 0) 777 ) { 778 /* 779 * note with the current version this code will only be used 780 * by OpenBSD, NetBSD and FreeBSD have methods for 781 * re-defining sosend() to use sctp_sosend(). One can 782 * optionaly switch back to this code (by changing back the 783 * defininitions but this is not advisable. 784 */ 785 struct epoch_tracker et; 786 int ret; 787 788 NET_EPOCH_ENTER(et); 789 ret = sctp_output(inp, inp->pkt, addr, inp->control, p, flags); 790 NET_EPOCH_EXIT(et); 791 inp->pkt = NULL; 792 inp->control = NULL; 793 return (ret); 794 } else { 795 return (0); 796 } 797 } 798 799 static int 800 sctp6_connect(struct socket *so, struct sockaddr *addr, struct thread *p) 801 { 802 struct epoch_tracker et; 803 uint32_t vrf_id; 804 int error = 0; 805 struct sctp_inpcb *inp; 806 struct sctp_tcb *stcb; 807 #ifdef INET 808 struct sockaddr_in6 *sin6; 809 union sctp_sockstore store; 810 #endif 811 812 inp = (struct sctp_inpcb *)so->so_pcb; 813 if (inp == NULL) { 814 SCTP_LTRACE_ERR_RET(inp, NULL, NULL, SCTP_FROM_SCTP6_USRREQ, ECONNRESET); 815 return (ECONNRESET); /* I made the same as TCP since we are 816 * not setup? */ 817 } 818 if (addr == NULL) { 819 SCTP_LTRACE_ERR_RET(inp, NULL, NULL, SCTP_FROM_SCTP6_USRREQ, EINVAL); 820 return (EINVAL); 821 } 822 switch (addr->sa_family) { 823 #ifdef INET 824 case AF_INET: 825 if (addr->sa_len != sizeof(struct sockaddr_in)) { 826 SCTP_LTRACE_ERR_RET(inp, NULL, NULL, SCTP_FROM_SCTP6_USRREQ, EINVAL); 827 return (EINVAL); 828 } 829 break; 830 #endif 831 #ifdef INET6 832 case AF_INET6: 833 if (addr->sa_len != sizeof(struct sockaddr_in6)) { 834 SCTP_LTRACE_ERR_RET(inp, NULL, NULL, SCTP_FROM_SCTP6_USRREQ, EINVAL); 835 return (EINVAL); 836 } 837 break; 838 #endif 839 default: 840 SCTP_LTRACE_ERR_RET(inp, NULL, NULL, SCTP_FROM_SCTP6_USRREQ, EINVAL); 841 return (EINVAL); 842 } 843 844 vrf_id = inp->def_vrf_id; 845 SCTP_ASOC_CREATE_LOCK(inp); 846 SCTP_INP_RLOCK(inp); 847 if ((inp->sctp_flags & SCTP_PCB_FLAGS_UNBOUND) == 848 SCTP_PCB_FLAGS_UNBOUND) { 849 /* Bind a ephemeral port */ 850 SCTP_INP_RUNLOCK(inp); 851 error = sctp6_bind(so, NULL, p); 852 if (error) { 853 SCTP_ASOC_CREATE_UNLOCK(inp); 854 855 return (error); 856 } 857 SCTP_INP_RLOCK(inp); 858 } 859 if ((inp->sctp_flags & SCTP_PCB_FLAGS_TCPTYPE) && 860 (inp->sctp_flags & SCTP_PCB_FLAGS_CONNECTED)) { 861 /* We are already connected AND the TCP model */ 862 SCTP_INP_RUNLOCK(inp); 863 SCTP_ASOC_CREATE_UNLOCK(inp); 864 SCTP_LTRACE_ERR_RET(inp, NULL, NULL, SCTP_FROM_SCTP6_USRREQ, EADDRINUSE); 865 return (EADDRINUSE); 866 } 867 #ifdef INET 868 sin6 = (struct sockaddr_in6 *)addr; 869 if (SCTP_IPV6_V6ONLY(inp)) { 870 /* 871 * if IPV6_V6ONLY flag, ignore connections destined to a v4 872 * addr or v4-mapped addr 873 */ 874 if (addr->sa_family == AF_INET) { 875 SCTP_INP_RUNLOCK(inp); 876 SCTP_ASOC_CREATE_UNLOCK(inp); 877 SCTP_LTRACE_ERR_RET(inp, NULL, NULL, SCTP_FROM_SCTP6_USRREQ, EINVAL); 878 return (EINVAL); 879 } 880 if (IN6_IS_ADDR_V4MAPPED(&sin6->sin6_addr)) { 881 SCTP_INP_RUNLOCK(inp); 882 SCTP_ASOC_CREATE_UNLOCK(inp); 883 SCTP_LTRACE_ERR_RET(inp, NULL, NULL, SCTP_FROM_SCTP6_USRREQ, EINVAL); 884 return (EINVAL); 885 } 886 } 887 if (IN6_IS_ADDR_V4MAPPED(&sin6->sin6_addr)) { 888 /* convert v4-mapped into v4 addr */ 889 in6_sin6_2_sin(&store.sin, sin6); 890 addr = &store.sa; 891 } 892 #endif /* INET */ 893 /* Now do we connect? */ 894 if (inp->sctp_flags & SCTP_PCB_FLAGS_CONNECTED) { 895 stcb = LIST_FIRST(&inp->sctp_asoc_list); 896 if (stcb) { 897 SCTP_TCB_LOCK(stcb); 898 } 899 SCTP_INP_RUNLOCK(inp); 900 } else { 901 SCTP_INP_RUNLOCK(inp); 902 SCTP_INP_WLOCK(inp); 903 SCTP_INP_INCR_REF(inp); 904 SCTP_INP_WUNLOCK(inp); 905 stcb = sctp_findassociation_ep_addr(&inp, addr, NULL, NULL, NULL); 906 if (stcb == NULL) { 907 SCTP_INP_WLOCK(inp); 908 SCTP_INP_DECR_REF(inp); 909 SCTP_INP_WUNLOCK(inp); 910 } 911 } 912 913 if (stcb != NULL) { 914 /* Already have or am bring up an association */ 915 SCTP_ASOC_CREATE_UNLOCK(inp); 916 SCTP_TCB_UNLOCK(stcb); 917 SCTP_LTRACE_ERR_RET(inp, NULL, NULL, SCTP_FROM_SCTP6_USRREQ, EALREADY); 918 return (EALREADY); 919 } 920 /* We are GOOD to go */ 921 stcb = sctp_aloc_assoc(inp, addr, &error, 0, vrf_id, 922 inp->sctp_ep.pre_open_stream_count, 923 inp->sctp_ep.port, p, 924 SCTP_INITIALIZE_AUTH_PARAMS); 925 SCTP_ASOC_CREATE_UNLOCK(inp); 926 if (stcb == NULL) { 927 /* Gak! no memory */ 928 return (error); 929 } 930 if (stcb->sctp_ep->sctp_flags & SCTP_PCB_FLAGS_TCPTYPE) { 931 stcb->sctp_ep->sctp_flags |= SCTP_PCB_FLAGS_CONNECTED; 932 /* Set the connected flag so we can queue data */ 933 soisconnecting(so); 934 } 935 SCTP_SET_STATE(stcb, SCTP_STATE_COOKIE_WAIT); 936 (void)SCTP_GETTIME_TIMEVAL(&stcb->asoc.time_entered); 937 NET_EPOCH_ENTER(et); 938 sctp_send_initiate(inp, stcb, SCTP_SO_LOCKED); 939 SCTP_TCB_UNLOCK(stcb); 940 NET_EPOCH_EXIT(et); 941 return (error); 942 } 943 944 static int 945 sctp6_getaddr(struct socket *so, struct sockaddr **addr) 946 { 947 struct sockaddr_in6 *sin6; 948 struct sctp_inpcb *inp; 949 uint32_t vrf_id; 950 struct sctp_ifa *sctp_ifa; 951 952 int error; 953 954 /* 955 * Do the malloc first in case it blocks. 956 */ 957 SCTP_MALLOC_SONAME(sin6, struct sockaddr_in6 *, sizeof(*sin6)); 958 if (sin6 == NULL) 959 return (ENOMEM); 960 sin6->sin6_family = AF_INET6; 961 sin6->sin6_len = sizeof(*sin6); 962 963 inp = (struct sctp_inpcb *)so->so_pcb; 964 if (inp == NULL) { 965 SCTP_FREE_SONAME(sin6); 966 SCTP_LTRACE_ERR_RET(inp, NULL, NULL, SCTP_FROM_SCTP6_USRREQ, ECONNRESET); 967 return (ECONNRESET); 968 } 969 SCTP_INP_RLOCK(inp); 970 sin6->sin6_port = inp->sctp_lport; 971 if (inp->sctp_flags & SCTP_PCB_FLAGS_BOUNDALL) { 972 /* For the bound all case you get back 0 */ 973 if (inp->sctp_flags & SCTP_PCB_FLAGS_CONNECTED) { 974 struct sctp_tcb *stcb; 975 struct sockaddr_in6 *sin_a6; 976 struct sctp_nets *net; 977 int fnd; 978 979 stcb = LIST_FIRST(&inp->sctp_asoc_list); 980 if (stcb == NULL) { 981 SCTP_INP_RUNLOCK(inp); 982 SCTP_FREE_SONAME(sin6); 983 SCTP_LTRACE_ERR_RET(inp, NULL, NULL, SCTP_FROM_SCTP6_USRREQ, ENOENT); 984 return (ENOENT); 985 } 986 fnd = 0; 987 sin_a6 = NULL; 988 TAILQ_FOREACH(net, &stcb->asoc.nets, sctp_next) { 989 sin_a6 = (struct sockaddr_in6 *)&net->ro._l_addr; 990 if (sin_a6 == NULL) 991 /* this will make coverity happy */ 992 continue; 993 994 if (sin_a6->sin6_family == AF_INET6) { 995 fnd = 1; 996 break; 997 } 998 } 999 if ((!fnd) || (sin_a6 == NULL)) { 1000 /* punt */ 1001 SCTP_INP_RUNLOCK(inp); 1002 SCTP_FREE_SONAME(sin6); 1003 SCTP_LTRACE_ERR_RET(inp, NULL, NULL, SCTP_FROM_SCTP6_USRREQ, ENOENT); 1004 return (ENOENT); 1005 } 1006 vrf_id = inp->def_vrf_id; 1007 sctp_ifa = sctp_source_address_selection(inp, stcb, (sctp_route_t *)&net->ro, net, 0, vrf_id); 1008 if (sctp_ifa) { 1009 sin6->sin6_addr = sctp_ifa->address.sin6.sin6_addr; 1010 } 1011 } else { 1012 /* For the bound all case you get back 0 */ 1013 memset(&sin6->sin6_addr, 0, sizeof(sin6->sin6_addr)); 1014 } 1015 } else { 1016 /* Take the first IPv6 address in the list */ 1017 struct sctp_laddr *laddr; 1018 int fnd = 0; 1019 1020 LIST_FOREACH(laddr, &inp->sctp_addr_list, sctp_nxt_addr) { 1021 if (laddr->ifa->address.sa.sa_family == AF_INET6) { 1022 struct sockaddr_in6 *sin_a; 1023 1024 sin_a = &laddr->ifa->address.sin6; 1025 sin6->sin6_addr = sin_a->sin6_addr; 1026 fnd = 1; 1027 break; 1028 } 1029 } 1030 if (!fnd) { 1031 SCTP_FREE_SONAME(sin6); 1032 SCTP_INP_RUNLOCK(inp); 1033 SCTP_LTRACE_ERR_RET(inp, NULL, NULL, SCTP_FROM_SCTP6_USRREQ, ENOENT); 1034 return (ENOENT); 1035 } 1036 } 1037 SCTP_INP_RUNLOCK(inp); 1038 /* Scoping things for v6 */ 1039 if ((error = sa6_recoverscope(sin6)) != 0) { 1040 SCTP_FREE_SONAME(sin6); 1041 return (error); 1042 } 1043 (*addr) = (struct sockaddr *)sin6; 1044 return (0); 1045 } 1046 1047 static int 1048 sctp6_peeraddr(struct socket *so, struct sockaddr **addr) 1049 { 1050 struct sockaddr_in6 *sin6; 1051 int fnd; 1052 struct sockaddr_in6 *sin_a6; 1053 struct sctp_inpcb *inp; 1054 struct sctp_tcb *stcb; 1055 struct sctp_nets *net; 1056 int error; 1057 1058 /* Do the malloc first in case it blocks. */ 1059 SCTP_MALLOC_SONAME(sin6, struct sockaddr_in6 *, sizeof *sin6); 1060 if (sin6 == NULL) 1061 return (ENOMEM); 1062 sin6->sin6_family = AF_INET6; 1063 sin6->sin6_len = sizeof(*sin6); 1064 1065 inp = (struct sctp_inpcb *)so->so_pcb; 1066 if ((inp == NULL) || 1067 ((inp->sctp_flags & SCTP_PCB_FLAGS_CONNECTED) == 0)) { 1068 /* UDP type and listeners will drop out here */ 1069 SCTP_FREE_SONAME(sin6); 1070 SCTP_LTRACE_ERR_RET(inp, NULL, NULL, SCTP_FROM_SCTP6_USRREQ, ENOTCONN); 1071 return (ENOTCONN); 1072 } 1073 SCTP_INP_RLOCK(inp); 1074 stcb = LIST_FIRST(&inp->sctp_asoc_list); 1075 if (stcb) { 1076 SCTP_TCB_LOCK(stcb); 1077 } 1078 SCTP_INP_RUNLOCK(inp); 1079 if (stcb == NULL) { 1080 SCTP_FREE_SONAME(sin6); 1081 SCTP_LTRACE_ERR_RET(inp, NULL, NULL, SCTP_FROM_SCTP6_USRREQ, ECONNRESET); 1082 return (ECONNRESET); 1083 } 1084 fnd = 0; 1085 TAILQ_FOREACH(net, &stcb->asoc.nets, sctp_next) { 1086 sin_a6 = (struct sockaddr_in6 *)&net->ro._l_addr; 1087 if (sin_a6->sin6_family == AF_INET6) { 1088 fnd = 1; 1089 sin6->sin6_port = stcb->rport; 1090 sin6->sin6_addr = sin_a6->sin6_addr; 1091 break; 1092 } 1093 } 1094 SCTP_TCB_UNLOCK(stcb); 1095 if (!fnd) { 1096 /* No IPv4 address */ 1097 SCTP_FREE_SONAME(sin6); 1098 SCTP_LTRACE_ERR_RET(inp, NULL, NULL, SCTP_FROM_SCTP6_USRREQ, ENOENT); 1099 return (ENOENT); 1100 } 1101 if ((error = sa6_recoverscope(sin6)) != 0) { 1102 SCTP_FREE_SONAME(sin6); 1103 SCTP_LTRACE_ERR_RET(inp, NULL, NULL, SCTP_FROM_SCTP6_USRREQ, error); 1104 return (error); 1105 } 1106 *addr = (struct sockaddr *)sin6; 1107 return (0); 1108 } 1109 1110 static int 1111 sctp6_in6getaddr(struct socket *so, struct sockaddr **nam) 1112 { 1113 struct inpcb *inp = sotoinpcb(so); 1114 int error; 1115 1116 if (inp == NULL) { 1117 SCTP_LTRACE_ERR_RET(NULL, NULL, NULL, SCTP_FROM_SCTP6_USRREQ, EINVAL); 1118 return (EINVAL); 1119 } 1120 1121 /* allow v6 addresses precedence */ 1122 error = sctp6_getaddr(so, nam); 1123 #ifdef INET 1124 if (error) { 1125 struct sockaddr_in6 *sin6; 1126 1127 /* try v4 next if v6 failed */ 1128 error = sctp_ingetaddr(so, nam); 1129 if (error) { 1130 return (error); 1131 } 1132 SCTP_MALLOC_SONAME(sin6, struct sockaddr_in6 *, sizeof *sin6); 1133 if (sin6 == NULL) { 1134 SCTP_FREE_SONAME(*nam); 1135 return (ENOMEM); 1136 } 1137 in6_sin_2_v4mapsin6((struct sockaddr_in *)*nam, sin6); 1138 SCTP_FREE_SONAME(*nam); 1139 *nam = (struct sockaddr *)sin6; 1140 } 1141 #endif 1142 return (error); 1143 } 1144 1145 static int 1146 sctp6_getpeeraddr(struct socket *so, struct sockaddr **nam) 1147 { 1148 struct inpcb *inp = sotoinpcb(so); 1149 int error; 1150 1151 if (inp == NULL) { 1152 SCTP_LTRACE_ERR_RET(NULL, NULL, NULL, SCTP_FROM_SCTP6_USRREQ, EINVAL); 1153 return (EINVAL); 1154 } 1155 1156 /* allow v6 addresses precedence */ 1157 error = sctp6_peeraddr(so, nam); 1158 #ifdef INET 1159 if (error) { 1160 struct sockaddr_in6 *sin6; 1161 1162 /* try v4 next if v6 failed */ 1163 error = sctp_peeraddr(so, nam); 1164 if (error) { 1165 return (error); 1166 } 1167 SCTP_MALLOC_SONAME(sin6, struct sockaddr_in6 *, sizeof *sin6); 1168 if (sin6 == NULL) { 1169 SCTP_FREE_SONAME(*nam); 1170 return (ENOMEM); 1171 } 1172 in6_sin_2_v4mapsin6((struct sockaddr_in *)*nam, sin6); 1173 SCTP_FREE_SONAME(*nam); 1174 *nam = (struct sockaddr *)sin6; 1175 } 1176 #endif 1177 return (error); 1178 } 1179 1180 struct pr_usrreqs sctp6_usrreqs = { 1181 .pru_abort = sctp6_abort, 1182 .pru_accept = sctp_accept, 1183 .pru_attach = sctp6_attach, 1184 .pru_bind = sctp6_bind, 1185 .pru_connect = sctp6_connect, 1186 .pru_control = in6_control, 1187 .pru_close = sctp6_close, 1188 .pru_detach = sctp6_close, 1189 .pru_sopoll = sopoll_generic, 1190 .pru_flush = sctp_flush, 1191 .pru_disconnect = sctp6_disconnect, 1192 .pru_listen = sctp_listen, 1193 .pru_peeraddr = sctp6_getpeeraddr, 1194 .pru_send = sctp6_send, 1195 .pru_shutdown = sctp_shutdown, 1196 .pru_sockaddr = sctp6_in6getaddr, 1197 .pru_sosend = sctp_sosend, 1198 .pru_soreceive = sctp_soreceive 1199 }; 1200 1201 #endif 1202