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 | /* * Copyright (c) 2023 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@ */ #if CONFIG_EXCLAVES #pragma once #include <kern/bits.h> #include <kern/locks.h> #include <kern/queue.h> #include <mach/exclaves.h> #include <mach/kern_return.h> #include <sys/event.h> #include <stdint.h> #include <os/base.h> #include "kern/exclaves.tightbeam.h" __BEGIN_DECLS /* -------------------------------------------------------------------------- */ #pragma mark Exclaves Resources #define EXCLAVES_DOMAIN_KERNEL "com.apple.kernel" #define EXCLAVES_DOMAIN_DARWIN "com.apple.darwin" #define EXCLAVES_FORWARDING_RESOURCE_ID_BASE (1ULL << 48) /* * Data associated with a conclave. */ /* * Conclave State Machine: * * Launch Syscall * +---------+ +--------------+ * |Attached | ------->| Running | * | | | | * +---------+ +--------------+ * ^ | | ^ * Spawn | |proc_exit | | * | | | | * | v | | * +---------+ Suspend | | Unsuspend * *--> | None | IPC to | | IPC to * | | Conclave | | Conclave * +---------+ Manager | | Manager * ^ | | * proc_exit| | | * | | | * | v | * +---------+ +------------+ * | Stopped |<------| Suspended | * | | | | * +---------+ +------------+ * Stop IPC * to Conclave Manager */ typedef enum { CONCLAVE_S_NONE = 0, CONCLAVE_S_ATTACHED = 0x1, CONCLAVE_S_RUNNING = 0x2, CONCLAVE_S_STOPPED = 0x3, CONCLAVE_S_SUSPENDED = 0x4, } conclave_state_t; typedef enum __attribute__((flag_enum)) { CONCLAVE_R_NONE = 0, CONCLAVE_R_LAUNCH_REQUESTED = 0x1, CONCLAVE_R_SUSPEND_REQUESTED = 0x2, CONCLAVE_R_STOP_REQUESTED = 0x4, } conclave_request_t; /* * Data associated with Always-On Exclaves endpoints stashed in the conclave * resource. */ typedef struct { uint64_t aoei_serviceid; uint8_t aoei_message_count; uint8_t aoei_work_count; uint8_t aoei_worker_count; bool aoei_associated; queue_chain_t aoei_chain; uint64_t aoei_assertion_id; } aoe_item_t; /* The highest service identifier in any conclave. */ #define CONCLAVE_SERVICE_MAX 256 typedef struct { conclave_state_t c_state; conclave_request_t c_request; bool c_active_downcall; bool c_active_stopcall; bool c_active_detach; tb_client_connection_t c_control; task_t XNU_PTRAUTH_SIGNED_PTR("conclave.task") c_task; thread_t XNU_PTRAUTH_SIGNED_PTR("conclave.thread") c_downcall_thread; bitmap_t c_service_bitmap[BITMAP_LEN(CONCLAVE_SERVICE_MAX)]; /* * Always-On Exclaves specific. */ queue_head_t c_aoe_q; } conclave_resource_t; typedef struct { size_t sm_size; exclaves_buffer_perm_t sm_perm; char *sm_addr; sharedmemorybase_mapping_s sm_mapping; sharedmemorybase_segxnuaccess_s sm_client; } shared_memory_resource_t; typedef struct { /* how many times *this* sensor resource handle has been * used to call sensor_start */ uint64_t s_startcount; } sensor_resource_t; typedef struct { struct klist notification_klist; } exclaves_notification_t; /* * Every resource has an associated name and some other common state. * Additionally there may be type specific data associated with the resource. */ #define EXCLAVES_RESOURCE_NAME_MAX 128 typedef struct exclaves_resource { char r_name[EXCLAVES_RESOURCE_NAME_MAX]; xnuproxy_resourcetype_s r_type; uint64_t r_id; _Atomic uint32_t r_usecnt; ipc_port_t r_port; lck_mtx_t r_mutex; bool r_active; bool r_connected; union { conclave_resource_t r_conclave; sensor_resource_t r_sensor; exclaves_notification_t r_notification; shared_memory_resource_t r_shared_memory; }; } exclaves_resource_t; /*! * @function exclaves_resource_init * * @abstract * Called during exclaves_boot to dump the resource information from xnu proxy * and build the xnu-side tables. * * @return * KERN_SUCCESS on success otherwise an error code. */ extern kern_return_t exclaves_resource_init(void); /*! * @function exclaves_resource_name * * @abstract * Return the name associated with a resource. * * @param resource * Conclave manager resource. * * @return * The name of the resource or NULL. */ extern const char * exclaves_resource_name(const exclaves_resource_t *resource); /*! * @function exclaves_resource_retain * * @abstract * Grab a reference to the specified resource * * @param resource * The resource to retain. * * @return * The value of the use count before the retain */ extern uint32_t exclaves_resource_retain(exclaves_resource_t *resource); /*! * @function exclaves_resource_release * * @abstract * Drop a reference to the specified resource * * @param resource * The resource to release. * * @discussion * This may result in a resource type specific release function being called * which can grab locks, free memory etc. * After this function has been called, the resource should not be accessed as * it may be in an uninitialized state. */ extern void exclaves_resource_release(exclaves_resource_t *resource); /*! * @function exclaves_resource_from_port_name * * @abstract * Find the resource associated with a port name in the specified space. * * @param space * IPC space to search * * @param name * Port name of the resource. * * @param resource * Out parameter holding a pointer to the resource. * * @return * KERN_SUCCESS or error code on failure. * * @discussion * Returns with a +1 use-count on the resource which must be dropped with * exclaves_resource_release(). */ extern kern_return_t exclaves_resource_from_port_name(ipc_space_t space, mach_port_name_t name, exclaves_resource_t **resource); /*! * @function exclaves_resource_create_port_name * * @abstract * Create a port name for the given resource in the specified space. * * @param name * Our parameter for holding a pointer to the port name. * * @param space * IPC space in which to create the name * * @param resource * Resource for which to create a port name for. * * @return * KERN_SUCCESS or error code on failure. * * @discussion * Returns with a +1 use-count on the resource which is associated with the life * of the newly created send right. */ extern kern_return_t exclaves_resource_create_port_name(exclaves_resource_t *resource, ipc_space_t space, mach_port_name_t *name); /* -------------------------------------------------------------------------- */ #pragma mark Conclaves /*! * @function exclaves_conclave_attach * * @abstract * Attach a conclave to a task. The conclave must not already be attached to any * task. Once attached, this conclave is exclusively associated with the task. * * @param name * The name of conclave resource. * * @param task * Task to attach the conclave to. * * @return * KERN_SUCCESS on success, error code otherwise. */ extern kern_return_t exclaves_conclave_attach(const char *name, task_t task); /*! * @function exclaves_conclave_detach * * @abstract * Detach a conclave from a task. The conclave must already be attached to the * task and stopped. Once detached, this conclave is available for other tasks. * * @param resource * Conclave Manager resource. * * @param task * Task to detach the conclave from. * * @return * KERN_SUCCESS on success, error code otherwise. */ extern kern_return_t exclaves_conclave_detach(exclaves_resource_t *resource, task_t task); /*! * @function exclaves_conclave_inherit * * @abstract * Pass an attached conclave from one task to another. * * @param resource * Conclave Manager resource. * * @param old_task * Task with attached conclave. * * @param new_task * Task which will inherit the conclave. * * @return * KERN_SUCCESS on success, error code otherwise. */ extern kern_return_t exclaves_conclave_inherit(exclaves_resource_t *resource, task_t old_task, task_t new_task); /*! * @function exclaves_conclave_is_attached * * @abstract * Returns true if the conclave is in the ATTACHED state. * * @param resource * Conclave Manager resource. * * @return * True if conclave is attached, false otherwise */ extern bool exclaves_conclave_is_attached(const exclaves_resource_t *resource); /*! * @function exclaves_conclave_launch * * @abstract * Launch a conclave. The conclave must be attached to a task and not already * launched. * * @param resource * Conclave Manager resource. * * @return * KERN_SUCCESS on success, error code otherwise. */ extern kern_return_t exclaves_conclave_launch(exclaves_resource_t *resource); /*! * @function exclaves_conclave_lookup_resources * * @abstract * Lookup conclave resource. The conclave must be attached to a task and * launched. * * @param resource * Conclave Manager resource. * * @param conclave_resource_user * Array to fill user resources for Conclave * * @param resource_count * Number of resources in array * * @return * KERN_SUCCESS on success, error code otherwise. */ extern kern_return_t exclaves_conclave_lookup_resources(exclaves_resource_t *resource, struct exclaves_resource_user *conclave_resource_user, int resource_count); /*! * @function exclaves_conclave_stop * * @abstract * Stop a conclave. The conclave must be launched and attached. * * @param resource * Conclave Manager resource. * * @param gather_crash_bt * Conclave Manager needs to gather backtraces * * @return * KERN_SUCCESS on success, error code otherwise. */ extern kern_return_t exclaves_conclave_stop(exclaves_resource_t *resource, bool gather_crash_bt); /*! * @function exclaves_conclave_suspend * * @abstract * Suspend a conclave. The conclave must be attached. * * @param resource * Conclave Manager resource. * * @return * KERN_SUCCESS on success, error code otherwise. */ extern kern_return_t exclaves_conclave_suspend(exclaves_resource_t *resource); /*! * @function exclaves_conclave_resume * * @abstract * Resume a conclave. The conclave must be attached. * * @param resource * Conclave Manager resource. * * @return * KERN_SUCCESS on success, error code otherwise. */ extern kern_return_t exclaves_conclave_resume(exclaves_resource_t *resource); /*! * @function exclaves_conclave_stop_upcall * * @abstract * Stop a conclave. The conclave must be launched and attached. * * @param resource * Conclave Manager resource. * * @return * KERN_SUCCESS on success, error code otherwise. */ extern kern_return_t exclaves_conclave_stop_upcall(exclaves_resource_t *resource); /*! * @function exclaves_conclave_stop_upcall_complete * * @abstract * Complete the Conclave stop once back in regular context. * * @param resource * Conclave Manager resource. * * @param task * Conclave Host task * * @return * KERN_SUCCESS on success, error code otherwise. */ extern kern_return_t exclaves_conclave_stop_upcall_complete(exclaves_resource_t *resource, task_t task); /*! * @function exclaves_conclave_get_domain * * @abstract * Return the domain associated with the specified conclave resource. Or the * kernel domain if the conclave resource is NULL. * * @param resource * Conclave Manager resource. * * @return * The domain of the conclave or the kernel domain. */ extern const char * exclaves_conclave_get_domain(exclaves_resource_t *resource); /*! * @function exclaves_conclave_has_service * * @abstract * Return true if the service ID is associated with the specified conclave * resource. * * @param resource * Conclave Manager resource. * * @params id * ID of a SERVICE resource. * * @return * true if the ID is available to conclave, false otherwise */ extern bool exclaves_conclave_has_service(exclaves_resource_t *resource, uint64_t id); /*! * @function exclaves_conclave_lookup_by_aoeserviceid * * @abstract * Find a conclave by Always-On Exclaves service ID. * * @param id * The AOE service ID. * * @return * Pointer to the resource */ exclaves_resource_t * exclaves_conclave_lookup_by_aoeserviceid(uint64_t id); /*! * @function exclaves_is_forwarding_resource * * @abstract * Check if the resource is a forwarding conclave, i.e. the conclave * manager isn't hosting an actual exclave resource * * @param resource * Conclave Manager resource * * @return * true if resource is a forwarding conclave, false otherwise * */ extern bool exclaves_is_forwarding_resource(exclaves_resource_t *resource); /*! * @function exclaves_conclave_prepare_teardown * * @bastract * Before we can start tearing down the conclave, * we may want to clear up some machine context. * * @param task is the pointer to owner of conclave resource. * */ extern void exclaves_conclave_prepare_teardown( task_t task); /* -------------------------------------------------------------------------- */ #pragma mark Sensors /*! * @function exclaves_resource_sensor_open * * @abstract * Open a sensor resource. * * @param domain * The domain to search. * * @param name * The name of the sensor resource. * * @param resource * Out parameter which holds the resource on success. * * @return * KERN_SUCCESS on success, error code otherwise. * * @discussion * Returns with a +1 use-count on the resource which must be dropped with * exclaves_resource_release(). */ extern kern_return_t exclaves_resource_sensor_open(const char *domain, const char *name, exclaves_resource_t **resource); /*! * @function exclaves_resource_sensor_start * * @abstract * Start accessing a sensor. * * @param resource * Sensor resource. * * @param flags * Flags to pass to implementation. * * @param status * output parameter for status of sensor after this operation. * * @return * KERN_SUCCESS on success, error code otherwise. */ kern_return_t exclaves_resource_sensor_start(exclaves_resource_t *resource, uint64_t flags, exclaves_sensor_status_t *status); /*! * @function exclaves_resource_sensor_stop * * @abstract * Stop accessing a sensor. * * @param resource * Sensor resource. * * @param flags * Flags to pass to implementation. * * @param status * output parameter for status of sensor after this operation. * * @return * KERN_SUCCESS on success, error code otherwise. */ kern_return_t exclaves_resource_sensor_stop(exclaves_resource_t *resource, uint64_t flags, exclaves_sensor_status_t *status); /*! * @function exclaves_resource_sensor_status * * @abstract * Query the status of access to a sensor. * * @param resource * Sensor resource. * * @param flags * Flags to pass to implementation. * * @param status * output parameter for status of sensor after this operation. * * @return * KERN_SUCCESS on success, error code otherwise. */ kern_return_t exclaves_resource_sensor_status(exclaves_resource_t *resource, uint64_t flags, exclaves_sensor_status_t *status); /* -------------------------------------------------------------------------- */ #pragma mark Notifications /*! * @function exclaves_notification_create * * @abstract * Set up an exclave notification from the specified resource. * * @param domain * The domain to search. * * @param name * The name of the notification resource. * * @return * A notification resource or NULL. * * @discussion * Returns with a +1 use-count on the resource which must be dropped with * exclaves_resource_release(). */ extern kern_return_t exclaves_notification_create(const char *domain, const char *name, exclaves_resource_t **resource); /*! * @function exclaves_notification_signal * * @abstract * To be called from upcall context when the specified notification resource is signaled. * * @param resource * Notification resource. * * @param event_mask * Bit mask of events for the notification. * * @return * KERN_SUCCESS on success, error code otherwise. */ extern kern_return_t exclaves_notification_signal(exclaves_resource_t *resource, long event_mask); /*! * @function exclaves_notificatione_lookup_by_id * * @abstract * Find an exclave notification by ID. * * @param id * The resource ID. * * @return * Pointer to the resource */ exclaves_resource_t * exclaves_notification_lookup_by_id(uint64_t id); /* -------------------------------------------------------------------------- */ #pragma mark Services /* * Indicates an invalid service. */ #define EXCLAVES_INVALID_ID UINT64_C(~0) /*! * @function exclaves_service_lookup * * @abstract * Look up a service resource * * @param domain * The domain to search. * * @param name * The name of the service resource. * * @return * ID of service or EXCLAVES_INVALID_ID if the service cannot be found. */ extern uint64_t exclaves_service_lookup(const char *domain, const char *name); /* -------------------------------------------------------------------------- */ #pragma mark Shared Memory /*! * @function exclaves_resource_shared_memory_map * * @abstract * Map a shared memory resource. * * @param domain * The domain to search. * * @param name * The name of the shared memory resource. * * @param size * Size of shared memory region to map. * * @param perm * The permissions of the shared memory. * * @param resource * Out parameter which holds the resource on success. * * @return * KERN_SUCCESS or an error code. * * @discussion * Returns with a +1 use-count on the resource which must be dropped with * exclaves_resource_release(). */ extern kern_return_t exclaves_resource_shared_memory_map(const char *domain, const char *name, size_t size, exclaves_buffer_perm_t perm, exclaves_resource_t **resource); /*! * @function exclaves_resource_shared_memory_copyin * * @abstract * Copy user data into a shared memory. * * @param resource * Shared memory resource. * * @param ubuffer * Source of data to copy. * * @param usize1 * Size of data to copy. * * @param uoffset1 * Offset into the shared memory. * * @param usize2 * Size of 2nd range of data to copy (can be 0). * * @param uoffset2 * Offset of 2nd range into the shared memory. * * @return * KERN_SUCCESS or error code on failure. */ extern kern_return_t exclaves_resource_shared_memory_copyin(exclaves_resource_t *resource, user_addr_t ubuffer, mach_vm_size_t usize1, mach_vm_size_t uoffset1, mach_vm_size_t usize2, mach_vm_size_t uoffset2); /*! * @function exclaves_resource_shared_memory_copyout * * @abstract * Copy user data into a shared memory. * * @param resource * Shared memory resource. * * @param ubuffer * Destination to copy data to. * * @param usize1 * Size of data to copy. * * @param uoffset1 * Offset into the shared memory. * * @param usize2 * Size of 2nd range of data to copy (can be 0). * * @param uoffset2 * Offset of 2nd range into the shared memory. * * @return * KERN_SUCCESS or error code on failure. */ extern kern_return_t exclaves_resource_shared_memory_copyout(exclaves_resource_t *resource, user_addr_t ubuffer, mach_vm_size_t usize1, mach_vm_size_t uoffset1, mach_vm_size_t usize2, mach_vm_size_t uoffset2); /*! * @function exclaves_resource_shared_memory_get_buffer * * @abstract * Return a pointer to the shared memory buffer. Must already be mapped. * * @param resource * Shared memory resource. * * @param buffer_len * Returns the length of the returned buffer. * * @return * Pointer to shared memory. */ extern char * exclaves_resource_shared_memory_get_buffer(exclaves_resource_t *resource, size_t *buffer_len); /* -------------------------------------------------------------------------- */ #pragma mark Arbitrated Audio Memory /*! * @function exclaves_resource_audio_memory_map * * @abstract * Map an audio memory resource. * * @param domain * The domain to search. * * @param name * The name of audio memory resource. * * @param size * Size of named buffer region to map. * * @param resource * Out parameter which holds the resource on success. * * @return * KERN_SUCCESS or error code on failure. * * @discussion * Returns with a +1 use-count on the resource which must be dropped with * exclaves_resource_release(). */ extern kern_return_t exclaves_resource_audio_memory_map(const char *domain, const char *name, size_t size, exclaves_resource_t **resource); /*! * @function exclaves_resource_audio_memory_copyout * * @abstract * Copy user data into a audio memory. * * @param resource * audio memory resource. * * @param ubuffer * Destination to copy data to. * * @param usize1 * Size of data to copy. * * @param uoffset1 * Offset into the audio memory. * * @param usize2 * Size of 2nd range of data to copy (can be 0). * * @param uoffset2 * Offset of 2nd range into the audio memory. * * @param ustatus * Destination to copy status to. * * @return * KERN_SUCCESS or error code on failure. */ extern kern_return_t exclaves_resource_audio_memory_copyout(exclaves_resource_t *resource, user_addr_t ubuffer, mach_vm_size_t usize1, mach_vm_size_t uoffset1, mach_vm_size_t usize2, mach_vm_size_t uoffset2, user_addr_t ustatus); /* -------------------------------------------------------------------------- */ #pragma mark Always-On Exclaves Services /*! * @function exclaves_resource_aoeservice_iterate * * @abstract * Iterate through all AOE Services for the given domain. * * @param domain * The domain to search. * * @param cb * The callback to call on each found AOE Service. Return true to break out * early. */ /* BEGIN IGNORE CODESTYLE */ extern void exclaves_resource_aoeservice_iterate(const char *domain, bool (^cb)(exclaves_resource_t *)); /* END IGNORE CODESTYLE */ extern exclaves_resource_t * exclaves_resource_lookup_by_name(const char *domain_name, const char *name, xnuproxy_resourcetype_s type); __END_DECLS #endif /* CONFIG_EXCLAVES */ |