Site icon EfmSoft

What does macOS kernel return 0x10000005 (MACH_SEND_INVALID_VOUCHER) mean?

 
Previous Next
MACH_SEND_TIMED_OUT MACH_SEND_INTERRUPTED

MACH_SEND_INVALID_VOUCHER

The voucher field did not identify an acceptable Mach voucher

MACH_SEND_INVALID_VOUCHER concerns msgh_voucher_port and the voucher disposition encoded in msgh_bits. XNU documents that this field is handled as a port name but must resolve to a send right for a kernel-implemented Mach voucher object, subject to the permitted null or dead values. A regular port name, a dead right, or a mismatched disposition is not interchangeable with a voucher.

Vouchers carry kernel-managed execution or resource context; they are not an application-defined side channel. The error therefore identifies a capability/type mismatch in the message header, not a failure of the service receiving the request. Replacing the destination port or retrying the same header normally preserves the defect.

What to inspect

References


Looking for a different code? Search another status or error code.

Exit mobile version