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