1 /*- 2 * Copyright (c) 2001-2008, by Cisco Systems, Inc. All rights reserved. 3 * Copyright (c) 2008-2012, by Randall Stewart. All rights reserved. 4 * Copyright (c) 2008-2012, by Michael Tuexen. All rights reserved. 5 * 6 * Redistribution and use in source and binary forms, with or without 7 * modification, are permitted provided that the following conditions are met: 8 * 9 * a) Redistributions of source code must retain the above copyright notice, 10 * this list of conditions and the following disclaimer. 11 * 12 * b) Redistributions in binary form must reproduce the above copyright 13 * notice, this list of conditions and the following disclaimer in 14 * the documentation and/or other materials provided with the distribution. 15 * 16 * c) Neither the name of Cisco Systems, Inc. nor the names of its 17 * contributors may be used to endorse or promote products derived 18 * from this software without specific prior written permission. 19 * 20 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 21 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, 22 * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 23 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE 24 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR 25 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF 26 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS 27 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN 28 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) 29 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF 30 * THE POSSIBILITY OF SUCH DAMAGE. 31 */ 32 33 #include <sys/cdefs.h> 34 __FBSDID("$FreeBSD$"); 35 36 #include <netinet/sctp_os.h> 37 #include <sys/proc.h> 38 #include <netinet/sctp_pcb.h> 39 #include <netinet/sctp_header.h> 40 #include <netinet/sctp_var.h> 41 #ifdef INET6 42 #endif 43 #include <netinet/sctp_sysctl.h> 44 #include <netinet/sctp_output.h> 45 #include <netinet/sctp_uio.h> 46 #include <netinet/sctp_asconf.h> 47 #include <netinet/sctputil.h> 48 #include <netinet/sctp_indata.h> 49 #include <netinet/sctp_timer.h> 50 #include <netinet/sctp_auth.h> 51 #include <netinet/sctp_bsd_addr.h> 52 #include <netinet/udp.h> 53 54 55 56 extern struct sctp_cc_functions sctp_cc_functions[]; 57 extern struct sctp_ss_functions sctp_ss_functions[]; 58 59 void 60 sctp_init(void) 61 { 62 u_long sb_max_adj; 63 64 /* Initialize and modify the sysctled variables */ 65 sctp_init_sysctls(); 66 if ((nmbclusters / 8) > SCTP_ASOC_MAX_CHUNKS_ON_QUEUE) 67 SCTP_BASE_SYSCTL(sctp_max_chunks_on_queue) = (nmbclusters / 8); 68 /* 69 * Allow a user to take no more than 1/2 the number of clusters or 70 * the SB_MAX whichever is smaller for the send window. 71 */ 72 sb_max_adj = (u_long)((u_quad_t) (SB_MAX) * MCLBYTES / (MSIZE + MCLBYTES)); 73 SCTP_BASE_SYSCTL(sctp_sendspace) = min(sb_max_adj, 74 (((uint32_t) nmbclusters / 2) * SCTP_DEFAULT_MAXSEGMENT)); 75 /* 76 * Now for the recv window, should we take the same amount? or 77 * should I do 1/2 the SB_MAX instead in the SB_MAX min above. For 78 * now I will just copy. 79 */ 80 SCTP_BASE_SYSCTL(sctp_recvspace) = SCTP_BASE_SYSCTL(sctp_sendspace); 81 SCTP_BASE_VAR(first_time) = 0; 82 SCTP_BASE_VAR(sctp_pcb_initialized) = 0; 83 sctp_pcb_init(); 84 #if defined(SCTP_PACKET_LOGGING) 85 SCTP_BASE_VAR(packet_log_writers) = 0; 86 SCTP_BASE_VAR(packet_log_end) = 0; 87 bzero(&SCTP_BASE_VAR(packet_log_buffer), SCTP_PACKET_LOG_SIZE); 88 #endif 89 } 90 91 void 92 sctp_finish(void) 93 { 94 sctp_pcb_finish(); 95 } 96 97 98 99 void 100 sctp_pathmtu_adjustment(struct sctp_tcb *stcb, uint16_t nxtsz) 101 { 102 struct sctp_tmit_chunk *chk; 103 uint16_t overhead; 104 105 /* Adjust that too */ 106 stcb->asoc.smallest_mtu = nxtsz; 107 /* now off to subtract IP_DF flag if needed */ 108 overhead = IP_HDR_SIZE; 109 if (sctp_auth_is_required_chunk(SCTP_DATA, stcb->asoc.peer_auth_chunks)) { 110 overhead += sctp_get_auth_chunk_len(stcb->asoc.peer_hmac_id); 111 } 112 TAILQ_FOREACH(chk, &stcb->asoc.send_queue, sctp_next) { 113 if ((chk->send_size + overhead) > nxtsz) { 114 chk->flags |= CHUNK_FLAGS_FRAGMENT_OK; 115 } 116 } 117 TAILQ_FOREACH(chk, &stcb->asoc.sent_queue, sctp_next) { 118 if ((chk->send_size + overhead) > nxtsz) { 119 /* 120 * For this guy we also mark for immediate resend 121 * since we sent to big of chunk 122 */ 123 chk->flags |= CHUNK_FLAGS_FRAGMENT_OK; 124 if (chk->sent < SCTP_DATAGRAM_RESEND) { 125 sctp_flight_size_decrease(chk); 126 sctp_total_flight_decrease(stcb, chk); 127 } 128 if (chk->sent != SCTP_DATAGRAM_RESEND) { 129 sctp_ucount_incr(stcb->asoc.sent_queue_retran_cnt); 130 } 131 chk->sent = SCTP_DATAGRAM_RESEND; 132 chk->rec.data.doing_fast_retransmit = 0; 133 if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_FLIGHT_LOGGING_ENABLE) { 134 sctp_misc_ints(SCTP_FLIGHT_LOG_DOWN_PMTU, 135 chk->whoTo->flight_size, 136 chk->book_size, 137 (uintptr_t) chk->whoTo, 138 chk->rec.data.TSN_seq); 139 } 140 /* Clear any time so NO RTT is being done */ 141 chk->do_rtt = 0; 142 } 143 } 144 } 145 146 #ifdef INET 147 static void 148 sctp_notify_mbuf(struct sctp_inpcb *inp, 149 struct sctp_tcb *stcb, 150 struct sctp_nets *net, 151 struct ip *ip, 152 struct sctphdr *sh) 153 { 154 struct icmp *icmph; 155 int totsz, tmr_stopped = 0; 156 uint16_t nxtsz; 157 158 /* protection */ 159 if ((inp == NULL) || (stcb == NULL) || (net == NULL) || 160 (ip == NULL) || (sh == NULL)) { 161 if (stcb != NULL) { 162 SCTP_TCB_UNLOCK(stcb); 163 } 164 return; 165 } 166 /* First job is to verify the vtag matches what I would send */ 167 if (ntohl(sh->v_tag) != (stcb->asoc.peer_vtag)) { 168 SCTP_TCB_UNLOCK(stcb); 169 return; 170 } 171 icmph = (struct icmp *)((caddr_t)ip - (sizeof(struct icmp) - 172 sizeof(struct ip))); 173 if (icmph->icmp_type != ICMP_UNREACH) { 174 /* We only care about unreachable */ 175 SCTP_TCB_UNLOCK(stcb); 176 return; 177 } 178 if (icmph->icmp_code != ICMP_UNREACH_NEEDFRAG) { 179 /* not a unreachable message due to frag. */ 180 SCTP_TCB_UNLOCK(stcb); 181 return; 182 } 183 totsz = ntohs(ip->ip_len); 184 185 nxtsz = ntohs(icmph->icmp_nextmtu); 186 if (nxtsz == 0) { 187 /* 188 * old type router that does not tell us what the next size 189 * mtu is. Rats we will have to guess (in a educated fashion 190 * of course) 191 */ 192 nxtsz = sctp_get_prev_mtu(totsz); 193 } 194 /* Stop any PMTU timer */ 195 if (SCTP_OS_TIMER_PENDING(&net->pmtu_timer.timer)) { 196 tmr_stopped = 1; 197 sctp_timer_stop(SCTP_TIMER_TYPE_PATHMTURAISE, inp, stcb, net, 198 SCTP_FROM_SCTP_USRREQ + SCTP_LOC_1); 199 } 200 /* Adjust destination size limit */ 201 if (net->mtu > nxtsz) { 202 net->mtu = nxtsz; 203 if (net->port) { 204 net->mtu -= sizeof(struct udphdr); 205 } 206 } 207 /* now what about the ep? */ 208 if (stcb->asoc.smallest_mtu > nxtsz) { 209 sctp_pathmtu_adjustment(stcb, nxtsz); 210 } 211 if (tmr_stopped) 212 sctp_timer_start(SCTP_TIMER_TYPE_PATHMTURAISE, inp, stcb, net); 213 214 SCTP_TCB_UNLOCK(stcb); 215 } 216 217 #endif 218 219 void 220 sctp_notify(struct sctp_inpcb *inp, 221 struct ip *ip, 222 struct sctphdr *sh, 223 struct sockaddr *to, 224 struct sctp_tcb *stcb, 225 struct sctp_nets *net) 226 { 227 #if defined(__APPLE__) || defined(SCTP_SO_LOCK_TESTING) 228 struct socket *so; 229 230 #endif 231 struct icmp *icmph; 232 233 /* protection */ 234 if ((inp == NULL) || (stcb == NULL) || (net == NULL) || 235 (sh == NULL) || (to == NULL)) { 236 if (stcb) 237 SCTP_TCB_UNLOCK(stcb); 238 return; 239 } 240 /* First job is to verify the vtag matches what I would send */ 241 if (ntohl(sh->v_tag) != (stcb->asoc.peer_vtag)) { 242 SCTP_TCB_UNLOCK(stcb); 243 return; 244 } 245 icmph = (struct icmp *)((caddr_t)ip - (sizeof(struct icmp) - 246 sizeof(struct ip))); 247 if (icmph->icmp_type != ICMP_UNREACH) { 248 /* We only care about unreachable */ 249 SCTP_TCB_UNLOCK(stcb); 250 return; 251 } 252 if ((icmph->icmp_code == ICMP_UNREACH_NET) || 253 (icmph->icmp_code == ICMP_UNREACH_HOST) || 254 (icmph->icmp_code == ICMP_UNREACH_NET_UNKNOWN) || 255 (icmph->icmp_code == ICMP_UNREACH_HOST_UNKNOWN) || 256 (icmph->icmp_code == ICMP_UNREACH_ISOLATED) || 257 (icmph->icmp_code == ICMP_UNREACH_NET_PROHIB) || 258 (icmph->icmp_code == ICMP_UNREACH_HOST_PROHIB) || 259 (icmph->icmp_code == ICMP_UNREACH_FILTER_PROHIB)) { 260 261 /* 262 * Hmm reachablity problems we must examine closely. If its 263 * not reachable, we may have lost a network. Or if there is 264 * NO protocol at the other end named SCTP. well we consider 265 * it a OOTB abort. 266 */ 267 if (net->dest_state & SCTP_ADDR_REACHABLE) { 268 /* Ok that destination is NOT reachable */ 269 net->dest_state &= ~SCTP_ADDR_REACHABLE; 270 net->dest_state &= ~SCTP_ADDR_PF; 271 sctp_ulp_notify(SCTP_NOTIFY_INTERFACE_DOWN, 272 stcb, 0, 273 (void *)net, SCTP_SO_NOT_LOCKED); 274 } 275 SCTP_TCB_UNLOCK(stcb); 276 } else if ((icmph->icmp_code == ICMP_UNREACH_PROTOCOL) || 277 (icmph->icmp_code == ICMP_UNREACH_PORT)) { 278 /* 279 * Here the peer is either playing tricks on us, including 280 * an address that belongs to someone who does not support 281 * SCTP OR was a userland implementation that shutdown and 282 * now is dead. In either case treat it like a OOTB abort 283 * with no TCB 284 */ 285 sctp_abort_notification(stcb, 1, 0, NULL, SCTP_SO_NOT_LOCKED); 286 #if defined(__APPLE__) || defined(SCTP_SO_LOCK_TESTING) 287 so = SCTP_INP_SO(inp); 288 atomic_add_int(&stcb->asoc.refcnt, 1); 289 SCTP_TCB_UNLOCK(stcb); 290 SCTP_SOCKET_LOCK(so, 1); 291 SCTP_TCB_LOCK(stcb); 292 atomic_subtract_int(&stcb->asoc.refcnt, 1); 293 #endif 294 (void)sctp_free_assoc(inp, stcb, SCTP_NORMAL_PROC, SCTP_FROM_SCTP_USRREQ + SCTP_LOC_2); 295 #if defined(__APPLE__) || defined(SCTP_SO_LOCK_TESTING) 296 SCTP_SOCKET_UNLOCK(so, 1); 297 /* SCTP_TCB_UNLOCK(stcb); MT: I think this is not needed. */ 298 #endif 299 /* no need to unlock here, since the TCB is gone */ 300 } else { 301 SCTP_TCB_UNLOCK(stcb); 302 } 303 } 304 305 #ifdef INET 306 void 307 sctp_ctlinput(cmd, sa, vip) 308 int cmd; 309 struct sockaddr *sa; 310 void *vip; 311 { 312 struct ip *ip = vip; 313 struct sctphdr *sh; 314 uint32_t vrf_id; 315 316 /* FIX, for non-bsd is this right? */ 317 vrf_id = SCTP_DEFAULT_VRFID; 318 if (sa->sa_family != AF_INET || 319 ((struct sockaddr_in *)sa)->sin_addr.s_addr == INADDR_ANY) { 320 return; 321 } 322 if (PRC_IS_REDIRECT(cmd)) { 323 ip = 0; 324 } else if ((unsigned)cmd >= PRC_NCMDS || inetctlerrmap[cmd] == 0) { 325 return; 326 } 327 if (ip) { 328 struct sctp_inpcb *inp = NULL; 329 struct sctp_tcb *stcb = NULL; 330 struct sctp_nets *net = NULL; 331 struct sockaddr_in to, from; 332 333 sh = (struct sctphdr *)((caddr_t)ip + (ip->ip_hl << 2)); 334 bzero(&to, sizeof(to)); 335 bzero(&from, sizeof(from)); 336 from.sin_family = to.sin_family = AF_INET; 337 from.sin_len = to.sin_len = sizeof(to); 338 from.sin_port = sh->src_port; 339 from.sin_addr = ip->ip_src; 340 to.sin_port = sh->dest_port; 341 to.sin_addr = ip->ip_dst; 342 343 /* 344 * 'to' holds the dest of the packet that failed to be sent. 345 * 'from' holds our local endpoint address. Thus we reverse 346 * the to and the from in the lookup. 347 */ 348 stcb = sctp_findassociation_addr_sa((struct sockaddr *)&to, 349 (struct sockaddr *)&from, 350 &inp, &net, 1, vrf_id); 351 if (stcb != NULL && inp && (inp->sctp_socket != NULL)) { 352 if (cmd != PRC_MSGSIZE) { 353 sctp_notify(inp, ip, sh, 354 (struct sockaddr *)&to, stcb, 355 net); 356 } else { 357 /* handle possible ICMP size messages */ 358 sctp_notify_mbuf(inp, stcb, net, ip, sh); 359 } 360 } else { 361 if ((stcb == NULL) && (inp != NULL)) { 362 /* reduce ref-count */ 363 SCTP_INP_WLOCK(inp); 364 SCTP_INP_DECR_REF(inp); 365 SCTP_INP_WUNLOCK(inp); 366 } 367 if (stcb) { 368 SCTP_TCB_UNLOCK(stcb); 369 } 370 } 371 } 372 return; 373 } 374 375 #endif 376 377 static int 378 sctp_getcred(SYSCTL_HANDLER_ARGS) 379 { 380 struct xucred xuc; 381 struct sockaddr_in addrs[2]; 382 struct sctp_inpcb *inp; 383 struct sctp_nets *net; 384 struct sctp_tcb *stcb; 385 int error; 386 uint32_t vrf_id; 387 388 /* FIX, for non-bsd is this right? */ 389 vrf_id = SCTP_DEFAULT_VRFID; 390 391 error = priv_check(req->td, PRIV_NETINET_GETCRED); 392 393 if (error) 394 return (error); 395 396 error = SYSCTL_IN(req, addrs, sizeof(addrs)); 397 if (error) 398 return (error); 399 400 stcb = sctp_findassociation_addr_sa(sintosa(&addrs[1]), 401 sintosa(&addrs[0]), 402 &inp, &net, 1, vrf_id); 403 if (stcb == NULL || inp == NULL || inp->sctp_socket == NULL) { 404 if ((inp != NULL) && (stcb == NULL)) { 405 /* reduce ref-count */ 406 SCTP_INP_WLOCK(inp); 407 SCTP_INP_DECR_REF(inp); 408 goto cred_can_cont; 409 } 410 SCTP_LTRACE_ERR_RET(inp, NULL, NULL, SCTP_FROM_SCTP_USRREQ, ENOENT); 411 error = ENOENT; 412 goto out; 413 } 414 SCTP_TCB_UNLOCK(stcb); 415 /* 416 * We use the write lock here, only since in the error leg we need 417 * it. If we used RLOCK, then we would have to 418 * wlock/decr/unlock/rlock. Which in theory could create a hole. 419 * Better to use higher wlock. 420 */ 421 SCTP_INP_WLOCK(inp); 422 cred_can_cont: 423 error = cr_canseesocket(req->td->td_ucred, inp->sctp_socket); 424 if (error) { 425 SCTP_INP_WUNLOCK(inp); 426 goto out; 427 } 428 cru2x(inp->sctp_socket->so_cred, &xuc); 429 SCTP_INP_WUNLOCK(inp); 430 error = SYSCTL_OUT(req, &xuc, sizeof(struct xucred)); 431 out: 432 return (error); 433 } 434 435 SYSCTL_PROC(_net_inet_sctp, OID_AUTO, getcred, CTLTYPE_OPAQUE | CTLFLAG_RW, 436 0, 0, sctp_getcred, "S,ucred", "Get the ucred of a SCTP connection"); 437 438 439 #ifdef INET 440 static void 441 sctp_abort(struct socket *so) 442 { 443 struct sctp_inpcb *inp; 444 uint32_t flags; 445 446 inp = (struct sctp_inpcb *)so->so_pcb; 447 if (inp == NULL) { 448 return; 449 } 450 sctp_must_try_again: 451 flags = inp->sctp_flags; 452 #ifdef SCTP_LOG_CLOSING 453 sctp_log_closing(inp, NULL, 17); 454 #endif 455 if (((flags & SCTP_PCB_FLAGS_SOCKET_GONE) == 0) && 456 (atomic_cmpset_int(&inp->sctp_flags, flags, (flags | SCTP_PCB_FLAGS_SOCKET_GONE | SCTP_PCB_FLAGS_CLOSE_IP)))) { 457 #ifdef SCTP_LOG_CLOSING 458 sctp_log_closing(inp, NULL, 16); 459 #endif 460 sctp_inpcb_free(inp, SCTP_FREE_SHOULD_USE_ABORT, 461 SCTP_CALLED_AFTER_CMPSET_OFCLOSE); 462 SOCK_LOCK(so); 463 SCTP_SB_CLEAR(so->so_snd); 464 /* 465 * same for the rcv ones, they are only here for the 466 * accounting/select. 467 */ 468 SCTP_SB_CLEAR(so->so_rcv); 469 470 /* Now null out the reference, we are completely detached. */ 471 so->so_pcb = NULL; 472 SOCK_UNLOCK(so); 473 } else { 474 flags = inp->sctp_flags; 475 if ((flags & SCTP_PCB_FLAGS_SOCKET_GONE) == 0) { 476 goto sctp_must_try_again; 477 } 478 } 479 return; 480 } 481 482 static int 483 sctp_attach(struct socket *so, int proto SCTP_UNUSED, struct thread *p SCTP_UNUSED) 484 { 485 struct sctp_inpcb *inp; 486 struct inpcb *ip_inp; 487 int error; 488 uint32_t vrf_id = SCTP_DEFAULT_VRFID; 489 490 #ifdef IPSEC 491 uint32_t flags; 492 493 #endif 494 495 inp = (struct sctp_inpcb *)so->so_pcb; 496 if (inp != 0) { 497 SCTP_LTRACE_ERR_RET(inp, NULL, NULL, SCTP_FROM_SCTP_USRREQ, EINVAL); 498 return (EINVAL); 499 } 500 if (so->so_snd.sb_hiwat == 0 || so->so_rcv.sb_hiwat == 0) { 501 error = SCTP_SORESERVE(so, SCTP_BASE_SYSCTL(sctp_sendspace), SCTP_BASE_SYSCTL(sctp_recvspace)); 502 if (error) { 503 return (error); 504 } 505 } 506 error = sctp_inpcb_alloc(so, vrf_id); 507 if (error) { 508 return (error); 509 } 510 inp = (struct sctp_inpcb *)so->so_pcb; 511 SCTP_INP_WLOCK(inp); 512 inp->sctp_flags &= ~SCTP_PCB_FLAGS_BOUND_V6; /* I'm not v6! */ 513 ip_inp = &inp->ip_inp.inp; 514 ip_inp->inp_vflag |= INP_IPV4; 515 ip_inp->inp_ip_ttl = MODULE_GLOBAL(ip_defttl); 516 #ifdef IPSEC 517 error = ipsec_init_policy(so, &ip_inp->inp_sp); 518 #ifdef SCTP_LOG_CLOSING 519 sctp_log_closing(inp, NULL, 17); 520 #endif 521 if (error != 0) { 522 try_again: 523 flags = inp->sctp_flags; 524 if (((flags & SCTP_PCB_FLAGS_SOCKET_GONE) == 0) && 525 (atomic_cmpset_int(&inp->sctp_flags, flags, (flags | SCTP_PCB_FLAGS_SOCKET_GONE | SCTP_PCB_FLAGS_CLOSE_IP)))) { 526 #ifdef SCTP_LOG_CLOSING 527 sctp_log_closing(inp, NULL, 15); 528 #endif 529 SCTP_INP_WUNLOCK(inp); 530 sctp_inpcb_free(inp, SCTP_FREE_SHOULD_USE_ABORT, 531 SCTP_CALLED_AFTER_CMPSET_OFCLOSE); 532 } else { 533 flags = inp->sctp_flags; 534 if ((flags & SCTP_PCB_FLAGS_SOCKET_GONE) == 0) { 535 goto try_again; 536 } else { 537 SCTP_INP_WUNLOCK(inp); 538 } 539 } 540 return (error); 541 } 542 #endif /* IPSEC */ 543 SCTP_INP_WUNLOCK(inp); 544 return (0); 545 } 546 547 static int 548 sctp_bind(struct socket *so, struct sockaddr *addr, struct thread *p) 549 { 550 struct sctp_inpcb *inp = NULL; 551 int error; 552 553 #ifdef INET 554 if (addr && addr->sa_family != AF_INET) { 555 /* must be a v4 address! */ 556 SCTP_LTRACE_ERR_RET(inp, NULL, NULL, SCTP_FROM_SCTP_USRREQ, EINVAL); 557 return (EINVAL); 558 } 559 #endif /* INET6 */ 560 if (addr && (addr->sa_len != sizeof(struct sockaddr_in))) { 561 SCTP_LTRACE_ERR_RET(inp, NULL, NULL, SCTP_FROM_SCTP_USRREQ, EINVAL); 562 return (EINVAL); 563 } 564 inp = (struct sctp_inpcb *)so->so_pcb; 565 if (inp == NULL) { 566 SCTP_LTRACE_ERR_RET(inp, NULL, NULL, SCTP_FROM_SCTP_USRREQ, EINVAL); 567 return (EINVAL); 568 } 569 error = sctp_inpcb_bind(so, addr, NULL, p); 570 return (error); 571 } 572 573 #endif 574 void 575 sctp_close(struct socket *so) 576 { 577 struct sctp_inpcb *inp; 578 uint32_t flags; 579 580 inp = (struct sctp_inpcb *)so->so_pcb; 581 if (inp == NULL) 582 return; 583 584 /* 585 * Inform all the lower layer assoc that we are done. 586 */ 587 sctp_must_try_again: 588 flags = inp->sctp_flags; 589 #ifdef SCTP_LOG_CLOSING 590 sctp_log_closing(inp, NULL, 17); 591 #endif 592 if (((flags & SCTP_PCB_FLAGS_SOCKET_GONE) == 0) && 593 (atomic_cmpset_int(&inp->sctp_flags, flags, (flags | SCTP_PCB_FLAGS_SOCKET_GONE | SCTP_PCB_FLAGS_CLOSE_IP)))) { 594 if (((so->so_options & SO_LINGER) && (so->so_linger == 0)) || 595 (so->so_rcv.sb_cc > 0)) { 596 #ifdef SCTP_LOG_CLOSING 597 sctp_log_closing(inp, NULL, 13); 598 #endif 599 sctp_inpcb_free(inp, SCTP_FREE_SHOULD_USE_ABORT, 600 SCTP_CALLED_AFTER_CMPSET_OFCLOSE); 601 } else { 602 #ifdef SCTP_LOG_CLOSING 603 sctp_log_closing(inp, NULL, 14); 604 #endif 605 sctp_inpcb_free(inp, SCTP_FREE_SHOULD_USE_GRACEFUL_CLOSE, 606 SCTP_CALLED_AFTER_CMPSET_OFCLOSE); 607 } 608 /* 609 * The socket is now detached, no matter what the state of 610 * the SCTP association. 611 */ 612 SOCK_LOCK(so); 613 SCTP_SB_CLEAR(so->so_snd); 614 /* 615 * same for the rcv ones, they are only here for the 616 * accounting/select. 617 */ 618 SCTP_SB_CLEAR(so->so_rcv); 619 620 /* Now null out the reference, we are completely detached. */ 621 so->so_pcb = NULL; 622 SOCK_UNLOCK(so); 623 } else { 624 flags = inp->sctp_flags; 625 if ((flags & SCTP_PCB_FLAGS_SOCKET_GONE) == 0) { 626 goto sctp_must_try_again; 627 } 628 } 629 return; 630 } 631 632 633 int 634 sctp_sendm(struct socket *so, int flags, struct mbuf *m, struct sockaddr *addr, 635 struct mbuf *control, struct thread *p); 636 637 638 int 639 sctp_sendm(struct socket *so, int flags, struct mbuf *m, struct sockaddr *addr, 640 struct mbuf *control, struct thread *p) 641 { 642 struct sctp_inpcb *inp; 643 int error; 644 645 inp = (struct sctp_inpcb *)so->so_pcb; 646 if (inp == NULL) { 647 if (control) { 648 sctp_m_freem(control); 649 control = NULL; 650 } 651 SCTP_LTRACE_ERR_RET_PKT(m, inp, NULL, NULL, SCTP_FROM_SCTP_USRREQ, EINVAL); 652 sctp_m_freem(m); 653 return (EINVAL); 654 } 655 /* Got to have an to address if we are NOT a connected socket */ 656 if ((addr == NULL) && 657 ((inp->sctp_flags & SCTP_PCB_FLAGS_CONNECTED) || 658 (inp->sctp_flags & SCTP_PCB_FLAGS_TCPTYPE))) { 659 goto connected_type; 660 } else if (addr == NULL) { 661 SCTP_LTRACE_ERR_RET_PKT(m, inp, NULL, NULL, SCTP_FROM_SCTP_USRREQ, EDESTADDRREQ); 662 error = EDESTADDRREQ; 663 sctp_m_freem(m); 664 if (control) { 665 sctp_m_freem(control); 666 control = NULL; 667 } 668 return (error); 669 } 670 #ifdef INET6 671 if (addr->sa_family != AF_INET) { 672 /* must be a v4 address! */ 673 SCTP_LTRACE_ERR_RET_PKT(m, inp, NULL, NULL, SCTP_FROM_SCTP_USRREQ, EDESTADDRREQ); 674 sctp_m_freem(m); 675 if (control) { 676 sctp_m_freem(control); 677 control = NULL; 678 } 679 error = EDESTADDRREQ; 680 return (error); 681 } 682 #endif /* INET6 */ 683 connected_type: 684 /* now what about control */ 685 if (control) { 686 if (inp->control) { 687 SCTP_PRINTF("huh? control set?\n"); 688 sctp_m_freem(inp->control); 689 inp->control = NULL; 690 } 691 inp->control = control; 692 } 693 /* Place the data */ 694 if (inp->pkt) { 695 SCTP_BUF_NEXT(inp->pkt_last) = m; 696 inp->pkt_last = m; 697 } else { 698 inp->pkt_last = inp->pkt = m; 699 } 700 if ( 701 /* FreeBSD uses a flag passed */ 702 ((flags & PRUS_MORETOCOME) == 0) 703 ) { 704 /* 705 * note with the current version this code will only be used 706 * by OpenBSD-- NetBSD, FreeBSD, and MacOS have methods for 707 * re-defining sosend to use the sctp_sosend. One can 708 * optionally switch back to this code (by changing back the 709 * definitions) but this is not advisable. This code is used 710 * by FreeBSD when sending a file with sendfile() though. 711 */ 712 int ret; 713 714 ret = sctp_output(inp, inp->pkt, addr, inp->control, p, flags); 715 inp->pkt = NULL; 716 inp->control = NULL; 717 return (ret); 718 } else { 719 return (0); 720 } 721 } 722 723 int 724 sctp_disconnect(struct socket *so) 725 { 726 struct sctp_inpcb *inp; 727 728 inp = (struct sctp_inpcb *)so->so_pcb; 729 if (inp == NULL) { 730 SCTP_LTRACE_ERR_RET(inp, NULL, NULL, SCTP_FROM_SCTP_USRREQ, ENOTCONN); 731 return (ENOTCONN); 732 } 733 SCTP_INP_RLOCK(inp); 734 if ((inp->sctp_flags & SCTP_PCB_FLAGS_TCPTYPE) || 735 (inp->sctp_flags & SCTP_PCB_FLAGS_IN_TCPPOOL)) { 736 if (LIST_EMPTY(&inp->sctp_asoc_list)) { 737 /* No connection */ 738 SCTP_INP_RUNLOCK(inp); 739 return (0); 740 } else { 741 struct sctp_association *asoc; 742 struct sctp_tcb *stcb; 743 744 stcb = LIST_FIRST(&inp->sctp_asoc_list); 745 if (stcb == NULL) { 746 SCTP_INP_RUNLOCK(inp); 747 SCTP_LTRACE_ERR_RET(inp, NULL, NULL, SCTP_FROM_SCTP_USRREQ, EINVAL); 748 return (EINVAL); 749 } 750 SCTP_TCB_LOCK(stcb); 751 asoc = &stcb->asoc; 752 if (stcb->asoc.state & SCTP_STATE_ABOUT_TO_BE_FREED) { 753 /* We are about to be freed, out of here */ 754 SCTP_TCB_UNLOCK(stcb); 755 SCTP_INP_RUNLOCK(inp); 756 return (0); 757 } 758 if (((so->so_options & SO_LINGER) && 759 (so->so_linger == 0)) || 760 (so->so_rcv.sb_cc > 0)) { 761 if (SCTP_GET_STATE(asoc) != 762 SCTP_STATE_COOKIE_WAIT) { 763 /* Left with Data unread */ 764 struct mbuf *err; 765 766 err = sctp_get_mbuf_for_msg(sizeof(struct sctp_paramhdr), 0, M_NOWAIT, 1, MT_DATA); 767 if (err) { 768 /* 769 * Fill in the user 770 * initiated abort 771 */ 772 struct sctp_paramhdr *ph; 773 774 ph = mtod(err, struct sctp_paramhdr *); 775 SCTP_BUF_LEN(err) = sizeof(struct sctp_paramhdr); 776 ph->param_type = htons(SCTP_CAUSE_USER_INITIATED_ABT); 777 ph->param_length = htons(SCTP_BUF_LEN(err)); 778 } 779 sctp_send_abort_tcb(stcb, err, SCTP_SO_LOCKED); 780 SCTP_STAT_INCR_COUNTER32(sctps_aborted); 781 } 782 SCTP_INP_RUNLOCK(inp); 783 if ((SCTP_GET_STATE(&stcb->asoc) == SCTP_STATE_OPEN) || 784 (SCTP_GET_STATE(&stcb->asoc) == SCTP_STATE_SHUTDOWN_RECEIVED)) { 785 SCTP_STAT_DECR_GAUGE32(sctps_currestab); 786 } 787 (void)sctp_free_assoc(inp, stcb, SCTP_NORMAL_PROC, SCTP_FROM_SCTP_USRREQ + SCTP_LOC_3); 788 /* No unlock tcb assoc is gone */ 789 return (0); 790 } 791 if (TAILQ_EMPTY(&asoc->send_queue) && 792 TAILQ_EMPTY(&asoc->sent_queue) && 793 (asoc->stream_queue_cnt == 0)) { 794 /* there is nothing queued to send, so done */ 795 if (asoc->locked_on_sending) { 796 goto abort_anyway; 797 } 798 if ((SCTP_GET_STATE(asoc) != SCTP_STATE_SHUTDOWN_SENT) && 799 (SCTP_GET_STATE(asoc) != SCTP_STATE_SHUTDOWN_ACK_SENT)) { 800 /* only send SHUTDOWN 1st time thru */ 801 struct sctp_nets *netp; 802 803 if (stcb->asoc.alternate) { 804 netp = stcb->asoc.alternate; 805 } else { 806 netp = stcb->asoc.primary_destination; 807 } 808 sctp_stop_timers_for_shutdown(stcb); 809 sctp_send_shutdown(stcb, netp); 810 sctp_chunk_output(stcb->sctp_ep, stcb, SCTP_OUTPUT_FROM_T3, SCTP_SO_LOCKED); 811 if ((SCTP_GET_STATE(asoc) == SCTP_STATE_OPEN) || 812 (SCTP_GET_STATE(asoc) == SCTP_STATE_SHUTDOWN_RECEIVED)) { 813 SCTP_STAT_DECR_GAUGE32(sctps_currestab); 814 } 815 SCTP_SET_STATE(asoc, SCTP_STATE_SHUTDOWN_SENT); 816 SCTP_CLEAR_SUBSTATE(asoc, SCTP_STATE_SHUTDOWN_PENDING); 817 sctp_timer_start(SCTP_TIMER_TYPE_SHUTDOWN, 818 stcb->sctp_ep, stcb, netp); 819 sctp_timer_start(SCTP_TIMER_TYPE_SHUTDOWNGUARD, 820 stcb->sctp_ep, stcb, netp); 821 822 } 823 } else { 824 /* 825 * we still got (or just got) data to send, 826 * so set SHUTDOWN_PENDING 827 */ 828 /* 829 * XXX sockets draft says that SCTP_EOF 830 * should be sent with no data. currently, 831 * we will allow user data to be sent first 832 * and move to SHUTDOWN-PENDING 833 */ 834 struct sctp_nets *netp; 835 836 if (stcb->asoc.alternate) { 837 netp = stcb->asoc.alternate; 838 } else { 839 netp = stcb->asoc.primary_destination; 840 } 841 842 asoc->state |= SCTP_STATE_SHUTDOWN_PENDING; 843 sctp_timer_start(SCTP_TIMER_TYPE_SHUTDOWNGUARD, stcb->sctp_ep, stcb, 844 netp); 845 if (asoc->locked_on_sending) { 846 /* Locked to send out the data */ 847 struct sctp_stream_queue_pending *sp; 848 849 sp = TAILQ_LAST(&asoc->locked_on_sending->outqueue, sctp_streamhead); 850 if (sp == NULL) { 851 SCTP_PRINTF("Error, sp is NULL, locked on sending is non-null strm:%d\n", 852 asoc->locked_on_sending->stream_no); 853 } else { 854 if ((sp->length == 0) && (sp->msg_is_complete == 0)) 855 asoc->state |= SCTP_STATE_PARTIAL_MSG_LEFT; 856 } 857 } 858 if (TAILQ_EMPTY(&asoc->send_queue) && 859 TAILQ_EMPTY(&asoc->sent_queue) && 860 (asoc->state & SCTP_STATE_PARTIAL_MSG_LEFT)) { 861 struct mbuf *op_err; 862 863 abort_anyway: 864 op_err = sctp_get_mbuf_for_msg((sizeof(struct sctp_paramhdr) + sizeof(uint32_t)), 865 0, M_NOWAIT, 1, MT_DATA); 866 if (op_err) { 867 /* 868 * Fill in the user 869 * initiated abort 870 */ 871 struct sctp_paramhdr *ph; 872 uint32_t *ippp; 873 874 SCTP_BUF_LEN(op_err) = 875 (sizeof(struct sctp_paramhdr) + sizeof(uint32_t)); 876 ph = mtod(op_err, 877 struct sctp_paramhdr *); 878 ph->param_type = htons( 879 SCTP_CAUSE_USER_INITIATED_ABT); 880 ph->param_length = htons(SCTP_BUF_LEN(op_err)); 881 ippp = (uint32_t *) (ph + 1); 882 *ippp = htonl(SCTP_FROM_SCTP_USRREQ + SCTP_LOC_4); 883 } 884 stcb->sctp_ep->last_abort_code = SCTP_FROM_SCTP_USRREQ + SCTP_LOC_4; 885 sctp_send_abort_tcb(stcb, op_err, SCTP_SO_LOCKED); 886 SCTP_STAT_INCR_COUNTER32(sctps_aborted); 887 if ((SCTP_GET_STATE(&stcb->asoc) == SCTP_STATE_OPEN) || 888 (SCTP_GET_STATE(&stcb->asoc) == SCTP_STATE_SHUTDOWN_RECEIVED)) { 889 SCTP_STAT_DECR_GAUGE32(sctps_currestab); 890 } 891 SCTP_INP_RUNLOCK(inp); 892 (void)sctp_free_assoc(inp, stcb, SCTP_NORMAL_PROC, SCTP_FROM_SCTP_USRREQ + SCTP_LOC_5); 893 return (0); 894 } else { 895 sctp_chunk_output(inp, stcb, SCTP_OUTPUT_FROM_CLOSING, SCTP_SO_LOCKED); 896 } 897 } 898 soisdisconnecting(so); 899 SCTP_TCB_UNLOCK(stcb); 900 SCTP_INP_RUNLOCK(inp); 901 return (0); 902 } 903 /* not reached */ 904 } else { 905 /* UDP model does not support this */ 906 SCTP_INP_RUNLOCK(inp); 907 SCTP_LTRACE_ERR_RET(inp, NULL, NULL, SCTP_FROM_SCTP_USRREQ, EOPNOTSUPP); 908 return (EOPNOTSUPP); 909 } 910 } 911 912 int 913 sctp_flush(struct socket *so, int how) 914 { 915 /* 916 * We will just clear out the values and let subsequent close clear 917 * out the data, if any. Note if the user did a shutdown(SHUT_RD) 918 * they will not be able to read the data, the socket will block 919 * that from happening. 920 */ 921 struct sctp_inpcb *inp; 922 923 inp = (struct sctp_inpcb *)so->so_pcb; 924 if (inp == NULL) { 925 SCTP_LTRACE_ERR_RET(inp, NULL, NULL, SCTP_FROM_SCTP_USRREQ, EINVAL); 926 return (EINVAL); 927 } 928 SCTP_INP_RLOCK(inp); 929 /* For the 1 to many model this does nothing */ 930 if (inp->sctp_flags & SCTP_PCB_FLAGS_UDPTYPE) { 931 SCTP_INP_RUNLOCK(inp); 932 return (0); 933 } 934 SCTP_INP_RUNLOCK(inp); 935 if ((how == PRU_FLUSH_RD) || (how == PRU_FLUSH_RDWR)) { 936 /* 937 * First make sure the sb will be happy, we don't use these 938 * except maybe the count 939 */ 940 SCTP_INP_WLOCK(inp); 941 SCTP_INP_READ_LOCK(inp); 942 inp->sctp_flags |= SCTP_PCB_FLAGS_SOCKET_CANT_READ; 943 SCTP_INP_READ_UNLOCK(inp); 944 SCTP_INP_WUNLOCK(inp); 945 so->so_rcv.sb_cc = 0; 946 so->so_rcv.sb_mbcnt = 0; 947 so->so_rcv.sb_mb = NULL; 948 } 949 if ((how == PRU_FLUSH_WR) || (how == PRU_FLUSH_RDWR)) { 950 /* 951 * First make sure the sb will be happy, we don't use these 952 * except maybe the count 953 */ 954 so->so_snd.sb_cc = 0; 955 so->so_snd.sb_mbcnt = 0; 956 so->so_snd.sb_mb = NULL; 957 958 } 959 return (0); 960 } 961 962 int 963 sctp_shutdown(struct socket *so) 964 { 965 struct sctp_inpcb *inp; 966 967 inp = (struct sctp_inpcb *)so->so_pcb; 968 if (inp == NULL) { 969 SCTP_LTRACE_ERR_RET(inp, NULL, NULL, SCTP_FROM_SCTP_USRREQ, EINVAL); 970 return (EINVAL); 971 } 972 SCTP_INP_RLOCK(inp); 973 /* For UDP model this is a invalid call */ 974 if (!((inp->sctp_flags & SCTP_PCB_FLAGS_TCPTYPE) || 975 (inp->sctp_flags & SCTP_PCB_FLAGS_IN_TCPPOOL))) { 976 /* Restore the flags that the soshutdown took away. */ 977 SOCKBUF_LOCK(&so->so_rcv); 978 so->so_rcv.sb_state &= ~SBS_CANTRCVMORE; 979 SOCKBUF_UNLOCK(&so->so_rcv); 980 /* This proc will wakeup for read and do nothing (I hope) */ 981 SCTP_INP_RUNLOCK(inp); 982 SCTP_LTRACE_ERR_RET(inp, NULL, NULL, SCTP_FROM_SCTP_USRREQ, EOPNOTSUPP); 983 return (EOPNOTSUPP); 984 } 985 /* 986 * Ok if we reach here its the TCP model and it is either a SHUT_WR 987 * or SHUT_RDWR. This means we put the shutdown flag against it. 988 */ 989 { 990 struct sctp_tcb *stcb; 991 struct sctp_association *asoc; 992 993 if ((so->so_state & 994 (SS_ISCONNECTED | SS_ISCONNECTING | SS_ISDISCONNECTING)) == 0) { 995 SCTP_INP_RUNLOCK(inp); 996 return (ENOTCONN); 997 } 998 socantsendmore(so); 999 1000 stcb = LIST_FIRST(&inp->sctp_asoc_list); 1001 if (stcb == NULL) { 1002 /* 1003 * Ok we hit the case that the shutdown call was 1004 * made after an abort or something. Nothing to do 1005 * now. 1006 */ 1007 SCTP_INP_RUNLOCK(inp); 1008 return (0); 1009 } 1010 SCTP_TCB_LOCK(stcb); 1011 asoc = &stcb->asoc; 1012 if (TAILQ_EMPTY(&asoc->send_queue) && 1013 TAILQ_EMPTY(&asoc->sent_queue) && 1014 (asoc->stream_queue_cnt == 0)) { 1015 if (asoc->locked_on_sending) { 1016 goto abort_anyway; 1017 } 1018 /* there is nothing queued to send, so I'm done... */ 1019 if (SCTP_GET_STATE(asoc) != SCTP_STATE_SHUTDOWN_SENT) { 1020 /* only send SHUTDOWN the first time through */ 1021 struct sctp_nets *netp; 1022 1023 if (stcb->asoc.alternate) { 1024 netp = stcb->asoc.alternate; 1025 } else { 1026 netp = stcb->asoc.primary_destination; 1027 } 1028 sctp_stop_timers_for_shutdown(stcb); 1029 sctp_send_shutdown(stcb, netp); 1030 sctp_chunk_output(stcb->sctp_ep, stcb, SCTP_OUTPUT_FROM_T3, SCTP_SO_LOCKED); 1031 if ((SCTP_GET_STATE(asoc) == SCTP_STATE_OPEN) || 1032 (SCTP_GET_STATE(asoc) == SCTP_STATE_SHUTDOWN_RECEIVED)) { 1033 SCTP_STAT_DECR_GAUGE32(sctps_currestab); 1034 } 1035 SCTP_SET_STATE(asoc, SCTP_STATE_SHUTDOWN_SENT); 1036 SCTP_CLEAR_SUBSTATE(asoc, SCTP_STATE_SHUTDOWN_PENDING); 1037 sctp_timer_start(SCTP_TIMER_TYPE_SHUTDOWN, 1038 stcb->sctp_ep, stcb, netp); 1039 sctp_timer_start(SCTP_TIMER_TYPE_SHUTDOWNGUARD, 1040 stcb->sctp_ep, stcb, netp); 1041 } 1042 } else { 1043 /* 1044 * we still got (or just got) data to send, so set 1045 * SHUTDOWN_PENDING 1046 */ 1047 struct sctp_nets *netp; 1048 1049 if (stcb->asoc.alternate) { 1050 netp = stcb->asoc.alternate; 1051 } else { 1052 netp = stcb->asoc.primary_destination; 1053 } 1054 1055 asoc->state |= SCTP_STATE_SHUTDOWN_PENDING; 1056 sctp_timer_start(SCTP_TIMER_TYPE_SHUTDOWNGUARD, stcb->sctp_ep, stcb, 1057 netp); 1058 1059 if (asoc->locked_on_sending) { 1060 /* Locked to send out the data */ 1061 struct sctp_stream_queue_pending *sp; 1062 1063 sp = TAILQ_LAST(&asoc->locked_on_sending->outqueue, sctp_streamhead); 1064 if (sp == NULL) { 1065 SCTP_PRINTF("Error, sp is NULL, locked on sending is non-null strm:%d\n", 1066 asoc->locked_on_sending->stream_no); 1067 } else { 1068 if ((sp->length == 0) && (sp->msg_is_complete == 0)) { 1069 asoc->state |= SCTP_STATE_PARTIAL_MSG_LEFT; 1070 } 1071 } 1072 } 1073 if (TAILQ_EMPTY(&asoc->send_queue) && 1074 TAILQ_EMPTY(&asoc->sent_queue) && 1075 (asoc->state & SCTP_STATE_PARTIAL_MSG_LEFT)) { 1076 struct mbuf *op_err; 1077 1078 abort_anyway: 1079 op_err = sctp_get_mbuf_for_msg((sizeof(struct sctp_paramhdr) + sizeof(uint32_t)), 1080 0, M_NOWAIT, 1, MT_DATA); 1081 if (op_err) { 1082 /* Fill in the user initiated abort */ 1083 struct sctp_paramhdr *ph; 1084 uint32_t *ippp; 1085 1086 SCTP_BUF_LEN(op_err) = 1087 sizeof(struct sctp_paramhdr) + sizeof(uint32_t); 1088 ph = mtod(op_err, 1089 struct sctp_paramhdr *); 1090 ph->param_type = htons( 1091 SCTP_CAUSE_USER_INITIATED_ABT); 1092 ph->param_length = htons(SCTP_BUF_LEN(op_err)); 1093 ippp = (uint32_t *) (ph + 1); 1094 *ippp = htonl(SCTP_FROM_SCTP_USRREQ + SCTP_LOC_6); 1095 } 1096 stcb->sctp_ep->last_abort_code = SCTP_FROM_SCTP_USRREQ + SCTP_LOC_6; 1097 sctp_abort_an_association(stcb->sctp_ep, stcb, 1098 op_err, SCTP_SO_LOCKED); 1099 goto skip_unlock; 1100 } else { 1101 sctp_chunk_output(inp, stcb, SCTP_OUTPUT_FROM_CLOSING, SCTP_SO_LOCKED); 1102 } 1103 } 1104 SCTP_TCB_UNLOCK(stcb); 1105 } 1106 skip_unlock: 1107 SCTP_INP_RUNLOCK(inp); 1108 return (0); 1109 } 1110 1111 /* 1112 * copies a "user" presentable address and removes embedded scope, etc. 1113 * returns 0 on success, 1 on error 1114 */ 1115 static uint32_t 1116 sctp_fill_user_address(struct sockaddr_storage *ss, struct sockaddr *sa) 1117 { 1118 #ifdef INET6 1119 struct sockaddr_in6 lsa6; 1120 1121 sa = (struct sockaddr *)sctp_recover_scope((struct sockaddr_in6 *)sa, 1122 &lsa6); 1123 #endif 1124 memcpy(ss, sa, sa->sa_len); 1125 return (0); 1126 } 1127 1128 1129 1130 /* 1131 * NOTE: assumes addr lock is held 1132 */ 1133 static size_t 1134 sctp_fill_up_addresses_vrf(struct sctp_inpcb *inp, 1135 struct sctp_tcb *stcb, 1136 size_t limit, 1137 struct sockaddr_storage *sas, 1138 uint32_t vrf_id) 1139 { 1140 struct sctp_ifn *sctp_ifn; 1141 struct sctp_ifa *sctp_ifa; 1142 int loopback_scope, ipv4_local_scope, local_scope, site_scope; 1143 size_t actual; 1144 int ipv4_addr_legal, ipv6_addr_legal; 1145 struct sctp_vrf *vrf; 1146 1147 actual = 0; 1148 if (limit <= 0) 1149 return (actual); 1150 1151 if (stcb) { 1152 /* Turn on all the appropriate scope */ 1153 loopback_scope = stcb->asoc.loopback_scope; 1154 ipv4_local_scope = stcb->asoc.ipv4_local_scope; 1155 local_scope = stcb->asoc.local_scope; 1156 site_scope = stcb->asoc.site_scope; 1157 } else { 1158 /* Turn on ALL scope, since we look at the EP */ 1159 loopback_scope = ipv4_local_scope = local_scope = 1160 site_scope = 1; 1161 } 1162 ipv4_addr_legal = ipv6_addr_legal = 0; 1163 if (inp->sctp_flags & SCTP_PCB_FLAGS_BOUND_V6) { 1164 ipv6_addr_legal = 1; 1165 if (SCTP_IPV6_V6ONLY(inp) == 0) { 1166 ipv4_addr_legal = 1; 1167 } 1168 } else { 1169 ipv4_addr_legal = 1; 1170 } 1171 vrf = sctp_find_vrf(vrf_id); 1172 if (vrf == NULL) { 1173 return (0); 1174 } 1175 if (inp->sctp_flags & SCTP_PCB_FLAGS_BOUNDALL) { 1176 LIST_FOREACH(sctp_ifn, &vrf->ifnlist, next_ifn) { 1177 if ((loopback_scope == 0) && 1178 SCTP_IFN_IS_IFT_LOOP(sctp_ifn)) { 1179 /* Skip loopback if loopback_scope not set */ 1180 continue; 1181 } 1182 LIST_FOREACH(sctp_ifa, &sctp_ifn->ifalist, next_ifa) { 1183 if (stcb) { 1184 /* 1185 * For the BOUND-ALL case, the list 1186 * associated with a TCB is Always 1187 * considered a reverse list.. i.e. 1188 * it lists addresses that are NOT 1189 * part of the association. If this 1190 * is one of those we must skip it. 1191 */ 1192 if (sctp_is_addr_restricted(stcb, 1193 sctp_ifa)) { 1194 continue; 1195 } 1196 } 1197 switch (sctp_ifa->address.sa.sa_family) { 1198 #ifdef INET 1199 case AF_INET: 1200 if (ipv4_addr_legal) { 1201 struct sockaddr_in *sin; 1202 1203 sin = (struct sockaddr_in *)&sctp_ifa->address.sa; 1204 if (sin->sin_addr.s_addr == 0) { 1205 /* 1206 * we skip 1207 * unspecifed 1208 * addresses 1209 */ 1210 continue; 1211 } 1212 if ((ipv4_local_scope == 0) && 1213 (IN4_ISPRIVATE_ADDRESS(&sin->sin_addr))) { 1214 continue; 1215 } 1216 #ifdef INET6 1217 if (sctp_is_feature_on(inp, SCTP_PCB_FLAGS_NEEDS_MAPPED_V4)) { 1218 in6_sin_2_v4mapsin6(sin, (struct sockaddr_in6 *)sas); 1219 ((struct sockaddr_in6 *)sas)->sin6_port = inp->sctp_lport; 1220 sas = (struct sockaddr_storage *)((caddr_t)sas + sizeof(struct sockaddr_in6)); 1221 actual += sizeof(struct sockaddr_in6); 1222 } else { 1223 #endif 1224 memcpy(sas, sin, sizeof(*sin)); 1225 ((struct sockaddr_in *)sas)->sin_port = inp->sctp_lport; 1226 sas = (struct sockaddr_storage *)((caddr_t)sas + sizeof(*sin)); 1227 actual += sizeof(*sin); 1228 #ifdef INET6 1229 } 1230 #endif 1231 if (actual >= limit) { 1232 return (actual); 1233 } 1234 } else { 1235 continue; 1236 } 1237 break; 1238 #endif 1239 #ifdef INET6 1240 case AF_INET6: 1241 if (ipv6_addr_legal) { 1242 struct sockaddr_in6 *sin6; 1243 1244 sin6 = (struct sockaddr_in6 *)&sctp_ifa->address.sa; 1245 if (IN6_IS_ADDR_UNSPECIFIED(&sin6->sin6_addr)) { 1246 /* 1247 * we skip 1248 * unspecifed 1249 * addresses 1250 */ 1251 continue; 1252 } 1253 if (IN6_IS_ADDR_LINKLOCAL(&sin6->sin6_addr)) { 1254 if (local_scope == 0) 1255 continue; 1256 if (sin6->sin6_scope_id == 0) { 1257 if (sa6_recoverscope(sin6) != 0) 1258 /* 1259 * 1260 * bad 1261 * 1262 * li 1263 * nk 1264 * 1265 * loc 1266 * al 1267 * 1268 * add 1269 * re 1270 * ss 1271 * */ 1272 continue; 1273 } 1274 } 1275 if ((site_scope == 0) && 1276 (IN6_IS_ADDR_SITELOCAL(&sin6->sin6_addr))) { 1277 continue; 1278 } 1279 memcpy(sas, sin6, sizeof(*sin6)); 1280 ((struct sockaddr_in6 *)sas)->sin6_port = inp->sctp_lport; 1281 sas = (struct sockaddr_storage *)((caddr_t)sas + sizeof(*sin6)); 1282 actual += sizeof(*sin6); 1283 if (actual >= limit) { 1284 return (actual); 1285 } 1286 } else { 1287 continue; 1288 } 1289 break; 1290 #endif 1291 default: 1292 /* TSNH */ 1293 break; 1294 } 1295 } 1296 } 1297 } else { 1298 struct sctp_laddr *laddr; 1299 1300 LIST_FOREACH(laddr, &inp->sctp_addr_list, sctp_nxt_addr) { 1301 if (stcb) { 1302 if (sctp_is_addr_restricted(stcb, laddr->ifa)) { 1303 continue; 1304 } 1305 } 1306 if (sctp_fill_user_address(sas, &laddr->ifa->address.sa)) 1307 continue; 1308 1309 ((struct sockaddr_in6 *)sas)->sin6_port = inp->sctp_lport; 1310 sas = (struct sockaddr_storage *)((caddr_t)sas + 1311 laddr->ifa->address.sa.sa_len); 1312 actual += laddr->ifa->address.sa.sa_len; 1313 if (actual >= limit) { 1314 return (actual); 1315 } 1316 } 1317 } 1318 return (actual); 1319 } 1320 1321 static size_t 1322 sctp_fill_up_addresses(struct sctp_inpcb *inp, 1323 struct sctp_tcb *stcb, 1324 size_t limit, 1325 struct sockaddr_storage *sas) 1326 { 1327 size_t size = 0; 1328 1329 SCTP_IPI_ADDR_RLOCK(); 1330 /* fill up addresses for the endpoint's default vrf */ 1331 size = sctp_fill_up_addresses_vrf(inp, stcb, limit, sas, 1332 inp->def_vrf_id); 1333 SCTP_IPI_ADDR_RUNLOCK(); 1334 return (size); 1335 } 1336 1337 /* 1338 * NOTE: assumes addr lock is held 1339 */ 1340 static int 1341 sctp_count_max_addresses_vrf(struct sctp_inpcb *inp, uint32_t vrf_id) 1342 { 1343 int cnt = 0; 1344 struct sctp_vrf *vrf = NULL; 1345 1346 /* 1347 * In both sub-set bound an bound_all cases we return the MAXIMUM 1348 * number of addresses that you COULD get. In reality the sub-set 1349 * bound may have an exclusion list for a given TCB OR in the 1350 * bound-all case a TCB may NOT include the loopback or other 1351 * addresses as well. 1352 */ 1353 vrf = sctp_find_vrf(vrf_id); 1354 if (vrf == NULL) { 1355 return (0); 1356 } 1357 if (inp->sctp_flags & SCTP_PCB_FLAGS_BOUNDALL) { 1358 struct sctp_ifn *sctp_ifn; 1359 struct sctp_ifa *sctp_ifa; 1360 1361 LIST_FOREACH(sctp_ifn, &vrf->ifnlist, next_ifn) { 1362 LIST_FOREACH(sctp_ifa, &sctp_ifn->ifalist, next_ifa) { 1363 /* Count them if they are the right type */ 1364 switch (sctp_ifa->address.sa.sa_family) { 1365 #ifdef INET 1366 case AF_INET: 1367 if (sctp_is_feature_on(inp, SCTP_PCB_FLAGS_NEEDS_MAPPED_V4)) 1368 cnt += sizeof(struct sockaddr_in6); 1369 else 1370 cnt += sizeof(struct sockaddr_in); 1371 break; 1372 #endif 1373 #ifdef INET6 1374 case AF_INET6: 1375 cnt += sizeof(struct sockaddr_in6); 1376 break; 1377 #endif 1378 default: 1379 break; 1380 } 1381 } 1382 } 1383 } else { 1384 struct sctp_laddr *laddr; 1385 1386 LIST_FOREACH(laddr, &inp->sctp_addr_list, sctp_nxt_addr) { 1387 switch (laddr->ifa->address.sa.sa_family) { 1388 #ifdef INET 1389 case AF_INET: 1390 if (sctp_is_feature_on(inp, SCTP_PCB_FLAGS_NEEDS_MAPPED_V4)) 1391 cnt += sizeof(struct sockaddr_in6); 1392 else 1393 cnt += sizeof(struct sockaddr_in); 1394 break; 1395 #endif 1396 #ifdef INET6 1397 case AF_INET6: 1398 cnt += sizeof(struct sockaddr_in6); 1399 break; 1400 #endif 1401 default: 1402 break; 1403 } 1404 } 1405 } 1406 return (cnt); 1407 } 1408 1409 static int 1410 sctp_count_max_addresses(struct sctp_inpcb *inp) 1411 { 1412 int cnt = 0; 1413 1414 SCTP_IPI_ADDR_RLOCK(); 1415 /* count addresses for the endpoint's default VRF */ 1416 cnt = sctp_count_max_addresses_vrf(inp, inp->def_vrf_id); 1417 SCTP_IPI_ADDR_RUNLOCK(); 1418 return (cnt); 1419 } 1420 1421 static int 1422 sctp_do_connect_x(struct socket *so, struct sctp_inpcb *inp, void *optval, 1423 size_t optsize, void *p, int delay) 1424 { 1425 int error = 0; 1426 int creat_lock_on = 0; 1427 struct sctp_tcb *stcb = NULL; 1428 struct sockaddr *sa; 1429 int num_v6 = 0, num_v4 = 0, *totaddrp, totaddr; 1430 uint32_t vrf_id; 1431 int bad_addresses = 0; 1432 sctp_assoc_t *a_id; 1433 1434 SCTPDBG(SCTP_DEBUG_PCB1, "Connectx called\n"); 1435 1436 if ((inp->sctp_flags & SCTP_PCB_FLAGS_TCPTYPE) && 1437 (inp->sctp_flags & SCTP_PCB_FLAGS_CONNECTED)) { 1438 /* We are already connected AND the TCP model */ 1439 SCTP_LTRACE_ERR_RET(inp, stcb, NULL, SCTP_FROM_SCTP_USRREQ, EADDRINUSE); 1440 return (EADDRINUSE); 1441 } 1442 if ((inp->sctp_flags & SCTP_PCB_FLAGS_IN_TCPPOOL) && 1443 (sctp_is_feature_off(inp, SCTP_PCB_FLAGS_PORTREUSE))) { 1444 SCTP_LTRACE_ERR_RET(inp, stcb, NULL, SCTP_FROM_SCTP_USRREQ, EINVAL); 1445 return (EINVAL); 1446 } 1447 if (inp->sctp_flags & SCTP_PCB_FLAGS_CONNECTED) { 1448 SCTP_INP_RLOCK(inp); 1449 stcb = LIST_FIRST(&inp->sctp_asoc_list); 1450 SCTP_INP_RUNLOCK(inp); 1451 } 1452 if (stcb) { 1453 SCTP_LTRACE_ERR_RET(inp, stcb, NULL, SCTP_FROM_SCTP_USRREQ, EALREADY); 1454 return (EALREADY); 1455 } 1456 SCTP_INP_INCR_REF(inp); 1457 SCTP_ASOC_CREATE_LOCK(inp); 1458 creat_lock_on = 1; 1459 if ((inp->sctp_flags & SCTP_PCB_FLAGS_SOCKET_ALLGONE) || 1460 (inp->sctp_flags & SCTP_PCB_FLAGS_SOCKET_GONE)) { 1461 SCTP_LTRACE_ERR_RET(inp, stcb, NULL, SCTP_FROM_SCTP_USRREQ, EFAULT); 1462 error = EFAULT; 1463 goto out_now; 1464 } 1465 totaddrp = (int *)optval; 1466 totaddr = *totaddrp; 1467 sa = (struct sockaddr *)(totaddrp + 1); 1468 stcb = sctp_connectx_helper_find(inp, sa, &totaddr, &num_v4, &num_v6, &error, (optsize - sizeof(int)), &bad_addresses); 1469 if ((stcb != NULL) || bad_addresses) { 1470 /* Already have or am bring up an association */ 1471 SCTP_ASOC_CREATE_UNLOCK(inp); 1472 creat_lock_on = 0; 1473 if (stcb) 1474 SCTP_TCB_UNLOCK(stcb); 1475 if (bad_addresses == 0) { 1476 SCTP_LTRACE_ERR_RET(inp, NULL, NULL, SCTP_FROM_SCTP_USRREQ, EALREADY); 1477 error = EALREADY; 1478 } 1479 goto out_now; 1480 } 1481 #ifdef INET6 1482 if (((inp->sctp_flags & SCTP_PCB_FLAGS_BOUND_V6) == 0) && 1483 (num_v6 > 0)) { 1484 error = EINVAL; 1485 goto out_now; 1486 } 1487 if ((inp->sctp_flags & SCTP_PCB_FLAGS_BOUND_V6) && 1488 (num_v4 > 0)) { 1489 struct in6pcb *inp6; 1490 1491 inp6 = (struct in6pcb *)inp; 1492 if (SCTP_IPV6_V6ONLY(inp6)) { 1493 /* 1494 * if IPV6_V6ONLY flag, ignore connections destined 1495 * to a v4 addr or v4-mapped addr 1496 */ 1497 SCTP_LTRACE_ERR_RET(inp, stcb, NULL, SCTP_FROM_SCTP_USRREQ, EINVAL); 1498 error = EINVAL; 1499 goto out_now; 1500 } 1501 } 1502 #endif /* INET6 */ 1503 if ((inp->sctp_flags & SCTP_PCB_FLAGS_UNBOUND) == 1504 SCTP_PCB_FLAGS_UNBOUND) { 1505 /* Bind a ephemeral port */ 1506 error = sctp_inpcb_bind(so, NULL, NULL, p); 1507 if (error) { 1508 goto out_now; 1509 } 1510 } 1511 /* FIX ME: do we want to pass in a vrf on the connect call? */ 1512 vrf_id = inp->def_vrf_id; 1513 1514 1515 /* We are GOOD to go */ 1516 stcb = sctp_aloc_assoc(inp, sa, &error, 0, vrf_id, 1517 (struct thread *)p 1518 ); 1519 if (stcb == NULL) { 1520 /* Gak! no memory */ 1521 goto out_now; 1522 } 1523 if (stcb->sctp_ep->sctp_flags & SCTP_PCB_FLAGS_TCPTYPE) { 1524 stcb->sctp_ep->sctp_flags |= SCTP_PCB_FLAGS_CONNECTED; 1525 /* Set the connected flag so we can queue data */ 1526 soisconnecting(so); 1527 } 1528 SCTP_SET_STATE(&stcb->asoc, SCTP_STATE_COOKIE_WAIT); 1529 /* move to second address */ 1530 switch (sa->sa_family) { 1531 #ifdef INET 1532 case AF_INET: 1533 sa = (struct sockaddr *)((caddr_t)sa + sizeof(struct sockaddr_in)); 1534 break; 1535 #endif 1536 #ifdef INET6 1537 case AF_INET6: 1538 sa = (struct sockaddr *)((caddr_t)sa + sizeof(struct sockaddr_in6)); 1539 break; 1540 #endif 1541 default: 1542 break; 1543 } 1544 1545 error = 0; 1546 sctp_connectx_helper_add(stcb, sa, (totaddr - 1), &error); 1547 /* Fill in the return id */ 1548 if (error) { 1549 (void)sctp_free_assoc(inp, stcb, SCTP_PCBFREE_FORCE, SCTP_FROM_SCTP_USRREQ + SCTP_LOC_6); 1550 goto out_now; 1551 } 1552 a_id = (sctp_assoc_t *) optval; 1553 *a_id = sctp_get_associd(stcb); 1554 1555 /* initialize authentication parameters for the assoc */ 1556 sctp_initialize_auth_params(inp, stcb); 1557 1558 if (delay) { 1559 /* doing delayed connection */ 1560 stcb->asoc.delayed_connection = 1; 1561 sctp_timer_start(SCTP_TIMER_TYPE_INIT, inp, stcb, stcb->asoc.primary_destination); 1562 } else { 1563 (void)SCTP_GETTIME_TIMEVAL(&stcb->asoc.time_entered); 1564 sctp_send_initiate(inp, stcb, SCTP_SO_LOCKED); 1565 } 1566 SCTP_TCB_UNLOCK(stcb); 1567 if (stcb->sctp_ep->sctp_flags & SCTP_PCB_FLAGS_TCPTYPE) { 1568 stcb->sctp_ep->sctp_flags |= SCTP_PCB_FLAGS_CONNECTED; 1569 /* Set the connected flag so we can queue data */ 1570 soisconnecting(so); 1571 } 1572 out_now: 1573 if (creat_lock_on) { 1574 SCTP_ASOC_CREATE_UNLOCK(inp); 1575 } 1576 SCTP_INP_DECR_REF(inp); 1577 return (error); 1578 } 1579 1580 #define SCTP_FIND_STCB(inp, stcb, assoc_id) { \ 1581 if ((inp->sctp_flags & SCTP_PCB_FLAGS_TCPTYPE) ||\ 1582 (inp->sctp_flags & SCTP_PCB_FLAGS_IN_TCPPOOL)) { \ 1583 SCTP_INP_RLOCK(inp); \ 1584 stcb = LIST_FIRST(&inp->sctp_asoc_list); \ 1585 if (stcb) { \ 1586 SCTP_TCB_LOCK(stcb); \ 1587 } \ 1588 SCTP_INP_RUNLOCK(inp); \ 1589 } else if (assoc_id > SCTP_ALL_ASSOC) { \ 1590 stcb = sctp_findassociation_ep_asocid(inp, assoc_id, 1); \ 1591 if (stcb == NULL) { \ 1592 SCTP_LTRACE_ERR_RET(inp, NULL, NULL, SCTP_FROM_SCTP_USRREQ, ENOENT); \ 1593 error = ENOENT; \ 1594 break; \ 1595 } \ 1596 } else { \ 1597 stcb = NULL; \ 1598 } \ 1599 } 1600 1601 1602 #define SCTP_CHECK_AND_CAST(destp, srcp, type, size) {\ 1603 if (size < sizeof(type)) { \ 1604 SCTP_LTRACE_ERR_RET(inp, NULL, NULL, SCTP_FROM_SCTP_USRREQ, EINVAL); \ 1605 error = EINVAL; \ 1606 break; \ 1607 } else { \ 1608 destp = (type *)srcp; \ 1609 } \ 1610 } 1611 1612 static int 1613 sctp_getopt(struct socket *so, int optname, void *optval, size_t *optsize, 1614 void *p) 1615 { 1616 struct sctp_inpcb *inp = NULL; 1617 int error, val = 0; 1618 struct sctp_tcb *stcb = NULL; 1619 1620 if (optval == NULL) { 1621 SCTP_LTRACE_ERR_RET(inp, NULL, NULL, SCTP_FROM_SCTP_USRREQ, EINVAL); 1622 return (EINVAL); 1623 } 1624 inp = (struct sctp_inpcb *)so->so_pcb; 1625 if (inp == NULL) { 1626 SCTP_LTRACE_ERR_RET(inp, NULL, NULL, SCTP_FROM_SCTP_USRREQ, EINVAL); 1627 return EINVAL; 1628 } 1629 error = 0; 1630 1631 switch (optname) { 1632 case SCTP_NODELAY: 1633 case SCTP_AUTOCLOSE: 1634 case SCTP_EXPLICIT_EOR: 1635 case SCTP_AUTO_ASCONF: 1636 case SCTP_DISABLE_FRAGMENTS: 1637 case SCTP_I_WANT_MAPPED_V4_ADDR: 1638 case SCTP_USE_EXT_RCVINFO: 1639 SCTP_INP_RLOCK(inp); 1640 switch (optname) { 1641 case SCTP_DISABLE_FRAGMENTS: 1642 val = sctp_is_feature_on(inp, SCTP_PCB_FLAGS_NO_FRAGMENT); 1643 break; 1644 case SCTP_I_WANT_MAPPED_V4_ADDR: 1645 val = sctp_is_feature_on(inp, SCTP_PCB_FLAGS_NEEDS_MAPPED_V4); 1646 break; 1647 case SCTP_AUTO_ASCONF: 1648 if (inp->sctp_flags & SCTP_PCB_FLAGS_BOUNDALL) { 1649 /* only valid for bound all sockets */ 1650 val = sctp_is_feature_on(inp, SCTP_PCB_FLAGS_AUTO_ASCONF); 1651 } else { 1652 SCTP_LTRACE_ERR_RET(inp, NULL, NULL, SCTP_FROM_SCTP_USRREQ, EINVAL); 1653 error = EINVAL; 1654 goto flags_out; 1655 } 1656 break; 1657 case SCTP_EXPLICIT_EOR: 1658 val = sctp_is_feature_on(inp, SCTP_PCB_FLAGS_EXPLICIT_EOR); 1659 break; 1660 case SCTP_NODELAY: 1661 val = sctp_is_feature_on(inp, SCTP_PCB_FLAGS_NODELAY); 1662 break; 1663 case SCTP_USE_EXT_RCVINFO: 1664 val = sctp_is_feature_on(inp, SCTP_PCB_FLAGS_EXT_RCVINFO); 1665 break; 1666 case SCTP_AUTOCLOSE: 1667 if (sctp_is_feature_on(inp, SCTP_PCB_FLAGS_AUTOCLOSE)) 1668 val = TICKS_TO_SEC(inp->sctp_ep.auto_close_time); 1669 else 1670 val = 0; 1671 break; 1672 1673 default: 1674 SCTP_LTRACE_ERR_RET(inp, NULL, NULL, SCTP_FROM_SCTP_USRREQ, ENOPROTOOPT); 1675 error = ENOPROTOOPT; 1676 } /* end switch (sopt->sopt_name) */ 1677 if (*optsize < sizeof(val)) { 1678 SCTP_LTRACE_ERR_RET(inp, NULL, NULL, SCTP_FROM_SCTP_USRREQ, EINVAL); 1679 error = EINVAL; 1680 } 1681 flags_out: 1682 SCTP_INP_RUNLOCK(inp); 1683 if (error == 0) { 1684 /* return the option value */ 1685 *(int *)optval = val; 1686 *optsize = sizeof(val); 1687 } 1688 break; 1689 case SCTP_GET_PACKET_LOG: 1690 { 1691 #ifdef SCTP_PACKET_LOGGING 1692 uint8_t *target; 1693 int ret; 1694 1695 SCTP_CHECK_AND_CAST(target, optval, uint8_t, *optsize); 1696 ret = sctp_copy_out_packet_log(target, (int)*optsize); 1697 *optsize = ret; 1698 #else 1699 SCTP_LTRACE_ERR_RET(inp, NULL, NULL, SCTP_FROM_SCTP_USRREQ, EOPNOTSUPP); 1700 error = EOPNOTSUPP; 1701 #endif 1702 break; 1703 } 1704 case SCTP_REUSE_PORT: 1705 { 1706 uint32_t *value; 1707 1708 if ((inp->sctp_flags & SCTP_PCB_FLAGS_UDPTYPE)) { 1709 /* Can't do this for a 1-m socket */ 1710 error = EINVAL; 1711 break; 1712 } 1713 SCTP_CHECK_AND_CAST(value, optval, uint32_t, *optsize); 1714 *value = sctp_is_feature_on(inp, SCTP_PCB_FLAGS_PORTREUSE); 1715 *optsize = sizeof(uint32_t); 1716 break; 1717 } 1718 case SCTP_PARTIAL_DELIVERY_POINT: 1719 { 1720 uint32_t *value; 1721 1722 SCTP_CHECK_AND_CAST(value, optval, uint32_t, *optsize); 1723 *value = inp->partial_delivery_point; 1724 *optsize = sizeof(uint32_t); 1725 break; 1726 } 1727 case SCTP_FRAGMENT_INTERLEAVE: 1728 { 1729 uint32_t *value; 1730 1731 SCTP_CHECK_AND_CAST(value, optval, uint32_t, *optsize); 1732 if (sctp_is_feature_on(inp, SCTP_PCB_FLAGS_FRAG_INTERLEAVE)) { 1733 if (sctp_is_feature_on(inp, SCTP_PCB_FLAGS_INTERLEAVE_STRMS)) { 1734 *value = SCTP_FRAG_LEVEL_2; 1735 } else { 1736 *value = SCTP_FRAG_LEVEL_1; 1737 } 1738 } else { 1739 *value = SCTP_FRAG_LEVEL_0; 1740 } 1741 *optsize = sizeof(uint32_t); 1742 break; 1743 } 1744 case SCTP_CMT_ON_OFF: 1745 { 1746 struct sctp_assoc_value *av; 1747 1748 SCTP_CHECK_AND_CAST(av, optval, struct sctp_assoc_value, *optsize); 1749 SCTP_FIND_STCB(inp, stcb, av->assoc_id); 1750 if (stcb) { 1751 av->assoc_value = stcb->asoc.sctp_cmt_on_off; 1752 SCTP_TCB_UNLOCK(stcb); 1753 } else { 1754 if ((inp->sctp_flags & SCTP_PCB_FLAGS_TCPTYPE) || 1755 (inp->sctp_flags & SCTP_PCB_FLAGS_IN_TCPPOOL) || 1756 (av->assoc_id == SCTP_FUTURE_ASSOC)) { 1757 SCTP_INP_RLOCK(inp); 1758 av->assoc_value = inp->sctp_cmt_on_off; 1759 SCTP_INP_RUNLOCK(inp); 1760 } else { 1761 SCTP_LTRACE_ERR_RET(inp, NULL, NULL, SCTP_FROM_SCTP_USRREQ, EINVAL); 1762 error = EINVAL; 1763 } 1764 } 1765 if (error == 0) { 1766 *optsize = sizeof(struct sctp_assoc_value); 1767 } 1768 break; 1769 } 1770 case SCTP_PLUGGABLE_CC: 1771 { 1772 struct sctp_assoc_value *av; 1773 1774 SCTP_CHECK_AND_CAST(av, optval, struct sctp_assoc_value, *optsize); 1775 SCTP_FIND_STCB(inp, stcb, av->assoc_id); 1776 if (stcb) { 1777 av->assoc_value = stcb->asoc.congestion_control_module; 1778 SCTP_TCB_UNLOCK(stcb); 1779 } else { 1780 if ((inp->sctp_flags & SCTP_PCB_FLAGS_TCPTYPE) || 1781 (inp->sctp_flags & SCTP_PCB_FLAGS_IN_TCPPOOL) || 1782 (av->assoc_id == SCTP_FUTURE_ASSOC)) { 1783 SCTP_INP_RLOCK(inp); 1784 av->assoc_value = inp->sctp_ep.sctp_default_cc_module; 1785 SCTP_INP_RUNLOCK(inp); 1786 } else { 1787 SCTP_LTRACE_ERR_RET(inp, NULL, NULL, SCTP_FROM_SCTP_USRREQ, EINVAL); 1788 error = EINVAL; 1789 } 1790 } 1791 if (error == 0) { 1792 *optsize = sizeof(struct sctp_assoc_value); 1793 } 1794 break; 1795 } 1796 case SCTP_CC_OPTION: 1797 { 1798 struct sctp_cc_option *cc_opt; 1799 1800 SCTP_CHECK_AND_CAST(cc_opt, optval, struct sctp_cc_option, *optsize); 1801 SCTP_FIND_STCB(inp, stcb, cc_opt->aid_value.assoc_id); 1802 if (stcb == NULL) { 1803 error = EINVAL; 1804 } else { 1805 if (stcb->asoc.cc_functions.sctp_cwnd_socket_option == NULL) { 1806 error = ENOTSUP; 1807 } else { 1808 error = (*stcb->asoc.cc_functions.sctp_cwnd_socket_option) (stcb, 0, cc_opt); 1809 *optsize = sizeof(struct sctp_cc_option); 1810 } 1811 SCTP_TCB_UNLOCK(stcb); 1812 } 1813 break; 1814 } 1815 case SCTP_PLUGGABLE_SS: 1816 { 1817 struct sctp_assoc_value *av; 1818 1819 SCTP_CHECK_AND_CAST(av, optval, struct sctp_assoc_value, *optsize); 1820 SCTP_FIND_STCB(inp, stcb, av->assoc_id); 1821 if (stcb) { 1822 av->assoc_value = stcb->asoc.stream_scheduling_module; 1823 SCTP_TCB_UNLOCK(stcb); 1824 } else { 1825 if ((inp->sctp_flags & SCTP_PCB_FLAGS_TCPTYPE) || 1826 (inp->sctp_flags & SCTP_PCB_FLAGS_IN_TCPPOOL) || 1827 (av->assoc_id == SCTP_FUTURE_ASSOC)) { 1828 SCTP_INP_RLOCK(inp); 1829 av->assoc_value = inp->sctp_ep.sctp_default_ss_module; 1830 SCTP_INP_RUNLOCK(inp); 1831 } else { 1832 SCTP_LTRACE_ERR_RET(inp, NULL, NULL, SCTP_FROM_SCTP_USRREQ, EINVAL); 1833 error = EINVAL; 1834 } 1835 } 1836 if (error == 0) { 1837 *optsize = sizeof(struct sctp_assoc_value); 1838 } 1839 break; 1840 } 1841 case SCTP_SS_VALUE: 1842 { 1843 struct sctp_stream_value *av; 1844 1845 SCTP_CHECK_AND_CAST(av, optval, struct sctp_stream_value, *optsize); 1846 SCTP_FIND_STCB(inp, stcb, av->assoc_id); 1847 if (stcb) { 1848 if (stcb->asoc.ss_functions.sctp_ss_get_value(stcb, &stcb->asoc, &stcb->asoc.strmout[av->stream_id], 1849 &av->stream_value) < 0) { 1850 SCTP_LTRACE_ERR_RET(inp, NULL, NULL, SCTP_FROM_SCTP_USRREQ, EINVAL); 1851 error = EINVAL; 1852 } else { 1853 *optsize = sizeof(struct sctp_stream_value); 1854 } 1855 SCTP_TCB_UNLOCK(stcb); 1856 } else { 1857 /* 1858 * Can't get stream value without 1859 * association 1860 */ 1861 SCTP_LTRACE_ERR_RET(inp, NULL, NULL, SCTP_FROM_SCTP_USRREQ, EINVAL); 1862 error = EINVAL; 1863 } 1864 break; 1865 } 1866 case SCTP_GET_ADDR_LEN: 1867 { 1868 struct sctp_assoc_value *av; 1869 1870 SCTP_CHECK_AND_CAST(av, optval, struct sctp_assoc_value, *optsize); 1871 error = EINVAL; 1872 #ifdef INET 1873 if (av->assoc_value == AF_INET) { 1874 av->assoc_value = sizeof(struct sockaddr_in); 1875 error = 0; 1876 } 1877 #endif 1878 #ifdef INET6 1879 if (av->assoc_value == AF_INET6) { 1880 av->assoc_value = sizeof(struct sockaddr_in6); 1881 error = 0; 1882 } 1883 #endif 1884 if (error) { 1885 SCTP_LTRACE_ERR_RET(inp, NULL, NULL, SCTP_FROM_SCTP_USRREQ, error); 1886 } else { 1887 *optsize = sizeof(struct sctp_assoc_value); 1888 } 1889 break; 1890 } 1891 case SCTP_GET_ASSOC_NUMBER: 1892 { 1893 uint32_t *value, cnt; 1894 1895 SCTP_CHECK_AND_CAST(value, optval, uint32_t, *optsize); 1896 cnt = 0; 1897 SCTP_INP_RLOCK(inp); 1898 LIST_FOREACH(stcb, &inp->sctp_asoc_list, sctp_tcblist) { 1899 cnt++; 1900 } 1901 SCTP_INP_RUNLOCK(inp); 1902 *value = cnt; 1903 *optsize = sizeof(uint32_t); 1904 break; 1905 } 1906 case SCTP_GET_ASSOC_ID_LIST: 1907 { 1908 struct sctp_assoc_ids *ids; 1909 unsigned int at, limit; 1910 1911 SCTP_CHECK_AND_CAST(ids, optval, struct sctp_assoc_ids, *optsize); 1912 at = 0; 1913 limit = (*optsize - sizeof(uint32_t)) / sizeof(sctp_assoc_t); 1914 SCTP_INP_RLOCK(inp); 1915 LIST_FOREACH(stcb, &inp->sctp_asoc_list, sctp_tcblist) { 1916 if (at < limit) { 1917 ids->gaids_assoc_id[at++] = sctp_get_associd(stcb); 1918 } else { 1919 error = EINVAL; 1920 SCTP_LTRACE_ERR_RET(inp, NULL, NULL, SCTP_FROM_SCTP_USRREQ, error); 1921 break; 1922 } 1923 } 1924 SCTP_INP_RUNLOCK(inp); 1925 if (error == 0) { 1926 ids->gaids_number_of_ids = at; 1927 *optsize = ((at * sizeof(sctp_assoc_t)) + sizeof(uint32_t)); 1928 } 1929 break; 1930 } 1931 case SCTP_CONTEXT: 1932 { 1933 struct sctp_assoc_value *av; 1934 1935 SCTP_CHECK_AND_CAST(av, optval, struct sctp_assoc_value, *optsize); 1936 SCTP_FIND_STCB(inp, stcb, av->assoc_id); 1937 1938 if (stcb) { 1939 av->assoc_value = stcb->asoc.context; 1940 SCTP_TCB_UNLOCK(stcb); 1941 } else { 1942 if ((inp->sctp_flags & SCTP_PCB_FLAGS_TCPTYPE) || 1943 (inp->sctp_flags & SCTP_PCB_FLAGS_IN_TCPPOOL) || 1944 (av->assoc_id == SCTP_FUTURE_ASSOC)) { 1945 SCTP_INP_RLOCK(inp); 1946 av->assoc_value = inp->sctp_context; 1947 SCTP_INP_RUNLOCK(inp); 1948 } else { 1949 SCTP_LTRACE_ERR_RET(inp, NULL, NULL, SCTP_FROM_SCTP_USRREQ, EINVAL); 1950 error = EINVAL; 1951 } 1952 } 1953 if (error == 0) { 1954 *optsize = sizeof(struct sctp_assoc_value); 1955 } 1956 break; 1957 } 1958 case SCTP_VRF_ID: 1959 { 1960 uint32_t *default_vrfid; 1961 1962 SCTP_CHECK_AND_CAST(default_vrfid, optval, uint32_t, *optsize); 1963 *default_vrfid = inp->def_vrf_id; 1964 *optsize = sizeof(uint32_t); 1965 break; 1966 } 1967 case SCTP_GET_ASOC_VRF: 1968 { 1969 struct sctp_assoc_value *id; 1970 1971 SCTP_CHECK_AND_CAST(id, optval, struct sctp_assoc_value, *optsize); 1972 SCTP_FIND_STCB(inp, stcb, id->assoc_id); 1973 if (stcb == NULL) { 1974 error = EINVAL; 1975 SCTP_LTRACE_ERR_RET(inp, NULL, NULL, SCTP_FROM_SCTP_USRREQ, error); 1976 } else { 1977 id->assoc_value = stcb->asoc.vrf_id; 1978 *optsize = sizeof(struct sctp_assoc_value); 1979 } 1980 break; 1981 } 1982 case SCTP_GET_VRF_IDS: 1983 { 1984 SCTP_LTRACE_ERR_RET(inp, NULL, NULL, SCTP_FROM_SCTP_USRREQ, EOPNOTSUPP); 1985 error = EOPNOTSUPP; 1986 break; 1987 } 1988 case SCTP_GET_NONCE_VALUES: 1989 { 1990 struct sctp_get_nonce_values *gnv; 1991 1992 SCTP_CHECK_AND_CAST(gnv, optval, struct sctp_get_nonce_values, *optsize); 1993 SCTP_FIND_STCB(inp, stcb, gnv->gn_assoc_id); 1994 1995 if (stcb) { 1996 gnv->gn_peers_tag = stcb->asoc.peer_vtag; 1997 gnv->gn_local_tag = stcb->asoc.my_vtag; 1998 SCTP_TCB_UNLOCK(stcb); 1999 *optsize = sizeof(struct sctp_get_nonce_values); 2000 } else { 2001 SCTP_LTRACE_ERR_RET(inp, NULL, NULL, SCTP_FROM_SCTP_USRREQ, ENOTCONN); 2002 error = ENOTCONN; 2003 } 2004 break; 2005 } 2006 case SCTP_DELAYED_SACK: 2007 { 2008 struct sctp_sack_info *sack; 2009 2010 SCTP_CHECK_AND_CAST(sack, optval, struct sctp_sack_info, *optsize); 2011 SCTP_FIND_STCB(inp, stcb, sack->sack_assoc_id); 2012 if (stcb) { 2013 sack->sack_delay = stcb->asoc.delayed_ack; 2014 sack->sack_freq = stcb->asoc.sack_freq; 2015 SCTP_TCB_UNLOCK(stcb); 2016 } else { 2017 if ((inp->sctp_flags & SCTP_PCB_FLAGS_TCPTYPE) || 2018 (inp->sctp_flags & SCTP_PCB_FLAGS_IN_TCPPOOL) || 2019 (sack->sack_assoc_id == SCTP_FUTURE_ASSOC)) { 2020 SCTP_INP_RLOCK(inp); 2021 sack->sack_delay = TICKS_TO_MSEC(inp->sctp_ep.sctp_timeoutticks[SCTP_TIMER_RECV]); 2022 sack->sack_freq = inp->sctp_ep.sctp_sack_freq; 2023 SCTP_INP_RUNLOCK(inp); 2024 } else { 2025 SCTP_LTRACE_ERR_RET(inp, NULL, NULL, SCTP_FROM_SCTP_USRREQ, EINVAL); 2026 error = EINVAL; 2027 } 2028 } 2029 if (error == 0) { 2030 *optsize = sizeof(struct sctp_sack_info); 2031 } 2032 break; 2033 } 2034 case SCTP_GET_SNDBUF_USE: 2035 { 2036 struct sctp_sockstat *ss; 2037 2038 SCTP_CHECK_AND_CAST(ss, optval, struct sctp_sockstat, *optsize); 2039 SCTP_FIND_STCB(inp, stcb, ss->ss_assoc_id); 2040 2041 if (stcb) { 2042 ss->ss_total_sndbuf = stcb->asoc.total_output_queue_size; 2043 ss->ss_total_recv_buf = (stcb->asoc.size_on_reasm_queue + 2044 stcb->asoc.size_on_all_streams); 2045 SCTP_TCB_UNLOCK(stcb); 2046 *optsize = sizeof(struct sctp_sockstat); 2047 } else { 2048 SCTP_LTRACE_ERR_RET(inp, NULL, NULL, SCTP_FROM_SCTP_USRREQ, ENOTCONN); 2049 error = ENOTCONN; 2050 } 2051 break; 2052 } 2053 case SCTP_MAX_BURST: 2054 { 2055 struct sctp_assoc_value *av; 2056 2057 SCTP_CHECK_AND_CAST(av, optval, struct sctp_assoc_value, *optsize); 2058 SCTP_FIND_STCB(inp, stcb, av->assoc_id); 2059 2060 if (stcb) { 2061 av->assoc_value = stcb->asoc.max_burst; 2062 SCTP_TCB_UNLOCK(stcb); 2063 } else { 2064 if ((inp->sctp_flags & SCTP_PCB_FLAGS_TCPTYPE) || 2065 (inp->sctp_flags & SCTP_PCB_FLAGS_IN_TCPPOOL) || 2066 (av->assoc_id == SCTP_FUTURE_ASSOC)) { 2067 SCTP_INP_RLOCK(inp); 2068 av->assoc_value = inp->sctp_ep.max_burst; 2069 SCTP_INP_RUNLOCK(inp); 2070 } else { 2071 SCTP_LTRACE_ERR_RET(inp, NULL, NULL, SCTP_FROM_SCTP_USRREQ, EINVAL); 2072 error = EINVAL; 2073 } 2074 } 2075 if (error == 0) { 2076 *optsize = sizeof(struct sctp_assoc_value); 2077 } 2078 break; 2079 } 2080 case SCTP_MAXSEG: 2081 { 2082 struct sctp_assoc_value *av; 2083 int ovh; 2084 2085 SCTP_CHECK_AND_CAST(av, optval, struct sctp_assoc_value, *optsize); 2086 SCTP_FIND_STCB(inp, stcb, av->assoc_id); 2087 2088 if (stcb) { 2089 av->assoc_value = sctp_get_frag_point(stcb, &stcb->asoc); 2090 SCTP_TCB_UNLOCK(stcb); 2091 } else { 2092 if ((inp->sctp_flags & SCTP_PCB_FLAGS_TCPTYPE) || 2093 (inp->sctp_flags & SCTP_PCB_FLAGS_IN_TCPPOOL) || 2094 (av->assoc_id == SCTP_FUTURE_ASSOC)) { 2095 SCTP_INP_RLOCK(inp); 2096 if (inp->sctp_flags & SCTP_PCB_FLAGS_BOUND_V6) { 2097 ovh = SCTP_MED_OVERHEAD; 2098 } else { 2099 ovh = SCTP_MED_V4_OVERHEAD; 2100 } 2101 if (inp->sctp_frag_point >= SCTP_DEFAULT_MAXSEGMENT) 2102 av->assoc_value = 0; 2103 else 2104 av->assoc_value = inp->sctp_frag_point - ovh; 2105 SCTP_INP_RUNLOCK(inp); 2106 } else { 2107 SCTP_LTRACE_ERR_RET(inp, NULL, NULL, SCTP_FROM_SCTP_USRREQ, EINVAL); 2108 error = EINVAL; 2109 } 2110 } 2111 if (error == 0) { 2112 *optsize = sizeof(struct sctp_assoc_value); 2113 } 2114 break; 2115 } 2116 case SCTP_GET_STAT_LOG: 2117 error = sctp_fill_stat_log(optval, optsize); 2118 break; 2119 case SCTP_EVENTS: 2120 { 2121 struct sctp_event_subscribe *events; 2122 2123 SCTP_CHECK_AND_CAST(events, optval, struct sctp_event_subscribe, *optsize); 2124 memset(events, 0, sizeof(struct sctp_event_subscribe)); 2125 SCTP_INP_RLOCK(inp); 2126 if (sctp_is_feature_on(inp, SCTP_PCB_FLAGS_RECVDATAIOEVNT)) 2127 events->sctp_data_io_event = 1; 2128 2129 if (sctp_is_feature_on(inp, SCTP_PCB_FLAGS_RECVASSOCEVNT)) 2130 events->sctp_association_event = 1; 2131 2132 if (sctp_is_feature_on(inp, SCTP_PCB_FLAGS_RECVPADDREVNT)) 2133 events->sctp_address_event = 1; 2134 2135 if (sctp_is_feature_on(inp, SCTP_PCB_FLAGS_RECVSENDFAILEVNT)) 2136 events->sctp_send_failure_event = 1; 2137 2138 if (sctp_is_feature_on(inp, SCTP_PCB_FLAGS_RECVPEERERR)) 2139 events->sctp_peer_error_event = 1; 2140 2141 if (sctp_is_feature_on(inp, SCTP_PCB_FLAGS_RECVSHUTDOWNEVNT)) 2142 events->sctp_shutdown_event = 1; 2143 2144 if (sctp_is_feature_on(inp, SCTP_PCB_FLAGS_PDAPIEVNT)) 2145 events->sctp_partial_delivery_event = 1; 2146 2147 if (sctp_is_feature_on(inp, SCTP_PCB_FLAGS_ADAPTATIONEVNT)) 2148 events->sctp_adaptation_layer_event = 1; 2149 2150 if (sctp_is_feature_on(inp, SCTP_PCB_FLAGS_AUTHEVNT)) 2151 events->sctp_authentication_event = 1; 2152 2153 if (sctp_is_feature_on(inp, SCTP_PCB_FLAGS_DRYEVNT)) 2154 events->sctp_sender_dry_event = 1; 2155 2156 if (sctp_is_feature_on(inp, SCTP_PCB_FLAGS_STREAM_RESETEVNT)) 2157 events->sctp_stream_reset_event = 1; 2158 SCTP_INP_RUNLOCK(inp); 2159 *optsize = sizeof(struct sctp_event_subscribe); 2160 break; 2161 } 2162 case SCTP_ADAPTATION_LAYER: 2163 { 2164 uint32_t *value; 2165 2166 SCTP_CHECK_AND_CAST(value, optval, uint32_t, *optsize); 2167 2168 SCTP_INP_RLOCK(inp); 2169 *value = inp->sctp_ep.adaptation_layer_indicator; 2170 SCTP_INP_RUNLOCK(inp); 2171 *optsize = sizeof(uint32_t); 2172 break; 2173 } 2174 case SCTP_SET_INITIAL_DBG_SEQ: 2175 { 2176 uint32_t *value; 2177 2178 SCTP_CHECK_AND_CAST(value, optval, uint32_t, *optsize); 2179 SCTP_INP_RLOCK(inp); 2180 *value = inp->sctp_ep.initial_sequence_debug; 2181 SCTP_INP_RUNLOCK(inp); 2182 *optsize = sizeof(uint32_t); 2183 break; 2184 } 2185 case SCTP_GET_LOCAL_ADDR_SIZE: 2186 { 2187 uint32_t *value; 2188 2189 SCTP_CHECK_AND_CAST(value, optval, uint32_t, *optsize); 2190 SCTP_INP_RLOCK(inp); 2191 *value = sctp_count_max_addresses(inp); 2192 SCTP_INP_RUNLOCK(inp); 2193 *optsize = sizeof(uint32_t); 2194 break; 2195 } 2196 case SCTP_GET_REMOTE_ADDR_SIZE: 2197 { 2198 uint32_t *value; 2199 size_t size; 2200 struct sctp_nets *net; 2201 2202 SCTP_CHECK_AND_CAST(value, optval, uint32_t, *optsize); 2203 /* FIXME MT: change to sctp_assoc_value? */ 2204 SCTP_FIND_STCB(inp, stcb, (sctp_assoc_t) * value); 2205 2206 if (stcb) { 2207 size = 0; 2208 /* Count the sizes */ 2209 TAILQ_FOREACH(net, &stcb->asoc.nets, sctp_next) { 2210 if (sctp_is_feature_on(inp, SCTP_PCB_FLAGS_NEEDS_MAPPED_V4)) { 2211 size += sizeof(struct sockaddr_in6); 2212 } else { 2213 switch (((struct sockaddr *)&net->ro._l_addr)->sa_family) { 2214 #ifdef INET 2215 case AF_INET: 2216 size += sizeof(struct sockaddr_in); 2217 break; 2218 #endif 2219 #ifdef INET6 2220 case AF_INET6: 2221 size += sizeof(struct sockaddr_in6); 2222 break; 2223 #endif 2224 default: 2225 break; 2226 } 2227 } 2228 } 2229 SCTP_TCB_UNLOCK(stcb); 2230 *value = (uint32_t) size; 2231 *optsize = sizeof(uint32_t); 2232 } else { 2233 SCTP_LTRACE_ERR_RET(inp, NULL, NULL, SCTP_FROM_SCTP_USRREQ, ENOTCONN); 2234 error = ENOTCONN; 2235 } 2236 break; 2237 } 2238 case SCTP_GET_PEER_ADDRESSES: 2239 /* 2240 * Get the address information, an array is passed in to 2241 * fill up we pack it. 2242 */ 2243 { 2244 size_t cpsz, left; 2245 struct sockaddr_storage *sas; 2246 struct sctp_nets *net; 2247 struct sctp_getaddresses *saddr; 2248 2249 SCTP_CHECK_AND_CAST(saddr, optval, struct sctp_getaddresses, *optsize); 2250 SCTP_FIND_STCB(inp, stcb, saddr->sget_assoc_id); 2251 2252 if (stcb) { 2253 left = (*optsize) - sizeof(struct sctp_getaddresses); 2254 *optsize = sizeof(struct sctp_getaddresses); 2255 sas = (struct sockaddr_storage *)&saddr->addr[0]; 2256 2257 TAILQ_FOREACH(net, &stcb->asoc.nets, sctp_next) { 2258 if (sctp_is_feature_on(inp, SCTP_PCB_FLAGS_NEEDS_MAPPED_V4)) { 2259 cpsz = sizeof(struct sockaddr_in6); 2260 } else { 2261 switch (((struct sockaddr *)&net->ro._l_addr)->sa_family) { 2262 #ifdef INET 2263 case AF_INET: 2264 cpsz = sizeof(struct sockaddr_in); 2265 break; 2266 #endif 2267 #ifdef INET6 2268 case AF_INET6: 2269 cpsz = sizeof(struct sockaddr_in6); 2270 break; 2271 #endif 2272 default: 2273 cpsz = 0; 2274 break; 2275 } 2276 } 2277 if (cpsz == 0) { 2278 break; 2279 } 2280 if (left < cpsz) { 2281 /* not enough room. */ 2282 break; 2283 } 2284 #if defined(INET) && defined(INET6) 2285 if ((sctp_is_feature_on(inp, SCTP_PCB_FLAGS_NEEDS_MAPPED_V4)) && 2286 (((struct sockaddr *)&net->ro._l_addr)->sa_family == AF_INET)) { 2287 /* Must map the address */ 2288 in6_sin_2_v4mapsin6((struct sockaddr_in *)&net->ro._l_addr, 2289 (struct sockaddr_in6 *)sas); 2290 } else { 2291 #endif 2292 memcpy(sas, &net->ro._l_addr, cpsz); 2293 #if defined(INET) && defined(INET6) 2294 } 2295 #endif 2296 ((struct sockaddr_in *)sas)->sin_port = stcb->rport; 2297 2298 sas = (struct sockaddr_storage *)((caddr_t)sas + cpsz); 2299 left -= cpsz; 2300 *optsize += cpsz; 2301 } 2302 SCTP_TCB_UNLOCK(stcb); 2303 } else { 2304 SCTP_LTRACE_ERR_RET(inp, NULL, NULL, SCTP_FROM_SCTP_USRREQ, ENOENT); 2305 error = ENOENT; 2306 } 2307 break; 2308 } 2309 case SCTP_GET_LOCAL_ADDRESSES: 2310 { 2311 size_t limit, actual; 2312 struct sockaddr_storage *sas; 2313 struct sctp_getaddresses *saddr; 2314 2315 SCTP_CHECK_AND_CAST(saddr, optval, struct sctp_getaddresses, *optsize); 2316 SCTP_FIND_STCB(inp, stcb, saddr->sget_assoc_id); 2317 2318 sas = (struct sockaddr_storage *)&saddr->addr[0]; 2319 limit = *optsize - sizeof(sctp_assoc_t); 2320 actual = sctp_fill_up_addresses(inp, stcb, limit, sas); 2321 if (stcb) { 2322 SCTP_TCB_UNLOCK(stcb); 2323 } 2324 *optsize = sizeof(struct sockaddr_storage) + actual; 2325 break; 2326 } 2327 case SCTP_PEER_ADDR_PARAMS: 2328 { 2329 struct sctp_paddrparams *paddrp; 2330 struct sctp_nets *net; 2331 2332 SCTP_CHECK_AND_CAST(paddrp, optval, struct sctp_paddrparams, *optsize); 2333 SCTP_FIND_STCB(inp, stcb, paddrp->spp_assoc_id); 2334 2335 net = NULL; 2336 if (stcb) { 2337 net = sctp_findnet(stcb, (struct sockaddr *)&paddrp->spp_address); 2338 } else { 2339 /* 2340 * We increment here since 2341 * sctp_findassociation_ep_addr() wil do a 2342 * decrement if it finds the stcb as long as 2343 * the locked tcb (last argument) is NOT a 2344 * TCB.. aka NULL. 2345 */ 2346 SCTP_INP_INCR_REF(inp); 2347 stcb = sctp_findassociation_ep_addr(&inp, (struct sockaddr *)&paddrp->spp_address, &net, NULL, NULL); 2348 if (stcb == NULL) { 2349 SCTP_INP_DECR_REF(inp); 2350 } 2351 } 2352 if (stcb && (net == NULL)) { 2353 struct sockaddr *sa; 2354 2355 sa = (struct sockaddr *)&paddrp->spp_address; 2356 #ifdef INET 2357 if (sa->sa_family == AF_INET) { 2358 struct sockaddr_in *sin; 2359 2360 sin = (struct sockaddr_in *)sa; 2361 if (sin->sin_addr.s_addr) { 2362 error = EINVAL; 2363 SCTP_TCB_UNLOCK(stcb); 2364 SCTP_LTRACE_ERR_RET(inp, NULL, NULL, SCTP_FROM_SCTP_USRREQ, error); 2365 break; 2366 } 2367 } else 2368 #endif 2369 #ifdef INET6 2370 if (sa->sa_family == AF_INET6) { 2371 struct sockaddr_in6 *sin6; 2372 2373 sin6 = (struct sockaddr_in6 *)sa; 2374 if (!IN6_IS_ADDR_UNSPECIFIED(&sin6->sin6_addr)) { 2375 error = EINVAL; 2376 SCTP_TCB_UNLOCK(stcb); 2377 SCTP_LTRACE_ERR_RET(inp, NULL, NULL, SCTP_FROM_SCTP_USRREQ, error); 2378 break; 2379 } 2380 } else 2381 #endif 2382 { 2383 error = EAFNOSUPPORT; 2384 SCTP_TCB_UNLOCK(stcb); 2385 SCTP_LTRACE_ERR_RET(inp, NULL, NULL, SCTP_FROM_SCTP_USRREQ, error); 2386 break; 2387 } 2388 } 2389 if (stcb) { 2390 /* Applies to the specific association */ 2391 paddrp->spp_flags = 0; 2392 if (net) { 2393 int ovh; 2394 2395 if (inp->sctp_flags & SCTP_PCB_FLAGS_BOUND_V6) { 2396 ovh = SCTP_MED_OVERHEAD; 2397 } else { 2398 ovh = SCTP_MED_V4_OVERHEAD; 2399 } 2400 2401 paddrp->spp_hbinterval = net->heart_beat_delay; 2402 paddrp->spp_pathmaxrxt = net->failure_threshold; 2403 paddrp->spp_pathmtu = net->mtu - ovh; 2404 /* get flags for HB */ 2405 if (net->dest_state & SCTP_ADDR_NOHB) { 2406 paddrp->spp_flags |= SPP_HB_DISABLE; 2407 } else { 2408 paddrp->spp_flags |= SPP_HB_ENABLE; 2409 } 2410 /* get flags for PMTU */ 2411 if (net->dest_state & SCTP_ADDR_NO_PMTUD) { 2412 paddrp->spp_flags |= SPP_PMTUD_ENABLE; 2413 } else { 2414 paddrp->spp_flags |= SPP_PMTUD_DISABLE; 2415 } 2416 if (net->dscp & 0x01) { 2417 paddrp->spp_dscp = net->dscp & 0xfc; 2418 paddrp->spp_flags |= SPP_DSCP; 2419 } 2420 #ifdef INET6 2421 if ((net->ro._l_addr.sa.sa_family == AF_INET6) && 2422 (net->flowlabel & 0x80000000)) { 2423 paddrp->spp_ipv6_flowlabel = net->flowlabel & 0x000fffff; 2424 paddrp->spp_flags |= SPP_IPV6_FLOWLABEL; 2425 } 2426 #endif 2427 } else { 2428 /* 2429 * No destination so return default 2430 * value 2431 */ 2432 paddrp->spp_pathmaxrxt = stcb->asoc.def_net_failure; 2433 paddrp->spp_pathmtu = sctp_get_frag_point(stcb, &stcb->asoc); 2434 if (stcb->asoc.default_dscp & 0x01) { 2435 paddrp->spp_dscp = stcb->asoc.default_dscp & 0xfc; 2436 paddrp->spp_flags |= SPP_DSCP; 2437 } 2438 #ifdef INET6 2439 if (stcb->asoc.default_flowlabel & 0x80000000) { 2440 paddrp->spp_ipv6_flowlabel = stcb->asoc.default_flowlabel & 0x000fffff; 2441 paddrp->spp_flags |= SPP_IPV6_FLOWLABEL; 2442 } 2443 #endif 2444 /* default settings should be these */ 2445 if (sctp_stcb_is_feature_on(inp, stcb, SCTP_PCB_FLAGS_DONOT_HEARTBEAT)) { 2446 paddrp->spp_flags |= SPP_HB_DISABLE; 2447 } else { 2448 paddrp->spp_flags |= SPP_HB_ENABLE; 2449 } 2450 if (sctp_stcb_is_feature_on(inp, stcb, SCTP_PCB_FLAGS_DO_NOT_PMTUD)) { 2451 paddrp->spp_flags |= SPP_PMTUD_DISABLE; 2452 } else { 2453 paddrp->spp_flags |= SPP_PMTUD_ENABLE; 2454 } 2455 paddrp->spp_hbinterval = stcb->asoc.heart_beat_delay; 2456 } 2457 paddrp->spp_assoc_id = sctp_get_associd(stcb); 2458 SCTP_TCB_UNLOCK(stcb); 2459 } else { 2460 if ((inp->sctp_flags & SCTP_PCB_FLAGS_TCPTYPE) || 2461 (inp->sctp_flags & SCTP_PCB_FLAGS_IN_TCPPOOL) || 2462 (paddrp->spp_assoc_id == SCTP_FUTURE_ASSOC)) { 2463 /* Use endpoint defaults */ 2464 SCTP_INP_RLOCK(inp); 2465 paddrp->spp_pathmaxrxt = inp->sctp_ep.def_net_failure; 2466 paddrp->spp_hbinterval = TICKS_TO_MSEC(inp->sctp_ep.sctp_timeoutticks[SCTP_TIMER_HEARTBEAT]); 2467 paddrp->spp_assoc_id = SCTP_FUTURE_ASSOC; 2468 /* get inp's default */ 2469 if (inp->sctp_ep.default_dscp & 0x01) { 2470 paddrp->spp_dscp = inp->sctp_ep.default_dscp & 0xfc; 2471 paddrp->spp_flags |= SPP_DSCP; 2472 } 2473 #ifdef INET6 2474 if ((inp->sctp_flags & SCTP_PCB_FLAGS_BOUND_V6) && 2475 (inp->sctp_ep.default_flowlabel & 0x80000000)) { 2476 paddrp->spp_ipv6_flowlabel = inp->sctp_ep.default_flowlabel & 0x000fffff; 2477 paddrp->spp_flags |= SPP_IPV6_FLOWLABEL; 2478 } 2479 #endif 2480 /* can't return this */ 2481 paddrp->spp_pathmtu = 0; 2482 2483 if (sctp_is_feature_off(inp, SCTP_PCB_FLAGS_DONOT_HEARTBEAT)) { 2484 paddrp->spp_flags |= SPP_HB_ENABLE; 2485 } else { 2486 paddrp->spp_flags |= SPP_HB_DISABLE; 2487 } 2488 if (sctp_is_feature_off(inp, SCTP_PCB_FLAGS_DO_NOT_PMTUD)) { 2489 paddrp->spp_flags |= SPP_PMTUD_ENABLE; 2490 } else { 2491 paddrp->spp_flags |= SPP_PMTUD_DISABLE; 2492 } 2493 SCTP_INP_RUNLOCK(inp); 2494 } else { 2495 SCTP_LTRACE_ERR_RET(inp, NULL, NULL, SCTP_FROM_SCTP_USRREQ, EINVAL); 2496 error = EINVAL; 2497 } 2498 } 2499 if (error == 0) { 2500 *optsize = sizeof(struct sctp_paddrparams); 2501 } 2502 break; 2503 } 2504 case SCTP_GET_PEER_ADDR_INFO: 2505 { 2506 struct sctp_paddrinfo *paddri; 2507 struct sctp_nets *net; 2508 2509 SCTP_CHECK_AND_CAST(paddri, optval, struct sctp_paddrinfo, *optsize); 2510 SCTP_FIND_STCB(inp, stcb, paddri->spinfo_assoc_id); 2511 2512 net = NULL; 2513 if (stcb) { 2514 net = sctp_findnet(stcb, (struct sockaddr *)&paddri->spinfo_address); 2515 } else { 2516 /* 2517 * We increment here since 2518 * sctp_findassociation_ep_addr() wil do a 2519 * decrement if it finds the stcb as long as 2520 * the locked tcb (last argument) is NOT a 2521 * TCB.. aka NULL. 2522 */ 2523 SCTP_INP_INCR_REF(inp); 2524 stcb = sctp_findassociation_ep_addr(&inp, (struct sockaddr *)&paddri->spinfo_address, &net, NULL, NULL); 2525 if (stcb == NULL) { 2526 SCTP_INP_DECR_REF(inp); 2527 } 2528 } 2529 2530 if ((stcb) && (net)) { 2531 if (net->dest_state & SCTP_ADDR_UNCONFIRMED) { 2532 /* It's unconfirmed */ 2533 paddri->spinfo_state = SCTP_UNCONFIRMED; 2534 } else if (net->dest_state & SCTP_ADDR_REACHABLE) { 2535 /* It's active */ 2536 paddri->spinfo_state = SCTP_ACTIVE; 2537 } else { 2538 /* It's inactive */ 2539 paddri->spinfo_state = SCTP_INACTIVE; 2540 } 2541 paddri->spinfo_cwnd = net->cwnd; 2542 paddri->spinfo_srtt = net->lastsa >> SCTP_RTT_SHIFT; 2543 paddri->spinfo_rto = net->RTO; 2544 paddri->spinfo_assoc_id = sctp_get_associd(stcb); 2545 paddri->spinfo_mtu = net->mtu; 2546 SCTP_TCB_UNLOCK(stcb); 2547 *optsize = sizeof(struct sctp_paddrinfo); 2548 } else { 2549 if (stcb) { 2550 SCTP_TCB_UNLOCK(stcb); 2551 } 2552 SCTP_LTRACE_ERR_RET(inp, NULL, NULL, SCTP_FROM_SCTP_USRREQ, ENOENT); 2553 error = ENOENT; 2554 } 2555 break; 2556 } 2557 case SCTP_PCB_STATUS: 2558 { 2559 struct sctp_pcbinfo *spcb; 2560 2561 SCTP_CHECK_AND_CAST(spcb, optval, struct sctp_pcbinfo, *optsize); 2562 sctp_fill_pcbinfo(spcb); 2563 *optsize = sizeof(struct sctp_pcbinfo); 2564 break; 2565 } 2566 case SCTP_STATUS: 2567 { 2568 struct sctp_nets *net; 2569 struct sctp_status *sstat; 2570 2571 SCTP_CHECK_AND_CAST(sstat, optval, struct sctp_status, *optsize); 2572 SCTP_FIND_STCB(inp, stcb, sstat->sstat_assoc_id); 2573 2574 if (stcb == NULL) { 2575 SCTP_LTRACE_ERR_RET(inp, NULL, NULL, SCTP_FROM_SCTP_USRREQ, EINVAL); 2576 error = EINVAL; 2577 break; 2578 } 2579 /* 2580 * I think passing the state is fine since 2581 * sctp_constants.h will be available to the user 2582 * land. 2583 */ 2584 sstat->sstat_state = stcb->asoc.state; 2585 sstat->sstat_assoc_id = sctp_get_associd(stcb); 2586 sstat->sstat_rwnd = stcb->asoc.peers_rwnd; 2587 sstat->sstat_unackdata = stcb->asoc.sent_queue_cnt; 2588 /* 2589 * We can't include chunks that have been passed to 2590 * the socket layer. Only things in queue. 2591 */ 2592 sstat->sstat_penddata = (stcb->asoc.cnt_on_reasm_queue + 2593 stcb->asoc.cnt_on_all_streams); 2594 2595 2596 sstat->sstat_instrms = stcb->asoc.streamincnt; 2597 sstat->sstat_outstrms = stcb->asoc.streamoutcnt; 2598 sstat->sstat_fragmentation_point = sctp_get_frag_point(stcb, &stcb->asoc); 2599 memcpy(&sstat->sstat_primary.spinfo_address, 2600 &stcb->asoc.primary_destination->ro._l_addr, 2601 ((struct sockaddr *)(&stcb->asoc.primary_destination->ro._l_addr))->sa_len); 2602 net = stcb->asoc.primary_destination; 2603 ((struct sockaddr_in *)&sstat->sstat_primary.spinfo_address)->sin_port = stcb->rport; 2604 /* 2605 * Again the user can get info from sctp_constants.h 2606 * for what the state of the network is. 2607 */ 2608 if (net->dest_state & SCTP_ADDR_UNCONFIRMED) { 2609 /* It's unconfirmed */ 2610 sstat->sstat_primary.spinfo_state = SCTP_UNCONFIRMED; 2611 } else if (net->dest_state & SCTP_ADDR_REACHABLE) { 2612 /* It's active */ 2613 sstat->sstat_primary.spinfo_state = SCTP_ACTIVE; 2614 } else { 2615 /* It's inactive */ 2616 sstat->sstat_primary.spinfo_state = SCTP_INACTIVE; 2617 } 2618 sstat->sstat_primary.spinfo_cwnd = net->cwnd; 2619 sstat->sstat_primary.spinfo_srtt = net->lastsa >> SCTP_RTT_SHIFT; 2620 sstat->sstat_primary.spinfo_rto = net->RTO; 2621 sstat->sstat_primary.spinfo_mtu = net->mtu; 2622 sstat->sstat_primary.spinfo_assoc_id = sctp_get_associd(stcb); 2623 SCTP_TCB_UNLOCK(stcb); 2624 *optsize = sizeof(struct sctp_status); 2625 break; 2626 } 2627 case SCTP_RTOINFO: 2628 { 2629 struct sctp_rtoinfo *srto; 2630 2631 SCTP_CHECK_AND_CAST(srto, optval, struct sctp_rtoinfo, *optsize); 2632 SCTP_FIND_STCB(inp, stcb, srto->srto_assoc_id); 2633 2634 if (stcb) { 2635 srto->srto_initial = stcb->asoc.initial_rto; 2636 srto->srto_max = stcb->asoc.maxrto; 2637 srto->srto_min = stcb->asoc.minrto; 2638 SCTP_TCB_UNLOCK(stcb); 2639 } else { 2640 if ((inp->sctp_flags & SCTP_PCB_FLAGS_TCPTYPE) || 2641 (inp->sctp_flags & SCTP_PCB_FLAGS_IN_TCPPOOL) || 2642 (srto->srto_assoc_id == SCTP_FUTURE_ASSOC)) { 2643 SCTP_INP_RLOCK(inp); 2644 srto->srto_initial = inp->sctp_ep.initial_rto; 2645 srto->srto_max = inp->sctp_ep.sctp_maxrto; 2646 srto->srto_min = inp->sctp_ep.sctp_minrto; 2647 SCTP_INP_RUNLOCK(inp); 2648 } else { 2649 SCTP_LTRACE_ERR_RET(inp, NULL, NULL, SCTP_FROM_SCTP_USRREQ, EINVAL); 2650 error = EINVAL; 2651 } 2652 } 2653 if (error == 0) { 2654 *optsize = sizeof(struct sctp_rtoinfo); 2655 } 2656 break; 2657 } 2658 case SCTP_TIMEOUTS: 2659 { 2660 struct sctp_timeouts *stimo; 2661 2662 SCTP_CHECK_AND_CAST(stimo, optval, struct sctp_timeouts, *optsize); 2663 SCTP_FIND_STCB(inp, stcb, stimo->stimo_assoc_id); 2664 2665 if (stcb) { 2666 stimo->stimo_init = stcb->asoc.timoinit; 2667 stimo->stimo_data = stcb->asoc.timodata; 2668 stimo->stimo_sack = stcb->asoc.timosack; 2669 stimo->stimo_shutdown = stcb->asoc.timoshutdown; 2670 stimo->stimo_heartbeat = stcb->asoc.timoheartbeat; 2671 stimo->stimo_cookie = stcb->asoc.timocookie; 2672 stimo->stimo_shutdownack = stcb->asoc.timoshutdownack; 2673 SCTP_TCB_UNLOCK(stcb); 2674 *optsize = sizeof(struct sctp_timeouts); 2675 } else { 2676 SCTP_LTRACE_ERR_RET(inp, NULL, NULL, SCTP_FROM_SCTP_USRREQ, EINVAL); 2677 error = EINVAL; 2678 } 2679 break; 2680 } 2681 case SCTP_ASSOCINFO: 2682 { 2683 struct sctp_assocparams *sasoc; 2684 2685 SCTP_CHECK_AND_CAST(sasoc, optval, struct sctp_assocparams, *optsize); 2686 SCTP_FIND_STCB(inp, stcb, sasoc->sasoc_assoc_id); 2687 2688 if (stcb) { 2689 sasoc->sasoc_cookie_life = TICKS_TO_MSEC(stcb->asoc.cookie_life); 2690 sasoc->sasoc_asocmaxrxt = stcb->asoc.max_send_times; 2691 sasoc->sasoc_number_peer_destinations = stcb->asoc.numnets; 2692 sasoc->sasoc_peer_rwnd = stcb->asoc.peers_rwnd; 2693 sasoc->sasoc_local_rwnd = stcb->asoc.my_rwnd; 2694 SCTP_TCB_UNLOCK(stcb); 2695 } else { 2696 if ((inp->sctp_flags & SCTP_PCB_FLAGS_TCPTYPE) || 2697 (inp->sctp_flags & SCTP_PCB_FLAGS_IN_TCPPOOL) || 2698 (sasoc->sasoc_assoc_id == SCTP_FUTURE_ASSOC)) { 2699 SCTP_INP_RLOCK(inp); 2700 sasoc->sasoc_cookie_life = TICKS_TO_MSEC(inp->sctp_ep.def_cookie_life); 2701 sasoc->sasoc_asocmaxrxt = inp->sctp_ep.max_send_times; 2702 sasoc->sasoc_number_peer_destinations = 0; 2703 sasoc->sasoc_peer_rwnd = 0; 2704 sasoc->sasoc_local_rwnd = sbspace(&inp->sctp_socket->so_rcv); 2705 SCTP_INP_RUNLOCK(inp); 2706 } else { 2707 SCTP_LTRACE_ERR_RET(inp, NULL, NULL, SCTP_FROM_SCTP_USRREQ, EINVAL); 2708 error = EINVAL; 2709 } 2710 } 2711 if (error == 0) { 2712 *optsize = sizeof(struct sctp_assocparams); 2713 } 2714 break; 2715 } 2716 case SCTP_DEFAULT_SEND_PARAM: 2717 { 2718 struct sctp_sndrcvinfo *s_info; 2719 2720 SCTP_CHECK_AND_CAST(s_info, optval, struct sctp_sndrcvinfo, *optsize); 2721 SCTP_FIND_STCB(inp, stcb, s_info->sinfo_assoc_id); 2722 2723 if (stcb) { 2724 memcpy(s_info, &stcb->asoc.def_send, sizeof(stcb->asoc.def_send)); 2725 SCTP_TCB_UNLOCK(stcb); 2726 } else { 2727 if ((inp->sctp_flags & SCTP_PCB_FLAGS_TCPTYPE) || 2728 (inp->sctp_flags & SCTP_PCB_FLAGS_IN_TCPPOOL) || 2729 (s_info->sinfo_assoc_id == SCTP_FUTURE_ASSOC)) { 2730 SCTP_INP_RLOCK(inp); 2731 memcpy(s_info, &inp->def_send, sizeof(inp->def_send)); 2732 SCTP_INP_RUNLOCK(inp); 2733 } else { 2734 SCTP_LTRACE_ERR_RET(inp, NULL, NULL, SCTP_FROM_SCTP_USRREQ, EINVAL); 2735 error = EINVAL; 2736 } 2737 } 2738 if (error == 0) { 2739 *optsize = sizeof(struct sctp_sndrcvinfo); 2740 } 2741 break; 2742 } 2743 case SCTP_INITMSG: 2744 { 2745 struct sctp_initmsg *sinit; 2746 2747 SCTP_CHECK_AND_CAST(sinit, optval, struct sctp_initmsg, *optsize); 2748 SCTP_INP_RLOCK(inp); 2749 sinit->sinit_num_ostreams = inp->sctp_ep.pre_open_stream_count; 2750 sinit->sinit_max_instreams = inp->sctp_ep.max_open_streams_intome; 2751 sinit->sinit_max_attempts = inp->sctp_ep.max_init_times; 2752 sinit->sinit_max_init_timeo = inp->sctp_ep.initial_init_rto_max; 2753 SCTP_INP_RUNLOCK(inp); 2754 *optsize = sizeof(struct sctp_initmsg); 2755 break; 2756 } 2757 case SCTP_PRIMARY_ADDR: 2758 /* we allow a "get" operation on this */ 2759 { 2760 struct sctp_setprim *ssp; 2761 2762 SCTP_CHECK_AND_CAST(ssp, optval, struct sctp_setprim, *optsize); 2763 SCTP_FIND_STCB(inp, stcb, ssp->ssp_assoc_id); 2764 2765 if (stcb) { 2766 /* simply copy out the sockaddr_storage... */ 2767 int len; 2768 2769 len = *optsize; 2770 if (len > stcb->asoc.primary_destination->ro._l_addr.sa.sa_len) 2771 len = stcb->asoc.primary_destination->ro._l_addr.sa.sa_len; 2772 2773 memcpy(&ssp->ssp_addr, 2774 &stcb->asoc.primary_destination->ro._l_addr, 2775 len); 2776 SCTP_TCB_UNLOCK(stcb); 2777 *optsize = sizeof(struct sctp_setprim); 2778 } else { 2779 SCTP_LTRACE_ERR_RET(inp, NULL, NULL, SCTP_FROM_SCTP_USRREQ, EINVAL); 2780 error = EINVAL; 2781 } 2782 break; 2783 } 2784 case SCTP_HMAC_IDENT: 2785 { 2786 struct sctp_hmacalgo *shmac; 2787 sctp_hmaclist_t *hmaclist; 2788 uint32_t size; 2789 int i; 2790 2791 SCTP_CHECK_AND_CAST(shmac, optval, struct sctp_hmacalgo, *optsize); 2792 2793 SCTP_INP_RLOCK(inp); 2794 hmaclist = inp->sctp_ep.local_hmacs; 2795 if (hmaclist == NULL) { 2796 /* no HMACs to return */ 2797 *optsize = sizeof(*shmac); 2798 SCTP_INP_RUNLOCK(inp); 2799 break; 2800 } 2801 /* is there room for all of the hmac ids? */ 2802 size = sizeof(*shmac) + (hmaclist->num_algo * 2803 sizeof(shmac->shmac_idents[0])); 2804 if ((size_t)(*optsize) < size) { 2805 SCTP_LTRACE_ERR_RET(inp, NULL, NULL, SCTP_FROM_SCTP_USRREQ, EINVAL); 2806 error = EINVAL; 2807 SCTP_INP_RUNLOCK(inp); 2808 break; 2809 } 2810 /* copy in the list */ 2811 shmac->shmac_number_of_idents = hmaclist->num_algo; 2812 for (i = 0; i < hmaclist->num_algo; i++) { 2813 shmac->shmac_idents[i] = hmaclist->hmac[i]; 2814 } 2815 SCTP_INP_RUNLOCK(inp); 2816 *optsize = size; 2817 break; 2818 } 2819 case SCTP_AUTH_ACTIVE_KEY: 2820 { 2821 struct sctp_authkeyid *scact; 2822 2823 SCTP_CHECK_AND_CAST(scact, optval, struct sctp_authkeyid, *optsize); 2824 SCTP_FIND_STCB(inp, stcb, scact->scact_assoc_id); 2825 2826 if (stcb) { 2827 /* get the active key on the assoc */ 2828 scact->scact_keynumber = stcb->asoc.authinfo.active_keyid; 2829 SCTP_TCB_UNLOCK(stcb); 2830 } else { 2831 if ((inp->sctp_flags & SCTP_PCB_FLAGS_TCPTYPE) || 2832 (inp->sctp_flags & SCTP_PCB_FLAGS_IN_TCPPOOL) || 2833 (scact->scact_assoc_id == SCTP_FUTURE_ASSOC)) { 2834 /* get the endpoint active key */ 2835 SCTP_INP_RLOCK(inp); 2836 scact->scact_keynumber = inp->sctp_ep.default_keyid; 2837 SCTP_INP_RUNLOCK(inp); 2838 } else { 2839 SCTP_LTRACE_ERR_RET(inp, NULL, NULL, SCTP_FROM_SCTP_USRREQ, EINVAL); 2840 error = EINVAL; 2841 } 2842 } 2843 if (error == 0) { 2844 *optsize = sizeof(struct sctp_authkeyid); 2845 } 2846 break; 2847 } 2848 case SCTP_LOCAL_AUTH_CHUNKS: 2849 { 2850 struct sctp_authchunks *sac; 2851 sctp_auth_chklist_t *chklist = NULL; 2852 size_t size = 0; 2853 2854 SCTP_CHECK_AND_CAST(sac, optval, struct sctp_authchunks, *optsize); 2855 SCTP_FIND_STCB(inp, stcb, sac->gauth_assoc_id); 2856 2857 if (stcb) { 2858 /* get off the assoc */ 2859 chklist = stcb->asoc.local_auth_chunks; 2860 /* is there enough space? */ 2861 size = sctp_auth_get_chklist_size(chklist); 2862 if (*optsize < (sizeof(struct sctp_authchunks) + size)) { 2863 error = EINVAL; 2864 SCTP_LTRACE_ERR_RET(inp, NULL, NULL, SCTP_FROM_SCTP_USRREQ, error); 2865 } else { 2866 /* copy in the chunks */ 2867 (void)sctp_serialize_auth_chunks(chklist, sac->gauth_chunks); 2868 sac->gauth_number_of_chunks = (uint32_t) size; 2869 *optsize = sizeof(struct sctp_authchunks) + size; 2870 } 2871 SCTP_TCB_UNLOCK(stcb); 2872 } else { 2873 if ((inp->sctp_flags & SCTP_PCB_FLAGS_TCPTYPE) || 2874 (inp->sctp_flags & SCTP_PCB_FLAGS_IN_TCPPOOL) || 2875 (sac->gauth_assoc_id == SCTP_FUTURE_ASSOC)) { 2876 /* get off the endpoint */ 2877 SCTP_INP_RLOCK(inp); 2878 chklist = inp->sctp_ep.local_auth_chunks; 2879 /* is there enough space? */ 2880 size = sctp_auth_get_chklist_size(chklist); 2881 if (*optsize < (sizeof(struct sctp_authchunks) + size)) { 2882 error = EINVAL; 2883 SCTP_LTRACE_ERR_RET(inp, NULL, NULL, SCTP_FROM_SCTP_USRREQ, error); 2884 } else { 2885 /* copy in the chunks */ 2886 (void)sctp_serialize_auth_chunks(chklist, sac->gauth_chunks); 2887 sac->gauth_number_of_chunks = (uint32_t) size; 2888 *optsize = sizeof(struct sctp_authchunks) + size; 2889 } 2890 SCTP_INP_RUNLOCK(inp); 2891 } else { 2892 SCTP_LTRACE_ERR_RET(inp, NULL, NULL, SCTP_FROM_SCTP_USRREQ, EINVAL); 2893 error = EINVAL; 2894 } 2895 } 2896 break; 2897 } 2898 case SCTP_PEER_AUTH_CHUNKS: 2899 { 2900 struct sctp_authchunks *sac; 2901 sctp_auth_chklist_t *chklist = NULL; 2902 size_t size = 0; 2903 2904 SCTP_CHECK_AND_CAST(sac, optval, struct sctp_authchunks, *optsize); 2905 SCTP_FIND_STCB(inp, stcb, sac->gauth_assoc_id); 2906 2907 if (stcb) { 2908 /* get off the assoc */ 2909 chklist = stcb->asoc.peer_auth_chunks; 2910 /* is there enough space? */ 2911 size = sctp_auth_get_chklist_size(chklist); 2912 if (*optsize < (sizeof(struct sctp_authchunks) + size)) { 2913 error = EINVAL; 2914 SCTP_LTRACE_ERR_RET(inp, NULL, NULL, SCTP_FROM_SCTP_USRREQ, error); 2915 } else { 2916 /* copy in the chunks */ 2917 (void)sctp_serialize_auth_chunks(chklist, sac->gauth_chunks); 2918 sac->gauth_number_of_chunks = (uint32_t) size; 2919 *optsize = sizeof(struct sctp_authchunks) + size; 2920 } 2921 SCTP_TCB_UNLOCK(stcb); 2922 } else { 2923 SCTP_LTRACE_ERR_RET(inp, NULL, NULL, SCTP_FROM_SCTP_USRREQ, ENOENT); 2924 error = ENOENT; 2925 } 2926 break; 2927 } 2928 case SCTP_EVENT: 2929 { 2930 struct sctp_event *event; 2931 uint32_t event_type; 2932 2933 SCTP_CHECK_AND_CAST(event, optval, struct sctp_event, *optsize); 2934 SCTP_FIND_STCB(inp, stcb, event->se_assoc_id); 2935 2936 switch (event->se_type) { 2937 case SCTP_ASSOC_CHANGE: 2938 event_type = SCTP_PCB_FLAGS_RECVASSOCEVNT; 2939 break; 2940 case SCTP_PEER_ADDR_CHANGE: 2941 event_type = SCTP_PCB_FLAGS_RECVPADDREVNT; 2942 break; 2943 case SCTP_REMOTE_ERROR: 2944 event_type = SCTP_PCB_FLAGS_RECVPEERERR; 2945 break; 2946 case SCTP_SEND_FAILED: 2947 event_type = SCTP_PCB_FLAGS_RECVSENDFAILEVNT; 2948 break; 2949 case SCTP_SHUTDOWN_EVENT: 2950 event_type = SCTP_PCB_FLAGS_RECVSHUTDOWNEVNT; 2951 break; 2952 case SCTP_ADAPTATION_INDICATION: 2953 event_type = SCTP_PCB_FLAGS_ADAPTATIONEVNT; 2954 break; 2955 case SCTP_PARTIAL_DELIVERY_EVENT: 2956 event_type = SCTP_PCB_FLAGS_PDAPIEVNT; 2957 break; 2958 case SCTP_AUTHENTICATION_EVENT: 2959 event_type = SCTP_PCB_FLAGS_AUTHEVNT; 2960 break; 2961 case SCTP_STREAM_RESET_EVENT: 2962 event_type = SCTP_PCB_FLAGS_STREAM_RESETEVNT; 2963 break; 2964 case SCTP_SENDER_DRY_EVENT: 2965 event_type = SCTP_PCB_FLAGS_DRYEVNT; 2966 break; 2967 case SCTP_NOTIFICATIONS_STOPPED_EVENT: 2968 event_type = 0; 2969 SCTP_LTRACE_ERR_RET(inp, NULL, NULL, SCTP_FROM_SCTP_USRREQ, ENOTSUP); 2970 error = ENOTSUP; 2971 break; 2972 case SCTP_ASSOC_RESET_EVENT: 2973 event_type = SCTP_PCB_FLAGS_ASSOC_RESETEVNT; 2974 break; 2975 case SCTP_STREAM_CHANGE_EVENT: 2976 event_type = SCTP_PCB_FLAGS_STREAM_CHANGEEVNT; 2977 break; 2978 case SCTP_SEND_FAILED_EVENT: 2979 event_type = SCTP_PCB_FLAGS_RECVNSENDFAILEVNT; 2980 break; 2981 default: 2982 event_type = 0; 2983 SCTP_LTRACE_ERR_RET(inp, NULL, NULL, SCTP_FROM_SCTP_USRREQ, EINVAL); 2984 error = EINVAL; 2985 break; 2986 } 2987 if (event_type > 0) { 2988 if (stcb) { 2989 event->se_on = sctp_stcb_is_feature_on(inp, stcb, event_type); 2990 SCTP_TCB_UNLOCK(stcb); 2991 } else { 2992 if ((inp->sctp_flags & SCTP_PCB_FLAGS_TCPTYPE) || 2993 (inp->sctp_flags & SCTP_PCB_FLAGS_IN_TCPPOOL) || 2994 (event->se_assoc_id == SCTP_FUTURE_ASSOC)) { 2995 SCTP_INP_RLOCK(inp); 2996 event->se_on = sctp_is_feature_on(inp, event_type); 2997 SCTP_INP_RUNLOCK(inp); 2998 } else { 2999 SCTP_LTRACE_ERR_RET(inp, NULL, NULL, SCTP_FROM_SCTP_USRREQ, EINVAL); 3000 error = EINVAL; 3001 } 3002 } 3003 } 3004 if (error == 0) { 3005 *optsize = sizeof(struct sctp_event); 3006 } 3007 break; 3008 } 3009 case SCTP_RECVRCVINFO: 3010 { 3011 int onoff; 3012 3013 if (*optsize < sizeof(int)) { 3014 SCTP_LTRACE_ERR_RET(inp, NULL, NULL, SCTP_FROM_SCTP_USRREQ, EINVAL); 3015 error = EINVAL; 3016 } else { 3017 SCTP_INP_RLOCK(inp); 3018 onoff = sctp_is_feature_on(inp, SCTP_PCB_FLAGS_RECVRCVINFO); 3019 SCTP_INP_RUNLOCK(inp); 3020 } 3021 if (error == 0) { 3022 /* return the option value */ 3023 *(int *)optval = onoff; 3024 *optsize = sizeof(int); 3025 } 3026 break; 3027 } 3028 case SCTP_RECVNXTINFO: 3029 { 3030 int onoff; 3031 3032 if (*optsize < sizeof(int)) { 3033 SCTP_LTRACE_ERR_RET(inp, NULL, NULL, SCTP_FROM_SCTP_USRREQ, EINVAL); 3034 error = EINVAL; 3035 } else { 3036 SCTP_INP_RLOCK(inp); 3037 onoff = sctp_is_feature_on(inp, SCTP_PCB_FLAGS_RECVNXTINFO); 3038 SCTP_INP_RUNLOCK(inp); 3039 } 3040 if (error == 0) { 3041 /* return the option value */ 3042 *(int *)optval = onoff; 3043 *optsize = sizeof(int); 3044 } 3045 break; 3046 } 3047 case SCTP_DEFAULT_SNDINFO: 3048 { 3049 struct sctp_sndinfo *info; 3050 3051 SCTP_CHECK_AND_CAST(info, optval, struct sctp_sndinfo, *optsize); 3052 SCTP_FIND_STCB(inp, stcb, info->snd_assoc_id); 3053 3054 if (stcb) { 3055 info->snd_sid = stcb->asoc.def_send.sinfo_stream; 3056 info->snd_flags = stcb->asoc.def_send.sinfo_flags; 3057 info->snd_flags &= 0xfff0; 3058 info->snd_ppid = stcb->asoc.def_send.sinfo_ppid; 3059 info->snd_context = stcb->asoc.def_send.sinfo_context; 3060 SCTP_TCB_UNLOCK(stcb); 3061 } else { 3062 if ((inp->sctp_flags & SCTP_PCB_FLAGS_TCPTYPE) || 3063 (inp->sctp_flags & SCTP_PCB_FLAGS_IN_TCPPOOL) || 3064 (info->snd_assoc_id == SCTP_FUTURE_ASSOC)) { 3065 SCTP_INP_RLOCK(inp); 3066 info->snd_sid = inp->def_send.sinfo_stream; 3067 info->snd_flags = inp->def_send.sinfo_flags; 3068 info->snd_flags &= 0xfff0; 3069 info->snd_ppid = inp->def_send.sinfo_ppid; 3070 info->snd_context = inp->def_send.sinfo_context; 3071 SCTP_INP_RUNLOCK(inp); 3072 } else { 3073 SCTP_LTRACE_ERR_RET(inp, NULL, NULL, SCTP_FROM_SCTP_USRREQ, EINVAL); 3074 error = EINVAL; 3075 } 3076 } 3077 if (error == 0) { 3078 *optsize = sizeof(struct sctp_sndinfo); 3079 } 3080 break; 3081 } 3082 case SCTP_DEFAULT_PRINFO: 3083 { 3084 struct sctp_default_prinfo *info; 3085 3086 SCTP_CHECK_AND_CAST(info, optval, struct sctp_default_prinfo, *optsize); 3087 SCTP_FIND_STCB(inp, stcb, info->pr_assoc_id); 3088 3089 if (stcb) { 3090 info->pr_policy = PR_SCTP_POLICY(stcb->asoc.def_send.sinfo_flags); 3091 info->pr_value = stcb->asoc.def_send.sinfo_timetolive; 3092 SCTP_TCB_UNLOCK(stcb); 3093 } else { 3094 if ((inp->sctp_flags & SCTP_PCB_FLAGS_TCPTYPE) || 3095 (inp->sctp_flags & SCTP_PCB_FLAGS_IN_TCPPOOL) || 3096 (info->pr_assoc_id == SCTP_FUTURE_ASSOC)) { 3097 SCTP_INP_RLOCK(inp); 3098 info->pr_policy = PR_SCTP_POLICY(inp->def_send.sinfo_flags); 3099 info->pr_value = inp->def_send.sinfo_timetolive; 3100 SCTP_INP_RUNLOCK(inp); 3101 } else { 3102 SCTP_LTRACE_ERR_RET(inp, NULL, NULL, SCTP_FROM_SCTP_USRREQ, EINVAL); 3103 error = EINVAL; 3104 } 3105 } 3106 if (error == 0) { 3107 *optsize = sizeof(struct sctp_default_prinfo); 3108 } 3109 break; 3110 } 3111 case SCTP_PEER_ADDR_THLDS: 3112 { 3113 struct sctp_paddrthlds *thlds; 3114 struct sctp_nets *net; 3115 3116 SCTP_CHECK_AND_CAST(thlds, optval, struct sctp_paddrthlds, *optsize); 3117 SCTP_FIND_STCB(inp, stcb, thlds->spt_assoc_id); 3118 3119 net = NULL; 3120 if (stcb) { 3121 net = sctp_findnet(stcb, (struct sockaddr *)&thlds->spt_address); 3122 } else { 3123 /* 3124 * We increment here since 3125 * sctp_findassociation_ep_addr() wil do a 3126 * decrement if it finds the stcb as long as 3127 * the locked tcb (last argument) is NOT a 3128 * TCB.. aka NULL. 3129 */ 3130 SCTP_INP_INCR_REF(inp); 3131 stcb = sctp_findassociation_ep_addr(&inp, (struct sockaddr *)&thlds->spt_address, &net, NULL, NULL); 3132 if (stcb == NULL) { 3133 SCTP_INP_DECR_REF(inp); 3134 } 3135 } 3136 if (stcb && (net == NULL)) { 3137 struct sockaddr *sa; 3138 3139 sa = (struct sockaddr *)&thlds->spt_address; 3140 #ifdef INET 3141 if (sa->sa_family == AF_INET) { 3142 struct sockaddr_in *sin; 3143 3144 sin = (struct sockaddr_in *)sa; 3145 if (sin->sin_addr.s_addr) { 3146 error = EINVAL; 3147 SCTP_TCB_UNLOCK(stcb); 3148 SCTP_LTRACE_ERR_RET(inp, NULL, NULL, SCTP_FROM_SCTP_USRREQ, error); 3149 break; 3150 } 3151 } else 3152 #endif 3153 #ifdef INET6 3154 if (sa->sa_family == AF_INET6) { 3155 struct sockaddr_in6 *sin6; 3156 3157 sin6 = (struct sockaddr_in6 *)sa; 3158 if (!IN6_IS_ADDR_UNSPECIFIED(&sin6->sin6_addr)) { 3159 error = EINVAL; 3160 SCTP_TCB_UNLOCK(stcb); 3161 SCTP_LTRACE_ERR_RET(inp, NULL, NULL, SCTP_FROM_SCTP_USRREQ, error); 3162 break; 3163 } 3164 } else 3165 #endif 3166 { 3167 error = EAFNOSUPPORT; 3168 SCTP_TCB_UNLOCK(stcb); 3169 SCTP_LTRACE_ERR_RET(inp, NULL, NULL, SCTP_FROM_SCTP_USRREQ, error); 3170 break; 3171 } 3172 } 3173 if (stcb) { 3174 if (net) { 3175 thlds->spt_pathmaxrxt = net->failure_threshold; 3176 thlds->spt_pathpfthld = net->pf_threshold; 3177 } else { 3178 thlds->spt_pathmaxrxt = stcb->asoc.def_net_failure; 3179 thlds->spt_pathpfthld = stcb->asoc.def_net_pf_threshold; 3180 } 3181 thlds->spt_assoc_id = sctp_get_associd(stcb); 3182 SCTP_TCB_UNLOCK(stcb); 3183 } else { 3184 if ((inp->sctp_flags & SCTP_PCB_FLAGS_TCPTYPE) || 3185 (inp->sctp_flags & SCTP_PCB_FLAGS_IN_TCPPOOL) || 3186 (thlds->spt_assoc_id == SCTP_FUTURE_ASSOC)) { 3187 /* Use endpoint defaults */ 3188 SCTP_INP_RLOCK(inp); 3189 thlds->spt_pathmaxrxt = inp->sctp_ep.def_net_failure; 3190 thlds->spt_pathpfthld = inp->sctp_ep.def_net_pf_threshold; 3191 SCTP_INP_RUNLOCK(inp); 3192 } else { 3193 SCTP_LTRACE_ERR_RET(inp, NULL, NULL, SCTP_FROM_SCTP_USRREQ, EINVAL); 3194 error = EINVAL; 3195 } 3196 } 3197 if (error == 0) { 3198 *optsize = sizeof(struct sctp_paddrthlds); 3199 } 3200 break; 3201 } 3202 case SCTP_REMOTE_UDP_ENCAPS_PORT: 3203 { 3204 struct sctp_udpencaps *encaps; 3205 struct sctp_nets *net; 3206 3207 SCTP_CHECK_AND_CAST(encaps, optval, struct sctp_udpencaps, *optsize); 3208 SCTP_FIND_STCB(inp, stcb, encaps->sue_assoc_id); 3209 3210 if (stcb) { 3211 net = sctp_findnet(stcb, (struct sockaddr *)&encaps->sue_address); 3212 } else { 3213 /* 3214 * We increment here since 3215 * sctp_findassociation_ep_addr() wil do a 3216 * decrement if it finds the stcb as long as 3217 * the locked tcb (last argument) is NOT a 3218 * TCB.. aka NULL. 3219 */ 3220 net = NULL; 3221 SCTP_INP_INCR_REF(inp); 3222 stcb = sctp_findassociation_ep_addr(&inp, (struct sockaddr *)&encaps->sue_address, &net, NULL, NULL); 3223 if (stcb == NULL) { 3224 SCTP_INP_DECR_REF(inp); 3225 } 3226 } 3227 if (stcb && (net == NULL)) { 3228 struct sockaddr *sa; 3229 3230 sa = (struct sockaddr *)&encaps->sue_address; 3231 #ifdef INET 3232 if (sa->sa_family == AF_INET) { 3233 struct sockaddr_in *sin; 3234 3235 sin = (struct sockaddr_in *)sa; 3236 if (sin->sin_addr.s_addr) { 3237 error = EINVAL; 3238 SCTP_TCB_UNLOCK(stcb); 3239 SCTP_LTRACE_ERR_RET(inp, NULL, NULL, SCTP_FROM_SCTP_USRREQ, error); 3240 break; 3241 } 3242 } else 3243 #endif 3244 #ifdef INET6 3245 if (sa->sa_family == AF_INET6) { 3246 struct sockaddr_in6 *sin6; 3247 3248 sin6 = (struct sockaddr_in6 *)sa; 3249 if (!IN6_IS_ADDR_UNSPECIFIED(&sin6->sin6_addr)) { 3250 error = EINVAL; 3251 SCTP_TCB_UNLOCK(stcb); 3252 SCTP_LTRACE_ERR_RET(inp, NULL, NULL, SCTP_FROM_SCTP_USRREQ, error); 3253 break; 3254 } 3255 } else 3256 #endif 3257 { 3258 error = EAFNOSUPPORT; 3259 SCTP_TCB_UNLOCK(stcb); 3260 SCTP_LTRACE_ERR_RET(inp, NULL, NULL, SCTP_FROM_SCTP_USRREQ, error); 3261 break; 3262 } 3263 } 3264 if (stcb) { 3265 if (net) { 3266 encaps->sue_port = net->port; 3267 } else { 3268 encaps->sue_port = stcb->asoc.port; 3269 } 3270 SCTP_TCB_UNLOCK(stcb); 3271 } else { 3272 if ((inp->sctp_flags & SCTP_PCB_FLAGS_TCPTYPE) || 3273 (inp->sctp_flags & SCTP_PCB_FLAGS_IN_TCPPOOL) || 3274 (encaps->sue_assoc_id == SCTP_FUTURE_ASSOC)) { 3275 SCTP_INP_RLOCK(inp); 3276 encaps->sue_port = inp->sctp_ep.port; 3277 SCTP_INP_RUNLOCK(inp); 3278 } else { 3279 SCTP_LTRACE_ERR_RET(inp, NULL, NULL, SCTP_FROM_SCTP_USRREQ, EINVAL); 3280 error = EINVAL; 3281 } 3282 } 3283 if (error == 0) { 3284 *optsize = sizeof(struct sctp_paddrparams); 3285 } 3286 break; 3287 } 3288 case SCTP_ENABLE_STREAM_RESET: 3289 { 3290 struct sctp_assoc_value *av; 3291 3292 SCTP_CHECK_AND_CAST(av, optval, struct sctp_assoc_value, *optsize); 3293 SCTP_FIND_STCB(inp, stcb, av->assoc_id); 3294 3295 if (stcb) { 3296 av->assoc_value = (uint32_t) stcb->asoc.local_strreset_support; 3297 SCTP_TCB_UNLOCK(stcb); 3298 } else { 3299 if ((inp->sctp_flags & SCTP_PCB_FLAGS_TCPTYPE) || 3300 (inp->sctp_flags & SCTP_PCB_FLAGS_IN_TCPPOOL) || 3301 (av->assoc_id == SCTP_FUTURE_ASSOC)) { 3302 SCTP_INP_RLOCK(inp); 3303 av->assoc_value = (uint32_t) inp->local_strreset_support; 3304 SCTP_INP_RUNLOCK(inp); 3305 } else { 3306 SCTP_LTRACE_ERR_RET(inp, NULL, NULL, SCTP_FROM_SCTP_USRREQ, EINVAL); 3307 error = EINVAL; 3308 } 3309 } 3310 if (error == 0) { 3311 *optsize = sizeof(struct sctp_assoc_value); 3312 } 3313 break; 3314 } 3315 default: 3316 SCTP_LTRACE_ERR_RET(inp, NULL, NULL, SCTP_FROM_SCTP_USRREQ, ENOPROTOOPT); 3317 error = ENOPROTOOPT; 3318 break; 3319 } /* end switch (sopt->sopt_name) */ 3320 if (error) { 3321 *optsize = 0; 3322 } 3323 return (error); 3324 } 3325 3326 static int 3327 sctp_setopt(struct socket *so, int optname, void *optval, size_t optsize, 3328 void *p) 3329 { 3330 int error, set_opt; 3331 uint32_t *mopt; 3332 struct sctp_tcb *stcb = NULL; 3333 struct sctp_inpcb *inp = NULL; 3334 uint32_t vrf_id; 3335 3336 if (optval == NULL) { 3337 SCTP_PRINTF("optval is NULL\n"); 3338 SCTP_LTRACE_ERR_RET(inp, NULL, NULL, SCTP_FROM_SCTP_USRREQ, EINVAL); 3339 return (EINVAL); 3340 } 3341 inp = (struct sctp_inpcb *)so->so_pcb; 3342 if (inp == NULL) { 3343 SCTP_PRINTF("inp is NULL?\n"); 3344 SCTP_LTRACE_ERR_RET(inp, NULL, NULL, SCTP_FROM_SCTP_USRREQ, EINVAL); 3345 return (EINVAL); 3346 } 3347 vrf_id = inp->def_vrf_id; 3348 3349 error = 0; 3350 switch (optname) { 3351 case SCTP_NODELAY: 3352 case SCTP_AUTOCLOSE: 3353 case SCTP_AUTO_ASCONF: 3354 case SCTP_EXPLICIT_EOR: 3355 case SCTP_DISABLE_FRAGMENTS: 3356 case SCTP_USE_EXT_RCVINFO: 3357 case SCTP_I_WANT_MAPPED_V4_ADDR: 3358 /* copy in the option value */ 3359 SCTP_CHECK_AND_CAST(mopt, optval, uint32_t, optsize); 3360 set_opt = 0; 3361 if (error) 3362 break; 3363 switch (optname) { 3364 case SCTP_DISABLE_FRAGMENTS: 3365 set_opt = SCTP_PCB_FLAGS_NO_FRAGMENT; 3366 break; 3367 case SCTP_AUTO_ASCONF: 3368 /* 3369 * NOTE: we don't really support this flag 3370 */ 3371 if (inp->sctp_flags & SCTP_PCB_FLAGS_BOUNDALL) { 3372 /* only valid for bound all sockets */ 3373 if ((SCTP_BASE_SYSCTL(sctp_auto_asconf) == 0) && 3374 (*mopt != 0)) { 3375 /* forbidden by admin */ 3376 SCTP_LTRACE_ERR_RET(inp, NULL, NULL, SCTP_FROM_SCTP_USRREQ, EPERM); 3377 return (EPERM); 3378 } 3379 set_opt = SCTP_PCB_FLAGS_AUTO_ASCONF; 3380 } else { 3381 SCTP_LTRACE_ERR_RET(inp, NULL, NULL, SCTP_FROM_SCTP_USRREQ, EINVAL); 3382 return (EINVAL); 3383 } 3384 break; 3385 case SCTP_EXPLICIT_EOR: 3386 set_opt = SCTP_PCB_FLAGS_EXPLICIT_EOR; 3387 break; 3388 case SCTP_USE_EXT_RCVINFO: 3389 set_opt = SCTP_PCB_FLAGS_EXT_RCVINFO; 3390 break; 3391 case SCTP_I_WANT_MAPPED_V4_ADDR: 3392 if (inp->sctp_flags & SCTP_PCB_FLAGS_BOUND_V6) { 3393 set_opt = SCTP_PCB_FLAGS_NEEDS_MAPPED_V4; 3394 } else { 3395 SCTP_LTRACE_ERR_RET(inp, NULL, NULL, SCTP_FROM_SCTP_USRREQ, EINVAL); 3396 return (EINVAL); 3397 } 3398 break; 3399 case SCTP_NODELAY: 3400 set_opt = SCTP_PCB_FLAGS_NODELAY; 3401 break; 3402 case SCTP_AUTOCLOSE: 3403 if ((inp->sctp_flags & SCTP_PCB_FLAGS_TCPTYPE) || 3404 (inp->sctp_flags & SCTP_PCB_FLAGS_IN_TCPPOOL)) { 3405 SCTP_LTRACE_ERR_RET(inp, NULL, NULL, SCTP_FROM_SCTP_USRREQ, EINVAL); 3406 return (EINVAL); 3407 } 3408 set_opt = SCTP_PCB_FLAGS_AUTOCLOSE; 3409 /* 3410 * The value is in ticks. Note this does not effect 3411 * old associations, only new ones. 3412 */ 3413 inp->sctp_ep.auto_close_time = SEC_TO_TICKS(*mopt); 3414 break; 3415 } 3416 SCTP_INP_WLOCK(inp); 3417 if (*mopt != 0) { 3418 sctp_feature_on(inp, set_opt); 3419 } else { 3420 sctp_feature_off(inp, set_opt); 3421 } 3422 SCTP_INP_WUNLOCK(inp); 3423 break; 3424 case SCTP_REUSE_PORT: 3425 { 3426 SCTP_CHECK_AND_CAST(mopt, optval, uint32_t, optsize); 3427 if ((inp->sctp_flags & SCTP_PCB_FLAGS_UNBOUND) == 0) { 3428 /* Can't set it after we are bound */ 3429 error = EINVAL; 3430 break; 3431 } 3432 if ((inp->sctp_flags & SCTP_PCB_FLAGS_UDPTYPE)) { 3433 /* Can't do this for a 1-m socket */ 3434 error = EINVAL; 3435 break; 3436 } 3437 if (optval) 3438 sctp_feature_on(inp, SCTP_PCB_FLAGS_PORTREUSE); 3439 else 3440 sctp_feature_off(inp, SCTP_PCB_FLAGS_PORTREUSE); 3441 break; 3442 } 3443 case SCTP_PARTIAL_DELIVERY_POINT: 3444 { 3445 uint32_t *value; 3446 3447 SCTP_CHECK_AND_CAST(value, optval, uint32_t, optsize); 3448 if (*value > SCTP_SB_LIMIT_RCV(so)) { 3449 SCTP_LTRACE_ERR_RET(inp, NULL, NULL, SCTP_FROM_SCTP_USRREQ, EINVAL); 3450 error = EINVAL; 3451 break; 3452 } 3453 inp->partial_delivery_point = *value; 3454 break; 3455 } 3456 case SCTP_FRAGMENT_INTERLEAVE: 3457 /* not yet until we re-write sctp_recvmsg() */ 3458 { 3459 uint32_t *level; 3460 3461 SCTP_CHECK_AND_CAST(level, optval, uint32_t, optsize); 3462 if (*level == SCTP_FRAG_LEVEL_2) { 3463 sctp_feature_on(inp, SCTP_PCB_FLAGS_FRAG_INTERLEAVE); 3464 sctp_feature_on(inp, SCTP_PCB_FLAGS_INTERLEAVE_STRMS); 3465 } else if (*level == SCTP_FRAG_LEVEL_1) { 3466 sctp_feature_on(inp, SCTP_PCB_FLAGS_FRAG_INTERLEAVE); 3467 sctp_feature_off(inp, SCTP_PCB_FLAGS_INTERLEAVE_STRMS); 3468 } else if (*level == SCTP_FRAG_LEVEL_0) { 3469 sctp_feature_off(inp, SCTP_PCB_FLAGS_FRAG_INTERLEAVE); 3470 sctp_feature_off(inp, SCTP_PCB_FLAGS_INTERLEAVE_STRMS); 3471 3472 } else { 3473 SCTP_LTRACE_ERR_RET(inp, NULL, NULL, SCTP_FROM_SCTP_USRREQ, EINVAL); 3474 error = EINVAL; 3475 } 3476 break; 3477 } 3478 case SCTP_CMT_ON_OFF: 3479 if (SCTP_BASE_SYSCTL(sctp_cmt_on_off)) { 3480 struct sctp_assoc_value *av; 3481 3482 SCTP_CHECK_AND_CAST(av, optval, struct sctp_assoc_value, optsize); 3483 if (av->assoc_value > SCTP_CMT_MAX) { 3484 SCTP_LTRACE_ERR_RET(inp, NULL, NULL, SCTP_FROM_SCTP_USRREQ, EINVAL); 3485 error = EINVAL; 3486 break; 3487 } 3488 SCTP_FIND_STCB(inp, stcb, av->assoc_id); 3489 if (stcb) { 3490 stcb->asoc.sctp_cmt_on_off = av->assoc_value; 3491 SCTP_TCB_UNLOCK(stcb); 3492 } else { 3493 if ((inp->sctp_flags & SCTP_PCB_FLAGS_TCPTYPE) || 3494 (inp->sctp_flags & SCTP_PCB_FLAGS_IN_TCPPOOL) || 3495 (av->assoc_id == SCTP_FUTURE_ASSOC) || 3496 (av->assoc_id == SCTP_ALL_ASSOC)) { 3497 SCTP_INP_WLOCK(inp); 3498 inp->sctp_cmt_on_off = av->assoc_value; 3499 SCTP_INP_WUNLOCK(inp); 3500 } 3501 if ((av->assoc_id == SCTP_CURRENT_ASSOC) || 3502 (av->assoc_id == SCTP_ALL_ASSOC)) { 3503 SCTP_INP_RLOCK(inp); 3504 LIST_FOREACH(stcb, &inp->sctp_asoc_list, sctp_tcblist) { 3505 SCTP_TCB_LOCK(stcb); 3506 stcb->asoc.sctp_cmt_on_off = av->assoc_value; 3507 SCTP_TCB_UNLOCK(stcb); 3508 } 3509 SCTP_INP_RUNLOCK(inp); 3510 } 3511 } 3512 } else { 3513 SCTP_LTRACE_ERR_RET(inp, NULL, NULL, SCTP_FROM_SCTP_USRREQ, ENOPROTOOPT); 3514 error = ENOPROTOOPT; 3515 } 3516 break; 3517 case SCTP_PLUGGABLE_CC: 3518 { 3519 struct sctp_assoc_value *av; 3520 struct sctp_nets *net; 3521 3522 SCTP_CHECK_AND_CAST(av, optval, struct sctp_assoc_value, optsize); 3523 if ((av->assoc_value != SCTP_CC_RFC2581) && 3524 (av->assoc_value != SCTP_CC_HSTCP) && 3525 (av->assoc_value != SCTP_CC_HTCP) && 3526 (av->assoc_value != SCTP_CC_RTCC)) { 3527 SCTP_LTRACE_ERR_RET(inp, NULL, NULL, SCTP_FROM_SCTP_USRREQ, EINVAL); 3528 error = EINVAL; 3529 break; 3530 } 3531 SCTP_FIND_STCB(inp, stcb, av->assoc_id); 3532 if (stcb) { 3533 stcb->asoc.cc_functions = sctp_cc_functions[av->assoc_value]; 3534 stcb->asoc.congestion_control_module = av->assoc_value; 3535 if (stcb->asoc.cc_functions.sctp_set_initial_cc_param != NULL) { 3536 TAILQ_FOREACH(net, &stcb->asoc.nets, sctp_next) { 3537 stcb->asoc.cc_functions.sctp_set_initial_cc_param(stcb, net); 3538 } 3539 } 3540 SCTP_TCB_UNLOCK(stcb); 3541 } else { 3542 if ((inp->sctp_flags & SCTP_PCB_FLAGS_TCPTYPE) || 3543 (inp->sctp_flags & SCTP_PCB_FLAGS_IN_TCPPOOL) || 3544 (av->assoc_id == SCTP_FUTURE_ASSOC) || 3545 (av->assoc_id == SCTP_ALL_ASSOC)) { 3546 SCTP_INP_WLOCK(inp); 3547 inp->sctp_ep.sctp_default_cc_module = av->assoc_value; 3548 SCTP_INP_WUNLOCK(inp); 3549 } 3550 if ((av->assoc_id == SCTP_CURRENT_ASSOC) || 3551 (av->assoc_id == SCTP_ALL_ASSOC)) { 3552 SCTP_INP_RLOCK(inp); 3553 LIST_FOREACH(stcb, &inp->sctp_asoc_list, sctp_tcblist) { 3554 SCTP_TCB_LOCK(stcb); 3555 stcb->asoc.cc_functions = sctp_cc_functions[av->assoc_value]; 3556 stcb->asoc.congestion_control_module = av->assoc_value; 3557 if (stcb->asoc.cc_functions.sctp_set_initial_cc_param != NULL) { 3558 TAILQ_FOREACH(net, &stcb->asoc.nets, sctp_next) { 3559 stcb->asoc.cc_functions.sctp_set_initial_cc_param(stcb, net); 3560 } 3561 } 3562 SCTP_TCB_UNLOCK(stcb); 3563 } 3564 SCTP_INP_RUNLOCK(inp); 3565 } 3566 } 3567 break; 3568 } 3569 case SCTP_CC_OPTION: 3570 { 3571 struct sctp_cc_option *cc_opt; 3572 3573 SCTP_CHECK_AND_CAST(cc_opt, optval, struct sctp_cc_option, optsize); 3574 SCTP_FIND_STCB(inp, stcb, cc_opt->aid_value.assoc_id); 3575 if (stcb == NULL) { 3576 if (cc_opt->aid_value.assoc_id == SCTP_CURRENT_ASSOC) { 3577 SCTP_INP_RLOCK(inp); 3578 LIST_FOREACH(stcb, &inp->sctp_asoc_list, sctp_tcblist) { 3579 SCTP_TCB_LOCK(stcb); 3580 if (stcb->asoc.cc_functions.sctp_cwnd_socket_option) { 3581 (*stcb->asoc.cc_functions.sctp_cwnd_socket_option) (stcb, 1, cc_opt); 3582 } 3583 SCTP_TCB_UNLOCK(stcb); 3584 } 3585 SCTP_INP_RUNLOCK(inp); 3586 } else { 3587 error = EINVAL; 3588 } 3589 } else { 3590 if (stcb->asoc.cc_functions.sctp_cwnd_socket_option == NULL) { 3591 error = ENOTSUP; 3592 } else { 3593 error = (*stcb->asoc.cc_functions.sctp_cwnd_socket_option) (stcb, 1, 3594 cc_opt); 3595 } 3596 SCTP_TCB_UNLOCK(stcb); 3597 } 3598 break; 3599 } 3600 case SCTP_PLUGGABLE_SS: 3601 { 3602 struct sctp_assoc_value *av; 3603 3604 SCTP_CHECK_AND_CAST(av, optval, struct sctp_assoc_value, optsize); 3605 if ((av->assoc_value != SCTP_SS_DEFAULT) && 3606 (av->assoc_value != SCTP_SS_ROUND_ROBIN) && 3607 (av->assoc_value != SCTP_SS_ROUND_ROBIN_PACKET) && 3608 (av->assoc_value != SCTP_SS_PRIORITY) && 3609 (av->assoc_value != SCTP_SS_FAIR_BANDWITH) && 3610 (av->assoc_value != SCTP_SS_FIRST_COME)) { 3611 SCTP_LTRACE_ERR_RET(inp, NULL, NULL, SCTP_FROM_SCTP_USRREQ, EINVAL); 3612 error = EINVAL; 3613 break; 3614 } 3615 SCTP_FIND_STCB(inp, stcb, av->assoc_id); 3616 if (stcb) { 3617 stcb->asoc.ss_functions.sctp_ss_clear(stcb, &stcb->asoc, 1, 1); 3618 stcb->asoc.ss_functions = sctp_ss_functions[av->assoc_value]; 3619 stcb->asoc.stream_scheduling_module = av->assoc_value; 3620 stcb->asoc.ss_functions.sctp_ss_init(stcb, &stcb->asoc, 1); 3621 SCTP_TCB_UNLOCK(stcb); 3622 } else { 3623 if ((inp->sctp_flags & SCTP_PCB_FLAGS_TCPTYPE) || 3624 (inp->sctp_flags & SCTP_PCB_FLAGS_IN_TCPPOOL) || 3625 (av->assoc_id == SCTP_FUTURE_ASSOC) || 3626 (av->assoc_id == SCTP_ALL_ASSOC)) { 3627 SCTP_INP_WLOCK(inp); 3628 inp->sctp_ep.sctp_default_ss_module = av->assoc_value; 3629 SCTP_INP_WUNLOCK(inp); 3630 } 3631 if ((av->assoc_id == SCTP_CURRENT_ASSOC) || 3632 (av->assoc_id == SCTP_ALL_ASSOC)) { 3633 SCTP_INP_RLOCK(inp); 3634 LIST_FOREACH(stcb, &inp->sctp_asoc_list, sctp_tcblist) { 3635 SCTP_TCB_LOCK(stcb); 3636 stcb->asoc.ss_functions.sctp_ss_clear(stcb, &stcb->asoc, 1, 1); 3637 stcb->asoc.ss_functions = sctp_ss_functions[av->assoc_value]; 3638 stcb->asoc.stream_scheduling_module = av->assoc_value; 3639 stcb->asoc.ss_functions.sctp_ss_init(stcb, &stcb->asoc, 1); 3640 SCTP_TCB_UNLOCK(stcb); 3641 } 3642 SCTP_INP_RUNLOCK(inp); 3643 } 3644 } 3645 break; 3646 } 3647 case SCTP_SS_VALUE: 3648 { 3649 struct sctp_stream_value *av; 3650 3651 SCTP_CHECK_AND_CAST(av, optval, struct sctp_stream_value, optsize); 3652 SCTP_FIND_STCB(inp, stcb, av->assoc_id); 3653 if (stcb) { 3654 if (stcb->asoc.ss_functions.sctp_ss_set_value(stcb, &stcb->asoc, &stcb->asoc.strmout[av->stream_id], 3655 av->stream_value) < 0) { 3656 SCTP_LTRACE_ERR_RET(inp, NULL, NULL, SCTP_FROM_SCTP_USRREQ, EINVAL); 3657 error = EINVAL; 3658 } 3659 SCTP_TCB_UNLOCK(stcb); 3660 } else { 3661 if (av->assoc_id == SCTP_CURRENT_ASSOC) { 3662 SCTP_INP_RLOCK(inp); 3663 LIST_FOREACH(stcb, &inp->sctp_asoc_list, sctp_tcblist) { 3664 SCTP_TCB_LOCK(stcb); 3665 stcb->asoc.ss_functions.sctp_ss_set_value(stcb, 3666 &stcb->asoc, 3667 &stcb->asoc.strmout[av->stream_id], 3668 av->stream_value); 3669 SCTP_TCB_UNLOCK(stcb); 3670 } 3671 SCTP_INP_RUNLOCK(inp); 3672 3673 } else { 3674 /* 3675 * Can't set stream value without 3676 * association 3677 */ 3678 SCTP_LTRACE_ERR_RET(inp, NULL, NULL, SCTP_FROM_SCTP_USRREQ, EINVAL); 3679 error = EINVAL; 3680 } 3681 } 3682 break; 3683 } 3684 case SCTP_CLR_STAT_LOG: 3685 SCTP_LTRACE_ERR_RET(inp, NULL, NULL, SCTP_FROM_SCTP_USRREQ, EOPNOTSUPP); 3686 error = EOPNOTSUPP; 3687 break; 3688 case SCTP_CONTEXT: 3689 { 3690 struct sctp_assoc_value *av; 3691 3692 SCTP_CHECK_AND_CAST(av, optval, struct sctp_assoc_value, optsize); 3693 SCTP_FIND_STCB(inp, stcb, av->assoc_id); 3694 3695 if (stcb) { 3696 stcb->asoc.context = av->assoc_value; 3697 SCTP_TCB_UNLOCK(stcb); 3698 } else { 3699 if ((inp->sctp_flags & SCTP_PCB_FLAGS_TCPTYPE) || 3700 (inp->sctp_flags & SCTP_PCB_FLAGS_IN_TCPPOOL) || 3701 (av->assoc_id == SCTP_FUTURE_ASSOC) || 3702 (av->assoc_id == SCTP_ALL_ASSOC)) { 3703 SCTP_INP_WLOCK(inp); 3704 inp->sctp_context = av->assoc_value; 3705 SCTP_INP_WUNLOCK(inp); 3706 } 3707 if ((av->assoc_id == SCTP_CURRENT_ASSOC) || 3708 (av->assoc_id == SCTP_ALL_ASSOC)) { 3709 SCTP_INP_RLOCK(inp); 3710 LIST_FOREACH(stcb, &inp->sctp_asoc_list, sctp_tcblist) { 3711 SCTP_TCB_LOCK(stcb); 3712 stcb->asoc.context = av->assoc_value; 3713 SCTP_TCB_UNLOCK(stcb); 3714 } 3715 SCTP_INP_RUNLOCK(inp); 3716 } 3717 } 3718 break; 3719 } 3720 case SCTP_VRF_ID: 3721 { 3722 uint32_t *default_vrfid; 3723 3724 SCTP_CHECK_AND_CAST(default_vrfid, optval, uint32_t, optsize); 3725 if (*default_vrfid > SCTP_MAX_VRF_ID) { 3726 SCTP_LTRACE_ERR_RET(inp, NULL, NULL, SCTP_FROM_SCTP_USRREQ, EINVAL); 3727 error = EINVAL; 3728 break; 3729 } 3730 inp->def_vrf_id = *default_vrfid; 3731 break; 3732 } 3733 case SCTP_DEL_VRF_ID: 3734 { 3735 SCTP_LTRACE_ERR_RET(inp, NULL, NULL, SCTP_FROM_SCTP_USRREQ, EOPNOTSUPP); 3736 error = EOPNOTSUPP; 3737 break; 3738 } 3739 case SCTP_ADD_VRF_ID: 3740 { 3741 SCTP_LTRACE_ERR_RET(inp, NULL, NULL, SCTP_FROM_SCTP_USRREQ, EOPNOTSUPP); 3742 error = EOPNOTSUPP; 3743 break; 3744 } 3745 case SCTP_DELAYED_SACK: 3746 { 3747 struct sctp_sack_info *sack; 3748 3749 SCTP_CHECK_AND_CAST(sack, optval, struct sctp_sack_info, optsize); 3750 SCTP_FIND_STCB(inp, stcb, sack->sack_assoc_id); 3751 if (sack->sack_delay) { 3752 if (sack->sack_delay > SCTP_MAX_SACK_DELAY) 3753 sack->sack_delay = SCTP_MAX_SACK_DELAY; 3754 if (MSEC_TO_TICKS(sack->sack_delay) < 1) { 3755 sack->sack_delay = TICKS_TO_MSEC(1); 3756 } 3757 } 3758 if (stcb) { 3759 if (sack->sack_delay) { 3760 stcb->asoc.delayed_ack = sack->sack_delay; 3761 } 3762 if (sack->sack_freq) { 3763 stcb->asoc.sack_freq = sack->sack_freq; 3764 } 3765 SCTP_TCB_UNLOCK(stcb); 3766 } else { 3767 if ((inp->sctp_flags & SCTP_PCB_FLAGS_TCPTYPE) || 3768 (inp->sctp_flags & SCTP_PCB_FLAGS_IN_TCPPOOL) || 3769 (sack->sack_assoc_id == SCTP_FUTURE_ASSOC) || 3770 (sack->sack_assoc_id == SCTP_ALL_ASSOC)) { 3771 SCTP_INP_WLOCK(inp); 3772 if (sack->sack_delay) { 3773 inp->sctp_ep.sctp_timeoutticks[SCTP_TIMER_RECV] = MSEC_TO_TICKS(sack->sack_delay); 3774 } 3775 if (sack->sack_freq) { 3776 inp->sctp_ep.sctp_sack_freq = sack->sack_freq; 3777 } 3778 SCTP_INP_WUNLOCK(inp); 3779 } 3780 if ((sack->sack_assoc_id == SCTP_CURRENT_ASSOC) || 3781 (sack->sack_assoc_id == SCTP_ALL_ASSOC)) { 3782 SCTP_INP_RLOCK(inp); 3783 LIST_FOREACH(stcb, &inp->sctp_asoc_list, sctp_tcblist) { 3784 SCTP_TCB_LOCK(stcb); 3785 if (sack->sack_delay) { 3786 stcb->asoc.delayed_ack = sack->sack_delay; 3787 } 3788 if (sack->sack_freq) { 3789 stcb->asoc.sack_freq = sack->sack_freq; 3790 } 3791 SCTP_TCB_UNLOCK(stcb); 3792 } 3793 SCTP_INP_RUNLOCK(inp); 3794 } 3795 } 3796 break; 3797 } 3798 case SCTP_AUTH_CHUNK: 3799 { 3800 struct sctp_authchunk *sauth; 3801 3802 SCTP_CHECK_AND_CAST(sauth, optval, struct sctp_authchunk, optsize); 3803 3804 SCTP_INP_WLOCK(inp); 3805 if (sctp_auth_add_chunk(sauth->sauth_chunk, inp->sctp_ep.local_auth_chunks)) { 3806 SCTP_LTRACE_ERR_RET(inp, NULL, NULL, SCTP_FROM_SCTP_USRREQ, EINVAL); 3807 error = EINVAL; 3808 } 3809 SCTP_INP_WUNLOCK(inp); 3810 break; 3811 } 3812 case SCTP_AUTH_KEY: 3813 { 3814 struct sctp_authkey *sca; 3815 struct sctp_keyhead *shared_keys; 3816 sctp_sharedkey_t *shared_key; 3817 sctp_key_t *key = NULL; 3818 size_t size; 3819 3820 SCTP_CHECK_AND_CAST(sca, optval, struct sctp_authkey, optsize); 3821 if (sca->sca_keylength == 0) { 3822 size = optsize - sizeof(struct sctp_authkey); 3823 } else { 3824 if (sca->sca_keylength + sizeof(struct sctp_authkey) <= optsize) { 3825 size = sca->sca_keylength; 3826 } else { 3827 SCTP_LTRACE_ERR_RET(inp, NULL, NULL, SCTP_FROM_SCTP_USRREQ, EINVAL); 3828 error = EINVAL; 3829 break; 3830 } 3831 } 3832 SCTP_FIND_STCB(inp, stcb, sca->sca_assoc_id); 3833 3834 if (stcb) { 3835 shared_keys = &stcb->asoc.shared_keys; 3836 /* clear the cached keys for this key id */ 3837 sctp_clear_cachedkeys(stcb, sca->sca_keynumber); 3838 /* 3839 * create the new shared key and 3840 * insert/replace it 3841 */ 3842 if (size > 0) { 3843 key = sctp_set_key(sca->sca_key, (uint32_t) size); 3844 if (key == NULL) { 3845 SCTP_LTRACE_ERR_RET(inp, NULL, NULL, SCTP_FROM_SCTP_USRREQ, ENOMEM); 3846 error = ENOMEM; 3847 SCTP_TCB_UNLOCK(stcb); 3848 break; 3849 } 3850 } 3851 shared_key = sctp_alloc_sharedkey(); 3852 if (shared_key == NULL) { 3853 sctp_free_key(key); 3854 SCTP_LTRACE_ERR_RET(inp, NULL, NULL, SCTP_FROM_SCTP_USRREQ, ENOMEM); 3855 error = ENOMEM; 3856 SCTP_TCB_UNLOCK(stcb); 3857 break; 3858 } 3859 shared_key->key = key; 3860 shared_key->keyid = sca->sca_keynumber; 3861 error = sctp_insert_sharedkey(shared_keys, shared_key); 3862 SCTP_TCB_UNLOCK(stcb); 3863 } else { 3864 if ((inp->sctp_flags & SCTP_PCB_FLAGS_TCPTYPE) || 3865 (inp->sctp_flags & SCTP_PCB_FLAGS_IN_TCPPOOL) || 3866 (sca->sca_assoc_id == SCTP_FUTURE_ASSOC) || 3867 (sca->sca_assoc_id == SCTP_ALL_ASSOC)) { 3868 SCTP_INP_WLOCK(inp); 3869 shared_keys = &inp->sctp_ep.shared_keys; 3870 /* 3871 * clear the cached keys on all 3872 * assocs for this key id 3873 */ 3874 sctp_clear_cachedkeys_ep(inp, sca->sca_keynumber); 3875 /* 3876 * create the new shared key and 3877 * insert/replace it 3878 */ 3879 if (size > 0) { 3880 key = sctp_set_key(sca->sca_key, (uint32_t) size); 3881 if (key == NULL) { 3882 SCTP_LTRACE_ERR_RET(inp, NULL, NULL, SCTP_FROM_SCTP_USRREQ, ENOMEM); 3883 error = ENOMEM; 3884 SCTP_INP_WUNLOCK(inp); 3885 break; 3886 } 3887 } 3888 shared_key = sctp_alloc_sharedkey(); 3889 if (shared_key == NULL) { 3890 sctp_free_key(key); 3891 SCTP_LTRACE_ERR_RET(inp, NULL, NULL, SCTP_FROM_SCTP_USRREQ, ENOMEM); 3892 error = ENOMEM; 3893 SCTP_INP_WUNLOCK(inp); 3894 break; 3895 } 3896 shared_key->key = key; 3897 shared_key->keyid = sca->sca_keynumber; 3898 error = sctp_insert_sharedkey(shared_keys, shared_key); 3899 SCTP_INP_WUNLOCK(inp); 3900 } 3901 if ((sca->sca_assoc_id == SCTP_CURRENT_ASSOC) || 3902 (sca->sca_assoc_id == SCTP_ALL_ASSOC)) { 3903 SCTP_INP_RLOCK(inp); 3904 LIST_FOREACH(stcb, &inp->sctp_asoc_list, sctp_tcblist) { 3905 SCTP_TCB_LOCK(stcb); 3906 shared_keys = &stcb->asoc.shared_keys; 3907 /* 3908 * clear the cached keys for 3909 * this key id 3910 */ 3911 sctp_clear_cachedkeys(stcb, sca->sca_keynumber); 3912 /* 3913 * create the new shared key 3914 * and insert/replace it 3915 */ 3916 if (size > 0) { 3917 key = sctp_set_key(sca->sca_key, (uint32_t) size); 3918 if (key == NULL) { 3919 SCTP_TCB_UNLOCK(stcb); 3920 continue; 3921 } 3922 } 3923 shared_key = sctp_alloc_sharedkey(); 3924 if (shared_key == NULL) { 3925 sctp_free_key(key); 3926 SCTP_TCB_UNLOCK(stcb); 3927 continue; 3928 } 3929 shared_key->key = key; 3930 shared_key->keyid = sca->sca_keynumber; 3931 error = sctp_insert_sharedkey(shared_keys, shared_key); 3932 SCTP_TCB_UNLOCK(stcb); 3933 } 3934 SCTP_INP_RUNLOCK(inp); 3935 } 3936 } 3937 break; 3938 } 3939 case SCTP_HMAC_IDENT: 3940 { 3941 struct sctp_hmacalgo *shmac; 3942 sctp_hmaclist_t *hmaclist; 3943 uint16_t hmacid; 3944 uint32_t i; 3945 size_t found; 3946 3947 SCTP_CHECK_AND_CAST(shmac, optval, struct sctp_hmacalgo, optsize); 3948 if (optsize < sizeof(struct sctp_hmacalgo) + shmac->shmac_number_of_idents * sizeof(uint16_t)) { 3949 SCTP_LTRACE_ERR_RET(inp, NULL, NULL, SCTP_FROM_SCTP_USRREQ, EINVAL); 3950 error = EINVAL; 3951 break; 3952 } 3953 hmaclist = sctp_alloc_hmaclist(shmac->shmac_number_of_idents); 3954 if (hmaclist == NULL) { 3955 SCTP_LTRACE_ERR_RET(inp, NULL, NULL, SCTP_FROM_SCTP_USRREQ, ENOMEM); 3956 error = ENOMEM; 3957 break; 3958 } 3959 for (i = 0; i < shmac->shmac_number_of_idents; i++) { 3960 hmacid = shmac->shmac_idents[i]; 3961 if (sctp_auth_add_hmacid(hmaclist, hmacid)) { 3962 /* invalid HMACs were found */ ; 3963 SCTP_LTRACE_ERR_RET(inp, NULL, NULL, SCTP_FROM_SCTP_USRREQ, EINVAL); 3964 error = EINVAL; 3965 sctp_free_hmaclist(hmaclist); 3966 goto sctp_set_hmac_done; 3967 } 3968 } 3969 found = 0; 3970 for (i = 0; i < hmaclist->num_algo; i++) { 3971 if (hmaclist->hmac[i] == SCTP_AUTH_HMAC_ID_SHA1) { 3972 /* already in list */ 3973 found = 1; 3974 } 3975 } 3976 if (!found) { 3977 sctp_free_hmaclist(hmaclist); 3978 SCTP_LTRACE_ERR_RET(inp, NULL, NULL, SCTP_FROM_SCTP_USRREQ, EINVAL); 3979 error = EINVAL; 3980 break; 3981 } 3982 /* set it on the endpoint */ 3983 SCTP_INP_WLOCK(inp); 3984 if (inp->sctp_ep.local_hmacs) 3985 sctp_free_hmaclist(inp->sctp_ep.local_hmacs); 3986 inp->sctp_ep.local_hmacs = hmaclist; 3987 SCTP_INP_WUNLOCK(inp); 3988 sctp_set_hmac_done: 3989 break; 3990 } 3991 case SCTP_AUTH_ACTIVE_KEY: 3992 { 3993 struct sctp_authkeyid *scact; 3994 3995 SCTP_CHECK_AND_CAST(scact, optval, struct sctp_authkeyid, optsize); 3996 SCTP_FIND_STCB(inp, stcb, scact->scact_assoc_id); 3997 3998 /* set the active key on the right place */ 3999 if (stcb) { 4000 /* set the active key on the assoc */ 4001 if (sctp_auth_setactivekey(stcb, 4002 scact->scact_keynumber)) { 4003 SCTP_LTRACE_ERR_RET(inp, NULL, NULL, 4004 SCTP_FROM_SCTP_USRREQ, 4005 EINVAL); 4006 error = EINVAL; 4007 } 4008 SCTP_TCB_UNLOCK(stcb); 4009 } else { 4010 if ((inp->sctp_flags & SCTP_PCB_FLAGS_TCPTYPE) || 4011 (inp->sctp_flags & SCTP_PCB_FLAGS_IN_TCPPOOL) || 4012 (scact->scact_assoc_id == SCTP_FUTURE_ASSOC) || 4013 (scact->scact_assoc_id == SCTP_ALL_ASSOC)) { 4014 SCTP_INP_WLOCK(inp); 4015 if (sctp_auth_setactivekey_ep(inp, scact->scact_keynumber)) { 4016 SCTP_LTRACE_ERR_RET(inp, NULL, NULL, SCTP_FROM_SCTP_USRREQ, EINVAL); 4017 error = EINVAL; 4018 } 4019 SCTP_INP_WUNLOCK(inp); 4020 } 4021 if ((scact->scact_assoc_id == SCTP_CURRENT_ASSOC) || 4022 (scact->scact_assoc_id == SCTP_ALL_ASSOC)) { 4023 SCTP_INP_RLOCK(inp); 4024 LIST_FOREACH(stcb, &inp->sctp_asoc_list, sctp_tcblist) { 4025 SCTP_TCB_LOCK(stcb); 4026 sctp_auth_setactivekey(stcb, scact->scact_keynumber); 4027 SCTP_TCB_UNLOCK(stcb); 4028 } 4029 SCTP_INP_RUNLOCK(inp); 4030 } 4031 } 4032 break; 4033 } 4034 case SCTP_AUTH_DELETE_KEY: 4035 { 4036 struct sctp_authkeyid *scdel; 4037 4038 SCTP_CHECK_AND_CAST(scdel, optval, struct sctp_authkeyid, optsize); 4039 SCTP_FIND_STCB(inp, stcb, scdel->scact_assoc_id); 4040 4041 /* delete the key from the right place */ 4042 if (stcb) { 4043 if (sctp_delete_sharedkey(stcb, scdel->scact_keynumber)) { 4044 SCTP_LTRACE_ERR_RET(inp, NULL, NULL, SCTP_FROM_SCTP_USRREQ, EINVAL); 4045 error = EINVAL; 4046 } 4047 SCTP_TCB_UNLOCK(stcb); 4048 } else { 4049 if ((inp->sctp_flags & SCTP_PCB_FLAGS_TCPTYPE) || 4050 (inp->sctp_flags & SCTP_PCB_FLAGS_IN_TCPPOOL) || 4051 (scdel->scact_assoc_id == SCTP_FUTURE_ASSOC) || 4052 (scdel->scact_assoc_id == SCTP_ALL_ASSOC)) { 4053 SCTP_INP_WLOCK(inp); 4054 if (sctp_delete_sharedkey_ep(inp, scdel->scact_keynumber)) { 4055 SCTP_LTRACE_ERR_RET(inp, NULL, NULL, SCTP_FROM_SCTP_USRREQ, EINVAL); 4056 error = EINVAL; 4057 } 4058 SCTP_INP_WUNLOCK(inp); 4059 } 4060 if ((scdel->scact_assoc_id == SCTP_CURRENT_ASSOC) || 4061 (scdel->scact_assoc_id == SCTP_ALL_ASSOC)) { 4062 SCTP_INP_RLOCK(inp); 4063 LIST_FOREACH(stcb, &inp->sctp_asoc_list, sctp_tcblist) { 4064 SCTP_TCB_LOCK(stcb); 4065 sctp_delete_sharedkey(stcb, scdel->scact_keynumber); 4066 SCTP_TCB_UNLOCK(stcb); 4067 } 4068 SCTP_INP_RUNLOCK(inp); 4069 } 4070 } 4071 break; 4072 } 4073 case SCTP_AUTH_DEACTIVATE_KEY: 4074 { 4075 struct sctp_authkeyid *keyid; 4076 4077 SCTP_CHECK_AND_CAST(keyid, optval, struct sctp_authkeyid, optsize); 4078 SCTP_FIND_STCB(inp, stcb, keyid->scact_assoc_id); 4079 4080 /* deactivate the key from the right place */ 4081 if (stcb) { 4082 if (sctp_deact_sharedkey(stcb, keyid->scact_keynumber)) { 4083 SCTP_LTRACE_ERR_RET(inp, NULL, NULL, SCTP_FROM_SCTP_USRREQ, EINVAL); 4084 error = EINVAL; 4085 } 4086 SCTP_TCB_UNLOCK(stcb); 4087 } else { 4088 if ((inp->sctp_flags & SCTP_PCB_FLAGS_TCPTYPE) || 4089 (inp->sctp_flags & SCTP_PCB_FLAGS_IN_TCPPOOL) || 4090 (keyid->scact_assoc_id == SCTP_FUTURE_ASSOC) || 4091 (keyid->scact_assoc_id == SCTP_ALL_ASSOC)) { 4092 SCTP_INP_WLOCK(inp); 4093 if (sctp_deact_sharedkey_ep(inp, keyid->scact_keynumber)) { 4094 SCTP_LTRACE_ERR_RET(inp, NULL, NULL, SCTP_FROM_SCTP_USRREQ, EINVAL); 4095 error = EINVAL; 4096 } 4097 SCTP_INP_WUNLOCK(inp); 4098 } 4099 if ((keyid->scact_assoc_id == SCTP_CURRENT_ASSOC) || 4100 (keyid->scact_assoc_id == SCTP_ALL_ASSOC)) { 4101 SCTP_INP_RLOCK(inp); 4102 LIST_FOREACH(stcb, &inp->sctp_asoc_list, sctp_tcblist) { 4103 SCTP_TCB_LOCK(stcb); 4104 sctp_deact_sharedkey(stcb, keyid->scact_keynumber); 4105 SCTP_TCB_UNLOCK(stcb); 4106 } 4107 SCTP_INP_RUNLOCK(inp); 4108 } 4109 } 4110 break; 4111 } 4112 case SCTP_ENABLE_STREAM_RESET: 4113 { 4114 struct sctp_assoc_value *av; 4115 4116 SCTP_CHECK_AND_CAST(av, optval, struct sctp_assoc_value, optsize); 4117 if (av->assoc_value & (~SCTP_ENABLE_VALUE_MASK)) { 4118 SCTP_LTRACE_ERR_RET(inp, NULL, NULL, SCTP_FROM_SCTP_USRREQ, EINVAL); 4119 error = EINVAL; 4120 break; 4121 } 4122 SCTP_FIND_STCB(inp, stcb, av->assoc_id); 4123 if (stcb) { 4124 stcb->asoc.local_strreset_support = (uint8_t) av->assoc_value; 4125 SCTP_TCB_UNLOCK(stcb); 4126 } else { 4127 if ((inp->sctp_flags & SCTP_PCB_FLAGS_TCPTYPE) || 4128 (inp->sctp_flags & SCTP_PCB_FLAGS_IN_TCPPOOL) || 4129 (av->assoc_id == SCTP_FUTURE_ASSOC) || 4130 (av->assoc_id == SCTP_ALL_ASSOC)) { 4131 SCTP_INP_WLOCK(inp); 4132 inp->local_strreset_support = (uint8_t) av->assoc_value; 4133 SCTP_INP_WUNLOCK(inp); 4134 } 4135 if ((av->assoc_id == SCTP_CURRENT_ASSOC) || 4136 (av->assoc_id == SCTP_ALL_ASSOC)) { 4137 SCTP_INP_RLOCK(inp); 4138 LIST_FOREACH(stcb, &inp->sctp_asoc_list, sctp_tcblist) { 4139 SCTP_TCB_LOCK(stcb); 4140 stcb->asoc.local_strreset_support = (uint8_t) av->assoc_value; 4141 SCTP_TCB_UNLOCK(stcb); 4142 } 4143 SCTP_INP_RUNLOCK(inp); 4144 } 4145 } 4146 break; 4147 } 4148 case SCTP_RESET_STREAMS: 4149 { 4150 struct sctp_reset_streams *strrst; 4151 int i, send_out = 0; 4152 int send_in = 0; 4153 4154 SCTP_CHECK_AND_CAST(strrst, optval, struct sctp_reset_streams, optsize); 4155 SCTP_FIND_STCB(inp, stcb, strrst->srs_assoc_id); 4156 if (stcb == NULL) { 4157 SCTP_LTRACE_ERR_RET(inp, NULL, NULL, SCTP_FROM_SCTP_USRREQ, ENOENT); 4158 error = ENOENT; 4159 break; 4160 } 4161 if (stcb->asoc.peer_supports_strreset == 0) { 4162 /* 4163 * Peer does not support the chunk type. 4164 */ 4165 SCTP_LTRACE_ERR_RET(inp, NULL, NULL, SCTP_FROM_SCTP_USRREQ, EOPNOTSUPP); 4166 error = EOPNOTSUPP; 4167 SCTP_TCB_UNLOCK(stcb); 4168 break; 4169 } 4170 if (stcb->asoc.stream_reset_outstanding) { 4171 SCTP_LTRACE_ERR_RET(inp, NULL, NULL, SCTP_FROM_SCTP_USRREQ, EALREADY); 4172 error = EALREADY; 4173 SCTP_TCB_UNLOCK(stcb); 4174 break; 4175 } 4176 if (strrst->srs_flags & SCTP_STREAM_RESET_INCOMING) { 4177 send_in = 1; 4178 } 4179 if (strrst->srs_flags & SCTP_STREAM_RESET_OUTGOING) { 4180 send_out = 1; 4181 } 4182 if ((send_in == 0) && (send_out == 0)) { 4183 SCTP_LTRACE_ERR_RET(inp, NULL, NULL, SCTP_FROM_SCTP_USRREQ, EINVAL); 4184 error = EINVAL; 4185 SCTP_TCB_UNLOCK(stcb); 4186 break; 4187 } 4188 for (i = 0; i < strrst->srs_number_streams; i++) { 4189 if ((send_in) && 4190 (strrst->srs_stream_list[i] > stcb->asoc.streamincnt)) { 4191 SCTP_LTRACE_ERR_RET(inp, NULL, NULL, SCTP_FROM_SCTP_USRREQ, EINVAL); 4192 error = EINVAL; 4193 break; 4194 } 4195 if ((send_out) && 4196 (strrst->srs_stream_list[i] > stcb->asoc.streamoutcnt)) { 4197 SCTP_LTRACE_ERR_RET(inp, NULL, NULL, SCTP_FROM_SCTP_USRREQ, EINVAL); 4198 error = EINVAL; 4199 break; 4200 } 4201 } 4202 if (error) { 4203 SCTP_TCB_UNLOCK(stcb); 4204 break; 4205 } 4206 error = sctp_send_str_reset_req(stcb, strrst->srs_number_streams, 4207 strrst->srs_stream_list, 4208 send_out, send_in, 0, 0, 0, 0, 0); 4209 4210 sctp_chunk_output(inp, stcb, SCTP_OUTPUT_FROM_STRRST_REQ, SCTP_SO_LOCKED); 4211 SCTP_TCB_UNLOCK(stcb); 4212 break; 4213 } 4214 case SCTP_ADD_STREAMS: 4215 { 4216 struct sctp_add_streams *stradd; 4217 uint8_t addstream = 0; 4218 uint16_t add_o_strmcnt = 0; 4219 uint16_t add_i_strmcnt = 0; 4220 4221 SCTP_CHECK_AND_CAST(stradd, optval, struct sctp_add_streams, optsize); 4222 SCTP_FIND_STCB(inp, stcb, stradd->sas_assoc_id); 4223 if (stcb == NULL) { 4224 SCTP_LTRACE_ERR_RET(inp, NULL, NULL, SCTP_FROM_SCTP_USRREQ, ENOENT); 4225 error = ENOENT; 4226 break; 4227 } 4228 if (stcb->asoc.peer_supports_strreset == 0) { 4229 /* 4230 * Peer does not support the chunk type. 4231 */ 4232 SCTP_LTRACE_ERR_RET(inp, NULL, NULL, SCTP_FROM_SCTP_USRREQ, EOPNOTSUPP); 4233 error = EOPNOTSUPP; 4234 SCTP_TCB_UNLOCK(stcb); 4235 break; 4236 } 4237 if (stcb->asoc.stream_reset_outstanding) { 4238 SCTP_LTRACE_ERR_RET(inp, NULL, NULL, SCTP_FROM_SCTP_USRREQ, EALREADY); 4239 error = EALREADY; 4240 SCTP_TCB_UNLOCK(stcb); 4241 break; 4242 } 4243 if ((stradd->sas_outstrms == 0) && 4244 (stradd->sas_instrms == 0)) { 4245 error = EINVAL; 4246 goto skip_stuff; 4247 } 4248 if (stradd->sas_outstrms) { 4249 addstream = 1; 4250 /* We allocate here */ 4251 add_o_strmcnt = stradd->sas_outstrms; 4252 if ((((int)add_o_strmcnt) + ((int)stcb->asoc.streamoutcnt)) > 0x0000ffff) { 4253 /* You can't have more than 64k */ 4254 error = EINVAL; 4255 goto skip_stuff; 4256 } 4257 } 4258 if (stradd->sas_instrms) { 4259 int cnt; 4260 4261 addstream |= 2; 4262 /* 4263 * We allocate inside 4264 * sctp_send_str_reset_req() 4265 */ 4266 add_i_strmcnt = stradd->sas_instrms; 4267 cnt = add_i_strmcnt; 4268 cnt += stcb->asoc.streamincnt; 4269 if (cnt > 0x0000ffff) { 4270 /* You can't have more than 64k */ 4271 error = EINVAL; 4272 goto skip_stuff; 4273 } 4274 if (cnt > (int)stcb->asoc.max_inbound_streams) { 4275 /* More than you are allowed */ 4276 error = EINVAL; 4277 goto skip_stuff; 4278 } 4279 } 4280 error = sctp_send_str_reset_req(stcb, 0, NULL, 0, 0, 0, addstream, add_o_strmcnt, add_i_strmcnt, 0); 4281 sctp_chunk_output(inp, stcb, SCTP_OUTPUT_FROM_STRRST_REQ, SCTP_SO_LOCKED); 4282 skip_stuff: 4283 SCTP_TCB_UNLOCK(stcb); 4284 break; 4285 } 4286 case SCTP_RESET_ASSOC: 4287 { 4288 uint32_t *value; 4289 4290 SCTP_CHECK_AND_CAST(value, optval, uint32_t, optsize); 4291 SCTP_FIND_STCB(inp, stcb, (sctp_assoc_t) * value); 4292 if (stcb == NULL) { 4293 SCTP_LTRACE_ERR_RET(inp, NULL, NULL, SCTP_FROM_SCTP_USRREQ, ENOENT); 4294 error = ENOENT; 4295 break; 4296 } 4297 if (stcb->asoc.peer_supports_strreset == 0) { 4298 /* 4299 * Peer does not support the chunk type. 4300 */ 4301 SCTP_LTRACE_ERR_RET(inp, NULL, NULL, SCTP_FROM_SCTP_USRREQ, EOPNOTSUPP); 4302 error = EOPNOTSUPP; 4303 SCTP_TCB_UNLOCK(stcb); 4304 break; 4305 } 4306 if (stcb->asoc.stream_reset_outstanding) { 4307 SCTP_LTRACE_ERR_RET(inp, NULL, NULL, SCTP_FROM_SCTP_USRREQ, EALREADY); 4308 error = EALREADY; 4309 SCTP_TCB_UNLOCK(stcb); 4310 break; 4311 } 4312 error = sctp_send_str_reset_req(stcb, 0, NULL, 0, 0, 1, 0, 0, 0, 0); 4313 sctp_chunk_output(inp, stcb, SCTP_OUTPUT_FROM_STRRST_REQ, SCTP_SO_LOCKED); 4314 SCTP_TCB_UNLOCK(stcb); 4315 break; 4316 } 4317 case SCTP_CONNECT_X: 4318 if (optsize < (sizeof(int) + sizeof(struct sockaddr_in))) { 4319 SCTP_LTRACE_ERR_RET(inp, NULL, NULL, SCTP_FROM_SCTP_USRREQ, EINVAL); 4320 error = EINVAL; 4321 break; 4322 } 4323 error = sctp_do_connect_x(so, inp, optval, optsize, p, 0); 4324 break; 4325 case SCTP_CONNECT_X_DELAYED: 4326 if (optsize < (sizeof(int) + sizeof(struct sockaddr_in))) { 4327 SCTP_LTRACE_ERR_RET(inp, NULL, NULL, SCTP_FROM_SCTP_USRREQ, EINVAL); 4328 error = EINVAL; 4329 break; 4330 } 4331 error = sctp_do_connect_x(so, inp, optval, optsize, p, 1); 4332 break; 4333 case SCTP_CONNECT_X_COMPLETE: 4334 { 4335 struct sockaddr *sa; 4336 struct sctp_nets *net; 4337 4338 /* FIXME MT: check correct? */ 4339 SCTP_CHECK_AND_CAST(sa, optval, struct sockaddr, optsize); 4340 4341 /* find tcb */ 4342 if (inp->sctp_flags & SCTP_PCB_FLAGS_CONNECTED) { 4343 SCTP_INP_RLOCK(inp); 4344 stcb = LIST_FIRST(&inp->sctp_asoc_list); 4345 if (stcb) { 4346 SCTP_TCB_LOCK(stcb); 4347 net = sctp_findnet(stcb, sa); 4348 } 4349 SCTP_INP_RUNLOCK(inp); 4350 } else { 4351 /* 4352 * We increment here since 4353 * sctp_findassociation_ep_addr() wil do a 4354 * decrement if it finds the stcb as long as 4355 * the locked tcb (last argument) is NOT a 4356 * TCB.. aka NULL. 4357 */ 4358 SCTP_INP_INCR_REF(inp); 4359 stcb = sctp_findassociation_ep_addr(&inp, sa, &net, NULL, NULL); 4360 if (stcb == NULL) { 4361 SCTP_INP_DECR_REF(inp); 4362 } 4363 } 4364 4365 if (stcb == NULL) { 4366 SCTP_LTRACE_ERR_RET(inp, NULL, NULL, SCTP_FROM_SCTP_USRREQ, ENOENT); 4367 error = ENOENT; 4368 break; 4369 } 4370 if (stcb->asoc.delayed_connection == 1) { 4371 stcb->asoc.delayed_connection = 0; 4372 (void)SCTP_GETTIME_TIMEVAL(&stcb->asoc.time_entered); 4373 sctp_timer_stop(SCTP_TIMER_TYPE_INIT, inp, stcb, 4374 stcb->asoc.primary_destination, 4375 SCTP_FROM_SCTP_USRREQ + SCTP_LOC_9); 4376 sctp_send_initiate(inp, stcb, SCTP_SO_LOCKED); 4377 } else { 4378 /* 4379 * already expired or did not use delayed 4380 * connectx 4381 */ 4382 SCTP_LTRACE_ERR_RET(inp, NULL, NULL, SCTP_FROM_SCTP_USRREQ, EALREADY); 4383 error = EALREADY; 4384 } 4385 SCTP_TCB_UNLOCK(stcb); 4386 break; 4387 } 4388 case SCTP_MAX_BURST: 4389 { 4390 struct sctp_assoc_value *av; 4391 4392 SCTP_CHECK_AND_CAST(av, optval, struct sctp_assoc_value, optsize); 4393 SCTP_FIND_STCB(inp, stcb, av->assoc_id); 4394 4395 if (stcb) { 4396 stcb->asoc.max_burst = av->assoc_value; 4397 SCTP_TCB_UNLOCK(stcb); 4398 } else { 4399 if ((inp->sctp_flags & SCTP_PCB_FLAGS_TCPTYPE) || 4400 (inp->sctp_flags & SCTP_PCB_FLAGS_IN_TCPPOOL) || 4401 (av->assoc_id == SCTP_FUTURE_ASSOC) || 4402 (av->assoc_id == SCTP_ALL_ASSOC)) { 4403 SCTP_INP_WLOCK(inp); 4404 inp->sctp_ep.max_burst = av->assoc_value; 4405 SCTP_INP_WUNLOCK(inp); 4406 } 4407 if ((av->assoc_id == SCTP_CURRENT_ASSOC) || 4408 (av->assoc_id == SCTP_ALL_ASSOC)) { 4409 SCTP_INP_RLOCK(inp); 4410 LIST_FOREACH(stcb, &inp->sctp_asoc_list, sctp_tcblist) { 4411 SCTP_TCB_LOCK(stcb); 4412 stcb->asoc.max_burst = av->assoc_value; 4413 SCTP_TCB_UNLOCK(stcb); 4414 } 4415 SCTP_INP_RUNLOCK(inp); 4416 } 4417 } 4418 break; 4419 } 4420 case SCTP_MAXSEG: 4421 { 4422 struct sctp_assoc_value *av; 4423 int ovh; 4424 4425 SCTP_CHECK_AND_CAST(av, optval, struct sctp_assoc_value, optsize); 4426 SCTP_FIND_STCB(inp, stcb, av->assoc_id); 4427 4428 if (inp->sctp_flags & SCTP_PCB_FLAGS_BOUND_V6) { 4429 ovh = SCTP_MED_OVERHEAD; 4430 } else { 4431 ovh = SCTP_MED_V4_OVERHEAD; 4432 } 4433 if (stcb) { 4434 if (av->assoc_value) { 4435 stcb->asoc.sctp_frag_point = (av->assoc_value + ovh); 4436 } else { 4437 stcb->asoc.sctp_frag_point = SCTP_DEFAULT_MAXSEGMENT; 4438 } 4439 SCTP_TCB_UNLOCK(stcb); 4440 } else { 4441 if ((inp->sctp_flags & SCTP_PCB_FLAGS_TCPTYPE) || 4442 (inp->sctp_flags & SCTP_PCB_FLAGS_IN_TCPPOOL) || 4443 (av->assoc_id == SCTP_FUTURE_ASSOC)) { 4444 SCTP_INP_WLOCK(inp); 4445 /* 4446 * FIXME MT: I think this is not in 4447 * tune with the API ID 4448 */ 4449 if (av->assoc_value) { 4450 inp->sctp_frag_point = (av->assoc_value + ovh); 4451 } else { 4452 inp->sctp_frag_point = SCTP_DEFAULT_MAXSEGMENT; 4453 } 4454 SCTP_INP_WUNLOCK(inp); 4455 } else { 4456 SCTP_LTRACE_ERR_RET(inp, NULL, NULL, SCTP_FROM_SCTP_USRREQ, EINVAL); 4457 error = EINVAL; 4458 } 4459 } 4460 break; 4461 } 4462 case SCTP_EVENTS: 4463 { 4464 struct sctp_event_subscribe *events; 4465 4466 SCTP_CHECK_AND_CAST(events, optval, struct sctp_event_subscribe, optsize); 4467 4468 SCTP_INP_WLOCK(inp); 4469 if (events->sctp_data_io_event) { 4470 sctp_feature_on(inp, SCTP_PCB_FLAGS_RECVDATAIOEVNT); 4471 } else { 4472 sctp_feature_off(inp, SCTP_PCB_FLAGS_RECVDATAIOEVNT); 4473 } 4474 4475 if (events->sctp_association_event) { 4476 sctp_feature_on(inp, SCTP_PCB_FLAGS_RECVASSOCEVNT); 4477 } else { 4478 sctp_feature_off(inp, SCTP_PCB_FLAGS_RECVASSOCEVNT); 4479 } 4480 4481 if (events->sctp_address_event) { 4482 sctp_feature_on(inp, SCTP_PCB_FLAGS_RECVPADDREVNT); 4483 } else { 4484 sctp_feature_off(inp, SCTP_PCB_FLAGS_RECVPADDREVNT); 4485 } 4486 4487 if (events->sctp_send_failure_event) { 4488 sctp_feature_on(inp, SCTP_PCB_FLAGS_RECVSENDFAILEVNT); 4489 } else { 4490 sctp_feature_off(inp, SCTP_PCB_FLAGS_RECVSENDFAILEVNT); 4491 } 4492 4493 if (events->sctp_peer_error_event) { 4494 sctp_feature_on(inp, SCTP_PCB_FLAGS_RECVPEERERR); 4495 } else { 4496 sctp_feature_off(inp, SCTP_PCB_FLAGS_RECVPEERERR); 4497 } 4498 4499 if (events->sctp_shutdown_event) { 4500 sctp_feature_on(inp, SCTP_PCB_FLAGS_RECVSHUTDOWNEVNT); 4501 } else { 4502 sctp_feature_off(inp, SCTP_PCB_FLAGS_RECVSHUTDOWNEVNT); 4503 } 4504 4505 if (events->sctp_partial_delivery_event) { 4506 sctp_feature_on(inp, SCTP_PCB_FLAGS_PDAPIEVNT); 4507 } else { 4508 sctp_feature_off(inp, SCTP_PCB_FLAGS_PDAPIEVNT); 4509 } 4510 4511 if (events->sctp_adaptation_layer_event) { 4512 sctp_feature_on(inp, SCTP_PCB_FLAGS_ADAPTATIONEVNT); 4513 } else { 4514 sctp_feature_off(inp, SCTP_PCB_FLAGS_ADAPTATIONEVNT); 4515 } 4516 4517 if (events->sctp_authentication_event) { 4518 sctp_feature_on(inp, SCTP_PCB_FLAGS_AUTHEVNT); 4519 } else { 4520 sctp_feature_off(inp, SCTP_PCB_FLAGS_AUTHEVNT); 4521 } 4522 4523 if (events->sctp_sender_dry_event) { 4524 sctp_feature_on(inp, SCTP_PCB_FLAGS_DRYEVNT); 4525 } else { 4526 sctp_feature_off(inp, SCTP_PCB_FLAGS_DRYEVNT); 4527 } 4528 4529 if (events->sctp_stream_reset_event) { 4530 sctp_feature_on(inp, SCTP_PCB_FLAGS_STREAM_RESETEVNT); 4531 } else { 4532 sctp_feature_off(inp, SCTP_PCB_FLAGS_STREAM_RESETEVNT); 4533 } 4534 SCTP_INP_WUNLOCK(inp); 4535 4536 SCTP_INP_RLOCK(inp); 4537 LIST_FOREACH(stcb, &inp->sctp_asoc_list, sctp_tcblist) { 4538 SCTP_TCB_LOCK(stcb); 4539 if (events->sctp_association_event) { 4540 sctp_stcb_feature_on(inp, stcb, SCTP_PCB_FLAGS_RECVASSOCEVNT); 4541 } else { 4542 sctp_stcb_feature_off(inp, stcb, SCTP_PCB_FLAGS_RECVASSOCEVNT); 4543 } 4544 if (events->sctp_address_event) { 4545 sctp_stcb_feature_on(inp, stcb, SCTP_PCB_FLAGS_RECVPADDREVNT); 4546 } else { 4547 sctp_stcb_feature_off(inp, stcb, SCTP_PCB_FLAGS_RECVPADDREVNT); 4548 } 4549 if (events->sctp_send_failure_event) { 4550 sctp_stcb_feature_on(inp, stcb, SCTP_PCB_FLAGS_RECVSENDFAILEVNT); 4551 } else { 4552 sctp_stcb_feature_off(inp, stcb, SCTP_PCB_FLAGS_RECVSENDFAILEVNT); 4553 } 4554 if (events->sctp_peer_error_event) { 4555 sctp_stcb_feature_on(inp, stcb, SCTP_PCB_FLAGS_RECVPEERERR); 4556 } else { 4557 sctp_stcb_feature_off(inp, stcb, SCTP_PCB_FLAGS_RECVPEERERR); 4558 } 4559 if (events->sctp_shutdown_event) { 4560 sctp_stcb_feature_on(inp, stcb, SCTP_PCB_FLAGS_RECVSHUTDOWNEVNT); 4561 } else { 4562 sctp_stcb_feature_off(inp, stcb, SCTP_PCB_FLAGS_RECVSHUTDOWNEVNT); 4563 } 4564 if (events->sctp_partial_delivery_event) { 4565 sctp_stcb_feature_on(inp, stcb, SCTP_PCB_FLAGS_PDAPIEVNT); 4566 } else { 4567 sctp_stcb_feature_off(inp, stcb, SCTP_PCB_FLAGS_PDAPIEVNT); 4568 } 4569 if (events->sctp_adaptation_layer_event) { 4570 sctp_stcb_feature_on(inp, stcb, SCTP_PCB_FLAGS_ADAPTATIONEVNT); 4571 } else { 4572 sctp_stcb_feature_off(inp, stcb, SCTP_PCB_FLAGS_ADAPTATIONEVNT); 4573 } 4574 if (events->sctp_authentication_event) { 4575 sctp_stcb_feature_on(inp, stcb, SCTP_PCB_FLAGS_AUTHEVNT); 4576 } else { 4577 sctp_stcb_feature_off(inp, stcb, SCTP_PCB_FLAGS_AUTHEVNT); 4578 } 4579 if (events->sctp_sender_dry_event) { 4580 sctp_stcb_feature_on(inp, stcb, SCTP_PCB_FLAGS_DRYEVNT); 4581 } else { 4582 sctp_stcb_feature_off(inp, stcb, SCTP_PCB_FLAGS_DRYEVNT); 4583 } 4584 if (events->sctp_stream_reset_event) { 4585 sctp_stcb_feature_on(inp, stcb, SCTP_PCB_FLAGS_STREAM_RESETEVNT); 4586 } else { 4587 sctp_stcb_feature_off(inp, stcb, SCTP_PCB_FLAGS_STREAM_RESETEVNT); 4588 } 4589 SCTP_TCB_UNLOCK(stcb); 4590 } 4591 /* 4592 * Send up the sender dry event only for 1-to-1 4593 * style sockets. 4594 */ 4595 if (events->sctp_sender_dry_event) { 4596 if ((inp->sctp_flags & SCTP_PCB_FLAGS_TCPTYPE) || 4597 (inp->sctp_flags & SCTP_PCB_FLAGS_IN_TCPPOOL)) { 4598 stcb = LIST_FIRST(&inp->sctp_asoc_list); 4599 if (stcb) { 4600 SCTP_TCB_LOCK(stcb); 4601 if (TAILQ_EMPTY(&stcb->asoc.send_queue) && 4602 TAILQ_EMPTY(&stcb->asoc.sent_queue) && 4603 (stcb->asoc.stream_queue_cnt == 0)) { 4604 sctp_ulp_notify(SCTP_NOTIFY_SENDER_DRY, stcb, 0, NULL, SCTP_SO_LOCKED); 4605 } 4606 SCTP_TCB_UNLOCK(stcb); 4607 } 4608 } 4609 } 4610 SCTP_INP_RUNLOCK(inp); 4611 break; 4612 } 4613 case SCTP_ADAPTATION_LAYER: 4614 { 4615 struct sctp_setadaptation *adap_bits; 4616 4617 SCTP_CHECK_AND_CAST(adap_bits, optval, struct sctp_setadaptation, optsize); 4618 SCTP_INP_WLOCK(inp); 4619 inp->sctp_ep.adaptation_layer_indicator = adap_bits->ssb_adaptation_ind; 4620 SCTP_INP_WUNLOCK(inp); 4621 break; 4622 } 4623 #ifdef SCTP_DEBUG 4624 case SCTP_SET_INITIAL_DBG_SEQ: 4625 { 4626 uint32_t *vvv; 4627 4628 SCTP_CHECK_AND_CAST(vvv, optval, uint32_t, optsize); 4629 SCTP_INP_WLOCK(inp); 4630 inp->sctp_ep.initial_sequence_debug = *vvv; 4631 SCTP_INP_WUNLOCK(inp); 4632 break; 4633 } 4634 #endif 4635 case SCTP_DEFAULT_SEND_PARAM: 4636 { 4637 struct sctp_sndrcvinfo *s_info; 4638 4639 SCTP_CHECK_AND_CAST(s_info, optval, struct sctp_sndrcvinfo, optsize); 4640 SCTP_FIND_STCB(inp, stcb, s_info->sinfo_assoc_id); 4641 4642 if (stcb) { 4643 if (s_info->sinfo_stream < stcb->asoc.streamoutcnt) { 4644 memcpy(&stcb->asoc.def_send, s_info, min(optsize, sizeof(stcb->asoc.def_send))); 4645 } else { 4646 SCTP_LTRACE_ERR_RET(inp, NULL, NULL, SCTP_FROM_SCTP_USRREQ, EINVAL); 4647 error = EINVAL; 4648 } 4649 SCTP_TCB_UNLOCK(stcb); 4650 } else { 4651 if ((inp->sctp_flags & SCTP_PCB_FLAGS_TCPTYPE) || 4652 (inp->sctp_flags & SCTP_PCB_FLAGS_IN_TCPPOOL) || 4653 (s_info->sinfo_assoc_id == SCTP_FUTURE_ASSOC) || 4654 (s_info->sinfo_assoc_id == SCTP_ALL_ASSOC)) { 4655 SCTP_INP_WLOCK(inp); 4656 memcpy(&inp->def_send, s_info, min(optsize, sizeof(inp->def_send))); 4657 SCTP_INP_WUNLOCK(inp); 4658 } 4659 if ((s_info->sinfo_assoc_id == SCTP_CURRENT_ASSOC) || 4660 (s_info->sinfo_assoc_id == SCTP_ALL_ASSOC)) { 4661 SCTP_INP_RLOCK(inp); 4662 LIST_FOREACH(stcb, &inp->sctp_asoc_list, sctp_tcblist) { 4663 SCTP_TCB_LOCK(stcb); 4664 if (s_info->sinfo_stream < stcb->asoc.streamoutcnt) { 4665 memcpy(&stcb->asoc.def_send, s_info, min(optsize, sizeof(stcb->asoc.def_send))); 4666 } 4667 SCTP_TCB_UNLOCK(stcb); 4668 } 4669 SCTP_INP_RUNLOCK(inp); 4670 } 4671 } 4672 break; 4673 } 4674 case SCTP_PEER_ADDR_PARAMS: 4675 { 4676 struct sctp_paddrparams *paddrp; 4677 struct sctp_nets *net; 4678 4679 SCTP_CHECK_AND_CAST(paddrp, optval, struct sctp_paddrparams, optsize); 4680 SCTP_FIND_STCB(inp, stcb, paddrp->spp_assoc_id); 4681 net = NULL; 4682 if (stcb) { 4683 net = sctp_findnet(stcb, (struct sockaddr *)&paddrp->spp_address); 4684 } else { 4685 /* 4686 * We increment here since 4687 * sctp_findassociation_ep_addr() wil do a 4688 * decrement if it finds the stcb as long as 4689 * the locked tcb (last argument) is NOT a 4690 * TCB.. aka NULL. 4691 */ 4692 SCTP_INP_INCR_REF(inp); 4693 stcb = sctp_findassociation_ep_addr(&inp, 4694 (struct sockaddr *)&paddrp->spp_address, 4695 &net, NULL, NULL); 4696 if (stcb == NULL) { 4697 SCTP_INP_DECR_REF(inp); 4698 } 4699 } 4700 if (stcb && (net == NULL)) { 4701 struct sockaddr *sa; 4702 4703 sa = (struct sockaddr *)&paddrp->spp_address; 4704 #ifdef INET 4705 if (sa->sa_family == AF_INET) { 4706 4707 struct sockaddr_in *sin; 4708 4709 sin = (struct sockaddr_in *)sa; 4710 if (sin->sin_addr.s_addr) { 4711 SCTP_LTRACE_ERR_RET(inp, NULL, NULL, SCTP_FROM_SCTP_USRREQ, EINVAL); 4712 SCTP_TCB_UNLOCK(stcb); 4713 error = EINVAL; 4714 break; 4715 } 4716 } else 4717 #endif 4718 #ifdef INET6 4719 if (sa->sa_family == AF_INET6) { 4720 struct sockaddr_in6 *sin6; 4721 4722 sin6 = (struct sockaddr_in6 *)sa; 4723 if (!IN6_IS_ADDR_UNSPECIFIED(&sin6->sin6_addr)) { 4724 SCTP_LTRACE_ERR_RET(inp, NULL, NULL, SCTP_FROM_SCTP_USRREQ, EINVAL); 4725 SCTP_TCB_UNLOCK(stcb); 4726 error = EINVAL; 4727 break; 4728 } 4729 } else 4730 #endif 4731 { 4732 error = EAFNOSUPPORT; 4733 SCTP_TCB_UNLOCK(stcb); 4734 SCTP_LTRACE_ERR_RET(inp, NULL, NULL, SCTP_FROM_SCTP_USRREQ, error); 4735 break; 4736 } 4737 } 4738 /* sanity checks */ 4739 if ((paddrp->spp_flags & SPP_HB_ENABLE) && (paddrp->spp_flags & SPP_HB_DISABLE)) { 4740 if (stcb) 4741 SCTP_TCB_UNLOCK(stcb); 4742 SCTP_LTRACE_ERR_RET(inp, NULL, NULL, SCTP_FROM_SCTP_USRREQ, EINVAL); 4743 return (EINVAL); 4744 } 4745 if ((paddrp->spp_flags & SPP_PMTUD_ENABLE) && (paddrp->spp_flags & SPP_PMTUD_DISABLE)) { 4746 if (stcb) 4747 SCTP_TCB_UNLOCK(stcb); 4748 SCTP_LTRACE_ERR_RET(inp, NULL, NULL, SCTP_FROM_SCTP_USRREQ, EINVAL); 4749 return (EINVAL); 4750 } 4751 if (stcb) { 4752 /************************TCB SPECIFIC SET ******************/ 4753 /* 4754 * do we change the timer for HB, we run 4755 * only one? 4756 */ 4757 int ovh = 0; 4758 4759 if (stcb->sctp_ep->sctp_flags & SCTP_PCB_FLAGS_BOUND_V6) { 4760 ovh = SCTP_MED_OVERHEAD; 4761 } else { 4762 ovh = SCTP_MED_V4_OVERHEAD; 4763 } 4764 4765 /* network sets ? */ 4766 if (net) { 4767 /************************NET SPECIFIC SET ******************/ 4768 if (paddrp->spp_flags & SPP_HB_DISABLE) { 4769 if (!(net->dest_state & SCTP_ADDR_UNCONFIRMED) && 4770 !(net->dest_state & SCTP_ADDR_NOHB)) { 4771 sctp_timer_stop(SCTP_TIMER_TYPE_HEARTBEAT, inp, stcb, net, 4772 SCTP_FROM_SCTP_USRREQ + SCTP_LOC_10); 4773 } 4774 net->dest_state |= SCTP_ADDR_NOHB; 4775 } 4776 if (paddrp->spp_flags & SPP_HB_ENABLE) { 4777 if (paddrp->spp_hbinterval) { 4778 net->heart_beat_delay = paddrp->spp_hbinterval; 4779 } else if (paddrp->spp_flags & SPP_HB_TIME_IS_ZERO) { 4780 net->heart_beat_delay = 0; 4781 } 4782 sctp_timer_stop(SCTP_TIMER_TYPE_HEARTBEAT, inp, stcb, net, 4783 SCTP_FROM_SCTP_USRREQ + SCTP_LOC_10); 4784 sctp_timer_start(SCTP_TIMER_TYPE_HEARTBEAT, inp, stcb, net); 4785 net->dest_state &= ~SCTP_ADDR_NOHB; 4786 } 4787 if (paddrp->spp_flags & SPP_HB_DEMAND) { 4788 /* on demand HB */ 4789 sctp_send_hb(stcb, net, SCTP_SO_LOCKED); 4790 sctp_chunk_output(inp, stcb, SCTP_OUTPUT_FROM_SOCKOPT, SCTP_SO_LOCKED); 4791 sctp_timer_start(SCTP_TIMER_TYPE_HEARTBEAT, inp, stcb, net); 4792 } 4793 if ((paddrp->spp_flags & SPP_PMTUD_DISABLE) && (paddrp->spp_pathmtu >= SCTP_SMALLEST_PMTU)) { 4794 if (SCTP_OS_TIMER_PENDING(&net->pmtu_timer.timer)) { 4795 sctp_timer_stop(SCTP_TIMER_TYPE_PATHMTURAISE, inp, stcb, net, 4796 SCTP_FROM_SCTP_USRREQ + SCTP_LOC_10); 4797 } 4798 net->dest_state |= SCTP_ADDR_NO_PMTUD; 4799 if (paddrp->spp_pathmtu > SCTP_DEFAULT_MINSEGMENT) { 4800 net->mtu = paddrp->spp_pathmtu + ovh; 4801 if (net->mtu < stcb->asoc.smallest_mtu) { 4802 sctp_pathmtu_adjustment(stcb, net->mtu); 4803 } 4804 } 4805 } 4806 if (paddrp->spp_flags & SPP_PMTUD_ENABLE) { 4807 if (!SCTP_OS_TIMER_PENDING(&net->pmtu_timer.timer)) { 4808 sctp_timer_start(SCTP_TIMER_TYPE_PATHMTURAISE, inp, stcb, net); 4809 } 4810 net->dest_state &= ~SCTP_ADDR_NO_PMTUD; 4811 } 4812 if (paddrp->spp_pathmaxrxt) { 4813 if (net->dest_state & SCTP_ADDR_PF) { 4814 if (net->error_count > paddrp->spp_pathmaxrxt) { 4815 net->dest_state &= ~SCTP_ADDR_PF; 4816 } 4817 } else { 4818 if ((net->error_count <= paddrp->spp_pathmaxrxt) && 4819 (net->error_count > net->pf_threshold)) { 4820 net->dest_state |= SCTP_ADDR_PF; 4821 sctp_send_hb(stcb, net, SCTP_SO_LOCKED); 4822 sctp_timer_stop(SCTP_TIMER_TYPE_HEARTBEAT, stcb->sctp_ep, stcb, net, SCTP_FROM_SCTP_TIMER + SCTP_LOC_3); 4823 sctp_timer_start(SCTP_TIMER_TYPE_HEARTBEAT, stcb->sctp_ep, stcb, net); 4824 } 4825 } 4826 if (net->dest_state & SCTP_ADDR_REACHABLE) { 4827 if (net->error_count > paddrp->spp_pathmaxrxt) { 4828 net->dest_state &= ~SCTP_ADDR_REACHABLE; 4829 sctp_ulp_notify(SCTP_NOTIFY_INTERFACE_DOWN, stcb, 0, net, SCTP_SO_LOCKED); 4830 } 4831 } else { 4832 if (net->error_count <= paddrp->spp_pathmaxrxt) { 4833 net->dest_state |= SCTP_ADDR_REACHABLE; 4834 sctp_ulp_notify(SCTP_NOTIFY_INTERFACE_UP, stcb, 0, net, SCTP_SO_LOCKED); 4835 } 4836 } 4837 net->failure_threshold = paddrp->spp_pathmaxrxt; 4838 } 4839 if (paddrp->spp_flags & SPP_DSCP) { 4840 net->dscp = paddrp->spp_dscp & 0xfc; 4841 net->dscp |= 0x01; 4842 } 4843 #ifdef INET6 4844 if (paddrp->spp_flags & SPP_IPV6_FLOWLABEL) { 4845 if (net->ro._l_addr.sa.sa_family == AF_INET6) { 4846 net->flowlabel = paddrp->spp_ipv6_flowlabel & 0x000fffff; 4847 net->flowlabel |= 0x80000000; 4848 } 4849 } 4850 #endif 4851 } else { 4852 /************************ASSOC ONLY -- NO NET SPECIFIC SET ******************/ 4853 if (paddrp->spp_pathmaxrxt) { 4854 stcb->asoc.def_net_failure = paddrp->spp_pathmaxrxt; 4855 TAILQ_FOREACH(net, &stcb->asoc.nets, sctp_next) { 4856 if (net->dest_state & SCTP_ADDR_PF) { 4857 if (net->error_count > paddrp->spp_pathmaxrxt) { 4858 net->dest_state &= ~SCTP_ADDR_PF; 4859 } 4860 } else { 4861 if ((net->error_count <= paddrp->spp_pathmaxrxt) && 4862 (net->error_count > net->pf_threshold)) { 4863 net->dest_state |= SCTP_ADDR_PF; 4864 sctp_send_hb(stcb, net, SCTP_SO_LOCKED); 4865 sctp_timer_stop(SCTP_TIMER_TYPE_HEARTBEAT, stcb->sctp_ep, stcb, net, SCTP_FROM_SCTP_TIMER + SCTP_LOC_3); 4866 sctp_timer_start(SCTP_TIMER_TYPE_HEARTBEAT, stcb->sctp_ep, stcb, net); 4867 } 4868 } 4869 if (net->dest_state & SCTP_ADDR_REACHABLE) { 4870 if (net->error_count > paddrp->spp_pathmaxrxt) { 4871 net->dest_state &= ~SCTP_ADDR_REACHABLE; 4872 sctp_ulp_notify(SCTP_NOTIFY_INTERFACE_DOWN, stcb, 0, net, SCTP_SO_LOCKED); 4873 } 4874 } else { 4875 if (net->error_count <= paddrp->spp_pathmaxrxt) { 4876 net->dest_state |= SCTP_ADDR_REACHABLE; 4877 sctp_ulp_notify(SCTP_NOTIFY_INTERFACE_UP, stcb, 0, net, SCTP_SO_LOCKED); 4878 } 4879 } 4880 net->failure_threshold = paddrp->spp_pathmaxrxt; 4881 } 4882 } 4883 if (paddrp->spp_flags & SPP_HB_ENABLE) { 4884 if (paddrp->spp_hbinterval) { 4885 stcb->asoc.heart_beat_delay = paddrp->spp_hbinterval; 4886 } else if (paddrp->spp_flags & SPP_HB_TIME_IS_ZERO) { 4887 stcb->asoc.heart_beat_delay = 0; 4888 } 4889 /* Turn back on the timer */ 4890 TAILQ_FOREACH(net, &stcb->asoc.nets, sctp_next) { 4891 if (paddrp->spp_hbinterval) { 4892 net->heart_beat_delay = paddrp->spp_hbinterval; 4893 } else if (paddrp->spp_flags & SPP_HB_TIME_IS_ZERO) { 4894 net->heart_beat_delay = 0; 4895 } 4896 if (net->dest_state & SCTP_ADDR_NOHB) { 4897 net->dest_state &= ~SCTP_ADDR_NOHB; 4898 } 4899 sctp_timer_stop(SCTP_TIMER_TYPE_HEARTBEAT, inp, stcb, net, 4900 SCTP_FROM_SCTP_USRREQ + SCTP_LOC_10); 4901 sctp_timer_start(SCTP_TIMER_TYPE_HEARTBEAT, inp, stcb, net); 4902 } 4903 sctp_stcb_feature_off(inp, stcb, SCTP_PCB_FLAGS_DONOT_HEARTBEAT); 4904 } 4905 if (paddrp->spp_flags & SPP_HB_DISABLE) { 4906 TAILQ_FOREACH(net, &stcb->asoc.nets, sctp_next) { 4907 if (!(net->dest_state & SCTP_ADDR_NOHB)) { 4908 net->dest_state |= SCTP_ADDR_NOHB; 4909 if (!(net->dest_state & SCTP_ADDR_UNCONFIRMED)) { 4910 sctp_timer_stop(SCTP_TIMER_TYPE_HEARTBEAT, inp, stcb, net, SCTP_FROM_SCTP_USRREQ + SCTP_LOC_10); 4911 } 4912 } 4913 } 4914 sctp_stcb_feature_on(inp, stcb, SCTP_PCB_FLAGS_DONOT_HEARTBEAT); 4915 } 4916 if ((paddrp->spp_flags & SPP_PMTUD_DISABLE) && (paddrp->spp_pathmtu >= SCTP_SMALLEST_PMTU)) { 4917 TAILQ_FOREACH(net, &stcb->asoc.nets, sctp_next) { 4918 if (SCTP_OS_TIMER_PENDING(&net->pmtu_timer.timer)) { 4919 sctp_timer_stop(SCTP_TIMER_TYPE_PATHMTURAISE, inp, stcb, net, 4920 SCTP_FROM_SCTP_USRREQ + SCTP_LOC_10); 4921 } 4922 net->dest_state |= SCTP_ADDR_NO_PMTUD; 4923 if (paddrp->spp_pathmtu > SCTP_DEFAULT_MINSEGMENT) { 4924 net->mtu = paddrp->spp_pathmtu + ovh; 4925 if (net->mtu < stcb->asoc.smallest_mtu) { 4926 sctp_pathmtu_adjustment(stcb, net->mtu); 4927 } 4928 } 4929 } 4930 sctp_stcb_feature_on(inp, stcb, SCTP_PCB_FLAGS_DO_NOT_PMTUD); 4931 } 4932 if (paddrp->spp_flags & SPP_PMTUD_ENABLE) { 4933 TAILQ_FOREACH(net, &stcb->asoc.nets, sctp_next) { 4934 if (!SCTP_OS_TIMER_PENDING(&net->pmtu_timer.timer)) { 4935 sctp_timer_start(SCTP_TIMER_TYPE_PATHMTURAISE, inp, stcb, net); 4936 } 4937 net->dest_state &= ~SCTP_ADDR_NO_PMTUD; 4938 } 4939 sctp_stcb_feature_off(inp, stcb, SCTP_PCB_FLAGS_DO_NOT_PMTUD); 4940 } 4941 if (paddrp->spp_flags & SPP_DSCP) { 4942 TAILQ_FOREACH(net, &stcb->asoc.nets, sctp_next) { 4943 net->dscp = paddrp->spp_dscp & 0xfc; 4944 net->dscp |= 0x01; 4945 } 4946 stcb->asoc.default_dscp = paddrp->spp_dscp & 0xfc; 4947 stcb->asoc.default_dscp |= 0x01; 4948 } 4949 #ifdef INET6 4950 if (paddrp->spp_flags & SPP_IPV6_FLOWLABEL) { 4951 TAILQ_FOREACH(net, &stcb->asoc.nets, sctp_next) { 4952 if (net->ro._l_addr.sa.sa_family == AF_INET6) { 4953 net->flowlabel = paddrp->spp_ipv6_flowlabel & 0x000fffff; 4954 net->flowlabel |= 0x80000000; 4955 } 4956 } 4957 stcb->asoc.default_flowlabel = paddrp->spp_ipv6_flowlabel & 0x000fffff; 4958 stcb->asoc.default_flowlabel |= 0x80000000; 4959 } 4960 #endif 4961 } 4962 SCTP_TCB_UNLOCK(stcb); 4963 } else { 4964 /************************NO TCB, SET TO default stuff ******************/ 4965 if ((inp->sctp_flags & SCTP_PCB_FLAGS_TCPTYPE) || 4966 (inp->sctp_flags & SCTP_PCB_FLAGS_IN_TCPPOOL) || 4967 (paddrp->spp_assoc_id == SCTP_FUTURE_ASSOC)) { 4968 SCTP_INP_WLOCK(inp); 4969 /* 4970 * For the TOS/FLOWLABEL stuff you 4971 * set it with the options on the 4972 * socket 4973 */ 4974 if (paddrp->spp_pathmaxrxt) { 4975 inp->sctp_ep.def_net_failure = paddrp->spp_pathmaxrxt; 4976 } 4977 if (paddrp->spp_flags & SPP_HB_TIME_IS_ZERO) 4978 inp->sctp_ep.sctp_timeoutticks[SCTP_TIMER_HEARTBEAT] = 0; 4979 else if (paddrp->spp_hbinterval) { 4980 if (paddrp->spp_hbinterval > SCTP_MAX_HB_INTERVAL) 4981 paddrp->spp_hbinterval = SCTP_MAX_HB_INTERVAL; 4982 inp->sctp_ep.sctp_timeoutticks[SCTP_TIMER_HEARTBEAT] = MSEC_TO_TICKS(paddrp->spp_hbinterval); 4983 } 4984 if (paddrp->spp_flags & SPP_HB_ENABLE) { 4985 if (paddrp->spp_flags & SPP_HB_TIME_IS_ZERO) { 4986 inp->sctp_ep.sctp_timeoutticks[SCTP_TIMER_HEARTBEAT] = 0; 4987 } else if (paddrp->spp_hbinterval) { 4988 inp->sctp_ep.sctp_timeoutticks[SCTP_TIMER_HEARTBEAT] = MSEC_TO_TICKS(paddrp->spp_hbinterval); 4989 } 4990 sctp_feature_off(inp, SCTP_PCB_FLAGS_DONOT_HEARTBEAT); 4991 } else if (paddrp->spp_flags & SPP_HB_DISABLE) { 4992 sctp_feature_on(inp, SCTP_PCB_FLAGS_DONOT_HEARTBEAT); 4993 } 4994 if (paddrp->spp_flags & SPP_PMTUD_ENABLE) { 4995 sctp_feature_off(inp, SCTP_PCB_FLAGS_DO_NOT_PMTUD); 4996 } else if (paddrp->spp_flags & SPP_PMTUD_DISABLE) { 4997 sctp_feature_on(inp, SCTP_PCB_FLAGS_DO_NOT_PMTUD); 4998 } 4999 if (paddrp->spp_flags & SPP_DSCP) { 5000 inp->sctp_ep.default_dscp = paddrp->spp_dscp & 0xfc; 5001 inp->sctp_ep.default_dscp |= 0x01; 5002 } 5003 #ifdef INET6 5004 if (paddrp->spp_flags & SPP_IPV6_FLOWLABEL) { 5005 if (inp->sctp_flags & SCTP_PCB_FLAGS_BOUND_V6) { 5006 inp->sctp_ep.default_flowlabel = paddrp->spp_ipv6_flowlabel & 0x000fffff; 5007 inp->sctp_ep.default_flowlabel |= 0x80000000; 5008 } 5009 } 5010 #endif 5011 SCTP_INP_WUNLOCK(inp); 5012 } else { 5013 SCTP_LTRACE_ERR_RET(inp, NULL, NULL, SCTP_FROM_SCTP_USRREQ, EINVAL); 5014 error = EINVAL; 5015 } 5016 } 5017 break; 5018 } 5019 case SCTP_RTOINFO: 5020 { 5021 struct sctp_rtoinfo *srto; 5022 uint32_t new_init, new_min, new_max; 5023 5024 SCTP_CHECK_AND_CAST(srto, optval, struct sctp_rtoinfo, optsize); 5025 SCTP_FIND_STCB(inp, stcb, srto->srto_assoc_id); 5026 5027 if (stcb) { 5028 if (srto->srto_initial) 5029 new_init = srto->srto_initial; 5030 else 5031 new_init = stcb->asoc.initial_rto; 5032 if (srto->srto_max) 5033 new_max = srto->srto_max; 5034 else 5035 new_max = stcb->asoc.maxrto; 5036 if (srto->srto_min) 5037 new_min = srto->srto_min; 5038 else 5039 new_min = stcb->asoc.minrto; 5040 if ((new_min <= new_init) && (new_init <= new_max)) { 5041 stcb->asoc.initial_rto = new_init; 5042 stcb->asoc.maxrto = new_max; 5043 stcb->asoc.minrto = new_min; 5044 } else { 5045 SCTP_LTRACE_ERR_RET(inp, NULL, NULL, SCTP_FROM_SCTP_USRREQ, EINVAL); 5046 error = EINVAL; 5047 } 5048 SCTP_TCB_UNLOCK(stcb); 5049 } else { 5050 if ((inp->sctp_flags & SCTP_PCB_FLAGS_TCPTYPE) || 5051 (inp->sctp_flags & SCTP_PCB_FLAGS_IN_TCPPOOL) || 5052 (srto->srto_assoc_id == SCTP_FUTURE_ASSOC)) { 5053 SCTP_INP_WLOCK(inp); 5054 if (srto->srto_initial) 5055 new_init = srto->srto_initial; 5056 else 5057 new_init = inp->sctp_ep.initial_rto; 5058 if (srto->srto_max) 5059 new_max = srto->srto_max; 5060 else 5061 new_max = inp->sctp_ep.sctp_maxrto; 5062 if (srto->srto_min) 5063 new_min = srto->srto_min; 5064 else 5065 new_min = inp->sctp_ep.sctp_minrto; 5066 if ((new_min <= new_init) && (new_init <= new_max)) { 5067 inp->sctp_ep.initial_rto = new_init; 5068 inp->sctp_ep.sctp_maxrto = new_max; 5069 inp->sctp_ep.sctp_minrto = new_min; 5070 } else { 5071 SCTP_LTRACE_ERR_RET(inp, NULL, NULL, SCTP_FROM_SCTP_USRREQ, EINVAL); 5072 error = EINVAL; 5073 } 5074 SCTP_INP_WUNLOCK(inp); 5075 } else { 5076 SCTP_LTRACE_ERR_RET(inp, NULL, NULL, SCTP_FROM_SCTP_USRREQ, EINVAL); 5077 error = EINVAL; 5078 } 5079 } 5080 break; 5081 } 5082 case SCTP_ASSOCINFO: 5083 { 5084 struct sctp_assocparams *sasoc; 5085 5086 SCTP_CHECK_AND_CAST(sasoc, optval, struct sctp_assocparams, optsize); 5087 SCTP_FIND_STCB(inp, stcb, sasoc->sasoc_assoc_id); 5088 if (sasoc->sasoc_cookie_life) { 5089 /* boundary check the cookie life */ 5090 if (sasoc->sasoc_cookie_life < 1000) 5091 sasoc->sasoc_cookie_life = 1000; 5092 if (sasoc->sasoc_cookie_life > SCTP_MAX_COOKIE_LIFE) { 5093 sasoc->sasoc_cookie_life = SCTP_MAX_COOKIE_LIFE; 5094 } 5095 } 5096 if (stcb) { 5097 if (sasoc->sasoc_asocmaxrxt) 5098 stcb->asoc.max_send_times = sasoc->sasoc_asocmaxrxt; 5099 if (sasoc->sasoc_cookie_life) { 5100 stcb->asoc.cookie_life = MSEC_TO_TICKS(sasoc->sasoc_cookie_life); 5101 } 5102 SCTP_TCB_UNLOCK(stcb); 5103 } else { 5104 if ((inp->sctp_flags & SCTP_PCB_FLAGS_TCPTYPE) || 5105 (inp->sctp_flags & SCTP_PCB_FLAGS_IN_TCPPOOL) || 5106 (sasoc->sasoc_assoc_id == SCTP_FUTURE_ASSOC)) { 5107 SCTP_INP_WLOCK(inp); 5108 if (sasoc->sasoc_asocmaxrxt) 5109 inp->sctp_ep.max_send_times = sasoc->sasoc_asocmaxrxt; 5110 if (sasoc->sasoc_cookie_life) { 5111 inp->sctp_ep.def_cookie_life = MSEC_TO_TICKS(sasoc->sasoc_cookie_life); 5112 } 5113 SCTP_INP_WUNLOCK(inp); 5114 } else { 5115 SCTP_LTRACE_ERR_RET(inp, NULL, NULL, SCTP_FROM_SCTP_USRREQ, EINVAL); 5116 error = EINVAL; 5117 } 5118 } 5119 break; 5120 } 5121 case SCTP_INITMSG: 5122 { 5123 struct sctp_initmsg *sinit; 5124 5125 SCTP_CHECK_AND_CAST(sinit, optval, struct sctp_initmsg, optsize); 5126 SCTP_INP_WLOCK(inp); 5127 if (sinit->sinit_num_ostreams) 5128 inp->sctp_ep.pre_open_stream_count = sinit->sinit_num_ostreams; 5129 5130 if (sinit->sinit_max_instreams) 5131 inp->sctp_ep.max_open_streams_intome = sinit->sinit_max_instreams; 5132 5133 if (sinit->sinit_max_attempts) 5134 inp->sctp_ep.max_init_times = sinit->sinit_max_attempts; 5135 5136 if (sinit->sinit_max_init_timeo) 5137 inp->sctp_ep.initial_init_rto_max = sinit->sinit_max_init_timeo; 5138 SCTP_INP_WUNLOCK(inp); 5139 break; 5140 } 5141 case SCTP_PRIMARY_ADDR: 5142 { 5143 struct sctp_setprim *spa; 5144 struct sctp_nets *net; 5145 5146 SCTP_CHECK_AND_CAST(spa, optval, struct sctp_setprim, optsize); 5147 SCTP_FIND_STCB(inp, stcb, spa->ssp_assoc_id); 5148 5149 net = NULL; 5150 if (stcb) { 5151 net = sctp_findnet(stcb, (struct sockaddr *)&spa->ssp_addr); 5152 } else { 5153 /* 5154 * We increment here since 5155 * sctp_findassociation_ep_addr() wil do a 5156 * decrement if it finds the stcb as long as 5157 * the locked tcb (last argument) is NOT a 5158 * TCB.. aka NULL. 5159 */ 5160 SCTP_INP_INCR_REF(inp); 5161 stcb = sctp_findassociation_ep_addr(&inp, 5162 (struct sockaddr *)&spa->ssp_addr, 5163 &net, NULL, NULL); 5164 if (stcb == NULL) { 5165 SCTP_INP_DECR_REF(inp); 5166 } 5167 } 5168 5169 if ((stcb) && (net)) { 5170 if ((net != stcb->asoc.primary_destination) && 5171 (!(net->dest_state & SCTP_ADDR_UNCONFIRMED))) { 5172 /* Ok we need to set it */ 5173 if (sctp_set_primary_addr(stcb, (struct sockaddr *)NULL, net) == 0) { 5174 if ((stcb->asoc.alternate) && 5175 (!(net->dest_state & SCTP_ADDR_PF)) && 5176 (net->dest_state & SCTP_ADDR_REACHABLE)) { 5177 sctp_free_remote_addr(stcb->asoc.alternate); 5178 stcb->asoc.alternate = NULL; 5179 } 5180 } 5181 } 5182 } else { 5183 SCTP_LTRACE_ERR_RET(inp, NULL, NULL, SCTP_FROM_SCTP_USRREQ, EINVAL); 5184 error = EINVAL; 5185 } 5186 if (stcb) { 5187 SCTP_TCB_UNLOCK(stcb); 5188 } 5189 break; 5190 } 5191 case SCTP_SET_DYNAMIC_PRIMARY: 5192 { 5193 union sctp_sockstore *ss; 5194 5195 error = priv_check(curthread, 5196 PRIV_NETINET_RESERVEDPORT); 5197 if (error) 5198 break; 5199 5200 SCTP_CHECK_AND_CAST(ss, optval, union sctp_sockstore, optsize); 5201 /* SUPER USER CHECK? */ 5202 error = sctp_dynamic_set_primary(&ss->sa, vrf_id); 5203 break; 5204 } 5205 case SCTP_SET_PEER_PRIMARY_ADDR: 5206 { 5207 struct sctp_setpeerprim *sspp; 5208 5209 SCTP_CHECK_AND_CAST(sspp, optval, struct sctp_setpeerprim, optsize); 5210 SCTP_FIND_STCB(inp, stcb, sspp->sspp_assoc_id); 5211 if (stcb != NULL) { 5212 struct sctp_ifa *ifa; 5213 5214 ifa = sctp_find_ifa_by_addr((struct sockaddr *)&sspp->sspp_addr, 5215 stcb->asoc.vrf_id, SCTP_ADDR_NOT_LOCKED); 5216 if (ifa == NULL) { 5217 SCTP_LTRACE_ERR_RET(inp, NULL, NULL, SCTP_FROM_SCTP_USRREQ, EINVAL); 5218 error = EINVAL; 5219 goto out_of_it; 5220 } 5221 if ((inp->sctp_flags & SCTP_PCB_FLAGS_BOUNDALL) == 0) { 5222 /* 5223 * Must validate the ifa found is in 5224 * our ep 5225 */ 5226 struct sctp_laddr *laddr; 5227 int found = 0; 5228 5229 LIST_FOREACH(laddr, &inp->sctp_addr_list, sctp_nxt_addr) { 5230 if (laddr->ifa == NULL) { 5231 SCTPDBG(SCTP_DEBUG_OUTPUT1, "%s: NULL ifa\n", 5232 __FUNCTION__); 5233 continue; 5234 } 5235 if (laddr->ifa == ifa) { 5236 found = 1; 5237 break; 5238 } 5239 } 5240 if (!found) { 5241 SCTP_LTRACE_ERR_RET(inp, NULL, NULL, SCTP_FROM_SCTP_USRREQ, EINVAL); 5242 error = EINVAL; 5243 goto out_of_it; 5244 } 5245 } 5246 if (sctp_set_primary_ip_address_sa(stcb, 5247 (struct sockaddr *)&sspp->sspp_addr) != 0) { 5248 SCTP_LTRACE_ERR_RET(inp, NULL, NULL, SCTP_FROM_SCTP_USRREQ, EINVAL); 5249 error = EINVAL; 5250 } 5251 out_of_it: 5252 SCTP_TCB_UNLOCK(stcb); 5253 } else { 5254 SCTP_LTRACE_ERR_RET(inp, NULL, NULL, SCTP_FROM_SCTP_USRREQ, EINVAL); 5255 error = EINVAL; 5256 } 5257 break; 5258 } 5259 case SCTP_BINDX_ADD_ADDR: 5260 { 5261 struct sctp_getaddresses *addrs; 5262 struct thread *td; 5263 5264 td = (struct thread *)p; 5265 SCTP_CHECK_AND_CAST(addrs, optval, struct sctp_getaddresses, 5266 optsize); 5267 #ifdef INET 5268 if (addrs->addr->sa_family == AF_INET) { 5269 if (optsize < sizeof(struct sctp_getaddresses) - sizeof(struct sockaddr) + sizeof(struct sockaddr_in)) { 5270 SCTP_LTRACE_ERR_RET(inp, NULL, NULL, SCTP_FROM_SCTP_USRREQ, EINVAL); 5271 error = EINVAL; 5272 break; 5273 } 5274 if (td != NULL && (error = prison_local_ip4(td->td_ucred, &(((struct sockaddr_in *)(addrs->addr))->sin_addr)))) { 5275 SCTP_LTRACE_ERR_RET(inp, stcb, NULL, SCTP_FROM_SCTP_USRREQ, error); 5276 break; 5277 } 5278 } else 5279 #endif 5280 #ifdef INET6 5281 if (addrs->addr->sa_family == AF_INET6) { 5282 if (optsize < sizeof(struct sctp_getaddresses) - sizeof(struct sockaddr) + sizeof(struct sockaddr_in6)) { 5283 SCTP_LTRACE_ERR_RET(inp, NULL, NULL, SCTP_FROM_SCTP_USRREQ, EINVAL); 5284 error = EINVAL; 5285 break; 5286 } 5287 if (td != NULL && (error = prison_local_ip6(td->td_ucred, &(((struct sockaddr_in6 *)(addrs->addr))->sin6_addr), 5288 (SCTP_IPV6_V6ONLY(inp) != 0))) != 0) { 5289 SCTP_LTRACE_ERR_RET(inp, stcb, NULL, SCTP_FROM_SCTP_USRREQ, error); 5290 break; 5291 } 5292 } else 5293 #endif 5294 { 5295 error = EAFNOSUPPORT; 5296 break; 5297 } 5298 sctp_bindx_add_address(so, inp, addrs->addr, 5299 addrs->sget_assoc_id, vrf_id, 5300 &error, p); 5301 break; 5302 } 5303 case SCTP_BINDX_REM_ADDR: 5304 { 5305 struct sctp_getaddresses *addrs; 5306 struct thread *td; 5307 5308 td = (struct thread *)p; 5309 5310 SCTP_CHECK_AND_CAST(addrs, optval, struct sctp_getaddresses, optsize); 5311 #ifdef INET 5312 if (addrs->addr->sa_family == AF_INET) { 5313 if (optsize < sizeof(struct sctp_getaddresses) - sizeof(struct sockaddr) + sizeof(struct sockaddr_in)) { 5314 SCTP_LTRACE_ERR_RET(inp, NULL, NULL, SCTP_FROM_SCTP_USRREQ, EINVAL); 5315 error = EINVAL; 5316 break; 5317 } 5318 if (td != NULL && (error = prison_local_ip4(td->td_ucred, &(((struct sockaddr_in *)(addrs->addr))->sin_addr)))) { 5319 SCTP_LTRACE_ERR_RET(inp, stcb, NULL, SCTP_FROM_SCTP_USRREQ, error); 5320 break; 5321 } 5322 } else 5323 #endif 5324 #ifdef INET6 5325 if (addrs->addr->sa_family == AF_INET6) { 5326 if (optsize < sizeof(struct sctp_getaddresses) - sizeof(struct sockaddr) + sizeof(struct sockaddr_in6)) { 5327 SCTP_LTRACE_ERR_RET(inp, NULL, NULL, SCTP_FROM_SCTP_USRREQ, EINVAL); 5328 error = EINVAL; 5329 break; 5330 } 5331 if (td != NULL && 5332 (error = prison_local_ip6(td->td_ucred, 5333 &(((struct sockaddr_in6 *)(addrs->addr))->sin6_addr), 5334 (SCTP_IPV6_V6ONLY(inp) != 0))) != 0) { 5335 SCTP_LTRACE_ERR_RET(inp, stcb, NULL, SCTP_FROM_SCTP_USRREQ, error); 5336 break; 5337 } 5338 } else 5339 #endif 5340 { 5341 error = EAFNOSUPPORT; 5342 break; 5343 } 5344 sctp_bindx_delete_address(inp, addrs->addr, 5345 addrs->sget_assoc_id, vrf_id, 5346 &error); 5347 break; 5348 } 5349 case SCTP_EVENT: 5350 { 5351 struct sctp_event *event; 5352 uint32_t event_type; 5353 5354 SCTP_CHECK_AND_CAST(event, optval, struct sctp_event, optsize); 5355 SCTP_FIND_STCB(inp, stcb, event->se_assoc_id); 5356 switch (event->se_type) { 5357 case SCTP_ASSOC_CHANGE: 5358 event_type = SCTP_PCB_FLAGS_RECVASSOCEVNT; 5359 break; 5360 case SCTP_PEER_ADDR_CHANGE: 5361 event_type = SCTP_PCB_FLAGS_RECVPADDREVNT; 5362 break; 5363 case SCTP_REMOTE_ERROR: 5364 event_type = SCTP_PCB_FLAGS_RECVPEERERR; 5365 break; 5366 case SCTP_SEND_FAILED: 5367 event_type = SCTP_PCB_FLAGS_RECVSENDFAILEVNT; 5368 break; 5369 case SCTP_SHUTDOWN_EVENT: 5370 event_type = SCTP_PCB_FLAGS_RECVSHUTDOWNEVNT; 5371 break; 5372 case SCTP_ADAPTATION_INDICATION: 5373 event_type = SCTP_PCB_FLAGS_ADAPTATIONEVNT; 5374 break; 5375 case SCTP_PARTIAL_DELIVERY_EVENT: 5376 event_type = SCTP_PCB_FLAGS_PDAPIEVNT; 5377 break; 5378 case SCTP_AUTHENTICATION_EVENT: 5379 event_type = SCTP_PCB_FLAGS_AUTHEVNT; 5380 break; 5381 case SCTP_STREAM_RESET_EVENT: 5382 event_type = SCTP_PCB_FLAGS_STREAM_RESETEVNT; 5383 break; 5384 case SCTP_SENDER_DRY_EVENT: 5385 event_type = SCTP_PCB_FLAGS_DRYEVNT; 5386 break; 5387 case SCTP_NOTIFICATIONS_STOPPED_EVENT: 5388 event_type = 0; 5389 SCTP_LTRACE_ERR_RET(inp, NULL, NULL, SCTP_FROM_SCTP_USRREQ, ENOTSUP); 5390 error = ENOTSUP; 5391 break; 5392 case SCTP_ASSOC_RESET_EVENT: 5393 event_type = SCTP_PCB_FLAGS_ASSOC_RESETEVNT; 5394 break; 5395 case SCTP_STREAM_CHANGE_EVENT: 5396 event_type = SCTP_PCB_FLAGS_STREAM_CHANGEEVNT; 5397 break; 5398 case SCTP_SEND_FAILED_EVENT: 5399 event_type = SCTP_PCB_FLAGS_RECVNSENDFAILEVNT; 5400 break; 5401 default: 5402 event_type = 0; 5403 SCTP_LTRACE_ERR_RET(inp, NULL, NULL, SCTP_FROM_SCTP_USRREQ, EINVAL); 5404 error = EINVAL; 5405 break; 5406 } 5407 if (event_type > 0) { 5408 if (stcb) { 5409 if (event->se_on) { 5410 sctp_stcb_feature_on(inp, stcb, event_type); 5411 if (event_type == SCTP_PCB_FLAGS_DRYEVNT) { 5412 if (TAILQ_EMPTY(&stcb->asoc.send_queue) && 5413 TAILQ_EMPTY(&stcb->asoc.sent_queue) && 5414 (stcb->asoc.stream_queue_cnt == 0)) { 5415 sctp_ulp_notify(SCTP_NOTIFY_SENDER_DRY, stcb, 0, NULL, SCTP_SO_LOCKED); 5416 } 5417 } 5418 } else { 5419 sctp_stcb_feature_off(inp, stcb, event_type); 5420 } 5421 SCTP_TCB_UNLOCK(stcb); 5422 } else { 5423 /* 5424 * We don't want to send up a storm 5425 * of events, so return an error for 5426 * sender dry events 5427 */ 5428 if ((event_type == SCTP_PCB_FLAGS_DRYEVNT) && 5429 ((inp->sctp_flags & SCTP_PCB_FLAGS_TCPTYPE) == 0) && 5430 ((inp->sctp_flags & SCTP_PCB_FLAGS_IN_TCPPOOL) == 0) && 5431 ((event->se_assoc_id == SCTP_ALL_ASSOC) || 5432 (event->se_assoc_id == SCTP_CURRENT_ASSOC))) { 5433 SCTP_LTRACE_ERR_RET(inp, NULL, NULL, SCTP_FROM_SCTP_USRREQ, ENOTSUP); 5434 error = ENOTSUP; 5435 break; 5436 } 5437 if ((inp->sctp_flags & SCTP_PCB_FLAGS_TCPTYPE) || 5438 (inp->sctp_flags & SCTP_PCB_FLAGS_IN_TCPPOOL) || 5439 (event->se_assoc_id == SCTP_FUTURE_ASSOC) || 5440 (event->se_assoc_id == SCTP_ALL_ASSOC)) { 5441 SCTP_INP_WLOCK(inp); 5442 if (event->se_on) { 5443 sctp_feature_on(inp, event_type); 5444 } else { 5445 sctp_feature_off(inp, event_type); 5446 } 5447 SCTP_INP_WUNLOCK(inp); 5448 } 5449 if ((event->se_assoc_id == SCTP_CURRENT_ASSOC) || 5450 (event->se_assoc_id == SCTP_ALL_ASSOC)) { 5451 SCTP_INP_RLOCK(inp); 5452 LIST_FOREACH(stcb, &inp->sctp_asoc_list, sctp_tcblist) { 5453 SCTP_TCB_LOCK(stcb); 5454 if (event->se_on) { 5455 sctp_stcb_feature_on(inp, stcb, event_type); 5456 } else { 5457 sctp_stcb_feature_off(inp, stcb, event_type); 5458 } 5459 SCTP_TCB_UNLOCK(stcb); 5460 } 5461 SCTP_INP_RUNLOCK(inp); 5462 } 5463 } 5464 } 5465 break; 5466 } 5467 case SCTP_RECVRCVINFO: 5468 { 5469 int *onoff; 5470 5471 SCTP_CHECK_AND_CAST(onoff, optval, int, optsize); 5472 SCTP_INP_WLOCK(inp); 5473 if (*onoff != 0) { 5474 sctp_feature_on(inp, SCTP_PCB_FLAGS_RECVRCVINFO); 5475 } else { 5476 sctp_feature_off(inp, SCTP_PCB_FLAGS_RECVRCVINFO); 5477 } 5478 SCTP_INP_WUNLOCK(inp); 5479 break; 5480 } 5481 case SCTP_RECVNXTINFO: 5482 { 5483 int *onoff; 5484 5485 SCTP_CHECK_AND_CAST(onoff, optval, int, optsize); 5486 SCTP_INP_WLOCK(inp); 5487 if (*onoff != 0) { 5488 sctp_feature_on(inp, SCTP_PCB_FLAGS_RECVNXTINFO); 5489 } else { 5490 sctp_feature_off(inp, SCTP_PCB_FLAGS_RECVNXTINFO); 5491 } 5492 SCTP_INP_WUNLOCK(inp); 5493 break; 5494 } 5495 case SCTP_DEFAULT_SNDINFO: 5496 { 5497 struct sctp_sndinfo *info; 5498 uint16_t policy; 5499 5500 SCTP_CHECK_AND_CAST(info, optval, struct sctp_sndinfo, optsize); 5501 SCTP_FIND_STCB(inp, stcb, info->snd_assoc_id); 5502 5503 if (stcb) { 5504 if (info->snd_sid < stcb->asoc.streamoutcnt) { 5505 stcb->asoc.def_send.sinfo_stream = info->snd_sid; 5506 policy = PR_SCTP_POLICY(stcb->asoc.def_send.sinfo_flags); 5507 stcb->asoc.def_send.sinfo_flags = info->snd_flags; 5508 stcb->asoc.def_send.sinfo_flags |= policy; 5509 stcb->asoc.def_send.sinfo_ppid = info->snd_ppid; 5510 stcb->asoc.def_send.sinfo_context = info->snd_context; 5511 } else { 5512 SCTP_LTRACE_ERR_RET(inp, NULL, NULL, SCTP_FROM_SCTP_USRREQ, EINVAL); 5513 error = EINVAL; 5514 } 5515 SCTP_TCB_UNLOCK(stcb); 5516 } else { 5517 if ((inp->sctp_flags & SCTP_PCB_FLAGS_TCPTYPE) || 5518 (inp->sctp_flags & SCTP_PCB_FLAGS_IN_TCPPOOL) || 5519 (info->snd_assoc_id == SCTP_FUTURE_ASSOC) || 5520 (info->snd_assoc_id == SCTP_ALL_ASSOC)) { 5521 SCTP_INP_WLOCK(inp); 5522 inp->def_send.sinfo_stream = info->snd_sid; 5523 policy = PR_SCTP_POLICY(inp->def_send.sinfo_flags); 5524 inp->def_send.sinfo_flags = info->snd_flags; 5525 inp->def_send.sinfo_flags |= policy; 5526 inp->def_send.sinfo_ppid = info->snd_ppid; 5527 inp->def_send.sinfo_context = info->snd_context; 5528 SCTP_INP_WUNLOCK(inp); 5529 } 5530 if ((info->snd_assoc_id == SCTP_CURRENT_ASSOC) || 5531 (info->snd_assoc_id == SCTP_ALL_ASSOC)) { 5532 SCTP_INP_RLOCK(inp); 5533 LIST_FOREACH(stcb, &inp->sctp_asoc_list, sctp_tcblist) { 5534 SCTP_TCB_LOCK(stcb); 5535 if (info->snd_sid < stcb->asoc.streamoutcnt) { 5536 stcb->asoc.def_send.sinfo_stream = info->snd_sid; 5537 policy = PR_SCTP_POLICY(stcb->asoc.def_send.sinfo_flags); 5538 stcb->asoc.def_send.sinfo_flags = info->snd_flags; 5539 stcb->asoc.def_send.sinfo_flags |= policy; 5540 stcb->asoc.def_send.sinfo_ppid = info->snd_ppid; 5541 stcb->asoc.def_send.sinfo_context = info->snd_context; 5542 } 5543 SCTP_TCB_UNLOCK(stcb); 5544 } 5545 SCTP_INP_RUNLOCK(inp); 5546 } 5547 } 5548 break; 5549 } 5550 case SCTP_DEFAULT_PRINFO: 5551 { 5552 struct sctp_default_prinfo *info; 5553 5554 SCTP_CHECK_AND_CAST(info, optval, struct sctp_default_prinfo, optsize); 5555 SCTP_FIND_STCB(inp, stcb, info->pr_assoc_id); 5556 5557 if (PR_SCTP_INVALID_POLICY(info->pr_policy)) { 5558 SCTP_LTRACE_ERR_RET(inp, NULL, NULL, SCTP_FROM_SCTP_USRREQ, EINVAL); 5559 error = EINVAL; 5560 break; 5561 } 5562 if (stcb) { 5563 stcb->asoc.def_send.sinfo_flags &= 0xfff0; 5564 stcb->asoc.def_send.sinfo_flags |= info->pr_policy; 5565 stcb->asoc.def_send.sinfo_timetolive = info->pr_value; 5566 SCTP_TCB_UNLOCK(stcb); 5567 } else { 5568 if ((inp->sctp_flags & SCTP_PCB_FLAGS_TCPTYPE) || 5569 (inp->sctp_flags & SCTP_PCB_FLAGS_IN_TCPPOOL) || 5570 (info->pr_assoc_id == SCTP_FUTURE_ASSOC) || 5571 (info->pr_assoc_id == SCTP_ALL_ASSOC)) { 5572 SCTP_INP_WLOCK(inp); 5573 inp->def_send.sinfo_flags &= 0xfff0; 5574 inp->def_send.sinfo_flags |= info->pr_policy; 5575 inp->def_send.sinfo_timetolive = info->pr_value; 5576 SCTP_INP_WUNLOCK(inp); 5577 } 5578 if ((info->pr_assoc_id == SCTP_CURRENT_ASSOC) || 5579 (info->pr_assoc_id == SCTP_ALL_ASSOC)) { 5580 SCTP_INP_RLOCK(inp); 5581 LIST_FOREACH(stcb, &inp->sctp_asoc_list, sctp_tcblist) { 5582 SCTP_TCB_LOCK(stcb); 5583 stcb->asoc.def_send.sinfo_flags &= 0xfff0; 5584 stcb->asoc.def_send.sinfo_flags |= info->pr_policy; 5585 stcb->asoc.def_send.sinfo_timetolive = info->pr_value; 5586 SCTP_TCB_UNLOCK(stcb); 5587 } 5588 SCTP_INP_RUNLOCK(inp); 5589 } 5590 } 5591 break; 5592 } 5593 case SCTP_PEER_ADDR_THLDS: 5594 /* Applies to the specific association */ 5595 { 5596 struct sctp_paddrthlds *thlds; 5597 struct sctp_nets *net; 5598 5599 SCTP_CHECK_AND_CAST(thlds, optval, struct sctp_paddrthlds, optsize); 5600 SCTP_FIND_STCB(inp, stcb, thlds->spt_assoc_id); 5601 net = NULL; 5602 if (stcb) { 5603 net = sctp_findnet(stcb, (struct sockaddr *)&thlds->spt_assoc_id); 5604 } else { 5605 /* 5606 * We increment here since 5607 * sctp_findassociation_ep_addr() wil do a 5608 * decrement if it finds the stcb as long as 5609 * the locked tcb (last argument) is NOT a 5610 * TCB.. aka NULL. 5611 */ 5612 SCTP_INP_INCR_REF(inp); 5613 stcb = sctp_findassociation_ep_addr(&inp, 5614 (struct sockaddr *)&thlds->spt_assoc_id, 5615 &net, NULL, NULL); 5616 if (stcb == NULL) { 5617 SCTP_INP_DECR_REF(inp); 5618 } 5619 } 5620 if (stcb && (net == NULL)) { 5621 struct sockaddr *sa; 5622 5623 sa = (struct sockaddr *)&thlds->spt_assoc_id; 5624 #ifdef INET 5625 if (sa->sa_family == AF_INET) { 5626 5627 struct sockaddr_in *sin; 5628 5629 sin = (struct sockaddr_in *)sa; 5630 if (sin->sin_addr.s_addr) { 5631 SCTP_LTRACE_ERR_RET(inp, NULL, NULL, SCTP_FROM_SCTP_USRREQ, EINVAL); 5632 SCTP_TCB_UNLOCK(stcb); 5633 error = EINVAL; 5634 break; 5635 } 5636 } else 5637 #endif 5638 #ifdef INET6 5639 if (sa->sa_family == AF_INET6) { 5640 struct sockaddr_in6 *sin6; 5641 5642 sin6 = (struct sockaddr_in6 *)sa; 5643 if (!IN6_IS_ADDR_UNSPECIFIED(&sin6->sin6_addr)) { 5644 SCTP_LTRACE_ERR_RET(inp, NULL, NULL, SCTP_FROM_SCTP_USRREQ, EINVAL); 5645 SCTP_TCB_UNLOCK(stcb); 5646 error = EINVAL; 5647 break; 5648 } 5649 } else 5650 #endif 5651 { 5652 error = EAFNOSUPPORT; 5653 SCTP_TCB_UNLOCK(stcb); 5654 SCTP_LTRACE_ERR_RET(inp, NULL, NULL, SCTP_FROM_SCTP_USRREQ, error); 5655 break; 5656 } 5657 } 5658 if (stcb) { 5659 if (net) { 5660 if (net->dest_state & SCTP_ADDR_PF) { 5661 if ((net->failure_threshold > thlds->spt_pathmaxrxt) || 5662 (net->failure_threshold <= thlds->spt_pathpfthld)) { 5663 net->dest_state &= ~SCTP_ADDR_PF; 5664 } 5665 } else { 5666 if ((net->failure_threshold > thlds->spt_pathpfthld) && 5667 (net->failure_threshold <= thlds->spt_pathmaxrxt)) { 5668 net->dest_state |= SCTP_ADDR_PF; 5669 sctp_send_hb(stcb, net, SCTP_SO_LOCKED); 5670 sctp_timer_stop(SCTP_TIMER_TYPE_HEARTBEAT, stcb->sctp_ep, stcb, net, SCTP_FROM_SCTP_TIMER + SCTP_LOC_3); 5671 sctp_timer_start(SCTP_TIMER_TYPE_HEARTBEAT, stcb->sctp_ep, stcb, net); 5672 } 5673 } 5674 if (net->dest_state & SCTP_ADDR_REACHABLE) { 5675 if (net->failure_threshold > thlds->spt_pathmaxrxt) { 5676 net->dest_state &= ~SCTP_ADDR_REACHABLE; 5677 sctp_ulp_notify(SCTP_NOTIFY_INTERFACE_DOWN, stcb, 0, net, SCTP_SO_LOCKED); 5678 } 5679 } else { 5680 if (net->failure_threshold <= thlds->spt_pathmaxrxt) { 5681 net->dest_state |= SCTP_ADDR_REACHABLE; 5682 sctp_ulp_notify(SCTP_NOTIFY_INTERFACE_UP, stcb, 0, net, SCTP_SO_LOCKED); 5683 } 5684 } 5685 net->failure_threshold = thlds->spt_pathmaxrxt; 5686 net->pf_threshold = thlds->spt_pathpfthld; 5687 } else { 5688 TAILQ_FOREACH(net, &stcb->asoc.nets, sctp_next) { 5689 if (net->dest_state & SCTP_ADDR_PF) { 5690 if ((net->failure_threshold > thlds->spt_pathmaxrxt) || 5691 (net->failure_threshold <= thlds->spt_pathpfthld)) { 5692 net->dest_state &= ~SCTP_ADDR_PF; 5693 } 5694 } else { 5695 if ((net->failure_threshold > thlds->spt_pathpfthld) && 5696 (net->failure_threshold <= thlds->spt_pathmaxrxt)) { 5697 net->dest_state |= SCTP_ADDR_PF; 5698 sctp_send_hb(stcb, net, SCTP_SO_LOCKED); 5699 sctp_timer_stop(SCTP_TIMER_TYPE_HEARTBEAT, stcb->sctp_ep, stcb, net, SCTP_FROM_SCTP_TIMER + SCTP_LOC_3); 5700 sctp_timer_start(SCTP_TIMER_TYPE_HEARTBEAT, stcb->sctp_ep, stcb, net); 5701 } 5702 } 5703 if (net->dest_state & SCTP_ADDR_REACHABLE) { 5704 if (net->failure_threshold > thlds->spt_pathmaxrxt) { 5705 net->dest_state &= ~SCTP_ADDR_REACHABLE; 5706 sctp_ulp_notify(SCTP_NOTIFY_INTERFACE_DOWN, stcb, 0, net, SCTP_SO_LOCKED); 5707 } 5708 } else { 5709 if (net->failure_threshold <= thlds->spt_pathmaxrxt) { 5710 net->dest_state |= SCTP_ADDR_REACHABLE; 5711 sctp_ulp_notify(SCTP_NOTIFY_INTERFACE_UP, stcb, 0, net, SCTP_SO_LOCKED); 5712 } 5713 } 5714 net->failure_threshold = thlds->spt_pathmaxrxt; 5715 net->pf_threshold = thlds->spt_pathpfthld; 5716 } 5717 stcb->asoc.def_net_failure = thlds->spt_pathmaxrxt; 5718 stcb->asoc.def_net_pf_threshold = thlds->spt_pathpfthld; 5719 } 5720 } else { 5721 if ((inp->sctp_flags & SCTP_PCB_FLAGS_TCPTYPE) || 5722 (inp->sctp_flags & SCTP_PCB_FLAGS_IN_TCPPOOL) || 5723 (thlds->spt_assoc_id == SCTP_FUTURE_ASSOC)) { 5724 SCTP_INP_WLOCK(inp); 5725 inp->sctp_ep.def_net_failure = thlds->spt_pathmaxrxt; 5726 inp->sctp_ep.def_net_pf_threshold = thlds->spt_pathpfthld; 5727 SCTP_INP_WUNLOCK(inp); 5728 } else { 5729 SCTP_LTRACE_ERR_RET(inp, NULL, NULL, SCTP_FROM_SCTP_USRREQ, EINVAL); 5730 error = EINVAL; 5731 } 5732 } 5733 break; 5734 } 5735 case SCTP_REMOTE_UDP_ENCAPS_PORT: 5736 { 5737 struct sctp_udpencaps *encaps; 5738 struct sctp_nets *net; 5739 5740 SCTP_CHECK_AND_CAST(encaps, optval, struct sctp_udpencaps, optsize); 5741 SCTP_FIND_STCB(inp, stcb, encaps->sue_assoc_id); 5742 if (stcb) { 5743 net = sctp_findnet(stcb, (struct sockaddr *)&encaps->sue_address); 5744 } else { 5745 /* 5746 * We increment here since 5747 * sctp_findassociation_ep_addr() wil do a 5748 * decrement if it finds the stcb as long as 5749 * the locked tcb (last argument) is NOT a 5750 * TCB.. aka NULL. 5751 */ 5752 net = NULL; 5753 SCTP_INP_INCR_REF(inp); 5754 stcb = sctp_findassociation_ep_addr(&inp, (struct sockaddr *)&encaps->sue_address, &net, NULL, NULL); 5755 if (stcb == NULL) { 5756 SCTP_INP_DECR_REF(inp); 5757 } 5758 } 5759 if (stcb && (net == NULL)) { 5760 struct sockaddr *sa; 5761 5762 sa = (struct sockaddr *)&encaps->sue_address; 5763 #ifdef INET 5764 if (sa->sa_family == AF_INET) { 5765 5766 struct sockaddr_in *sin; 5767 5768 sin = (struct sockaddr_in *)sa; 5769 if (sin->sin_addr.s_addr) { 5770 SCTP_LTRACE_ERR_RET(inp, NULL, NULL, SCTP_FROM_SCTP_USRREQ, EINVAL); 5771 SCTP_TCB_UNLOCK(stcb); 5772 error = EINVAL; 5773 break; 5774 } 5775 } else 5776 #endif 5777 #ifdef INET6 5778 if (sa->sa_family == AF_INET6) { 5779 struct sockaddr_in6 *sin6; 5780 5781 sin6 = (struct sockaddr_in6 *)sa; 5782 if (!IN6_IS_ADDR_UNSPECIFIED(&sin6->sin6_addr)) { 5783 SCTP_LTRACE_ERR_RET(inp, NULL, NULL, SCTP_FROM_SCTP_USRREQ, EINVAL); 5784 SCTP_TCB_UNLOCK(stcb); 5785 error = EINVAL; 5786 break; 5787 } 5788 } else 5789 #endif 5790 { 5791 error = EAFNOSUPPORT; 5792 SCTP_TCB_UNLOCK(stcb); 5793 SCTP_LTRACE_ERR_RET(inp, NULL, NULL, SCTP_FROM_SCTP_USRREQ, error); 5794 break; 5795 } 5796 } 5797 if (stcb) { 5798 if (net) { 5799 net->port = encaps->sue_port; 5800 } else { 5801 stcb->asoc.port = encaps->sue_port; 5802 } 5803 SCTP_TCB_UNLOCK(stcb); 5804 } else { 5805 if ((inp->sctp_flags & SCTP_PCB_FLAGS_TCPTYPE) || 5806 (inp->sctp_flags & SCTP_PCB_FLAGS_IN_TCPPOOL) || 5807 (encaps->sue_assoc_id == SCTP_FUTURE_ASSOC)) { 5808 SCTP_INP_WLOCK(inp); 5809 inp->sctp_ep.port = encaps->sue_port; 5810 SCTP_INP_WUNLOCK(inp); 5811 } else { 5812 SCTP_LTRACE_ERR_RET(inp, NULL, NULL, SCTP_FROM_SCTP_USRREQ, EINVAL); 5813 error = EINVAL; 5814 } 5815 } 5816 break; 5817 } 5818 default: 5819 SCTP_LTRACE_ERR_RET(inp, NULL, NULL, SCTP_FROM_SCTP_USRREQ, ENOPROTOOPT); 5820 error = ENOPROTOOPT; 5821 break; 5822 } /* end switch (opt) */ 5823 return (error); 5824 } 5825 5826 int 5827 sctp_ctloutput(struct socket *so, struct sockopt *sopt) 5828 { 5829 void *optval = NULL; 5830 size_t optsize = 0; 5831 void *p; 5832 int error = 0; 5833 5834 if (sopt->sopt_level != IPPROTO_SCTP) { 5835 /* wrong proto level... send back up to IP */ 5836 #ifdef INET6 5837 if (INP_CHECK_SOCKAF(so, AF_INET6)) 5838 error = ip6_ctloutput(so, sopt); 5839 #endif /* INET6 */ 5840 #if defined(INET) && defined(INET6) 5841 else 5842 #endif 5843 #ifdef INET 5844 error = ip_ctloutput(so, sopt); 5845 #endif 5846 return (error); 5847 } 5848 optsize = sopt->sopt_valsize; 5849 if (optsize) { 5850 SCTP_MALLOC(optval, void *, optsize, SCTP_M_SOCKOPT); 5851 if (optval == NULL) { 5852 SCTP_LTRACE_ERR_RET(so->so_pcb, NULL, NULL, SCTP_FROM_SCTP_USRREQ, ENOBUFS); 5853 return (ENOBUFS); 5854 } 5855 error = sooptcopyin(sopt, optval, optsize, optsize); 5856 if (error) { 5857 SCTP_FREE(optval, SCTP_M_SOCKOPT); 5858 goto out; 5859 } 5860 } 5861 p = (void *)sopt->sopt_td; 5862 if (sopt->sopt_dir == SOPT_SET) { 5863 error = sctp_setopt(so, sopt->sopt_name, optval, optsize, p); 5864 } else if (sopt->sopt_dir == SOPT_GET) { 5865 error = sctp_getopt(so, sopt->sopt_name, optval, &optsize, p); 5866 } else { 5867 SCTP_LTRACE_ERR_RET(so->so_pcb, NULL, NULL, SCTP_FROM_SCTP_USRREQ, EINVAL); 5868 error = EINVAL; 5869 } 5870 if ((error == 0) && (optval != NULL)) { 5871 error = sooptcopyout(sopt, optval, optsize); 5872 SCTP_FREE(optval, SCTP_M_SOCKOPT); 5873 } else if (optval != NULL) { 5874 SCTP_FREE(optval, SCTP_M_SOCKOPT); 5875 } 5876 out: 5877 return (error); 5878 } 5879 5880 #ifdef INET 5881 static int 5882 sctp_connect(struct socket *so, struct sockaddr *addr, struct thread *p) 5883 { 5884 int error = 0; 5885 int create_lock_on = 0; 5886 uint32_t vrf_id; 5887 struct sctp_inpcb *inp; 5888 struct sctp_tcb *stcb = NULL; 5889 5890 inp = (struct sctp_inpcb *)so->so_pcb; 5891 if (inp == NULL) { 5892 /* I made the same as TCP since we are not setup? */ 5893 SCTP_LTRACE_ERR_RET(inp, NULL, NULL, SCTP_FROM_SCTP_USRREQ, EINVAL); 5894 return (ECONNRESET); 5895 } 5896 if (addr == NULL) { 5897 SCTP_LTRACE_ERR_RET(inp, NULL, NULL, SCTP_FROM_SCTP_USRREQ, EINVAL); 5898 return EINVAL; 5899 } 5900 switch (addr->sa_family) { 5901 #ifdef INET6 5902 case AF_INET6: 5903 { 5904 struct sockaddr_in6 *sin6p; 5905 5906 if (addr->sa_len != sizeof(struct sockaddr_in6)) { 5907 SCTP_LTRACE_ERR_RET(inp, NULL, NULL, SCTP_FROM_SCTP_USRREQ, EINVAL); 5908 return (EINVAL); 5909 } 5910 sin6p = (struct sockaddr_in6 *)addr; 5911 if (p != NULL && (error = prison_remote_ip6(p->td_ucred, &sin6p->sin6_addr)) != 0) { 5912 SCTP_LTRACE_ERR_RET(inp, NULL, NULL, SCTP_FROM_SCTP_USRREQ, error); 5913 return (error); 5914 } 5915 break; 5916 } 5917 #endif 5918 #ifdef INET 5919 case AF_INET: 5920 { 5921 struct sockaddr_in *sinp; 5922 5923 if (addr->sa_len != sizeof(struct sockaddr_in)) { 5924 SCTP_LTRACE_ERR_RET(inp, NULL, NULL, SCTP_FROM_SCTP_USRREQ, EINVAL); 5925 return (EINVAL); 5926 } 5927 sinp = (struct sockaddr_in *)addr; 5928 if (p != NULL && (error = prison_remote_ip4(p->td_ucred, &sinp->sin_addr)) != 0) { 5929 SCTP_LTRACE_ERR_RET(inp, NULL, NULL, SCTP_FROM_SCTP_USRREQ, error); 5930 return (error); 5931 } 5932 break; 5933 } 5934 #endif 5935 default: 5936 SCTP_LTRACE_ERR_RET(inp, NULL, NULL, SCTP_FROM_SCTP_USRREQ, EAFNOSUPPORT); 5937 return (EAFNOSUPPORT); 5938 } 5939 SCTP_INP_INCR_REF(inp); 5940 SCTP_ASOC_CREATE_LOCK(inp); 5941 create_lock_on = 1; 5942 5943 5944 if ((inp->sctp_flags & SCTP_PCB_FLAGS_SOCKET_ALLGONE) || 5945 (inp->sctp_flags & SCTP_PCB_FLAGS_SOCKET_GONE)) { 5946 /* Should I really unlock ? */ 5947 SCTP_LTRACE_ERR_RET(inp, NULL, NULL, SCTP_FROM_SCTP_USRREQ, EFAULT); 5948 error = EFAULT; 5949 goto out_now; 5950 } 5951 #ifdef INET6 5952 if (((inp->sctp_flags & SCTP_PCB_FLAGS_BOUND_V6) == 0) && 5953 (addr->sa_family == AF_INET6)) { 5954 SCTP_LTRACE_ERR_RET(inp, NULL, NULL, SCTP_FROM_SCTP_USRREQ, EINVAL); 5955 error = EINVAL; 5956 goto out_now; 5957 } 5958 #endif /* INET6 */ 5959 if ((inp->sctp_flags & SCTP_PCB_FLAGS_UNBOUND) == 5960 SCTP_PCB_FLAGS_UNBOUND) { 5961 /* Bind a ephemeral port */ 5962 error = sctp_inpcb_bind(so, NULL, NULL, p); 5963 if (error) { 5964 goto out_now; 5965 } 5966 } 5967 /* Now do we connect? */ 5968 if ((inp->sctp_flags & SCTP_PCB_FLAGS_IN_TCPPOOL) && 5969 (sctp_is_feature_off(inp, SCTP_PCB_FLAGS_PORTREUSE))) { 5970 SCTP_LTRACE_ERR_RET(inp, NULL, NULL, SCTP_FROM_SCTP_USRREQ, EINVAL); 5971 error = EINVAL; 5972 goto out_now; 5973 } 5974 if ((inp->sctp_flags & SCTP_PCB_FLAGS_TCPTYPE) && 5975 (inp->sctp_flags & SCTP_PCB_FLAGS_CONNECTED)) { 5976 /* We are already connected AND the TCP model */ 5977 SCTP_LTRACE_ERR_RET(inp, stcb, NULL, SCTP_FROM_SCTP_USRREQ, EADDRINUSE); 5978 error = EADDRINUSE; 5979 goto out_now; 5980 } 5981 if (inp->sctp_flags & SCTP_PCB_FLAGS_CONNECTED) { 5982 SCTP_INP_RLOCK(inp); 5983 stcb = LIST_FIRST(&inp->sctp_asoc_list); 5984 SCTP_INP_RUNLOCK(inp); 5985 } else { 5986 /* 5987 * We increment here since sctp_findassociation_ep_addr() 5988 * will do a decrement if it finds the stcb as long as the 5989 * locked tcb (last argument) is NOT a TCB.. aka NULL. 5990 */ 5991 SCTP_INP_INCR_REF(inp); 5992 stcb = sctp_findassociation_ep_addr(&inp, addr, NULL, NULL, NULL); 5993 if (stcb == NULL) { 5994 SCTP_INP_DECR_REF(inp); 5995 } else { 5996 SCTP_TCB_UNLOCK(stcb); 5997 } 5998 } 5999 if (stcb != NULL) { 6000 /* Already have or am bring up an association */ 6001 SCTP_LTRACE_ERR_RET(inp, NULL, NULL, SCTP_FROM_SCTP_USRREQ, EALREADY); 6002 error = EALREADY; 6003 goto out_now; 6004 } 6005 vrf_id = inp->def_vrf_id; 6006 /* We are GOOD to go */ 6007 stcb = sctp_aloc_assoc(inp, addr, &error, 0, vrf_id, p); 6008 if (stcb == NULL) { 6009 /* Gak! no memory */ 6010 goto out_now; 6011 } 6012 if (stcb->sctp_ep->sctp_flags & SCTP_PCB_FLAGS_TCPTYPE) { 6013 stcb->sctp_ep->sctp_flags |= SCTP_PCB_FLAGS_CONNECTED; 6014 /* Set the connected flag so we can queue data */ 6015 soisconnecting(so); 6016 } 6017 SCTP_SET_STATE(&stcb->asoc, SCTP_STATE_COOKIE_WAIT); 6018 (void)SCTP_GETTIME_TIMEVAL(&stcb->asoc.time_entered); 6019 6020 /* initialize authentication parameters for the assoc */ 6021 sctp_initialize_auth_params(inp, stcb); 6022 6023 sctp_send_initiate(inp, stcb, SCTP_SO_LOCKED); 6024 SCTP_TCB_UNLOCK(stcb); 6025 out_now: 6026 if (create_lock_on) { 6027 SCTP_ASOC_CREATE_UNLOCK(inp); 6028 } 6029 SCTP_INP_DECR_REF(inp); 6030 return (error); 6031 } 6032 6033 #endif 6034 6035 int 6036 sctp_listen(struct socket *so, int backlog, struct thread *p) 6037 { 6038 /* 6039 * Note this module depends on the protocol processing being called 6040 * AFTER any socket level flags and backlog are applied to the 6041 * socket. The traditional way that the socket flags are applied is 6042 * AFTER protocol processing. We have made a change to the 6043 * sys/kern/uipc_socket.c module to reverse this but this MUST be in 6044 * place if the socket API for SCTP is to work properly. 6045 */ 6046 6047 int error = 0; 6048 struct sctp_inpcb *inp; 6049 6050 inp = (struct sctp_inpcb *)so->so_pcb; 6051 if (inp == NULL) { 6052 /* I made the same as TCP since we are not setup? */ 6053 SCTP_LTRACE_ERR_RET(inp, NULL, NULL, SCTP_FROM_SCTP_USRREQ, EINVAL); 6054 return (ECONNRESET); 6055 } 6056 if (sctp_is_feature_on(inp, SCTP_PCB_FLAGS_PORTREUSE)) { 6057 /* See if we have a listener */ 6058 struct sctp_inpcb *tinp; 6059 union sctp_sockstore store, *sp; 6060 6061 sp = &store; 6062 if ((inp->sctp_flags & SCTP_PCB_FLAGS_BOUNDALL) == 0) { 6063 /* not bound all */ 6064 struct sctp_laddr *laddr; 6065 6066 LIST_FOREACH(laddr, &inp->sctp_addr_list, sctp_nxt_addr) { 6067 memcpy(&store, &laddr->ifa->address, sizeof(store)); 6068 switch (sp->sa.sa_family) { 6069 #ifdef INET 6070 case AF_INET: 6071 sp->sin.sin_port = inp->sctp_lport; 6072 break; 6073 #endif 6074 #ifdef INET6 6075 case AF_INET6: 6076 sp->sin6.sin6_port = inp->sctp_lport; 6077 break; 6078 #endif 6079 default: 6080 break; 6081 } 6082 tinp = sctp_pcb_findep(&sp->sa, 0, 0, inp->def_vrf_id); 6083 if (tinp && (tinp != inp) && 6084 ((tinp->sctp_flags & SCTP_PCB_FLAGS_SOCKET_ALLGONE) == 0) && 6085 ((tinp->sctp_flags & SCTP_PCB_FLAGS_SOCKET_GONE) == 0) && 6086 (tinp->sctp_socket->so_qlimit)) { 6087 /* 6088 * we have a listener already and 6089 * its not this inp. 6090 */ 6091 SCTP_INP_DECR_REF(tinp); 6092 return (EADDRINUSE); 6093 } else if (tinp) { 6094 SCTP_INP_DECR_REF(tinp); 6095 } 6096 } 6097 } else { 6098 /* Setup a local addr bound all */ 6099 memset(&store, 0, sizeof(store)); 6100 switch (sp->sa.sa_family) { 6101 #ifdef INET 6102 case AF_INET: 6103 store.sin.sin_port = inp->sctp_lport; 6104 break; 6105 #endif 6106 #ifdef INET6 6107 case AF_INET6: 6108 sp->sin6.sin6_port = inp->sctp_lport; 6109 break; 6110 #endif 6111 default: 6112 break; 6113 } 6114 #ifdef INET6 6115 if (inp->sctp_flags & SCTP_PCB_FLAGS_BOUND_V6) { 6116 store.sa.sa_family = AF_INET6; 6117 store.sa.sa_len = sizeof(struct sockaddr_in6); 6118 } 6119 #endif 6120 #ifdef INET 6121 if ((inp->sctp_flags & SCTP_PCB_FLAGS_BOUND_V6) == 0) { 6122 store.sa.sa_family = AF_INET; 6123 store.sa.sa_len = sizeof(struct sockaddr_in); 6124 } 6125 #endif 6126 tinp = sctp_pcb_findep(&sp->sa, 0, 0, inp->def_vrf_id); 6127 if (tinp && (tinp != inp) && 6128 ((tinp->sctp_flags & SCTP_PCB_FLAGS_SOCKET_ALLGONE) == 0) && 6129 ((tinp->sctp_flags & SCTP_PCB_FLAGS_SOCKET_GONE) == 0) && 6130 (tinp->sctp_socket->so_qlimit)) { 6131 /* 6132 * we have a listener already and its not 6133 * this inp. 6134 */ 6135 SCTP_INP_DECR_REF(tinp); 6136 return (EADDRINUSE); 6137 } else if (tinp) { 6138 SCTP_INP_DECR_REF(inp); 6139 } 6140 } 6141 } 6142 SCTP_INP_RLOCK(inp); 6143 #ifdef SCTP_LOCK_LOGGING 6144 if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_LOCK_LOGGING_ENABLE) { 6145 sctp_log_lock(inp, (struct sctp_tcb *)NULL, SCTP_LOG_LOCK_SOCK); 6146 } 6147 #endif 6148 SOCK_LOCK(so); 6149 error = solisten_proto_check(so); 6150 if (error) { 6151 SOCK_UNLOCK(so); 6152 SCTP_INP_RUNLOCK(inp); 6153 return (error); 6154 } 6155 if ((sctp_is_feature_on(inp, SCTP_PCB_FLAGS_PORTREUSE)) && 6156 (inp->sctp_flags & SCTP_PCB_FLAGS_IN_TCPPOOL)) { 6157 /* 6158 * The unlucky case - We are in the tcp pool with this guy. 6159 * - Someone else is in the main inp slot. - We must move 6160 * this guy (the listener) to the main slot - We must then 6161 * move the guy that was listener to the TCP Pool. 6162 */ 6163 if (sctp_swap_inpcb_for_listen(inp)) { 6164 goto in_use; 6165 } 6166 } 6167 if ((inp->sctp_flags & SCTP_PCB_FLAGS_TCPTYPE) && 6168 (inp->sctp_flags & SCTP_PCB_FLAGS_CONNECTED)) { 6169 /* We are already connected AND the TCP model */ 6170 in_use: 6171 SCTP_INP_RUNLOCK(inp); 6172 SOCK_UNLOCK(so); 6173 SCTP_LTRACE_ERR_RET(inp, NULL, NULL, SCTP_FROM_SCTP_USRREQ, EADDRINUSE); 6174 return (EADDRINUSE); 6175 } 6176 SCTP_INP_RUNLOCK(inp); 6177 if (inp->sctp_flags & SCTP_PCB_FLAGS_UNBOUND) { 6178 /* We must do a bind. */ 6179 SOCK_UNLOCK(so); 6180 if ((error = sctp_inpcb_bind(so, NULL, NULL, p))) { 6181 /* bind error, probably perm */ 6182 return (error); 6183 } 6184 SOCK_LOCK(so); 6185 } 6186 /* It appears for 7.0 and on, we must always call this. */ 6187 solisten_proto(so, backlog); 6188 if (inp->sctp_flags & SCTP_PCB_FLAGS_UDPTYPE) { 6189 /* remove the ACCEPTCONN flag for one-to-many sockets */ 6190 so->so_options &= ~SO_ACCEPTCONN; 6191 } 6192 if (backlog == 0) { 6193 /* turning off listen */ 6194 so->so_options &= ~SO_ACCEPTCONN; 6195 } 6196 SOCK_UNLOCK(so); 6197 return (error); 6198 } 6199 6200 static int sctp_defered_wakeup_cnt = 0; 6201 6202 int 6203 sctp_accept(struct socket *so, struct sockaddr **addr) 6204 { 6205 struct sctp_tcb *stcb; 6206 struct sctp_inpcb *inp; 6207 union sctp_sockstore store; 6208 6209 #ifdef INET6 6210 int error; 6211 6212 #endif 6213 inp = (struct sctp_inpcb *)so->so_pcb; 6214 6215 if (inp == NULL) { 6216 SCTP_LTRACE_ERR_RET(inp, NULL, NULL, SCTP_FROM_SCTP_USRREQ, EINVAL); 6217 return (ECONNRESET); 6218 } 6219 SCTP_INP_RLOCK(inp); 6220 if (inp->sctp_flags & SCTP_PCB_FLAGS_UDPTYPE) { 6221 SCTP_INP_RUNLOCK(inp); 6222 SCTP_LTRACE_ERR_RET(inp, NULL, NULL, SCTP_FROM_SCTP_USRREQ, EOPNOTSUPP); 6223 return (EOPNOTSUPP); 6224 } 6225 if (so->so_state & SS_ISDISCONNECTED) { 6226 SCTP_INP_RUNLOCK(inp); 6227 SCTP_LTRACE_ERR_RET(inp, NULL, NULL, SCTP_FROM_SCTP_USRREQ, ECONNABORTED); 6228 return (ECONNABORTED); 6229 } 6230 stcb = LIST_FIRST(&inp->sctp_asoc_list); 6231 if (stcb == NULL) { 6232 SCTP_INP_RUNLOCK(inp); 6233 SCTP_LTRACE_ERR_RET(inp, NULL, NULL, SCTP_FROM_SCTP_USRREQ, EINVAL); 6234 return (ECONNRESET); 6235 } 6236 SCTP_TCB_LOCK(stcb); 6237 SCTP_INP_RUNLOCK(inp); 6238 store = stcb->asoc.primary_destination->ro._l_addr; 6239 stcb->asoc.state &= ~SCTP_STATE_IN_ACCEPT_QUEUE; 6240 SCTP_TCB_UNLOCK(stcb); 6241 switch (store.sa.sa_family) { 6242 #ifdef INET 6243 case AF_INET: 6244 { 6245 struct sockaddr_in *sin; 6246 6247 SCTP_MALLOC_SONAME(sin, struct sockaddr_in *, sizeof *sin); 6248 if (sin == NULL) 6249 return (ENOMEM); 6250 sin->sin_family = AF_INET; 6251 sin->sin_len = sizeof(*sin); 6252 sin->sin_port = ((struct sockaddr_in *)&store)->sin_port; 6253 sin->sin_addr = ((struct sockaddr_in *)&store)->sin_addr; 6254 *addr = (struct sockaddr *)sin; 6255 break; 6256 } 6257 #endif 6258 #ifdef INET6 6259 case AF_INET6: 6260 { 6261 struct sockaddr_in6 *sin6; 6262 6263 SCTP_MALLOC_SONAME(sin6, struct sockaddr_in6 *, sizeof *sin6); 6264 if (sin6 == NULL) 6265 return (ENOMEM); 6266 sin6->sin6_family = AF_INET6; 6267 sin6->sin6_len = sizeof(*sin6); 6268 sin6->sin6_port = ((struct sockaddr_in6 *)&store)->sin6_port; 6269 6270 sin6->sin6_addr = ((struct sockaddr_in6 *)&store)->sin6_addr; 6271 if ((error = sa6_recoverscope(sin6)) != 0) { 6272 SCTP_FREE_SONAME(sin6); 6273 return (error); 6274 } 6275 *addr = (struct sockaddr *)sin6; 6276 break; 6277 } 6278 #endif 6279 default: 6280 /* TSNH */ 6281 break; 6282 } 6283 /* Wake any delayed sleep action */ 6284 if (inp->sctp_flags & SCTP_PCB_FLAGS_DONT_WAKE) { 6285 SCTP_INP_WLOCK(inp); 6286 inp->sctp_flags &= ~SCTP_PCB_FLAGS_DONT_WAKE; 6287 if (inp->sctp_flags & SCTP_PCB_FLAGS_WAKEOUTPUT) { 6288 inp->sctp_flags &= ~SCTP_PCB_FLAGS_WAKEOUTPUT; 6289 SCTP_INP_WUNLOCK(inp); 6290 SOCKBUF_LOCK(&inp->sctp_socket->so_snd); 6291 if (sowriteable(inp->sctp_socket)) { 6292 sowwakeup_locked(inp->sctp_socket); 6293 } else { 6294 SOCKBUF_UNLOCK(&inp->sctp_socket->so_snd); 6295 } 6296 SCTP_INP_WLOCK(inp); 6297 } 6298 if (inp->sctp_flags & SCTP_PCB_FLAGS_WAKEINPUT) { 6299 inp->sctp_flags &= ~SCTP_PCB_FLAGS_WAKEINPUT; 6300 SCTP_INP_WUNLOCK(inp); 6301 SOCKBUF_LOCK(&inp->sctp_socket->so_rcv); 6302 if (soreadable(inp->sctp_socket)) { 6303 sctp_defered_wakeup_cnt++; 6304 sorwakeup_locked(inp->sctp_socket); 6305 } else { 6306 SOCKBUF_UNLOCK(&inp->sctp_socket->so_rcv); 6307 } 6308 SCTP_INP_WLOCK(inp); 6309 } 6310 SCTP_INP_WUNLOCK(inp); 6311 } 6312 if (stcb->asoc.state & SCTP_STATE_ABOUT_TO_BE_FREED) { 6313 SCTP_TCB_LOCK(stcb); 6314 sctp_free_assoc(inp, stcb, SCTP_NORMAL_PROC, SCTP_FROM_SCTP_USRREQ + SCTP_LOC_7); 6315 } 6316 return (0); 6317 } 6318 6319 #ifdef INET 6320 int 6321 sctp_ingetaddr(struct socket *so, struct sockaddr **addr) 6322 { 6323 struct sockaddr_in *sin; 6324 uint32_t vrf_id; 6325 struct sctp_inpcb *inp; 6326 struct sctp_ifa *sctp_ifa; 6327 6328 /* 6329 * Do the malloc first in case it blocks. 6330 */ 6331 SCTP_MALLOC_SONAME(sin, struct sockaddr_in *, sizeof *sin); 6332 if (sin == NULL) 6333 return (ENOMEM); 6334 sin->sin_family = AF_INET; 6335 sin->sin_len = sizeof(*sin); 6336 inp = (struct sctp_inpcb *)so->so_pcb; 6337 if (!inp) { 6338 SCTP_FREE_SONAME(sin); 6339 SCTP_LTRACE_ERR_RET(inp, NULL, NULL, SCTP_FROM_SCTP_USRREQ, EINVAL); 6340 return (ECONNRESET); 6341 } 6342 SCTP_INP_RLOCK(inp); 6343 sin->sin_port = inp->sctp_lport; 6344 if (inp->sctp_flags & SCTP_PCB_FLAGS_BOUNDALL) { 6345 if (inp->sctp_flags & SCTP_PCB_FLAGS_CONNECTED) { 6346 struct sctp_tcb *stcb; 6347 struct sockaddr_in *sin_a; 6348 struct sctp_nets *net; 6349 int fnd; 6350 6351 stcb = LIST_FIRST(&inp->sctp_asoc_list); 6352 if (stcb == NULL) { 6353 goto notConn; 6354 } 6355 fnd = 0; 6356 sin_a = NULL; 6357 SCTP_TCB_LOCK(stcb); 6358 TAILQ_FOREACH(net, &stcb->asoc.nets, sctp_next) { 6359 sin_a = (struct sockaddr_in *)&net->ro._l_addr; 6360 if (sin_a == NULL) 6361 /* this will make coverity happy */ 6362 continue; 6363 6364 if (sin_a->sin_family == AF_INET) { 6365 fnd = 1; 6366 break; 6367 } 6368 } 6369 if ((!fnd) || (sin_a == NULL)) { 6370 /* punt */ 6371 SCTP_TCB_UNLOCK(stcb); 6372 goto notConn; 6373 } 6374 vrf_id = inp->def_vrf_id; 6375 sctp_ifa = sctp_source_address_selection(inp, 6376 stcb, 6377 (sctp_route_t *) & net->ro, 6378 net, 0, vrf_id); 6379 if (sctp_ifa) { 6380 sin->sin_addr = sctp_ifa->address.sin.sin_addr; 6381 sctp_free_ifa(sctp_ifa); 6382 } 6383 SCTP_TCB_UNLOCK(stcb); 6384 } else { 6385 /* For the bound all case you get back 0 */ 6386 notConn: 6387 sin->sin_addr.s_addr = 0; 6388 } 6389 6390 } else { 6391 /* Take the first IPv4 address in the list */ 6392 struct sctp_laddr *laddr; 6393 int fnd = 0; 6394 6395 LIST_FOREACH(laddr, &inp->sctp_addr_list, sctp_nxt_addr) { 6396 if (laddr->ifa->address.sa.sa_family == AF_INET) { 6397 struct sockaddr_in *sin_a; 6398 6399 sin_a = (struct sockaddr_in *)&laddr->ifa->address.sa; 6400 sin->sin_addr = sin_a->sin_addr; 6401 fnd = 1; 6402 break; 6403 } 6404 } 6405 if (!fnd) { 6406 SCTP_FREE_SONAME(sin); 6407 SCTP_INP_RUNLOCK(inp); 6408 SCTP_LTRACE_ERR_RET(inp, NULL, NULL, SCTP_FROM_SCTP_USRREQ, ENOENT); 6409 return (ENOENT); 6410 } 6411 } 6412 SCTP_INP_RUNLOCK(inp); 6413 (*addr) = (struct sockaddr *)sin; 6414 return (0); 6415 } 6416 6417 int 6418 sctp_peeraddr(struct socket *so, struct sockaddr **addr) 6419 { 6420 struct sockaddr_in *sin; 6421 int fnd; 6422 struct sockaddr_in *sin_a; 6423 struct sctp_inpcb *inp; 6424 struct sctp_tcb *stcb; 6425 struct sctp_nets *net; 6426 6427 /* Do the malloc first in case it blocks. */ 6428 SCTP_MALLOC_SONAME(sin, struct sockaddr_in *, sizeof *sin); 6429 if (sin == NULL) 6430 return (ENOMEM); 6431 sin->sin_family = AF_INET; 6432 sin->sin_len = sizeof(*sin); 6433 6434 inp = (struct sctp_inpcb *)so->so_pcb; 6435 if ((inp == NULL) || 6436 ((inp->sctp_flags & SCTP_PCB_FLAGS_CONNECTED) == 0)) { 6437 /* UDP type and listeners will drop out here */ 6438 SCTP_FREE_SONAME(sin); 6439 SCTP_LTRACE_ERR_RET(inp, NULL, NULL, SCTP_FROM_SCTP_USRREQ, ENOTCONN); 6440 return (ENOTCONN); 6441 } 6442 SCTP_INP_RLOCK(inp); 6443 stcb = LIST_FIRST(&inp->sctp_asoc_list); 6444 if (stcb) { 6445 SCTP_TCB_LOCK(stcb); 6446 } 6447 SCTP_INP_RUNLOCK(inp); 6448 if (stcb == NULL) { 6449 SCTP_FREE_SONAME(sin); 6450 SCTP_LTRACE_ERR_RET(inp, NULL, NULL, SCTP_FROM_SCTP_USRREQ, EINVAL); 6451 return (ECONNRESET); 6452 } 6453 fnd = 0; 6454 TAILQ_FOREACH(net, &stcb->asoc.nets, sctp_next) { 6455 sin_a = (struct sockaddr_in *)&net->ro._l_addr; 6456 if (sin_a->sin_family == AF_INET) { 6457 fnd = 1; 6458 sin->sin_port = stcb->rport; 6459 sin->sin_addr = sin_a->sin_addr; 6460 break; 6461 } 6462 } 6463 SCTP_TCB_UNLOCK(stcb); 6464 if (!fnd) { 6465 /* No IPv4 address */ 6466 SCTP_FREE_SONAME(sin); 6467 SCTP_LTRACE_ERR_RET(inp, NULL, NULL, SCTP_FROM_SCTP_USRREQ, ENOENT); 6468 return (ENOENT); 6469 } 6470 (*addr) = (struct sockaddr *)sin; 6471 return (0); 6472 } 6473 6474 struct pr_usrreqs sctp_usrreqs = { 6475 .pru_abort = sctp_abort, 6476 .pru_accept = sctp_accept, 6477 .pru_attach = sctp_attach, 6478 .pru_bind = sctp_bind, 6479 .pru_connect = sctp_connect, 6480 .pru_control = in_control, 6481 .pru_close = sctp_close, 6482 .pru_detach = sctp_close, 6483 .pru_sopoll = sopoll_generic, 6484 .pru_flush = sctp_flush, 6485 .pru_disconnect = sctp_disconnect, 6486 .pru_listen = sctp_listen, 6487 .pru_peeraddr = sctp_peeraddr, 6488 .pru_send = sctp_sendm, 6489 .pru_shutdown = sctp_shutdown, 6490 .pru_sockaddr = sctp_ingetaddr, 6491 .pru_sosend = sctp_sosend, 6492 .pru_soreceive = sctp_soreceive 6493 }; 6494 6495 #endif 6496