X-Git-Url: http://v3vee.org/palacios/gitweb/gitweb.cgi?a=blobdiff_plain;f=palacios%2Fsrc%2Fpalacios%2Fvmm_v3dec.c;h=4fa6e04004d399b2867c03c436d0b79f68e2a77c;hb=8f8feb4e743fa906919d43acc1e2013638837162;hp=1b2436f38c0127e24d549280e4e26875ae414ca4;hpb=96fd46fc682a12bb09782319d3a09d7d71e8a39b;p=palacios.git diff --git a/palacios/src/palacios/vmm_v3dec.c b/palacios/src/palacios/vmm_v3dec.c index 1b2436f..4fa6e04 100644 --- a/palacios/src/palacios/vmm_v3dec.c +++ b/palacios/src/palacios/vmm_v3dec.c @@ -20,9 +20,14 @@ #include #include +#ifndef CONFIG_DEBUG_DECODER +#undef PrintDebug +#define PrintDebug(fmt, args...) +#endif + #define MASK(val, length) ({ \ - ullong_t mask = 0x0LL; \ + uint64_t mask = 0x0LL; \ switch (length) { \ case 1: \ mask = 0x00000000000000ffLL; \ @@ -97,7 +102,6 @@ int v3_decode(struct guest_info * core, addr_t instr_ptr, struct x86_instr * ins form = op_code_to_form((uint8_t *)(instr_ptr + length), &length); - V3_Print("\t decoded as (%s)\n", op_form_to_str(form)); if (form == INVALID_INSTR) { @@ -114,11 +118,9 @@ int v3_decode(struct guest_info * core, addr_t instr_ptr, struct x86_instr * ins return -1; } length += ret; - instr->instr_length += length; - v3_print_instr(instr); return 0; @@ -165,6 +167,7 @@ static int parse_operands(struct guest_info * core, uint8_t * instr_ptr, instr->src_operand.type = IMM_OPERAND; instr->src_operand.size = operand_width; + if (operand_width == 1) { instr->src_operand.operand = *(uint8_t *)instr_ptr; } else if (operand_width == 2) { @@ -176,6 +179,9 @@ static int parse_operands(struct guest_info * core, uint8_t * instr_ptr, return -1; } + instr->src_operand.read = 1; + instr->dst_operand.write = 1; + instr_ptr += operand_width; instr->num_operands = 2; @@ -210,6 +216,10 @@ static int parse_operands(struct guest_info * core, uint8_t * instr_ptr, instr->src_operand.type = REG_OPERAND; instr->src_operand.size = operand_width; + instr->src_operand.read = 1; + instr->dst_operand.write = 1; + + decode_gpr(core, reg_code, &(instr->src_operand)); instr->num_operands = 2; @@ -244,6 +254,59 @@ static int parse_operands(struct guest_info * core, uint8_t * instr_ptr, instr->dst_operand.type = REG_OPERAND; decode_gpr(core, reg_code, &(instr->dst_operand)); + instr->src_operand.read = 1; + instr->dst_operand.write = 1; + + instr->num_operands = 2; + + break; + } + case MOVSX_8: + case MOVZX_8: { + uint8_t reg_code = 0; + + ret = decode_rm_operand(core, instr_ptr, form, instr, &(instr->src_operand), ®_code); + instr->src_operand.size = 1; + + if (ret == -1) { + PrintError("Error decoding operand\n"); + return -1; + } + + instr_ptr += ret; + + instr->dst_operand.size = operand_width; + instr->dst_operand.type = REG_OPERAND; + decode_gpr(core, reg_code, &(instr->dst_operand)); + + instr->src_operand.read = 1; + instr->dst_operand.write = 1; + + instr->num_operands = 2; + + break; + } + case MOVSX: + case MOVZX: { + uint8_t reg_code = 0; + + ret = decode_rm_operand(core, instr_ptr, form, instr, &(instr->src_operand), ®_code); + instr->src_operand.size = 2; + + if (ret == -1) { + PrintError("Error decoding operand\n"); + return -1; + } + + instr_ptr += ret; + + instr->dst_operand.size = operand_width; + instr->dst_operand.type = REG_OPERAND; + decode_gpr(core, reg_code, &(instr->dst_operand)); + + instr->src_operand.read = 1; + instr->dst_operand.write = 1; + instr->num_operands = 2; break; @@ -256,7 +319,7 @@ static int parse_operands(struct guest_info * core, uint8_t * instr_ptr, case XOR_IMM2SX_8: { uint8_t reg_code = 0; - ret = decode_rm_operand(core, instr_ptr, form, instr, &(instr->src_operand), ®_code); + ret = decode_rm_operand(core, instr_ptr, form, instr, &(instr->dst_operand), ®_code); if (ret == -1) { PrintError("Error decoding operand\n"); @@ -267,7 +330,10 @@ static int parse_operands(struct guest_info * core, uint8_t * instr_ptr, instr->src_operand.type = IMM_OPERAND; instr->src_operand.size = operand_width; - instr->src_operand.operand = *(sint8_t *)instr_ptr; // sign extend. + instr->src_operand.operand = (addr_t)MASK((sint64_t)*(sint8_t *)instr_ptr, operand_width); // sign extend. + + instr->src_operand.read = 1; + instr->dst_operand.write = 1; instr_ptr += 1; @@ -292,98 +358,109 @@ static int parse_operands(struct guest_info * core, uint8_t * instr_ptr, instr->src_operand.size = operand_width; instr->src_operand.operand = get_addr_linear(core, MASK(core->vm_regs.rsi, addr_width), &(core->segments.ds)); + instr->dst_operand.type = MEM_OPERAND; instr->dst_operand.size = operand_width; instr->dst_operand.operand = get_addr_linear(core, MASK(core->vm_regs.rdi, addr_width), &(core->segments.es)); - instr->num_operands = 2; - break; + instr->src_operand.read = 1; + instr->dst_operand.write = 1; - case MOV_2CR: { - uint8_t reg_code = 0; + instr->num_operands = 2; - ret = decode_rm_operand(core, instr_ptr, form, instr, &(instr->src_operand), - ®_code); + break; + } + case MOV_2CR: { + uint8_t reg_code = 0; + + ret = decode_rm_operand(core, instr_ptr, form, instr, &(instr->src_operand), + ®_code); - if (ret == -1) { - PrintError("Error decoding operand for (%s)\n", op_form_to_str(form)); - return -1; - } + if (ret == -1) { + PrintError("Error decoding operand for (%s)\n", op_form_to_str(form)); + return -1; + } - instr_ptr += ret; + instr_ptr += ret; - instr->dst_operand.type = REG_OPERAND; - instr->dst_operand.size = operand_width; - decode_cr(core, reg_code, &(instr->dst_operand)); + instr->dst_operand.type = REG_OPERAND; + instr->dst_operand.size = operand_width; + decode_cr(core, reg_code, &(instr->dst_operand)); + + instr->src_operand.read = 1; + instr->dst_operand.write = 1; - instr->num_operands = 2; - break; + instr->num_operands = 2; + break; + } + case MOV_CR2: { + uint8_t reg_code = 0; + + ret = decode_rm_operand(core, instr_ptr, form, instr, &(instr->dst_operand), + ®_code); + + if (ret == -1) { + PrintError("Error decoding operand for (%s)\n", op_form_to_str(form)); + return -1; } - case MOV_CR2: { - uint8_t reg_code = 0; - - ret = decode_rm_operand(core, instr_ptr, form, instr, &(instr->dst_operand), - ®_code); - - if (ret == -1) { - PrintError("Error decoding operand for (%s)\n", op_form_to_str(form)); - return -1; - } - instr_ptr += ret; - - instr->src_operand.type = REG_OPERAND; - instr->src_operand.size = operand_width; - decode_cr(core, reg_code, &(instr->src_operand)); - - instr->num_operands = 2; - break; - } - case STOS: - case STOS_8: { - instr->is_str_op = 1; - - if (instr->prefixes.rep == 1) { - instr->str_op_length = MASK(core->vm_regs.rcx, operand_width); - } else { - instr->str_op_length = 1; - } - - instr->src_operand.size = operand_width; - instr->src_operand.type = REG_OPERAND; - instr->src_operand.operand = (addr_t)&(core->vm_regs.rax); + instr_ptr += ret; + + instr->src_operand.type = REG_OPERAND; + instr->src_operand.size = operand_width; + decode_cr(core, reg_code, &(instr->src_operand)); - instr->dst_operand.type = MEM_OPERAND; - instr->dst_operand.size = operand_width; - instr->dst_operand.operand = get_addr_linear(core, MASK(core->vm_regs.rdi, addr_width), &(core->segments.es)); + instr->src_operand.read = 1; + instr->dst_operand.write = 1; - instr->num_operands = 2; + instr->num_operands = 2; + break; + } + case STOS: + case STOS_8: { + instr->is_str_op = 1; - break; + if (instr->prefixes.rep == 1) { + instr->str_op_length = MASK(core->vm_regs.rcx, operand_width); + } else { + instr->str_op_length = 1; } - case INVLPG: { - uint8_t reg_code = 0; - - // We use the dst operand here to maintain bug-for-bug compatibility with XED - ret = decode_rm_operand(core, instr_ptr, form, instr, &(instr->dst_operand), ®_code); + instr->src_operand.size = operand_width; + instr->src_operand.type = REG_OPERAND; + instr->src_operand.operand = (addr_t)&(core->vm_regs.rax); - if (ret == -1) { - PrintError("Error decoding operand for (%s)\n", op_form_to_str(form)); - return -1; - } + instr->dst_operand.type = MEM_OPERAND; + instr->dst_operand.size = operand_width; + instr->dst_operand.operand = get_addr_linear(core, MASK(core->vm_regs.rdi, addr_width), &(core->segments.es)); - instr_ptr += ret; + instr->src_operand.read = 1; + instr->dst_operand.write = 1; - instr->num_operands = 1; - break; - } - case CLTS: { - // no operands. - break; + instr->num_operands = 2; + break; + } + case INVLPG: { + uint8_t reg_code = 0; + + ret = decode_rm_operand(core, instr_ptr, form, instr, &(instr->dst_operand), ®_code); + + if (ret == -1) { + PrintError("Error decoding operand for (%s)\n", op_form_to_str(form)); + return -1; } + + instr_ptr += ret; + + instr->num_operands = 1; + break; + } + case CLTS: { + // no operands. + break; + } default: PrintError("Invalid Instruction form: %s\n", op_form_to_str(form));