blob: c1b6c232e02b180287e7b0e91a41ddb34c699689 [file] [log] [blame]
Avi Kivity6aa8b732006-12-10 02:21:36 -08001/******************************************************************************
2 * x86_emulate.c
3 *
4 * Generic x86 (32-bit and 64-bit) instruction decoder and emulator.
5 *
6 * Copyright (c) 2005 Keir Fraser
7 *
8 * Linux coding style, mod r/m decoder, segment base fixes, real-mode
Rusty Russelldcc07662007-07-17 23:16:56 +10009 * privileged instructions:
Avi Kivity6aa8b732006-12-10 02:21:36 -080010 *
11 * Copyright (C) 2006 Qumranet
12 *
13 * Avi Kivity <avi@qumranet.com>
14 * Yaniv Kamay <yaniv@qumranet.com>
15 *
16 * This work is licensed under the terms of the GNU GPL, version 2. See
17 * the COPYING file in the top-level directory.
18 *
19 * From: xen-unstable 10676:af9809f51f81a3c43f276f00c81a52ef558afda4
20 */
21
22#ifndef __KERNEL__
23#include <stdio.h>
24#include <stdint.h>
25#include <public/xen.h>
Mike Dayd77c26f2007-10-08 09:02:08 -040026#define DPRINTF(_f, _a ...) printf(_f , ## _a)
Avi Kivity6aa8b732006-12-10 02:21:36 -080027#else
Avi Kivityedf88412007-12-16 11:02:48 +020028#include <linux/kvm_host.h>
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -030029#include "kvm_cache_regs.h"
Avi Kivity6aa8b732006-12-10 02:21:36 -080030#define DPRINTF(x...) do {} while (0)
31#endif
Avi Kivity6aa8b732006-12-10 02:21:36 -080032#include <linux/module.h>
Avi Kivityedf88412007-12-16 11:02:48 +020033#include <asm/kvm_x86_emulate.h>
Avi Kivity6aa8b732006-12-10 02:21:36 -080034
35/*
36 * Opcode effective-address decode tables.
37 * Note that we only emulate instructions that have at least one memory
38 * operand (excluding implicit stack references). We assume that stack
39 * references and instruction fetches will never occur in special memory
40 * areas that require emulation. So, for example, 'mov <imm>,<reg>' need
41 * not be handled.
42 */
43
44/* Operand sizes: 8-bit operands or specified/overridden size. */
45#define ByteOp (1<<0) /* 8-bit operands. */
46/* Destination operand type. */
47#define ImplicitOps (1<<1) /* Implicit in opcode. No generic decode. */
48#define DstReg (2<<1) /* Register operand. */
49#define DstMem (3<<1) /* Memory operand. */
Guillaume Thouvenin9c9fddd2008-09-12 13:50:25 +020050#define DstAcc (4<<1) /* Destination Accumulator */
51#define DstMask (7<<1)
Avi Kivity6aa8b732006-12-10 02:21:36 -080052/* Source operand type. */
Guillaume Thouvenin9c9fddd2008-09-12 13:50:25 +020053#define SrcNone (0<<4) /* No source operand. */
54#define SrcImplicit (0<<4) /* Source operand is implicit in the opcode. */
55#define SrcReg (1<<4) /* Register operand. */
56#define SrcMem (2<<4) /* Memory operand. */
57#define SrcMem16 (3<<4) /* Memory operand (16-bit). */
58#define SrcMem32 (4<<4) /* Memory operand (32-bit). */
59#define SrcImm (5<<4) /* Immediate operand. */
60#define SrcImmByte (6<<4) /* 8-bit sign-extended immediate operand. */
Guillaume Thouveninbfcadf82008-12-04 14:27:38 +010061#define SrcOne (7<<4) /* Implied '1' */
Gleb Natapov341de7e2009-04-12 13:36:41 +030062#define SrcImmUByte (8<<4) /* 8-bit unsigned immediate operand. */
63#define SrcMask (0xf<<4)
Avi Kivity6aa8b732006-12-10 02:21:36 -080064/* Generic ModRM decode. */
Gleb Natapov341de7e2009-04-12 13:36:41 +030065#define ModRM (1<<8)
Avi Kivity6aa8b732006-12-10 02:21:36 -080066/* Destination is only written; never read. */
Gleb Natapov341de7e2009-04-12 13:36:41 +030067#define Mov (1<<9)
68#define BitOp (1<<10)
69#define MemAbs (1<<11) /* Memory operand is absolute displacement */
Guillaume Thouvenin9c9fddd2008-09-12 13:50:25 +020070#define String (1<<12) /* String instruction (rep capable) */
71#define Stack (1<<13) /* Stack instruction (push/pop) */
Avi Kivitye09d0822008-01-18 12:38:59 +020072#define Group (1<<14) /* Bits 3:5 of modrm byte extend opcode */
73#define GroupDual (1<<15) /* Alternate decoding of mod == 3 */
74#define GroupMask 0xff /* Group number stored in bits 0:7 */
Guillaume Thouvenin0dc8d102008-12-04 14:26:42 +010075/* Source 2 operand type */
76#define Src2None (0<<29)
77#define Src2CL (1<<29)
78#define Src2ImmByte (2<<29)
79#define Src2One (3<<29)
Gleb Natapova5f868b2009-04-12 13:36:14 +030080#define Src2Imm16 (4<<29)
Guillaume Thouvenin0dc8d102008-12-04 14:26:42 +010081#define Src2Mask (7<<29)
Avi Kivity6aa8b732006-12-10 02:21:36 -080082
Avi Kivity43bb19c2008-01-18 12:46:50 +020083enum {
Avi Kivity1d6ad202008-01-23 22:26:09 +020084 Group1_80, Group1_81, Group1_82, Group1_83,
Avi Kivityd95058a2008-01-18 13:36:50 +020085 Group1A, Group3_Byte, Group3, Group4, Group5, Group7,
Avi Kivity43bb19c2008-01-18 12:46:50 +020086};
87
Guillaume Thouvenin45ed60b2008-12-04 14:25:38 +010088static u32 opcode_table[256] = {
Avi Kivity6aa8b732006-12-10 02:21:36 -080089 /* 0x00 - 0x07 */
90 ByteOp | DstMem | SrcReg | ModRM, DstMem | SrcReg | ModRM,
91 ByteOp | DstReg | SrcMem | ModRM, DstReg | SrcMem | ModRM,
Guillaume Thouvenin291fd392008-10-20 13:11:58 +020092 ByteOp | DstAcc | SrcImm, DstAcc | SrcImm, 0, 0,
Avi Kivity6aa8b732006-12-10 02:21:36 -080093 /* 0x08 - 0x0F */
94 ByteOp | DstMem | SrcReg | ModRM, DstMem | SrcReg | ModRM,
95 ByteOp | DstReg | SrcMem | ModRM, DstReg | SrcMem | ModRM,
96 0, 0, 0, 0,
97 /* 0x10 - 0x17 */
98 ByteOp | DstMem | SrcReg | ModRM, DstMem | SrcReg | ModRM,
99 ByteOp | DstReg | SrcMem | ModRM, DstReg | SrcMem | ModRM,
100 0, 0, 0, 0,
101 /* 0x18 - 0x1F */
102 ByteOp | DstMem | SrcReg | ModRM, DstMem | SrcReg | ModRM,
103 ByteOp | DstReg | SrcMem | ModRM, DstReg | SrcMem | ModRM,
104 0, 0, 0, 0,
105 /* 0x20 - 0x27 */
106 ByteOp | DstMem | SrcReg | ModRM, DstMem | SrcReg | ModRM,
107 ByteOp | DstReg | SrcMem | ModRM, DstReg | SrcMem | ModRM,
Guillaume Thouveninaa3a8162008-09-12 13:52:18 +0200108 DstAcc | SrcImmByte, DstAcc | SrcImm, 0, 0,
Avi Kivity6aa8b732006-12-10 02:21:36 -0800109 /* 0x28 - 0x2F */
110 ByteOp | DstMem | SrcReg | ModRM, DstMem | SrcReg | ModRM,
111 ByteOp | DstReg | SrcMem | ModRM, DstReg | SrcMem | ModRM,
112 0, 0, 0, 0,
113 /* 0x30 - 0x37 */
114 ByteOp | DstMem | SrcReg | ModRM, DstMem | SrcReg | ModRM,
115 ByteOp | DstReg | SrcMem | ModRM, DstReg | SrcMem | ModRM,
116 0, 0, 0, 0,
117 /* 0x38 - 0x3F */
118 ByteOp | DstMem | SrcReg | ModRM, DstMem | SrcReg | ModRM,
119 ByteOp | DstReg | SrcMem | ModRM, DstReg | SrcMem | ModRM,
Guillaume Thouvenin8a9fee62008-09-12 13:51:15 +0200120 ByteOp | DstAcc | SrcImm, DstAcc | SrcImm,
121 0, 0,
Nitin A Kambled77a2502007-10-12 17:40:33 -0700122 /* 0x40 - 0x47 */
Avi Kivity33615aa2007-10-31 11:15:56 +0200123 DstReg, DstReg, DstReg, DstReg, DstReg, DstReg, DstReg, DstReg,
Nitin A Kambled77a2502007-10-12 17:40:33 -0700124 /* 0x48 - 0x4F */
Avi Kivity33615aa2007-10-31 11:15:56 +0200125 DstReg, DstReg, DstReg, DstReg, DstReg, DstReg, DstReg, DstReg,
Nitin A Kamble7f0aaee2007-06-19 11:16:04 +0300126 /* 0x50 - 0x57 */
Avi Kivity6e3d5df2007-12-06 18:14:14 +0200127 SrcReg | Stack, SrcReg | Stack, SrcReg | Stack, SrcReg | Stack,
128 SrcReg | Stack, SrcReg | Stack, SrcReg | Stack, SrcReg | Stack,
Nitin A Kamble7f0aaee2007-06-19 11:16:04 +0300129 /* 0x58 - 0x5F */
Avi Kivity6e3d5df2007-12-06 18:14:14 +0200130 DstReg | Stack, DstReg | Stack, DstReg | Stack, DstReg | Stack,
131 DstReg | Stack, DstReg | Stack, DstReg | Stack, DstReg | Stack,
Nitin A Kamble7d316912007-08-28 17:58:52 -0700132 /* 0x60 - 0x67 */
Avi Kivity6aa8b732006-12-10 02:21:36 -0800133 0, 0, 0, DstReg | SrcMem32 | ModRM | Mov /* movsxd (x86/64) */ ,
Nitin A Kamble7d316912007-08-28 17:58:52 -0700134 0, 0, 0, 0,
135 /* 0x68 - 0x6F */
Avi Kivity91ed7a02008-05-29 14:38:38 +0300136 SrcImm | Mov | Stack, 0, SrcImmByte | Mov | Stack, 0,
Laurent Viviere70669a2007-08-05 10:36:40 +0300137 SrcNone | ByteOp | ImplicitOps, SrcNone | ImplicitOps, /* insb, insw/insd */
138 SrcNone | ByteOp | ImplicitOps, SrcNone | ImplicitOps, /* outsb, outsw/outsd */
Nitin A Kamble55bebde2007-09-15 10:25:41 +0300139 /* 0x70 - 0x77 */
Gleb Natapovb2833e32009-04-12 13:36:30 +0300140 SrcImmByte, SrcImmByte, SrcImmByte, SrcImmByte,
141 SrcImmByte, SrcImmByte, SrcImmByte, SrcImmByte,
Nitin A Kamble55bebde2007-09-15 10:25:41 +0300142 /* 0x78 - 0x7F */
Gleb Natapovb2833e32009-04-12 13:36:30 +0300143 SrcImmByte, SrcImmByte, SrcImmByte, SrcImmByte,
144 SrcImmByte, SrcImmByte, SrcImmByte, SrcImmByte,
Avi Kivity6aa8b732006-12-10 02:21:36 -0800145 /* 0x80 - 0x87 */
Avi Kivity1d6ad202008-01-23 22:26:09 +0200146 Group | Group1_80, Group | Group1_81,
147 Group | Group1_82, Group | Group1_83,
Avi Kivity6aa8b732006-12-10 02:21:36 -0800148 ByteOp | DstMem | SrcReg | ModRM, DstMem | SrcReg | ModRM,
149 ByteOp | DstMem | SrcReg | ModRM, DstMem | SrcReg | ModRM,
150 /* 0x88 - 0x8F */
151 ByteOp | DstMem | SrcReg | ModRM | Mov, DstMem | SrcReg | ModRM | Mov,
152 ByteOp | DstReg | SrcMem | ModRM | Mov, DstReg | SrcMem | ModRM | Mov,
Guillaume Thouvenin38d5bc62008-05-27 15:13:28 +0200153 DstMem | SrcReg | ModRM | Mov, ModRM | DstReg,
Guillaume Thouvenin42571982008-05-27 14:49:15 +0200154 DstReg | SrcMem | ModRM | Mov, Group | Group1A,
Mohammed Gamalb13354f2008-06-15 19:37:38 +0300155 /* 0x90 - 0x97 */
156 DstReg, DstReg, DstReg, DstReg, DstReg, DstReg, DstReg, DstReg,
157 /* 0x98 - 0x9F */
Gleb Natapov06541692009-04-12 13:36:20 +0300158 0, 0, SrcImm | Src2Imm16, 0,
159 ImplicitOps | Stack, ImplicitOps | Stack, 0, 0,
Avi Kivity6aa8b732006-12-10 02:21:36 -0800160 /* 0xA0 - 0xA7 */
Avi Kivityc7e75a32007-10-28 16:34:25 +0200161 ByteOp | DstReg | SrcMem | Mov | MemAbs, DstReg | SrcMem | Mov | MemAbs,
162 ByteOp | DstMem | SrcReg | Mov | MemAbs, DstMem | SrcReg | Mov | MemAbs,
Avi Kivityb9fa9d62007-11-27 19:05:37 +0200163 ByteOp | ImplicitOps | Mov | String, ImplicitOps | Mov | String,
164 ByteOp | ImplicitOps | String, ImplicitOps | String,
Avi Kivity6aa8b732006-12-10 02:21:36 -0800165 /* 0xA8 - 0xAF */
Avi Kivityb9fa9d62007-11-27 19:05:37 +0200166 0, 0, ByteOp | ImplicitOps | Mov | String, ImplicitOps | Mov | String,
167 ByteOp | ImplicitOps | Mov | String, ImplicitOps | Mov | String,
168 ByteOp | ImplicitOps | String, ImplicitOps | String,
Mohammed Gamala5e2e822008-08-27 05:02:56 +0300169 /* 0xB0 - 0xB7 */
170 ByteOp | DstReg | SrcImm | Mov, ByteOp | DstReg | SrcImm | Mov,
171 ByteOp | DstReg | SrcImm | Mov, ByteOp | DstReg | SrcImm | Mov,
172 ByteOp | DstReg | SrcImm | Mov, ByteOp | DstReg | SrcImm | Mov,
173 ByteOp | DstReg | SrcImm | Mov, ByteOp | DstReg | SrcImm | Mov,
174 /* 0xB8 - 0xBF */
175 DstReg | SrcImm | Mov, DstReg | SrcImm | Mov,
176 DstReg | SrcImm | Mov, DstReg | SrcImm | Mov,
177 DstReg | SrcImm | Mov, DstReg | SrcImm | Mov,
178 DstReg | SrcImm | Mov, DstReg | SrcImm | Mov,
Avi Kivity6aa8b732006-12-10 02:21:36 -0800179 /* 0xC0 - 0xC7 */
Nitin A Kambled9413cd2007-06-19 11:21:15 +0300180 ByteOp | DstMem | SrcImm | ModRM, DstMem | SrcImmByte | ModRM,
Avi Kivity6e3d5df2007-12-06 18:14:14 +0200181 0, ImplicitOps | Stack, 0, 0,
Nitin A Kambled9413cd2007-06-19 11:21:15 +0300182 ByteOp | DstMem | SrcImm | ModRM | Mov, DstMem | SrcImm | ModRM | Mov,
Avi Kivity6aa8b732006-12-10 02:21:36 -0800183 /* 0xC8 - 0xCF */
Gleb Natapove637b822009-04-12 13:36:52 +0300184 0, 0, 0, ImplicitOps | Stack,
185 ImplicitOps, SrcImmByte, ImplicitOps, ImplicitOps,
Avi Kivity6aa8b732006-12-10 02:21:36 -0800186 /* 0xD0 - 0xD7 */
187 ByteOp | DstMem | SrcImplicit | ModRM, DstMem | SrcImplicit | ModRM,
188 ByteOp | DstMem | SrcImplicit | ModRM, DstMem | SrcImplicit | ModRM,
189 0, 0, 0, 0,
190 /* 0xD8 - 0xDF */
191 0, 0, 0, 0, 0, 0, 0, 0,
Nitin A Kamble098c9372007-08-19 11:00:36 +0300192 /* 0xE0 - 0xE7 */
Mohammed Gamala6a30342008-09-06 17:22:29 +0300193 0, 0, 0, 0,
Gleb Natapov84ce66a2009-04-12 13:36:46 +0300194 ByteOp | SrcImmUByte, SrcImmUByte,
195 ByteOp | SrcImmUByte, SrcImmUByte,
Nitin A Kamble098c9372007-08-19 11:00:36 +0300196 /* 0xE8 - 0xEF */
Gleb Natapovd53c4772009-04-12 13:36:36 +0300197 SrcImm | Stack, SrcImm | ImplicitOps,
Gleb Natapov782b8772009-04-12 13:36:25 +0300198 SrcImm | Src2Imm16, SrcImmByte | ImplicitOps,
Mohammed Gamala6a30342008-09-06 17:22:29 +0300199 SrcNone | ByteOp | ImplicitOps, SrcNone | ImplicitOps,
200 SrcNone | ByteOp | ImplicitOps, SrcNone | ImplicitOps,
Avi Kivity6aa8b732006-12-10 02:21:36 -0800201 /* 0xF0 - 0xF7 */
202 0, 0, 0, 0,
Avi Kivity7d858a12008-01-18 12:58:04 +0200203 ImplicitOps, ImplicitOps, Group | Group3_Byte, Group | Group3,
Avi Kivity6aa8b732006-12-10 02:21:36 -0800204 /* 0xF8 - 0xFF */
Nitin A Kambleb284be52007-10-16 18:23:27 -0700205 ImplicitOps, 0, ImplicitOps, ImplicitOps,
Mohammed Gamalfb4616f2008-09-01 04:52:24 +0300206 ImplicitOps, ImplicitOps, Group | Group4, Group | Group5,
Avi Kivity6aa8b732006-12-10 02:21:36 -0800207};
208
Guillaume Thouvenin45ed60b2008-12-04 14:25:38 +0100209static u32 twobyte_table[256] = {
Avi Kivity6aa8b732006-12-10 02:21:36 -0800210 /* 0x00 - 0x0F */
Avi Kivityd95058a2008-01-18 13:36:50 +0200211 0, Group | GroupDual | Group7, 0, 0, 0, 0, ImplicitOps, 0,
Avi Kivity651a3e22007-10-28 16:09:18 +0200212 ImplicitOps, ImplicitOps, 0, 0, 0, ImplicitOps | ModRM, 0, 0,
Avi Kivity6aa8b732006-12-10 02:21:36 -0800213 /* 0x10 - 0x1F */
214 0, 0, 0, 0, 0, 0, 0, 0, ImplicitOps | ModRM, 0, 0, 0, 0, 0, 0, 0,
215 /* 0x20 - 0x2F */
216 ModRM | ImplicitOps, ModRM, ModRM | ImplicitOps, ModRM, 0, 0, 0, 0,
217 0, 0, 0, 0, 0, 0, 0, 0,
218 /* 0x30 - 0x3F */
Avi Kivity35f3f282007-07-17 14:20:30 +0300219 ImplicitOps, 0, ImplicitOps, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
Avi Kivity6aa8b732006-12-10 02:21:36 -0800220 /* 0x40 - 0x47 */
221 DstReg | SrcMem | ModRM | Mov, DstReg | SrcMem | ModRM | Mov,
222 DstReg | SrcMem | ModRM | Mov, DstReg | SrcMem | ModRM | Mov,
223 DstReg | SrcMem | ModRM | Mov, DstReg | SrcMem | ModRM | Mov,
224 DstReg | SrcMem | ModRM | Mov, DstReg | SrcMem | ModRM | Mov,
225 /* 0x48 - 0x4F */
226 DstReg | SrcMem | ModRM | Mov, DstReg | SrcMem | ModRM | Mov,
227 DstReg | SrcMem | ModRM | Mov, DstReg | SrcMem | ModRM | Mov,
228 DstReg | SrcMem | ModRM | Mov, DstReg | SrcMem | ModRM | Mov,
229 DstReg | SrcMem | ModRM | Mov, DstReg | SrcMem | ModRM | Mov,
230 /* 0x50 - 0x5F */
231 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
232 /* 0x60 - 0x6F */
233 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
234 /* 0x70 - 0x7F */
235 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
236 /* 0x80 - 0x8F */
Gleb Natapovb2833e32009-04-12 13:36:30 +0300237 SrcImm, SrcImm, SrcImm, SrcImm, SrcImm, SrcImm, SrcImm, SrcImm,
238 SrcImm, SrcImm, SrcImm, SrcImm, SrcImm, SrcImm, SrcImm, SrcImm,
Avi Kivity6aa8b732006-12-10 02:21:36 -0800239 /* 0x90 - 0x9F */
240 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
241 /* 0xA0 - 0xA7 */
Guillaume Thouvenin9bf8ea42008-12-04 14:30:13 +0100242 0, 0, 0, DstMem | SrcReg | ModRM | BitOp,
243 DstMem | SrcReg | Src2ImmByte | ModRM,
244 DstMem | SrcReg | Src2CL | ModRM, 0, 0,
Avi Kivity6aa8b732006-12-10 02:21:36 -0800245 /* 0xA8 - 0xAF */
Guillaume Thouvenin9bf8ea42008-12-04 14:30:13 +0100246 0, 0, 0, DstMem | SrcReg | ModRM | BitOp,
247 DstMem | SrcReg | Src2ImmByte | ModRM,
248 DstMem | SrcReg | Src2CL | ModRM,
249 ModRM, 0,
Avi Kivity6aa8b732006-12-10 02:21:36 -0800250 /* 0xB0 - 0xB7 */
251 ByteOp | DstMem | SrcReg | ModRM, DstMem | SrcReg | ModRM, 0,
Avi Kivity038e51d2007-01-22 20:40:40 -0800252 DstMem | SrcReg | ModRM | BitOp,
Avi Kivity6aa8b732006-12-10 02:21:36 -0800253 0, 0, ByteOp | DstReg | SrcMem | ModRM | Mov,
254 DstReg | SrcMem16 | ModRM | Mov,
255 /* 0xB8 - 0xBF */
Avi Kivity038e51d2007-01-22 20:40:40 -0800256 0, 0, DstMem | SrcImmByte | ModRM, DstMem | SrcReg | ModRM | BitOp,
Avi Kivity6aa8b732006-12-10 02:21:36 -0800257 0, 0, ByteOp | DstReg | SrcMem | ModRM | Mov,
258 DstReg | SrcMem16 | ModRM | Mov,
259 /* 0xC0 - 0xCF */
Sheng Yanga012e652007-10-15 14:24:20 +0800260 0, 0, 0, DstMem | SrcReg | ModRM | Mov, 0, 0, 0, ImplicitOps | ModRM,
261 0, 0, 0, 0, 0, 0, 0, 0,
Avi Kivity6aa8b732006-12-10 02:21:36 -0800262 /* 0xD0 - 0xDF */
263 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
264 /* 0xE0 - 0xEF */
265 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
266 /* 0xF0 - 0xFF */
267 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0
268};
269
Guillaume Thouvenin45ed60b2008-12-04 14:25:38 +0100270static u32 group_table[] = {
Avi Kivity1d6ad202008-01-23 22:26:09 +0200271 [Group1_80*8] =
272 ByteOp | DstMem | SrcImm | ModRM, ByteOp | DstMem | SrcImm | ModRM,
273 ByteOp | DstMem | SrcImm | ModRM, ByteOp | DstMem | SrcImm | ModRM,
274 ByteOp | DstMem | SrcImm | ModRM, ByteOp | DstMem | SrcImm | ModRM,
275 ByteOp | DstMem | SrcImm | ModRM, ByteOp | DstMem | SrcImm | ModRM,
276 [Group1_81*8] =
277 DstMem | SrcImm | ModRM, DstMem | SrcImm | ModRM,
278 DstMem | SrcImm | ModRM, DstMem | SrcImm | ModRM,
279 DstMem | SrcImm | ModRM, DstMem | SrcImm | ModRM,
280 DstMem | SrcImm | ModRM, DstMem | SrcImm | ModRM,
281 [Group1_82*8] =
282 ByteOp | DstMem | SrcImm | ModRM, ByteOp | DstMem | SrcImm | ModRM,
283 ByteOp | DstMem | SrcImm | ModRM, ByteOp | DstMem | SrcImm | ModRM,
284 ByteOp | DstMem | SrcImm | ModRM, ByteOp | DstMem | SrcImm | ModRM,
285 ByteOp | DstMem | SrcImm | ModRM, ByteOp | DstMem | SrcImm | ModRM,
286 [Group1_83*8] =
287 DstMem | SrcImmByte | ModRM, DstMem | SrcImmByte | ModRM,
288 DstMem | SrcImmByte | ModRM, DstMem | SrcImmByte | ModRM,
289 DstMem | SrcImmByte | ModRM, DstMem | SrcImmByte | ModRM,
290 DstMem | SrcImmByte | ModRM, DstMem | SrcImmByte | ModRM,
Avi Kivity43bb19c2008-01-18 12:46:50 +0200291 [Group1A*8] =
292 DstMem | SrcNone | ModRM | Mov | Stack, 0, 0, 0, 0, 0, 0, 0,
Avi Kivity7d858a12008-01-18 12:58:04 +0200293 [Group3_Byte*8] =
294 ByteOp | SrcImm | DstMem | ModRM, 0,
295 ByteOp | DstMem | SrcNone | ModRM, ByteOp | DstMem | SrcNone | ModRM,
296 0, 0, 0, 0,
297 [Group3*8] =
roel kluin41afa022008-08-18 21:25:01 -0400298 DstMem | SrcImm | ModRM, 0,
Avi Kivity6eb06cb2008-08-21 17:41:39 +0300299 DstMem | SrcNone | ModRM, DstMem | SrcNone | ModRM,
Avi Kivity7d858a12008-01-18 12:58:04 +0200300 0, 0, 0, 0,
Avi Kivityfd607542008-01-18 13:12:26 +0200301 [Group4*8] =
302 ByteOp | DstMem | SrcNone | ModRM, ByteOp | DstMem | SrcNone | ModRM,
303 0, 0, 0, 0, 0, 0,
304 [Group5*8] =
Mohammed Gamald19292e2008-09-08 21:47:19 +0300305 DstMem | SrcNone | ModRM, DstMem | SrcNone | ModRM,
306 SrcMem | ModRM | Stack, 0,
Avi Kivityef46f182008-09-11 19:47:13 +0300307 SrcMem | ModRM | Stack, 0, SrcMem | ModRM | Stack, 0,
Avi Kivityd95058a2008-01-18 13:36:50 +0200308 [Group7*8] =
309 0, 0, ModRM | SrcMem, ModRM | SrcMem,
Avi Kivity16286d02008-04-14 14:40:50 +0300310 SrcNone | ModRM | DstMem | Mov, 0,
311 SrcMem16 | ModRM | Mov, SrcMem | ModRM | ByteOp,
Avi Kivitye09d0822008-01-18 12:38:59 +0200312};
313
Guillaume Thouvenin45ed60b2008-12-04 14:25:38 +0100314static u32 group2_table[] = {
Avi Kivityd95058a2008-01-18 13:36:50 +0200315 [Group7*8] =
Amit Shahfbce5542008-12-04 11:11:40 +0000316 SrcNone | ModRM, 0, 0, SrcNone | ModRM,
Avi Kivity16286d02008-04-14 14:40:50 +0300317 SrcNone | ModRM | DstMem | Mov, 0,
318 SrcMem16 | ModRM | Mov, 0,
Avi Kivitye09d0822008-01-18 12:38:59 +0200319};
320
Avi Kivity6aa8b732006-12-10 02:21:36 -0800321/* EFLAGS bit definitions. */
322#define EFLG_OF (1<<11)
323#define EFLG_DF (1<<10)
324#define EFLG_SF (1<<7)
325#define EFLG_ZF (1<<6)
326#define EFLG_AF (1<<4)
327#define EFLG_PF (1<<2)
328#define EFLG_CF (1<<0)
329
330/*
331 * Instruction emulation:
332 * Most instructions are emulated directly via a fragment of inline assembly
333 * code. This allows us to save/restore EFLAGS and thus very easily pick up
334 * any modified flags.
335 */
336
Avi Kivity05b3e0c2006-12-13 00:33:45 -0800337#if defined(CONFIG_X86_64)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800338#define _LO32 "k" /* force 32-bit operand */
339#define _STK "%%rsp" /* stack pointer */
340#elif defined(__i386__)
341#define _LO32 "" /* force 32-bit operand */
342#define _STK "%%esp" /* stack pointer */
343#endif
344
345/*
346 * These EFLAGS bits are restored from saved value during emulation, and
347 * any changes are written back to the saved value after emulation.
348 */
349#define EFLAGS_MASK (EFLG_OF|EFLG_SF|EFLG_ZF|EFLG_AF|EFLG_PF|EFLG_CF)
350
351/* Before executing instruction: restore necessary bits in EFLAGS. */
Avi Kivitye934c9c2007-12-06 16:15:02 +0200352#define _PRE_EFLAGS(_sav, _msk, _tmp) \
353 /* EFLAGS = (_sav & _msk) | (EFLAGS & ~_msk); _sav &= ~_msk; */ \
354 "movl %"_sav",%"_LO32 _tmp"; " \
355 "push %"_tmp"; " \
356 "push %"_tmp"; " \
357 "movl %"_msk",%"_LO32 _tmp"; " \
358 "andl %"_LO32 _tmp",("_STK"); " \
359 "pushf; " \
360 "notl %"_LO32 _tmp"; " \
361 "andl %"_LO32 _tmp",("_STK"); " \
362 "andl %"_LO32 _tmp","__stringify(BITS_PER_LONG/4)"("_STK"); " \
363 "pop %"_tmp"; " \
364 "orl %"_LO32 _tmp",("_STK"); " \
365 "popf; " \
366 "pop %"_sav"; "
Avi Kivity6aa8b732006-12-10 02:21:36 -0800367
368/* After executing instruction: write-back necessary bits in EFLAGS. */
369#define _POST_EFLAGS(_sav, _msk, _tmp) \
370 /* _sav |= EFLAGS & _msk; */ \
371 "pushf; " \
372 "pop %"_tmp"; " \
373 "andl %"_msk",%"_LO32 _tmp"; " \
374 "orl %"_LO32 _tmp",%"_sav"; "
375
Avi Kivitydda96d82008-11-26 15:14:10 +0200376#ifdef CONFIG_X86_64
377#define ON64(x) x
378#else
379#define ON64(x)
380#endif
381
Avi Kivity6b7ad612008-11-26 15:30:45 +0200382#define ____emulate_2op(_op, _src, _dst, _eflags, _x, _y, _suffix) \
383 do { \
384 __asm__ __volatile__ ( \
385 _PRE_EFLAGS("0", "4", "2") \
386 _op _suffix " %"_x"3,%1; " \
387 _POST_EFLAGS("0", "4", "2") \
388 : "=m" (_eflags), "=m" ((_dst).val), \
389 "=&r" (_tmp) \
390 : _y ((_src).val), "i" (EFLAGS_MASK)); \
Avi Kivityf3fd92f2008-11-29 20:38:12 +0200391 } while (0)
Avi Kivity6b7ad612008-11-26 15:30:45 +0200392
393
Avi Kivity6aa8b732006-12-10 02:21:36 -0800394/* Raw emulation: instruction has two explicit operands. */
395#define __emulate_2op_nobyte(_op,_src,_dst,_eflags,_wx,_wy,_lx,_ly,_qx,_qy) \
Avi Kivity6b7ad612008-11-26 15:30:45 +0200396 do { \
397 unsigned long _tmp; \
398 \
399 switch ((_dst).bytes) { \
400 case 2: \
401 ____emulate_2op(_op,_src,_dst,_eflags,_wx,_wy,"w"); \
402 break; \
403 case 4: \
404 ____emulate_2op(_op,_src,_dst,_eflags,_lx,_ly,"l"); \
405 break; \
406 case 8: \
407 ON64(____emulate_2op(_op,_src,_dst,_eflags,_qx,_qy,"q")); \
408 break; \
409 } \
Avi Kivity6aa8b732006-12-10 02:21:36 -0800410 } while (0)
411
412#define __emulate_2op(_op,_src,_dst,_eflags,_bx,_by,_wx,_wy,_lx,_ly,_qx,_qy) \
413 do { \
Avi Kivity6b7ad612008-11-26 15:30:45 +0200414 unsigned long _tmp; \
Mike Dayd77c26f2007-10-08 09:02:08 -0400415 switch ((_dst).bytes) { \
Avi Kivity6aa8b732006-12-10 02:21:36 -0800416 case 1: \
Avi Kivity6b7ad612008-11-26 15:30:45 +0200417 ____emulate_2op(_op,_src,_dst,_eflags,_bx,_by,"b"); \
Avi Kivity6aa8b732006-12-10 02:21:36 -0800418 break; \
419 default: \
420 __emulate_2op_nobyte(_op, _src, _dst, _eflags, \
421 _wx, _wy, _lx, _ly, _qx, _qy); \
422 break; \
423 } \
424 } while (0)
425
426/* Source operand is byte-sized and may be restricted to just %cl. */
427#define emulate_2op_SrcB(_op, _src, _dst, _eflags) \
428 __emulate_2op(_op, _src, _dst, _eflags, \
429 "b", "c", "b", "c", "b", "c", "b", "c")
430
431/* Source operand is byte, word, long or quad sized. */
432#define emulate_2op_SrcV(_op, _src, _dst, _eflags) \
433 __emulate_2op(_op, _src, _dst, _eflags, \
434 "b", "q", "w", "r", _LO32, "r", "", "r")
435
436/* Source operand is word, long or quad sized. */
437#define emulate_2op_SrcV_nobyte(_op, _src, _dst, _eflags) \
438 __emulate_2op_nobyte(_op, _src, _dst, _eflags, \
439 "w", "r", _LO32, "r", "", "r")
440
Guillaume Thouvenind1752262008-12-04 14:29:00 +0100441/* Instruction has three operands and one operand is stored in ECX register */
442#define __emulate_2op_cl(_op, _cl, _src, _dst, _eflags, _suffix, _type) \
443 do { \
444 unsigned long _tmp; \
445 _type _clv = (_cl).val; \
446 _type _srcv = (_src).val; \
447 _type _dstv = (_dst).val; \
448 \
449 __asm__ __volatile__ ( \
450 _PRE_EFLAGS("0", "5", "2") \
451 _op _suffix " %4,%1 \n" \
452 _POST_EFLAGS("0", "5", "2") \
453 : "=m" (_eflags), "+r" (_dstv), "=&r" (_tmp) \
454 : "c" (_clv) , "r" (_srcv), "i" (EFLAGS_MASK) \
455 ); \
456 \
457 (_cl).val = (unsigned long) _clv; \
458 (_src).val = (unsigned long) _srcv; \
459 (_dst).val = (unsigned long) _dstv; \
460 } while (0)
461
462#define emulate_2op_cl(_op, _cl, _src, _dst, _eflags) \
463 do { \
464 switch ((_dst).bytes) { \
465 case 2: \
466 __emulate_2op_cl(_op, _cl, _src, _dst, _eflags, \
467 "w", unsigned short); \
468 break; \
469 case 4: \
470 __emulate_2op_cl(_op, _cl, _src, _dst, _eflags, \
471 "l", unsigned int); \
472 break; \
473 case 8: \
474 ON64(__emulate_2op_cl(_op, _cl, _src, _dst, _eflags, \
475 "q", unsigned long)); \
476 break; \
477 } \
478 } while (0)
479
Avi Kivitydda96d82008-11-26 15:14:10 +0200480#define __emulate_1op(_op, _dst, _eflags, _suffix) \
Avi Kivity6aa8b732006-12-10 02:21:36 -0800481 do { \
482 unsigned long _tmp; \
483 \
Avi Kivitydda96d82008-11-26 15:14:10 +0200484 __asm__ __volatile__ ( \
485 _PRE_EFLAGS("0", "3", "2") \
486 _op _suffix " %1; " \
487 _POST_EFLAGS("0", "3", "2") \
488 : "=m" (_eflags), "+m" ((_dst).val), \
489 "=&r" (_tmp) \
490 : "i" (EFLAGS_MASK)); \
491 } while (0)
492
493/* Instruction has only one explicit operand (no source operand). */
494#define emulate_1op(_op, _dst, _eflags) \
495 do { \
Mike Dayd77c26f2007-10-08 09:02:08 -0400496 switch ((_dst).bytes) { \
Avi Kivitydda96d82008-11-26 15:14:10 +0200497 case 1: __emulate_1op(_op, _dst, _eflags, "b"); break; \
498 case 2: __emulate_1op(_op, _dst, _eflags, "w"); break; \
499 case 4: __emulate_1op(_op, _dst, _eflags, "l"); break; \
500 case 8: ON64(__emulate_1op(_op, _dst, _eflags, "q")); break; \
Avi Kivity6aa8b732006-12-10 02:21:36 -0800501 } \
502 } while (0)
503
Avi Kivity6aa8b732006-12-10 02:21:36 -0800504/* Fetch next part of the instruction being emulated. */
505#define insn_fetch(_type, _size, _eip) \
506({ unsigned long _x; \
Avi Kivity62266862007-11-20 13:15:52 +0200507 rc = do_insn_fetch(ctxt, ops, (_eip), &_x, (_size)); \
Mike Dayd77c26f2007-10-08 09:02:08 -0400508 if (rc != 0) \
Avi Kivity6aa8b732006-12-10 02:21:36 -0800509 goto done; \
510 (_eip) += (_size); \
511 (_type)_x; \
512})
513
Harvey Harrisonddcb2882008-02-18 11:12:48 -0800514static inline unsigned long ad_mask(struct decode_cache *c)
515{
516 return (1UL << (c->ad_bytes << 3)) - 1;
517}
518
Avi Kivity6aa8b732006-12-10 02:21:36 -0800519/* Access/update address held in a register, based on addressing mode. */
Harvey Harrisone4706772008-02-19 07:40:38 -0800520static inline unsigned long
521address_mask(struct decode_cache *c, unsigned long reg)
522{
523 if (c->ad_bytes == sizeof(unsigned long))
524 return reg;
525 else
526 return reg & ad_mask(c);
527}
528
529static inline unsigned long
530register_address(struct decode_cache *c, unsigned long base, unsigned long reg)
531{
532 return base + address_mask(c, reg);
533}
534
Harvey Harrison7a9572752008-02-19 07:40:41 -0800535static inline void
536register_address_increment(struct decode_cache *c, unsigned long *reg, int inc)
537{
538 if (c->ad_bytes == sizeof(unsigned long))
539 *reg += inc;
540 else
541 *reg = (*reg & ~ad_mask(c)) | ((*reg + inc) & ad_mask(c));
542}
Avi Kivity6aa8b732006-12-10 02:21:36 -0800543
Harvey Harrison7a9572752008-02-19 07:40:41 -0800544static inline void jmp_rel(struct decode_cache *c, int rel)
545{
546 register_address_increment(c, &c->eip, rel);
547}
Nitin A Kamble098c9372007-08-19 11:00:36 +0300548
Avi Kivity7a5b56d2008-06-22 16:22:51 +0300549static void set_seg_override(struct decode_cache *c, int seg)
550{
551 c->has_seg_override = true;
552 c->seg_override = seg;
553}
554
555static unsigned long seg_base(struct x86_emulate_ctxt *ctxt, int seg)
556{
557 if (ctxt->mode == X86EMUL_MODE_PROT64 && seg < VCPU_SREG_FS)
558 return 0;
559
560 return kvm_x86_ops->get_segment_base(ctxt->vcpu, seg);
561}
562
563static unsigned long seg_override_base(struct x86_emulate_ctxt *ctxt,
564 struct decode_cache *c)
565{
566 if (!c->has_seg_override)
567 return 0;
568
569 return seg_base(ctxt, c->seg_override);
570}
571
572static unsigned long es_base(struct x86_emulate_ctxt *ctxt)
573{
574 return seg_base(ctxt, VCPU_SREG_ES);
575}
576
577static unsigned long ss_base(struct x86_emulate_ctxt *ctxt)
578{
579 return seg_base(ctxt, VCPU_SREG_SS);
580}
581
Avi Kivity62266862007-11-20 13:15:52 +0200582static int do_fetch_insn_byte(struct x86_emulate_ctxt *ctxt,
583 struct x86_emulate_ops *ops,
584 unsigned long linear, u8 *dest)
585{
586 struct fetch_cache *fc = &ctxt->decode.fetch;
587 int rc;
588 int size;
589
590 if (linear < fc->start || linear >= fc->end) {
591 size = min(15UL, PAGE_SIZE - offset_in_page(linear));
592 rc = ops->read_std(linear, fc->data, size, ctxt->vcpu);
593 if (rc)
594 return rc;
595 fc->start = linear;
596 fc->end = linear + size;
597 }
598 *dest = fc->data[linear - fc->start];
599 return 0;
600}
601
602static int do_insn_fetch(struct x86_emulate_ctxt *ctxt,
603 struct x86_emulate_ops *ops,
604 unsigned long eip, void *dest, unsigned size)
605{
606 int rc = 0;
607
608 eip += ctxt->cs_base;
609 while (size--) {
610 rc = do_fetch_insn_byte(ctxt, ops, eip++, dest++);
611 if (rc)
612 return rc;
613 }
614 return 0;
615}
616
Rusty Russell1e3c5cb2007-07-17 23:16:11 +1000617/*
618 * Given the 'reg' portion of a ModRM byte, and a register block, return a
619 * pointer into the block that addresses the relevant register.
620 * @highbyte_regs specifies whether to decode AH,CH,DH,BH.
621 */
622static void *decode_register(u8 modrm_reg, unsigned long *regs,
623 int highbyte_regs)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800624{
625 void *p;
626
627 p = &regs[modrm_reg];
628 if (highbyte_regs && modrm_reg >= 4 && modrm_reg < 8)
629 p = (unsigned char *)&regs[modrm_reg & 3] + 1;
630 return p;
631}
632
633static int read_descriptor(struct x86_emulate_ctxt *ctxt,
634 struct x86_emulate_ops *ops,
635 void *ptr,
636 u16 *size, unsigned long *address, int op_bytes)
637{
638 int rc;
639
640 if (op_bytes == 2)
641 op_bytes = 3;
642 *address = 0;
Laurent Viviercebff022007-07-30 13:35:24 +0300643 rc = ops->read_std((unsigned long)ptr, (unsigned long *)size, 2,
644 ctxt->vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800645 if (rc)
646 return rc;
Laurent Viviercebff022007-07-30 13:35:24 +0300647 rc = ops->read_std((unsigned long)ptr + 2, address, op_bytes,
648 ctxt->vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800649 return rc;
650}
651
Nitin A Kamblebbe9abb2007-09-15 10:23:07 +0300652static int test_cc(unsigned int condition, unsigned int flags)
653{
654 int rc = 0;
655
656 switch ((condition & 15) >> 1) {
657 case 0: /* o */
658 rc |= (flags & EFLG_OF);
659 break;
660 case 1: /* b/c/nae */
661 rc |= (flags & EFLG_CF);
662 break;
663 case 2: /* z/e */
664 rc |= (flags & EFLG_ZF);
665 break;
666 case 3: /* be/na */
667 rc |= (flags & (EFLG_CF|EFLG_ZF));
668 break;
669 case 4: /* s */
670 rc |= (flags & EFLG_SF);
671 break;
672 case 5: /* p/pe */
673 rc |= (flags & EFLG_PF);
674 break;
675 case 7: /* le/ng */
676 rc |= (flags & EFLG_ZF);
677 /* fall through */
678 case 6: /* l/nge */
679 rc |= (!(flags & EFLG_SF) != !(flags & EFLG_OF));
680 break;
681 }
682
683 /* Odd condition identifiers (lsb == 1) have inverted sense. */
684 return (!!rc ^ (condition & 1));
685}
686
Avi Kivity3c118e22007-10-31 10:27:04 +0200687static void decode_register_operand(struct operand *op,
688 struct decode_cache *c,
Avi Kivity3c118e22007-10-31 10:27:04 +0200689 int inhibit_bytereg)
690{
Avi Kivity33615aa2007-10-31 11:15:56 +0200691 unsigned reg = c->modrm_reg;
Avi Kivity9f1ef3f2007-10-31 11:21:06 +0200692 int highbyte_regs = c->rex_prefix == 0;
Avi Kivity33615aa2007-10-31 11:15:56 +0200693
694 if (!(c->d & ModRM))
695 reg = (c->b & 7) | ((c->rex_prefix & 1) << 3);
Avi Kivity3c118e22007-10-31 10:27:04 +0200696 op->type = OP_REG;
697 if ((c->d & ByteOp) && !inhibit_bytereg) {
Avi Kivity33615aa2007-10-31 11:15:56 +0200698 op->ptr = decode_register(reg, c->regs, highbyte_regs);
Avi Kivity3c118e22007-10-31 10:27:04 +0200699 op->val = *(u8 *)op->ptr;
700 op->bytes = 1;
701 } else {
Avi Kivity33615aa2007-10-31 11:15:56 +0200702 op->ptr = decode_register(reg, c->regs, 0);
Avi Kivity3c118e22007-10-31 10:27:04 +0200703 op->bytes = c->op_bytes;
704 switch (op->bytes) {
705 case 2:
706 op->val = *(u16 *)op->ptr;
707 break;
708 case 4:
709 op->val = *(u32 *)op->ptr;
710 break;
711 case 8:
712 op->val = *(u64 *) op->ptr;
713 break;
714 }
715 }
716 op->orig_val = op->val;
717}
718
Avi Kivity1c73ef6652007-11-01 06:31:28 +0200719static int decode_modrm(struct x86_emulate_ctxt *ctxt,
720 struct x86_emulate_ops *ops)
721{
722 struct decode_cache *c = &ctxt->decode;
723 u8 sib;
Avi Kivityf5b4edc2008-06-15 22:09:11 -0700724 int index_reg = 0, base_reg = 0, scale;
Avi Kivity1c73ef6652007-11-01 06:31:28 +0200725 int rc = 0;
726
727 if (c->rex_prefix) {
728 c->modrm_reg = (c->rex_prefix & 4) << 1; /* REX.R */
729 index_reg = (c->rex_prefix & 2) << 2; /* REX.X */
730 c->modrm_rm = base_reg = (c->rex_prefix & 1) << 3; /* REG.B */
731 }
732
733 c->modrm = insn_fetch(u8, 1, c->eip);
734 c->modrm_mod |= (c->modrm & 0xc0) >> 6;
735 c->modrm_reg |= (c->modrm & 0x38) >> 3;
736 c->modrm_rm |= (c->modrm & 0x07);
737 c->modrm_ea = 0;
738 c->use_modrm_ea = 1;
739
740 if (c->modrm_mod == 3) {
Avi Kivity107d6d22008-05-05 14:58:26 +0300741 c->modrm_ptr = decode_register(c->modrm_rm,
742 c->regs, c->d & ByteOp);
743 c->modrm_val = *(unsigned long *)c->modrm_ptr;
Avi Kivity1c73ef6652007-11-01 06:31:28 +0200744 return rc;
745 }
746
747 if (c->ad_bytes == 2) {
748 unsigned bx = c->regs[VCPU_REGS_RBX];
749 unsigned bp = c->regs[VCPU_REGS_RBP];
750 unsigned si = c->regs[VCPU_REGS_RSI];
751 unsigned di = c->regs[VCPU_REGS_RDI];
752
753 /* 16-bit ModR/M decode. */
754 switch (c->modrm_mod) {
755 case 0:
756 if (c->modrm_rm == 6)
757 c->modrm_ea += insn_fetch(u16, 2, c->eip);
758 break;
759 case 1:
760 c->modrm_ea += insn_fetch(s8, 1, c->eip);
761 break;
762 case 2:
763 c->modrm_ea += insn_fetch(u16, 2, c->eip);
764 break;
765 }
766 switch (c->modrm_rm) {
767 case 0:
768 c->modrm_ea += bx + si;
769 break;
770 case 1:
771 c->modrm_ea += bx + di;
772 break;
773 case 2:
774 c->modrm_ea += bp + si;
775 break;
776 case 3:
777 c->modrm_ea += bp + di;
778 break;
779 case 4:
780 c->modrm_ea += si;
781 break;
782 case 5:
783 c->modrm_ea += di;
784 break;
785 case 6:
786 if (c->modrm_mod != 0)
787 c->modrm_ea += bp;
788 break;
789 case 7:
790 c->modrm_ea += bx;
791 break;
792 }
793 if (c->modrm_rm == 2 || c->modrm_rm == 3 ||
794 (c->modrm_rm == 6 && c->modrm_mod != 0))
Avi Kivity7a5b56d2008-06-22 16:22:51 +0300795 if (!c->has_seg_override)
796 set_seg_override(c, VCPU_SREG_SS);
Avi Kivity1c73ef6652007-11-01 06:31:28 +0200797 c->modrm_ea = (u16)c->modrm_ea;
798 } else {
799 /* 32/64-bit ModR/M decode. */
Avi Kivity84411d82008-06-15 21:53:26 -0700800 if ((c->modrm_rm & 7) == 4) {
Avi Kivity1c73ef6652007-11-01 06:31:28 +0200801 sib = insn_fetch(u8, 1, c->eip);
802 index_reg |= (sib >> 3) & 7;
803 base_reg |= sib & 7;
804 scale = sib >> 6;
805
Avi Kivitydc71d0f2008-06-15 21:23:17 -0700806 if ((base_reg & 7) == 5 && c->modrm_mod == 0)
807 c->modrm_ea += insn_fetch(s32, 4, c->eip);
808 else
Avi Kivity1c73ef6652007-11-01 06:31:28 +0200809 c->modrm_ea += c->regs[base_reg];
Avi Kivitydc71d0f2008-06-15 21:23:17 -0700810 if (index_reg != 4)
Avi Kivity1c73ef6652007-11-01 06:31:28 +0200811 c->modrm_ea += c->regs[index_reg] << scale;
Avi Kivity84411d82008-06-15 21:53:26 -0700812 } else if ((c->modrm_rm & 7) == 5 && c->modrm_mod == 0) {
813 if (ctxt->mode == X86EMUL_MODE_PROT64)
Avi Kivityf5b4edc2008-06-15 22:09:11 -0700814 c->rip_relative = 1;
Avi Kivity84411d82008-06-15 21:53:26 -0700815 } else
Avi Kivity1c73ef6652007-11-01 06:31:28 +0200816 c->modrm_ea += c->regs[c->modrm_rm];
Avi Kivity1c73ef6652007-11-01 06:31:28 +0200817 switch (c->modrm_mod) {
818 case 0:
819 if (c->modrm_rm == 5)
820 c->modrm_ea += insn_fetch(s32, 4, c->eip);
821 break;
822 case 1:
823 c->modrm_ea += insn_fetch(s8, 1, c->eip);
824 break;
825 case 2:
826 c->modrm_ea += insn_fetch(s32, 4, c->eip);
827 break;
828 }
829 }
Avi Kivity1c73ef6652007-11-01 06:31:28 +0200830done:
831 return rc;
832}
833
834static int decode_abs(struct x86_emulate_ctxt *ctxt,
835 struct x86_emulate_ops *ops)
836{
837 struct decode_cache *c = &ctxt->decode;
838 int rc = 0;
839
840 switch (c->ad_bytes) {
841 case 2:
842 c->modrm_ea = insn_fetch(u16, 2, c->eip);
843 break;
844 case 4:
845 c->modrm_ea = insn_fetch(u32, 4, c->eip);
846 break;
847 case 8:
848 c->modrm_ea = insn_fetch(u64, 8, c->eip);
849 break;
850 }
851done:
852 return rc;
853}
854
Avi Kivity6aa8b732006-12-10 02:21:36 -0800855int
Laurent Vivier8b4caf62007-09-18 11:27:19 +0200856x86_decode_insn(struct x86_emulate_ctxt *ctxt, struct x86_emulate_ops *ops)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800857{
Laurent Viviere4e03de2007-09-18 11:52:50 +0200858 struct decode_cache *c = &ctxt->decode;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800859 int rc = 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800860 int mode = ctxt->mode;
Avi Kivitye09d0822008-01-18 12:38:59 +0200861 int def_op_bytes, def_ad_bytes, group;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800862
863 /* Shadow copy of register state. Committed on successful emulation. */
Avi Kivity6aa8b732006-12-10 02:21:36 -0800864
Laurent Viviere4e03de2007-09-18 11:52:50 +0200865 memset(c, 0, sizeof(struct decode_cache));
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -0300866 c->eip = kvm_rip_read(ctxt->vcpu);
Avi Kivity7a5b56d2008-06-22 16:22:51 +0300867 ctxt->cs_base = seg_base(ctxt, VCPU_SREG_CS);
Zhang Xiantaoad312c72007-12-13 23:50:52 +0800868 memcpy(c->regs, ctxt->vcpu->arch.regs, sizeof c->regs);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800869
870 switch (mode) {
871 case X86EMUL_MODE_REAL:
872 case X86EMUL_MODE_PROT16:
Avi Kivityf21b8bf2007-11-22 14:16:12 +0200873 def_op_bytes = def_ad_bytes = 2;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800874 break;
875 case X86EMUL_MODE_PROT32:
Avi Kivityf21b8bf2007-11-22 14:16:12 +0200876 def_op_bytes = def_ad_bytes = 4;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800877 break;
Avi Kivity05b3e0c2006-12-13 00:33:45 -0800878#ifdef CONFIG_X86_64
Avi Kivity6aa8b732006-12-10 02:21:36 -0800879 case X86EMUL_MODE_PROT64:
Avi Kivityf21b8bf2007-11-22 14:16:12 +0200880 def_op_bytes = 4;
881 def_ad_bytes = 8;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800882 break;
883#endif
884 default:
885 return -1;
886 }
887
Avi Kivityf21b8bf2007-11-22 14:16:12 +0200888 c->op_bytes = def_op_bytes;
889 c->ad_bytes = def_ad_bytes;
890
Avi Kivity6aa8b732006-12-10 02:21:36 -0800891 /* Legacy prefixes. */
Laurent Vivierb4c6abf2007-09-25 13:36:40 +0200892 for (;;) {
Laurent Viviere4e03de2007-09-18 11:52:50 +0200893 switch (c->b = insn_fetch(u8, 1, c->eip)) {
Avi Kivity6aa8b732006-12-10 02:21:36 -0800894 case 0x66: /* operand-size override */
Avi Kivityf21b8bf2007-11-22 14:16:12 +0200895 /* switch between 2/4 bytes */
896 c->op_bytes = def_op_bytes ^ 6;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800897 break;
898 case 0x67: /* address-size override */
899 if (mode == X86EMUL_MODE_PROT64)
Laurent Viviere4e03de2007-09-18 11:52:50 +0200900 /* switch between 4/8 bytes */
Avi Kivityf21b8bf2007-11-22 14:16:12 +0200901 c->ad_bytes = def_ad_bytes ^ 12;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800902 else
Laurent Viviere4e03de2007-09-18 11:52:50 +0200903 /* switch between 2/4 bytes */
Avi Kivityf21b8bf2007-11-22 14:16:12 +0200904 c->ad_bytes = def_ad_bytes ^ 6;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800905 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800906 case 0x26: /* ES override */
Avi Kivity7a5b56d2008-06-22 16:22:51 +0300907 case 0x2e: /* CS override */
908 case 0x36: /* SS override */
909 case 0x3e: /* DS override */
910 set_seg_override(c, (c->b >> 3) & 3);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800911 break;
912 case 0x64: /* FS override */
Avi Kivity6aa8b732006-12-10 02:21:36 -0800913 case 0x65: /* GS override */
Avi Kivity7a5b56d2008-06-22 16:22:51 +0300914 set_seg_override(c, c->b & 7);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800915 break;
Laurent Vivierb4c6abf2007-09-25 13:36:40 +0200916 case 0x40 ... 0x4f: /* REX */
917 if (mode != X86EMUL_MODE_PROT64)
918 goto done_prefixes;
Avi Kivity33615aa2007-10-31 11:15:56 +0200919 c->rex_prefix = c->b;
Laurent Vivierb4c6abf2007-09-25 13:36:40 +0200920 continue;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800921 case 0xf0: /* LOCK */
Laurent Viviere4e03de2007-09-18 11:52:50 +0200922 c->lock_prefix = 1;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800923 break;
Laurent Vivierae6200b2007-09-20 11:17:24 +0200924 case 0xf2: /* REPNE/REPNZ */
Guillaume Thouvenin90e0a282007-11-22 11:32:09 +0100925 c->rep_prefix = REPNE_PREFIX;
926 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800927 case 0xf3: /* REP/REPE/REPZ */
Guillaume Thouvenin90e0a282007-11-22 11:32:09 +0100928 c->rep_prefix = REPE_PREFIX;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800929 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800930 default:
931 goto done_prefixes;
932 }
Laurent Vivierb4c6abf2007-09-25 13:36:40 +0200933
934 /* Any legacy prefix after a REX prefix nullifies its effect. */
935
Avi Kivity33615aa2007-10-31 11:15:56 +0200936 c->rex_prefix = 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800937 }
938
939done_prefixes:
940
941 /* REX prefix. */
Avi Kivity1c73ef6652007-11-01 06:31:28 +0200942 if (c->rex_prefix)
Avi Kivity33615aa2007-10-31 11:15:56 +0200943 if (c->rex_prefix & 8)
Laurent Viviere4e03de2007-09-18 11:52:50 +0200944 c->op_bytes = 8; /* REX.W */
Avi Kivity6aa8b732006-12-10 02:21:36 -0800945
946 /* Opcode byte(s). */
Laurent Viviere4e03de2007-09-18 11:52:50 +0200947 c->d = opcode_table[c->b];
948 if (c->d == 0) {
Avi Kivity6aa8b732006-12-10 02:21:36 -0800949 /* Two-byte opcode? */
Laurent Viviere4e03de2007-09-18 11:52:50 +0200950 if (c->b == 0x0f) {
951 c->twobyte = 1;
952 c->b = insn_fetch(u8, 1, c->eip);
953 c->d = twobyte_table[c->b];
Avi Kivity6aa8b732006-12-10 02:21:36 -0800954 }
Avi Kivitye09d0822008-01-18 12:38:59 +0200955 }
Avi Kivity6aa8b732006-12-10 02:21:36 -0800956
Avi Kivitye09d0822008-01-18 12:38:59 +0200957 if (c->d & Group) {
958 group = c->d & GroupMask;
959 c->modrm = insn_fetch(u8, 1, c->eip);
960 --c->eip;
961
962 group = (group << 3) + ((c->modrm >> 3) & 7);
963 if ((c->d & GroupDual) && (c->modrm >> 6) == 3)
964 c->d = group2_table[group];
965 else
966 c->d = group_table[group];
967 }
968
969 /* Unrecognised? */
970 if (c->d == 0) {
971 DPRINTF("Cannot emulate %02x\n", c->b);
972 return -1;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800973 }
974
Avi Kivity6e3d5df2007-12-06 18:14:14 +0200975 if (mode == X86EMUL_MODE_PROT64 && (c->d & Stack))
976 c->op_bytes = 8;
977
Avi Kivity6aa8b732006-12-10 02:21:36 -0800978 /* ModRM and SIB bytes. */
Avi Kivity1c73ef6652007-11-01 06:31:28 +0200979 if (c->d & ModRM)
980 rc = decode_modrm(ctxt, ops);
981 else if (c->d & MemAbs)
982 rc = decode_abs(ctxt, ops);
983 if (rc)
984 goto done;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800985
Avi Kivity7a5b56d2008-06-22 16:22:51 +0300986 if (!c->has_seg_override)
987 set_seg_override(c, VCPU_SREG_DS);
Avi Kivityc7e75a32007-10-28 16:34:25 +0200988
Avi Kivity7a5b56d2008-06-22 16:22:51 +0300989 if (!(!c->twobyte && c->b == 0x8d))
990 c->modrm_ea += seg_override_base(ctxt, c);
Avi Kivityc7e75a32007-10-28 16:34:25 +0200991
992 if (c->ad_bytes != 8)
993 c->modrm_ea = (u32)c->modrm_ea;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800994 /*
995 * Decode and fetch the source operand: register, memory
996 * or immediate.
997 */
Laurent Viviere4e03de2007-09-18 11:52:50 +0200998 switch (c->d & SrcMask) {
Avi Kivity6aa8b732006-12-10 02:21:36 -0800999 case SrcNone:
1000 break;
1001 case SrcReg:
Avi Kivity9f1ef3f2007-10-31 11:21:06 +02001002 decode_register_operand(&c->src, c, 0);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001003 break;
1004 case SrcMem16:
Laurent Viviere4e03de2007-09-18 11:52:50 +02001005 c->src.bytes = 2;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001006 goto srcmem_common;
1007 case SrcMem32:
Laurent Viviere4e03de2007-09-18 11:52:50 +02001008 c->src.bytes = 4;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001009 goto srcmem_common;
1010 case SrcMem:
Laurent Viviere4e03de2007-09-18 11:52:50 +02001011 c->src.bytes = (c->d & ByteOp) ? 1 :
1012 c->op_bytes;
Rusty Russellb85b9ee92007-09-09 14:12:54 +03001013 /* Don't fetch the address for invlpg: it could be unmapped. */
Mike Dayd77c26f2007-10-08 09:02:08 -04001014 if (c->twobyte && c->b == 0x01 && c->modrm_reg == 7)
Rusty Russellb85b9ee92007-09-09 14:12:54 +03001015 break;
Mike Dayd77c26f2007-10-08 09:02:08 -04001016 srcmem_common:
Aurelien Jarno4e624172007-10-17 19:30:41 +02001017 /*
1018 * For instructions with a ModR/M byte, switch to register
1019 * access if Mod = 3.
1020 */
Laurent Viviere4e03de2007-09-18 11:52:50 +02001021 if ((c->d & ModRM) && c->modrm_mod == 3) {
1022 c->src.type = OP_REG;
Avi Kivity66b85502008-04-14 23:27:07 +03001023 c->src.val = c->modrm_val;
Avi Kivity107d6d22008-05-05 14:58:26 +03001024 c->src.ptr = c->modrm_ptr;
Aurelien Jarno4e624172007-10-17 19:30:41 +02001025 break;
1026 }
Laurent Viviere4e03de2007-09-18 11:52:50 +02001027 c->src.type = OP_MEM;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001028 break;
1029 case SrcImm:
Laurent Viviere4e03de2007-09-18 11:52:50 +02001030 c->src.type = OP_IMM;
1031 c->src.ptr = (unsigned long *)c->eip;
1032 c->src.bytes = (c->d & ByteOp) ? 1 : c->op_bytes;
1033 if (c->src.bytes == 8)
1034 c->src.bytes = 4;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001035 /* NB. Immediates are sign-extended as necessary. */
Laurent Viviere4e03de2007-09-18 11:52:50 +02001036 switch (c->src.bytes) {
Avi Kivity6aa8b732006-12-10 02:21:36 -08001037 case 1:
Laurent Viviere4e03de2007-09-18 11:52:50 +02001038 c->src.val = insn_fetch(s8, 1, c->eip);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001039 break;
1040 case 2:
Laurent Viviere4e03de2007-09-18 11:52:50 +02001041 c->src.val = insn_fetch(s16, 2, c->eip);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001042 break;
1043 case 4:
Laurent Viviere4e03de2007-09-18 11:52:50 +02001044 c->src.val = insn_fetch(s32, 4, c->eip);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001045 break;
1046 }
1047 break;
1048 case SrcImmByte:
Gleb Natapov341de7e2009-04-12 13:36:41 +03001049 case SrcImmUByte:
Laurent Viviere4e03de2007-09-18 11:52:50 +02001050 c->src.type = OP_IMM;
1051 c->src.ptr = (unsigned long *)c->eip;
1052 c->src.bytes = 1;
Gleb Natapov341de7e2009-04-12 13:36:41 +03001053 if ((c->d & SrcMask) == SrcImmByte)
1054 c->src.val = insn_fetch(s8, 1, c->eip);
1055 else
1056 c->src.val = insn_fetch(u8, 1, c->eip);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001057 break;
Guillaume Thouveninbfcadf82008-12-04 14:27:38 +01001058 case SrcOne:
1059 c->src.bytes = 1;
1060 c->src.val = 1;
1061 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001062 }
1063
Guillaume Thouvenin0dc8d102008-12-04 14:26:42 +01001064 /*
1065 * Decode and fetch the second source operand: register, memory
1066 * or immediate.
1067 */
1068 switch (c->d & Src2Mask) {
1069 case Src2None:
1070 break;
1071 case Src2CL:
1072 c->src2.bytes = 1;
1073 c->src2.val = c->regs[VCPU_REGS_RCX] & 0x8;
1074 break;
1075 case Src2ImmByte:
1076 c->src2.type = OP_IMM;
1077 c->src2.ptr = (unsigned long *)c->eip;
1078 c->src2.bytes = 1;
1079 c->src2.val = insn_fetch(u8, 1, c->eip);
1080 break;
Gleb Natapova5f868b2009-04-12 13:36:14 +03001081 case Src2Imm16:
1082 c->src2.type = OP_IMM;
1083 c->src2.ptr = (unsigned long *)c->eip;
1084 c->src2.bytes = 2;
1085 c->src2.val = insn_fetch(u16, 2, c->eip);
1086 break;
Guillaume Thouvenin0dc8d102008-12-04 14:26:42 +01001087 case Src2One:
1088 c->src2.bytes = 1;
1089 c->src2.val = 1;
1090 break;
1091 }
1092
Avi Kivity038e51d2007-01-22 20:40:40 -08001093 /* Decode and fetch the destination operand: register or memory. */
Laurent Viviere4e03de2007-09-18 11:52:50 +02001094 switch (c->d & DstMask) {
Avi Kivity038e51d2007-01-22 20:40:40 -08001095 case ImplicitOps:
1096 /* Special instructions do their own operand decoding. */
Laurent Vivier8b4caf62007-09-18 11:27:19 +02001097 return 0;
Avi Kivity038e51d2007-01-22 20:40:40 -08001098 case DstReg:
Avi Kivity9f1ef3f2007-10-31 11:21:06 +02001099 decode_register_operand(&c->dst, c,
Avi Kivity3c118e22007-10-31 10:27:04 +02001100 c->twobyte && (c->b == 0xb6 || c->b == 0xb7));
Avi Kivity038e51d2007-01-22 20:40:40 -08001101 break;
1102 case DstMem:
Laurent Viviere4e03de2007-09-18 11:52:50 +02001103 if ((c->d & ModRM) && c->modrm_mod == 3) {
Guillaume Thouvenin89c69632008-05-27 10:22:20 +02001104 c->dst.bytes = (c->d & ByteOp) ? 1 : c->op_bytes;
Laurent Viviere4e03de2007-09-18 11:52:50 +02001105 c->dst.type = OP_REG;
Avi Kivity66b85502008-04-14 23:27:07 +03001106 c->dst.val = c->dst.orig_val = c->modrm_val;
Avi Kivity107d6d22008-05-05 14:58:26 +03001107 c->dst.ptr = c->modrm_ptr;
Aurelien Jarno4e624172007-10-17 19:30:41 +02001108 break;
1109 }
Laurent Vivier8b4caf62007-09-18 11:27:19 +02001110 c->dst.type = OP_MEM;
1111 break;
Guillaume Thouvenin9c9fddd2008-09-12 13:50:25 +02001112 case DstAcc:
1113 c->dst.type = OP_REG;
1114 c->dst.bytes = c->op_bytes;
1115 c->dst.ptr = &c->regs[VCPU_REGS_RAX];
1116 switch (c->op_bytes) {
1117 case 1:
1118 c->dst.val = *(u8 *)c->dst.ptr;
1119 break;
1120 case 2:
1121 c->dst.val = *(u16 *)c->dst.ptr;
1122 break;
1123 case 4:
1124 c->dst.val = *(u32 *)c->dst.ptr;
1125 break;
1126 }
1127 c->dst.orig_val = c->dst.val;
1128 break;
Laurent Vivier8b4caf62007-09-18 11:27:19 +02001129 }
1130
Avi Kivityf5b4edc2008-06-15 22:09:11 -07001131 if (c->rip_relative)
1132 c->modrm_ea += c->eip;
1133
Laurent Vivier8b4caf62007-09-18 11:27:19 +02001134done:
1135 return (rc == X86EMUL_UNHANDLEABLE) ? -1 : 0;
1136}
1137
Laurent Vivier8cdbd2c2007-09-24 11:10:54 +02001138static inline void emulate_push(struct x86_emulate_ctxt *ctxt)
1139{
1140 struct decode_cache *c = &ctxt->decode;
1141
1142 c->dst.type = OP_MEM;
1143 c->dst.bytes = c->op_bytes;
1144 c->dst.val = c->src.val;
Harvey Harrison7a9572752008-02-19 07:40:41 -08001145 register_address_increment(c, &c->regs[VCPU_REGS_RSP], -c->op_bytes);
Avi Kivity7a5b56d2008-06-22 16:22:51 +03001146 c->dst.ptr = (void *) register_address(c, ss_base(ctxt),
Laurent Vivier8cdbd2c2007-09-24 11:10:54 +02001147 c->regs[VCPU_REGS_RSP]);
1148}
1149
Avi Kivityfaa5a3a2008-11-27 17:36:41 +02001150static int emulate_pop(struct x86_emulate_ctxt *ctxt,
Avi Kivity350f69d2009-01-05 11:12:40 +02001151 struct x86_emulate_ops *ops,
1152 void *dest, int len)
Laurent Vivier8cdbd2c2007-09-24 11:10:54 +02001153{
1154 struct decode_cache *c = &ctxt->decode;
1155 int rc;
1156
Avi Kivity781d0ed2008-11-27 18:00:28 +02001157 rc = ops->read_emulated(register_address(c, ss_base(ctxt),
1158 c->regs[VCPU_REGS_RSP]),
Avi Kivity350f69d2009-01-05 11:12:40 +02001159 dest, len, ctxt->vcpu);
Laurent Vivier8cdbd2c2007-09-24 11:10:54 +02001160 if (rc != 0)
1161 return rc;
1162
Avi Kivity350f69d2009-01-05 11:12:40 +02001163 register_address_increment(c, &c->regs[VCPU_REGS_RSP], len);
Avi Kivityfaa5a3a2008-11-27 17:36:41 +02001164 return rc;
1165}
Laurent Vivier8cdbd2c2007-09-24 11:10:54 +02001166
Avi Kivityfaa5a3a2008-11-27 17:36:41 +02001167static inline int emulate_grp1a(struct x86_emulate_ctxt *ctxt,
1168 struct x86_emulate_ops *ops)
1169{
1170 struct decode_cache *c = &ctxt->decode;
1171 int rc;
1172
Avi Kivity350f69d2009-01-05 11:12:40 +02001173 rc = emulate_pop(ctxt, ops, &c->dst.val, c->dst.bytes);
Avi Kivityfaa5a3a2008-11-27 17:36:41 +02001174 if (rc != 0)
1175 return rc;
Laurent Vivier8cdbd2c2007-09-24 11:10:54 +02001176 return 0;
1177}
1178
Laurent Vivier05f086f2007-09-24 11:10:55 +02001179static inline void emulate_grp2(struct x86_emulate_ctxt *ctxt)
Laurent Vivier8cdbd2c2007-09-24 11:10:54 +02001180{
Laurent Vivier05f086f2007-09-24 11:10:55 +02001181 struct decode_cache *c = &ctxt->decode;
Laurent Vivier8cdbd2c2007-09-24 11:10:54 +02001182 switch (c->modrm_reg) {
1183 case 0: /* rol */
Laurent Vivier05f086f2007-09-24 11:10:55 +02001184 emulate_2op_SrcB("rol", c->src, c->dst, ctxt->eflags);
Laurent Vivier8cdbd2c2007-09-24 11:10:54 +02001185 break;
1186 case 1: /* ror */
Laurent Vivier05f086f2007-09-24 11:10:55 +02001187 emulate_2op_SrcB("ror", c->src, c->dst, ctxt->eflags);
Laurent Vivier8cdbd2c2007-09-24 11:10:54 +02001188 break;
1189 case 2: /* rcl */
Laurent Vivier05f086f2007-09-24 11:10:55 +02001190 emulate_2op_SrcB("rcl", c->src, c->dst, ctxt->eflags);
Laurent Vivier8cdbd2c2007-09-24 11:10:54 +02001191 break;
1192 case 3: /* rcr */
Laurent Vivier05f086f2007-09-24 11:10:55 +02001193 emulate_2op_SrcB("rcr", c->src, c->dst, ctxt->eflags);
Laurent Vivier8cdbd2c2007-09-24 11:10:54 +02001194 break;
1195 case 4: /* sal/shl */
1196 case 6: /* sal/shl */
Laurent Vivier05f086f2007-09-24 11:10:55 +02001197 emulate_2op_SrcB("sal", c->src, c->dst, ctxt->eflags);
Laurent Vivier8cdbd2c2007-09-24 11:10:54 +02001198 break;
1199 case 5: /* shr */
Laurent Vivier05f086f2007-09-24 11:10:55 +02001200 emulate_2op_SrcB("shr", c->src, c->dst, ctxt->eflags);
Laurent Vivier8cdbd2c2007-09-24 11:10:54 +02001201 break;
1202 case 7: /* sar */
Laurent Vivier05f086f2007-09-24 11:10:55 +02001203 emulate_2op_SrcB("sar", c->src, c->dst, ctxt->eflags);
Laurent Vivier8cdbd2c2007-09-24 11:10:54 +02001204 break;
1205 }
1206}
1207
1208static inline int emulate_grp3(struct x86_emulate_ctxt *ctxt,
Laurent Vivier05f086f2007-09-24 11:10:55 +02001209 struct x86_emulate_ops *ops)
Laurent Vivier8cdbd2c2007-09-24 11:10:54 +02001210{
1211 struct decode_cache *c = &ctxt->decode;
1212 int rc = 0;
1213
1214 switch (c->modrm_reg) {
1215 case 0 ... 1: /* test */
Laurent Vivier05f086f2007-09-24 11:10:55 +02001216 emulate_2op_SrcV("test", c->src, c->dst, ctxt->eflags);
Laurent Vivier8cdbd2c2007-09-24 11:10:54 +02001217 break;
1218 case 2: /* not */
1219 c->dst.val = ~c->dst.val;
1220 break;
1221 case 3: /* neg */
Laurent Vivier05f086f2007-09-24 11:10:55 +02001222 emulate_1op("neg", c->dst, ctxt->eflags);
Laurent Vivier8cdbd2c2007-09-24 11:10:54 +02001223 break;
1224 default:
1225 DPRINTF("Cannot emulate %02x\n", c->b);
1226 rc = X86EMUL_UNHANDLEABLE;
1227 break;
1228 }
Laurent Vivier8cdbd2c2007-09-24 11:10:54 +02001229 return rc;
1230}
1231
1232static inline int emulate_grp45(struct x86_emulate_ctxt *ctxt,
Laurent Viviera01af5e2007-09-24 11:10:56 +02001233 struct x86_emulate_ops *ops)
Laurent Vivier8cdbd2c2007-09-24 11:10:54 +02001234{
1235 struct decode_cache *c = &ctxt->decode;
Laurent Vivier8cdbd2c2007-09-24 11:10:54 +02001236
1237 switch (c->modrm_reg) {
1238 case 0: /* inc */
Laurent Vivier05f086f2007-09-24 11:10:55 +02001239 emulate_1op("inc", c->dst, ctxt->eflags);
Laurent Vivier8cdbd2c2007-09-24 11:10:54 +02001240 break;
1241 case 1: /* dec */
Laurent Vivier05f086f2007-09-24 11:10:55 +02001242 emulate_1op("dec", c->dst, ctxt->eflags);
Laurent Vivier8cdbd2c2007-09-24 11:10:54 +02001243 break;
Mohammed Gamald19292e2008-09-08 21:47:19 +03001244 case 2: /* call near abs */ {
1245 long int old_eip;
1246 old_eip = c->eip;
1247 c->eip = c->src.val;
1248 c->src.val = old_eip;
1249 emulate_push(ctxt);
1250 break;
1251 }
Laurent Vivier8cdbd2c2007-09-24 11:10:54 +02001252 case 4: /* jmp abs */
Avi Kivityfd607542008-01-18 13:12:26 +02001253 c->eip = c->src.val;
Laurent Vivier8cdbd2c2007-09-24 11:10:54 +02001254 break;
1255 case 6: /* push */
Avi Kivityfd607542008-01-18 13:12:26 +02001256 emulate_push(ctxt);
Laurent Vivier8cdbd2c2007-09-24 11:10:54 +02001257 break;
Laurent Vivier8cdbd2c2007-09-24 11:10:54 +02001258 }
1259 return 0;
1260}
1261
1262static inline int emulate_grp9(struct x86_emulate_ctxt *ctxt,
1263 struct x86_emulate_ops *ops,
Sheng Yange8d8d7f2007-11-16 16:29:15 +08001264 unsigned long memop)
Laurent Vivier8cdbd2c2007-09-24 11:10:54 +02001265{
1266 struct decode_cache *c = &ctxt->decode;
1267 u64 old, new;
1268 int rc;
1269
Sheng Yange8d8d7f2007-11-16 16:29:15 +08001270 rc = ops->read_emulated(memop, &old, 8, ctxt->vcpu);
Laurent Vivier8cdbd2c2007-09-24 11:10:54 +02001271 if (rc != 0)
1272 return rc;
1273
1274 if (((u32) (old >> 0) != (u32) c->regs[VCPU_REGS_RAX]) ||
1275 ((u32) (old >> 32) != (u32) c->regs[VCPU_REGS_RDX])) {
1276
1277 c->regs[VCPU_REGS_RAX] = (u32) (old >> 0);
1278 c->regs[VCPU_REGS_RDX] = (u32) (old >> 32);
Laurent Vivier05f086f2007-09-24 11:10:55 +02001279 ctxt->eflags &= ~EFLG_ZF;
Laurent Vivier8cdbd2c2007-09-24 11:10:54 +02001280
1281 } else {
1282 new = ((u64)c->regs[VCPU_REGS_RCX] << 32) |
1283 (u32) c->regs[VCPU_REGS_RBX];
1284
Sheng Yange8d8d7f2007-11-16 16:29:15 +08001285 rc = ops->cmpxchg_emulated(memop, &old, &new, 8, ctxt->vcpu);
Laurent Vivier8cdbd2c2007-09-24 11:10:54 +02001286 if (rc != 0)
1287 return rc;
Laurent Vivier05f086f2007-09-24 11:10:55 +02001288 ctxt->eflags |= EFLG_ZF;
Laurent Vivier8cdbd2c2007-09-24 11:10:54 +02001289 }
1290 return 0;
1291}
1292
Avi Kivitya77ab5e2009-01-05 13:27:34 +02001293static int emulate_ret_far(struct x86_emulate_ctxt *ctxt,
1294 struct x86_emulate_ops *ops)
1295{
1296 struct decode_cache *c = &ctxt->decode;
1297 int rc;
1298 unsigned long cs;
1299
1300 rc = emulate_pop(ctxt, ops, &c->eip, c->op_bytes);
1301 if (rc)
1302 return rc;
1303 if (c->op_bytes == 4)
1304 c->eip = (u32)c->eip;
1305 rc = emulate_pop(ctxt, ops, &cs, c->op_bytes);
1306 if (rc)
1307 return rc;
1308 rc = kvm_load_segment_descriptor(ctxt->vcpu, (u16)cs, 1, VCPU_SREG_CS);
1309 return rc;
1310}
1311
Laurent Vivier8cdbd2c2007-09-24 11:10:54 +02001312static inline int writeback(struct x86_emulate_ctxt *ctxt,
1313 struct x86_emulate_ops *ops)
1314{
1315 int rc;
1316 struct decode_cache *c = &ctxt->decode;
1317
1318 switch (c->dst.type) {
1319 case OP_REG:
1320 /* The 4-byte case *is* correct:
1321 * in 64-bit mode we zero-extend.
1322 */
1323 switch (c->dst.bytes) {
1324 case 1:
1325 *(u8 *)c->dst.ptr = (u8)c->dst.val;
1326 break;
1327 case 2:
1328 *(u16 *)c->dst.ptr = (u16)c->dst.val;
1329 break;
1330 case 4:
1331 *c->dst.ptr = (u32)c->dst.val;
1332 break; /* 64b: zero-ext */
1333 case 8:
1334 *c->dst.ptr = c->dst.val;
1335 break;
1336 }
1337 break;
1338 case OP_MEM:
1339 if (c->lock_prefix)
1340 rc = ops->cmpxchg_emulated(
1341 (unsigned long)c->dst.ptr,
1342 &c->dst.orig_val,
1343 &c->dst.val,
1344 c->dst.bytes,
1345 ctxt->vcpu);
1346 else
1347 rc = ops->write_emulated(
1348 (unsigned long)c->dst.ptr,
1349 &c->dst.val,
1350 c->dst.bytes,
1351 ctxt->vcpu);
1352 if (rc != 0)
1353 return rc;
Laurent Viviera01af5e2007-09-24 11:10:56 +02001354 break;
1355 case OP_NONE:
1356 /* no writeback */
1357 break;
Laurent Vivier8cdbd2c2007-09-24 11:10:54 +02001358 default:
1359 break;
1360 }
1361 return 0;
1362}
1363
Glauber Costa310b5d32009-05-12 16:21:06 -04001364void toggle_interruptibility(struct x86_emulate_ctxt *ctxt, u32 mask)
1365{
1366 u32 int_shadow = kvm_x86_ops->get_interrupt_shadow(ctxt->vcpu, mask);
1367 /*
1368 * an sti; sti; sequence only disable interrupts for the first
1369 * instruction. So, if the last instruction, be it emulated or
1370 * not, left the system with the INT_STI flag enabled, it
1371 * means that the last instruction is an sti. We should not
1372 * leave the flag on in this case. The same goes for mov ss
1373 */
1374 if (!(int_shadow & mask))
1375 ctxt->interruptibility = mask;
1376}
1377
Laurent Vivier8b4caf62007-09-18 11:27:19 +02001378int
Laurent Vivier1be3aa42007-09-18 11:27:27 +02001379x86_emulate_insn(struct x86_emulate_ctxt *ctxt, struct x86_emulate_ops *ops)
Laurent Vivier8b4caf62007-09-18 11:27:19 +02001380{
Sheng Yange8d8d7f2007-11-16 16:29:15 +08001381 unsigned long memop = 0;
Laurent Vivier8b4caf62007-09-18 11:27:19 +02001382 u64 msr_data;
Laurent Vivier34273182007-09-18 11:27:37 +02001383 unsigned long saved_eip = 0;
Laurent Vivier8b4caf62007-09-18 11:27:19 +02001384 struct decode_cache *c = &ctxt->decode;
Mohammed Gamala6a30342008-09-06 17:22:29 +03001385 unsigned int port;
1386 int io_dir_in;
Laurent Vivier1be3aa42007-09-18 11:27:27 +02001387 int rc = 0;
Laurent Vivier8b4caf62007-09-18 11:27:19 +02001388
Glauber Costa310b5d32009-05-12 16:21:06 -04001389 ctxt->interruptibility = 0;
1390
Laurent Vivier34273182007-09-18 11:27:37 +02001391 /* Shadow copy of register state. Committed on successful emulation.
1392 * NOTE: we can copy them from vcpu as x86_decode_insn() doesn't
1393 * modify them.
1394 */
1395
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001396 memcpy(c->regs, ctxt->vcpu->arch.regs, sizeof c->regs);
Laurent Vivier34273182007-09-18 11:27:37 +02001397 saved_eip = c->eip;
1398
Avi Kivityc7e75a32007-10-28 16:34:25 +02001399 if (((c->d & ModRM) && (c->modrm_mod != 3)) || (c->d & MemAbs))
Sheng Yange8d8d7f2007-11-16 16:29:15 +08001400 memop = c->modrm_ea;
Laurent Vivier8b4caf62007-09-18 11:27:19 +02001401
Avi Kivityb9fa9d62007-11-27 19:05:37 +02001402 if (c->rep_prefix && (c->d & String)) {
1403 /* All REP prefixes have the same first termination condition */
1404 if (c->regs[VCPU_REGS_RCX] == 0) {
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03001405 kvm_rip_write(ctxt->vcpu, c->eip);
Avi Kivityb9fa9d62007-11-27 19:05:37 +02001406 goto done;
1407 }
1408 /* The second termination condition only applies for REPE
1409 * and REPNE. Test if the repeat string operation prefix is
1410 * REPE/REPZ or REPNE/REPNZ and if it's the case it tests the
1411 * corresponding termination condition according to:
1412 * - if REPE/REPZ and ZF = 0 then done
1413 * - if REPNE/REPNZ and ZF = 1 then done
1414 */
1415 if ((c->b == 0xa6) || (c->b == 0xa7) ||
1416 (c->b == 0xae) || (c->b == 0xaf)) {
1417 if ((c->rep_prefix == REPE_PREFIX) &&
1418 ((ctxt->eflags & EFLG_ZF) == 0)) {
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03001419 kvm_rip_write(ctxt->vcpu, c->eip);
Avi Kivityb9fa9d62007-11-27 19:05:37 +02001420 goto done;
1421 }
1422 if ((c->rep_prefix == REPNE_PREFIX) &&
1423 ((ctxt->eflags & EFLG_ZF) == EFLG_ZF)) {
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03001424 kvm_rip_write(ctxt->vcpu, c->eip);
Avi Kivityb9fa9d62007-11-27 19:05:37 +02001425 goto done;
1426 }
1427 }
1428 c->regs[VCPU_REGS_RCX]--;
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03001429 c->eip = kvm_rip_read(ctxt->vcpu);
Avi Kivityb9fa9d62007-11-27 19:05:37 +02001430 }
1431
Laurent Vivier8b4caf62007-09-18 11:27:19 +02001432 if (c->src.type == OP_MEM) {
Sheng Yange8d8d7f2007-11-16 16:29:15 +08001433 c->src.ptr = (unsigned long *)memop;
Laurent Vivier8b4caf62007-09-18 11:27:19 +02001434 c->src.val = 0;
Mike Dayd77c26f2007-10-08 09:02:08 -04001435 rc = ops->read_emulated((unsigned long)c->src.ptr,
1436 &c->src.val,
1437 c->src.bytes,
1438 ctxt->vcpu);
1439 if (rc != 0)
Laurent Vivier8b4caf62007-09-18 11:27:19 +02001440 goto done;
1441 c->src.orig_val = c->src.val;
1442 }
1443
1444 if ((c->d & DstMask) == ImplicitOps)
1445 goto special_insn;
1446
1447
1448 if (c->dst.type == OP_MEM) {
Sheng Yange8d8d7f2007-11-16 16:29:15 +08001449 c->dst.ptr = (unsigned long *)memop;
Laurent Vivier8b4caf62007-09-18 11:27:19 +02001450 c->dst.bytes = (c->d & ByteOp) ? 1 : c->op_bytes;
1451 c->dst.val = 0;
Laurent Viviere4e03de2007-09-18 11:52:50 +02001452 if (c->d & BitOp) {
1453 unsigned long mask = ~(c->dst.bytes * 8 - 1);
Avi Kivitydf513e22007-03-28 20:04:16 +02001454
Laurent Viviere4e03de2007-09-18 11:52:50 +02001455 c->dst.ptr = (void *)c->dst.ptr +
1456 (c->src.val & mask) / 8;
Avi Kivity038e51d2007-01-22 20:40:40 -08001457 }
Laurent Viviere4e03de2007-09-18 11:52:50 +02001458 if (!(c->d & Mov) &&
1459 /* optimisation - avoid slow emulated read */
1460 ((rc = ops->read_emulated((unsigned long)c->dst.ptr,
1461 &c->dst.val,
1462 c->dst.bytes, ctxt->vcpu)) != 0))
Avi Kivity038e51d2007-01-22 20:40:40 -08001463 goto done;
Avi Kivity038e51d2007-01-22 20:40:40 -08001464 }
Laurent Viviere4e03de2007-09-18 11:52:50 +02001465 c->dst.orig_val = c->dst.val;
Avi Kivity038e51d2007-01-22 20:40:40 -08001466
Avi Kivity018a98d2007-11-27 19:30:56 +02001467special_insn:
1468
Laurent Viviere4e03de2007-09-18 11:52:50 +02001469 if (c->twobyte)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001470 goto twobyte_insn;
1471
Laurent Viviere4e03de2007-09-18 11:52:50 +02001472 switch (c->b) {
Avi Kivity6aa8b732006-12-10 02:21:36 -08001473 case 0x00 ... 0x05:
1474 add: /* add */
Laurent Vivier05f086f2007-09-24 11:10:55 +02001475 emulate_2op_SrcV("add", c->src, c->dst, ctxt->eflags);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001476 break;
1477 case 0x08 ... 0x0d:
1478 or: /* or */
Laurent Vivier05f086f2007-09-24 11:10:55 +02001479 emulate_2op_SrcV("or", c->src, c->dst, ctxt->eflags);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001480 break;
1481 case 0x10 ... 0x15:
1482 adc: /* adc */
Laurent Vivier05f086f2007-09-24 11:10:55 +02001483 emulate_2op_SrcV("adc", c->src, c->dst, ctxt->eflags);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001484 break;
1485 case 0x18 ... 0x1d:
1486 sbb: /* sbb */
Laurent Vivier05f086f2007-09-24 11:10:55 +02001487 emulate_2op_SrcV("sbb", c->src, c->dst, ctxt->eflags);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001488 break;
Guillaume Thouveninaa3a8162008-09-12 13:52:18 +02001489 case 0x20 ... 0x25:
Avi Kivity6aa8b732006-12-10 02:21:36 -08001490 and: /* and */
Laurent Vivier05f086f2007-09-24 11:10:55 +02001491 emulate_2op_SrcV("and", c->src, c->dst, ctxt->eflags);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001492 break;
1493 case 0x28 ... 0x2d:
1494 sub: /* sub */
Laurent Vivier05f086f2007-09-24 11:10:55 +02001495 emulate_2op_SrcV("sub", c->src, c->dst, ctxt->eflags);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001496 break;
1497 case 0x30 ... 0x35:
1498 xor: /* xor */
Laurent Vivier05f086f2007-09-24 11:10:55 +02001499 emulate_2op_SrcV("xor", c->src, c->dst, ctxt->eflags);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001500 break;
1501 case 0x38 ... 0x3d:
1502 cmp: /* cmp */
Laurent Vivier05f086f2007-09-24 11:10:55 +02001503 emulate_2op_SrcV("cmp", c->src, c->dst, ctxt->eflags);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001504 break;
Avi Kivity33615aa2007-10-31 11:15:56 +02001505 case 0x40 ... 0x47: /* inc r16/r32 */
1506 emulate_1op("inc", c->dst, ctxt->eflags);
1507 break;
1508 case 0x48 ... 0x4f: /* dec r16/r32 */
1509 emulate_1op("dec", c->dst, ctxt->eflags);
1510 break;
1511 case 0x50 ... 0x57: /* push reg */
Guillaume Thouvenin2786b012008-09-22 16:08:06 +02001512 emulate_push(ctxt);
Avi Kivity33615aa2007-10-31 11:15:56 +02001513 break;
1514 case 0x58 ... 0x5f: /* pop reg */
1515 pop_instruction:
Avi Kivity350f69d2009-01-05 11:12:40 +02001516 rc = emulate_pop(ctxt, ops, &c->dst.val, c->op_bytes);
Avi Kivity8a09b682008-11-27 18:06:33 +02001517 if (rc != 0)
Avi Kivity33615aa2007-10-31 11:15:56 +02001518 goto done;
Avi Kivity33615aa2007-10-31 11:15:56 +02001519 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001520 case 0x63: /* movsxd */
Laurent Vivier8b4caf62007-09-18 11:27:19 +02001521 if (ctxt->mode != X86EMUL_MODE_PROT64)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001522 goto cannot_emulate;
Laurent Viviere4e03de2007-09-18 11:52:50 +02001523 c->dst.val = (s32) c->src.val;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001524 break;
Avi Kivity91ed7a02008-05-29 14:38:38 +03001525 case 0x68: /* push imm */
Avi Kivity018a98d2007-11-27 19:30:56 +02001526 case 0x6a: /* push imm8 */
Avi Kivity018a98d2007-11-27 19:30:56 +02001527 emulate_push(ctxt);
1528 break;
1529 case 0x6c: /* insb */
1530 case 0x6d: /* insw/insd */
1531 if (kvm_emulate_pio_string(ctxt->vcpu, NULL,
1532 1,
1533 (c->d & ByteOp) ? 1 : c->op_bytes,
1534 c->rep_prefix ?
Harvey Harrisone4706772008-02-19 07:40:38 -08001535 address_mask(c, c->regs[VCPU_REGS_RCX]) : 1,
Avi Kivity018a98d2007-11-27 19:30:56 +02001536 (ctxt->eflags & EFLG_DF),
Avi Kivity7a5b56d2008-06-22 16:22:51 +03001537 register_address(c, es_base(ctxt),
Avi Kivity018a98d2007-11-27 19:30:56 +02001538 c->regs[VCPU_REGS_RDI]),
1539 c->rep_prefix,
1540 c->regs[VCPU_REGS_RDX]) == 0) {
1541 c->eip = saved_eip;
1542 return -1;
1543 }
1544 return 0;
1545 case 0x6e: /* outsb */
1546 case 0x6f: /* outsw/outsd */
1547 if (kvm_emulate_pio_string(ctxt->vcpu, NULL,
1548 0,
1549 (c->d & ByteOp) ? 1 : c->op_bytes,
1550 c->rep_prefix ?
Harvey Harrisone4706772008-02-19 07:40:38 -08001551 address_mask(c, c->regs[VCPU_REGS_RCX]) : 1,
Avi Kivity018a98d2007-11-27 19:30:56 +02001552 (ctxt->eflags & EFLG_DF),
Avi Kivity7a5b56d2008-06-22 16:22:51 +03001553 register_address(c,
1554 seg_override_base(ctxt, c),
Avi Kivity018a98d2007-11-27 19:30:56 +02001555 c->regs[VCPU_REGS_RSI]),
1556 c->rep_prefix,
1557 c->regs[VCPU_REGS_RDX]) == 0) {
1558 c->eip = saved_eip;
1559 return -1;
1560 }
1561 return 0;
Gleb Natapovb2833e32009-04-12 13:36:30 +03001562 case 0x70 ... 0x7f: /* jcc (short) */
Avi Kivity018a98d2007-11-27 19:30:56 +02001563 if (test_cc(c->b, ctxt->eflags))
Gleb Natapovb2833e32009-04-12 13:36:30 +03001564 jmp_rel(c, c->src.val);
Avi Kivity018a98d2007-11-27 19:30:56 +02001565 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001566 case 0x80 ... 0x83: /* Grp1 */
Laurent Viviere4e03de2007-09-18 11:52:50 +02001567 switch (c->modrm_reg) {
Avi Kivity6aa8b732006-12-10 02:21:36 -08001568 case 0:
1569 goto add;
1570 case 1:
1571 goto or;
1572 case 2:
1573 goto adc;
1574 case 3:
1575 goto sbb;
1576 case 4:
1577 goto and;
1578 case 5:
1579 goto sub;
1580 case 6:
1581 goto xor;
1582 case 7:
1583 goto cmp;
1584 }
1585 break;
1586 case 0x84 ... 0x85:
Laurent Vivier05f086f2007-09-24 11:10:55 +02001587 emulate_2op_SrcV("test", c->src, c->dst, ctxt->eflags);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001588 break;
1589 case 0x86 ... 0x87: /* xchg */
Mohammed Gamalb13354f2008-06-15 19:37:38 +03001590 xchg:
Avi Kivity6aa8b732006-12-10 02:21:36 -08001591 /* Write back the register source. */
Laurent Viviere4e03de2007-09-18 11:52:50 +02001592 switch (c->dst.bytes) {
Avi Kivity6aa8b732006-12-10 02:21:36 -08001593 case 1:
Laurent Viviere4e03de2007-09-18 11:52:50 +02001594 *(u8 *) c->src.ptr = (u8) c->dst.val;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001595 break;
1596 case 2:
Laurent Viviere4e03de2007-09-18 11:52:50 +02001597 *(u16 *) c->src.ptr = (u16) c->dst.val;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001598 break;
1599 case 4:
Laurent Viviere4e03de2007-09-18 11:52:50 +02001600 *c->src.ptr = (u32) c->dst.val;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001601 break; /* 64b reg: zero-extend */
1602 case 8:
Laurent Viviere4e03de2007-09-18 11:52:50 +02001603 *c->src.ptr = c->dst.val;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001604 break;
1605 }
1606 /*
1607 * Write back the memory destination with implicit LOCK
1608 * prefix.
1609 */
Laurent Viviere4e03de2007-09-18 11:52:50 +02001610 c->dst.val = c->src.val;
1611 c->lock_prefix = 1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001612 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001613 case 0x88 ... 0x8b: /* mov */
Nitin A Kamble7de75242007-09-15 10:13:07 +03001614 goto mov;
Guillaume Thouvenin38d5bc62008-05-27 15:13:28 +02001615 case 0x8c: { /* mov r/m, sreg */
1616 struct kvm_segment segreg;
1617
1618 if (c->modrm_reg <= 5)
1619 kvm_get_segment(ctxt->vcpu, &segreg, c->modrm_reg);
1620 else {
1621 printk(KERN_INFO "0x8c: Invalid segreg in modrm byte 0x%02x\n",
1622 c->modrm);
1623 goto cannot_emulate;
1624 }
1625 c->dst.val = segreg.selector;
1626 break;
1627 }
Nitin A Kamble7e0b54b2007-09-15 10:35:36 +03001628 case 0x8d: /* lea r16/r32, m */
Avi Kivityf9b7aab2008-04-14 23:46:37 +03001629 c->dst.val = c->modrm_ea;
Nitin A Kamble7e0b54b2007-09-15 10:35:36 +03001630 break;
Guillaume Thouvenin42571982008-05-27 14:49:15 +02001631 case 0x8e: { /* mov seg, r/m16 */
1632 uint16_t sel;
1633 int type_bits;
1634 int err;
1635
1636 sel = c->src.val;
Glauber Costa310b5d32009-05-12 16:21:06 -04001637 if (c->modrm_reg == VCPU_SREG_SS)
1638 toggle_interruptibility(ctxt, X86_SHADOW_INT_MOV_SS);
1639
Guillaume Thouvenin42571982008-05-27 14:49:15 +02001640 if (c->modrm_reg <= 5) {
1641 type_bits = (c->modrm_reg == 1) ? 9 : 1;
1642 err = kvm_load_segment_descriptor(ctxt->vcpu, sel,
1643 type_bits, c->modrm_reg);
1644 } else {
1645 printk(KERN_INFO "Invalid segreg in modrm byte 0x%02x\n",
1646 c->modrm);
1647 goto cannot_emulate;
1648 }
1649
1650 if (err < 0)
1651 goto cannot_emulate;
1652
1653 c->dst.type = OP_NONE; /* Disable writeback. */
1654 break;
1655 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08001656 case 0x8f: /* pop (sole member of Grp1a) */
Laurent Vivier8cdbd2c2007-09-24 11:10:54 +02001657 rc = emulate_grp1a(ctxt, ops);
1658 if (rc != 0)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001659 goto done;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001660 break;
Mohammed Gamalb13354f2008-06-15 19:37:38 +03001661 case 0x90: /* nop / xchg r8,rax */
1662 if (!(c->rex_prefix & 1)) { /* nop */
1663 c->dst.type = OP_NONE;
1664 break;
1665 }
1666 case 0x91 ... 0x97: /* xchg reg,rax */
1667 c->src.type = c->dst.type = OP_REG;
1668 c->src.bytes = c->dst.bytes = c->op_bytes;
1669 c->src.ptr = (unsigned long *) &c->regs[VCPU_REGS_RAX];
1670 c->src.val = *(c->src.ptr);
1671 goto xchg;
Nitin A Kamblefd2a7602007-08-28 18:22:47 -07001672 case 0x9c: /* pushf */
Laurent Vivier05f086f2007-09-24 11:10:55 +02001673 c->src.val = (unsigned long) ctxt->eflags;
Laurent Vivier8cdbd2c2007-09-24 11:10:54 +02001674 emulate_push(ctxt);
1675 break;
Nitin A Kamble535eabc2007-09-15 10:45:05 +03001676 case 0x9d: /* popf */
Avi Kivity2b48cc72008-11-29 20:36:13 +02001677 c->dst.type = OP_REG;
Laurent Vivier05f086f2007-09-24 11:10:55 +02001678 c->dst.ptr = (unsigned long *) &ctxt->eflags;
Avi Kivity2b48cc72008-11-29 20:36:13 +02001679 c->dst.bytes = c->op_bytes;
Nitin A Kamble535eabc2007-09-15 10:45:05 +03001680 goto pop_instruction;
Avi Kivity018a98d2007-11-27 19:30:56 +02001681 case 0xa0 ... 0xa1: /* mov */
1682 c->dst.ptr = (unsigned long *)&c->regs[VCPU_REGS_RAX];
1683 c->dst.val = c->src.val;
1684 break;
1685 case 0xa2 ... 0xa3: /* mov */
1686 c->dst.val = (unsigned long)c->regs[VCPU_REGS_RAX];
1687 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001688 case 0xa4 ... 0xa5: /* movs */
Laurent Viviere4e03de2007-09-18 11:52:50 +02001689 c->dst.type = OP_MEM;
1690 c->dst.bytes = (c->d & ByteOp) ? 1 : c->op_bytes;
Harvey Harrisone4706772008-02-19 07:40:38 -08001691 c->dst.ptr = (unsigned long *)register_address(c,
Avi Kivity7a5b56d2008-06-22 16:22:51 +03001692 es_base(ctxt),
Laurent Viviere4e03de2007-09-18 11:52:50 +02001693 c->regs[VCPU_REGS_RDI]);
Harvey Harrisone4706772008-02-19 07:40:38 -08001694 if ((rc = ops->read_emulated(register_address(c,
Avi Kivity7a5b56d2008-06-22 16:22:51 +03001695 seg_override_base(ctxt, c),
Laurent Viviere4e03de2007-09-18 11:52:50 +02001696 c->regs[VCPU_REGS_RSI]),
1697 &c->dst.val,
1698 c->dst.bytes, ctxt->vcpu)) != 0)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001699 goto done;
Harvey Harrison7a9572752008-02-19 07:40:41 -08001700 register_address_increment(c, &c->regs[VCPU_REGS_RSI],
Laurent Vivier05f086f2007-09-24 11:10:55 +02001701 (ctxt->eflags & EFLG_DF) ? -c->dst.bytes
Laurent Viviere4e03de2007-09-18 11:52:50 +02001702 : c->dst.bytes);
Harvey Harrison7a9572752008-02-19 07:40:41 -08001703 register_address_increment(c, &c->regs[VCPU_REGS_RDI],
Laurent Vivier05f086f2007-09-24 11:10:55 +02001704 (ctxt->eflags & EFLG_DF) ? -c->dst.bytes
Laurent Viviere4e03de2007-09-18 11:52:50 +02001705 : c->dst.bytes);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001706 break;
1707 case 0xa6 ... 0xa7: /* cmps */
Guillaume Thouvenind7e51172007-11-26 13:49:09 +01001708 c->src.type = OP_NONE; /* Disable writeback. */
1709 c->src.bytes = (c->d & ByteOp) ? 1 : c->op_bytes;
Harvey Harrisone4706772008-02-19 07:40:38 -08001710 c->src.ptr = (unsigned long *)register_address(c,
Avi Kivity7a5b56d2008-06-22 16:22:51 +03001711 seg_override_base(ctxt, c),
Guillaume Thouvenind7e51172007-11-26 13:49:09 +01001712 c->regs[VCPU_REGS_RSI]);
1713 if ((rc = ops->read_emulated((unsigned long)c->src.ptr,
1714 &c->src.val,
1715 c->src.bytes,
1716 ctxt->vcpu)) != 0)
1717 goto done;
1718
1719 c->dst.type = OP_NONE; /* Disable writeback. */
1720 c->dst.bytes = (c->d & ByteOp) ? 1 : c->op_bytes;
Harvey Harrisone4706772008-02-19 07:40:38 -08001721 c->dst.ptr = (unsigned long *)register_address(c,
Avi Kivity7a5b56d2008-06-22 16:22:51 +03001722 es_base(ctxt),
Guillaume Thouvenind7e51172007-11-26 13:49:09 +01001723 c->regs[VCPU_REGS_RDI]);
1724 if ((rc = ops->read_emulated((unsigned long)c->dst.ptr,
1725 &c->dst.val,
1726 c->dst.bytes,
1727 ctxt->vcpu)) != 0)
1728 goto done;
1729
1730 DPRINTF("cmps: mem1=0x%p mem2=0x%p\n", c->src.ptr, c->dst.ptr);
1731
1732 emulate_2op_SrcV("cmp", c->src, c->dst, ctxt->eflags);
1733
Harvey Harrison7a9572752008-02-19 07:40:41 -08001734 register_address_increment(c, &c->regs[VCPU_REGS_RSI],
Guillaume Thouvenind7e51172007-11-26 13:49:09 +01001735 (ctxt->eflags & EFLG_DF) ? -c->src.bytes
1736 : c->src.bytes);
Harvey Harrison7a9572752008-02-19 07:40:41 -08001737 register_address_increment(c, &c->regs[VCPU_REGS_RDI],
Guillaume Thouvenind7e51172007-11-26 13:49:09 +01001738 (ctxt->eflags & EFLG_DF) ? -c->dst.bytes
1739 : c->dst.bytes);
1740
1741 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001742 case 0xaa ... 0xab: /* stos */
Laurent Viviere4e03de2007-09-18 11:52:50 +02001743 c->dst.type = OP_MEM;
1744 c->dst.bytes = (c->d & ByteOp) ? 1 : c->op_bytes;
Harvey Harrisone4706772008-02-19 07:40:38 -08001745 c->dst.ptr = (unsigned long *)register_address(c,
Avi Kivity7a5b56d2008-06-22 16:22:51 +03001746 es_base(ctxt),
Sheng Yanga7e6c882007-11-15 14:52:28 +08001747 c->regs[VCPU_REGS_RDI]);
Laurent Viviere4e03de2007-09-18 11:52:50 +02001748 c->dst.val = c->regs[VCPU_REGS_RAX];
Harvey Harrison7a9572752008-02-19 07:40:41 -08001749 register_address_increment(c, &c->regs[VCPU_REGS_RDI],
Laurent Vivier05f086f2007-09-24 11:10:55 +02001750 (ctxt->eflags & EFLG_DF) ? -c->dst.bytes
Laurent Viviere4e03de2007-09-18 11:52:50 +02001751 : c->dst.bytes);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001752 break;
1753 case 0xac ... 0xad: /* lods */
Laurent Viviere4e03de2007-09-18 11:52:50 +02001754 c->dst.type = OP_REG;
1755 c->dst.bytes = (c->d & ByteOp) ? 1 : c->op_bytes;
1756 c->dst.ptr = (unsigned long *)&c->regs[VCPU_REGS_RAX];
Harvey Harrisone4706772008-02-19 07:40:38 -08001757 if ((rc = ops->read_emulated(register_address(c,
Avi Kivity7a5b56d2008-06-22 16:22:51 +03001758 seg_override_base(ctxt, c),
Sheng Yanga7e6c882007-11-15 14:52:28 +08001759 c->regs[VCPU_REGS_RSI]),
1760 &c->dst.val,
1761 c->dst.bytes,
1762 ctxt->vcpu)) != 0)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001763 goto done;
Harvey Harrison7a9572752008-02-19 07:40:41 -08001764 register_address_increment(c, &c->regs[VCPU_REGS_RSI],
Laurent Vivier05f086f2007-09-24 11:10:55 +02001765 (ctxt->eflags & EFLG_DF) ? -c->dst.bytes
Laurent Viviere4e03de2007-09-18 11:52:50 +02001766 : c->dst.bytes);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001767 break;
1768 case 0xae ... 0xaf: /* scas */
1769 DPRINTF("Urk! I don't handle SCAS.\n");
1770 goto cannot_emulate;
Mohammed Gamala5e2e822008-08-27 05:02:56 +03001771 case 0xb0 ... 0xbf: /* mov r, imm */
Guillaume Thouvenin615ac122008-05-27 10:19:16 +02001772 goto mov;
Avi Kivity018a98d2007-11-27 19:30:56 +02001773 case 0xc0 ... 0xc1:
1774 emulate_grp2(ctxt);
1775 break;
Avi Kivity111de5d2007-11-27 19:14:21 +02001776 case 0xc3: /* ret */
Avi Kivitycf5de4f2008-11-28 00:14:07 +02001777 c->dst.type = OP_REG;
Avi Kivity111de5d2007-11-27 19:14:21 +02001778 c->dst.ptr = &c->eip;
Avi Kivitycf5de4f2008-11-28 00:14:07 +02001779 c->dst.bytes = c->op_bytes;
Avi Kivity111de5d2007-11-27 19:14:21 +02001780 goto pop_instruction;
Avi Kivity018a98d2007-11-27 19:30:56 +02001781 case 0xc6 ... 0xc7: /* mov (sole member of Grp11) */
1782 mov:
1783 c->dst.val = c->src.val;
1784 break;
Avi Kivitya77ab5e2009-01-05 13:27:34 +02001785 case 0xcb: /* ret far */
1786 rc = emulate_ret_far(ctxt, ops);
1787 if (rc)
1788 goto done;
1789 break;
Avi Kivity018a98d2007-11-27 19:30:56 +02001790 case 0xd0 ... 0xd1: /* Grp2 */
1791 c->src.val = 1;
1792 emulate_grp2(ctxt);
1793 break;
1794 case 0xd2 ... 0xd3: /* Grp2 */
1795 c->src.val = c->regs[VCPU_REGS_RCX];
1796 emulate_grp2(ctxt);
1797 break;
Mohammed Gamala6a30342008-09-06 17:22:29 +03001798 case 0xe4: /* inb */
1799 case 0xe5: /* in */
Gleb Natapov84ce66a2009-04-12 13:36:46 +03001800 port = c->src.val;
Mohammed Gamala6a30342008-09-06 17:22:29 +03001801 io_dir_in = 1;
1802 goto do_io;
1803 case 0xe6: /* outb */
1804 case 0xe7: /* out */
Gleb Natapov84ce66a2009-04-12 13:36:46 +03001805 port = c->src.val;
Mohammed Gamala6a30342008-09-06 17:22:29 +03001806 io_dir_in = 0;
1807 goto do_io;
Nitin A Kamble1a52e052007-09-18 16:34:25 -07001808 case 0xe8: /* call (near) */ {
Gleb Natapovd53c4772009-04-12 13:36:36 +03001809 long int rel = c->src.val;
Laurent Viviere4e03de2007-09-18 11:52:50 +02001810 c->src.val = (unsigned long) c->eip;
Harvey Harrison7a9572752008-02-19 07:40:41 -08001811 jmp_rel(c, rel);
Laurent Vivier8cdbd2c2007-09-24 11:10:54 +02001812 emulate_push(ctxt);
1813 break;
Nitin A Kamble1a52e052007-09-18 16:34:25 -07001814 }
1815 case 0xe9: /* jmp rel */
Guillaume Thouvenin954cd362008-05-27 10:19:08 +02001816 goto jmp;
Gleb Natapov782b8772009-04-12 13:36:25 +03001817 case 0xea: /* jmp far */
1818 if (kvm_load_segment_descriptor(ctxt->vcpu, c->src2.val, 9,
1819 VCPU_SREG_CS) < 0) {
Guillaume Thouvenin954cd362008-05-27 10:19:08 +02001820 DPRINTF("jmp far: Failed to load CS descriptor\n");
1821 goto cannot_emulate;
1822 }
1823
Gleb Natapov782b8772009-04-12 13:36:25 +03001824 c->eip = c->src.val;
Guillaume Thouvenin954cd362008-05-27 10:19:08 +02001825 break;
Guillaume Thouvenin954cd362008-05-27 10:19:08 +02001826 case 0xeb:
1827 jmp: /* jmp rel short */
Harvey Harrison7a9572752008-02-19 07:40:41 -08001828 jmp_rel(c, c->src.val);
Laurent Viviera01af5e2007-09-24 11:10:56 +02001829 c->dst.type = OP_NONE; /* Disable writeback. */
Nitin A Kamble1a52e052007-09-18 16:34:25 -07001830 break;
Mohammed Gamala6a30342008-09-06 17:22:29 +03001831 case 0xec: /* in al,dx */
1832 case 0xed: /* in (e/r)ax,dx */
1833 port = c->regs[VCPU_REGS_RDX];
1834 io_dir_in = 1;
1835 goto do_io;
1836 case 0xee: /* out al,dx */
1837 case 0xef: /* out (e/r)ax,dx */
1838 port = c->regs[VCPU_REGS_RDX];
1839 io_dir_in = 0;
1840 do_io: if (kvm_emulate_pio(ctxt->vcpu, NULL, io_dir_in,
1841 (c->d & ByteOp) ? 1 : c->op_bytes,
1842 port) != 0) {
1843 c->eip = saved_eip;
1844 goto cannot_emulate;
1845 }
Guillaume Thouvenine93f36b2008-10-28 10:51:30 +01001846 break;
Avi Kivity111de5d2007-11-27 19:14:21 +02001847 case 0xf4: /* hlt */
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001848 ctxt->vcpu->arch.halt_request = 1;
Mohammed Gamal19fdfa02008-07-06 16:51:26 +03001849 break;
Avi Kivity111de5d2007-11-27 19:14:21 +02001850 case 0xf5: /* cmc */
1851 /* complement carry flag from eflags reg */
1852 ctxt->eflags ^= EFLG_CF;
1853 c->dst.type = OP_NONE; /* Disable writeback. */
1854 break;
Avi Kivity018a98d2007-11-27 19:30:56 +02001855 case 0xf6 ... 0xf7: /* Grp3 */
1856 rc = emulate_grp3(ctxt, ops);
1857 if (rc != 0)
1858 goto done;
1859 break;
Avi Kivity111de5d2007-11-27 19:14:21 +02001860 case 0xf8: /* clc */
1861 ctxt->eflags &= ~EFLG_CF;
1862 c->dst.type = OP_NONE; /* Disable writeback. */
1863 break;
1864 case 0xfa: /* cli */
1865 ctxt->eflags &= ~X86_EFLAGS_IF;
1866 c->dst.type = OP_NONE; /* Disable writeback. */
1867 break;
1868 case 0xfb: /* sti */
Glauber Costa310b5d32009-05-12 16:21:06 -04001869 toggle_interruptibility(ctxt, X86_SHADOW_INT_STI);
Avi Kivity111de5d2007-11-27 19:14:21 +02001870 ctxt->eflags |= X86_EFLAGS_IF;
1871 c->dst.type = OP_NONE; /* Disable writeback. */
1872 break;
Mohammed Gamalfb4616f2008-09-01 04:52:24 +03001873 case 0xfc: /* cld */
1874 ctxt->eflags &= ~EFLG_DF;
1875 c->dst.type = OP_NONE; /* Disable writeback. */
1876 break;
1877 case 0xfd: /* std */
1878 ctxt->eflags |= EFLG_DF;
1879 c->dst.type = OP_NONE; /* Disable writeback. */
1880 break;
Avi Kivity018a98d2007-11-27 19:30:56 +02001881 case 0xfe ... 0xff: /* Grp4/Grp5 */
1882 rc = emulate_grp45(ctxt, ops);
1883 if (rc != 0)
1884 goto done;
1885 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001886 }
Avi Kivity018a98d2007-11-27 19:30:56 +02001887
1888writeback:
1889 rc = writeback(ctxt, ops);
1890 if (rc != 0)
1891 goto done;
1892
1893 /* Commit shadow register state. */
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001894 memcpy(ctxt->vcpu->arch.regs, c->regs, sizeof c->regs);
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03001895 kvm_rip_write(ctxt->vcpu, c->eip);
Avi Kivity018a98d2007-11-27 19:30:56 +02001896
1897done:
1898 if (rc == X86EMUL_UNHANDLEABLE) {
1899 c->eip = saved_eip;
1900 return -1;
1901 }
1902 return 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001903
1904twobyte_insn:
Laurent Viviere4e03de2007-09-18 11:52:50 +02001905 switch (c->b) {
Avi Kivity6aa8b732006-12-10 02:21:36 -08001906 case 0x01: /* lgdt, lidt, lmsw */
Laurent Viviere4e03de2007-09-18 11:52:50 +02001907 switch (c->modrm_reg) {
Avi Kivity6aa8b732006-12-10 02:21:36 -08001908 u16 size;
1909 unsigned long address;
1910
Anthony Liguoriaca7f962007-09-17 14:57:49 -05001911 case 0: /* vmcall */
Laurent Viviere4e03de2007-09-18 11:52:50 +02001912 if (c->modrm_mod != 3 || c->modrm_rm != 1)
Anthony Liguoriaca7f962007-09-17 14:57:49 -05001913 goto cannot_emulate;
1914
Anthony Liguori7aa81cc2007-09-17 14:57:50 -05001915 rc = kvm_fix_hypercall(ctxt->vcpu);
1916 if (rc)
1917 goto done;
1918
Avi Kivity33e38852008-05-21 15:34:25 +03001919 /* Let the processor re-execute the fixed hypercall */
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03001920 c->eip = kvm_rip_read(ctxt->vcpu);
Avi Kivity16286d02008-04-14 14:40:50 +03001921 /* Disable writeback. */
1922 c->dst.type = OP_NONE;
Anthony Liguoriaca7f962007-09-17 14:57:49 -05001923 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001924 case 2: /* lgdt */
Laurent Viviere4e03de2007-09-18 11:52:50 +02001925 rc = read_descriptor(ctxt, ops, c->src.ptr,
1926 &size, &address, c->op_bytes);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001927 if (rc)
1928 goto done;
1929 realmode_lgdt(ctxt->vcpu, size, address);
Avi Kivity16286d02008-04-14 14:40:50 +03001930 /* Disable writeback. */
1931 c->dst.type = OP_NONE;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001932 break;
Anthony Liguoriaca7f962007-09-17 14:57:49 -05001933 case 3: /* lidt/vmmcall */
Avi Kivity2b3d2a22008-12-23 19:46:01 +02001934 if (c->modrm_mod == 3) {
1935 switch (c->modrm_rm) {
1936 case 1:
1937 rc = kvm_fix_hypercall(ctxt->vcpu);
1938 if (rc)
1939 goto done;
1940 break;
1941 default:
1942 goto cannot_emulate;
1943 }
Anthony Liguoriaca7f962007-09-17 14:57:49 -05001944 } else {
Laurent Viviere4e03de2007-09-18 11:52:50 +02001945 rc = read_descriptor(ctxt, ops, c->src.ptr,
Anthony Liguoriaca7f962007-09-17 14:57:49 -05001946 &size, &address,
Laurent Viviere4e03de2007-09-18 11:52:50 +02001947 c->op_bytes);
Anthony Liguoriaca7f962007-09-17 14:57:49 -05001948 if (rc)
1949 goto done;
1950 realmode_lidt(ctxt->vcpu, size, address);
1951 }
Avi Kivity16286d02008-04-14 14:40:50 +03001952 /* Disable writeback. */
1953 c->dst.type = OP_NONE;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001954 break;
1955 case 4: /* smsw */
Avi Kivity16286d02008-04-14 14:40:50 +03001956 c->dst.bytes = 2;
1957 c->dst.val = realmode_get_cr(ctxt->vcpu, 0);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001958 break;
1959 case 6: /* lmsw */
Avi Kivity16286d02008-04-14 14:40:50 +03001960 realmode_lmsw(ctxt->vcpu, (u16)c->src.val,
1961 &ctxt->eflags);
Avi Kivitydc7457e2008-04-30 16:13:36 +03001962 c->dst.type = OP_NONE;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001963 break;
1964 case 7: /* invlpg*/
Sheng Yange8d8d7f2007-11-16 16:29:15 +08001965 emulate_invlpg(ctxt->vcpu, memop);
Avi Kivity16286d02008-04-14 14:40:50 +03001966 /* Disable writeback. */
1967 c->dst.type = OP_NONE;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001968 break;
1969 default:
1970 goto cannot_emulate;
1971 }
1972 break;
Avi Kivity018a98d2007-11-27 19:30:56 +02001973 case 0x06:
1974 emulate_clts(ctxt->vcpu);
1975 c->dst.type = OP_NONE;
1976 break;
1977 case 0x08: /* invd */
1978 case 0x09: /* wbinvd */
1979 case 0x0d: /* GrpP (prefetch) */
1980 case 0x18: /* Grp16 (prefetch/nop) */
1981 c->dst.type = OP_NONE;
1982 break;
1983 case 0x20: /* mov cr, reg */
1984 if (c->modrm_mod != 3)
1985 goto cannot_emulate;
1986 c->regs[c->modrm_rm] =
1987 realmode_get_cr(ctxt->vcpu, c->modrm_reg);
1988 c->dst.type = OP_NONE; /* no writeback */
1989 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001990 case 0x21: /* mov from dr to reg */
Laurent Viviere4e03de2007-09-18 11:52:50 +02001991 if (c->modrm_mod != 3)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001992 goto cannot_emulate;
Laurent Vivier8cdbd2c2007-09-24 11:10:54 +02001993 rc = emulator_get_dr(ctxt, c->modrm_reg, &c->regs[c->modrm_rm]);
Laurent Viviera01af5e2007-09-24 11:10:56 +02001994 if (rc)
1995 goto cannot_emulate;
1996 c->dst.type = OP_NONE; /* no writeback */
Avi Kivity6aa8b732006-12-10 02:21:36 -08001997 break;
Avi Kivity018a98d2007-11-27 19:30:56 +02001998 case 0x22: /* mov reg, cr */
1999 if (c->modrm_mod != 3)
2000 goto cannot_emulate;
2001 realmode_set_cr(ctxt->vcpu,
2002 c->modrm_reg, c->modrm_val, &ctxt->eflags);
2003 c->dst.type = OP_NONE;
2004 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002005 case 0x23: /* mov from reg to dr */
Laurent Viviere4e03de2007-09-18 11:52:50 +02002006 if (c->modrm_mod != 3)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002007 goto cannot_emulate;
Laurent Viviere4e03de2007-09-18 11:52:50 +02002008 rc = emulator_set_dr(ctxt, c->modrm_reg,
2009 c->regs[c->modrm_rm]);
Laurent Viviera01af5e2007-09-24 11:10:56 +02002010 if (rc)
2011 goto cannot_emulate;
2012 c->dst.type = OP_NONE; /* no writeback */
Avi Kivity6aa8b732006-12-10 02:21:36 -08002013 break;
Avi Kivity018a98d2007-11-27 19:30:56 +02002014 case 0x30:
2015 /* wrmsr */
2016 msr_data = (u32)c->regs[VCPU_REGS_RAX]
2017 | ((u64)c->regs[VCPU_REGS_RDX] << 32);
2018 rc = kvm_set_msr(ctxt->vcpu, c->regs[VCPU_REGS_RCX], msr_data);
2019 if (rc) {
Avi Kivityc1a5d4f2007-11-25 14:12:03 +02002020 kvm_inject_gp(ctxt->vcpu, 0);
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03002021 c->eip = kvm_rip_read(ctxt->vcpu);
Avi Kivity018a98d2007-11-27 19:30:56 +02002022 }
2023 rc = X86EMUL_CONTINUE;
2024 c->dst.type = OP_NONE;
2025 break;
2026 case 0x32:
2027 /* rdmsr */
2028 rc = kvm_get_msr(ctxt->vcpu, c->regs[VCPU_REGS_RCX], &msr_data);
2029 if (rc) {
Avi Kivityc1a5d4f2007-11-25 14:12:03 +02002030 kvm_inject_gp(ctxt->vcpu, 0);
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03002031 c->eip = kvm_rip_read(ctxt->vcpu);
Avi Kivity018a98d2007-11-27 19:30:56 +02002032 } else {
2033 c->regs[VCPU_REGS_RAX] = (u32)msr_data;
2034 c->regs[VCPU_REGS_RDX] = msr_data >> 32;
2035 }
2036 rc = X86EMUL_CONTINUE;
2037 c->dst.type = OP_NONE;
2038 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002039 case 0x40 ... 0x4f: /* cmov */
Laurent Viviere4e03de2007-09-18 11:52:50 +02002040 c->dst.val = c->dst.orig_val = c->src.val;
Laurent Viviera01af5e2007-09-24 11:10:56 +02002041 if (!test_cc(c->b, ctxt->eflags))
2042 c->dst.type = OP_NONE; /* no writeback */
Avi Kivity6aa8b732006-12-10 02:21:36 -08002043 break;
Gleb Natapovb2833e32009-04-12 13:36:30 +03002044 case 0x80 ... 0x8f: /* jnz rel, etc*/
Avi Kivity018a98d2007-11-27 19:30:56 +02002045 if (test_cc(c->b, ctxt->eflags))
Gleb Natapovb2833e32009-04-12 13:36:30 +03002046 jmp_rel(c, c->src.val);
Avi Kivity018a98d2007-11-27 19:30:56 +02002047 c->dst.type = OP_NONE;
2048 break;
Nitin A Kamble7de75242007-09-15 10:13:07 +03002049 case 0xa3:
2050 bt: /* bt */
Qing Hee4f8e032007-09-24 17:22:13 +08002051 c->dst.type = OP_NONE;
Laurent Viviere4e03de2007-09-18 11:52:50 +02002052 /* only subword offset */
2053 c->src.val &= (c->dst.bytes << 3) - 1;
Laurent Vivier05f086f2007-09-24 11:10:55 +02002054 emulate_2op_SrcV_nobyte("bt", c->src, c->dst, ctxt->eflags);
Nitin A Kamble7de75242007-09-15 10:13:07 +03002055 break;
Guillaume Thouvenin9bf8ea42008-12-04 14:30:13 +01002056 case 0xa4: /* shld imm8, r, r/m */
2057 case 0xa5: /* shld cl, r, r/m */
2058 emulate_2op_cl("shld", c->src2, c->src, c->dst, ctxt->eflags);
2059 break;
Nitin A Kamble7de75242007-09-15 10:13:07 +03002060 case 0xab:
2061 bts: /* bts */
Laurent Viviere4e03de2007-09-18 11:52:50 +02002062 /* only subword offset */
2063 c->src.val &= (c->dst.bytes << 3) - 1;
Laurent Vivier05f086f2007-09-24 11:10:55 +02002064 emulate_2op_SrcV_nobyte("bts", c->src, c->dst, ctxt->eflags);
Nitin A Kamble7de75242007-09-15 10:13:07 +03002065 break;
Guillaume Thouvenin9bf8ea42008-12-04 14:30:13 +01002066 case 0xac: /* shrd imm8, r, r/m */
2067 case 0xad: /* shrd cl, r, r/m */
2068 emulate_2op_cl("shrd", c->src2, c->src, c->dst, ctxt->eflags);
2069 break;
Glauber Costa2a7c5b82008-07-10 17:08:15 -03002070 case 0xae: /* clflush */
2071 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002072 case 0xb0 ... 0xb1: /* cmpxchg */
2073 /*
2074 * Save real source value, then compare EAX against
2075 * destination.
2076 */
Laurent Viviere4e03de2007-09-18 11:52:50 +02002077 c->src.orig_val = c->src.val;
2078 c->src.val = c->regs[VCPU_REGS_RAX];
Laurent Vivier05f086f2007-09-24 11:10:55 +02002079 emulate_2op_SrcV("cmp", c->src, c->dst, ctxt->eflags);
2080 if (ctxt->eflags & EFLG_ZF) {
Avi Kivity6aa8b732006-12-10 02:21:36 -08002081 /* Success: write back to memory. */
Laurent Viviere4e03de2007-09-18 11:52:50 +02002082 c->dst.val = c->src.orig_val;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002083 } else {
2084 /* Failure: write the value we saw to EAX. */
Laurent Viviere4e03de2007-09-18 11:52:50 +02002085 c->dst.type = OP_REG;
2086 c->dst.ptr = (unsigned long *)&c->regs[VCPU_REGS_RAX];
Avi Kivity6aa8b732006-12-10 02:21:36 -08002087 }
2088 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002089 case 0xb3:
2090 btr: /* btr */
Laurent Viviere4e03de2007-09-18 11:52:50 +02002091 /* only subword offset */
2092 c->src.val &= (c->dst.bytes << 3) - 1;
Laurent Vivier05f086f2007-09-24 11:10:55 +02002093 emulate_2op_SrcV_nobyte("btr", c->src, c->dst, ctxt->eflags);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002094 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002095 case 0xb6 ... 0xb7: /* movzx */
Laurent Viviere4e03de2007-09-18 11:52:50 +02002096 c->dst.bytes = c->op_bytes;
2097 c->dst.val = (c->d & ByteOp) ? (u8) c->src.val
2098 : (u16) c->src.val;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002099 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002100 case 0xba: /* Grp8 */
Laurent Viviere4e03de2007-09-18 11:52:50 +02002101 switch (c->modrm_reg & 3) {
Avi Kivity6aa8b732006-12-10 02:21:36 -08002102 case 0:
2103 goto bt;
2104 case 1:
2105 goto bts;
2106 case 2:
2107 goto btr;
2108 case 3:
2109 goto btc;
2110 }
2111 break;
Nitin A Kamble7de75242007-09-15 10:13:07 +03002112 case 0xbb:
2113 btc: /* btc */
Laurent Viviere4e03de2007-09-18 11:52:50 +02002114 /* only subword offset */
2115 c->src.val &= (c->dst.bytes << 3) - 1;
Laurent Vivier05f086f2007-09-24 11:10:55 +02002116 emulate_2op_SrcV_nobyte("btc", c->src, c->dst, ctxt->eflags);
Nitin A Kamble7de75242007-09-15 10:13:07 +03002117 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002118 case 0xbe ... 0xbf: /* movsx */
Laurent Viviere4e03de2007-09-18 11:52:50 +02002119 c->dst.bytes = c->op_bytes;
2120 c->dst.val = (c->d & ByteOp) ? (s8) c->src.val :
2121 (s16) c->src.val;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002122 break;
Sheng Yanga012e652007-10-15 14:24:20 +08002123 case 0xc3: /* movnti */
Laurent Viviere4e03de2007-09-18 11:52:50 +02002124 c->dst.bytes = c->op_bytes;
2125 c->dst.val = (c->op_bytes == 4) ? (u32) c->src.val :
2126 (u64) c->src.val;
Sheng Yanga012e652007-10-15 14:24:20 +08002127 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002128 case 0xc7: /* Grp9 (cmpxchg8b) */
Sheng Yange8d8d7f2007-11-16 16:29:15 +08002129 rc = emulate_grp9(ctxt, ops, memop);
Laurent Vivier8cdbd2c2007-09-24 11:10:54 +02002130 if (rc != 0)
2131 goto done;
Avi Kivity018a98d2007-11-27 19:30:56 +02002132 c->dst.type = OP_NONE;
Laurent Vivier8cdbd2c2007-09-24 11:10:54 +02002133 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002134 }
2135 goto writeback;
2136
2137cannot_emulate:
Laurent Viviere4e03de2007-09-18 11:52:50 +02002138 DPRINTF("Cannot emulate %02x\n", c->b);
Laurent Vivier34273182007-09-18 11:27:37 +02002139 c->eip = saved_eip;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002140 return -1;
2141}