Site icon EfmSoft

What does macOS kernel return 0x1000400E (MACH_RCV_SCATTER_SMALL) mean?

 
Previous Next
MACH_RCV_INVALID_TYPE MACH_RCV_INVALID_TRAILER

MACH_RCV_SCATTER_SMALL

An out-of-line receive target lacks enough capacity

MACH_RCV_SCATTER_SMALL says that an out-of-line overwrite region is not large enough. It is more specific than MACH_RCV_TOO_LARGE: that general result concerns the receive buffer for inline data, while this result concerns one of the caller-provided destinations used to receive out-of-line data through a scatter receive path.

The problem can be localized by treating each out-of-line region as an independent capacity contract. Increasing only the main message buffer may leave the failing region unchanged. Conversely, unbounded allocation based on a peer-controlled size is unsafe; the receiver still needs a protocol maximum and a clear reject policy.

What to inspect

References


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

Exit mobile version