Summary
Write one aspect of thread state.
Declaration
#include <zircon/syscalls.h>
zx_status_t zx_thread_write_state(zx_handle_t handle,
uint32_t kind,
const void* buffer,
size_t buffer_size);
Description
zx_thread_write_state()
writes one aspect of state of the thread. The thread
state may only be written when the thread is halted for an exception or the
thread is suspended.
The thread state is highly processor specific. See the structures in zircon/syscalls/debug.h for the contents of the structures on each platform.
To use the zx_thread_write_state()
function with the ZX_THREAD_STATE_DEBUG_REGS
flag, you must specify kernel.enable-serial-syscalls=true
on the kernel command line.
Otherwise, the function returns ZX_ERR_NOT_SUPPORTED
.
STATES
See zx_thread_read_state()
for the list of available states
and their corresponding values.
ZX_THREAD_STATE_DEBUG_REGS
ARM
ARM has a variable amount of debug breakpoints and watchpoints. For this
architecture, zx_thread_state_debug_regs_t
is big enough to hold the maximum
amount of breakpoints possible. But in most cases a given CPU implementation
holds a lesser amount, meaning that the upper values beyond the limit are not
used.
The kernel will write all the available registers in the hardware independent of the given breakpoint/watchpoint count value. This means that all the correct state must be set for the call.
You can get the current state of the registers by calling
zx_thread_read_state()
.
ARM Debug Hardware Debug Registers
ARM debug registers are highly configurable via their DBGBCR
Because of this, all the values within DBGBCR will be ignored except for the E bit, which is used to determine whether that particular breakpoint is activated or not. Said in another way, in order to activate a HW breakpoint, all that is needed is to set the correct address in DBGBVR and write 1 to DBGBCR.
Rights
handle must be of type ZX_OBJ_TYPE_THREAD
and have ZX_RIGHT_WRITE
.
Return value
zx_thread_write_state()
returns ZX_OK
on success.
In the event of failure, a negative error value is returned.
Errors
ZX_ERR_BAD_HANDLE
handle is not a valid handle.
ZX_ERR_WRONG_TYPE
handle is not that of a thread.
ZX_ERR_ACCESS_DENIED
handle lacks ZX_RIGHT_WRITE
.
ZX_ERR_INVALID_ARGS
kind is not valid, buffer is an invalid pointer,
buffer_size doesn't match the size of the structure expected for kind or
the given values to set are not valid.
ZX_ERR_NO_MEMORY
Failure due to lack of memory.
There is no good way for userspace to handle this (unlikely) error.
In a future build this error will no longer occur.
ZX_ERR_BAD_STATE
The thread is not stopped at a point where state
is available. The thread state may only be read when the thread is stopped due
to an exception.
ZX_ERR_NOT_SUPPORTED
kind is not supported.
This can happen, for example, when trying to read a register set that
is not supported by the hardware the program is currently running on,
or when using the ZX_THREAD_STATE_DEBUG_REGS
kind without specifying
kernel.enable-serial-syscalls=true
on the kernel command line.
ARM
ZX_ERR_INVALID_ARGS
If the address provided to a DBGBVR register is not
valid (ie. not addressable from userspace). Also if any value is set for a HW
breakpoint beyond the number provided by the platform (see above for
information about retrieving that number).