Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

gum: fix ptrace error handling in thread modification protocol #1008

Conversation

DoranekoSystems
Copy link
Contributor

The thread modification code wasn't properly handling error cases during
ptrace operations, causing deadlocks. This fixes the communication protocol
in gum_linux_handle_modify_thread_comms to properly receive and handle
error acknowledgments from the child process.

See:

static gpointer
gum_linux_handle_modify_thread_comms (gpointer data)
{
GumLinuxModifyThreadContext * ctx = data;
gint fd = ctx->fd[0];
gboolean success = FALSE;
gum_put_ack (fd, GUM_ACK_READY);
if (gum_await_ack (fd, GUM_ACK_READ_REGISTERS))
{
ctx->func (ctx->thread_id, &ctx->regs_data, ctx->user_data);
gum_put_ack (fd, GUM_ACK_MODIFIED_REGISTERS);
success = gum_await_ack (fd, GUM_ACK_WROTE_REGISTERS);
}
return GSIZE_TO_POINTER (success);
}

@DoranekoSystems DoranekoSystems deleted the fix/linux-process-thread-comms branch March 26, 2025 01:17
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant