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 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 | /* * Copyright (c) 2000-2021 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@ */ /* * @OSF_COPYRIGHT@ * */ /* * File: kern/sync_sema.c * Author: Joseph CaraDonna * * Contains RT distributed semaphore synchronization services. */ #include <mach/mach_types.h> #include <mach/mach_traps.h> #include <mach/kern_return.h> #include <mach/semaphore.h> #include <mach/sync_policy.h> #include <mach/task.h> #include <kern/misc_protos.h> #include <kern/sync_sema.h> #include <kern/spl.h> #include <kern/ipc_kobject.h> #include <kern/ipc_tt.h> #include <kern/thread.h> #include <kern/clock.h> #include <kern/host.h> #include <kern/waitq.h> #include <kern/zalloc.h> #include <kern/mach_param.h> static const uint8_t semaphore_event; #define SEMAPHORE_EVENT CAST_EVENT64_T(&semaphore_event) ZONE_DEFINE_ID(ZONE_ID_SEMAPHORE, "semaphores", struct semaphore, ZC_ZFREE_CLEARMEM); os_refgrp_decl(static, sema_refgrp, "semaphore", NULL); /* Forward declarations */ static inline bool semaphore_active(semaphore_t semaphore) { return semaphore->owner != TASK_NULL; } static __inline__ uint64_t semaphore_deadline( unsigned int sec, clock_res_t nsec) { uint64_t abstime; nanotime_to_absolutetime(sec, nsec, &abstime); clock_absolutetime_interval_to_deadline(abstime, &abstime); return abstime; } /* * Routine: semaphore_create * * Creates a semaphore. * The port representing the semaphore is returned as a parameter. */ kern_return_t semaphore_create( task_t task, semaphore_t *new_semaphore, int policy, int value) { semaphore_t s = SEMAPHORE_NULL; *new_semaphore = SEMAPHORE_NULL; if (task == TASK_NULL || value < 0 || (policy & ~SYNC_POLICY_USER_MASK)) { return KERN_INVALID_ARGUMENT; } s = zalloc_id(ZONE_ID_SEMAPHORE, Z_ZERO | Z_WAITOK | Z_NOFAIL); /* * Associate the new semaphore with the task by adding * the new semaphore to the task's semaphore list. */ task_lock(task); /* Check for race with task_terminate */ if (!task->active) { task_unlock(task); zfree_id(ZONE_ID_SEMAPHORE, s); return KERN_INVALID_TASK; } waitq_init(&s->waitq, WQT_QUEUE, policy | SYNC_POLICY_INIT_LOCKED); /* init everything under both the task and semaphore locks */ os_ref_init_raw(&s->ref_count, &sema_refgrp); s->count = value; s->owner = task; enqueue_head(&task->semaphore_list, &s->task_link); task->semaphores_owned++; semaphore_unlock(s); task_unlock(task); *new_semaphore = s; return KERN_SUCCESS; } /* * Routine: semaphore_destroy_internal * * Disassociate a semaphore from its owning task, mark it inactive, * and set any waiting threads running with THREAD_RESTART. * * Conditions: * task is locked * semaphore is owned by the specified task * if semaphore is locked, interrupts are disabled * Returns: * with semaphore unlocked, interrupts enabled */ static void semaphore_destroy_internal( task_t task, semaphore_t semaphore, bool semaphore_locked) { int old_count; /* unlink semaphore from owning task */ assert(semaphore->owner == task); remqueue(&semaphore->task_link); task->semaphores_owned--; spl_t spl_level = 0; if (semaphore_locked) { spl_level = 1; } else { spl_level = splsched(); semaphore_lock(semaphore); } /* * deactivate semaphore under both locks * and then wake up all waiters. */ semaphore->owner = TASK_NULL; old_count = semaphore->count; semaphore->count = 0; if (old_count < 0) { waitq_wakeup64_all_locked(&semaphore->waitq, SEMAPHORE_EVENT, THREAD_RESTART, waitq_flags_splx(spl_level) | WAITQ_UNLOCK); /* waitq/semaphore is unlocked, splx handled */ assert(ml_get_interrupts_enabled()); } else { assert(circle_queue_empty(&semaphore->waitq.waitq_queue)); semaphore_unlock(semaphore); splx(spl_level); assert(ml_get_interrupts_enabled()); } } /* * Routine: semaphore_free * * Free a semaphore that hit a 0 refcount. * * Conditions: * Nothing is locked. */ __attribute__((noinline)) static void semaphore_free( semaphore_t semaphore) { ipc_port_t port; task_t task; /* * Last ref, clean up the port [if any] * associated with the semaphore, destroy * it (if still active) and then free * the semaphore. */ port = semaphore->port; if (IP_VALID(port)) { assert(!port->ip_srights); ipc_kobject_dealloc_port(port, IPC_KOBJECT_NO_MSCOUNT, IKOT_SEMAPHORE); } /* * If the semaphore owned by the current task, * we know the current task can't go away, * so we can take locks in the right order. * * Else we try to take locks in the "wrong" order * but if we fail to, we take a task ref and do it "right". */ task = current_task(); if (semaphore->owner == task) { task_lock(task); if (semaphore->owner == task) { semaphore_destroy_internal(task, semaphore, false); } else { assert(semaphore->owner == TASK_NULL); } task_unlock(task); } else { spl_t spl = splsched(); /* semaphore_destroy_internal will always enable, can't nest */ assert(spl); semaphore_lock(semaphore); task = semaphore->owner; if (task == TASK_NULL) { semaphore_unlock(semaphore); splx(spl); } else if (task_lock_try(task)) { semaphore_destroy_internal(task, semaphore, true); /* semaphore unlocked, interrupts enabled */ task_unlock(task); } else { task_reference(task); semaphore_unlock(semaphore); splx(spl); task_lock(task); if (semaphore->owner == task) { semaphore_destroy_internal(task, semaphore, false); } task_unlock(task); task_deallocate(task); } } waitq_deinit(&semaphore->waitq); zfree_id(ZONE_ID_SEMAPHORE, semaphore); } /* * Routine: semaphore_destroy * * Destroys a semaphore and consume the caller's reference on the * semaphore. */ kern_return_t semaphore_destroy( task_t task, semaphore_t semaphore) { if (semaphore == SEMAPHORE_NULL) { return KERN_INVALID_ARGUMENT; } if (task == TASK_NULL) { semaphore_dereference(semaphore); return KERN_INVALID_ARGUMENT; } if (semaphore->owner == task) { task_lock(task); if (semaphore->owner == task) { semaphore_destroy_internal(task, semaphore, false); } task_unlock(task); } semaphore_dereference(semaphore); return KERN_SUCCESS; } /* * Routine: semaphore_destroy_all * * Destroy all the semaphores associated with a given task. */ void semaphore_destroy_all( task_t task) { semaphore_t semaphore; task_lock(task); qe_foreach_element_safe(semaphore, &task->semaphore_list, task_link) { semaphore_destroy_internal(task, semaphore, false); } task_unlock(task); } /* * Routine: semaphore_signal_internal * * Signals the semaphore as direct. * Assumptions: * Semaphore is locked. */ static kern_return_t semaphore_signal_internal( semaphore_t semaphore, thread_t thread, int options) { kern_return_t kr; spl_t spl_level = splsched(); semaphore_lock(semaphore); if (!semaphore_active(semaphore)) { semaphore_unlock(semaphore); splx(spl_level); return KERN_TERMINATED; } if (thread != THREAD_NULL) { if (semaphore->count < 0) { kr = waitq_wakeup64_thread_and_unlock( &semaphore->waitq, SEMAPHORE_EVENT, thread, THREAD_AWAKENED); /* waitq/semaphore is unlocked */ splx(spl_level); } else { kr = KERN_NOT_WAITING; semaphore_unlock(semaphore); splx(spl_level); } return kr; } if (options & SEMAPHORE_SIGNAL_ALL) { int old_count = semaphore->count; kr = KERN_NOT_WAITING; if (old_count < 0) { semaphore->count = 0; /* always reset */ kr = waitq_wakeup64_all_locked(&semaphore->waitq, SEMAPHORE_EVENT, THREAD_AWAKENED, WAITQ_UNLOCK | waitq_flags_splx(spl_level)); /* waitq / semaphore is unlocked, splx handled */ } else { if (options & SEMAPHORE_SIGNAL_PREPOST) { semaphore->count++; } kr = KERN_SUCCESS; semaphore_unlock(semaphore); splx(spl_level); } return kr; } if (semaphore->count < 0) { waitq_wakeup_flags_t flags = WAITQ_KEEP_LOCKED; if (options & SEMAPHORE_THREAD_HANDOFF) { flags |= WAITQ_HANDOFF; } kr = waitq_wakeup64_one_locked(&semaphore->waitq, SEMAPHORE_EVENT, THREAD_AWAKENED, flags); if (kr == KERN_SUCCESS) { semaphore_unlock(semaphore); splx(spl_level); return KERN_SUCCESS; } else { semaphore->count = 0; /* all waiters gone */ } } if (options & SEMAPHORE_SIGNAL_PREPOST) { semaphore->count++; } semaphore_unlock(semaphore); splx(spl_level); return KERN_NOT_WAITING; } /* * Routine: semaphore_signal_thread * * If the specified thread is blocked on the semaphore, it is * woken up. If a NULL thread was supplied, then any one * thread is woken up. Otherwise the caller gets KERN_NOT_WAITING * and the semaphore is unchanged. */ kern_return_t semaphore_signal_thread( semaphore_t semaphore, thread_t thread) { if (semaphore == SEMAPHORE_NULL) { return KERN_INVALID_ARGUMENT; } return semaphore_signal_internal(semaphore, thread, SEMAPHORE_OPTION_NONE); } /* * Routine: semaphore_signal_thread_trap * * Trap interface to the semaphore_signal_thread function. */ kern_return_t semaphore_signal_thread_trap( struct semaphore_signal_thread_trap_args *args) { mach_port_name_t sema_name = args->signal_name; mach_port_name_t thread_name = args->thread_name; semaphore_t semaphore; thread_t thread; kern_return_t kr; /* * MACH_PORT_NULL is not an error. It means that we want to * select any one thread that is already waiting, but not to * pre-post the semaphore. */ if (thread_name != MACH_PORT_NULL) { thread = port_name_to_thread(thread_name, PORT_INTRANS_OPTIONS_NONE); if (thread == THREAD_NULL) { return KERN_INVALID_ARGUMENT; } } else { thread = THREAD_NULL; } kr = port_name_to_semaphore(sema_name, &semaphore); if (kr == KERN_SUCCESS) { kr = semaphore_signal_internal(semaphore, thread, SEMAPHORE_OPTION_NONE); semaphore_dereference(semaphore); } if (thread != THREAD_NULL) { thread_deallocate(thread); } return kr; } /* * Routine: semaphore_signal * * Traditional (in-kernel client and MIG interface) semaphore * signal routine. Most users will access the trap version. * * This interface in not defined to return info about whether * this call found a thread waiting or not. The internal * routines (and future external routines) do. We have to * convert those into plain KERN_SUCCESS returns. */ kern_return_t semaphore_signal( semaphore_t semaphore) { kern_return_t kr; if (semaphore == SEMAPHORE_NULL) { return KERN_INVALID_ARGUMENT; } kr = semaphore_signal_internal(semaphore, THREAD_NULL, SEMAPHORE_SIGNAL_PREPOST); if (kr == KERN_NOT_WAITING) { return KERN_SUCCESS; } return kr; } /* * Routine: semaphore_signal_trap * * Trap interface to the semaphore_signal function. */ kern_return_t semaphore_signal_trap( struct semaphore_signal_trap_args *args) { mach_port_name_t sema_name = args->signal_name; return semaphore_signal_internal_trap(sema_name); } kern_return_t semaphore_signal_internal_trap(mach_port_name_t sema_name) { semaphore_t semaphore; kern_return_t kr; kr = port_name_to_semaphore(sema_name, &semaphore); if (kr == KERN_SUCCESS) { kr = semaphore_signal_internal(semaphore, THREAD_NULL, SEMAPHORE_SIGNAL_PREPOST); semaphore_dereference(semaphore); if (kr == KERN_NOT_WAITING) { kr = KERN_SUCCESS; } } return kr; } /* * Routine: semaphore_signal_all * * Awakens ALL threads currently blocked on the semaphore. * The semaphore count returns to zero. */ kern_return_t semaphore_signal_all( semaphore_t semaphore) { kern_return_t kr; if (semaphore == SEMAPHORE_NULL) { return KERN_INVALID_ARGUMENT; } kr = semaphore_signal_internal(semaphore, THREAD_NULL, SEMAPHORE_SIGNAL_ALL); if (kr == KERN_NOT_WAITING) { return KERN_SUCCESS; } return kr; } /* * Routine: semaphore_signal_all_trap * * Trap interface to the semaphore_signal_all function. */ kern_return_t semaphore_signal_all_trap( struct semaphore_signal_all_trap_args *args) { mach_port_name_t sema_name = args->signal_name; semaphore_t semaphore; kern_return_t kr; kr = port_name_to_semaphore(sema_name, &semaphore); if (kr == KERN_SUCCESS) { kr = semaphore_signal_internal(semaphore, THREAD_NULL, SEMAPHORE_SIGNAL_ALL); semaphore_dereference(semaphore); if (kr == KERN_NOT_WAITING) { kr = KERN_SUCCESS; } } return kr; } /* * Routine: semaphore_convert_wait_result * * Generate the return code after a semaphore wait/block. It * takes the wait result as an input and coverts that to an * appropriate result. */ static kern_return_t semaphore_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("semaphore_block"); return KERN_FAILURE; } } /* * Routine: semaphore_wait_continue * * Common continuation routine after waiting on a semphore. * It returns directly to user space. */ static void semaphore_wait_continue(void *arg __unused, wait_result_t wr) { thread_t self = current_thread(); semaphore_cont_t caller_cont = self->sth_continuation; assert(self->sth_waitsemaphore != SEMAPHORE_NULL); semaphore_dereference(self->sth_waitsemaphore); if (self->sth_signalsemaphore != SEMAPHORE_NULL) { semaphore_dereference(self->sth_signalsemaphore); } assert(self->handoff_thread == THREAD_NULL); assert(caller_cont != NULL); (*caller_cont)(semaphore_convert_wait_result(wr)); } /* * Routine: semaphore_wait_internal * * Decrements the semaphore count by one. If the count is * negative after the decrement, the calling thread blocks * (possibly at a continuation and/or with a timeout). * * Assumptions: * The reference * A reference is held on the signal semaphore. */ static kern_return_t semaphore_wait_internal( semaphore_t wait_semaphore, semaphore_t signal_semaphore, uint64_t deadline, int option, semaphore_cont_t caller_cont) { int wait_result; spl_t spl_level; kern_return_t kr = KERN_ALREADY_WAITING; thread_t self = current_thread(); thread_t handoff_thread = THREAD_NULL; int semaphore_signal_options = SEMAPHORE_SIGNAL_PREPOST; thread_handoff_option_t handoff_option = THREAD_HANDOFF_NONE; spl_level = splsched(); semaphore_lock(wait_semaphore); if (!semaphore_active(wait_semaphore)) { kr = KERN_TERMINATED; } else if (wait_semaphore->count > 0) { wait_semaphore->count--; kr = KERN_SUCCESS; } else if (option & SEMAPHORE_TIMEOUT_NOBLOCK) { kr = KERN_OPERATION_TIMED_OUT; } else { wait_semaphore->count = -1; /* we don't keep an actual count */ thread_set_pending_block_hint(self, kThreadWaitSemaphore); (void)waitq_assert_wait64_locked( &wait_semaphore->waitq, SEMAPHORE_EVENT, THREAD_ABORTSAFE, TIMEOUT_URGENCY_USER_NORMAL, deadline, TIMEOUT_NO_LEEWAY, self); semaphore_signal_options |= SEMAPHORE_THREAD_HANDOFF; } semaphore_unlock(wait_semaphore); splx(spl_level); /* * wait_semaphore is unlocked so we are free to go ahead and * signal the signal_semaphore (if one was provided). */ if (signal_semaphore != SEMAPHORE_NULL) { kern_return_t signal_kr; /* * lock the signal semaphore reference we got and signal it. * This will NOT block (we cannot block after having asserted * our intention to wait above). */ signal_kr = semaphore_signal_internal(signal_semaphore, THREAD_NULL, semaphore_signal_options); if (signal_kr == KERN_NOT_WAITING) { assert(self->handoff_thread == THREAD_NULL); signal_kr = KERN_SUCCESS; } else if (signal_kr == KERN_TERMINATED) { /* * Uh!Oh! The semaphore we were to signal died. * We have to get ourselves out of the wait in * case we get stuck here forever (it is assumed * that the semaphore we were posting is gating * the decision by someone else to post the * semaphore we are waiting on). People will * discover the other dead semaphore soon enough. * If we got out of the wait cleanly (someone * already posted a wakeup to us) then return that * (most important) result. Otherwise, * return the KERN_TERMINATED status. */ assert(self->handoff_thread == THREAD_NULL); clear_wait(self, THREAD_INTERRUPTED); kr = semaphore_convert_wait_result(self->wait_result); if (kr == KERN_ABORTED) { kr = KERN_TERMINATED; } } } /* * If we had an error, or we didn't really need to wait we can * return now that we have signalled the signal semaphore. */ if (kr != KERN_ALREADY_WAITING) { assert(self->handoff_thread == THREAD_NULL); return kr; } if (self->handoff_thread) { handoff_thread = self->handoff_thread; self->handoff_thread = THREAD_NULL; handoff_option = THREAD_HANDOFF_SETRUN_NEEDED; } /* * Now, we can block. If the caller supplied a continuation * pointer of his own for after the block, block with the * appropriate semaphore continuation. This will gather the * semaphore results, release references on the semaphore(s), * and then call the caller's continuation. */ if (caller_cont) { self->sth_continuation = caller_cont; self->sth_waitsemaphore = wait_semaphore; self->sth_signalsemaphore = signal_semaphore; thread_handoff_parameter(handoff_thread, semaphore_wait_continue, NULL, handoff_option); } else { wait_result = thread_handoff_deallocate(handoff_thread, handoff_option); } assert(self->handoff_thread == THREAD_NULL); return semaphore_convert_wait_result(wait_result); } /* * Routine: semaphore_wait * * Traditional (non-continuation) interface presented to * in-kernel clients to wait on a semaphore. */ kern_return_t semaphore_wait( semaphore_t semaphore) { if (semaphore == SEMAPHORE_NULL) { return KERN_INVALID_ARGUMENT; } return semaphore_wait_internal(semaphore, SEMAPHORE_NULL, 0ULL, SEMAPHORE_OPTION_NONE, SEMAPHORE_CONT_NULL); } kern_return_t semaphore_wait_noblock( semaphore_t semaphore) { if (semaphore == SEMAPHORE_NULL) { return KERN_INVALID_ARGUMENT; } return semaphore_wait_internal(semaphore, SEMAPHORE_NULL, 0ULL, SEMAPHORE_TIMEOUT_NOBLOCK, SEMAPHORE_CONT_NULL); } kern_return_t semaphore_wait_deadline( semaphore_t semaphore, uint64_t deadline) { if (semaphore == SEMAPHORE_NULL) { return KERN_INVALID_ARGUMENT; } return semaphore_wait_internal(semaphore, SEMAPHORE_NULL, deadline, SEMAPHORE_OPTION_NONE, SEMAPHORE_CONT_NULL); } /* * Trap: semaphore_wait_trap * * Trap version of semaphore wait. Called on behalf of user-level * clients. */ kern_return_t semaphore_wait_trap( struct semaphore_wait_trap_args *args) { return semaphore_wait_trap_internal(args->wait_name, thread_syscall_return); } kern_return_t semaphore_wait_trap_internal( mach_port_name_t name, semaphore_cont_t caller_cont) { semaphore_t semaphore; kern_return_t kr; kr = port_name_to_semaphore(name, &semaphore); if (kr == KERN_SUCCESS) { kr = semaphore_wait_internal(semaphore, SEMAPHORE_NULL, 0ULL, SEMAPHORE_OPTION_NONE, caller_cont); semaphore_dereference(semaphore); } return kr; } /* * Routine: semaphore_timedwait * * Traditional (non-continuation) interface presented to * in-kernel clients to wait on a semaphore with a timeout. * * A timeout of {0,0} is considered non-blocking. */ kern_return_t semaphore_timedwait( semaphore_t semaphore, mach_timespec_t wait_time) { int option = SEMAPHORE_OPTION_NONE; uint64_t deadline = 0; if (semaphore == SEMAPHORE_NULL) { return KERN_INVALID_ARGUMENT; } if (BAD_MACH_TIMESPEC(&wait_time)) { return KERN_INVALID_VALUE; } if (wait_time.tv_sec == 0 && wait_time.tv_nsec == 0) { option = SEMAPHORE_TIMEOUT_NOBLOCK; } else { deadline = semaphore_deadline(wait_time.tv_sec, wait_time.tv_nsec); } return semaphore_wait_internal(semaphore, SEMAPHORE_NULL, deadline, option, SEMAPHORE_CONT_NULL); } /* * Trap: semaphore_timedwait_trap * * Trap version of a semaphore_timedwait. The timeout parameter * is passed in two distinct parts and re-assembled on this side * of the trap interface (to accomodate calling conventions that * pass structures as pointers instead of inline in registers without * having to add a copyin). * * A timeout of {0,0} is considered non-blocking. */ kern_return_t semaphore_timedwait_trap( struct semaphore_timedwait_trap_args *args) { return semaphore_timedwait_trap_internal(args->wait_name, args->sec, args->nsec, thread_syscall_return); } kern_return_t semaphore_timedwait_trap_internal( mach_port_name_t name, unsigned int sec, clock_res_t nsec, semaphore_cont_t caller_cont) { semaphore_t semaphore; mach_timespec_t wait_time; kern_return_t kr; wait_time.tv_sec = sec; wait_time.tv_nsec = nsec; if (BAD_MACH_TIMESPEC(&wait_time)) { return KERN_INVALID_VALUE; } kr = port_name_to_semaphore(name, &semaphore); if (kr == KERN_SUCCESS) { int option = SEMAPHORE_OPTION_NONE; uint64_t deadline = 0; if (sec == 0 && nsec == 0) { option = SEMAPHORE_TIMEOUT_NOBLOCK; } else { deadline = semaphore_deadline(sec, nsec); } kr = semaphore_wait_internal(semaphore, SEMAPHORE_NULL, deadline, option, caller_cont); semaphore_dereference(semaphore); } return kr; } /* * Routine: semaphore_wait_signal * * Atomically register a wait on a semaphore and THEN signal * another. This is the in-kernel entry point that does not * block at a continuation and does not free a signal_semaphore * reference. */ kern_return_t semaphore_wait_signal( semaphore_t wait_semaphore, semaphore_t signal_semaphore) { if (wait_semaphore == SEMAPHORE_NULL) { return KERN_INVALID_ARGUMENT; } return semaphore_wait_internal(wait_semaphore, signal_semaphore, 0ULL, SEMAPHORE_OPTION_NONE, SEMAPHORE_CONT_NULL); } /* * Trap: semaphore_wait_signal_trap * * Atomically register a wait on a semaphore and THEN signal * another. This is the trap version from user space. */ kern_return_t semaphore_wait_signal_trap( struct semaphore_wait_signal_trap_args *args) { return semaphore_wait_signal_trap_internal(args->wait_name, args->signal_name, thread_syscall_return); } kern_return_t semaphore_wait_signal_trap_internal( mach_port_name_t wait_name, mach_port_name_t signal_name, semaphore_cont_t caller_cont) { semaphore_t wait_semaphore; semaphore_t signal_semaphore; kern_return_t kr; kr = port_name_to_semaphore(signal_name, &signal_semaphore); if (kr == KERN_SUCCESS) { kr = port_name_to_semaphore(wait_name, &wait_semaphore); if (kr == KERN_SUCCESS) { kr = semaphore_wait_internal(wait_semaphore, signal_semaphore, 0ULL, SEMAPHORE_OPTION_NONE, caller_cont); semaphore_dereference(wait_semaphore); } semaphore_dereference(signal_semaphore); } return kr; } /* * Routine: semaphore_timedwait_signal * * Atomically register a wait on a semaphore and THEN signal * another. This is the in-kernel entry point that does not * block at a continuation. * * A timeout of {0,0} is considered non-blocking. */ kern_return_t semaphore_timedwait_signal( semaphore_t wait_semaphore, semaphore_t signal_semaphore, mach_timespec_t wait_time) { int option = SEMAPHORE_OPTION_NONE; uint64_t deadline = 0; if (wait_semaphore == SEMAPHORE_NULL) { return KERN_INVALID_ARGUMENT; } if (BAD_MACH_TIMESPEC(&wait_time)) { return KERN_INVALID_VALUE; } if (wait_time.tv_sec == 0 && wait_time.tv_nsec == 0) { option = SEMAPHORE_TIMEOUT_NOBLOCK; } else { deadline = semaphore_deadline(wait_time.tv_sec, wait_time.tv_nsec); } return semaphore_wait_internal(wait_semaphore, signal_semaphore, deadline, option, SEMAPHORE_CONT_NULL); } /* * Trap: semaphore_timedwait_signal_trap * * Atomically register a timed wait on a semaphore and THEN signal * another. This is the trap version from user space. */ kern_return_t semaphore_timedwait_signal_trap( struct semaphore_timedwait_signal_trap_args *args) { return semaphore_timedwait_signal_trap_internal(args->wait_name, args->signal_name, args->sec, args->nsec, thread_syscall_return); } kern_return_t semaphore_timedwait_signal_trap_internal( mach_port_name_t wait_name, mach_port_name_t signal_name, unsigned int sec, clock_res_t nsec, semaphore_cont_t caller_cont) { semaphore_t wait_semaphore; semaphore_t signal_semaphore; mach_timespec_t wait_time; kern_return_t kr; wait_time.tv_sec = sec; wait_time.tv_nsec = nsec; if (BAD_MACH_TIMESPEC(&wait_time)) { return KERN_INVALID_VALUE; } kr = port_name_to_semaphore(signal_name, &signal_semaphore); if (kr == KERN_SUCCESS) { kr = port_name_to_semaphore(wait_name, &wait_semaphore); if (kr == KERN_SUCCESS) { int option = SEMAPHORE_OPTION_NONE; uint64_t deadline = 0; if (sec == 0 && nsec == 0) { option = SEMAPHORE_TIMEOUT_NOBLOCK; } else { deadline = semaphore_deadline(sec, nsec); } kr = semaphore_wait_internal(wait_semaphore, signal_semaphore, deadline, option, caller_cont); semaphore_dereference(wait_semaphore); } semaphore_dereference(signal_semaphore); } return kr; } /* * Routine: semaphore_reference * * Take out a reference on a semaphore. This keeps the data structure * in existence (but the semaphore may be deactivated). */ void semaphore_reference( semaphore_t semaphore) { zone_id_require(ZONE_ID_SEMAPHORE, sizeof(*semaphore), semaphore); os_ref_retain_raw(&semaphore->ref_count, &sema_refgrp); } /* * Routine: semaphore_dereference * * Release a reference on a semaphore. If this is the last reference, * the semaphore data structure is deallocated. */ void semaphore_dereference( semaphore_t semaphore) { if (semaphore == NULL) { return; } if (os_ref_release_raw(&semaphore->ref_count, &sema_refgrp) == 0) { return semaphore_free(semaphore); } } void kdp_sema_find_owner(struct waitq *waitq, __assert_only event64_t event, thread_waitinfo_t * waitinfo) { semaphore_t sem = __container_of(waitq, struct semaphore, waitq); assert(event == SEMAPHORE_EVENT); zone_id_require(ZONE_ID_SEMAPHORE, sizeof(*sem), sem); waitinfo->context = VM_KERNEL_UNSLIDE_OR_PERM(sem->port); if (sem->owner) { waitinfo->owner = pid_from_task(sem->owner); } } /* * Routine: port_name_to_semaphore * Purpose: * Convert from a port name in the current space to a semaphore. * Produces a semaphore ref, which may be null. * Conditions: * Nothing locked. */ kern_return_t port_name_to_semaphore( mach_port_name_t name, semaphore_t *semaphorep) { ipc_port_t port; kern_return_t kr; if (!MACH_PORT_VALID(name)) { *semaphorep = SEMAPHORE_NULL; return KERN_INVALID_NAME; } kr = ipc_port_translate_send(current_space(), name, &port); if (kr != KERN_SUCCESS) { *semaphorep = SEMAPHORE_NULL; return kr; } /* have the port locked */ *semaphorep = convert_port_to_semaphore(port); if (*semaphorep == SEMAPHORE_NULL) { /* the port is valid, but doesn't denote a semaphore */ kr = KERN_INVALID_CAPABILITY; } else { kr = KERN_SUCCESS; } ip_mq_unlock(port); return kr; } /* * Routine: convert_port_to_semaphore * Purpose: * Convert from a port to a semaphore. * Doesn't consume the port [send-right] ref; * produces a semaphore ref, which may be null. * Conditions: * Caller has a send-right reference to port. * Port may or may not be locked. */ semaphore_t convert_port_to_semaphore(ipc_port_t port) { semaphore_t semaphore = SEMAPHORE_NULL; if (IP_VALID(port)) { semaphore = ipc_kobject_get_stable(port, IKOT_SEMAPHORE); if (semaphore != SEMAPHORE_NULL) { zone_id_require(ZONE_ID_SEMAPHORE, sizeof(struct semaphore), semaphore); semaphore_reference(semaphore); } } return semaphore; } /* * Routine: convert_semaphore_to_port * Purpose: * Convert a semaphore reference to a send right to a * semaphore port. * * Consumes the semaphore reference. If the semaphore * port currently has no send rights (or doesn't exist * yet), the reference is donated to the port to represent * all extant send rights collectively. */ ipc_port_t convert_semaphore_to_port(semaphore_t semaphore) { if (semaphore == SEMAPHORE_NULL) { return IP_NULL; } zone_id_require(ZONE_ID_SEMAPHORE, sizeof(struct semaphore), semaphore); /* * make a send right and donate our reference for * semaphore_no_senders if this is the first send right */ if (!ipc_kobject_make_send_lazy_alloc_port(&semaphore->port, semaphore, IKOT_SEMAPHORE)) { semaphore_dereference(semaphore); } return semaphore->port; } /* * Routine: semaphore_no_senders * Purpose: * Called whenever the Mach port system detects no-senders * on the semaphore port. * * When a send-right is first created, a no-senders * notification is armed (and a semaphore reference is donated). * * A no-senders notification will be posted when no one else holds a * send-right (reference) to the semaphore's port. This notification function * will consume the semaphore reference donated to the extant collection of * send-rights. */ static void semaphore_no_senders(ipc_port_t port, __unused mach_port_mscount_t mscount) { semaphore_t semaphore = ipc_kobject_get_stable(port, IKOT_SEMAPHORE); assert(semaphore != SEMAPHORE_NULL); assert(semaphore->port == port); semaphore_dereference(semaphore); } IPC_KOBJECT_DEFINE(IKOT_SEMAPHORE, .iko_op_movable_send = true, .iko_op_stable = true, .iko_op_no_senders = semaphore_no_senders); |