x86_emulate.c 54.0 KB
Newer Older
A
Avi Kivity 已提交
1 2 3 4 5 6 7 8
/******************************************************************************
 * x86_emulate.c
 *
 * Generic x86 (32-bit and 64-bit) instruction decoder and emulator.
 *
 * Copyright (c) 2005 Keir Fraser
 *
 * Linux coding style, mod r/m decoder, segment base fixes, real-mode
9
 * privileged instructions:
A
Avi Kivity 已提交
10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25
 *
 * Copyright (C) 2006 Qumranet
 *
 *   Avi Kivity <avi@qumranet.com>
 *   Yaniv Kamay <yaniv@qumranet.com>
 *
 * This work is licensed under the terms of the GNU GPL, version 2.  See
 * the COPYING file in the top-level directory.
 *
 * From: xen-unstable 10676:af9809f51f81a3c43f276f00c81a52ef558afda4
 */

#ifndef __KERNEL__
#include <stdio.h>
#include <stdint.h>
#include <public/xen.h>
M
Mike Day 已提交
26
#define DPRINTF(_f, _a ...) printf(_f , ## _a)
A
Avi Kivity 已提交
27
#else
28
#include <linux/kvm_host.h>
A
Avi Kivity 已提交
29 30 31
#define DPRINTF(x...) do {} while (0)
#endif
#include <linux/module.h>
32
#include <asm/kvm_x86_emulate.h>
A
Avi Kivity 已提交
33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63

/*
 * Opcode effective-address decode tables.
 * Note that we only emulate instructions that have at least one memory
 * operand (excluding implicit stack references). We assume that stack
 * references and instruction fetches will never occur in special memory
 * areas that require emulation. So, for example, 'mov <imm>,<reg>' need
 * not be handled.
 */

/* Operand sizes: 8-bit operands or specified/overridden size. */
#define ByteOp      (1<<0)	/* 8-bit operands. */
/* Destination operand type. */
#define ImplicitOps (1<<1)	/* Implicit in opcode. No generic decode. */
#define DstReg      (2<<1)	/* Register operand. */
#define DstMem      (3<<1)	/* Memory operand. */
#define DstMask     (3<<1)
/* Source operand type. */
#define SrcNone     (0<<3)	/* No source operand. */
#define SrcImplicit (0<<3)	/* Source operand is implicit in the opcode. */
#define SrcReg      (1<<3)	/* Register operand. */
#define SrcMem      (2<<3)	/* Memory operand. */
#define SrcMem16    (3<<3)	/* Memory operand (16-bit). */
#define SrcMem32    (4<<3)	/* Memory operand (32-bit). */
#define SrcImm      (5<<3)	/* Immediate operand. */
#define SrcImmByte  (6<<3)	/* 8-bit sign-extended immediate operand. */
#define SrcMask     (7<<3)
/* Generic ModRM decode. */
#define ModRM       (1<<6)
/* Destination is only written; never read. */
#define Mov         (1<<7)
64
#define BitOp       (1<<8)
65
#define MemAbs      (1<<9)      /* Memory operand is absolute displacement */
66
#define String      (1<<10)     /* String instruction (rep capable) */
67
#define Stack       (1<<11)     /* Stack instruction (push/pop) */
68 69 70
#define Group       (1<<14)     /* Bits 3:5 of modrm byte extend opcode */
#define GroupDual   (1<<15)     /* Alternate decoding of mod == 3 */
#define GroupMask   0xff        /* Group number stored in bits 0:7 */
A
Avi Kivity 已提交
71

72
enum {
73
	Group1_80, Group1_81, Group1_82, Group1_83,
74
	Group1A, Group3_Byte, Group3, Group4, Group5, Group7,
75 76
};

77
static u16 opcode_table[256] = {
A
Avi Kivity 已提交
78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96
	/* 0x00 - 0x07 */
	ByteOp | DstMem | SrcReg | ModRM, DstMem | SrcReg | ModRM,
	ByteOp | DstReg | SrcMem | ModRM, DstReg | SrcMem | ModRM,
	0, 0, 0, 0,
	/* 0x08 - 0x0F */
	ByteOp | DstMem | SrcReg | ModRM, DstMem | SrcReg | ModRM,
	ByteOp | DstReg | SrcMem | ModRM, DstReg | SrcMem | ModRM,
	0, 0, 0, 0,
	/* 0x10 - 0x17 */
	ByteOp | DstMem | SrcReg | ModRM, DstMem | SrcReg | ModRM,
	ByteOp | DstReg | SrcMem | ModRM, DstReg | SrcMem | ModRM,
	0, 0, 0, 0,
	/* 0x18 - 0x1F */
	ByteOp | DstMem | SrcReg | ModRM, DstMem | SrcReg | ModRM,
	ByteOp | DstReg | SrcMem | ModRM, DstReg | SrcMem | ModRM,
	0, 0, 0, 0,
	/* 0x20 - 0x27 */
	ByteOp | DstMem | SrcReg | ModRM, DstMem | SrcReg | ModRM,
	ByteOp | DstReg | SrcMem | ModRM, DstReg | SrcMem | ModRM,
97
	SrcImmByte, SrcImm, 0, 0,
A
Avi Kivity 已提交
98 99 100 101 102 103 104 105 106 107 108 109
	/* 0x28 - 0x2F */
	ByteOp | DstMem | SrcReg | ModRM, DstMem | SrcReg | ModRM,
	ByteOp | DstReg | SrcMem | ModRM, DstReg | SrcMem | ModRM,
	0, 0, 0, 0,
	/* 0x30 - 0x37 */
	ByteOp | DstMem | SrcReg | ModRM, DstMem | SrcReg | ModRM,
	ByteOp | DstReg | SrcMem | ModRM, DstReg | SrcMem | ModRM,
	0, 0, 0, 0,
	/* 0x38 - 0x3F */
	ByteOp | DstMem | SrcReg | ModRM, DstMem | SrcReg | ModRM,
	ByteOp | DstReg | SrcMem | ModRM, DstReg | SrcMem | ModRM,
	0, 0, 0, 0,
110
	/* 0x40 - 0x47 */
111
	DstReg, DstReg, DstReg, DstReg, DstReg, DstReg, DstReg, DstReg,
112
	/* 0x48 - 0x4F */
113
	DstReg, DstReg, DstReg, DstReg,	DstReg, DstReg, DstReg, DstReg,
114
	/* 0x50 - 0x57 */
115 116
	SrcReg | Stack, SrcReg | Stack, SrcReg | Stack, SrcReg | Stack,
	SrcReg | Stack, SrcReg | Stack, SrcReg | Stack, SrcReg | Stack,
117
	/* 0x58 - 0x5F */
118 119
	DstReg | Stack, DstReg | Stack, DstReg | Stack, DstReg | Stack,
	DstReg | Stack, DstReg | Stack, DstReg | Stack, DstReg | Stack,
N
Nitin A Kamble 已提交
120
	/* 0x60 - 0x67 */
A
Avi Kivity 已提交
121
	0, 0, 0, DstReg | SrcMem32 | ModRM | Mov /* movsxd (x86/64) */ ,
N
Nitin A Kamble 已提交
122 123
	0, 0, 0, 0,
	/* 0x68 - 0x6F */
124
	SrcImm | Mov | Stack, 0, SrcImmByte | Mov | Stack, 0,
125 126
	SrcNone  | ByteOp  | ImplicitOps, SrcNone  | ImplicitOps, /* insb, insw/insd */
	SrcNone  | ByteOp  | ImplicitOps, SrcNone  | ImplicitOps, /* outsb, outsw/outsd */
127 128 129 130 131 132
	/* 0x70 - 0x77 */
	ImplicitOps, ImplicitOps, ImplicitOps, ImplicitOps,
	ImplicitOps, ImplicitOps, ImplicitOps, ImplicitOps,
	/* 0x78 - 0x7F */
	ImplicitOps, ImplicitOps, ImplicitOps, ImplicitOps,
	ImplicitOps, ImplicitOps, ImplicitOps, ImplicitOps,
A
Avi Kivity 已提交
133
	/* 0x80 - 0x87 */
134 135
	Group | Group1_80, Group | Group1_81,
	Group | Group1_82, Group | Group1_83,
A
Avi Kivity 已提交
136 137 138 139 140
	ByteOp | DstMem | SrcReg | ModRM, DstMem | SrcReg | ModRM,
	ByteOp | DstMem | SrcReg | ModRM, DstMem | SrcReg | ModRM,
	/* 0x88 - 0x8F */
	ByteOp | DstMem | SrcReg | ModRM | Mov, DstMem | SrcReg | ModRM | Mov,
	ByteOp | DstReg | SrcMem | ModRM | Mov, DstReg | SrcMem | ModRM | Mov,
141
	DstMem | SrcReg | ModRM | Mov, ModRM | DstReg,
142
	DstReg | SrcMem | ModRM | Mov, Group | Group1A,
143 144 145
	/* 0x90 - 0x97 */
	DstReg, DstReg, DstReg, DstReg,	DstReg, DstReg, DstReg, DstReg,
	/* 0x98 - 0x9F */
146
	0, 0, 0, 0, ImplicitOps | Stack, ImplicitOps | Stack, 0, 0,
A
Avi Kivity 已提交
147
	/* 0xA0 - 0xA7 */
148 149
	ByteOp | DstReg | SrcMem | Mov | MemAbs, DstReg | SrcMem | Mov | MemAbs,
	ByteOp | DstMem | SrcReg | Mov | MemAbs, DstMem | SrcReg | Mov | MemAbs,
150 151
	ByteOp | ImplicitOps | Mov | String, ImplicitOps | Mov | String,
	ByteOp | ImplicitOps | String, ImplicitOps | String,
A
Avi Kivity 已提交
152
	/* 0xA8 - 0xAF */
153 154 155
	0, 0, ByteOp | ImplicitOps | Mov | String, ImplicitOps | Mov | String,
	ByteOp | ImplicitOps | Mov | String, ImplicitOps | Mov | String,
	ByteOp | ImplicitOps | String, ImplicitOps | String,
A
Avi Kivity 已提交
156
	/* 0xB0 - 0xBF */
157 158
	0, 0, 0, 0, 0, 0, 0, 0,
	DstReg | SrcImm | Mov, 0, 0, 0, 0, 0, 0, 0,
A
Avi Kivity 已提交
159
	/* 0xC0 - 0xC7 */
160
	ByteOp | DstMem | SrcImm | ModRM, DstMem | SrcImmByte | ModRM,
161
	0, ImplicitOps | Stack, 0, 0,
162
	ByteOp | DstMem | SrcImm | ModRM | Mov, DstMem | SrcImm | ModRM | Mov,
A
Avi Kivity 已提交
163 164 165 166 167 168 169 170
	/* 0xC8 - 0xCF */
	0, 0, 0, 0, 0, 0, 0, 0,
	/* 0xD0 - 0xD7 */
	ByteOp | DstMem | SrcImplicit | ModRM, DstMem | SrcImplicit | ModRM,
	ByteOp | DstMem | SrcImplicit | ModRM, DstMem | SrcImplicit | ModRM,
	0, 0, 0, 0,
	/* 0xD8 - 0xDF */
	0, 0, 0, 0, 0, 0, 0, 0,
171 172 173
	/* 0xE0 - 0xE7 */
	0, 0, 0, 0, 0, 0, 0, 0,
	/* 0xE8 - 0xEF */
174 175
	ImplicitOps | Stack, SrcImm | ImplicitOps,
	ImplicitOps, SrcImmByte | ImplicitOps,
176
	0, 0, 0, 0,
A
Avi Kivity 已提交
177 178
	/* 0xF0 - 0xF7 */
	0, 0, 0, 0,
179
	ImplicitOps, ImplicitOps, Group | Group3_Byte, Group | Group3,
A
Avi Kivity 已提交
180
	/* 0xF8 - 0xFF */
181
	ImplicitOps, 0, ImplicitOps, ImplicitOps,
182
	0, 0, Group | Group4, Group | Group5,
A
Avi Kivity 已提交
183 184
};

