Loading...
1/*
2 * x86 instruction analysis
3 *
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation; either version 2 of the License, or
7 * (at your option) any later version.
8 *
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
13 *
14 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, write to the Free Software
16 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
17 *
18 * Copyright (C) IBM Corporation, 2002, 2004, 2009
19 */
20
21#ifdef __KERNEL__
22#include <linux/string.h>
23#else
24#include <string.h>
25#endif
26#include <asm/inat.h>
27#include <asm/insn.h>
28
29/* Verify next sizeof(t) bytes can be on the same instruction */
30#define validate_next(t, insn, n) \
31 ((insn)->next_byte + sizeof(t) + n - (insn)->kaddr <= MAX_INSN_SIZE)
32
33#define __get_next(t, insn) \
34 ({ t r = *(t*)insn->next_byte; insn->next_byte += sizeof(t); r; })
35
36#define __peek_nbyte_next(t, insn, n) \
37 ({ t r = *(t*)((insn)->next_byte + n); r; })
38
39#define get_next(t, insn) \
40 ({ if (unlikely(!validate_next(t, insn, 0))) goto err_out; __get_next(t, insn); })
41
42#define peek_nbyte_next(t, insn, n) \
43 ({ if (unlikely(!validate_next(t, insn, n))) goto err_out; __peek_nbyte_next(t, insn, n); })
44
45#define peek_next(t, insn) peek_nbyte_next(t, insn, 0)
46
47/**
48 * insn_init() - initialize struct insn
49 * @insn: &struct insn to be initialized
50 * @kaddr: address (in kernel memory) of instruction (or copy thereof)
51 * @x86_64: !0 for 64-bit kernel or 64-bit app
52 */
53void insn_init(struct insn *insn, const void *kaddr, int x86_64)
54{
55 memset(insn, 0, sizeof(*insn));
56 insn->kaddr = kaddr;
57 insn->next_byte = kaddr;
58 insn->x86_64 = x86_64 ? 1 : 0;
59 insn->opnd_bytes = 4;
60 if (x86_64)
61 insn->addr_bytes = 8;
62 else
63 insn->addr_bytes = 4;
64}
65
66/**
67 * insn_get_prefixes - scan x86 instruction prefix bytes
68 * @insn: &struct insn containing instruction
69 *
70 * Populates the @insn->prefixes bitmap, and updates @insn->next_byte
71 * to point to the (first) opcode. No effect if @insn->prefixes.got
72 * is already set.
73 */
74void insn_get_prefixes(struct insn *insn)
75{
76 struct insn_field *prefixes = &insn->prefixes;
77 insn_attr_t attr;
78 insn_byte_t b, lb;
79 int i, nb;
80
81 if (prefixes->got)
82 return;
83
84 nb = 0;
85 lb = 0;
86 b = peek_next(insn_byte_t, insn);
87 attr = inat_get_opcode_attribute(b);
88 while (inat_is_legacy_prefix(attr)) {
89 /* Skip if same prefix */
90 for (i = 0; i < nb; i++)
91 if (prefixes->bytes[i] == b)
92 goto found;
93 if (nb == 4)
94 /* Invalid instruction */
95 break;
96 prefixes->bytes[nb++] = b;
97 if (inat_is_address_size_prefix(attr)) {
98 /* address size switches 2/4 or 4/8 */
99 if (insn->x86_64)
100 insn->addr_bytes ^= 12;
101 else
102 insn->addr_bytes ^= 6;
103 } else if (inat_is_operand_size_prefix(attr)) {
104 /* oprand size switches 2/4 */
105 insn->opnd_bytes ^= 6;
106 }
107found:
108 prefixes->nbytes++;
109 insn->next_byte++;
110 lb = b;
111 b = peek_next(insn_byte_t, insn);
112 attr = inat_get_opcode_attribute(b);
113 }
114 /* Set the last prefix */
115 if (lb && lb != insn->prefixes.bytes[3]) {
116 if (unlikely(insn->prefixes.bytes[3])) {
117 /* Swap the last prefix */
118 b = insn->prefixes.bytes[3];
119 for (i = 0; i < nb; i++)
120 if (prefixes->bytes[i] == lb)
121 prefixes->bytes[i] = b;
122 }
123 insn->prefixes.bytes[3] = lb;
124 }
125
126 /* Decode REX prefix */
127 if (insn->x86_64) {
128 b = peek_next(insn_byte_t, insn);
129 attr = inat_get_opcode_attribute(b);
130 if (inat_is_rex_prefix(attr)) {
131 insn->rex_prefix.value = b;
132 insn->rex_prefix.nbytes = 1;
133 insn->next_byte++;
134 if (X86_REX_W(b))
135 /* REX.W overrides opnd_size */
136 insn->opnd_bytes = 8;
137 }
138 }
139 insn->rex_prefix.got = 1;
140
141 /* Decode VEX prefix */
142 b = peek_next(insn_byte_t, insn);
143 attr = inat_get_opcode_attribute(b);
144 if (inat_is_vex_prefix(attr)) {
145 insn_byte_t b2 = peek_nbyte_next(insn_byte_t, insn, 1);
146 if (!insn->x86_64) {
147 /*
148 * In 32-bits mode, if the [7:6] bits (mod bits of
149 * ModRM) on the second byte are not 11b, it is
150 * LDS or LES.
151 */
152 if (X86_MODRM_MOD(b2) != 3)
153 goto vex_end;
154 }
155 insn->vex_prefix.bytes[0] = b;
156 insn->vex_prefix.bytes[1] = b2;
157 if (inat_is_vex3_prefix(attr)) {
158 b2 = peek_nbyte_next(insn_byte_t, insn, 2);
159 insn->vex_prefix.bytes[2] = b2;
160 insn->vex_prefix.nbytes = 3;
161 insn->next_byte += 3;
162 if (insn->x86_64 && X86_VEX_W(b2))
163 /* VEX.W overrides opnd_size */
164 insn->opnd_bytes = 8;
165 } else {
166 insn->vex_prefix.nbytes = 2;
167 insn->next_byte += 2;
168 }
169 }
170vex_end:
171 insn->vex_prefix.got = 1;
172
173 prefixes->got = 1;
174
175err_out:
176 return;
177}
178
179/**
180 * insn_get_opcode - collect opcode(s)
181 * @insn: &struct insn containing instruction
182 *
183 * Populates @insn->opcode, updates @insn->next_byte to point past the
184 * opcode byte(s), and set @insn->attr (except for groups).
185 * If necessary, first collects any preceding (prefix) bytes.
186 * Sets @insn->opcode.value = opcode1. No effect if @insn->opcode.got
187 * is already 1.
188 */
189void insn_get_opcode(struct insn *insn)
190{
191 struct insn_field *opcode = &insn->opcode;
192 insn_byte_t op;
193 int pfx_id;
194 if (opcode->got)
195 return;
196 if (!insn->prefixes.got)
197 insn_get_prefixes(insn);
198
199 /* Get first opcode */
200 op = get_next(insn_byte_t, insn);
201 opcode->bytes[0] = op;
202 opcode->nbytes = 1;
203
204 /* Check if there is VEX prefix or not */
205 if (insn_is_avx(insn)) {
206 insn_byte_t m, p;
207 m = insn_vex_m_bits(insn);
208 p = insn_vex_p_bits(insn);
209 insn->attr = inat_get_avx_attribute(op, m, p);
210 if (!inat_accept_vex(insn->attr) && !inat_is_group(insn->attr))
211 insn->attr = 0; /* This instruction is bad */
212 goto end; /* VEX has only 1 byte for opcode */
213 }
214
215 insn->attr = inat_get_opcode_attribute(op);
216 while (inat_is_escape(insn->attr)) {
217 /* Get escaped opcode */
218 op = get_next(insn_byte_t, insn);
219 opcode->bytes[opcode->nbytes++] = op;
220 pfx_id = insn_last_prefix_id(insn);
221 insn->attr = inat_get_escape_attribute(op, pfx_id, insn->attr);
222 }
223 if (inat_must_vex(insn->attr))
224 insn->attr = 0; /* This instruction is bad */
225end:
226 opcode->got = 1;
227
228err_out:
229 return;
230}
231
232/**
233 * insn_get_modrm - collect ModRM byte, if any
234 * @insn: &struct insn containing instruction
235 *
236 * Populates @insn->modrm and updates @insn->next_byte to point past the
237 * ModRM byte, if any. If necessary, first collects the preceding bytes
238 * (prefixes and opcode(s)). No effect if @insn->modrm.got is already 1.
239 */
240void insn_get_modrm(struct insn *insn)
241{
242 struct insn_field *modrm = &insn->modrm;
243 insn_byte_t pfx_id, mod;
244 if (modrm->got)
245 return;
246 if (!insn->opcode.got)
247 insn_get_opcode(insn);
248
249 if (inat_has_modrm(insn->attr)) {
250 mod = get_next(insn_byte_t, insn);
251 modrm->value = mod;
252 modrm->nbytes = 1;
253 if (inat_is_group(insn->attr)) {
254 pfx_id = insn_last_prefix_id(insn);
255 insn->attr = inat_get_group_attribute(mod, pfx_id,
256 insn->attr);
257 if (insn_is_avx(insn) && !inat_accept_vex(insn->attr))
258 insn->attr = 0; /* This is bad */
259 }
260 }
261
262 if (insn->x86_64 && inat_is_force64(insn->attr))
263 insn->opnd_bytes = 8;
264 modrm->got = 1;
265
266err_out:
267 return;
268}
269
270
271/**
272 * insn_rip_relative() - Does instruction use RIP-relative addressing mode?
273 * @insn: &struct insn containing instruction
274 *
275 * If necessary, first collects the instruction up to and including the
276 * ModRM byte. No effect if @insn->x86_64 is 0.
277 */
278int insn_rip_relative(struct insn *insn)
279{
280 struct insn_field *modrm = &insn->modrm;
281
282 if (!insn->x86_64)
283 return 0;
284 if (!modrm->got)
285 insn_get_modrm(insn);
286 /*
287 * For rip-relative instructions, the mod field (top 2 bits)
288 * is zero and the r/m field (bottom 3 bits) is 0x5.
289 */
290 return (modrm->nbytes && (modrm->value & 0xc7) == 0x5);
291}
292
293/**
294 * insn_get_sib() - Get the SIB byte of instruction
295 * @insn: &struct insn containing instruction
296 *
297 * If necessary, first collects the instruction up to and including the
298 * ModRM byte.
299 */
300void insn_get_sib(struct insn *insn)
301{
302 insn_byte_t modrm;
303
304 if (insn->sib.got)
305 return;
306 if (!insn->modrm.got)
307 insn_get_modrm(insn);
308 if (insn->modrm.nbytes) {
309 modrm = (insn_byte_t)insn->modrm.value;
310 if (insn->addr_bytes != 2 &&
311 X86_MODRM_MOD(modrm) != 3 && X86_MODRM_RM(modrm) == 4) {
312 insn->sib.value = get_next(insn_byte_t, insn);
313 insn->sib.nbytes = 1;
314 }
315 }
316 insn->sib.got = 1;
317
318err_out:
319 return;
320}
321
322
323/**
324 * insn_get_displacement() - Get the displacement of instruction
325 * @insn: &struct insn containing instruction
326 *
327 * If necessary, first collects the instruction up to and including the
328 * SIB byte.
329 * Displacement value is sign-expanded.
330 */
331void insn_get_displacement(struct insn *insn)
332{
333 insn_byte_t mod, rm, base;
334
335 if (insn->displacement.got)
336 return;
337 if (!insn->sib.got)
338 insn_get_sib(insn);
339 if (insn->modrm.nbytes) {
340 /*
341 * Interpreting the modrm byte:
342 * mod = 00 - no displacement fields (exceptions below)
343 * mod = 01 - 1-byte displacement field
344 * mod = 10 - displacement field is 4 bytes, or 2 bytes if
345 * address size = 2 (0x67 prefix in 32-bit mode)
346 * mod = 11 - no memory operand
347 *
348 * If address size = 2...
349 * mod = 00, r/m = 110 - displacement field is 2 bytes
350 *
351 * If address size != 2...
352 * mod != 11, r/m = 100 - SIB byte exists
353 * mod = 00, SIB base = 101 - displacement field is 4 bytes
354 * mod = 00, r/m = 101 - rip-relative addressing, displacement
355 * field is 4 bytes
356 */
357 mod = X86_MODRM_MOD(insn->modrm.value);
358 rm = X86_MODRM_RM(insn->modrm.value);
359 base = X86_SIB_BASE(insn->sib.value);
360 if (mod == 3)
361 goto out;
362 if (mod == 1) {
363 insn->displacement.value = get_next(char, insn);
364 insn->displacement.nbytes = 1;
365 } else if (insn->addr_bytes == 2) {
366 if ((mod == 0 && rm == 6) || mod == 2) {
367 insn->displacement.value =
368 get_next(short, insn);
369 insn->displacement.nbytes = 2;
370 }
371 } else {
372 if ((mod == 0 && rm == 5) || mod == 2 ||
373 (mod == 0 && base == 5)) {
374 insn->displacement.value = get_next(int, insn);
375 insn->displacement.nbytes = 4;
376 }
377 }
378 }
379out:
380 insn->displacement.got = 1;
381
382err_out:
383 return;
384}
385
386/* Decode moffset16/32/64. Return 0 if failed */
387static int __get_moffset(struct insn *insn)
388{
389 switch (insn->addr_bytes) {
390 case 2:
391 insn->moffset1.value = get_next(short, insn);
392 insn->moffset1.nbytes = 2;
393 break;
394 case 4:
395 insn->moffset1.value = get_next(int, insn);
396 insn->moffset1.nbytes = 4;
397 break;
398 case 8:
399 insn->moffset1.value = get_next(int, insn);
400 insn->moffset1.nbytes = 4;
401 insn->moffset2.value = get_next(int, insn);
402 insn->moffset2.nbytes = 4;
403 break;
404 default: /* opnd_bytes must be modified manually */
405 goto err_out;
406 }
407 insn->moffset1.got = insn->moffset2.got = 1;
408
409 return 1;
410
411err_out:
412 return 0;
413}
414
415/* Decode imm v32(Iz). Return 0 if failed */
416static int __get_immv32(struct insn *insn)
417{
418 switch (insn->opnd_bytes) {
419 case 2:
420 insn->immediate.value = get_next(short, insn);
421 insn->immediate.nbytes = 2;
422 break;
423 case 4:
424 case 8:
425 insn->immediate.value = get_next(int, insn);
426 insn->immediate.nbytes = 4;
427 break;
428 default: /* opnd_bytes must be modified manually */
429 goto err_out;
430 }
431
432 return 1;
433
434err_out:
435 return 0;
436}
437
438/* Decode imm v64(Iv/Ov), Return 0 if failed */
439static int __get_immv(struct insn *insn)
440{
441 switch (insn->opnd_bytes) {
442 case 2:
443 insn->immediate1.value = get_next(short, insn);
444 insn->immediate1.nbytes = 2;
445 break;
446 case 4:
447 insn->immediate1.value = get_next(int, insn);
448 insn->immediate1.nbytes = 4;
449 break;
450 case 8:
451 insn->immediate1.value = get_next(int, insn);
452 insn->immediate1.nbytes = 4;
453 insn->immediate2.value = get_next(int, insn);
454 insn->immediate2.nbytes = 4;
455 break;
456 default: /* opnd_bytes must be modified manually */
457 goto err_out;
458 }
459 insn->immediate1.got = insn->immediate2.got = 1;
460
461 return 1;
462err_out:
463 return 0;
464}
465
466/* Decode ptr16:16/32(Ap) */
467static int __get_immptr(struct insn *insn)
468{
469 switch (insn->opnd_bytes) {
470 case 2:
471 insn->immediate1.value = get_next(short, insn);
472 insn->immediate1.nbytes = 2;
473 break;
474 case 4:
475 insn->immediate1.value = get_next(int, insn);
476 insn->immediate1.nbytes = 4;
477 break;
478 case 8:
479 /* ptr16:64 is not exist (no segment) */
480 return 0;
481 default: /* opnd_bytes must be modified manually */
482 goto err_out;
483 }
484 insn->immediate2.value = get_next(unsigned short, insn);
485 insn->immediate2.nbytes = 2;
486 insn->immediate1.got = insn->immediate2.got = 1;
487
488 return 1;
489err_out:
490 return 0;
491}
492
493/**
494 * insn_get_immediate() - Get the immediates of instruction
495 * @insn: &struct insn containing instruction
496 *
497 * If necessary, first collects the instruction up to and including the
498 * displacement bytes.
499 * Basically, most of immediates are sign-expanded. Unsigned-value can be
500 * get by bit masking with ((1 << (nbytes * 8)) - 1)
501 */
502void insn_get_immediate(struct insn *insn)
503{
504 if (insn->immediate.got)
505 return;
506 if (!insn->displacement.got)
507 insn_get_displacement(insn);
508
509 if (inat_has_moffset(insn->attr)) {
510 if (!__get_moffset(insn))
511 goto err_out;
512 goto done;
513 }
514
515 if (!inat_has_immediate(insn->attr))
516 /* no immediates */
517 goto done;
518
519 switch (inat_immediate_size(insn->attr)) {
520 case INAT_IMM_BYTE:
521 insn->immediate.value = get_next(char, insn);
522 insn->immediate.nbytes = 1;
523 break;
524 case INAT_IMM_WORD:
525 insn->immediate.value = get_next(short, insn);
526 insn->immediate.nbytes = 2;
527 break;
528 case INAT_IMM_DWORD:
529 insn->immediate.value = get_next(int, insn);
530 insn->immediate.nbytes = 4;
531 break;
532 case INAT_IMM_QWORD:
533 insn->immediate1.value = get_next(int, insn);
534 insn->immediate1.nbytes = 4;
535 insn->immediate2.value = get_next(int, insn);
536 insn->immediate2.nbytes = 4;
537 break;
538 case INAT_IMM_PTR:
539 if (!__get_immptr(insn))
540 goto err_out;
541 break;
542 case INAT_IMM_VWORD32:
543 if (!__get_immv32(insn))
544 goto err_out;
545 break;
546 case INAT_IMM_VWORD:
547 if (!__get_immv(insn))
548 goto err_out;
549 break;
550 default:
551 /* Here, insn must have an immediate, but failed */
552 goto err_out;
553 }
554 if (inat_has_second_immediate(insn->attr)) {
555 insn->immediate2.value = get_next(char, insn);
556 insn->immediate2.nbytes = 1;
557 }
558done:
559 insn->immediate.got = 1;
560
561err_out:
562 return;
563}
564
565/**
566 * insn_get_length() - Get the length of instruction
567 * @insn: &struct insn containing instruction
568 *
569 * If necessary, first collects the instruction up to and including the
570 * immediates bytes.
571 */
572void insn_get_length(struct insn *insn)
573{
574 if (insn->length)
575 return;
576 if (!insn->immediate.got)
577 insn_get_immediate(insn);
578 insn->length = (unsigned char)((unsigned long)insn->next_byte
579 - (unsigned long)insn->kaddr);
580}
1// SPDX-License-Identifier: GPL-2.0-or-later
2/*
3 * x86 instruction analysis
4 *
5 * Copyright (C) IBM Corporation, 2002, 2004, 2009
6 */
7
8#ifdef __KERNEL__
9#include <linux/string.h>
10#else
11#include <string.h>
12#endif
13#include <asm/inat.h>
14#include <asm/insn.h>
15
16/* Verify next sizeof(t) bytes can be on the same instruction */
17#define validate_next(t, insn, n) \
18 ((insn)->next_byte + sizeof(t) + n <= (insn)->end_kaddr)
19
20#define __get_next(t, insn) \
21 ({ t r = *(t*)insn->next_byte; insn->next_byte += sizeof(t); r; })
22
23#define __peek_nbyte_next(t, insn, n) \
24 ({ t r = *(t*)((insn)->next_byte + n); r; })
25
26#define get_next(t, insn) \
27 ({ if (unlikely(!validate_next(t, insn, 0))) goto err_out; __get_next(t, insn); })
28
29#define peek_nbyte_next(t, insn, n) \
30 ({ if (unlikely(!validate_next(t, insn, n))) goto err_out; __peek_nbyte_next(t, insn, n); })
31
32#define peek_next(t, insn) peek_nbyte_next(t, insn, 0)
33
34/**
35 * insn_init() - initialize struct insn
36 * @insn: &struct insn to be initialized
37 * @kaddr: address (in kernel memory) of instruction (or copy thereof)
38 * @x86_64: !0 for 64-bit kernel or 64-bit app
39 */
40void insn_init(struct insn *insn, const void *kaddr, int buf_len, int x86_64)
41{
42 /*
43 * Instructions longer than MAX_INSN_SIZE (15 bytes) are invalid
44 * even if the input buffer is long enough to hold them.
45 */
46 if (buf_len > MAX_INSN_SIZE)
47 buf_len = MAX_INSN_SIZE;
48
49 memset(insn, 0, sizeof(*insn));
50 insn->kaddr = kaddr;
51 insn->end_kaddr = kaddr + buf_len;
52 insn->next_byte = kaddr;
53 insn->x86_64 = x86_64 ? 1 : 0;
54 insn->opnd_bytes = 4;
55 if (x86_64)
56 insn->addr_bytes = 8;
57 else
58 insn->addr_bytes = 4;
59}
60
61/**
62 * insn_get_prefixes - scan x86 instruction prefix bytes
63 * @insn: &struct insn containing instruction
64 *
65 * Populates the @insn->prefixes bitmap, and updates @insn->next_byte
66 * to point to the (first) opcode. No effect if @insn->prefixes.got
67 * is already set.
68 */
69void insn_get_prefixes(struct insn *insn)
70{
71 struct insn_field *prefixes = &insn->prefixes;
72 insn_attr_t attr;
73 insn_byte_t b, lb;
74 int i, nb;
75
76 if (prefixes->got)
77 return;
78
79 nb = 0;
80 lb = 0;
81 b = peek_next(insn_byte_t, insn);
82 attr = inat_get_opcode_attribute(b);
83 while (inat_is_legacy_prefix(attr)) {
84 /* Skip if same prefix */
85 for (i = 0; i < nb; i++)
86 if (prefixes->bytes[i] == b)
87 goto found;
88 if (nb == 4)
89 /* Invalid instruction */
90 break;
91 prefixes->bytes[nb++] = b;
92 if (inat_is_address_size_prefix(attr)) {
93 /* address size switches 2/4 or 4/8 */
94 if (insn->x86_64)
95 insn->addr_bytes ^= 12;
96 else
97 insn->addr_bytes ^= 6;
98 } else if (inat_is_operand_size_prefix(attr)) {
99 /* oprand size switches 2/4 */
100 insn->opnd_bytes ^= 6;
101 }
102found:
103 prefixes->nbytes++;
104 insn->next_byte++;
105 lb = b;
106 b = peek_next(insn_byte_t, insn);
107 attr = inat_get_opcode_attribute(b);
108 }
109 /* Set the last prefix */
110 if (lb && lb != insn->prefixes.bytes[3]) {
111 if (unlikely(insn->prefixes.bytes[3])) {
112 /* Swap the last prefix */
113 b = insn->prefixes.bytes[3];
114 for (i = 0; i < nb; i++)
115 if (prefixes->bytes[i] == lb)
116 prefixes->bytes[i] = b;
117 }
118 insn->prefixes.bytes[3] = lb;
119 }
120
121 /* Decode REX prefix */
122 if (insn->x86_64) {
123 b = peek_next(insn_byte_t, insn);
124 attr = inat_get_opcode_attribute(b);
125 if (inat_is_rex_prefix(attr)) {
126 insn->rex_prefix.value = b;
127 insn->rex_prefix.nbytes = 1;
128 insn->next_byte++;
129 if (X86_REX_W(b))
130 /* REX.W overrides opnd_size */
131 insn->opnd_bytes = 8;
132 }
133 }
134 insn->rex_prefix.got = 1;
135
136 /* Decode VEX prefix */
137 b = peek_next(insn_byte_t, insn);
138 attr = inat_get_opcode_attribute(b);
139 if (inat_is_vex_prefix(attr)) {
140 insn_byte_t b2 = peek_nbyte_next(insn_byte_t, insn, 1);
141 if (!insn->x86_64) {
142 /*
143 * In 32-bits mode, if the [7:6] bits (mod bits of
144 * ModRM) on the second byte are not 11b, it is
145 * LDS or LES or BOUND.
146 */
147 if (X86_MODRM_MOD(b2) != 3)
148 goto vex_end;
149 }
150 insn->vex_prefix.bytes[0] = b;
151 insn->vex_prefix.bytes[1] = b2;
152 if (inat_is_evex_prefix(attr)) {
153 b2 = peek_nbyte_next(insn_byte_t, insn, 2);
154 insn->vex_prefix.bytes[2] = b2;
155 b2 = peek_nbyte_next(insn_byte_t, insn, 3);
156 insn->vex_prefix.bytes[3] = b2;
157 insn->vex_prefix.nbytes = 4;
158 insn->next_byte += 4;
159 if (insn->x86_64 && X86_VEX_W(b2))
160 /* VEX.W overrides opnd_size */
161 insn->opnd_bytes = 8;
162 } else if (inat_is_vex3_prefix(attr)) {
163 b2 = peek_nbyte_next(insn_byte_t, insn, 2);
164 insn->vex_prefix.bytes[2] = b2;
165 insn->vex_prefix.nbytes = 3;
166 insn->next_byte += 3;
167 if (insn->x86_64 && X86_VEX_W(b2))
168 /* VEX.W overrides opnd_size */
169 insn->opnd_bytes = 8;
170 } else {
171 /*
172 * For VEX2, fake VEX3-like byte#2.
173 * Makes it easier to decode vex.W, vex.vvvv,
174 * vex.L and vex.pp. Masking with 0x7f sets vex.W == 0.
175 */
176 insn->vex_prefix.bytes[2] = b2 & 0x7f;
177 insn->vex_prefix.nbytes = 2;
178 insn->next_byte += 2;
179 }
180 }
181vex_end:
182 insn->vex_prefix.got = 1;
183
184 prefixes->got = 1;
185
186err_out:
187 return;
188}
189
190/**
191 * insn_get_opcode - collect opcode(s)
192 * @insn: &struct insn containing instruction
193 *
194 * Populates @insn->opcode, updates @insn->next_byte to point past the
195 * opcode byte(s), and set @insn->attr (except for groups).
196 * If necessary, first collects any preceding (prefix) bytes.
197 * Sets @insn->opcode.value = opcode1. No effect if @insn->opcode.got
198 * is already 1.
199 */
200void insn_get_opcode(struct insn *insn)
201{
202 struct insn_field *opcode = &insn->opcode;
203 insn_byte_t op;
204 int pfx_id;
205 if (opcode->got)
206 return;
207 if (!insn->prefixes.got)
208 insn_get_prefixes(insn);
209
210 /* Get first opcode */
211 op = get_next(insn_byte_t, insn);
212 opcode->bytes[0] = op;
213 opcode->nbytes = 1;
214
215 /* Check if there is VEX prefix or not */
216 if (insn_is_avx(insn)) {
217 insn_byte_t m, p;
218 m = insn_vex_m_bits(insn);
219 p = insn_vex_p_bits(insn);
220 insn->attr = inat_get_avx_attribute(op, m, p);
221 if ((inat_must_evex(insn->attr) && !insn_is_evex(insn)) ||
222 (!inat_accept_vex(insn->attr) &&
223 !inat_is_group(insn->attr)))
224 insn->attr = 0; /* This instruction is bad */
225 goto end; /* VEX has only 1 byte for opcode */
226 }
227
228 insn->attr = inat_get_opcode_attribute(op);
229 while (inat_is_escape(insn->attr)) {
230 /* Get escaped opcode */
231 op = get_next(insn_byte_t, insn);
232 opcode->bytes[opcode->nbytes++] = op;
233 pfx_id = insn_last_prefix_id(insn);
234 insn->attr = inat_get_escape_attribute(op, pfx_id, insn->attr);
235 }
236 if (inat_must_vex(insn->attr))
237 insn->attr = 0; /* This instruction is bad */
238end:
239 opcode->got = 1;
240
241err_out:
242 return;
243}
244
245/**
246 * insn_get_modrm - collect ModRM byte, if any
247 * @insn: &struct insn containing instruction
248 *
249 * Populates @insn->modrm and updates @insn->next_byte to point past the
250 * ModRM byte, if any. If necessary, first collects the preceding bytes
251 * (prefixes and opcode(s)). No effect if @insn->modrm.got is already 1.
252 */
253void insn_get_modrm(struct insn *insn)
254{
255 struct insn_field *modrm = &insn->modrm;
256 insn_byte_t pfx_id, mod;
257 if (modrm->got)
258 return;
259 if (!insn->opcode.got)
260 insn_get_opcode(insn);
261
262 if (inat_has_modrm(insn->attr)) {
263 mod = get_next(insn_byte_t, insn);
264 modrm->value = mod;
265 modrm->nbytes = 1;
266 if (inat_is_group(insn->attr)) {
267 pfx_id = insn_last_prefix_id(insn);
268 insn->attr = inat_get_group_attribute(mod, pfx_id,
269 insn->attr);
270 if (insn_is_avx(insn) && !inat_accept_vex(insn->attr))
271 insn->attr = 0; /* This is bad */
272 }
273 }
274
275 if (insn->x86_64 && inat_is_force64(insn->attr))
276 insn->opnd_bytes = 8;
277 modrm->got = 1;
278
279err_out:
280 return;
281}
282
283
284/**
285 * insn_rip_relative() - Does instruction use RIP-relative addressing mode?
286 * @insn: &struct insn containing instruction
287 *
288 * If necessary, first collects the instruction up to and including the
289 * ModRM byte. No effect if @insn->x86_64 is 0.
290 */
291int insn_rip_relative(struct insn *insn)
292{
293 struct insn_field *modrm = &insn->modrm;
294
295 if (!insn->x86_64)
296 return 0;
297 if (!modrm->got)
298 insn_get_modrm(insn);
299 /*
300 * For rip-relative instructions, the mod field (top 2 bits)
301 * is zero and the r/m field (bottom 3 bits) is 0x5.
302 */
303 return (modrm->nbytes && (modrm->value & 0xc7) == 0x5);
304}
305
306/**
307 * insn_get_sib() - Get the SIB byte of instruction
308 * @insn: &struct insn containing instruction
309 *
310 * If necessary, first collects the instruction up to and including the
311 * ModRM byte.
312 */
313void insn_get_sib(struct insn *insn)
314{
315 insn_byte_t modrm;
316
317 if (insn->sib.got)
318 return;
319 if (!insn->modrm.got)
320 insn_get_modrm(insn);
321 if (insn->modrm.nbytes) {
322 modrm = (insn_byte_t)insn->modrm.value;
323 if (insn->addr_bytes != 2 &&
324 X86_MODRM_MOD(modrm) != 3 && X86_MODRM_RM(modrm) == 4) {
325 insn->sib.value = get_next(insn_byte_t, insn);
326 insn->sib.nbytes = 1;
327 }
328 }
329 insn->sib.got = 1;
330
331err_out:
332 return;
333}
334
335
336/**
337 * insn_get_displacement() - Get the displacement of instruction
338 * @insn: &struct insn containing instruction
339 *
340 * If necessary, first collects the instruction up to and including the
341 * SIB byte.
342 * Displacement value is sign-expanded.
343 */
344void insn_get_displacement(struct insn *insn)
345{
346 insn_byte_t mod, rm, base;
347
348 if (insn->displacement.got)
349 return;
350 if (!insn->sib.got)
351 insn_get_sib(insn);
352 if (insn->modrm.nbytes) {
353 /*
354 * Interpreting the modrm byte:
355 * mod = 00 - no displacement fields (exceptions below)
356 * mod = 01 - 1-byte displacement field
357 * mod = 10 - displacement field is 4 bytes, or 2 bytes if
358 * address size = 2 (0x67 prefix in 32-bit mode)
359 * mod = 11 - no memory operand
360 *
361 * If address size = 2...
362 * mod = 00, r/m = 110 - displacement field is 2 bytes
363 *
364 * If address size != 2...
365 * mod != 11, r/m = 100 - SIB byte exists
366 * mod = 00, SIB base = 101 - displacement field is 4 bytes
367 * mod = 00, r/m = 101 - rip-relative addressing, displacement
368 * field is 4 bytes
369 */
370 mod = X86_MODRM_MOD(insn->modrm.value);
371 rm = X86_MODRM_RM(insn->modrm.value);
372 base = X86_SIB_BASE(insn->sib.value);
373 if (mod == 3)
374 goto out;
375 if (mod == 1) {
376 insn->displacement.value = get_next(signed char, insn);
377 insn->displacement.nbytes = 1;
378 } else if (insn->addr_bytes == 2) {
379 if ((mod == 0 && rm == 6) || mod == 2) {
380 insn->displacement.value =
381 get_next(short, insn);
382 insn->displacement.nbytes = 2;
383 }
384 } else {
385 if ((mod == 0 && rm == 5) || mod == 2 ||
386 (mod == 0 && base == 5)) {
387 insn->displacement.value = get_next(int, insn);
388 insn->displacement.nbytes = 4;
389 }
390 }
391 }
392out:
393 insn->displacement.got = 1;
394
395err_out:
396 return;
397}
398
399/* Decode moffset16/32/64. Return 0 if failed */
400static int __get_moffset(struct insn *insn)
401{
402 switch (insn->addr_bytes) {
403 case 2:
404 insn->moffset1.value = get_next(short, insn);
405 insn->moffset1.nbytes = 2;
406 break;
407 case 4:
408 insn->moffset1.value = get_next(int, insn);
409 insn->moffset1.nbytes = 4;
410 break;
411 case 8:
412 insn->moffset1.value = get_next(int, insn);
413 insn->moffset1.nbytes = 4;
414 insn->moffset2.value = get_next(int, insn);
415 insn->moffset2.nbytes = 4;
416 break;
417 default: /* opnd_bytes must be modified manually */
418 goto err_out;
419 }
420 insn->moffset1.got = insn->moffset2.got = 1;
421
422 return 1;
423
424err_out:
425 return 0;
426}
427
428/* Decode imm v32(Iz). Return 0 if failed */
429static int __get_immv32(struct insn *insn)
430{
431 switch (insn->opnd_bytes) {
432 case 2:
433 insn->immediate.value = get_next(short, insn);
434 insn->immediate.nbytes = 2;
435 break;
436 case 4:
437 case 8:
438 insn->immediate.value = get_next(int, insn);
439 insn->immediate.nbytes = 4;
440 break;
441 default: /* opnd_bytes must be modified manually */
442 goto err_out;
443 }
444
445 return 1;
446
447err_out:
448 return 0;
449}
450
451/* Decode imm v64(Iv/Ov), Return 0 if failed */
452static int __get_immv(struct insn *insn)
453{
454 switch (insn->opnd_bytes) {
455 case 2:
456 insn->immediate1.value = get_next(short, insn);
457 insn->immediate1.nbytes = 2;
458 break;
459 case 4:
460 insn->immediate1.value = get_next(int, insn);
461 insn->immediate1.nbytes = 4;
462 break;
463 case 8:
464 insn->immediate1.value = get_next(int, insn);
465 insn->immediate1.nbytes = 4;
466 insn->immediate2.value = get_next(int, insn);
467 insn->immediate2.nbytes = 4;
468 break;
469 default: /* opnd_bytes must be modified manually */
470 goto err_out;
471 }
472 insn->immediate1.got = insn->immediate2.got = 1;
473
474 return 1;
475err_out:
476 return 0;
477}
478
479/* Decode ptr16:16/32(Ap) */
480static int __get_immptr(struct insn *insn)
481{
482 switch (insn->opnd_bytes) {
483 case 2:
484 insn->immediate1.value = get_next(short, insn);
485 insn->immediate1.nbytes = 2;
486 break;
487 case 4:
488 insn->immediate1.value = get_next(int, insn);
489 insn->immediate1.nbytes = 4;
490 break;
491 case 8:
492 /* ptr16:64 is not exist (no segment) */
493 return 0;
494 default: /* opnd_bytes must be modified manually */
495 goto err_out;
496 }
497 insn->immediate2.value = get_next(unsigned short, insn);
498 insn->immediate2.nbytes = 2;
499 insn->immediate1.got = insn->immediate2.got = 1;
500
501 return 1;
502err_out:
503 return 0;
504}
505
506/**
507 * insn_get_immediate() - Get the immediates of instruction
508 * @insn: &struct insn containing instruction
509 *
510 * If necessary, first collects the instruction up to and including the
511 * displacement bytes.
512 * Basically, most of immediates are sign-expanded. Unsigned-value can be
513 * get by bit masking with ((1 << (nbytes * 8)) - 1)
514 */
515void insn_get_immediate(struct insn *insn)
516{
517 if (insn->immediate.got)
518 return;
519 if (!insn->displacement.got)
520 insn_get_displacement(insn);
521
522 if (inat_has_moffset(insn->attr)) {
523 if (!__get_moffset(insn))
524 goto err_out;
525 goto done;
526 }
527
528 if (!inat_has_immediate(insn->attr))
529 /* no immediates */
530 goto done;
531
532 switch (inat_immediate_size(insn->attr)) {
533 case INAT_IMM_BYTE:
534 insn->immediate.value = get_next(signed char, insn);
535 insn->immediate.nbytes = 1;
536 break;
537 case INAT_IMM_WORD:
538 insn->immediate.value = get_next(short, insn);
539 insn->immediate.nbytes = 2;
540 break;
541 case INAT_IMM_DWORD:
542 insn->immediate.value = get_next(int, insn);
543 insn->immediate.nbytes = 4;
544 break;
545 case INAT_IMM_QWORD:
546 insn->immediate1.value = get_next(int, insn);
547 insn->immediate1.nbytes = 4;
548 insn->immediate2.value = get_next(int, insn);
549 insn->immediate2.nbytes = 4;
550 break;
551 case INAT_IMM_PTR:
552 if (!__get_immptr(insn))
553 goto err_out;
554 break;
555 case INAT_IMM_VWORD32:
556 if (!__get_immv32(insn))
557 goto err_out;
558 break;
559 case INAT_IMM_VWORD:
560 if (!__get_immv(insn))
561 goto err_out;
562 break;
563 default:
564 /* Here, insn must have an immediate, but failed */
565 goto err_out;
566 }
567 if (inat_has_second_immediate(insn->attr)) {
568 insn->immediate2.value = get_next(signed char, insn);
569 insn->immediate2.nbytes = 1;
570 }
571done:
572 insn->immediate.got = 1;
573
574err_out:
575 return;
576}
577
578/**
579 * insn_get_length() - Get the length of instruction
580 * @insn: &struct insn containing instruction
581 *
582 * If necessary, first collects the instruction up to and including the
583 * immediates bytes.
584 */
585void insn_get_length(struct insn *insn)
586{
587 if (insn->length)
588 return;
589 if (!insn->immediate.got)
590 insn_get_immediate(insn);
591 insn->length = (unsigned char)((unsigned long)insn->next_byte
592 - (unsigned long)insn->kaddr);
593}