gdbstub: Fix buffer overflows in gdb_handle_packet()
Some places in gdb_handle_packet() can get an arbitrary length (most times directly from the client) and either didn't check it at all or checked against the wrong value, potentially causing buffer overflows. Cc: qemu-stable@nongnu.org Signed-off-by: Kevin Wolf <kwolf@redhat.com> Signed-off-by: Michael Tokarev <mjt@tls.msk.ru>
This commit is contained in:
parent
3c15d3a450
commit
5accecb3a6
18
gdbstub.c
18
gdbstub.c
|
@ -956,6 +956,13 @@ static int gdb_handle_packet(GDBState *s, const char *line_buf)
|
||||||
if (*p == ',')
|
if (*p == ',')
|
||||||
p++;
|
p++;
|
||||||
len = strtoull(p, NULL, 16);
|
len = strtoull(p, NULL, 16);
|
||||||
|
|
||||||
|
/* memtohex() doubles the required space */
|
||||||
|
if (len > MAX_PACKET_LENGTH / 2) {
|
||||||
|
put_packet (s, "E22");
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
|
||||||
if (target_memory_rw_debug(s->g_cpu, addr, mem_buf, len, false) != 0) {
|
if (target_memory_rw_debug(s->g_cpu, addr, mem_buf, len, false) != 0) {
|
||||||
put_packet (s, "E14");
|
put_packet (s, "E14");
|
||||||
} else {
|
} else {
|
||||||
|
@ -970,6 +977,12 @@ static int gdb_handle_packet(GDBState *s, const char *line_buf)
|
||||||
len = strtoull(p, (char **)&p, 16);
|
len = strtoull(p, (char **)&p, 16);
|
||||||
if (*p == ':')
|
if (*p == ':')
|
||||||
p++;
|
p++;
|
||||||
|
|
||||||
|
/* hextomem() reads 2*len bytes */
|
||||||
|
if (len > strlen(p) / 2) {
|
||||||
|
put_packet (s, "E22");
|
||||||
|
break;
|
||||||
|
}
|
||||||
hextomem(mem_buf, p, len);
|
hextomem(mem_buf, p, len);
|
||||||
if (target_memory_rw_debug(s->g_cpu, addr, mem_buf, len,
|
if (target_memory_rw_debug(s->g_cpu, addr, mem_buf, len,
|
||||||
true) != 0) {
|
true) != 0) {
|
||||||
|
@ -1107,7 +1120,8 @@ static int gdb_handle_packet(GDBState *s, const char *line_buf)
|
||||||
cpu = find_cpu(thread);
|
cpu = find_cpu(thread);
|
||||||
if (cpu != NULL) {
|
if (cpu != NULL) {
|
||||||
cpu_synchronize_state(cpu);
|
cpu_synchronize_state(cpu);
|
||||||
len = snprintf((char *)mem_buf, sizeof(mem_buf),
|
/* memtohex() doubles the required space */
|
||||||
|
len = snprintf((char *)mem_buf, sizeof(buf) / 2,
|
||||||
"CPU#%d [%s]", cpu->cpu_index,
|
"CPU#%d [%s]", cpu->cpu_index,
|
||||||
cpu->halted ? "halted " : "running");
|
cpu->halted ? "halted " : "running");
|
||||||
memtohex(buf, mem_buf, len);
|
memtohex(buf, mem_buf, len);
|
||||||
|
@ -1136,8 +1150,8 @@ static int gdb_handle_packet(GDBState *s, const char *line_buf)
|
||||||
put_packet(s, "E01");
|
put_packet(s, "E01");
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
hextomem(mem_buf, p + 5, len);
|
|
||||||
len = len / 2;
|
len = len / 2;
|
||||||
|
hextomem(mem_buf, p + 5, len);
|
||||||
mem_buf[len++] = 0;
|
mem_buf[len++] = 0;
|
||||||
qemu_chr_be_write(s->mon_chr, mem_buf, len);
|
qemu_chr_be_write(s->mon_chr, mem_buf, len);
|
||||||
put_packet(s, "OK");
|
put_packet(s, "OK");
|
||||||
|
|
Loading…
Reference in New Issue