-
Notifications
You must be signed in to change notification settings - Fork 1
/
modmr.cpp
276 lines (234 loc) · 12.7 KB
/
modmr.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
#include "modmr.hpp"
#include "utility_functions.hpp"
#include <bitset>
string register_array_32_bit[] = { "EAX", "ECX", "EDX", "EBX", "ESP", "EBP", "ESI", "EDI" };
string register_array_16_bit[] = { "AX", "CX", "DX", "BX", "SP", "BP", "SI", "DI" };
string register_array_8_bit[] = { "AL", "CL", "DL", "BL", "AH", "CH", "DH", "BH" };
string register_array_MMX[] = { "MM0", "MM1", "MM2", "MM3", "MM4", "MM5", "MM6", "MM7" };
string register_array_XMM[] = { "XMM0", "XMM1", "XMM2", "XMM3", "XMM4", "XMM5", "XMM6", "XMM7" };
ModMrDecodeOutputArguments* decodeModeMrByte(ModMrDecodeInputArguments* inputs, Reader *reader, RegisterBank *rb, Memory *memory){
uint8_t modrm_byte = reader->readNextByte();
uint32_t mod = (uint32_t)((modrm_byte & ((uint8_t)3<<6))>>6);
uint32_t reg = (uint32_t)((modrm_byte & ((uint8_t)7<<3))>>3);
uint32_t rm = (uint32_t)(modrm_byte & ((uint8_t)7));
// std::cout<<"modmr: "<<(uint32_t)modrm_byte<<std::endl;
// std::cout<< "mod: "<<mod<<" reg: "<<reg<<" rm: "<<rm<<std::endl;
// std::cout<<"rm op type: "<<inputs->rm_operand_register_type<<std::endl;
// std::cout<<"reg op type: "<<inputs->reg_operand_register_type<<std::endl;
struct ModMrDecodeOutputArguments* output = new ModMrDecodeOutputArguments({false,false,0,0,"","","",""});
if(inputs->is_first_operand_reg){
if (inputs->reg_operand_register_type == REGISTER_8){
output->first_operand_register = register_array_8_bit[reg];
}
else if (inputs->reg_operand_register_type == REGISTER_16){
output->first_operand_register = register_array_16_bit[reg];
}
else if (inputs->reg_operand_register_type == REGISTER_32){
output->first_operand_register = register_array_32_bit[reg];
}
else if (inputs->reg_operand_register_type == REGISTER_MM){
output->first_operand_register = register_array_MMX[reg];
}
else{
output->first_operand_register = register_array_XMM[reg];
}
output->is_first_operand_register = true;
output->decoded_print_string_op1 = "%" + output->first_operand_register;
}
else{ // first operand is r/m
output->first_operand_register = register_array_32_bit[rm];
if(mod == 0){
output->is_first_operand_register = false;
if(rm == 4){
// SIB [--]
SibDecodeInputArguments *sib_inputs = new SibDecodeInputArguments;
sib_inputs->modrm_byte = modrm_byte;
SibDecodeOutputArguments *sib_outputs = decodeSIBByte(sib_inputs, reader, rb);
output->first_operand_effective_addr = sib_outputs->effective_addr;
output->decoded_print_string_op1 = sib_outputs->decoded_print_string;
}
else if(rm == 5){
// "disp32";
uint32_t displacement = readDispalcement(reader, 4);
output->first_operand_effective_addr = displacement;
output->decoded_print_string_op1 = "$" + intToHexStr(displacement);
}
else{
output->first_operand_effective_addr = rb->getRegister(output->first_operand_register);
output->decoded_print_string_op1 = "(%" + output->first_operand_register + ")";
}
}
else if(mod == 1){
output->is_first_operand_register = false;
if(rm == 4){
// SIB [--]
SibDecodeInputArguments *sib_inputs = new SibDecodeInputArguments;
sib_inputs->modrm_byte = modrm_byte;
SibDecodeOutputArguments *sib_outputs = decodeSIBByte(sib_inputs, reader, rb);
output->first_operand_effective_addr = sib_outputs->effective_addr;
uint32_t displacement = readDispalcement(reader, 1);
output->first_operand_effective_addr += displacement;
output->decoded_print_string_op1 = "$" + intToHexStr(displacement);
output->decoded_print_string_op1 += sib_outputs->decoded_print_string;
}
else{
uint32_t displacement = readDispalcement(reader, 1);
output->first_operand_effective_addr = rb->getRegister(output->first_operand_register) + displacement;
output->decoded_print_string_op1 = "$" + intToHexStr(displacement) + "(%" + output->first_operand_register + ")";
}
}
else if(mod == 2){
output->is_first_operand_register = false;
if(rm == 4){
// SIB [--]
SibDecodeInputArguments *sib_inputs = new SibDecodeInputArguments;
sib_inputs->modrm_byte = modrm_byte;
SibDecodeOutputArguments *sib_outputs = decodeSIBByte(sib_inputs, reader, rb);
output->first_operand_effective_addr = sib_outputs->effective_addr;
uint32_t displacement = readDispalcement(reader, 4);
output->first_operand_effective_addr += displacement;
output->decoded_print_string_op1 = "$" + intToHexStr(displacement);
output->decoded_print_string_op1 += sib_outputs->decoded_print_string;
}
else{
uint32_t displacement = readDispalcement(reader, 4);
output->first_operand_effective_addr = rb->getRegister(output->first_operand_register) + displacement;
output->decoded_print_string_op1 = "$" + intToHexStr(displacement) + "(%" + output->first_operand_register + ")";
}
}
else{
output->is_first_operand_register = true;
if(inputs->rm_operand_register_type == REGISTER_16){
output->first_operand_register = register_array_16_bit[rm];
}
else if(inputs->rm_operand_register_type == REGISTER_8){
output->first_operand_register = register_array_8_bit[rm];
}
else if(inputs->rm_operand_register_type == REGISTER_MM){
output->first_operand_register = register_array_MMX[rm];
}
else if(inputs->rm_operand_register_type == REGISTER_XMM){
output->first_operand_register = register_array_XMM[rm];
}
else{
output->first_operand_register = register_array_32_bit[rm];
}
output->decoded_print_string_op1 = "%" + output->first_operand_register;
}
}
if(inputs->has_second_operand){
if(inputs->is_second_operand_reg){
if (inputs->reg_operand_register_type == REGISTER_8){
output->second_operand_register = register_array_8_bit[reg];
}
else if (inputs->reg_operand_register_type == REGISTER_16){
output->second_operand_register = register_array_16_bit[reg];
}
else if (inputs->reg_operand_register_type == REGISTER_32){
output->second_operand_register = register_array_32_bit[reg];
}
else if (inputs->reg_operand_register_type == REGISTER_MM){
output->second_operand_register = register_array_MMX[reg];
}
else{
output->second_operand_register = register_array_XMM[reg];
}
output->is_second_operand_register = true;
output->decoded_print_string_op2 = "%" + output->second_operand_register;
}
else{ // second operand is a r/m
output->second_operand_register = register_array_32_bit[rm];
if(mod == 0){
output->is_second_operand_register = false;
if(rm == 4){
// SIB [--]
SibDecodeInputArguments *sib_inputs = new SibDecodeInputArguments;
sib_inputs->modrm_byte = modrm_byte;
SibDecodeOutputArguments *sib_outputs = decodeSIBByte(sib_inputs, reader, rb);
output->second_operand_effective_addr = sib_outputs->effective_addr;
output->decoded_print_string_op1 = sib_outputs->decoded_print_string;
}
else if(rm == 5){
// "disp32";
uint32_t displacement = readDispalcement(reader, 4);
output->second_operand_effective_addr = displacement;
output->decoded_print_string_op2 = "$" + intToHexStr(displacement);
}
else{
output->second_operand_effective_addr = rb->getRegister(output->second_operand_register);
output->decoded_print_string_op2 = "(%" + output->second_operand_register + ")";
}
}
else if(mod == 1){
output->is_second_operand_register = false;
if(rm == 4){
// SIB [--]
SibDecodeInputArguments *sib_inputs = new SibDecodeInputArguments;
sib_inputs->modrm_byte = modrm_byte;
SibDecodeOutputArguments *sib_outputs = decodeSIBByte(sib_inputs, reader, rb);
output->second_operand_effective_addr = sib_outputs->effective_addr;
uint32_t displacement = readDispalcement(reader, 1);
output->second_operand_effective_addr += displacement;
output->decoded_print_string_op1 = "$" + intToHexStr(displacement);
output->decoded_print_string_op1 += sib_outputs->decoded_print_string;
}
else{
uint32_t displacement = readDispalcement(reader, 1);
output->second_operand_effective_addr = rb->getRegister(output->second_operand_register) + displacement;
output->decoded_print_string_op2 = "$" + intToHexStr(displacement) + "(%" + output->second_operand_register + ")";
}
}
else if(mod == 2){
output->is_second_operand_register = false;
if(rm == 4){
// SIB [--]
SibDecodeInputArguments *sib_inputs = new SibDecodeInputArguments;
sib_inputs->modrm_byte = modrm_byte;
SibDecodeOutputArguments *sib_outputs = decodeSIBByte(sib_inputs, reader, rb);
output->second_operand_effective_addr = sib_outputs->effective_addr;
uint32_t displacement = readDispalcement(reader, 4);
output->second_operand_effective_addr += displacement;
output->decoded_print_string_op1 = "$" + intToHexStr(displacement);
output->decoded_print_string_op1 += sib_outputs->decoded_print_string;
}
else{
uint32_t displacement = readDispalcement(reader, 4);
output->second_operand_effective_addr = rb->getRegister(output->second_operand_register) + displacement;
output->decoded_print_string_op2 = "$" + intToHexStr(displacement) + "(%" + output->second_operand_register + ")";
}
}
else{
output->is_second_operand_register = true;
if(inputs->rm_operand_register_type == REGISTER_16){
output->second_operand_register = register_array_16_bit[rm];
}
else if(inputs->rm_operand_register_type == REGISTER_8){
output->second_operand_register = register_array_8_bit[rm];
}
else if(inputs->rm_operand_register_type == REGISTER_MM){
output->second_operand_register = register_array_MMX[rm];
}
else if(inputs->rm_operand_register_type == REGISTER_XMM){
output->second_operand_register = register_array_XMM[rm];
}
else{
output->second_operand_register = register_array_32_bit[rm];
}
output->decoded_print_string_op2 = "%" + output->second_operand_register;
}
}
}
return output;
}
void printModRm(ModMrDecodeOutputArguments* outputs){
printf("\nif_1op_reg: %d, is_2op_reg: %d, 1op_eff_addr: %d, 2op_eff_addr: %d\n",
outputs->is_first_operand_register,
outputs->is_second_operand_register,
outputs->first_operand_effective_addr,
outputs->second_operand_effective_addr
);
// cout << "1op Reg: " << outputs->first_operand_register << endl;
// cout << "2op Reg: " << outputs->second_operand_register << endl;
cout << "1op Print str: " << outputs->decoded_print_string_op1 << endl;
cout << "2op Print str: " << outputs->decoded_print_string_op2 << endl;
}