185
static u16 twobyte_table[256] = {
A
Avi Kivity 已提交
186
	/* 0x00 - 0x0F */
187
	0, Group | GroupDual | Group7, 0, 0, 0, 0, ImplicitOps, 0,
A
Avi Kivity 已提交
188
	ImplicitOps, ImplicitOps, 0, 0, 0, ImplicitOps | ModRM, 0, 0,
A
Avi Kivity 已提交
189 190 191 192 193 194
	/* 0x10 - 0x1F */
	0, 0, 0, 0, 0, 0, 0, 0, ImplicitOps | ModRM, 0, 0, 0, 0, 0, 0, 0,
	/* 0x20 - 0x2F */
	ModRM | ImplicitOps, ModRM, ModRM | ImplicitOps, ModRM, 0, 0, 0, 0,
	0, 0, 0, 0, 0, 0, 0, 0,
	/* 0x30 - 0x3F */
195
	ImplicitOps, 0, ImplicitOps, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
A
Avi Kivity 已提交
196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212
	/* 0x40 - 0x47 */
	DstReg | SrcMem | ModRM | Mov, DstReg | SrcMem | ModRM | Mov,
	DstReg | SrcMem | ModRM | Mov, DstReg | SrcMem | ModRM | Mov,
	DstReg | SrcMem | ModRM | Mov, DstReg | SrcMem | ModRM | Mov,
	DstReg | SrcMem | ModRM | Mov, DstReg | SrcMem | ModRM | Mov,
	/* 0x48 - 0x4F */
	DstReg | SrcMem | ModRM | Mov, DstReg | SrcMem | ModRM | Mov,
	DstReg | SrcMem | ModRM | Mov, DstReg | SrcMem | ModRM | Mov,
	DstReg | SrcMem | ModRM | Mov, DstReg | SrcMem | ModRM | Mov,
	DstReg | SrcMem | ModRM | Mov, DstReg | SrcMem | ModRM | Mov,
	/* 0x50 - 0x5F */
	0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
	/* 0x60 - 0x6F */
	0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
	/* 0x70 - 0x7F */
	0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
	/* 0x80 - 0x8F */
213 214 215 216
	ImplicitOps, ImplicitOps, ImplicitOps, ImplicitOps,
	ImplicitOps, ImplicitOps, ImplicitOps, ImplicitOps,
	ImplicitOps, ImplicitOps, ImplicitOps, ImplicitOps,
	ImplicitOps, ImplicitOps, ImplicitOps, ImplicitOps,
A
Avi Kivity 已提交
217 218 219
	/* 0x90 - 0x9F */
	0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
	/* 0xA0 - 0xA7 */
220
	0, 0, 0, DstMem | SrcReg | ModRM | BitOp, 0, 0, 0, 0,
A
Avi Kivity 已提交
221
	/* 0xA8 - 0xAF */
222
	0, 0, 0, DstMem | SrcReg | ModRM | BitOp, 0, 0, 0, 0,
A
Avi Kivity 已提交
223 224
	/* 0xB0 - 0xB7 */
	ByteOp | DstMem | SrcReg | ModRM, DstMem | SrcReg | ModRM, 0,
225
	    DstMem | SrcReg | ModRM | BitOp,
A
Avi Kivity 已提交
226 227 228
	0, 0, ByteOp | DstReg | SrcMem | ModRM | Mov,
	    DstReg | SrcMem16 | ModRM | Mov,
	/* 0xB8 - 0xBF */
229
	0, 0, DstMem | SrcImmByte | ModRM, DstMem | SrcReg | ModRM | BitOp,
A
Avi Kivity 已提交
230 231 232
	0, 0, ByteOp | DstReg | SrcMem | ModRM | Mov,
	    DstReg | SrcMem16 | ModRM | Mov,
	/* 0xC0 - 0xCF */
233 234
	0, 0, 0, DstMem | SrcReg | ModRM | Mov, 0, 0, 0, ImplicitOps | ModRM,
	0, 0, 0, 0, 0, 0, 0, 0,
A
Avi Kivity 已提交
235 236 237 238 239 240 241 242
	/* 0xD0 - 0xDF */
	0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
	/* 0xE0 - 0xEF */
	0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
	/* 0xF0 - 0xFF */
	0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0
};

243
static u16 group_table[] = {
244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263
	[Group1_80*8] =
	ByteOp | DstMem | SrcImm | ModRM, ByteOp | DstMem | SrcImm | ModRM,
	ByteOp | DstMem | SrcImm | ModRM, ByteOp | DstMem | SrcImm | ModRM,
	ByteOp | DstMem | SrcImm | ModRM, ByteOp | DstMem | SrcImm | ModRM,
	ByteOp | DstMem | SrcImm | ModRM, ByteOp | DstMem | SrcImm | ModRM,
	[Group1_81*8] =
	DstMem | SrcImm | ModRM, DstMem | SrcImm | ModRM,
	DstMem | SrcImm | ModRM, DstMem | SrcImm | ModRM,
	DstMem | SrcImm | ModRM, DstMem | SrcImm | ModRM,
	DstMem | SrcImm | ModRM, DstMem | SrcImm | ModRM,
	[Group1_82*8] =
	ByteOp | DstMem | SrcImm | ModRM, ByteOp | DstMem | SrcImm | ModRM,
	ByteOp | DstMem | SrcImm | ModRM, ByteOp | DstMem | SrcImm | ModRM,
	ByteOp | DstMem | SrcImm | ModRM, ByteOp | DstMem | SrcImm | ModRM,
	ByteOp | DstMem | SrcImm | ModRM, ByteOp | DstMem | SrcImm | ModRM,
	[Group1_83*8] =
	DstMem | SrcImmByte | ModRM, DstMem | SrcImmByte | ModRM,
	DstMem | SrcImmByte | ModRM, DstMem | SrcImmByte | ModRM,
	DstMem | SrcImmByte | ModRM, DstMem | SrcImmByte | ModRM,
	DstMem | SrcImmByte | ModRM, DstMem | SrcImmByte | ModRM,
264 265
	[Group1A*8] =
	DstMem | SrcNone | ModRM | Mov | Stack, 0, 0, 0, 0, 0, 0, 0,
266 267 268 269 270 271 272 273
	[Group3_Byte*8] =
	ByteOp | SrcImm | DstMem | ModRM, 0,
	ByteOp | DstMem | SrcNone | ModRM, ByteOp | DstMem | SrcNone | ModRM,
	0, 0, 0, 0,
	[Group3*8] =
	DstMem | SrcImm | ModRM | SrcImm, 0,
	DstMem | SrcNone | ModRM, ByteOp | DstMem | SrcNone | ModRM,
	0, 0, 0, 0,
274 275 276 277 278 279
	[Group4*8] =
	ByteOp | DstMem | SrcNone | ModRM, ByteOp | DstMem | SrcNone | ModRM,
	0, 0, 0, 0, 0, 0,
	[Group5*8] =
	DstMem | SrcNone | ModRM, DstMem | SrcNone | ModRM, 0, 0,
	SrcMem | ModRM, 0, SrcMem | ModRM | Stack, 0,
280 281
	[Group7*8] =
	0, 0, ModRM | SrcMem, ModRM | SrcMem,
282 283
	SrcNone | ModRM | DstMem | Mov, 0,
	SrcMem16 | ModRM | Mov, SrcMem | ModRM | ByteOp,
284 285 286
};

static u16 group2_table[] = {
287
	[Group7*8] =
288 289 290
	SrcNone | ModRM, 0, 0, 0,
	SrcNone | ModRM | DstMem | Mov, 0,
	SrcMem16 | ModRM | Mov, 0,
291 292
};

A
Avi Kivity 已提交
293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308
/* EFLAGS bit definitions. */
#define EFLG_OF (1<<11)
#define EFLG_DF (1<<10)
#define EFLG_SF (1<<7)
#define EFLG_ZF (1<<6)
#define EFLG_AF (1<<4)
#define EFLG_PF (1<<2)
#define EFLG_CF (1<<0)

/*
 * Instruction emulation:
 * Most instructions are emulated directly via a fragment of inline assembly
 * code. This allows us to save/restore EFLAGS and thus very easily pick up
 * any modified flags.
 */

309
#if defined(CONFIG_X86_64)
A
Avi Kivity 已提交
310 311 312 313 314 315 316 317 318 319 320 321 322 323
#define _LO32 "k"		/* force 32-bit operand */
#define _STK  "%%rsp"		/* stack pointer */
#elif defined(__i386__)
#define _LO32 ""		/* force 32-bit operand */
#define _STK  "%%esp"		/* stack pointer */
#endif

/*
 * These EFLAGS bits are restored from saved value during emulation, and
 * any changes are written back to the saved value after emulation.
 */
#define EFLAGS_MASK (EFLG_OF|EFLG_SF|EFLG_ZF|EFLG_AF|EFLG_PF|EFLG_CF)

/* Before executing instruction: restore necessary bits in EFLAGS. */
324 325 326 327 328 329 330 331 332 333 334 335 336 337 338
#define _PRE_EFLAGS(_sav, _msk, _tmp)					\
	/* EFLAGS = (_sav & _msk) | (EFLAGS & ~_msk); _sav &= ~_msk; */ \
	"movl %"_sav",%"_LO32 _tmp"; "                                  \
	"push %"_tmp"; "                                                \
	"push %"_tmp"; "                                                \
	"movl %"_msk",%"_LO32 _tmp"; "                                  \
	"andl %"_LO32 _tmp",("_STK"); "                                 \
	"pushf; "                                                       \
	"notl %"_LO32 _tmp"; "                                          \
	"andl %"_LO32 _tmp",("_STK"); "                                 \
	"andl %"_LO32 _tmp","__stringify(BITS_PER_LONG/4)"("_STK"); "	\
	"pop  %"_tmp"; "                                                \
	"orl  %"_LO32 _tmp",("_STK"); "                                 \
	"popf; "                                                        \
	"pop  %"_sav"; "
A
Avi Kivity 已提交
339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355

/* After executing instruction: write-back necessary bits in EFLAGS. */
#define _POST_EFLAGS(_sav, _msk, _tmp) \
	/* _sav |= EFLAGS & _msk; */		\
	"pushf; "				\
	"pop  %"_tmp"; "			\
	"andl %"_msk",%"_LO32 _tmp"; "		\
	"orl  %"_LO32 _tmp",%"_sav"; "

/* Raw emulation: instruction has two explicit operands. */
#define __emulate_2op_nobyte(_op,_src,_dst,_eflags,_wx,_wy,_lx,_ly,_qx,_qy) \
	do { 								    \
		unsigned long _tmp;					    \
									    \
		switch ((_dst).bytes) {					    \
		case 2:							    \
			__asm__ __volatile__ (				    \
M
Mike Day 已提交
356
				_PRE_EFLAGS("0", "4", "2")		    \
A
Avi Kivity 已提交
357
				_op"w %"_wx"3,%1; "			    \
M
Mike Day 已提交
358
				_POST_EFLAGS("0", "4", "2")		    \
A
Avi Kivity 已提交
359 360
				: "=m" (_eflags), "=m" ((_dst).val),        \
				  "=&r" (_tmp)				    \
M
Mike Day 已提交
361
				: _wy ((_src).val), "i" (EFLAGS_MASK));     \
A
Avi Kivity 已提交
362 363 364
			break;						    \
		case 4:							    \
			__asm__ __volatile__ (				    \
M
Mike Day 已提交
365
				_PRE_EFLAGS("0", "4", "2")		    \
A
Avi Kivity 已提交
366
				_op"l %"_lx"3,%1; "			    \
M
Mike Day 已提交
367
				_POST_EFLAGS("0", "4", "2")		    \
A
Avi Kivity 已提交
368 369
				: "=m" (_eflags), "=m" ((_dst).val),	    \
				  "=&r" (_tmp)				    \
M
Mike Day 已提交
370
				: _ly ((_src).val), "i" (EFLAGS_MASK));     \
A
Avi Kivity 已提交
371 372 373 374 375 376 377 378 379 380
			break;						    \
		case 8:							    \
			__emulate_2op_8byte(_op, _src, _dst,		    \
					    _eflags, _qx, _qy);		    \
			break;						    \
		}							    \
	} while (0)

