x86_emulate.c 47.1 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 28
#else
#include "kvm.h"
29
#include "x86.h"
A
Avi Kivity 已提交
30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64
#define DPRINTF(x...) do {} while (0)
#endif
#include "x86_emulate.h"
#include <linux/module.h>

/*
 * 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)
65
#define BitOp       (1<<8)
66
#define MemAbs      (1<<9)      /* Memory operand is absolute displacement */
A
Avi Kivity 已提交
67

68
static u16 opcode_table[256] = {
A
Avi Kivity 已提交
69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87
	/* 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,
88
	SrcImmByte, SrcImm, 0, 0,
A
Avi Kivity 已提交
89 90 91 92 93 94 95 96 97 98 99 100
	/* 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,
101
	/* 0x40 - 0x47 */
102
	DstReg, DstReg, DstReg, DstReg, DstReg, DstReg, DstReg, DstReg,
103
	/* 0x48 - 0x4F */
104
	DstReg, DstReg, DstReg, DstReg,	DstReg, DstReg, DstReg, DstReg,
105
	/* 0x50 - 0x57 */
106
	SrcReg, SrcReg, SrcReg, SrcReg, SrcReg, SrcReg, SrcReg, SrcReg,
107
	/* 0x58 - 0x5F */
108
	DstReg, DstReg, DstReg, DstReg,	DstReg, DstReg, DstReg, DstReg,
N
Nitin A Kamble 已提交
109
	/* 0x60 - 0x67 */
A
Avi Kivity 已提交
110
	0, 0, 0, DstReg | SrcMem32 | ModRM | Mov /* movsxd (x86/64) */ ,
N
Nitin A Kamble 已提交
111 112 113
	0, 0, 0, 0,
	/* 0x68 - 0x6F */
	0, 0, ImplicitOps|Mov, 0,
114 115
	SrcNone  | ByteOp  | ImplicitOps, SrcNone  | ImplicitOps, /* insb, insw/insd */
	SrcNone  | ByteOp  | ImplicitOps, SrcNone  | ImplicitOps, /* outsb, outsw/outsd */
116 117 118 119 120 121
	/* 0x70 - 0x77 */
	ImplicitOps, ImplicitOps, ImplicitOps, ImplicitOps,
	ImplicitOps, ImplicitOps, ImplicitOps, ImplicitOps,
	/* 0x78 - 0x7F */
	ImplicitOps, ImplicitOps, ImplicitOps, ImplicitOps,
	ImplicitOps, ImplicitOps, ImplicitOps, ImplicitOps,
A
Avi Kivity 已提交
122 123 124 125 126 127 128 129
	/* 0x80 - 0x87 */
	ByteOp | DstMem | SrcImm | ModRM, DstMem | SrcImm | ModRM,
	ByteOp | DstMem | SrcImm | ModRM, DstMem | SrcImmByte | ModRM,
	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,
N
Nitin A Kamble 已提交
130
	0, ModRM | DstReg, 0, DstMem | SrcNone | ModRM | Mov,
A
Avi Kivity 已提交
131
	/* 0x90 - 0x9F */
N
Nitin A Kamble 已提交
132
	0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, ImplicitOps, ImplicitOps, 0, 0,
A
Avi Kivity 已提交
133
	/* 0xA0 - 0xA7 */
134 135
	ByteOp | DstReg | SrcMem | Mov | MemAbs, DstReg | SrcMem | Mov | MemAbs,
	ByteOp | DstMem | SrcReg | Mov | MemAbs, DstMem | SrcReg | Mov | MemAbs,
A
Avi Kivity 已提交
136 137 138 139 140 141 142 143 144
	ByteOp | ImplicitOps | Mov, ImplicitOps | Mov,
	ByteOp | ImplicitOps, ImplicitOps,
	/* 0xA8 - 0xAF */
	0, 0, ByteOp | ImplicitOps | Mov, ImplicitOps | Mov,
	ByteOp | ImplicitOps | Mov, ImplicitOps | Mov,
	ByteOp | ImplicitOps, ImplicitOps,
	/* 0xB0 - 0xBF */
	0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
	/* 0xC0 - 0xC7 */
145 146 147
	ByteOp | DstMem | SrcImm | ModRM, DstMem | SrcImmByte | ModRM,
	0, ImplicitOps, 0, 0,
	ByteOp | DstMem | SrcImm | ModRM | Mov, DstMem | SrcImm | ModRM | Mov,
A
Avi Kivity 已提交
148 149 150 151 152 153 154 155
	/* 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,
156 157 158
	/* 0xE0 - 0xE7 */
	0, 0, 0, 0, 0, 0, 0, 0,
	/* 0xE8 - 0xEF */
N
Nitin A Kamble 已提交
159
	ImplicitOps, SrcImm|ImplicitOps, 0, SrcImmByte|ImplicitOps, 0, 0, 0, 0,
A
Avi Kivity 已提交
160 161
	/* 0xF0 - 0xF7 */
	0, 0, 0, 0,
162
	ImplicitOps, ImplicitOps,
163
	ByteOp | DstMem | SrcNone | ModRM, DstMem | SrcNone | ModRM,
A
Avi Kivity 已提交
164
	/* 0xF8 - 0xFF */
165
	ImplicitOps, 0, ImplicitOps, ImplicitOps,
A
Avi Kivity 已提交
166 167 168
	0, 0, ByteOp | DstMem | SrcNone | ModRM, DstMem | SrcNone | ModRM
};

169
static u16 twobyte_table[256] = {
A
Avi Kivity 已提交
170 171
	/* 0x00 - 0x0F */
	0, SrcMem | ModRM | DstReg, 0, 0, 0, 0, ImplicitOps, 0,
A
Avi Kivity 已提交
172
	ImplicitOps, ImplicitOps, 0, 0, 0, ImplicitOps | ModRM, 0, 0,
A
Avi Kivity 已提交
173 174 175 176 177 178
	/* 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 */
179
	ImplicitOps, 0, ImplicitOps, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
A
Avi Kivity 已提交
180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196
	/* 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 */
197 198 199 200
	ImplicitOps, ImplicitOps, ImplicitOps, ImplicitOps,
	ImplicitOps, ImplicitOps, ImplicitOps, ImplicitOps,
	ImplicitOps, ImplicitOps, ImplicitOps, ImplicitOps,
	ImplicitOps, ImplicitOps, ImplicitOps, ImplicitOps,
A
Avi Kivity 已提交
201 202 203
	/* 0x90 - 0x9F */
	0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
	/* 0xA0 - 0xA7 */
204
	0, 0, 0, DstMem | SrcReg | ModRM | BitOp, 0, 0, 0, 0,
A
Avi Kivity 已提交
205
	/* 0xA8 - 0xAF */
206
	0, 0, 0, DstMem | SrcReg | ModRM | BitOp, 0, 0, 0, 0,
A
Avi Kivity 已提交
207 208
	/* 0xB0 - 0xB7 */
	ByteOp | DstMem | SrcReg | ModRM, DstMem | SrcReg | ModRM, 0,
209
	    DstMem | SrcReg | ModRM | BitOp,
A
Avi Kivity 已提交
210 211 212
	0, 0, ByteOp | DstReg | SrcMem | ModRM | Mov,
	    DstReg | SrcMem16 | ModRM | Mov,
	/* 0xB8 - 0xBF */
213
	0, 0, DstMem | SrcImmByte | ModRM, DstMem | SrcReg | ModRM | BitOp,
A
Avi Kivity 已提交
214 215 216
	0, 0, ByteOp | DstReg | SrcMem | ModRM | Mov,
	    DstReg | SrcMem16 | ModRM | Mov,
	/* 0xC0 - 0xCF */
217 218
	0, 0, 0, DstMem | SrcReg | ModRM | Mov, 0, 0, 0, ImplicitOps | ModRM,
	0, 0, 0, 0, 0, 0, 0, 0,
A
Avi Kivity 已提交
219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 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
};

