X-Git-Url: http://v3vee.org/palacios/gitweb/gitweb.cgi?a=blobdiff_plain;f=palacios%2Fsrc%2Fpalacios%2Fvmm_xed.c;h=e23ace081b1cfab99754dc93b78468d48dcdccf1;hb=b3e5aa263c35961c74e0b7ed96b8510e8c6d7d0d;hp=bd0d4f09b85eaec5764482963ca0a454be2be384;hpb=82b8b87c344fcd1eab22e3f3be5ad54cbb3f8f68;p=palacios-OLD.git diff --git a/palacios/src/palacios/vmm_xed.c b/palacios/src/palacios/vmm_xed.c index bd0d4f0..e23ace0 100644 --- a/palacios/src/palacios/vmm_xed.c +++ b/palacios/src/palacios/vmm_xed.c @@ -180,57 +180,15 @@ int v3_init_decoder(struct guest_info * info) { -int v3_basic_mem_decode(struct guest_info * info, addr_t instr_ptr, struct basic_instr_info * instr_info) { - xed_decoded_inst_t xed_instr; - xed_error_enum_t xed_error; - - - if (set_decoder_mode(info, info->decoder_state) == -1) { - PrintError("Could not set decoder mode\n"); - return -1; - } - - - xed_decoded_inst_zero_set_mode(&xed_instr, info->decoder_state); - - xed_error = xed_decode(&xed_instr, - REINTERPRET_CAST(const xed_uint8_t *, instr_ptr), - XED_MAX_INSTRUCTION_BYTES); - - if (xed_error != XED_ERROR_NONE) { - PrintError("Xed error: %s\n", xed_error_enum_t2str(xed_error)); - return -1; - } - - instr_info->instr_length = xed_decoded_inst_get_length(&xed_instr); - - - if (xed_decoded_inst_number_of_memory_operands(&xed_instr) == 0) { - PrintError("Tried to decode memory operation with no memory operands\n"); - return -1; - } - - instr_info->op_size = xed_decoded_inst_get_memory_operand_length(&xed_instr, 0); - - - xed_category_enum_t cat = xed_decoded_inst_get_category(&xed_instr); - if (cat == XED_CATEGORY_STRINGOP) { - instr_info->str_op = 1; - } else { - instr_info->str_op = 0; - } - - xed_operand_values_t * operands = xed_decoded_inst_operands(&xed_instr); - if (xed_operand_values_has_real_rep(operands)) { - instr_info->has_rep = 1; - } else { - instr_info->has_rep = 0; - } +int v3_deinit_decoder(struct guest_info * core) { + V3_Free(core->decoder_state); return 0; } + + static int decode_string_op(struct guest_info * info, xed_decoded_inst_t * xed_instr, const xed_inst_t * xi, struct x86_instr * instr) { @@ -294,6 +252,55 @@ static int decode_string_op(struct guest_info * info, +int v3_disasm(struct guest_info * info, void *instr_ptr, addr_t * rip, int mark) { + char buffer[256]; + int i; + unsigned length; + xed_decoded_inst_t xed_instr; + xed_error_enum_t xed_error; + + /* disassemble the specified instruction */ + if (set_decoder_mode(info, info->decoder_state) == -1) { + PrintError("Could not set decoder mode\n"); + return -1; + } + + xed_decoded_inst_zero_set_mode(&xed_instr, info->decoder_state); + + xed_error = xed_decode(&xed_instr, + REINTERPRET_CAST(const xed_uint8_t *, instr_ptr), + XED_MAX_INSTRUCTION_BYTES); + + if (xed_error != XED_ERROR_NONE) { + PrintError("Xed error: %s\n", xed_error_enum_t2str(xed_error)); + return -1; + } + + /* obtain string representation in AT&T syntax */ + if (!xed_format_att(&xed_instr, buffer, sizeof(buffer), *rip)) { + PrintError("Xed error: cannot disaaemble\n"); + return -1; + } + + /* print address, opcode bytes and the disassembled instruction */ + length = xed_decoded_inst_get_length(&xed_instr); + V3_Print("0x%p %c ", (void *) *rip, mark ? '*' : ' '); + for (i = 0; i < length; i++) { + unsigned char b = ((unsigned char *) instr_ptr)[i]; + V3_Print("%x%x ", b >> 4, b & 0xf); + } + while (i++ < 8) { + V3_Print(" "); + } + V3_Print("%s\n", buffer); + + /* move on to next instruction */ + *rip += length; + return 0; +} + + + int v3_decode(struct guest_info * info, addr_t instr_ptr, struct x86_instr * instr) { xed_decoded_inst_t xed_instr; xed_error_enum_t xed_error; @@ -644,13 +651,15 @@ static int get_memory_operand(struct guest_info * info, xed_decoded_inst_t * xe index = MASK(mem_op.index, mem_op.index_size); scale = mem_op.scale; - // This is a horrendous hack... - // XED really screwed the pooch in calculating the displacement - if (cpu_mode == LONG) { - displacement = mem_op.displacement; - } else { - displacement = MASK(mem_op.displacement, mem_op.displacement_size); - } + // XED returns the displacement as a 2s complement signed number, but it can + // have different sizes, depending on the instruction encoding. + // we put that into a 64 bit unsigned (the unsigned doesn't matter since + // we only ever do 2s complement arithmetic on it. However, this means we + // need to sign-extend what XED provides through 64 bits. + displacement = mem_op.displacement; + displacement <<= 64 - mem_op.displacement_size * 8; + displacement = ((sllong_t)displacement) >> (64 - mem_op.displacement_size * 8); + PrintDebug("Seg=%p, base=%p, index=%p, scale=%p, displacement=%p\n", (void *)seg, (void *)base, (void *)index, (void *)scale, (void *)(addr_t)displacement);