#define __emulate_2op(_op,_src,_dst,_eflags,_bx,_by,_wx,_wy,_lx,_ly,_qx,_qy) \
	do {								     \
381
		unsigned long __tmp;					     \
M
Mike Day 已提交
382
		switch ((_dst).bytes) {				             \
A
Avi Kivity 已提交
383 384
		case 1:							     \
			__asm__ __volatile__ (				     \
M
Mike Day 已提交
385
				_PRE_EFLAGS("0", "4", "2")		     \
A
Avi Kivity 已提交
386
				_op"b %"_bx"3,%1; "			     \
M
Mike Day 已提交
387
				_POST_EFLAGS("0", "4", "2")		     \
A
Avi Kivity 已提交
388
				: "=m" (_eflags), "=m" ((_dst).val),	     \
389
				  "=&r" (__tmp)				     \
M
Mike Day 已提交
390
				: _by ((_src).val), "i" (EFLAGS_MASK));      \
A
Avi Kivity 已提交
391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418
			break;						     \
		default:						     \
			__emulate_2op_nobyte(_op, _src, _dst, _eflags,	     \
					     _wx, _wy, _lx, _ly, _qx, _qy);  \
			break;						     \
		}							     \
	} while (0)

/* Source operand is byte-sized and may be restricted to just %cl. */
#define emulate_2op_SrcB(_op, _src, _dst, _eflags)                      \
	__emulate_2op(_op, _src, _dst, _eflags,				\
		      "b", "c", "b", "c", "b", "c", "b", "c")

/* Source operand is byte, word, long or quad sized. */
#define emulate_2op_SrcV(_op, _src, _dst, _eflags)                      \
	__emulate_2op(_op, _src, _dst, _eflags,				\
		      "b", "q", "w", "r", _LO32, "r", "", "r")

/* Source operand is word, long or quad sized. */
#define emulate_2op_SrcV_nobyte(_op, _src, _dst, _eflags)               \
	__emulate_2op_nobyte(_op, _src, _dst, _eflags,			\
			     "w", "r", _LO32, "r", "", "r")

/* Instruction has only one explicit operand (no source operand). */
#define emulate_1op(_op, _dst, _eflags)                                    \
	do {								\
		unsigned long _tmp;					\
									\
M
Mike Day 已提交
419
		switch ((_dst).bytes) {				        \
A
Avi Kivity 已提交
420 421
		case 1:							\
			__asm__ __volatile__ (				\
M
Mike Day 已提交
422
				_PRE_EFLAGS("0", "3", "2")		\
A
Avi Kivity 已提交
423
				_op"b %1; "				\
M
Mike Day 已提交
424
				_POST_EFLAGS("0", "3", "2")		\
A
Avi Kivity 已提交
425 426
				: "=m" (_eflags), "=m" ((_dst).val),	\
				  "=&r" (_tmp)				\
M
Mike Day 已提交
427
				: "i" (EFLAGS_MASK));			\
A
Avi Kivity 已提交
428 429 430
			break;						\
		case 2:							\
			__asm__ __volatile__ (				\
M
Mike Day 已提交
431
				_PRE_EFLAGS("0", "3", "2")		\
A
Avi Kivity 已提交
432
				_op"w %1; "				\
M
Mike Day 已提交
433
				_POST_EFLAGS("0", "3", "2")		\
A
Avi Kivity 已提交
434 435
				: "=m" (_eflags), "=m" ((_dst).val),	\
				  "=&r" (_tmp)				\
M
Mike Day 已提交
436
				: "i" (EFLAGS_MASK));			\
A
Avi Kivity 已提交
437 438 439
			break;						\
		case 4:							\
			__asm__ __volatile__ (				\
M
Mike Day 已提交
440
				_PRE_EFLAGS("0", "3", "2")		\
A
Avi Kivity 已提交
441
				_op"l %1; "				\
M
Mike Day 已提交
442
				_POST_EFLAGS("0", "3", "2")		\
A
Avi Kivity 已提交
443 444
				: "=m" (_eflags), "=m" ((_dst).val),	\
				  "=&r" (_tmp)				\
M
Mike Day 已提交
445
				: "i" (EFLAGS_MASK));			\
A
Avi Kivity 已提交
446 447 448 449 450 451 452 453
			break;						\
		case 8:							\
			__emulate_1op_8byte(_op, _dst, _eflags);	\
			break;						\
		}							\
	} while (0)

/* Emulate an instruction with quadword operands (x86/64 only). */
454
#if defined(CONFIG_X86_64)
A
Avi Kivity 已提交
455 456 457
#define __emulate_2op_8byte(_op, _src, _dst, _eflags, _qx, _qy)           \
	do {								  \
		__asm__ __volatile__ (					  \
M
Mike Day 已提交
458
			_PRE_EFLAGS("0", "4", "2")			  \
A
Avi Kivity 已提交
459
			_op"q %"_qx"3,%1; "				  \
M
Mike Day 已提交
460
			_POST_EFLAGS("0", "4", "2")			  \
A
Avi Kivity 已提交
461
			: "=m" (_eflags), "=m" ((_dst).val), "=&r" (_tmp) \
M
Mike Day 已提交
462
			: _qy ((_src).val), "i" (EFLAGS_MASK));		\
A
Avi Kivity 已提交
463 464 465 466 467
	} while (0)

#define __emulate_1op_8byte(_op, _dst, _eflags)                           \
	do {								  \
		__asm__ __volatile__ (					  \
M
Mike Day 已提交
468
			_PRE_EFLAGS("0", "3", "2")			  \
A
Avi Kivity 已提交
469
			_op"q %1; "					  \
M
Mike Day 已提交
470
			_POST_EFLAGS("0", "3", "2")			  \
A
Avi Kivity 已提交
471
			: "=m" (_eflags), "=m" ((_dst).val), "=&r" (_tmp) \
M
Mike Day 已提交
472
			: "i" (EFLAGS_MASK));				  \
A
Avi Kivity 已提交
473 474 475 476 477 478 479 480 481 482
	} while (0)

#elif defined(__i386__)
#define __emulate_2op_8byte(_op, _src, _dst, _eflags, _qx, _qy)
#define __emulate_1op_8byte(_op, _dst, _eflags)
#endif				/* __i386__ */

/* Fetch next part of the instruction being emulated. */
#define insn_fetch(_type, _size, _eip)                                  \
({	unsigned long _x;						\
483
	rc = do_insn_fetch(ctxt, ops, (_eip), &_x, (_size));		\
M
Mike Day 已提交
484
	if (rc != 0)							\
A
Avi Kivity 已提交
485 486 487 488 489
		goto done;						\
	(_eip) += (_size);						\
	(_type)_x;							\
})

490 491 492 493 494
static inline unsigned long ad_mask(struct decode_cache *c)
{
	return (1UL << (c->ad_bytes << 3)) - 1;
}

A
Avi Kivity 已提交
495
/* Access/update address held in a register, based on addressing mode. */
496 497 498 499 500 501 502 503 504 505 506 507 508 509 510
static inline unsigned long
address_mask(struct decode_cache *c, unsigned long reg)
{
	if (c->ad_bytes == sizeof(unsigned long))
		return reg;
	else
		return reg & ad_mask(c);
}

static inline unsigned long
register_address(struct decode_cache *c, unsigned long base, unsigned long reg)
{
	return base + address_mask(c, reg);
}

511 512 513 514 515 516 517 518
static inline void
register_address_increment(struct decode_cache *c, unsigned long *reg, int inc)
{
	if (c->ad_bytes == sizeof(unsigned long))
		*reg += inc;
	else
		*reg = (*reg & ~ad_mask(c)) | ((*reg + inc) & ad_mask(c));
}
A
Avi Kivity 已提交
519

520 521 522 523
static inline void jmp_rel(struct decode_cache *c, int rel)
{
	register_address_increment(c, &c->eip, rel);
}
524

525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559
static int do_fetch_insn_byte(struct x86_emulate_ctxt *ctxt,
			      struct x86_emulate_ops *ops,
			      unsigned long linear, u8 *dest)
{
	struct fetch_cache *fc = &ctxt->decode.fetch;
	int rc;
	int size;

	if (linear < fc->start || linear >= fc->end) {
		size = min(15UL, PAGE_SIZE - offset_in_page(linear));
		rc = ops->read_std(linear, fc->data, size, ctxt->vcpu);
		if (rc)
			return rc;
		fc->start = linear;
		fc->end = linear + size;
	}
	*dest = fc->data[linear - fc->start];
	return 0;
}

static int do_insn_fetch(struct x86_emulate_ctxt *ctxt,
			 struct x86_emulate_ops *ops,
			 unsigned long eip, void *dest, unsigned size)
{
	int rc = 0;

	eip += ctxt->cs_base;
	while (size--) {
		rc = do_fetch_insn_byte(ctxt, ops, eip++, dest++);
		if (rc)
			return rc;
	}
	return 0;
}

560 561 562 563 564 565 566
/*
 * Given the 'reg' portion of a ModRM byte, and a register block, return a
 * pointer into the block that addresses the relevant register.
 * @highbyte_regs specifies whether to decode AH,CH,DH,BH.
 */
static void *decode_register(u8 modrm_reg, unsigned long *regs,
			     int highbyte_regs)
A
Avi Kivity 已提交
567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585
{
	void *p;

	p = &regs[modrm_reg];
	if (highbyte_regs && modrm_reg >= 4 && modrm_reg < 8)
		p = (unsigned char *)&regs[modrm_reg & 3] + 1;
	return p;
}

static int read_descriptor(struct x86_emulate_ctxt *ctxt,
			   struct x86_emulate_ops *ops,
			   void *ptr,
			   u16 *size, unsigned long *address, int op_bytes)
{
	int rc;

	if (op_bytes == 2)
		op_bytes = 3;
	*address = 0;
586 587
	rc = ops->read_std((unsigned long)ptr, (unsigned long *)size, 2,
			   ctxt->vcpu);
A
Avi Kivity 已提交
588 589
	if (rc)
		return rc;
590 591
	rc = ops->read_std((unsigned long)ptr + 2, address, op_bytes,
			   ctxt->vcpu);
A
Avi Kivity 已提交
592 593 594
	return rc;
}

595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629
static int test_cc(unsigned int condition, unsigned int flags)
{
	int rc = 0;

	switch ((condition & 15) >> 1) {
	case 0: /* o */
		rc |= (flags & EFLG_OF);
		break;
	case 1: /* b/c/nae */
		rc |= (flags & EFLG_CF);
		break;
	case 2: /* z/e */
		rc |= (flags & EFLG_ZF);
		break;
	case 3: /* be/na */
		rc |= (flags & (EFLG_CF|EFLG_ZF));
		break;
	case 4: /* s */
		rc |= (flags & EFLG_SF);
		break;
	case 5: /* p/pe */
		rc |= (flags & EFLG_PF);
		break;
	case 7: /* le/ng */
		rc |= (flags & EFLG_ZF);
		/* fall through */
	case 6: /* l/nge */
		rc |= (!(flags & EFLG_SF) != !(flags & EFLG_OF));
		break;
	}

	/* Odd condition identifiers (lsb == 1) have inverted sense. */
	return (!!rc ^ (condition & 1));
}

