Skip to content

Commit c6ee952

Browse files
SandraLoosemorestsquad
authored andcommitted
gdbstub: Fix handler for 'F' packet
Handling of the 'F' packet has been broken since commit 4b20fab, which converted it to use the new packet parsing infrastructure. Per the GDB RSP specification https://sourceware.org/gdb/current/onlinedocs/gdb/The-F-Reply-Packet.html the second parameter may be omitted, but the rewritten implementation was failing to recognize this case. The result was that QEMU was repeatedly resending the fileio request and ignoring GDB's replies of successful completion. This patch restores the behavior of the previous code in allowing the errno parameter to be omitted and passing 0 to the callback in that case. Signed-off-by: Sandra Loosemore <[email protected]> Reviewed-by: Richard Henderson <[email protected]> Message-Id: <[email protected]> Signed-off-by: Alex Bennée <[email protected]>
1 parent 2bdec39 commit c6ee952

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

gdbstub.c

+6-2
Original file line numberDiff line numberDiff line change
@@ -1820,11 +1820,15 @@ static void handle_read_all_regs(GdbCmdContext *gdb_ctx, void *user_ctx)
18201820

18211821
static void handle_file_io(GdbCmdContext *gdb_ctx, void *user_ctx)
18221822
{
1823-
if (gdb_ctx->num_params >= 2 && gdb_ctx->s->current_syscall_cb) {
1823+
if (gdb_ctx->num_params >= 1 && gdb_ctx->s->current_syscall_cb) {
18241824
target_ulong ret, err;
18251825

18261826
ret = (target_ulong)gdb_ctx->params[0].val_ull;
1827-
err = (target_ulong)gdb_ctx->params[1].val_ull;
1827+
if (gdb_ctx->num_params >= 2) {
1828+
err = (target_ulong)gdb_ctx->params[1].val_ull;
1829+
} else {
1830+
err = 0;
1831+
}
18281832
gdb_ctx->s->current_syscall_cb(gdb_ctx->s->c_cpu, ret, err);
18291833
gdb_ctx->s->current_syscall_cb = NULL;
18301834
}

0 commit comments

Comments
 (0)