Loading...
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 | /* * Copyright (c) 2000-2020 Apple Inc. All rights reserved. * * @APPLE_OSREFERENCE_LICENSE_HEADER_START@ * * This file contains Original Code and/or Modifications of Original Code * as defined in and that are subject to the Apple Public Source License * Version 2.0 (the 'License'). You may not use this file except in * compliance with the License. The rights granted to you under the License * may not be used to create, or enable the creation or redistribution of, * unlawful or unlicensed copies of an Apple operating system, or to * circumvent, violate, or enable the circumvention or violation of, any * terms of an Apple operating system software license agreement. * * Please obtain a copy of the License at * http://www.opensource.apple.com/apsl/ and read it before using this file. * * The Original Code and all software distributed under the License are * distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES, * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT. * Please see the License for the specific language governing rights and * limitations under the License. * * @APPLE_OSREFERENCE_LICENSE_HEADER_END@ */ #include <mach/mach_types.h> #include <mach/mach_traps.h> #include <mach/kern_return.h> #include <mach/sync_policy.h> #include <mach/task.h> #include <kern/misc_protos.h> #include <kern/spl.h> #include <kern/ipc_tt.h> #include <kern/thread.h> #include <kern/clock.h> #include <ipc/ipc_port.h> #include <ipc/ipc_space.h> #include <ipc/ipc_eventlink.h> #include <kern/host.h> #include <kern/waitq.h> #include <kern/zalloc.h> #include <kern/mach_param.h> #include <mach/mach_traps.h> #include <mach/mach_eventlink_server.h> #include <libkern/OSAtomic.h> static KALLOC_TYPE_DEFINE(ipc_eventlink_zone, struct ipc_eventlink_base, KT_DEFAULT); os_refgrp_decl(static, ipc_eventlink_refgrp, "eventlink", NULL); #if DEVELOPMENT || DEBUG static queue_head_t ipc_eventlink_list = QUEUE_HEAD_INITIALIZER(ipc_eventlink_list); static LCK_GRP_DECLARE(ipc_eventlink_dev_lock_grp, "ipc_eventlink_dev_lock"); static LCK_SPIN_DECLARE(global_ipc_eventlink_lock, &ipc_eventlink_dev_lock_grp); #define global_ipc_eventlink_lock() \ lck_spin_lock_grp(&global_ipc_eventlink_lock, &ipc_eventlink_dev_lock_grp) #define global_ipc_eventlink_lock_try() \ lck_spin_try_lock_grp(&global_ipc_eventlink_lock, &ipc_eventlink_dev_lock_grp) #define global_ipc_eventlink_unlock() \ lck_spin_unlock(&global_ipc_eventlink_lock) #endif /* DEVELOPMENT || DEBUG */ /* Forward declarations */ static void ipc_eventlink_no_senders( ipc_port_t port, mach_port_mscount_t mscount); static struct ipc_eventlink_base * ipc_eventlink_alloc(void); static void ipc_eventlink_initialize( struct ipc_eventlink_base *ipc_eventlink_base); static kern_return_t ipc_eventlink_destroy_internal( struct ipc_eventlink *ipc_eventlink); static kern_return_t ipc_eventlink_signal( struct ipc_eventlink *ipc_eventlink); static uint64_t ipc_eventlink_signal_wait_until_trap_internal( mach_port_name_t wait_port, mach_port_name_t signal_port, uint64_t count, mach_eventlink_signal_wait_option_t el_option, kern_clock_id_t clock_id, uint64_t deadline); static kern_return_t ipc_eventlink_signal_wait_internal( struct ipc_eventlink *wait_eventlink, struct ipc_eventlink *signal_eventlink, uint64_t deadline, uint64_t *count, ipc_eventlink_option_t eventlink_option); static kern_return_t ipc_eventlink_convert_wait_result(int wait_result); static kern_return_t ipc_eventlink_signal_internal_locked( struct ipc_eventlink *signal_eventlink, ipc_eventlink_option_t eventlink_option); static kern_return_t convert_port_to_eventlink_locked( ipc_port_t port, struct ipc_eventlink **ipc_eventlink_ptr); static kern_return_t port_name_to_eventlink( mach_port_name_t name, struct ipc_eventlink **ipc_eventlink_ptr); IPC_KOBJECT_DEFINE(IKOT_EVENTLINK, .iko_op_no_senders = ipc_eventlink_no_senders); /* * Name: ipc_eventlink_alloc * * Description: Allocates an ipc_eventlink struct and initializes it. * * Args: None. * * Returns: * ipc_eventlink_base on Success. */ static struct ipc_eventlink_base * ipc_eventlink_alloc(void) { struct ipc_eventlink_base *ipc_eventlink_base = IPC_EVENTLINK_BASE_NULL; ipc_eventlink_base = zalloc(ipc_eventlink_zone); ipc_eventlink_initialize(ipc_eventlink_base); #if DEVELOPMENT || DEBUG /* Add ipc_eventlink to global list */ global_ipc_eventlink_lock(); queue_enter(&ipc_eventlink_list, ipc_eventlink_base, struct ipc_eventlink_base *, elb_global_elm); global_ipc_eventlink_unlock(); #endif return ipc_eventlink_base; } /* * Name: ipc_eventlink_initialize * * Description: Initializes ipc eventlink struct. * * Args: ipc eventlink base. * * Returns: * KERN_SUCCESS on Success. */ static void ipc_eventlink_initialize( struct ipc_eventlink_base *ipc_eventlink_base) { /* Initialize the count to 2, refs for each ipc eventlink port */ os_ref_init_count(&ipc_eventlink_base->elb_ref_count, &ipc_eventlink_refgrp, 2); ipc_eventlink_base->elb_type = IPC_EVENTLINK_TYPE_NO_COPYIN; for (int i = 0; i < 2; i++) { struct ipc_eventlink *ipc_eventlink = &(ipc_eventlink_base->elb_eventlink[i]); ipc_eventlink->el_port = ipc_kobject_alloc_port((ipc_kobject_t)ipc_eventlink, IKOT_EVENTLINK, IPC_KOBJECT_ALLOC_MAKE_SEND | IPC_KOBJECT_ALLOC_NSREQUEST); /* ipc_kobject_alloc_port never fails */ ipc_eventlink->el_thread = THREAD_NULL; ipc_eventlink->el_sync_counter = 0; ipc_eventlink->el_wait_counter = UINT64_MAX; ipc_eventlink->el_base = ipc_eventlink_base; } /* Must be done last */ waitq_init(&ipc_eventlink_base->elb_waitq, WQT_QUEUE, SYNC_POLICY_FIFO); } /* * Name: mach_eventlink_create * * Description: Allocates an ipc_eventlink struct and initializes it. * * Args: * task : task port of the process * mach_eventlink_create_option_t: option * eventlink_port_pair: eventlink port array * * Returns: * KERN_SUCCESS on Success. */ kern_return_t mach_eventlink_create( task_t task, mach_eventlink_create_option_t elc_option, eventlink_port_pair_t eventlink_port_pair) { int i; struct ipc_eventlink_base *ipc_eventlink_base; if (task == TASK_NULL || task != current_task() || elc_option != MELC_OPTION_NO_COPYIN) { return KERN_INVALID_ARGUMENT; } ipc_eventlink_base = ipc_eventlink_alloc(); for (i = 0; i < 2; i++) { eventlink_port_pair[i] = ipc_eventlink_base->elb_eventlink[i].el_port; } return KERN_SUCCESS; } /* * Name: mach_eventlink_destroy * * Description: Destroy an ipc_eventlink, wakeup all threads. * * Args: * eventlink: eventlink * * Returns: * KERN_SUCCESS on Success. */ kern_return_t mach_eventlink_destroy( struct ipc_eventlink *ipc_eventlink) { ipc_eventlink_destroy_internal(ipc_eventlink); /* mach_eventlink_destroy should succeed for terminated eventlink */ return KERN_SUCCESS; } /* * Name: ipc_eventlink_destroy_internal * * Description: Destroy an ipc_eventlink, wakeup all threads. * * Args: * eventlink: eventlink * * Returns: * KERN_SUCCESS on Success. */ static kern_return_t ipc_eventlink_destroy_internal( struct ipc_eventlink *ipc_eventlink) { spl_t s; struct ipc_eventlink_base *ipc_eventlink_base; thread_t associated_thread[2] = {}; ipc_port_t ipc_eventlink_port = IPC_PORT_NULL; ipc_port_t ipc_eventlink_port_remote = IPC_PORT_NULL; if (ipc_eventlink == IPC_EVENTLINK_NULL) { return KERN_TERMINATED; } s = splsched(); ipc_eventlink_lock(ipc_eventlink); ipc_eventlink_base = ipc_eventlink->el_base; /* Check if the eventlink is active */ if (!ipc_eventlink_active(ipc_eventlink)) { ipc_eventlink_unlock(ipc_eventlink); splx(s); return KERN_TERMINATED; } for (int i = 0; i < 2; i++) { struct ipc_eventlink *temp_ipc_eventlink = &ipc_eventlink_base->elb_eventlink[i]; /* Wakeup threads sleeping on eventlink */ if (temp_ipc_eventlink->el_thread) { associated_thread[i] = temp_ipc_eventlink->el_thread; temp_ipc_eventlink->el_thread = THREAD_NULL; ipc_eventlink_signal_internal_locked(temp_ipc_eventlink, IPC_EVENTLINK_FORCE_WAKEUP); } /* Only destroy the port on which destroy was called */ if (temp_ipc_eventlink == ipc_eventlink) { ipc_eventlink_port = temp_ipc_eventlink->el_port; assert(ipc_eventlink_port != IPC_PORT_NULL); } else { /* Do not destory the remote port, else eventlink_destroy will fail */ ipc_eventlink_port_remote = temp_ipc_eventlink->el_port; assert(ipc_eventlink_port_remote != IPC_PORT_NULL); /* * Take a reference on the remote port, since it could go * away after eventlink lock is dropped. */ ip_validate(ipc_eventlink_port_remote); ip_reference(ipc_eventlink_port_remote); } assert(temp_ipc_eventlink->el_port != IPC_PORT_NULL); temp_ipc_eventlink->el_port = IPC_PORT_NULL; } /* Mark the eventlink as inactive */ waitq_invalidate(&ipc_eventlink_base->elb_waitq); ipc_eventlink_unlock(ipc_eventlink); splx(s); /* Destroy the local eventlink port */ ipc_kobject_dealloc_port(ipc_eventlink_port, 0, IKOT_EVENTLINK); /* Drops port reference */ /* Clear the remote eventlink port without destroying it */ (void)ipc_kobject_disable(ipc_eventlink_port_remote, IKOT_EVENTLINK); ip_release(ipc_eventlink_port_remote); for (int i = 0; i < 2; i++) { if (associated_thread[i] != THREAD_NULL && associated_thread[i] != THREAD_ASSOCIATE_WILD) { thread_deallocate(associated_thread[i]); } /* Drop the eventlink reference given to port */ ipc_eventlink_deallocate(ipc_eventlink); } return KERN_SUCCESS; } /* * Name: mach_eventlink_associate * * Description: Associate a thread to eventlink. * * Args: * eventlink: eventlink * thread: thread needs to be associated * copyin_addr_wait: copyin addr for wait * copyin_mask_wait: copyin mask for wait * copyin_addr_signal: copyin addr for signal * copyin_mask_signal: copyin mask for signal * mach_eventlink_associate_option_t: option for eventlink associate * * Returns: * KERN_SUCCESS on Success. */ kern_return_t mach_eventlink_associate( struct ipc_eventlink *ipc_eventlink, thread_t thread, mach_vm_address_t copyin_addr_wait, uint64_t copyin_mask_wait, mach_vm_address_t copyin_addr_signal, uint64_t copyin_mask_signal, mach_eventlink_associate_option_t ela_option) { spl_t s; if (ipc_eventlink == IPC_EVENTLINK_NULL) { return KERN_TERMINATED; } if (copyin_addr_wait != 0 || copyin_mask_wait != 0 || copyin_addr_signal != 0 || copyin_mask_signal != 0) { return KERN_INVALID_ARGUMENT; } if ((thread == NULL && ela_option == MELA_OPTION_NONE) || (thread != NULL && ela_option == MELA_OPTION_ASSOCIATE_ON_WAIT)) { return KERN_INVALID_ARGUMENT; } s = splsched(); ipc_eventlink_lock(ipc_eventlink); /* Check if eventlink is terminated */ if (!ipc_eventlink_active(ipc_eventlink)) { ipc_eventlink_unlock(ipc_eventlink); splx(s); return KERN_TERMINATED; } if (ipc_eventlink->el_thread != NULL) { ipc_eventlink_unlock(ipc_eventlink); splx(s); return KERN_NAME_EXISTS; } if (ela_option == MELA_OPTION_ASSOCIATE_ON_WAIT) { ipc_eventlink->el_thread = THREAD_ASSOCIATE_WILD; } else { thread_reference(thread); ipc_eventlink->el_thread = thread; } ipc_eventlink_unlock(ipc_eventlink); splx(s); return KERN_SUCCESS; } /* * Name: mach_eventlink_disassociate * * Description: Disassociate a thread from eventlink. * Wake up the associated thread if blocked on eventlink. * * Args: * eventlink: eventlink * mach_eventlink_option_t: option for eventlink disassociate * * Returns: * KERN_SUCCESS on Success. */ kern_return_t mach_eventlink_disassociate( struct ipc_eventlink *ipc_eventlink, mach_eventlink_disassociate_option_t eld_option) { spl_t s; thread_t thread; if (ipc_eventlink == IPC_EVENTLINK_NULL) { return KERN_TERMINATED; } if (eld_option != MELD_OPTION_NONE) { return KERN_INVALID_ARGUMENT; } s = splsched(); ipc_eventlink_lock(ipc_eventlink); /* Check if eventlink is terminated */ if (!ipc_eventlink_active(ipc_eventlink)) { ipc_eventlink_unlock(ipc_eventlink); splx(s); return KERN_TERMINATED; } if (ipc_eventlink->el_thread == NULL) { ipc_eventlink_unlock(ipc_eventlink); splx(s); return KERN_INVALID_ARGUMENT; } thread = ipc_eventlink->el_thread; ipc_eventlink->el_thread = NULL; /* wake up the thread if blocked */ ipc_eventlink_signal_internal_locked(ipc_eventlink, IPC_EVENTLINK_FORCE_WAKEUP); ipc_eventlink_unlock(ipc_eventlink); splx(s); if (thread != THREAD_ASSOCIATE_WILD) { thread_deallocate(thread); } return KERN_SUCCESS; } /* * Name: mach_eventlink_signal_trap * * Description: Increment the sync count of eventlink and * wake up the thread waiting if sync counter is greater * than wake counter. * * Args: * eventlink: eventlink * * Returns: * uint64_t: Contains count and error codes. */ uint64_t mach_eventlink_signal_trap( mach_port_name_t port, uint64_t signal_count __unused) { struct ipc_eventlink *ipc_eventlink; kern_return_t kr; uint64_t retval = 0; kr = port_name_to_eventlink(port, &ipc_eventlink); if (kr == KERN_SUCCESS) { /* Signal the remote side of the eventlink */ kr = ipc_eventlink_signal(eventlink_remote_side(ipc_eventlink)); /* Deallocate ref returned by port_name_to_eventlink */ ipc_eventlink_deallocate(ipc_eventlink); } retval = encode_eventlink_count_and_error(0, kr); return retval; } /* * Name: ipc_eventlink_signal * * Description: Increment the sync count of eventlink and * wake up the thread waiting if sync counter is greater * than wake counter. * * Args: * eventlink: eventlink * * Returns: * KERN_SUCCESS on Success. */ static kern_return_t ipc_eventlink_signal( struct ipc_eventlink *ipc_eventlink) { kern_return_t kr; spl_t s; if (ipc_eventlink == IPC_EVENTLINK_NULL) { return KERN_INVALID_ARGUMENT; } s = splsched(); ipc_eventlink_lock(ipc_eventlink); /* Check if eventlink is terminated */ if (!ipc_eventlink_active(ipc_eventlink)) { ipc_eventlink_unlock(ipc_eventlink); splx(s); return KERN_TERMINATED; } kr = ipc_eventlink_signal_internal_locked(ipc_eventlink, IPC_EVENTLINK_NONE); ipc_eventlink_unlock(ipc_eventlink); splx(s); if (kr == KERN_NOT_WAITING) { kr = KERN_SUCCESS; } return kr; } /* * Name: mach_eventlink_wait_until_trap * * Description: Wait until local signal count exceeds the * specified count or deadline passes. * * Args: * wait_port: eventlink port for wait * count_ptr: signal count to wait on * el_option: eventlink option * clock_id: clock id * deadline: deadline in mach_absolute_time * * Returns: * uint64_t: contains count and error codes */ uint64_t mach_eventlink_wait_until_trap( mach_port_name_t eventlink_port, uint64_t wait_count, mach_eventlink_signal_wait_option_t option, kern_clock_id_t clock_id, uint64_t deadline) { return ipc_eventlink_signal_wait_until_trap_internal( eventlink_port, MACH_PORT_NULL, wait_count, option, clock_id, deadline); } /* * Name: mach_eventlink_signal_wait_until * * Description: Signal the opposite side of the * eventlink and wait until local signal count exceeds the * specified count or deadline passes. * * Args: * wait_port: eventlink port for wait * count_ptr: signal count to wait on * el_option: eventlink option * clock_id: clock id * deadline: deadline in mach_absolute_time * * Returns: * uint64_t: contains count and error codes */ uint64_t mach_eventlink_signal_wait_until_trap( mach_port_name_t eventlink_port, uint64_t wait_count, uint64_t signal_count __unused, mach_eventlink_signal_wait_option_t option, kern_clock_id_t clock_id, uint64_t deadline) { return ipc_eventlink_signal_wait_until_trap_internal( eventlink_port, eventlink_port, wait_count, option, clock_id, deadline); } /* * Name: ipc_eventlink_signal_wait_until_trap_internal * * Description: Signal the opposite side of the * eventlink and wait until local signal count exceeds the * specified count or deadline passes. * * Args: * wait_port: eventlink port for wait * signal_port: eventlink port for signal * count: signal count to wait on * el_option: eventlink option * clock_id: clock id * deadline: deadline in mach_absolute_time * * Returns: * uint64_t: contains signal count and error codes */ static uint64_t ipc_eventlink_signal_wait_until_trap_internal( mach_port_name_t wait_port, mach_port_name_t signal_port, uint64_t count, mach_eventlink_signal_wait_option_t el_option, kern_clock_id_t clock_id, uint64_t deadline) { struct ipc_eventlink *wait_ipc_eventlink = IPC_EVENTLINK_NULL; struct ipc_eventlink *signal_ipc_eventlink = IPC_EVENTLINK_NULL; kern_return_t kr; ipc_eventlink_option_t ipc_eventlink_option = IPC_EVENTLINK_NONE; if (clock_id != KERN_CLOCK_MACH_ABSOLUTE_TIME) { return encode_eventlink_count_and_error(count, KERN_INVALID_ARGUMENT); } kr = port_name_to_eventlink(wait_port, &wait_ipc_eventlink); if (kr == KERN_SUCCESS) { assert(wait_ipc_eventlink != IPC_EVENTLINK_NULL); /* Get the remote side of eventlink for signal */ if (signal_port != MACH_PORT_NULL) { signal_ipc_eventlink = eventlink_remote_side(wait_ipc_eventlink); } if (el_option & MELSW_OPTION_NO_WAIT) { ipc_eventlink_option |= IPC_EVENTLINK_NO_WAIT; } kr = ipc_eventlink_signal_wait_internal(wait_ipc_eventlink, signal_ipc_eventlink, deadline, &count, ipc_eventlink_option); /* release ref returned by port_name_to_eventlink */ ipc_eventlink_deallocate(wait_ipc_eventlink); } return encode_eventlink_count_and_error(count, kr); } /* * Name: ipc_eventlink_signal_wait_internal * * Description: Signal the opposite side of the * eventlink and wait until local signal count exceeds the * specified count or deadline passes. * * Args: * wait_eventlink: eventlink for wait * signal_eventlink: eventlink for signal * deadline: deadline in mach_absolute_time * count_ptr: signal count to wait on * el_option: eventlink option * * Returns: * KERN_SUCCESS on Success. * signal count is returned implicitly in count arg. */ static kern_return_t ipc_eventlink_signal_wait_internal( struct ipc_eventlink *wait_eventlink, struct ipc_eventlink *signal_eventlink, uint64_t deadline, uint64_t *count, ipc_eventlink_option_t eventlink_option) { spl_t s; kern_return_t kr = KERN_ALREADY_WAITING; thread_t self = current_thread(); struct ipc_eventlink_base *ipc_eventlink_base = wait_eventlink->el_base; thread_t handoff_thread = THREAD_NULL; thread_handoff_option_t handoff_option = THREAD_HANDOFF_NONE; uint64_t old_signal_count; wait_result_t wr; s = splsched(); ipc_eventlink_lock(wait_eventlink); /* Check if eventlink is terminated */ if (!ipc_eventlink_active(wait_eventlink)) { kr = KERN_TERMINATED; goto unlock; } /* Check if waiting thread is associated to eventlink */ if (wait_eventlink->el_thread != THREAD_ASSOCIATE_WILD && wait_eventlink->el_thread != self) { kr = KERN_INVALID_ARGUMENT; goto unlock; } /* Check if thread already waiting for associate on wait case */ if (wait_eventlink->el_thread == THREAD_ASSOCIATE_WILD && wait_eventlink->el_wait_counter != UINT64_MAX) { kr = KERN_INVALID_ARGUMENT; goto unlock; } /* Check if the signal count exceeds the count provided */ if (*count < wait_eventlink->el_sync_counter) { *count = wait_eventlink->el_sync_counter; kr = KERN_SUCCESS; } else if (eventlink_option & IPC_EVENTLINK_NO_WAIT) { /* Check if no block was passed */ *count = wait_eventlink->el_sync_counter; kr = KERN_OPERATION_TIMED_OUT; } else { /* Update the wait counter and add thread to waitq */ wait_eventlink->el_wait_counter = *count; old_signal_count = wait_eventlink->el_sync_counter; thread_set_pending_block_hint(self, kThreadWaitEventlink); (void)waitq_assert_wait64_locked( &ipc_eventlink_base->elb_waitq, CAST_EVENT64_T(wait_eventlink), THREAD_ABORTSAFE, TIMEOUT_URGENCY_USER_NORMAL, deadline, TIMEOUT_NO_LEEWAY, self); eventlink_option |= IPC_EVENTLINK_HANDOFF; } /* Check if we need to signal the other side of eventlink */ if (signal_eventlink != IPC_EVENTLINK_NULL) { kern_return_t signal_kr; signal_kr = ipc_eventlink_signal_internal_locked(signal_eventlink, eventlink_option); if (signal_kr == KERN_NOT_WAITING) { assert(self->handoff_thread == THREAD_NULL); } } if (kr != KERN_ALREADY_WAITING) { goto unlock; } if (self->handoff_thread) { handoff_thread = self->handoff_thread; self->handoff_thread = THREAD_NULL; handoff_option = THREAD_HANDOFF_SETRUN_NEEDED; } ipc_eventlink_unlock(wait_eventlink); splx(s); wr = thread_handoff_deallocate(handoff_thread, handoff_option); kr = ipc_eventlink_convert_wait_result(wr); assert(self->handoff_thread == THREAD_NULL); /* Increment the count value if eventlink_signal was called */ if (kr == KERN_SUCCESS) { *count += 1; } else { *count = old_signal_count; } return kr; unlock: ipc_eventlink_unlock(wait_eventlink); splx(s); assert(self->handoff_thread == THREAD_NULL); return kr; } /* * Name: ipc_eventlink_convert_wait_result * * Description: Convert wait result to return value * for wait trap. * * Args: * wait_result: result from thread handoff * * Returns: * KERN_SUCCESS on Success. */ static kern_return_t ipc_eventlink_convert_wait_result(int wait_result) { switch (wait_result) { case THREAD_AWAKENED: return KERN_SUCCESS; case THREAD_TIMED_OUT: return KERN_OPERATION_TIMED_OUT; case THREAD_INTERRUPTED: return KERN_ABORTED; case THREAD_RESTART: return KERN_TERMINATED; default: panic("ipc_eventlink_wait_block"); return KERN_FAILURE; } } /* * Name: ipc_eventlink_signal_internal_locked * * Description: Increment the sync count of eventlink and * wake up the thread waiting if sync counter is greater * than wake counter. * * Args: * eventlink: eventlink * ipc_eventlink_option_t: options * * Returns: * KERN_SUCCESS on Success. */ static kern_return_t ipc_eventlink_signal_internal_locked( struct ipc_eventlink *signal_eventlink, ipc_eventlink_option_t eventlink_option) { kern_return_t kr = KERN_NOT_WAITING; struct ipc_eventlink_base *ipc_eventlink_base = signal_eventlink->el_base; waitq_wakeup_flags_t flags = WAITQ_KEEP_LOCKED; if (eventlink_option & IPC_EVENTLINK_FORCE_WAKEUP) { /* Adjust the wait counter */ signal_eventlink->el_wait_counter = UINT64_MAX; kr = waitq_wakeup64_all_locked( &ipc_eventlink_base->elb_waitq, CAST_EVENT64_T(signal_eventlink), THREAD_RESTART, flags); return kr; } /* Increment the eventlink sync count */ signal_eventlink->el_sync_counter++; /* Check if thread needs to be woken up */ if (signal_eventlink->el_sync_counter > signal_eventlink->el_wait_counter) { if (eventlink_option & IPC_EVENTLINK_HANDOFF) { flags |= WAITQ_HANDOFF; } /* Adjust the wait counter */ signal_eventlink->el_wait_counter = UINT64_MAX; kr = waitq_wakeup64_one_locked( &ipc_eventlink_base->elb_waitq, CAST_EVENT64_T(signal_eventlink), THREAD_AWAKENED, flags); } return kr; } /* * Name: ipc_eventlink_reference * * Description: Increment ref on ipc eventlink struct * * Args: * eventlink: eventlink * * Returns: None */ void ipc_eventlink_reference( struct ipc_eventlink *ipc_eventlink) { os_ref_retain(&ipc_eventlink->el_base->elb_ref_count); } /* * Name: ipc_eventlink_deallocate * * Description: Decrement ref on ipc eventlink struct * * Args: * eventlink: eventlink * * Returns: None */ void ipc_eventlink_deallocate( struct ipc_eventlink *ipc_eventlink) { if (ipc_eventlink == IPC_EVENTLINK_NULL) { return; } struct ipc_eventlink_base *ipc_eventlink_base = ipc_eventlink->el_base; if (os_ref_release(&ipc_eventlink_base->elb_ref_count) > 0) { return; } waitq_deinit(&ipc_eventlink_base->elb_waitq); assert(!ipc_eventlink_active(ipc_eventlink)); #if DEVELOPMENT || DEBUG /* Remove ipc_eventlink to global list */ global_ipc_eventlink_lock(); queue_remove(&ipc_eventlink_list, ipc_eventlink_base, struct ipc_eventlink_base *, elb_global_elm); global_ipc_eventlink_unlock(); #endif zfree(ipc_eventlink_zone, ipc_eventlink_base); } /* * Name: convert_port_to_eventlink * * Description: Convert from a port name in the current * space to an ipc eventlink. Produces an ipc eventlink ref, * which may be null. * * Args: * mach_port_t: eventlink port * * Returns: * ipc_eventlink on Success. */ struct ipc_eventlink * convert_port_to_eventlink( mach_port_t port) { struct ipc_eventlink *ipc_eventlink = IPC_EVENTLINK_NULL; if (IP_VALID(port)) { ip_mq_lock(port); convert_port_to_eventlink_locked(port, &ipc_eventlink); ip_mq_unlock(port); } return ipc_eventlink; } /* * Name: convert_port_to_eventlink_locked * * Description: Convert from a port name in the current * space to an ipc eventlink. Produces an ipc eventlink ref, * which may be null. * * Args: * mach_port_name_t: eventlink port name * ipc_eventlink_ptr: pointer to return ipc_eventlink. * * Returns: * KERN_SUCCESS on Success. * KERN_TERMINATED on inactive eventlink. */ static kern_return_t convert_port_to_eventlink_locked( ipc_port_t port, struct ipc_eventlink **ipc_eventlink_ptr) { kern_return_t kr = KERN_INVALID_CAPABILITY; struct ipc_eventlink *ipc_eventlink = IPC_EVENTLINK_NULL; if (ip_active(port) && ip_kotype(port) == IKOT_EVENTLINK) { ipc_eventlink = ipc_kobject_get_raw(port, IKOT_EVENTLINK); if (ipc_eventlink) { ipc_eventlink_reference(ipc_eventlink); kr = KERN_SUCCESS; } else { kr = KERN_TERMINATED; } } *ipc_eventlink_ptr = ipc_eventlink; return kr; } /* * Name: port_name_to_eventlink * * Description: Convert from a port name in the current * space to an ipc eventlink. Produces an ipc eventlink ref, * which may be null. * * Args: * mach_port_name_t: eventlink port name * ipc_eventlink_ptr: ptr to pass eventlink struct * * Returns: * KERN_SUCCESS on Success. */ static kern_return_t port_name_to_eventlink( mach_port_name_t name, struct ipc_eventlink **ipc_eventlink_ptr) { ipc_port_t kern_port; kern_return_t kr; if (!MACH_PORT_VALID(name)) { *ipc_eventlink_ptr = IPC_EVENTLINK_NULL; return KERN_INVALID_NAME; } kr = ipc_port_translate_send(current_space(), name, &kern_port); if (kr != KERN_SUCCESS) { *ipc_eventlink_ptr = IPC_EVENTLINK_NULL; return kr; } /* have the port locked */ assert(IP_VALID(kern_port)); kr = convert_port_to_eventlink_locked(kern_port, ipc_eventlink_ptr); ip_mq_unlock(kern_port); return kr; } /* * Name: ipc_eventlink_no_senders * * Description: Destroy an ipc_eventlink, wakeup all threads. * * Returns: * None. */ static void ipc_eventlink_no_senders(ipc_port_t port, mach_port_mscount_t mscount) { kern_return_t kr; struct ipc_eventlink *ipc_eventlink; if (!ip_active(port)) { return; } /* Get ipc_eventlink reference */ ip_mq_lock(port); /* Make sure port is still active */ if (!ip_active(port)) { ip_mq_unlock(port); return; } convert_port_to_eventlink_locked(port, &ipc_eventlink); ip_mq_unlock(port); kr = ipc_eventlink_destroy_internal(ipc_eventlink); if (kr == KERN_TERMINATED) { /* eventlink is already inactive, destroy the port */ ipc_kobject_dealloc_port(port, mscount, IKOT_EVENTLINK); } /* Drop the reference returned by convert_port_to_eventlink_locked */ ipc_eventlink_deallocate(ipc_eventlink); } #define WAITQ_TO_EVENTLINK(wq) ((struct ipc_eventlink_base *) ((uintptr_t)(wq) - offsetof(struct ipc_eventlink_base, elb_waitq))) /* * Name: kdp_eventlink_find_owner * * Description: Find who will signal the waiting thread. * * Args: * waitq: eventlink waitq * wait_event: eventlink wait event * waitinfo: waitinfo struct * * Returns: * None. */ void kdp_eventlink_find_owner( struct waitq *waitq, event64_t event, thread_waitinfo_t *waitinfo) { assert(waitinfo->wait_type == kThreadWaitEventlink); waitinfo->owner = 0; waitinfo->context = 0; if (waitq_held(waitq)) { return; } struct ipc_eventlink_base *ipc_eventlink_base = WAITQ_TO_EVENTLINK(waitq); if (event == CAST_EVENT64_T(&ipc_eventlink_base->elb_eventlink[0])) { /* Use the other end of eventlink for signal thread */ if (ipc_eventlink_base->elb_eventlink[1].el_thread != THREAD_ASSOCIATE_WILD) { waitinfo->owner = thread_tid(ipc_eventlink_base->elb_eventlink[1].el_thread); } else { waitinfo->owner = 0; } } else if (event == CAST_EVENT64_T(&ipc_eventlink_base->elb_eventlink[1])) { /* Use the other end of eventlink for signal thread */ if (ipc_eventlink_base->elb_eventlink[0].el_thread != THREAD_ASSOCIATE_WILD) { waitinfo->owner = thread_tid(ipc_eventlink_base->elb_eventlink[0].el_thread); } else { waitinfo->owner = 0; } } return; } |