From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:35177) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1c0AkX-0007y5-8d for qemu-devel@nongnu.org; Fri, 28 Oct 2016 13:15:26 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1c0AkU-0002yu-4s for qemu-devel@nongnu.org; Fri, 28 Oct 2016 13:15:25 -0400 Received: from mx0b-001b2d01.pphosted.com ([148.163.158.5]:34466 helo=mx0a-001b2d01.pphosted.com) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1c0AkT-0002yb-Vj for qemu-devel@nongnu.org; Fri, 28 Oct 2016 13:15:22 -0400 Received: from pps.filterd (m0098414.ppops.net [127.0.0.1]) by mx0b-001b2d01.pphosted.com (8.16.0.17/8.16.0.17) with SMTP id u9SHDQMO130340 for ; Fri, 28 Oct 2016 13:15:21 -0400 Received: from e06smtp10.uk.ibm.com (e06smtp10.uk.ibm.com [195.75.94.106]) by mx0b-001b2d01.pphosted.com with ESMTP id 26c9dcqhhm-1 (version=TLSv1.2 cipher=AES256-SHA bits=256 verify=NOT) for ; Fri, 28 Oct 2016 13:15:21 -0400 Received: from localhost by e06smtp10.uk.ibm.com with IBM ESMTP SMTP Gateway: Authorized Use Only! Violators will be prosecuted for from ; Fri, 28 Oct 2016 18:15:19 +0100 Received: from b06cxnps3075.portsmouth.uk.ibm.com (d06relay10.portsmouth.uk.ibm.com [9.149.109.195]) by d06dlp02.portsmouth.uk.ibm.com (Postfix) with ESMTP id 68F302190056 for ; Fri, 28 Oct 2016 18:14:33 +0100 (BST) Received: from d06av05.portsmouth.uk.ibm.com (d06av05.portsmouth.uk.ibm.com [9.149.37.229]) by b06cxnps3075.portsmouth.uk.ibm.com (8.14.9/8.14.9/NCO v10.0) with ESMTP id u9SHFHMC41943126 for ; Fri, 28 Oct 2016 17:15:17 GMT Received: from d06av05.portsmouth.uk.ibm.com (localhost [127.0.0.1]) by d06av05.portsmouth.uk.ibm.com (8.14.4/8.14.4/NCO v10.0 AVout) with ESMTP id u9SHFHwt029298 for ; Fri, 28 Oct 2016 11:15:17 -0600 From: Claudio Imbrenda Date: Fri, 28 Oct 2016 19:15:16 +0200 In-Reply-To: <1477674916-6795-1-git-send-email-imbrenda@linux.vnet.ibm.com> References: <1477674916-6795-1-git-send-email-imbrenda@linux.vnet.ibm.com> Message-Id: <1477674916-6795-3-git-send-email-imbrenda@linux.vnet.ibm.com> Subject: [Qemu-devel] [PATCH v3 2/2] gdbstub: Fix vCont behaviour List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: pbonzini@redhat.com, borntraeger@de.ibm.com, palves@redhat.com When GDB issues a "vCont", QEMU was not handling it correctly when multiple VCPUs are active. For vCont, for each thread (VCPU), it can be specified whether to single step, continue or stop that thread. The default is to stop a thread. However, when (for example) "vCont;s:2" is issued, all VCPUs continue to run, although all but VCPU nr 2 are to be stopped. This patch completely rewrites the vCont parsing code. Please note that this improvement only works in system emulation mode, when in userspace emulation mode the old behaviour is preserved. Signed-off-by: Claudio Imbrenda --- gdbstub.c | 189 ++++++++++++++++++++++++++++++++++++++++++++++---------------- 1 file changed, 142 insertions(+), 47 deletions(-) diff --git a/gdbstub.c b/gdbstub.c index b2e1b79..9bb548f 100644 --- a/gdbstub.c +++ b/gdbstub.c @@ -386,6 +386,45 @@ static inline void gdb_continue(GDBState *s) #endif } +/* + * Resume execution, per CPU actions. For user-more emulation it's + * equivalent to gdb_continue . + */ +static int gdb_continue_partial(GDBState *s, char *newstates) +{ + int res = 0; +#ifdef CONFIG_USER_ONLY + s->running_state = 1; +#else + CPUState *cpu; + + if (!runstate_needs_reset()) { + if (vm_prepare_start()) { + return 0; + } + + CPU_FOREACH(cpu) { + switch (newstates[cpu_index(cpu) - 1]) { + case 0: + case 1: + break; /* nothing to do here */ + case 's': + cpu_single_step(cpu, sstep_flags); + cpu_resume(cpu); + break; + case 'c': + cpu_resume(cpu); + break; + default: + res = -1; + break; + } + } + } +#endif + return res; +} + static void put_buffer(GDBState *s, const uint8_t *buf, int len) { #ifdef CONFIG_USER_ONLY @@ -784,6 +823,102 @@ static int is_query_packet(const char *p, const char *query, char separator) (p[query_len] == '\0' || p[query_len] == separator); } +/** + * gdb_handle_vcont - Parses and handles a vCont packet. + * returns -1 if a command is unsupported, -22 if there is a format error, + * 0 on success. + */ +static int gdb_handle_vcont(GDBState *s, const char *p) +{ + int res, idx, signal = 0; + char cur_action; + char *newstates; + unsigned long tmp; + CPUState *cpu; + + /* uninitialised CPUs stay 0 */ + newstates = g_new0(char, max_cpus); + + /* mark valid CPUs with 1 */ + CPU_FOREACH(cpu) { + newstates[cpu_index(cpu) - 1] = 1; + } + + /* + * res keeps track of what error we are returning, with -1 meaning + * that the command is unknown or unsupported, and thus returning + * an empty packet, while -22 returns an E22 packet due to + * invalid or incorrect parameters passed. + */ + res = 0; + while (*p) { + if (*p != ';') { + res = -1; + break; + } + p++; /* skip the ; */ + + /* unknown/invalid/unsupported command */ + if (*p != 'C' && *p != 'S' && *p != 'c' && *p != 's') { + res = -1; + break; + } + cur_action = tolower(*p); + if (*p == 'C' || *p == 'S') { + if (qemu_strtoul(p + 1, &p, 16, &tmp)) { + res = -22; + break; + } + signal = gdb_signal_to_target(tmp); + } else { + p++; + } + /* thread specification. special values: (none), -1 = all; 0 = any */ + if ((p[0] == ':' && p[1] == '-' && p[2] == '1') || (p[0] != ':')) { + for (idx = 0; idx < max_cpus; idx++) { + if (newstates[idx] == 1) { + newstates[idx] = cur_action; + } + } + if (*p == ':') { + p += 3; + } + } else if (*p == ':') { + p++; + if (qemu_strtoul(p, &p, 16, &tmp)) { + res = -22; + break; + } + idx = tmp; + /* 0 means any thread, so we pick the first valid CPU */ + if (!idx) { + CPU_FOREACH(cpu) { + idx = cpu_index(cpu); + break; + } + } + + /* invalid CPU specified */ + if (!idx || idx > max_cpus || !newstates[idx - 1]) { + res = -22; + break; + } + /* only use if no previous match occourred */ + if (newstates[idx - 1] == 1) { + newstates[idx - 1] = cur_action; + } + } + } + if (!res) { + s->signal = signal; + gdb_continue_partial(s, newstates); + } + + g_free(newstates); + + return res; +} + static int gdb_handle_packet(GDBState *s, const char *line_buf) { CPUState *cpu; @@ -829,60 +964,20 @@ static int gdb_handle_packet(GDBState *s, const char *line_buf) return RS_IDLE; case 'v': if (strncmp(p, "Cont", 4) == 0) { - int res_signal, res_thread; - p += 4; if (*p == '?') { put_packet(s, "vCont;c;C;s;S"); break; } - res = 0; - res_signal = 0; - res_thread = 0; - while (*p) { - int action, signal; - - if (*p++ != ';') { - res = 0; - break; - } - action = *p++; - signal = 0; - if (action == 'C' || action == 'S') { - signal = gdb_signal_to_target(strtoul(p, (char **)&p, 16)); - if (signal == -1) { - signal = 0; - } - } else if (action != 'c' && action != 's') { - res = 0; - break; - } - thread = 0; - if (*p == ':') { - thread = strtoull(p+1, (char **)&p, 16); - } - action = tolower(action); - if (res == 0 || (res == 'c' && action == 's')) { - res = action; - res_signal = signal; - res_thread = thread; - } - } + + res = gdb_handle_vcont(s, p); + if (res) { - if (res_thread != -1 && res_thread != 0) { - cpu = find_cpu(res_thread); - if (cpu == NULL) { - put_packet(s, "E22"); - break; - } - s->c_cpu = cpu; - } - if (res == 's') { - cpu_single_step(s->c_cpu, sstep_flags); + if (res == -22) { + put_packet(s, "E22"); + break; } - s->signal = res_signal; - gdb_continue(s); - return RS_IDLE; + goto unknown_command; } break; } else { -- 1.9.1