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; 551 552 inp = (struct sctp_inpcb *)so->so_pcb; 553 if (inp == NULL) { 554 SCTP_LTRACE_ERR_RET(inp, NULL, NULL, SCTP_FROM_SCTP_USRREQ, EINVAL); 555 return (EINVAL); 556 } 557 if (addr != NULL) { 558 if ((addr->sa_family != AF_INET) || 559 (addr->sa_len != sizeof(struct sockaddr_in))) { 560 SCTP_LTRACE_ERR_RET(inp, NULL, NULL, SCTP_FROM_SCTP_USRREQ, EINVAL); 561 return (EINVAL); 562 } 563 } 564 return (sctp_inpcb_bind(so, addr, NULL, p)); 565 } 566 567 #endif 568 void 569 sctp_close(struct socket *so) 570 { 571 struct sctp_inpcb *inp; 572 uint32_t flags; 573 574 inp = (struct sctp_inpcb *)so->so_pcb; 575 if (inp == NULL) 576 return; 577 578 /* 579 * Inform all the lower layer assoc that we are done. 580 */ 581 sctp_must_try_again: 582 flags = inp->sctp_flags; 583 #ifdef SCTP_LOG_CLOSING 584 sctp_log_closing(inp, NULL, 17); 585 #endif 586 if (((flags & SCTP_PCB_FLAGS_SOCKET_GONE) == 0) && 587 (atomic_cmpset_int(&inp->sctp_flags, flags, (flags | SCTP_PCB_FLAGS_SOCKET_GONE | SCTP_PCB_FLAGS_CLOSE_IP)))) { 588 if (((so->so_options & SO_LINGER) && (so->so_linger == 0)) || 589 (so->so_rcv.sb_cc > 0)) { 590 #ifdef SCTP_LOG_CLOSING 591 sctp_log_closing(inp, NULL, 13); 592 #endif 593 sctp_inpcb_free(inp, SCTP_FREE_SHOULD_USE_ABORT, 594 SCTP_CALLED_AFTER_CMPSET_OFCLOSE); 595 } else { 596 #ifdef SCTP_LOG_CLOSING 597 sctp_log_closing(inp, NULL, 14); 598 #endif 599 sctp_inpcb_free(inp, SCTP_FREE_SHOULD_USE_GRACEFUL_CLOSE, 600 SCTP_CALLED_AFTER_CMPSET_OFCLOSE); 601 } 602 /* 603 * The socket is now detached, no matter what the state of 604 * the SCTP association. 605 */ 606 SOCK_LOCK(so); 607 SCTP_SB_CLEAR(so->so_snd); 608 /* 609 * same for the rcv ones, they are only here for the 610 * accounting/select. 611 */ 612 SCTP_SB_CLEAR(so->so_rcv); 613 614 /* Now null out the reference, we are completely detached. */ 615 so->so_pcb = NULL; 616 SOCK_UNLOCK(so); 617 } else { 618 flags = inp->sctp_flags; 619 if ((flags & SCTP_PCB_FLAGS_SOCKET_GONE) == 0) { 620 goto sctp_must_try_again; 621 } 622 } 623 return; 624 } 625 626 627 int 628 sctp_sendm(struct socket *so, int flags, struct mbuf *m, struct sockaddr *addr, 629 struct mbuf *control, struct thread *p); 630 631 632 int 633 sctp_sendm(struct socket *so, int flags, struct mbuf *m, struct sockaddr *addr, 634 struct mbuf *control, struct thread *p) 635 { 636 struct sctp_inpcb *inp; 637 int error; 638 639 inp = (struct sctp_inpcb *)so->so_pcb; 640 if (inp == NULL) { 641 if (control) { 642 sctp_m_freem(control); 643 control = NULL; 644 } 645 SCTP_LTRACE_ERR_RET_PKT(m, inp, NULL, NULL, SCTP_FROM_SCTP_USRREQ, EINVAL); 646 sctp_m_freem(m); 647 return (EINVAL); 648 } 649 /* Got to have an to address if we are NOT a connected socket */ 650 if ((addr == NULL) && 651 ((inp->sctp_flags & SCTP_PCB_FLAGS_CONNECTED) || 652 (inp->sctp_flags & SCTP_PCB_FLAGS_TCPTYPE))) { 653 goto connected_type; 654 } else if (addr == NULL) { 655 SCTP_LTRACE_ERR_RET_PKT(m, inp, NULL, NULL, SCTP_FROM_SCTP_USRREQ, EDESTADDRREQ); 656 error = EDESTADDRREQ; 657 sctp_m_freem(m); 658 if (control) { 659 sctp_m_freem(control); 660 control = NULL; 661 } 662 return (error); 663 } 664 #ifdef INET6 665 if (addr->sa_family != AF_INET) { 666 /* must be a v4 address! */ 667 SCTP_LTRACE_ERR_RET_PKT(m, inp, NULL, NULL, SCTP_FROM_SCTP_USRREQ, EDESTADDRREQ); 668 sctp_m_freem(m); 669 if (control) { 670 sctp_m_freem(control); 671 control = NULL; 672 } 673 error = EDESTADDRREQ; 674 return (error); 675 } 676 #endif /* INET6 */ 677 connected_type: 678 /* now what about control */ 679 if (control) { 680 if (inp->control) { 681 SCTP_PRINTF("huh? control set?\n"); 682 sctp_m_freem(inp->control); 683 inp->control = NULL; 684 } 685 inp->control = control; 686 } 687 /* Place the data */ 688 if (inp->pkt) { 689 SCTP_BUF_NEXT(inp->pkt_last) = m; 690 inp->pkt_last = m; 691 } else { 692 inp->pkt_last = inp->pkt = m; 693 } 694 if ( 695 /* FreeBSD uses a flag passed */ 696 ((flags & PRUS_MORETOCOME) == 0) 697 ) { 698 /* 699 * note with the current version this code will only be used 700 * by OpenBSD-- NetBSD, FreeBSD, and MacOS have methods for 701 * re-defining sosend to use the sctp_sosend. One can 702 * optionally switch back to this code (by changing back the 703 * definitions) but this is not advisable. This code is used 704 * by FreeBSD when sending a file with sendfile() though. 705 */ 706 int ret; 707 708 ret = sctp_output(inp, inp->pkt, addr, inp->control, p, flags); 709 inp->pkt = NULL; 710 inp->control = NULL; 711 return (ret); 712 } else { 713 return (0); 714 } 715 } 716 717 int 718 sctp_disconnect(struct socket *so) 719 { 720 struct sctp_inpcb *inp; 721 722 inp = (struct sctp_inpcb *)so->so_pcb; 723 if (inp == NULL) { 724 SCTP_LTRACE_ERR_RET(inp, NULL, NULL, SCTP_FROM_SCTP_USRREQ, ENOTCONN); 725 return (ENOTCONN); 726 } 727 SCTP_INP_RLOCK(inp); 728 if ((inp->sctp_flags & SCTP_PCB_FLAGS_TCPTYPE) || 729 (inp->sctp_flags & SCTP_PCB_FLAGS_IN_TCPPOOL)) { 730 if (LIST_EMPTY(&inp->sctp_asoc_list)) { 731 /* No connection */ 732 SCTP_INP_RUNLOCK(inp); 733 return (0); 734 } else { 735 struct sctp_association *asoc; 736 struct sctp_tcb *stcb; 737 738 stcb = LIST_FIRST(&inp->sctp_asoc_list); 739 if (stcb == NULL) { 740 SCTP_INP_RUNLOCK(inp); 741 SCTP_LTRACE_ERR_RET(inp, NULL, NULL, SCTP_FROM_SCTP_USRREQ, EINVAL); 742 return (EINVAL); 743 } 744 SCTP_TCB_LOCK(stcb); 745 asoc = &stcb->asoc; 746 if (stcb->asoc.state & SCTP_STATE_ABOUT_TO_BE_FREED) { 747 /* We are about to be freed, out of here */ 748 SCTP_TCB_UNLOCK(stcb); 749 SCTP_INP_RUNLOCK(inp); 750 return (0); 751 } 752 if (((so->so_options & SO_LINGER) && 753 (so->so_linger == 0)) || 754 (so->so_rcv.sb_cc > 0)) { 755 if (SCTP_GET_STATE(asoc) != 756 SCTP_STATE_COOKIE_WAIT) { 757 /* Left with Data unread */ 758 struct mbuf *err; 759 760 err = sctp_get_mbuf_for_msg(sizeof(struct sctp_paramhdr), 0, M_NOWAIT, 1, MT_DATA); 761 if (err) { 762 /* 763 * Fill in the user 764 * initiated abort 765 */ 766 struct sctp_paramhdr *ph; 767 768 ph = mtod(err, struct sctp_paramhdr *); 769 SCTP_BUF_LEN(err) = sizeof(struct sctp_paramhdr); 770 ph->param_type = htons(SCTP_CAUSE_USER_INITIATED_ABT); 771 ph->param_length = htons(SCTP_BUF_LEN(err)); 772 } 773 sctp_send_abort_tcb(stcb, err, SCTP_SO_LOCKED); 774 SCTP_STAT_INCR_COUNTER32(sctps_aborted); 775 } 776 SCTP_INP_RUNLOCK(inp); 777 if ((SCTP_GET_STATE(&stcb->asoc) == SCTP_STATE_OPEN) || 778 (SCTP_GET_STATE(&stcb->asoc) == SCTP_STATE_SHUTDOWN_RECEIVED)) { 779 SCTP_STAT_DECR_GAUGE32(sctps_currestab); 780 } 781 (void)sctp_free_assoc(inp, stcb, SCTP_NORMAL_PROC, SCTP_FROM_SCTP_USRREQ + SCTP_LOC_3); 782 /* No unlock tcb assoc is gone */ 783 return (0); 784 } 785 if (TAILQ_EMPTY(&asoc->send_queue) && 786 TAILQ_EMPTY(&asoc->sent_queue) && 787 (asoc->stream_queue_cnt == 0)) { 788 /* there is nothing queued to send, so done */ 789 if (asoc->locked_on_sending) { 790 goto abort_anyway; 791 } 792 if ((SCTP_GET_STATE(asoc) != SCTP_STATE_SHUTDOWN_SENT) && 793 (SCTP_GET_STATE(asoc) != SCTP_STATE_SHUTDOWN_ACK_SENT)) { 794 /* only send SHUTDOWN 1st time thru */ 795 struct sctp_nets *netp; 796 797 if ((SCTP_GET_STATE(asoc) == SCTP_STATE_OPEN) || 798 (SCTP_GET_STATE(asoc) == SCTP_STATE_SHUTDOWN_RECEIVED)) { 799 SCTP_STAT_DECR_GAUGE32(sctps_currestab); 800 } 801 SCTP_SET_STATE(asoc, SCTP_STATE_SHUTDOWN_SENT); 802 SCTP_CLEAR_SUBSTATE(asoc, SCTP_STATE_SHUTDOWN_PENDING); 803 sctp_stop_timers_for_shutdown(stcb); 804 if (stcb->asoc.alternate) { 805 netp = stcb->asoc.alternate; 806 } else { 807 netp = stcb->asoc.primary_destination; 808 } 809 sctp_send_shutdown(stcb, netp); 810 sctp_timer_start(SCTP_TIMER_TYPE_SHUTDOWN, 811 stcb->sctp_ep, stcb, netp); 812 sctp_timer_start(SCTP_TIMER_TYPE_SHUTDOWNGUARD, 813 stcb->sctp_ep, stcb, netp); 814 sctp_chunk_output(stcb->sctp_ep, stcb, SCTP_OUTPUT_FROM_T3, SCTP_SO_LOCKED); 815 } 816 } else { 817 /* 818 * we still got (or just got) data to send, 819 * so set SHUTDOWN_PENDING 820 */ 821 /* 822 * XXX sockets draft says that SCTP_EOF 823 * should be sent with no data. currently, 824 * we will allow user data to be sent first 825 * and move to SHUTDOWN-PENDING 826 */ 827 struct sctp_nets *netp; 828 829 if (stcb->asoc.alternate) { 830 netp = stcb->asoc.alternate; 831 } else { 832 netp = stcb->asoc.primary_destination; 833 } 834 835 asoc->state |= SCTP_STATE_SHUTDOWN_PENDING; 836 sctp_timer_start(SCTP_TIMER_TYPE_SHUTDOWNGUARD, stcb->sctp_ep, stcb, 837 netp); 838 if (asoc->locked_on_sending) { 839 /* Locked to send out the data */ 840 struct sctp_stream_queue_pending *sp; 841 842 sp = TAILQ_LAST(&asoc->locked_on_sending->outqueue, sctp_streamhead); 843 if (sp == NULL) { 844 SCTP_PRINTF("Error, sp is NULL, locked on sending is non-null strm:%d\n", 845 asoc->locked_on_sending->stream_no); 846 } else { 847 if ((sp->length == 0) && (sp->msg_is_complete == 0)) 848 asoc->state |= SCTP_STATE_PARTIAL_MSG_LEFT; 849 } 850 } 851 if (TAILQ_EMPTY(&asoc->send_queue) && 852 TAILQ_EMPTY(&asoc->sent_queue) && 853 (asoc->state & SCTP_STATE_PARTIAL_MSG_LEFT)) { 854 struct mbuf *op_err; 855 856 abort_anyway: 857 op_err = sctp_get_mbuf_for_msg(sizeof(struct sctp_paramhdr), 858 0, M_NOWAIT, 1, MT_DATA); 859 if (op_err) { 860 /* 861 * Fill in the user 862 * initiated abort 863 */ 864 struct sctp_paramhdr *ph; 865 866 SCTP_BUF_LEN(op_err) = sizeof(struct sctp_paramhdr); 867 ph = mtod(op_err, struct sctp_paramhdr *); 868 ph->param_type = htons(SCTP_CAUSE_USER_INITIATED_ABT); 869 ph->param_length = htons(SCTP_BUF_LEN(op_err)); 870 } 871 stcb->sctp_ep->last_abort_code = SCTP_FROM_SCTP_USRREQ + SCTP_LOC_4; 872 sctp_send_abort_tcb(stcb, op_err, SCTP_SO_LOCKED); 873 SCTP_STAT_INCR_COUNTER32(sctps_aborted); 874 if ((SCTP_GET_STATE(&stcb->asoc) == SCTP_STATE_OPEN) || 875 (SCTP_GET_STATE(&stcb->asoc) == SCTP_STATE_SHUTDOWN_RECEIVED)) { 876 SCTP_STAT_DECR_GAUGE32(sctps_currestab); 877 } 878 SCTP_INP_RUNLOCK(inp); 879 (void)sctp_free_assoc(inp, stcb, SCTP_NORMAL_PROC, SCTP_FROM_SCTP_USRREQ + SCTP_LOC_5); 880 return (0); 881 } else { 882 sctp_chunk_output(inp, stcb, SCTP_OUTPUT_FROM_CLOSING, SCTP_SO_LOCKED); 883 } 884 } 885 soisdisconnecting(so); 886 SCTP_TCB_UNLOCK(stcb); 887 SCTP_INP_RUNLOCK(inp); 888 return (0); 889 } 890 /* not reached */ 891 } else { 892 /* UDP model does not support this */ 893 SCTP_INP_RUNLOCK(inp); 894 SCTP_LTRACE_ERR_RET(inp, NULL, NULL, SCTP_FROM_SCTP_USRREQ, EOPNOTSUPP); 895 return (EOPNOTSUPP); 896 } 897 } 898 899 int 900 sctp_flush(struct socket *so, int how) 901 { 902 /* 903 * We will just clear out the values and let subsequent close clear 904 * out the data, if any. Note if the user did a shutdown(SHUT_RD) 905 * they will not be able to read the data, the socket will block 906 * that from happening. 907 */ 908 struct sctp_inpcb *inp; 909 910 inp = (struct sctp_inpcb *)so->so_pcb; 911 if (inp == NULL) { 912 SCTP_LTRACE_ERR_RET(inp, NULL, NULL, SCTP_FROM_SCTP_USRREQ, EINVAL); 913 return (EINVAL); 914 } 915 SCTP_INP_RLOCK(inp); 916 /* For the 1 to many model this does nothing */ 917 if (inp->sctp_flags & SCTP_PCB_FLAGS_UDPTYPE) { 918 SCTP_INP_RUNLOCK(inp); 919 return (0); 920 } 921 SCTP_INP_RUNLOCK(inp); 922 if ((how == PRU_FLUSH_RD) || (how == PRU_FLUSH_RDWR)) { 923 /* 924 * First make sure the sb will be happy, we don't use these 925 * except maybe the count 926 */ 927 SCTP_INP_WLOCK(inp); 928 SCTP_INP_READ_LOCK(inp); 929 inp->sctp_flags |= SCTP_PCB_FLAGS_SOCKET_CANT_READ; 930 SCTP_INP_READ_UNLOCK(inp); 931 SCTP_INP_WUNLOCK(inp); 932 so->so_rcv.sb_cc = 0; 933 so->so_rcv.sb_mbcnt = 0; 934 so->so_rcv.sb_mb = NULL; 935 } 936 if ((how == PRU_FLUSH_WR) || (how == PRU_FLUSH_RDWR)) { 937 /* 938 * First make sure the sb will be happy, we don't use these 939 * except maybe the count 940 */ 941 so->so_snd.sb_cc = 0; 942 so->so_snd.sb_mbcnt = 0; 943 so->so_snd.sb_mb = NULL; 944 945 } 946 return (0); 947 } 948 949 int 950 sctp_shutdown(struct socket *so) 951 { 952 struct sctp_inpcb *inp; 953 954 inp = (struct sctp_inpcb *)so->so_pcb; 955 if (inp == NULL) { 956 SCTP_LTRACE_ERR_RET(inp, NULL, NULL, SCTP_FROM_SCTP_USRREQ, EINVAL); 957 return (EINVAL); 958 } 959 SCTP_INP_RLOCK(inp); 960 /* For UDP model this is a invalid call */ 961 if (!((inp->sctp_flags & SCTP_PCB_FLAGS_TCPTYPE) || 962 (inp->sctp_flags & SCTP_PCB_FLAGS_IN_TCPPOOL))) { 963 /* Restore the flags that the soshutdown took away. */ 964 SOCKBUF_LOCK(&so->so_rcv); 965 so->so_rcv.sb_state &= ~SBS_CANTRCVMORE; 966 SOCKBUF_UNLOCK(&so->so_rcv); 967 /* This proc will wakeup for read and do nothing (I hope) */ 968 SCTP_INP_RUNLOCK(inp); 969 SCTP_LTRACE_ERR_RET(inp, NULL, NULL, SCTP_FROM_SCTP_USRREQ, EOPNOTSUPP); 970 return (EOPNOTSUPP); 971 } 972 /* 973 * Ok if we reach here its the TCP model and it is either a SHUT_WR 974 * or SHUT_RDWR. This means we put the shutdown flag against it. 975 */ 976 { 977 struct sctp_tcb *stcb; 978 struct sctp_association *asoc; 979 980 if ((so->so_state & 981 (SS_ISCONNECTED | SS_ISCONNECTING | SS_ISDISCONNECTING)) == 0) { 982 SCTP_INP_RUNLOCK(inp); 983 return (ENOTCONN); 984 } 985 socantsendmore(so); 986 987 stcb = LIST_FIRST(&inp->sctp_asoc_list); 988 if (stcb == NULL) { 989 /* 990 * Ok we hit the case that the shutdown call was 991 * made after an abort or something. Nothing to do 992 * now. 993 */ 994 SCTP_INP_RUNLOCK(inp); 995 return (0); 996 } 997 SCTP_TCB_LOCK(stcb); 998 asoc = &stcb->asoc; 999 if (TAILQ_EMPTY(&asoc->send_queue) && 1000 TAILQ_EMPTY(&asoc->sent_queue) && 1001 (asoc->stream_queue_cnt == 0)) { 1002 if (asoc->locked_on_sending) { 1003 goto abort_anyway; 1004 } 1005 /* there is nothing queued to send, so I'm done... */ 1006 if (SCTP_GET_STATE(asoc) != SCTP_STATE_SHUTDOWN_SENT) { 1007 /* only send SHUTDOWN the first time through */ 1008 struct sctp_nets *netp; 1009 1010 if ((SCTP_GET_STATE(asoc) == SCTP_STATE_OPEN) || 1011 (SCTP_GET_STATE(asoc) == SCTP_STATE_SHUTDOWN_RECEIVED)) { 1012 SCTP_STAT_DECR_GAUGE32(sctps_currestab); 1013 } 1014 SCTP_SET_STATE(asoc, SCTP_STATE_SHUTDOWN_SENT); 1015 SCTP_CLEAR_SUBSTATE(asoc, SCTP_STATE_SHUTDOWN_PENDING); 1016 sctp_stop_timers_for_shutdown(stcb); 1017 if (stcb->asoc.alternate) { 1018 netp = stcb->asoc.alternate; 1019 } else { 1020 netp = stcb->asoc.primary_destination; 1021 } 1022 sctp_send_shutdown(stcb, netp); 1023 sctp_timer_start(SCTP_TIMER_TYPE_SHUTDOWN, 1024 stcb->sctp_ep, stcb, netp); 1025 sctp_timer_start(SCTP_TIMER_TYPE_SHUTDOWNGUARD, 1026 stcb->sctp_ep, stcb, netp); 1027 sctp_chunk_output(stcb->sctp_ep, stcb, SCTP_OUTPUT_FROM_T3, SCTP_SO_LOCKED); 1028 } 1029 } else { 1030 /* 1031 * we still got (or just got) data to send, so set 1032 * SHUTDOWN_PENDING 1033 */ 1034 struct sctp_nets *netp; 1035 1036 if (stcb->asoc.alternate) { 1037 netp = stcb->asoc.alternate; 1038 } else { 1039 netp = stcb->asoc.primary_destination; 1040 } 1041 1042 asoc->state |= SCTP_STATE_SHUTDOWN_PENDING; 1043 sctp_timer_start(SCTP_TIMER_TYPE_SHUTDOWNGUARD, stcb->sctp_ep, stcb, 1044 netp); 1045 1046 if (asoc->locked_on_sending) { 1047 /* Locked to send out the data */ 1048 struct sctp_stream_queue_pending *sp; 1049 1050 sp = TAILQ_LAST(&asoc->locked_on_sending->outqueue, sctp_streamhead); 1051 if (sp == NULL) { 1052 SCTP_PRINTF("Error, sp is NULL, locked on sending is non-null strm:%d\n", 1053 asoc->locked_on_sending->stream_no); 1054 } else { 1055 if ((sp->length == 0) && (sp->msg_is_complete == 0)) { 1056 asoc->state |= SCTP_STATE_PARTIAL_MSG_LEFT; 1057 } 1058 } 1059 } 1060 if (TAILQ_EMPTY(&asoc->send_queue) && 1061 TAILQ_EMPTY(&asoc->sent_queue) && 1062 (asoc->state & SCTP_STATE_PARTIAL_MSG_LEFT)) { 1063 struct mbuf *op_err; 1064 1065 abort_anyway: 1066 op_err = sctp_get_mbuf_for_msg(sizeof(struct sctp_paramhdr), 1067 0, M_NOWAIT, 1, MT_DATA); 1068 if (op_err) { 1069 /* Fill in the user initiated abort */ 1070 struct sctp_paramhdr *ph; 1071 1072 SCTP_BUF_LEN(op_err) = sizeof(struct sctp_paramhdr); 1073 ph = mtod(op_err, struct sctp_paramhdr *); 1074 ph->param_type = htons(SCTP_CAUSE_USER_INITIATED_ABT); 1075 ph->param_length = htons(SCTP_BUF_LEN(op_err)); 1076 } 1077 stcb->sctp_ep->last_abort_code = SCTP_FROM_SCTP_USRREQ + SCTP_LOC_6; 1078 sctp_abort_an_association(stcb->sctp_ep, stcb, 1079 op_err, SCTP_SO_LOCKED); 1080 goto skip_unlock; 1081 } else { 1082 sctp_chunk_output(inp, stcb, SCTP_OUTPUT_FROM_CLOSING, SCTP_SO_LOCKED); 1083 } 1084 } 1085 SCTP_TCB_UNLOCK(stcb); 1086 } 1087 skip_unlock: 1088 SCTP_INP_RUNLOCK(inp); 1089 return (0); 1090 } 1091 1092 /* 1093 * copies a "user" presentable address and removes embedded scope, etc. 1094 * returns 0 on success, 1 on error 1095 */ 1096 static uint32_t 1097 sctp_fill_user_address(struct sockaddr_storage *ss, struct sockaddr *sa) 1098 { 1099 #ifdef INET6 1100 struct sockaddr_in6 lsa6; 1101 1102 sa = (struct sockaddr *)sctp_recover_scope((struct sockaddr_in6 *)sa, 1103 &lsa6); 1104 #endif 1105 memcpy(ss, sa, sa->sa_len); 1106 return (0); 1107 } 1108 1109 1110 1111 /* 1112 * NOTE: assumes addr lock is held 1113 */ 1114 static size_t 1115 sctp_fill_up_addresses_vrf(struct sctp_inpcb *inp, 1116 struct sctp_tcb *stcb, 1117 size_t limit, 1118 struct sockaddr_storage *sas, 1119 uint32_t vrf_id) 1120 { 1121 struct sctp_ifn *sctp_ifn; 1122 struct sctp_ifa *sctp_ifa; 1123 int loopback_scope, ipv4_local_scope, local_scope, site_scope; 1124 size_t actual; 1125 int ipv4_addr_legal, ipv6_addr_legal; 1126 struct sctp_vrf *vrf; 1127 1128 actual = 0; 1129 if (limit <= 0) 1130 return (actual); 1131 1132 if (stcb) { 1133 /* Turn on all the appropriate scope */ 1134 loopback_scope = stcb->asoc.scope.loopback_scope; 1135 ipv4_local_scope = stcb->asoc.scope.ipv4_local_scope; 1136 local_scope = stcb->asoc.scope.local_scope; 1137 site_scope = stcb->asoc.scope.site_scope; 1138 ipv4_addr_legal = stcb->asoc.scope.ipv4_addr_legal; 1139 ipv6_addr_legal = stcb->asoc.scope.ipv6_addr_legal; 1140 } else { 1141 /* Use generic values for endpoints. */ 1142 loopback_scope = 1; 1143 ipv4_local_scope = 1; 1144 local_scope = 1; 1145 site_scope = 1; 1146 if (inp->sctp_flags & SCTP_PCB_FLAGS_BOUND_V6) { 1147 ipv6_addr_legal = 1; 1148 if (SCTP_IPV6_V6ONLY(inp)) { 1149 ipv4_addr_legal = 0; 1150 } else { 1151 ipv4_addr_legal = 1; 1152 } 1153 } else { 1154 ipv6_addr_legal = 0; 1155 ipv4_addr_legal = 1; 1156 } 1157 } 1158 vrf = sctp_find_vrf(vrf_id); 1159 if (vrf == NULL) { 1160 return (0); 1161 } 1162 if (inp->sctp_flags & SCTP_PCB_FLAGS_BOUNDALL) { 1163 LIST_FOREACH(sctp_ifn, &vrf->ifnlist, next_ifn) { 1164 if ((loopback_scope == 0) && 1165 SCTP_IFN_IS_IFT_LOOP(sctp_ifn)) { 1166 /* Skip loopback if loopback_scope not set */ 1167 continue; 1168 } 1169 LIST_FOREACH(sctp_ifa, &sctp_ifn->ifalist, next_ifa) { 1170 if (stcb) { 1171 /* 1172 * For the BOUND-ALL case, the list 1173 * associated with a TCB is Always 1174 * considered a reverse list.. i.e. 1175 * it lists addresses that are NOT 1176 * part of the association. If this 1177 * is one of those we must skip it. 1178 */ 1179 if (sctp_is_addr_restricted(stcb, 1180 sctp_ifa)) { 1181 continue; 1182 } 1183 } 1184 switch (sctp_ifa->address.sa.sa_family) { 1185 #ifdef INET 1186 case AF_INET: 1187 if (ipv4_addr_legal) { 1188 struct sockaddr_in *sin; 1189 1190 sin = (struct sockaddr_in *)&sctp_ifa->address.sa; 1191 if (sin->sin_addr.s_addr == 0) { 1192 /* 1193 * we skip 1194 * unspecifed 1195 * addresses 1196 */ 1197 continue; 1198 } 1199 if ((ipv4_local_scope == 0) && 1200 (IN4_ISPRIVATE_ADDRESS(&sin->sin_addr))) { 1201 continue; 1202 } 1203 #ifdef INET6 1204 if (sctp_is_feature_on(inp, SCTP_PCB_FLAGS_NEEDS_MAPPED_V4)) { 1205 in6_sin_2_v4mapsin6(sin, (struct sockaddr_in6 *)sas); 1206 ((struct sockaddr_in6 *)sas)->sin6_port = inp->sctp_lport; 1207 sas = (struct sockaddr_storage *)((caddr_t)sas + sizeof(struct sockaddr_in6)); 1208 actual += sizeof(struct sockaddr_in6); 1209 } else { 1210 #endif 1211 memcpy(sas, sin, sizeof(*sin)); 1212 ((struct sockaddr_in *)sas)->sin_port = inp->sctp_lport; 1213 sas = (struct sockaddr_storage *)((caddr_t)sas + sizeof(*sin)); 1214 actual += sizeof(*sin); 1215 #ifdef INET6 1216 } 1217 #endif 1218 if (actual >= limit) { 1219 return (actual); 1220 } 1221 } else { 1222 continue; 1223 } 1224 break; 1225 #endif 1226 #ifdef INET6 1227 case AF_INET6: 1228 if (ipv6_addr_legal) { 1229 struct sockaddr_in6 *sin6; 1230 1231 sin6 = (struct sockaddr_in6 *)&sctp_ifa->address.sa; 1232 if (IN6_IS_ADDR_UNSPECIFIED(&sin6->sin6_addr)) { 1233 /* 1234 * we skip 1235 * unspecifed 1236 * addresses 1237 */ 1238 continue; 1239 } 1240 if (IN6_IS_ADDR_LINKLOCAL(&sin6->sin6_addr)) { 1241 if (local_scope == 0) 1242 continue; 1243 if (sin6->sin6_scope_id == 0) { 1244 if (sa6_recoverscope(sin6) != 0) 1245 /* 1246 * 1247 * bad 1248 * 1249 * li 1250 * nk 1251 * 1252 * loc 1253 * al 1254 * 1255 * add 1256 * re 1257 * ss 1258 * */ 1259 continue; 1260 } 1261 } 1262 if ((site_scope == 0) && 1263 (IN6_IS_ADDR_SITELOCAL(&sin6->sin6_addr))) { 1264 continue; 1265 } 1266 memcpy(sas, sin6, sizeof(*sin6)); 1267 ((struct sockaddr_in6 *)sas)->sin6_port = inp->sctp_lport; 1268 sas = (struct sockaddr_storage *)((caddr_t)sas + sizeof(*sin6)); 1269 actual += sizeof(*sin6); 1270 if (actual >= limit) { 1271 return (actual); 1272 } 1273 } else { 1274 continue; 1275 } 1276 break; 1277 #endif 1278 default: 1279 /* TSNH */ 1280 break; 1281 } 1282 } 1283 } 1284 } else { 1285 struct sctp_laddr *laddr; 1286 1287 LIST_FOREACH(laddr, &inp->sctp_addr_list, sctp_nxt_addr) { 1288 if (stcb) { 1289 if (sctp_is_addr_restricted(stcb, laddr->ifa)) { 1290 continue; 1291 } 1292 } 1293 if (sctp_fill_user_address(sas, &laddr->ifa->address.sa)) 1294 continue; 1295 switch (laddr->ifa->address.sa.sa_family) { 1296 #ifdef INET 1297 case AF_INET: 1298 ((struct sockaddr_in *)sas)->sin_port = inp->sctp_lport; 1299 break; 1300 #endif 1301 #ifdef INET6 1302 case AF_INET6: 1303 ((struct sockaddr_in6 *)sas)->sin6_port = inp->sctp_lport; 1304 break; 1305 #endif 1306 default: 1307 /* TSNH */ 1308 break; 1309 } 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_udpencaps); 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 3946 SCTP_CHECK_AND_CAST(shmac, optval, struct sctp_hmacalgo, optsize); 3947 if (optsize < sizeof(struct sctp_hmacalgo) + shmac->shmac_number_of_idents * sizeof(uint16_t)) { 3948 SCTP_LTRACE_ERR_RET(inp, NULL, NULL, SCTP_FROM_SCTP_USRREQ, EINVAL); 3949 error = EINVAL; 3950 break; 3951 } 3952 hmaclist = sctp_alloc_hmaclist(shmac->shmac_number_of_idents); 3953 if (hmaclist == NULL) { 3954 SCTP_LTRACE_ERR_RET(inp, NULL, NULL, SCTP_FROM_SCTP_USRREQ, ENOMEM); 3955 error = ENOMEM; 3956 break; 3957 } 3958 for (i = 0; i < shmac->shmac_number_of_idents; i++) { 3959 hmacid = shmac->shmac_idents[i]; 3960 if (sctp_auth_add_hmacid(hmaclist, hmacid)) { 3961 /* invalid HMACs were found */ ; 3962 SCTP_LTRACE_ERR_RET(inp, NULL, NULL, SCTP_FROM_SCTP_USRREQ, EINVAL); 3963 error = EINVAL; 3964 sctp_free_hmaclist(hmaclist); 3965 goto sctp_set_hmac_done; 3966 } 3967 } 3968 for (i = 0; i < hmaclist->num_algo; i++) { 3969 if (hmaclist->hmac[i] == SCTP_AUTH_HMAC_ID_SHA1) { 3970 /* already in list */ 3971 break; 3972 } 3973 } 3974 if (i == hmaclist->num_algo) { 3975 /* not found in list */ 3976 sctp_free_hmaclist(hmaclist); 3977 SCTP_LTRACE_ERR_RET(inp, NULL, NULL, SCTP_FROM_SCTP_USRREQ, EINVAL); 3978 error = EINVAL; 3979 break; 3980 } 3981 /* set it on the endpoint */ 3982 SCTP_INP_WLOCK(inp); 3983 if (inp->sctp_ep.local_hmacs) 3984 sctp_free_hmaclist(inp->sctp_ep.local_hmacs); 3985 inp->sctp_ep.local_hmacs = hmaclist; 3986 SCTP_INP_WUNLOCK(inp); 3987 sctp_set_hmac_done: 3988 break; 3989 } 3990 case SCTP_AUTH_ACTIVE_KEY: 3991 { 3992 struct sctp_authkeyid *scact; 3993 3994 SCTP_CHECK_AND_CAST(scact, optval, struct sctp_authkeyid, optsize); 3995 SCTP_FIND_STCB(inp, stcb, scact->scact_assoc_id); 3996 3997 /* set the active key on the right place */ 3998 if (stcb) { 3999 /* set the active key on the assoc */ 4000 if (sctp_auth_setactivekey(stcb, 4001 scact->scact_keynumber)) { 4002 SCTP_LTRACE_ERR_RET(inp, NULL, NULL, 4003 SCTP_FROM_SCTP_USRREQ, 4004 EINVAL); 4005 error = EINVAL; 4006 } 4007 SCTP_TCB_UNLOCK(stcb); 4008 } else { 4009 if ((inp->sctp_flags & SCTP_PCB_FLAGS_TCPTYPE) || 4010 (inp->sctp_flags & SCTP_PCB_FLAGS_IN_TCPPOOL) || 4011 (scact->scact_assoc_id == SCTP_FUTURE_ASSOC) || 4012 (scact->scact_assoc_id == SCTP_ALL_ASSOC)) { 4013 SCTP_INP_WLOCK(inp); 4014 if (sctp_auth_setactivekey_ep(inp, scact->scact_keynumber)) { 4015 SCTP_LTRACE_ERR_RET(inp, NULL, NULL, SCTP_FROM_SCTP_USRREQ, EINVAL); 4016 error = EINVAL; 4017 } 4018 SCTP_INP_WUNLOCK(inp); 4019 } 4020 if ((scact->scact_assoc_id == SCTP_CURRENT_ASSOC) || 4021 (scact->scact_assoc_id == SCTP_ALL_ASSOC)) { 4022 SCTP_INP_RLOCK(inp); 4023 LIST_FOREACH(stcb, &inp->sctp_asoc_list, sctp_tcblist) { 4024 SCTP_TCB_LOCK(stcb); 4025 sctp_auth_setactivekey(stcb, scact->scact_keynumber); 4026 SCTP_TCB_UNLOCK(stcb); 4027 } 4028 SCTP_INP_RUNLOCK(inp); 4029 } 4030 } 4031 break; 4032 } 4033 case SCTP_AUTH_DELETE_KEY: 4034 { 4035 struct sctp_authkeyid *scdel; 4036 4037 SCTP_CHECK_AND_CAST(scdel, optval, struct sctp_authkeyid, optsize); 4038 SCTP_FIND_STCB(inp, stcb, scdel->scact_assoc_id); 4039 4040 /* delete the key from the right place */ 4041 if (stcb) { 4042 if (sctp_delete_sharedkey(stcb, scdel->scact_keynumber)) { 4043 SCTP_LTRACE_ERR_RET(inp, NULL, NULL, SCTP_FROM_SCTP_USRREQ, EINVAL); 4044 error = EINVAL; 4045 } 4046 SCTP_TCB_UNLOCK(stcb); 4047 } else { 4048 if ((inp->sctp_flags & SCTP_PCB_FLAGS_TCPTYPE) || 4049 (inp->sctp_flags & SCTP_PCB_FLAGS_IN_TCPPOOL) || 4050 (scdel->scact_assoc_id == SCTP_FUTURE_ASSOC) || 4051 (scdel->scact_assoc_id == SCTP_ALL_ASSOC)) { 4052 SCTP_INP_WLOCK(inp); 4053 if (sctp_delete_sharedkey_ep(inp, scdel->scact_keynumber)) { 4054 SCTP_LTRACE_ERR_RET(inp, NULL, NULL, SCTP_FROM_SCTP_USRREQ, EINVAL); 4055 error = EINVAL; 4056 } 4057 SCTP_INP_WUNLOCK(inp); 4058 } 4059 if ((scdel->scact_assoc_id == SCTP_CURRENT_ASSOC) || 4060 (scdel->scact_assoc_id == SCTP_ALL_ASSOC)) { 4061 SCTP_INP_RLOCK(inp); 4062 LIST_FOREACH(stcb, &inp->sctp_asoc_list, sctp_tcblist) { 4063 SCTP_TCB_LOCK(stcb); 4064 sctp_delete_sharedkey(stcb, scdel->scact_keynumber); 4065 SCTP_TCB_UNLOCK(stcb); 4066 } 4067 SCTP_INP_RUNLOCK(inp); 4068 } 4069 } 4070 break; 4071 } 4072 case SCTP_AUTH_DEACTIVATE_KEY: 4073 { 4074 struct sctp_authkeyid *keyid; 4075 4076 SCTP_CHECK_AND_CAST(keyid, optval, struct sctp_authkeyid, optsize); 4077 SCTP_FIND_STCB(inp, stcb, keyid->scact_assoc_id); 4078 4079 /* deactivate the key from the right place */ 4080 if (stcb) { 4081 if (sctp_deact_sharedkey(stcb, keyid->scact_keynumber)) { 4082 SCTP_LTRACE_ERR_RET(inp, NULL, NULL, SCTP_FROM_SCTP_USRREQ, EINVAL); 4083 error = EINVAL; 4084 } 4085 SCTP_TCB_UNLOCK(stcb); 4086 } else { 4087 if ((inp->sctp_flags & SCTP_PCB_FLAGS_TCPTYPE) || 4088 (inp->sctp_flags & SCTP_PCB_FLAGS_IN_TCPPOOL) || 4089 (keyid->scact_assoc_id == SCTP_FUTURE_ASSOC) || 4090 (keyid->scact_assoc_id == SCTP_ALL_ASSOC)) { 4091 SCTP_INP_WLOCK(inp); 4092 if (sctp_deact_sharedkey_ep(inp, keyid->scact_keynumber)) { 4093 SCTP_LTRACE_ERR_RET(inp, NULL, NULL, SCTP_FROM_SCTP_USRREQ, EINVAL); 4094 error = EINVAL; 4095 } 4096 SCTP_INP_WUNLOCK(inp); 4097 } 4098 if ((keyid->scact_assoc_id == SCTP_CURRENT_ASSOC) || 4099 (keyid->scact_assoc_id == SCTP_ALL_ASSOC)) { 4100 SCTP_INP_RLOCK(inp); 4101 LIST_FOREACH(stcb, &inp->sctp_asoc_list, sctp_tcblist) { 4102 SCTP_TCB_LOCK(stcb); 4103 sctp_deact_sharedkey(stcb, keyid->scact_keynumber); 4104 SCTP_TCB_UNLOCK(stcb); 4105 } 4106 SCTP_INP_RUNLOCK(inp); 4107 } 4108 } 4109 break; 4110 } 4111 case SCTP_ENABLE_STREAM_RESET: 4112 { 4113 struct sctp_assoc_value *av; 4114 4115 SCTP_CHECK_AND_CAST(av, optval, struct sctp_assoc_value, optsize); 4116 if (av->assoc_value & (~SCTP_ENABLE_VALUE_MASK)) { 4117 SCTP_LTRACE_ERR_RET(inp, NULL, NULL, SCTP_FROM_SCTP_USRREQ, EINVAL); 4118 error = EINVAL; 4119 break; 4120 } 4121 SCTP_FIND_STCB(inp, stcb, av->assoc_id); 4122 if (stcb) { 4123 stcb->asoc.local_strreset_support = (uint8_t) av->assoc_value; 4124 SCTP_TCB_UNLOCK(stcb); 4125 } else { 4126 if ((inp->sctp_flags & SCTP_PCB_FLAGS_TCPTYPE) || 4127 (inp->sctp_flags & SCTP_PCB_FLAGS_IN_TCPPOOL) || 4128 (av->assoc_id == SCTP_FUTURE_ASSOC) || 4129 (av->assoc_id == SCTP_ALL_ASSOC)) { 4130 SCTP_INP_WLOCK(inp); 4131 inp->local_strreset_support = (uint8_t) av->assoc_value; 4132 SCTP_INP_WUNLOCK(inp); 4133 } 4134 if ((av->assoc_id == SCTP_CURRENT_ASSOC) || 4135 (av->assoc_id == SCTP_ALL_ASSOC)) { 4136 SCTP_INP_RLOCK(inp); 4137 LIST_FOREACH(stcb, &inp->sctp_asoc_list, sctp_tcblist) { 4138 SCTP_TCB_LOCK(stcb); 4139 stcb->asoc.local_strreset_support = (uint8_t) av->assoc_value; 4140 SCTP_TCB_UNLOCK(stcb); 4141 } 4142 SCTP_INP_RUNLOCK(inp); 4143 } 4144 } 4145 break; 4146 } 4147 case SCTP_RESET_STREAMS: 4148 { 4149 struct sctp_reset_streams *strrst; 4150 int i, send_out = 0; 4151 int send_in = 0; 4152 4153 SCTP_CHECK_AND_CAST(strrst, optval, struct sctp_reset_streams, optsize); 4154 SCTP_FIND_STCB(inp, stcb, strrst->srs_assoc_id); 4155 if (stcb == NULL) { 4156 SCTP_LTRACE_ERR_RET(inp, NULL, NULL, SCTP_FROM_SCTP_USRREQ, ENOENT); 4157 error = ENOENT; 4158 break; 4159 } 4160 if (stcb->asoc.peer_supports_strreset == 0) { 4161 /* 4162 * Peer does not support the chunk type. 4163 */ 4164 SCTP_LTRACE_ERR_RET(inp, NULL, NULL, SCTP_FROM_SCTP_USRREQ, EOPNOTSUPP); 4165 error = EOPNOTSUPP; 4166 SCTP_TCB_UNLOCK(stcb); 4167 break; 4168 } 4169 if (stcb->asoc.stream_reset_outstanding) { 4170 SCTP_LTRACE_ERR_RET(inp, NULL, NULL, SCTP_FROM_SCTP_USRREQ, EALREADY); 4171 error = EALREADY; 4172 SCTP_TCB_UNLOCK(stcb); 4173 break; 4174 } 4175 if (strrst->srs_flags & SCTP_STREAM_RESET_INCOMING) { 4176 send_in = 1; 4177 } 4178 if (strrst->srs_flags & SCTP_STREAM_RESET_OUTGOING) { 4179 send_out = 1; 4180 } 4181 if ((send_in == 0) && (send_out == 0)) { 4182 SCTP_LTRACE_ERR_RET(inp, NULL, NULL, SCTP_FROM_SCTP_USRREQ, EINVAL); 4183 error = EINVAL; 4184 SCTP_TCB_UNLOCK(stcb); 4185 break; 4186 } 4187 for (i = 0; i < strrst->srs_number_streams; i++) { 4188 if ((send_in) && 4189 (strrst->srs_stream_list[i] > stcb->asoc.streamincnt)) { 4190 SCTP_LTRACE_ERR_RET(inp, NULL, NULL, SCTP_FROM_SCTP_USRREQ, EINVAL); 4191 error = EINVAL; 4192 break; 4193 } 4194 if ((send_out) && 4195 (strrst->srs_stream_list[i] > stcb->asoc.streamoutcnt)) { 4196 SCTP_LTRACE_ERR_RET(inp, NULL, NULL, SCTP_FROM_SCTP_USRREQ, EINVAL); 4197 error = EINVAL; 4198 break; 4199 } 4200 } 4201 if (error) { 4202 SCTP_TCB_UNLOCK(stcb); 4203 break; 4204 } 4205 error = sctp_send_str_reset_req(stcb, strrst->srs_number_streams, 4206 strrst->srs_stream_list, 4207 send_out, send_in, 0, 0, 0, 0, 0); 4208 4209 sctp_chunk_output(inp, stcb, SCTP_OUTPUT_FROM_STRRST_REQ, SCTP_SO_LOCKED); 4210 SCTP_TCB_UNLOCK(stcb); 4211 break; 4212 } 4213 case SCTP_ADD_STREAMS: 4214 { 4215 struct sctp_add_streams *stradd; 4216 uint8_t addstream = 0; 4217 uint16_t add_o_strmcnt = 0; 4218 uint16_t add_i_strmcnt = 0; 4219 4220 SCTP_CHECK_AND_CAST(stradd, optval, struct sctp_add_streams, optsize); 4221 SCTP_FIND_STCB(inp, stcb, stradd->sas_assoc_id); 4222 if (stcb == NULL) { 4223 SCTP_LTRACE_ERR_RET(inp, NULL, NULL, SCTP_FROM_SCTP_USRREQ, ENOENT); 4224 error = ENOENT; 4225 break; 4226 } 4227 if (stcb->asoc.peer_supports_strreset == 0) { 4228 /* 4229 * Peer does not support the chunk type. 4230 */ 4231 SCTP_LTRACE_ERR_RET(inp, NULL, NULL, SCTP_FROM_SCTP_USRREQ, EOPNOTSUPP); 4232 error = EOPNOTSUPP; 4233 SCTP_TCB_UNLOCK(stcb); 4234 break; 4235 } 4236 if (stcb->asoc.stream_reset_outstanding) { 4237 SCTP_LTRACE_ERR_RET(inp, NULL, NULL, SCTP_FROM_SCTP_USRREQ, EALREADY); 4238 error = EALREADY; 4239 SCTP_TCB_UNLOCK(stcb); 4240 break; 4241 } 4242 if ((stradd->sas_outstrms == 0) && 4243 (stradd->sas_instrms == 0)) { 4244 error = EINVAL; 4245 goto skip_stuff; 4246 } 4247 if (stradd->sas_outstrms) { 4248 addstream = 1; 4249 /* We allocate here */ 4250 add_o_strmcnt = stradd->sas_outstrms; 4251 if ((((int)add_o_strmcnt) + ((int)stcb->asoc.streamoutcnt)) > 0x0000ffff) { 4252 /* You can't have more than 64k */ 4253 error = EINVAL; 4254 goto skip_stuff; 4255 } 4256 } 4257 if (stradd->sas_instrms) { 4258 int cnt; 4259 4260 addstream |= 2; 4261 /* 4262 * We allocate inside 4263 * sctp_send_str_reset_req() 4264 */ 4265 add_i_strmcnt = stradd->sas_instrms; 4266 cnt = add_i_strmcnt; 4267 cnt += stcb->asoc.streamincnt; 4268 if (cnt > 0x0000ffff) { 4269 /* You can't have more than 64k */ 4270 error = EINVAL; 4271 goto skip_stuff; 4272 } 4273 if (cnt > (int)stcb->asoc.max_inbound_streams) { 4274 /* More than you are allowed */ 4275 error = EINVAL; 4276 goto skip_stuff; 4277 } 4278 } 4279 error = sctp_send_str_reset_req(stcb, 0, NULL, 0, 0, 0, addstream, add_o_strmcnt, add_i_strmcnt, 0); 4280 sctp_chunk_output(inp, stcb, SCTP_OUTPUT_FROM_STRRST_REQ, SCTP_SO_LOCKED); 4281 skip_stuff: 4282 SCTP_TCB_UNLOCK(stcb); 4283 break; 4284 } 4285 case SCTP_RESET_ASSOC: 4286 { 4287 uint32_t *value; 4288 4289 SCTP_CHECK_AND_CAST(value, optval, uint32_t, optsize); 4290 SCTP_FIND_STCB(inp, stcb, (sctp_assoc_t) * value); 4291 if (stcb == NULL) { 4292 SCTP_LTRACE_ERR_RET(inp, NULL, NULL, SCTP_FROM_SCTP_USRREQ, ENOENT); 4293 error = ENOENT; 4294 break; 4295 } 4296 if (stcb->asoc.peer_supports_strreset == 0) { 4297 /* 4298 * Peer does not support the chunk type. 4299 */ 4300 SCTP_LTRACE_ERR_RET(inp, NULL, NULL, SCTP_FROM_SCTP_USRREQ, EOPNOTSUPP); 4301 error = EOPNOTSUPP; 4302 SCTP_TCB_UNLOCK(stcb); 4303 break; 4304 } 4305 if (stcb->asoc.stream_reset_outstanding) { 4306 SCTP_LTRACE_ERR_RET(inp, NULL, NULL, SCTP_FROM_SCTP_USRREQ, EALREADY); 4307 error = EALREADY; 4308 SCTP_TCB_UNLOCK(stcb); 4309 break; 4310 } 4311 error = sctp_send_str_reset_req(stcb, 0, NULL, 0, 0, 1, 0, 0, 0, 0); 4312 sctp_chunk_output(inp, stcb, SCTP_OUTPUT_FROM_STRRST_REQ, SCTP_SO_LOCKED); 4313 SCTP_TCB_UNLOCK(stcb); 4314 break; 4315 } 4316 case SCTP_CONNECT_X: 4317 if (optsize < (sizeof(int) + sizeof(struct sockaddr_in))) { 4318 SCTP_LTRACE_ERR_RET(inp, NULL, NULL, SCTP_FROM_SCTP_USRREQ, EINVAL); 4319 error = EINVAL; 4320 break; 4321 } 4322 error = sctp_do_connect_x(so, inp, optval, optsize, p, 0); 4323 break; 4324 case SCTP_CONNECT_X_DELAYED: 4325 if (optsize < (sizeof(int) + sizeof(struct sockaddr_in))) { 4326 SCTP_LTRACE_ERR_RET(inp, NULL, NULL, SCTP_FROM_SCTP_USRREQ, EINVAL); 4327 error = EINVAL; 4328 break; 4329 } 4330 error = sctp_do_connect_x(so, inp, optval, optsize, p, 1); 4331 break; 4332 case SCTP_CONNECT_X_COMPLETE: 4333 { 4334 struct sockaddr *sa; 4335 struct sctp_nets *net; 4336 4337 /* FIXME MT: check correct? */ 4338 SCTP_CHECK_AND_CAST(sa, optval, struct sockaddr, optsize); 4339 4340 /* find tcb */ 4341 if (inp->sctp_flags & SCTP_PCB_FLAGS_CONNECTED) { 4342 SCTP_INP_RLOCK(inp); 4343 stcb = LIST_FIRST(&inp->sctp_asoc_list); 4344 if (stcb) { 4345 SCTP_TCB_LOCK(stcb); 4346 net = sctp_findnet(stcb, sa); 4347 } 4348 SCTP_INP_RUNLOCK(inp); 4349 } else { 4350 /* 4351 * We increment here since 4352 * sctp_findassociation_ep_addr() wil do a 4353 * decrement if it finds the stcb as long as 4354 * the locked tcb (last argument) is NOT a 4355 * TCB.. aka NULL. 4356 */ 4357 SCTP_INP_INCR_REF(inp); 4358 stcb = sctp_findassociation_ep_addr(&inp, sa, &net, NULL, NULL); 4359 if (stcb == NULL) { 4360 SCTP_INP_DECR_REF(inp); 4361 } 4362 } 4363 4364 if (stcb == NULL) { 4365 SCTP_LTRACE_ERR_RET(inp, NULL, NULL, SCTP_FROM_SCTP_USRREQ, ENOENT); 4366 error = ENOENT; 4367 break; 4368 } 4369 if (stcb->asoc.delayed_connection == 1) { 4370 stcb->asoc.delayed_connection = 0; 4371 (void)SCTP_GETTIME_TIMEVAL(&stcb->asoc.time_entered); 4372 sctp_timer_stop(SCTP_TIMER_TYPE_INIT, inp, stcb, 4373 stcb->asoc.primary_destination, 4374 SCTP_FROM_SCTP_USRREQ + SCTP_LOC_9); 4375 sctp_send_initiate(inp, stcb, SCTP_SO_LOCKED); 4376 } else { 4377 /* 4378 * already expired or did not use delayed 4379 * connectx 4380 */ 4381 SCTP_LTRACE_ERR_RET(inp, NULL, NULL, SCTP_FROM_SCTP_USRREQ, EALREADY); 4382 error = EALREADY; 4383 } 4384 SCTP_TCB_UNLOCK(stcb); 4385 break; 4386 } 4387 case SCTP_MAX_BURST: 4388 { 4389 struct sctp_assoc_value *av; 4390 4391 SCTP_CHECK_AND_CAST(av, optval, struct sctp_assoc_value, optsize); 4392 SCTP_FIND_STCB(inp, stcb, av->assoc_id); 4393 4394 if (stcb) { 4395 stcb->asoc.max_burst = av->assoc_value; 4396 SCTP_TCB_UNLOCK(stcb); 4397 } else { 4398 if ((inp->sctp_flags & SCTP_PCB_FLAGS_TCPTYPE) || 4399 (inp->sctp_flags & SCTP_PCB_FLAGS_IN_TCPPOOL) || 4400 (av->assoc_id == SCTP_FUTURE_ASSOC) || 4401 (av->assoc_id == SCTP_ALL_ASSOC)) { 4402 SCTP_INP_WLOCK(inp); 4403 inp->sctp_ep.max_burst = av->assoc_value; 4404 SCTP_INP_WUNLOCK(inp); 4405 } 4406 if ((av->assoc_id == SCTP_CURRENT_ASSOC) || 4407 (av->assoc_id == SCTP_ALL_ASSOC)) { 4408 SCTP_INP_RLOCK(inp); 4409 LIST_FOREACH(stcb, &inp->sctp_asoc_list, sctp_tcblist) { 4410 SCTP_TCB_LOCK(stcb); 4411 stcb->asoc.max_burst = av->assoc_value; 4412 SCTP_TCB_UNLOCK(stcb); 4413 } 4414 SCTP_INP_RUNLOCK(inp); 4415 } 4416 } 4417 break; 4418 } 4419 case SCTP_MAXSEG: 4420 { 4421 struct sctp_assoc_value *av; 4422 int ovh; 4423 4424 SCTP_CHECK_AND_CAST(av, optval, struct sctp_assoc_value, optsize); 4425 SCTP_FIND_STCB(inp, stcb, av->assoc_id); 4426 4427 if (inp->sctp_flags & SCTP_PCB_FLAGS_BOUND_V6) { 4428 ovh = SCTP_MED_OVERHEAD; 4429 } else { 4430 ovh = SCTP_MED_V4_OVERHEAD; 4431 } 4432 if (stcb) { 4433 if (av->assoc_value) { 4434 stcb->asoc.sctp_frag_point = (av->assoc_value + ovh); 4435 } else { 4436 stcb->asoc.sctp_frag_point = SCTP_DEFAULT_MAXSEGMENT; 4437 } 4438 SCTP_TCB_UNLOCK(stcb); 4439 } else { 4440 if ((inp->sctp_flags & SCTP_PCB_FLAGS_TCPTYPE) || 4441 (inp->sctp_flags & SCTP_PCB_FLAGS_IN_TCPPOOL) || 4442 (av->assoc_id == SCTP_FUTURE_ASSOC)) { 4443 SCTP_INP_WLOCK(inp); 4444 /* 4445 * FIXME MT: I think this is not in 4446 * tune with the API ID 4447 */ 4448 if (av->assoc_value) { 4449 inp->sctp_frag_point = (av->assoc_value + ovh); 4450 } else { 4451 inp->sctp_frag_point = SCTP_DEFAULT_MAXSEGMENT; 4452 } 4453 SCTP_INP_WUNLOCK(inp); 4454 } else { 4455 SCTP_LTRACE_ERR_RET(inp, NULL, NULL, SCTP_FROM_SCTP_USRREQ, EINVAL); 4456 error = EINVAL; 4457 } 4458 } 4459 break; 4460 } 4461 case SCTP_EVENTS: 4462 { 4463 struct sctp_event_subscribe *events; 4464 4465 SCTP_CHECK_AND_CAST(events, optval, struct sctp_event_subscribe, optsize); 4466 4467 SCTP_INP_WLOCK(inp); 4468 if (events->sctp_data_io_event) { 4469 sctp_feature_on(inp, SCTP_PCB_FLAGS_RECVDATAIOEVNT); 4470 } else { 4471 sctp_feature_off(inp, SCTP_PCB_FLAGS_RECVDATAIOEVNT); 4472 } 4473 4474 if (events->sctp_association_event) { 4475 sctp_feature_on(inp, SCTP_PCB_FLAGS_RECVASSOCEVNT); 4476 } else { 4477 sctp_feature_off(inp, SCTP_PCB_FLAGS_RECVASSOCEVNT); 4478 } 4479 4480 if (events->sctp_address_event) { 4481 sctp_feature_on(inp, SCTP_PCB_FLAGS_RECVPADDREVNT); 4482 } else { 4483 sctp_feature_off(inp, SCTP_PCB_FLAGS_RECVPADDREVNT); 4484 } 4485 4486 if (events->sctp_send_failure_event) { 4487 sctp_feature_on(inp, SCTP_PCB_FLAGS_RECVSENDFAILEVNT); 4488 } else { 4489 sctp_feature_off(inp, SCTP_PCB_FLAGS_RECVSENDFAILEVNT); 4490 } 4491 4492 if (events->sctp_peer_error_event) { 4493 sctp_feature_on(inp, SCTP_PCB_FLAGS_RECVPEERERR); 4494 } else { 4495 sctp_feature_off(inp, SCTP_PCB_FLAGS_RECVPEERERR); 4496 } 4497 4498 if (events->sctp_shutdown_event) { 4499 sctp_feature_on(inp, SCTP_PCB_FLAGS_RECVSHUTDOWNEVNT); 4500 } else { 4501 sctp_feature_off(inp, SCTP_PCB_FLAGS_RECVSHUTDOWNEVNT); 4502 } 4503 4504 if (events->sctp_partial_delivery_event) { 4505 sctp_feature_on(inp, SCTP_PCB_FLAGS_PDAPIEVNT); 4506 } else { 4507 sctp_feature_off(inp, SCTP_PCB_FLAGS_PDAPIEVNT); 4508 } 4509 4510 if (events->sctp_adaptation_layer_event) { 4511 sctp_feature_on(inp, SCTP_PCB_FLAGS_ADAPTATIONEVNT); 4512 } else { 4513 sctp_feature_off(inp, SCTP_PCB_FLAGS_ADAPTATIONEVNT); 4514 } 4515 4516 if (events->sctp_authentication_event) { 4517 sctp_feature_on(inp, SCTP_PCB_FLAGS_AUTHEVNT); 4518 } else { 4519 sctp_feature_off(inp, SCTP_PCB_FLAGS_AUTHEVNT); 4520 } 4521 4522 if (events->sctp_sender_dry_event) { 4523 sctp_feature_on(inp, SCTP_PCB_FLAGS_DRYEVNT); 4524 } else { 4525 sctp_feature_off(inp, SCTP_PCB_FLAGS_DRYEVNT); 4526 } 4527 4528 if (events->sctp_stream_reset_event) { 4529 sctp_feature_on(inp, SCTP_PCB_FLAGS_STREAM_RESETEVNT); 4530 } else { 4531 sctp_feature_off(inp, SCTP_PCB_FLAGS_STREAM_RESETEVNT); 4532 } 4533 SCTP_INP_WUNLOCK(inp); 4534 4535 SCTP_INP_RLOCK(inp); 4536 LIST_FOREACH(stcb, &inp->sctp_asoc_list, sctp_tcblist) { 4537 SCTP_TCB_LOCK(stcb); 4538 if (events->sctp_association_event) { 4539 sctp_stcb_feature_on(inp, stcb, SCTP_PCB_FLAGS_RECVASSOCEVNT); 4540 } else { 4541 sctp_stcb_feature_off(inp, stcb, SCTP_PCB_FLAGS_RECVASSOCEVNT); 4542 } 4543 if (events->sctp_address_event) { 4544 sctp_stcb_feature_on(inp, stcb, SCTP_PCB_FLAGS_RECVPADDREVNT); 4545 } else { 4546 sctp_stcb_feature_off(inp, stcb, SCTP_PCB_FLAGS_RECVPADDREVNT); 4547 } 4548 if (events->sctp_send_failure_event) { 4549 sctp_stcb_feature_on(inp, stcb, SCTP_PCB_FLAGS_RECVSENDFAILEVNT); 4550 } else { 4551 sctp_stcb_feature_off(inp, stcb, SCTP_PCB_FLAGS_RECVSENDFAILEVNT); 4552 } 4553 if (events->sctp_peer_error_event) { 4554 sctp_stcb_feature_on(inp, stcb, SCTP_PCB_FLAGS_RECVPEERERR); 4555 } else { 4556 sctp_stcb_feature_off(inp, stcb, SCTP_PCB_FLAGS_RECVPEERERR); 4557 } 4558 if (events->sctp_shutdown_event) { 4559 sctp_stcb_feature_on(inp, stcb, SCTP_PCB_FLAGS_RECVSHUTDOWNEVNT); 4560 } else { 4561 sctp_stcb_feature_off(inp, stcb, SCTP_PCB_FLAGS_RECVSHUTDOWNEVNT); 4562 } 4563 if (events->sctp_partial_delivery_event) { 4564 sctp_stcb_feature_on(inp, stcb, SCTP_PCB_FLAGS_PDAPIEVNT); 4565 } else { 4566 sctp_stcb_feature_off(inp, stcb, SCTP_PCB_FLAGS_PDAPIEVNT); 4567 } 4568 if (events->sctp_adaptation_layer_event) { 4569 sctp_stcb_feature_on(inp, stcb, SCTP_PCB_FLAGS_ADAPTATIONEVNT); 4570 } else { 4571 sctp_stcb_feature_off(inp, stcb, SCTP_PCB_FLAGS_ADAPTATIONEVNT); 4572 } 4573 if (events->sctp_authentication_event) { 4574 sctp_stcb_feature_on(inp, stcb, SCTP_PCB_FLAGS_AUTHEVNT); 4575 } else { 4576 sctp_stcb_feature_off(inp, stcb, SCTP_PCB_FLAGS_AUTHEVNT); 4577 } 4578 if (events->sctp_sender_dry_event) { 4579 sctp_stcb_feature_on(inp, stcb, SCTP_PCB_FLAGS_DRYEVNT); 4580 } else { 4581 sctp_stcb_feature_off(inp, stcb, SCTP_PCB_FLAGS_DRYEVNT); 4582 } 4583 if (events->sctp_stream_reset_event) { 4584 sctp_stcb_feature_on(inp, stcb, SCTP_PCB_FLAGS_STREAM_RESETEVNT); 4585 } else { 4586 sctp_stcb_feature_off(inp, stcb, SCTP_PCB_FLAGS_STREAM_RESETEVNT); 4587 } 4588 SCTP_TCB_UNLOCK(stcb); 4589 } 4590 /* 4591 * Send up the sender dry event only for 1-to-1 4592 * style sockets. 4593 */ 4594 if (events->sctp_sender_dry_event) { 4595 if ((inp->sctp_flags & SCTP_PCB_FLAGS_TCPTYPE) || 4596 (inp->sctp_flags & SCTP_PCB_FLAGS_IN_TCPPOOL)) { 4597 stcb = LIST_FIRST(&inp->sctp_asoc_list); 4598 if (stcb) { 4599 SCTP_TCB_LOCK(stcb); 4600 if (TAILQ_EMPTY(&stcb->asoc.send_queue) && 4601 TAILQ_EMPTY(&stcb->asoc.sent_queue) && 4602 (stcb->asoc.stream_queue_cnt == 0)) { 4603 sctp_ulp_notify(SCTP_NOTIFY_SENDER_DRY, stcb, 0, NULL, SCTP_SO_LOCKED); 4604 } 4605 SCTP_TCB_UNLOCK(stcb); 4606 } 4607 } 4608 } 4609 SCTP_INP_RUNLOCK(inp); 4610 break; 4611 } 4612 case SCTP_ADAPTATION_LAYER: 4613 { 4614 struct sctp_setadaptation *adap_bits; 4615 4616 SCTP_CHECK_AND_CAST(adap_bits, optval, struct sctp_setadaptation, optsize); 4617 SCTP_INP_WLOCK(inp); 4618 inp->sctp_ep.adaptation_layer_indicator = adap_bits->ssb_adaptation_ind; 4619 inp->sctp_ep.adaptation_layer_indicator_provided = 1; 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 net->mtu = paddrp->spp_pathmtu + ovh; 4800 if (net->mtu < stcb->asoc.smallest_mtu) { 4801 sctp_pathmtu_adjustment(stcb, net->mtu); 4802 } 4803 } 4804 if (paddrp->spp_flags & SPP_PMTUD_ENABLE) { 4805 if (!SCTP_OS_TIMER_PENDING(&net->pmtu_timer.timer)) { 4806 sctp_timer_start(SCTP_TIMER_TYPE_PATHMTURAISE, inp, stcb, net); 4807 } 4808 net->dest_state &= ~SCTP_ADDR_NO_PMTUD; 4809 } 4810 if (paddrp->spp_pathmaxrxt) { 4811 if (net->dest_state & SCTP_ADDR_PF) { 4812 if (net->error_count > paddrp->spp_pathmaxrxt) { 4813 net->dest_state &= ~SCTP_ADDR_PF; 4814 } 4815 } else { 4816 if ((net->error_count <= paddrp->spp_pathmaxrxt) && 4817 (net->error_count > net->pf_threshold)) { 4818 net->dest_state |= SCTP_ADDR_PF; 4819 sctp_send_hb(stcb, net, SCTP_SO_LOCKED); 4820 sctp_timer_stop(SCTP_TIMER_TYPE_HEARTBEAT, stcb->sctp_ep, stcb, net, SCTP_FROM_SCTP_TIMER + SCTP_LOC_3); 4821 sctp_timer_start(SCTP_TIMER_TYPE_HEARTBEAT, stcb->sctp_ep, stcb, net); 4822 } 4823 } 4824 if (net->dest_state & SCTP_ADDR_REACHABLE) { 4825 if (net->error_count > paddrp->spp_pathmaxrxt) { 4826 net->dest_state &= ~SCTP_ADDR_REACHABLE; 4827 sctp_ulp_notify(SCTP_NOTIFY_INTERFACE_DOWN, stcb, 0, net, SCTP_SO_LOCKED); 4828 } 4829 } else { 4830 if (net->error_count <= paddrp->spp_pathmaxrxt) { 4831 net->dest_state |= SCTP_ADDR_REACHABLE; 4832 sctp_ulp_notify(SCTP_NOTIFY_INTERFACE_UP, stcb, 0, net, SCTP_SO_LOCKED); 4833 } 4834 } 4835 net->failure_threshold = paddrp->spp_pathmaxrxt; 4836 } 4837 if (paddrp->spp_flags & SPP_DSCP) { 4838 net->dscp = paddrp->spp_dscp & 0xfc; 4839 net->dscp |= 0x01; 4840 } 4841 #ifdef INET6 4842 if (paddrp->spp_flags & SPP_IPV6_FLOWLABEL) { 4843 if (net->ro._l_addr.sa.sa_family == AF_INET6) { 4844 net->flowlabel = paddrp->spp_ipv6_flowlabel & 0x000fffff; 4845 net->flowlabel |= 0x80000000; 4846 } 4847 } 4848 #endif 4849 } else { 4850 /************************ASSOC ONLY -- NO NET SPECIFIC SET ******************/ 4851 if (paddrp->spp_pathmaxrxt) { 4852 stcb->asoc.def_net_failure = paddrp->spp_pathmaxrxt; 4853 TAILQ_FOREACH(net, &stcb->asoc.nets, sctp_next) { 4854 if (net->dest_state & SCTP_ADDR_PF) { 4855 if (net->error_count > paddrp->spp_pathmaxrxt) { 4856 net->dest_state &= ~SCTP_ADDR_PF; 4857 } 4858 } else { 4859 if ((net->error_count <= paddrp->spp_pathmaxrxt) && 4860 (net->error_count > net->pf_threshold)) { 4861 net->dest_state |= SCTP_ADDR_PF; 4862 sctp_send_hb(stcb, net, SCTP_SO_LOCKED); 4863 sctp_timer_stop(SCTP_TIMER_TYPE_HEARTBEAT, stcb->sctp_ep, stcb, net, SCTP_FROM_SCTP_TIMER + SCTP_LOC_3); 4864 sctp_timer_start(SCTP_TIMER_TYPE_HEARTBEAT, stcb->sctp_ep, stcb, net); 4865 } 4866 } 4867 if (net->dest_state & SCTP_ADDR_REACHABLE) { 4868 if (net->error_count > paddrp->spp_pathmaxrxt) { 4869 net->dest_state &= ~SCTP_ADDR_REACHABLE; 4870 sctp_ulp_notify(SCTP_NOTIFY_INTERFACE_DOWN, stcb, 0, net, SCTP_SO_LOCKED); 4871 } 4872 } else { 4873 if (net->error_count <= paddrp->spp_pathmaxrxt) { 4874 net->dest_state |= SCTP_ADDR_REACHABLE; 4875 sctp_ulp_notify(SCTP_NOTIFY_INTERFACE_UP, stcb, 0, net, SCTP_SO_LOCKED); 4876 } 4877 } 4878 net->failure_threshold = paddrp->spp_pathmaxrxt; 4879 } 4880 } 4881 if (paddrp->spp_flags & SPP_HB_ENABLE) { 4882 if (paddrp->spp_hbinterval) { 4883 stcb->asoc.heart_beat_delay = paddrp->spp_hbinterval; 4884 } else if (paddrp->spp_flags & SPP_HB_TIME_IS_ZERO) { 4885 stcb->asoc.heart_beat_delay = 0; 4886 } 4887 /* Turn back on the timer */ 4888 TAILQ_FOREACH(net, &stcb->asoc.nets, sctp_next) { 4889 if (paddrp->spp_hbinterval) { 4890 net->heart_beat_delay = paddrp->spp_hbinterval; 4891 } else if (paddrp->spp_flags & SPP_HB_TIME_IS_ZERO) { 4892 net->heart_beat_delay = 0; 4893 } 4894 if (net->dest_state & SCTP_ADDR_NOHB) { 4895 net->dest_state &= ~SCTP_ADDR_NOHB; 4896 } 4897 sctp_timer_stop(SCTP_TIMER_TYPE_HEARTBEAT, inp, stcb, net, 4898 SCTP_FROM_SCTP_USRREQ + SCTP_LOC_10); 4899 sctp_timer_start(SCTP_TIMER_TYPE_HEARTBEAT, inp, stcb, net); 4900 } 4901 sctp_stcb_feature_off(inp, stcb, SCTP_PCB_FLAGS_DONOT_HEARTBEAT); 4902 } 4903 if (paddrp->spp_flags & SPP_HB_DISABLE) { 4904 TAILQ_FOREACH(net, &stcb->asoc.nets, sctp_next) { 4905 if (!(net->dest_state & SCTP_ADDR_NOHB)) { 4906 net->dest_state |= SCTP_ADDR_NOHB; 4907 if (!(net->dest_state & SCTP_ADDR_UNCONFIRMED)) { 4908 sctp_timer_stop(SCTP_TIMER_TYPE_HEARTBEAT, inp, stcb, net, SCTP_FROM_SCTP_USRREQ + SCTP_LOC_10); 4909 } 4910 } 4911 } 4912 sctp_stcb_feature_on(inp, stcb, SCTP_PCB_FLAGS_DONOT_HEARTBEAT); 4913 } 4914 if ((paddrp->spp_flags & SPP_PMTUD_DISABLE) && (paddrp->spp_pathmtu >= SCTP_SMALLEST_PMTU)) { 4915 TAILQ_FOREACH(net, &stcb->asoc.nets, sctp_next) { 4916 if (SCTP_OS_TIMER_PENDING(&net->pmtu_timer.timer)) { 4917 sctp_timer_stop(SCTP_TIMER_TYPE_PATHMTURAISE, inp, stcb, net, 4918 SCTP_FROM_SCTP_USRREQ + SCTP_LOC_10); 4919 } 4920 net->dest_state |= SCTP_ADDR_NO_PMTUD; 4921 net->mtu = paddrp->spp_pathmtu + ovh; 4922 if (net->mtu < stcb->asoc.smallest_mtu) { 4923 sctp_pathmtu_adjustment(stcb, net->mtu); 4924 } 4925 } 4926 sctp_stcb_feature_on(inp, stcb, SCTP_PCB_FLAGS_DO_NOT_PMTUD); 4927 } 4928 if (paddrp->spp_flags & SPP_PMTUD_ENABLE) { 4929 TAILQ_FOREACH(net, &stcb->asoc.nets, sctp_next) { 4930 if (!SCTP_OS_TIMER_PENDING(&net->pmtu_timer.timer)) { 4931 sctp_timer_start(SCTP_TIMER_TYPE_PATHMTURAISE, inp, stcb, net); 4932 } 4933 net->dest_state &= ~SCTP_ADDR_NO_PMTUD; 4934 } 4935 sctp_stcb_feature_off(inp, stcb, SCTP_PCB_FLAGS_DO_NOT_PMTUD); 4936 } 4937 if (paddrp->spp_flags & SPP_DSCP) { 4938 TAILQ_FOREACH(net, &stcb->asoc.nets, sctp_next) { 4939 net->dscp = paddrp->spp_dscp & 0xfc; 4940 net->dscp |= 0x01; 4941 } 4942 stcb->asoc.default_dscp = paddrp->spp_dscp & 0xfc; 4943 stcb->asoc.default_dscp |= 0x01; 4944 } 4945 #ifdef INET6 4946 if (paddrp->spp_flags & SPP_IPV6_FLOWLABEL) { 4947 TAILQ_FOREACH(net, &stcb->asoc.nets, sctp_next) { 4948 if (net->ro._l_addr.sa.sa_family == AF_INET6) { 4949 net->flowlabel = paddrp->spp_ipv6_flowlabel & 0x000fffff; 4950 net->flowlabel |= 0x80000000; 4951 } 4952 } 4953 stcb->asoc.default_flowlabel = paddrp->spp_ipv6_flowlabel & 0x000fffff; 4954 stcb->asoc.default_flowlabel |= 0x80000000; 4955 } 4956 #endif 4957 } 4958 SCTP_TCB_UNLOCK(stcb); 4959 } else { 4960 /************************NO TCB, SET TO default stuff ******************/ 4961 if ((inp->sctp_flags & SCTP_PCB_FLAGS_TCPTYPE) || 4962 (inp->sctp_flags & SCTP_PCB_FLAGS_IN_TCPPOOL) || 4963 (paddrp->spp_assoc_id == SCTP_FUTURE_ASSOC)) { 4964 SCTP_INP_WLOCK(inp); 4965 /* 4966 * For the TOS/FLOWLABEL stuff you 4967 * set it with the options on the 4968 * socket 4969 */ 4970 if (paddrp->spp_pathmaxrxt) { 4971 inp->sctp_ep.def_net_failure = paddrp->spp_pathmaxrxt; 4972 } 4973 if (paddrp->spp_flags & SPP_HB_TIME_IS_ZERO) 4974 inp->sctp_ep.sctp_timeoutticks[SCTP_TIMER_HEARTBEAT] = 0; 4975 else if (paddrp->spp_hbinterval) { 4976 if (paddrp->spp_hbinterval > SCTP_MAX_HB_INTERVAL) 4977 paddrp->spp_hbinterval = SCTP_MAX_HB_INTERVAL; 4978 inp->sctp_ep.sctp_timeoutticks[SCTP_TIMER_HEARTBEAT] = MSEC_TO_TICKS(paddrp->spp_hbinterval); 4979 } 4980 if (paddrp->spp_flags & SPP_HB_ENABLE) { 4981 if (paddrp->spp_flags & SPP_HB_TIME_IS_ZERO) { 4982 inp->sctp_ep.sctp_timeoutticks[SCTP_TIMER_HEARTBEAT] = 0; 4983 } else if (paddrp->spp_hbinterval) { 4984 inp->sctp_ep.sctp_timeoutticks[SCTP_TIMER_HEARTBEAT] = MSEC_TO_TICKS(paddrp->spp_hbinterval); 4985 } 4986 sctp_feature_off(inp, SCTP_PCB_FLAGS_DONOT_HEARTBEAT); 4987 } else if (paddrp->spp_flags & SPP_HB_DISABLE) { 4988 sctp_feature_on(inp, SCTP_PCB_FLAGS_DONOT_HEARTBEAT); 4989 } 4990 if (paddrp->spp_flags & SPP_PMTUD_ENABLE) { 4991 sctp_feature_off(inp, SCTP_PCB_FLAGS_DO_NOT_PMTUD); 4992 } else if (paddrp->spp_flags & SPP_PMTUD_DISABLE) { 4993 sctp_feature_on(inp, SCTP_PCB_FLAGS_DO_NOT_PMTUD); 4994 } 4995 if (paddrp->spp_flags & SPP_DSCP) { 4996 inp->sctp_ep.default_dscp = paddrp->spp_dscp & 0xfc; 4997 inp->sctp_ep.default_dscp |= 0x01; 4998 } 4999 #ifdef INET6 5000 if (paddrp->spp_flags & SPP_IPV6_FLOWLABEL) { 5001 if (inp->sctp_flags & SCTP_PCB_FLAGS_BOUND_V6) { 5002 inp->sctp_ep.default_flowlabel = paddrp->spp_ipv6_flowlabel & 0x000fffff; 5003 inp->sctp_ep.default_flowlabel |= 0x80000000; 5004 } 5005 } 5006 #endif 5007 SCTP_INP_WUNLOCK(inp); 5008 } else { 5009 SCTP_LTRACE_ERR_RET(inp, NULL, NULL, SCTP_FROM_SCTP_USRREQ, EINVAL); 5010 error = EINVAL; 5011 } 5012 } 5013 break; 5014 } 5015 case SCTP_RTOINFO: 5016 { 5017 struct sctp_rtoinfo *srto; 5018 uint32_t new_init, new_min, new_max; 5019 5020 SCTP_CHECK_AND_CAST(srto, optval, struct sctp_rtoinfo, optsize); 5021 SCTP_FIND_STCB(inp, stcb, srto->srto_assoc_id); 5022 5023 if (stcb) { 5024 if (srto->srto_initial) 5025 new_init = srto->srto_initial; 5026 else 5027 new_init = stcb->asoc.initial_rto; 5028 if (srto->srto_max) 5029 new_max = srto->srto_max; 5030 else 5031 new_max = stcb->asoc.maxrto; 5032 if (srto->srto_min) 5033 new_min = srto->srto_min; 5034 else 5035 new_min = stcb->asoc.minrto; 5036 if ((new_min <= new_init) && (new_init <= new_max)) { 5037 stcb->asoc.initial_rto = new_init; 5038 stcb->asoc.maxrto = new_max; 5039 stcb->asoc.minrto = new_min; 5040 } else { 5041 SCTP_LTRACE_ERR_RET(inp, NULL, NULL, SCTP_FROM_SCTP_USRREQ, EINVAL); 5042 error = EINVAL; 5043 } 5044 SCTP_TCB_UNLOCK(stcb); 5045 } else { 5046 if ((inp->sctp_flags & SCTP_PCB_FLAGS_TCPTYPE) || 5047 (inp->sctp_flags & SCTP_PCB_FLAGS_IN_TCPPOOL) || 5048 (srto->srto_assoc_id == SCTP_FUTURE_ASSOC)) { 5049 SCTP_INP_WLOCK(inp); 5050 if (srto->srto_initial) 5051 new_init = srto->srto_initial; 5052 else 5053 new_init = inp->sctp_ep.initial_rto; 5054 if (srto->srto_max) 5055 new_max = srto->srto_max; 5056 else 5057 new_max = inp->sctp_ep.sctp_maxrto; 5058 if (srto->srto_min) 5059 new_min = srto->srto_min; 5060 else 5061 new_min = inp->sctp_ep.sctp_minrto; 5062 if ((new_min <= new_init) && (new_init <= new_max)) { 5063 inp->sctp_ep.initial_rto = new_init; 5064 inp->sctp_ep.sctp_maxrto = new_max; 5065 inp->sctp_ep.sctp_minrto = new_min; 5066 } else { 5067 SCTP_LTRACE_ERR_RET(inp, NULL, NULL, SCTP_FROM_SCTP_USRREQ, EINVAL); 5068 error = EINVAL; 5069 } 5070 SCTP_INP_WUNLOCK(inp); 5071 } else { 5072 SCTP_LTRACE_ERR_RET(inp, NULL, NULL, SCTP_FROM_SCTP_USRREQ, EINVAL); 5073 error = EINVAL; 5074 } 5075 } 5076 break; 5077 } 5078 case SCTP_ASSOCINFO: 5079 { 5080 struct sctp_assocparams *sasoc; 5081 5082 SCTP_CHECK_AND_CAST(sasoc, optval, struct sctp_assocparams, optsize); 5083 SCTP_FIND_STCB(inp, stcb, sasoc->sasoc_assoc_id); 5084 if (sasoc->sasoc_cookie_life) { 5085 /* boundary check the cookie life */ 5086 if (sasoc->sasoc_cookie_life < 1000) 5087 sasoc->sasoc_cookie_life = 1000; 5088 if (sasoc->sasoc_cookie_life > SCTP_MAX_COOKIE_LIFE) { 5089 sasoc->sasoc_cookie_life = SCTP_MAX_COOKIE_LIFE; 5090 } 5091 } 5092 if (stcb) { 5093 if (sasoc->sasoc_asocmaxrxt) 5094 stcb->asoc.max_send_times = sasoc->sasoc_asocmaxrxt; 5095 if (sasoc->sasoc_cookie_life) { 5096 stcb->asoc.cookie_life = MSEC_TO_TICKS(sasoc->sasoc_cookie_life); 5097 } 5098 SCTP_TCB_UNLOCK(stcb); 5099 } else { 5100 if ((inp->sctp_flags & SCTP_PCB_FLAGS_TCPTYPE) || 5101 (inp->sctp_flags & SCTP_PCB_FLAGS_IN_TCPPOOL) || 5102 (sasoc->sasoc_assoc_id == SCTP_FUTURE_ASSOC)) { 5103 SCTP_INP_WLOCK(inp); 5104 if (sasoc->sasoc_asocmaxrxt) 5105 inp->sctp_ep.max_send_times = sasoc->sasoc_asocmaxrxt; 5106 if (sasoc->sasoc_cookie_life) { 5107 inp->sctp_ep.def_cookie_life = MSEC_TO_TICKS(sasoc->sasoc_cookie_life); 5108 } 5109 SCTP_INP_WUNLOCK(inp); 5110 } else { 5111 SCTP_LTRACE_ERR_RET(inp, NULL, NULL, SCTP_FROM_SCTP_USRREQ, EINVAL); 5112 error = EINVAL; 5113 } 5114 } 5115 break; 5116 } 5117 case SCTP_INITMSG: 5118 { 5119 struct sctp_initmsg *sinit; 5120 5121 SCTP_CHECK_AND_CAST(sinit, optval, struct sctp_initmsg, optsize); 5122 SCTP_INP_WLOCK(inp); 5123 if (sinit->sinit_num_ostreams) 5124 inp->sctp_ep.pre_open_stream_count = sinit->sinit_num_ostreams; 5125 5126 if (sinit->sinit_max_instreams) 5127 inp->sctp_ep.max_open_streams_intome = sinit->sinit_max_instreams; 5128 5129 if (sinit->sinit_max_attempts) 5130 inp->sctp_ep.max_init_times = sinit->sinit_max_attempts; 5131 5132 if (sinit->sinit_max_init_timeo) 5133 inp->sctp_ep.initial_init_rto_max = sinit->sinit_max_init_timeo; 5134 SCTP_INP_WUNLOCK(inp); 5135 break; 5136 } 5137 case SCTP_PRIMARY_ADDR: 5138 { 5139 struct sctp_setprim *spa; 5140 struct sctp_nets *net; 5141 5142 SCTP_CHECK_AND_CAST(spa, optval, struct sctp_setprim, optsize); 5143 SCTP_FIND_STCB(inp, stcb, spa->ssp_assoc_id); 5144 5145 net = NULL; 5146 if (stcb) { 5147 net = sctp_findnet(stcb, (struct sockaddr *)&spa->ssp_addr); 5148 } else { 5149 /* 5150 * We increment here since 5151 * sctp_findassociation_ep_addr() wil do a 5152 * decrement if it finds the stcb as long as 5153 * the locked tcb (last argument) is NOT a 5154 * TCB.. aka NULL. 5155 */ 5156 SCTP_INP_INCR_REF(inp); 5157 stcb = sctp_findassociation_ep_addr(&inp, 5158 (struct sockaddr *)&spa->ssp_addr, 5159 &net, NULL, NULL); 5160 if (stcb == NULL) { 5161 SCTP_INP_DECR_REF(inp); 5162 } 5163 } 5164 5165 if ((stcb) && (net)) { 5166 if ((net != stcb->asoc.primary_destination) && 5167 (!(net->dest_state & SCTP_ADDR_UNCONFIRMED))) { 5168 /* Ok we need to set it */ 5169 if (sctp_set_primary_addr(stcb, (struct sockaddr *)NULL, net) == 0) { 5170 if ((stcb->asoc.alternate) && 5171 (!(net->dest_state & SCTP_ADDR_PF)) && 5172 (net->dest_state & SCTP_ADDR_REACHABLE)) { 5173 sctp_free_remote_addr(stcb->asoc.alternate); 5174 stcb->asoc.alternate = NULL; 5175 } 5176 } 5177 } 5178 } else { 5179 SCTP_LTRACE_ERR_RET(inp, NULL, NULL, SCTP_FROM_SCTP_USRREQ, EINVAL); 5180 error = EINVAL; 5181 } 5182 if (stcb) { 5183 SCTP_TCB_UNLOCK(stcb); 5184 } 5185 break; 5186 } 5187 case SCTP_SET_DYNAMIC_PRIMARY: 5188 { 5189 union sctp_sockstore *ss; 5190 5191 error = priv_check(curthread, 5192 PRIV_NETINET_RESERVEDPORT); 5193 if (error) 5194 break; 5195 5196 SCTP_CHECK_AND_CAST(ss, optval, union sctp_sockstore, optsize); 5197 /* SUPER USER CHECK? */ 5198 error = sctp_dynamic_set_primary(&ss->sa, vrf_id); 5199 break; 5200 } 5201 case SCTP_SET_PEER_PRIMARY_ADDR: 5202 { 5203 struct sctp_setpeerprim *sspp; 5204 5205 SCTP_CHECK_AND_CAST(sspp, optval, struct sctp_setpeerprim, optsize); 5206 SCTP_FIND_STCB(inp, stcb, sspp->sspp_assoc_id); 5207 if (stcb != NULL) { 5208 struct sctp_ifa *ifa; 5209 5210 ifa = sctp_find_ifa_by_addr((struct sockaddr *)&sspp->sspp_addr, 5211 stcb->asoc.vrf_id, SCTP_ADDR_NOT_LOCKED); 5212 if (ifa == NULL) { 5213 SCTP_LTRACE_ERR_RET(inp, NULL, NULL, SCTP_FROM_SCTP_USRREQ, EINVAL); 5214 error = EINVAL; 5215 goto out_of_it; 5216 } 5217 if ((inp->sctp_flags & SCTP_PCB_FLAGS_BOUNDALL) == 0) { 5218 /* 5219 * Must validate the ifa found is in 5220 * our ep 5221 */ 5222 struct sctp_laddr *laddr; 5223 int found = 0; 5224 5225 LIST_FOREACH(laddr, &inp->sctp_addr_list, sctp_nxt_addr) { 5226 if (laddr->ifa == NULL) { 5227 SCTPDBG(SCTP_DEBUG_OUTPUT1, "%s: NULL ifa\n", 5228 __FUNCTION__); 5229 continue; 5230 } 5231 if (laddr->ifa == ifa) { 5232 found = 1; 5233 break; 5234 } 5235 } 5236 if (!found) { 5237 SCTP_LTRACE_ERR_RET(inp, NULL, NULL, SCTP_FROM_SCTP_USRREQ, EINVAL); 5238 error = EINVAL; 5239 goto out_of_it; 5240 } 5241 } 5242 if (sctp_set_primary_ip_address_sa(stcb, 5243 (struct sockaddr *)&sspp->sspp_addr) != 0) { 5244 SCTP_LTRACE_ERR_RET(inp, NULL, NULL, SCTP_FROM_SCTP_USRREQ, EINVAL); 5245 error = EINVAL; 5246 } 5247 out_of_it: 5248 SCTP_TCB_UNLOCK(stcb); 5249 } else { 5250 SCTP_LTRACE_ERR_RET(inp, NULL, NULL, SCTP_FROM_SCTP_USRREQ, EINVAL); 5251 error = EINVAL; 5252 } 5253 break; 5254 } 5255 case SCTP_BINDX_ADD_ADDR: 5256 { 5257 struct sctp_getaddresses *addrs; 5258 struct thread *td; 5259 5260 td = (struct thread *)p; 5261 SCTP_CHECK_AND_CAST(addrs, optval, struct sctp_getaddresses, 5262 optsize); 5263 #ifdef INET 5264 if (addrs->addr->sa_family == AF_INET) { 5265 if (optsize < sizeof(struct sctp_getaddresses) - sizeof(struct sockaddr) + sizeof(struct sockaddr_in)) { 5266 SCTP_LTRACE_ERR_RET(inp, NULL, NULL, SCTP_FROM_SCTP_USRREQ, EINVAL); 5267 error = EINVAL; 5268 break; 5269 } 5270 if (td != NULL && (error = prison_local_ip4(td->td_ucred, &(((struct sockaddr_in *)(addrs->addr))->sin_addr)))) { 5271 SCTP_LTRACE_ERR_RET(inp, stcb, NULL, SCTP_FROM_SCTP_USRREQ, error); 5272 break; 5273 } 5274 } else 5275 #endif 5276 #ifdef INET6 5277 if (addrs->addr->sa_family == AF_INET6) { 5278 if (optsize < sizeof(struct sctp_getaddresses) - sizeof(struct sockaddr) + sizeof(struct sockaddr_in6)) { 5279 SCTP_LTRACE_ERR_RET(inp, NULL, NULL, SCTP_FROM_SCTP_USRREQ, EINVAL); 5280 error = EINVAL; 5281 break; 5282 } 5283 if (td != NULL && (error = prison_local_ip6(td->td_ucred, &(((struct sockaddr_in6 *)(addrs->addr))->sin6_addr), 5284 (SCTP_IPV6_V6ONLY(inp) != 0))) != 0) { 5285 SCTP_LTRACE_ERR_RET(inp, stcb, NULL, SCTP_FROM_SCTP_USRREQ, error); 5286 break; 5287 } 5288 } else 5289 #endif 5290 { 5291 error = EAFNOSUPPORT; 5292 break; 5293 } 5294 sctp_bindx_add_address(so, inp, addrs->addr, 5295 addrs->sget_assoc_id, vrf_id, 5296 &error, p); 5297 break; 5298 } 5299 case SCTP_BINDX_REM_ADDR: 5300 { 5301 struct sctp_getaddresses *addrs; 5302 struct thread *td; 5303 5304 td = (struct thread *)p; 5305 5306 SCTP_CHECK_AND_CAST(addrs, optval, struct sctp_getaddresses, optsize); 5307 #ifdef INET 5308 if (addrs->addr->sa_family == AF_INET) { 5309 if (optsize < sizeof(struct sctp_getaddresses) - sizeof(struct sockaddr) + sizeof(struct sockaddr_in)) { 5310 SCTP_LTRACE_ERR_RET(inp, NULL, NULL, SCTP_FROM_SCTP_USRREQ, EINVAL); 5311 error = EINVAL; 5312 break; 5313 } 5314 if (td != NULL && (error = prison_local_ip4(td->td_ucred, &(((struct sockaddr_in *)(addrs->addr))->sin_addr)))) { 5315 SCTP_LTRACE_ERR_RET(inp, stcb, NULL, SCTP_FROM_SCTP_USRREQ, error); 5316 break; 5317 } 5318 } else 5319 #endif 5320 #ifdef INET6 5321 if (addrs->addr->sa_family == AF_INET6) { 5322 if (optsize < sizeof(struct sctp_getaddresses) - sizeof(struct sockaddr) + sizeof(struct sockaddr_in6)) { 5323 SCTP_LTRACE_ERR_RET(inp, NULL, NULL, SCTP_FROM_SCTP_USRREQ, EINVAL); 5324 error = EINVAL; 5325 break; 5326 } 5327 if (td != NULL && 5328 (error = prison_local_ip6(td->td_ucred, 5329 &(((struct sockaddr_in6 *)(addrs->addr))->sin6_addr), 5330 (SCTP_IPV6_V6ONLY(inp) != 0))) != 0) { 5331 SCTP_LTRACE_ERR_RET(inp, stcb, NULL, SCTP_FROM_SCTP_USRREQ, error); 5332 break; 5333 } 5334 } else 5335 #endif 5336 { 5337 error = EAFNOSUPPORT; 5338 break; 5339 } 5340 sctp_bindx_delete_address(inp, addrs->addr, 5341 addrs->sget_assoc_id, vrf_id, 5342 &error); 5343 break; 5344 } 5345 case SCTP_EVENT: 5346 { 5347 struct sctp_event *event; 5348 uint32_t event_type; 5349 5350 SCTP_CHECK_AND_CAST(event, optval, struct sctp_event, optsize); 5351 SCTP_FIND_STCB(inp, stcb, event->se_assoc_id); 5352 switch (event->se_type) { 5353 case SCTP_ASSOC_CHANGE: 5354 event_type = SCTP_PCB_FLAGS_RECVASSOCEVNT; 5355 break; 5356 case SCTP_PEER_ADDR_CHANGE: 5357 event_type = SCTP_PCB_FLAGS_RECVPADDREVNT; 5358 break; 5359 case SCTP_REMOTE_ERROR: 5360 event_type = SCTP_PCB_FLAGS_RECVPEERERR; 5361 break; 5362 case SCTP_SEND_FAILED: 5363 event_type = SCTP_PCB_FLAGS_RECVSENDFAILEVNT; 5364 break; 5365 case SCTP_SHUTDOWN_EVENT: 5366 event_type = SCTP_PCB_FLAGS_RECVSHUTDOWNEVNT; 5367 break; 5368 case SCTP_ADAPTATION_INDICATION: 5369 event_type = SCTP_PCB_FLAGS_ADAPTATIONEVNT; 5370 break; 5371 case SCTP_PARTIAL_DELIVERY_EVENT: 5372 event_type = SCTP_PCB_FLAGS_PDAPIEVNT; 5373 break; 5374 case SCTP_AUTHENTICATION_EVENT: 5375 event_type = SCTP_PCB_FLAGS_AUTHEVNT; 5376 break; 5377 case SCTP_STREAM_RESET_EVENT: 5378 event_type = SCTP_PCB_FLAGS_STREAM_RESETEVNT; 5379 break; 5380 case SCTP_SENDER_DRY_EVENT: 5381 event_type = SCTP_PCB_FLAGS_DRYEVNT; 5382 break; 5383 case SCTP_NOTIFICATIONS_STOPPED_EVENT: 5384 event_type = 0; 5385 SCTP_LTRACE_ERR_RET(inp, NULL, NULL, SCTP_FROM_SCTP_USRREQ, ENOTSUP); 5386 error = ENOTSUP; 5387 break; 5388 case SCTP_ASSOC_RESET_EVENT: 5389 event_type = SCTP_PCB_FLAGS_ASSOC_RESETEVNT; 5390 break; 5391 case SCTP_STREAM_CHANGE_EVENT: 5392 event_type = SCTP_PCB_FLAGS_STREAM_CHANGEEVNT; 5393 break; 5394 case SCTP_SEND_FAILED_EVENT: 5395 event_type = SCTP_PCB_FLAGS_RECVNSENDFAILEVNT; 5396 break; 5397 default: 5398 event_type = 0; 5399 SCTP_LTRACE_ERR_RET(inp, NULL, NULL, SCTP_FROM_SCTP_USRREQ, EINVAL); 5400 error = EINVAL; 5401 break; 5402 } 5403 if (event_type > 0) { 5404 if (stcb) { 5405 if (event->se_on) { 5406 sctp_stcb_feature_on(inp, stcb, event_type); 5407 if (event_type == SCTP_PCB_FLAGS_DRYEVNT) { 5408 if (TAILQ_EMPTY(&stcb->asoc.send_queue) && 5409 TAILQ_EMPTY(&stcb->asoc.sent_queue) && 5410 (stcb->asoc.stream_queue_cnt == 0)) { 5411 sctp_ulp_notify(SCTP_NOTIFY_SENDER_DRY, stcb, 0, NULL, SCTP_SO_LOCKED); 5412 } 5413 } 5414 } else { 5415 sctp_stcb_feature_off(inp, stcb, event_type); 5416 } 5417 SCTP_TCB_UNLOCK(stcb); 5418 } else { 5419 /* 5420 * We don't want to send up a storm 5421 * of events, so return an error for 5422 * sender dry events 5423 */ 5424 if ((event_type == SCTP_PCB_FLAGS_DRYEVNT) && 5425 ((inp->sctp_flags & SCTP_PCB_FLAGS_TCPTYPE) == 0) && 5426 ((inp->sctp_flags & SCTP_PCB_FLAGS_IN_TCPPOOL) == 0) && 5427 ((event->se_assoc_id == SCTP_ALL_ASSOC) || 5428 (event->se_assoc_id == SCTP_CURRENT_ASSOC))) { 5429 SCTP_LTRACE_ERR_RET(inp, NULL, NULL, SCTP_FROM_SCTP_USRREQ, ENOTSUP); 5430 error = ENOTSUP; 5431 break; 5432 } 5433 if ((inp->sctp_flags & SCTP_PCB_FLAGS_TCPTYPE) || 5434 (inp->sctp_flags & SCTP_PCB_FLAGS_IN_TCPPOOL) || 5435 (event->se_assoc_id == SCTP_FUTURE_ASSOC) || 5436 (event->se_assoc_id == SCTP_ALL_ASSOC)) { 5437 SCTP_INP_WLOCK(inp); 5438 if (event->se_on) { 5439 sctp_feature_on(inp, event_type); 5440 } else { 5441 sctp_feature_off(inp, event_type); 5442 } 5443 SCTP_INP_WUNLOCK(inp); 5444 } 5445 if ((event->se_assoc_id == SCTP_CURRENT_ASSOC) || 5446 (event->se_assoc_id == SCTP_ALL_ASSOC)) { 5447 SCTP_INP_RLOCK(inp); 5448 LIST_FOREACH(stcb, &inp->sctp_asoc_list, sctp_tcblist) { 5449 SCTP_TCB_LOCK(stcb); 5450 if (event->se_on) { 5451 sctp_stcb_feature_on(inp, stcb, event_type); 5452 } else { 5453 sctp_stcb_feature_off(inp, stcb, event_type); 5454 } 5455 SCTP_TCB_UNLOCK(stcb); 5456 } 5457 SCTP_INP_RUNLOCK(inp); 5458 } 5459 } 5460 } 5461 break; 5462 } 5463 case SCTP_RECVRCVINFO: 5464 { 5465 int *onoff; 5466 5467 SCTP_CHECK_AND_CAST(onoff, optval, int, optsize); 5468 SCTP_INP_WLOCK(inp); 5469 if (*onoff != 0) { 5470 sctp_feature_on(inp, SCTP_PCB_FLAGS_RECVRCVINFO); 5471 } else { 5472 sctp_feature_off(inp, SCTP_PCB_FLAGS_RECVRCVINFO); 5473 } 5474 SCTP_INP_WUNLOCK(inp); 5475 break; 5476 } 5477 case SCTP_RECVNXTINFO: 5478 { 5479 int *onoff; 5480 5481 SCTP_CHECK_AND_CAST(onoff, optval, int, optsize); 5482 SCTP_INP_WLOCK(inp); 5483 if (*onoff != 0) { 5484 sctp_feature_on(inp, SCTP_PCB_FLAGS_RECVNXTINFO); 5485 } else { 5486 sctp_feature_off(inp, SCTP_PCB_FLAGS_RECVNXTINFO); 5487 } 5488 SCTP_INP_WUNLOCK(inp); 5489 break; 5490 } 5491 case SCTP_DEFAULT_SNDINFO: 5492 { 5493 struct sctp_sndinfo *info; 5494 uint16_t policy; 5495 5496 SCTP_CHECK_AND_CAST(info, optval, struct sctp_sndinfo, optsize); 5497 SCTP_FIND_STCB(inp, stcb, info->snd_assoc_id); 5498 5499 if (stcb) { 5500 if (info->snd_sid < stcb->asoc.streamoutcnt) { 5501 stcb->asoc.def_send.sinfo_stream = info->snd_sid; 5502 policy = PR_SCTP_POLICY(stcb->asoc.def_send.sinfo_flags); 5503 stcb->asoc.def_send.sinfo_flags = info->snd_flags; 5504 stcb->asoc.def_send.sinfo_flags |= policy; 5505 stcb->asoc.def_send.sinfo_ppid = info->snd_ppid; 5506 stcb->asoc.def_send.sinfo_context = info->snd_context; 5507 } else { 5508 SCTP_LTRACE_ERR_RET(inp, NULL, NULL, SCTP_FROM_SCTP_USRREQ, EINVAL); 5509 error = EINVAL; 5510 } 5511 SCTP_TCB_UNLOCK(stcb); 5512 } else { 5513 if ((inp->sctp_flags & SCTP_PCB_FLAGS_TCPTYPE) || 5514 (inp->sctp_flags & SCTP_PCB_FLAGS_IN_TCPPOOL) || 5515 (info->snd_assoc_id == SCTP_FUTURE_ASSOC) || 5516 (info->snd_assoc_id == SCTP_ALL_ASSOC)) { 5517 SCTP_INP_WLOCK(inp); 5518 inp->def_send.sinfo_stream = info->snd_sid; 5519 policy = PR_SCTP_POLICY(inp->def_send.sinfo_flags); 5520 inp->def_send.sinfo_flags = info->snd_flags; 5521 inp->def_send.sinfo_flags |= policy; 5522 inp->def_send.sinfo_ppid = info->snd_ppid; 5523 inp->def_send.sinfo_context = info->snd_context; 5524 SCTP_INP_WUNLOCK(inp); 5525 } 5526 if ((info->snd_assoc_id == SCTP_CURRENT_ASSOC) || 5527 (info->snd_assoc_id == SCTP_ALL_ASSOC)) { 5528 SCTP_INP_RLOCK(inp); 5529 LIST_FOREACH(stcb, &inp->sctp_asoc_list, sctp_tcblist) { 5530 SCTP_TCB_LOCK(stcb); 5531 if (info->snd_sid < stcb->asoc.streamoutcnt) { 5532 stcb->asoc.def_send.sinfo_stream = info->snd_sid; 5533 policy = PR_SCTP_POLICY(stcb->asoc.def_send.sinfo_flags); 5534 stcb->asoc.def_send.sinfo_flags = info->snd_flags; 5535 stcb->asoc.def_send.sinfo_flags |= policy; 5536 stcb->asoc.def_send.sinfo_ppid = info->snd_ppid; 5537 stcb->asoc.def_send.sinfo_context = info->snd_context; 5538 } 5539 SCTP_TCB_UNLOCK(stcb); 5540 } 5541 SCTP_INP_RUNLOCK(inp); 5542 } 5543 } 5544 break; 5545 } 5546 case SCTP_DEFAULT_PRINFO: 5547 { 5548 struct sctp_default_prinfo *info; 5549 5550 SCTP_CHECK_AND_CAST(info, optval, struct sctp_default_prinfo, optsize); 5551 SCTP_FIND_STCB(inp, stcb, info->pr_assoc_id); 5552 5553 if (PR_SCTP_INVALID_POLICY(info->pr_policy)) { 5554 SCTP_LTRACE_ERR_RET(inp, NULL, NULL, SCTP_FROM_SCTP_USRREQ, EINVAL); 5555 error = EINVAL; 5556 break; 5557 } 5558 if (stcb) { 5559 stcb->asoc.def_send.sinfo_flags &= 0xfff0; 5560 stcb->asoc.def_send.sinfo_flags |= info->pr_policy; 5561 stcb->asoc.def_send.sinfo_timetolive = info->pr_value; 5562 SCTP_TCB_UNLOCK(stcb); 5563 } else { 5564 if ((inp->sctp_flags & SCTP_PCB_FLAGS_TCPTYPE) || 5565 (inp->sctp_flags & SCTP_PCB_FLAGS_IN_TCPPOOL) || 5566 (info->pr_assoc_id == SCTP_FUTURE_ASSOC) || 5567 (info->pr_assoc_id == SCTP_ALL_ASSOC)) { 5568 SCTP_INP_WLOCK(inp); 5569 inp->def_send.sinfo_flags &= 0xfff0; 5570 inp->def_send.sinfo_flags |= info->pr_policy; 5571 inp->def_send.sinfo_timetolive = info->pr_value; 5572 SCTP_INP_WUNLOCK(inp); 5573 } 5574 if ((info->pr_assoc_id == SCTP_CURRENT_ASSOC) || 5575 (info->pr_assoc_id == SCTP_ALL_ASSOC)) { 5576 SCTP_INP_RLOCK(inp); 5577 LIST_FOREACH(stcb, &inp->sctp_asoc_list, sctp_tcblist) { 5578 SCTP_TCB_LOCK(stcb); 5579 stcb->asoc.def_send.sinfo_flags &= 0xfff0; 5580 stcb->asoc.def_send.sinfo_flags |= info->pr_policy; 5581 stcb->asoc.def_send.sinfo_timetolive = info->pr_value; 5582 SCTP_TCB_UNLOCK(stcb); 5583 } 5584 SCTP_INP_RUNLOCK(inp); 5585 } 5586 } 5587 break; 5588 } 5589 case SCTP_PEER_ADDR_THLDS: 5590 /* Applies to the specific association */ 5591 { 5592 struct sctp_paddrthlds *thlds; 5593 struct sctp_nets *net; 5594 5595 SCTP_CHECK_AND_CAST(thlds, optval, struct sctp_paddrthlds, optsize); 5596 SCTP_FIND_STCB(inp, stcb, thlds->spt_assoc_id); 5597 net = NULL; 5598 if (stcb) { 5599 net = sctp_findnet(stcb, (struct sockaddr *)&thlds->spt_assoc_id); 5600 } else { 5601 /* 5602 * We increment here since 5603 * sctp_findassociation_ep_addr() wil do a 5604 * decrement if it finds the stcb as long as 5605 * the locked tcb (last argument) is NOT a 5606 * TCB.. aka NULL. 5607 */ 5608 SCTP_INP_INCR_REF(inp); 5609 stcb = sctp_findassociation_ep_addr(&inp, 5610 (struct sockaddr *)&thlds->spt_assoc_id, 5611 &net, NULL, NULL); 5612 if (stcb == NULL) { 5613 SCTP_INP_DECR_REF(inp); 5614 } 5615 } 5616 if (stcb && (net == NULL)) { 5617 struct sockaddr *sa; 5618 5619 sa = (struct sockaddr *)&thlds->spt_assoc_id; 5620 #ifdef INET 5621 if (sa->sa_family == AF_INET) { 5622 5623 struct sockaddr_in *sin; 5624 5625 sin = (struct sockaddr_in *)sa; 5626 if (sin->sin_addr.s_addr) { 5627 SCTP_LTRACE_ERR_RET(inp, NULL, NULL, SCTP_FROM_SCTP_USRREQ, EINVAL); 5628 SCTP_TCB_UNLOCK(stcb); 5629 error = EINVAL; 5630 break; 5631 } 5632 } else 5633 #endif 5634 #ifdef INET6 5635 if (sa->sa_family == AF_INET6) { 5636 struct sockaddr_in6 *sin6; 5637 5638 sin6 = (struct sockaddr_in6 *)sa; 5639 if (!IN6_IS_ADDR_UNSPECIFIED(&sin6->sin6_addr)) { 5640 SCTP_LTRACE_ERR_RET(inp, NULL, NULL, SCTP_FROM_SCTP_USRREQ, EINVAL); 5641 SCTP_TCB_UNLOCK(stcb); 5642 error = EINVAL; 5643 break; 5644 } 5645 } else 5646 #endif 5647 { 5648 error = EAFNOSUPPORT; 5649 SCTP_TCB_UNLOCK(stcb); 5650 SCTP_LTRACE_ERR_RET(inp, NULL, NULL, SCTP_FROM_SCTP_USRREQ, error); 5651 break; 5652 } 5653 } 5654 if (stcb) { 5655 if (net) { 5656 if (net->dest_state & SCTP_ADDR_PF) { 5657 if ((net->failure_threshold > thlds->spt_pathmaxrxt) || 5658 (net->failure_threshold <= thlds->spt_pathpfthld)) { 5659 net->dest_state &= ~SCTP_ADDR_PF; 5660 } 5661 } else { 5662 if ((net->failure_threshold > thlds->spt_pathpfthld) && 5663 (net->failure_threshold <= thlds->spt_pathmaxrxt)) { 5664 net->dest_state |= SCTP_ADDR_PF; 5665 sctp_send_hb(stcb, net, SCTP_SO_LOCKED); 5666 sctp_timer_stop(SCTP_TIMER_TYPE_HEARTBEAT, stcb->sctp_ep, stcb, net, SCTP_FROM_SCTP_TIMER + SCTP_LOC_3); 5667 sctp_timer_start(SCTP_TIMER_TYPE_HEARTBEAT, stcb->sctp_ep, stcb, net); 5668 } 5669 } 5670 if (net->dest_state & SCTP_ADDR_REACHABLE) { 5671 if (net->failure_threshold > thlds->spt_pathmaxrxt) { 5672 net->dest_state &= ~SCTP_ADDR_REACHABLE; 5673 sctp_ulp_notify(SCTP_NOTIFY_INTERFACE_DOWN, stcb, 0, net, SCTP_SO_LOCKED); 5674 } 5675 } else { 5676 if (net->failure_threshold <= thlds->spt_pathmaxrxt) { 5677 net->dest_state |= SCTP_ADDR_REACHABLE; 5678 sctp_ulp_notify(SCTP_NOTIFY_INTERFACE_UP, stcb, 0, net, SCTP_SO_LOCKED); 5679 } 5680 } 5681 net->failure_threshold = thlds->spt_pathmaxrxt; 5682 net->pf_threshold = thlds->spt_pathpfthld; 5683 } else { 5684 TAILQ_FOREACH(net, &stcb->asoc.nets, sctp_next) { 5685 if (net->dest_state & SCTP_ADDR_PF) { 5686 if ((net->failure_threshold > thlds->spt_pathmaxrxt) || 5687 (net->failure_threshold <= thlds->spt_pathpfthld)) { 5688 net->dest_state &= ~SCTP_ADDR_PF; 5689 } 5690 } else { 5691 if ((net->failure_threshold > thlds->spt_pathpfthld) && 5692 (net->failure_threshold <= thlds->spt_pathmaxrxt)) { 5693 net->dest_state |= SCTP_ADDR_PF; 5694 sctp_send_hb(stcb, net, SCTP_SO_LOCKED); 5695 sctp_timer_stop(SCTP_TIMER_TYPE_HEARTBEAT, stcb->sctp_ep, stcb, net, SCTP_FROM_SCTP_TIMER + SCTP_LOC_3); 5696 sctp_timer_start(SCTP_TIMER_TYPE_HEARTBEAT, stcb->sctp_ep, stcb, net); 5697 } 5698 } 5699 if (net->dest_state & SCTP_ADDR_REACHABLE) { 5700 if (net->failure_threshold > thlds->spt_pathmaxrxt) { 5701 net->dest_state &= ~SCTP_ADDR_REACHABLE; 5702 sctp_ulp_notify(SCTP_NOTIFY_INTERFACE_DOWN, stcb, 0, net, SCTP_SO_LOCKED); 5703 } 5704 } else { 5705 if (net->failure_threshold <= thlds->spt_pathmaxrxt) { 5706 net->dest_state |= SCTP_ADDR_REACHABLE; 5707 sctp_ulp_notify(SCTP_NOTIFY_INTERFACE_UP, stcb, 0, net, SCTP_SO_LOCKED); 5708 } 5709 } 5710 net->failure_threshold = thlds->spt_pathmaxrxt; 5711 net->pf_threshold = thlds->spt_pathpfthld; 5712 } 5713 stcb->asoc.def_net_failure = thlds->spt_pathmaxrxt; 5714 stcb->asoc.def_net_pf_threshold = thlds->spt_pathpfthld; 5715 } 5716 } else { 5717 if ((inp->sctp_flags & SCTP_PCB_FLAGS_TCPTYPE) || 5718 (inp->sctp_flags & SCTP_PCB_FLAGS_IN_TCPPOOL) || 5719 (thlds->spt_assoc_id == SCTP_FUTURE_ASSOC)) { 5720 SCTP_INP_WLOCK(inp); 5721 inp->sctp_ep.def_net_failure = thlds->spt_pathmaxrxt; 5722 inp->sctp_ep.def_net_pf_threshold = thlds->spt_pathpfthld; 5723 SCTP_INP_WUNLOCK(inp); 5724 } else { 5725 SCTP_LTRACE_ERR_RET(inp, NULL, NULL, SCTP_FROM_SCTP_USRREQ, EINVAL); 5726 error = EINVAL; 5727 } 5728 } 5729 break; 5730 } 5731 case SCTP_REMOTE_UDP_ENCAPS_PORT: 5732 { 5733 struct sctp_udpencaps *encaps; 5734 struct sctp_nets *net; 5735 5736 SCTP_CHECK_AND_CAST(encaps, optval, struct sctp_udpencaps, optsize); 5737 SCTP_FIND_STCB(inp, stcb, encaps->sue_assoc_id); 5738 if (stcb) { 5739 net = sctp_findnet(stcb, (struct sockaddr *)&encaps->sue_address); 5740 } else { 5741 /* 5742 * We increment here since 5743 * sctp_findassociation_ep_addr() wil do a 5744 * decrement if it finds the stcb as long as 5745 * the locked tcb (last argument) is NOT a 5746 * TCB.. aka NULL. 5747 */ 5748 net = NULL; 5749 SCTP_INP_INCR_REF(inp); 5750 stcb = sctp_findassociation_ep_addr(&inp, (struct sockaddr *)&encaps->sue_address, &net, NULL, NULL); 5751 if (stcb == NULL) { 5752 SCTP_INP_DECR_REF(inp); 5753 } 5754 } 5755 if (stcb && (net == NULL)) { 5756 struct sockaddr *sa; 5757 5758 sa = (struct sockaddr *)&encaps->sue_address; 5759 #ifdef INET 5760 if (sa->sa_family == AF_INET) { 5761 5762 struct sockaddr_in *sin; 5763 5764 sin = (struct sockaddr_in *)sa; 5765 if (sin->sin_addr.s_addr) { 5766 SCTP_LTRACE_ERR_RET(inp, NULL, NULL, SCTP_FROM_SCTP_USRREQ, EINVAL); 5767 SCTP_TCB_UNLOCK(stcb); 5768 error = EINVAL; 5769 break; 5770 } 5771 } else 5772 #endif 5773 #ifdef INET6 5774 if (sa->sa_family == AF_INET6) { 5775 struct sockaddr_in6 *sin6; 5776 5777 sin6 = (struct sockaddr_in6 *)sa; 5778 if (!IN6_IS_ADDR_UNSPECIFIED(&sin6->sin6_addr)) { 5779 SCTP_LTRACE_ERR_RET(inp, NULL, NULL, SCTP_FROM_SCTP_USRREQ, EINVAL); 5780 SCTP_TCB_UNLOCK(stcb); 5781 error = EINVAL; 5782 break; 5783 } 5784 } else 5785 #endif 5786 { 5787 error = EAFNOSUPPORT; 5788 SCTP_TCB_UNLOCK(stcb); 5789 SCTP_LTRACE_ERR_RET(inp, NULL, NULL, SCTP_FROM_SCTP_USRREQ, error); 5790 break; 5791 } 5792 } 5793 if (stcb) { 5794 if (net) { 5795 net->port = encaps->sue_port; 5796 } else { 5797 stcb->asoc.port = encaps->sue_port; 5798 } 5799 SCTP_TCB_UNLOCK(stcb); 5800 } else { 5801 if ((inp->sctp_flags & SCTP_PCB_FLAGS_TCPTYPE) || 5802 (inp->sctp_flags & SCTP_PCB_FLAGS_IN_TCPPOOL) || 5803 (encaps->sue_assoc_id == SCTP_FUTURE_ASSOC)) { 5804 SCTP_INP_WLOCK(inp); 5805 inp->sctp_ep.port = encaps->sue_port; 5806 SCTP_INP_WUNLOCK(inp); 5807 } else { 5808 SCTP_LTRACE_ERR_RET(inp, NULL, NULL, SCTP_FROM_SCTP_USRREQ, EINVAL); 5809 error = EINVAL; 5810 } 5811 } 5812 break; 5813 } 5814 default: 5815 SCTP_LTRACE_ERR_RET(inp, NULL, NULL, SCTP_FROM_SCTP_USRREQ, ENOPROTOOPT); 5816 error = ENOPROTOOPT; 5817 break; 5818 } /* end switch (opt) */ 5819 return (error); 5820 } 5821 5822 int 5823 sctp_ctloutput(struct socket *so, struct sockopt *sopt) 5824 { 5825 void *optval = NULL; 5826 size_t optsize = 0; 5827 void *p; 5828 int error = 0; 5829 5830 if (sopt->sopt_level != IPPROTO_SCTP) { 5831 /* wrong proto level... send back up to IP */ 5832 #ifdef INET6 5833 if (INP_CHECK_SOCKAF(so, AF_INET6)) 5834 error = ip6_ctloutput(so, sopt); 5835 #endif /* INET6 */ 5836 #if defined(INET) && defined(INET6) 5837 else 5838 #endif 5839 #ifdef INET 5840 error = ip_ctloutput(so, sopt); 5841 #endif 5842 return (error); 5843 } 5844 optsize = sopt->sopt_valsize; 5845 if (optsize) { 5846 SCTP_MALLOC(optval, void *, optsize, SCTP_M_SOCKOPT); 5847 if (optval == NULL) { 5848 SCTP_LTRACE_ERR_RET(so->so_pcb, NULL, NULL, SCTP_FROM_SCTP_USRREQ, ENOBUFS); 5849 return (ENOBUFS); 5850 } 5851 error = sooptcopyin(sopt, optval, optsize, optsize); 5852 if (error) { 5853 SCTP_FREE(optval, SCTP_M_SOCKOPT); 5854 goto out; 5855 } 5856 } 5857 p = (void *)sopt->sopt_td; 5858 if (sopt->sopt_dir == SOPT_SET) { 5859 error = sctp_setopt(so, sopt->sopt_name, optval, optsize, p); 5860 } else if (sopt->sopt_dir == SOPT_GET) { 5861 error = sctp_getopt(so, sopt->sopt_name, optval, &optsize, p); 5862 } else { 5863 SCTP_LTRACE_ERR_RET(so->so_pcb, NULL, NULL, SCTP_FROM_SCTP_USRREQ, EINVAL); 5864 error = EINVAL; 5865 } 5866 if ((error == 0) && (optval != NULL)) { 5867 error = sooptcopyout(sopt, optval, optsize); 5868 SCTP_FREE(optval, SCTP_M_SOCKOPT); 5869 } else if (optval != NULL) { 5870 SCTP_FREE(optval, SCTP_M_SOCKOPT); 5871 } 5872 out: 5873 return (error); 5874 } 5875 5876 #ifdef INET 5877 static int 5878 sctp_connect(struct socket *so, struct sockaddr *addr, struct thread *p) 5879 { 5880 int error = 0; 5881 int create_lock_on = 0; 5882 uint32_t vrf_id; 5883 struct sctp_inpcb *inp; 5884 struct sctp_tcb *stcb = NULL; 5885 5886 inp = (struct sctp_inpcb *)so->so_pcb; 5887 if (inp == NULL) { 5888 /* I made the same as TCP since we are not setup? */ 5889 SCTP_LTRACE_ERR_RET(inp, NULL, NULL, SCTP_FROM_SCTP_USRREQ, EINVAL); 5890 return (ECONNRESET); 5891 } 5892 if (addr == NULL) { 5893 SCTP_LTRACE_ERR_RET(inp, NULL, NULL, SCTP_FROM_SCTP_USRREQ, EINVAL); 5894 return EINVAL; 5895 } 5896 switch (addr->sa_family) { 5897 #ifdef INET6 5898 case AF_INET6: 5899 { 5900 struct sockaddr_in6 *sin6p; 5901 5902 if (addr->sa_len != sizeof(struct sockaddr_in6)) { 5903 SCTP_LTRACE_ERR_RET(inp, NULL, NULL, SCTP_FROM_SCTP_USRREQ, EINVAL); 5904 return (EINVAL); 5905 } 5906 sin6p = (struct sockaddr_in6 *)addr; 5907 if (p != NULL && (error = prison_remote_ip6(p->td_ucred, &sin6p->sin6_addr)) != 0) { 5908 SCTP_LTRACE_ERR_RET(inp, NULL, NULL, SCTP_FROM_SCTP_USRREQ, error); 5909 return (error); 5910 } 5911 break; 5912 } 5913 #endif 5914 #ifdef INET 5915 case AF_INET: 5916 { 5917 struct sockaddr_in *sinp; 5918 5919 if (addr->sa_len != sizeof(struct sockaddr_in)) { 5920 SCTP_LTRACE_ERR_RET(inp, NULL, NULL, SCTP_FROM_SCTP_USRREQ, EINVAL); 5921 return (EINVAL); 5922 } 5923 sinp = (struct sockaddr_in *)addr; 5924 if (p != NULL && (error = prison_remote_ip4(p->td_ucred, &sinp->sin_addr)) != 0) { 5925 SCTP_LTRACE_ERR_RET(inp, NULL, NULL, SCTP_FROM_SCTP_USRREQ, error); 5926 return (error); 5927 } 5928 break; 5929 } 5930 #endif 5931 default: 5932 SCTP_LTRACE_ERR_RET(inp, NULL, NULL, SCTP_FROM_SCTP_USRREQ, EAFNOSUPPORT); 5933 return (EAFNOSUPPORT); 5934 } 5935 SCTP_INP_INCR_REF(inp); 5936 SCTP_ASOC_CREATE_LOCK(inp); 5937 create_lock_on = 1; 5938 5939 5940 if ((inp->sctp_flags & SCTP_PCB_FLAGS_SOCKET_ALLGONE) || 5941 (inp->sctp_flags & SCTP_PCB_FLAGS_SOCKET_GONE)) { 5942 /* Should I really unlock ? */ 5943 SCTP_LTRACE_ERR_RET(inp, NULL, NULL, SCTP_FROM_SCTP_USRREQ, EFAULT); 5944 error = EFAULT; 5945 goto out_now; 5946 } 5947 #ifdef INET6 5948 if (((inp->sctp_flags & SCTP_PCB_FLAGS_BOUND_V6) == 0) && 5949 (addr->sa_family == AF_INET6)) { 5950 SCTP_LTRACE_ERR_RET(inp, NULL, NULL, SCTP_FROM_SCTP_USRREQ, EINVAL); 5951 error = EINVAL; 5952 goto out_now; 5953 } 5954 #endif 5955 if ((inp->sctp_flags & SCTP_PCB_FLAGS_UNBOUND) == 5956 SCTP_PCB_FLAGS_UNBOUND) { 5957 /* Bind a ephemeral port */ 5958 error = sctp_inpcb_bind(so, NULL, NULL, p); 5959 if (error) { 5960 goto out_now; 5961 } 5962 } 5963 /* Now do we connect? */ 5964 if ((inp->sctp_flags & SCTP_PCB_FLAGS_IN_TCPPOOL) && 5965 (sctp_is_feature_off(inp, SCTP_PCB_FLAGS_PORTREUSE))) { 5966 SCTP_LTRACE_ERR_RET(inp, NULL, NULL, SCTP_FROM_SCTP_USRREQ, EINVAL); 5967 error = EINVAL; 5968 goto out_now; 5969 } 5970 if ((inp->sctp_flags & SCTP_PCB_FLAGS_TCPTYPE) && 5971 (inp->sctp_flags & SCTP_PCB_FLAGS_CONNECTED)) { 5972 /* We are already connected AND the TCP model */ 5973 SCTP_LTRACE_ERR_RET(inp, stcb, NULL, SCTP_FROM_SCTP_USRREQ, EADDRINUSE); 5974 error = EADDRINUSE; 5975 goto out_now; 5976 } 5977 if (inp->sctp_flags & SCTP_PCB_FLAGS_CONNECTED) { 5978 SCTP_INP_RLOCK(inp); 5979 stcb = LIST_FIRST(&inp->sctp_asoc_list); 5980 SCTP_INP_RUNLOCK(inp); 5981 } else { 5982 /* 5983 * We increment here since sctp_findassociation_ep_addr() 5984 * will do a decrement if it finds the stcb as long as the 5985 * locked tcb (last argument) is NOT a TCB.. aka NULL. 5986 */ 5987 SCTP_INP_INCR_REF(inp); 5988 stcb = sctp_findassociation_ep_addr(&inp, addr, NULL, NULL, NULL); 5989 if (stcb == NULL) { 5990 SCTP_INP_DECR_REF(inp); 5991 } else { 5992 SCTP_TCB_UNLOCK(stcb); 5993 } 5994 } 5995 if (stcb != NULL) { 5996 /* Already have or am bring up an association */ 5997 SCTP_LTRACE_ERR_RET(inp, NULL, NULL, SCTP_FROM_SCTP_USRREQ, EALREADY); 5998 error = EALREADY; 5999 goto out_now; 6000 } 6001 vrf_id = inp->def_vrf_id; 6002 /* We are GOOD to go */ 6003 stcb = sctp_aloc_assoc(inp, addr, &error, 0, vrf_id, p); 6004 if (stcb == NULL) { 6005 /* Gak! no memory */ 6006 goto out_now; 6007 } 6008 if (stcb->sctp_ep->sctp_flags & SCTP_PCB_FLAGS_TCPTYPE) { 6009 stcb->sctp_ep->sctp_flags |= SCTP_PCB_FLAGS_CONNECTED; 6010 /* Set the connected flag so we can queue data */ 6011 soisconnecting(so); 6012 } 6013 SCTP_SET_STATE(&stcb->asoc, SCTP_STATE_COOKIE_WAIT); 6014 (void)SCTP_GETTIME_TIMEVAL(&stcb->asoc.time_entered); 6015 6016 /* initialize authentication parameters for the assoc */ 6017 sctp_initialize_auth_params(inp, stcb); 6018 6019 sctp_send_initiate(inp, stcb, SCTP_SO_LOCKED); 6020 SCTP_TCB_UNLOCK(stcb); 6021 out_now: 6022 if (create_lock_on) { 6023 SCTP_ASOC_CREATE_UNLOCK(inp); 6024 } 6025 SCTP_INP_DECR_REF(inp); 6026 return (error); 6027 } 6028 6029 #endif 6030 6031 int 6032 sctp_listen(struct socket *so, int backlog, struct thread *p) 6033 { 6034 /* 6035 * Note this module depends on the protocol processing being called 6036 * AFTER any socket level flags and backlog are applied to the 6037 * socket. The traditional way that the socket flags are applied is 6038 * AFTER protocol processing. We have made a change to the 6039 * sys/kern/uipc_socket.c module to reverse this but this MUST be in 6040 * place if the socket API for SCTP is to work properly. 6041 */ 6042 6043 int error = 0; 6044 struct sctp_inpcb *inp; 6045 6046 inp = (struct sctp_inpcb *)so->so_pcb; 6047 if (inp == NULL) { 6048 /* I made the same as TCP since we are not setup? */ 6049 SCTP_LTRACE_ERR_RET(inp, NULL, NULL, SCTP_FROM_SCTP_USRREQ, EINVAL); 6050 return (ECONNRESET); 6051 } 6052 if (sctp_is_feature_on(inp, SCTP_PCB_FLAGS_PORTREUSE)) { 6053 /* See if we have a listener */ 6054 struct sctp_inpcb *tinp; 6055 union sctp_sockstore store, *sp; 6056 6057 sp = &store; 6058 if ((inp->sctp_flags & SCTP_PCB_FLAGS_BOUNDALL) == 0) { 6059 /* not bound all */ 6060 struct sctp_laddr *laddr; 6061 6062 LIST_FOREACH(laddr, &inp->sctp_addr_list, sctp_nxt_addr) { 6063 memcpy(&store, &laddr->ifa->address, sizeof(store)); 6064 switch (sp->sa.sa_family) { 6065 #ifdef INET 6066 case AF_INET: 6067 sp->sin.sin_port = inp->sctp_lport; 6068 break; 6069 #endif 6070 #ifdef INET6 6071 case AF_INET6: 6072 sp->sin6.sin6_port = inp->sctp_lport; 6073 break; 6074 #endif 6075 default: 6076 break; 6077 } 6078 tinp = sctp_pcb_findep(&sp->sa, 0, 0, inp->def_vrf_id); 6079 if (tinp && (tinp != inp) && 6080 ((tinp->sctp_flags & SCTP_PCB_FLAGS_SOCKET_ALLGONE) == 0) && 6081 ((tinp->sctp_flags & SCTP_PCB_FLAGS_SOCKET_GONE) == 0) && 6082 (tinp->sctp_socket->so_qlimit)) { 6083 /* 6084 * we have a listener already and 6085 * its not this inp. 6086 */ 6087 SCTP_INP_DECR_REF(tinp); 6088 return (EADDRINUSE); 6089 } else if (tinp) { 6090 SCTP_INP_DECR_REF(tinp); 6091 } 6092 } 6093 } else { 6094 /* Setup a local addr bound all */ 6095 memset(&store, 0, sizeof(store)); 6096 switch (sp->sa.sa_family) { 6097 #ifdef INET 6098 case AF_INET: 6099 store.sin.sin_port = inp->sctp_lport; 6100 break; 6101 #endif 6102 #ifdef INET6 6103 case AF_INET6: 6104 sp->sin6.sin6_port = inp->sctp_lport; 6105 break; 6106 #endif 6107 default: 6108 break; 6109 } 6110 #ifdef INET6 6111 if (inp->sctp_flags & SCTP_PCB_FLAGS_BOUND_V6) { 6112 store.sa.sa_family = AF_INET6; 6113 store.sa.sa_len = sizeof(struct sockaddr_in6); 6114 } 6115 #endif 6116 #ifdef INET 6117 if ((inp->sctp_flags & SCTP_PCB_FLAGS_BOUND_V6) == 0) { 6118 store.sa.sa_family = AF_INET; 6119 store.sa.sa_len = sizeof(struct sockaddr_in); 6120 } 6121 #endif 6122 tinp = sctp_pcb_findep(&sp->sa, 0, 0, inp->def_vrf_id); 6123 if (tinp && (tinp != inp) && 6124 ((tinp->sctp_flags & SCTP_PCB_FLAGS_SOCKET_ALLGONE) == 0) && 6125 ((tinp->sctp_flags & SCTP_PCB_FLAGS_SOCKET_GONE) == 0) && 6126 (tinp->sctp_socket->so_qlimit)) { 6127 /* 6128 * we have a listener already and its not 6129 * this inp. 6130 */ 6131 SCTP_INP_DECR_REF(tinp); 6132 return (EADDRINUSE); 6133 } else if (tinp) { 6134 SCTP_INP_DECR_REF(inp); 6135 } 6136 } 6137 } 6138 SCTP_INP_RLOCK(inp); 6139 #ifdef SCTP_LOCK_LOGGING 6140 if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_LOCK_LOGGING_ENABLE) { 6141 sctp_log_lock(inp, (struct sctp_tcb *)NULL, SCTP_LOG_LOCK_SOCK); 6142 } 6143 #endif 6144 SOCK_LOCK(so); 6145 error = solisten_proto_check(so); 6146 if (error) { 6147 SOCK_UNLOCK(so); 6148 SCTP_INP_RUNLOCK(inp); 6149 return (error); 6150 } 6151 if ((sctp_is_feature_on(inp, SCTP_PCB_FLAGS_PORTREUSE)) && 6152 (inp->sctp_flags & SCTP_PCB_FLAGS_IN_TCPPOOL)) { 6153 /* 6154 * The unlucky case - We are in the tcp pool with this guy. 6155 * - Someone else is in the main inp slot. - We must move 6156 * this guy (the listener) to the main slot - We must then 6157 * move the guy that was listener to the TCP Pool. 6158 */ 6159 if (sctp_swap_inpcb_for_listen(inp)) { 6160 goto in_use; 6161 } 6162 } 6163 if ((inp->sctp_flags & SCTP_PCB_FLAGS_TCPTYPE) && 6164 (inp->sctp_flags & SCTP_PCB_FLAGS_CONNECTED)) { 6165 /* We are already connected AND the TCP model */ 6166 in_use: 6167 SCTP_INP_RUNLOCK(inp); 6168 SOCK_UNLOCK(so); 6169 SCTP_LTRACE_ERR_RET(inp, NULL, NULL, SCTP_FROM_SCTP_USRREQ, EADDRINUSE); 6170 return (EADDRINUSE); 6171 } 6172 SCTP_INP_RUNLOCK(inp); 6173 if (inp->sctp_flags & SCTP_PCB_FLAGS_UNBOUND) { 6174 /* We must do a bind. */ 6175 SOCK_UNLOCK(so); 6176 if ((error = sctp_inpcb_bind(so, NULL, NULL, p))) { 6177 /* bind error, probably perm */ 6178 return (error); 6179 } 6180 SOCK_LOCK(so); 6181 } 6182 /* It appears for 7.0 and on, we must always call this. */ 6183 solisten_proto(so, backlog); 6184 if (inp->sctp_flags & SCTP_PCB_FLAGS_UDPTYPE) { 6185 /* remove the ACCEPTCONN flag for one-to-many sockets */ 6186 so->so_options &= ~SO_ACCEPTCONN; 6187 } 6188 if (backlog == 0) { 6189 /* turning off listen */ 6190 so->so_options &= ~SO_ACCEPTCONN; 6191 } 6192 SOCK_UNLOCK(so); 6193 return (error); 6194 } 6195 6196 static int sctp_defered_wakeup_cnt = 0; 6197 6198 int 6199 sctp_accept(struct socket *so, struct sockaddr **addr) 6200 { 6201 struct sctp_tcb *stcb; 6202 struct sctp_inpcb *inp; 6203 union sctp_sockstore store; 6204 6205 #ifdef INET6 6206 int error; 6207 6208 #endif 6209 inp = (struct sctp_inpcb *)so->so_pcb; 6210 6211 if (inp == NULL) { 6212 SCTP_LTRACE_ERR_RET(inp, NULL, NULL, SCTP_FROM_SCTP_USRREQ, EINVAL); 6213 return (ECONNRESET); 6214 } 6215 SCTP_INP_RLOCK(inp); 6216 if (inp->sctp_flags & SCTP_PCB_FLAGS_UDPTYPE) { 6217 SCTP_INP_RUNLOCK(inp); 6218 SCTP_LTRACE_ERR_RET(inp, NULL, NULL, SCTP_FROM_SCTP_USRREQ, EOPNOTSUPP); 6219 return (EOPNOTSUPP); 6220 } 6221 if (so->so_state & SS_ISDISCONNECTED) { 6222 SCTP_INP_RUNLOCK(inp); 6223 SCTP_LTRACE_ERR_RET(inp, NULL, NULL, SCTP_FROM_SCTP_USRREQ, ECONNABORTED); 6224 return (ECONNABORTED); 6225 } 6226 stcb = LIST_FIRST(&inp->sctp_asoc_list); 6227 if (stcb == NULL) { 6228 SCTP_INP_RUNLOCK(inp); 6229 SCTP_LTRACE_ERR_RET(inp, NULL, NULL, SCTP_FROM_SCTP_USRREQ, EINVAL); 6230 return (ECONNRESET); 6231 } 6232 SCTP_TCB_LOCK(stcb); 6233 SCTP_INP_RUNLOCK(inp); 6234 store = stcb->asoc.primary_destination->ro._l_addr; 6235 stcb->asoc.state &= ~SCTP_STATE_IN_ACCEPT_QUEUE; 6236 SCTP_TCB_UNLOCK(stcb); 6237 switch (store.sa.sa_family) { 6238 #ifdef INET 6239 case AF_INET: 6240 { 6241 struct sockaddr_in *sin; 6242 6243 SCTP_MALLOC_SONAME(sin, struct sockaddr_in *, sizeof *sin); 6244 if (sin == NULL) 6245 return (ENOMEM); 6246 sin->sin_family = AF_INET; 6247 sin->sin_len = sizeof(*sin); 6248 sin->sin_port = store.sin.sin_port; 6249 sin->sin_addr = store.sin.sin_addr; 6250 *addr = (struct sockaddr *)sin; 6251 break; 6252 } 6253 #endif 6254 #ifdef INET6 6255 case AF_INET6: 6256 { 6257 struct sockaddr_in6 *sin6; 6258 6259 SCTP_MALLOC_SONAME(sin6, struct sockaddr_in6 *, sizeof *sin6); 6260 if (sin6 == NULL) 6261 return (ENOMEM); 6262 sin6->sin6_family = AF_INET6; 6263 sin6->sin6_len = sizeof(*sin6); 6264 sin6->sin6_port = store.sin6.sin6_port; 6265 sin6->sin6_addr = store.sin6.sin6_addr; 6266 if ((error = sa6_recoverscope(sin6)) != 0) { 6267 SCTP_FREE_SONAME(sin6); 6268 return (error); 6269 } 6270 *addr = (struct sockaddr *)sin6; 6271 break; 6272 } 6273 #endif 6274 default: 6275 /* TSNH */ 6276 break; 6277 } 6278 /* Wake any delayed sleep action */ 6279 if (inp->sctp_flags & SCTP_PCB_FLAGS_DONT_WAKE) { 6280 SCTP_INP_WLOCK(inp); 6281 inp->sctp_flags &= ~SCTP_PCB_FLAGS_DONT_WAKE; 6282 if (inp->sctp_flags & SCTP_PCB_FLAGS_WAKEOUTPUT) { 6283 inp->sctp_flags &= ~SCTP_PCB_FLAGS_WAKEOUTPUT; 6284 SCTP_INP_WUNLOCK(inp); 6285 SOCKBUF_LOCK(&inp->sctp_socket->so_snd); 6286 if (sowriteable(inp->sctp_socket)) { 6287 sowwakeup_locked(inp->sctp_socket); 6288 } else { 6289 SOCKBUF_UNLOCK(&inp->sctp_socket->so_snd); 6290 } 6291 SCTP_INP_WLOCK(inp); 6292 } 6293 if (inp->sctp_flags & SCTP_PCB_FLAGS_WAKEINPUT) { 6294 inp->sctp_flags &= ~SCTP_PCB_FLAGS_WAKEINPUT; 6295 SCTP_INP_WUNLOCK(inp); 6296 SOCKBUF_LOCK(&inp->sctp_socket->so_rcv); 6297 if (soreadable(inp->sctp_socket)) { 6298 sctp_defered_wakeup_cnt++; 6299 sorwakeup_locked(inp->sctp_socket); 6300 } else { 6301 SOCKBUF_UNLOCK(&inp->sctp_socket->so_rcv); 6302 } 6303 SCTP_INP_WLOCK(inp); 6304 } 6305 SCTP_INP_WUNLOCK(inp); 6306 } 6307 if (stcb->asoc.state & SCTP_STATE_ABOUT_TO_BE_FREED) { 6308 SCTP_TCB_LOCK(stcb); 6309 sctp_free_assoc(inp, stcb, SCTP_NORMAL_PROC, SCTP_FROM_SCTP_USRREQ + SCTP_LOC_7); 6310 } 6311 return (0); 6312 } 6313 6314 #ifdef INET 6315 int 6316 sctp_ingetaddr(struct socket *so, struct sockaddr **addr) 6317 { 6318 struct sockaddr_in *sin; 6319 uint32_t vrf_id; 6320 struct sctp_inpcb *inp; 6321 struct sctp_ifa *sctp_ifa; 6322 6323 /* 6324 * Do the malloc first in case it blocks. 6325 */ 6326 SCTP_MALLOC_SONAME(sin, struct sockaddr_in *, sizeof *sin); 6327 if (sin == NULL) 6328 return (ENOMEM); 6329 sin->sin_family = AF_INET; 6330 sin->sin_len = sizeof(*sin); 6331 inp = (struct sctp_inpcb *)so->so_pcb; 6332 if (!inp) { 6333 SCTP_FREE_SONAME(sin); 6334 SCTP_LTRACE_ERR_RET(inp, NULL, NULL, SCTP_FROM_SCTP_USRREQ, EINVAL); 6335 return (ECONNRESET); 6336 } 6337 SCTP_INP_RLOCK(inp); 6338 sin->sin_port = inp->sctp_lport; 6339 if (inp->sctp_flags & SCTP_PCB_FLAGS_BOUNDALL) { 6340 if (inp->sctp_flags & SCTP_PCB_FLAGS_CONNECTED) { 6341 struct sctp_tcb *stcb; 6342 struct sockaddr_in *sin_a; 6343 struct sctp_nets *net; 6344 int fnd; 6345 6346 stcb = LIST_FIRST(&inp->sctp_asoc_list); 6347 if (stcb == NULL) { 6348 goto notConn; 6349 } 6350 fnd = 0; 6351 sin_a = NULL; 6352 SCTP_TCB_LOCK(stcb); 6353 TAILQ_FOREACH(net, &stcb->asoc.nets, sctp_next) { 6354 sin_a = (struct sockaddr_in *)&net->ro._l_addr; 6355 if (sin_a == NULL) 6356 /* this will make coverity happy */ 6357 continue; 6358 6359 if (sin_a->sin_family == AF_INET) { 6360 fnd = 1; 6361 break; 6362 } 6363 } 6364 if ((!fnd) || (sin_a == NULL)) { 6365 /* punt */ 6366 SCTP_TCB_UNLOCK(stcb); 6367 goto notConn; 6368 } 6369 vrf_id = inp->def_vrf_id; 6370 sctp_ifa = sctp_source_address_selection(inp, 6371 stcb, 6372 (sctp_route_t *) & net->ro, 6373 net, 0, vrf_id); 6374 if (sctp_ifa) { 6375 sin->sin_addr = sctp_ifa->address.sin.sin_addr; 6376 sctp_free_ifa(sctp_ifa); 6377 } 6378 SCTP_TCB_UNLOCK(stcb); 6379 } else { 6380 /* For the bound all case you get back 0 */ 6381 notConn: 6382 sin->sin_addr.s_addr = 0; 6383 } 6384 6385 } else { 6386 /* Take the first IPv4 address in the list */ 6387 struct sctp_laddr *laddr; 6388 int fnd = 0; 6389 6390 LIST_FOREACH(laddr, &inp->sctp_addr_list, sctp_nxt_addr) { 6391 if (laddr->ifa->address.sa.sa_family == AF_INET) { 6392 struct sockaddr_in *sin_a; 6393 6394 sin_a = (struct sockaddr_in *)&laddr->ifa->address.sa; 6395 sin->sin_addr = sin_a->sin_addr; 6396 fnd = 1; 6397 break; 6398 } 6399 } 6400 if (!fnd) { 6401 SCTP_FREE_SONAME(sin); 6402 SCTP_INP_RUNLOCK(inp); 6403 SCTP_LTRACE_ERR_RET(inp, NULL, NULL, SCTP_FROM_SCTP_USRREQ, ENOENT); 6404 return (ENOENT); 6405 } 6406 } 6407 SCTP_INP_RUNLOCK(inp); 6408 (*addr) = (struct sockaddr *)sin; 6409 return (0); 6410 } 6411 6412 int 6413 sctp_peeraddr(struct socket *so, struct sockaddr **addr) 6414 { 6415 struct sockaddr_in *sin; 6416 int fnd; 6417 struct sockaddr_in *sin_a; 6418 struct sctp_inpcb *inp; 6419 struct sctp_tcb *stcb; 6420 struct sctp_nets *net; 6421 6422 /* Do the malloc first in case it blocks. */ 6423 SCTP_MALLOC_SONAME(sin, struct sockaddr_in *, sizeof *sin); 6424 if (sin == NULL) 6425 return (ENOMEM); 6426 sin->sin_family = AF_INET; 6427 sin->sin_len = sizeof(*sin); 6428 6429 inp = (struct sctp_inpcb *)so->so_pcb; 6430 if ((inp == NULL) || 6431 ((inp->sctp_flags & SCTP_PCB_FLAGS_CONNECTED) == 0)) { 6432 /* UDP type and listeners will drop out here */ 6433 SCTP_FREE_SONAME(sin); 6434 SCTP_LTRACE_ERR_RET(inp, NULL, NULL, SCTP_FROM_SCTP_USRREQ, ENOTCONN); 6435 return (ENOTCONN); 6436 } 6437 SCTP_INP_RLOCK(inp); 6438 stcb = LIST_FIRST(&inp->sctp_asoc_list); 6439 if (stcb) { 6440 SCTP_TCB_LOCK(stcb); 6441 } 6442 SCTP_INP_RUNLOCK(inp); 6443 if (stcb == NULL) { 6444 SCTP_FREE_SONAME(sin); 6445 SCTP_LTRACE_ERR_RET(inp, NULL, NULL, SCTP_FROM_SCTP_USRREQ, EINVAL); 6446 return (ECONNRESET); 6447 } 6448 fnd = 0; 6449 TAILQ_FOREACH(net, &stcb->asoc.nets, sctp_next) { 6450 sin_a = (struct sockaddr_in *)&net->ro._l_addr; 6451 if (sin_a->sin_family == AF_INET) { 6452 fnd = 1; 6453 sin->sin_port = stcb->rport; 6454 sin->sin_addr = sin_a->sin_addr; 6455 break; 6456 } 6457 } 6458 SCTP_TCB_UNLOCK(stcb); 6459 if (!fnd) { 6460 /* No IPv4 address */ 6461 SCTP_FREE_SONAME(sin); 6462 SCTP_LTRACE_ERR_RET(inp, NULL, NULL, SCTP_FROM_SCTP_USRREQ, ENOENT); 6463 return (ENOENT); 6464 } 6465 (*addr) = (struct sockaddr *)sin; 6466 return (0); 6467 } 6468 6469 struct pr_usrreqs sctp_usrreqs = { 6470 .pru_abort = sctp_abort, 6471 .pru_accept = sctp_accept, 6472 .pru_attach = sctp_attach, 6473 .pru_bind = sctp_bind, 6474 .pru_connect = sctp_connect, 6475 .pru_control = in_control, 6476 .pru_close = sctp_close, 6477 .pru_detach = sctp_close, 6478 .pru_sopoll = sopoll_generic, 6479 .pru_flush = sctp_flush, 6480 .pru_disconnect = sctp_disconnect, 6481 .pru_listen = sctp_listen, 6482 .pru_peeraddr = sctp_peeraddr, 6483 .pru_send = sctp_sendm, 6484 .pru_shutdown = sctp_shutdown, 6485 .pru_sockaddr = sctp_ingetaddr, 6486 .pru_sosend = sctp_sosend, 6487 .pru_soreceive = sctp_soreceive 6488 }; 6489 6490 #endif 6491