monitor: Don't check for mon_get_cpu() failure
mon_get_cpu() can't return null pointer, because it passes its return value to cpu_synchronize_state() first, which crashes if its argument is null. Remove the (pretty cheesy) handling of this non-existing error. Signed-off-by: Markus Armbruster <armbru@redhat.com> Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
This commit is contained in:
parent
ff06ea2197
commit
09b9418c6d
39
monitor.c
39
monitor.c
@ -692,8 +692,6 @@ static void do_info_registers(Monitor *mon)
|
|||||||
{
|
{
|
||||||
CPUState *env;
|
CPUState *env;
|
||||||
env = mon_get_cpu();
|
env = mon_get_cpu();
|
||||||
if (!env)
|
|
||||||
return;
|
|
||||||
#ifdef TARGET_I386
|
#ifdef TARGET_I386
|
||||||
cpu_dump_state(env, (FILE *)mon, monitor_fprintf,
|
cpu_dump_state(env, (FILE *)mon, monitor_fprintf,
|
||||||
X86_DUMP_FPU);
|
X86_DUMP_FPU);
|
||||||
@ -1127,7 +1125,7 @@ static void memory_dump(Monitor *mon, int count, int format, int wsize,
|
|||||||
int flags;
|
int flags;
|
||||||
flags = 0;
|
flags = 0;
|
||||||
env = mon_get_cpu();
|
env = mon_get_cpu();
|
||||||
if (!env && !is_physical)
|
if (!is_physical)
|
||||||
return;
|
return;
|
||||||
#ifdef TARGET_I386
|
#ifdef TARGET_I386
|
||||||
if (wsize == 2) {
|
if (wsize == 2) {
|
||||||
@ -1189,8 +1187,6 @@ static void memory_dump(Monitor *mon, int count, int format, int wsize,
|
|||||||
cpu_physical_memory_rw(addr, buf, l, 0);
|
cpu_physical_memory_rw(addr, buf, l, 0);
|
||||||
} else {
|
} else {
|
||||||
env = mon_get_cpu();
|
env = mon_get_cpu();
|
||||||
if (!env)
|
|
||||||
break;
|
|
||||||
if (cpu_memory_rw_debug(env, addr, buf, l, 0) < 0) {
|
if (cpu_memory_rw_debug(env, addr, buf, l, 0) < 0) {
|
||||||
monitor_printf(mon, " Cannot access memory\n");
|
monitor_printf(mon, " Cannot access memory\n");
|
||||||
break;
|
break;
|
||||||
@ -1317,8 +1313,6 @@ static void do_memory_save(Monitor *mon, const QDict *qdict, QObject **ret_data)
|
|||||||
uint8_t buf[1024];
|
uint8_t buf[1024];
|
||||||
|
|
||||||
env = mon_get_cpu();
|
env = mon_get_cpu();
|
||||||
if (!env)
|
|
||||||
return;
|
|
||||||
|
|
||||||
f = fopen(filename, "wb");
|
f = fopen(filename, "wb");
|
||||||
if (!f) {
|
if (!f) {
|
||||||
@ -1753,8 +1747,6 @@ static void tlb_info(Monitor *mon)
|
|||||||
uint32_t pgd, pde, pte;
|
uint32_t pgd, pde, pte;
|
||||||
|
|
||||||
env = mon_get_cpu();
|
env = mon_get_cpu();
|
||||||
if (!env)
|
|
||||||
return;
|
|
||||||
|
|
||||||
if (!(env->cr[0] & CR0_PG_MASK)) {
|
if (!(env->cr[0] & CR0_PG_MASK)) {
|
||||||
monitor_printf(mon, "PG disabled\n");
|
monitor_printf(mon, "PG disabled\n");
|
||||||
@ -1811,8 +1803,6 @@ static void mem_info(Monitor *mon)
|
|||||||
uint32_t pgd, pde, pte, start, end;
|
uint32_t pgd, pde, pte, start, end;
|
||||||
|
|
||||||
env = mon_get_cpu();
|
env = mon_get_cpu();
|
||||||
if (!env)
|
|
||||||
return;
|
|
||||||
|
|
||||||
if (!(env->cr[0] & CR0_PG_MASK)) {
|
if (!(env->cr[0] & CR0_PG_MASK)) {
|
||||||
monitor_printf(mon, "PG disabled\n");
|
monitor_printf(mon, "PG disabled\n");
|
||||||
@ -2658,8 +2648,6 @@ typedef struct MonitorDef {
|
|||||||
static target_long monitor_get_pc (const struct MonitorDef *md, int val)
|
static target_long monitor_get_pc (const struct MonitorDef *md, int val)
|
||||||
{
|
{
|
||||||
CPUState *env = mon_get_cpu();
|
CPUState *env = mon_get_cpu();
|
||||||
if (!env)
|
|
||||||
return 0;
|
|
||||||
return env->eip + env->segs[R_CS].base;
|
return env->eip + env->segs[R_CS].base;
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
@ -2671,9 +2659,6 @@ static target_long monitor_get_ccr (const struct MonitorDef *md, int val)
|
|||||||
unsigned int u;
|
unsigned int u;
|
||||||
int i;
|
int i;
|
||||||
|
|
||||||
if (!env)
|
|
||||||
return 0;
|
|
||||||
|
|
||||||
u = 0;
|
u = 0;
|
||||||
for (i = 0; i < 8; i++)
|
for (i = 0; i < 8; i++)
|
||||||
u |= env->crf[i] << (32 - (4 * i));
|
u |= env->crf[i] << (32 - (4 * i));
|
||||||
@ -2684,40 +2669,30 @@ static target_long monitor_get_ccr (const struct MonitorDef *md, int val)
|
|||||||
static target_long monitor_get_msr (const struct MonitorDef *md, int val)
|
static target_long monitor_get_msr (const struct MonitorDef *md, int val)
|
||||||
{
|
{
|
||||||
CPUState *env = mon_get_cpu();
|
CPUState *env = mon_get_cpu();
|
||||||
if (!env)
|
|
||||||
return 0;
|
|
||||||
return env->msr;
|
return env->msr;
|
||||||
}
|
}
|
||||||
|
|
||||||
static target_long monitor_get_xer (const struct MonitorDef *md, int val)
|
static target_long monitor_get_xer (const struct MonitorDef *md, int val)
|
||||||
{
|
{
|
||||||
CPUState *env = mon_get_cpu();
|
CPUState *env = mon_get_cpu();
|
||||||
if (!env)
|
|
||||||
return 0;
|
|
||||||
return env->xer;
|
return env->xer;
|
||||||
}
|
}
|
||||||
|
|
||||||
static target_long monitor_get_decr (const struct MonitorDef *md, int val)
|
static target_long monitor_get_decr (const struct MonitorDef *md, int val)
|
||||||
{
|
{
|
||||||
CPUState *env = mon_get_cpu();
|
CPUState *env = mon_get_cpu();
|
||||||
if (!env)
|
|
||||||
return 0;
|
|
||||||
return cpu_ppc_load_decr(env);
|
return cpu_ppc_load_decr(env);
|
||||||
}
|
}
|
||||||
|
|
||||||
static target_long monitor_get_tbu (const struct MonitorDef *md, int val)
|
static target_long monitor_get_tbu (const struct MonitorDef *md, int val)
|
||||||
{
|
{
|
||||||
CPUState *env = mon_get_cpu();
|
CPUState *env = mon_get_cpu();
|
||||||
if (!env)
|
|
||||||
return 0;
|
|
||||||
return cpu_ppc_load_tbu(env);
|
return cpu_ppc_load_tbu(env);
|
||||||
}
|
}
|
||||||
|
|
||||||
static target_long monitor_get_tbl (const struct MonitorDef *md, int val)
|
static target_long monitor_get_tbl (const struct MonitorDef *md, int val)
|
||||||
{
|
{
|
||||||
CPUState *env = mon_get_cpu();
|
CPUState *env = mon_get_cpu();
|
||||||
if (!env)
|
|
||||||
return 0;
|
|
||||||
return cpu_ppc_load_tbl(env);
|
return cpu_ppc_load_tbl(env);
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
@ -2727,8 +2702,6 @@ static target_long monitor_get_tbl (const struct MonitorDef *md, int val)
|
|||||||
static target_long monitor_get_psr (const struct MonitorDef *md, int val)
|
static target_long monitor_get_psr (const struct MonitorDef *md, int val)
|
||||||
{
|
{
|
||||||
CPUState *env = mon_get_cpu();
|
CPUState *env = mon_get_cpu();
|
||||||
if (!env)
|
|
||||||
return 0;
|
|
||||||
return GET_PSR(env);
|
return GET_PSR(env);
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
@ -2736,8 +2709,6 @@ static target_long monitor_get_psr (const struct MonitorDef *md, int val)
|
|||||||
static target_long monitor_get_reg(const struct MonitorDef *md, int val)
|
static target_long monitor_get_reg(const struct MonitorDef *md, int val)
|
||||||
{
|
{
|
||||||
CPUState *env = mon_get_cpu();
|
CPUState *env = mon_get_cpu();
|
||||||
if (!env)
|
|
||||||
return 0;
|
|
||||||
return env->regwptr[val];
|
return env->regwptr[val];
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
@ -2989,7 +2960,7 @@ static void expr_error(Monitor *mon, const char *msg)
|
|||||||
longjmp(expr_env, 1);
|
longjmp(expr_env, 1);
|
||||||
}
|
}
|
||||||
|
|
||||||
/* return 0 if OK, -1 if not found, -2 if no CPU defined */
|
/* return 0 if OK, -1 if not found */
|
||||||
static int get_monitor_def(target_long *pval, const char *name)
|
static int get_monitor_def(target_long *pval, const char *name)
|
||||||
{
|
{
|
||||||
const MonitorDef *md;
|
const MonitorDef *md;
|
||||||
@ -3001,8 +2972,6 @@ static int get_monitor_def(target_long *pval, const char *name)
|
|||||||
*pval = md->get_value(md, md->offset);
|
*pval = md->get_value(md, md->offset);
|
||||||
} else {
|
} else {
|
||||||
CPUState *env = mon_get_cpu();
|
CPUState *env = mon_get_cpu();
|
||||||
if (!env)
|
|
||||||
return -2;
|
|
||||||
ptr = (uint8_t *)env + md->offset;
|
ptr = (uint8_t *)env + md->offset;
|
||||||
switch(md->type) {
|
switch(md->type) {
|
||||||
case MD_I32:
|
case MD_I32:
|
||||||
@ -3089,10 +3058,8 @@ static int64_t expr_unary(Monitor *mon)
|
|||||||
pch++;
|
pch++;
|
||||||
*q = 0;
|
*q = 0;
|
||||||
ret = get_monitor_def(®, buf);
|
ret = get_monitor_def(®, buf);
|
||||||
if (ret == -1)
|
if (ret < 0)
|
||||||
expr_error(mon, "unknown register");
|
expr_error(mon, "unknown register");
|
||||||
else if (ret == -2)
|
|
||||||
expr_error(mon, "no cpu defined");
|
|
||||||
n = reg;
|
n = reg;
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user