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 | /* * Copyright (c) 2022 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@ */ #ifndef _MACH_EXCLAVES_H #define _MACH_EXCLAVES_H #if defined(PRIVATE) #include <os/base.h> #include <mach/mach_types.h> #include <mach/mach_param.h> #if !defined(KERNEL) #include <AvailabilityInternalPrivate.h> #endif /* defined(KERNEL) */ __BEGIN_DECLS typedef uint64_t exclaves_id_t; typedef uint64_t exclaves_tag_t; typedef uint64_t exclaves_error_t; /*! * @enum exclaves_sensor_status_t * * @brief * The status of an exclaves sensor. * * Indicates if data from this sensor can currently be accessed. * If the data cannot be accessed, exclaves_sensor_start() must be * called (with an accompanying exclaves_sensor_stop()). * * If the data cannot be accessed, then reading sensor data will * only result in 0s. */ OS_ENUM(exclaves_sensor_status, uint32_t, EXCLAVES_SENSOR_STATUS_ALLOWED = 1, EXCLAVES_SENSOR_STATUS_DENIED = 2, EXCLAVES_SENSOR_STATUS_CONTROL = 3, EXCLAVES_SENSOR_STATUS_PENDING = 4, ); OS_CLOSED_OPTIONS(exclaves_buffer_perm, uint32_t, EXCLAVES_BUFFER_PERM_READ = 1, EXCLAVES_BUFFER_PERM_WRITE = 2, ); OS_ENUM(exclaves_boot_stage, uint32_t, EXCLAVES_BOOT_STAGE_NONE = ~0u, EXCLAVES_BOOT_STAGE_2 = 0, /* Use EXCLAVECORE instead. */ EXCLAVES_BOOT_STAGE_EXCLAVECORE = 0, EXCLAVES_BOOT_STAGE_EXCLAVEKIT = 100, /* The EXCLAVEKIT boot stage failed in some way. */ EXCLAVES_BOOT_STAGE_FAILED = 200, ); OS_ENUM(exclaves_status, uint8_t, EXCLAVES_STATUS_NOT_STARTED = 0x00, /* Obsolete. Never used. */ EXCLAVES_STATUS_AVAILABLE = 0x01, EXCLAVES_STATUS_FAILED = 0xFE, /* Obsolete. Never used. */ EXCLAVES_STATUS_NOT_SUPPORTED = 0xFF, ); #define MAX_CONCLAVE_RESOURCE_NUM 50 /* * Having the ability to relax certain exclaves requirements is useful for * development. * These requirements are optional only in the sense that the system can boot * without them and userspace can run. * The system isn't considered fully functional if any of these requirements are * not working. * By default and on RELEASE if any of these requirements fail it will cause a * panic or failure. * Requirements can be relaxed via a boot-arg/tunable: * "exclaves_relaxed_requirements" * The current value can read via a sysctl: * "kern.exclaves_relaxed_requirements" */ OS_CLOSED_OPTIONS(exclaves_requirement, uint64_t, /* * Exclaves stackshot support. * Also includes other "inspection" functionality like exclaves kperf * data and related. */ EXCLAVES_R_STACKSHOT = 0x04, /* Exclaves logging. * Without this, no exclaves logs will be available. */ EXCLAVES_R_LOG_SERVER = 0x08, /* * Exclaves indicator controller. * Other than supporting the various exclaves_sensor APIs, EIC is also * necessary to allow the use of Audio Buffer/Audio Memory resources. */ EXCLAVES_R_EIC = 0x10, /* * Conclave support. * If this requirement is relaxed it allows tasks to attach to conclaves * even though there is no corresponding conclave manager available. * No longer enforced. */ EXCLAVES_R_CONCLAVE = 0x20, /* * ExclaveKit initialization. * If relaxed and exclavekit initialization fails, continue on without * panicking. All conclave related functionality will fail. */ EXCLAVES_R_EXCLAVEKIT = 0x40, /* * Conclave resource support. * If this requirement is relaxed it allows tasks access to kernel domain * resources when not actually attched to a conclave (see * EXCLAVES_R_CONCLAVE above). */ EXCLAVES_R_CONCLAVE_RESOURCES = 0x80, /* * Storage support. * If relaxed and storage initialization fails, continue on without * panicking. All storage upcalls will fail. */ EXCLAVES_R_STORAGE = 0x100, /* * Support for performance tests. * If relaxed, it's not expected that performance tests will run. */ EXCLAVES_R_TEST_PERF = 0x200, /* * Support for stress tests. * If relaxed, it's not expected that stress tests will run. */ EXCLAVES_R_TEST_STRESS = 0x400, ); #if !defined(KERNEL) /*! * @function exclaves_endpoint_call * * @abstract * Perform RPC to an exclaves endpoint. * * @param port * Reserved, must be MACH_PORT_NULL for now. * * @param endpoint_id * Identifier of exclaves endpoint to send RPC to. * * @param msg_buffer * Pointer to exclaves IPC buffer. * * @param size * Size of specified exclaves IPC buffer. * * @param tag * In-out parameter for exclaves IPC tag. * * @param error * Out parameter for exclaves IPC error. * * @result * KERN_SUCCESS or mach system call error code. */ SPI_AVAILABLE(macos(14.4), ios(17.4), tvos(17.4), watchos(10.4)) kern_return_t exclaves_endpoint_call(mach_port_t port, exclaves_id_t endpoint_id, mach_vm_address_t msg_buffer, mach_vm_size_t size, exclaves_tag_t *tag, exclaves_error_t *error); /*! * @function exclaves_outbound_buffer_create * * @abstract * Setup access by xnu to a pre-defined exclaves outbound memory buffer and * return a mach port for it. The buffer can only be read from. * * @param port * Reserved, must be MACH_PORT_NULL for now. * * @param buffer_name * String name of buffer to operate on. * * @param size * Size of requested outbound buffer. * * @param outbound_buffer_port * Out parameter filled in with mach port name for the newly created outbound * buffer object, must be mach_port_deallocate()d to tear down the access to * the outbound buffer. * * @result * KERN_SUCCESS or mach system call error code. */ SPI_AVAILABLE(macos(14.4), ios(17.4), tvos(17.4), watchos(10.4)) kern_return_t exclaves_outbound_buffer_create(mach_port_t port, const char *buffer_name, mach_vm_size_t size, mach_port_t *outbound_buffer_port); /*! * @function exclaves_outbound_buffer_copyout * * @abstract * Copy out to specified userspace buffer from previously setup exclaves * outbound memory buffer. * * Two size/offsets are provided to faciliate fast copy that wraps around a ring * buffer that could be placed arbitrarily in the outbound memory region. * * @param outbound_buffer_port * A outbound buffer port name returned from exclaves_outbound_buffer_create() * * @param dst_buffer * Pointer to userspace buffer to copy out from outbound buffer. * * @param size1 * Number of bytes to copy (<= size of specified userspace buffer). * * @param offset1 * Offset in outbound memory buffer to start copy at. * * @param size2 * Number of bytes to copy (<= size of specified userspace buffer). Can be 0, * in which case the 2nd range is not copied. * * @param offset2 * Offset in outbound memory buffer to start copy at. * * @result * KERN_SUCCESS or mach system call error code. */ SPI_AVAILABLE(macos(14.4), ios(17.4), tvos(17.4), watchos(10.4)) kern_return_t exclaves_outbound_buffer_copyout(mach_port_t outbound_buffer_port, mach_vm_address_t dst_buffer, mach_vm_size_t size1, mach_vm_size_t offset1, mach_vm_size_t size2, mach_vm_size_t offset2); /*! * @function exclaves_inbound_buffer_create * * @abstract * Setup access by xnu to a pre-defined exclaves inbound memory buffer and * return a mach port for it. The buffer can be both read from and written to. * * @param port * Reserved, must be MACH_PORT_NULL for now. * * @param buffer_name * String name of buffer to operate on. * * @param size * Size of requested inbound buffer. * * @param inbound_buffer_port * Out parameter filled in with mach port name for the newly created inbound * buffer object, must be mach_port_deallocate()d to tear down the access to * the inbound buffer. * * @result * KERN_SUCCESS or mach system call error code. */ SPI_AVAILABLE(macos(14.4), ios(17.4), tvos(17.4), watchos(10.4)) kern_return_t exclaves_inbound_buffer_create(mach_port_t port, const char *buffer_name, mach_vm_size_t size, mach_port_t *inbound_buffer_port); /*! * @function exclaves_inbound_buffer_copyin * * @abstract * Copy from specified userspace buffer into previously setup inbound exclaves * inbound memory buffer. * * Two size/offsets are provided to faciliate fast copy that wraps around a ring * buffer that could be placed arbitrarily in the inbound memory region. * * @param inbound_buffer_port * An inbound buffer port name returned from exclaves_inbound_buffer_create() * * @param src_buffer * Pointer to userspace buffer to copy into inbound buffer. * * @param size1 * Number of bytes to copy (<= size of specified userspace buffer). * * @param offset1 * Offset in inbound memory buffer to start copy at. * * @param size2 * Number of bytes to copy (<= size of specified userspace buffer). Can be 0, * in which case the 2nd range is not copied. * * @param offset2 * Offset in inbound memory buffer to start copy at. * * @result * KERN_SUCCESS or mach system call error code. Some buffers are read-only and * calls to exclaves_inbound_buffer_copyin() will result in * KERN_PROTECTION_FAILURE. */ SPI_AVAILABLE(macos(14.4), ios(17.4), tvos(17.4), watchos(10.4)) kern_return_t exclaves_inbound_buffer_copyin(mach_port_t inbound_buffer_port, mach_vm_address_t src_buffer, mach_vm_size_t size1, mach_vm_size_t offset1, mach_vm_size_t size2, mach_vm_size_t offset2); /*! * @function exclaves_named_buffer_create * * @abstract * Setup access by xnu to a pre-defined named exclaves shared memory buffer * and return a mach port for it. * * @param port * Reserved, must be MACH_PORT_NULL for now. * * @param buffer_id * Identifier of named buffer to operate on. * * @param size * Size of requested named buffer. * * @param named_buffer_port * Out parameter filled in with mach port name for the newly created named * buffer object, must be mach_port_deallocate()d to tear down the access to * the named buffer. * * @result * KERN_SUCCESS or mach system call error code. */ SPI_AVAILABLE(macos(14.4), ios(17.4), tvos(17.4), watchos(10.4)) kern_return_t exclaves_named_buffer_create(mach_port_t port, exclaves_id_t buffer_id, mach_vm_size_t size, mach_port_t* named_buffer_port); /*! * @function exclaves_named_buffer_copyin * * @abstract * Copy from specified userspace buffer into previously setup named exclaves * shared memory buffer. * * @param named_buffer_port * A named buffer port name returned from exclaves_named_buffer_create() * * @param src_buffer * Pointer to userspace buffer to copy into named buffer. * * @param size * Number of bytes to copy (<= size of specified userspace buffer). * * @param offset * Offset in shared memory buffer to start copy at. * * @result * KERN_SUCCESS or mach system call error code. */ SPI_AVAILABLE(macos(14.4), ios(17.4), tvos(17.4), watchos(10.4)) kern_return_t exclaves_named_buffer_copyin(mach_port_t named_buffer_port, mach_vm_address_t src_buffer, mach_vm_size_t size, mach_vm_size_t offset); /*! * @function exclaves_named_buffer_copyout * * @abstract * Copy out to specified userspace buffer from previously setup named exclaves * shared memory buffer. * * @param named_buffer_port * A named buffer port name returned from exclaves_named_buffer_create() * * @param dst_buffer * Pointer to userspace buffer to copy out from named buffer. * * @param size * Number of bytes to copy (<= size of specified userspace buffer). * * @param offset * Offset in shared memory buffer to start copy at. * * @result * KERN_SUCCESS or mach system call error code. */ SPI_AVAILABLE(macos(14.4), ios(17.4), tvos(17.4), watchos(10.4)) kern_return_t exclaves_named_buffer_copyout(mach_port_t named_buffer_port, mach_vm_address_t dst_buffer, mach_vm_size_t size, mach_vm_size_t offset); /*! * @function exclaves_boot * * @abstract * Perform exclaves boot. * * @param port * Reserved, must be MACH_PORT_NULL for now. * * @param boot_stage * Stage of boot requested * * @result * KERN_SUCCESS or mach system call error code. */ SPI_AVAILABLE(macos(14.4), ios(17.4), tvos(17.4), watchos(10.4)) kern_return_t exclaves_boot(mach_port_t port, exclaves_boot_stage_t boot_stage); /*! * @function exclaves_audio_buffer_create * * @abstract * Setup access by xnu to a pre-defined named exclaves audio shared memory * buffer and return a mach port for it. * * @param port * Reserved, must be MACH_PORT_NULL for now. * * @param buffer_name * String name of buffer to operate on. * * @param size * Size of requested named buffer. * * @param audio_buffer_port * Out parameter filled in with mach port name for the newly created named * buffer object, must be mach_port_deallocate()d to tear down the access to * the named buffer. * * Audio buffers are distiguished from general named buffers as shared memory * is arbitrated by the EIC. * * @result * KERN_SUCCESS or mach system call error code. */ SPI_AVAILABLE(macos(14.4), ios(17.4), tvos(17.4), watchos(10.4)) kern_return_t exclaves_audio_buffer_create(mach_port_t port, const char * buffer_name, mach_vm_size_t size, mach_port_t *audio_buffer_port); /*! * @function exclaves_audio_buffer_copyout * * @abstract * Copy out to specified userspace buffer from previously setup named exclaves * audio shared memory buffer. * * Audio buffers are arbitrated via the EIC and copies will return 0's when * access to the sensor is not granted. * * Two size/offsets are provided to faciliate fast copy that wraps around a * ring buffer that could be placed arbitrarily in the shared memory region. * * @param audio_buffer_port * A named buffer port name returned from exclaves_audio_buffer_create() * * @param dst_buffer * Pointer to userspace buffer to copy out from named buffer. * * @param size1 * Number of bytes to copy (<= size of specified userspace buffer). * * @param offset1 * Offset in shared memory buffer to start copy at. * * @param size2 * Number of bytes to copy (<= size of specified userspace buffer). Can be 0, * in which case the 2nd range is not copied. * * @param offset2 * Offset in shared memory buffer to start copy at. * * @result * KERN_SUCCESS or mach system call error code. */ SPI_AVAILABLE(macos(14.4), ios(17.4), tvos(17.4), watchos(10.4)) kern_return_t exclaves_audio_buffer_copyout(mach_port_t audio_buffer_port, mach_vm_address_t dst_buffer, mach_vm_size_t size1, mach_vm_size_t offset1, mach_vm_size_t size2, mach_vm_size_t offset2); /*! * @function exclaves_audio_buffer_copyout_with_status * * @abstract * Identical to exclaves_audio_buffer_copyout but also provides a means to get * the sensor status. * * Audio buffers are arbitrated via the EIC and copies will return 0's when * access to the sensor is not granted. * * Two size/offsets are provided to faciliate fast copy that wraps around a * ring buffer that could be placed arbitrarily in the shared memory region. * * @param audio_buffer_port * A named buffer port name returned from exclaves_audio_buffer_create() * * @param dst_buffer * Pointer to userspace buffer to copy out from named buffer. * * @param size1 * Number of bytes to copy (<= size of specified userspace buffer). * * @param offset1 * Offset in shared memory buffer to start copy at. * * @param size2 * Number of bytes to copy (<= size of specified userspace buffer). Can be 0, * in which case the 2nd range is not copied. * * @param offset2 * Offset in shared memory buffer to start copy at. * * @param status * Out parameter filled in with the sensor status if the copyout succeeds. * * @result * KERN_SUCCESS or mach system call error code. */ SPI_AVAILABLE(macos(15.2), ios(18.2), tvos(18.2), watchos(11.2)) kern_return_t exclaves_audio_buffer_copyout_with_status(mach_port_t audio_buffer_port, mach_vm_address_t dst_buffer, mach_vm_size_t size1, mach_vm_size_t offset1, mach_vm_size_t size2, mach_vm_size_t offset2, exclaves_sensor_status_t *status); /*! * @function exclaves_sensor_create * * @abstract * Setup access by xnu to a pre-defined named sensor * * @param port * Reserved, must be MACH_PORT_NULL for now. * * @param sensor_name * String name of sensor to operate on. * * @param sensor_port * Out parameter filled in with mach port name for the newly created * sensor object, must be mach_port_deallocate()d to tear down the access to * the sensor. * * @result * KERN_SUCCESS or mach system call error code. */ SPI_AVAILABLE(macos(14.4), ios(17.4), tvos(17.4), watchos(10.4)) kern_return_t exclaves_sensor_create(mach_port_t port, const char *sensor_name, mach_port_t *sensor_port); /*! * @function exclaves_sensor_start * * @abstract * Start accessing a sensor and cause any indicators to display. * * If multiple clients start the same sensor, the sensor will only * actually start on the first client. * * @param sensor_port * A sensor buffer port name returned from exclaves_sensor_create() * for the sensor. * * @param flags to pass to the implementation. Must be 0 for now. * * @param sensor_status * Out parameter filled with the sensor status. * * @result * KERN_SUCCESS or mach system call error code. */ SPI_AVAILABLE(macos(14.4), ios(17.4), tvos(17.4), watchos(10.4)) kern_return_t exclaves_sensor_start(mach_port_t sensor_port, uint64_t flags, exclaves_sensor_status_t *sensor_status); /*! * @function exclaves_sensor_stop * * @abstract * Stop accessing a sensor and cause any indicators to stop displaying access. * * If multiple clients are accessing the sensor, sensor access will * continue to display until all clients have called this function. * * @param sensor_port * A sensor buffer port name returned from exclaves_sensor_create() * for the sensor. * * @param flags to pass to the implementation. Must be 0 for now. * * @param sensor_status * Out parameter filled with the sensor status. * * @result * KERN_SUCCESS or mach system call error code. */ SPI_AVAILABLE(macos(14.4), ios(17.4), tvos(17.4), watchos(10.4)) kern_return_t exclaves_sensor_stop(mach_port_t sensor_port, uint64_t flags, exclaves_sensor_status_t *sensor_status); /*! * @function exclaves_sensor_status * * @abstract * Get the status of access to a sensor * * @param sensor_port * A sensor buffer port name returned from exclaves_sensor_create() * for the sensor. * * @param flags to pass to the implementation. Must be 0 for now. * * @param sensor_status * Out parameter filled with the sensor status. * * @result * KERN_SUCCESS or mach system call error code. */ SPI_AVAILABLE(macos(14.4), ios(17.4), tvos(17.4), watchos(10.4)) kern_return_t exclaves_sensor_status(mach_port_t sensor_port, uint64_t flags, exclaves_sensor_status_t *sensor_status); /*! * @function exclaves_launch_conclave * * @abstract * Launch conclave. * * @param port * Reserved, must be MACH_PORT_NULL for now. * * @param arg1 * Reserved, must be NULL for now. * * @param arg2 * Reserved, must be 0 for now. * * @result * KERN_SUCCESS or mach system call error code. */ SPI_AVAILABLE(macos(14.4), ios(17.4), tvos(17.4), watchos(10.4)) kern_return_t exclaves_launch_conclave(mach_port_t port, void *arg1, uint64_t arg2); /*! * @function exclaves_lookup_service * * @abstract * Lookup Conclave Resource. * * @param port * Reserved, must be MACH_PORT_NULL for now. * * @param name * Name of exclave resource to lookup * * @param resource_id * Out param for resource id * * @result * KERN_SUCCESS or mach system call error code. */ SPI_AVAILABLE(macos(14.4), ios(17.4), tvos(17.4), watchos(10.4)) kern_return_t exclaves_lookup_service(mach_port_t port, const char *name, exclaves_id_t *resource_id); /*! * @function exclaves_notification_create * * @abstract * Finds the exclave notification resource with the specified name and * makes it available for use by the calling task. * * @param port * Reserved, must be MACH_PORT_NULL for now. * * @param name * Notification identifier. * * @param notification_id * Out parameter filled in with the notification ID * * @result * KERN_SUCCESS or mach system call error code. */ SPI_AVAILABLE(macos(14.4), ios(17.4), tvos(17.4), watchos(10.4)) kern_return_t exclaves_notification_create(mach_port_t port, const char *name, uint64_t *notification_id); #else /* defined(KERNEL) */ /*! * @function exclaves_endpoint_call * * @abstract * Perform RPC to an exclaves endpoint via per-thread exclaves IPC buffer. * * @param port * Reserved, must be IPC_PORT_NULL for now. * * @param endpoint_id * Identifier of exclaves endpoint to send RPC to. * * @param tag * In-out parameter for exclaves IPC tag. * * @param error * Out parameter for exclaves IPC error. * * @result * KERN_SUCCESS or mach error code. */ kern_return_t exclaves_endpoint_call(ipc_port_t port, exclaves_id_t endpoint_id, exclaves_tag_t *tag, exclaves_error_t *error); /*! * @function exclaves_allocate_ipc_buffer * * @abstract * Increment the current thread's IPC buffer usecount. If the usecount was 0 * pre-increment, allocate a new per-thread exclaves IPC buffer and * scheduling context. * * @param ipc_buffer * Out parameter filled in with address of IPC buffer. Can be NULL. * * @result * KERN_SUCCESS or mach error code. */ kern_return_t exclaves_allocate_ipc_buffer(void **ipc_buffer); /*! * @function exclaves_free_ipc_buffer * * @abstract * Decrement the current thread's IPC buffer usecount. If the usecount is 0 * post-decrement, free the per-thread exclaves IPC buffer and scheduling * context. Asserts if the usecount pre-decrement was 0. * * @result * KERN_SUCCESS or mach error code. */ kern_return_t exclaves_free_ipc_buffer(void); /*! * @function exclaves_get_ipc_buffer * * @abstract * Return per-thread exclaves IPC buffer. Does not increment the current * thread's IPC buffer use count. * * @result * If allocated, pointer to per-thread exclaves IPC buffer, NULL otherwise. */ OS_CONST void* exclaves_get_ipc_buffer(void); /* For use by Tightbeam kernel runtime only */ typedef uint64_t exclaves_badge_t; /*! * @typedef exclaves_upcall_handler_t * * @abstract * RPC message handler for upcalls from exclaves via per-thread exclaves IPC * buffer. * * @param context * Opaque context pointer specified at handler registration. * * @param tag * In-out parameter for exclaves IPC tag. * * @param badge * Badge value identifying upcall RPC message. * * @result * KERN_SUCCESS or mach error code. */ typedef kern_return_t (*exclaves_upcall_handler_t)(void *context, exclaves_tag_t *tag, exclaves_badge_t badge); /*! * @function exclaves_register_upcall_handler * * @abstract * One-time registration of exclaves upcall RPC handler for specified upcall ID. * Must be called during Exclaves boot sequence, will assert otherwise. * * @param upcall_id * Identifier of upcall to configure. * * @param upcall_context * Opaque context pointer to pass to upcall RPC handler. * * @param upcall_handler * Pointer to upcall RPC handler. * * @result * KERN_SUCCESS or mach error code. */ kern_return_t exclaves_register_upcall_handler(exclaves_id_t upcall_id, void *upcall_context, exclaves_upcall_handler_t upcall_handler); struct XrtHosted_Callbacks; /*! * @function xrt_hosted_register_callbacks * * @abstract * Exclaves XRT hosted kext interface. * * @param callbacks * Pointer to callback function table. */ void exclaves_register_xrt_hosted_callbacks(struct XrtHosted_Callbacks *callbacks); /*! * @enum exclaves_sensor_type_t * * @brief * Identifier for an exclaves sensor */ OS_ENUM(exclaves_sensor_type, uint32_t, EXCLAVES_SENSOR_CAM = 1, EXCLAVES_SENSOR_MIC = 2, EXCLAVES_SENSOR_CAM_ALT_FACEID = 3, EXCLAVES_SENSOR_CAM_ALT_FACEID_DELAYED = 4, /* update max if more sensors added */ EXCLAVES_SENSOR_MAX = 4, ); /*! * @function exclaves_sensor_start * * @abstract * Start accessing a sensor and cause any indicators to display. * * If multiple clients start the same sensor, the sensor will only * actually start on the first client. * * @param sensor_type * type of sensor to operate on. * * @param flags to pass to the implementation. Must be 0 for now. * * @param sensor_status * Out parameter filled with the sensor status. * * @result * KERN_SUCCESS or mach system call error code. */ kern_return_t exclaves_sensor_start(exclaves_sensor_type_t sensor_type, uint64_t flags, exclaves_sensor_status_t *sensor_status); /*! * @function exclaves_sensor_stop * * @abstract * Stop accessing a sensor and cause any indicators to stop displaying access. * * If multiple clients are accessing the sensor, sensor access will * continue to display until all clients have called this function. * * @param sensor_type * type of sensor to operate on. * * @param flags to pass to the implementation. Must be 0 for now. * * @param sensor_status * Out parameter filled with the sensor status. * * @result * KERN_SUCCESS or mach system call error code. */ kern_return_t exclaves_sensor_stop(exclaves_sensor_type_t sensor_type, uint64_t flags, exclaves_sensor_status_t *sensor_status); /*! * @function exclaves_sensor_status * * @abstract * Get the status of access to a sensor * * @param sensor_type * type of sensor to operate on. * * @param sensor_status * Out parameter filled with the sensor status. * * @param flags to pass to the implementation. Must be 0 for now. * * @result * KERN_SUCCESS or mach system call error code. */ kern_return_t exclaves_sensor_status(exclaves_sensor_type_t sensor_type, uint64_t flags, exclaves_sensor_status_t *sensor_status); /*! * @function exclaves_display_healthcheck_rate * * @abstract * Update the rate of the display healthcheck based on the specified * display update rate * * @param ns * The rate in nanoseconds. * Note: This value may be be rounded to the nearest rate supported and not used * as-is. * * @result * KERN_SUCCESS or mach system call error code. */ kern_return_t exclaves_display_healthcheck_rate(uint64_t ns); #endif /* defined(KERNEL) */ #if defined(MACH_KERNEL_PRIVATE) /* -------------------------------------------------------------------------- */ /* Internal kernel interface */ extern kern_return_t exclaves_thread_terminate(thread_t thread); extern bool exclaves_booted(void); extern size_t exclaves_ipc_buffer_count(void); OS_ENUM(exclaves_clock_type, uint8_t, EXCLAVES_CLOCK_ABSOLUTE = 0, EXCLAVES_CLOCK_CONTINUOUS = 1, ); extern void exclaves_update_timebase(exclaves_clock_type_t type, uint64_t offset); typedef struct { void *ipcb; unsigned long scid; uint64_t usecnt; } exclaves_ctx_t; #endif /* defined(MACH_KERNEL_PRIVATE) */ /* -------------------------------------------------------------------------- */ /* Private interface between Libsyscall and xnu */ OS_ENUM(exclaves_ctl_op, uint8_t, EXCLAVES_CTL_OP_ENDPOINT_CALL = 1, EXCLAVES_CTL_OP_NAMED_BUFFER_CREATE = 2, EXCLAVES_CTL_OP_NAMED_BUFFER_COPYIN = 3, EXCLAVES_CTL_OP_NAMED_BUFFER_COPYOUT = 4, EXCLAVES_CTL_OP_BOOT = 5, EXCLAVES_CTL_OP_LAUNCH_CONCLAVE = 6, EXCLAVES_CTL_OP_LOOKUP_SERVICES = 7, EXCLAVES_CTL_OP_AUDIO_BUFFER_CREATE = 8, EXCLAVES_CTL_OP_AUDIO_BUFFER_COPYOUT = 9, EXCLAVES_CTL_OP_SENSOR_CREATE = 10, EXCLAVES_CTL_OP_SENSOR_START = 11, EXCLAVES_CTL_OP_SENSOR_STOP = 12, EXCLAVES_CTL_OP_SENSOR_STATUS = 13, EXCLAVES_CTL_OP_NOTIFICATION_RESOURCE_LOOKUP = 14, EXCLAVES_CTL_OP_LAST, ); #define EXCLAVES_CTL_FLAGS_MASK (0xfffffful) #define EXCLAVES_CTL_OP_AND_FLAGS(op, flags) \ ((uint32_t)EXCLAVES_CTL_OP_##op << 24 | \ ((uint32_t)(flags) & EXCLAVES_CTL_FLAGS_MASK)) #define EXCLAVES_CTL_OP(op_and_flags) \ ((uint8_t)((op_and_flags) >> 24)) #define EXCLAVES_CTL_FLAGS(op_and_flags) \ ((uint32_t)(op_and_flags) & EXCLAVES_CTL_FLAGS_MASK) /*! * @struct exclaves_resource_user * * @brief * User representation of exclave resource */ typedef struct exclaves_resource_user { char r_name[MAXCONCLAVENAME]; uint64_t r_type; exclaves_id_t r_id; mach_port_name_t r_port; } exclaves_resouce_user_t; #if !defined(KERNEL) SPI_AVAILABLE(macos(14.4), ios(17.4), tvos(17.4), watchos(10.4)) OS_NOT_TAIL_CALLED kern_return_t _exclaves_ctl_trap(mach_port_name_t name, uint32_t operation_and_flags, exclaves_id_t identifier, mach_vm_address_t buffer, mach_vm_size_t size, mach_vm_size_t size2, mach_vm_size_t offset, mach_vm_address_t status); #endif /* !defined(KERNEL) */ /* -------------------------------------------------------------------------- */ /* Sysctl interface */ #if defined(KERNEL) /*! * @function exclaves_get_status * * @abstract * Return the current running status of exclaves. This function will block until * exclaves has booted, failed to boot, or are known to be not available. * * @result * The status of exclaves. */ exclaves_status_t exclaves_get_status(void); #endif /* defined(KERNEL) */ #if defined(XNU_KERNEL_PRIVATE) /*! * @function exclaves_get_boot_stage * * @abstract * Return the current boot stage of exclaves. This function will not block. * In general this shouldn't be used (other than for the sysctl). * exclaves_boot_wait() is mostly what is wanted. * * @result * The boot stage of exclaves. */ exclaves_boot_stage_t exclaves_get_boot_stage(void); /*! * @function exclaves_boot_supported * * @abstract * Determine if exclaves are supported. This is a basic check essentially equal * to checking whether the current kernel was compiled with CONFIG_EXCLAVES and * whether or not SPTM has disabled cL4. * * @result * True if supported, false otherwise. */ bool exclaves_boot_supported(void); /*! * @function exclaves_boot_wait * * @abstract * Wait until the specified boot stage has been reached. * * @result * KERN_SUCCESS when the boot stage has been reached, KERN_NOT_SUPPORTED if * exclaves are not supported. */ /* BEGIN IGNORE CODESTYLE */ kern_return_t exclaves_boot_wait(exclaves_boot_stage_t); /* END IGNORE CODESTYLE */ /* * Identifies exclaves privilege checks. */ __options_closed_decl(exclaves_priv_t, unsigned int, { EXCLAVES_PRIV_CONCLAVE_HOST = 0x1, /* Can host conclaves. */ EXCLAVES_PRIV_CONCLAVE_SPAWN = 0x2, /* Can spawn conclaves. */ EXCLAVES_PRIV_KERNEL_DOMAIN = 0x4, /* Access to kernel resources. */ EXCLAVES_PRIV_BOOT = 0x8, /* Can boot exclaves. */ }); /* * Check to see if the specified task has a privilege. */ extern bool exclaves_has_priv(task_t task, exclaves_priv_t priv); /* * Check to see if the specified vnode has a privilege. * Vnode argument is untyped as it's not available to osfmk. */ extern bool exclaves_has_priv_vnode(void *vnode, int64_t off, exclaves_priv_t priv); /* Return index of last xnu frame before secure world. Valid frame index is * always in range <0, nframes-1>. When frame is not found, return nframes * value. */ uint32_t exclaves_stack_offset(const uintptr_t *out_addr, size_t nframes, bool slid_addresses); /* Check whether Exclave inspection got initialized */ extern bool exclaves_inspection_is_initialized(void); /* Send a watchdog panic request to the exclaves scheduler */ extern kern_return_t exclaves_scheduler_request_watchdog_panic(void); #endif /* defined(XNU_KERNEL_PRIVATE) */ __END_DECLS #endif /* defined(PRIVATE) */ #endif /* _MACH_EXCLAVES_H */ |