[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [Qemu-devel] [PATCH v9 11/27] gdbstub: Implement write memory (M pkt
From: |
Alex Bennée |
Subject: |
Re: [Qemu-devel] [PATCH v9 11/27] gdbstub: Implement write memory (M pkt) with new infra |
Date: |
Wed, 15 May 2019 16:22:10 +0100 |
User-agent: |
mu4e 1.3.1; emacs 26.1 |
Jon Doron <address@hidden> writes:
> Signed-off-by: Jon Doron <address@hidden>
Reviewed-by: Alex Bennée <address@hidden>
> ---
> gdbstub.c | 51 +++++++++++++++++++++++++++++++++------------------
> 1 file changed, 33 insertions(+), 18 deletions(-)
>
> diff --git a/gdbstub.c b/gdbstub.c
> index e9a3d0c2bc..8dc2e1d507 100644
> --- a/gdbstub.c
> +++ b/gdbstub.c
> @@ -1685,6 +1685,31 @@ static void handle_get_reg(GdbCmdContext *gdb_ctx,
> void *user_ctx)
> put_packet(gdb_ctx->s, gdb_ctx->str_buf);
> }
>
> +static void handle_write_mem(GdbCmdContext *gdb_ctx, void *user_ctx)
> +{
> + if (gdb_ctx->num_params < 3) {
> + put_packet(gdb_ctx->s, "E22");
> + return;
> + }
> +
> + /* hextomem() reads 2*len bytes */
> + if (gdb_ctx->params[1].val_ull > strlen(gdb_ctx->params[2].data) / 2) {
> + put_packet(gdb_ctx->s, "E22");
> + return;
> + }
> +
> + hextomem(gdb_ctx->mem_buf, gdb_ctx->params[2].data,
> + gdb_ctx->params[1].val_ull);
> + if (target_memory_rw_debug(gdb_ctx->s->g_cpu, gdb_ctx->params[0].val_ull,
> + gdb_ctx->mem_buf,
> + gdb_ctx->params[1].val_ull, true)) {
> + put_packet(gdb_ctx->s, "E14");
> + return;
> + }
> +
> + put_packet(gdb_ctx->s, "OK");
> +}
> +
> static int gdb_handle_packet(GDBState *s, const char *line_buf)
> {
> CPUState *cpu;
> @@ -1893,24 +1918,14 @@ static int gdb_handle_packet(GDBState *s, const char
> *line_buf)
> }
> break;
> case 'M':
> - addr = strtoull(p, (char **)&p, 16);
> - if (*p == ',')
> - p++;
> - len = strtoull(p, (char **)&p, 16);
> - if (*p == ':')
> - p++;
> -
> - /* hextomem() reads 2*len bytes */
> - if (len > strlen(p) / 2) {
> - put_packet (s, "E22");
> - break;
> - }
> - hextomem(mem_buf, p, len);
> - if (target_memory_rw_debug(s->g_cpu, addr, mem_buf, len,
> - true) != 0) {
> - put_packet(s, "E14");
> - } else {
> - put_packet(s, "OK");
> + {
> + static const GdbCmdParseEntry write_mem_cmd_desc = {
> + .handler = handle_write_mem,
> + .cmd = "M",
> + .cmd_startswith = 1,
> + .schema = "L,L:s0"
> + };
> + cmd_parser = &write_mem_cmd_desc;
> }
> break;
> case 'p':
--
Alex Bennée
- [Qemu-devel] [PATCH v9 20/27] gdbstub: Implement target halted (? pkt) with new infra, (continued)
- [Qemu-devel] [PATCH v9 20/27] gdbstub: Implement target halted (? pkt) with new infra, Jon Doron, 2019/05/02
- [Qemu-devel] [PATCH v9 12/27] gdbstub: Implement read memory (m pkt) with new infra, Jon Doron, 2019/05/02
- [Qemu-devel] [PATCH v9 16/27] gdbstub: Implement step (s pkt) with new infra, Jon Doron, 2019/05/02
- [Qemu-devel] [PATCH v9 08/27] gdbstub: Implement remove breakpoint (z pkt) with new infra, Jon Doron, 2019/05/02
- [Qemu-devel] [PATCH v9 11/27] gdbstub: Implement write memory (M pkt) with new infra, Jon Doron, 2019/05/02
- Re: [Qemu-devel] [PATCH v9 11/27] gdbstub: Implement write memory (M pkt) with new infra,
Alex Bennée <=
- [Qemu-devel] [PATCH v9 23/27] gdbstub: Implement qemu physical memory mode, Jon Doron, 2019/05/02
- [Qemu-devel] [PATCH v9 26/27] gdbstub: Add support to read a MSR for KVM target, Jon Doron, 2019/05/02
- [Qemu-devel] [PATCH v9 19/27] gdbstub: Implement generic set (Q pkt) with new infra, Jon Doron, 2019/05/02
- [Qemu-devel] [PATCH v9 18/27] gdbstub: Implement generic query (q pkt) with new infra, Jon Doron, 2019/05/02
- [Qemu-devel] [PATCH v9 05/27] gdbstub: Implement continue with signal (C pkt) with new infra, Jon Doron, 2019/05/02