/* 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.
 */

243
#if defined(CONFIG_X86_64)
A
Avi Kivity 已提交
244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289
#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. */
#define _PRE_EFLAGS(_sav, _msk, _tmp) \
	/* EFLAGS = (_sav & _msk) | (EFLAGS & ~_msk); */	\
	"push %"_sav"; "					\
	"movl %"_msk",%"_LO32 _tmp"; "				\
	"andl %"_LO32 _tmp",("_STK"); "				\
	"pushf; "						\
	"notl %"_LO32 _tmp"; "					\
	"andl %"_LO32 _tmp",("_STK"); "				\
	"pop  %"_tmp"; "					\
	"orl  %"_LO32 _tmp",("_STK"); "				\
	"popf; "						\
	/* _sav &= ~msk; */					\
	"movl %"_msk",%"_LO32 _tmp"; "				\
	"notl %"_LO32 _tmp"; "					\
	"andl %"_LO32 _tmp",%"_sav"; "

/* 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 已提交
290
				_PRE_EFLAGS("0", "4", "2")		    \
A
Avi Kivity 已提交
291
				_op"w %"_wx"3,%1; "			    \
M
Mike Day 已提交
292
				_POST_EFLAGS("0", "4", "2")		    \
A
Avi Kivity 已提交
293 294
				: "=m" (_eflags), "=m" ((_dst).val),        \
				  "=&r" (_tmp)				    \
M
Mike Day 已提交
295
				: _wy ((_src).val), "i" (EFLAGS_MASK));     \
A
Avi Kivity 已提交
296 297 298
			break;						    \
		case 4:							    \
			__asm__ __volatile__ (				    \
M
Mike Day 已提交
299
				_PRE_EFLAGS("0", "4", "2")		    \
A
Avi Kivity 已提交
300
				_op"l %"_lx"3,%1; "			    \
M
Mike Day 已提交
301
				_POST_EFLAGS("0", "4", "2")		    \
A
Avi Kivity 已提交
302 303
				: "=m" (_eflags), "=m" ((_dst).val),	    \
				  "=&r" (_tmp)				    \
M
Mike Day 已提交
304
				: _ly ((_src).val), "i" (EFLAGS_MASK));     \
A
Avi Kivity 已提交
305 306 307 308 309 310 311 312 313 314 315
			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 {								     \
		unsigned long _tmp;					     \
M
Mike Day 已提交
316
		switch ((_dst).bytes) {				             \
A
Avi Kivity 已提交
317 318
		case 1:							     \
			__asm__ __volatile__ (				     \
M
Mike Day 已提交
319
				_PRE_EFLAGS("0", "4", "2")		     \
A
Avi Kivity 已提交
320
				_op"b %"_bx"3,%1; "			     \
M
Mike Day 已提交
321
				_POST_EFLAGS("0", "4", "2")		     \
A
Avi Kivity 已提交
322 323
				: "=m" (_eflags), "=m" ((_dst).val),	     \
				  "=&r" (_tmp)				     \
M
Mike Day 已提交
324
				: _by ((_src).val), "i" (EFLAGS_MASK));      \
A
Avi Kivity 已提交
325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352
			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 已提交
353
		switch ((_dst).bytes) {				        \
A
Avi Kivity 已提交
354 355
		case 1:							\
			__asm__ __volatile__ (				\
M
Mike Day 已提交
356
				_PRE_EFLAGS("0", "3", "2")		\
A
Avi Kivity 已提交
357
				_op"b %1; "				\
M
Mike Day 已提交
358
				_POST_EFLAGS("0", "3", "2")		\
A
Avi Kivity 已提交
359 360
				: "=m" (_eflags), "=m" ((_dst).val),	\
				  "=&r" (_tmp)				\
M
Mike Day 已提交
361
				: "i" (EFLAGS_MASK));			\
A
Avi Kivity 已提交
362 363 364
			break;						\
		case 2:							\
			__asm__ __volatile__ (				\
M
Mike Day 已提交
365
				_PRE_EFLAGS("0", "3", "2")		\
A
Avi Kivity 已提交
366
				_op"w %1; "				\
M
Mike Day 已提交
367
				_POST_EFLAGS("0", "3", "2")		\
A
Avi Kivity 已提交
368 369
				: "=m" (_eflags), "=m" ((_dst).val),	\
				  "=&r" (_tmp)				\
M
Mike Day 已提交
370
				: "i" (EFLAGS_MASK));			\
A
Avi Kivity 已提交
371 372 373
			break;						\
		case 4:							\
			__asm__ __volatile__ (				\
M
Mike Day 已提交
374
				_PRE_EFLAGS("0", "3", "2")		\
A
Avi Kivity 已提交
375
				_op"l %1; "				\
M
Mike Day 已提交
376
				_POST_EFLAGS("0", "3", "2")		\
A
Avi Kivity 已提交
377 378
				: "=m" (_eflags), "=m" ((_dst).val),	\
				  "=&r" (_tmp)				\
M
Mike Day 已提交
379
				: "i" (EFLAGS_MASK));			\
A
Avi Kivity 已提交
380 381 382 383 384 385 386 387
			break;						\
		case 8:							\
			__emulate_1op_8byte(_op, _dst, _eflags);	\
			break;						\
		}							\
	} while (0)

/* Emulate an instruction with quadword operands (x86/64 only). */
388
#if defined(CONFIG_X86_64)
A
Avi Kivity 已提交
389 390 391
#define __emulate_2op_8byte(_op, _src, _dst, _eflags, _qx, _qy)           \
	do {								  \
		__asm__ __volatile__ (					  \
M
Mike Day 已提交
392
			_PRE_EFLAGS("0", "4", "2")			  \
A
Avi Kivity 已提交
393
			_op"q %"_qx"3,%1; "				  \
M
Mike Day 已提交
394
			_POST_EFLAGS("0", "4", "2")			  \
A
Avi Kivity 已提交
395
			: "=m" (_eflags), "=m" ((_dst).val), "=&r" (_tmp) \
M
Mike Day 已提交
396
			: _qy ((_src).val), "i" (EFLAGS_MASK));		\
A
Avi Kivity 已提交
397 398 399 400 401
	} while (0)

#define __emulate_1op_8byte(_op, _dst, _eflags)                           \
	do {								  \
		__asm__ __volatile__ (					  \
M
Mike Day 已提交
402
			_PRE_EFLAGS("0", "3", "2")			  \
A
Avi Kivity 已提交
403
			_op"q %1; "					  \
M
Mike Day 已提交
404
			_POST_EFLAGS("0", "3", "2")			  \
A
Avi Kivity 已提交
405
			: "=m" (_eflags), "=m" ((_dst).val), "=&r" (_tmp) \
M
Mike Day 已提交
406
			: "i" (EFLAGS_MASK));				  \
A
Avi Kivity 已提交
407 408 409 410 411 412 413 414 415 416 417
	} 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;						\
	rc = ops->read_std((unsigned long)(_eip) + ctxt->cs_base, &_x,	\
M
Mike Day 已提交
418 419
			   (_size), ctxt->vcpu);			\
	if (rc != 0)							\
A
Avi Kivity 已提交
420 421 422 423 424 425
		goto done;						\
	(_eip) += (_size);						\
	(_type)_x;							\
})