630 631 632 633
static void decode_register_operand(struct operand *op,
				    struct decode_cache *c,
				    int inhibit_bytereg)
{
634
	unsigned reg = c->modrm_reg;
635
	int highbyte_regs = c->rex_prefix == 0;
636 637 638

	if (!(c->d & ModRM))
		reg = (c->b & 7) | ((c->rex_prefix & 1) << 3);
639 640
	op->type = OP_REG;
	if ((c->d & ByteOp) && !inhibit_bytereg) {
641
		op->ptr = decode_register(reg, c->regs, highbyte_regs);
642 643 644
		op->val = *(u8 *)op->ptr;
		op->bytes = 1;
	} else {
645
		op->ptr = decode_register(reg, c->regs, 0);
646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661
		op->bytes = c->op_bytes;
		switch (op->bytes) {
		case 2:
			op->val = *(u16 *)op->ptr;
			break;
		case 4:
			op->val = *(u32 *)op->ptr;
			break;
		case 8:
			op->val = *(u64 *) op->ptr;
			break;
		}
	}
	op->orig_val = op->val;
}

662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683
static int decode_modrm(struct x86_emulate_ctxt *ctxt,
			struct x86_emulate_ops *ops)
{
	struct decode_cache *c = &ctxt->decode;
	u8 sib;
	int index_reg = 0, base_reg = 0, scale, rip_relative = 0;
	int rc = 0;

	if (c->rex_prefix) {
		c->modrm_reg = (c->rex_prefix & 4) << 1;	/* REX.R */
		index_reg = (c->rex_prefix & 2) << 2; /* REX.X */
		c->modrm_rm = base_reg = (c->rex_prefix & 1) << 3; /* REG.B */
	}

	c->modrm = insn_fetch(u8, 1, c->eip);
	c->modrm_mod |= (c->modrm & 0xc0) >> 6;
	c->modrm_reg |= (c->modrm & 0x38) >> 3;
	c->modrm_rm |= (c->modrm & 0x07);
	c->modrm_ea = 0;
	c->use_modrm_ea = 1;

	if (c->modrm_mod == 3) {
684 685 686
		c->modrm_ptr = decode_register(c->modrm_rm,
					       c->regs, c->d & ByteOp);
		c->modrm_val = *(unsigned long *)c->modrm_ptr;
687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742
		return rc;
	}

	if (c->ad_bytes == 2) {
		unsigned bx = c->regs[VCPU_REGS_RBX];
		unsigned bp = c->regs[VCPU_REGS_RBP];
		unsigned si = c->regs[VCPU_REGS_RSI];
		unsigned di = c->regs[VCPU_REGS_RDI];

		/* 16-bit ModR/M decode. */
		switch (c->modrm_mod) {
		case 0:
			if (c->modrm_rm == 6)
				c->modrm_ea += insn_fetch(u16, 2, c->eip);
			break;
		case 1:
			c->modrm_ea += insn_fetch(s8, 1, c->eip);
			break;
		case 2:
			c->modrm_ea += insn_fetch(u16, 2, c->eip);
			break;
		}
		switch (c->modrm_rm) {
		case 0:
			c->modrm_ea += bx + si;
			break;
		case 1:
			c->modrm_ea += bx + di;
			break;
		case 2:
			c->modrm_ea += bp + si;
			break;
		case 3:
			c->modrm_ea += bp + di;
			break;
		case 4:
			c->modrm_ea += si;
			break;
		case 5:
			c->modrm_ea += di;
			break;
		case 6:
			if (c->modrm_mod != 0)
				c->modrm_ea += bp;
			break;
		case 7:
			c->modrm_ea += bx;
			break;
		}
		if (c->modrm_rm == 2 || c->modrm_rm == 3 ||
		    (c->modrm_rm == 6 && c->modrm_mod != 0))
			if (!c->override_base)
				c->override_base = &ctxt->ss_base;
		c->modrm_ea = (u16)c->modrm_ea;
	} else {
		/* 32/64-bit ModR/M decode. */
743
		if ((c->modrm_rm & 7) == 4) {
744 745 746 747 748
			sib = insn_fetch(u8, 1, c->eip);
			index_reg |= (sib >> 3) & 7;
			base_reg |= sib & 7;
			scale = sib >> 6;

749 750 751
			if ((base_reg & 7) == 5 && c->modrm_mod == 0)
				c->modrm_ea += insn_fetch(s32, 4, c->eip);
			else
752
				c->modrm_ea += c->regs[base_reg];
753
			if (index_reg != 4)
754
				c->modrm_ea += c->regs[index_reg] << scale;
755 756
		} else if ((c->modrm_rm & 7) == 5 && c->modrm_mod == 0) {
			if (ctxt->mode == X86EMUL_MODE_PROT64)
757
				rip_relative = 1;
758
		} else
759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813
			c->modrm_ea += c->regs[c->modrm_rm];
		switch (c->modrm_mod) {
		case 0:
			if (c->modrm_rm == 5)
				c->modrm_ea += insn_fetch(s32, 4, c->eip);
			break;
		case 1:
			c->modrm_ea += insn_fetch(s8, 1, c->eip);
			break;
		case 2:
			c->modrm_ea += insn_fetch(s32, 4, c->eip);
			break;
		}
	}
	if (rip_relative) {
		c->modrm_ea += c->eip;
		switch (c->d & SrcMask) {
		case SrcImmByte:
			c->modrm_ea += 1;
			break;
		case SrcImm:
			if (c->d & ByteOp)
				c->modrm_ea += 1;
			else
				if (c->op_bytes == 8)
					c->modrm_ea += 4;
				else
					c->modrm_ea += c->op_bytes;
		}
	}
done:
	return rc;
}

static int decode_abs(struct x86_emulate_ctxt *ctxt,
		      struct x86_emulate_ops *ops)
{
	struct decode_cache *c = &ctxt->decode;
	int rc = 0;

	switch (c->ad_bytes) {
	case 2:
		c->modrm_ea = insn_fetch(u16, 2, c->eip);
		break;
	case 4:
		c->modrm_ea = insn_fetch(u32, 4, c->eip);
		break;
	case 8:
		c->modrm_ea = insn_fetch(u64, 8, c->eip);
		break;
	}
done:
	return rc;
}

A
Avi Kivity 已提交
814
int
815
x86_decode_insn(struct x86_emulate_ctxt *ctxt, struct x86_emulate_ops *ops)
A
Avi Kivity 已提交
816
{
817
	struct decode_cache *c = &ctxt->decode;
A
Avi Kivity 已提交
818 819
	int rc = 0;
	int mode = ctxt->mode;
820
	int def_op_bytes, def_ad_bytes, group;
A
Avi Kivity 已提交
821 822 823

	/* Shadow copy of register state. Committed on successful emulation. */

824
	memset(c, 0, sizeof(struct decode_cache));
825 826
	c->eip = ctxt->vcpu->arch.rip;
	memcpy(c->regs, ctxt->vcpu->arch.regs, sizeof c->regs);
A
Avi Kivity 已提交
827 828 829 830

	switch (mode) {
	case X86EMUL_MODE_REAL:
	case X86EMUL_MODE_PROT16:
831
		def_op_bytes = def_ad_bytes = 2;
A
Avi Kivity 已提交
832 833
		break;
	case X86EMUL_MODE_PROT32:
834
		def_op_bytes = def_ad_bytes = 4;
A
Avi Kivity 已提交
835
		break;
836
#ifdef CONFIG_X86_64
A
Avi Kivity 已提交
837
	case X86EMUL_MODE_PROT64:
838 839
		def_op_bytes = 4;
		def_ad_bytes = 8;
A
Avi Kivity 已提交
840 841 842 843 844 845
		break;
#endif
	default:
		return -1;
	}

846 847 848
	c->op_bytes = def_op_bytes;
	c->ad_bytes = def_ad_bytes;

A
Avi Kivity 已提交
849
	/* Legacy prefixes. */
850
	for (;;) {
851
		switch (c->b = insn_fetch(u8, 1, c->eip)) {
A
Avi Kivity 已提交
852
		case 0x66:	/* operand-size override */
853 854
			/* switch between 2/4 bytes */
			c->op_bytes = def_op_bytes ^ 6;
A
Avi Kivity 已提交
855 856 857
			break;
		case 0x67:	/* address-size override */
			if (mode == X86EMUL_MODE_PROT64)
858
				/* switch between 4/8 bytes */
859
				c->ad_bytes = def_ad_bytes ^ 12;
A
Avi Kivity 已提交
860
			else
861
				/* switch between 2/4 bytes */
862
				c->ad_bytes = def_ad_bytes ^ 6;
A
Avi Kivity 已提交
863 864
			break;
		case 0x2e:	/* CS override */
865
			c->override_base = &ctxt->cs_base;
A
Avi Kivity 已提交
866 867
			break;
		case 0x3e:	/* DS override */
868
			c->override_base = &ctxt->ds_base;
A
Avi Kivity 已提交
869 870
			break;
		case 0x26:	/* ES override */
871
			c->override_base = &ctxt->es_base;
A
Avi Kivity 已提交
872 873
			break;
		case 0x64:	/* FS override */
874
			c->override_base = &ctxt->fs_base;
A
Avi Kivity 已提交
875 876
			break;
		case 0x65:	/* GS override */
877
			c->override_base = &ctxt->gs_base;
A
Avi Kivity 已提交
878 879
			break;
		case 0x36:	/* SS override */
880
			c->override_base = &ctxt->ss_base;
A
Avi Kivity 已提交
881
			break;
882 883 884
		case 0x40 ... 0x4f: /* REX */
			if (mode != X86EMUL_MODE_PROT64)
				goto done_prefixes;
885
			c->rex_prefix = c->b;
886
			continue;
A
Avi Kivity 已提交
887
		case 0xf0:	/* LOCK */
888
			c->lock_prefix = 1;
A
Avi Kivity 已提交
889
			break;
890
		case 0xf2:	/* REPNE/REPNZ */
891 892
			c->rep_prefix = REPNE_PREFIX;
			break;
A
Avi Kivity 已提交
893
		case 0xf3:	/* REP/REPE/REPZ */
894
			c->rep_prefix = REPE_PREFIX;
A
Avi Kivity 已提交
895 896 897 898
			break;
		default:
			goto done_prefixes;
		}
899 900 901

		/* Any legacy prefix after a REX prefix nullifies its effect. */

902
		c->rex_prefix = 0;
A
Avi Kivity 已提交
903 904 905 906 907
	}

done_prefixes:

	/* REX prefix. */
908
	if (c->rex_prefix)
909
		if (c->rex_prefix & 8)
910
			c->op_bytes = 8;	/* REX.W */
A
Avi Kivity 已提交
911 912

	/* Opcode byte(s). */
913 914
	c->d = opcode_table[c->b];
	if (c->d == 0) {
A
Avi Kivity 已提交
915
		/* Two-byte opcode? */
916 917 918 919
		if (c->b == 0x0f) {
			c->twobyte = 1;
			c->b = insn_fetch(u8, 1, c->eip);
			c->d = twobyte_table[c->b];
A
Avi Kivity 已提交
920
		}
921
	}
A
Avi Kivity 已提交
922

923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938
	if (c->d & Group) {
		group = c->d & GroupMask;
		c->modrm = insn_fetch(u8, 1, c->eip);
		--c->eip;

		group = (group << 3) + ((c->modrm >> 3) & 7);
		if ((c->d & GroupDual) && (c->modrm >> 6) == 3)
			c->d = group2_table[group];
		else
			c->d = group_table[group];
	}

	/* Unrecognised? */
	if (c->d == 0) {
		DPRINTF("Cannot emulate %02x\n", c->b);
		return -1;
A
Avi Kivity 已提交
939 940
	}

941 942 943
	if (mode == X86EMUL_MODE_PROT64 && (c->d & Stack))
		c->op_bytes = 8;

A
Avi Kivity 已提交
944
	/* ModRM and SIB bytes. */
945 946 947 948 949 950
	if (c->d & ModRM)
		rc = decode_modrm(ctxt, ops);
	else if (c->d & MemAbs)
		rc = decode_abs(ctxt, ops);
	if (rc)
		goto done;
A
Avi Kivity 已提交
951

952 953 954 955 956 957 958 959 960 961 962 963
	if (!c->override_base)
		c->override_base = &ctxt->ds_base;
	if (mode == X86EMUL_MODE_PROT64 &&
	    c->override_base != &ctxt->fs_base &&
	    c->override_base != &ctxt->gs_base)
		c->override_base = NULL;

	if (c->override_base)
		c->modrm_ea += *c->override_base;

	if (c->ad_bytes != 8)
		c->modrm_ea = (u32)c->modrm_ea;
A
Avi Kivity 已提交
964 965 966 967
	/*
	 * Decode and fetch the source operand: register, memory
	 * or immediate.
	 */
968
	switch (c->d & SrcMask) {
A
Avi Kivity 已提交
969 970 971
	case SrcNone:
		break;
	case SrcReg:
972
		decode_register_operand(&c->src, c, 0);
A
Avi Kivity 已提交
973 974
		break;
	case SrcMem16:
975
		c->src.bytes = 2;
A
Avi Kivity 已提交
976 977
		goto srcmem_common;
	case SrcMem32:
978
		c->src.bytes = 4;
A
Avi Kivity 已提交
979 980
		goto srcmem_common;
	case SrcMem:
981 982
		c->src.bytes = (c->d & ByteOp) ? 1 :
							   c->op_bytes;
983
		/* Don't fetch the address for invlpg: it could be unmapped. */
M
Mike Day 已提交
984
		if (c->twobyte && c->b == 0x01 && c->modrm_reg == 7)
985
			break;
M
Mike Day 已提交
986
	srcmem_common:
987 988 989 990
		/*
		 * For instructions with a ModR/M byte, switch to register
		 * access if Mod = 3.
		 */
991 992
		if ((c->d & ModRM) && c->modrm_mod == 3) {
			c->src.type = OP_REG;
993
			c->src.val = c->modrm_val;
994
			c->src.ptr = c->modrm_ptr;
995 996
			break;
		}
997
		c->src.type = OP_MEM;
A
Avi Kivity 已提交
998 999
		break;
	case SrcImm:
1000 1001 1002 1003 1004
		c->src.type = OP_IMM;
		c->src.ptr = (unsigned long *)c->eip;
		c->src.bytes = (c->d & ByteOp) ? 1 : c->op_bytes;
		if (c->src.bytes == 8)
			c->src.bytes = 4;
A
Avi Kivity 已提交
1005
		/* NB. Immediates are sign-extended as necessary. */
1006
		switch (c->src.bytes) {
A
Avi Kivity 已提交
1007
		case 1:
1008
			c->src.val = insn_fetch(s8, 1, c->eip);
A
Avi Kivity 已提交
1009 1010
			break;
		case 2:
1011
			c->src.val = insn_fetch(s16, 2, c->eip);
A
Avi Kivity 已提交
1012 1013
			break;
		case 4:
1014
			c->src.val = insn_fetch(s32, 4, c->eip);
A
Avi Kivity 已提交
1015 1016 1017 1018
			break;
		}
		break;
	case SrcImmByte:
1019 1020 1021 1022
		c->src.type = OP_IMM;
		c->src.ptr = (unsigned long *)c->eip;
		c->src.bytes = 1;
		c->src.val = insn_fetch(s8, 1, c->eip);
A
Avi Kivity 已提交
1023 1024 1025
		break;
	}

1026
	/* Decode and fetch the destination operand: register or memory. */
1027
	switch (c->d & DstMask) {
1028 1029
	case ImplicitOps:
		/* Special instructions do their own operand decoding. */
1030
		return 0;
1031
	case DstReg:
1032
		decode_register_operand(&c->dst, c,
1033
			 c->twobyte && (c->b == 0xb6 || c->b == 0xb7));
1034 1035
		break;
	case DstMem:
1036
		if ((c->d & ModRM) && c->modrm_mod == 3) {
1037
			c->dst.bytes = (c->d & ByteOp) ? 1 : c->op_bytes;
1038
			c->dst.type = OP_REG;
1039
			c->dst.val = c->dst.orig_val = c->modrm_val;
1040
			c->dst.ptr = c->modrm_ptr;
1041 1042
			break;
		}
1043 1044 1045 1046 1047 1048 1049 1050
		c->dst.type = OP_MEM;
		break;
	}

done:
	return (rc == X86EMUL_UNHANDLEABLE) ? -1 : 0;
}

