]> git.saurik.com Git - apple/xnu.git/blobdiff - libsyscall/mach/host.c
xnu-3789.21.4.tar.gz
[apple/xnu.git] / libsyscall / mach / host.c
index c6587951f02529fd3bcdf19515a6ed4fcb16b9c3..a781a09ad999760d06af6437bb498967a2156683 100644 (file)
@@ -31,6 +31,7 @@
 #include <mach/kern_return.h>
 #include <mach/mach_host.h>
 #include <mach/host_priv.h>
+#include <sys/types.h>
 
 kern_return_t
 host_get_atm_diagnostic_flag(host_t host __unused,
@@ -56,3 +57,35 @@ host_check_multiuser_mode(host_t host __unused,
        (void)multiuser_mode;
        return KERN_NOT_SUPPORTED;
 }
+
+extern kern_return_t
+_kernelrpc_host_create_mach_voucher(mach_port_name_t host,
+                                    mach_voucher_attr_raw_recipe_array_t recipes,
+                                    mach_voucher_attr_recipe_size_t recipesCnt,
+                                    mach_port_name_t *voucher);
+
+kern_return_t
+host_create_mach_voucher(mach_port_name_t host,
+                         mach_voucher_attr_raw_recipe_array_t recipes,
+                         mach_voucher_attr_recipe_size_t recipesCnt,
+                         mach_port_name_t *voucher)
+{
+       kern_return_t rv;
+
+       rv = host_create_mach_voucher_trap(host, recipes, recipesCnt, voucher);
+
+#ifdef __x86_64__
+       /* REMOVE once XBS kernel has new trap */
+       if (rv == ((1 << 24) | 70)) /* see mach/i386/syscall_sw.h */
+               rv = MACH_SEND_INVALID_DEST;
+#elif defined(__i386__)
+       /* REMOVE once XBS kernel has new trap */
+       if (rv == (kern_return_t)(-70))
+               rv = MACH_SEND_INVALID_DEST;
+#endif
+
+       if (rv == MACH_SEND_INVALID_DEST)
+               rv = _kernelrpc_host_create_mach_voucher(host, recipes, recipesCnt, voucher);
+
+       return rv;
+}