/* Access/update address held in a register, based on addressing mode. */
426
#define address_mask(reg)						\
427 428
	((c->ad_bytes == sizeof(unsigned long)) ? 			\
		(reg) :	((reg) & ((1UL << (c->ad_bytes << 3)) - 1)))
A
Avi Kivity 已提交
429
#define register_address(base, reg)                                     \
430
	((base) + address_mask(reg))
A
Avi Kivity 已提交
431 432 433 434
#define register_address_increment(reg, inc)                            \
	do {								\
		/* signed type ensures sign extension to long */        \
		int _inc = (inc);					\
435
		if (c->ad_bytes == sizeof(unsigned long))		\
A
Avi Kivity 已提交
436 437
			(reg) += _inc;					\
		else							\
438 439 440 441
			(reg) = ((reg) & 				\
				 ~((1UL << (c->ad_bytes << 3)) - 1)) |	\
				(((reg) + _inc) &			\
				 ((1UL << (c->ad_bytes << 3)) - 1));	\
A
Avi Kivity 已提交
442 443
	} while (0)

444 445
#define JMP_REL(rel) 							\
	do {								\
446
		register_address_increment(c->eip, rel);		\
447 448
	} while (0)

449 450 451 452 453 454 455
/*
 * 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 已提交
456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474
{
	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;
475 476
	rc = ops->read_std((unsigned long)ptr, (unsigned long *)size, 2,
			   ctxt->vcpu);
A
Avi Kivity 已提交
477 478
	if (rc)
		return rc;
479 480
	rc = ops->read_std((unsigned long)ptr + 2, address, op_bytes,
			   ctxt->vcpu);
A
Avi Kivity 已提交
481 482 483
	return rc;
}

484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518
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));
}

519 520 521 522
static void decode_register_operand(struct operand *op,
				    struct decode_cache *c,
				    int inhibit_bytereg)
{
523
	unsigned reg = c->modrm_reg;
524
	int highbyte_regs = c->rex_prefix == 0;
525 526 527

	if (!(c->d & ModRM))
		reg = (c->b & 7) | ((c->rex_prefix & 1) << 3);
528 529
	op->type = OP_REG;
	if ((c->d & ByteOp) && !inhibit_bytereg) {
530
		op->ptr = decode_register(reg, c->regs, highbyte_regs);
531 532 533
		op->val = *(u8 *)op->ptr;
		op->bytes = 1;
	} else {
534
		op->ptr = decode_register(reg, c->regs, 0);
535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550
		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;
}

551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 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 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 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
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) {
		c->modrm_val = *(unsigned long *)
			decode_register(c->modrm_rm, c->regs, c->d & ByteOp);
		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. */
		switch (c->modrm_rm) {
		case 4:
		case 12:
			sib = insn_fetch(u8, 1, c->eip);
			index_reg |= (sib >> 3) & 7;
			base_reg |= sib & 7;
			scale = sib >> 6;

			switch (base_reg) {
			case 5:
				if (c->modrm_mod != 0)
					c->modrm_ea += c->regs[base_reg];
				else
					c->modrm_ea +=
						insn_fetch(s32, 4, c->eip);
				break;
			default:
				c->modrm_ea += c->regs[base_reg];
			}
			switch (index_reg) {
			case 4:
				break;
			default:
				c->modrm_ea += c->regs[index_reg] << scale;
			}
			break;
		case 5:
			if (c->modrm_mod != 0)
				c->modrm_ea += c->regs[c->modrm_rm];
			else if (ctxt->mode == X86EMUL_MODE_PROT64)
				rip_relative = 1;
			break;
		default:
			c->modrm_ea += c->regs[c->modrm_rm];
			break;
		}
		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 已提交