1051 1052 1053 1054 1055 1056 1057
static inline void emulate_push(struct x86_emulate_ctxt *ctxt)
{
	struct decode_cache *c = &ctxt->decode;

	c->dst.type  = OP_MEM;
	c->dst.bytes = c->op_bytes;
	c->dst.val = c->src.val;
1058
	register_address_increment(c, &c->regs[VCPU_REGS_RSP], -c->op_bytes);
1059
	c->dst.ptr = (void *) register_address(c, ctxt->ss_base,
1060 1061 1062 1063 1064 1065 1066 1067 1068
					       c->regs[VCPU_REGS_RSP]);
}

static inline int emulate_grp1a(struct x86_emulate_ctxt *ctxt,
				struct x86_emulate_ops *ops)
{
	struct decode_cache *c = &ctxt->decode;
	int rc;

1069
	rc = ops->read_std(register_address(c, ctxt->ss_base,
1070 1071 1072 1073 1074
					    c->regs[VCPU_REGS_RSP]),
			   &c->dst.val, c->dst.bytes, ctxt->vcpu);
	if (rc != 0)
		return rc;

1075
	register_address_increment(c, &c->regs[VCPU_REGS_RSP], c->dst.bytes);
1076 1077 1078 1079

	return 0;
}

1080
static inline void emulate_grp2(struct x86_emulate_ctxt *ctxt)
1081
{
1082
	struct decode_cache *c = &ctxt->decode;
1083 1084
	switch (c->modrm_reg) {
	case 0:	/* rol */
1085
		emulate_2op_SrcB("rol", c->src, c->dst, ctxt->eflags);
1086 1087
		break;
	case 1:	/* ror */
1088
		emulate_2op_SrcB("ror", c->src, c->dst, ctxt->eflags);
1089 1090
		break;
	case 2:	/* rcl */
1091
		emulate_2op_SrcB("rcl", c->src, c->dst, ctxt->eflags);
1092 1093
		break;
	case 3:	/* rcr */
1094
		emulate_2op_SrcB("rcr", c->src, c->dst, ctxt->eflags);
1095 1096 1097
		break;
	case 4:	/* sal/shl */
	case 6:	/* sal/shl */
1098
		emulate_2op_SrcB("sal", c->src, c->dst, ctxt->eflags);
1099 1100
		break;
	case 5:	/* shr */
1101
		emulate_2op_SrcB("shr", c->src, c->dst, ctxt->eflags);
1102 1103
		break;
	case 7:	/* sar */
1104
		emulate_2op_SrcB("sar", c->src, c->dst, ctxt->eflags);
1105 1106 1107 1108 1109
		break;
	}
}

static inline int emulate_grp3(struct x86_emulate_ctxt *ctxt,
1110
			       struct x86_emulate_ops *ops)
1111 1112 1113 1114 1115 1116
{
	struct decode_cache *c = &ctxt->decode;
	int rc = 0;

	switch (c->modrm_reg) {
	case 0 ... 1:	/* test */
1117
		emulate_2op_SrcV("test", c->src, c->dst, ctxt->eflags);
1118 1119 1120 1121 1122
		break;
	case 2:	/* not */
		c->dst.val = ~c->dst.val;
		break;
	case 3:	/* neg */
1123
		emulate_1op("neg", c->dst, ctxt->eflags);
1124 1125 1126 1127 1128 1129 1130 1131 1132 1133
		break;
	default:
		DPRINTF("Cannot emulate %02x\n", c->b);
		rc = X86EMUL_UNHANDLEABLE;
		break;
	}
	return rc;
}

static inline int emulate_grp45(struct x86_emulate_ctxt *ctxt,
1134
			       struct x86_emulate_ops *ops)
1135 1136 1137 1138 1139
{
	struct decode_cache *c = &ctxt->decode;

	switch (c->modrm_reg) {
	case 0:	/* inc */
1140
		emulate_1op("inc", c->dst, ctxt->eflags);
1141 1142
		break;
	case 1:	/* dec */
1143
		emulate_1op("dec", c->dst, ctxt->eflags);
1144 1145
		break;
	case 4: /* jmp abs */
1146
		c->eip = c->src.val;
1147 1148
		break;
	case 6:	/* push */
1149
		emulate_push(ctxt);
1150 1151 1152 1153 1154 1155 1156
		break;
	}
	return 0;
}

static inline int emulate_grp9(struct x86_emulate_ctxt *ctxt,
			       struct x86_emulate_ops *ops,
1157
			       unsigned long memop)
1158 1159 1160 1161 1162
{
	struct decode_cache *c = &ctxt->decode;
	u64 old, new;
	int rc;

1163
	rc = ops->read_emulated(memop, &old, 8, ctxt->vcpu);
1164 1165 1166 1167 1168 1169 1170 1171
	if (rc != 0)
		return rc;

	if (((u32) (old >> 0) != (u32) c->regs[VCPU_REGS_RAX]) ||
	    ((u32) (old >> 32) != (u32) c->regs[VCPU_REGS_RDX])) {

		c->regs[VCPU_REGS_RAX] = (u32) (old >> 0);
		c->regs[VCPU_REGS_RDX] = (u32) (old >> 32);
1172
		ctxt->eflags &= ~EFLG_ZF;
1173 1174 1175 1176 1177

	} else {
		new = ((u64)c->regs[VCPU_REGS_RCX] << 32) |
		       (u32) c->regs[VCPU_REGS_RBX];

1178
		rc = ops->cmpxchg_emulated(memop, &old, &new, 8, ctxt->vcpu);
1179 1180
		if (rc != 0)
			return rc;
1181
		ctxt->eflags |= EFLG_ZF;
1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227
	}
	return 0;
}

static inline int writeback(struct x86_emulate_ctxt *ctxt,
			    struct x86_emulate_ops *ops)
{
	int rc;
	struct decode_cache *c = &ctxt->decode;

	switch (c->dst.type) {
	case OP_REG:
		/* The 4-byte case *is* correct:
		 * in 64-bit mode we zero-extend.
		 */
		switch (c->dst.bytes) {
		case 1:
			*(u8 *)c->dst.ptr = (u8)c->dst.val;
			break;
		case 2:
			*(u16 *)c->dst.ptr = (u16)c->dst.val;
			break;
		case 4:
			*c->dst.ptr = (u32)c->dst.val;
			break;	/* 64b: zero-ext */
		case 8:
			*c->dst.ptr = c->dst.val;
			break;
		}
		break;
	case OP_MEM:
		if (c->lock_prefix)
			rc = ops->cmpxchg_emulated(
					(unsigned long)c->dst.ptr,
					&c->dst.orig_val,
					&c->dst.val,
					c->dst.bytes,
					ctxt->vcpu);
		else
			rc = ops->write_emulated(
					(unsigned long)c->dst.ptr,
					&c->dst.val,
					c->dst.bytes,
					ctxt->vcpu);
		if (rc != 0)
			return rc;
1228 1229 1230 1231
		break;
	case OP_NONE:
		/* no writeback */
		break;
1232 1233 1234 1235 1236 1237
	default:
		break;
	}
	return 0;
}

