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