1 /* 2 * CDDL HEADER START 3 * 4 * The contents of this file are subject to the terms of the 5 * Common Development and Distribution License (the "License"). 6 * You may not use this file except in compliance with the License. 7 * 8 * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE 9 * or http://www.opensolaris.org/os/licensing. 10 * See the License for the specific language governing permissions 11 * and limitations under the License. 12 * 13 * When distributing Covered Code, include this CDDL HEADER in each 14 * file and include the License file at usr/src/OPENSOLARIS.LICENSE. 15 * If applicable, add the following below this CDDL HEADER, with the 16 * fields enclosed by brackets "[]" replaced with your own identifying 17 * information: Portions Copyright [yyyy] [name of copyright owner] 18 * 19 * CDDL HEADER END 20 */ 21 22 /* 23 * Copyright 2009 Sun Microsystems, Inc. All rights reserved. 24 * Use is subject to license terms. 25 */ 26 27 #pragma ident "@(#)sockcommon_sops.c 1.1 07/06/14 SMI" 28 29 #include <sys/types.h> 30 #include <sys/param.h> 31 #include <sys/systm.h> 32 #include <sys/sysmacros.h> 33 #include <sys/debug.h> 34 #include <sys/cmn_err.h> 35 36 #include <sys/stropts.h> 37 #include <sys/socket.h> 38 #include <sys/socketvar.h> 39 40 #define _SUN_TPI_VERSION 2 41 #include <sys/tihdr.h> 42 #include <sys/sockio.h> 43 #include <sys/sodirect.h> 44 #include <sys/kmem_impl.h> 45 46 #include <sys/strsubr.h> 47 #include <sys/strsun.h> 48 #include <sys/ddi.h> 49 #include <netinet/in.h> 50 #include <inet/ip.h> 51 52 #include <fs/sockfs/sockcommon.h> 53 54 #include <sys/socket_proto.h> 55 56 #include <fs/sockfs/socktpi_impl.h> 57 #include <sys/tihdr.h> 58 #include <fs/sockfs/nl7c.h> 59 #include <inet/kssl/ksslapi.h> 60 61 62 extern int xnet_skip_checks; 63 extern int xnet_check_print; 64 65 static void so_queue_oob(sock_upper_handle_t, mblk_t *, size_t); 66 67 68 /*ARGSUSED*/ 69 int 70 so_accept_notsupp(struct sonode *lso, int fflag, 71 struct cred *cr, struct sonode **nsop) 72 { 73 return (EOPNOTSUPP); 74 } 75 76 /*ARGSUSED*/ 77 int 78 so_listen_notsupp(struct sonode *so, int backlog, struct cred *cr) 79 { 80 return (EOPNOTSUPP); 81 } 82 83 /*ARGSUSED*/ 84 int 85 so_getsockname_notsupp(struct sonode *so, struct sockaddr *sa, 86 socklen_t *len, struct cred *cr) 87 { 88 return (EOPNOTSUPP); 89 } 90 91 /*ARGSUSED*/ 92 int 93 so_getpeername_notsupp(struct sonode *so, struct sockaddr *addr, 94 socklen_t *addrlen, boolean_t accept, struct cred *cr) 95 { 96 return (EOPNOTSUPP); 97 } 98 99 /*ARGSUSED*/ 100 int 101 so_shutdown_notsupp(struct sonode *so, int how, struct cred *cr) 102 { 103 return (EOPNOTSUPP); 104 } 105 106 /*ARGSUSED*/ 107 int 108 so_sendmblk_notsupp(struct sonode *so, struct msghdr *msg, int fflag, 109 struct cred *cr, mblk_t **mpp) 110 { 111 return (EOPNOTSUPP); 112 } 113 114 /* 115 * Generic Socket Ops 116 */ 117 118 /* ARGSUSED */ 119 int 120 so_init(struct sonode *so, struct sonode *pso, struct cred *cr, int flags) 121 { 122 return (socket_init_common(so, pso, flags, cr)); 123 } 124 125 int 126 so_bind(struct sonode *so, struct sockaddr *name, socklen_t namelen, 127 int flags, struct cred *cr) 128 { 129 int error; 130 131 SO_BLOCK_FALLBACK(so, SOP_BIND(so, name, namelen, flags, cr)); 132 133 ASSERT(flags == _SOBIND_XPG4_2 || flags == _SOBIND_SOCKBSD); 134 135 /* X/Open requires this check */ 136 if ((so->so_state & SS_CANTSENDMORE) && !xnet_skip_checks) { 137 if (xnet_check_print) { 138 printf("sockfs: X/Open bind state check " 139 "caused EINVAL\n"); 140 } 141 error = EINVAL; 142 goto done; 143 } 144 145 /* 146 * a bind to a NULL address is interpreted as unbind. So just 147 * do the downcall. 148 */ 149 if (name == NULL) 150 goto dobind; 151 152 switch (so->so_family) { 153 case AF_INET: 154 if ((size_t)namelen != sizeof (sin_t)) { 155 error = name->sa_family != so->so_family ? 156 EAFNOSUPPORT : EINVAL; 157 eprintsoline(so, error); 158 goto done; 159 } 160 161 if ((flags & _SOBIND_XPG4_2) && 162 (name->sa_family != so->so_family)) { 163 /* 164 * This check has to be made for X/Open 165 * sockets however application failures have 166 * been observed when it is applied to 167 * all sockets. 168 */ 169 error = EAFNOSUPPORT; 170 eprintsoline(so, error); 171 goto done; 172 } 173 /* 174 * Force a zero sa_family to match so_family. 175 * 176 * Some programs like inetd(1M) don't set the 177 * family field. Other programs leave 178 * sin_family set to garbage - SunOS 4.X does 179 * not check the family field on a bind. 180 * We use the family field that 181 * was passed in to the socket() call. 182 */ 183 name->sa_family = so->so_family; 184 break; 185 186 case AF_INET6: { 187 #ifdef DEBUG 188 sin6_t *sin6 = (sin6_t *)name; 189 #endif 190 if ((size_t)namelen != sizeof (sin6_t)) { 191 error = name->sa_family != so->so_family ? 192 EAFNOSUPPORT : EINVAL; 193 eprintsoline(so, error); 194 goto done; 195 } 196 197 if (name->sa_family != so->so_family) { 198 /* 199 * With IPv6 we require the family to match 200 * unlike in IPv4. 201 */ 202 error = EAFNOSUPPORT; 203 eprintsoline(so, error); 204 goto done; 205 } 206 #ifdef DEBUG 207 /* 208 * Verify that apps don't forget to clear 209 * sin6_scope_id etc 210 */ 211 if (sin6->sin6_scope_id != 0 && 212 !IN6_IS_ADDR_LINKSCOPE(&sin6->sin6_addr)) { 213 zcmn_err(getzoneid(), CE_WARN, 214 "bind with uninitialized sin6_scope_id " 215 "(%d) on socket. Pid = %d\n", 216 (int)sin6->sin6_scope_id, 217 (int)curproc->p_pid); 218 } 219 if (sin6->__sin6_src_id != 0) { 220 zcmn_err(getzoneid(), CE_WARN, 221 "bind with uninitialized __sin6_src_id " 222 "(%d) on socket. Pid = %d\n", 223 (int)sin6->__sin6_src_id, 224 (int)curproc->p_pid); 225 } 226 #endif /* DEBUG */ 227 228 break; 229 } 230 default: 231 /* Just pass the request to the protocol */ 232 goto dobind; 233 } 234 235 /* 236 * First we check if either NCA or KSSL has been enabled for 237 * the requested address, and if so, we fall back to TPI. 238 * If neither of those two services are enabled, then we just 239 * pass the request to the protocol. 240 * 241 * Note that KSSL can only be enabled on a socket if NCA is NOT 242 * enabled for that socket, hence the else-statement below. 243 */ 244 if (nl7c_enabled && ((so->so_family == AF_INET || 245 so->so_family == AF_INET6) && 246 nl7c_lookup_addr(name, namelen) != NULL)) { 247 /* 248 * NL7C is not supported in non-global zones, 249 * we enforce this restriction here. 250 */ 251 if (so->so_zoneid == GLOBAL_ZONEID) { 252 /* NCA should be used, so fall back to TPI */ 253 error = so_tpi_fallback(so, cr); 254 SO_UNBLOCK_FALLBACK(so); 255 if (error) 256 return (error); 257 else 258 return (SOP_BIND(so, name, namelen, flags, cr)); 259 } 260 } else if (so->so_type == SOCK_STREAM) { 261 /* Check if KSSL has been configured for this address */ 262 kssl_ent_t ent; 263 kssl_endpt_type_t type; 264 struct T_bind_req bind_req; 265 mblk_t *mp; 266 267 /* 268 * TODO: Check with KSSL team if we could add a function call 269 * that only queries whether KSSL is enabled for the given 270 * address. 271 */ 272 bind_req.PRIM_type = T_BIND_REQ; 273 bind_req.ADDR_length = namelen; 274 bind_req.ADDR_offset = (t_scalar_t)sizeof (bind_req); 275 mp = soallocproto2(&bind_req, sizeof (bind_req), 276 name, namelen, 0, _ALLOC_SLEEP); 277 278 type = kssl_check_proxy(mp, so, &ent); 279 freemsg(mp); 280 281 if (type != KSSL_NO_PROXY) { 282 /* 283 * KSSL has been configured for this address, so 284 * we must fall back to TPI. 285 */ 286 kssl_release_ent(ent, so, type); 287 error = so_tpi_fallback(so, cr); 288 SO_UNBLOCK_FALLBACK(so); 289 if (error) 290 return (error); 291 else 292 return (SOP_BIND(so, name, namelen, flags, cr)); 293 } 294 } 295 296 dobind: 297 error = (*so->so_downcalls->sd_bind) 298 (so->so_proto_handle, name, namelen, cr); 299 done: 300 SO_UNBLOCK_FALLBACK(so); 301 302 return (error); 303 } 304 305 int 306 so_listen(struct sonode *so, int backlog, struct cred *cr) 307 { 308 int error = 0; 309 310 ASSERT(MUTEX_NOT_HELD(&so->so_lock)); 311 SO_BLOCK_FALLBACK(so, SOP_LISTEN(so, backlog, cr)); 312 313 error = (*so->so_downcalls->sd_listen)(so->so_proto_handle, backlog, 314 cr); 315 316 SO_UNBLOCK_FALLBACK(so); 317 318 return (error); 319 } 320 321 322 int 323 so_connect(struct sonode *so, const struct sockaddr *name, 324 socklen_t namelen, int fflag, int flags, struct cred *cr) 325 { 326 int error = 0; 327 sock_connid_t id; 328 329 ASSERT(MUTEX_NOT_HELD(&so->so_lock)); 330 SO_BLOCK_FALLBACK(so, SOP_CONNECT(so, name, namelen, fflag, flags, cr)); 331 332 /* 333 * If there is a pending error, return error 334 * This can happen if a non blocking operation caused an error. 335 */ 336 337 if (so->so_error != 0) { 338 mutex_enter(&so->so_lock); 339 error = sogeterr(so, B_TRUE); 340 mutex_exit(&so->so_lock); 341 if (error != 0) 342 goto done; 343 } 344 345 error = (*so->so_downcalls->sd_connect)(so->so_proto_handle, 346 name, namelen, &id, cr); 347 348 if (error == EINPROGRESS) 349 error = so_wait_connected(so, fflag & (FNONBLOCK|FNDELAY), id); 350 351 done: 352 SO_UNBLOCK_FALLBACK(so); 353 return (error); 354 } 355 356 /*ARGSUSED*/ 357 int 358 so_accept(struct sonode *so, int fflag, struct cred *cr, struct sonode **nsop) 359 { 360 int error = 0; 361 struct sonode *nso; 362 363 *nsop = NULL; 364 365 SO_BLOCK_FALLBACK(so, SOP_ACCEPT(so, fflag, cr, nsop)); 366 if ((so->so_state & SS_ACCEPTCONN) == 0) { 367 SO_UNBLOCK_FALLBACK(so); 368 return ((so->so_type == SOCK_DGRAM || so->so_type == SOCK_RAW) ? 369 EOPNOTSUPP : EINVAL); 370 } 371 372 if ((error = so_acceptq_dequeue(so, (fflag & (FNONBLOCK|FNDELAY)), 373 &nso)) == 0) { 374 ASSERT(nso != NULL); 375 376 /* finish the accept */ 377 error = (*so->so_downcalls->sd_accept)(so->so_proto_handle, 378 nso->so_proto_handle, (sock_upper_handle_t)nso, cr); 379 if (error != 0) { 380 (void) socket_close(nso, 0, cr); 381 socket_destroy(nso); 382 } else { 383 *nsop = nso; 384 } 385 } 386 387 SO_UNBLOCK_FALLBACK(so); 388 return (error); 389 } 390 391 int 392 so_sendmsg(struct sonode *so, struct nmsghdr *msg, struct uio *uiop, 393 struct cred *cr) 394 { 395 int error, flags; 396 boolean_t dontblock; 397 ssize_t orig_resid; 398 mblk_t *mp; 399 400 SO_BLOCK_FALLBACK(so, SOP_SENDMSG(so, msg, uiop, cr)); 401 402 flags = msg->msg_flags; 403 error = 0; 404 dontblock = (flags & MSG_DONTWAIT) || 405 (uiop->uio_fmode & (FNONBLOCK|FNDELAY)); 406 407 if (!(flags & MSG_XPG4_2) && msg->msg_controllen != 0) { 408 /* 409 * Old way of passing fd's is not supported 410 */ 411 SO_UNBLOCK_FALLBACK(so); 412 return (EOPNOTSUPP); 413 } 414 415 if ((so->so_mode & SM_ATOMIC) && 416 uiop->uio_resid > so->so_proto_props.sopp_maxpsz && 417 so->so_proto_props.sopp_maxpsz != -1) { 418 SO_UNBLOCK_FALLBACK(so); 419 return (EMSGSIZE); 420 } 421 422 /* 423 * For atomic sends we will only do one iteration. 424 */ 425 do { 426 if (so->so_state & SS_CANTSENDMORE) { 427 error = EPIPE; 428 break; 429 } 430 431 if (so->so_error != 0) { 432 mutex_enter(&so->so_lock); 433 error = sogeterr(so, B_TRUE); 434 mutex_exit(&so->so_lock); 435 if (error != 0) 436 break; 437 } 438 439 /* 440 * Send down OOB messages even if the send path is being 441 * flow controlled (assuming the protocol supports OOB data). 442 */ 443 if (flags & MSG_OOB) { 444 if ((so->so_mode & SM_EXDATA) == 0) { 445 error = EOPNOTSUPP; 446 break; 447 } 448 } else if (so->so_snd_qfull) { 449 /* 450 * Need to wait until the protocol is ready to receive 451 * more data for transmission. 452 */ 453 if ((error = so_snd_wait_qnotfull(so, dontblock)) != 0) 454 break; 455 } 456 457 /* 458 * Time to send data to the protocol. We either copy the 459 * data into mblks or pass the uio directly to the protocol. 460 * We decide what to do based on the available down calls. 461 */ 462 if (so->so_downcalls->sd_send_uio != NULL) { 463 error = (*so->so_downcalls->sd_send_uio) 464 (so->so_proto_handle, uiop, msg, cr); 465 if (error != 0) 466 break; 467 } else { 468 /* save the resid in case of failure */ 469 orig_resid = uiop->uio_resid; 470 471 if ((mp = socopyinuio(uiop, 472 so->so_proto_props.sopp_maxpsz, 473 so->so_proto_props.sopp_wroff, 474 so->so_proto_props.sopp_maxblk, 475 so->so_proto_props.sopp_tail, &error)) == NULL) { 476 break; 477 } 478 ASSERT(uiop->uio_resid >= 0); 479 480 error = (*so->so_downcalls->sd_send) 481 (so->so_proto_handle, mp, msg, cr); 482 if (error != 0) { 483 /* 484 * The send failed. We do not have to free the 485 * mblks, because that is the protocol's 486 * responsibility. However, uio_resid must 487 * remain accurate, so adjust that here. 488 */ 489 uiop->uio_resid = orig_resid; 490 break; 491 } 492 } 493 } while (uiop->uio_resid > 0); 494 495 SO_UNBLOCK_FALLBACK(so); 496 497 return (error); 498 } 499 500 int 501 so_sendmblk(struct sonode *so, struct nmsghdr *msg, int fflag, 502 struct cred *cr, mblk_t **mpp) 503 { 504 int error; 505 boolean_t dontblock; 506 size_t size; 507 mblk_t *mp = *mpp; 508 509 SO_BLOCK_FALLBACK(so, SOP_SENDMBLK(so, msg, fflag, cr, mpp)); 510 511 error = 0; 512 dontblock = (msg->msg_flags & MSG_DONTWAIT) || 513 (fflag & (FNONBLOCK|FNDELAY)); 514 size = msgdsize(mp); 515 516 if ((so->so_mode & SM_SENDFILESUPP) == 0 || 517 so->so_downcalls->sd_send == NULL) { 518 SO_UNBLOCK_FALLBACK(so); 519 return (EOPNOTSUPP); 520 } 521 522 if ((so->so_mode & SM_ATOMIC) && 523 size > so->so_proto_props.sopp_maxpsz && 524 so->so_proto_props.sopp_maxpsz != -1) { 525 SO_UNBLOCK_FALLBACK(so); 526 return (EMSGSIZE); 527 } 528 529 while (mp != NULL) { 530 mblk_t *nmp, *last_mblk; 531 size_t mlen; 532 533 if (so->so_state & SS_CANTSENDMORE) { 534 error = EPIPE; 535 break; 536 } 537 if (so->so_error != 0) { 538 mutex_enter(&so->so_lock); 539 error = sogeterr(so, B_TRUE); 540 mutex_exit(&so->so_lock); 541 if (error != 0) 542 break; 543 } 544 if (so->so_snd_qfull) { 545 /* 546 * Need to wait until the protocol is ready to receive 547 * more data for transmission. 548 */ 549 if ((error = so_snd_wait_qnotfull(so, dontblock)) != 0) 550 break; 551 } 552 553 /* 554 * We only allow so_maxpsz of data to be sent down to 555 * the protocol at time. 556 */ 557 mlen = MBLKL(mp); 558 nmp = mp->b_cont; 559 last_mblk = mp; 560 while (nmp != NULL) { 561 mlen += MBLKL(nmp); 562 if (mlen > so->so_proto_props.sopp_maxpsz) { 563 last_mblk->b_cont = NULL; 564 break; 565 } 566 last_mblk = nmp; 567 nmp = nmp->b_cont; 568 } 569 570 error = (*so->so_downcalls->sd_send) 571 (so->so_proto_handle, mp, msg, cr); 572 if (error != 0) { 573 /* 574 * The send failed. The protocol will free the mblks 575 * that were sent down. Let the caller deal with the 576 * rest. 577 */ 578 *mpp = nmp; 579 break; 580 } 581 582 *mpp = mp = nmp; 583 } 584 585 SO_UNBLOCK_FALLBACK(so); 586 587 return (error); 588 } 589 590 int 591 so_shutdown(struct sonode *so, int how, struct cred *cr) 592 { 593 int error; 594 595 SO_BLOCK_FALLBACK(so, SOP_SHUTDOWN(so, how, cr)); 596 597 /* 598 * SunOS 4.X has no check for datagram sockets. 599 * 5.X checks that it is connected (ENOTCONN) 600 * X/Open requires that we check the connected state. 601 */ 602 if (!(so->so_state & SS_ISCONNECTED)) { 603 if (!xnet_skip_checks) { 604 error = ENOTCONN; 605 if (xnet_check_print) { 606 printf("sockfs: X/Open shutdown check " 607 "caused ENOTCONN\n"); 608 } 609 } 610 goto done; 611 } 612 613 error = ((*so->so_downcalls->sd_shutdown)(so->so_proto_handle, 614 how, cr)); 615 616 /* 617 * Protocol agreed to shutdown. We need to flush the 618 * receive buffer if the receive side is being shutdown. 619 */ 620 if (error == 0 && how != SHUT_WR) { 621 mutex_enter(&so->so_lock); 622 /* wait for active reader to finish */ 623 (void) so_lock_read(so, 0); 624 625 so_rcv_flush(so); 626 627 so_unlock_read(so); 628 mutex_exit(&so->so_lock); 629 } 630 631 done: 632 SO_UNBLOCK_FALLBACK(so); 633 return (error); 634 } 635 636 int 637 so_getsockname(struct sonode *so, struct sockaddr *addr, 638 socklen_t *addrlen, struct cred *cr) 639 { 640 int error; 641 642 SO_BLOCK_FALLBACK(so, SOP_GETSOCKNAME(so, addr, addrlen, cr)); 643 644 error = (*so->so_downcalls->sd_getsockname) 645 (so->so_proto_handle, addr, addrlen, cr); 646 647 SO_UNBLOCK_FALLBACK(so); 648 return (error); 649 } 650 651 int 652 so_getpeername(struct sonode *so, struct sockaddr *addr, 653 socklen_t *addrlen, boolean_t accept, struct cred *cr) 654 { 655 int error; 656 657 SO_BLOCK_FALLBACK(so, SOP_GETPEERNAME(so, addr, addrlen, accept, cr)); 658 659 if (accept) { 660 error = (*so->so_downcalls->sd_getpeername) 661 (so->so_proto_handle, addr, addrlen, cr); 662 } else if (!(so->so_state & SS_ISCONNECTED)) { 663 error = ENOTCONN; 664 } else if ((so->so_state & SS_CANTSENDMORE) && !xnet_skip_checks) { 665 /* Added this check for X/Open */ 666 error = EINVAL; 667 if (xnet_check_print) { 668 printf("sockfs: X/Open getpeername check => EINVAL\n"); 669 } 670 } else { 671 error = (*so->so_downcalls->sd_getpeername) 672 (so->so_proto_handle, addr, addrlen, cr); 673 } 674 675 SO_UNBLOCK_FALLBACK(so); 676 return (error); 677 } 678 679 int 680 so_getsockopt(struct sonode *so, int level, int option_name, 681 void *optval, socklen_t *optlenp, int flags, struct cred *cr) 682 { 683 int error = 0; 684 685 ASSERT(MUTEX_NOT_HELD(&so->so_lock)); 686 SO_BLOCK_FALLBACK(so, 687 SOP_GETSOCKOPT(so, level, option_name, optval, optlenp, flags, cr)); 688 689 error = socket_getopt_common(so, level, option_name, optval, optlenp, 690 flags); 691 if (error < 0) { 692 error = (*so->so_downcalls->sd_getsockopt) 693 (so->so_proto_handle, level, option_name, optval, optlenp, 694 cr); 695 if (error == ENOPROTOOPT) { 696 if (level == SOL_SOCKET) { 697 /* 698 * If a protocol does not support a particular 699 * socket option, set can fail (not allowed) 700 * but get can not fail. This is the previous 701 * sockfs bahvior. 702 */ 703 switch (option_name) { 704 case SO_LINGER: 705 if (*optlenp < (t_uscalar_t) 706 sizeof (struct linger)) { 707 error = EINVAL; 708 break; 709 } 710 error = 0; 711 bzero(optval, sizeof (struct linger)); 712 *optlenp = sizeof (struct linger); 713 break; 714 case SO_RCVTIMEO: 715 case SO_SNDTIMEO: 716 if (*optlenp < (t_uscalar_t) 717 sizeof (struct timeval)) { 718 error = EINVAL; 719 break; 720 } 721 error = 0; 722 bzero(optval, sizeof (struct timeval)); 723 *optlenp = sizeof (struct timeval); 724 break; 725 case SO_SND_BUFINFO: 726 if (*optlenp < (t_uscalar_t) 727 sizeof (struct so_snd_bufinfo)) { 728 error = EINVAL; 729 break; 730 } 731 error = 0; 732 bzero(optval, 733 sizeof (struct so_snd_bufinfo)); 734 *optlenp = 735 sizeof (struct so_snd_bufinfo); 736 break; 737 case SO_DEBUG: 738 case SO_REUSEADDR: 739 case SO_KEEPALIVE: 740 case SO_DONTROUTE: 741 case SO_BROADCAST: 742 case SO_USELOOPBACK: 743 case SO_OOBINLINE: 744 case SO_DGRAM_ERRIND: 745 case SO_SNDBUF: 746 case SO_RCVBUF: 747 error = 0; 748 *((int32_t *)optval) = 0; 749 *optlenp = sizeof (int32_t); 750 break; 751 default: 752 break; 753 } 754 } 755 } 756 } 757 758 SO_UNBLOCK_FALLBACK(so); 759 return (error); 760 } 761 762 int 763 so_setsockopt(struct sonode *so, int level, int option_name, 764 const void *optval, socklen_t optlen, struct cred *cr) 765 { 766 int error = 0; 767 768 SO_BLOCK_FALLBACK(so, 769 SOP_SETSOCKOPT(so, level, option_name, optval, optlen, cr)); 770 771 /* X/Open requires this check */ 772 if (so->so_state & SS_CANTSENDMORE && !xnet_skip_checks) { 773 SO_UNBLOCK_FALLBACK(so); 774 if (xnet_check_print) 775 printf("sockfs: X/Open setsockopt check => EINVAL\n"); 776 return (EINVAL); 777 } 778 779 if (level == SOL_SOCKET) { 780 switch (option_name) { 781 case SO_RCVTIMEO: 782 case SO_SNDTIMEO: { 783 struct timeval tl; 784 clock_t t_usec; 785 786 if (get_udatamodel() == DATAMODEL_NONE || 787 get_udatamodel() == DATAMODEL_NATIVE) { 788 if (optlen != sizeof (struct timeval)) { 789 error = EINVAL; 790 goto done; 791 } 792 bcopy((struct timeval *)optval, &tl, 793 sizeof (struct timeval)); 794 } else { 795 if (optlen != sizeof (struct timeval32)) { 796 error = EINVAL; 797 goto done; 798 } 799 TIMEVAL32_TO_TIMEVAL(&tl, 800 (struct timeval32 *)optval); 801 } 802 t_usec = tl.tv_sec * 1000 * 1000 + tl.tv_usec; 803 mutex_enter(&so->so_lock); 804 if (option_name == SO_RCVTIMEO) 805 so->so_rcvtimeo = drv_usectohz(t_usec); 806 else 807 so->so_sndtimeo = drv_usectohz(t_usec); 808 mutex_exit(&so->so_lock); 809 SO_UNBLOCK_FALLBACK(so); 810 return (0); 811 } 812 case SO_RCVBUF: 813 /* 814 * XXX XPG 4.2 applications retrieve SO_RCVBUF from 815 * sockfs since the transport might adjust the value 816 * and not return exactly what was set by the 817 * application. 818 */ 819 so->so_xpg_rcvbuf = *(int32_t *)optval; 820 break; 821 } 822 } 823 error = (*so->so_downcalls->sd_setsockopt) 824 (so->so_proto_handle, level, option_name, optval, optlen, cr); 825 done: 826 SO_UNBLOCK_FALLBACK(so); 827 return (error); 828 } 829 830 int 831 so_ioctl(struct sonode *so, int cmd, intptr_t arg, int mode, 832 struct cred *cr, int32_t *rvalp) 833 { 834 int error = 0; 835 836 SO_BLOCK_FALLBACK(so, SOP_IOCTL(so, cmd, arg, mode, cr, rvalp)); 837 838 /* 839 * If there is a pending error, return error 840 * This can happen if a non blocking operation caused an error. 841 */ 842 if (so->so_error != 0) { 843 mutex_enter(&so->so_lock); 844 error = sogeterr(so, B_TRUE); 845 mutex_exit(&so->so_lock); 846 if (error != 0) 847 goto done; 848 } 849 850 /* 851 * calling strioc can result in the socket falling back to TPI, 852 * if that is supported. 853 */ 854 if ((error = socket_ioctl_common(so, cmd, arg, mode, cr, rvalp)) < 0 && 855 (error = socket_strioc_common(so, cmd, arg, mode, cr, rvalp)) < 0) { 856 error = (*so->so_downcalls->sd_ioctl)(so->so_proto_handle, 857 cmd, arg, mode, rvalp, cr); 858 } 859 860 done: 861 SO_UNBLOCK_FALLBACK(so); 862 863 return (error); 864 } 865 866 int 867 so_poll(struct sonode *so, short events, int anyyet, short *reventsp, 868 struct pollhead **phpp) 869 { 870 int state = so->so_state; 871 *reventsp = 0; 872 873 if (so->so_error != 0 && 874 ((POLLIN|POLLRDNORM|POLLOUT) & events) != 0) { 875 *reventsp = (POLLIN|POLLRDNORM|POLLOUT) & events; 876 return (0); 877 } 878 879 /* 880 * As long as there is buffer to send data, and the socket is 881 * in a state where it can send data (i.e., connected for 882 * connection oriented protocols), then turn on POLLOUT events 883 */ 884 if (!so->so_snd_qfull && ((so->so_mode & SM_CONNREQUIRED) == 0 || 885 state & SS_ISCONNECTED)) { 886 *reventsp |= POLLOUT & events; 887 } 888 889 /* 890 * Turn on POLLIN whenever there is data on the receive queue, 891 * or the socket is in a state where no more data will be received. 892 * Also, if the socket is accepting connections, flip the bit if 893 * there is something on the queue. 894 * 895 * We do an initial check for events without holding locks. However, 896 * if there are no event available, then we redo the check for POLLIN 897 * events under the lock. 898 */ 899 900 /* Pending connections */ 901 if (so->so_acceptq_len > 0) 902 *reventsp |= (POLLIN|POLLRDNORM) & events; 903 904 /* Data */ 905 /* so_downcalls is null for sctp */ 906 if (so->so_downcalls != NULL && so->so_downcalls->sd_poll != NULL) { 907 *reventsp |= (*so->so_downcalls->sd_poll) 908 (so->so_proto_handle, events & SO_PROTO_POLLEV, anyyet, 909 CRED()) & events; 910 ASSERT((*reventsp & ~events) == 0); 911 /* do not recheck events */ 912 events &= ~SO_PROTO_POLLEV; 913 } else { 914 if (SO_HAVE_DATA(so)) 915 *reventsp |= (POLLIN|POLLRDNORM) & events; 916 917 /* Urgent data */ 918 if ((state & SS_OOBPEND) != 0) 919 *reventsp |= (POLLRDBAND) & events; 920 } 921 922 if (!*reventsp && !anyyet) { 923 /* Check for read events again, but this time under lock */ 924 if (events & (POLLIN|POLLRDNORM)) { 925 mutex_enter(&so->so_lock); 926 if (SO_HAVE_DATA(so) || so->so_acceptq_len > 0) { 927 mutex_exit(&so->so_lock); 928 *reventsp |= (POLLIN|POLLRDNORM) & events; 929 return (0); 930 } else { 931 so->so_pollev |= SO_POLLEV_IN; 932 mutex_exit(&so->so_lock); 933 } 934 } 935 *phpp = &so->so_poll_list; 936 } 937 return (0); 938 } 939 940 /* 941 * Generic Upcalls 942 */ 943 void 944 so_connected(sock_upper_handle_t sock_handle, sock_connid_t id, 945 cred_t *peer_cred, pid_t peer_cpid) 946 { 947 struct sonode *so = (struct sonode *)sock_handle; 948 949 mutex_enter(&so->so_lock); 950 ASSERT(so->so_proto_handle != NULL); 951 952 if (peer_cred != NULL) { 953 if (so->so_peercred != NULL) 954 crfree(so->so_peercred); 955 crhold(peer_cred); 956 so->so_peercred = peer_cred; 957 so->so_cpid = peer_cpid; 958 } 959 960 so->so_proto_connid = id; 961 soisconnected(so); 962 /* 963 * Wake ones who're waiting for conn to become established. 964 */ 965 so_notify_connected(so); 966 } 967 968 int 969 so_disconnected(sock_upper_handle_t sock_handle, sock_connid_t id, int error) 970 { 971 struct sonode *so = (struct sonode *)sock_handle; 972 973 mutex_enter(&so->so_lock); 974 975 so->so_proto_connid = id; 976 soisdisconnected(so, error); 977 so_notify_disconnected(so, error); 978 979 return (0); 980 } 981 982 void 983 so_opctl(sock_upper_handle_t sock_handle, sock_opctl_action_t action, 984 uintptr_t arg) 985 { 986 struct sonode *so = (struct sonode *)sock_handle; 987 988 switch (action) { 989 case SOCK_OPCTL_SHUT_SEND: 990 mutex_enter(&so->so_lock); 991 socantsendmore(so); 992 so_notify_disconnecting(so); 993 break; 994 case SOCK_OPCTL_SHUT_RECV: { 995 mutex_enter(&so->so_lock); 996 socantrcvmore(so); 997 so_notify_eof(so); 998 break; 999 } 1000 case SOCK_OPCTL_ENAB_ACCEPT: 1001 mutex_enter(&so->so_lock); 1002 so->so_state |= SS_ACCEPTCONN; 1003 so->so_backlog = (unsigned int)arg; 1004 mutex_exit(&so->so_lock); 1005 break; 1006 default: 1007 ASSERT(0); 1008 break; 1009 } 1010 } 1011 1012 void 1013 so_txq_full(sock_upper_handle_t sock_handle, boolean_t qfull) 1014 { 1015 struct sonode *so = (struct sonode *)sock_handle; 1016 1017 if (qfull) { 1018 so_snd_qfull(so); 1019 } else { 1020 so_snd_qnotfull(so); 1021 mutex_enter(&so->so_lock); 1022 so_notify_writable(so); 1023 } 1024 } 1025 1026 sock_upper_handle_t 1027 so_newconn(sock_upper_handle_t parenthandle, 1028 sock_lower_handle_t proto_handle, sock_downcalls_t *sock_downcalls, 1029 struct cred *peer_cred, pid_t peer_cpid, sock_upcalls_t **sock_upcallsp) 1030 { 1031 struct sonode *so = (struct sonode *)parenthandle; 1032 struct sonode *nso; 1033 int error; 1034 1035 ASSERT(proto_handle != NULL); 1036 1037 if ((so->so_state & SS_ACCEPTCONN) == 0 || 1038 so->so_acceptq_len >= so->so_backlog) 1039 return (NULL); 1040 1041 nso = socket_newconn(so, proto_handle, sock_downcalls, SOCKET_NOSLEEP, 1042 &error); 1043 if (nso == NULL) 1044 return (NULL); 1045 1046 if (peer_cred != NULL) { 1047 crhold(peer_cred); 1048 nso->so_peercred = peer_cred; 1049 nso->so_cpid = peer_cpid; 1050 } 1051 1052 (void) so_acceptq_enqueue(so, nso); 1053 mutex_enter(&so->so_lock); 1054 so_notify_newconn(so); 1055 1056 *sock_upcallsp = &so_upcalls; 1057 1058 return ((sock_upper_handle_t)nso); 1059 } 1060 1061 void 1062 so_set_prop(sock_upper_handle_t sock_handle, struct sock_proto_props *soppp) 1063 { 1064 struct sonode *so; 1065 1066 so = (struct sonode *)sock_handle; 1067 1068 mutex_enter(&so->so_lock); 1069 1070 if (soppp->sopp_flags & SOCKOPT_MAXBLK) 1071 so->so_proto_props.sopp_maxblk = soppp->sopp_maxblk; 1072 if (soppp->sopp_flags & SOCKOPT_WROFF) 1073 so->so_proto_props.sopp_wroff = soppp->sopp_wroff; 1074 if (soppp->sopp_flags & SOCKOPT_TAIL) 1075 so->so_proto_props.sopp_tail = soppp->sopp_tail; 1076 if (soppp->sopp_flags & SOCKOPT_RCVHIWAT) 1077 so->so_proto_props.sopp_rxhiwat = soppp->sopp_rxhiwat; 1078 if (soppp->sopp_flags & SOCKOPT_RCVLOWAT) 1079 so->so_proto_props.sopp_rxlowat = soppp->sopp_rxlowat; 1080 if (soppp->sopp_flags & SOCKOPT_MAXPSZ) 1081 so->so_proto_props.sopp_maxpsz = soppp->sopp_maxpsz; 1082 if (soppp->sopp_flags & SOCKOPT_MINPSZ) 1083 so->so_proto_props.sopp_minpsz = soppp->sopp_minpsz; 1084 if (soppp->sopp_flags & SOCKOPT_ZCOPY) { 1085 if (soppp->sopp_zcopyflag & ZCVMSAFE) { 1086 so->so_proto_props.sopp_zcopyflag |= STZCVMSAFE; 1087 so->so_proto_props.sopp_zcopyflag &= ~STZCVMUNSAFE; 1088 } else if (soppp->sopp_zcopyflag & ZCVMUNSAFE) { 1089 so->so_proto_props.sopp_zcopyflag |= STZCVMUNSAFE; 1090 so->so_proto_props.sopp_zcopyflag &= ~STZCVMSAFE; 1091 } 1092 1093 if (soppp->sopp_zcopyflag & COPYCACHED) { 1094 so->so_proto_props.sopp_zcopyflag |= STRCOPYCACHED; 1095 } 1096 } 1097 if (soppp->sopp_flags & SOCKOPT_OOBINLINE) 1098 so->so_proto_props.sopp_oobinline = soppp->sopp_oobinline; 1099 if (soppp->sopp_flags & SOCKOPT_RCVTIMER) 1100 so->so_proto_props.sopp_rcvtimer = soppp->sopp_rcvtimer; 1101 if (soppp->sopp_flags & SOCKOPT_RCVTHRESH) 1102 so->so_proto_props.sopp_rcvthresh = soppp->sopp_rcvthresh; 1103 if (soppp->sopp_flags & SOCKOPT_MAXADDRLEN) 1104 so->so_proto_props.sopp_maxaddrlen = soppp->sopp_maxaddrlen; 1105 1106 mutex_exit(&so->so_lock); 1107 1108 #ifdef DEBUG 1109 soppp->sopp_flags &= ~(SOCKOPT_MAXBLK | SOCKOPT_WROFF | SOCKOPT_TAIL | 1110 SOCKOPT_RCVHIWAT | SOCKOPT_RCVLOWAT | SOCKOPT_MAXPSZ | 1111 SOCKOPT_ZCOPY | SOCKOPT_OOBINLINE | SOCKOPT_RCVTIMER | 1112 SOCKOPT_RCVTHRESH | SOCKOPT_MAXADDRLEN | SOCKOPT_MINPSZ); 1113 ASSERT(soppp->sopp_flags == 0); 1114 #endif 1115 } 1116 1117 /* ARGSUSED */ 1118 ssize_t 1119 so_queue_msg(sock_upper_handle_t sock_handle, mblk_t *mp, 1120 size_t msg_size, int flags, int *errorp, boolean_t *force_pushp) 1121 { 1122 struct sonode *so = (struct sonode *)sock_handle; 1123 boolean_t force_push = B_TRUE; 1124 int space_left; 1125 sodirect_t *sodp = so->so_direct; 1126 1127 ASSERT(errorp != NULL); 1128 *errorp = 0; 1129 if (mp == NULL) { 1130 if (msg_size > 0) { 1131 ASSERT(so->so_downcalls->sd_recv_uio != NULL); 1132 mutex_enter(&so->so_lock); 1133 /* the notify functions will drop the lock */ 1134 if (flags & MSG_OOB) 1135 so_notify_oobdata(so, IS_SO_OOB_INLINE(so)); 1136 else 1137 so_notify_data(so, msg_size); 1138 return (0); 1139 } 1140 /* 1141 * recv space check 1142 */ 1143 mutex_enter(&so->so_lock); 1144 space_left = so->so_rcvbuf - so->so_rcv_queued; 1145 if (space_left <= 0) { 1146 so->so_flowctrld = B_TRUE; 1147 *errorp = ENOSPC; 1148 space_left = -1; 1149 } 1150 goto done_unlock; 1151 } 1152 1153 ASSERT(mp->b_next == NULL); 1154 ASSERT(DB_TYPE(mp) == M_DATA || DB_TYPE(mp) == M_PROTO); 1155 ASSERT(msg_size == msgdsize(mp)); 1156 1157 if (flags & MSG_OOB) { 1158 so_queue_oob(sock_handle, mp, msg_size); 1159 return (0); 1160 } 1161 1162 if (force_pushp != NULL) 1163 force_push = *force_pushp; 1164 1165 if (DB_TYPE(mp) == M_PROTO && !__TPI_PRIM_ISALIGNED(mp->b_rptr)) { 1166 /* The read pointer is not aligned correctly for TPI */ 1167 zcmn_err(getzoneid(), CE_WARN, 1168 "sockfs: Unaligned TPI message received. rptr = %p\n", 1169 (void *)mp->b_rptr); 1170 freemsg(mp); 1171 mutex_enter(sodp->sod_lockp); 1172 SOD_UIOAFINI(sodp); 1173 mutex_exit(sodp->sod_lockp); 1174 1175 return (so->so_rcvbuf - so->so_rcv_queued); 1176 } 1177 1178 mutex_enter(&so->so_lock); 1179 if (so->so_state & (SS_FALLBACK_PENDING | SS_FALLBACK_COMP)) { 1180 SOD_DISABLE(sodp); 1181 mutex_exit(&so->so_lock); 1182 *errorp = EOPNOTSUPP; 1183 return (-1); 1184 } 1185 if (so->so_state & SS_CANTRCVMORE) { 1186 freemsg(mp); 1187 SOD_DISABLE(sodp); 1188 mutex_exit(&so->so_lock); 1189 return (0); 1190 } 1191 1192 /* process the mblk via I/OAT if capable */ 1193 if (sodp != NULL && (sodp->sod_state & SOD_ENABLED)) { 1194 if (DB_TYPE(mp) == M_DATA) { 1195 (void) sod_uioa_mblk_init(sodp, mp, msg_size); 1196 } else { 1197 SOD_UIOAFINI(sodp); 1198 } 1199 } 1200 1201 if (mp->b_next == NULL) { 1202 so_enqueue_msg(so, mp, msg_size); 1203 } else { 1204 do { 1205 mblk_t *nmp; 1206 1207 if ((nmp = mp->b_next) != NULL) { 1208 mp->b_next = NULL; 1209 } 1210 so_enqueue_msg(so, mp, msgdsize(mp)); 1211 mp = nmp; 1212 } while (mp != NULL); 1213 } 1214 1215 space_left = so->so_rcvbuf - so->so_rcv_queued; 1216 if (space_left <= 0) { 1217 so->so_flowctrld = B_TRUE; 1218 *errorp = ENOSPC; 1219 space_left = -1; 1220 } 1221 1222 if (force_push || so->so_rcv_queued >= so->so_rcv_thresh || 1223 so->so_rcv_queued >= so->so_rcv_wanted || 1224 (sodp != NULL && so->so_rcv_queued >= sodp->sod_want)) { 1225 SOCKET_TIMER_CANCEL(so); 1226 /* 1227 * so_notify_data will release the lock 1228 */ 1229 so_notify_data(so, so->so_rcv_queued); 1230 1231 if (force_pushp != NULL) 1232 *force_pushp = B_TRUE; 1233 goto done; 1234 } else if (so->so_rcv_timer_tid == 0) { 1235 /* Make sure the recv push timer is running */ 1236 SOCKET_TIMER_START(so); 1237 } 1238 1239 done_unlock: 1240 mutex_exit(&so->so_lock); 1241 done: 1242 return (space_left); 1243 } 1244 1245 /* 1246 * Set the offset of where the oob data is relative to the bytes in 1247 * queued. Also generate SIGURG 1248 */ 1249 void 1250 so_signal_oob(sock_upper_handle_t sock_handle, ssize_t offset) 1251 { 1252 struct sonode *so; 1253 1254 ASSERT(offset >= 0); 1255 so = (struct sonode *)sock_handle; 1256 mutex_enter(&so->so_lock); 1257 SOD_UIOAFINI(so->so_direct); 1258 1259 /* 1260 * New urgent data on the way so forget about any old 1261 * urgent data. 1262 */ 1263 so->so_state &= ~(SS_HAVEOOBDATA|SS_HADOOBDATA); 1264 1265 /* 1266 * Record that urgent data is pending. 1267 */ 1268 so->so_state |= SS_OOBPEND; 1269 1270 if (so->so_oobmsg != NULL) { 1271 dprintso(so, 1, ("sock: discarding old oob\n")); 1272 freemsg(so->so_oobmsg); 1273 so->so_oobmsg = NULL; 1274 } 1275 1276 /* 1277 * set the offset where the urgent byte is 1278 */ 1279 so->so_oobmark = so->so_rcv_queued + offset; 1280 if (so->so_oobmark == 0) 1281 so->so_state |= SS_RCVATMARK; 1282 else 1283 so->so_state &= ~SS_RCVATMARK; 1284 1285 so_notify_oobsig(so); 1286 } 1287 1288 /* 1289 * Queue the OOB byte 1290 */ 1291 static void 1292 so_queue_oob(sock_upper_handle_t sock_handle, mblk_t *mp, size_t len) 1293 { 1294 struct sonode *so; 1295 1296 so = (struct sonode *)sock_handle; 1297 mutex_enter(&so->so_lock); 1298 SOD_UIOAFINI(so->so_direct); 1299 1300 ASSERT(mp != NULL); 1301 if (!IS_SO_OOB_INLINE(so)) { 1302 so->so_oobmsg = mp; 1303 so->so_state |= SS_HAVEOOBDATA; 1304 } else { 1305 so_enqueue_msg(so, mp, len); 1306 } 1307 1308 so_notify_oobdata(so, IS_SO_OOB_INLINE(so)); 1309 } 1310 1311 int 1312 so_close(struct sonode *so, int flag, struct cred *cr) 1313 { 1314 int error; 1315 1316 error = (*so->so_downcalls->sd_close)(so->so_proto_handle, flag, cr); 1317 1318 /* 1319 * At this point there will be no more upcalls from the protocol 1320 */ 1321 mutex_enter(&so->so_lock); 1322 1323 ASSERT(so_verify_oobstate(so)); 1324 1325 so_rcv_flush(so); 1326 mutex_exit(&so->so_lock); 1327 1328 return (error); 1329 } 1330 1331 void 1332 so_zcopy_notify(sock_upper_handle_t sock_handle) 1333 { 1334 struct sonode *so = (struct sonode *)sock_handle; 1335 1336 mutex_enter(&so->so_lock); 1337 so->so_copyflag |= STZCNOTIFY; 1338 cv_broadcast(&so->so_copy_cv); 1339 mutex_exit(&so->so_lock); 1340 } 1341 1342 void 1343 so_set_error(sock_upper_handle_t sock_handle, int error) 1344 { 1345 struct sonode *so = (struct sonode *)sock_handle; 1346 1347 mutex_enter(&so->so_lock); 1348 1349 soseterror(so, error); 1350 1351 so_notify_error(so); 1352 } 1353 1354 /* 1355 * so_recvmsg - read data from the socket 1356 * 1357 * There are two ways of obtaining data; either we ask the protocol to 1358 * copy directly into the supplied buffer, or we copy data from the 1359 * sonode's receive queue. The decision which one to use depends on 1360 * whether the protocol has a sd_recv_uio down call. 1361 */ 1362 int 1363 so_recvmsg(struct sonode *so, struct nmsghdr *msg, struct uio *uiop, 1364 struct cred *cr) 1365 { 1366 rval_t rval; 1367 int flags = 0; 1368 t_uscalar_t controllen, namelen; 1369 int error = 0; 1370 int ret; 1371 mblk_t *mctlp = NULL; 1372 union T_primitives *tpr; 1373 void *control; 1374 ssize_t saved_resid; 1375 struct uio *suiop; 1376 1377 SO_BLOCK_FALLBACK(so, SOP_RECVMSG(so, msg, uiop, cr)); 1378 1379 if ((so->so_state & (SS_ISCONNECTED|SS_CANTRCVMORE)) == 0 && 1380 (so->so_mode & SM_CONNREQUIRED)) { 1381 SO_UNBLOCK_FALLBACK(so); 1382 return (ENOTCONN); 1383 } 1384 1385 if (msg->msg_flags & MSG_PEEK) 1386 msg->msg_flags &= ~MSG_WAITALL; 1387 1388 if (so->so_mode & SM_ATOMIC) 1389 msg->msg_flags |= MSG_TRUNC; 1390 1391 if (msg->msg_flags & MSG_OOB) { 1392 if ((so->so_mode & SM_EXDATA) == 0) { 1393 error = EOPNOTSUPP; 1394 } else if (so->so_downcalls->sd_recv_uio != NULL) { 1395 error = (*so->so_downcalls->sd_recv_uio) 1396 (so->so_proto_handle, uiop, msg, cr); 1397 } else { 1398 error = sorecvoob(so, msg, uiop, msg->msg_flags, 1399 IS_SO_OOB_INLINE(so)); 1400 } 1401 SO_UNBLOCK_FALLBACK(so); 1402 return (error); 1403 } 1404 1405 /* 1406 * If the protocol has the recv down call, then pass the request 1407 * down. 1408 */ 1409 if (so->so_downcalls->sd_recv_uio != NULL) { 1410 error = (*so->so_downcalls->sd_recv_uio) 1411 (so->so_proto_handle, uiop, msg, cr); 1412 SO_UNBLOCK_FALLBACK(so); 1413 return (error); 1414 } 1415 1416 /* 1417 * Reading data from the socket buffer 1418 */ 1419 flags = msg->msg_flags; 1420 msg->msg_flags = 0; 1421 1422 /* 1423 * Set msg_controllen and msg_namelen to zero here to make it 1424 * simpler in the cases that no control or name is returned. 1425 */ 1426 controllen = msg->msg_controllen; 1427 namelen = msg->msg_namelen; 1428 msg->msg_controllen = 0; 1429 msg->msg_namelen = 0; 1430 1431 mutex_enter(&so->so_lock); 1432 /* Set SOREADLOCKED */ 1433 error = so_lock_read_intr(so, 1434 uiop->uio_fmode | ((flags & MSG_DONTWAIT) ? FNONBLOCK : 0)); 1435 mutex_exit(&so->so_lock); 1436 if (error) { 1437 SO_UNBLOCK_FALLBACK(so); 1438 return (error); 1439 } 1440 1441 suiop = sod_rcv_init(so, flags, &uiop); 1442 retry: 1443 saved_resid = uiop->uio_resid; 1444 error = so_dequeue_msg(so, &mctlp, uiop, &rval, flags); 1445 if (error != 0) { 1446 goto out; 1447 } 1448 /* 1449 * For datagrams the MOREDATA flag is used to set MSG_TRUNC. 1450 * For non-datagrams MOREDATA is used to set MSG_EOR. 1451 */ 1452 ASSERT(!(rval.r_val1 & MORECTL)); 1453 if ((rval.r_val1 & MOREDATA) && (so->so_mode & SM_ATOMIC)) 1454 msg->msg_flags |= MSG_TRUNC; 1455 if (mctlp == NULL) { 1456 dprintso(so, 1, ("so_recvmsg: got M_DATA\n")); 1457 1458 mutex_enter(&so->so_lock); 1459 /* Set MSG_EOR based on MOREDATA */ 1460 if (!(rval.r_val1 & MOREDATA)) { 1461 if (so->so_state & SS_SAVEDEOR) { 1462 msg->msg_flags |= MSG_EOR; 1463 so->so_state &= ~SS_SAVEDEOR; 1464 } 1465 } 1466 /* 1467 * If some data was received (i.e. not EOF) and the 1468 * read/recv* has not been satisfied wait for some more. 1469 */ 1470 if ((flags & MSG_WAITALL) && !(msg->msg_flags & MSG_EOR) && 1471 uiop->uio_resid != saved_resid && uiop->uio_resid > 0) { 1472 mutex_exit(&so->so_lock); 1473 goto retry; 1474 } 1475 1476 goto out_locked; 1477 } 1478 /* strsock_proto has already verified length and alignment */ 1479 tpr = (union T_primitives *)mctlp->b_rptr; 1480 dprintso(so, 1, ("so_recvmsg: type %d\n", tpr->type)); 1481 switch (tpr->type) { 1482 case T_DATA_IND: { 1483 /* 1484 * Set msg_flags to MSG_EOR based on 1485 * MORE_flag and MOREDATA. 1486 */ 1487 mutex_enter(&so->so_lock); 1488 so->so_state &= ~SS_SAVEDEOR; 1489 if (!(tpr->data_ind.MORE_flag & 1)) { 1490 if (!(rval.r_val1 & MOREDATA)) 1491 msg->msg_flags |= MSG_EOR; 1492 else 1493 so->so_state |= SS_SAVEDEOR; 1494 } 1495 freemsg(mctlp); 1496 /* 1497 * If some data was received (i.e. not EOF) and the 1498 * read/recv* has not been satisfied wait for some more. 1499 */ 1500 if ((flags & MSG_WAITALL) && !(msg->msg_flags & MSG_EOR) && 1501 uiop->uio_resid != saved_resid && uiop->uio_resid > 0) { 1502 mutex_exit(&so->so_lock); 1503 goto retry; 1504 } 1505 goto out_locked; 1506 } 1507 case T_UNITDATA_IND: { 1508 void *addr; 1509 t_uscalar_t addrlen; 1510 void *abuf; 1511 t_uscalar_t optlen; 1512 void *opt; 1513 1514 if (namelen != 0) { 1515 /* Caller wants source address */ 1516 addrlen = tpr->unitdata_ind.SRC_length; 1517 addr = sogetoff(mctlp, tpr->unitdata_ind.SRC_offset, 1518 addrlen, 1); 1519 if (addr == NULL) { 1520 freemsg(mctlp); 1521 error = EPROTO; 1522 eprintsoline(so, error); 1523 goto out; 1524 } 1525 ASSERT(so->so_family != AF_UNIX); 1526 } 1527 optlen = tpr->unitdata_ind.OPT_length; 1528 if (optlen != 0) { 1529 t_uscalar_t ncontrollen; 1530 1531 /* 1532 * Extract any source address option. 1533 * Determine how large cmsg buffer is needed. 1534 */ 1535 opt = sogetoff(mctlp, tpr->unitdata_ind.OPT_offset, 1536 optlen, __TPI_ALIGN_SIZE); 1537 1538 if (opt == NULL) { 1539 freemsg(mctlp); 1540 error = EPROTO; 1541 eprintsoline(so, error); 1542 goto out; 1543 } 1544 if (so->so_family == AF_UNIX) 1545 so_getopt_srcaddr(opt, optlen, &addr, &addrlen); 1546 ncontrollen = so_cmsglen(mctlp, opt, optlen, 1547 !(flags & MSG_XPG4_2)); 1548 if (controllen != 0) 1549 controllen = ncontrollen; 1550 else if (ncontrollen != 0) 1551 msg->msg_flags |= MSG_CTRUNC; 1552 } else { 1553 controllen = 0; 1554 } 1555 1556 if (namelen != 0) { 1557 /* 1558 * Return address to caller. 1559 * Caller handles truncation if length 1560 * exceeds msg_namelen. 1561 * NOTE: AF_UNIX NUL termination is ensured by 1562 * the sender's copyin_name(). 1563 */ 1564 abuf = kmem_alloc(addrlen, KM_SLEEP); 1565 1566 bcopy(addr, abuf, addrlen); 1567 msg->msg_name = abuf; 1568 msg->msg_namelen = addrlen; 1569 } 1570 1571 if (controllen != 0) { 1572 /* 1573 * Return control msg to caller. 1574 * Caller handles truncation if length 1575 * exceeds msg_controllen. 1576 */ 1577 control = kmem_zalloc(controllen, KM_SLEEP); 1578 1579 error = so_opt2cmsg(mctlp, opt, optlen, 1580 !(flags & MSG_XPG4_2), control, controllen); 1581 if (error) { 1582 freemsg(mctlp); 1583 if (msg->msg_namelen != 0) 1584 kmem_free(msg->msg_name, 1585 msg->msg_namelen); 1586 kmem_free(control, controllen); 1587 eprintsoline(so, error); 1588 goto out; 1589 } 1590 msg->msg_control = control; 1591 msg->msg_controllen = controllen; 1592 } 1593 1594 freemsg(mctlp); 1595 goto out; 1596 } 1597 case T_OPTDATA_IND: { 1598 struct T_optdata_req *tdr; 1599 void *opt; 1600 t_uscalar_t optlen; 1601 1602 tdr = (struct T_optdata_req *)mctlp->b_rptr; 1603 optlen = tdr->OPT_length; 1604 if (optlen != 0) { 1605 t_uscalar_t ncontrollen; 1606 /* 1607 * Determine how large cmsg buffer is needed. 1608 */ 1609 opt = sogetoff(mctlp, 1610 tpr->optdata_ind.OPT_offset, optlen, 1611 __TPI_ALIGN_SIZE); 1612 1613 if (opt == NULL) { 1614 freemsg(mctlp); 1615 error = EPROTO; 1616 eprintsoline(so, error); 1617 goto out; 1618 } 1619 1620 ncontrollen = so_cmsglen(mctlp, opt, optlen, 1621 !(flags & MSG_XPG4_2)); 1622 if (controllen != 0) 1623 controllen = ncontrollen; 1624 else if (ncontrollen != 0) 1625 msg->msg_flags |= MSG_CTRUNC; 1626 } else { 1627 controllen = 0; 1628 } 1629 1630 if (controllen != 0) { 1631 /* 1632 * Return control msg to caller. 1633 * Caller handles truncation if length 1634 * exceeds msg_controllen. 1635 */ 1636 control = kmem_zalloc(controllen, KM_SLEEP); 1637 1638 error = so_opt2cmsg(mctlp, opt, optlen, 1639 !(flags & MSG_XPG4_2), control, controllen); 1640 if (error) { 1641 freemsg(mctlp); 1642 kmem_free(control, controllen); 1643 eprintsoline(so, error); 1644 goto out; 1645 } 1646 msg->msg_control = control; 1647 msg->msg_controllen = controllen; 1648 } 1649 1650 /* 1651 * Set msg_flags to MSG_EOR based on 1652 * DATA_flag and MOREDATA. 1653 */ 1654 mutex_enter(&so->so_lock); 1655 so->so_state &= ~SS_SAVEDEOR; 1656 if (!(tpr->data_ind.MORE_flag & 1)) { 1657 if (!(rval.r_val1 & MOREDATA)) 1658 msg->msg_flags |= MSG_EOR; 1659 else 1660 so->so_state |= SS_SAVEDEOR; 1661 } 1662 freemsg(mctlp); 1663 /* 1664 * If some data was received (i.e. not EOF) and the 1665 * read/recv* has not been satisfied wait for some more. 1666 * Not possible to wait if control info was received. 1667 */ 1668 if ((flags & MSG_WAITALL) && !(msg->msg_flags & MSG_EOR) && 1669 controllen == 0 && 1670 uiop->uio_resid != saved_resid && uiop->uio_resid > 0) { 1671 mutex_exit(&so->so_lock); 1672 goto retry; 1673 } 1674 goto out_locked; 1675 } 1676 default: 1677 cmn_err(CE_CONT, "so_recvmsg bad type %x \n", 1678 tpr->type); 1679 freemsg(mctlp); 1680 error = EPROTO; 1681 ASSERT(0); 1682 } 1683 out: 1684 mutex_enter(&so->so_lock); 1685 out_locked: 1686 /* The sod_lockp pointers to the sonode so_lock */ 1687 ret = sod_rcv_done(so, suiop, uiop); 1688 if (ret != 0 && error == 0) 1689 error = ret; 1690 1691 so_unlock_read(so); /* Clear SOREADLOCKED */ 1692 mutex_exit(&so->so_lock); 1693 1694 SO_UNBLOCK_FALLBACK(so); 1695 1696 return (error); 1697 } 1698 1699 sonodeops_t so_sonodeops = { 1700 so_init, /* sop_init */ 1701 so_accept, /* sop_accept */ 1702 so_bind, /* sop_bind */ 1703 so_listen, /* sop_listen */ 1704 so_connect, /* sop_connect */ 1705 so_recvmsg, /* sop_recvmsg */ 1706 so_sendmsg, /* sop_sendmsg */ 1707 so_sendmblk, /* sop_sendmblk */ 1708 so_getpeername, /* sop_getpeername */ 1709 so_getsockname, /* sop_getsockname */ 1710 so_shutdown, /* sop_shutdown */ 1711 so_getsockopt, /* sop_getsockopt */ 1712 so_setsockopt, /* sop_setsockopt */ 1713 so_ioctl, /* sop_ioctl */ 1714 so_poll, /* sop_poll */ 1715 so_close, /* sop_close */ 1716 }; 1717 1718 sock_upcalls_t so_upcalls = { 1719 so_newconn, 1720 so_connected, 1721 so_disconnected, 1722 so_opctl, 1723 so_queue_msg, 1724 so_set_prop, 1725 so_txq_full, 1726 so_signal_oob, 1727 so_zcopy_notify, 1728 so_set_error 1729 }; 1730