721
int
722
x86_decode_insn(struct x86_emulate_ctxt *ctxt, struct x86_emulate_ops *ops)
A
Avi Kivity 已提交
723
{
724
	struct decode_cache *c = &ctxt->decode;
A
Avi Kivity 已提交
725 726 727 728 729
	int rc = 0;
	int mode = ctxt->mode;

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

730 731 732
	memset(c, 0, sizeof(struct decode_cache));
	c->eip = ctxt->vcpu->rip;
	memcpy(c->regs, ctxt->vcpu->regs, sizeof c->regs);
A
Avi Kivity 已提交
733 734 735 736

	switch (mode) {
	case X86EMUL_MODE_REAL:
	case X86EMUL_MODE_PROT16:
737
		c->op_bytes = c->ad_bytes = 2;
A
Avi Kivity 已提交
738 739
		break;
	case X86EMUL_MODE_PROT32:
740
		c->op_bytes = c->ad_bytes = 4;
A
Avi Kivity 已提交
741
		break;
742
#ifdef CONFIG_X86_64
A
Avi Kivity 已提交
743
	case X86EMUL_MODE_PROT64:
744 745
		c->op_bytes = 4;
		c->ad_bytes = 8;
A
Avi Kivity 已提交
746 747 748 749 750 751 752
		break;
#endif
	default:
		return -1;
	}

	/* Legacy prefixes. */
753
	for (;;) {
754
		switch (c->b = insn_fetch(u8, 1, c->eip)) {
A
Avi Kivity 已提交
755
		case 0x66:	/* operand-size override */
756
			c->op_bytes ^= 6;	/* switch between 2/4 bytes */
A
Avi Kivity 已提交
757 758 759
			break;
		case 0x67:	/* address-size override */
			if (mode == X86EMUL_MODE_PROT64)
760 761
				/* switch between 4/8 bytes */
				c->ad_bytes ^= 12;
A
Avi Kivity 已提交
762
			else
763 764
				/* switch between 2/4 bytes */
				c->ad_bytes ^= 6;
A
Avi Kivity 已提交
765 766
			break;
		case 0x2e:	/* CS override */
767
			c->override_base = &ctxt->cs_base;
A
Avi Kivity 已提交
768 769
			break;
		case 0x3e:	/* DS override */
770
			c->override_base = &ctxt->ds_base;
A
Avi Kivity 已提交
771 772
			break;
		case 0x26:	/* ES override */
773
			c->override_base = &ctxt->es_base;
A
Avi Kivity 已提交
774 775
			break;
		case 0x64:	/* FS override */
776
			c->override_base = &ctxt->fs_base;
A
Avi Kivity 已提交
777 778
			break;
		case 0x65:	/* GS override */
779
			c->override_base = &ctxt->gs_base;
A
Avi Kivity 已提交
780 781
			break;
		case 0x36:	/* SS override */
782
			c->override_base = &ctxt->ss_base;
A
Avi Kivity 已提交
783
			break;
784 785 786
		case 0x40 ... 0x4f: /* REX */
			if (mode != X86EMUL_MODE_PROT64)
				goto done_prefixes;
787
			c->rex_prefix = c->b;
788
			continue;
A
Avi Kivity 已提交
789
		case 0xf0:	/* LOCK */
790
			c->lock_prefix = 1;
A
Avi Kivity 已提交
791
			break;
792
		case 0xf2:	/* REPNE/REPNZ */
A
Avi Kivity 已提交
793
		case 0xf3:	/* REP/REPE/REPZ */
794
			c->rep_prefix = 1;
A
Avi Kivity 已提交
795 796 797 798
			break;
		default:
			goto done_prefixes;
		}
799 800 801

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

802
		c->rex_prefix = 0;
A
Avi Kivity 已提交
803 804 805 806 807
	}

done_prefixes:

	/* REX prefix. */
808
	if (c->rex_prefix)
809
		if (c->rex_prefix & 8)
810
			c->op_bytes = 8;	/* REX.W */
A
Avi Kivity 已提交
811 812

	/* Opcode byte(s). */
813 814
	c->d = opcode_table[c->b];
	if (c->d == 0) {
A
Avi Kivity 已提交
815
		/* Two-byte opcode? */
816 817 818 819
		if (c->b == 0x0f) {
			c->twobyte = 1;
			c->b = insn_fetch(u8, 1, c->eip);
			c->d = twobyte_table[c->b];
A
Avi Kivity 已提交
820 821 822
		}

		/* Unrecognised? */
823 824 825 826
		if (c->d == 0) {
			DPRINTF("Cannot emulate %02x\n", c->b);
			return -1;
		}
A
Avi Kivity 已提交
827 828 829
	}

	/* ModRM and SIB bytes. */
830 831 832 833 834 835
	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 已提交
836

837 838 839 840 841 842 843 844 845 846 847 848
	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 已提交
849 850 851 852
	/*
	 * Decode and fetch the source operand: register, memory
	 * or immediate.
	 */
853
	switch (c->d & SrcMask) {
A
Avi Kivity 已提交
854 855 856
	case SrcNone:
		break;
	case SrcReg:
857
		decode_register_operand(&c->src, c, 0);
A
Avi Kivity 已提交
858 859
		break;
	case SrcMem16:
860
		c->src.bytes = 2;
A
Avi Kivity 已提交
861 862
		goto srcmem_common;
	case SrcMem32:
863
		c->src.bytes = 4;
A
Avi Kivity 已提交
864 865
		goto srcmem_common;
	case SrcMem:
866 867
		c->src.bytes = (c->d & ByteOp) ? 1 :
							   c->op_bytes;
868
		/* Don't fetch the address for invlpg: it could be unmapped. */
M
Mike Day 已提交
869
		if (c->twobyte && c->b == 0x01 && c->modrm_reg == 7)
870
			break;
M
Mike Day 已提交
871
	srcmem_common:
872 873 874 875
		/*
		 * For instructions with a ModR/M byte, switch to register
		 * access if Mod = 3.
		 */
876 877
		if ((c->d & ModRM) && c->modrm_mod == 3) {
			c->src.type = OP_REG;
878 879
			break;
		}
880
		c->src.type = OP_MEM;
A
Avi Kivity 已提交
881 882
		break;
	case SrcImm:
883 884 885 886 887
		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 已提交
888
		/* NB. Immediates are sign-extended as necessary. */
889
		switch (c->src.bytes) {
A
Avi Kivity 已提交
890
		case 1:
891
			c->src.val = insn_fetch(s8, 1, c->eip);
A
Avi Kivity 已提交
892 893
			break;
		case 2:
894
			c->src.val = insn_fetch(s16, 2, c->eip);
A
Avi Kivity 已提交
895 896
			break;
		case 4:
897
			c->src.val = insn_fetch(s32, 4, c->eip);
A
Avi Kivity 已提交
898 899 900 901
			break;
		}
		break;
	case SrcImmByte:
902 903 904 905
		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 已提交
906 907 908
		break;
	}

909
	/* Decode and fetch the destination operand: register or memory. */
910
	switch (c->d & DstMask) {
911 912
	case ImplicitOps:
		/* Special instructions do their own operand decoding. */
913
		return 0;
914
	case DstReg:
915
		decode_register_operand(&c->dst, c,
916
			 c->twobyte && (c->b == 0xb6 || c->b == 0xb7));
917 918
		break;
	case DstMem:
919 920
		if ((c->d & ModRM) && c->modrm_mod == 3) {
			c->dst.type = OP_REG;
921 922
			break;
		}
923 924 925 926 927 928 929 930
		c->dst.type = OP_MEM;
		break;
	}

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

931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964
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;
	register_address_increment(c->regs[VCPU_REGS_RSP], -c->op_bytes);
	c->dst.ptr = (void *) register_address(ctxt->ss_base,
					       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;

	/* 64-bit mode: POP always pops a 64-bit operand. */

	if (ctxt->mode == X86EMUL_MODE_PROT64)
		c->dst.bytes = 8;

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

	register_address_increment(c->regs[VCPU_REGS_RSP], c->dst.bytes);

	return 0;
}

965
static inline void emulate_grp2(struct x86_emulate_ctxt *ctxt)
966
{
967
	struct decode_cache *c = &ctxt->decode;
968 969
	switch (c->modrm_reg) {
	case 0:	/* rol */
970
		emulate_2op_SrcB("rol", c->src, c->dst, ctxt->eflags);
971 972
		break;
	case 1:	/* ror */
973
		emulate_2op_SrcB("ror", c->src, c->dst, ctxt->eflags);
974 975
		break;
	case 2:	/* rcl */
976
		emulate_2op_SrcB("rcl", c->src, c->dst, ctxt->eflags);
977 978
		break;
	case 3:	/* rcr */
979
		emulate_2op_SrcB("rcr", c->src, c->dst, ctxt->eflags);
980 981 982
		break;
	case 4:	/* sal/shl */
	case 6:	/* sal/shl */
983
		emulate_2op_SrcB("sal", c->src, c->dst, ctxt->eflags);
984 985
		break;
	case 5:	/* shr */
986
		emulate_2op_SrcB("shr", c->src, c->dst, ctxt->eflags);
987 988
		break;
	case 7:	/* sar */
989
		emulate_2op_SrcB("sar", c->src, c->dst, ctxt->eflags);
990 991 992 993 994
		break;
	}
}

static inline int emulate_grp3(struct x86_emulate_ctxt *ctxt,
995
			       struct x86_emulate_ops *ops)
996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021
{
	struct decode_cache *c = &ctxt->decode;
	int rc = 0;

	switch (c->modrm_reg) {
	case 0 ... 1:	/* test */
		/*
		 * Special case in Grp3: test has an immediate
		 * source operand.
		 */
		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;
		switch (c->src.bytes) {
		case 1:
			c->src.val = insn_fetch(s8, 1, c->eip);
			break;
		case 2:
			c->src.val = insn_fetch(s16, 2, c->eip);
			break;
		case 4:
			c->src.val = insn_fetch(s32, 4, c->eip);
			break;
		}
1022
		emulate_2op_SrcV("test", c->src, c->dst, ctxt->eflags);
1023 1024 1025 1026 1027
		break;
	case 2:	/* not */
		c->dst.val = ~c->dst.val;
		break;
	case 3:	/* neg */
1028
		emulate_1op("neg", c->dst, ctxt->eflags);
1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039
		break;
	default:
		DPRINTF("Cannot emulate %02x\n", c->b);
		rc = X86EMUL_UNHANDLEABLE;
		break;
	}
done:
	return rc;
}

static inline int emulate_grp45(struct x86_emulate_ctxt *ctxt,
1040
			       struct x86_emulate_ops *ops)
1041 1042 1043 1044 1045 1046
{
	struct decode_cache *c = &ctxt->decode;
	int rc;

	switch (c->modrm_reg) {
	case 0:	/* inc */
1047
		emulate_1op("inc", c->dst, ctxt->eflags);
1048 1049
		break;
	case 1:	/* dec */
1050
		emulate_1op("dec", c->dst, ctxt->eflags);
1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077
		break;
	case 4: /* jmp abs */
		if (c->b == 0xff)
			c->eip = c->dst.val;
		else {
			DPRINTF("Cannot emulate %02x\n", c->b);
			return X86EMUL_UNHANDLEABLE;
		}
		break;
	case 6:	/* push */

		/* 64-bit mode: PUSH always pushes a 64-bit operand. */

		if (ctxt->mode == X86EMUL_MODE_PROT64) {
			c->dst.bytes = 8;
			rc = ops->read_std((unsigned long)c->dst.ptr,
					   &c->dst.val, 8, ctxt->vcpu);
			if (rc != 0)
				return rc;
		}
		register_address_increment(c->regs[VCPU_REGS_RSP],
					   -c->dst.bytes);
		rc = ops->write_emulated(register_address(ctxt->ss_base,
				    c->regs[VCPU_REGS_RSP]), &c->dst.val,
				    c->dst.bytes, ctxt->vcpu);
		if (rc != 0)
			return rc;
1078
		c->dst.type = OP_NONE;
1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103
		break;
	default:
		DPRINTF("Cannot emulate %02x\n", c->b);
		return X86EMUL_UNHANDLEABLE;
	}
	return 0;
}

static inline int emulate_grp9(struct x86_emulate_ctxt *ctxt,
			       struct x86_emulate_ops *ops,
			       unsigned long cr2)
{
	struct decode_cache *c = &ctxt->decode;
	u64 old, new;
	int rc;

	rc = ops->read_emulated(cr2, &old, 8, ctxt->vcpu);
	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);
1104
		ctxt->eflags &= ~EFLG_ZF;
1105 1106 1107 1108 1109 1110 1111 1112

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

		rc = ops->cmpxchg_emulated(cr2, &old, &new, 8, ctxt->vcpu);
		if (rc != 0)
			return rc;
1113
		ctxt->eflags |= EFLG_ZF;
1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159
	}
	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;