1238
int
1239
x86_emulate_insn(struct x86_emulate_ctxt *ctxt, struct x86_emulate_ops *ops)
1240
{
1241
	unsigned long memop = 0;
1242
	u64 msr_data;
1243
	unsigned long saved_eip = 0;
1244
	struct decode_cache *c = &ctxt->decode;
1245
	int rc = 0;
1246

1247 1248 1249 1250 1251
	/* Shadow copy of register state. Committed on successful emulation.
	 * NOTE: we can copy them from vcpu as x86_decode_insn() doesn't
	 * modify them.
	 */

1252
	memcpy(c->regs, ctxt->vcpu->arch.regs, sizeof c->regs);
1253 1254
	saved_eip = c->eip;

1255
	if (((c->d & ModRM) && (c->modrm_mod != 3)) || (c->d & MemAbs))
1256
		memop = c->modrm_ea;
1257

1258 1259 1260
	if (c->rep_prefix && (c->d & String)) {
		/* All REP prefixes have the same first termination condition */
		if (c->regs[VCPU_REGS_RCX] == 0) {
1261
			ctxt->vcpu->arch.rip = c->eip;
1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274
			goto done;
		}
		/* The second termination condition only applies for REPE
		 * and REPNE. Test if the repeat string operation prefix is
		 * REPE/REPZ or REPNE/REPNZ and if it's the case it tests the
		 * corresponding termination condition according to:
		 * 	- if REPE/REPZ and ZF = 0 then done
		 * 	- if REPNE/REPNZ and ZF = 1 then done
		 */
		if ((c->b == 0xa6) || (c->b == 0xa7) ||
				(c->b == 0xae) || (c->b == 0xaf)) {
			if ((c->rep_prefix == REPE_PREFIX) &&
				((ctxt->eflags & EFLG_ZF) == 0)) {
1275
					ctxt->vcpu->arch.rip = c->eip;
1276 1277 1278 1279
					goto done;
			}
			if ((c->rep_prefix == REPNE_PREFIX) &&
				((ctxt->eflags & EFLG_ZF) == EFLG_ZF)) {
1280
				ctxt->vcpu->arch.rip = c->eip;
1281 1282 1283 1284
				goto done;
			}
		}
		c->regs[VCPU_REGS_RCX]--;
1285
		c->eip = ctxt->vcpu->arch.rip;
1286 1287
	}

1288
	if (c->src.type == OP_MEM) {
1289
		c->src.ptr = (unsigned long *)memop;
1290
		c->src.val = 0;
M
Mike Day 已提交
1291 1292 1293 1294 1295
		rc = ops->read_emulated((unsigned long)c->src.ptr,
					&c->src.val,
					c->src.bytes,
					ctxt->vcpu);
		if (rc != 0)
1296 1297 1298 1299 1300 1301 1302 1303 1304
			goto done;
		c->src.orig_val = c->src.val;
	}

	if ((c->d & DstMask) == ImplicitOps)
		goto special_insn;


	if (c->dst.type == OP_MEM) {
1305
		c->dst.ptr = (unsigned long *)memop;
1306 1307
		c->dst.bytes = (c->d & ByteOp) ? 1 : c->op_bytes;
		c->dst.val = 0;
1308 1309
		if (c->d & BitOp) {
			unsigned long mask = ~(c->dst.bytes * 8 - 1);
1310

1311 1312
			c->dst.ptr = (void *)c->dst.ptr +
						   (c->src.val & mask) / 8;
1313
		}
1314 1315 1316 1317 1318
		if (!(c->d & Mov) &&
				   /* optimisation - avoid slow emulated read */
		    ((rc = ops->read_emulated((unsigned long)c->dst.ptr,
					   &c->dst.val,
					  c->dst.bytes, ctxt->vcpu)) != 0))
1319 1320
			goto done;
	}
1321
	c->dst.orig_val = c->dst.val;
1322

1323 1324
special_insn:

1325
	if (c->twobyte)
A
Avi Kivity 已提交
1326 1327
		goto twobyte_insn;

1328
	switch (c->b) {
A
Avi Kivity 已提交
1329 1330
	case 0x00 ... 0x05:
	      add:		/* add */
1331
		emulate_2op_SrcV("add", c->src, c->dst, ctxt->eflags);
A
Avi Kivity 已提交
1332 1333 1334
		break;
	case 0x08 ... 0x0d:
	      or:		/* or */
1335
		emulate_2op_SrcV("or", c->src, c->dst, ctxt->eflags);
A
Avi Kivity 已提交
1336 1337 1338
		break;
	case 0x10 ... 0x15:
	      adc:		/* adc */
1339
		emulate_2op_SrcV("adc", c->src, c->dst, ctxt->eflags);
A
Avi Kivity 已提交
1340 1341 1342
		break;
	case 0x18 ... 0x1d:
	      sbb:		/* sbb */
1343
		emulate_2op_SrcV("sbb", c->src, c->dst, ctxt->eflags);
A
Avi Kivity 已提交
1344
		break;
1345
	case 0x20 ... 0x23:
A
Avi Kivity 已提交
1346
	      and:		/* and */
1347
		emulate_2op_SrcV("and", c->src, c->dst, ctxt->eflags);
A
Avi Kivity 已提交
1348
		break;
1349
	case 0x24:              /* and al imm8 */
1350 1351 1352 1353 1354
		c->dst.type = OP_REG;
		c->dst.ptr = &c->regs[VCPU_REGS_RAX];
		c->dst.val = *(u8 *)c->dst.ptr;
		c->dst.bytes = 1;
		c->dst.orig_val = c->dst.val;
1355 1356
		goto and;
	case 0x25:              /* and ax imm16, or eax imm32 */
1357 1358 1359 1360 1361
		c->dst.type = OP_REG;
		c->dst.bytes = c->op_bytes;
		c->dst.ptr = &c->regs[VCPU_REGS_RAX];
		if (c->op_bytes == 2)
			c->dst.val = *(u16 *)c->dst.ptr;
1362
		else
1363 1364
			c->dst.val = *(u32 *)c->dst.ptr;
		c->dst.orig_val = c->dst.val;
1365
		goto and;
A
Avi Kivity 已提交
1366 1367
	case 0x28 ... 0x2d:
	      sub:		/* sub */
1368
		emulate_2op_SrcV("sub", c->src, c->dst, ctxt->eflags);
A
Avi Kivity 已提交
1369 1370 1371
		break;
	case 0x30 ... 0x35:
	      xor:		/* xor */
1372
		emulate_2op_SrcV("xor", c->src, c->dst, ctxt->eflags);
A
Avi Kivity 已提交
1373 1374 1375
		break;
	case 0x38 ... 0x3d:
	      cmp:		/* cmp */
1376
		emulate_2op_SrcV("cmp", c->src, c->dst, ctxt->eflags);
A
Avi Kivity 已提交
1377
		break;
1378 1379 1380 1381 1382 1383 1384 1385 1386 1387
	case 0x40 ... 0x47: /* inc r16/r32 */
		emulate_1op("inc", c->dst, ctxt->eflags);
		break;
	case 0x48 ... 0x4f: /* dec r16/r32 */
		emulate_1op("dec", c->dst, ctxt->eflags);
		break;
	case 0x50 ... 0x57:  /* push reg */
		c->dst.type  = OP_MEM;
		c->dst.bytes = c->op_bytes;
		c->dst.val = c->src.val;
1388
		register_address_increment(c, &c->regs[VCPU_REGS_RSP],
1389 1390
					   -c->op_bytes);
		c->dst.ptr = (void *) register_address(
1391
			c, ctxt->ss_base, c->regs[VCPU_REGS_RSP]);
1392 1393 1394
		break;
	case 0x58 ... 0x5f: /* pop reg */
	pop_instruction:
1395
		if ((rc = ops->read_std(register_address(c, ctxt->ss_base,
1396 1397 1398 1399
			c->regs[VCPU_REGS_RSP]), c->dst.ptr,
			c->op_bytes, ctxt->vcpu)) != 0)
			goto done;

1400
		register_address_increment(c, &c->regs[VCPU_REGS_RSP],
1401 1402 1403
					   c->op_bytes);
		c->dst.type = OP_NONE;	/* Disable writeback. */
		break;
A
Avi Kivity 已提交
1404
	case 0x63:		/* movsxd */
1405
		if (ctxt->mode != X86EMUL_MODE_PROT64)
A
Avi Kivity 已提交
1406
			goto cannot_emulate;
1407
		c->dst.val = (s32) c->src.val;
A
Avi Kivity 已提交
1408
		break;
1409
	case 0x68: /* push imm */
1410 1411 1412 1413 1414 1415 1416 1417 1418
	case 0x6a: /* push imm8 */
		emulate_push(ctxt);
		break;
	case 0x6c:		/* insb */
	case 0x6d:		/* insw/insd */
		 if (kvm_emulate_pio_string(ctxt->vcpu, NULL,
				1,
				(c->d & ByteOp) ? 1 : c->op_bytes,
				c->rep_prefix ?
1419
				address_mask(c, c->regs[VCPU_REGS_RCX]) : 1,
1420
				(ctxt->eflags & EFLG_DF),
1421
				register_address(c, ctxt->es_base,
1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434
						 c->regs[VCPU_REGS_RDI]),
				c->rep_prefix,
				c->regs[VCPU_REGS_RDX]) == 0) {
			c->eip = saved_eip;
			return -1;
		}
		return 0;
	case 0x6e:		/* outsb */
	case 0x6f:		/* outsw/outsd */
		if (kvm_emulate_pio_string(ctxt->vcpu, NULL,
				0,
				(c->d & ByteOp) ? 1 : c->op_bytes,
				c->rep_prefix ?
1435
				address_mask(c, c->regs[VCPU_REGS_RCX]) : 1,
1436
				(ctxt->eflags & EFLG_DF),
1437
				register_address(c, c->override_base ?
1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450
							*c->override_base :
							ctxt->ds_base,
						 c->regs[VCPU_REGS_RSI]),
				c->rep_prefix,
				c->regs[VCPU_REGS_RDX]) == 0) {
			c->eip = saved_eip;
			return -1;
		}
		return 0;
	case 0x70 ... 0x7f: /* jcc (short) */ {
		int rel = insn_fetch(s8, 1, c->eip);

		if (test_cc(c->b, ctxt->eflags))
1451
			jmp_rel(c, rel);
1452 1453
		break;
	}
A
Avi Kivity 已提交
1454
	case 0x80 ... 0x83:	/* Grp1 */
1455
		switch (c->modrm_reg) {
A
Avi Kivity 已提交
1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474
		case 0:
			goto add;
		case 1:
			goto or;
		case 2:
			goto adc;
		case 3:
			goto sbb;
		case 4:
			goto and;
		case 5:
			goto sub;
		case 6:
			goto xor;
		case 7:
			goto cmp;
		}
		break;
	case 0x84 ... 0x85:
1475
		emulate_2op_SrcV("test", c->src, c->dst, ctxt->eflags);
A
Avi Kivity 已提交
1476 1477
		break;
	case 0x86 ... 0x87:	/* xchg */
1478
	xchg:
A
Avi Kivity 已提交
1479
		/* Write back the register source. */
1480
		switch (c->dst.bytes) {
A
Avi Kivity 已提交
1481
		case 1:
1482
			*(u8 *) c->src.ptr = (u8) c->dst.val;
A
Avi Kivity 已提交
1483 1484
			break;
		case 2:
1485
			*(u16 *) c->src.ptr = (u16) c->dst.val;
A
Avi Kivity 已提交
1486 1487
			break;
		case 4:
1488
			*c->src.ptr = (u32) c->dst.val;
A
Avi Kivity 已提交
1489 1490
			break;	/* 64b reg: zero-extend */
		case 8:
1491
			*c->src.ptr = c->dst.val;
A
Avi Kivity 已提交
1492 1493 1494 1495 1496 1497
			break;
		}
		/*
		 * Write back the memory destination with implicit LOCK
		 * prefix.
		 */
1498 1499
		c->dst.val = c->src.val;
		c->lock_prefix = 1;
A
Avi Kivity 已提交
1500 1501
		break;
	case 0x88 ... 0x8b:	/* mov */
1502
		goto mov;
1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515
	case 0x8c: { /* mov r/m, sreg */
		struct kvm_segment segreg;

		if (c->modrm_reg <= 5)
			kvm_get_segment(ctxt->vcpu, &segreg, c->modrm_reg);
		else {
			printk(KERN_INFO "0x8c: Invalid segreg in modrm byte 0x%02x\n",
			       c->modrm);
			goto cannot_emulate;
		}
		c->dst.val = segreg.selector;
		break;
	}
N
Nitin A Kamble 已提交
1516
	case 0x8d: /* lea r16/r32, m */
1517
		c->dst.val = c->modrm_ea;
N
Nitin A Kamble 已提交
1518
		break;
1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540
	case 0x8e: { /* mov seg, r/m16 */
		uint16_t sel;
		int type_bits;
		int err;

		sel = c->src.val;
		if (c->modrm_reg <= 5) {
			type_bits = (c->modrm_reg == 1) ? 9 : 1;
			err = kvm_load_segment_descriptor(ctxt->vcpu, sel,
							  type_bits, c->modrm_reg);
		} else {
			printk(KERN_INFO "Invalid segreg in modrm byte 0x%02x\n",
					c->modrm);
			goto cannot_emulate;
		}

		if (err < 0)
			goto cannot_emulate;

		c->dst.type = OP_NONE;  /* Disable writeback. */
		break;
	}
A
Avi Kivity 已提交
1541
	case 0x8f:		/* pop (sole member of Grp1a) */
1542 1543
		rc = emulate_grp1a(ctxt, ops);
		if (rc != 0)
A
Avi Kivity 已提交
1544 1545
			goto done;
		break;
1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556
	case 0x90: /* nop / xchg r8,rax */
		if (!(c->rex_prefix & 1)) { /* nop */
			c->dst.type = OP_NONE;
			break;
		}
	case 0x91 ... 0x97: /* xchg reg,rax */
		c->src.type = c->dst.type = OP_REG;
		c->src.bytes = c->dst.bytes = c->op_bytes;
		c->src.ptr = (unsigned long *) &c->regs[VCPU_REGS_RAX];
		c->src.val = *(c->src.ptr);
		goto xchg;
N
Nitin A Kamble 已提交
1557
	case 0x9c: /* pushf */
1558
		c->src.val =  (unsigned long) ctxt->eflags;
1559 1560
		emulate_push(ctxt);
		break;
N
Nitin A Kamble 已提交
1561
	case 0x9d: /* popf */
1562
		c->dst.ptr = (unsigned long *) &ctxt->eflags;
N
Nitin A Kamble 已提交
1563
		goto pop_instruction;
1564 1565 1566 1567 1568 1569 1570
	case 0xa0 ... 0xa1:	/* mov */
		c->dst.ptr = (unsigned long *)&c->regs[VCPU_REGS_RAX];
		c->dst.val = c->src.val;
		break;
	case 0xa2 ... 0xa3:	/* mov */
		c->dst.val = (unsigned long)c->regs[VCPU_REGS_RAX];
		break;
A
Avi Kivity 已提交
1571
	case 0xa4 ... 0xa5:	/* movs */
1572 1573
		c->dst.type = OP_MEM;
		c->dst.bytes = (c->d & ByteOp) ? 1 : c->op_bytes;
1574
		c->dst.ptr = (unsigned long *)register_address(c,
1575 1576
						   ctxt->es_base,
						   c->regs[VCPU_REGS_RDI]);
1577
		if ((rc = ops->read_emulated(register_address(c,
1578 1579 1580 1581 1582
		      c->override_base ? *c->override_base :
					ctxt->ds_base,
					c->regs[VCPU_REGS_RSI]),
					&c->dst.val,
					c->dst.bytes, ctxt->vcpu)) != 0)
A
Avi Kivity 已提交
1583
			goto done;
1584
		register_address_increment(c, &c->regs[VCPU_REGS_RSI],
1585
				       (ctxt->eflags & EFLG_DF) ? -c->dst.bytes
1586
							   : c->dst.bytes);
1587
		register_address_increment(c, &c->regs[VCPU_REGS_RDI],
1588
				       (ctxt->eflags & EFLG_DF) ? -c->dst.bytes
1589
							   : c->dst.bytes);
A
Avi Kivity 已提交
1590 1591
		break;
	case 0xa6 ... 0xa7:	/* cmps */
1592 1593
		c->src.type = OP_NONE; /* Disable writeback. */
		c->src.bytes = (c->d & ByteOp) ? 1 : c->op_bytes;
1594
		c->src.ptr = (unsigned long *)register_address(c,
1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605
				c->override_base ? *c->override_base :
						   ctxt->ds_base,
						   c->regs[VCPU_REGS_RSI]);
		if ((rc = ops->read_emulated((unsigned long)c->src.ptr,
						&c->src.val,
						c->src.bytes,
						ctxt->vcpu)) != 0)
			goto done;

		c->dst.type = OP_NONE; /* Disable writeback. */
		c->dst.bytes = (c->d & ByteOp) ? 1 : c->op_bytes;
1606
		c->dst.ptr = (unsigned long *)register_address(c,
1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618
						   ctxt->es_base,
						   c->regs[VCPU_REGS_RDI]);
		if ((rc = ops->read_emulated((unsigned long)c->dst.ptr,
						&c->dst.val,
						c->dst.bytes,
						ctxt->vcpu)) != 0)
			goto done;

		DPRINTF("cmps: mem1=0x%p mem2=0x%p\n", c->src.ptr, c->dst.ptr);

		emulate_2op_SrcV("cmp", c->src, c->dst, ctxt->eflags);

1619
		register_address_increment(c, &c->regs[VCPU_REGS_RSI],
1620 1621
				       (ctxt->eflags & EFLG_DF) ? -c->src.bytes
								  : c->src.bytes);
1622
		register_address_increment(c, &c->regs[VCPU_REGS_RDI],
1623 1624 1625 1626
				       (ctxt->eflags & EFLG_DF) ? -c->dst.bytes
								  : c->dst.bytes);

		break;
A
Avi Kivity 已提交
1627
	case 0xaa ... 0xab:	/* stos */
1628 1629
		c->dst.type = OP_MEM;
		c->dst.bytes = (c->d & ByteOp) ? 1 : c->op_bytes;
1630
		c->dst.ptr = (unsigned long *)register_address(c,
1631 1632
						   ctxt->es_base,
						   c->regs[VCPU_REGS_RDI]);
1633
		c->dst.val = c->regs[VCPU_REGS_RAX];
1634
		register_address_increment(c, &c->regs[VCPU_REGS_RDI],
1635
				       (ctxt->eflags & EFLG_DF) ? -c->dst.bytes
1636
							   : c->dst.bytes);
A
Avi Kivity 已提交
1637 1638
		break;
	case 0xac ... 0xad:	/* lods */
1639 1640 1641
		c->dst.type = OP_REG;
		c->dst.bytes = (c->d & ByteOp) ? 1 : c->op_bytes;
		c->dst.ptr = (unsigned long *)&c->regs[VCPU_REGS_RAX];
1642
		if ((rc = ops->read_emulated(register_address(c,
1643 1644 1645 1646 1647 1648
				c->override_base ? *c->override_base :
						   ctxt->ds_base,
						 c->regs[VCPU_REGS_RSI]),
						 &c->dst.val,
						 c->dst.bytes,
						 ctxt->vcpu)) != 0)
A
Avi Kivity 已提交
1649
			goto done;
1650
		register_address_increment(c, &c->regs[VCPU_REGS_RSI],
1651
				       (ctxt->eflags & EFLG_DF) ? -c->dst.bytes
1652
							   : c->dst.bytes);
A
Avi Kivity 已提交
1653 1654 1655 1656
		break;
	case 0xae ... 0xaf:	/* scas */
		DPRINTF("Urk! I don't handle SCAS.\n");
		goto cannot_emulate;
1657 1658
	case 0xb8: /* mov r, imm */
		goto mov;
1659 1660 1661
	case 0xc0 ... 0xc1:
		emulate_grp2(ctxt);
		break;
1662 1663 1664
	case 0xc3: /* ret */
		c->dst.ptr = &c->eip;
		goto pop_instruction;
1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676
	case 0xc6 ... 0xc7:	/* mov (sole member of Grp11) */
	mov:
		c->dst.val = c->src.val;
		break;
	case 0xd0 ... 0xd1:	/* Grp2 */
		c->src.val = 1;
		emulate_grp2(ctxt);
		break;
	case 0xd2 ... 0xd3:	/* Grp2 */
		c->src.val = c->regs[VCPU_REGS_RCX];
		emulate_grp2(ctxt);
		break;
1677 1678
	case 0xe8: /* call (near) */ {
		long int rel;
1679
		switch (c->op_bytes) {
1680
		case 2:
1681
			rel = insn_fetch(s16, 2, c->eip);
1682 1683
			break;
		case 4:
1684
			rel = insn_fetch(s32, 4, c->eip);
1685 1686 1687 1688 1689
			break;
		default:
			DPRINTF("Call: Invalid op_bytes\n");
			goto cannot_emulate;
		}
1690
		c->src.val = (unsigned long) c->eip;
1691
		jmp_rel(c, rel);
1692
		c->op_bytes = c->ad_bytes;
1693 1694
		emulate_push(ctxt);
		break;
1695 1696
	}
	case 0xe9: /* jmp rel */
1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723
		goto jmp;
	case 0xea: /* jmp far */ {
		uint32_t eip;
		uint16_t sel;

		switch (c->op_bytes) {
		case 2:
			eip = insn_fetch(u16, 2, c->eip);
			break;
		case 4:
			eip = insn_fetch(u32, 4, c->eip);
			break;
		default:
			DPRINTF("jmp far: Invalid op_bytes\n");
			goto cannot_emulate;
		}
		sel = insn_fetch(u16, 2, c->eip);
		if (kvm_load_segment_descriptor(ctxt->vcpu, sel, 9, VCPU_SREG_CS) < 0) {
			DPRINTF("jmp far: Failed to load CS descriptor\n");
			goto cannot_emulate;
		}

		c->eip = eip;
		break;
	}
	case 0xeb:
	      jmp:		/* jmp rel short */
1724
		jmp_rel(c, c->src.val);
1725
		c->dst.type = OP_NONE; /* Disable writeback. */
1726
		break;
1727
	case 0xf4:              /* hlt */
1728
		ctxt->vcpu->arch.halt_request = 1;
1729 1730 1731 1732 1733 1734
		goto done;
	case 0xf5:	/* cmc */
		/* complement carry flag from eflags reg */
		ctxt->eflags ^= EFLG_CF;
		c->dst.type = OP_NONE;	/* Disable writeback. */
		break;
1735 1736 1737 1738 1739
	case 0xf6 ... 0xf7:	/* Grp3 */
		rc = emulate_grp3(ctxt, ops);
		if (rc != 0)
			goto done;
		break;
1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751
	case 0xf8: /* clc */
		ctxt->eflags &= ~EFLG_CF;
		c->dst.type = OP_NONE;	/* Disable writeback. */
		break;
	case 0xfa: /* cli */
		ctxt->eflags &= ~X86_EFLAGS_IF;
		c->dst.type = OP_NONE;	/* Disable writeback. */
		break;
	case 0xfb: /* sti */
		ctxt->eflags |= X86_EFLAGS_IF;
		c->dst.type = OP_NONE;	/* Disable writeback. */
		break;
1752 1753 1754 1755 1756
	case 0xfe ... 0xff:	/* Grp4/Grp5 */
		rc = emulate_grp45(ctxt, ops);
		if (rc != 0)
			goto done;
		break;
A
Avi Kivity 已提交
1757
	}
1758 1759 1760 1761 1762 1763 1764

writeback:
	rc = writeback(ctxt, ops);
	if (rc != 0)
		goto done;

	/* Commit shadow register state. */
1765 1766
	memcpy(ctxt->vcpu->arch.regs, c->regs, sizeof c->regs);
	ctxt->vcpu->arch.rip = c->eip;
1767 1768 1769 1770 1771 1772 1773

done:
	if (rc == X86EMUL_UNHANDLEABLE) {
		c->eip = saved_eip;
		return -1;
	}
	return 0;
A
Avi Kivity 已提交
1774 1775

twobyte_insn:
1776
	switch (c->b) {
A
Avi Kivity 已提交
1777
	case 0x01: /* lgdt, lidt, lmsw */
1778
		switch (c->modrm_reg) {
A
Avi Kivity 已提交
1779 1780 1781
			u16 size;
			unsigned long address;

1782
		case 0: /* vmcall */
1783
			if (c->modrm_mod != 3 || c->modrm_rm != 1)
1784 1785
				goto cannot_emulate;

1786 1787 1788 1789
			rc = kvm_fix_hypercall(ctxt->vcpu);
			if (rc)
				goto done;

1790 1791
			/* Let the processor re-execute the fixed hypercall */
			c->eip = ctxt->vcpu->arch.rip;
1792 1793
			/* Disable writeback. */
			c->dst.type = OP_NONE;
1794
			break;
A
Avi Kivity 已提交
1795
		case 2: /* lgdt */
1796 1797
			rc = read_descriptor(ctxt, ops, c->src.ptr,
					     &size, &address, c->op_bytes);
A
Avi Kivity 已提交
1798 1799 1800
			if (rc)
				goto done;
			realmode_lgdt(ctxt->vcpu, size, address);
1801 1802
			/* Disable writeback. */
			c->dst.type = OP_NONE;
A
Avi Kivity 已提交
1803
			break;
1804
		case 3: /* lidt/vmmcall */
1805
			if (c->modrm_mod == 3 && c->modrm_rm == 1) {
1806 1807 1808 1809
				rc = kvm_fix_hypercall(ctxt->vcpu);
				if (rc)
					goto done;
				kvm_emulate_hypercall(ctxt->vcpu);
1810
			} else {
1811
				rc = read_descriptor(ctxt, ops, c->src.ptr,
1812
						     &size, &address,
1813
						     c->op_bytes);
1814 1815 1816 1817
				if (rc)
					goto done;
				realmode_lidt(ctxt->vcpu, size, address);
			}
1818 1819
			/* Disable writeback. */
			c->dst.type = OP_NONE;
A
Avi Kivity 已提交
1820 1821
			break;
		case 4: /* smsw */
1822 1823
			c->dst.bytes = 2;
			c->dst.val = realmode_get_cr(ctxt->vcpu, 0);
A
Avi Kivity 已提交
1824 1825
			break;
		case 6: /* lmsw */
1826 1827
			realmode_lmsw(ctxt->vcpu, (u16)c->src.val,
				      &ctxt->eflags);
1828
			c->dst.type = OP_NONE;
A
Avi Kivity 已提交
1829 1830
			break;
		case 7: /* invlpg*/
1831
			emulate_invlpg(ctxt->vcpu, memop);
1832 1833
			/* Disable writeback. */
			c->dst.type = OP_NONE;
A
Avi Kivity 已提交
1834 1835 1836 1837 1838
			break;
		default:
			goto cannot_emulate;
		}
		break;
1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855
	case 0x06:
		emulate_clts(ctxt->vcpu);
		c->dst.type = OP_NONE;
		break;
	case 0x08:		/* invd */
	case 0x09:		/* wbinvd */
	case 0x0d:		/* GrpP (prefetch) */
	case 0x18:		/* Grp16 (prefetch/nop) */
		c->dst.type = OP_NONE;
		break;
	case 0x20: /* mov cr, reg */
		if (c->modrm_mod != 3)
			goto cannot_emulate;
		c->regs[c->modrm_rm] =
				realmode_get_cr(ctxt->vcpu, c->modrm_reg);
		c->dst.type = OP_NONE;	/* no writeback */
		break;
A
Avi Kivity 已提交
1856
	case 0x21: /* mov from dr to reg */
1857
		if (c->modrm_mod != 3)
A
Avi Kivity 已提交
1858
			goto cannot_emulate;
1859
		rc = emulator_get_dr(ctxt, c->modrm_reg, &c->regs[c->modrm_rm]);
1860 1861 1862
		if (rc)
			goto cannot_emulate;
		c->dst.type = OP_NONE;	/* no writeback */
A
Avi Kivity 已提交
1863
		break;
1864 1865 1866 1867 1868 1869 1870
	case 0x22: /* mov reg, cr */
		if (c->modrm_mod != 3)
			goto cannot_emulate;
		realmode_set_cr(ctxt->vcpu,
				c->modrm_reg, c->modrm_val, &ctxt->eflags);
		c->dst.type = OP_NONE;
		break;
A
Avi Kivity 已提交
1871
	case 0x23: /* mov from reg to dr */
1872
		if (c->modrm_mod != 3)
A
Avi Kivity 已提交
1873
			goto cannot_emulate;
1874 1875
		rc = emulator_set_dr(ctxt, c->modrm_reg,
				     c->regs[c->modrm_rm]);
1876 1877 1878
		if (rc)
			goto cannot_emulate;
		c->dst.type = OP_NONE;	/* no writeback */
A
Avi Kivity 已提交
1879
		break;
1880 1881 1882 1883 1884 1885
	case 0x30:
		/* wrmsr */
		msr_data = (u32)c->regs[VCPU_REGS_RAX]
			| ((u64)c->regs[VCPU_REGS_RDX] << 32);
		rc = kvm_set_msr(ctxt->vcpu, c->regs[VCPU_REGS_RCX], msr_data);
		if (rc) {
1886
			kvm_inject_gp(ctxt->vcpu, 0);
1887
			c->eip = ctxt->vcpu->arch.rip;
1888 1889 1890 1891 1892 1893 1894 1895
		}
		rc = X86EMUL_CONTINUE;
		c->dst.type = OP_NONE;
		break;
	case 0x32:
		/* rdmsr */
		rc = kvm_get_msr(ctxt->vcpu, c->regs[VCPU_REGS_RCX], &msr_data);
		if (rc) {
1896
			kvm_inject_gp(ctxt->vcpu, 0);
1897
			c->eip = ctxt->vcpu->arch.rip;
1898 1899 1900 1901 1902 1903 1904
		} else {
			c->regs[VCPU_REGS_RAX] = (u32)msr_data;
			c->regs[VCPU_REGS_RDX] = msr_data >> 32;
		}
		rc = X86EMUL_CONTINUE;
		c->dst.type = OP_NONE;
		break;
A
Avi Kivity 已提交
1905
	case 0x40 ... 0x4f:	/* cmov */
1906
		c->dst.val = c->dst.orig_val = c->src.val;
1907 1908
		if (!test_cc(c->b, ctxt->eflags))
			c->dst.type = OP_NONE; /* no writeback */
A
Avi Kivity 已提交
1909
		break;
1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927
	case 0x80 ... 0x8f: /* jnz rel, etc*/ {
		long int rel;

		switch (c->op_bytes) {
		case 2:
			rel = insn_fetch(s16, 2, c->eip);
			break;
		case 4:
			rel = insn_fetch(s32, 4, c->eip);
			break;
		case 8:
			rel = insn_fetch(s64, 8, c->eip);
			break;
		default:
			DPRINTF("jnz: Invalid op_bytes\n");
			goto cannot_emulate;
		}
		if (test_cc(c->b, ctxt->eflags))
1928
			jmp_rel(c, rel);
1929 1930 1931
		c->dst.type = OP_NONE;
		break;
	}
1932 1933
	case 0xa3:
	      bt:		/* bt */
Q
Qing He 已提交
1934
		c->dst.type = OP_NONE;
1935 1936
		/* only subword offset */
		c->src.val &= (c->dst.bytes << 3) - 1;
1937
		emulate_2op_SrcV_nobyte("bt", c->src, c->dst, ctxt->eflags);
1938 1939 1940
		break;
	case 0xab:
	      bts:		/* bts */
1941 1942
		/* only subword offset */
		c->src.val &= (c->dst.bytes << 3) - 1;
1943
		emulate_2op_SrcV_nobyte("bts", c->src, c->dst, ctxt->eflags);
1944
		break;
A
Avi Kivity 已提交
1945 1946 1947 1948 1949
	case 0xb0 ... 0xb1:	/* cmpxchg */
		/*
		 * Save real source value, then compare EAX against
		 * destination.
		 */
1950 1951
		c->src.orig_val = c->src.val;
		c->src.val = c->regs[VCPU_REGS_RAX];
1952 1953
		emulate_2op_SrcV("cmp", c->src, c->dst, ctxt->eflags);
		if (ctxt->eflags & EFLG_ZF) {
A
Avi Kivity 已提交
1954
			/* Success: write back to memory. */
1955
			c->dst.val = c->src.orig_val;
A
Avi Kivity 已提交
1956 1957
		} else {
			/* Failure: write the value we saw to EAX. */
1958 1959
			c->dst.type = OP_REG;
			c->dst.ptr = (unsigned long *)&c->regs[VCPU_REGS_RAX];
A
Avi Kivity 已提交
1960 1961 1962 1963
		}
		break;
	case 0xb3:
	      btr:		/* btr */
1964 1965
		/* only subword offset */
		c->src.val &= (c->dst.bytes << 3) - 1;
1966
		emulate_2op_SrcV_nobyte("btr", c->src, c->dst, ctxt->eflags);
A
Avi Kivity 已提交
1967 1968
		break;
	case 0xb6 ... 0xb7:	/* movzx */
1969 1970 1971
		c->dst.bytes = c->op_bytes;
		c->dst.val = (c->d & ByteOp) ? (u8) c->src.val
						       : (u16) c->src.val;
A
Avi Kivity 已提交
1972 1973
		break;
	case 0xba:		/* Grp8 */
1974
		switch (c->modrm_reg & 3) {
A
Avi Kivity 已提交
1975 1976 1977 1978 1979 1980 1981 1982 1983 1984
		case 0:
			goto bt;
		case 1:
			goto bts;
		case 2:
			goto btr;
		case 3:
			goto btc;
		}
		break;
1985 1986
	case 0xbb:
	      btc:		/* btc */
1987 1988
		/* only subword offset */
		c->src.val &= (c->dst.bytes << 3) - 1;
1989
		emulate_2op_SrcV_nobyte("btc", c->src, c->dst, ctxt->eflags);
1990
		break;
A
Avi Kivity 已提交
1991
	case 0xbe ... 0xbf:	/* movsx */
1992 1993 1994
		c->dst.bytes = c->op_bytes;
		c->dst.val = (c->d & ByteOp) ? (s8) c->src.val :
							(s16) c->src.val;
A
Avi Kivity 已提交
1995
		break;
1996
	case 0xc3:		/* movnti */
1997 1998 1999
		c->dst.bytes = c->op_bytes;
		c->dst.val = (c->op_bytes == 4) ? (u32) c->src.val :
							(u64) c->src.val;
2000
		break;
A
Avi Kivity 已提交
2001
	case 0xc7:		/* Grp9 (cmpxchg8b) */
2002
		rc = emulate_grp9(ctxt, ops, memop);
2003 2004
		if (rc != 0)
			goto done;
2005
		c->dst.type = OP_NONE;
2006
		break;
A
Avi Kivity 已提交
2007 2008 2009 2010
	}
	goto writeback;

cannot_emulate:
2011
	DPRINTF("Cannot emulate %02x\n", c->b);
2012
	c->eip = saved_eip;
A
Avi Kivity 已提交
2013 2014
	return -1;
}