A server interface for the child_port
Mach subsystem.
More...
#include "util/mach/child_port_server.h"
|
class | Interface |
| An interface that the request message that is a part of the child_port Mach subsystem can be dispatched to. More...
|
|
A server interface for the child_port
Mach subsystem.
◆ ChildPortServer()
Constructs an object of this class.
- Parameters
-
[in] | interface | The interface to dispatch requests to. Weak. |
◆ MachMessageServerFunction()
bool crashpad::ChildPortServer::MachMessageServerFunction |
( |
const mach_msg_header_t * |
in, |
|
|
mach_msg_header_t * |
out, |
|
|
bool * |
destroy_complex_request |
|
) |
| |
|
overridevirtual |
Handles a Mach RPC request.
This method is a stand-in for a MIG-generated Mach RPC server “demux” function such as exc_server()
and mach_exc_server()
. Implementations may call such a function directly. This method is expected to behave exactly as these functions behave.
- Parameters
-
[in] | in | The request message, received as a Mach message. Note that this interface uses a const parameter for this purpose, whereas MIG-generated “demux” functions do not. |
[out] | out | The reply message. The caller allocates storage, and the callee is expected to populate the reply message appropriately. After returning, the caller will send this reply as a Mach message via the message’s reply port. |
[out] | destroy_complex_request | true if a complex request message is to be destroyed even when handled successfully, false otherwise. The traditional behavior is false . In this case, the caller only destroys the request message in in when the reply message in out is not complex and when it indicates a return code other than KERN_SUCCESS or MIG_NO_REPLY . The assumption is that the rights or out-of-line data carried in a complex message may be retained by the server in this situation, and that it is the responsibility of the server to release these resources as needed. However, in many cases, these resources are not needed beyond the duration of a request-reply transaction, and in such cases, it is less error-prone to always have the caller, MachMessageServer::Run(), destroy complex request messages. To choose this behavior, this parameter should be set to true . |
- Returns
true
on success and false
on failure, although the caller ignores the return value. However, the return code to be included in the reply message should be set as mig_reply_error_t::RetCode
. The non-void
return value is used for increased compatibility with MIG-generated functions.
Implements crashpad::MachMessageServer::Interface.
◆ MachMessageServerReplySize()
mach_msg_size_t crashpad::ChildPortServer::MachMessageServerReplySize |
( |
| ) |
|
|
overridevirtual |
◆ MachMessageServerRequestIDs()
std::set< mach_msg_id_t > crashpad::ChildPortServer::MachMessageServerRequestIDs |
( |
| ) |
|
|
overridevirtual |
◆ MachMessageServerRequestSize()
mach_msg_size_t crashpad::ChildPortServer::MachMessageServerRequestSize |
( |
| ) |
|
|
overridevirtual |
The documentation for this class was generated from the following files:
- util/mach/child_port_server.h
- util/mach/child_port_server.cc