1160 1161 1162 1163
		break;
	case OP_NONE:
		/* no writeback */
		break;
1164 1165 1166 1167 1168 1169
	default:
		break;
	}
	return 0;
}

1170
int
1171
x86_emulate_insn(struct x86_emulate_ctxt *ctxt, struct x86_emulate_ops *ops)
1172 1173 1174
{
	unsigned long cr2 = ctxt->cr2;
	u64 msr_data;
1175
	unsigned long saved_eip = 0;
1176
	struct decode_cache *c = &ctxt->decode;
1177
	int rc = 0;
1178

1179 1180 1181 1182 1183 1184 1185 1186
	/* Shadow copy of register state. Committed on successful emulation.
	 * NOTE: we can copy them from vcpu as x86_decode_insn() doesn't
	 * modify them.
	 */

	memcpy(c->regs, ctxt->vcpu->regs, sizeof c->regs);
	saved_eip = c->eip;

1187
	if (((c->d & ModRM) && (c->modrm_mod != 3)) || (c->d & MemAbs))
1188 1189 1190 1191 1192
		cr2 = c->modrm_ea;

	if (c->src.type == OP_MEM) {
		c->src.ptr = (unsigned long *)cr2;
		c->src.val = 0;
M
Mike Day 已提交
1193 1194 1195 1196 1197
		rc = ops->read_emulated((unsigned long)c->src.ptr,
					&c->src.val,
					c->src.bytes,
					ctxt->vcpu);
		if (rc != 0)
1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209
			goto done;
		c->src.orig_val = c->src.val;
	}

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


	if (c->dst.type == OP_MEM) {
		c->dst.ptr = (unsigned long *)cr2;
		c->dst.bytes = (c->d & ByteOp) ? 1 : c->op_bytes;
		c->dst.val = 0;
1210 1211
		if (c->d & BitOp) {
			unsigned long mask = ~(c->dst.bytes * 8 - 1);
1212

1213 1214
			c->dst.ptr = (void *)c->dst.ptr +
						   (c->src.val & mask) / 8;
1215
		}
1216 1217 1218 1219 1220
		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))
1221 1222
			goto done;
	}
1223
	c->dst.orig_val = c->dst.val;
1224

1225
	if (c->twobyte)
A
Avi Kivity 已提交
1226 1227
		goto twobyte_insn;

1228
	switch (c->b) {
A
Avi Kivity 已提交
1229 1230
	case 0x00 ... 0x05:
	      add:		/* add */
1231
		emulate_2op_SrcV("add", c->src, c->dst, ctxt->eflags);
A
Avi Kivity 已提交
1232 1233 1234
		break;
	case 0x08 ... 0x0d:
	      or:		/* or */
1235
		emulate_2op_SrcV("or", c->src, c->dst, ctxt->eflags);
A
Avi Kivity 已提交
1236 1237 1238
		break;
	case 0x10 ... 0x15:
	      adc:		/* adc */
1239
		emulate_2op_SrcV("adc", c->src, c->dst, ctxt->eflags);
A
Avi Kivity 已提交
1240 1241 1242
		break;
	case 0x18 ... 0x1d:
	      sbb:		/* sbb */
1243
		emulate_2op_SrcV("sbb", c->src, c->dst, ctxt->eflags);
A
Avi Kivity 已提交
1244
		break;
1245
	case 0x20 ... 0x23:
A
Avi Kivity 已提交
1246
	      and:		/* and */
1247
		emulate_2op_SrcV("and", c->src, c->dst, ctxt->eflags);
A
Avi Kivity 已提交
1248
		break;
1249
	case 0x24:              /* and al imm8 */
1250 1251 1252 1253 1254
		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;
1255 1256
		goto and;
	case 0x25:              /* and ax imm16, or eax imm32 */
1257 1258 1259 1260 1261
		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;
1262
		else
1263 1264
			c->dst.val = *(u32 *)c->dst.ptr;
		c->dst.orig_val = c->dst.val;
1265
		goto and;
A
Avi Kivity 已提交
1266 1267
	case 0x28 ... 0x2d:
	      sub:		/* sub */
1268
		emulate_2op_SrcV("sub", c->src, c->dst, ctxt->eflags);
A
Avi Kivity 已提交
1269 1270 1271
		break;
	case 0x30 ... 0x35:
	      xor:		/* xor */
1272
		emulate_2op_SrcV("xor", c->src, c->dst, ctxt->eflags);
A
Avi Kivity 已提交
1273 1274 1275
		break;
	case 0x38 ... 0x3d:
	      cmp:		/* cmp */
1276
		emulate_2op_SrcV("cmp", c->src, c->dst, ctxt->eflags);
A
Avi Kivity 已提交
1277
		break;
1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303
	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;
		register_address_increment(c->regs[VCPU_REGS_RSP],
					   -c->op_bytes);
		c->dst.ptr = (void *) register_address(
			ctxt->ss_base, c->regs[VCPU_REGS_RSP]);
		break;
	case 0x58 ... 0x5f: /* pop reg */
	pop_instruction:
		if ((rc = ops->read_std(register_address(ctxt->ss_base,
			c->regs[VCPU_REGS_RSP]), c->dst.ptr,
			c->op_bytes, ctxt->vcpu)) != 0)
			goto done;

		register_address_increment(c->regs[VCPU_REGS_RSP],
					   c->op_bytes);
		c->dst.type = OP_NONE;	/* Disable writeback. */
		break;
A
Avi Kivity 已提交
1304
	case 0x63:		/* movsxd */
1305
		if (ctxt->mode != X86EMUL_MODE_PROT64)
A
Avi Kivity 已提交
1306
			goto cannot_emulate;
1307
		c->dst.val = (s32) c->src.val;
A
Avi Kivity 已提交
1308 1309
		break;
	case 0x80 ... 0x83:	/* Grp1 */
1310
		switch (c->modrm_reg) {
A
Avi Kivity 已提交
1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329
		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:
1330
		emulate_2op_SrcV("test", c->src, c->dst, ctxt->eflags);
A
Avi Kivity 已提交
1331 1332 1333
		break;
	case 0x86 ... 0x87:	/* xchg */
		/* Write back the register source. */
1334
		switch (c->dst.bytes) {
A
Avi Kivity 已提交
1335
		case 1:
1336
			*(u8 *) c->src.ptr = (u8) c->dst.val;
A
Avi Kivity 已提交
1337 1338
			break;
		case 2:
1339
			*(u16 *) c->src.ptr = (u16) c->dst.val;
A
Avi Kivity 已提交
1340 1341
			break;
		case 4:
1342
			*c->src.ptr = (u32) c->dst.val;
A
Avi Kivity 已提交
1343 1344
			break;	/* 64b reg: zero-extend */
		case 8:
1345
			*c->src.ptr = c->dst.val;
A
Avi Kivity 已提交
1346 1347 1348 1349 1350 1351
			break;
		}
		/*
		 * Write back the memory destination with implicit LOCK
		 * prefix.
		 */
1352 1353
		c->dst.val = c->src.val;
		c->lock_prefix = 1;
A
Avi Kivity 已提交
1354 1355
		break;
	case 0x88 ... 0x8b:	/* mov */
1356
		goto mov;
N
Nitin A Kamble 已提交
1357
	case 0x8d: /* lea r16/r32, m */
1358
		c->dst.val = c->modrm_val;
N
Nitin A Kamble 已提交
1359
		break;
A
Avi Kivity 已提交
1360
	case 0x8f:		/* pop (sole member of Grp1a) */
1361 1362
		rc = emulate_grp1a(ctxt, ops);
		if (rc != 0)
A
Avi Kivity 已提交
1363 1364
			goto done;
		break;
1365
	case 0xa0 ... 0xa1:	/* mov */
1366 1367
		c->dst.ptr = (unsigned long *)&c->regs[VCPU_REGS_RAX];
		c->dst.val = c->src.val;
1368 1369
		break;
	case 0xa2 ... 0xa3:	/* mov */
1370
		c->dst.val = (unsigned long)c->regs[VCPU_REGS_RAX];
1371
		break;
A
Avi Kivity 已提交
1372
	case 0xc0 ... 0xc1:
1373
		emulate_grp2(ctxt);
A
Avi Kivity 已提交
1374
		break;
1375 1376
	case 0xc6 ... 0xc7:	/* mov (sole member of Grp11) */
	mov:
1377
		c->dst.val = c->src.val;
1378
		break;
A
Avi Kivity 已提交
1379
	case 0xd0 ... 0xd1:	/* Grp2 */
1380
		c->src.val = 1;
1381
		emulate_grp2(ctxt);
1382
		break;
A
Avi Kivity 已提交
1383
	case 0xd2 ... 0xd3:	/* Grp2 */
1384
		c->src.val = c->regs[VCPU_REGS_RCX];
1385
		emulate_grp2(ctxt);
1386
		break;
A
Avi Kivity 已提交
1387
	case 0xf6 ... 0xf7:	/* Grp3 */
1388
		rc = emulate_grp3(ctxt, ops);
1389 1390
		if (rc != 0)
			goto done;
A
Avi Kivity 已提交
1391 1392
		break;
	case 0xfe ... 0xff:	/* Grp4/Grp5 */
1393
		rc = emulate_grp45(ctxt, ops);
1394 1395
		if (rc != 0)
			goto done;
A
Avi Kivity 已提交
1396 1397 1398 1399
		break;
	}

writeback:
1400 1401 1402
	rc = writeback(ctxt, ops);
	if (rc != 0)
		goto done;
A
Avi Kivity 已提交
1403 1404

	/* Commit shadow register state. */
1405 1406
	memcpy(ctxt->vcpu->regs, c->regs, sizeof c->regs);
	ctxt->vcpu->rip = c->eip;
A
Avi Kivity 已提交
1407 1408

done:
1409 1410 1411 1412 1413
	if (rc == X86EMUL_UNHANDLEABLE) {
		c->eip = saved_eip;
		return -1;
	}
	return 0;
A
Avi Kivity 已提交
1414 1415

special_insn:
1416
	if (c->twobyte)
A
Avi Kivity 已提交
1417
		goto twobyte_special_insn;
1418
	switch (c->b) {
1419
	case 0x6a: /* push imm8 */
1420 1421
		c->src.val = 0L;
		c->src.val = insn_fetch(s8, 1, c->eip);
1422
		emulate_push(ctxt);
1423
		break;
1424 1425
	case 0x6c:		/* insb */
	case 0x6d:		/* insw/insd */
L
Laurent Vivier 已提交
1426
		 if (kvm_emulate_pio_string(ctxt->vcpu, NULL,
1427 1428 1429 1430
				1,
				(c->d & ByteOp) ? 1 : c->op_bytes,
				c->rep_prefix ?
				address_mask(c->regs[VCPU_REGS_RCX]) : 1,
1431
				(ctxt->eflags & EFLG_DF),
1432
				register_address(ctxt->es_base,
1433 1434
						 c->regs[VCPU_REGS_RDI]),
				c->rep_prefix,
1435 1436
				c->regs[VCPU_REGS_RDX]) == 0) {
			c->eip = saved_eip;
1437
			return -1;
1438
		}
1439 1440 1441
		return 0;
	case 0x6e:		/* outsb */
	case 0x6f:		/* outsw/outsd */
L
Laurent Vivier 已提交
1442
		if (kvm_emulate_pio_string(ctxt->vcpu, NULL,
1443 1444 1445 1446
				0,
				(c->d & ByteOp) ? 1 : c->op_bytes,
				c->rep_prefix ?
				address_mask(c->regs[VCPU_REGS_RCX]) : 1,
1447
				(ctxt->eflags & EFLG_DF),
1448 1449 1450 1451 1452
				register_address(c->override_base ?
							*c->override_base :
							ctxt->ds_base,
						 c->regs[VCPU_REGS_RSI]),
				c->rep_prefix,
1453 1454
				c->regs[VCPU_REGS_RDX]) == 0) {
			c->eip = saved_eip;
1455
			return -1;
1456
		}
1457
		return 0;
1458
	case 0x70 ... 0x7f: /* jcc (short) */ {
1459
		int rel = insn_fetch(s8, 1, c->eip);
1460

1461
		if (test_cc(c->b, ctxt->eflags))
1462 1463 1464
		JMP_REL(rel);
		break;
	}
N
Nitin A Kamble 已提交
1465
	case 0x9c: /* pushf */
1466
		c->src.val =  (unsigned long) ctxt->eflags;
1467 1468
		emulate_push(ctxt);
		break;
N
Nitin A Kamble 已提交
1469
	case 0x9d: /* popf */
1470
		c->dst.ptr = (unsigned long *) &ctxt->eflags;
N
Nitin A Kamble 已提交
1471
		goto pop_instruction;
1472
	case 0xc3: /* ret */
1473
		c->dst.ptr = &c->eip;
1474 1475 1476 1477
		goto pop_instruction;
	case 0xf4:              /* hlt */
		ctxt->vcpu->halt_request = 1;
		goto done;
1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494
	case 0xf5:	/* cmc */
		/* complement carry flag from eflags reg */
		ctxt->eflags ^= EFLG_CF;
		c->dst.type = OP_NONE;	/* Disable writeback. */
		break;
	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;
1495
	}
1496 1497 1498
	if (c->rep_prefix) {
		if (c->regs[VCPU_REGS_RCX] == 0) {
			ctxt->vcpu->rip = c->eip;
A
Avi Kivity 已提交
1499 1500
			goto done;
		}
1501 1502
		c->regs[VCPU_REGS_RCX]--;
		c->eip = ctxt->vcpu->rip;
A
Avi Kivity 已提交
1503
	}
1504
	switch (c->b) {
A
Avi Kivity 已提交
1505
	case 0xa4 ... 0xa5:	/* movs */
1506 1507 1508 1509 1510
		c->dst.type = OP_MEM;
		c->dst.bytes = (c->d & ByteOp) ? 1 : c->op_bytes;
		c->dst.ptr = (unsigned long *)register_address(
						   ctxt->es_base,
						   c->regs[VCPU_REGS_RDI]);
A
Avi Kivity 已提交
1511
		if ((rc = ops->read_emulated(register_address(
1512 1513 1514 1515 1516
		      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 已提交
1517
			goto done;
1518
		register_address_increment(c->regs[VCPU_REGS_RSI],
1519
				       (ctxt->eflags & EFLG_DF) ? -c->dst.bytes
1520 1521
							   : c->dst.bytes);
		register_address_increment(c->regs[VCPU_REGS_RDI],
1522
				       (ctxt->eflags & EFLG_DF) ? -c->dst.bytes
1523
							   : c->dst.bytes);
A
Avi Kivity 已提交
1524 1525 1526 1527 1528
		break;
	case 0xa6 ... 0xa7:	/* cmps */
		DPRINTF("Urk! I don't handle CMPS.\n");
		goto cannot_emulate;
	case 0xaa ... 0xab:	/* stos */
1529 1530
		c->dst.type = OP_MEM;
		c->dst.bytes = (c->d & ByteOp) ? 1 : c->op_bytes;
1531 1532 1533
		c->dst.ptr = (unsigned long *)register_address(
						   ctxt->es_base,
						   c->regs[VCPU_REGS_RDI]);
1534 1535
		c->dst.val = c->regs[VCPU_REGS_RAX];
		register_address_increment(c->regs[VCPU_REGS_RDI],
1536
				       (ctxt->eflags & EFLG_DF) ? -c->dst.bytes
1537
							   : c->dst.bytes);
A
Avi Kivity 已提交
1538 1539
		break;
	case 0xac ... 0xad:	/* lods */
1540 1541 1542
		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];
1543 1544 1545 1546 1547 1548 1549
		if ((rc = ops->read_emulated(register_address(
				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 已提交
1550
			goto done;
1551
		register_address_increment(c->regs[VCPU_REGS_RSI],
1552
				       (ctxt->eflags & EFLG_DF) ? -c->dst.bytes
1553
							   : c->dst.bytes);
A
Avi Kivity 已提交
1554 1555 1556 1557
		break;
	case 0xae ... 0xaf:	/* scas */
		DPRINTF("Urk! I don't handle SCAS.\n");
		goto cannot_emulate;
1558 1559
	case 0xe8: /* call (near) */ {
		long int rel;
1560
		switch (c->op_bytes) {
1561
		case 2:
1562
			rel = insn_fetch(s16, 2, c->eip);
1563 1564
			break;
		case 4:
1565
			rel = insn_fetch(s32, 4, c->eip);
1566 1567 1568 1569 1570
			break;
		default:
			DPRINTF("Call: Invalid op_bytes\n");
			goto cannot_emulate;
		}
1571
		c->src.val = (unsigned long) c->eip;
1572
		JMP_REL(rel);
1573
		c->op_bytes = c->ad_bytes;
1574 1575
		emulate_push(ctxt);
		break;
1576 1577 1578
	}
	case 0xe9: /* jmp rel */
	case 0xeb: /* jmp rel short */
1579
		JMP_REL(c->src.val);
1580
		c->dst.type = OP_NONE; /* Disable writeback. */
1581 1582
		break;

1583

A
Avi Kivity 已提交
1584 1585 1586 1587
	}
	goto writeback;

twobyte_insn:
1588
	switch (c->b) {
A
Avi Kivity 已提交
1589
	case 0x01: /* lgdt, lidt, lmsw */
1590
		switch (c->modrm_reg) {
A
Avi Kivity 已提交
1591 1592 1593
			u16 size;
			unsigned long address;

1594
		case 0: /* vmcall */
1595
			if (c->modrm_mod != 3 || c->modrm_rm != 1)
1596 1597
				goto cannot_emulate;

1598 1599 1600 1601 1602
			rc = kvm_fix_hypercall(ctxt->vcpu);
			if (rc)
				goto done;

			kvm_emulate_hypercall(ctxt->vcpu);
1603
			break;
A
Avi Kivity 已提交
1604
		case 2: /* lgdt */
1605 1606
			rc = read_descriptor(ctxt, ops, c->src.ptr,
					     &size, &address, c->op_bytes);
A
Avi Kivity 已提交
1607 1608 1609 1610
			if (rc)
				goto done;
			realmode_lgdt(ctxt->vcpu, size, address);
			break;
1611
		case 3: /* lidt/vmmcall */
1612
			if (c->modrm_mod == 3 && c->modrm_rm == 1) {
1613 1614 1615 1616
				rc = kvm_fix_hypercall(ctxt->vcpu);
				if (rc)
					goto done;
				kvm_emulate_hypercall(ctxt->vcpu);
1617
			} else {
1618
				rc = read_descriptor(ctxt, ops, c->src.ptr,
1619
						     &size, &address,
1620
						     c->op_bytes);
1621 1622 1623 1624
				if (rc)
					goto done;
				realmode_lidt(ctxt->vcpu, size, address);
			}
A
Avi Kivity 已提交
1625 1626
			break;
		case 4: /* smsw */
1627
			if (c->modrm_mod != 3)
A
Avi Kivity 已提交
1628
				goto cannot_emulate;
1629
			*(u16 *)&c->regs[c->modrm_rm]
A
Avi Kivity 已提交
1630 1631 1632
				= realmode_get_cr(ctxt->vcpu, 0);
			break;
		case 6: /* lmsw */
1633
			if (c->modrm_mod != 3)
A
Avi Kivity 已提交
1634
				goto cannot_emulate;
1635 1636
			realmode_lmsw(ctxt->vcpu, (u16)c->modrm_val,
						  &ctxt->eflags);
A
Avi Kivity 已提交
1637 1638 1639 1640 1641 1642 1643
			break;
		case 7: /* invlpg*/
			emulate_invlpg(ctxt->vcpu, cr2);
			break;
		default:
			goto cannot_emulate;
		}
1644 1645
		/* Disable writeback. */
		c->dst.type = OP_NONE;
A
Avi Kivity 已提交
1646 1647
		break;
	case 0x21: /* mov from dr to reg */
1648
		if (c->modrm_mod != 3)
A
Avi Kivity 已提交
1649
			goto cannot_emulate;
1650
		rc = emulator_get_dr(ctxt, c->modrm_reg, &c->regs[c->modrm_rm]);
1651 1652 1653
		if (rc)
			goto cannot_emulate;
		c->dst.type = OP_NONE;	/* no writeback */
A
Avi Kivity 已提交
1654 1655
		break;
	case 0x23: /* mov from reg to dr */
1656
		if (c->modrm_mod != 3)
A
Avi Kivity 已提交
1657
			goto cannot_emulate;
1658 1659
		rc = emulator_set_dr(ctxt, c->modrm_reg,
				     c->regs[c->modrm_rm]);
1660 1661 1662
		if (rc)
			goto cannot_emulate;
		c->dst.type = OP_NONE;	/* no writeback */
A
Avi Kivity 已提交
1663 1664
		break;
	case 0x40 ... 0x4f:	/* cmov */
1665
		c->dst.val = c->dst.orig_val = c->src.val;
1666 1667
		if (!test_cc(c->b, ctxt->eflags))
			c->dst.type = OP_NONE; /* no writeback */
A
Avi Kivity 已提交
1668
		break;
1669 1670
	case 0xa3:
	      bt:		/* bt */
Q
Qing He 已提交
1671
		c->dst.type = OP_NONE;
1672 1673
		/* only subword offset */
		c->src.val &= (c->dst.bytes << 3) - 1;
1674
		emulate_2op_SrcV_nobyte("bt", c->src, c->dst, ctxt->eflags);
1675 1676 1677
		break;
	case 0xab:
	      bts:		/* bts */
1678 1679
		/* only subword offset */
		c->src.val &= (c->dst.bytes << 3) - 1;
1680
		emulate_2op_SrcV_nobyte("bts", c->src, c->dst, ctxt->eflags);
1681
		break;
A
Avi Kivity 已提交
1682 1683 1684 1685 1686
	case 0xb0 ... 0xb1:	/* cmpxchg */
		/*
		 * Save real source value, then compare EAX against
		 * destination.
		 */
1687 1688
		c->src.orig_val = c->src.val;
		c->src.val = c->regs[VCPU_REGS_RAX];
1689 1690
		emulate_2op_SrcV("cmp", c->src, c->dst, ctxt->eflags);
		if (ctxt->eflags & EFLG_ZF) {
A
Avi Kivity 已提交
1691
			/* Success: write back to memory. */
1692
			c->dst.val = c->src.orig_val;
A
Avi Kivity 已提交
1693 1694
		} else {
			/* Failure: write the value we saw to EAX. */
1695 1696
			c->dst.type = OP_REG;
			c->dst.ptr = (unsigned long *)&c->regs[VCPU_REGS_RAX];
A
Avi Kivity 已提交
1697 1698 1699 1700
		}
		break;
	case 0xb3:
	      btr:		/* btr */
1701 1702
		/* only subword offset */
		c->src.val &= (c->dst.bytes << 3) - 1;
1703
		emulate_2op_SrcV_nobyte("btr", c->src, c->dst, ctxt->eflags);
A
Avi Kivity 已提交
1704 1705
		break;
	case 0xb6 ... 0xb7:	/* movzx */
1706 1707 1708
		c->dst.bytes = c->op_bytes;
		c->dst.val = (c->d & ByteOp) ? (u8) c->src.val
						       : (u16) c->src.val;
A
Avi Kivity 已提交
1709 1710
		break;
	case 0xba:		/* Grp8 */
1711
		switch (c->modrm_reg & 3) {
A
Avi Kivity 已提交
1712 1713 1714 1715 1716 1717 1718 1719 1720 1721
		case 0:
			goto bt;
		case 1:
			goto bts;
		case 2:
			goto btr;
		case 3:
			goto btc;
		}
		break;
1722 1723
	case 0xbb:
	      btc:		/* btc */
1724 1725
		/* only subword offset */
		c->src.val &= (c->dst.bytes << 3) - 1;
1726
		emulate_2op_SrcV_nobyte("btc", c->src, c->dst, ctxt->eflags);
1727
		break;
A
Avi Kivity 已提交
1728
	case 0xbe ... 0xbf:	/* movsx */
1729 1730 1731
		c->dst.bytes = c->op_bytes;
		c->dst.val = (c->d & ByteOp) ? (s8) c->src.val :
							(s16) c->src.val;
A
Avi Kivity 已提交
1732
		break;
1733
	case 0xc3:		/* movnti */
1734 1735 1736
		c->dst.bytes = c->op_bytes;
		c->dst.val = (c->op_bytes == 4) ? (u32) c->src.val :
							(u64) c->src.val;
1737
		break;
A
Avi Kivity 已提交
1738 1739 1740 1741
	}
	goto writeback;

twobyte_special_insn:
1742
	switch (c->b) {
1743 1744 1745
	case 0x06:
		emulate_clts(ctxt->vcpu);
		break;
A
Avi Kivity 已提交
1746 1747
	case 0x08:		/* invd */
		break;
A
Avi Kivity 已提交
1748 1749
	case 0x09:		/* wbinvd */
		break;
A
Avi Kivity 已提交
1750 1751 1752 1753
	case 0x0d:		/* GrpP (prefetch) */
	case 0x18:		/* Grp16 (prefetch/nop) */
		break;
	case 0x20: /* mov cr, reg */
1754
		if (c->modrm_mod != 3)
A
Avi Kivity 已提交
1755
			goto cannot_emulate;
1756 1757
		c->regs[c->modrm_rm] =
				realmode_get_cr(ctxt->vcpu, c->modrm_reg);
A
Avi Kivity 已提交
1758 1759
		break;
	case 0x22: /* mov reg, cr */
1760
		if (c->modrm_mod != 3)
A
Avi Kivity 已提交
1761
			goto cannot_emulate;
1762
		realmode_set_cr(ctxt->vcpu,
1763
				c->modrm_reg, c->modrm_val, &ctxt->eflags);
A
Avi Kivity 已提交
1764
		break;
1765 1766
	case 0x30:
		/* wrmsr */
1767 1768 1769
		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);
1770
		if (rc) {
1771
			kvm_x86_ops->inject_gp(ctxt->vcpu, 0);
1772
			c->eip = ctxt->vcpu->rip;
1773 1774 1775 1776 1777
		}
		rc = X86EMUL_CONTINUE;
		break;
	case 0x32:
		/* rdmsr */
1778
		rc = kvm_get_msr(ctxt->vcpu, c->regs[VCPU_REGS_RCX], &msr_data);
1779
		if (rc) {
1780
			kvm_x86_ops->inject_gp(ctxt->vcpu, 0);
1781
			c->eip = ctxt->vcpu->rip;
1782
		} else {
1783 1784
			c->regs[VCPU_REGS_RAX] = (u32)msr_data;
			c->regs[VCPU_REGS_RDX] = msr_data >> 32;
1785 1786 1787
		}
		rc = X86EMUL_CONTINUE;
		break;
1788 1789 1790
	case 0x80 ... 0x8f: /* jnz rel, etc*/ {
		long int rel;

1791
		switch (c->op_bytes) {
1792
		case 2:
1793
			rel = insn_fetch(s16, 2, c->eip);
1794 1795
			break;
		case 4:
1796
			rel = insn_fetch(s32, 4, c->eip);
1797 1798
			break;
		case 8:
1799
			rel = insn_fetch(s64, 8, c->eip);
1800 1801 1802 1803 1804
			break;
		default:
			DPRINTF("jnz: Invalid op_bytes\n");
			goto cannot_emulate;
		}
1805
		if (test_cc(c->b, ctxt->eflags))
1806 1807 1808
			JMP_REL(rel);
		break;
	}
A
Avi Kivity 已提交
1809
	case 0xc7:		/* Grp9 (cmpxchg8b) */
1810
		rc = emulate_grp9(ctxt, ops, cr2);
1811 1812 1813
		if (rc != 0)
			goto done;
		break;
A
Avi Kivity 已提交
1814
	}
1815 1816
	/* Disable writeback. */
	c->dst.type = OP_NONE;
A
Avi Kivity 已提交
1817 1818 1819
	goto writeback;

cannot_emulate:
1820
	DPRINTF("Cannot emulate %02x\n", c->b);
1821
	c->eip = saved_eip;
A
Avi Kivity 已提交
1822 1823
	return -1;
}