VirtualBox

source: vbox/trunk/src/VBox/VMM/VMMAll/IEMAllCImpl.cpp.h@ 91580

Last change on this file since 91580 was 91580, checked in by vboxsync, 3 years ago

VMM: Nested VMX: bugref:10092 Made changes to PGM++ to handle invalid PAE PDPEs being loaded.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 335.2 KB
Line 
1/* $Id: IEMAllCImpl.cpp.h 91580 2021-10-06 07:22:04Z vboxsync $ */
2/** @file
3 * IEM - Instruction Implementation in C/C++ (code include).
4 */
5
6/*
7 * Copyright (C) 2011-2020 Oracle Corporation
8 *
9 * This file is part of VirtualBox Open Source Edition (OSE), as
10 * available from http://www.virtualbox.org. This file is free software;
11 * you can redistribute it and/or modify it under the terms of the GNU
12 * General Public License (GPL) as published by the Free Software
13 * Foundation, in version 2 as it comes in the "COPYING" file of the
14 * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
15 * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
16 */
17
18#include "IEMAllCImplSvmInstr.cpp.h"
19#include "IEMAllCImplVmxInstr.cpp.h"
20
21
22/** @name Misc Helpers
23 * @{
24 */
25
26
27/**
28 * Worker function for iemHlpCheckPortIOPermission, don't call directly.
29 *
30 * @returns Strict VBox status code.
31 *
32 * @param pVCpu The cross context virtual CPU structure of the calling thread.
33 * @param u16Port The port number.
34 * @param cbOperand The operand size.
35 */
36static VBOXSTRICTRC iemHlpCheckPortIOPermissionBitmap(PVMCPUCC pVCpu, uint16_t u16Port, uint8_t cbOperand)
37{
38 /* The TSS bits we're interested in are the same on 386 and AMD64. */
39 AssertCompile(AMD64_SEL_TYPE_SYS_TSS_BUSY == X86_SEL_TYPE_SYS_386_TSS_BUSY);
40 AssertCompile(AMD64_SEL_TYPE_SYS_TSS_AVAIL == X86_SEL_TYPE_SYS_386_TSS_AVAIL);
41 AssertCompileMembersAtSameOffset(X86TSS32, offIoBitmap, X86TSS64, offIoBitmap);
42 AssertCompile(sizeof(X86TSS32) == sizeof(X86TSS64));
43
44 IEM_CTX_IMPORT_RET(pVCpu, CPUMCTX_EXTRN_TR);
45
46 /*
47 * Check the TSS type, 16-bit TSSes doesn't have any I/O permission bitmap.
48 */
49 Assert(!pVCpu->cpum.GstCtx.tr.Attr.n.u1DescType);
50 if (RT_UNLIKELY( pVCpu->cpum.GstCtx.tr.Attr.n.u4Type != AMD64_SEL_TYPE_SYS_TSS_BUSY
51 && pVCpu->cpum.GstCtx.tr.Attr.n.u4Type != AMD64_SEL_TYPE_SYS_TSS_AVAIL))
52 {
53 Log(("iemHlpCheckPortIOPermissionBitmap: Port=%#x cb=%d - TSS type %#x (attr=%#x) has no I/O bitmap -> #GP(0)\n",
54 u16Port, cbOperand, pVCpu->cpum.GstCtx.tr.Attr.n.u4Type, pVCpu->cpum.GstCtx.tr.Attr.u));
55 return iemRaiseGeneralProtectionFault0(pVCpu);
56 }
57
58 /*
59 * Read the bitmap offset (may #PF).
60 */
61 uint16_t offBitmap;
62 VBOXSTRICTRC rcStrict = iemMemFetchSysU16(pVCpu, &offBitmap, UINT8_MAX,
63 pVCpu->cpum.GstCtx.tr.u64Base + RT_UOFFSETOF(X86TSS64, offIoBitmap));
64 if (rcStrict != VINF_SUCCESS)
65 {
66 Log(("iemHlpCheckPortIOPermissionBitmap: Error reading offIoBitmap (%Rrc)\n", VBOXSTRICTRC_VAL(rcStrict)));
67 return rcStrict;
68 }
69
70 /*
71 * The bit range from u16Port to (u16Port + cbOperand - 1), however intel
72 * describes the CPU actually reading two bytes regardless of whether the
73 * bit range crosses a byte boundrary. Thus the + 1 in the test below.
74 */
75 uint32_t offFirstBit = (uint32_t)u16Port / 8 + offBitmap;
76 /** @todo check if real CPUs ensures that offBitmap has a minimum value of
77 * for instance sizeof(X86TSS32). */
78 if (offFirstBit + 1 > pVCpu->cpum.GstCtx.tr.u32Limit) /* the limit is inclusive */
79 {
80 Log(("iemHlpCheckPortIOPermissionBitmap: offFirstBit=%#x + 1 is beyond u32Limit=%#x -> #GP(0)\n",
81 offFirstBit, pVCpu->cpum.GstCtx.tr.u32Limit));
82 return iemRaiseGeneralProtectionFault0(pVCpu);
83 }
84
85 /*
86 * Read the necessary bits.
87 */
88 /** @todo Test the assertion in the intel manual that the CPU reads two
89 * bytes. The question is how this works wrt to #PF and #GP on the
90 * 2nd byte when it's not required. */
91 uint16_t bmBytes = UINT16_MAX;
92 rcStrict = iemMemFetchSysU16(pVCpu, &bmBytes, UINT8_MAX, pVCpu->cpum.GstCtx.tr.u64Base + offFirstBit);
93 if (rcStrict != VINF_SUCCESS)
94 {
95 Log(("iemHlpCheckPortIOPermissionBitmap: Error reading I/O bitmap @%#x (%Rrc)\n", offFirstBit, VBOXSTRICTRC_VAL(rcStrict)));
96 return rcStrict;
97 }
98
99 /*
100 * Perform the check.
101 */
102 uint16_t fPortMask = (1 << cbOperand) - 1;
103 bmBytes >>= (u16Port & 7);
104 if (bmBytes & fPortMask)
105 {
106 Log(("iemHlpCheckPortIOPermissionBitmap: u16Port=%#x LB %u - access denied (bm=%#x mask=%#x) -> #GP(0)\n",
107 u16Port, cbOperand, bmBytes, fPortMask));
108 return iemRaiseGeneralProtectionFault0(pVCpu);
109 }
110
111 return VINF_SUCCESS;
112}
113
114
115/**
116 * Checks if we are allowed to access the given I/O port, raising the
117 * appropriate exceptions if we aren't (or if the I/O bitmap is not
118 * accessible).
119 *
120 * @returns Strict VBox status code.
121 *
122 * @param pVCpu The cross context virtual CPU structure of the calling thread.
123 * @param u16Port The port number.
124 * @param cbOperand The operand size.
125 */
126DECLINLINE(VBOXSTRICTRC) iemHlpCheckPortIOPermission(PVMCPUCC pVCpu, uint16_t u16Port, uint8_t cbOperand)
127{
128 X86EFLAGS Efl;
129 Efl.u = IEMMISC_GET_EFL(pVCpu);
130 if ( (pVCpu->cpum.GstCtx.cr0 & X86_CR0_PE)
131 && ( pVCpu->iem.s.uCpl > Efl.Bits.u2IOPL
132 || Efl.Bits.u1VM) )
133 return iemHlpCheckPortIOPermissionBitmap(pVCpu, u16Port, cbOperand);
134 return VINF_SUCCESS;
135}
136
137
138#if 0
139/**
140 * Calculates the parity bit.
141 *
142 * @returns true if the bit is set, false if not.
143 * @param u8Result The least significant byte of the result.
144 */
145static bool iemHlpCalcParityFlag(uint8_t u8Result)
146{
147 /*
148 * Parity is set if the number of bits in the least significant byte of
149 * the result is even.
150 */
151 uint8_t cBits;
152 cBits = u8Result & 1; /* 0 */
153 u8Result >>= 1;
154 cBits += u8Result & 1;
155 u8Result >>= 1;
156 cBits += u8Result & 1;
157 u8Result >>= 1;
158 cBits += u8Result & 1;
159 u8Result >>= 1;
160 cBits += u8Result & 1; /* 4 */
161 u8Result >>= 1;
162 cBits += u8Result & 1;
163 u8Result >>= 1;
164 cBits += u8Result & 1;
165 u8Result >>= 1;
166 cBits += u8Result & 1;
167 return !(cBits & 1);
168}
169#endif /* not used */
170
171
172/**
173 * Updates the specified flags according to a 8-bit result.
174 *
175 * @param pVCpu The cross context virtual CPU structure of the calling thread.
176 * @param u8Result The result to set the flags according to.
177 * @param fToUpdate The flags to update.
178 * @param fUndefined The flags that are specified as undefined.
179 */
180static void iemHlpUpdateArithEFlagsU8(PVMCPUCC pVCpu, uint8_t u8Result, uint32_t fToUpdate, uint32_t fUndefined)
181{
182 uint32_t fEFlags = pVCpu->cpum.GstCtx.eflags.u;
183 iemAImpl_test_u8(&u8Result, u8Result, &fEFlags);
184 pVCpu->cpum.GstCtx.eflags.u &= ~(fToUpdate | fUndefined);
185 pVCpu->cpum.GstCtx.eflags.u |= (fToUpdate | fUndefined) & fEFlags;
186}
187
188
189/**
190 * Updates the specified flags according to a 16-bit result.
191 *
192 * @param pVCpu The cross context virtual CPU structure of the calling thread.
193 * @param u16Result The result to set the flags according to.
194 * @param fToUpdate The flags to update.
195 * @param fUndefined The flags that are specified as undefined.
196 */
197static void iemHlpUpdateArithEFlagsU16(PVMCPUCC pVCpu, uint16_t u16Result, uint32_t fToUpdate, uint32_t fUndefined)
198{
199 uint32_t fEFlags = pVCpu->cpum.GstCtx.eflags.u;
200 iemAImpl_test_u16(&u16Result, u16Result, &fEFlags);
201 pVCpu->cpum.GstCtx.eflags.u &= ~(fToUpdate | fUndefined);
202 pVCpu->cpum.GstCtx.eflags.u |= (fToUpdate | fUndefined) & fEFlags;
203}
204
205
206/**
207 * Helper used by iret.
208 *
209 * @param pVCpu The cross context virtual CPU structure of the calling thread.
210 * @param uCpl The new CPL.
211 * @param pSReg Pointer to the segment register.
212 */
213static void iemHlpAdjustSelectorForNewCpl(PVMCPUCC pVCpu, uint8_t uCpl, PCPUMSELREG pSReg)
214{
215 Assert(CPUMSELREG_ARE_HIDDEN_PARTS_VALID(pVCpu, pSReg));
216 IEM_CTX_ASSERT(pVCpu, CPUMCTX_EXTRN_SREG_MASK);
217
218 if ( uCpl > pSReg->Attr.n.u2Dpl
219 && pSReg->Attr.n.u1DescType /* code or data, not system */
220 && (pSReg->Attr.n.u4Type & (X86_SEL_TYPE_CODE | X86_SEL_TYPE_CONF))
221 != (X86_SEL_TYPE_CODE | X86_SEL_TYPE_CONF)) /* not conforming code */
222 iemHlpLoadNullDataSelectorProt(pVCpu, pSReg, 0);
223}
224
225
226/**
227 * Indicates that we have modified the FPU state.
228 *
229 * @param pVCpu The cross context virtual CPU structure of the calling thread.
230 */
231DECLINLINE(void) iemHlpUsedFpu(PVMCPUCC pVCpu)
232{
233 CPUMSetChangedFlags(pVCpu, CPUM_CHANGED_FPU_REM);
234}
235
236/** @} */
237
238/** @name C Implementations
239 * @{
240 */
241
242/**
243 * Implements a 16-bit popa.
244 */
245IEM_CIMPL_DEF_0(iemCImpl_popa_16)
246{
247 RTGCPTR GCPtrStart = iemRegGetEffRsp(pVCpu);
248 RTGCPTR GCPtrLast = GCPtrStart + 15;
249 VBOXSTRICTRC rcStrict;
250
251 /*
252 * The docs are a bit hard to comprehend here, but it looks like we wrap
253 * around in real mode as long as none of the individual "popa" crosses the
254 * end of the stack segment. In protected mode we check the whole access
255 * in one go. For efficiency, only do the word-by-word thing if we're in
256 * danger of wrapping around.
257 */
258 /** @todo do popa boundary / wrap-around checks. */
259 if (RT_UNLIKELY( IEM_IS_REAL_OR_V86_MODE(pVCpu)
260 && (pVCpu->cpum.GstCtx.cs.u32Limit < GCPtrLast)) ) /* ASSUMES 64-bit RTGCPTR */
261 {
262 /* word-by-word */
263 RTUINT64U TmpRsp;
264 TmpRsp.u = pVCpu->cpum.GstCtx.rsp;
265 rcStrict = iemMemStackPopU16Ex(pVCpu, &pVCpu->cpum.GstCtx.di, &TmpRsp);
266 if (rcStrict == VINF_SUCCESS)
267 rcStrict = iemMemStackPopU16Ex(pVCpu, &pVCpu->cpum.GstCtx.si, &TmpRsp);
268 if (rcStrict == VINF_SUCCESS)
269 rcStrict = iemMemStackPopU16Ex(pVCpu, &pVCpu->cpum.GstCtx.bp, &TmpRsp);
270 if (rcStrict == VINF_SUCCESS)
271 {
272 iemRegAddToRspEx(pVCpu, &TmpRsp, 2); /* sp */
273 rcStrict = iemMemStackPopU16Ex(pVCpu, &pVCpu->cpum.GstCtx.bx, &TmpRsp);
274 }
275 if (rcStrict == VINF_SUCCESS)
276 rcStrict = iemMemStackPopU16Ex(pVCpu, &pVCpu->cpum.GstCtx.dx, &TmpRsp);
277 if (rcStrict == VINF_SUCCESS)
278 rcStrict = iemMemStackPopU16Ex(pVCpu, &pVCpu->cpum.GstCtx.cx, &TmpRsp);
279 if (rcStrict == VINF_SUCCESS)
280 rcStrict = iemMemStackPopU16Ex(pVCpu, &pVCpu->cpum.GstCtx.ax, &TmpRsp);
281 if (rcStrict == VINF_SUCCESS)
282 {
283 pVCpu->cpum.GstCtx.rsp = TmpRsp.u;
284 iemRegAddToRipAndClearRF(pVCpu, cbInstr);
285 }
286 }
287 else
288 {
289 uint16_t const *pa16Mem = NULL;
290 rcStrict = iemMemMap(pVCpu, (void **)&pa16Mem, 16, X86_SREG_SS, GCPtrStart, IEM_ACCESS_STACK_R);
291 if (rcStrict == VINF_SUCCESS)
292 {
293 pVCpu->cpum.GstCtx.di = pa16Mem[7 - X86_GREG_xDI];
294 pVCpu->cpum.GstCtx.si = pa16Mem[7 - X86_GREG_xSI];
295 pVCpu->cpum.GstCtx.bp = pa16Mem[7 - X86_GREG_xBP];
296 /* skip sp */
297 pVCpu->cpum.GstCtx.bx = pa16Mem[7 - X86_GREG_xBX];
298 pVCpu->cpum.GstCtx.dx = pa16Mem[7 - X86_GREG_xDX];
299 pVCpu->cpum.GstCtx.cx = pa16Mem[7 - X86_GREG_xCX];
300 pVCpu->cpum.GstCtx.ax = pa16Mem[7 - X86_GREG_xAX];
301 rcStrict = iemMemCommitAndUnmap(pVCpu, (void *)pa16Mem, IEM_ACCESS_STACK_R);
302 if (rcStrict == VINF_SUCCESS)
303 {
304 iemRegAddToRsp(pVCpu, 16);
305 iemRegAddToRipAndClearRF(pVCpu, cbInstr);
306 }
307 }
308 }
309 return rcStrict;
310}
311
312
313/**
314 * Implements a 32-bit popa.
315 */
316IEM_CIMPL_DEF_0(iemCImpl_popa_32)
317{
318 RTGCPTR GCPtrStart = iemRegGetEffRsp(pVCpu);
319 RTGCPTR GCPtrLast = GCPtrStart + 31;
320 VBOXSTRICTRC rcStrict;
321
322 /*
323 * The docs are a bit hard to comprehend here, but it looks like we wrap
324 * around in real mode as long as none of the individual "popa" crosses the
325 * end of the stack segment. In protected mode we check the whole access
326 * in one go. For efficiency, only do the word-by-word thing if we're in
327 * danger of wrapping around.
328 */
329 /** @todo do popa boundary / wrap-around checks. */
330 if (RT_UNLIKELY( IEM_IS_REAL_OR_V86_MODE(pVCpu)
331 && (pVCpu->cpum.GstCtx.cs.u32Limit < GCPtrLast)) ) /* ASSUMES 64-bit RTGCPTR */
332 {
333 /* word-by-word */
334 RTUINT64U TmpRsp;
335 TmpRsp.u = pVCpu->cpum.GstCtx.rsp;
336 rcStrict = iemMemStackPopU32Ex(pVCpu, &pVCpu->cpum.GstCtx.edi, &TmpRsp);
337 if (rcStrict == VINF_SUCCESS)
338 rcStrict = iemMemStackPopU32Ex(pVCpu, &pVCpu->cpum.GstCtx.esi, &TmpRsp);
339 if (rcStrict == VINF_SUCCESS)
340 rcStrict = iemMemStackPopU32Ex(pVCpu, &pVCpu->cpum.GstCtx.ebp, &TmpRsp);
341 if (rcStrict == VINF_SUCCESS)
342 {
343 iemRegAddToRspEx(pVCpu, &TmpRsp, 2); /* sp */
344 rcStrict = iemMemStackPopU32Ex(pVCpu, &pVCpu->cpum.GstCtx.ebx, &TmpRsp);
345 }
346 if (rcStrict == VINF_SUCCESS)
347 rcStrict = iemMemStackPopU32Ex(pVCpu, &pVCpu->cpum.GstCtx.edx, &TmpRsp);
348 if (rcStrict == VINF_SUCCESS)
349 rcStrict = iemMemStackPopU32Ex(pVCpu, &pVCpu->cpum.GstCtx.ecx, &TmpRsp);
350 if (rcStrict == VINF_SUCCESS)
351 rcStrict = iemMemStackPopU32Ex(pVCpu, &pVCpu->cpum.GstCtx.eax, &TmpRsp);
352 if (rcStrict == VINF_SUCCESS)
353 {
354#if 1 /** @todo what actually happens with the high bits when we're in 16-bit mode? */
355 pVCpu->cpum.GstCtx.rdi &= UINT32_MAX;
356 pVCpu->cpum.GstCtx.rsi &= UINT32_MAX;
357 pVCpu->cpum.GstCtx.rbp &= UINT32_MAX;
358 pVCpu->cpum.GstCtx.rbx &= UINT32_MAX;
359 pVCpu->cpum.GstCtx.rdx &= UINT32_MAX;
360 pVCpu->cpum.GstCtx.rcx &= UINT32_MAX;
361 pVCpu->cpum.GstCtx.rax &= UINT32_MAX;
362#endif
363 pVCpu->cpum.GstCtx.rsp = TmpRsp.u;
364 iemRegAddToRipAndClearRF(pVCpu, cbInstr);
365 }
366 }
367 else
368 {
369 uint32_t const *pa32Mem;
370 rcStrict = iemMemMap(pVCpu, (void **)&pa32Mem, 32, X86_SREG_SS, GCPtrStart, IEM_ACCESS_STACK_R);
371 if (rcStrict == VINF_SUCCESS)
372 {
373 pVCpu->cpum.GstCtx.rdi = pa32Mem[7 - X86_GREG_xDI];
374 pVCpu->cpum.GstCtx.rsi = pa32Mem[7 - X86_GREG_xSI];
375 pVCpu->cpum.GstCtx.rbp = pa32Mem[7 - X86_GREG_xBP];
376 /* skip esp */
377 pVCpu->cpum.GstCtx.rbx = pa32Mem[7 - X86_GREG_xBX];
378 pVCpu->cpum.GstCtx.rdx = pa32Mem[7 - X86_GREG_xDX];
379 pVCpu->cpum.GstCtx.rcx = pa32Mem[7 - X86_GREG_xCX];
380 pVCpu->cpum.GstCtx.rax = pa32Mem[7 - X86_GREG_xAX];
381 rcStrict = iemMemCommitAndUnmap(pVCpu, (void *)pa32Mem, IEM_ACCESS_STACK_R);
382 if (rcStrict == VINF_SUCCESS)
383 {
384 iemRegAddToRsp(pVCpu, 32);
385 iemRegAddToRipAndClearRF(pVCpu, cbInstr);
386 }
387 }
388 }
389 return rcStrict;
390}
391
392
393/**
394 * Implements a 16-bit pusha.
395 */
396IEM_CIMPL_DEF_0(iemCImpl_pusha_16)
397{
398 RTGCPTR GCPtrTop = iemRegGetEffRsp(pVCpu);
399 RTGCPTR GCPtrBottom = GCPtrTop - 15;
400 VBOXSTRICTRC rcStrict;
401
402 /*
403 * The docs are a bit hard to comprehend here, but it looks like we wrap
404 * around in real mode as long as none of the individual "pushd" crosses the
405 * end of the stack segment. In protected mode we check the whole access
406 * in one go. For efficiency, only do the word-by-word thing if we're in
407 * danger of wrapping around.
408 */
409 /** @todo do pusha boundary / wrap-around checks. */
410 if (RT_UNLIKELY( GCPtrBottom > GCPtrTop
411 && IEM_IS_REAL_OR_V86_MODE(pVCpu) ) )
412 {
413 /* word-by-word */
414 RTUINT64U TmpRsp;
415 TmpRsp.u = pVCpu->cpum.GstCtx.rsp;
416 rcStrict = iemMemStackPushU16Ex(pVCpu, pVCpu->cpum.GstCtx.ax, &TmpRsp);
417 if (rcStrict == VINF_SUCCESS)
418 rcStrict = iemMemStackPushU16Ex(pVCpu, pVCpu->cpum.GstCtx.cx, &TmpRsp);
419 if (rcStrict == VINF_SUCCESS)
420 rcStrict = iemMemStackPushU16Ex(pVCpu, pVCpu->cpum.GstCtx.dx, &TmpRsp);
421 if (rcStrict == VINF_SUCCESS)
422 rcStrict = iemMemStackPushU16Ex(pVCpu, pVCpu->cpum.GstCtx.bx, &TmpRsp);
423 if (rcStrict == VINF_SUCCESS)
424 rcStrict = iemMemStackPushU16Ex(pVCpu, pVCpu->cpum.GstCtx.sp, &TmpRsp);
425 if (rcStrict == VINF_SUCCESS)
426 rcStrict = iemMemStackPushU16Ex(pVCpu, pVCpu->cpum.GstCtx.bp, &TmpRsp);
427 if (rcStrict == VINF_SUCCESS)
428 rcStrict = iemMemStackPushU16Ex(pVCpu, pVCpu->cpum.GstCtx.si, &TmpRsp);
429 if (rcStrict == VINF_SUCCESS)
430 rcStrict = iemMemStackPushU16Ex(pVCpu, pVCpu->cpum.GstCtx.di, &TmpRsp);
431 if (rcStrict == VINF_SUCCESS)
432 {
433 pVCpu->cpum.GstCtx.rsp = TmpRsp.u;
434 iemRegAddToRipAndClearRF(pVCpu, cbInstr);
435 }
436 }
437 else
438 {
439 GCPtrBottom--;
440 uint16_t *pa16Mem = NULL;
441 rcStrict = iemMemMap(pVCpu, (void **)&pa16Mem, 16, X86_SREG_SS, GCPtrBottom, IEM_ACCESS_STACK_W);
442 if (rcStrict == VINF_SUCCESS)
443 {
444 pa16Mem[7 - X86_GREG_xDI] = pVCpu->cpum.GstCtx.di;
445 pa16Mem[7 - X86_GREG_xSI] = pVCpu->cpum.GstCtx.si;
446 pa16Mem[7 - X86_GREG_xBP] = pVCpu->cpum.GstCtx.bp;
447 pa16Mem[7 - X86_GREG_xSP] = pVCpu->cpum.GstCtx.sp;
448 pa16Mem[7 - X86_GREG_xBX] = pVCpu->cpum.GstCtx.bx;
449 pa16Mem[7 - X86_GREG_xDX] = pVCpu->cpum.GstCtx.dx;
450 pa16Mem[7 - X86_GREG_xCX] = pVCpu->cpum.GstCtx.cx;
451 pa16Mem[7 - X86_GREG_xAX] = pVCpu->cpum.GstCtx.ax;
452 rcStrict = iemMemCommitAndUnmap(pVCpu, (void *)pa16Mem, IEM_ACCESS_STACK_W);
453 if (rcStrict == VINF_SUCCESS)
454 {
455 iemRegSubFromRsp(pVCpu, 16);
456 iemRegAddToRipAndClearRF(pVCpu, cbInstr);
457 }
458 }
459 }
460 return rcStrict;
461}
462
463
464/**
465 * Implements a 32-bit pusha.
466 */
467IEM_CIMPL_DEF_0(iemCImpl_pusha_32)
468{
469 RTGCPTR GCPtrTop = iemRegGetEffRsp(pVCpu);
470 RTGCPTR GCPtrBottom = GCPtrTop - 31;
471 VBOXSTRICTRC rcStrict;
472
473 /*
474 * The docs are a bit hard to comprehend here, but it looks like we wrap
475 * around in real mode as long as none of the individual "pusha" crosses the
476 * end of the stack segment. In protected mode we check the whole access
477 * in one go. For efficiency, only do the word-by-word thing if we're in
478 * danger of wrapping around.
479 */
480 /** @todo do pusha boundary / wrap-around checks. */
481 if (RT_UNLIKELY( GCPtrBottom > GCPtrTop
482 && IEM_IS_REAL_OR_V86_MODE(pVCpu) ) )
483 {
484 /* word-by-word */
485 RTUINT64U TmpRsp;
486 TmpRsp.u = pVCpu->cpum.GstCtx.rsp;
487 rcStrict = iemMemStackPushU32Ex(pVCpu, pVCpu->cpum.GstCtx.eax, &TmpRsp);
488 if (rcStrict == VINF_SUCCESS)
489 rcStrict = iemMemStackPushU32Ex(pVCpu, pVCpu->cpum.GstCtx.ecx, &TmpRsp);
490 if (rcStrict == VINF_SUCCESS)
491 rcStrict = iemMemStackPushU32Ex(pVCpu, pVCpu->cpum.GstCtx.edx, &TmpRsp);
492 if (rcStrict == VINF_SUCCESS)
493 rcStrict = iemMemStackPushU32Ex(pVCpu, pVCpu->cpum.GstCtx.ebx, &TmpRsp);
494 if (rcStrict == VINF_SUCCESS)
495 rcStrict = iemMemStackPushU32Ex(pVCpu, pVCpu->cpum.GstCtx.esp, &TmpRsp);
496 if (rcStrict == VINF_SUCCESS)
497 rcStrict = iemMemStackPushU32Ex(pVCpu, pVCpu->cpum.GstCtx.ebp, &TmpRsp);
498 if (rcStrict == VINF_SUCCESS)
499 rcStrict = iemMemStackPushU32Ex(pVCpu, pVCpu->cpum.GstCtx.esi, &TmpRsp);
500 if (rcStrict == VINF_SUCCESS)
501 rcStrict = iemMemStackPushU32Ex(pVCpu, pVCpu->cpum.GstCtx.edi, &TmpRsp);
502 if (rcStrict == VINF_SUCCESS)
503 {
504 pVCpu->cpum.GstCtx.rsp = TmpRsp.u;
505 iemRegAddToRipAndClearRF(pVCpu, cbInstr);
506 }
507 }
508 else
509 {
510 GCPtrBottom--;
511 uint32_t *pa32Mem;
512 rcStrict = iemMemMap(pVCpu, (void **)&pa32Mem, 32, X86_SREG_SS, GCPtrBottom, IEM_ACCESS_STACK_W);
513 if (rcStrict == VINF_SUCCESS)
514 {
515 pa32Mem[7 - X86_GREG_xDI] = pVCpu->cpum.GstCtx.edi;
516 pa32Mem[7 - X86_GREG_xSI] = pVCpu->cpum.GstCtx.esi;
517 pa32Mem[7 - X86_GREG_xBP] = pVCpu->cpum.GstCtx.ebp;
518 pa32Mem[7 - X86_GREG_xSP] = pVCpu->cpum.GstCtx.esp;
519 pa32Mem[7 - X86_GREG_xBX] = pVCpu->cpum.GstCtx.ebx;
520 pa32Mem[7 - X86_GREG_xDX] = pVCpu->cpum.GstCtx.edx;
521 pa32Mem[7 - X86_GREG_xCX] = pVCpu->cpum.GstCtx.ecx;
522 pa32Mem[7 - X86_GREG_xAX] = pVCpu->cpum.GstCtx.eax;
523 rcStrict = iemMemCommitAndUnmap(pVCpu, pa32Mem, IEM_ACCESS_STACK_W);
524 if (rcStrict == VINF_SUCCESS)
525 {
526 iemRegSubFromRsp(pVCpu, 32);
527 iemRegAddToRipAndClearRF(pVCpu, cbInstr);
528 }
529 }
530 }
531 return rcStrict;
532}
533
534
535/**
536 * Implements pushf.
537 *
538 *
539 * @param enmEffOpSize The effective operand size.
540 */
541IEM_CIMPL_DEF_1(iemCImpl_pushf, IEMMODE, enmEffOpSize)
542{
543 VBOXSTRICTRC rcStrict;
544
545 if (IEM_SVM_IS_CTRL_INTERCEPT_SET(pVCpu, SVM_CTRL_INTERCEPT_PUSHF))
546 {
547 Log2(("pushf: Guest intercept -> #VMEXIT\n"));
548 IEM_SVM_UPDATE_NRIP(pVCpu);
549 IEM_SVM_VMEXIT_RET(pVCpu, SVM_EXIT_PUSHF, 0 /* uExitInfo1 */, 0 /* uExitInfo2 */);
550 }
551
552 /*
553 * If we're in V8086 mode some care is required (which is why we're in
554 * doing this in a C implementation).
555 */
556 uint32_t fEfl = IEMMISC_GET_EFL(pVCpu);
557 if ( (fEfl & X86_EFL_VM)
558 && X86_EFL_GET_IOPL(fEfl) != 3 )
559 {
560 Assert(pVCpu->cpum.GstCtx.cr0 & X86_CR0_PE);
561 if ( enmEffOpSize != IEMMODE_16BIT
562 || !(pVCpu->cpum.GstCtx.cr4 & X86_CR4_VME))
563 return iemRaiseGeneralProtectionFault0(pVCpu);
564 fEfl &= ~X86_EFL_IF; /* (RF and VM are out of range) */
565 fEfl |= (fEfl & X86_EFL_VIF) >> (19 - 9);
566 rcStrict = iemMemStackPushU16(pVCpu, (uint16_t)fEfl);
567 }
568 else
569 {
570
571 /*
572 * Ok, clear RF and VM, adjust for ancient CPUs, and push the flags.
573 */
574 fEfl &= ~(X86_EFL_RF | X86_EFL_VM);
575
576 switch (enmEffOpSize)
577 {
578 case IEMMODE_16BIT:
579 AssertCompile(IEMTARGETCPU_8086 <= IEMTARGETCPU_186 && IEMTARGETCPU_V20 <= IEMTARGETCPU_186 && IEMTARGETCPU_286 > IEMTARGETCPU_186);
580 if (IEM_GET_TARGET_CPU(pVCpu) <= IEMTARGETCPU_186)
581 fEfl |= UINT16_C(0xf000);
582 rcStrict = iemMemStackPushU16(pVCpu, (uint16_t)fEfl);
583 break;
584 case IEMMODE_32BIT:
585 rcStrict = iemMemStackPushU32(pVCpu, fEfl);
586 break;
587 case IEMMODE_64BIT:
588 rcStrict = iemMemStackPushU64(pVCpu, fEfl);
589 break;
590 IEM_NOT_REACHED_DEFAULT_CASE_RET();
591 }
592 }
593 if (rcStrict != VINF_SUCCESS)
594 return rcStrict;
595
596 iemRegAddToRipAndClearRF(pVCpu, cbInstr);
597 return VINF_SUCCESS;
598}
599
600
601/**
602 * Implements popf.
603 *
604 * @param enmEffOpSize The effective operand size.
605 */
606IEM_CIMPL_DEF_1(iemCImpl_popf, IEMMODE, enmEffOpSize)
607{
608 uint32_t const fEflOld = IEMMISC_GET_EFL(pVCpu);
609 VBOXSTRICTRC rcStrict;
610 uint32_t fEflNew;
611
612 if (IEM_SVM_IS_CTRL_INTERCEPT_SET(pVCpu, SVM_CTRL_INTERCEPT_POPF))
613 {
614 Log2(("popf: Guest intercept -> #VMEXIT\n"));
615 IEM_SVM_UPDATE_NRIP(pVCpu);
616 IEM_SVM_VMEXIT_RET(pVCpu, SVM_EXIT_POPF, 0 /* uExitInfo1 */, 0 /* uExitInfo2 */);
617 }
618
619 /*
620 * V8086 is special as usual.
621 */
622 if (fEflOld & X86_EFL_VM)
623 {
624 /*
625 * Almost anything goes if IOPL is 3.
626 */
627 if (X86_EFL_GET_IOPL(fEflOld) == 3)
628 {
629 switch (enmEffOpSize)
630 {
631 case IEMMODE_16BIT:
632 {
633 uint16_t u16Value;
634 rcStrict = iemMemStackPopU16(pVCpu, &u16Value);
635 if (rcStrict != VINF_SUCCESS)
636 return rcStrict;
637 fEflNew = u16Value | (fEflOld & UINT32_C(0xffff0000));
638 break;
639 }
640 case IEMMODE_32BIT:
641 rcStrict = iemMemStackPopU32(pVCpu, &fEflNew);
642 if (rcStrict != VINF_SUCCESS)
643 return rcStrict;
644 break;
645 IEM_NOT_REACHED_DEFAULT_CASE_RET();
646 }
647
648 const uint32_t fPopfBits = pVCpu->CTX_SUFF(pVM)->cpum.ro.GuestFeatures.enmMicroarch != kCpumMicroarch_Intel_80386
649 ? X86_EFL_POPF_BITS : X86_EFL_POPF_BITS_386;
650 fEflNew &= fPopfBits & ~(X86_EFL_IOPL);
651 fEflNew |= ~(fPopfBits & ~(X86_EFL_IOPL)) & fEflOld;
652 }
653 /*
654 * Interrupt flag virtualization with CR4.VME=1.
655 */
656 else if ( enmEffOpSize == IEMMODE_16BIT
657 && (pVCpu->cpum.GstCtx.cr4 & X86_CR4_VME) )
658 {
659 uint16_t u16Value;
660 RTUINT64U TmpRsp;
661 TmpRsp.u = pVCpu->cpum.GstCtx.rsp;
662 rcStrict = iemMemStackPopU16Ex(pVCpu, &u16Value, &TmpRsp);
663 if (rcStrict != VINF_SUCCESS)
664 return rcStrict;
665
666 /** @todo Is the popf VME #GP(0) delivered after updating RSP+RIP
667 * or before? */
668 if ( ( (u16Value & X86_EFL_IF)
669 && (fEflOld & X86_EFL_VIP))
670 || (u16Value & X86_EFL_TF) )
671 return iemRaiseGeneralProtectionFault0(pVCpu);
672
673 fEflNew = u16Value | (fEflOld & UINT32_C(0xffff0000) & ~X86_EFL_VIF);
674 fEflNew |= (fEflNew & X86_EFL_IF) << (19 - 9);
675 fEflNew &= X86_EFL_POPF_BITS & ~(X86_EFL_IOPL | X86_EFL_IF);
676 fEflNew |= ~(X86_EFL_POPF_BITS & ~(X86_EFL_IOPL | X86_EFL_IF)) & fEflOld;
677
678 pVCpu->cpum.GstCtx.rsp = TmpRsp.u;
679 }
680 else
681 return iemRaiseGeneralProtectionFault0(pVCpu);
682
683 }
684 /*
685 * Not in V8086 mode.
686 */
687 else
688 {
689 /* Pop the flags. */
690 switch (enmEffOpSize)
691 {
692 case IEMMODE_16BIT:
693 {
694 uint16_t u16Value;
695 rcStrict = iemMemStackPopU16(pVCpu, &u16Value);
696 if (rcStrict != VINF_SUCCESS)
697 return rcStrict;
698 fEflNew = u16Value | (fEflOld & UINT32_C(0xffff0000));
699
700 /*
701 * Ancient CPU adjustments:
702 * - 8086, 80186, V20/30:
703 * Fixed bits 15:12 bits are not kept correctly internally, mostly for
704 * practical reasons (masking below). We add them when pushing flags.
705 * - 80286:
706 * The NT and IOPL flags cannot be popped from real mode and are
707 * therefore always zero (since a 286 can never exit from PM and
708 * their initial value is zero). This changed on a 386 and can
709 * therefore be used to detect 286 or 386 CPU in real mode.
710 */
711 if ( IEM_GET_TARGET_CPU(pVCpu) == IEMTARGETCPU_286
712 && !(pVCpu->cpum.GstCtx.cr0 & X86_CR0_PE) )
713 fEflNew &= ~(X86_EFL_NT | X86_EFL_IOPL);
714 break;
715 }
716 case IEMMODE_32BIT:
717 rcStrict = iemMemStackPopU32(pVCpu, &fEflNew);
718 if (rcStrict != VINF_SUCCESS)
719 return rcStrict;
720 break;
721 case IEMMODE_64BIT:
722 {
723 uint64_t u64Value;
724 rcStrict = iemMemStackPopU64(pVCpu, &u64Value);
725 if (rcStrict != VINF_SUCCESS)
726 return rcStrict;
727 fEflNew = u64Value; /** @todo testcase: Check exactly what happens if high bits are set. */
728 break;
729 }
730 IEM_NOT_REACHED_DEFAULT_CASE_RET();
731 }
732
733 /* Merge them with the current flags. */
734 const uint32_t fPopfBits = pVCpu->CTX_SUFF(pVM)->cpum.ro.GuestFeatures.enmMicroarch != kCpumMicroarch_Intel_80386
735 ? X86_EFL_POPF_BITS : X86_EFL_POPF_BITS_386;
736 if ( (fEflNew & (X86_EFL_IOPL | X86_EFL_IF)) == (fEflOld & (X86_EFL_IOPL | X86_EFL_IF))
737 || pVCpu->iem.s.uCpl == 0)
738 {
739 fEflNew &= fPopfBits;
740 fEflNew |= ~fPopfBits & fEflOld;
741 }
742 else if (pVCpu->iem.s.uCpl <= X86_EFL_GET_IOPL(fEflOld))
743 {
744 fEflNew &= fPopfBits & ~(X86_EFL_IOPL);
745 fEflNew |= ~(fPopfBits & ~(X86_EFL_IOPL)) & fEflOld;
746 }
747 else
748 {
749 fEflNew &= fPopfBits & ~(X86_EFL_IOPL | X86_EFL_IF);
750 fEflNew |= ~(fPopfBits & ~(X86_EFL_IOPL | X86_EFL_IF)) & fEflOld;
751 }
752 }
753
754 /*
755 * Commit the flags.
756 */
757 Assert(fEflNew & RT_BIT_32(1));
758 IEMMISC_SET_EFL(pVCpu, fEflNew);
759 iemRegAddToRipAndClearRF(pVCpu, cbInstr);
760
761 return VINF_SUCCESS;
762}
763
764
765/**
766 * Implements an indirect call.
767 *
768 * @param uNewPC The new program counter (RIP) value (loaded from the
769 * operand).
770 * @param enmEffOpSize The effective operand size.
771 */
772IEM_CIMPL_DEF_1(iemCImpl_call_16, uint16_t, uNewPC)
773{
774 uint16_t uOldPC = pVCpu->cpum.GstCtx.ip + cbInstr;
775 if (uNewPC > pVCpu->cpum.GstCtx.cs.u32Limit)
776 return iemRaiseGeneralProtectionFault0(pVCpu);
777
778 VBOXSTRICTRC rcStrict = iemMemStackPushU16(pVCpu, uOldPC);
779 if (rcStrict != VINF_SUCCESS)
780 return rcStrict;
781
782 pVCpu->cpum.GstCtx.rip = uNewPC;
783 pVCpu->cpum.GstCtx.eflags.Bits.u1RF = 0;
784
785#ifndef IEM_WITH_CODE_TLB
786 /* Flush the prefetch buffer. */
787 pVCpu->iem.s.cbOpcode = pVCpu->iem.s.offOpcode;
788#endif
789 return VINF_SUCCESS;
790}
791
792
793/**
794 * Implements a 16-bit relative call.
795 *
796 * @param offDisp The displacment offset.
797 */
798IEM_CIMPL_DEF_1(iemCImpl_call_rel_16, int16_t, offDisp)
799{
800 uint16_t uOldPC = pVCpu->cpum.GstCtx.ip + cbInstr;
801 uint16_t uNewPC = uOldPC + offDisp;
802 if (uNewPC > pVCpu->cpum.GstCtx.cs.u32Limit)
803 return iemRaiseGeneralProtectionFault0(pVCpu);
804
805 VBOXSTRICTRC rcStrict = iemMemStackPushU16(pVCpu, uOldPC);
806 if (rcStrict != VINF_SUCCESS)
807 return rcStrict;
808
809 pVCpu->cpum.GstCtx.rip = uNewPC;
810 pVCpu->cpum.GstCtx.eflags.Bits.u1RF = 0;
811
812#ifndef IEM_WITH_CODE_TLB
813 /* Flush the prefetch buffer. */
814 pVCpu->iem.s.cbOpcode = pVCpu->iem.s.offOpcode;
815#endif
816 return VINF_SUCCESS;
817}
818
819
820/**
821 * Implements a 32-bit indirect call.
822 *
823 * @param uNewPC The new program counter (RIP) value (loaded from the
824 * operand).
825 * @param enmEffOpSize The effective operand size.
826 */
827IEM_CIMPL_DEF_1(iemCImpl_call_32, uint32_t, uNewPC)
828{
829 uint32_t uOldPC = pVCpu->cpum.GstCtx.eip + cbInstr;
830 if (uNewPC > pVCpu->cpum.GstCtx.cs.u32Limit)
831 return iemRaiseGeneralProtectionFault0(pVCpu);
832
833 VBOXSTRICTRC rcStrict = iemMemStackPushU32(pVCpu, uOldPC);
834 if (rcStrict != VINF_SUCCESS)
835 return rcStrict;
836
837 pVCpu->cpum.GstCtx.rip = uNewPC;
838 pVCpu->cpum.GstCtx.eflags.Bits.u1RF = 0;
839
840#ifndef IEM_WITH_CODE_TLB
841 /* Flush the prefetch buffer. */
842 pVCpu->iem.s.cbOpcode = pVCpu->iem.s.offOpcode;
843#endif
844 return VINF_SUCCESS;
845}
846
847
848/**
849 * Implements a 32-bit relative call.
850 *
851 * @param offDisp The displacment offset.
852 */
853IEM_CIMPL_DEF_1(iemCImpl_call_rel_32, int32_t, offDisp)
854{
855 uint32_t uOldPC = pVCpu->cpum.GstCtx.eip + cbInstr;
856 uint32_t uNewPC = uOldPC + offDisp;
857 if (uNewPC > pVCpu->cpum.GstCtx.cs.u32Limit)
858 return iemRaiseGeneralProtectionFault0(pVCpu);
859
860 VBOXSTRICTRC rcStrict = iemMemStackPushU32(pVCpu, uOldPC);
861 if (rcStrict != VINF_SUCCESS)
862 return rcStrict;
863
864 pVCpu->cpum.GstCtx.rip = uNewPC;
865 pVCpu->cpum.GstCtx.eflags.Bits.u1RF = 0;
866
867#ifndef IEM_WITH_CODE_TLB
868 /* Flush the prefetch buffer. */
869 pVCpu->iem.s.cbOpcode = pVCpu->iem.s.offOpcode;
870#endif
871 return VINF_SUCCESS;
872}
873
874
875/**
876 * Implements a 64-bit indirect call.
877 *
878 * @param uNewPC The new program counter (RIP) value (loaded from the
879 * operand).
880 * @param enmEffOpSize The effective operand size.
881 */
882IEM_CIMPL_DEF_1(iemCImpl_call_64, uint64_t, uNewPC)
883{
884 uint64_t uOldPC = pVCpu->cpum.GstCtx.rip + cbInstr;
885 if (!IEM_IS_CANONICAL(uNewPC))
886 return iemRaiseGeneralProtectionFault0(pVCpu);
887
888 VBOXSTRICTRC rcStrict = iemMemStackPushU64(pVCpu, uOldPC);
889 if (rcStrict != VINF_SUCCESS)
890 return rcStrict;
891
892 pVCpu->cpum.GstCtx.rip = uNewPC;
893 pVCpu->cpum.GstCtx.eflags.Bits.u1RF = 0;
894
895#ifndef IEM_WITH_CODE_TLB
896 /* Flush the prefetch buffer. */
897 pVCpu->iem.s.cbOpcode = pVCpu->iem.s.offOpcode;
898#endif
899 return VINF_SUCCESS;
900}
901
902
903/**
904 * Implements a 64-bit relative call.
905 *
906 * @param offDisp The displacment offset.
907 */
908IEM_CIMPL_DEF_1(iemCImpl_call_rel_64, int64_t, offDisp)
909{
910 uint64_t uOldPC = pVCpu->cpum.GstCtx.rip + cbInstr;
911 uint64_t uNewPC = uOldPC + offDisp;
912 if (!IEM_IS_CANONICAL(uNewPC))
913 return iemRaiseNotCanonical(pVCpu);
914
915 VBOXSTRICTRC rcStrict = iemMemStackPushU64(pVCpu, uOldPC);
916 if (rcStrict != VINF_SUCCESS)
917 return rcStrict;
918
919 pVCpu->cpum.GstCtx.rip = uNewPC;
920 pVCpu->cpum.GstCtx.eflags.Bits.u1RF = 0;
921
922#ifndef IEM_WITH_CODE_TLB
923 /* Flush the prefetch buffer. */
924 pVCpu->iem.s.cbOpcode = pVCpu->iem.s.offOpcode;
925#endif
926
927 return VINF_SUCCESS;
928}
929
930
931/**
932 * Implements far jumps and calls thru task segments (TSS).
933 *
934 * @param uSel The selector.
935 * @param enmBranch The kind of branching we're performing.
936 * @param enmEffOpSize The effective operand size.
937 * @param pDesc The descriptor corresponding to @a uSel. The type is
938 * task gate.
939 */
940IEM_CIMPL_DEF_4(iemCImpl_BranchTaskSegment, uint16_t, uSel, IEMBRANCH, enmBranch, IEMMODE, enmEffOpSize, PIEMSELDESC, pDesc)
941{
942#ifndef IEM_IMPLEMENTS_TASKSWITCH
943 IEM_RETURN_ASPECT_NOT_IMPLEMENTED();
944#else
945 Assert(enmBranch == IEMBRANCH_JUMP || enmBranch == IEMBRANCH_CALL);
946 Assert( pDesc->Legacy.Gate.u4Type == X86_SEL_TYPE_SYS_286_TSS_AVAIL
947 || pDesc->Legacy.Gate.u4Type == X86_SEL_TYPE_SYS_386_TSS_AVAIL);
948 RT_NOREF_PV(enmEffOpSize);
949 IEM_CTX_ASSERT(pVCpu, IEM_CPUMCTX_EXTRN_XCPT_MASK);
950
951 if ( pDesc->Legacy.Gate.u2Dpl < pVCpu->iem.s.uCpl
952 || pDesc->Legacy.Gate.u2Dpl < (uSel & X86_SEL_RPL))
953 {
954 Log(("BranchTaskSegment invalid priv. uSel=%04x TSS DPL=%d CPL=%u Sel RPL=%u -> #GP\n", uSel, pDesc->Legacy.Gate.u2Dpl,
955 pVCpu->iem.s.uCpl, (uSel & X86_SEL_RPL)));
956 return iemRaiseGeneralProtectionFaultBySelector(pVCpu, uSel & X86_SEL_MASK_OFF_RPL);
957 }
958
959 /** @todo This is checked earlier for far jumps (see iemCImpl_FarJmp) but not
960 * far calls (see iemCImpl_callf). Most likely in both cases it should be
961 * checked here, need testcases. */
962 if (!pDesc->Legacy.Gen.u1Present)
963 {
964 Log(("BranchTaskSegment TSS not present uSel=%04x -> #NP\n", uSel));
965 return iemRaiseSelectorNotPresentBySelector(pVCpu, uSel & X86_SEL_MASK_OFF_RPL);
966 }
967
968 uint32_t uNextEip = pVCpu->cpum.GstCtx.eip + cbInstr;
969 return iemTaskSwitch(pVCpu, enmBranch == IEMBRANCH_JUMP ? IEMTASKSWITCH_JUMP : IEMTASKSWITCH_CALL,
970 uNextEip, 0 /* fFlags */, 0 /* uErr */, 0 /* uCr2 */, uSel, pDesc);
971#endif
972}
973
974
975/**
976 * Implements far jumps and calls thru task gates.
977 *
978 * @param uSel The selector.
979 * @param enmBranch The kind of branching we're performing.
980 * @param enmEffOpSize The effective operand size.
981 * @param pDesc The descriptor corresponding to @a uSel. The type is
982 * task gate.
983 */
984IEM_CIMPL_DEF_4(iemCImpl_BranchTaskGate, uint16_t, uSel, IEMBRANCH, enmBranch, IEMMODE, enmEffOpSize, PIEMSELDESC, pDesc)
985{
986#ifndef IEM_IMPLEMENTS_TASKSWITCH
987 IEM_RETURN_ASPECT_NOT_IMPLEMENTED();
988#else
989 Assert(enmBranch == IEMBRANCH_JUMP || enmBranch == IEMBRANCH_CALL);
990 RT_NOREF_PV(enmEffOpSize);
991 IEM_CTX_ASSERT(pVCpu, IEM_CPUMCTX_EXTRN_XCPT_MASK);
992
993 if ( pDesc->Legacy.Gate.u2Dpl < pVCpu->iem.s.uCpl
994 || pDesc->Legacy.Gate.u2Dpl < (uSel & X86_SEL_RPL))
995 {
996 Log(("BranchTaskGate invalid priv. uSel=%04x TSS DPL=%d CPL=%u Sel RPL=%u -> #GP\n", uSel, pDesc->Legacy.Gate.u2Dpl,
997 pVCpu->iem.s.uCpl, (uSel & X86_SEL_RPL)));
998 return iemRaiseGeneralProtectionFaultBySelector(pVCpu, uSel & X86_SEL_MASK_OFF_RPL);
999 }
1000
1001 /** @todo This is checked earlier for far jumps (see iemCImpl_FarJmp) but not
1002 * far calls (see iemCImpl_callf). Most likely in both cases it should be
1003 * checked here, need testcases. */
1004 if (!pDesc->Legacy.Gen.u1Present)
1005 {
1006 Log(("BranchTaskSegment segment not present uSel=%04x -> #NP\n", uSel));
1007 return iemRaiseSelectorNotPresentBySelector(pVCpu, uSel & X86_SEL_MASK_OFF_RPL);
1008 }
1009
1010 /*
1011 * Fetch the new TSS descriptor from the GDT.
1012 */
1013 RTSEL uSelTss = pDesc->Legacy.Gate.u16Sel;
1014 if (uSelTss & X86_SEL_LDT)
1015 {
1016 Log(("BranchTaskGate TSS is in LDT. uSel=%04x uSelTss=%04x -> #GP\n", uSel, uSelTss));
1017 return iemRaiseGeneralProtectionFaultBySelector(pVCpu, uSel & X86_SEL_MASK_OFF_RPL);
1018 }
1019
1020 IEMSELDESC TssDesc;
1021 VBOXSTRICTRC rcStrict = iemMemFetchSelDesc(pVCpu, &TssDesc, uSelTss, X86_XCPT_GP);
1022 if (rcStrict != VINF_SUCCESS)
1023 return rcStrict;
1024
1025 if (TssDesc.Legacy.Gate.u4Type & X86_SEL_TYPE_SYS_TSS_BUSY_MASK)
1026 {
1027 Log(("BranchTaskGate TSS is busy. uSel=%04x uSelTss=%04x DescType=%#x -> #GP\n", uSel, uSelTss,
1028 TssDesc.Legacy.Gate.u4Type));
1029 return iemRaiseGeneralProtectionFaultBySelector(pVCpu, uSel & X86_SEL_MASK_OFF_RPL);
1030 }
1031
1032 if (!TssDesc.Legacy.Gate.u1Present)
1033 {
1034 Log(("BranchTaskGate TSS is not present. uSel=%04x uSelTss=%04x -> #NP\n", uSel, uSelTss));
1035 return iemRaiseSelectorNotPresentBySelector(pVCpu, uSelTss & X86_SEL_MASK_OFF_RPL);
1036 }
1037
1038 uint32_t uNextEip = pVCpu->cpum.GstCtx.eip + cbInstr;
1039 return iemTaskSwitch(pVCpu, enmBranch == IEMBRANCH_JUMP ? IEMTASKSWITCH_JUMP : IEMTASKSWITCH_CALL,
1040 uNextEip, 0 /* fFlags */, 0 /* uErr */, 0 /* uCr2 */, uSelTss, &TssDesc);
1041#endif
1042}
1043
1044
1045/**
1046 * Implements far jumps and calls thru call gates.
1047 *
1048 * @param uSel The selector.
1049 * @param enmBranch The kind of branching we're performing.
1050 * @param enmEffOpSize The effective operand size.
1051 * @param pDesc The descriptor corresponding to @a uSel. The type is
1052 * call gate.
1053 */
1054IEM_CIMPL_DEF_4(iemCImpl_BranchCallGate, uint16_t, uSel, IEMBRANCH, enmBranch, IEMMODE, enmEffOpSize, PIEMSELDESC, pDesc)
1055{
1056#define IEM_IMPLEMENTS_CALLGATE
1057#ifndef IEM_IMPLEMENTS_CALLGATE
1058 IEM_RETURN_ASPECT_NOT_IMPLEMENTED();
1059#else
1060 RT_NOREF_PV(enmEffOpSize);
1061 IEM_CTX_ASSERT(pVCpu, IEM_CPUMCTX_EXTRN_XCPT_MASK);
1062
1063 /* NB: Far jumps can only do intra-privilege transfers. Far calls support
1064 * inter-privilege calls and are much more complex.
1065 *
1066 * NB: 64-bit call gate has the same type as a 32-bit call gate! If
1067 * EFER.LMA=1, the gate must be 64-bit. Conversely if EFER.LMA=0, the gate
1068 * must be 16-bit or 32-bit.
1069 */
1070 /** @todo: effective operand size is probably irrelevant here, only the
1071 * call gate bitness matters??
1072 */
1073 VBOXSTRICTRC rcStrict;
1074 RTPTRUNION uPtrRet;
1075 uint64_t uNewRsp;
1076 uint64_t uNewRip;
1077 uint64_t u64Base;
1078 uint32_t cbLimit;
1079 RTSEL uNewCS;
1080 IEMSELDESC DescCS;
1081
1082 AssertCompile(X86_SEL_TYPE_SYS_386_CALL_GATE == AMD64_SEL_TYPE_SYS_CALL_GATE);
1083 Assert(enmBranch == IEMBRANCH_JUMP || enmBranch == IEMBRANCH_CALL);
1084 Assert( pDesc->Legacy.Gate.u4Type == X86_SEL_TYPE_SYS_286_CALL_GATE
1085 || pDesc->Legacy.Gate.u4Type == X86_SEL_TYPE_SYS_386_CALL_GATE);
1086
1087 /* Determine the new instruction pointer from the gate descriptor. */
1088 uNewRip = pDesc->Legacy.Gate.u16OffsetLow
1089 | ((uint32_t)pDesc->Legacy.Gate.u16OffsetHigh << 16)
1090 | ((uint64_t)pDesc->Long.Gate.u32OffsetTop << 32);
1091
1092 /* Perform DPL checks on the gate descriptor. */
1093 if ( pDesc->Legacy.Gate.u2Dpl < pVCpu->iem.s.uCpl
1094 || pDesc->Legacy.Gate.u2Dpl < (uSel & X86_SEL_RPL))
1095 {
1096 Log(("BranchCallGate invalid priv. uSel=%04x Gate DPL=%d CPL=%u Sel RPL=%u -> #GP\n", uSel, pDesc->Legacy.Gate.u2Dpl,
1097 pVCpu->iem.s.uCpl, (uSel & X86_SEL_RPL)));
1098 return iemRaiseGeneralProtectionFaultBySelector(pVCpu, uSel);
1099 }
1100
1101 /** @todo does this catch NULL selectors, too? */
1102 if (!pDesc->Legacy.Gen.u1Present)
1103 {
1104 Log(("BranchCallGate Gate not present uSel=%04x -> #NP\n", uSel));
1105 return iemRaiseSelectorNotPresentBySelector(pVCpu, uSel);
1106 }
1107
1108 /*
1109 * Fetch the target CS descriptor from the GDT or LDT.
1110 */
1111 uNewCS = pDesc->Legacy.Gate.u16Sel;
1112 rcStrict = iemMemFetchSelDesc(pVCpu, &DescCS, uNewCS, X86_XCPT_GP);
1113 if (rcStrict != VINF_SUCCESS)
1114 return rcStrict;
1115
1116 /* Target CS must be a code selector. */
1117 if ( !DescCS.Legacy.Gen.u1DescType
1118 || !(DescCS.Legacy.Gen.u4Type & X86_SEL_TYPE_CODE) )
1119 {
1120 Log(("BranchCallGate %04x:%08RX64 -> not a code selector (u1DescType=%u u4Type=%#x).\n",
1121 uNewCS, uNewRip, DescCS.Legacy.Gen.u1DescType, DescCS.Legacy.Gen.u4Type));
1122 return iemRaiseGeneralProtectionFaultBySelector(pVCpu, uNewCS);
1123 }
1124
1125 /* Privilege checks on target CS. */
1126 if (enmBranch == IEMBRANCH_JUMP)
1127 {
1128 if (DescCS.Legacy.Gen.u4Type & X86_SEL_TYPE_CONF)
1129 {
1130 if (DescCS.Legacy.Gen.u2Dpl > pVCpu->iem.s.uCpl)
1131 {
1132 Log(("BranchCallGate jump (conforming) bad DPL uNewCS=%04x Gate DPL=%d CPL=%u -> #GP\n",
1133 uNewCS, DescCS.Legacy.Gen.u2Dpl, pVCpu->iem.s.uCpl));
1134 return iemRaiseGeneralProtectionFaultBySelector(pVCpu, uNewCS);
1135 }
1136 }
1137 else
1138 {
1139 if (DescCS.Legacy.Gen.u2Dpl != pVCpu->iem.s.uCpl)
1140 {
1141 Log(("BranchCallGate jump (non-conforming) bad DPL uNewCS=%04x Gate DPL=%d CPL=%u -> #GP\n",
1142 uNewCS, DescCS.Legacy.Gen.u2Dpl, pVCpu->iem.s.uCpl));
1143 return iemRaiseGeneralProtectionFaultBySelector(pVCpu, uNewCS);
1144 }
1145 }
1146 }
1147 else
1148 {
1149 Assert(enmBranch == IEMBRANCH_CALL);
1150 if (DescCS.Legacy.Gen.u2Dpl > pVCpu->iem.s.uCpl)
1151 {
1152 Log(("BranchCallGate call invalid priv. uNewCS=%04x Gate DPL=%d CPL=%u -> #GP\n",
1153 uNewCS, DescCS.Legacy.Gen.u2Dpl, pVCpu->iem.s.uCpl));
1154 return iemRaiseGeneralProtectionFaultBySelector(pVCpu, uNewCS & X86_SEL_MASK_OFF_RPL);
1155 }
1156 }
1157
1158 /* Additional long mode checks. */
1159 if (IEM_IS_LONG_MODE(pVCpu))
1160 {
1161 if (!DescCS.Legacy.Gen.u1Long)
1162 {
1163 Log(("BranchCallGate uNewCS %04x -> not a 64-bit code segment.\n", uNewCS));
1164 return iemRaiseGeneralProtectionFaultBySelector(pVCpu, uNewCS);
1165 }
1166
1167 /* L vs D. */
1168 if ( DescCS.Legacy.Gen.u1Long
1169 && DescCS.Legacy.Gen.u1DefBig)
1170 {
1171 Log(("BranchCallGate uNewCS %04x -> both L and D are set.\n", uNewCS));
1172 return iemRaiseGeneralProtectionFaultBySelector(pVCpu, uNewCS);
1173 }
1174 }
1175
1176 if (!DescCS.Legacy.Gate.u1Present)
1177 {
1178 Log(("BranchCallGate target CS is not present. uSel=%04x uNewCS=%04x -> #NP(CS)\n", uSel, uNewCS));
1179 return iemRaiseSelectorNotPresentBySelector(pVCpu, uNewCS);
1180 }
1181
1182 if (enmBranch == IEMBRANCH_JUMP)
1183 {
1184 /** @todo: This is very similar to regular far jumps; merge! */
1185 /* Jumps are fairly simple... */
1186
1187 /* Chop the high bits off if 16-bit gate (Intel says so). */
1188 if (pDesc->Legacy.Gate.u4Type == X86_SEL_TYPE_SYS_286_CALL_GATE)
1189 uNewRip = (uint16_t)uNewRip;
1190
1191 /* Limit check for non-long segments. */
1192 cbLimit = X86DESC_LIMIT_G(&DescCS.Legacy);
1193 if (DescCS.Legacy.Gen.u1Long)
1194 u64Base = 0;
1195 else
1196 {
1197 if (uNewRip > cbLimit)
1198 {
1199 Log(("BranchCallGate jump %04x:%08RX64 -> out of bounds (%#x) -> #GP(0)\n", uNewCS, uNewRip, cbLimit));
1200 return iemRaiseGeneralProtectionFaultBySelector(pVCpu, 0);
1201 }
1202 u64Base = X86DESC_BASE(&DescCS.Legacy);
1203 }
1204
1205 /* Canonical address check. */
1206 if (!IEM_IS_CANONICAL(uNewRip))
1207 {
1208 Log(("BranchCallGate jump %04x:%016RX64 - not canonical -> #GP\n", uNewCS, uNewRip));
1209 return iemRaiseNotCanonical(pVCpu);
1210 }
1211
1212 /*
1213 * Ok, everything checked out fine. Now set the accessed bit before
1214 * committing the result into CS, CSHID and RIP.
1215 */
1216 if (!(DescCS.Legacy.Gen.u4Type & X86_SEL_TYPE_ACCESSED))
1217 {
1218 rcStrict = iemMemMarkSelDescAccessed(pVCpu, uNewCS);
1219 if (rcStrict != VINF_SUCCESS)
1220 return rcStrict;
1221 /** @todo check what VT-x and AMD-V does. */
1222 DescCS.Legacy.Gen.u4Type |= X86_SEL_TYPE_ACCESSED;
1223 }
1224
1225 /* commit */
1226 pVCpu->cpum.GstCtx.rip = uNewRip;
1227 pVCpu->cpum.GstCtx.cs.Sel = uNewCS & X86_SEL_MASK_OFF_RPL;
1228 pVCpu->cpum.GstCtx.cs.Sel |= pVCpu->iem.s.uCpl; /** @todo is this right for conforming segs? or in general? */
1229 pVCpu->cpum.GstCtx.cs.ValidSel = pVCpu->cpum.GstCtx.cs.Sel;
1230 pVCpu->cpum.GstCtx.cs.fFlags = CPUMSELREG_FLAGS_VALID;
1231 pVCpu->cpum.GstCtx.cs.Attr.u = X86DESC_GET_HID_ATTR(&DescCS.Legacy);
1232 pVCpu->cpum.GstCtx.cs.u32Limit = cbLimit;
1233 pVCpu->cpum.GstCtx.cs.u64Base = u64Base;
1234 pVCpu->iem.s.enmCpuMode = iemCalcCpuMode(pVCpu);
1235 }
1236 else
1237 {
1238 Assert(enmBranch == IEMBRANCH_CALL);
1239 /* Calls are much more complicated. */
1240
1241 if (!(DescCS.Legacy.Gen.u4Type & X86_SEL_TYPE_CONF) && (DescCS.Legacy.Gen.u2Dpl < pVCpu->iem.s.uCpl))
1242 {
1243 uint16_t offNewStack; /* Offset of new stack in TSS. */
1244 uint16_t cbNewStack; /* Number of bytes the stack information takes up in TSS. */
1245 uint8_t uNewCSDpl;
1246 uint8_t cbWords;
1247 RTSEL uNewSS;
1248 RTSEL uOldSS;
1249 uint64_t uOldRsp;
1250 IEMSELDESC DescSS;
1251 RTPTRUNION uPtrTSS;
1252 RTGCPTR GCPtrTSS;
1253 RTPTRUNION uPtrParmWds;
1254 RTGCPTR GCPtrParmWds;
1255
1256 /* More privilege. This is the fun part. */
1257 Assert(!(DescCS.Legacy.Gen.u4Type & X86_SEL_TYPE_CONF)); /* Filtered out above. */
1258
1259 /*
1260 * Determine new SS:rSP from the TSS.
1261 */
1262 Assert(!pVCpu->cpum.GstCtx.tr.Attr.n.u1DescType);
1263
1264 /* Figure out where the new stack pointer is stored in the TSS. */
1265 uNewCSDpl = DescCS.Legacy.Gen.u2Dpl;
1266 if (!IEM_IS_LONG_MODE(pVCpu))
1267 {
1268 if (pVCpu->cpum.GstCtx.tr.Attr.n.u4Type == X86_SEL_TYPE_SYS_386_TSS_BUSY)
1269 {
1270 offNewStack = RT_UOFFSETOF(X86TSS32, esp0) + uNewCSDpl * 8;
1271 cbNewStack = RT_SIZEOFMEMB(X86TSS32, esp0) + RT_SIZEOFMEMB(X86TSS32, ss0);
1272 }
1273 else
1274 {
1275 Assert(pVCpu->cpum.GstCtx.tr.Attr.n.u4Type == X86_SEL_TYPE_SYS_286_TSS_BUSY);
1276 offNewStack = RT_UOFFSETOF(X86TSS16, sp0) + uNewCSDpl * 4;
1277 cbNewStack = RT_SIZEOFMEMB(X86TSS16, sp0) + RT_SIZEOFMEMB(X86TSS16, ss0);
1278 }
1279 }
1280 else
1281 {
1282 Assert(pVCpu->cpum.GstCtx.tr.Attr.n.u4Type == AMD64_SEL_TYPE_SYS_TSS_BUSY);
1283 offNewStack = RT_UOFFSETOF(X86TSS64, rsp0) + uNewCSDpl * RT_SIZEOFMEMB(X86TSS64, rsp0);
1284 cbNewStack = RT_SIZEOFMEMB(X86TSS64, rsp0);
1285 }
1286
1287 /* Check against TSS limit. */
1288 if ((uint16_t)(offNewStack + cbNewStack - 1) > pVCpu->cpum.GstCtx.tr.u32Limit)
1289 {
1290 Log(("BranchCallGate inner stack past TSS limit - %u > %u -> #TS(TSS)\n", offNewStack + cbNewStack - 1, pVCpu->cpum.GstCtx.tr.u32Limit));
1291 return iemRaiseTaskSwitchFaultBySelector(pVCpu, pVCpu->cpum.GstCtx.tr.Sel);
1292 }
1293
1294 GCPtrTSS = pVCpu->cpum.GstCtx.tr.u64Base + offNewStack;
1295 rcStrict = iemMemMap(pVCpu, &uPtrTSS.pv, cbNewStack, UINT8_MAX, GCPtrTSS, IEM_ACCESS_SYS_R);
1296 if (rcStrict != VINF_SUCCESS)
1297 {
1298 Log(("BranchCallGate: TSS mapping failed (%Rrc)\n", VBOXSTRICTRC_VAL(rcStrict)));
1299 return rcStrict;
1300 }
1301
1302 if (!IEM_IS_LONG_MODE(pVCpu))
1303 {
1304 if (pVCpu->cpum.GstCtx.tr.Attr.n.u4Type == X86_SEL_TYPE_SYS_386_TSS_BUSY)
1305 {
1306 uNewRsp = uPtrTSS.pu32[0];
1307 uNewSS = uPtrTSS.pu16[2];
1308 }
1309 else
1310 {
1311 Assert(pVCpu->cpum.GstCtx.tr.Attr.n.u4Type == X86_SEL_TYPE_SYS_286_TSS_BUSY);
1312 uNewRsp = uPtrTSS.pu16[0];
1313 uNewSS = uPtrTSS.pu16[1];
1314 }
1315 }
1316 else
1317 {
1318 Assert(pVCpu->cpum.GstCtx.tr.Attr.n.u4Type == AMD64_SEL_TYPE_SYS_TSS_BUSY);
1319 /* SS will be a NULL selector, but that's valid. */
1320 uNewRsp = uPtrTSS.pu64[0];
1321 uNewSS = uNewCSDpl;
1322 }
1323
1324 /* Done with the TSS now. */
1325 rcStrict = iemMemCommitAndUnmap(pVCpu, uPtrTSS.pv, IEM_ACCESS_SYS_R);
1326 if (rcStrict != VINF_SUCCESS)
1327 {
1328 Log(("BranchCallGate: TSS unmapping failed (%Rrc)\n", VBOXSTRICTRC_VAL(rcStrict)));
1329 return rcStrict;
1330 }
1331
1332 /* Only used outside of long mode. */
1333 cbWords = pDesc->Legacy.Gate.u5ParmCount;
1334
1335 /* If EFER.LMA is 0, there's extra work to do. */
1336 if (!IEM_IS_LONG_MODE(pVCpu))
1337 {
1338 if ((uNewSS & X86_SEL_MASK_OFF_RPL) == 0)
1339 {
1340 Log(("BranchCallGate new SS NULL -> #TS(NewSS)\n"));
1341 return iemRaiseTaskSwitchFaultBySelector(pVCpu, uNewSS);
1342 }
1343
1344 /* Grab the new SS descriptor. */
1345 rcStrict = iemMemFetchSelDesc(pVCpu, &DescSS, uNewSS, X86_XCPT_SS);
1346 if (rcStrict != VINF_SUCCESS)
1347 return rcStrict;
1348
1349 /* Ensure that CS.DPL == SS.RPL == SS.DPL. */
1350 if ( (DescCS.Legacy.Gen.u2Dpl != (uNewSS & X86_SEL_RPL))
1351 || (DescCS.Legacy.Gen.u2Dpl != DescSS.Legacy.Gen.u2Dpl))
1352 {
1353 Log(("BranchCallGate call bad RPL/DPL uNewSS=%04x SS DPL=%d CS DPL=%u -> #TS(NewSS)\n",
1354 uNewSS, DescCS.Legacy.Gen.u2Dpl, DescCS.Legacy.Gen.u2Dpl));
1355 return iemRaiseTaskSwitchFaultBySelector(pVCpu, uNewSS);
1356 }
1357
1358 /* Ensure new SS is a writable data segment. */
1359 if ((DescSS.Legacy.Gen.u4Type & (X86_SEL_TYPE_CODE | X86_SEL_TYPE_WRITE)) != X86_SEL_TYPE_WRITE)
1360 {
1361 Log(("BranchCallGate call new SS -> not a writable data selector (u4Type=%#x)\n", DescSS.Legacy.Gen.u4Type));
1362 return iemRaiseTaskSwitchFaultBySelector(pVCpu, uNewSS);
1363 }
1364
1365 if (!DescSS.Legacy.Gen.u1Present)
1366 {
1367 Log(("BranchCallGate New stack not present uSel=%04x -> #SS(NewSS)\n", uNewSS));
1368 return iemRaiseStackSelectorNotPresentBySelector(pVCpu, uNewSS);
1369 }
1370 if (pDesc->Legacy.Gate.u4Type == X86_SEL_TYPE_SYS_386_CALL_GATE)
1371 cbNewStack = (uint16_t)sizeof(uint32_t) * (4 + cbWords);
1372 else
1373 cbNewStack = (uint16_t)sizeof(uint16_t) * (4 + cbWords);
1374 }
1375 else
1376 {
1377 /* Just grab the new (NULL) SS descriptor. */
1378 /** @todo testcase: Check whether the zero GDT entry is actually loaded here
1379 * like we do... */
1380 rcStrict = iemMemFetchSelDesc(pVCpu, &DescSS, uNewSS, X86_XCPT_SS);
1381 if (rcStrict != VINF_SUCCESS)
1382 return rcStrict;
1383
1384 cbNewStack = sizeof(uint64_t) * 4;
1385 }
1386
1387 /** @todo: According to Intel, new stack is checked for enough space first,
1388 * then switched. According to AMD, the stack is switched first and
1389 * then pushes might fault!
1390 * NB: OS/2 Warp 3/4 actively relies on the fact that possible
1391 * incoming stack #PF happens before actual stack switch. AMD is
1392 * either lying or implicitly assumes that new state is committed
1393 * only if and when an instruction doesn't fault.
1394 */
1395
1396 /** @todo: According to AMD, CS is loaded first, then SS.
1397 * According to Intel, it's the other way around!?
1398 */
1399
1400 /** @todo: Intel and AMD disagree on when exactly the CPL changes! */
1401
1402 /* Set the accessed bit before committing new SS. */
1403 if (!(DescSS.Legacy.Gen.u4Type & X86_SEL_TYPE_ACCESSED))
1404 {
1405 rcStrict = iemMemMarkSelDescAccessed(pVCpu, uNewSS);
1406 if (rcStrict != VINF_SUCCESS)
1407 return rcStrict;
1408 DescSS.Legacy.Gen.u4Type |= X86_SEL_TYPE_ACCESSED;
1409 }
1410
1411 /* Remember the old SS:rSP and their linear address. */
1412 uOldSS = pVCpu->cpum.GstCtx.ss.Sel;
1413 uOldRsp = pVCpu->cpum.GstCtx.ss.Attr.n.u1DefBig ? pVCpu->cpum.GstCtx.rsp : pVCpu->cpum.GstCtx.sp;
1414
1415 GCPtrParmWds = pVCpu->cpum.GstCtx.ss.u64Base + uOldRsp;
1416
1417 /* HACK ALERT! Probe if the write to the new stack will succeed. May #SS(NewSS)
1418 or #PF, the former is not implemented in this workaround. */
1419 /** @todo Proper fix callgate target stack exceptions. */
1420 /** @todo testcase: Cover callgates with partially or fully inaccessible
1421 * target stacks. */
1422 void *pvNewFrame;
1423 RTGCPTR GCPtrNewStack = X86DESC_BASE(&DescSS.Legacy) + uNewRsp - cbNewStack;
1424 rcStrict = iemMemMap(pVCpu, &pvNewFrame, cbNewStack, UINT8_MAX, GCPtrNewStack, IEM_ACCESS_SYS_RW);
1425 if (rcStrict != VINF_SUCCESS)
1426 {
1427 Log(("BranchCallGate: Incoming stack (%04x:%08RX64) not accessible, rc=%Rrc\n", uNewSS, uNewRsp, VBOXSTRICTRC_VAL(rcStrict)));
1428 return rcStrict;
1429 }
1430 rcStrict = iemMemCommitAndUnmap(pVCpu, pvNewFrame, IEM_ACCESS_SYS_RW);
1431 if (rcStrict != VINF_SUCCESS)
1432 {
1433 Log(("BranchCallGate: New stack probe unmapping failed (%Rrc)\n", VBOXSTRICTRC_VAL(rcStrict)));
1434 return rcStrict;
1435 }
1436
1437 /* Commit new SS:rSP. */
1438 pVCpu->cpum.GstCtx.ss.Sel = uNewSS;
1439 pVCpu->cpum.GstCtx.ss.ValidSel = uNewSS;
1440 pVCpu->cpum.GstCtx.ss.Attr.u = X86DESC_GET_HID_ATTR(&DescSS.Legacy);
1441 pVCpu->cpum.GstCtx.ss.u32Limit = X86DESC_LIMIT_G(&DescSS.Legacy);
1442 pVCpu->cpum.GstCtx.ss.u64Base = X86DESC_BASE(&DescSS.Legacy);
1443 pVCpu->cpum.GstCtx.ss.fFlags = CPUMSELREG_FLAGS_VALID;
1444 pVCpu->cpum.GstCtx.rsp = uNewRsp;
1445 pVCpu->iem.s.uCpl = uNewCSDpl;
1446 Assert(CPUMSELREG_ARE_HIDDEN_PARTS_VALID(pVCpu, &pVCpu->cpum.GstCtx.ss));
1447 CPUMSetChangedFlags(pVCpu, CPUM_CHANGED_HIDDEN_SEL_REGS);
1448
1449 /* At this point the stack access must not fail because new state was already committed. */
1450 /** @todo this can still fail due to SS.LIMIT not check. */
1451 rcStrict = iemMemStackPushBeginSpecial(pVCpu, cbNewStack,
1452 &uPtrRet.pv, &uNewRsp);
1453 AssertMsgReturn(rcStrict == VINF_SUCCESS, ("BranchCallGate: New stack mapping failed (%Rrc)\n", VBOXSTRICTRC_VAL(rcStrict)),
1454 VERR_INTERNAL_ERROR_5);
1455
1456 if (!IEM_IS_LONG_MODE(pVCpu))
1457 {
1458 if (pDesc->Legacy.Gate.u4Type == X86_SEL_TYPE_SYS_386_CALL_GATE)
1459 {
1460 /* Push the old CS:rIP. */
1461 uPtrRet.pu32[0] = pVCpu->cpum.GstCtx.eip + cbInstr;
1462 uPtrRet.pu32[1] = pVCpu->cpum.GstCtx.cs.Sel; /** @todo Testcase: What is written to the high word when pushing CS? */
1463
1464 if (cbWords)
1465 {
1466 /* Map the relevant chunk of the old stack. */
1467 rcStrict = iemMemMap(pVCpu, &uPtrParmWds.pv, cbWords * 4, UINT8_MAX, GCPtrParmWds, IEM_ACCESS_DATA_R);
1468 if (rcStrict != VINF_SUCCESS)
1469 {
1470 Log(("BranchCallGate: Old stack mapping (32-bit) failed (%Rrc)\n", VBOXSTRICTRC_VAL(rcStrict)));
1471 return rcStrict;
1472 }
1473
1474 /* Copy the parameter (d)words. */
1475 for (int i = 0; i < cbWords; ++i)
1476 uPtrRet.pu32[2 + i] = uPtrParmWds.pu32[i];
1477
1478 /* Unmap the old stack. */
1479 rcStrict = iemMemCommitAndUnmap(pVCpu, uPtrParmWds.pv, IEM_ACCESS_DATA_R);
1480 if (rcStrict != VINF_SUCCESS)
1481 {
1482 Log(("BranchCallGate: Old stack unmapping (32-bit) failed (%Rrc)\n", VBOXSTRICTRC_VAL(rcStrict)));
1483 return rcStrict;
1484 }
1485 }
1486
1487 /* Push the old SS:rSP. */
1488 uPtrRet.pu32[2 + cbWords + 0] = uOldRsp;
1489 uPtrRet.pu32[2 + cbWords + 1] = uOldSS;
1490 }
1491 else
1492 {
1493 Assert(pDesc->Legacy.Gate.u4Type == X86_SEL_TYPE_SYS_286_CALL_GATE);
1494
1495 /* Push the old CS:rIP. */
1496 uPtrRet.pu16[0] = pVCpu->cpum.GstCtx.ip + cbInstr;
1497 uPtrRet.pu16[1] = pVCpu->cpum.GstCtx.cs.Sel;
1498
1499 if (cbWords)
1500 {
1501 /* Map the relevant chunk of the old stack. */
1502 rcStrict = iemMemMap(pVCpu, &uPtrParmWds.pv, cbWords * 2, UINT8_MAX, GCPtrParmWds, IEM_ACCESS_DATA_R);
1503 if (rcStrict != VINF_SUCCESS)
1504 {
1505 Log(("BranchCallGate: Old stack mapping (16-bit) failed (%Rrc)\n", VBOXSTRICTRC_VAL(rcStrict)));
1506 return rcStrict;
1507 }
1508
1509 /* Copy the parameter words. */
1510 for (int i = 0; i < cbWords; ++i)
1511 uPtrRet.pu16[2 + i] = uPtrParmWds.pu16[i];
1512
1513 /* Unmap the old stack. */
1514 rcStrict = iemMemCommitAndUnmap(pVCpu, uPtrParmWds.pv, IEM_ACCESS_DATA_R);
1515 if (rcStrict != VINF_SUCCESS)
1516 {
1517 Log(("BranchCallGate: Old stack unmapping (32-bit) failed (%Rrc)\n", VBOXSTRICTRC_VAL(rcStrict)));
1518 return rcStrict;
1519 }
1520 }
1521
1522 /* Push the old SS:rSP. */
1523 uPtrRet.pu16[2 + cbWords + 0] = uOldRsp;
1524 uPtrRet.pu16[2 + cbWords + 1] = uOldSS;
1525 }
1526 }
1527 else
1528 {
1529 Assert(pDesc->Legacy.Gate.u4Type == AMD64_SEL_TYPE_SYS_CALL_GATE);
1530
1531 /* For 64-bit gates, no parameters are copied. Just push old SS:rSP and CS:rIP. */
1532 uPtrRet.pu64[0] = pVCpu->cpum.GstCtx.rip + cbInstr;
1533 uPtrRet.pu64[1] = pVCpu->cpum.GstCtx.cs.Sel; /** @todo Testcase: What is written to the high words when pushing CS? */
1534 uPtrRet.pu64[2] = uOldRsp;
1535 uPtrRet.pu64[3] = uOldSS; /** @todo Testcase: What is written to the high words when pushing SS? */
1536 }
1537
1538 rcStrict = iemMemStackPushCommitSpecial(pVCpu, uPtrRet.pv, uNewRsp);
1539 if (rcStrict != VINF_SUCCESS)
1540 {
1541 Log(("BranchCallGate: New stack unmapping failed (%Rrc)\n", VBOXSTRICTRC_VAL(rcStrict)));
1542 return rcStrict;
1543 }
1544
1545 /* Chop the high bits off if 16-bit gate (Intel says so). */
1546 if (pDesc->Legacy.Gate.u4Type == X86_SEL_TYPE_SYS_286_CALL_GATE)
1547 uNewRip = (uint16_t)uNewRip;
1548
1549 /* Limit / canonical check. */
1550 cbLimit = X86DESC_LIMIT_G(&DescCS.Legacy);
1551 if (!IEM_IS_LONG_MODE(pVCpu))
1552 {
1553 if (uNewRip > cbLimit)
1554 {
1555 Log(("BranchCallGate %04x:%08RX64 -> out of bounds (%#x)\n", uNewCS, uNewRip, cbLimit));
1556 return iemRaiseGeneralProtectionFaultBySelector(pVCpu, 0);
1557 }
1558 u64Base = X86DESC_BASE(&DescCS.Legacy);
1559 }
1560 else
1561 {
1562 Assert(pDesc->Legacy.Gate.u4Type == AMD64_SEL_TYPE_SYS_CALL_GATE);
1563 if (!IEM_IS_CANONICAL(uNewRip))
1564 {
1565 Log(("BranchCallGate call %04x:%016RX64 - not canonical -> #GP\n", uNewCS, uNewRip));
1566 return iemRaiseNotCanonical(pVCpu);
1567 }
1568 u64Base = 0;
1569 }
1570
1571 /*
1572 * Now set the accessed bit before
1573 * writing the return address to the stack and committing the result into
1574 * CS, CSHID and RIP.
1575 */
1576 /** @todo Testcase: Need to check WHEN exactly the accessed bit is set. */
1577 if (!(DescCS.Legacy.Gen.u4Type & X86_SEL_TYPE_ACCESSED))
1578 {
1579 rcStrict = iemMemMarkSelDescAccessed(pVCpu, uNewCS);
1580 if (rcStrict != VINF_SUCCESS)
1581 return rcStrict;
1582 /** @todo check what VT-x and AMD-V does. */
1583 DescCS.Legacy.Gen.u4Type |= X86_SEL_TYPE_ACCESSED;
1584 }
1585
1586 /* Commit new CS:rIP. */
1587 pVCpu->cpum.GstCtx.rip = uNewRip;
1588 pVCpu->cpum.GstCtx.cs.Sel = uNewCS & X86_SEL_MASK_OFF_RPL;
1589 pVCpu->cpum.GstCtx.cs.Sel |= pVCpu->iem.s.uCpl;
1590 pVCpu->cpum.GstCtx.cs.ValidSel = pVCpu->cpum.GstCtx.cs.Sel;
1591 pVCpu->cpum.GstCtx.cs.fFlags = CPUMSELREG_FLAGS_VALID;
1592 pVCpu->cpum.GstCtx.cs.Attr.u = X86DESC_GET_HID_ATTR(&DescCS.Legacy);
1593 pVCpu->cpum.GstCtx.cs.u32Limit = cbLimit;
1594 pVCpu->cpum.GstCtx.cs.u64Base = u64Base;
1595 pVCpu->iem.s.enmCpuMode = iemCalcCpuMode(pVCpu);
1596 }
1597 else
1598 {
1599 /* Same privilege. */
1600 /** @todo: This is very similar to regular far calls; merge! */
1601
1602 /* Check stack first - may #SS(0). */
1603 /** @todo check how gate size affects pushing of CS! Does callf 16:32 in
1604 * 16-bit code cause a two or four byte CS to be pushed? */
1605 rcStrict = iemMemStackPushBeginSpecial(pVCpu,
1606 IEM_IS_LONG_MODE(pVCpu) ? 8+8
1607 : pDesc->Legacy.Gate.u4Type == X86_SEL_TYPE_SYS_386_CALL_GATE ? 4+4 : 2+2,
1608 &uPtrRet.pv, &uNewRsp);
1609 if (rcStrict != VINF_SUCCESS)
1610 return rcStrict;
1611
1612 /* Chop the high bits off if 16-bit gate (Intel says so). */
1613 if (pDesc->Legacy.Gate.u4Type == X86_SEL_TYPE_SYS_286_CALL_GATE)
1614 uNewRip = (uint16_t)uNewRip;
1615
1616 /* Limit / canonical check. */
1617 cbLimit = X86DESC_LIMIT_G(&DescCS.Legacy);
1618 if (!IEM_IS_LONG_MODE(pVCpu))
1619 {
1620 if (uNewRip > cbLimit)
1621 {
1622 Log(("BranchCallGate %04x:%08RX64 -> out of bounds (%#x)\n", uNewCS, uNewRip, cbLimit));
1623 return iemRaiseGeneralProtectionFaultBySelector(pVCpu, 0);
1624 }
1625 u64Base = X86DESC_BASE(&DescCS.Legacy);
1626 }
1627 else
1628 {
1629 if (!IEM_IS_CANONICAL(uNewRip))
1630 {
1631 Log(("BranchCallGate call %04x:%016RX64 - not canonical -> #GP\n", uNewCS, uNewRip));
1632 return iemRaiseNotCanonical(pVCpu);
1633 }
1634 u64Base = 0;
1635 }
1636
1637 /*
1638 * Now set the accessed bit before
1639 * writing the return address to the stack and committing the result into
1640 * CS, CSHID and RIP.
1641 */
1642 /** @todo Testcase: Need to check WHEN exactly the accessed bit is set. */
1643 if (!(DescCS.Legacy.Gen.u4Type & X86_SEL_TYPE_ACCESSED))
1644 {
1645 rcStrict = iemMemMarkSelDescAccessed(pVCpu, uNewCS);
1646 if (rcStrict != VINF_SUCCESS)
1647 return rcStrict;
1648 /** @todo check what VT-x and AMD-V does. */
1649 DescCS.Legacy.Gen.u4Type |= X86_SEL_TYPE_ACCESSED;
1650 }
1651
1652 /* stack */
1653 if (!IEM_IS_LONG_MODE(pVCpu))
1654 {
1655 if (pDesc->Legacy.Gate.u4Type == X86_SEL_TYPE_SYS_386_CALL_GATE)
1656 {
1657 uPtrRet.pu32[0] = pVCpu->cpum.GstCtx.eip + cbInstr;
1658 uPtrRet.pu32[1] = pVCpu->cpum.GstCtx.cs.Sel; /** @todo Testcase: What is written to the high word when pushing CS? */
1659 }
1660 else
1661 {
1662 Assert(pDesc->Legacy.Gate.u4Type == X86_SEL_TYPE_SYS_286_CALL_GATE);
1663 uPtrRet.pu16[0] = pVCpu->cpum.GstCtx.ip + cbInstr;
1664 uPtrRet.pu16[1] = pVCpu->cpum.GstCtx.cs.Sel;
1665 }
1666 }
1667 else
1668 {
1669 Assert(pDesc->Legacy.Gate.u4Type == AMD64_SEL_TYPE_SYS_CALL_GATE);
1670 uPtrRet.pu64[0] = pVCpu->cpum.GstCtx.rip + cbInstr;
1671 uPtrRet.pu64[1] = pVCpu->cpum.GstCtx.cs.Sel; /** @todo Testcase: What is written to the high words when pushing CS? */
1672 }
1673
1674 rcStrict = iemMemStackPushCommitSpecial(pVCpu, uPtrRet.pv, uNewRsp);
1675 if (rcStrict != VINF_SUCCESS)
1676 return rcStrict;
1677
1678 /* commit */
1679 pVCpu->cpum.GstCtx.rip = uNewRip;
1680 pVCpu->cpum.GstCtx.cs.Sel = uNewCS & X86_SEL_MASK_OFF_RPL;
1681 pVCpu->cpum.GstCtx.cs.Sel |= pVCpu->iem.s.uCpl;
1682 pVCpu->cpum.GstCtx.cs.ValidSel = pVCpu->cpum.GstCtx.cs.Sel;
1683 pVCpu->cpum.GstCtx.cs.fFlags = CPUMSELREG_FLAGS_VALID;
1684 pVCpu->cpum.GstCtx.cs.Attr.u = X86DESC_GET_HID_ATTR(&DescCS.Legacy);
1685 pVCpu->cpum.GstCtx.cs.u32Limit = cbLimit;
1686 pVCpu->cpum.GstCtx.cs.u64Base = u64Base;
1687 pVCpu->iem.s.enmCpuMode = iemCalcCpuMode(pVCpu);
1688 }
1689 }
1690 pVCpu->cpum.GstCtx.eflags.Bits.u1RF = 0;
1691
1692 /* Flush the prefetch buffer. */
1693# ifdef IEM_WITH_CODE_TLB
1694 pVCpu->iem.s.pbInstrBuf = NULL;
1695# else
1696 pVCpu->iem.s.cbOpcode = pVCpu->iem.s.offOpcode;
1697# endif
1698 return VINF_SUCCESS;
1699#endif
1700}
1701
1702
1703/**
1704 * Implements far jumps and calls thru system selectors.
1705 *
1706 * @param uSel The selector.
1707 * @param enmBranch The kind of branching we're performing.
1708 * @param enmEffOpSize The effective operand size.
1709 * @param pDesc The descriptor corresponding to @a uSel.
1710 */
1711IEM_CIMPL_DEF_4(iemCImpl_BranchSysSel, uint16_t, uSel, IEMBRANCH, enmBranch, IEMMODE, enmEffOpSize, PIEMSELDESC, pDesc)
1712{
1713 Assert(enmBranch == IEMBRANCH_JUMP || enmBranch == IEMBRANCH_CALL);
1714 Assert((uSel & X86_SEL_MASK_OFF_RPL));
1715 IEM_CTX_IMPORT_RET(pVCpu, IEM_CPUMCTX_EXTRN_XCPT_MASK);
1716
1717 if (IEM_IS_LONG_MODE(pVCpu))
1718 switch (pDesc->Legacy.Gen.u4Type)
1719 {
1720 case AMD64_SEL_TYPE_SYS_CALL_GATE:
1721 return IEM_CIMPL_CALL_4(iemCImpl_BranchCallGate, uSel, enmBranch, enmEffOpSize, pDesc);
1722
1723 default:
1724 case AMD64_SEL_TYPE_SYS_LDT:
1725 case AMD64_SEL_TYPE_SYS_TSS_BUSY:
1726 case AMD64_SEL_TYPE_SYS_TSS_AVAIL:
1727 case AMD64_SEL_TYPE_SYS_TRAP_GATE:
1728 case AMD64_SEL_TYPE_SYS_INT_GATE:
1729 Log(("branch %04x -> wrong sys selector (64-bit): %d\n", uSel, pDesc->Legacy.Gen.u4Type));
1730 return iemRaiseGeneralProtectionFaultBySelector(pVCpu, uSel);
1731 }
1732
1733 switch (pDesc->Legacy.Gen.u4Type)
1734 {
1735 case X86_SEL_TYPE_SYS_286_CALL_GATE:
1736 case X86_SEL_TYPE_SYS_386_CALL_GATE:
1737 return IEM_CIMPL_CALL_4(iemCImpl_BranchCallGate, uSel, enmBranch, enmEffOpSize, pDesc);
1738
1739 case X86_SEL_TYPE_SYS_TASK_GATE:
1740 return IEM_CIMPL_CALL_4(iemCImpl_BranchTaskGate, uSel, enmBranch, enmEffOpSize, pDesc);
1741
1742 case X86_SEL_TYPE_SYS_286_TSS_AVAIL:
1743 case X86_SEL_TYPE_SYS_386_TSS_AVAIL:
1744 return IEM_CIMPL_CALL_4(iemCImpl_BranchTaskSegment, uSel, enmBranch, enmEffOpSize, pDesc);
1745
1746 case X86_SEL_TYPE_SYS_286_TSS_BUSY:
1747 Log(("branch %04x -> busy 286 TSS\n", uSel));
1748 return iemRaiseGeneralProtectionFaultBySelector(pVCpu, uSel);
1749
1750 case X86_SEL_TYPE_SYS_386_TSS_BUSY:
1751 Log(("branch %04x -> busy 386 TSS\n", uSel));
1752 return iemRaiseGeneralProtectionFaultBySelector(pVCpu, uSel);
1753
1754 default:
1755 case X86_SEL_TYPE_SYS_LDT:
1756 case X86_SEL_TYPE_SYS_286_INT_GATE:
1757 case X86_SEL_TYPE_SYS_286_TRAP_GATE:
1758 case X86_SEL_TYPE_SYS_386_INT_GATE:
1759 case X86_SEL_TYPE_SYS_386_TRAP_GATE:
1760 Log(("branch %04x -> wrong sys selector: %d\n", uSel, pDesc->Legacy.Gen.u4Type));
1761 return iemRaiseGeneralProtectionFaultBySelector(pVCpu, uSel);
1762 }
1763}
1764
1765
1766/**
1767 * Implements far jumps.
1768 *
1769 * @param uSel The selector.
1770 * @param offSeg The segment offset.
1771 * @param enmEffOpSize The effective operand size.
1772 */
1773IEM_CIMPL_DEF_3(iemCImpl_FarJmp, uint16_t, uSel, uint64_t, offSeg, IEMMODE, enmEffOpSize)
1774{
1775 NOREF(cbInstr);
1776 Assert(offSeg <= UINT32_MAX);
1777
1778 /*
1779 * Real mode and V8086 mode are easy. The only snag seems to be that
1780 * CS.limit doesn't change and the limit check is done against the current
1781 * limit.
1782 */
1783 /** @todo Robert Collins claims (The Segment Descriptor Cache, DDJ August
1784 * 1998) that up to and including the Intel 486, far control
1785 * transfers in real mode set default CS attributes (0x93) and also
1786 * set a 64K segment limit. Starting with the Pentium, the
1787 * attributes and limit are left alone but the access rights are
1788 * ignored. We only implement the Pentium+ behavior.
1789 * */
1790 if (IEM_IS_REAL_OR_V86_MODE(pVCpu))
1791 {
1792 Assert(enmEffOpSize == IEMMODE_16BIT || enmEffOpSize == IEMMODE_32BIT);
1793 if (offSeg > pVCpu->cpum.GstCtx.cs.u32Limit)
1794 {
1795 Log(("iemCImpl_FarJmp: 16-bit limit\n"));
1796 return iemRaiseGeneralProtectionFault0(pVCpu);
1797 }
1798
1799 if (enmEffOpSize == IEMMODE_16BIT) /** @todo WRONG, must pass this. */
1800 pVCpu->cpum.GstCtx.rip = offSeg;
1801 else
1802 pVCpu->cpum.GstCtx.rip = offSeg & UINT16_MAX;
1803 pVCpu->cpum.GstCtx.cs.Sel = uSel;
1804 pVCpu->cpum.GstCtx.cs.ValidSel = uSel;
1805 pVCpu->cpum.GstCtx.cs.fFlags = CPUMSELREG_FLAGS_VALID;
1806 pVCpu->cpum.GstCtx.cs.u64Base = (uint32_t)uSel << 4;
1807 pVCpu->cpum.GstCtx.eflags.Bits.u1RF = 0;
1808 return VINF_SUCCESS;
1809 }
1810
1811 /*
1812 * Protected mode. Need to parse the specified descriptor...
1813 */
1814 if (!(uSel & X86_SEL_MASK_OFF_RPL))
1815 {
1816 Log(("jmpf %04x:%08RX64 -> invalid selector, #GP(0)\n", uSel, offSeg));
1817 return iemRaiseGeneralProtectionFault0(pVCpu);
1818 }
1819
1820 /* Fetch the descriptor. */
1821 IEMSELDESC Desc;
1822 VBOXSTRICTRC rcStrict = iemMemFetchSelDesc(pVCpu, &Desc, uSel, X86_XCPT_GP);
1823 if (rcStrict != VINF_SUCCESS)
1824 return rcStrict;
1825
1826 /* Is it there? */
1827 if (!Desc.Legacy.Gen.u1Present) /** @todo this is probably checked too early. Testcase! */
1828 {
1829 Log(("jmpf %04x:%08RX64 -> segment not present\n", uSel, offSeg));
1830 return iemRaiseSelectorNotPresentBySelector(pVCpu, uSel);
1831 }
1832
1833 /*
1834 * Deal with it according to its type. We do the standard code selectors
1835 * here and dispatch the system selectors to worker functions.
1836 */
1837 if (!Desc.Legacy.Gen.u1DescType)
1838 return IEM_CIMPL_CALL_4(iemCImpl_BranchSysSel, uSel, IEMBRANCH_JUMP, enmEffOpSize, &Desc);
1839
1840 /* Only code segments. */
1841 if (!(Desc.Legacy.Gen.u4Type & X86_SEL_TYPE_CODE))
1842 {
1843 Log(("jmpf %04x:%08RX64 -> not a code selector (u4Type=%#x).\n", uSel, offSeg, Desc.Legacy.Gen.u4Type));
1844 return iemRaiseGeneralProtectionFaultBySelector(pVCpu, uSel);
1845 }
1846
1847 /* L vs D. */
1848 if ( Desc.Legacy.Gen.u1Long
1849 && Desc.Legacy.Gen.u1DefBig
1850 && IEM_IS_LONG_MODE(pVCpu))
1851 {
1852 Log(("jmpf %04x:%08RX64 -> both L and D are set.\n", uSel, offSeg));
1853 return iemRaiseGeneralProtectionFaultBySelector(pVCpu, uSel);
1854 }
1855
1856 /* DPL/RPL/CPL check, where conforming segments makes a difference. */
1857 if (Desc.Legacy.Gen.u4Type & X86_SEL_TYPE_CONF)
1858 {
1859 if (pVCpu->iem.s.uCpl < Desc.Legacy.Gen.u2Dpl)
1860 {
1861 Log(("jmpf %04x:%08RX64 -> DPL violation (conforming); DPL=%d CPL=%u\n",
1862 uSel, offSeg, Desc.Legacy.Gen.u2Dpl, pVCpu->iem.s.uCpl));
1863 return iemRaiseGeneralProtectionFaultBySelector(pVCpu, uSel);
1864 }
1865 }
1866 else
1867 {
1868 if (pVCpu->iem.s.uCpl != Desc.Legacy.Gen.u2Dpl)
1869 {
1870 Log(("jmpf %04x:%08RX64 -> CPL != DPL; DPL=%d CPL=%u\n", uSel, offSeg, Desc.Legacy.Gen.u2Dpl, pVCpu->iem.s.uCpl));
1871 return iemRaiseGeneralProtectionFaultBySelector(pVCpu, uSel);
1872 }
1873 if ((uSel & X86_SEL_RPL) > pVCpu->iem.s.uCpl)
1874 {
1875 Log(("jmpf %04x:%08RX64 -> RPL > DPL; RPL=%d CPL=%u\n", uSel, offSeg, (uSel & X86_SEL_RPL), pVCpu->iem.s.uCpl));
1876 return iemRaiseGeneralProtectionFaultBySelector(pVCpu, uSel);
1877 }
1878 }
1879
1880 /* Chop the high bits if 16-bit (Intel says so). */
1881 if (enmEffOpSize == IEMMODE_16BIT)
1882 offSeg &= UINT16_MAX;
1883
1884 /* Limit check. (Should alternatively check for non-canonical addresses
1885 here, but that is ruled out by offSeg being 32-bit, right?) */
1886 uint64_t u64Base;
1887 uint32_t cbLimit = X86DESC_LIMIT_G(&Desc.Legacy);
1888 if (Desc.Legacy.Gen.u1Long)
1889 u64Base = 0;
1890 else
1891 {
1892 if (offSeg > cbLimit)
1893 {
1894 Log(("jmpf %04x:%08RX64 -> out of bounds (%#x)\n", uSel, offSeg, cbLimit));
1895 /** @todo: Intel says this is #GP(0)! */
1896 return iemRaiseGeneralProtectionFaultBySelector(pVCpu, uSel);
1897 }
1898 u64Base = X86DESC_BASE(&Desc.Legacy);
1899 }
1900
1901 /*
1902 * Ok, everything checked out fine. Now set the accessed bit before
1903 * committing the result into CS, CSHID and RIP.
1904 */
1905 if (!(Desc.Legacy.Gen.u4Type & X86_SEL_TYPE_ACCESSED))
1906 {
1907 rcStrict = iemMemMarkSelDescAccessed(pVCpu, uSel);
1908 if (rcStrict != VINF_SUCCESS)
1909 return rcStrict;
1910 /** @todo check what VT-x and AMD-V does. */
1911 Desc.Legacy.Gen.u4Type |= X86_SEL_TYPE_ACCESSED;
1912 }
1913
1914 /* commit */
1915 pVCpu->cpum.GstCtx.rip = offSeg;
1916 pVCpu->cpum.GstCtx.cs.Sel = uSel & X86_SEL_MASK_OFF_RPL;
1917 pVCpu->cpum.GstCtx.cs.Sel |= pVCpu->iem.s.uCpl; /** @todo is this right for conforming segs? or in general? */
1918 pVCpu->cpum.GstCtx.cs.ValidSel = pVCpu->cpum.GstCtx.cs.Sel;
1919 pVCpu->cpum.GstCtx.cs.fFlags = CPUMSELREG_FLAGS_VALID;
1920 pVCpu->cpum.GstCtx.cs.Attr.u = X86DESC_GET_HID_ATTR(&Desc.Legacy);
1921 pVCpu->cpum.GstCtx.cs.u32Limit = cbLimit;
1922 pVCpu->cpum.GstCtx.cs.u64Base = u64Base;
1923 pVCpu->iem.s.enmCpuMode = iemCalcCpuMode(pVCpu);
1924 pVCpu->cpum.GstCtx.eflags.Bits.u1RF = 0;
1925 /** @todo check if the hidden bits are loaded correctly for 64-bit
1926 * mode. */
1927
1928 /* Flush the prefetch buffer. */
1929#ifdef IEM_WITH_CODE_TLB
1930 pVCpu->iem.s.pbInstrBuf = NULL;
1931#else
1932 pVCpu->iem.s.cbOpcode = pVCpu->iem.s.offOpcode;
1933#endif
1934
1935 return VINF_SUCCESS;
1936}
1937
1938
1939/**
1940 * Implements far calls.
1941 *
1942 * This very similar to iemCImpl_FarJmp.
1943 *
1944 * @param uSel The selector.
1945 * @param offSeg The segment offset.
1946 * @param enmEffOpSize The operand size (in case we need it).
1947 */
1948IEM_CIMPL_DEF_3(iemCImpl_callf, uint16_t, uSel, uint64_t, offSeg, IEMMODE, enmEffOpSize)
1949{
1950 VBOXSTRICTRC rcStrict;
1951 uint64_t uNewRsp;
1952 RTPTRUNION uPtrRet;
1953
1954 /*
1955 * Real mode and V8086 mode are easy. The only snag seems to be that
1956 * CS.limit doesn't change and the limit check is done against the current
1957 * limit.
1958 */
1959 /** @todo See comment for similar code in iemCImpl_FarJmp */
1960 if (IEM_IS_REAL_OR_V86_MODE(pVCpu))
1961 {
1962 Assert(enmEffOpSize == IEMMODE_16BIT || enmEffOpSize == IEMMODE_32BIT);
1963
1964 /* Check stack first - may #SS(0). */
1965 rcStrict = iemMemStackPushBeginSpecial(pVCpu, enmEffOpSize == IEMMODE_32BIT ? 4+4 : 2+2,
1966 &uPtrRet.pv, &uNewRsp);
1967 if (rcStrict != VINF_SUCCESS)
1968 return rcStrict;
1969
1970 /* Check the target address range. */
1971 if (offSeg > UINT32_MAX)
1972 return iemRaiseGeneralProtectionFault0(pVCpu);
1973
1974 /* Everything is fine, push the return address. */
1975 if (enmEffOpSize == IEMMODE_16BIT)
1976 {
1977 uPtrRet.pu16[0] = pVCpu->cpum.GstCtx.ip + cbInstr;
1978 uPtrRet.pu16[1] = pVCpu->cpum.GstCtx.cs.Sel;
1979 }
1980 else
1981 {
1982 uPtrRet.pu32[0] = pVCpu->cpum.GstCtx.eip + cbInstr;
1983 uPtrRet.pu16[2] = pVCpu->cpum.GstCtx.cs.Sel;
1984 }
1985 rcStrict = iemMemStackPushCommitSpecial(pVCpu, uPtrRet.pv, uNewRsp);
1986 if (rcStrict != VINF_SUCCESS)
1987 return rcStrict;
1988
1989 /* Branch. */
1990 pVCpu->cpum.GstCtx.rip = offSeg;
1991 pVCpu->cpum.GstCtx.cs.Sel = uSel;
1992 pVCpu->cpum.GstCtx.cs.ValidSel = uSel;
1993 pVCpu->cpum.GstCtx.cs.fFlags = CPUMSELREG_FLAGS_VALID;
1994 pVCpu->cpum.GstCtx.cs.u64Base = (uint32_t)uSel << 4;
1995 pVCpu->cpum.GstCtx.eflags.Bits.u1RF = 0;
1996 return VINF_SUCCESS;
1997 }
1998
1999 /*
2000 * Protected mode. Need to parse the specified descriptor...
2001 */
2002 if (!(uSel & X86_SEL_MASK_OFF_RPL))
2003 {
2004 Log(("callf %04x:%08RX64 -> invalid selector, #GP(0)\n", uSel, offSeg));
2005 return iemRaiseGeneralProtectionFault0(pVCpu);
2006 }
2007
2008 /* Fetch the descriptor. */
2009 IEMSELDESC Desc;
2010 rcStrict = iemMemFetchSelDesc(pVCpu, &Desc, uSel, X86_XCPT_GP);
2011 if (rcStrict != VINF_SUCCESS)
2012 return rcStrict;
2013
2014 /*
2015 * Deal with it according to its type. We do the standard code selectors
2016 * here and dispatch the system selectors to worker functions.
2017 */
2018 if (!Desc.Legacy.Gen.u1DescType)
2019 return IEM_CIMPL_CALL_4(iemCImpl_BranchSysSel, uSel, IEMBRANCH_CALL, enmEffOpSize, &Desc);
2020
2021 /* Only code segments. */
2022 if (!(Desc.Legacy.Gen.u4Type & X86_SEL_TYPE_CODE))
2023 {
2024 Log(("callf %04x:%08RX64 -> not a code selector (u4Type=%#x).\n", uSel, offSeg, Desc.Legacy.Gen.u4Type));
2025 return iemRaiseGeneralProtectionFaultBySelector(pVCpu, uSel);
2026 }
2027
2028 /* L vs D. */
2029 if ( Desc.Legacy.Gen.u1Long
2030 && Desc.Legacy.Gen.u1DefBig
2031 && IEM_IS_LONG_MODE(pVCpu))
2032 {
2033 Log(("callf %04x:%08RX64 -> both L and D are set.\n", uSel, offSeg));
2034 return iemRaiseGeneralProtectionFaultBySelector(pVCpu, uSel);
2035 }
2036
2037 /* DPL/RPL/CPL check, where conforming segments makes a difference. */
2038 if (Desc.Legacy.Gen.u4Type & X86_SEL_TYPE_CONF)
2039 {
2040 if (pVCpu->iem.s.uCpl < Desc.Legacy.Gen.u2Dpl)
2041 {
2042 Log(("callf %04x:%08RX64 -> DPL violation (conforming); DPL=%d CPL=%u\n",
2043 uSel, offSeg, Desc.Legacy.Gen.u2Dpl, pVCpu->iem.s.uCpl));
2044 return iemRaiseGeneralProtectionFaultBySelector(pVCpu, uSel);
2045 }
2046 }
2047 else
2048 {
2049 if (pVCpu->iem.s.uCpl != Desc.Legacy.Gen.u2Dpl)
2050 {
2051 Log(("callf %04x:%08RX64 -> CPL != DPL; DPL=%d CPL=%u\n", uSel, offSeg, Desc.Legacy.Gen.u2Dpl, pVCpu->iem.s.uCpl));
2052 return iemRaiseGeneralProtectionFaultBySelector(pVCpu, uSel);
2053 }
2054 if ((uSel & X86_SEL_RPL) > pVCpu->iem.s.uCpl)
2055 {
2056 Log(("callf %04x:%08RX64 -> RPL > DPL; RPL=%d CPL=%u\n", uSel, offSeg, (uSel & X86_SEL_RPL), pVCpu->iem.s.uCpl));
2057 return iemRaiseGeneralProtectionFaultBySelector(pVCpu, uSel);
2058 }
2059 }
2060
2061 /* Is it there? */
2062 if (!Desc.Legacy.Gen.u1Present)
2063 {
2064 Log(("callf %04x:%08RX64 -> segment not present\n", uSel, offSeg));
2065 return iemRaiseSelectorNotPresentBySelector(pVCpu, uSel);
2066 }
2067
2068 /* Check stack first - may #SS(0). */
2069 /** @todo check how operand prefix affects pushing of CS! Does callf 16:32 in
2070 * 16-bit code cause a two or four byte CS to be pushed? */
2071 rcStrict = iemMemStackPushBeginSpecial(pVCpu,
2072 enmEffOpSize == IEMMODE_64BIT ? 8+8
2073 : enmEffOpSize == IEMMODE_32BIT ? 4+4 : 2+2,
2074 &uPtrRet.pv, &uNewRsp);
2075 if (rcStrict != VINF_SUCCESS)
2076 return rcStrict;
2077
2078 /* Chop the high bits if 16-bit (Intel says so). */
2079 if (enmEffOpSize == IEMMODE_16BIT)
2080 offSeg &= UINT16_MAX;
2081
2082 /* Limit / canonical check. */
2083 uint64_t u64Base;
2084 uint32_t cbLimit = X86DESC_LIMIT_G(&Desc.Legacy);
2085 if (pVCpu->iem.s.enmCpuMode == IEMMODE_64BIT)
2086 {
2087 if (!IEM_IS_CANONICAL(offSeg))
2088 {
2089 Log(("callf %04x:%016RX64 - not canonical -> #GP\n", uSel, offSeg));
2090 return iemRaiseNotCanonical(pVCpu);
2091 }
2092 u64Base = 0;
2093 }
2094 else
2095 {
2096 if (offSeg > cbLimit)
2097 {
2098 Log(("callf %04x:%08RX64 -> out of bounds (%#x)\n", uSel, offSeg, cbLimit));
2099 /** @todo: Intel says this is #GP(0)! */
2100 return iemRaiseGeneralProtectionFaultBySelector(pVCpu, uSel);
2101 }
2102 u64Base = X86DESC_BASE(&Desc.Legacy);
2103 }
2104
2105 /*
2106 * Now set the accessed bit before
2107 * writing the return address to the stack and committing the result into
2108 * CS, CSHID and RIP.
2109 */
2110 /** @todo Testcase: Need to check WHEN exactly the accessed bit is set. */
2111 if (!(Desc.Legacy.Gen.u4Type & X86_SEL_TYPE_ACCESSED))
2112 {
2113 rcStrict = iemMemMarkSelDescAccessed(pVCpu, uSel);
2114 if (rcStrict != VINF_SUCCESS)
2115 return rcStrict;
2116 /** @todo check what VT-x and AMD-V does. */
2117 Desc.Legacy.Gen.u4Type |= X86_SEL_TYPE_ACCESSED;
2118 }
2119
2120 /* stack */
2121 if (enmEffOpSize == IEMMODE_16BIT)
2122 {
2123 uPtrRet.pu16[0] = pVCpu->cpum.GstCtx.ip + cbInstr;
2124 uPtrRet.pu16[1] = pVCpu->cpum.GstCtx.cs.Sel;
2125 }
2126 else if (enmEffOpSize == IEMMODE_32BIT)
2127 {
2128 uPtrRet.pu32[0] = pVCpu->cpum.GstCtx.eip + cbInstr;
2129 uPtrRet.pu32[1] = pVCpu->cpum.GstCtx.cs.Sel; /** @todo Testcase: What is written to the high word when callf is pushing CS? */
2130 }
2131 else
2132 {
2133 uPtrRet.pu64[0] = pVCpu->cpum.GstCtx.rip + cbInstr;
2134 uPtrRet.pu64[1] = pVCpu->cpum.GstCtx.cs.Sel; /** @todo Testcase: What is written to the high words when callf is pushing CS? */
2135 }
2136 rcStrict = iemMemStackPushCommitSpecial(pVCpu, uPtrRet.pv, uNewRsp);
2137 if (rcStrict != VINF_SUCCESS)
2138 return rcStrict;
2139
2140 /* commit */
2141 pVCpu->cpum.GstCtx.rip = offSeg;
2142 pVCpu->cpum.GstCtx.cs.Sel = uSel & X86_SEL_MASK_OFF_RPL;
2143 pVCpu->cpum.GstCtx.cs.Sel |= pVCpu->iem.s.uCpl;
2144 pVCpu->cpum.GstCtx.cs.ValidSel = pVCpu->cpum.GstCtx.cs.Sel;
2145 pVCpu->cpum.GstCtx.cs.fFlags = CPUMSELREG_FLAGS_VALID;
2146 pVCpu->cpum.GstCtx.cs.Attr.u = X86DESC_GET_HID_ATTR(&Desc.Legacy);
2147 pVCpu->cpum.GstCtx.cs.u32Limit = cbLimit;
2148 pVCpu->cpum.GstCtx.cs.u64Base = u64Base;
2149 pVCpu->iem.s.enmCpuMode = iemCalcCpuMode(pVCpu);
2150 pVCpu->cpum.GstCtx.eflags.Bits.u1RF = 0;
2151 /** @todo check if the hidden bits are loaded correctly for 64-bit
2152 * mode. */
2153
2154 /* Flush the prefetch buffer. */
2155#ifdef IEM_WITH_CODE_TLB
2156 pVCpu->iem.s.pbInstrBuf = NULL;
2157#else
2158 pVCpu->iem.s.cbOpcode = pVCpu->iem.s.offOpcode;
2159#endif
2160 return VINF_SUCCESS;
2161}
2162
2163
2164/**
2165 * Implements retf.
2166 *
2167 * @param enmEffOpSize The effective operand size.
2168 * @param cbPop The amount of arguments to pop from the stack
2169 * (bytes).
2170 */
2171IEM_CIMPL_DEF_2(iemCImpl_retf, IEMMODE, enmEffOpSize, uint16_t, cbPop)
2172{
2173 VBOXSTRICTRC rcStrict;
2174 RTCPTRUNION uPtrFrame;
2175 uint64_t uNewRsp;
2176 uint64_t uNewRip;
2177 uint16_t uNewCs;
2178 NOREF(cbInstr);
2179
2180 /*
2181 * Read the stack values first.
2182 */
2183 uint32_t cbRetPtr = enmEffOpSize == IEMMODE_16BIT ? 2+2
2184 : enmEffOpSize == IEMMODE_32BIT ? 4+4 : 8+8;
2185 rcStrict = iemMemStackPopBeginSpecial(pVCpu, cbRetPtr, &uPtrFrame.pv, &uNewRsp);
2186 if (rcStrict != VINF_SUCCESS)
2187 return rcStrict;
2188 if (enmEffOpSize == IEMMODE_16BIT)
2189 {
2190 uNewRip = uPtrFrame.pu16[0];
2191 uNewCs = uPtrFrame.pu16[1];
2192 }
2193 else if (enmEffOpSize == IEMMODE_32BIT)
2194 {
2195 uNewRip = uPtrFrame.pu32[0];
2196 uNewCs = uPtrFrame.pu16[2];
2197 }
2198 else
2199 {
2200 uNewRip = uPtrFrame.pu64[0];
2201 uNewCs = uPtrFrame.pu16[4];
2202 }
2203 rcStrict = iemMemStackPopDoneSpecial(pVCpu, uPtrFrame.pv);
2204 if (RT_LIKELY(rcStrict == VINF_SUCCESS))
2205 { /* extremely likely */ }
2206 else
2207 return rcStrict;
2208
2209 /*
2210 * Real mode and V8086 mode are easy.
2211 */
2212 /** @todo See comment for similar code in iemCImpl_FarJmp */
2213 if (IEM_IS_REAL_OR_V86_MODE(pVCpu))
2214 {
2215 Assert(enmEffOpSize == IEMMODE_32BIT || enmEffOpSize == IEMMODE_16BIT);
2216 /** @todo check how this is supposed to work if sp=0xfffe. */
2217
2218 /* Check the limit of the new EIP. */
2219 /** @todo Intel pseudo code only does the limit check for 16-bit
2220 * operands, AMD does not make any distinction. What is right? */
2221 if (uNewRip > pVCpu->cpum.GstCtx.cs.u32Limit)
2222 return iemRaiseSelectorBounds(pVCpu, X86_SREG_CS, IEM_ACCESS_INSTRUCTION);
2223
2224 /* commit the operation. */
2225 pVCpu->cpum.GstCtx.rsp = uNewRsp;
2226 pVCpu->cpum.GstCtx.rip = uNewRip;
2227 pVCpu->cpum.GstCtx.cs.Sel = uNewCs;
2228 pVCpu->cpum.GstCtx.cs.ValidSel = uNewCs;
2229 pVCpu->cpum.GstCtx.cs.fFlags = CPUMSELREG_FLAGS_VALID;
2230 pVCpu->cpum.GstCtx.cs.u64Base = (uint32_t)uNewCs << 4;
2231 pVCpu->cpum.GstCtx.eflags.Bits.u1RF = 0;
2232 if (cbPop)
2233 iemRegAddToRsp(pVCpu, cbPop);
2234 return VINF_SUCCESS;
2235 }
2236
2237 /*
2238 * Protected mode is complicated, of course.
2239 */
2240 if (!(uNewCs & X86_SEL_MASK_OFF_RPL))
2241 {
2242 Log(("retf %04x:%08RX64 -> invalid selector, #GP(0)\n", uNewCs, uNewRip));
2243 return iemRaiseGeneralProtectionFault0(pVCpu);
2244 }
2245
2246 IEM_CTX_IMPORT_RET(pVCpu, CPUMCTX_EXTRN_SREG_MASK | CPUMCTX_EXTRN_GDTR | CPUMCTX_EXTRN_LDTR);
2247
2248 /* Fetch the descriptor. */
2249 IEMSELDESC DescCs;
2250 rcStrict = iemMemFetchSelDesc(pVCpu, &DescCs, uNewCs, X86_XCPT_GP);
2251 if (rcStrict != VINF_SUCCESS)
2252 return rcStrict;
2253
2254 /* Can only return to a code selector. */
2255 if ( !DescCs.Legacy.Gen.u1DescType
2256 || !(DescCs.Legacy.Gen.u4Type & X86_SEL_TYPE_CODE) )
2257 {
2258 Log(("retf %04x:%08RX64 -> not a code selector (u1DescType=%u u4Type=%#x).\n",
2259 uNewCs, uNewRip, DescCs.Legacy.Gen.u1DescType, DescCs.Legacy.Gen.u4Type));
2260 return iemRaiseGeneralProtectionFaultBySelector(pVCpu, uNewCs);
2261 }
2262
2263 /* L vs D. */
2264 if ( DescCs.Legacy.Gen.u1Long /** @todo Testcase: far return to a selector with both L and D set. */
2265 && DescCs.Legacy.Gen.u1DefBig
2266 && IEM_IS_LONG_MODE(pVCpu))
2267 {
2268 Log(("retf %04x:%08RX64 -> both L & D set.\n", uNewCs, uNewRip));
2269 return iemRaiseGeneralProtectionFaultBySelector(pVCpu, uNewCs);
2270 }
2271
2272 /* DPL/RPL/CPL checks. */
2273 if ((uNewCs & X86_SEL_RPL) < pVCpu->iem.s.uCpl)
2274 {
2275 Log(("retf %04x:%08RX64 -> RPL < CPL(%d).\n", uNewCs, uNewRip, pVCpu->iem.s.uCpl));
2276 return iemRaiseGeneralProtectionFaultBySelector(pVCpu, uNewCs);
2277 }
2278
2279 if (DescCs.Legacy.Gen.u4Type & X86_SEL_TYPE_CONF)
2280 {
2281 if ((uNewCs & X86_SEL_RPL) < DescCs.Legacy.Gen.u2Dpl)
2282 {
2283 Log(("retf %04x:%08RX64 -> DPL violation (conforming); DPL=%u RPL=%u\n",
2284 uNewCs, uNewRip, DescCs.Legacy.Gen.u2Dpl, (uNewCs & X86_SEL_RPL)));
2285 return iemRaiseGeneralProtectionFaultBySelector(pVCpu, uNewCs);
2286 }
2287 }
2288 else
2289 {
2290 if ((uNewCs & X86_SEL_RPL) != DescCs.Legacy.Gen.u2Dpl)
2291 {
2292 Log(("retf %04x:%08RX64 -> RPL != DPL; DPL=%u RPL=%u\n",
2293 uNewCs, uNewRip, DescCs.Legacy.Gen.u2Dpl, (uNewCs & X86_SEL_RPL)));
2294 return iemRaiseGeneralProtectionFaultBySelector(pVCpu, uNewCs);
2295 }
2296 }
2297
2298 /* Is it there? */
2299 if (!DescCs.Legacy.Gen.u1Present)
2300 {
2301 Log(("retf %04x:%08RX64 -> segment not present\n", uNewCs, uNewRip));
2302 return iemRaiseSelectorNotPresentBySelector(pVCpu, uNewCs);
2303 }
2304
2305 /*
2306 * Return to outer privilege? (We'll typically have entered via a call gate.)
2307 */
2308 if ((uNewCs & X86_SEL_RPL) != pVCpu->iem.s.uCpl)
2309 {
2310 /* Read the outer stack pointer stored *after* the parameters. */
2311 rcStrict = iemMemStackPopContinueSpecial(pVCpu, cbPop + cbRetPtr, &uPtrFrame.pv, &uNewRsp);
2312 if (rcStrict != VINF_SUCCESS)
2313 return rcStrict;
2314
2315 uPtrFrame.pu8 += cbPop; /* Skip the parameters. */
2316
2317 uint16_t uNewOuterSs;
2318 uint64_t uNewOuterRsp;
2319 if (enmEffOpSize == IEMMODE_16BIT)
2320 {
2321 uNewOuterRsp = uPtrFrame.pu16[0];
2322 uNewOuterSs = uPtrFrame.pu16[1];
2323 }
2324 else if (enmEffOpSize == IEMMODE_32BIT)
2325 {
2326 uNewOuterRsp = uPtrFrame.pu32[0];
2327 uNewOuterSs = uPtrFrame.pu16[2];
2328 }
2329 else
2330 {
2331 uNewOuterRsp = uPtrFrame.pu64[0];
2332 uNewOuterSs = uPtrFrame.pu16[4];
2333 }
2334 uPtrFrame.pu8 -= cbPop; /* Put uPtrFrame back the way it was. */
2335 rcStrict = iemMemStackPopDoneSpecial(pVCpu, uPtrFrame.pv);
2336 if (RT_LIKELY(rcStrict == VINF_SUCCESS))
2337 { /* extremely likely */ }
2338 else
2339 return rcStrict;
2340
2341 /* Check for NULL stack selector (invalid in ring-3 and non-long mode)
2342 and read the selector. */
2343 IEMSELDESC DescSs;
2344 if (!(uNewOuterSs & X86_SEL_MASK_OFF_RPL))
2345 {
2346 if ( !DescCs.Legacy.Gen.u1Long
2347 || (uNewOuterSs & X86_SEL_RPL) == 3)
2348 {
2349 Log(("retf %04x:%08RX64 %04x:%08RX64 -> invalid stack selector, #GP\n",
2350 uNewCs, uNewRip, uNewOuterSs, uNewOuterRsp));
2351 return iemRaiseGeneralProtectionFault0(pVCpu);
2352 }
2353 /** @todo Testcase: Return far to ring-1 or ring-2 with SS=0. */
2354 iemMemFakeStackSelDesc(&DescSs, (uNewOuterSs & X86_SEL_RPL));
2355 }
2356 else
2357 {
2358 /* Fetch the descriptor for the new stack segment. */
2359 rcStrict = iemMemFetchSelDesc(pVCpu, &DescSs, uNewOuterSs, X86_XCPT_GP);
2360 if (rcStrict != VINF_SUCCESS)
2361 return rcStrict;
2362 }
2363
2364 /* Check that RPL of stack and code selectors match. */
2365 if ((uNewCs & X86_SEL_RPL) != (uNewOuterSs & X86_SEL_RPL))
2366 {
2367 Log(("retf %04x:%08RX64 %04x:%08RX64 - SS.RPL != CS.RPL -> #GP(SS)\n", uNewCs, uNewRip, uNewOuterSs, uNewOuterRsp));
2368 return iemRaiseGeneralProtectionFaultBySelector(pVCpu, uNewOuterSs);
2369 }
2370
2371 /* Must be a writable data segment. */
2372 if ( !DescSs.Legacy.Gen.u1DescType
2373 || (DescSs.Legacy.Gen.u4Type & X86_SEL_TYPE_CODE)
2374 || !(DescSs.Legacy.Gen.u4Type & X86_SEL_TYPE_WRITE) )
2375 {
2376 Log(("retf %04x:%08RX64 %04x:%08RX64 - SS not a writable data segment (u1DescType=%u u4Type=%#x) -> #GP(SS).\n",
2377 uNewCs, uNewRip, uNewOuterSs, uNewOuterRsp, DescSs.Legacy.Gen.u1DescType, DescSs.Legacy.Gen.u4Type));
2378 return iemRaiseGeneralProtectionFaultBySelector(pVCpu, uNewOuterSs);
2379 }
2380
2381 /* L vs D. (Not mentioned by intel.) */
2382 if ( DescSs.Legacy.Gen.u1Long /** @todo Testcase: far return to a stack selector with both L and D set. */
2383 && DescSs.Legacy.Gen.u1DefBig
2384 && IEM_IS_LONG_MODE(pVCpu))
2385 {
2386 Log(("retf %04x:%08RX64 %04x:%08RX64 - SS has both L & D set -> #GP(SS).\n",
2387 uNewCs, uNewRip, uNewOuterSs, uNewOuterRsp));
2388 return iemRaiseGeneralProtectionFaultBySelector(pVCpu, uNewOuterSs);
2389 }
2390
2391 /* DPL/RPL/CPL checks. */
2392 if (DescSs.Legacy.Gen.u2Dpl != (uNewCs & X86_SEL_RPL))
2393 {
2394 Log(("retf %04x:%08RX64 %04x:%08RX64 - SS.DPL(%u) != CS.RPL (%u) -> #GP(SS).\n",
2395 uNewCs, uNewRip, uNewOuterSs, uNewOuterRsp, DescSs.Legacy.Gen.u2Dpl, uNewCs & X86_SEL_RPL));
2396 return iemRaiseGeneralProtectionFaultBySelector(pVCpu, uNewOuterSs);
2397 }
2398
2399 /* Is it there? */
2400 if (!DescSs.Legacy.Gen.u1Present)
2401 {
2402 Log(("retf %04x:%08RX64 %04x:%08RX64 - SS not present -> #NP(SS).\n", uNewCs, uNewRip, uNewOuterSs, uNewOuterRsp));
2403 return iemRaiseSelectorNotPresentBySelector(pVCpu, uNewCs);
2404 }
2405
2406 /* Calc SS limit.*/
2407 uint32_t cbLimitSs = X86DESC_LIMIT_G(&DescSs.Legacy);
2408
2409 /* Is RIP canonical or within CS.limit? */
2410 uint64_t u64Base;
2411 uint32_t cbLimitCs = X86DESC_LIMIT_G(&DescCs.Legacy);
2412
2413 /** @todo Testcase: Is this correct? */
2414 if ( DescCs.Legacy.Gen.u1Long
2415 && IEM_IS_LONG_MODE(pVCpu) )
2416 {
2417 if (!IEM_IS_CANONICAL(uNewRip))
2418 {
2419 Log(("retf %04x:%08RX64 %04x:%08RX64 - not canonical -> #GP.\n", uNewCs, uNewRip, uNewOuterSs, uNewOuterRsp));
2420 return iemRaiseNotCanonical(pVCpu);
2421 }
2422 u64Base = 0;
2423 }
2424 else
2425 {
2426 if (uNewRip > cbLimitCs)
2427 {
2428 Log(("retf %04x:%08RX64 %04x:%08RX64 - out of bounds (%#x)-> #GP(CS).\n",
2429 uNewCs, uNewRip, uNewOuterSs, uNewOuterRsp, cbLimitCs));
2430 /** @todo: Intel says this is #GP(0)! */
2431 return iemRaiseGeneralProtectionFaultBySelector(pVCpu, uNewCs);
2432 }
2433 u64Base = X86DESC_BASE(&DescCs.Legacy);
2434 }
2435
2436 /*
2437 * Now set the accessed bit before
2438 * writing the return address to the stack and committing the result into
2439 * CS, CSHID and RIP.
2440 */
2441 /** @todo Testcase: Need to check WHEN exactly the CS accessed bit is set. */
2442 if (!(DescCs.Legacy.Gen.u4Type & X86_SEL_TYPE_ACCESSED))
2443 {
2444 rcStrict = iemMemMarkSelDescAccessed(pVCpu, uNewCs);
2445 if (rcStrict != VINF_SUCCESS)
2446 return rcStrict;
2447 /** @todo check what VT-x and AMD-V does. */
2448 DescCs.Legacy.Gen.u4Type |= X86_SEL_TYPE_ACCESSED;
2449 }
2450 /** @todo Testcase: Need to check WHEN exactly the SS accessed bit is set. */
2451 if (!(DescSs.Legacy.Gen.u4Type & X86_SEL_TYPE_ACCESSED))
2452 {
2453 rcStrict = iemMemMarkSelDescAccessed(pVCpu, uNewOuterSs);
2454 if (rcStrict != VINF_SUCCESS)
2455 return rcStrict;
2456 /** @todo check what VT-x and AMD-V does. */
2457 DescSs.Legacy.Gen.u4Type |= X86_SEL_TYPE_ACCESSED;
2458 }
2459
2460 /* commit */
2461 if (enmEffOpSize == IEMMODE_16BIT)
2462 pVCpu->cpum.GstCtx.rip = uNewRip & UINT16_MAX; /** @todo Testcase: When exactly does this occur? With call it happens prior to the limit check according to Intel... */
2463 else
2464 pVCpu->cpum.GstCtx.rip = uNewRip;
2465 pVCpu->cpum.GstCtx.cs.Sel = uNewCs;
2466 pVCpu->cpum.GstCtx.cs.ValidSel = uNewCs;
2467 pVCpu->cpum.GstCtx.cs.fFlags = CPUMSELREG_FLAGS_VALID;
2468 pVCpu->cpum.GstCtx.cs.Attr.u = X86DESC_GET_HID_ATTR(&DescCs.Legacy);
2469 pVCpu->cpum.GstCtx.cs.u32Limit = cbLimitCs;
2470 pVCpu->cpum.GstCtx.cs.u64Base = u64Base;
2471 pVCpu->iem.s.enmCpuMode = iemCalcCpuMode(pVCpu);
2472 pVCpu->cpum.GstCtx.ss.Sel = uNewOuterSs;
2473 pVCpu->cpum.GstCtx.ss.ValidSel = uNewOuterSs;
2474 pVCpu->cpum.GstCtx.ss.fFlags = CPUMSELREG_FLAGS_VALID;
2475 pVCpu->cpum.GstCtx.ss.Attr.u = X86DESC_GET_HID_ATTR(&DescSs.Legacy);
2476 pVCpu->cpum.GstCtx.ss.u32Limit = cbLimitSs;
2477 if (pVCpu->iem.s.enmCpuMode == IEMMODE_64BIT)
2478 pVCpu->cpum.GstCtx.ss.u64Base = 0;
2479 else
2480 pVCpu->cpum.GstCtx.ss.u64Base = X86DESC_BASE(&DescSs.Legacy);
2481 if (!pVCpu->cpum.GstCtx.ss.Attr.n.u1DefBig)
2482 pVCpu->cpum.GstCtx.sp = (uint16_t)uNewOuterRsp;
2483 else
2484 pVCpu->cpum.GstCtx.rsp = uNewOuterRsp;
2485
2486 pVCpu->iem.s.uCpl = (uNewCs & X86_SEL_RPL);
2487 iemHlpAdjustSelectorForNewCpl(pVCpu, uNewCs & X86_SEL_RPL, &pVCpu->cpum.GstCtx.ds);
2488 iemHlpAdjustSelectorForNewCpl(pVCpu, uNewCs & X86_SEL_RPL, &pVCpu->cpum.GstCtx.es);
2489 iemHlpAdjustSelectorForNewCpl(pVCpu, uNewCs & X86_SEL_RPL, &pVCpu->cpum.GstCtx.fs);
2490 iemHlpAdjustSelectorForNewCpl(pVCpu, uNewCs & X86_SEL_RPL, &pVCpu->cpum.GstCtx.gs);
2491
2492 /** @todo check if the hidden bits are loaded correctly for 64-bit
2493 * mode. */
2494
2495 if (cbPop)
2496 iemRegAddToRsp(pVCpu, cbPop);
2497 pVCpu->cpum.GstCtx.eflags.Bits.u1RF = 0;
2498
2499 /* Done! */
2500 }
2501 /*
2502 * Return to the same privilege level
2503 */
2504 else
2505 {
2506 /* Limit / canonical check. */
2507 uint64_t u64Base;
2508 uint32_t cbLimitCs = X86DESC_LIMIT_G(&DescCs.Legacy);
2509
2510 /** @todo Testcase: Is this correct? */
2511 if ( DescCs.Legacy.Gen.u1Long
2512 && IEM_IS_LONG_MODE(pVCpu) )
2513 {
2514 if (!IEM_IS_CANONICAL(uNewRip))
2515 {
2516 Log(("retf %04x:%08RX64 - not canonical -> #GP\n", uNewCs, uNewRip));
2517 return iemRaiseNotCanonical(pVCpu);
2518 }
2519 u64Base = 0;
2520 }
2521 else
2522 {
2523 if (uNewRip > cbLimitCs)
2524 {
2525 Log(("retf %04x:%08RX64 -> out of bounds (%#x)\n", uNewCs, uNewRip, cbLimitCs));
2526 /** @todo: Intel says this is #GP(0)! */
2527 return iemRaiseGeneralProtectionFaultBySelector(pVCpu, uNewCs);
2528 }
2529 u64Base = X86DESC_BASE(&DescCs.Legacy);
2530 }
2531
2532 /*
2533 * Now set the accessed bit before
2534 * writing the return address to the stack and committing the result into
2535 * CS, CSHID and RIP.
2536 */
2537 /** @todo Testcase: Need to check WHEN exactly the accessed bit is set. */
2538 if (!(DescCs.Legacy.Gen.u4Type & X86_SEL_TYPE_ACCESSED))
2539 {
2540 rcStrict = iemMemMarkSelDescAccessed(pVCpu, uNewCs);
2541 if (rcStrict != VINF_SUCCESS)
2542 return rcStrict;
2543 /** @todo check what VT-x and AMD-V does. */
2544 DescCs.Legacy.Gen.u4Type |= X86_SEL_TYPE_ACCESSED;
2545 }
2546
2547 /* commit */
2548 if (!pVCpu->cpum.GstCtx.ss.Attr.n.u1DefBig)
2549 pVCpu->cpum.GstCtx.sp = (uint16_t)uNewRsp;
2550 else
2551 pVCpu->cpum.GstCtx.rsp = uNewRsp;
2552 if (enmEffOpSize == IEMMODE_16BIT)
2553 pVCpu->cpum.GstCtx.rip = uNewRip & UINT16_MAX; /** @todo Testcase: When exactly does this occur? With call it happens prior to the limit check according to Intel... */
2554 else
2555 pVCpu->cpum.GstCtx.rip = uNewRip;
2556 pVCpu->cpum.GstCtx.cs.Sel = uNewCs;
2557 pVCpu->cpum.GstCtx.cs.ValidSel = uNewCs;
2558 pVCpu->cpum.GstCtx.cs.fFlags = CPUMSELREG_FLAGS_VALID;
2559 pVCpu->cpum.GstCtx.cs.Attr.u = X86DESC_GET_HID_ATTR(&DescCs.Legacy);
2560 pVCpu->cpum.GstCtx.cs.u32Limit = cbLimitCs;
2561 pVCpu->cpum.GstCtx.cs.u64Base = u64Base;
2562 /** @todo check if the hidden bits are loaded correctly for 64-bit
2563 * mode. */
2564 pVCpu->iem.s.enmCpuMode = iemCalcCpuMode(pVCpu);
2565 if (cbPop)
2566 iemRegAddToRsp(pVCpu, cbPop);
2567 pVCpu->cpum.GstCtx.eflags.Bits.u1RF = 0;
2568 }
2569
2570 /* Flush the prefetch buffer. */
2571#ifdef IEM_WITH_CODE_TLB
2572 pVCpu->iem.s.pbInstrBuf = NULL;
2573#else
2574 pVCpu->iem.s.cbOpcode = pVCpu->iem.s.offOpcode;
2575#endif
2576 return VINF_SUCCESS;
2577}
2578
2579
2580/**
2581 * Implements retn.
2582 *
2583 * We're doing this in C because of the \#GP that might be raised if the popped
2584 * program counter is out of bounds.
2585 *
2586 * @param enmEffOpSize The effective operand size.
2587 * @param cbPop The amount of arguments to pop from the stack
2588 * (bytes).
2589 */
2590IEM_CIMPL_DEF_2(iemCImpl_retn, IEMMODE, enmEffOpSize, uint16_t, cbPop)
2591{
2592 NOREF(cbInstr);
2593
2594 /* Fetch the RSP from the stack. */
2595 VBOXSTRICTRC rcStrict;
2596 RTUINT64U NewRip;
2597 RTUINT64U NewRsp;
2598 NewRsp.u = pVCpu->cpum.GstCtx.rsp;
2599
2600 switch (enmEffOpSize)
2601 {
2602 case IEMMODE_16BIT:
2603 NewRip.u = 0;
2604 rcStrict = iemMemStackPopU16Ex(pVCpu, &NewRip.Words.w0, &NewRsp);
2605 break;
2606 case IEMMODE_32BIT:
2607 NewRip.u = 0;
2608 rcStrict = iemMemStackPopU32Ex(pVCpu, &NewRip.DWords.dw0, &NewRsp);
2609 break;
2610 case IEMMODE_64BIT:
2611 rcStrict = iemMemStackPopU64Ex(pVCpu, &NewRip.u, &NewRsp);
2612 break;
2613 IEM_NOT_REACHED_DEFAULT_CASE_RET();
2614 }
2615 if (rcStrict != VINF_SUCCESS)
2616 return rcStrict;
2617
2618 /* Check the new RSP before loading it. */
2619 /** @todo Should test this as the intel+amd pseudo code doesn't mention half
2620 * of it. The canonical test is performed here and for call. */
2621 if (enmEffOpSize != IEMMODE_64BIT)
2622 {
2623 if (NewRip.DWords.dw0 > pVCpu->cpum.GstCtx.cs.u32Limit)
2624 {
2625 Log(("retn newrip=%llx - out of bounds (%x) -> #GP\n", NewRip.u, pVCpu->cpum.GstCtx.cs.u32Limit));
2626 return iemRaiseSelectorBounds(pVCpu, X86_SREG_CS, IEM_ACCESS_INSTRUCTION);
2627 }
2628 }
2629 else
2630 {
2631 if (!IEM_IS_CANONICAL(NewRip.u))
2632 {
2633 Log(("retn newrip=%llx - not canonical -> #GP\n", NewRip.u));
2634 return iemRaiseNotCanonical(pVCpu);
2635 }
2636 }
2637
2638 /* Apply cbPop */
2639 if (cbPop)
2640 iemRegAddToRspEx(pVCpu, &NewRsp, cbPop);
2641
2642 /* Commit it. */
2643 pVCpu->cpum.GstCtx.rip = NewRip.u;
2644 pVCpu->cpum.GstCtx.rsp = NewRsp.u;
2645 pVCpu->cpum.GstCtx.eflags.Bits.u1RF = 0;
2646
2647 /* Flush the prefetch buffer. */
2648#ifndef IEM_WITH_CODE_TLB
2649 pVCpu->iem.s.cbOpcode = pVCpu->iem.s.offOpcode;
2650#endif
2651
2652 return VINF_SUCCESS;
2653}
2654
2655
2656/**
2657 * Implements enter.
2658 *
2659 * We're doing this in C because the instruction is insane, even for the
2660 * u8NestingLevel=0 case dealing with the stack is tedious.
2661 *
2662 * @param enmEffOpSize The effective operand size.
2663 */
2664IEM_CIMPL_DEF_3(iemCImpl_enter, IEMMODE, enmEffOpSize, uint16_t, cbFrame, uint8_t, cParameters)
2665{
2666 /* Push RBP, saving the old value in TmpRbp. */
2667 RTUINT64U NewRsp; NewRsp.u = pVCpu->cpum.GstCtx.rsp;
2668 RTUINT64U TmpRbp; TmpRbp.u = pVCpu->cpum.GstCtx.rbp;
2669 RTUINT64U NewRbp;
2670 VBOXSTRICTRC rcStrict;
2671 if (enmEffOpSize == IEMMODE_64BIT)
2672 {
2673 rcStrict = iemMemStackPushU64Ex(pVCpu, TmpRbp.u, &NewRsp);
2674 NewRbp = NewRsp;
2675 }
2676 else if (enmEffOpSize == IEMMODE_32BIT)
2677 {
2678 rcStrict = iemMemStackPushU32Ex(pVCpu, TmpRbp.DWords.dw0, &NewRsp);
2679 NewRbp = NewRsp;
2680 }
2681 else
2682 {
2683 rcStrict = iemMemStackPushU16Ex(pVCpu, TmpRbp.Words.w0, &NewRsp);
2684 NewRbp = TmpRbp;
2685 NewRbp.Words.w0 = NewRsp.Words.w0;
2686 }
2687 if (rcStrict != VINF_SUCCESS)
2688 return rcStrict;
2689
2690 /* Copy the parameters (aka nesting levels by Intel). */
2691 cParameters &= 0x1f;
2692 if (cParameters > 0)
2693 {
2694 switch (enmEffOpSize)
2695 {
2696 case IEMMODE_16BIT:
2697 if (pVCpu->cpum.GstCtx.ss.Attr.n.u1DefBig)
2698 TmpRbp.DWords.dw0 -= 2;
2699 else
2700 TmpRbp.Words.w0 -= 2;
2701 do
2702 {
2703 uint16_t u16Tmp;
2704 rcStrict = iemMemStackPopU16Ex(pVCpu, &u16Tmp, &TmpRbp);
2705 if (rcStrict != VINF_SUCCESS)
2706 break;
2707 rcStrict = iemMemStackPushU16Ex(pVCpu, u16Tmp, &NewRsp);
2708 } while (--cParameters > 0 && rcStrict == VINF_SUCCESS);
2709 break;
2710
2711 case IEMMODE_32BIT:
2712 if (pVCpu->cpum.GstCtx.ss.Attr.n.u1DefBig)
2713 TmpRbp.DWords.dw0 -= 4;
2714 else
2715 TmpRbp.Words.w0 -= 4;
2716 do
2717 {
2718 uint32_t u32Tmp;
2719 rcStrict = iemMemStackPopU32Ex(pVCpu, &u32Tmp, &TmpRbp);
2720 if (rcStrict != VINF_SUCCESS)
2721 break;
2722 rcStrict = iemMemStackPushU32Ex(pVCpu, u32Tmp, &NewRsp);
2723 } while (--cParameters > 0 && rcStrict == VINF_SUCCESS);
2724 break;
2725
2726 case IEMMODE_64BIT:
2727 TmpRbp.u -= 8;
2728 do
2729 {
2730 uint64_t u64Tmp;
2731 rcStrict = iemMemStackPopU64Ex(pVCpu, &u64Tmp, &TmpRbp);
2732 if (rcStrict != VINF_SUCCESS)
2733 break;
2734 rcStrict = iemMemStackPushU64Ex(pVCpu, u64Tmp, &NewRsp);
2735 } while (--cParameters > 0 && rcStrict == VINF_SUCCESS);
2736 break;
2737
2738 IEM_NOT_REACHED_DEFAULT_CASE_RET();
2739 }
2740 if (rcStrict != VINF_SUCCESS)
2741 return VINF_SUCCESS;
2742
2743 /* Push the new RBP */
2744 if (enmEffOpSize == IEMMODE_64BIT)
2745 rcStrict = iemMemStackPushU64Ex(pVCpu, NewRbp.u, &NewRsp);
2746 else if (enmEffOpSize == IEMMODE_32BIT)
2747 rcStrict = iemMemStackPushU32Ex(pVCpu, NewRbp.DWords.dw0, &NewRsp);
2748 else
2749 rcStrict = iemMemStackPushU16Ex(pVCpu, NewRbp.Words.w0, &NewRsp);
2750 if (rcStrict != VINF_SUCCESS)
2751 return rcStrict;
2752
2753 }
2754
2755 /* Recalc RSP. */
2756 iemRegSubFromRspEx(pVCpu, &NewRsp, cbFrame);
2757
2758 /** @todo Should probe write access at the new RSP according to AMD. */
2759
2760 /* Commit it. */
2761 pVCpu->cpum.GstCtx.rbp = NewRbp.u;
2762 pVCpu->cpum.GstCtx.rsp = NewRsp.u;
2763 iemRegAddToRipAndClearRF(pVCpu, cbInstr);
2764
2765 return VINF_SUCCESS;
2766}
2767
2768
2769
2770/**
2771 * Implements leave.
2772 *
2773 * We're doing this in C because messing with the stack registers is annoying
2774 * since they depends on SS attributes.
2775 *
2776 * @param enmEffOpSize The effective operand size.
2777 */
2778IEM_CIMPL_DEF_1(iemCImpl_leave, IEMMODE, enmEffOpSize)
2779{
2780 /* Calculate the intermediate RSP from RBP and the stack attributes. */
2781 RTUINT64U NewRsp;
2782 if (pVCpu->iem.s.enmCpuMode == IEMMODE_64BIT)
2783 NewRsp.u = pVCpu->cpum.GstCtx.rbp;
2784 else if (pVCpu->cpum.GstCtx.ss.Attr.n.u1DefBig)
2785 NewRsp.u = pVCpu->cpum.GstCtx.ebp;
2786 else
2787 {
2788 /** @todo Check that LEAVE actually preserve the high EBP bits. */
2789 NewRsp.u = pVCpu->cpum.GstCtx.rsp;
2790 NewRsp.Words.w0 = pVCpu->cpum.GstCtx.bp;
2791 }
2792
2793 /* Pop RBP according to the operand size. */
2794 VBOXSTRICTRC rcStrict;
2795 RTUINT64U NewRbp;
2796 switch (enmEffOpSize)
2797 {
2798 case IEMMODE_16BIT:
2799 NewRbp.u = pVCpu->cpum.GstCtx.rbp;
2800 rcStrict = iemMemStackPopU16Ex(pVCpu, &NewRbp.Words.w0, &NewRsp);
2801 break;
2802 case IEMMODE_32BIT:
2803 NewRbp.u = 0;
2804 rcStrict = iemMemStackPopU32Ex(pVCpu, &NewRbp.DWords.dw0, &NewRsp);
2805 break;
2806 case IEMMODE_64BIT:
2807 rcStrict = iemMemStackPopU64Ex(pVCpu, &NewRbp.u, &NewRsp);
2808 break;
2809 IEM_NOT_REACHED_DEFAULT_CASE_RET();
2810 }
2811 if (rcStrict != VINF_SUCCESS)
2812 return rcStrict;
2813
2814
2815 /* Commit it. */
2816 pVCpu->cpum.GstCtx.rbp = NewRbp.u;
2817 pVCpu->cpum.GstCtx.rsp = NewRsp.u;
2818 iemRegAddToRipAndClearRF(pVCpu, cbInstr);
2819
2820 return VINF_SUCCESS;
2821}
2822
2823
2824/**
2825 * Implements int3 and int XX.
2826 *
2827 * @param u8Int The interrupt vector number.
2828 * @param enmInt The int instruction type.
2829 */
2830IEM_CIMPL_DEF_2(iemCImpl_int, uint8_t, u8Int, IEMINT, enmInt)
2831{
2832 Assert(pVCpu->iem.s.cXcptRecursions == 0);
2833 return iemRaiseXcptOrInt(pVCpu,
2834 cbInstr,
2835 u8Int,
2836 IEM_XCPT_FLAGS_T_SOFT_INT | enmInt,
2837 0,
2838 0);
2839}
2840
2841
2842/**
2843 * Implements iret for real mode and V8086 mode.
2844 *
2845 * @param enmEffOpSize The effective operand size.
2846 */
2847IEM_CIMPL_DEF_1(iemCImpl_iret_real_v8086, IEMMODE, enmEffOpSize)
2848{
2849 X86EFLAGS Efl;
2850 Efl.u = IEMMISC_GET_EFL(pVCpu);
2851 NOREF(cbInstr);
2852
2853 /*
2854 * iret throws an exception if VME isn't enabled.
2855 */
2856 if ( Efl.Bits.u1VM
2857 && Efl.Bits.u2IOPL != 3
2858 && !(pVCpu->cpum.GstCtx.cr4 & X86_CR4_VME))
2859 return iemRaiseGeneralProtectionFault0(pVCpu);
2860
2861 /*
2862 * Do the stack bits, but don't commit RSP before everything checks
2863 * out right.
2864 */
2865 Assert(enmEffOpSize == IEMMODE_32BIT || enmEffOpSize == IEMMODE_16BIT);
2866 VBOXSTRICTRC rcStrict;
2867 RTCPTRUNION uFrame;
2868 uint16_t uNewCs;
2869 uint32_t uNewEip;
2870 uint32_t uNewFlags;
2871 uint64_t uNewRsp;
2872 if (enmEffOpSize == IEMMODE_32BIT)
2873 {
2874 rcStrict = iemMemStackPopBeginSpecial(pVCpu, 12, &uFrame.pv, &uNewRsp);
2875 if (rcStrict != VINF_SUCCESS)
2876 return rcStrict;
2877 uNewEip = uFrame.pu32[0];
2878 if (uNewEip > UINT16_MAX)
2879 return iemRaiseGeneralProtectionFault0(pVCpu);
2880
2881 uNewCs = (uint16_t)uFrame.pu32[1];
2882 uNewFlags = uFrame.pu32[2];
2883 uNewFlags &= X86_EFL_CF | X86_EFL_PF | X86_EFL_AF | X86_EFL_ZF | X86_EFL_SF
2884 | X86_EFL_TF | X86_EFL_IF | X86_EFL_DF | X86_EFL_OF | X86_EFL_IOPL | X86_EFL_NT
2885 | X86_EFL_RF /*| X86_EFL_VM*/ | X86_EFL_AC /*|X86_EFL_VIF*/ /*|X86_EFL_VIP*/
2886 | X86_EFL_ID;
2887 if (IEM_GET_TARGET_CPU(pVCpu) <= IEMTARGETCPU_386)
2888 uNewFlags &= ~(X86_EFL_AC | X86_EFL_ID | X86_EFL_VIF | X86_EFL_VIP);
2889 uNewFlags |= Efl.u & (X86_EFL_VM | X86_EFL_VIF | X86_EFL_VIP | X86_EFL_1);
2890 }
2891 else
2892 {
2893 rcStrict = iemMemStackPopBeginSpecial(pVCpu, 6, &uFrame.pv, &uNewRsp);
2894 if (rcStrict != VINF_SUCCESS)
2895 return rcStrict;
2896 uNewEip = uFrame.pu16[0];
2897 uNewCs = uFrame.pu16[1];
2898 uNewFlags = uFrame.pu16[2];
2899 uNewFlags &= X86_EFL_CF | X86_EFL_PF | X86_EFL_AF | X86_EFL_ZF | X86_EFL_SF
2900 | X86_EFL_TF | X86_EFL_IF | X86_EFL_DF | X86_EFL_OF | X86_EFL_IOPL | X86_EFL_NT;
2901 uNewFlags |= Efl.u & ((UINT32_C(0xffff0000) | X86_EFL_1) & ~X86_EFL_RF);
2902 /** @todo The intel pseudo code does not indicate what happens to
2903 * reserved flags. We just ignore them. */
2904 /* Ancient CPU adjustments: See iemCImpl_popf. */
2905 if (IEM_GET_TARGET_CPU(pVCpu) == IEMTARGETCPU_286)
2906 uNewFlags &= ~(X86_EFL_NT | X86_EFL_IOPL);
2907 }
2908 rcStrict = iemMemStackPopDoneSpecial(pVCpu, uFrame.pv);
2909 if (RT_LIKELY(rcStrict == VINF_SUCCESS))
2910 { /* extremely likely */ }
2911 else
2912 return rcStrict;
2913
2914 /** @todo Check how this is supposed to work if sp=0xfffe. */
2915 Log7(("iemCImpl_iret_real_v8086: uNewCs=%#06x uNewRip=%#010x uNewFlags=%#x uNewRsp=%#18llx\n",
2916 uNewCs, uNewEip, uNewFlags, uNewRsp));
2917
2918 /*
2919 * Check the limit of the new EIP.
2920 */
2921 /** @todo Only the AMD pseudo code check the limit here, what's
2922 * right? */
2923 if (uNewEip > pVCpu->cpum.GstCtx.cs.u32Limit)
2924 return iemRaiseSelectorBounds(pVCpu, X86_SREG_CS, IEM_ACCESS_INSTRUCTION);
2925
2926 /*
2927 * V8086 checks and flag adjustments
2928 */
2929 if (Efl.Bits.u1VM)
2930 {
2931 if (Efl.Bits.u2IOPL == 3)
2932 {
2933 /* Preserve IOPL and clear RF. */
2934 uNewFlags &= ~(X86_EFL_IOPL | X86_EFL_RF);
2935 uNewFlags |= Efl.u & (X86_EFL_IOPL);
2936 }
2937 else if ( enmEffOpSize == IEMMODE_16BIT
2938 && ( !(uNewFlags & X86_EFL_IF)
2939 || !Efl.Bits.u1VIP )
2940 && !(uNewFlags & X86_EFL_TF) )
2941 {
2942 /* Move IF to VIF, clear RF and preserve IF and IOPL.*/
2943 uNewFlags &= ~X86_EFL_VIF;
2944 uNewFlags |= (uNewFlags & X86_EFL_IF) << (19 - 9);
2945 uNewFlags &= ~(X86_EFL_IF | X86_EFL_IOPL | X86_EFL_RF);
2946 uNewFlags |= Efl.u & (X86_EFL_IF | X86_EFL_IOPL);
2947 }
2948 else
2949 return iemRaiseGeneralProtectionFault0(pVCpu);
2950 Log7(("iemCImpl_iret_real_v8086: u1VM=1: adjusted uNewFlags=%#x\n", uNewFlags));
2951 }
2952
2953 /*
2954 * Commit the operation.
2955 */
2956#ifdef DBGFTRACE_ENABLED
2957 RTTraceBufAddMsgF(pVCpu->CTX_SUFF(pVM)->CTX_SUFF(hTraceBuf), "iret/rm %04x:%04x -> %04x:%04x %x %04llx",
2958 pVCpu->cpum.GstCtx.cs.Sel, pVCpu->cpum.GstCtx.eip, uNewCs, uNewEip, uNewFlags, uNewRsp);
2959#endif
2960 pVCpu->cpum.GstCtx.rsp = uNewRsp;
2961 pVCpu->cpum.GstCtx.rip = uNewEip;
2962 pVCpu->cpum.GstCtx.cs.Sel = uNewCs;
2963 pVCpu->cpum.GstCtx.cs.ValidSel = uNewCs;
2964 pVCpu->cpum.GstCtx.cs.fFlags = CPUMSELREG_FLAGS_VALID;
2965 pVCpu->cpum.GstCtx.cs.u64Base = (uint32_t)uNewCs << 4;
2966 /** @todo do we load attribs and limit as well? */
2967 Assert(uNewFlags & X86_EFL_1);
2968 IEMMISC_SET_EFL(pVCpu, uNewFlags);
2969
2970 /* Flush the prefetch buffer. */
2971#ifdef IEM_WITH_CODE_TLB
2972 pVCpu->iem.s.pbInstrBuf = NULL;
2973#else
2974 pVCpu->iem.s.cbOpcode = pVCpu->iem.s.offOpcode;
2975#endif
2976
2977 return VINF_SUCCESS;
2978}
2979
2980
2981/**
2982 * Loads a segment register when entering V8086 mode.
2983 *
2984 * @param pSReg The segment register.
2985 * @param uSeg The segment to load.
2986 */
2987static void iemCImplCommonV8086LoadSeg(PCPUMSELREG pSReg, uint16_t uSeg)
2988{
2989 pSReg->Sel = uSeg;
2990 pSReg->ValidSel = uSeg;
2991 pSReg->fFlags = CPUMSELREG_FLAGS_VALID;
2992 pSReg->u64Base = (uint32_t)uSeg << 4;
2993 pSReg->u32Limit = 0xffff;
2994 pSReg->Attr.u = X86_SEL_TYPE_RW_ACC | RT_BIT(4) /*!sys*/ | RT_BIT(7) /*P*/ | (3 /*DPL*/ << 5); /* VT-x wants 0xf3 */
2995 /** @todo Testcase: Check if VT-x really needs this and what it does itself when
2996 * IRET'ing to V8086. */
2997}
2998
2999
3000/**
3001 * Implements iret for protected mode returning to V8086 mode.
3002 *
3003 * @param uNewEip The new EIP.
3004 * @param uNewCs The new CS.
3005 * @param uNewFlags The new EFLAGS.
3006 * @param uNewRsp The RSP after the initial IRET frame.
3007 *
3008 * @note This can only be a 32-bit iret du to the X86_EFL_VM position.
3009 */
3010IEM_CIMPL_DEF_4(iemCImpl_iret_prot_v8086, uint32_t, uNewEip, uint16_t, uNewCs, uint32_t, uNewFlags, uint64_t, uNewRsp)
3011{
3012 RT_NOREF_PV(cbInstr);
3013 IEM_CTX_IMPORT_RET(pVCpu, CPUMCTX_EXTRN_SREG_MASK);
3014
3015 /*
3016 * Pop the V8086 specific frame bits off the stack.
3017 */
3018 VBOXSTRICTRC rcStrict;
3019 RTCPTRUNION uFrame;
3020 rcStrict = iemMemStackPopContinueSpecial(pVCpu, 24, &uFrame.pv, &uNewRsp);
3021 if (rcStrict != VINF_SUCCESS)
3022 return rcStrict;
3023 uint32_t uNewEsp = uFrame.pu32[0];
3024 uint16_t uNewSs = uFrame.pu32[1];
3025 uint16_t uNewEs = uFrame.pu32[2];
3026 uint16_t uNewDs = uFrame.pu32[3];
3027 uint16_t uNewFs = uFrame.pu32[4];
3028 uint16_t uNewGs = uFrame.pu32[5];
3029 rcStrict = iemMemCommitAndUnmap(pVCpu, (void *)uFrame.pv, IEM_ACCESS_STACK_R); /* don't use iemMemStackPopCommitSpecial here. */
3030 if (rcStrict != VINF_SUCCESS)
3031 return rcStrict;
3032
3033 /*
3034 * Commit the operation.
3035 */
3036 uNewFlags &= X86_EFL_LIVE_MASK;
3037 uNewFlags |= X86_EFL_RA1_MASK;
3038#ifdef DBGFTRACE_ENABLED
3039 RTTraceBufAddMsgF(pVCpu->CTX_SUFF(pVM)->CTX_SUFF(hTraceBuf), "iret/p/v %04x:%08x -> %04x:%04x %x %04x:%04x",
3040 pVCpu->cpum.GstCtx.cs.Sel, pVCpu->cpum.GstCtx.eip, uNewCs, uNewEip, uNewFlags, uNewSs, uNewEsp);
3041#endif
3042 Log7(("iemCImpl_iret_prot_v8086: %04x:%08x -> %04x:%04x %x %04x:%04x\n", pVCpu->cpum.GstCtx.cs.Sel, pVCpu->cpum.GstCtx.eip, uNewCs, uNewEip, uNewFlags, uNewSs, uNewEsp));
3043
3044 IEMMISC_SET_EFL(pVCpu, uNewFlags);
3045 iemCImplCommonV8086LoadSeg(&pVCpu->cpum.GstCtx.cs, uNewCs);
3046 iemCImplCommonV8086LoadSeg(&pVCpu->cpum.GstCtx.ss, uNewSs);
3047 iemCImplCommonV8086LoadSeg(&pVCpu->cpum.GstCtx.es, uNewEs);
3048 iemCImplCommonV8086LoadSeg(&pVCpu->cpum.GstCtx.ds, uNewDs);
3049 iemCImplCommonV8086LoadSeg(&pVCpu->cpum.GstCtx.fs, uNewFs);
3050 iemCImplCommonV8086LoadSeg(&pVCpu->cpum.GstCtx.gs, uNewGs);
3051 pVCpu->cpum.GstCtx.rip = (uint16_t)uNewEip;
3052 pVCpu->cpum.GstCtx.rsp = uNewEsp; /** @todo check this out! */
3053 pVCpu->iem.s.uCpl = 3;
3054
3055 /* Flush the prefetch buffer. */
3056#ifdef IEM_WITH_CODE_TLB
3057 pVCpu->iem.s.pbInstrBuf = NULL;
3058#else
3059 pVCpu->iem.s.cbOpcode = pVCpu->iem.s.offOpcode;
3060#endif
3061
3062 return VINF_SUCCESS;
3063}
3064
3065
3066/**
3067 * Implements iret for protected mode returning via a nested task.
3068 *
3069 * @param enmEffOpSize The effective operand size.
3070 */
3071IEM_CIMPL_DEF_1(iemCImpl_iret_prot_NestedTask, IEMMODE, enmEffOpSize)
3072{
3073 Log7(("iemCImpl_iret_prot_NestedTask:\n"));
3074#ifndef IEM_IMPLEMENTS_TASKSWITCH
3075 IEM_RETURN_ASPECT_NOT_IMPLEMENTED();
3076#else
3077 RT_NOREF_PV(enmEffOpSize);
3078
3079 /*
3080 * Read the segment selector in the link-field of the current TSS.
3081 */
3082 RTSEL uSelRet;
3083 VBOXSTRICTRC rcStrict = iemMemFetchSysU16(pVCpu, &uSelRet, UINT8_MAX, pVCpu->cpum.GstCtx.tr.u64Base);
3084 if (rcStrict != VINF_SUCCESS)
3085 return rcStrict;
3086
3087 /*
3088 * Fetch the returning task's TSS descriptor from the GDT.
3089 */
3090 if (uSelRet & X86_SEL_LDT)
3091 {
3092 Log(("iret_prot_NestedTask TSS not in LDT. uSelRet=%04x -> #TS\n", uSelRet));
3093 return iemRaiseTaskSwitchFaultBySelector(pVCpu, uSelRet);
3094 }
3095
3096 IEMSELDESC TssDesc;
3097 rcStrict = iemMemFetchSelDesc(pVCpu, &TssDesc, uSelRet, X86_XCPT_GP);
3098 if (rcStrict != VINF_SUCCESS)
3099 return rcStrict;
3100
3101 if (TssDesc.Legacy.Gate.u1DescType)
3102 {
3103 Log(("iret_prot_NestedTask Invalid TSS type. uSelRet=%04x -> #TS\n", uSelRet));
3104 return iemRaiseTaskSwitchFaultBySelector(pVCpu, uSelRet & X86_SEL_MASK_OFF_RPL);
3105 }
3106
3107 if ( TssDesc.Legacy.Gate.u4Type != X86_SEL_TYPE_SYS_286_TSS_BUSY
3108 && TssDesc.Legacy.Gate.u4Type != X86_SEL_TYPE_SYS_386_TSS_BUSY)
3109 {
3110 Log(("iret_prot_NestedTask TSS is not busy. uSelRet=%04x DescType=%#x -> #TS\n", uSelRet, TssDesc.Legacy.Gate.u4Type));
3111 return iemRaiseTaskSwitchFaultBySelector(pVCpu, uSelRet & X86_SEL_MASK_OFF_RPL);
3112 }
3113
3114 if (!TssDesc.Legacy.Gate.u1Present)
3115 {
3116 Log(("iret_prot_NestedTask TSS is not present. uSelRet=%04x -> #NP\n", uSelRet));
3117 return iemRaiseSelectorNotPresentBySelector(pVCpu, uSelRet & X86_SEL_MASK_OFF_RPL);
3118 }
3119
3120 uint32_t uNextEip = pVCpu->cpum.GstCtx.eip + cbInstr;
3121 return iemTaskSwitch(pVCpu, IEMTASKSWITCH_IRET, uNextEip, 0 /* fFlags */, 0 /* uErr */,
3122 0 /* uCr2 */, uSelRet, &TssDesc);
3123#endif
3124}
3125
3126
3127/**
3128 * Implements iret for protected mode
3129 *
3130 * @param enmEffOpSize The effective operand size.
3131 */
3132IEM_CIMPL_DEF_1(iemCImpl_iret_prot, IEMMODE, enmEffOpSize)
3133{
3134 NOREF(cbInstr);
3135 Assert(enmEffOpSize == IEMMODE_32BIT || enmEffOpSize == IEMMODE_16BIT);
3136
3137 /*
3138 * Nested task return.
3139 */
3140 if (pVCpu->cpum.GstCtx.eflags.Bits.u1NT)
3141 return IEM_CIMPL_CALL_1(iemCImpl_iret_prot_NestedTask, enmEffOpSize);
3142
3143 /*
3144 * Normal return.
3145 *
3146 * Do the stack bits, but don't commit RSP before everything checks
3147 * out right.
3148 */
3149 Assert(enmEffOpSize == IEMMODE_32BIT || enmEffOpSize == IEMMODE_16BIT);
3150 VBOXSTRICTRC rcStrict;
3151 RTCPTRUNION uFrame;
3152 uint16_t uNewCs;
3153 uint32_t uNewEip;
3154 uint32_t uNewFlags;
3155 uint64_t uNewRsp;
3156 if (enmEffOpSize == IEMMODE_32BIT)
3157 {
3158 rcStrict = iemMemStackPopBeginSpecial(pVCpu, 12, &uFrame.pv, &uNewRsp);
3159 if (rcStrict != VINF_SUCCESS)
3160 return rcStrict;
3161 uNewEip = uFrame.pu32[0];
3162 uNewCs = (uint16_t)uFrame.pu32[1];
3163 uNewFlags = uFrame.pu32[2];
3164 }
3165 else
3166 {
3167 rcStrict = iemMemStackPopBeginSpecial(pVCpu, 6, &uFrame.pv, &uNewRsp);
3168 if (rcStrict != VINF_SUCCESS)
3169 return rcStrict;
3170 uNewEip = uFrame.pu16[0];
3171 uNewCs = uFrame.pu16[1];
3172 uNewFlags = uFrame.pu16[2];
3173 }
3174 rcStrict = iemMemStackPopDoneSpecial(pVCpu, (void *)uFrame.pv); /* don't use iemMemStackPopCommitSpecial here. */
3175 if (RT_LIKELY(rcStrict == VINF_SUCCESS))
3176 { /* extremely likely */ }
3177 else
3178 return rcStrict;
3179 Log7(("iemCImpl_iret_prot: uNewCs=%#06x uNewEip=%#010x uNewFlags=%#x uNewRsp=%#18llx uCpl=%u\n", uNewCs, uNewEip, uNewFlags, uNewRsp, pVCpu->iem.s.uCpl));
3180
3181 /*
3182 * We're hopefully not returning to V8086 mode...
3183 */
3184 if ( (uNewFlags & X86_EFL_VM)
3185 && pVCpu->iem.s.uCpl == 0)
3186 {
3187 Assert(enmEffOpSize == IEMMODE_32BIT);
3188 return IEM_CIMPL_CALL_4(iemCImpl_iret_prot_v8086, uNewEip, uNewCs, uNewFlags, uNewRsp);
3189 }
3190
3191 /*
3192 * Protected mode.
3193 */
3194 /* Read the CS descriptor. */
3195 if (!(uNewCs & X86_SEL_MASK_OFF_RPL))
3196 {
3197 Log(("iret %04x:%08x -> invalid CS selector, #GP(0)\n", uNewCs, uNewEip));
3198 return iemRaiseGeneralProtectionFault0(pVCpu);
3199 }
3200
3201 IEMSELDESC DescCS;
3202 rcStrict = iemMemFetchSelDesc(pVCpu, &DescCS, uNewCs, X86_XCPT_GP);
3203 if (rcStrict != VINF_SUCCESS)
3204 {
3205 Log(("iret %04x:%08x - rcStrict=%Rrc when fetching CS\n", uNewCs, uNewEip, VBOXSTRICTRC_VAL(rcStrict)));
3206 return rcStrict;
3207 }
3208
3209 /* Must be a code descriptor. */
3210 if (!DescCS.Legacy.Gen.u1DescType)
3211 {
3212 Log(("iret %04x:%08x - CS is system segment (%#x) -> #GP\n", uNewCs, uNewEip, DescCS.Legacy.Gen.u4Type));
3213 return iemRaiseGeneralProtectionFaultBySelector(pVCpu, uNewCs);
3214 }
3215 if (!(DescCS.Legacy.Gen.u4Type & X86_SEL_TYPE_CODE))
3216 {
3217 Log(("iret %04x:%08x - not code segment (%#x) -> #GP\n", uNewCs, uNewEip, DescCS.Legacy.Gen.u4Type));
3218 return iemRaiseGeneralProtectionFaultBySelector(pVCpu, uNewCs);
3219 }
3220
3221 /* Privilege checks. */
3222 if (!(DescCS.Legacy.Gen.u4Type & X86_SEL_TYPE_CONF))
3223 {
3224 if ((uNewCs & X86_SEL_RPL) != DescCS.Legacy.Gen.u2Dpl)
3225 {
3226 Log(("iret %04x:%08x - RPL != DPL (%d) -> #GP\n", uNewCs, uNewEip, DescCS.Legacy.Gen.u2Dpl));
3227 return iemRaiseGeneralProtectionFaultBySelector(pVCpu, uNewCs);
3228 }
3229 }
3230 else if ((uNewCs & X86_SEL_RPL) < DescCS.Legacy.Gen.u2Dpl)
3231 {
3232 Log(("iret %04x:%08x - RPL < DPL (%d) -> #GP\n", uNewCs, uNewEip, DescCS.Legacy.Gen.u2Dpl));
3233 return iemRaiseGeneralProtectionFaultBySelector(pVCpu, uNewCs);
3234 }
3235 if ((uNewCs & X86_SEL_RPL) < pVCpu->iem.s.uCpl)
3236 {
3237 Log(("iret %04x:%08x - RPL < CPL (%d) -> #GP\n", uNewCs, uNewEip, pVCpu->iem.s.uCpl));
3238 return iemRaiseGeneralProtectionFaultBySelector(pVCpu, uNewCs);
3239 }
3240
3241 /* Present? */
3242 if (!DescCS.Legacy.Gen.u1Present)
3243 {
3244 Log(("iret %04x:%08x - CS not present -> #NP\n", uNewCs, uNewEip));
3245 return iemRaiseSelectorNotPresentBySelector(pVCpu, uNewCs);
3246 }
3247
3248 uint32_t cbLimitCS = X86DESC_LIMIT_G(&DescCS.Legacy);
3249
3250 /*
3251 * Return to outer level?
3252 */
3253 if ((uNewCs & X86_SEL_RPL) != pVCpu->iem.s.uCpl)
3254 {
3255 uint16_t uNewSS;
3256 uint32_t uNewESP;
3257 if (enmEffOpSize == IEMMODE_32BIT)
3258 {
3259 rcStrict = iemMemStackPopContinueSpecial(pVCpu, 8, &uFrame.pv, &uNewRsp);
3260 if (rcStrict != VINF_SUCCESS)
3261 return rcStrict;
3262/** @todo We might be popping a 32-bit ESP from the IRET frame, but whether
3263 * 16-bit or 32-bit are being loaded into SP depends on the D/B
3264 * bit of the popped SS selector it turns out. */
3265 uNewESP = uFrame.pu32[0];
3266 uNewSS = (uint16_t)uFrame.pu32[1];
3267 }
3268 else
3269 {
3270 rcStrict = iemMemStackPopContinueSpecial(pVCpu, 4, &uFrame.pv, &uNewRsp);
3271 if (rcStrict != VINF_SUCCESS)
3272 return rcStrict;
3273 uNewESP = uFrame.pu16[0];
3274 uNewSS = uFrame.pu16[1];
3275 }
3276 rcStrict = iemMemCommitAndUnmap(pVCpu, (void *)uFrame.pv, IEM_ACCESS_STACK_R);
3277 if (rcStrict != VINF_SUCCESS)
3278 return rcStrict;
3279 Log7(("iemCImpl_iret_prot: uNewSS=%#06x uNewESP=%#010x\n", uNewSS, uNewESP));
3280
3281 /* Read the SS descriptor. */
3282 if (!(uNewSS & X86_SEL_MASK_OFF_RPL))
3283 {
3284 Log(("iret %04x:%08x/%04x:%08x -> invalid SS selector, #GP(0)\n", uNewCs, uNewEip, uNewSS, uNewESP));
3285 return iemRaiseGeneralProtectionFault0(pVCpu);
3286 }
3287
3288 IEMSELDESC DescSS;
3289 rcStrict = iemMemFetchSelDesc(pVCpu, &DescSS, uNewSS, X86_XCPT_GP); /** @todo Correct exception? */
3290 if (rcStrict != VINF_SUCCESS)
3291 {
3292 Log(("iret %04x:%08x/%04x:%08x - %Rrc when fetching SS\n",
3293 uNewCs, uNewEip, uNewSS, uNewESP, VBOXSTRICTRC_VAL(rcStrict)));
3294 return rcStrict;
3295 }
3296
3297 /* Privilege checks. */
3298 if ((uNewSS & X86_SEL_RPL) != (uNewCs & X86_SEL_RPL))
3299 {
3300 Log(("iret %04x:%08x/%04x:%08x -> SS.RPL != CS.RPL -> #GP\n", uNewCs, uNewEip, uNewSS, uNewESP));
3301 return iemRaiseGeneralProtectionFaultBySelector(pVCpu, uNewSS);
3302 }
3303 if (DescSS.Legacy.Gen.u2Dpl != (uNewCs & X86_SEL_RPL))
3304 {
3305 Log(("iret %04x:%08x/%04x:%08x -> SS.DPL (%d) != CS.RPL -> #GP\n",
3306 uNewCs, uNewEip, uNewSS, uNewESP, DescSS.Legacy.Gen.u2Dpl));
3307 return iemRaiseGeneralProtectionFaultBySelector(pVCpu, uNewSS);
3308 }
3309
3310 /* Must be a writeable data segment descriptor. */
3311 if (!DescSS.Legacy.Gen.u1DescType)
3312 {
3313 Log(("iret %04x:%08x/%04x:%08x -> SS is system segment (%#x) -> #GP\n",
3314 uNewCs, uNewEip, uNewSS, uNewESP, DescSS.Legacy.Gen.u4Type));
3315 return iemRaiseGeneralProtectionFaultBySelector(pVCpu, uNewSS);
3316 }
3317 if ((DescSS.Legacy.Gen.u4Type & (X86_SEL_TYPE_CODE | X86_SEL_TYPE_WRITE)) != X86_SEL_TYPE_WRITE)
3318 {
3319 Log(("iret %04x:%08x/%04x:%08x - not writable data segment (%#x) -> #GP\n",
3320 uNewCs, uNewEip, uNewSS, uNewESP, DescSS.Legacy.Gen.u4Type));
3321 return iemRaiseGeneralProtectionFaultBySelector(pVCpu, uNewSS);
3322 }
3323
3324 /* Present? */
3325 if (!DescSS.Legacy.Gen.u1Present)
3326 {
3327 Log(("iret %04x:%08x/%04x:%08x -> SS not present -> #SS\n", uNewCs, uNewEip, uNewSS, uNewESP));
3328 return iemRaiseStackSelectorNotPresentBySelector(pVCpu, uNewSS);
3329 }
3330
3331 uint32_t cbLimitSs = X86DESC_LIMIT_G(&DescSS.Legacy);
3332
3333 /* Check EIP. */
3334 if (uNewEip > cbLimitCS)
3335 {
3336 Log(("iret %04x:%08x/%04x:%08x -> EIP is out of bounds (%#x) -> #GP(0)\n",
3337 uNewCs, uNewEip, uNewSS, uNewESP, cbLimitCS));
3338 /** @todo: Which is it, #GP(0) or #GP(sel)? */
3339 return iemRaiseSelectorBoundsBySelector(pVCpu, uNewCs);
3340 }
3341
3342 /*
3343 * Commit the changes, marking CS and SS accessed first since
3344 * that may fail.
3345 */
3346 if (!(DescCS.Legacy.Gen.u4Type & X86_SEL_TYPE_ACCESSED))
3347 {
3348 rcStrict = iemMemMarkSelDescAccessed(pVCpu, uNewCs);
3349 if (rcStrict != VINF_SUCCESS)
3350 return rcStrict;
3351 DescCS.Legacy.Gen.u4Type |= X86_SEL_TYPE_ACCESSED;
3352 }
3353 if (!(DescSS.Legacy.Gen.u4Type & X86_SEL_TYPE_ACCESSED))
3354 {
3355 rcStrict = iemMemMarkSelDescAccessed(pVCpu, uNewSS);
3356 if (rcStrict != VINF_SUCCESS)
3357 return rcStrict;
3358 DescSS.Legacy.Gen.u4Type |= X86_SEL_TYPE_ACCESSED;
3359 }
3360
3361 uint32_t fEFlagsMask = X86_EFL_CF | X86_EFL_PF | X86_EFL_AF | X86_EFL_ZF | X86_EFL_SF
3362 | X86_EFL_TF | X86_EFL_DF | X86_EFL_OF | X86_EFL_NT;
3363 if (enmEffOpSize != IEMMODE_16BIT)
3364 fEFlagsMask |= X86_EFL_RF | X86_EFL_AC | X86_EFL_ID;
3365 if (pVCpu->iem.s.uCpl == 0)
3366 fEFlagsMask |= X86_EFL_IF | X86_EFL_IOPL | X86_EFL_VIF | X86_EFL_VIP; /* VM is 0 */
3367 else if (pVCpu->iem.s.uCpl <= pVCpu->cpum.GstCtx.eflags.Bits.u2IOPL)
3368 fEFlagsMask |= X86_EFL_IF;
3369 if (IEM_GET_TARGET_CPU(pVCpu) <= IEMTARGETCPU_386)
3370 fEFlagsMask &= ~(X86_EFL_AC | X86_EFL_ID | X86_EFL_VIF | X86_EFL_VIP);
3371 uint32_t fEFlagsNew = IEMMISC_GET_EFL(pVCpu);
3372 fEFlagsNew &= ~fEFlagsMask;
3373 fEFlagsNew |= uNewFlags & fEFlagsMask;
3374#ifdef DBGFTRACE_ENABLED
3375 RTTraceBufAddMsgF(pVCpu->CTX_SUFF(pVM)->CTX_SUFF(hTraceBuf), "iret/%up%u %04x:%08x -> %04x:%04x %x %04x:%04x",
3376 pVCpu->iem.s.uCpl, uNewCs & X86_SEL_RPL, pVCpu->cpum.GstCtx.cs.Sel, pVCpu->cpum.GstCtx.eip,
3377 uNewCs, uNewEip, uNewFlags, uNewSS, uNewESP);
3378#endif
3379
3380 IEMMISC_SET_EFL(pVCpu, fEFlagsNew);
3381 pVCpu->cpum.GstCtx.rip = uNewEip;
3382 pVCpu->cpum.GstCtx.cs.Sel = uNewCs;
3383 pVCpu->cpum.GstCtx.cs.ValidSel = uNewCs;
3384 pVCpu->cpum.GstCtx.cs.fFlags = CPUMSELREG_FLAGS_VALID;
3385 pVCpu->cpum.GstCtx.cs.Attr.u = X86DESC_GET_HID_ATTR(&DescCS.Legacy);
3386 pVCpu->cpum.GstCtx.cs.u32Limit = cbLimitCS;
3387 pVCpu->cpum.GstCtx.cs.u64Base = X86DESC_BASE(&DescCS.Legacy);
3388 pVCpu->iem.s.enmCpuMode = iemCalcCpuMode(pVCpu);
3389
3390 pVCpu->cpum.GstCtx.ss.Sel = uNewSS;
3391 pVCpu->cpum.GstCtx.ss.ValidSel = uNewSS;
3392 pVCpu->cpum.GstCtx.ss.fFlags = CPUMSELREG_FLAGS_VALID;
3393 pVCpu->cpum.GstCtx.ss.Attr.u = X86DESC_GET_HID_ATTR(&DescSS.Legacy);
3394 pVCpu->cpum.GstCtx.ss.u32Limit = cbLimitSs;
3395 pVCpu->cpum.GstCtx.ss.u64Base = X86DESC_BASE(&DescSS.Legacy);
3396 if (!pVCpu->cpum.GstCtx.ss.Attr.n.u1DefBig)
3397 pVCpu->cpum.GstCtx.sp = (uint16_t)uNewESP;
3398 else
3399 pVCpu->cpum.GstCtx.rsp = uNewESP;
3400
3401 pVCpu->iem.s.uCpl = uNewCs & X86_SEL_RPL;
3402 iemHlpAdjustSelectorForNewCpl(pVCpu, uNewCs & X86_SEL_RPL, &pVCpu->cpum.GstCtx.ds);
3403 iemHlpAdjustSelectorForNewCpl(pVCpu, uNewCs & X86_SEL_RPL, &pVCpu->cpum.GstCtx.es);
3404 iemHlpAdjustSelectorForNewCpl(pVCpu, uNewCs & X86_SEL_RPL, &pVCpu->cpum.GstCtx.fs);
3405 iemHlpAdjustSelectorForNewCpl(pVCpu, uNewCs & X86_SEL_RPL, &pVCpu->cpum.GstCtx.gs);
3406
3407 /* Done! */
3408
3409 }
3410 /*
3411 * Return to the same level.
3412 */
3413 else
3414 {
3415 /* Check EIP. */
3416 if (uNewEip > cbLimitCS)
3417 {
3418 Log(("iret %04x:%08x - EIP is out of bounds (%#x) -> #GP(0)\n", uNewCs, uNewEip, cbLimitCS));
3419 /** @todo: Which is it, #GP(0) or #GP(sel)? */
3420 return iemRaiseSelectorBoundsBySelector(pVCpu, uNewCs);
3421 }
3422
3423 /*
3424 * Commit the changes, marking CS first since it may fail.
3425 */
3426 if (!(DescCS.Legacy.Gen.u4Type & X86_SEL_TYPE_ACCESSED))
3427 {
3428 rcStrict = iemMemMarkSelDescAccessed(pVCpu, uNewCs);
3429 if (rcStrict != VINF_SUCCESS)
3430 return rcStrict;
3431 DescCS.Legacy.Gen.u4Type |= X86_SEL_TYPE_ACCESSED;
3432 }
3433
3434 X86EFLAGS NewEfl;
3435 NewEfl.u = IEMMISC_GET_EFL(pVCpu);
3436 uint32_t fEFlagsMask = X86_EFL_CF | X86_EFL_PF | X86_EFL_AF | X86_EFL_ZF | X86_EFL_SF
3437 | X86_EFL_TF | X86_EFL_DF | X86_EFL_OF | X86_EFL_NT;
3438 if (enmEffOpSize != IEMMODE_16BIT)
3439 fEFlagsMask |= X86_EFL_RF | X86_EFL_AC | X86_EFL_ID;
3440 if (pVCpu->iem.s.uCpl == 0)
3441 fEFlagsMask |= X86_EFL_IF | X86_EFL_IOPL | X86_EFL_VIF | X86_EFL_VIP; /* VM is 0 */
3442 else if (pVCpu->iem.s.uCpl <= NewEfl.Bits.u2IOPL)
3443 fEFlagsMask |= X86_EFL_IF;
3444 if (IEM_GET_TARGET_CPU(pVCpu) <= IEMTARGETCPU_386)
3445 fEFlagsMask &= ~(X86_EFL_AC | X86_EFL_ID | X86_EFL_VIF | X86_EFL_VIP);
3446 NewEfl.u &= ~fEFlagsMask;
3447 NewEfl.u |= fEFlagsMask & uNewFlags;
3448#ifdef DBGFTRACE_ENABLED
3449 RTTraceBufAddMsgF(pVCpu->CTX_SUFF(pVM)->CTX_SUFF(hTraceBuf), "iret/%up %04x:%08x -> %04x:%04x %x %04x:%04llx",
3450 pVCpu->iem.s.uCpl, pVCpu->cpum.GstCtx.cs.Sel, pVCpu->cpum.GstCtx.eip,
3451 uNewCs, uNewEip, uNewFlags, pVCpu->cpum.GstCtx.ss.Sel, uNewRsp);
3452#endif
3453
3454 IEMMISC_SET_EFL(pVCpu, NewEfl.u);
3455 pVCpu->cpum.GstCtx.rip = uNewEip;
3456 pVCpu->cpum.GstCtx.cs.Sel = uNewCs;
3457 pVCpu->cpum.GstCtx.cs.ValidSel = uNewCs;
3458 pVCpu->cpum.GstCtx.cs.fFlags = CPUMSELREG_FLAGS_VALID;
3459 pVCpu->cpum.GstCtx.cs.Attr.u = X86DESC_GET_HID_ATTR(&DescCS.Legacy);
3460 pVCpu->cpum.GstCtx.cs.u32Limit = cbLimitCS;
3461 pVCpu->cpum.GstCtx.cs.u64Base = X86DESC_BASE(&DescCS.Legacy);
3462 pVCpu->iem.s.enmCpuMode = iemCalcCpuMode(pVCpu);
3463 if (!pVCpu->cpum.GstCtx.ss.Attr.n.u1DefBig)
3464 pVCpu->cpum.GstCtx.sp = (uint16_t)uNewRsp;
3465 else
3466 pVCpu->cpum.GstCtx.rsp = uNewRsp;
3467 /* Done! */
3468 }
3469
3470 /* Flush the prefetch buffer. */
3471#ifdef IEM_WITH_CODE_TLB
3472 pVCpu->iem.s.pbInstrBuf = NULL;
3473#else
3474 pVCpu->iem.s.cbOpcode = pVCpu->iem.s.offOpcode;
3475#endif
3476
3477 return VINF_SUCCESS;
3478}
3479
3480
3481/**
3482 * Implements iret for long mode
3483 *
3484 * @param enmEffOpSize The effective operand size.
3485 */
3486IEM_CIMPL_DEF_1(iemCImpl_iret_64bit, IEMMODE, enmEffOpSize)
3487{
3488 NOREF(cbInstr);
3489
3490 /*
3491 * Nested task return is not supported in long mode.
3492 */
3493 if (pVCpu->cpum.GstCtx.eflags.Bits.u1NT)
3494 {
3495 Log(("iretq with NT=1 (eflags=%#x) -> #GP(0)\n", pVCpu->cpum.GstCtx.eflags.u));
3496 return iemRaiseGeneralProtectionFault0(pVCpu);
3497 }
3498
3499 /*
3500 * Normal return.
3501 *
3502 * Do the stack bits, but don't commit RSP before everything checks
3503 * out right.
3504 */
3505 VBOXSTRICTRC rcStrict;
3506 RTCPTRUNION uFrame;
3507 uint64_t uNewRip;
3508 uint16_t uNewCs;
3509 uint16_t uNewSs;
3510 uint32_t uNewFlags;
3511 uint64_t uNewRsp;
3512 if (enmEffOpSize == IEMMODE_64BIT)
3513 {
3514 rcStrict = iemMemStackPopBeginSpecial(pVCpu, 5*8, &uFrame.pv, &uNewRsp);
3515 if (rcStrict != VINF_SUCCESS)
3516 return rcStrict;
3517 uNewRip = uFrame.pu64[0];
3518 uNewCs = (uint16_t)uFrame.pu64[1];
3519 uNewFlags = (uint32_t)uFrame.pu64[2];
3520 uNewRsp = uFrame.pu64[3];
3521 uNewSs = (uint16_t)uFrame.pu64[4];
3522 }
3523 else if (enmEffOpSize == IEMMODE_32BIT)
3524 {
3525 rcStrict = iemMemStackPopBeginSpecial(pVCpu, 5*4, &uFrame.pv, &uNewRsp);
3526 if (rcStrict != VINF_SUCCESS)
3527 return rcStrict;
3528 uNewRip = uFrame.pu32[0];
3529 uNewCs = (uint16_t)uFrame.pu32[1];
3530 uNewFlags = uFrame.pu32[2];
3531 uNewRsp = uFrame.pu32[3];
3532 uNewSs = (uint16_t)uFrame.pu32[4];
3533 }
3534 else
3535 {
3536 Assert(enmEffOpSize == IEMMODE_16BIT);
3537 rcStrict = iemMemStackPopBeginSpecial(pVCpu, 5*2, &uFrame.pv, &uNewRsp);
3538 if (rcStrict != VINF_SUCCESS)
3539 return rcStrict;
3540 uNewRip = uFrame.pu16[0];
3541 uNewCs = uFrame.pu16[1];
3542 uNewFlags = uFrame.pu16[2];
3543 uNewRsp = uFrame.pu16[3];
3544 uNewSs = uFrame.pu16[4];
3545 }
3546 rcStrict = iemMemStackPopDoneSpecial(pVCpu, (void *)uFrame.pv); /* don't use iemMemStackPopCommitSpecial here. */
3547 if (RT_LIKELY(rcStrict == VINF_SUCCESS))
3548 { /* extremely like */ }
3549 else
3550 return rcStrict;
3551 Log7(("iretq stack: cs:rip=%04x:%016RX64 rflags=%016RX64 ss:rsp=%04x:%016RX64\n", uNewCs, uNewRip, uNewFlags, uNewSs, uNewRsp));
3552
3553 /*
3554 * Check stuff.
3555 */
3556 /* Read the CS descriptor. */
3557 if (!(uNewCs & X86_SEL_MASK_OFF_RPL))
3558 {
3559 Log(("iret %04x:%016RX64/%04x:%016RX64 -> invalid CS selector, #GP(0)\n", uNewCs, uNewRip, uNewSs, uNewRsp));
3560 return iemRaiseGeneralProtectionFault0(pVCpu);
3561 }
3562
3563 IEMSELDESC DescCS;
3564 rcStrict = iemMemFetchSelDesc(pVCpu, &DescCS, uNewCs, X86_XCPT_GP);
3565 if (rcStrict != VINF_SUCCESS)
3566 {
3567 Log(("iret %04x:%016RX64/%04x:%016RX64 - rcStrict=%Rrc when fetching CS\n",
3568 uNewCs, uNewRip, uNewSs, uNewRsp, VBOXSTRICTRC_VAL(rcStrict)));
3569 return rcStrict;
3570 }
3571
3572 /* Must be a code descriptor. */
3573 if ( !DescCS.Legacy.Gen.u1DescType
3574 || !(DescCS.Legacy.Gen.u4Type & X86_SEL_TYPE_CODE))
3575 {
3576 Log(("iret %04x:%016RX64/%04x:%016RX64 - CS is not a code segment T=%u T=%#xu -> #GP\n",
3577 uNewCs, uNewRip, uNewSs, uNewRsp, DescCS.Legacy.Gen.u1DescType, DescCS.Legacy.Gen.u4Type));
3578 return iemRaiseGeneralProtectionFaultBySelector(pVCpu, uNewCs);
3579 }
3580
3581 /* Privilege checks. */
3582 uint8_t const uNewCpl = uNewCs & X86_SEL_RPL;
3583 if (!(DescCS.Legacy.Gen.u4Type & X86_SEL_TYPE_CONF))
3584 {
3585 if ((uNewCs & X86_SEL_RPL) != DescCS.Legacy.Gen.u2Dpl)
3586 {
3587 Log(("iret %04x:%016RX64 - RPL != DPL (%d) -> #GP\n", uNewCs, uNewRip, DescCS.Legacy.Gen.u2Dpl));
3588 return iemRaiseGeneralProtectionFaultBySelector(pVCpu, uNewCs);
3589 }
3590 }
3591 else if ((uNewCs & X86_SEL_RPL) < DescCS.Legacy.Gen.u2Dpl)
3592 {
3593 Log(("iret %04x:%016RX64 - RPL < DPL (%d) -> #GP\n", uNewCs, uNewRip, DescCS.Legacy.Gen.u2Dpl));
3594 return iemRaiseGeneralProtectionFaultBySelector(pVCpu, uNewCs);
3595 }
3596 if ((uNewCs & X86_SEL_RPL) < pVCpu->iem.s.uCpl)
3597 {
3598 Log(("iret %04x:%016RX64 - RPL < CPL (%d) -> #GP\n", uNewCs, uNewRip, pVCpu->iem.s.uCpl));
3599 return iemRaiseGeneralProtectionFaultBySelector(pVCpu, uNewCs);
3600 }
3601
3602 /* Present? */
3603 if (!DescCS.Legacy.Gen.u1Present)
3604 {
3605 Log(("iret %04x:%016RX64/%04x:%016RX64 - CS not present -> #NP\n", uNewCs, uNewRip, uNewSs, uNewRsp));
3606 return iemRaiseSelectorNotPresentBySelector(pVCpu, uNewCs);
3607 }
3608
3609 uint32_t cbLimitCS = X86DESC_LIMIT_G(&DescCS.Legacy);
3610
3611 /* Read the SS descriptor. */
3612 IEMSELDESC DescSS;
3613 if (!(uNewSs & X86_SEL_MASK_OFF_RPL))
3614 {
3615 if ( !DescCS.Legacy.Gen.u1Long
3616 || DescCS.Legacy.Gen.u1DefBig /** @todo exactly how does iret (and others) behave with u1Long=1 and u1DefBig=1? \#GP(sel)? */
3617 || uNewCpl > 2) /** @todo verify SS=0 impossible for ring-3. */
3618 {
3619 Log(("iret %04x:%016RX64/%04x:%016RX64 -> invalid SS selector, #GP(0)\n", uNewCs, uNewRip, uNewSs, uNewRsp));
3620 return iemRaiseGeneralProtectionFault0(pVCpu);
3621 }
3622 DescSS.Legacy.u = 0;
3623 }
3624 else
3625 {
3626 rcStrict = iemMemFetchSelDesc(pVCpu, &DescSS, uNewSs, X86_XCPT_GP); /** @todo Correct exception? */
3627 if (rcStrict != VINF_SUCCESS)
3628 {
3629 Log(("iret %04x:%016RX64/%04x:%016RX64 - %Rrc when fetching SS\n",
3630 uNewCs, uNewRip, uNewSs, uNewRsp, VBOXSTRICTRC_VAL(rcStrict)));
3631 return rcStrict;
3632 }
3633 }
3634
3635 /* Privilege checks. */
3636 if ((uNewSs & X86_SEL_RPL) != (uNewCs & X86_SEL_RPL))
3637 {
3638 Log(("iret %04x:%016RX64/%04x:%016RX64 -> SS.RPL != CS.RPL -> #GP\n", uNewCs, uNewRip, uNewSs, uNewRsp));
3639 return iemRaiseGeneralProtectionFaultBySelector(pVCpu, uNewSs);
3640 }
3641
3642 uint32_t cbLimitSs;
3643 if (!(uNewSs & X86_SEL_MASK_OFF_RPL))
3644 cbLimitSs = UINT32_MAX;
3645 else
3646 {
3647 if (DescSS.Legacy.Gen.u2Dpl != (uNewCs & X86_SEL_RPL))
3648 {
3649 Log(("iret %04x:%016RX64/%04x:%016RX64 -> SS.DPL (%d) != CS.RPL -> #GP\n",
3650 uNewCs, uNewRip, uNewSs, uNewRsp, DescSS.Legacy.Gen.u2Dpl));
3651 return iemRaiseGeneralProtectionFaultBySelector(pVCpu, uNewSs);
3652 }
3653
3654 /* Must be a writeable data segment descriptor. */
3655 if (!DescSS.Legacy.Gen.u1DescType)
3656 {
3657 Log(("iret %04x:%016RX64/%04x:%016RX64 -> SS is system segment (%#x) -> #GP\n",
3658 uNewCs, uNewRip, uNewSs, uNewRsp, DescSS.Legacy.Gen.u4Type));
3659 return iemRaiseGeneralProtectionFaultBySelector(pVCpu, uNewSs);
3660 }
3661 if ((DescSS.Legacy.Gen.u4Type & (X86_SEL_TYPE_CODE | X86_SEL_TYPE_WRITE)) != X86_SEL_TYPE_WRITE)
3662 {
3663 Log(("iret %04x:%016RX64/%04x:%016RX64 - not writable data segment (%#x) -> #GP\n",
3664 uNewCs, uNewRip, uNewSs, uNewRsp, DescSS.Legacy.Gen.u4Type));
3665 return iemRaiseGeneralProtectionFaultBySelector(pVCpu, uNewSs);
3666 }
3667
3668 /* Present? */
3669 if (!DescSS.Legacy.Gen.u1Present)
3670 {
3671 Log(("iret %04x:%016RX64/%04x:%016RX64 -> SS not present -> #SS\n", uNewCs, uNewRip, uNewSs, uNewRsp));
3672 return iemRaiseStackSelectorNotPresentBySelector(pVCpu, uNewSs);
3673 }
3674 cbLimitSs = X86DESC_LIMIT_G(&DescSS.Legacy);
3675 }
3676
3677 /* Check EIP. */
3678 if (DescCS.Legacy.Gen.u1Long)
3679 {
3680 if (!IEM_IS_CANONICAL(uNewRip))
3681 {
3682 Log(("iret %04x:%016RX64/%04x:%016RX64 -> RIP is not canonical -> #GP(0)\n",
3683 uNewCs, uNewRip, uNewSs, uNewRsp));
3684 return iemRaiseSelectorBoundsBySelector(pVCpu, uNewCs);
3685 }
3686 }
3687 else
3688 {
3689 if (uNewRip > cbLimitCS)
3690 {
3691 Log(("iret %04x:%016RX64/%04x:%016RX64 -> EIP is out of bounds (%#x) -> #GP(0)\n",
3692 uNewCs, uNewRip, uNewSs, uNewRsp, cbLimitCS));
3693 /** @todo: Which is it, #GP(0) or #GP(sel)? */
3694 return iemRaiseSelectorBoundsBySelector(pVCpu, uNewCs);
3695 }
3696 }
3697
3698 /*
3699 * Commit the changes, marking CS and SS accessed first since
3700 * that may fail.
3701 */
3702 /** @todo where exactly are these actually marked accessed by a real CPU? */
3703 if (!(DescCS.Legacy.Gen.u4Type & X86_SEL_TYPE_ACCESSED))
3704 {
3705 rcStrict = iemMemMarkSelDescAccessed(pVCpu, uNewCs);
3706 if (rcStrict != VINF_SUCCESS)
3707 return rcStrict;
3708 DescCS.Legacy.Gen.u4Type |= X86_SEL_TYPE_ACCESSED;
3709 }
3710 if (!(DescSS.Legacy.Gen.u4Type & X86_SEL_TYPE_ACCESSED))
3711 {
3712 rcStrict = iemMemMarkSelDescAccessed(pVCpu, uNewSs);
3713 if (rcStrict != VINF_SUCCESS)
3714 return rcStrict;
3715 DescSS.Legacy.Gen.u4Type |= X86_SEL_TYPE_ACCESSED;
3716 }
3717
3718 uint32_t fEFlagsMask = X86_EFL_CF | X86_EFL_PF | X86_EFL_AF | X86_EFL_ZF | X86_EFL_SF
3719 | X86_EFL_TF | X86_EFL_DF | X86_EFL_OF | X86_EFL_NT;
3720 if (enmEffOpSize != IEMMODE_16BIT)
3721 fEFlagsMask |= X86_EFL_RF | X86_EFL_AC | X86_EFL_ID;
3722 if (pVCpu->iem.s.uCpl == 0)
3723 fEFlagsMask |= X86_EFL_IF | X86_EFL_IOPL | X86_EFL_VIF | X86_EFL_VIP; /* VM is ignored */
3724 else if (pVCpu->iem.s.uCpl <= pVCpu->cpum.GstCtx.eflags.Bits.u2IOPL)
3725 fEFlagsMask |= X86_EFL_IF;
3726 uint32_t fEFlagsNew = IEMMISC_GET_EFL(pVCpu);
3727 fEFlagsNew &= ~fEFlagsMask;
3728 fEFlagsNew |= uNewFlags & fEFlagsMask;
3729#ifdef DBGFTRACE_ENABLED
3730 RTTraceBufAddMsgF(pVCpu->CTX_SUFF(pVM)->CTX_SUFF(hTraceBuf), "iret/%ul%u %08llx -> %04x:%04llx %llx %04x:%04llx",
3731 pVCpu->iem.s.uCpl, uNewCpl, pVCpu->cpum.GstCtx.rip, uNewCs, uNewRip, uNewFlags, uNewSs, uNewRsp);
3732#endif
3733
3734 IEMMISC_SET_EFL(pVCpu, fEFlagsNew);
3735 pVCpu->cpum.GstCtx.rip = uNewRip;
3736 pVCpu->cpum.GstCtx.cs.Sel = uNewCs;
3737 pVCpu->cpum.GstCtx.cs.ValidSel = uNewCs;
3738 pVCpu->cpum.GstCtx.cs.fFlags = CPUMSELREG_FLAGS_VALID;
3739 pVCpu->cpum.GstCtx.cs.Attr.u = X86DESC_GET_HID_ATTR(&DescCS.Legacy);
3740 pVCpu->cpum.GstCtx.cs.u32Limit = cbLimitCS;
3741 pVCpu->cpum.GstCtx.cs.u64Base = X86DESC_BASE(&DescCS.Legacy);
3742 pVCpu->iem.s.enmCpuMode = iemCalcCpuMode(pVCpu);
3743 if (pVCpu->cpum.GstCtx.cs.Attr.n.u1Long || pVCpu->cpum.GstCtx.cs.Attr.n.u1DefBig)
3744 pVCpu->cpum.GstCtx.rsp = uNewRsp;
3745 else
3746 pVCpu->cpum.GstCtx.sp = (uint16_t)uNewRsp;
3747 pVCpu->cpum.GstCtx.ss.Sel = uNewSs;
3748 pVCpu->cpum.GstCtx.ss.ValidSel = uNewSs;
3749 if (!(uNewSs & X86_SEL_MASK_OFF_RPL))
3750 {
3751 pVCpu->cpum.GstCtx.ss.fFlags = CPUMSELREG_FLAGS_VALID;
3752 pVCpu->cpum.GstCtx.ss.Attr.u = X86DESCATTR_UNUSABLE | (uNewCpl << X86DESCATTR_DPL_SHIFT);
3753 pVCpu->cpum.GstCtx.ss.u32Limit = UINT32_MAX;
3754 pVCpu->cpum.GstCtx.ss.u64Base = 0;
3755 Log2(("iretq new SS: NULL\n"));
3756 }
3757 else
3758 {
3759 pVCpu->cpum.GstCtx.ss.fFlags = CPUMSELREG_FLAGS_VALID;
3760 pVCpu->cpum.GstCtx.ss.Attr.u = X86DESC_GET_HID_ATTR(&DescSS.Legacy);
3761 pVCpu->cpum.GstCtx.ss.u32Limit = cbLimitSs;
3762 pVCpu->cpum.GstCtx.ss.u64Base = X86DESC_BASE(&DescSS.Legacy);
3763 Log2(("iretq new SS: base=%#RX64 lim=%#x attr=%#x\n", pVCpu->cpum.GstCtx.ss.u64Base, pVCpu->cpum.GstCtx.ss.u32Limit, pVCpu->cpum.GstCtx.ss.Attr.u));
3764 }
3765
3766 if (pVCpu->iem.s.uCpl != uNewCpl)
3767 {
3768 pVCpu->iem.s.uCpl = uNewCpl;
3769 iemHlpAdjustSelectorForNewCpl(pVCpu, uNewCpl, &pVCpu->cpum.GstCtx.ds);
3770 iemHlpAdjustSelectorForNewCpl(pVCpu, uNewCpl, &pVCpu->cpum.GstCtx.es);
3771 iemHlpAdjustSelectorForNewCpl(pVCpu, uNewCpl, &pVCpu->cpum.GstCtx.fs);
3772 iemHlpAdjustSelectorForNewCpl(pVCpu, uNewCpl, &pVCpu->cpum.GstCtx.gs);
3773 }
3774
3775 /* Flush the prefetch buffer. */
3776#ifdef IEM_WITH_CODE_TLB
3777 pVCpu->iem.s.pbInstrBuf = NULL;
3778#else
3779 pVCpu->iem.s.cbOpcode = pVCpu->iem.s.offOpcode;
3780#endif
3781
3782 return VINF_SUCCESS;
3783}
3784
3785
3786/**
3787 * Implements iret.
3788 *
3789 * @param enmEffOpSize The effective operand size.
3790 */
3791IEM_CIMPL_DEF_1(iemCImpl_iret, IEMMODE, enmEffOpSize)
3792{
3793 bool fBlockingNmi = VMCPU_FF_IS_SET(pVCpu, VMCPU_FF_BLOCK_NMIS);
3794
3795#ifdef VBOX_WITH_NESTED_HWVIRT_VMX
3796 if (IEM_VMX_IS_NON_ROOT_MODE(pVCpu))
3797 {
3798 /*
3799 * Record whether NMI (or virtual-NMI) blocking is in effect during the execution
3800 * of this IRET instruction. We need to provide this information as part of some
3801 * VM-exits.
3802 *
3803 * See Intel spec. 27.2.2 "Information for VM Exits Due to Vectored Events".
3804 */
3805 if (IEM_VMX_IS_PINCTLS_SET(pVCpu, VMX_PIN_CTLS_VIRT_NMI))
3806 pVCpu->cpum.GstCtx.hwvirt.vmx.fNmiUnblockingIret = pVCpu->cpum.GstCtx.hwvirt.vmx.fVirtNmiBlocking;
3807 else
3808 pVCpu->cpum.GstCtx.hwvirt.vmx.fNmiUnblockingIret = fBlockingNmi;
3809
3810 /*
3811 * If "NMI exiting" is set, IRET does not affect blocking of NMIs.
3812 * See Intel Spec. 25.3 "Changes To Instruction Behavior In VMX Non-root Operation".
3813 */
3814 if (IEM_VMX_IS_PINCTLS_SET(pVCpu, VMX_PIN_CTLS_NMI_EXIT))
3815 fBlockingNmi = false;
3816
3817 /* Clear virtual-NMI blocking, if any, before causing any further exceptions. */
3818 pVCpu->cpum.GstCtx.hwvirt.vmx.fVirtNmiBlocking = false;
3819 }
3820#endif
3821
3822 /*
3823 * The SVM nested-guest intercept for IRET takes priority over all exceptions,
3824 * The NMI is still held pending (which I assume means blocking of further NMIs
3825 * is in effect).
3826 *
3827 * See AMD spec. 15.9 "Instruction Intercepts".
3828 * See AMD spec. 15.21.9 "NMI Support".
3829 */
3830 if (IEM_SVM_IS_CTRL_INTERCEPT_SET(pVCpu, SVM_CTRL_INTERCEPT_IRET))
3831 {
3832 Log(("iret: Guest intercept -> #VMEXIT\n"));
3833 IEM_SVM_UPDATE_NRIP(pVCpu);
3834 IEM_SVM_VMEXIT_RET(pVCpu, SVM_EXIT_IRET, 0 /* uExitInfo1 */, 0 /* uExitInfo2 */);
3835 }
3836
3837 /*
3838 * Clear NMI blocking, if any, before causing any further exceptions.
3839 * See Intel spec. 6.7.1 "Handling Multiple NMIs".
3840 */
3841 if (fBlockingNmi)
3842 VMCPU_FF_CLEAR(pVCpu, VMCPU_FF_BLOCK_NMIS);
3843
3844 /*
3845 * Call a mode specific worker.
3846 */
3847 if (IEM_IS_REAL_OR_V86_MODE(pVCpu))
3848 return IEM_CIMPL_CALL_1(iemCImpl_iret_real_v8086, enmEffOpSize);
3849 IEM_CTX_IMPORT_RET(pVCpu, CPUMCTX_EXTRN_SREG_MASK | CPUMCTX_EXTRN_GDTR | CPUMCTX_EXTRN_LDTR);
3850 if (pVCpu->iem.s.enmCpuMode == IEMMODE_64BIT)
3851 return IEM_CIMPL_CALL_1(iemCImpl_iret_64bit, enmEffOpSize);
3852 return IEM_CIMPL_CALL_1(iemCImpl_iret_prot, enmEffOpSize);
3853}
3854
3855
3856static void iemLoadallSetSelector(PVMCPUCC pVCpu, uint8_t iSegReg, uint16_t uSel)
3857{
3858 PCPUMSELREGHID pHid = iemSRegGetHid(pVCpu, iSegReg);
3859
3860 pHid->Sel = uSel;
3861 pHid->ValidSel = uSel;
3862 pHid->fFlags = CPUMSELREG_FLAGS_VALID;
3863}
3864
3865
3866static void iemLoadall286SetDescCache(PVMCPUCC pVCpu, uint8_t iSegReg, uint8_t const *pbMem)
3867{
3868 PCPUMSELREGHID pHid = iemSRegGetHid(pVCpu, iSegReg);
3869
3870 /* The base is in the first three bytes. */
3871 pHid->u64Base = pbMem[0] + (pbMem[1] << 8) + (pbMem[2] << 16);
3872 /* The attributes are in the fourth byte. */
3873 pHid->Attr.u = pbMem[3];
3874 /* The limit is in the last two bytes. */
3875 pHid->u32Limit = pbMem[4] + (pbMem[5] << 8);
3876}
3877
3878
3879/**
3880 * Implements 286 LOADALL (286 CPUs only).
3881 */
3882IEM_CIMPL_DEF_0(iemCImpl_loadall286)
3883{
3884 NOREF(cbInstr);
3885
3886 /* Data is loaded from a buffer at 800h. No checks are done on the
3887 * validity of loaded state.
3888 *
3889 * LOADALL only loads the internal CPU state, it does not access any
3890 * GDT, LDT, or similar tables.
3891 */
3892
3893 if (pVCpu->iem.s.uCpl != 0)
3894 {
3895 Log(("loadall286: CPL must be 0 not %u -> #GP(0)\n", pVCpu->iem.s.uCpl));
3896 return iemRaiseGeneralProtectionFault0(pVCpu);
3897 }
3898
3899 uint8_t const *pbMem = NULL;
3900 uint16_t const *pa16Mem;
3901 uint8_t const *pa8Mem;
3902 RTGCPHYS GCPtrStart = 0x800; /* Fixed table location. */
3903 VBOXSTRICTRC rcStrict = iemMemMap(pVCpu, (void **)&pbMem, 0x66, UINT8_MAX, GCPtrStart, IEM_ACCESS_SYS_R);
3904 if (rcStrict != VINF_SUCCESS)
3905 return rcStrict;
3906
3907 /* The MSW is at offset 0x06. */
3908 pa16Mem = (uint16_t const *)(pbMem + 0x06);
3909 /* Even LOADALL can't clear the MSW.PE bit, though it can set it. */
3910 uint64_t uNewCr0 = pVCpu->cpum.GstCtx.cr0 & ~(X86_CR0_MP | X86_CR0_EM | X86_CR0_TS);
3911 uNewCr0 |= *pa16Mem & (X86_CR0_PE | X86_CR0_MP | X86_CR0_EM | X86_CR0_TS);
3912 uint64_t const uOldCr0 = pVCpu->cpum.GstCtx.cr0;
3913
3914 CPUMSetGuestCR0(pVCpu, uNewCr0);
3915 Assert(pVCpu->cpum.GstCtx.cr0 == uNewCr0);
3916
3917 /* Inform PGM if mode changed. */
3918 if ((uNewCr0 & X86_CR0_PE) != (uOldCr0 & X86_CR0_PE))
3919 {
3920 int rc = PGMFlushTLB(pVCpu, pVCpu->cpum.GstCtx.cr3, true /* global */, false /* fPdpesMapped */);
3921 AssertRCReturn(rc, rc);
3922 /* ignore informational status codes */
3923 }
3924 rcStrict = PGMChangeMode(pVCpu, pVCpu->cpum.GstCtx.cr0, pVCpu->cpum.GstCtx.cr4, pVCpu->cpum.GstCtx.msrEFER);
3925
3926 /* TR selector is at offset 0x16. */
3927 pa16Mem = (uint16_t const *)(pbMem + 0x16);
3928 pVCpu->cpum.GstCtx.tr.Sel = pa16Mem[0];
3929 pVCpu->cpum.GstCtx.tr.ValidSel = pa16Mem[0];
3930 pVCpu->cpum.GstCtx.tr.fFlags = CPUMSELREG_FLAGS_VALID;
3931
3932 /* Followed by FLAGS... */
3933 pVCpu->cpum.GstCtx.eflags.u = pa16Mem[1] | X86_EFL_1;
3934 pVCpu->cpum.GstCtx.ip = pa16Mem[2]; /* ...and IP. */
3935
3936 /* LDT is at offset 0x1C. */
3937 pa16Mem = (uint16_t const *)(pbMem + 0x1C);
3938 pVCpu->cpum.GstCtx.ldtr.Sel = pa16Mem[0];
3939 pVCpu->cpum.GstCtx.ldtr.ValidSel = pa16Mem[0];
3940 pVCpu->cpum.GstCtx.ldtr.fFlags = CPUMSELREG_FLAGS_VALID;
3941
3942 /* Segment registers are at offset 0x1E. */
3943 pa16Mem = (uint16_t const *)(pbMem + 0x1E);
3944 iemLoadallSetSelector(pVCpu, X86_SREG_DS, pa16Mem[0]);
3945 iemLoadallSetSelector(pVCpu, X86_SREG_SS, pa16Mem[1]);
3946 iemLoadallSetSelector(pVCpu, X86_SREG_CS, pa16Mem[2]);
3947 iemLoadallSetSelector(pVCpu, X86_SREG_ES, pa16Mem[3]);
3948
3949 /* GPRs are at offset 0x26. */
3950 pa16Mem = (uint16_t const *)(pbMem + 0x26);
3951 pVCpu->cpum.GstCtx.di = pa16Mem[0];
3952 pVCpu->cpum.GstCtx.si = pa16Mem[1];
3953 pVCpu->cpum.GstCtx.bp = pa16Mem[2];
3954 pVCpu->cpum.GstCtx.sp = pa16Mem[3];
3955 pVCpu->cpum.GstCtx.bx = pa16Mem[4];
3956 pVCpu->cpum.GstCtx.dx = pa16Mem[5];
3957 pVCpu->cpum.GstCtx.cx = pa16Mem[6];
3958 pVCpu->cpum.GstCtx.ax = pa16Mem[7];
3959
3960 /* Descriptor caches are at offset 0x36, 6 bytes per entry. */
3961 iemLoadall286SetDescCache(pVCpu, X86_SREG_ES, pbMem + 0x36);
3962 iemLoadall286SetDescCache(pVCpu, X86_SREG_CS, pbMem + 0x3C);
3963 iemLoadall286SetDescCache(pVCpu, X86_SREG_SS, pbMem + 0x42);
3964 iemLoadall286SetDescCache(pVCpu, X86_SREG_DS, pbMem + 0x48);
3965
3966 /* GDTR contents are at offset 0x4E, 6 bytes. */
3967 RTGCPHYS GCPtrBase;
3968 uint16_t cbLimit;
3969 pa8Mem = pbMem + 0x4E;
3970 /* NB: Fourth byte "should be zero"; we are ignoring it. */
3971 GCPtrBase = pa8Mem[0] + (pa8Mem[1] << 8) + (pa8Mem[2] << 16);
3972 cbLimit = pa8Mem[4] + (pa8Mem[5] << 8);
3973 CPUMSetGuestGDTR(pVCpu, GCPtrBase, cbLimit);
3974
3975 /* IDTR contents are at offset 0x5A, 6 bytes. */
3976 pa8Mem = pbMem + 0x5A;
3977 GCPtrBase = pa8Mem[0] + (pa8Mem[1] << 8) + (pa8Mem[2] << 16);
3978 cbLimit = pa8Mem[4] + (pa8Mem[5] << 8);
3979 CPUMSetGuestIDTR(pVCpu, GCPtrBase, cbLimit);
3980
3981 Log(("LOADALL: GDTR:%08RX64/%04X, IDTR:%08RX64/%04X\n", pVCpu->cpum.GstCtx.gdtr.pGdt, pVCpu->cpum.GstCtx.gdtr.cbGdt, pVCpu->cpum.GstCtx.idtr.pIdt, pVCpu->cpum.GstCtx.idtr.cbIdt));
3982 Log(("LOADALL: CS:%04X, CS base:%08X, limit:%04X, attrs:%02X\n", pVCpu->cpum.GstCtx.cs.Sel, pVCpu->cpum.GstCtx.cs.u64Base, pVCpu->cpum.GstCtx.cs.u32Limit, pVCpu->cpum.GstCtx.cs.Attr.u));
3983 Log(("LOADALL: DS:%04X, DS base:%08X, limit:%04X, attrs:%02X\n", pVCpu->cpum.GstCtx.ds.Sel, pVCpu->cpum.GstCtx.ds.u64Base, pVCpu->cpum.GstCtx.ds.u32Limit, pVCpu->cpum.GstCtx.ds.Attr.u));
3984 Log(("LOADALL: ES:%04X, ES base:%08X, limit:%04X, attrs:%02X\n", pVCpu->cpum.GstCtx.es.Sel, pVCpu->cpum.GstCtx.es.u64Base, pVCpu->cpum.GstCtx.es.u32Limit, pVCpu->cpum.GstCtx.es.Attr.u));
3985 Log(("LOADALL: SS:%04X, SS base:%08X, limit:%04X, attrs:%02X\n", pVCpu->cpum.GstCtx.ss.Sel, pVCpu->cpum.GstCtx.ss.u64Base, pVCpu->cpum.GstCtx.ss.u32Limit, pVCpu->cpum.GstCtx.ss.Attr.u));
3986 Log(("LOADALL: SI:%04X, DI:%04X, AX:%04X, BX:%04X, CX:%04X, DX:%04X\n", pVCpu->cpum.GstCtx.si, pVCpu->cpum.GstCtx.di, pVCpu->cpum.GstCtx.bx, pVCpu->cpum.GstCtx.bx, pVCpu->cpum.GstCtx.cx, pVCpu->cpum.GstCtx.dx));
3987
3988 rcStrict = iemMemCommitAndUnmap(pVCpu, (void *)pbMem, IEM_ACCESS_SYS_R);
3989 if (rcStrict != VINF_SUCCESS)
3990 return rcStrict;
3991
3992 /* The CPL may change. It is taken from the "DPL fields of the SS and CS
3993 * descriptor caches" but there is no word as to what happens if those are
3994 * not identical (probably bad things).
3995 */
3996 pVCpu->iem.s.uCpl = pVCpu->cpum.GstCtx.cs.Attr.n.u2Dpl;
3997
3998 CPUMSetChangedFlags(pVCpu, CPUM_CHANGED_HIDDEN_SEL_REGS | CPUM_CHANGED_IDTR | CPUM_CHANGED_GDTR | CPUM_CHANGED_TR | CPUM_CHANGED_LDTR);
3999
4000 /* Flush the prefetch buffer. */
4001#ifdef IEM_WITH_CODE_TLB
4002 pVCpu->iem.s.pbInstrBuf = NULL;
4003#else
4004 pVCpu->iem.s.cbOpcode = pVCpu->iem.s.offOpcode;
4005#endif
4006 return rcStrict;
4007}
4008
4009
4010/**
4011 * Implements SYSCALL (AMD and Intel64).
4012 *
4013 * @param enmEffOpSize The effective operand size.
4014 */
4015IEM_CIMPL_DEF_0(iemCImpl_syscall)
4016{
4017 /** @todo hack, LOADALL should be decoded as such on a 286. */
4018 if (RT_UNLIKELY(pVCpu->iem.s.uTargetCpu == IEMTARGETCPU_286))
4019 return iemCImpl_loadall286(pVCpu, cbInstr);
4020
4021 /*
4022 * Check preconditions.
4023 *
4024 * Note that CPUs described in the documentation may load a few odd values
4025 * into CS and SS than we allow here. This has yet to be checked on real
4026 * hardware.
4027 */
4028 if (!(pVCpu->cpum.GstCtx.msrEFER & MSR_K6_EFER_SCE))
4029 {
4030 Log(("syscall: Not enabled in EFER -> #UD\n"));
4031 return iemRaiseUndefinedOpcode(pVCpu);
4032 }
4033 if (!(pVCpu->cpum.GstCtx.cr0 & X86_CR0_PE))
4034 {
4035 Log(("syscall: Protected mode is required -> #GP(0)\n"));
4036 return iemRaiseGeneralProtectionFault0(pVCpu);
4037 }
4038 if (IEM_IS_GUEST_CPU_INTEL(pVCpu) && !CPUMIsGuestInLongModeEx(IEM_GET_CTX(pVCpu)))
4039 {
4040 Log(("syscall: Only available in long mode on intel -> #UD\n"));
4041 return iemRaiseUndefinedOpcode(pVCpu);
4042 }
4043
4044 IEM_CTX_IMPORT_RET(pVCpu, CPUMCTX_EXTRN_SYSCALL_MSRS);
4045
4046 /** @todo verify RPL ignoring and CS=0xfff8 (i.e. SS == 0). */
4047 /** @todo what about LDT selectors? Shouldn't matter, really. */
4048 uint16_t uNewCs = (pVCpu->cpum.GstCtx.msrSTAR >> MSR_K6_STAR_SYSCALL_CS_SS_SHIFT) & X86_SEL_MASK_OFF_RPL;
4049 uint16_t uNewSs = uNewCs + 8;
4050 if (uNewCs == 0 || uNewSs == 0)
4051 {
4052 Log(("syscall: msrSTAR.CS = 0 or SS = 0 -> #GP(0)\n"));
4053 return iemRaiseGeneralProtectionFault0(pVCpu);
4054 }
4055
4056 /* Long mode and legacy mode differs. */
4057 if (CPUMIsGuestInLongModeEx(IEM_GET_CTX(pVCpu)))
4058 {
4059 uint64_t uNewRip = pVCpu->iem.s.enmCpuMode == IEMMODE_64BIT ? pVCpu->cpum.GstCtx.msrLSTAR : pVCpu->cpum.GstCtx. msrCSTAR;
4060
4061 /* This test isn't in the docs, but I'm not trusting the guys writing
4062 the MSRs to have validated the values as canonical like they should. */
4063 if (!IEM_IS_CANONICAL(uNewRip))
4064 {
4065 Log(("syscall: Only available in long mode on intel -> #UD\n"));
4066 return iemRaiseUndefinedOpcode(pVCpu);
4067 }
4068
4069 /*
4070 * Commit it.
4071 */
4072 Log(("syscall: %04x:%016RX64 [efl=%#llx] -> %04x:%016RX64\n", pVCpu->cpum.GstCtx.cs, pVCpu->cpum.GstCtx.rip, pVCpu->cpum.GstCtx.rflags.u, uNewCs, uNewRip));
4073 pVCpu->cpum.GstCtx.rcx = pVCpu->cpum.GstCtx.rip + cbInstr;
4074 pVCpu->cpum.GstCtx.rip = uNewRip;
4075
4076 pVCpu->cpum.GstCtx.rflags.u &= ~X86_EFL_RF;
4077 pVCpu->cpum.GstCtx.r11 = pVCpu->cpum.GstCtx.rflags.u;
4078 pVCpu->cpum.GstCtx.rflags.u &= ~pVCpu->cpum.GstCtx.msrSFMASK;
4079 pVCpu->cpum.GstCtx.rflags.u |= X86_EFL_1;
4080
4081 pVCpu->cpum.GstCtx.cs.Attr.u = X86DESCATTR_P | X86DESCATTR_G | X86DESCATTR_L | X86DESCATTR_DT | X86_SEL_TYPE_ER_ACC;
4082 pVCpu->cpum.GstCtx.ss.Attr.u = X86DESCATTR_P | X86DESCATTR_G | X86DESCATTR_L | X86DESCATTR_DT | X86_SEL_TYPE_RW_ACC;
4083 }
4084 else
4085 {
4086 /*
4087 * Commit it.
4088 */
4089 Log(("syscall: %04x:%08RX32 [efl=%#x] -> %04x:%08RX32\n",
4090 pVCpu->cpum.GstCtx.cs, pVCpu->cpum.GstCtx.eip, pVCpu->cpum.GstCtx.eflags.u, uNewCs, (uint32_t)(pVCpu->cpum.GstCtx.msrSTAR & MSR_K6_STAR_SYSCALL_EIP_MASK)));
4091 pVCpu->cpum.GstCtx.rcx = pVCpu->cpum.GstCtx.eip + cbInstr;
4092 pVCpu->cpum.GstCtx.rip = pVCpu->cpum.GstCtx.msrSTAR & MSR_K6_STAR_SYSCALL_EIP_MASK;
4093 pVCpu->cpum.GstCtx.rflags.u &= ~(X86_EFL_VM | X86_EFL_IF | X86_EFL_RF);
4094
4095 pVCpu->cpum.GstCtx.cs.Attr.u = X86DESCATTR_P | X86DESCATTR_G | X86DESCATTR_D | X86DESCATTR_DT | X86_SEL_TYPE_ER_ACC;
4096 pVCpu->cpum.GstCtx.ss.Attr.u = X86DESCATTR_P | X86DESCATTR_G | X86DESCATTR_D | X86DESCATTR_DT | X86_SEL_TYPE_RW_ACC;
4097 }
4098 pVCpu->cpum.GstCtx.cs.Sel = uNewCs;
4099 pVCpu->cpum.GstCtx.cs.ValidSel = uNewCs;
4100 pVCpu->cpum.GstCtx.cs.u64Base = 0;
4101 pVCpu->cpum.GstCtx.cs.u32Limit = UINT32_MAX;
4102 pVCpu->cpum.GstCtx.cs.fFlags = CPUMSELREG_FLAGS_VALID;
4103
4104 pVCpu->cpum.GstCtx.ss.Sel = uNewSs;
4105 pVCpu->cpum.GstCtx.ss.ValidSel = uNewSs;
4106 pVCpu->cpum.GstCtx.ss.u64Base = 0;
4107 pVCpu->cpum.GstCtx.ss.u32Limit = UINT32_MAX;
4108 pVCpu->cpum.GstCtx.ss.fFlags = CPUMSELREG_FLAGS_VALID;
4109
4110 /* Flush the prefetch buffer. */
4111#ifdef IEM_WITH_CODE_TLB
4112 pVCpu->iem.s.pbInstrBuf = NULL;
4113#else
4114 pVCpu->iem.s.cbOpcode = pVCpu->iem.s.offOpcode;
4115#endif
4116
4117 return VINF_SUCCESS;
4118}
4119
4120
4121/**
4122 * Implements SYSRET (AMD and Intel64).
4123 */
4124IEM_CIMPL_DEF_0(iemCImpl_sysret)
4125
4126{
4127 RT_NOREF_PV(cbInstr);
4128
4129 /*
4130 * Check preconditions.
4131 *
4132 * Note that CPUs described in the documentation may load a few odd values
4133 * into CS and SS than we allow here. This has yet to be checked on real
4134 * hardware.
4135 */
4136 if (!(pVCpu->cpum.GstCtx.msrEFER & MSR_K6_EFER_SCE))
4137 {
4138 Log(("sysret: Not enabled in EFER -> #UD\n"));
4139 return iemRaiseUndefinedOpcode(pVCpu);
4140 }
4141 if (IEM_IS_GUEST_CPU_INTEL(pVCpu) && !CPUMIsGuestInLongModeEx(IEM_GET_CTX(pVCpu)))
4142 {
4143 Log(("sysret: Only available in long mode on intel -> #UD\n"));
4144 return iemRaiseUndefinedOpcode(pVCpu);
4145 }
4146 if (!(pVCpu->cpum.GstCtx.cr0 & X86_CR0_PE))
4147 {
4148 Log(("sysret: Protected mode is required -> #GP(0)\n"));
4149 return iemRaiseGeneralProtectionFault0(pVCpu);
4150 }
4151 if (pVCpu->iem.s.uCpl != 0)
4152 {
4153 Log(("sysret: CPL must be 0 not %u -> #GP(0)\n", pVCpu->iem.s.uCpl));
4154 return iemRaiseGeneralProtectionFault0(pVCpu);
4155 }
4156
4157 IEM_CTX_IMPORT_RET(pVCpu, CPUMCTX_EXTRN_SYSCALL_MSRS);
4158
4159 /** @todo Does SYSRET verify CS != 0 and SS != 0? Neither is valid in ring-3. */
4160 uint16_t uNewCs = (pVCpu->cpum.GstCtx.msrSTAR >> MSR_K6_STAR_SYSRET_CS_SS_SHIFT) & X86_SEL_MASK_OFF_RPL;
4161 uint16_t uNewSs = uNewCs + 8;
4162 if (pVCpu->iem.s.enmEffOpSize == IEMMODE_64BIT)
4163 uNewCs += 16;
4164 if (uNewCs == 0 || uNewSs == 0)
4165 {
4166 Log(("sysret: msrSTAR.CS = 0 or SS = 0 -> #GP(0)\n"));
4167 return iemRaiseGeneralProtectionFault0(pVCpu);
4168 }
4169
4170 /*
4171 * Commit it.
4172 */
4173 if (CPUMIsGuestInLongModeEx(IEM_GET_CTX(pVCpu)))
4174 {
4175 if (pVCpu->iem.s.enmEffOpSize == IEMMODE_64BIT)
4176 {
4177 Log(("sysret: %04x:%016RX64 [efl=%#llx] -> %04x:%016RX64 [r11=%#llx]\n",
4178 pVCpu->cpum.GstCtx.cs, pVCpu->cpum.GstCtx.rip, pVCpu->cpum.GstCtx.rflags.u, uNewCs, pVCpu->cpum.GstCtx.rcx, pVCpu->cpum.GstCtx.r11));
4179 /* Note! We disregard intel manual regarding the RCX cananonical
4180 check, ask intel+xen why AMD doesn't do it. */
4181 pVCpu->cpum.GstCtx.rip = pVCpu->cpum.GstCtx.rcx;
4182 pVCpu->cpum.GstCtx.cs.Attr.u = X86DESCATTR_P | X86DESCATTR_G | X86DESCATTR_L | X86DESCATTR_DT | X86_SEL_TYPE_ER_ACC
4183 | (3 << X86DESCATTR_DPL_SHIFT);
4184 }
4185 else
4186 {
4187 Log(("sysret: %04x:%016RX64 [efl=%#llx] -> %04x:%08RX32 [r11=%#llx]\n",
4188 pVCpu->cpum.GstCtx.cs, pVCpu->cpum.GstCtx.rip, pVCpu->cpum.GstCtx.rflags.u, uNewCs, pVCpu->cpum.GstCtx.ecx, pVCpu->cpum.GstCtx.r11));
4189 pVCpu->cpum.GstCtx.rip = pVCpu->cpum.GstCtx.ecx;
4190 pVCpu->cpum.GstCtx.cs.Attr.u = X86DESCATTR_P | X86DESCATTR_G | X86DESCATTR_D | X86DESCATTR_DT | X86_SEL_TYPE_ER_ACC
4191 | (3 << X86DESCATTR_DPL_SHIFT);
4192 }
4193 /** @todo testcase: See what kind of flags we can make SYSRET restore and
4194 * what it really ignores. RF and VM are hinted at being zero, by AMD. */
4195 pVCpu->cpum.GstCtx.rflags.u = pVCpu->cpum.GstCtx.r11 & (X86_EFL_POPF_BITS | X86_EFL_VIF | X86_EFL_VIP);
4196 pVCpu->cpum.GstCtx.rflags.u |= X86_EFL_1;
4197 }
4198 else
4199 {
4200 Log(("sysret: %04x:%08RX32 [efl=%#x] -> %04x:%08RX32\n", pVCpu->cpum.GstCtx.cs, pVCpu->cpum.GstCtx.eip, pVCpu->cpum.GstCtx.eflags.u, uNewCs, pVCpu->cpum.GstCtx.ecx));
4201 pVCpu->cpum.GstCtx.rip = pVCpu->cpum.GstCtx.rcx;
4202 pVCpu->cpum.GstCtx.rflags.u |= X86_EFL_IF;
4203 pVCpu->cpum.GstCtx.cs.Attr.u = X86DESCATTR_P | X86DESCATTR_G | X86DESCATTR_D | X86DESCATTR_DT | X86_SEL_TYPE_ER_ACC
4204 | (3 << X86DESCATTR_DPL_SHIFT);
4205 }
4206 pVCpu->cpum.GstCtx.cs.Sel = uNewCs | 3;
4207 pVCpu->cpum.GstCtx.cs.ValidSel = uNewCs | 3;
4208 pVCpu->cpum.GstCtx.cs.u64Base = 0;
4209 pVCpu->cpum.GstCtx.cs.u32Limit = UINT32_MAX;
4210 pVCpu->cpum.GstCtx.cs.fFlags = CPUMSELREG_FLAGS_VALID;
4211
4212 pVCpu->cpum.GstCtx.ss.Sel = uNewSs | 3;
4213 pVCpu->cpum.GstCtx.ss.ValidSel = uNewSs | 3;
4214 pVCpu->cpum.GstCtx.ss.fFlags = CPUMSELREG_FLAGS_VALID;
4215 /* The SS hidden bits remains unchanged says AMD. To that I say "Yeah, right!". */
4216 pVCpu->cpum.GstCtx.ss.Attr.u |= (3 << X86DESCATTR_DPL_SHIFT);
4217 /** @todo Testcase: verify that SS.u1Long and SS.u1DefBig are left unchanged
4218 * on sysret. */
4219
4220 /* Flush the prefetch buffer. */
4221#ifdef IEM_WITH_CODE_TLB
4222 pVCpu->iem.s.pbInstrBuf = NULL;
4223#else
4224 pVCpu->iem.s.cbOpcode = pVCpu->iem.s.offOpcode;
4225#endif
4226
4227 return VINF_SUCCESS;
4228}
4229
4230
4231/**
4232 * Implements SYSENTER (Intel, 32-bit AMD).
4233 */
4234IEM_CIMPL_DEF_0(iemCImpl_sysenter)
4235{
4236 RT_NOREF(cbInstr);
4237
4238 /*
4239 * Check preconditions.
4240 *
4241 * Note that CPUs described in the documentation may load a few odd values
4242 * into CS and SS than we allow here. This has yet to be checked on real
4243 * hardware.
4244 */
4245 if (!IEM_GET_GUEST_CPU_FEATURES(pVCpu)->fSysEnter)
4246 {
4247 Log(("sysenter: not supported -=> #UD\n"));
4248 return iemRaiseUndefinedOpcode(pVCpu);
4249 }
4250 if (!(pVCpu->cpum.GstCtx.cr0 & X86_CR0_PE))
4251 {
4252 Log(("sysenter: Protected or long mode is required -> #GP(0)\n"));
4253 return iemRaiseGeneralProtectionFault0(pVCpu);
4254 }
4255 bool fIsLongMode = CPUMIsGuestInLongModeEx(IEM_GET_CTX(pVCpu));
4256 if (IEM_IS_GUEST_CPU_AMD(pVCpu) && !fIsLongMode)
4257 {
4258 Log(("sysenter: Only available in protected mode on AMD -> #UD\n"));
4259 return iemRaiseUndefinedOpcode(pVCpu);
4260 }
4261 IEM_CTX_IMPORT_RET(pVCpu, CPUMCTX_EXTRN_SYSENTER_MSRS);
4262 uint16_t uNewCs = pVCpu->cpum.GstCtx.SysEnter.cs;
4263 if ((uNewCs & X86_SEL_MASK_OFF_RPL) == 0)
4264 {
4265 Log(("sysenter: SYSENTER_CS = %#x -> #GP(0)\n", uNewCs));
4266 return iemRaiseGeneralProtectionFault0(pVCpu);
4267 }
4268
4269 /* This test isn't in the docs, it's just a safeguard against missing
4270 canonical checks when writing the registers. */
4271 if (RT_LIKELY( !fIsLongMode
4272 || ( IEM_IS_CANONICAL(pVCpu->cpum.GstCtx.SysEnter.eip)
4273 && IEM_IS_CANONICAL(pVCpu->cpum.GstCtx.SysEnter.esp))))
4274 { /* likely */ }
4275 else
4276 {
4277 Log(("sysenter: SYSENTER_EIP = %#RX64 or/and SYSENTER_ESP = %#RX64 not canonical -> #GP(0)\n",
4278 pVCpu->cpum.GstCtx.SysEnter.eip, pVCpu->cpum.GstCtx.SysEnter.esp));
4279 return iemRaiseUndefinedOpcode(pVCpu);
4280 }
4281
4282/** @todo Test: Sysenter from ring-0, ring-1 and ring-2. */
4283
4284 /*
4285 * Update registers and commit.
4286 */
4287 if (fIsLongMode)
4288 {
4289 Log(("sysenter: %04x:%016RX64 [efl=%#llx] -> %04x:%016RX64\n", pVCpu->cpum.GstCtx.cs, pVCpu->cpum.GstCtx.rip,
4290 pVCpu->cpum.GstCtx.rflags.u, uNewCs & X86_SEL_MASK_OFF_RPL, pVCpu->cpum.GstCtx.SysEnter.eip));
4291 pVCpu->cpum.GstCtx.rip = pVCpu->cpum.GstCtx.SysEnter.eip;
4292 pVCpu->cpum.GstCtx.rsp = pVCpu->cpum.GstCtx.SysEnter.esp;
4293 pVCpu->cpum.GstCtx.cs.Attr.u = X86DESCATTR_L | X86DESCATTR_G | X86DESCATTR_P | X86DESCATTR_DT
4294 | X86DESCATTR_LIMIT_HIGH | X86_SEL_TYPE_ER_ACC;
4295 }
4296 else
4297 {
4298 Log(("sysenter: %04x:%08RX32 [efl=%#llx] -> %04x:%08RX32\n", pVCpu->cpum.GstCtx.cs, (uint32_t)pVCpu->cpum.GstCtx.rip,
4299 pVCpu->cpum.GstCtx.rflags.u, uNewCs & X86_SEL_MASK_OFF_RPL, (uint32_t)pVCpu->cpum.GstCtx.SysEnter.eip));
4300 pVCpu->cpum.GstCtx.rip = (uint32_t)pVCpu->cpum.GstCtx.SysEnter.eip;
4301 pVCpu->cpum.GstCtx.rsp = (uint32_t)pVCpu->cpum.GstCtx.SysEnter.esp;
4302 pVCpu->cpum.GstCtx.cs.Attr.u = X86DESCATTR_D | X86DESCATTR_G | X86DESCATTR_P | X86DESCATTR_DT
4303 | X86DESCATTR_LIMIT_HIGH | X86_SEL_TYPE_ER_ACC;
4304 }
4305 pVCpu->cpum.GstCtx.cs.Sel = uNewCs & X86_SEL_MASK_OFF_RPL;
4306 pVCpu->cpum.GstCtx.cs.ValidSel = uNewCs & X86_SEL_MASK_OFF_RPL;
4307 pVCpu->cpum.GstCtx.cs.u64Base = 0;
4308 pVCpu->cpum.GstCtx.cs.u32Limit = UINT32_MAX;
4309 pVCpu->cpum.GstCtx.cs.fFlags = CPUMSELREG_FLAGS_VALID;
4310
4311 pVCpu->cpum.GstCtx.ss.Sel = (uNewCs & X86_SEL_MASK_OFF_RPL) + 8;
4312 pVCpu->cpum.GstCtx.ss.ValidSel = (uNewCs & X86_SEL_MASK_OFF_RPL) + 8;
4313 pVCpu->cpum.GstCtx.ss.u64Base = 0;
4314 pVCpu->cpum.GstCtx.ss.u32Limit = UINT32_MAX;
4315 pVCpu->cpum.GstCtx.ss.Attr.u = X86DESCATTR_D | X86DESCATTR_G | X86DESCATTR_P | X86DESCATTR_DT
4316 | X86DESCATTR_LIMIT_HIGH | X86_SEL_TYPE_RW_ACC;
4317 pVCpu->cpum.GstCtx.ss.fFlags = CPUMSELREG_FLAGS_VALID;
4318
4319 pVCpu->cpum.GstCtx.rflags.Bits.u1IF = 0;
4320 pVCpu->cpum.GstCtx.rflags.Bits.u1VM = 0;
4321 pVCpu->cpum.GstCtx.rflags.Bits.u1RF = 0;
4322
4323 pVCpu->iem.s.uCpl = 0;
4324
4325 /* Flush the prefetch buffer. */
4326#ifdef IEM_WITH_CODE_TLB
4327 pVCpu->iem.s.pbInstrBuf = NULL;
4328#else
4329 pVCpu->iem.s.cbOpcode = pVCpu->iem.s.offOpcode;
4330#endif
4331
4332 return VINF_SUCCESS;
4333}
4334
4335
4336/**
4337 * Implements SYSEXIT (Intel, 32-bit AMD).
4338 *
4339 * @param enmEffOpSize The effective operand size.
4340 */
4341IEM_CIMPL_DEF_1(iemCImpl_sysexit, IEMMODE, enmEffOpSize)
4342{
4343 RT_NOREF(cbInstr);
4344
4345 /*
4346 * Check preconditions.
4347 *
4348 * Note that CPUs described in the documentation may load a few odd values
4349 * into CS and SS than we allow here. This has yet to be checked on real
4350 * hardware.
4351 */
4352 if (!IEM_GET_GUEST_CPU_FEATURES(pVCpu)->fSysEnter)
4353 {
4354 Log(("sysexit: not supported -=> #UD\n"));
4355 return iemRaiseUndefinedOpcode(pVCpu);
4356 }
4357 if (!(pVCpu->cpum.GstCtx.cr0 & X86_CR0_PE))
4358 {
4359 Log(("sysexit: Protected or long mode is required -> #GP(0)\n"));
4360 return iemRaiseGeneralProtectionFault0(pVCpu);
4361 }
4362 bool fIsLongMode = CPUMIsGuestInLongModeEx(IEM_GET_CTX(pVCpu));
4363 if (IEM_IS_GUEST_CPU_AMD(pVCpu) && !fIsLongMode)
4364 {
4365 Log(("sysexit: Only available in protected mode on AMD -> #UD\n"));
4366 return iemRaiseUndefinedOpcode(pVCpu);
4367 }
4368 if (pVCpu->iem.s.uCpl != 0)
4369 {
4370 Log(("sysexit: CPL(=%u) != 0 -> #GP(0)\n", pVCpu->iem.s.uCpl));
4371 return iemRaiseGeneralProtectionFault0(pVCpu);
4372 }
4373 IEM_CTX_IMPORT_RET(pVCpu, CPUMCTX_EXTRN_SYSENTER_MSRS);
4374 uint16_t uNewCs = pVCpu->cpum.GstCtx.SysEnter.cs;
4375 if ((uNewCs & X86_SEL_MASK_OFF_RPL) == 0)
4376 {
4377 Log(("sysexit: SYSENTER_CS = %#x -> #GP(0)\n", uNewCs));
4378 return iemRaiseGeneralProtectionFault0(pVCpu);
4379 }
4380
4381 /*
4382 * Update registers and commit.
4383 */
4384 if (enmEffOpSize == IEMMODE_64BIT)
4385 {
4386 Log(("sysexit: %04x:%016RX64 [efl=%#llx] -> %04x:%016RX64\n", pVCpu->cpum.GstCtx.cs, pVCpu->cpum.GstCtx.rip,
4387 pVCpu->cpum.GstCtx.rflags.u, (uNewCs | 3) + 32, pVCpu->cpum.GstCtx.rcx));
4388 pVCpu->cpum.GstCtx.rip = pVCpu->cpum.GstCtx.rdx;
4389 pVCpu->cpum.GstCtx.rsp = pVCpu->cpum.GstCtx.rcx;
4390 pVCpu->cpum.GstCtx.cs.Attr.u = X86DESCATTR_L | X86DESCATTR_G | X86DESCATTR_P | X86DESCATTR_DT
4391 | X86DESCATTR_LIMIT_HIGH | X86_SEL_TYPE_ER_ACC | (3 << X86DESCATTR_DPL_SHIFT);
4392 pVCpu->cpum.GstCtx.cs.Sel = (uNewCs | 3) + 32;
4393 pVCpu->cpum.GstCtx.cs.ValidSel = (uNewCs | 3) + 32;
4394 pVCpu->cpum.GstCtx.ss.Sel = (uNewCs | 3) + 40;
4395 pVCpu->cpum.GstCtx.ss.ValidSel = (uNewCs | 3) + 40;
4396 }
4397 else
4398 {
4399 Log(("sysexit: %04x:%08RX64 [efl=%#llx] -> %04x:%08RX32\n", pVCpu->cpum.GstCtx.cs, pVCpu->cpum.GstCtx.rip,
4400 pVCpu->cpum.GstCtx.rflags.u, (uNewCs | 3) + 16, (uint32_t)pVCpu->cpum.GstCtx.edx));
4401 pVCpu->cpum.GstCtx.rip = pVCpu->cpum.GstCtx.edx;
4402 pVCpu->cpum.GstCtx.rsp = pVCpu->cpum.GstCtx.ecx;
4403 pVCpu->cpum.GstCtx.cs.Attr.u = X86DESCATTR_D | X86DESCATTR_G | X86DESCATTR_P | X86DESCATTR_DT
4404 | X86DESCATTR_LIMIT_HIGH | X86_SEL_TYPE_ER_ACC | (3 << X86DESCATTR_DPL_SHIFT);
4405 pVCpu->cpum.GstCtx.cs.Sel = (uNewCs | 3) + 16;
4406 pVCpu->cpum.GstCtx.cs.ValidSel = (uNewCs | 3) + 16;
4407 pVCpu->cpum.GstCtx.ss.Sel = (uNewCs | 3) + 24;
4408 pVCpu->cpum.GstCtx.ss.ValidSel = (uNewCs | 3) + 24;
4409 }
4410 pVCpu->cpum.GstCtx.cs.u64Base = 0;
4411 pVCpu->cpum.GstCtx.cs.u32Limit = UINT32_MAX;
4412 pVCpu->cpum.GstCtx.cs.fFlags = CPUMSELREG_FLAGS_VALID;
4413
4414 pVCpu->cpum.GstCtx.ss.u64Base = 0;
4415 pVCpu->cpum.GstCtx.ss.u32Limit = UINT32_MAX;
4416 pVCpu->cpum.GstCtx.ss.Attr.u = X86DESCATTR_D | X86DESCATTR_G | X86DESCATTR_P | X86DESCATTR_DT
4417 | X86DESCATTR_LIMIT_HIGH | X86_SEL_TYPE_RW_ACC | (3 << X86DESCATTR_DPL_SHIFT);
4418 pVCpu->cpum.GstCtx.ss.fFlags = CPUMSELREG_FLAGS_VALID;
4419 pVCpu->cpum.GstCtx.rflags.Bits.u1RF = 0;
4420
4421 pVCpu->iem.s.uCpl = 3;
4422
4423 /* Flush the prefetch buffer. */
4424#ifdef IEM_WITH_CODE_TLB
4425 pVCpu->iem.s.pbInstrBuf = NULL;
4426#else
4427 pVCpu->iem.s.cbOpcode = pVCpu->iem.s.offOpcode;
4428#endif
4429
4430 return VINF_SUCCESS;
4431}
4432
4433
4434/**
4435 * Common worker for 'pop SReg', 'mov SReg, GReg' and 'lXs GReg, reg/mem'.
4436 *
4437 * @param iSegReg The segment register number (valid).
4438 * @param uSel The new selector value.
4439 */
4440IEM_CIMPL_DEF_2(iemCImpl_LoadSReg, uint8_t, iSegReg, uint16_t, uSel)
4441{
4442 IEM_CTX_IMPORT_RET(pVCpu, CPUMCTX_EXTRN_SREG_FROM_IDX(iSegReg));
4443 uint16_t *pSel = iemSRegRef(pVCpu, iSegReg);
4444 PCPUMSELREGHID pHid = iemSRegGetHid(pVCpu, iSegReg);
4445
4446 Assert(iSegReg <= X86_SREG_GS && iSegReg != X86_SREG_CS);
4447
4448 /*
4449 * Real mode and V8086 mode are easy.
4450 */
4451 if (IEM_IS_REAL_OR_V86_MODE(pVCpu))
4452 {
4453 *pSel = uSel;
4454 pHid->u64Base = (uint32_t)uSel << 4;
4455 pHid->ValidSel = uSel;
4456 pHid->fFlags = CPUMSELREG_FLAGS_VALID;
4457#if 0 /* AMD Volume 2, chapter 4.1 - "real mode segmentation" - states that limit and attributes are untouched. */
4458 /** @todo Does the CPU actually load limits and attributes in the
4459 * real/V8086 mode segment load case? It doesn't for CS in far
4460 * jumps... Affects unreal mode. */
4461 pHid->u32Limit = 0xffff;
4462 pHid->Attr.u = 0;
4463 pHid->Attr.n.u1Present = 1;
4464 pHid->Attr.n.u1DescType = 1;
4465 pHid->Attr.n.u4Type = iSegReg != X86_SREG_CS
4466 ? X86_SEL_TYPE_RW
4467 : X86_SEL_TYPE_READ | X86_SEL_TYPE_CODE;
4468#endif
4469 CPUMSetChangedFlags(pVCpu, CPUM_CHANGED_HIDDEN_SEL_REGS);
4470 iemRegAddToRipAndClearRF(pVCpu, cbInstr);
4471 return VINF_SUCCESS;
4472 }
4473
4474 /*
4475 * Protected mode.
4476 *
4477 * Check if it's a null segment selector value first, that's OK for DS, ES,
4478 * FS and GS. If not null, then we have to load and parse the descriptor.
4479 */
4480 if (!(uSel & X86_SEL_MASK_OFF_RPL))
4481 {
4482 Assert(iSegReg != X86_SREG_CS); /** @todo testcase for \#UD on MOV CS, ax! */
4483 if (iSegReg == X86_SREG_SS)
4484 {
4485 /* In 64-bit kernel mode, the stack can be 0 because of the way
4486 interrupts are dispatched. AMD seems to have a slighly more
4487 relaxed relationship to SS.RPL than intel does. */
4488 /** @todo We cannot 'mov ss, 3' in 64-bit kernel mode, can we? There is a testcase (bs-cpu-xcpt-1), but double check this! */
4489 if ( pVCpu->iem.s.enmCpuMode != IEMMODE_64BIT
4490 || pVCpu->iem.s.uCpl > 2
4491 || ( uSel != pVCpu->iem.s.uCpl
4492 && !IEM_IS_GUEST_CPU_AMD(pVCpu)) )
4493 {
4494 Log(("load sreg %#x -> invalid stack selector, #GP(0)\n", uSel));
4495 return iemRaiseGeneralProtectionFault0(pVCpu);
4496 }
4497 }
4498
4499 *pSel = uSel; /* Not RPL, remember :-) */
4500 iemHlpLoadNullDataSelectorProt(pVCpu, pHid, uSel);
4501 if (iSegReg == X86_SREG_SS)
4502 pHid->Attr.u |= pVCpu->iem.s.uCpl << X86DESCATTR_DPL_SHIFT;
4503
4504 Assert(CPUMSELREG_ARE_HIDDEN_PARTS_VALID(pVCpu, pHid));
4505 CPUMSetChangedFlags(pVCpu, CPUM_CHANGED_HIDDEN_SEL_REGS);
4506
4507 iemRegAddToRipAndClearRF(pVCpu, cbInstr);
4508 return VINF_SUCCESS;
4509 }
4510
4511 /* Fetch the descriptor. */
4512 IEMSELDESC Desc;
4513 VBOXSTRICTRC rcStrict = iemMemFetchSelDesc(pVCpu, &Desc, uSel, X86_XCPT_GP); /** @todo Correct exception? */
4514 if (rcStrict != VINF_SUCCESS)
4515 return rcStrict;
4516
4517 /* Check GPs first. */
4518 if (!Desc.Legacy.Gen.u1DescType)
4519 {
4520 Log(("load sreg %d (=%#x) - system selector (%#x) -> #GP\n", iSegReg, uSel, Desc.Legacy.Gen.u4Type));
4521 return iemRaiseGeneralProtectionFaultBySelector(pVCpu, uSel);
4522 }
4523 if (iSegReg == X86_SREG_SS) /* SS gets different treatment */
4524 {
4525 if ( (Desc.Legacy.Gen.u4Type & X86_SEL_TYPE_CODE)
4526 || !(Desc.Legacy.Gen.u4Type & X86_SEL_TYPE_WRITE) )
4527 {
4528 Log(("load sreg SS, %#x - code or read only (%#x) -> #GP\n", uSel, Desc.Legacy.Gen.u4Type));
4529 return iemRaiseGeneralProtectionFaultBySelector(pVCpu, uSel);
4530 }
4531 if ((uSel & X86_SEL_RPL) != pVCpu->iem.s.uCpl)
4532 {
4533 Log(("load sreg SS, %#x - RPL and CPL (%d) differs -> #GP\n", uSel, pVCpu->iem.s.uCpl));
4534 return iemRaiseGeneralProtectionFaultBySelector(pVCpu, uSel);
4535 }
4536 if (Desc.Legacy.Gen.u2Dpl != pVCpu->iem.s.uCpl)
4537 {
4538 Log(("load sreg SS, %#x - DPL (%d) and CPL (%d) differs -> #GP\n", uSel, Desc.Legacy.Gen.u2Dpl, pVCpu->iem.s.uCpl));
4539 return iemRaiseGeneralProtectionFaultBySelector(pVCpu, uSel);
4540 }
4541 }
4542 else
4543 {
4544 if ((Desc.Legacy.Gen.u4Type & (X86_SEL_TYPE_CODE | X86_SEL_TYPE_READ)) == X86_SEL_TYPE_CODE)
4545 {
4546 Log(("load sreg%u, %#x - execute only segment -> #GP\n", iSegReg, uSel));
4547 return iemRaiseGeneralProtectionFaultBySelector(pVCpu, uSel);
4548 }
4549 if ( (Desc.Legacy.Gen.u4Type & (X86_SEL_TYPE_CODE | X86_SEL_TYPE_CONF))
4550 != (X86_SEL_TYPE_CODE | X86_SEL_TYPE_CONF))
4551 {
4552#if 0 /* this is what intel says. */
4553 if ( (uSel & X86_SEL_RPL) > Desc.Legacy.Gen.u2Dpl
4554 && pVCpu->iem.s.uCpl > Desc.Legacy.Gen.u2Dpl)
4555 {
4556 Log(("load sreg%u, %#x - both RPL (%d) and CPL (%d) are greater than DPL (%d) -> #GP\n",
4557 iSegReg, uSel, (uSel & X86_SEL_RPL), pVCpu->iem.s.uCpl, Desc.Legacy.Gen.u2Dpl));
4558 return iemRaiseGeneralProtectionFaultBySelector(pVCpu, uSel);
4559 }
4560#else /* this is what makes more sense. */
4561 if ((unsigned)(uSel & X86_SEL_RPL) > Desc.Legacy.Gen.u2Dpl)
4562 {
4563 Log(("load sreg%u, %#x - RPL (%d) is greater than DPL (%d) -> #GP\n",
4564 iSegReg, uSel, (uSel & X86_SEL_RPL), Desc.Legacy.Gen.u2Dpl));
4565 return iemRaiseGeneralProtectionFaultBySelector(pVCpu, uSel);
4566 }
4567 if (pVCpu->iem.s.uCpl > Desc.Legacy.Gen.u2Dpl)
4568 {
4569 Log(("load sreg%u, %#x - CPL (%d) is greater than DPL (%d) -> #GP\n",
4570 iSegReg, uSel, pVCpu->iem.s.uCpl, Desc.Legacy.Gen.u2Dpl));
4571 return iemRaiseGeneralProtectionFaultBySelector(pVCpu, uSel);
4572 }
4573#endif
4574 }
4575 }
4576
4577 /* Is it there? */
4578 if (!Desc.Legacy.Gen.u1Present)
4579 {
4580 Log(("load sreg%d,%#x - segment not present -> #NP\n", iSegReg, uSel));
4581 return iemRaiseSelectorNotPresentBySelector(pVCpu, uSel);
4582 }
4583
4584 /* The base and limit. */
4585 uint32_t cbLimit = X86DESC_LIMIT_G(&Desc.Legacy);
4586 uint64_t u64Base = X86DESC_BASE(&Desc.Legacy);
4587
4588 /*
4589 * Ok, everything checked out fine. Now set the accessed bit before
4590 * committing the result into the registers.
4591 */
4592 if (!(Desc.Legacy.Gen.u4Type & X86_SEL_TYPE_ACCESSED))
4593 {
4594 rcStrict = iemMemMarkSelDescAccessed(pVCpu, uSel);
4595 if (rcStrict != VINF_SUCCESS)
4596 return rcStrict;
4597 Desc.Legacy.Gen.u4Type |= X86_SEL_TYPE_ACCESSED;
4598 }
4599
4600 /* commit */
4601 *pSel = uSel;
4602 pHid->Attr.u = X86DESC_GET_HID_ATTR(&Desc.Legacy);
4603 pHid->u32Limit = cbLimit;
4604 pHid->u64Base = u64Base;
4605 pHid->ValidSel = uSel;
4606 pHid->fFlags = CPUMSELREG_FLAGS_VALID;
4607
4608 /** @todo check if the hidden bits are loaded correctly for 64-bit
4609 * mode. */
4610 Assert(CPUMSELREG_ARE_HIDDEN_PARTS_VALID(pVCpu, pHid));
4611
4612 CPUMSetChangedFlags(pVCpu, CPUM_CHANGED_HIDDEN_SEL_REGS);
4613 iemRegAddToRipAndClearRF(pVCpu, cbInstr);
4614 return VINF_SUCCESS;
4615}
4616
4617
4618/**
4619 * Implements 'mov SReg, r/m'.
4620 *
4621 * @param iSegReg The segment register number (valid).
4622 * @param uSel The new selector value.
4623 */
4624IEM_CIMPL_DEF_2(iemCImpl_load_SReg, uint8_t, iSegReg, uint16_t, uSel)
4625{
4626 VBOXSTRICTRC rcStrict = IEM_CIMPL_CALL_2(iemCImpl_LoadSReg, iSegReg, uSel);
4627 if (rcStrict == VINF_SUCCESS)
4628 {
4629 if (iSegReg == X86_SREG_SS)
4630 EMSetInhibitInterruptsPC(pVCpu, pVCpu->cpum.GstCtx.rip);
4631 }
4632 return rcStrict;
4633}
4634
4635
4636/**
4637 * Implements 'pop SReg'.
4638 *
4639 * @param iSegReg The segment register number (valid).
4640 * @param enmEffOpSize The efficient operand size (valid).
4641 */
4642IEM_CIMPL_DEF_2(iemCImpl_pop_Sreg, uint8_t, iSegReg, IEMMODE, enmEffOpSize)
4643{
4644 VBOXSTRICTRC rcStrict;
4645
4646 /*
4647 * Read the selector off the stack and join paths with mov ss, reg.
4648 */
4649 RTUINT64U TmpRsp;
4650 TmpRsp.u = pVCpu->cpum.GstCtx.rsp;
4651 switch (enmEffOpSize)
4652 {
4653 case IEMMODE_16BIT:
4654 {
4655 uint16_t uSel;
4656 rcStrict = iemMemStackPopU16Ex(pVCpu, &uSel, &TmpRsp);
4657 if (rcStrict == VINF_SUCCESS)
4658 rcStrict = IEM_CIMPL_CALL_2(iemCImpl_LoadSReg, iSegReg, uSel);
4659 break;
4660 }
4661
4662 case IEMMODE_32BIT:
4663 {
4664 uint32_t u32Value;
4665 rcStrict = iemMemStackPopU32Ex(pVCpu, &u32Value, &TmpRsp);
4666 if (rcStrict == VINF_SUCCESS)
4667 rcStrict = IEM_CIMPL_CALL_2(iemCImpl_LoadSReg, iSegReg, (uint16_t)u32Value);
4668 break;
4669 }
4670
4671 case IEMMODE_64BIT:
4672 {
4673 uint64_t u64Value;
4674 rcStrict = iemMemStackPopU64Ex(pVCpu, &u64Value, &TmpRsp);
4675 if (rcStrict == VINF_SUCCESS)
4676 rcStrict = IEM_CIMPL_CALL_2(iemCImpl_LoadSReg, iSegReg, (uint16_t)u64Value);
4677 break;
4678 }
4679 IEM_NOT_REACHED_DEFAULT_CASE_RET();
4680 }
4681
4682 /*
4683 * Commit the stack on success.
4684 */
4685 if (rcStrict == VINF_SUCCESS)
4686 {
4687 pVCpu->cpum.GstCtx.rsp = TmpRsp.u;
4688 if (iSegReg == X86_SREG_SS)
4689 EMSetInhibitInterruptsPC(pVCpu, pVCpu->cpum.GstCtx.rip);
4690 }
4691 return rcStrict;
4692}
4693
4694
4695/**
4696 * Implements lgs, lfs, les, lds & lss.
4697 */
4698IEM_CIMPL_DEF_5(iemCImpl_load_SReg_Greg,
4699 uint16_t, uSel,
4700 uint64_t, offSeg,
4701 uint8_t, iSegReg,
4702 uint8_t, iGReg,
4703 IEMMODE, enmEffOpSize)
4704{
4705 /*
4706 * Use iemCImpl_LoadSReg to do the tricky segment register loading.
4707 */
4708 /** @todo verify and test that mov, pop and lXs works the segment
4709 * register loading in the exact same way. */
4710 VBOXSTRICTRC rcStrict = IEM_CIMPL_CALL_2(iemCImpl_LoadSReg, iSegReg, uSel);
4711 if (rcStrict == VINF_SUCCESS)
4712 {
4713 switch (enmEffOpSize)
4714 {
4715 case IEMMODE_16BIT:
4716 *(uint16_t *)iemGRegRef(pVCpu, iGReg) = offSeg;
4717 break;
4718 case IEMMODE_32BIT:
4719 *(uint64_t *)iemGRegRef(pVCpu, iGReg) = offSeg;
4720 break;
4721 case IEMMODE_64BIT:
4722 *(uint64_t *)iemGRegRef(pVCpu, iGReg) = offSeg;
4723 break;
4724 IEM_NOT_REACHED_DEFAULT_CASE_RET();
4725 }
4726 }
4727
4728 return rcStrict;
4729}
4730
4731
4732/**
4733 * Helper for VERR, VERW, LAR, and LSL and loads the descriptor into memory.
4734 *
4735 * @retval VINF_SUCCESS on success.
4736 * @retval VINF_IEM_SELECTOR_NOT_OK if the selector isn't ok.
4737 * @retval iemMemFetchSysU64 return value.
4738 *
4739 * @param pVCpu The cross context virtual CPU structure of the calling thread.
4740 * @param uSel The selector value.
4741 * @param fAllowSysDesc Whether system descriptors are OK or not.
4742 * @param pDesc Where to return the descriptor on success.
4743 */
4744static VBOXSTRICTRC iemCImpl_LoadDescHelper(PVMCPUCC pVCpu, uint16_t uSel, bool fAllowSysDesc, PIEMSELDESC pDesc)
4745{
4746 pDesc->Long.au64[0] = 0;
4747 pDesc->Long.au64[1] = 0;
4748
4749 if (!(uSel & X86_SEL_MASK_OFF_RPL)) /** @todo test this on 64-bit. */
4750 return VINF_IEM_SELECTOR_NOT_OK;
4751
4752 /* Within the table limits? */
4753 RTGCPTR GCPtrBase;
4754 if (uSel & X86_SEL_LDT)
4755 {
4756 IEM_CTX_IMPORT_RET(pVCpu, CPUMCTX_EXTRN_LDTR);
4757 if ( !pVCpu->cpum.GstCtx.ldtr.Attr.n.u1Present
4758 || (uSel | X86_SEL_RPL_LDT) > pVCpu->cpum.GstCtx.ldtr.u32Limit )
4759 return VINF_IEM_SELECTOR_NOT_OK;
4760 GCPtrBase = pVCpu->cpum.GstCtx.ldtr.u64Base;
4761 }
4762 else
4763 {
4764 IEM_CTX_IMPORT_RET(pVCpu, CPUMCTX_EXTRN_GDTR);
4765 if ((uSel | X86_SEL_RPL_LDT) > pVCpu->cpum.GstCtx.gdtr.cbGdt)
4766 return VINF_IEM_SELECTOR_NOT_OK;
4767 GCPtrBase = pVCpu->cpum.GstCtx.gdtr.pGdt;
4768 }
4769
4770 /* Fetch the descriptor. */
4771 VBOXSTRICTRC rcStrict = iemMemFetchSysU64(pVCpu, &pDesc->Legacy.u, UINT8_MAX, GCPtrBase + (uSel & X86_SEL_MASK));
4772 if (rcStrict != VINF_SUCCESS)
4773 return rcStrict;
4774 if (!pDesc->Legacy.Gen.u1DescType)
4775 {
4776 if (!fAllowSysDesc)
4777 return VINF_IEM_SELECTOR_NOT_OK;
4778 if (CPUMIsGuestInLongModeEx(IEM_GET_CTX(pVCpu)))
4779 {
4780 rcStrict = iemMemFetchSysU64(pVCpu, &pDesc->Long.au64[1], UINT8_MAX, GCPtrBase + (uSel & X86_SEL_MASK) + 8);
4781 if (rcStrict != VINF_SUCCESS)
4782 return rcStrict;
4783 }
4784
4785 }
4786
4787 return VINF_SUCCESS;
4788}
4789
4790
4791/**
4792 * Implements verr (fWrite = false) and verw (fWrite = true).
4793 */
4794IEM_CIMPL_DEF_2(iemCImpl_VerX, uint16_t, uSel, bool, fWrite)
4795{
4796 Assert(!IEM_IS_REAL_OR_V86_MODE(pVCpu));
4797
4798 /** @todo figure whether the accessed bit is set or not. */
4799
4800 bool fAccessible = true;
4801 IEMSELDESC Desc;
4802 VBOXSTRICTRC rcStrict = iemCImpl_LoadDescHelper(pVCpu, uSel, false /*fAllowSysDesc*/, &Desc);
4803 if (rcStrict == VINF_SUCCESS)
4804 {
4805 /* Check the descriptor, order doesn't matter much here. */
4806 if ( !Desc.Legacy.Gen.u1DescType
4807 || !Desc.Legacy.Gen.u1Present)
4808 fAccessible = false;
4809 else
4810 {
4811 if ( fWrite
4812 ? (Desc.Legacy.Gen.u4Type & (X86_SEL_TYPE_CODE | X86_SEL_TYPE_WRITE)) != X86_SEL_TYPE_WRITE
4813 : (Desc.Legacy.Gen.u4Type & (X86_SEL_TYPE_CODE | X86_SEL_TYPE_READ)) == X86_SEL_TYPE_CODE)
4814 fAccessible = false;
4815
4816 /** @todo testcase for the conforming behavior. */
4817 if ( (Desc.Legacy.Gen.u4Type & (X86_SEL_TYPE_CODE | X86_SEL_TYPE_CONF))
4818 != (X86_SEL_TYPE_CODE | X86_SEL_TYPE_CONF))
4819 {
4820 if ((unsigned)(uSel & X86_SEL_RPL) > Desc.Legacy.Gen.u2Dpl)
4821 fAccessible = false;
4822 else if (pVCpu->iem.s.uCpl > Desc.Legacy.Gen.u2Dpl)
4823 fAccessible = false;
4824 }
4825 }
4826
4827 }
4828 else if (rcStrict == VINF_IEM_SELECTOR_NOT_OK)
4829 fAccessible = false;
4830 else
4831 return rcStrict;
4832
4833 /* commit */
4834 pVCpu->cpum.GstCtx.eflags.Bits.u1ZF = fAccessible;
4835
4836 iemRegAddToRipAndClearRF(pVCpu, cbInstr);
4837 return VINF_SUCCESS;
4838}
4839
4840
4841/**
4842 * Implements LAR and LSL with 64-bit operand size.
4843 *
4844 * @returns VINF_SUCCESS.
4845 * @param pu16Dst Pointer to the destination register.
4846 * @param uSel The selector to load details for.
4847 * @param fIsLar true = LAR, false = LSL.
4848 */
4849IEM_CIMPL_DEF_3(iemCImpl_LarLsl_u64, uint64_t *, pu64Dst, uint16_t, uSel, bool, fIsLar)
4850{
4851 Assert(!IEM_IS_REAL_OR_V86_MODE(pVCpu));
4852
4853 /** @todo figure whether the accessed bit is set or not. */
4854
4855 bool fDescOk = true;
4856 IEMSELDESC Desc;
4857 VBOXSTRICTRC rcStrict = iemCImpl_LoadDescHelper(pVCpu, uSel, true /*fAllowSysDesc*/, &Desc);
4858 if (rcStrict == VINF_SUCCESS)
4859 {
4860 /*
4861 * Check the descriptor type.
4862 */
4863 if (!Desc.Legacy.Gen.u1DescType)
4864 {
4865 if (CPUMIsGuestInLongModeEx(IEM_GET_CTX(pVCpu)))
4866 {
4867 if (Desc.Long.Gen.u5Zeros)
4868 fDescOk = false;
4869 else
4870 switch (Desc.Long.Gen.u4Type)
4871 {
4872 /** @todo Intel lists 0 as valid for LSL, verify whether that's correct */
4873 case AMD64_SEL_TYPE_SYS_TSS_AVAIL:
4874 case AMD64_SEL_TYPE_SYS_TSS_BUSY:
4875 case AMD64_SEL_TYPE_SYS_LDT: /** @todo Intel lists this as invalid for LAR, AMD and 32-bit does otherwise. */
4876 break;
4877 case AMD64_SEL_TYPE_SYS_CALL_GATE:
4878 fDescOk = fIsLar;
4879 break;
4880 default:
4881 fDescOk = false;
4882 break;
4883 }
4884 }
4885 else
4886 {
4887 switch (Desc.Long.Gen.u4Type)
4888 {
4889 case X86_SEL_TYPE_SYS_286_TSS_AVAIL:
4890 case X86_SEL_TYPE_SYS_286_TSS_BUSY:
4891 case X86_SEL_TYPE_SYS_386_TSS_AVAIL:
4892 case X86_SEL_TYPE_SYS_386_TSS_BUSY:
4893 case X86_SEL_TYPE_SYS_LDT:
4894 break;
4895 case X86_SEL_TYPE_SYS_286_CALL_GATE:
4896 case X86_SEL_TYPE_SYS_TASK_GATE:
4897 case X86_SEL_TYPE_SYS_386_CALL_GATE:
4898 fDescOk = fIsLar;
4899 break;
4900 default:
4901 fDescOk = false;
4902 break;
4903 }
4904 }
4905 }
4906 if (fDescOk)
4907 {
4908 /*
4909 * Check the RPL/DPL/CPL interaction..
4910 */
4911 /** @todo testcase for the conforming behavior. */
4912 if ( (Desc.Legacy.Gen.u4Type & (X86_SEL_TYPE_CODE | X86_SEL_TYPE_CONF)) != (X86_SEL_TYPE_CODE | X86_SEL_TYPE_CONF)
4913 || !Desc.Legacy.Gen.u1DescType)
4914 {
4915 if ((unsigned)(uSel & X86_SEL_RPL) > Desc.Legacy.Gen.u2Dpl)
4916 fDescOk = false;
4917 else if (pVCpu->iem.s.uCpl > Desc.Legacy.Gen.u2Dpl)
4918 fDescOk = false;
4919 }
4920 }
4921
4922 if (fDescOk)
4923 {
4924 /*
4925 * All fine, start committing the result.
4926 */
4927 if (fIsLar)
4928 *pu64Dst = Desc.Legacy.au32[1] & UINT32_C(0x00ffff00);
4929 else
4930 *pu64Dst = X86DESC_LIMIT_G(&Desc.Legacy);
4931 }
4932
4933 }
4934 else if (rcStrict == VINF_IEM_SELECTOR_NOT_OK)
4935 fDescOk = false;
4936 else
4937 return rcStrict;
4938
4939 /* commit flags value and advance rip. */
4940 pVCpu->cpum.GstCtx.eflags.Bits.u1ZF = fDescOk;
4941 iemRegAddToRipAndClearRF(pVCpu, cbInstr);
4942
4943 return VINF_SUCCESS;
4944}
4945
4946
4947/**
4948 * Implements LAR and LSL with 16-bit operand size.
4949 *
4950 * @returns VINF_SUCCESS.
4951 * @param pu16Dst Pointer to the destination register.
4952 * @param u16Sel The selector to load details for.
4953 * @param fIsLar true = LAR, false = LSL.
4954 */
4955IEM_CIMPL_DEF_3(iemCImpl_LarLsl_u16, uint16_t *, pu16Dst, uint16_t, uSel, bool, fIsLar)
4956{
4957 uint64_t u64TmpDst = *pu16Dst;
4958 IEM_CIMPL_CALL_3(iemCImpl_LarLsl_u64, &u64TmpDst, uSel, fIsLar);
4959 *pu16Dst = u64TmpDst;
4960 return VINF_SUCCESS;
4961}
4962
4963
4964/**
4965 * Implements lgdt.
4966 *
4967 * @param iEffSeg The segment of the new gdtr contents
4968 * @param GCPtrEffSrc The address of the new gdtr contents.
4969 * @param enmEffOpSize The effective operand size.
4970 */
4971IEM_CIMPL_DEF_3(iemCImpl_lgdt, uint8_t, iEffSeg, RTGCPTR, GCPtrEffSrc, IEMMODE, enmEffOpSize)
4972{
4973 if (pVCpu->iem.s.uCpl != 0)
4974 return iemRaiseGeneralProtectionFault0(pVCpu);
4975 Assert(!pVCpu->cpum.GstCtx.eflags.Bits.u1VM);
4976
4977 if ( IEM_VMX_IS_NON_ROOT_MODE(pVCpu)
4978 && IEM_VMX_IS_PROCCTLS2_SET(pVCpu, VMX_PROC_CTLS2_DESC_TABLE_EXIT))
4979 {
4980 Log(("lgdt: Guest intercept -> VM-exit\n"));
4981 IEM_VMX_VMEXIT_INSTR_NEEDS_INFO_RET(pVCpu, VMX_EXIT_GDTR_IDTR_ACCESS, VMXINSTRID_LGDT, cbInstr);
4982 }
4983
4984 if (IEM_SVM_IS_CTRL_INTERCEPT_SET(pVCpu, SVM_CTRL_INTERCEPT_GDTR_WRITES))
4985 {
4986 Log(("lgdt: Guest intercept -> #VMEXIT\n"));
4987 IEM_SVM_UPDATE_NRIP(pVCpu);
4988 IEM_SVM_VMEXIT_RET(pVCpu, SVM_EXIT_GDTR_WRITE, 0 /* uExitInfo1 */, 0 /* uExitInfo2 */);
4989 }
4990
4991 /*
4992 * Fetch the limit and base address.
4993 */
4994 uint16_t cbLimit;
4995 RTGCPTR GCPtrBase;
4996 VBOXSTRICTRC rcStrict = iemMemFetchDataXdtr(pVCpu, &cbLimit, &GCPtrBase, iEffSeg, GCPtrEffSrc, enmEffOpSize);
4997 if (rcStrict == VINF_SUCCESS)
4998 {
4999 if ( pVCpu->iem.s.enmCpuMode != IEMMODE_64BIT
5000 || X86_IS_CANONICAL(GCPtrBase))
5001 {
5002 rcStrict = CPUMSetGuestGDTR(pVCpu, GCPtrBase, cbLimit);
5003 if (rcStrict == VINF_SUCCESS)
5004 iemRegAddToRipAndClearRF(pVCpu, cbInstr);
5005 }
5006 else
5007 {
5008 Log(("iemCImpl_lgdt: Non-canonical base %04x:%RGv\n", cbLimit, GCPtrBase));
5009 return iemRaiseGeneralProtectionFault0(pVCpu);
5010 }
5011 }
5012 return rcStrict;
5013}
5014
5015
5016/**
5017 * Implements sgdt.
5018 *
5019 * @param iEffSeg The segment where to store the gdtr content.
5020 * @param GCPtrEffDst The address where to store the gdtr content.
5021 */
5022IEM_CIMPL_DEF_2(iemCImpl_sgdt, uint8_t, iEffSeg, RTGCPTR, GCPtrEffDst)
5023{
5024 /*
5025 * Join paths with sidt.
5026 * Note! No CPL or V8086 checks here, it's a really sad story, ask Intel if
5027 * you really must know.
5028 */
5029 if ( IEM_VMX_IS_NON_ROOT_MODE(pVCpu)
5030 && IEM_VMX_IS_PROCCTLS2_SET(pVCpu, VMX_PROC_CTLS2_DESC_TABLE_EXIT))
5031 {
5032 Log(("sgdt: Guest intercept -> VM-exit\n"));
5033 IEM_VMX_VMEXIT_INSTR_NEEDS_INFO_RET(pVCpu, VMX_EXIT_GDTR_IDTR_ACCESS, VMXINSTRID_SGDT, cbInstr);
5034 }
5035
5036 if (IEM_SVM_IS_CTRL_INTERCEPT_SET(pVCpu, SVM_CTRL_INTERCEPT_GDTR_READS))
5037 {
5038 Log(("sgdt: Guest intercept -> #VMEXIT\n"));
5039 IEM_SVM_UPDATE_NRIP(pVCpu);
5040 IEM_SVM_VMEXIT_RET(pVCpu, SVM_EXIT_GDTR_READ, 0 /* uExitInfo1 */, 0 /* uExitInfo2 */);
5041 }
5042
5043 IEM_CTX_IMPORT_RET(pVCpu, CPUMCTX_EXTRN_GDTR);
5044 VBOXSTRICTRC rcStrict = iemMemStoreDataXdtr(pVCpu, pVCpu->cpum.GstCtx.gdtr.cbGdt, pVCpu->cpum.GstCtx.gdtr.pGdt, iEffSeg, GCPtrEffDst);
5045 if (rcStrict == VINF_SUCCESS)
5046 iemRegAddToRipAndClearRF(pVCpu, cbInstr);
5047 return rcStrict;
5048}
5049
5050
5051/**
5052 * Implements lidt.
5053 *
5054 * @param iEffSeg The segment of the new idtr contents
5055 * @param GCPtrEffSrc The address of the new idtr contents.
5056 * @param enmEffOpSize The effective operand size.
5057 */
5058IEM_CIMPL_DEF_3(iemCImpl_lidt, uint8_t, iEffSeg, RTGCPTR, GCPtrEffSrc, IEMMODE, enmEffOpSize)
5059{
5060 if (pVCpu->iem.s.uCpl != 0)
5061 return iemRaiseGeneralProtectionFault0(pVCpu);
5062 Assert(!pVCpu->cpum.GstCtx.eflags.Bits.u1VM);
5063
5064 if (IEM_SVM_IS_CTRL_INTERCEPT_SET(pVCpu, SVM_CTRL_INTERCEPT_IDTR_WRITES))
5065 {
5066 Log(("lidt: Guest intercept -> #VMEXIT\n"));
5067 IEM_SVM_UPDATE_NRIP(pVCpu);
5068 IEM_SVM_VMEXIT_RET(pVCpu, SVM_EXIT_IDTR_WRITE, 0 /* uExitInfo1 */, 0 /* uExitInfo2 */);
5069 }
5070
5071 /*
5072 * Fetch the limit and base address.
5073 */
5074 uint16_t cbLimit;
5075 RTGCPTR GCPtrBase;
5076 VBOXSTRICTRC rcStrict = iemMemFetchDataXdtr(pVCpu, &cbLimit, &GCPtrBase, iEffSeg, GCPtrEffSrc, enmEffOpSize);
5077 if (rcStrict == VINF_SUCCESS)
5078 {
5079 if ( pVCpu->iem.s.enmCpuMode != IEMMODE_64BIT
5080 || X86_IS_CANONICAL(GCPtrBase))
5081 {
5082 CPUMSetGuestIDTR(pVCpu, GCPtrBase, cbLimit);
5083 iemRegAddToRipAndClearRF(pVCpu, cbInstr);
5084 }
5085 else
5086 {
5087 Log(("iemCImpl_lidt: Non-canonical base %04x:%RGv\n", cbLimit, GCPtrBase));
5088 return iemRaiseGeneralProtectionFault0(pVCpu);
5089 }
5090 }
5091 return rcStrict;
5092}
5093
5094
5095/**
5096 * Implements sidt.
5097 *
5098 * @param iEffSeg The segment where to store the idtr content.
5099 * @param GCPtrEffDst The address where to store the idtr content.
5100 */
5101IEM_CIMPL_DEF_2(iemCImpl_sidt, uint8_t, iEffSeg, RTGCPTR, GCPtrEffDst)
5102{
5103 /*
5104 * Join paths with sgdt.
5105 * Note! No CPL or V8086 checks here, it's a really sad story, ask Intel if
5106 * you really must know.
5107 */
5108 if (IEM_SVM_IS_CTRL_INTERCEPT_SET(pVCpu, SVM_CTRL_INTERCEPT_IDTR_READS))
5109 {
5110 Log(("sidt: Guest intercept -> #VMEXIT\n"));
5111 IEM_SVM_UPDATE_NRIP(pVCpu);
5112 IEM_SVM_VMEXIT_RET(pVCpu, SVM_EXIT_IDTR_READ, 0 /* uExitInfo1 */, 0 /* uExitInfo2 */);
5113 }
5114
5115 IEM_CTX_IMPORT_RET(pVCpu, CPUMCTX_EXTRN_IDTR);
5116 VBOXSTRICTRC rcStrict = iemMemStoreDataXdtr(pVCpu, pVCpu->cpum.GstCtx.idtr.cbIdt, pVCpu->cpum.GstCtx.idtr.pIdt, iEffSeg, GCPtrEffDst);
5117 if (rcStrict == VINF_SUCCESS)
5118 iemRegAddToRipAndClearRF(pVCpu, cbInstr);
5119 return rcStrict;
5120}
5121
5122
5123/**
5124 * Implements lldt.
5125 *
5126 * @param uNewLdt The new LDT selector value.
5127 */
5128IEM_CIMPL_DEF_1(iemCImpl_lldt, uint16_t, uNewLdt)
5129{
5130 /*
5131 * Check preconditions.
5132 */
5133 if (IEM_IS_REAL_OR_V86_MODE(pVCpu))
5134 {
5135 Log(("lldt %04x - real or v8086 mode -> #GP(0)\n", uNewLdt));
5136 return iemRaiseUndefinedOpcode(pVCpu);
5137 }
5138 if (pVCpu->iem.s.uCpl != 0)
5139 {
5140 Log(("lldt %04x - CPL is %d -> #GP(0)\n", uNewLdt, pVCpu->iem.s.uCpl));
5141 return iemRaiseGeneralProtectionFault0(pVCpu);
5142 }
5143 /* Nested-guest VMX intercept. */
5144 if ( IEM_VMX_IS_NON_ROOT_MODE(pVCpu)
5145 && IEM_VMX_IS_PROCCTLS2_SET(pVCpu, VMX_PROC_CTLS2_DESC_TABLE_EXIT))
5146 {
5147 Log(("lldt: Guest intercept -> VM-exit\n"));
5148 IEM_VMX_VMEXIT_INSTR_NEEDS_INFO_RET(pVCpu, VMX_EXIT_LDTR_TR_ACCESS, VMXINSTRID_LLDT, cbInstr);
5149 }
5150 if (uNewLdt & X86_SEL_LDT)
5151 {
5152 Log(("lldt %04x - LDT selector -> #GP\n", uNewLdt));
5153 return iemRaiseGeneralProtectionFaultBySelector(pVCpu, uNewLdt);
5154 }
5155
5156 /*
5157 * Now, loading a NULL selector is easy.
5158 */
5159 if (!(uNewLdt & X86_SEL_MASK_OFF_RPL))
5160 {
5161 /* Nested-guest SVM intercept. */
5162 if (IEM_SVM_IS_CTRL_INTERCEPT_SET(pVCpu, SVM_CTRL_INTERCEPT_LDTR_WRITES))
5163 {
5164 Log(("lldt: Guest intercept -> #VMEXIT\n"));
5165 IEM_SVM_UPDATE_NRIP(pVCpu);
5166 IEM_SVM_VMEXIT_RET(pVCpu, SVM_EXIT_LDTR_WRITE, 0 /* uExitInfo1 */, 0 /* uExitInfo2 */);
5167 }
5168
5169 Log(("lldt %04x: Loading NULL selector.\n", uNewLdt));
5170 pVCpu->cpum.GstCtx.fExtrn &= ~CPUMCTX_EXTRN_LDTR;
5171 CPUMSetGuestLDTR(pVCpu, uNewLdt);
5172 pVCpu->cpum.GstCtx.ldtr.ValidSel = uNewLdt;
5173 pVCpu->cpum.GstCtx.ldtr.fFlags = CPUMSELREG_FLAGS_VALID;
5174 if (IEM_IS_GUEST_CPU_AMD(pVCpu))
5175 {
5176 /* AMD-V seems to leave the base and limit alone. */
5177 pVCpu->cpum.GstCtx.ldtr.Attr.u = X86DESCATTR_UNUSABLE;
5178 }
5179 else
5180 {
5181 /* VT-x (Intel 3960x) seems to be doing the following. */
5182 pVCpu->cpum.GstCtx.ldtr.Attr.u = X86DESCATTR_UNUSABLE | X86DESCATTR_G | X86DESCATTR_D;
5183 pVCpu->cpum.GstCtx.ldtr.u64Base = 0;
5184 pVCpu->cpum.GstCtx.ldtr.u32Limit = UINT32_MAX;
5185 }
5186
5187 iemRegAddToRipAndClearRF(pVCpu, cbInstr);
5188 return VINF_SUCCESS;
5189 }
5190
5191 /*
5192 * Read the descriptor.
5193 */
5194 IEM_CTX_IMPORT_RET(pVCpu, CPUMCTX_EXTRN_LDTR | CPUMCTX_EXTRN_GDTR);
5195 IEMSELDESC Desc;
5196 VBOXSTRICTRC rcStrict = iemMemFetchSelDesc(pVCpu, &Desc, uNewLdt, X86_XCPT_GP); /** @todo Correct exception? */
5197 if (rcStrict != VINF_SUCCESS)
5198 return rcStrict;
5199
5200 /* Check GPs first. */
5201 if (Desc.Legacy.Gen.u1DescType)
5202 {
5203 Log(("lldt %#x - not system selector (type %x) -> #GP\n", uNewLdt, Desc.Legacy.Gen.u4Type));
5204 return iemRaiseGeneralProtectionFault(pVCpu, uNewLdt & X86_SEL_MASK_OFF_RPL);
5205 }
5206 if (Desc.Legacy.Gen.u4Type != X86_SEL_TYPE_SYS_LDT)
5207 {
5208 Log(("lldt %#x - not LDT selector (type %x) -> #GP\n", uNewLdt, Desc.Legacy.Gen.u4Type));
5209 return iemRaiseGeneralProtectionFault(pVCpu, uNewLdt & X86_SEL_MASK_OFF_RPL);
5210 }
5211 uint64_t u64Base;
5212 if (!IEM_IS_LONG_MODE(pVCpu))
5213 u64Base = X86DESC_BASE(&Desc.Legacy);
5214 else
5215 {
5216 if (Desc.Long.Gen.u5Zeros)
5217 {
5218 Log(("lldt %#x - u5Zeros=%#x -> #GP\n", uNewLdt, Desc.Long.Gen.u5Zeros));
5219 return iemRaiseGeneralProtectionFault(pVCpu, uNewLdt & X86_SEL_MASK_OFF_RPL);
5220 }
5221
5222 u64Base = X86DESC64_BASE(&Desc.Long);
5223 if (!IEM_IS_CANONICAL(u64Base))
5224 {
5225 Log(("lldt %#x - non-canonical base address %#llx -> #GP\n", uNewLdt, u64Base));
5226 return iemRaiseGeneralProtectionFault(pVCpu, uNewLdt & X86_SEL_MASK_OFF_RPL);
5227 }
5228 }
5229
5230 /* NP */
5231 if (!Desc.Legacy.Gen.u1Present)
5232 {
5233 Log(("lldt %#x - segment not present -> #NP\n", uNewLdt));
5234 return iemRaiseSelectorNotPresentBySelector(pVCpu, uNewLdt);
5235 }
5236
5237 /* Nested-guest SVM intercept. */
5238 if (IEM_SVM_IS_CTRL_INTERCEPT_SET(pVCpu, SVM_CTRL_INTERCEPT_LDTR_WRITES))
5239 {
5240 Log(("lldt: Guest intercept -> #VMEXIT\n"));
5241 IEM_SVM_UPDATE_NRIP(pVCpu);
5242 IEM_SVM_VMEXIT_RET(pVCpu, SVM_EXIT_LDTR_WRITE, 0 /* uExitInfo1 */, 0 /* uExitInfo2 */);
5243 }
5244
5245 /*
5246 * It checks out alright, update the registers.
5247 */
5248/** @todo check if the actual value is loaded or if the RPL is dropped */
5249 CPUMSetGuestLDTR(pVCpu, uNewLdt & X86_SEL_MASK_OFF_RPL);
5250 pVCpu->cpum.GstCtx.ldtr.ValidSel = uNewLdt & X86_SEL_MASK_OFF_RPL;
5251 pVCpu->cpum.GstCtx.ldtr.fFlags = CPUMSELREG_FLAGS_VALID;
5252 pVCpu->cpum.GstCtx.ldtr.Attr.u = X86DESC_GET_HID_ATTR(&Desc.Legacy);
5253 pVCpu->cpum.GstCtx.ldtr.u32Limit = X86DESC_LIMIT_G(&Desc.Legacy);
5254 pVCpu->cpum.GstCtx.ldtr.u64Base = u64Base;
5255
5256 iemRegAddToRipAndClearRF(pVCpu, cbInstr);
5257 return VINF_SUCCESS;
5258}
5259
5260
5261/**
5262 * Implements sldt GReg
5263 *
5264 * @param iGReg The general register to store the CRx value in.
5265 * @param enmEffOpSize The operand size.
5266 */
5267IEM_CIMPL_DEF_2(iemCImpl_sldt_reg, uint8_t, iGReg, uint8_t, enmEffOpSize)
5268{
5269 if ( IEM_VMX_IS_NON_ROOT_MODE(pVCpu)
5270 && IEM_VMX_IS_PROCCTLS2_SET(pVCpu, VMX_PROC_CTLS2_DESC_TABLE_EXIT))
5271 {
5272 Log(("sldt: Guest intercept -> VM-exit\n"));
5273 IEM_VMX_VMEXIT_INSTR_NEEDS_INFO_RET(pVCpu, VMX_EXIT_LDTR_TR_ACCESS, VMXINSTRID_SLDT, cbInstr);
5274 }
5275
5276 IEM_SVM_CHECK_INSTR_INTERCEPT(pVCpu, SVM_CTRL_INTERCEPT_LDTR_READS, SVM_EXIT_LDTR_READ, 0, 0);
5277
5278 IEM_CTX_IMPORT_RET(pVCpu, CPUMCTX_EXTRN_LDTR);
5279 switch (enmEffOpSize)
5280 {
5281 case IEMMODE_16BIT: *(uint16_t *)iemGRegRef(pVCpu, iGReg) = pVCpu->cpum.GstCtx.ldtr.Sel; break;
5282 case IEMMODE_32BIT: *(uint64_t *)iemGRegRef(pVCpu, iGReg) = pVCpu->cpum.GstCtx.ldtr.Sel; break;
5283 case IEMMODE_64BIT: *(uint64_t *)iemGRegRef(pVCpu, iGReg) = pVCpu->cpum.GstCtx.ldtr.Sel; break;
5284 IEM_NOT_REACHED_DEFAULT_CASE_RET();
5285 }
5286 iemRegAddToRipAndClearRF(pVCpu, cbInstr);
5287 return VINF_SUCCESS;
5288}
5289
5290
5291/**
5292 * Implements sldt mem.
5293 *
5294 * @param iGReg The general register to store the CRx value in.
5295 * @param iEffSeg The effective segment register to use with @a GCPtrMem.
5296 * @param GCPtrEffDst Where to store the 16-bit CR0 value.
5297 */
5298IEM_CIMPL_DEF_2(iemCImpl_sldt_mem, uint8_t, iEffSeg, RTGCPTR, GCPtrEffDst)
5299{
5300 IEM_SVM_CHECK_INSTR_INTERCEPT(pVCpu, SVM_CTRL_INTERCEPT_LDTR_READS, SVM_EXIT_LDTR_READ, 0, 0);
5301
5302 IEM_CTX_IMPORT_RET(pVCpu, CPUMCTX_EXTRN_LDTR);
5303 VBOXSTRICTRC rcStrict = iemMemStoreDataU16(pVCpu, iEffSeg, GCPtrEffDst, pVCpu->cpum.GstCtx.ldtr.Sel);
5304 if (rcStrict == VINF_SUCCESS)
5305 iemRegAddToRipAndClearRF(pVCpu, cbInstr);
5306 return rcStrict;
5307}
5308
5309
5310/**
5311 * Implements ltr.
5312 *
5313 * @param uNewTr The new TSS selector value.
5314 */
5315IEM_CIMPL_DEF_1(iemCImpl_ltr, uint16_t, uNewTr)
5316{
5317 /*
5318 * Check preconditions.
5319 */
5320 if (IEM_IS_REAL_OR_V86_MODE(pVCpu))
5321 {
5322 Log(("ltr %04x - real or v8086 mode -> #GP(0)\n", uNewTr));
5323 return iemRaiseUndefinedOpcode(pVCpu);
5324 }
5325 if (pVCpu->iem.s.uCpl != 0)
5326 {
5327 Log(("ltr %04x - CPL is %d -> #GP(0)\n", uNewTr, pVCpu->iem.s.uCpl));
5328 return iemRaiseGeneralProtectionFault0(pVCpu);
5329 }
5330 if ( IEM_VMX_IS_NON_ROOT_MODE(pVCpu)
5331 && IEM_VMX_IS_PROCCTLS2_SET(pVCpu, VMX_PROC_CTLS2_DESC_TABLE_EXIT))
5332 {
5333 Log(("ltr: Guest intercept -> VM-exit\n"));
5334 IEM_VMX_VMEXIT_INSTR_NEEDS_INFO_RET(pVCpu, VMX_EXIT_LDTR_TR_ACCESS, VMXINSTRID_LTR, cbInstr);
5335 }
5336 if (uNewTr & X86_SEL_LDT)
5337 {
5338 Log(("ltr %04x - LDT selector -> #GP\n", uNewTr));
5339 return iemRaiseGeneralProtectionFaultBySelector(pVCpu, uNewTr);
5340 }
5341 if (!(uNewTr & X86_SEL_MASK_OFF_RPL))
5342 {
5343 Log(("ltr %04x - NULL selector -> #GP(0)\n", uNewTr));
5344 return iemRaiseGeneralProtectionFault0(pVCpu);
5345 }
5346 if (IEM_SVM_IS_CTRL_INTERCEPT_SET(pVCpu, SVM_CTRL_INTERCEPT_TR_WRITES))
5347 {
5348 Log(("ltr: Guest intercept -> #VMEXIT\n"));
5349 IEM_SVM_UPDATE_NRIP(pVCpu);
5350 IEM_SVM_VMEXIT_RET(pVCpu, SVM_EXIT_TR_WRITE, 0 /* uExitInfo1 */, 0 /* uExitInfo2 */);
5351 }
5352
5353 /*
5354 * Read the descriptor.
5355 */
5356 IEM_CTX_IMPORT_RET(pVCpu, CPUMCTX_EXTRN_LDTR | CPUMCTX_EXTRN_GDTR | CPUMCTX_EXTRN_TR);
5357 IEMSELDESC Desc;
5358 VBOXSTRICTRC rcStrict = iemMemFetchSelDesc(pVCpu, &Desc, uNewTr, X86_XCPT_GP); /** @todo Correct exception? */
5359 if (rcStrict != VINF_SUCCESS)
5360 return rcStrict;
5361
5362 /* Check GPs first. */
5363 if (Desc.Legacy.Gen.u1DescType)
5364 {
5365 Log(("ltr %#x - not system selector (type %x) -> #GP\n", uNewTr, Desc.Legacy.Gen.u4Type));
5366 return iemRaiseGeneralProtectionFault(pVCpu, uNewTr & X86_SEL_MASK_OFF_RPL);
5367 }
5368 if ( Desc.Legacy.Gen.u4Type != X86_SEL_TYPE_SYS_386_TSS_AVAIL /* same as AMD64_SEL_TYPE_SYS_TSS_AVAIL */
5369 && ( Desc.Legacy.Gen.u4Type != X86_SEL_TYPE_SYS_286_TSS_AVAIL
5370 || IEM_IS_LONG_MODE(pVCpu)) )
5371 {
5372 Log(("ltr %#x - not an available TSS selector (type %x) -> #GP\n", uNewTr, Desc.Legacy.Gen.u4Type));
5373 return iemRaiseGeneralProtectionFault(pVCpu, uNewTr & X86_SEL_MASK_OFF_RPL);
5374 }
5375 uint64_t u64Base;
5376 if (!IEM_IS_LONG_MODE(pVCpu))
5377 u64Base = X86DESC_BASE(&Desc.Legacy);
5378 else
5379 {
5380 if (Desc.Long.Gen.u5Zeros)
5381 {
5382 Log(("ltr %#x - u5Zeros=%#x -> #GP\n", uNewTr, Desc.Long.Gen.u5Zeros));
5383 return iemRaiseGeneralProtectionFault(pVCpu, uNewTr & X86_SEL_MASK_OFF_RPL);
5384 }
5385
5386 u64Base = X86DESC64_BASE(&Desc.Long);
5387 if (!IEM_IS_CANONICAL(u64Base))
5388 {
5389 Log(("ltr %#x - non-canonical base address %#llx -> #GP\n", uNewTr, u64Base));
5390 return iemRaiseGeneralProtectionFault(pVCpu, uNewTr & X86_SEL_MASK_OFF_RPL);
5391 }
5392 }
5393
5394 /* NP */
5395 if (!Desc.Legacy.Gen.u1Present)
5396 {
5397 Log(("ltr %#x - segment not present -> #NP\n", uNewTr));
5398 return iemRaiseSelectorNotPresentBySelector(pVCpu, uNewTr);
5399 }
5400
5401 /*
5402 * Set it busy.
5403 * Note! Intel says this should lock down the whole descriptor, but we'll
5404 * restrict our selves to 32-bit for now due to lack of inline
5405 * assembly and such.
5406 */
5407 void *pvDesc;
5408 rcStrict = iemMemMap(pVCpu, &pvDesc, 8, UINT8_MAX, pVCpu->cpum.GstCtx.gdtr.pGdt + (uNewTr & X86_SEL_MASK_OFF_RPL), IEM_ACCESS_DATA_RW);
5409 if (rcStrict != VINF_SUCCESS)
5410 return rcStrict;
5411 switch ((uintptr_t)pvDesc & 3)
5412 {
5413 case 0: ASMAtomicBitSet(pvDesc, 40 + 1); break;
5414 case 1: ASMAtomicBitSet((uint8_t *)pvDesc + 3, 40 + 1 - 24); break;
5415 case 2: ASMAtomicBitSet((uint8_t *)pvDesc + 2, 40 + 1 - 16); break;
5416 case 3: ASMAtomicBitSet((uint8_t *)pvDesc + 1, 40 + 1 - 8); break;
5417 }
5418 rcStrict = iemMemCommitAndUnmap(pVCpu, pvDesc, IEM_ACCESS_DATA_RW);
5419 if (rcStrict != VINF_SUCCESS)
5420 return rcStrict;
5421 Desc.Legacy.Gen.u4Type |= X86_SEL_TYPE_SYS_TSS_BUSY_MASK;
5422
5423 /*
5424 * It checks out alright, update the registers.
5425 */
5426/** @todo check if the actual value is loaded or if the RPL is dropped */
5427 CPUMSetGuestTR(pVCpu, uNewTr & X86_SEL_MASK_OFF_RPL);
5428 pVCpu->cpum.GstCtx.tr.ValidSel = uNewTr & X86_SEL_MASK_OFF_RPL;
5429 pVCpu->cpum.GstCtx.tr.fFlags = CPUMSELREG_FLAGS_VALID;
5430 pVCpu->cpum.GstCtx.tr.Attr.u = X86DESC_GET_HID_ATTR(&Desc.Legacy);
5431 pVCpu->cpum.GstCtx.tr.u32Limit = X86DESC_LIMIT_G(&Desc.Legacy);
5432 pVCpu->cpum.GstCtx.tr.u64Base = u64Base;
5433
5434 iemRegAddToRipAndClearRF(pVCpu, cbInstr);
5435 return VINF_SUCCESS;
5436}
5437
5438
5439/**
5440 * Implements str GReg
5441 *
5442 * @param iGReg The general register to store the CRx value in.
5443 * @param enmEffOpSize The operand size.
5444 */
5445IEM_CIMPL_DEF_2(iemCImpl_str_reg, uint8_t, iGReg, uint8_t, enmEffOpSize)
5446{
5447 if ( IEM_VMX_IS_NON_ROOT_MODE(pVCpu)
5448 && IEM_VMX_IS_PROCCTLS2_SET(pVCpu, VMX_PROC_CTLS2_DESC_TABLE_EXIT))
5449 {
5450 Log(("str_reg: Guest intercept -> VM-exit\n"));
5451 IEM_VMX_VMEXIT_INSTR_NEEDS_INFO_RET(pVCpu, VMX_EXIT_LDTR_TR_ACCESS, VMXINSTRID_STR, cbInstr);
5452 }
5453
5454 IEM_SVM_CHECK_INSTR_INTERCEPT(pVCpu, SVM_CTRL_INTERCEPT_TR_READS, SVM_EXIT_TR_READ, 0, 0);
5455
5456 IEM_CTX_IMPORT_RET(pVCpu, CPUMCTX_EXTRN_TR);
5457 switch (enmEffOpSize)
5458 {
5459 case IEMMODE_16BIT: *(uint16_t *)iemGRegRef(pVCpu, iGReg) = pVCpu->cpum.GstCtx.tr.Sel; break;
5460 case IEMMODE_32BIT: *(uint64_t *)iemGRegRef(pVCpu, iGReg) = pVCpu->cpum.GstCtx.tr.Sel; break;
5461 case IEMMODE_64BIT: *(uint64_t *)iemGRegRef(pVCpu, iGReg) = pVCpu->cpum.GstCtx.tr.Sel; break;
5462 IEM_NOT_REACHED_DEFAULT_CASE_RET();
5463 }
5464 iemRegAddToRipAndClearRF(pVCpu, cbInstr);
5465 return VINF_SUCCESS;
5466}
5467
5468
5469/**
5470 * Implements str mem.
5471 *
5472 * @param iGReg The general register to store the CRx value in.
5473 * @param iEffSeg The effective segment register to use with @a GCPtrMem.
5474 * @param GCPtrEffDst Where to store the 16-bit CR0 value.
5475 */
5476IEM_CIMPL_DEF_2(iemCImpl_str_mem, uint8_t, iEffSeg, RTGCPTR, GCPtrEffDst)
5477{
5478 if ( IEM_VMX_IS_NON_ROOT_MODE(pVCpu)
5479 && IEM_VMX_IS_PROCCTLS2_SET(pVCpu, VMX_PROC_CTLS2_DESC_TABLE_EXIT))
5480 {
5481 Log(("str_mem: Guest intercept -> VM-exit\n"));
5482 IEM_VMX_VMEXIT_INSTR_NEEDS_INFO_RET(pVCpu, VMX_EXIT_LDTR_TR_ACCESS, VMXINSTRID_STR, cbInstr);
5483 }
5484
5485 IEM_SVM_CHECK_INSTR_INTERCEPT(pVCpu, SVM_CTRL_INTERCEPT_TR_READS, SVM_EXIT_TR_READ, 0, 0);
5486
5487 IEM_CTX_IMPORT_RET(pVCpu, CPUMCTX_EXTRN_TR);
5488 VBOXSTRICTRC rcStrict = iemMemStoreDataU16(pVCpu, iEffSeg, GCPtrEffDst, pVCpu->cpum.GstCtx.tr.Sel);
5489 if (rcStrict == VINF_SUCCESS)
5490 iemRegAddToRipAndClearRF(pVCpu, cbInstr);
5491 return rcStrict;
5492}
5493
5494
5495/**
5496 * Implements mov GReg,CRx.
5497 *
5498 * @param iGReg The general register to store the CRx value in.
5499 * @param iCrReg The CRx register to read (valid).
5500 */
5501IEM_CIMPL_DEF_2(iemCImpl_mov_Rd_Cd, uint8_t, iGReg, uint8_t, iCrReg)
5502{
5503 if (pVCpu->iem.s.uCpl != 0)
5504 return iemRaiseGeneralProtectionFault0(pVCpu);
5505 Assert(!pVCpu->cpum.GstCtx.eflags.Bits.u1VM);
5506
5507 if (IEM_SVM_IS_READ_CR_INTERCEPT_SET(pVCpu, iCrReg))
5508 {
5509 Log(("iemCImpl_mov_Rd_Cd: Guest intercept CR%u -> #VMEXIT\n", iCrReg));
5510 IEM_SVM_UPDATE_NRIP(pVCpu);
5511 IEM_SVM_CRX_VMEXIT_RET(pVCpu, SVM_EXIT_READ_CR0 + iCrReg, IEMACCESSCRX_MOV_CRX, iGReg);
5512 }
5513
5514 /* Read it. */
5515 uint64_t crX;
5516 switch (iCrReg)
5517 {
5518 case 0:
5519 IEM_CTX_ASSERT(pVCpu, CPUMCTX_EXTRN_CR0);
5520 crX = pVCpu->cpum.GstCtx.cr0;
5521 if (IEM_GET_TARGET_CPU(pVCpu) <= IEMTARGETCPU_386)
5522 crX |= UINT32_C(0x7fffffe0); /* All reserved CR0 flags are set on a 386, just like MSW on 286. */
5523 break;
5524 case 2:
5525 IEM_CTX_IMPORT_RET(pVCpu, CPUMCTX_EXTRN_CR2);
5526 crX = pVCpu->cpum.GstCtx.cr2;
5527 break;
5528 case 3:
5529 IEM_CTX_ASSERT(pVCpu, CPUMCTX_EXTRN_CR3);
5530 crX = pVCpu->cpum.GstCtx.cr3;
5531 break;
5532 case 4:
5533 IEM_CTX_ASSERT(pVCpu, CPUMCTX_EXTRN_CR4);
5534 crX = pVCpu->cpum.GstCtx.cr4;
5535 break;
5536 case 8:
5537 {
5538 IEM_CTX_ASSERT(pVCpu, CPUMCTX_EXTRN_APIC_TPR);
5539#ifdef VBOX_WITH_NESTED_HWVIRT_VMX
5540 if (IEM_VMX_IS_NON_ROOT_MODE(pVCpu))
5541 {
5542 VBOXSTRICTRC rcStrict = iemVmxVmexitInstrMovFromCr8(pVCpu, iGReg, cbInstr);
5543 if (rcStrict != VINF_VMX_INTERCEPT_NOT_ACTIVE)
5544 return rcStrict;
5545
5546 /*
5547 * If the Mov-from-CR8 doesn't cause a VM-exit, bits 7:4 of the VTPR is copied
5548 * to bits 0:3 of the destination operand. Bits 63:4 of the destination operand
5549 * are cleared.
5550 *
5551 * See Intel Spec. 29.3 "Virtualizing CR8-based TPR Accesses"
5552 */
5553 if (IEM_VMX_IS_PROCCTLS_SET(pVCpu, VMX_PROC_CTLS_USE_TPR_SHADOW))
5554 {
5555 uint32_t const uTpr = iemVmxVirtApicReadRaw32(pVCpu, XAPIC_OFF_TPR);
5556 crX = (uTpr >> 4) & 0xf;
5557 break;
5558 }
5559 }
5560#endif
5561#ifdef VBOX_WITH_NESTED_HWVIRT_SVM
5562 if (CPUMIsGuestInSvmNestedHwVirtMode(IEM_GET_CTX(pVCpu)))
5563 {
5564 PCSVMVMCBCTRL pVmcbCtrl = &pVCpu->cpum.GstCtx.hwvirt.svm.Vmcb.ctrl;
5565 if (CPUMIsGuestSvmVirtIntrMasking(pVCpu, IEM_GET_CTX(pVCpu)))
5566 {
5567 crX = pVmcbCtrl->IntCtrl.n.u8VTPR & 0xf;
5568 break;
5569 }
5570 }
5571#endif
5572 uint8_t uTpr;
5573 int rc = APICGetTpr(pVCpu, &uTpr, NULL, NULL);
5574 if (RT_SUCCESS(rc))
5575 crX = uTpr >> 4;
5576 else
5577 crX = 0;
5578 break;
5579 }
5580 IEM_NOT_REACHED_DEFAULT_CASE_RET(); /* call checks */
5581 }
5582
5583#ifdef VBOX_WITH_NESTED_HWVIRT_VMX
5584 if (IEM_VMX_IS_NON_ROOT_MODE(pVCpu))
5585 {
5586 switch (iCrReg)
5587 {
5588 /* CR0/CR4 reads are subject to masking when in VMX non-root mode. */
5589 case 0: crX = CPUMGetGuestVmxMaskedCr0(&pVCpu->cpum.GstCtx, pVCpu->cpum.GstCtx.hwvirt.vmx.Vmcs.u64Cr0Mask.u); break;
5590 case 4: crX = CPUMGetGuestVmxMaskedCr4(&pVCpu->cpum.GstCtx, pVCpu->cpum.GstCtx.hwvirt.vmx.Vmcs.u64Cr4Mask.u); break;
5591
5592 case 3:
5593 {
5594 VBOXSTRICTRC rcStrict = iemVmxVmexitInstrMovFromCr3(pVCpu, iGReg, cbInstr);
5595 if (rcStrict != VINF_VMX_INTERCEPT_NOT_ACTIVE)
5596 return rcStrict;
5597 break;
5598 }
5599 }
5600 }
5601#endif
5602
5603 /* Store it. */
5604 if (pVCpu->iem.s.enmCpuMode == IEMMODE_64BIT)
5605 *(uint64_t *)iemGRegRef(pVCpu, iGReg) = crX;
5606 else
5607 *(uint64_t *)iemGRegRef(pVCpu, iGReg) = (uint32_t)crX;
5608
5609 iemRegAddToRipAndClearRF(pVCpu, cbInstr);
5610 return VINF_SUCCESS;
5611}
5612
5613
5614/**
5615 * Implements smsw GReg.
5616 *
5617 * @param iGReg The general register to store the CRx value in.
5618 * @param enmEffOpSize The operand size.
5619 */
5620IEM_CIMPL_DEF_2(iemCImpl_smsw_reg, uint8_t, iGReg, uint8_t, enmEffOpSize)
5621{
5622 IEM_SVM_CHECK_READ_CR0_INTERCEPT(pVCpu, 0 /* uExitInfo1 */, 0 /* uExitInfo2 */);
5623
5624#ifdef VBOX_WITH_NESTED_HWVIRT_VMX
5625 uint64_t u64MaskedCr0;
5626 if (!IEM_VMX_IS_NON_ROOT_MODE(pVCpu))
5627 u64MaskedCr0 = pVCpu->cpum.GstCtx.cr0;
5628 else
5629 u64MaskedCr0 = CPUMGetGuestVmxMaskedCr0(&pVCpu->cpum.GstCtx, pVCpu->cpum.GstCtx.hwvirt.vmx.Vmcs.u64Cr0Mask.u);
5630 uint64_t const u64GuestCr0 = u64MaskedCr0;
5631#else
5632 uint64_t const u64GuestCr0 = pVCpu->cpum.GstCtx.cr0;
5633#endif
5634
5635 switch (enmEffOpSize)
5636 {
5637 case IEMMODE_16BIT:
5638 if (IEM_GET_TARGET_CPU(pVCpu) > IEMTARGETCPU_386)
5639 *(uint16_t *)iemGRegRef(pVCpu, iGReg) = (uint16_t)u64GuestCr0;
5640 else if (IEM_GET_TARGET_CPU(pVCpu) >= IEMTARGETCPU_386)
5641 *(uint16_t *)iemGRegRef(pVCpu, iGReg) = (uint16_t)u64GuestCr0 | 0xffe0;
5642 else
5643 *(uint16_t *)iemGRegRef(pVCpu, iGReg) = (uint16_t)u64GuestCr0 | 0xfff0;
5644 break;
5645
5646 case IEMMODE_32BIT:
5647 *(uint32_t *)iemGRegRef(pVCpu, iGReg) = (uint32_t)u64GuestCr0;
5648 break;
5649
5650 case IEMMODE_64BIT:
5651 *(uint64_t *)iemGRegRef(pVCpu, iGReg) = u64GuestCr0;
5652 break;
5653
5654 IEM_NOT_REACHED_DEFAULT_CASE_RET();
5655 }
5656
5657 iemRegAddToRipAndClearRF(pVCpu, cbInstr);
5658 return VINF_SUCCESS;
5659}
5660
5661
5662/**
5663 * Implements smsw mem.
5664 *
5665 * @param iGReg The general register to store the CR0 value in.
5666 * @param iEffSeg The effective segment register to use with @a GCPtrMem.
5667 * @param GCPtrEffDst Where to store the 16-bit CR0 value.
5668 */
5669IEM_CIMPL_DEF_2(iemCImpl_smsw_mem, uint8_t, iEffSeg, RTGCPTR, GCPtrEffDst)
5670{
5671 IEM_SVM_CHECK_READ_CR0_INTERCEPT(pVCpu, 0 /* uExitInfo1 */, 0 /* uExitInfo2 */);
5672
5673#ifdef VBOX_WITH_NESTED_HWVIRT_VMX
5674 uint64_t u64MaskedCr0;
5675 if (!IEM_VMX_IS_NON_ROOT_MODE(pVCpu))
5676 u64MaskedCr0 = pVCpu->cpum.GstCtx.cr0;
5677 else
5678 u64MaskedCr0 = CPUMGetGuestVmxMaskedCr0(&pVCpu->cpum.GstCtx, pVCpu->cpum.GstCtx.hwvirt.vmx.Vmcs.u64Cr0Mask.u);
5679 uint64_t const u64GuestCr0 = u64MaskedCr0;
5680#else
5681 uint64_t const u64GuestCr0 = pVCpu->cpum.GstCtx.cr0;
5682#endif
5683
5684 uint16_t u16Value;
5685 if (IEM_GET_TARGET_CPU(pVCpu) > IEMTARGETCPU_386)
5686 u16Value = (uint16_t)u64GuestCr0;
5687 else if (IEM_GET_TARGET_CPU(pVCpu) >= IEMTARGETCPU_386)
5688 u16Value = (uint16_t)u64GuestCr0 | 0xffe0;
5689 else
5690 u16Value = (uint16_t)u64GuestCr0 | 0xfff0;
5691
5692 VBOXSTRICTRC rcStrict = iemMemStoreDataU16(pVCpu, iEffSeg, GCPtrEffDst, u16Value);
5693 if (rcStrict == VINF_SUCCESS)
5694 iemRegAddToRipAndClearRF(pVCpu, cbInstr);
5695 return rcStrict;
5696}
5697
5698
5699/**
5700 * Helper for mapping CR3 and PAE PDPEs for 'mov CRx,GReg'.
5701 */
5702#define IEM_MAP_PAE_PDPES_AT_CR3_RET(a_pVCpu, a_iCrReg, a_uCr3) \
5703 do \
5704 { \
5705 int const rcX = PGMGstMapPaePdpesAtCr3(a_pVCpu, a_uCr3); \
5706 if (RT_SUCCESS(rcX)) \
5707 { /* likely */ } \
5708 else \
5709 { \
5710 if (rcX == VERR_PGM_PAE_PDPE_RSVD) \
5711 { \
5712 Log(("iemCImpl_load_Cr%#x: Trying to load invalid PAE PDPEs\n", a_iCrReg)); \
5713 return iemRaiseGeneralProtectionFault0(a_pVCpu); \
5714 } \
5715 Log(("iemCImpl_load_Cr%#x: PGMGstReadPaePdpesAtCr3 failed %Rrc\n", a_iCrReg, rcX)); \
5716 return rcX; \
5717 } \
5718 } while (0)
5719
5720
5721/**
5722 * Used to implemented 'mov CRx,GReg' and 'lmsw r/m16'.
5723 *
5724 * @param iCrReg The CRx register to write (valid).
5725 * @param uNewCrX The new value.
5726 * @param enmAccessCrx The instruction that caused the CrX load.
5727 * @param iGReg The general register in case of a 'mov CRx,GReg'
5728 * instruction.
5729 */
5730IEM_CIMPL_DEF_4(iemCImpl_load_CrX, uint8_t, iCrReg, uint64_t, uNewCrX, IEMACCESSCRX, enmAccessCrX, uint8_t, iGReg)
5731{
5732 VBOXSTRICTRC rcStrict;
5733 int rc;
5734#ifndef VBOX_WITH_NESTED_HWVIRT_SVM
5735 RT_NOREF2(iGReg, enmAccessCrX);
5736#endif
5737
5738 /*
5739 * Try store it.
5740 * Unfortunately, CPUM only does a tiny bit of the work.
5741 */
5742 switch (iCrReg)
5743 {
5744 case 0:
5745 {
5746 /*
5747 * Perform checks.
5748 */
5749 IEM_CTX_ASSERT(pVCpu, CPUMCTX_EXTRN_CR0);
5750
5751 uint64_t const uOldCrX = pVCpu->cpum.GstCtx.cr0;
5752 uint32_t const fValid = CPUMGetGuestCR0ValidMask();
5753
5754 /* ET is hardcoded on 486 and later. */
5755 if (IEM_GET_TARGET_CPU(pVCpu) > IEMTARGETCPU_486)
5756 uNewCrX |= X86_CR0_ET;
5757 /* The 386 and 486 didn't #GP(0) on attempting to set reserved CR0 bits. ET was settable on 386. */
5758 else if (IEM_GET_TARGET_CPU(pVCpu) == IEMTARGETCPU_486)
5759 {
5760 uNewCrX &= fValid;
5761 uNewCrX |= X86_CR0_ET;
5762 }
5763 else
5764 uNewCrX &= X86_CR0_PE | X86_CR0_MP | X86_CR0_EM | X86_CR0_TS | X86_CR0_PG | X86_CR0_ET;
5765
5766 /* Check for reserved bits. */
5767 if (uNewCrX & ~(uint64_t)fValid)
5768 {
5769 Log(("Trying to set reserved CR0 bits: NewCR0=%#llx InvalidBits=%#llx\n", uNewCrX, uNewCrX & ~(uint64_t)fValid));
5770 return iemRaiseGeneralProtectionFault0(pVCpu);
5771 }
5772
5773 /* Check for invalid combinations. */
5774 if ( (uNewCrX & X86_CR0_PG)
5775 && !(uNewCrX & X86_CR0_PE) )
5776 {
5777 Log(("Trying to set CR0.PG without CR0.PE\n"));
5778 return iemRaiseGeneralProtectionFault0(pVCpu);
5779 }
5780
5781 if ( !(uNewCrX & X86_CR0_CD)
5782 && (uNewCrX & X86_CR0_NW) )
5783 {
5784 Log(("Trying to clear CR0.CD while leaving CR0.NW set\n"));
5785 return iemRaiseGeneralProtectionFault0(pVCpu);
5786 }
5787
5788 if ( !(uNewCrX & X86_CR0_PG)
5789 && (pVCpu->cpum.GstCtx.cr4 & X86_CR4_PCIDE))
5790 {
5791 Log(("Trying to clear CR0.PG while leaving CR4.PCID set\n"));
5792 return iemRaiseGeneralProtectionFault0(pVCpu);
5793 }
5794
5795 /* Long mode consistency checks. */
5796 if ( (uNewCrX & X86_CR0_PG)
5797 && !(uOldCrX & X86_CR0_PG)
5798 && (pVCpu->cpum.GstCtx.msrEFER & MSR_K6_EFER_LME) )
5799 {
5800 if (!(pVCpu->cpum.GstCtx.cr4 & X86_CR4_PAE))
5801 {
5802 Log(("Trying to enabled long mode paging without CR4.PAE set\n"));
5803 return iemRaiseGeneralProtectionFault0(pVCpu);
5804 }
5805 if (pVCpu->cpum.GstCtx.cs.Attr.n.u1Long)
5806 {
5807 Log(("Trying to enabled long mode paging with a long CS descriptor loaded.\n"));
5808 return iemRaiseGeneralProtectionFault0(pVCpu);
5809 }
5810 }
5811
5812 /* Check for bits that must remain set or cleared in VMX operation,
5813 see Intel spec. 23.8 "Restrictions on VMX operation". */
5814 if (IEM_VMX_IS_ROOT_MODE(pVCpu))
5815 {
5816 uint64_t const uCr0Fixed0 = pVCpu->cpum.GstCtx.hwvirt.vmx.Msrs.u64Cr0Fixed0;
5817 if ((uNewCrX & uCr0Fixed0) != uCr0Fixed0)
5818 {
5819 Log(("Trying to clear reserved CR0 bits in VMX operation: NewCr0=%#llx MB1=%#llx\n", uNewCrX, uCr0Fixed0));
5820 return iemRaiseGeneralProtectionFault0(pVCpu);
5821 }
5822
5823 uint64_t const uCr0Fixed1 = pVCpu->cpum.GstCtx.hwvirt.vmx.Msrs.u64Cr0Fixed1;
5824 if (uNewCrX & ~uCr0Fixed1)
5825 {
5826 Log(("Trying to set reserved CR0 bits in VMX operation: NewCr0=%#llx MB0=%#llx\n", uNewCrX, uCr0Fixed1));
5827 return iemRaiseGeneralProtectionFault0(pVCpu);
5828 }
5829 }
5830
5831 /*
5832 * SVM nested-guest CR0 write intercepts.
5833 */
5834 if (IEM_SVM_IS_WRITE_CR_INTERCEPT_SET(pVCpu, iCrReg))
5835 {
5836 Log(("iemCImpl_load_Cr%#x: Guest intercept -> #VMEXIT\n", iCrReg));
5837 IEM_SVM_UPDATE_NRIP(pVCpu);
5838 IEM_SVM_CRX_VMEXIT_RET(pVCpu, SVM_EXIT_WRITE_CR0, enmAccessCrX, iGReg);
5839 }
5840 if (IEM_SVM_IS_CTRL_INTERCEPT_SET(pVCpu, SVM_CTRL_INTERCEPT_CR0_SEL_WRITE))
5841 {
5842 /* 'lmsw' intercepts regardless of whether the TS/MP bits are actually toggled. */
5843 if ( enmAccessCrX == IEMACCESSCRX_LMSW
5844 || (uNewCrX & ~(X86_CR0_TS | X86_CR0_MP)) != (uOldCrX & ~(X86_CR0_TS | X86_CR0_MP)))
5845 {
5846 Assert(enmAccessCrX != IEMACCESSCRX_CLTS);
5847 Log(("iemCImpl_load_Cr%#x: lmsw or bits other than TS/MP changed: Guest intercept -> #VMEXIT\n", iCrReg));
5848 IEM_SVM_UPDATE_NRIP(pVCpu);
5849 IEM_SVM_CRX_VMEXIT_RET(pVCpu, SVM_EXIT_CR0_SEL_WRITE, enmAccessCrX, iGReg);
5850 }
5851 }
5852
5853 /*
5854 * Change EFER.LMA if entering or leaving long mode.
5855 */
5856 uint64_t NewEFER = pVCpu->cpum.GstCtx.msrEFER;
5857 if ( (uNewCrX & X86_CR0_PG) != (uOldCrX & X86_CR0_PG)
5858 && (pVCpu->cpum.GstCtx.msrEFER & MSR_K6_EFER_LME) )
5859 {
5860 if (uNewCrX & X86_CR0_PG)
5861 NewEFER |= MSR_K6_EFER_LMA;
5862 else
5863 NewEFER &= ~MSR_K6_EFER_LMA;
5864
5865 CPUMSetGuestEFER(pVCpu, NewEFER);
5866 Assert(pVCpu->cpum.GstCtx.msrEFER == NewEFER);
5867 }
5868
5869 /*
5870 * Inform PGM.
5871 */
5872 if ( (uNewCrX & (X86_CR0_PG | X86_CR0_WP | X86_CR0_PE | X86_CR0_CD | X86_CR0_NW))
5873 != (uOldCrX & (X86_CR0_PG | X86_CR0_WP | X86_CR0_PE | X86_CR0_CD | X86_CR0_NW)) )
5874 {
5875 bool fPdpesMapped;
5876 if ( enmAccessCrX != IEMACCESSCRX_MOV_CRX
5877 || !CPUMIsPaePagingEnabled(uNewCrX, pVCpu->cpum.GstCtx.cr4, NewEFER)
5878 || CPUMIsGuestInSvmNestedHwVirtMode(IEM_GET_CTX(pVCpu)))
5879 fPdpesMapped = false;
5880 else
5881 {
5882 IEM_MAP_PAE_PDPES_AT_CR3_RET(pVCpu, iCrReg, pVCpu->cpum.GstCtx.cr3);
5883 fPdpesMapped = true;
5884 }
5885 rc = PGMFlushTLB(pVCpu, pVCpu->cpum.GstCtx.cr3, true /* global */, fPdpesMapped);
5886 AssertRCReturn(rc, rc);
5887 /* ignore informational status codes */
5888 }
5889
5890 /*
5891 * Change CR0.
5892 */
5893 CPUMSetGuestCR0(pVCpu, uNewCrX);
5894 Assert(pVCpu->cpum.GstCtx.cr0 == uNewCrX);
5895
5896 rcStrict = PGMChangeMode(pVCpu, pVCpu->cpum.GstCtx.cr0, pVCpu->cpum.GstCtx.cr4, pVCpu->cpum.GstCtx.msrEFER);
5897 break;
5898 }
5899
5900 /*
5901 * CR2 can be changed without any restrictions.
5902 */
5903 case 2:
5904 {
5905 if (IEM_SVM_IS_WRITE_CR_INTERCEPT_SET(pVCpu, /*cr*/ 2))
5906 {
5907 Log(("iemCImpl_load_Cr%#x: Guest intercept -> #VMEXIT\n", iCrReg));
5908 IEM_SVM_UPDATE_NRIP(pVCpu);
5909 IEM_SVM_CRX_VMEXIT_RET(pVCpu, SVM_EXIT_WRITE_CR2, enmAccessCrX, iGReg);
5910 }
5911 pVCpu->cpum.GstCtx.cr2 = uNewCrX;
5912 pVCpu->cpum.GstCtx.fExtrn &= ~CPUMCTX_EXTRN_CR2;
5913 rcStrict = VINF_SUCCESS;
5914 break;
5915 }
5916
5917 /*
5918 * CR3 is relatively simple, although AMD and Intel have different
5919 * accounts of how setting reserved bits are handled. We take intel's
5920 * word for the lower bits and AMD's for the high bits (63:52). The
5921 * lower reserved bits are ignored and left alone; OpenBSD 5.8 relies
5922 * on this.
5923 */
5924 /** @todo Testcase: Setting reserved bits in CR3, especially before
5925 * enabling paging. */
5926 case 3:
5927 {
5928 IEM_CTX_ASSERT(pVCpu, CPUMCTX_EXTRN_CR3);
5929
5930 /* Bit 63 being clear in the source operand with PCIDE indicates no invalidations are required. */
5931 if ( (pVCpu->cpum.GstCtx.cr4 & X86_CR4_PCIDE)
5932 && (uNewCrX & RT_BIT_64(63)))
5933 {
5934 /** @todo r=ramshankar: avoiding a TLB flush altogether here causes Windows 10
5935 * SMP(w/o nested-paging) to hang during bootup on Skylake systems, see
5936 * Intel spec. 4.10.4.1 "Operations that Invalidate TLBs and
5937 * Paging-Structure Caches". */
5938 uNewCrX &= ~RT_BIT_64(63);
5939 }
5940
5941 /* Check / mask the value. */
5942 if (uNewCrX & UINT64_C(0xfff0000000000000))
5943 {
5944 Log(("Trying to load CR3 with invalid high bits set: %#llx\n", uNewCrX));
5945 return iemRaiseGeneralProtectionFault0(pVCpu);
5946 }
5947
5948 uint64_t fValid;
5949 if ( (pVCpu->cpum.GstCtx.cr4 & X86_CR4_PAE)
5950 && (pVCpu->cpum.GstCtx.msrEFER & MSR_K6_EFER_LME))
5951 fValid = UINT64_C(0x000fffffffffffff);
5952 else
5953 fValid = UINT64_C(0xffffffff);
5954 if (uNewCrX & ~fValid)
5955 {
5956 Log(("Automatically clearing reserved MBZ bits in CR3 load: NewCR3=%#llx ClearedBits=%#llx\n",
5957 uNewCrX, uNewCrX & ~fValid));
5958 uNewCrX &= fValid;
5959 }
5960
5961 if (IEM_SVM_IS_WRITE_CR_INTERCEPT_SET(pVCpu, /*cr*/ 3))
5962 {
5963 Log(("iemCImpl_load_Cr%#x: Guest intercept -> #VMEXIT\n", iCrReg));
5964 IEM_SVM_UPDATE_NRIP(pVCpu);
5965 IEM_SVM_CRX_VMEXIT_RET(pVCpu, SVM_EXIT_WRITE_CR3, enmAccessCrX, iGReg);
5966 }
5967
5968 /* Inform PGM. */
5969 if (pVCpu->cpum.GstCtx.cr0 & X86_CR0_PG)
5970 {
5971 bool fPdpesMapped;
5972 if ( !CPUMIsGuestInPAEModeEx(IEM_GET_CTX(pVCpu))
5973 || CPUMIsGuestInSvmNestedHwVirtMode(IEM_GET_CTX(pVCpu)))
5974 fPdpesMapped = false;
5975 else
5976 {
5977 Assert(enmAccessCrX == IEMACCESSCRX_MOV_CRX);
5978 IEM_MAP_PAE_PDPES_AT_CR3_RET(pVCpu, iCrReg, uNewCrX);
5979 fPdpesMapped = true;
5980 }
5981 rc = PGMFlushTLB(pVCpu, pVCpu->cpum.GstCtx.cr3, !(pVCpu->cpum.GstCtx.cr4 & X86_CR4_PGE), fPdpesMapped);
5982 AssertRCReturn(rc, rc);
5983 /* ignore informational status codes */
5984 }
5985
5986 /* Make the change. */
5987 rc = CPUMSetGuestCR3(pVCpu, uNewCrX);
5988 AssertRCSuccessReturn(rc, rc);
5989
5990 rcStrict = VINF_SUCCESS;
5991 break;
5992 }
5993
5994 /*
5995 * CR4 is a bit more tedious as there are bits which cannot be cleared
5996 * under some circumstances and such.
5997 */
5998 case 4:
5999 {
6000 IEM_CTX_ASSERT(pVCpu, CPUMCTX_EXTRN_CR4);
6001 uint64_t const uOldCrX = pVCpu->cpum.GstCtx.cr4;
6002
6003 /* Reserved bits. */
6004 uint32_t const fValid = CPUMGetGuestCR4ValidMask(pVCpu->CTX_SUFF(pVM));
6005 if (uNewCrX & ~(uint64_t)fValid)
6006 {
6007 Log(("Trying to set reserved CR4 bits: NewCR4=%#llx InvalidBits=%#llx\n", uNewCrX, uNewCrX & ~(uint64_t)fValid));
6008 return iemRaiseGeneralProtectionFault0(pVCpu);
6009 }
6010
6011 bool const fPcide = !(uOldCrX & X86_CR4_PCIDE) && (uNewCrX & X86_CR4_PCIDE);
6012 bool const fLongMode = CPUMIsGuestInLongModeEx(IEM_GET_CTX(pVCpu));
6013
6014 /* PCIDE check. */
6015 if ( fPcide
6016 && ( !fLongMode
6017 || (pVCpu->cpum.GstCtx.cr3 & UINT64_C(0xfff))))
6018 {
6019 Log(("Trying to set PCIDE with invalid PCID or outside long mode. Pcid=%#x\n", (pVCpu->cpum.GstCtx.cr3 & UINT64_C(0xfff))));
6020 return iemRaiseGeneralProtectionFault0(pVCpu);
6021 }
6022
6023 /* PAE check. */
6024 if ( fLongMode
6025 && (uOldCrX & X86_CR4_PAE)
6026 && !(uNewCrX & X86_CR4_PAE))
6027 {
6028 Log(("Trying to set clear CR4.PAE while long mode is active\n"));
6029 return iemRaiseGeneralProtectionFault0(pVCpu);
6030 }
6031
6032 if (IEM_SVM_IS_WRITE_CR_INTERCEPT_SET(pVCpu, /*cr*/ 4))
6033 {
6034 Log(("iemCImpl_load_Cr%#x: Guest intercept -> #VMEXIT\n", iCrReg));
6035 IEM_SVM_UPDATE_NRIP(pVCpu);
6036 IEM_SVM_CRX_VMEXIT_RET(pVCpu, SVM_EXIT_WRITE_CR4, enmAccessCrX, iGReg);
6037 }
6038
6039 /* Check for bits that must remain set or cleared in VMX operation,
6040 see Intel spec. 23.8 "Restrictions on VMX operation". */
6041 if (IEM_VMX_IS_ROOT_MODE(pVCpu))
6042 {
6043 uint64_t const uCr4Fixed0 = pVCpu->cpum.GstCtx.hwvirt.vmx.Msrs.u64Cr4Fixed0;
6044 if ((uNewCrX & uCr4Fixed0) != uCr4Fixed0)
6045 {
6046 Log(("Trying to clear reserved CR4 bits in VMX operation: NewCr4=%#llx MB1=%#llx\n", uNewCrX, uCr4Fixed0));
6047 return iemRaiseGeneralProtectionFault0(pVCpu);
6048 }
6049
6050 uint64_t const uCr4Fixed1 = pVCpu->cpum.GstCtx.hwvirt.vmx.Msrs.u64Cr4Fixed1;
6051 if (uNewCrX & ~uCr4Fixed1)
6052 {
6053 Log(("Trying to set reserved CR4 bits in VMX operation: NewCr4=%#llx MB0=%#llx\n", uNewCrX, uCr4Fixed1));
6054 return iemRaiseGeneralProtectionFault0(pVCpu);
6055 }
6056 }
6057
6058 /*
6059 * Notify PGM.
6060 */
6061 if ((uNewCrX ^ uOldCrX) & (X86_CR4_PSE | X86_CR4_PAE | X86_CR4_PGE | X86_CR4_PCIDE /* | X86_CR4_SMEP */))
6062 {
6063 bool fPdpesMapped;
6064 if ( !CPUMIsPaePagingEnabled(pVCpu->cpum.GstCtx.cr0, uNewCrX, pVCpu->cpum.GstCtx.msrEFER)
6065 || CPUMIsGuestInSvmNestedHwVirtMode(IEM_GET_CTX(pVCpu)))
6066 fPdpesMapped = false;
6067 else
6068 {
6069 Assert(enmAccessCrX == IEMACCESSCRX_MOV_CRX);
6070 IEM_MAP_PAE_PDPES_AT_CR3_RET(pVCpu, iCrReg, pVCpu->cpum.GstCtx.cr3);
6071 fPdpesMapped = true;
6072 }
6073 rc = PGMFlushTLB(pVCpu, pVCpu->cpum.GstCtx.cr3, true /* global */, fPdpesMapped);
6074 AssertRCReturn(rc, rc);
6075 /* ignore informational status codes */
6076 }
6077
6078 /*
6079 * Change it.
6080 */
6081 rc = CPUMSetGuestCR4(pVCpu, uNewCrX);
6082 AssertRCSuccessReturn(rc, rc);
6083 Assert(pVCpu->cpum.GstCtx.cr4 == uNewCrX);
6084
6085 rcStrict = PGMChangeMode(pVCpu, pVCpu->cpum.GstCtx.cr0, pVCpu->cpum.GstCtx.cr4, pVCpu->cpum.GstCtx.msrEFER);
6086 break;
6087 }
6088
6089 /*
6090 * CR8 maps to the APIC TPR.
6091 */
6092 case 8:
6093 {
6094 IEM_CTX_ASSERT(pVCpu, CPUMCTX_EXTRN_APIC_TPR);
6095 if (uNewCrX & ~(uint64_t)0xf)
6096 {
6097 Log(("Trying to set reserved CR8 bits (%#RX64)\n", uNewCrX));
6098 return iemRaiseGeneralProtectionFault0(pVCpu);
6099 }
6100
6101#ifdef VBOX_WITH_NESTED_HWVIRT_VMX
6102 if ( IEM_VMX_IS_NON_ROOT_MODE(pVCpu)
6103 && IEM_VMX_IS_PROCCTLS_SET(pVCpu, VMX_PROC_CTLS_USE_TPR_SHADOW))
6104 {
6105 /*
6106 * If the Mov-to-CR8 doesn't cause a VM-exit, bits 0:3 of the source operand
6107 * is copied to bits 7:4 of the VTPR. Bits 0:3 and bits 31:8 of the VTPR are
6108 * cleared. Following this the processor performs TPR virtualization.
6109 *
6110 * However, we should not perform TPR virtualization immediately here but
6111 * after this instruction has completed.
6112 *
6113 * See Intel spec. 29.3 "Virtualizing CR8-based TPR Accesses"
6114 * See Intel spec. 27.1 "Architectural State Before A VM-exit"
6115 */
6116 uint32_t const uTpr = (uNewCrX & 0xf) << 4;
6117 Log(("iemCImpl_load_Cr%#x: Virtualizing TPR (%#x) write\n", iCrReg, uTpr));
6118 iemVmxVirtApicWriteRaw32(pVCpu, XAPIC_OFF_TPR, uTpr);
6119 iemVmxVirtApicSetPendingWrite(pVCpu, XAPIC_OFF_TPR);
6120 rcStrict = VINF_SUCCESS;
6121 break;
6122 }
6123#endif
6124
6125#ifdef VBOX_WITH_NESTED_HWVIRT_SVM
6126 if (CPUMIsGuestInSvmNestedHwVirtMode(IEM_GET_CTX(pVCpu)))
6127 {
6128 if (IEM_SVM_IS_WRITE_CR_INTERCEPT_SET(pVCpu, /*cr*/ 8))
6129 {
6130 Log(("iemCImpl_load_Cr%#x: Guest intercept -> #VMEXIT\n", iCrReg));
6131 IEM_SVM_UPDATE_NRIP(pVCpu);
6132 IEM_SVM_CRX_VMEXIT_RET(pVCpu, SVM_EXIT_WRITE_CR8, enmAccessCrX, iGReg);
6133 }
6134
6135 pVCpu->cpum.GstCtx.hwvirt.svm.Vmcb.ctrl.IntCtrl.n.u8VTPR = uNewCrX;
6136 if (CPUMIsGuestSvmVirtIntrMasking(pVCpu, IEM_GET_CTX(pVCpu)))
6137 {
6138 rcStrict = VINF_SUCCESS;
6139 break;
6140 }
6141 }
6142#endif
6143 uint8_t const u8Tpr = (uint8_t)uNewCrX << 4;
6144 APICSetTpr(pVCpu, u8Tpr);
6145 rcStrict = VINF_SUCCESS;
6146 break;
6147 }
6148
6149 IEM_NOT_REACHED_DEFAULT_CASE_RET(); /* call checks */
6150 }
6151
6152 /*
6153 * Advance the RIP on success.
6154 */
6155 if (RT_SUCCESS(rcStrict))
6156 {
6157 if (rcStrict != VINF_SUCCESS)
6158 rcStrict = iemSetPassUpStatus(pVCpu, rcStrict);
6159 iemRegAddToRipAndClearRF(pVCpu, cbInstr);
6160 }
6161
6162 return rcStrict;
6163}
6164
6165
6166/**
6167 * Implements mov CRx,GReg.
6168 *
6169 * @param iCrReg The CRx register to write (valid).
6170 * @param iGReg The general register to load the CRx value from.
6171 */
6172IEM_CIMPL_DEF_2(iemCImpl_mov_Cd_Rd, uint8_t, iCrReg, uint8_t, iGReg)
6173{
6174 if (pVCpu->iem.s.uCpl != 0)
6175 return iemRaiseGeneralProtectionFault0(pVCpu);
6176 Assert(!pVCpu->cpum.GstCtx.eflags.Bits.u1VM);
6177
6178 /*
6179 * Read the new value from the source register and call common worker.
6180 */
6181 uint64_t uNewCrX;
6182 if (pVCpu->iem.s.enmCpuMode == IEMMODE_64BIT)
6183 uNewCrX = iemGRegFetchU64(pVCpu, iGReg);
6184 else
6185 uNewCrX = iemGRegFetchU32(pVCpu, iGReg);
6186
6187#ifdef VBOX_WITH_NESTED_HWVIRT_VMX
6188 if (IEM_VMX_IS_NON_ROOT_MODE(pVCpu))
6189 {
6190 VBOXSTRICTRC rcStrict = VINF_VMX_INTERCEPT_NOT_ACTIVE;
6191 switch (iCrReg)
6192 {
6193 case 0:
6194 case 4: rcStrict = iemVmxVmexitInstrMovToCr0Cr4(pVCpu, iCrReg, &uNewCrX, iGReg, cbInstr); break;
6195 case 3: rcStrict = iemVmxVmexitInstrMovToCr3(pVCpu, uNewCrX, iGReg, cbInstr); break;
6196 case 8: rcStrict = iemVmxVmexitInstrMovToCr8(pVCpu, iGReg, cbInstr); break;
6197 }
6198 if (rcStrict != VINF_VMX_INTERCEPT_NOT_ACTIVE)
6199 return rcStrict;
6200 }
6201#endif
6202
6203 return IEM_CIMPL_CALL_4(iemCImpl_load_CrX, iCrReg, uNewCrX, IEMACCESSCRX_MOV_CRX, iGReg);
6204}
6205
6206
6207/**
6208 * Implements 'LMSW r/m16'
6209 *
6210 * @param u16NewMsw The new value.
6211 * @param GCPtrEffDst The guest-linear address of the source operand in case
6212 * of a memory operand. For register operand, pass
6213 * NIL_RTGCPTR.
6214 */
6215IEM_CIMPL_DEF_2(iemCImpl_lmsw, uint16_t, u16NewMsw, RTGCPTR, GCPtrEffDst)
6216{
6217 if (pVCpu->iem.s.uCpl != 0)
6218 return iemRaiseGeneralProtectionFault0(pVCpu);
6219 Assert(!pVCpu->cpum.GstCtx.eflags.Bits.u1VM);
6220 IEM_CTX_ASSERT(pVCpu, CPUMCTX_EXTRN_CR0);
6221
6222#ifdef VBOX_WITH_NESTED_HWVIRT_VMX
6223 /* Check nested-guest VMX intercept and get updated MSW if there's no VM-exit. */
6224 if (IEM_VMX_IS_NON_ROOT_MODE(pVCpu))
6225 {
6226 VBOXSTRICTRC rcStrict = iemVmxVmexitInstrLmsw(pVCpu, pVCpu->cpum.GstCtx.cr0, &u16NewMsw, GCPtrEffDst, cbInstr);
6227 if (rcStrict != VINF_VMX_INTERCEPT_NOT_ACTIVE)
6228 return rcStrict;
6229 }
6230#else
6231 RT_NOREF_PV(GCPtrEffDst);
6232#endif
6233
6234 /*
6235 * Compose the new CR0 value and call common worker.
6236 */
6237 uint64_t uNewCr0 = pVCpu->cpum.GstCtx.cr0 & ~(X86_CR0_MP | X86_CR0_EM | X86_CR0_TS);
6238 uNewCr0 |= u16NewMsw & (X86_CR0_PE | X86_CR0_MP | X86_CR0_EM | X86_CR0_TS);
6239 return IEM_CIMPL_CALL_4(iemCImpl_load_CrX, /*cr*/ 0, uNewCr0, IEMACCESSCRX_LMSW, UINT8_MAX /* iGReg */);
6240}
6241
6242
6243/**
6244 * Implements 'CLTS'.
6245 */
6246IEM_CIMPL_DEF_0(iemCImpl_clts)
6247{
6248 if (pVCpu->iem.s.uCpl != 0)
6249 return iemRaiseGeneralProtectionFault0(pVCpu);
6250
6251 IEM_CTX_ASSERT(pVCpu, CPUMCTX_EXTRN_CR0);
6252 uint64_t uNewCr0 = pVCpu->cpum.GstCtx.cr0;
6253 uNewCr0 &= ~X86_CR0_TS;
6254
6255#ifdef VBOX_WITH_NESTED_HWVIRT_VMX
6256 if (IEM_VMX_IS_NON_ROOT_MODE(pVCpu))
6257 {
6258 VBOXSTRICTRC rcStrict = iemVmxVmexitInstrClts(pVCpu, cbInstr);
6259 if (rcStrict == VINF_VMX_MODIFIES_BEHAVIOR)
6260 uNewCr0 |= (pVCpu->cpum.GstCtx.cr0 & X86_CR0_TS);
6261 else if (rcStrict != VINF_VMX_INTERCEPT_NOT_ACTIVE)
6262 return rcStrict;
6263 }
6264#endif
6265
6266 return IEM_CIMPL_CALL_4(iemCImpl_load_CrX, /*cr*/ 0, uNewCr0, IEMACCESSCRX_CLTS, UINT8_MAX /* iGReg */);
6267}
6268
6269
6270/**
6271 * Implements mov GReg,DRx.
6272 *
6273 * @param iGReg The general register to store the DRx value in.
6274 * @param iDrReg The DRx register to read (0-7).
6275 */
6276IEM_CIMPL_DEF_2(iemCImpl_mov_Rd_Dd, uint8_t, iGReg, uint8_t, iDrReg)
6277{
6278#ifdef VBOX_WITH_NESTED_HWVIRT_VMX
6279 /*
6280 * Check nested-guest VMX intercept.
6281 * Unlike most other intercepts, the Mov DRx intercept takes preceedence
6282 * over CPL and CR4.DE and even DR4/DR5 checks.
6283 *
6284 * See Intel spec. 25.1.3 "Instructions That Cause VM Exits Conditionally".
6285 */
6286 if (IEM_VMX_IS_NON_ROOT_MODE(pVCpu))
6287 {
6288 VBOXSTRICTRC rcStrict = iemVmxVmexitInstrMovDrX(pVCpu, VMXINSTRID_MOV_FROM_DRX, iDrReg, iGReg, cbInstr);
6289 if (rcStrict != VINF_VMX_INTERCEPT_NOT_ACTIVE)
6290 return rcStrict;
6291 }
6292#endif
6293
6294 /*
6295 * Check preconditions.
6296 */
6297 /* Raise GPs. */
6298 if (pVCpu->iem.s.uCpl != 0)
6299 return iemRaiseGeneralProtectionFault0(pVCpu);
6300 Assert(!pVCpu->cpum.GstCtx.eflags.Bits.u1VM);
6301 IEM_CTX_ASSERT(pVCpu, CPUMCTX_EXTRN_DR7 | CPUMCTX_EXTRN_CR0);
6302
6303 if ( (iDrReg == 4 || iDrReg == 5)
6304 && (pVCpu->cpum.GstCtx.cr4 & X86_CR4_DE) )
6305 {
6306 Log(("mov r%u,dr%u: CR4.DE=1 -> #GP(0)\n", iGReg, iDrReg));
6307 return iemRaiseGeneralProtectionFault0(pVCpu);
6308 }
6309
6310 /* Raise #DB if general access detect is enabled. */
6311 if (pVCpu->cpum.GstCtx.dr[7] & X86_DR7_GD)
6312 {
6313 Log(("mov r%u,dr%u: DR7.GD=1 -> #DB\n", iGReg, iDrReg));
6314 return iemRaiseDebugException(pVCpu);
6315 }
6316
6317 /*
6318 * Read the debug register and store it in the specified general register.
6319 */
6320 uint64_t drX;
6321 switch (iDrReg)
6322 {
6323 case 0:
6324 IEM_CTX_IMPORT_RET(pVCpu, CPUMCTX_EXTRN_DR0_DR3);
6325 drX = pVCpu->cpum.GstCtx.dr[0];
6326 break;
6327 case 1:
6328 IEM_CTX_IMPORT_RET(pVCpu, CPUMCTX_EXTRN_DR0_DR3);
6329 drX = pVCpu->cpum.GstCtx.dr[1];
6330 break;
6331 case 2:
6332 IEM_CTX_IMPORT_RET(pVCpu, CPUMCTX_EXTRN_DR0_DR3);
6333 drX = pVCpu->cpum.GstCtx.dr[2];
6334 break;
6335 case 3:
6336 IEM_CTX_IMPORT_RET(pVCpu, CPUMCTX_EXTRN_DR0_DR3);
6337 drX = pVCpu->cpum.GstCtx.dr[3];
6338 break;
6339 case 6:
6340 case 4:
6341 IEM_CTX_IMPORT_RET(pVCpu, CPUMCTX_EXTRN_DR6);
6342 drX = pVCpu->cpum.GstCtx.dr[6];
6343 drX |= X86_DR6_RA1_MASK;
6344 drX &= ~X86_DR6_RAZ_MASK;
6345 break;
6346 case 7:
6347 case 5:
6348 IEM_CTX_ASSERT(pVCpu, CPUMCTX_EXTRN_DR7);
6349 drX = pVCpu->cpum.GstCtx.dr[7];
6350 drX |=X86_DR7_RA1_MASK;
6351 drX &= ~X86_DR7_RAZ_MASK;
6352 break;
6353 IEM_NOT_REACHED_DEFAULT_CASE_RET(); /* call checks */
6354 }
6355
6356 /** @todo SVM nested-guest intercept for DR8-DR15? */
6357 /*
6358 * Check for any SVM nested-guest intercepts for the DRx read.
6359 */
6360 if (IEM_SVM_IS_READ_DR_INTERCEPT_SET(pVCpu, iDrReg))
6361 {
6362 Log(("mov r%u,dr%u: Guest intercept -> #VMEXIT\n", iGReg, iDrReg));
6363 IEM_SVM_UPDATE_NRIP(pVCpu);
6364 IEM_SVM_VMEXIT_RET(pVCpu, SVM_EXIT_READ_DR0 + (iDrReg & 0xf),
6365 IEM_GET_GUEST_CPU_FEATURES(pVCpu)->fSvmDecodeAssists ? (iGReg & 7) : 0, 0 /* uExitInfo2 */);
6366 }
6367
6368 if (pVCpu->iem.s.enmCpuMode == IEMMODE_64BIT)
6369 *(uint64_t *)iemGRegRef(pVCpu, iGReg) = drX;
6370 else
6371 *(uint64_t *)iemGRegRef(pVCpu, iGReg) = (uint32_t)drX;
6372
6373 iemRegAddToRipAndClearRF(pVCpu, cbInstr);
6374 return VINF_SUCCESS;
6375}
6376
6377
6378/**
6379 * Implements mov DRx,GReg.
6380 *
6381 * @param iDrReg The DRx register to write (valid).
6382 * @param iGReg The general register to load the DRx value from.
6383 */
6384IEM_CIMPL_DEF_2(iemCImpl_mov_Dd_Rd, uint8_t, iDrReg, uint8_t, iGReg)
6385{
6386#ifdef VBOX_WITH_NESTED_HWVIRT_VMX
6387 /*
6388 * Check nested-guest VMX intercept.
6389 * Unlike most other intercepts, the Mov DRx intercept takes preceedence
6390 * over CPL and CR4.DE and even DR4/DR5 checks.
6391 *
6392 * See Intel spec. 25.1.3 "Instructions That Cause VM Exits Conditionally".
6393 */
6394 if (IEM_VMX_IS_NON_ROOT_MODE(pVCpu))
6395 {
6396 VBOXSTRICTRC rcStrict = iemVmxVmexitInstrMovDrX(pVCpu, VMXINSTRID_MOV_TO_DRX, iDrReg, iGReg, cbInstr);
6397 if (rcStrict != VINF_VMX_INTERCEPT_NOT_ACTIVE)
6398 return rcStrict;
6399 }
6400#endif
6401
6402 /*
6403 * Check preconditions.
6404 */
6405 if (pVCpu->iem.s.uCpl != 0)
6406 return iemRaiseGeneralProtectionFault0(pVCpu);
6407 Assert(!pVCpu->cpum.GstCtx.eflags.Bits.u1VM);
6408 IEM_CTX_ASSERT(pVCpu, CPUMCTX_EXTRN_DR7 | CPUMCTX_EXTRN_CR4);
6409
6410 if (iDrReg == 4 || iDrReg == 5)
6411 {
6412 if (pVCpu->cpum.GstCtx.cr4 & X86_CR4_DE)
6413 {
6414 Log(("mov dr%u,r%u: CR4.DE=1 -> #GP(0)\n", iDrReg, iGReg));
6415 return iemRaiseGeneralProtectionFault0(pVCpu);
6416 }
6417 iDrReg += 2;
6418 }
6419
6420 /* Raise #DB if general access detect is enabled. */
6421 /** @todo is \#DB/DR7.GD raised before any reserved high bits in DR7/DR6
6422 * \#GP? */
6423 if (pVCpu->cpum.GstCtx.dr[7] & X86_DR7_GD)
6424 {
6425 Log(("mov dr%u,r%u: DR7.GD=1 -> #DB\n", iDrReg, iGReg));
6426 return iemRaiseDebugException(pVCpu);
6427 }
6428
6429 /*
6430 * Read the new value from the source register.
6431 */
6432 uint64_t uNewDrX;
6433 if (pVCpu->iem.s.enmCpuMode == IEMMODE_64BIT)
6434 uNewDrX = iemGRegFetchU64(pVCpu, iGReg);
6435 else
6436 uNewDrX = iemGRegFetchU32(pVCpu, iGReg);
6437
6438 /*
6439 * Adjust it.
6440 */
6441 switch (iDrReg)
6442 {
6443 case 0:
6444 case 1:
6445 case 2:
6446 case 3:
6447 /* nothing to adjust */
6448 break;
6449
6450 case 6:
6451 if (uNewDrX & X86_DR6_MBZ_MASK)
6452 {
6453 Log(("mov dr%u,%#llx: DR6 high bits are not zero -> #GP(0)\n", iDrReg, uNewDrX));
6454 return iemRaiseGeneralProtectionFault0(pVCpu);
6455 }
6456 uNewDrX |= X86_DR6_RA1_MASK;
6457 uNewDrX &= ~X86_DR6_RAZ_MASK;
6458 break;
6459
6460 case 7:
6461 if (uNewDrX & X86_DR7_MBZ_MASK)
6462 {
6463 Log(("mov dr%u,%#llx: DR7 high bits are not zero -> #GP(0)\n", iDrReg, uNewDrX));
6464 return iemRaiseGeneralProtectionFault0(pVCpu);
6465 }
6466 uNewDrX |= X86_DR7_RA1_MASK;
6467 uNewDrX &= ~X86_DR7_RAZ_MASK;
6468 break;
6469
6470 IEM_NOT_REACHED_DEFAULT_CASE_RET();
6471 }
6472
6473 /** @todo SVM nested-guest intercept for DR8-DR15? */
6474 /*
6475 * Check for any SVM nested-guest intercepts for the DRx write.
6476 */
6477 if (IEM_SVM_IS_WRITE_DR_INTERCEPT_SET(pVCpu, iDrReg))
6478 {
6479 Log2(("mov dr%u,r%u: Guest intercept -> #VMEXIT\n", iDrReg, iGReg));
6480 IEM_SVM_UPDATE_NRIP(pVCpu);
6481 IEM_SVM_VMEXIT_RET(pVCpu, SVM_EXIT_WRITE_DR0 + (iDrReg & 0xf),
6482 IEM_GET_GUEST_CPU_FEATURES(pVCpu)->fSvmDecodeAssists ? (iGReg & 7) : 0, 0 /* uExitInfo2 */);
6483 }
6484
6485 /*
6486 * Do the actual setting.
6487 */
6488 if (iDrReg < 4)
6489 IEM_CTX_IMPORT_RET(pVCpu, CPUMCTX_EXTRN_DR0_DR3);
6490 else if (iDrReg == 6)
6491 IEM_CTX_IMPORT_RET(pVCpu, CPUMCTX_EXTRN_DR6);
6492
6493 int rc = CPUMSetGuestDRx(pVCpu, iDrReg, uNewDrX);
6494 AssertRCSuccessReturn(rc, RT_SUCCESS_NP(rc) ? VERR_IEM_IPE_1 : rc);
6495
6496 iemRegAddToRipAndClearRF(pVCpu, cbInstr);
6497 return VINF_SUCCESS;
6498}
6499
6500
6501/**
6502 * Implements mov GReg,TRx.
6503 *
6504 * @param iGReg The general register to store the
6505 * TRx value in.
6506 * @param iTrReg The TRx register to read (6/7).
6507 */
6508IEM_CIMPL_DEF_2(iemCImpl_mov_Rd_Td, uint8_t, iGReg, uint8_t, iTrReg)
6509{
6510 /*
6511 * Check preconditions. NB: This instruction is 386/486 only.
6512 */
6513
6514 /* Raise GPs. */
6515 if (pVCpu->iem.s.uCpl != 0)
6516 return iemRaiseGeneralProtectionFault0(pVCpu);
6517 Assert(!pVCpu->cpum.GstCtx.eflags.Bits.u1VM);
6518
6519 if (iTrReg < 6 || iTrReg > 7)
6520 {
6521 /** @todo Do Intel CPUs reject this or are the TRs aliased? */
6522 Log(("mov r%u,tr%u: invalid register -> #GP(0)\n", iGReg, iTrReg));
6523 return iemRaiseGeneralProtectionFault0(pVCpu);
6524 }
6525
6526 /*
6527 * Read the test register and store it in the specified general register.
6528 * This is currently a dummy implementation that only exists to satisfy
6529 * old debuggers like WDEB386 or OS/2 KDB which unconditionally read the
6530 * TR6/TR7 registers. Software which actually depends on the TR values
6531 * (different on 386/486) is exceedingly rare.
6532 */
6533 uint64_t trX;
6534 switch (iTrReg)
6535 {
6536 case 6:
6537 trX = 0; /* Currently a dummy. */
6538 break;
6539 case 7:
6540 trX = 0; /* Currently a dummy. */
6541 break;
6542 IEM_NOT_REACHED_DEFAULT_CASE_RET(); /* call checks */
6543 }
6544
6545 *(uint64_t *)iemGRegRef(pVCpu, iGReg) = (uint32_t)trX;
6546
6547 iemRegAddToRipAndClearRF(pVCpu, cbInstr);
6548 return VINF_SUCCESS;
6549}
6550
6551
6552/**
6553 * Implements mov TRx,GReg.
6554 *
6555 * @param iTrReg The TRx register to write (valid).
6556 * @param iGReg The general register to load the TRx
6557 * value from.
6558 */
6559IEM_CIMPL_DEF_2(iemCImpl_mov_Td_Rd, uint8_t, iTrReg, uint8_t, iGReg)
6560{
6561 /*
6562 * Check preconditions. NB: This instruction is 386/486 only.
6563 */
6564
6565 /* Raise GPs. */
6566 if (pVCpu->iem.s.uCpl != 0)
6567 return iemRaiseGeneralProtectionFault0(pVCpu);
6568 Assert(!pVCpu->cpum.GstCtx.eflags.Bits.u1VM);
6569
6570 if (iTrReg < 6 || iTrReg > 7)
6571 {
6572 /** @todo Do Intel CPUs reject this or are the TRs aliased? */
6573 Log(("mov r%u,tr%u: invalid register -> #GP(0)\n", iGReg, iTrReg));
6574 return iemRaiseGeneralProtectionFault0(pVCpu);
6575 }
6576
6577 /*
6578 * Read the new value from the source register.
6579 */
6580 uint64_t uNewTrX;
6581 if (pVCpu->iem.s.enmCpuMode == IEMMODE_64BIT)
6582 uNewTrX = iemGRegFetchU64(pVCpu, iGReg);
6583 else
6584 uNewTrX = iemGRegFetchU32(pVCpu, iGReg);
6585
6586 /*
6587 * Here we would do the actual setting if this weren't a dummy implementation.
6588 * This is currently a dummy implementation that only exists to prevent
6589 * old debuggers like WDEB386 or OS/2 KDB from crashing.
6590 */
6591 RT_NOREF(uNewTrX);
6592
6593 iemRegAddToRipAndClearRF(pVCpu, cbInstr);
6594 return VINF_SUCCESS;
6595}
6596
6597
6598/**
6599 * Implements 'INVLPG m'.
6600 *
6601 * @param GCPtrPage The effective address of the page to invalidate.
6602 * @remarks Updates the RIP.
6603 */
6604IEM_CIMPL_DEF_1(iemCImpl_invlpg, RTGCPTR, GCPtrPage)
6605{
6606 /* ring-0 only. */
6607 if (pVCpu->iem.s.uCpl != 0)
6608 return iemRaiseGeneralProtectionFault0(pVCpu);
6609 Assert(!pVCpu->cpum.GstCtx.eflags.Bits.u1VM);
6610 IEM_CTX_ASSERT(pVCpu, CPUMCTX_EXTRN_CR0 | CPUMCTX_EXTRN_CR3 | CPUMCTX_EXTRN_CR4 | CPUMCTX_EXTRN_EFER);
6611
6612#ifdef VBOX_WITH_NESTED_HWVIRT_VMX
6613 if ( IEM_VMX_IS_NON_ROOT_MODE(pVCpu)
6614 && IEM_VMX_IS_PROCCTLS_SET(pVCpu, VMX_PROC_CTLS_INVLPG_EXIT))
6615 {
6616 Log(("invlpg: Guest intercept (%RGp) -> VM-exit\n", GCPtrPage));
6617 return iemVmxVmexitInstrInvlpg(pVCpu, GCPtrPage, cbInstr);
6618 }
6619#endif
6620
6621 if (IEM_SVM_IS_CTRL_INTERCEPT_SET(pVCpu, SVM_CTRL_INTERCEPT_INVLPG))
6622 {
6623 Log(("invlpg: Guest intercept (%RGp) -> #VMEXIT\n", GCPtrPage));
6624 IEM_SVM_UPDATE_NRIP(pVCpu);
6625 IEM_SVM_VMEXIT_RET(pVCpu, SVM_EXIT_INVLPG,
6626 IEM_GET_GUEST_CPU_FEATURES(pVCpu)->fSvmDecodeAssists ? GCPtrPage : 0, 0 /* uExitInfo2 */);
6627 }
6628
6629 int rc = PGMInvalidatePage(pVCpu, GCPtrPage);
6630 iemRegAddToRipAndClearRF(pVCpu, cbInstr);
6631
6632 if (rc == VINF_SUCCESS)
6633 return VINF_SUCCESS;
6634 if (rc == VINF_PGM_SYNC_CR3)
6635 return iemSetPassUpStatus(pVCpu, rc);
6636
6637 AssertMsg(rc == VINF_EM_RAW_EMULATE_INSTR || RT_FAILURE_NP(rc), ("%Rrc\n", rc));
6638 Log(("PGMInvalidatePage(%RGv) -> %Rrc\n", GCPtrPage, rc));
6639 return rc;
6640}
6641
6642
6643/**
6644 * Implements INVPCID.
6645 *
6646 * @param iEffSeg The segment of the invpcid descriptor.
6647 * @param GCPtrInvpcidDesc The address of invpcid descriptor.
6648 * @param uInvpcidType The invalidation type.
6649 * @remarks Updates the RIP.
6650 */
6651IEM_CIMPL_DEF_3(iemCImpl_invpcid, uint8_t, iEffSeg, RTGCPTR, GCPtrInvpcidDesc, uint64_t, uInvpcidType)
6652{
6653 /*
6654 * Check preconditions.
6655 */
6656 if (!IEM_GET_GUEST_CPU_FEATURES(pVCpu)->fInvpcid)
6657 return iemRaiseUndefinedOpcode(pVCpu);
6658
6659 /* When in VMX non-root mode and INVPCID is not enabled, it results in #UD. */
6660 if ( IEM_VMX_IS_NON_ROOT_MODE(pVCpu)
6661 && !IEM_VMX_IS_PROCCTLS2_SET(pVCpu, VMX_PROC_CTLS2_INVPCID))
6662 {
6663 Log(("invpcid: Not enabled for nested-guest execution -> #UD\n"));
6664 return iemRaiseUndefinedOpcode(pVCpu);
6665 }
6666
6667 if (pVCpu->iem.s.uCpl != 0)
6668 {
6669 Log(("invpcid: CPL != 0 -> #GP(0)\n"));
6670 return iemRaiseGeneralProtectionFault0(pVCpu);
6671 }
6672
6673 if (IEM_IS_V86_MODE(pVCpu))
6674 {
6675 Log(("invpcid: v8086 mode -> #GP(0)\n"));
6676 return iemRaiseGeneralProtectionFault0(pVCpu);
6677 }
6678
6679 /*
6680 * Check nested-guest intercept.
6681 *
6682 * INVPCID causes a VM-exit if "enable INVPCID" and "INVLPG exiting" are
6683 * both set. We have already checked the former earlier in this function.
6684 *
6685 * CPL and virtual-8086 mode checks take priority over this VM-exit.
6686 * See Intel spec. "25.1.1 Relative Priority of Faults and VM Exits".
6687 */
6688 if ( IEM_VMX_IS_NON_ROOT_MODE(pVCpu)
6689 && IEM_VMX_IS_PROCCTLS_SET(pVCpu, VMX_PROC_CTLS_INVLPG_EXIT))
6690 {
6691 Log(("invpcid: Guest intercept -> #VM-exit\n"));
6692 IEM_VMX_VMEXIT_INSTR_NEEDS_INFO_RET(pVCpu, VMX_EXIT_INVPCID, VMXINSTRID_NONE, cbInstr);
6693 }
6694
6695 if (uInvpcidType > X86_INVPCID_TYPE_MAX_VALID)
6696 {
6697 Log(("invpcid: invalid/unrecognized invpcid type %#RX64 -> #GP(0)\n", uInvpcidType));
6698 return iemRaiseGeneralProtectionFault0(pVCpu);
6699 }
6700 IEM_CTX_ASSERT(pVCpu, CPUMCTX_EXTRN_CR0 | CPUMCTX_EXTRN_CR3 | CPUMCTX_EXTRN_CR4 | CPUMCTX_EXTRN_EFER);
6701
6702 /*
6703 * Fetch the invpcid descriptor from guest memory.
6704 */
6705 RTUINT128U uDesc;
6706 VBOXSTRICTRC rcStrict = iemMemFetchDataU128(pVCpu, &uDesc, iEffSeg, GCPtrInvpcidDesc);
6707 if (rcStrict == VINF_SUCCESS)
6708 {
6709 /*
6710 * Validate the descriptor.
6711 */
6712 if (uDesc.s.Lo > 0xfff)
6713 {
6714 Log(("invpcid: reserved bits set in invpcid descriptor %#RX64 -> #GP(0)\n", uDesc.s.Lo));
6715 return iemRaiseGeneralProtectionFault0(pVCpu);
6716 }
6717
6718 RTGCUINTPTR64 const GCPtrInvAddr = uDesc.s.Hi;
6719 uint8_t const uPcid = uDesc.s.Lo & UINT64_C(0xfff);
6720 uint32_t const uCr4 = pVCpu->cpum.GstCtx.cr4;
6721 uint64_t const uCr3 = pVCpu->cpum.GstCtx.cr3;
6722 switch (uInvpcidType)
6723 {
6724 case X86_INVPCID_TYPE_INDV_ADDR:
6725 {
6726 if (!IEM_IS_CANONICAL(GCPtrInvAddr))
6727 {
6728 Log(("invpcid: invalidation address %#RGP is not canonical -> #GP(0)\n", GCPtrInvAddr));
6729 return iemRaiseGeneralProtectionFault0(pVCpu);
6730 }
6731 if ( !(uCr4 & X86_CR4_PCIDE)
6732 && uPcid != 0)
6733 {
6734 Log(("invpcid: invalid pcid %#x\n", uPcid));
6735 return iemRaiseGeneralProtectionFault0(pVCpu);
6736 }
6737
6738 /* Invalidate mappings for the linear address tagged with PCID except global translations. */
6739 PGMFlushTLB(pVCpu, uCr3, false /* fGlobal */, false /* fPdpesMapped */);
6740 break;
6741 }
6742
6743 case X86_INVPCID_TYPE_SINGLE_CONTEXT:
6744 {
6745 if ( !(uCr4 & X86_CR4_PCIDE)
6746 && uPcid != 0)
6747 {
6748 Log(("invpcid: invalid pcid %#x\n", uPcid));
6749 return iemRaiseGeneralProtectionFault0(pVCpu);
6750 }
6751 /* Invalidate all mappings associated with PCID except global translations. */
6752 PGMFlushTLB(pVCpu, uCr3, false /* fGlobal */, false /* fPdpesMapped */);
6753 break;
6754 }
6755
6756 case X86_INVPCID_TYPE_ALL_CONTEXT_INCL_GLOBAL:
6757 {
6758 PGMFlushTLB(pVCpu, uCr3, true /* fGlobal */, false /* fPdpesMapped */);
6759 break;
6760 }
6761
6762 case X86_INVPCID_TYPE_ALL_CONTEXT_EXCL_GLOBAL:
6763 {
6764 PGMFlushTLB(pVCpu, uCr3, false /* fGlobal */, false /* fPdpesMapped */);
6765 break;
6766 }
6767 IEM_NOT_REACHED_DEFAULT_CASE_RET();
6768 }
6769 iemRegAddToRipAndClearRF(pVCpu, cbInstr);
6770 }
6771 return rcStrict;
6772}
6773
6774
6775/**
6776 * Implements INVD.
6777 */
6778IEM_CIMPL_DEF_0(iemCImpl_invd)
6779{
6780 if (pVCpu->iem.s.uCpl != 0)
6781 {
6782 Log(("invd: CPL != 0 -> #GP(0)\n"));
6783 return iemRaiseGeneralProtectionFault0(pVCpu);
6784 }
6785
6786 if (IEM_VMX_IS_NON_ROOT_MODE(pVCpu))
6787 IEM_VMX_VMEXIT_INSTR_RET(pVCpu, VMX_EXIT_INVD, cbInstr);
6788
6789 IEM_SVM_CHECK_INSTR_INTERCEPT(pVCpu, SVM_CTRL_INTERCEPT_INVD, SVM_EXIT_INVD, 0, 0);
6790
6791 /* We currently take no action here. */
6792 iemRegAddToRipAndClearRF(pVCpu, cbInstr);
6793 return VINF_SUCCESS;
6794}
6795
6796
6797/**
6798 * Implements WBINVD.
6799 */
6800IEM_CIMPL_DEF_0(iemCImpl_wbinvd)
6801{
6802 if (pVCpu->iem.s.uCpl != 0)
6803 {
6804 Log(("wbinvd: CPL != 0 -> #GP(0)\n"));
6805 return iemRaiseGeneralProtectionFault0(pVCpu);
6806 }
6807
6808 if (IEM_VMX_IS_NON_ROOT_MODE(pVCpu))
6809 IEM_VMX_VMEXIT_INSTR_RET(pVCpu, VMX_EXIT_WBINVD, cbInstr);
6810
6811 IEM_SVM_CHECK_INSTR_INTERCEPT(pVCpu, SVM_CTRL_INTERCEPT_WBINVD, SVM_EXIT_WBINVD, 0, 0);
6812
6813 /* We currently take no action here. */
6814 iemRegAddToRipAndClearRF(pVCpu, cbInstr);
6815 return VINF_SUCCESS;
6816}
6817
6818
6819/** Opcode 0x0f 0xaa. */
6820IEM_CIMPL_DEF_0(iemCImpl_rsm)
6821{
6822 IEM_SVM_CHECK_INSTR_INTERCEPT(pVCpu, SVM_CTRL_INTERCEPT_RSM, SVM_EXIT_RSM, 0, 0);
6823 NOREF(cbInstr);
6824 return iemRaiseUndefinedOpcode(pVCpu);
6825}
6826
6827
6828/**
6829 * Implements RDTSC.
6830 */
6831IEM_CIMPL_DEF_0(iemCImpl_rdtsc)
6832{
6833 /*
6834 * Check preconditions.
6835 */
6836 if (!IEM_GET_GUEST_CPU_FEATURES(pVCpu)->fTsc)
6837 return iemRaiseUndefinedOpcode(pVCpu);
6838
6839 if (pVCpu->iem.s.uCpl != 0)
6840 {
6841 IEM_CTX_ASSERT(pVCpu, CPUMCTX_EXTRN_CR4);
6842 if (pVCpu->cpum.GstCtx.cr4 & X86_CR4_TSD)
6843 {
6844 Log(("rdtsc: CR4.TSD and CPL=%u -> #GP(0)\n", pVCpu->iem.s.uCpl));
6845 return iemRaiseGeneralProtectionFault0(pVCpu);
6846 }
6847 }
6848
6849 if ( IEM_VMX_IS_NON_ROOT_MODE(pVCpu)
6850 && IEM_VMX_IS_PROCCTLS_SET(pVCpu, VMX_PROC_CTLS_RDTSC_EXIT))
6851 {
6852 Log(("rdtsc: Guest intercept -> VM-exit\n"));
6853 IEM_VMX_VMEXIT_INSTR_RET(pVCpu, VMX_EXIT_RDTSC, cbInstr);
6854 }
6855
6856 if (IEM_SVM_IS_CTRL_INTERCEPT_SET(pVCpu, SVM_CTRL_INTERCEPT_RDTSC))
6857 {
6858 Log(("rdtsc: Guest intercept -> #VMEXIT\n"));
6859 IEM_SVM_UPDATE_NRIP(pVCpu);
6860 IEM_SVM_VMEXIT_RET(pVCpu, SVM_EXIT_RDTSC, 0 /* uExitInfo1 */, 0 /* uExitInfo2 */);
6861 }
6862
6863 /*
6864 * Do the job.
6865 */
6866 uint64_t uTicks = TMCpuTickGet(pVCpu);
6867#if defined(VBOX_WITH_NESTED_HWVIRT_SVM) || defined(VBOX_WITH_NESTED_HWVIRT_VMX)
6868 uTicks = CPUMApplyNestedGuestTscOffset(pVCpu, uTicks);
6869#endif
6870 pVCpu->cpum.GstCtx.rax = RT_LO_U32(uTicks);
6871 pVCpu->cpum.GstCtx.rdx = RT_HI_U32(uTicks);
6872 pVCpu->cpum.GstCtx.fExtrn &= ~(CPUMCTX_EXTRN_RAX | CPUMCTX_EXTRN_RDX); /* For IEMExecDecodedRdtsc. */
6873 iemRegAddToRipAndClearRF(pVCpu, cbInstr);
6874 return VINF_SUCCESS;
6875}
6876
6877
6878/**
6879 * Implements RDTSC.
6880 */
6881IEM_CIMPL_DEF_0(iemCImpl_rdtscp)
6882{
6883 /*
6884 * Check preconditions.
6885 */
6886 if (!IEM_GET_GUEST_CPU_FEATURES(pVCpu)->fRdTscP)
6887 return iemRaiseUndefinedOpcode(pVCpu);
6888
6889 if ( IEM_VMX_IS_NON_ROOT_MODE(pVCpu)
6890 && !IEM_VMX_IS_PROCCTLS2_SET(pVCpu, VMX_PROC_CTLS2_RDTSCP))
6891 {
6892 Log(("rdtscp: Not enabled for VMX non-root mode -> #UD\n"));
6893 return iemRaiseUndefinedOpcode(pVCpu);
6894 }
6895
6896 if (pVCpu->iem.s.uCpl != 0)
6897 {
6898 IEM_CTX_ASSERT(pVCpu, CPUMCTX_EXTRN_CR4);
6899 if (pVCpu->cpum.GstCtx.cr4 & X86_CR4_TSD)
6900 {
6901 Log(("rdtscp: CR4.TSD and CPL=%u -> #GP(0)\n", pVCpu->iem.s.uCpl));
6902 return iemRaiseGeneralProtectionFault0(pVCpu);
6903 }
6904 }
6905
6906 if ( IEM_VMX_IS_NON_ROOT_MODE(pVCpu)
6907 && IEM_VMX_IS_PROCCTLS_SET(pVCpu, VMX_PROC_CTLS_RDTSC_EXIT))
6908 {
6909 Log(("rdtscp: Guest intercept -> VM-exit\n"));
6910 IEM_VMX_VMEXIT_INSTR_RET(pVCpu, VMX_EXIT_RDTSCP, cbInstr);
6911 }
6912 else if (IEM_SVM_IS_CTRL_INTERCEPT_SET(pVCpu, SVM_CTRL_INTERCEPT_RDTSCP))
6913 {
6914 Log(("rdtscp: Guest intercept -> #VMEXIT\n"));
6915 IEM_SVM_UPDATE_NRIP(pVCpu);
6916 IEM_SVM_VMEXIT_RET(pVCpu, SVM_EXIT_RDTSCP, 0 /* uExitInfo1 */, 0 /* uExitInfo2 */);
6917 }
6918
6919 /*
6920 * Do the job.
6921 * Query the MSR first in case of trips to ring-3.
6922 */
6923 IEM_CTX_IMPORT_RET(pVCpu, CPUMCTX_EXTRN_TSC_AUX);
6924 VBOXSTRICTRC rcStrict = CPUMQueryGuestMsr(pVCpu, MSR_K8_TSC_AUX, &pVCpu->cpum.GstCtx.rcx);
6925 if (rcStrict == VINF_SUCCESS)
6926 {
6927 /* Low dword of the TSC_AUX msr only. */
6928 pVCpu->cpum.GstCtx.rcx &= UINT32_C(0xffffffff);
6929
6930 uint64_t uTicks = TMCpuTickGet(pVCpu);
6931#if defined(VBOX_WITH_NESTED_HWVIRT_SVM) || defined(VBOX_WITH_NESTED_HWVIRT_VMX)
6932 uTicks = CPUMApplyNestedGuestTscOffset(pVCpu, uTicks);
6933#endif
6934 pVCpu->cpum.GstCtx.rax = RT_LO_U32(uTicks);
6935 pVCpu->cpum.GstCtx.rdx = RT_HI_U32(uTicks);
6936 pVCpu->cpum.GstCtx.fExtrn &= ~(CPUMCTX_EXTRN_RAX | CPUMCTX_EXTRN_RDX | CPUMCTX_EXTRN_RCX); /* For IEMExecDecodedRdtscp. */
6937 iemRegAddToRipAndClearRF(pVCpu, cbInstr);
6938 }
6939 return rcStrict;
6940}
6941
6942
6943/**
6944 * Implements RDPMC.
6945 */
6946IEM_CIMPL_DEF_0(iemCImpl_rdpmc)
6947{
6948 IEM_CTX_ASSERT(pVCpu, CPUMCTX_EXTRN_CR4);
6949
6950 if ( pVCpu->iem.s.uCpl != 0
6951 && !(pVCpu->cpum.GstCtx.cr4 & X86_CR4_PCE))
6952 return iemRaiseGeneralProtectionFault0(pVCpu);
6953
6954 if ( IEM_VMX_IS_NON_ROOT_MODE(pVCpu)
6955 && IEM_VMX_IS_PROCCTLS_SET(pVCpu, VMX_PROC_CTLS_RDPMC_EXIT))
6956 {
6957 Log(("rdpmc: Guest intercept -> VM-exit\n"));
6958 IEM_VMX_VMEXIT_INSTR_RET(pVCpu, VMX_EXIT_RDPMC, cbInstr);
6959 }
6960
6961 if (IEM_SVM_IS_CTRL_INTERCEPT_SET(pVCpu, SVM_CTRL_INTERCEPT_RDPMC))
6962 {
6963 Log(("rdpmc: Guest intercept -> #VMEXIT\n"));
6964 IEM_SVM_UPDATE_NRIP(pVCpu);
6965 IEM_SVM_VMEXIT_RET(pVCpu, SVM_EXIT_RDPMC, 0 /* uExitInfo1 */, 0 /* uExitInfo2 */);
6966 }
6967
6968 /** @todo Emulate performance counters, for now just return 0. */
6969 pVCpu->cpum.GstCtx.rax = 0;
6970 pVCpu->cpum.GstCtx.rdx = 0;
6971 pVCpu->cpum.GstCtx.fExtrn &= ~(CPUMCTX_EXTRN_RAX | CPUMCTX_EXTRN_RDX);
6972 /** @todo We should trigger a \#GP here if the CPU doesn't support the index in
6973 * ecx but see @bugref{3472}! */
6974
6975 iemRegAddToRipAndClearRF(pVCpu, cbInstr);
6976 return VINF_SUCCESS;
6977}
6978
6979
6980/**
6981 * Implements RDMSR.
6982 */
6983IEM_CIMPL_DEF_0(iemCImpl_rdmsr)
6984{
6985 /*
6986 * Check preconditions.
6987 */
6988 if (!IEM_GET_GUEST_CPU_FEATURES(pVCpu)->fMsr)
6989 return iemRaiseUndefinedOpcode(pVCpu);
6990 if (pVCpu->iem.s.uCpl != 0)
6991 return iemRaiseGeneralProtectionFault0(pVCpu);
6992
6993 /*
6994 * Check nested-guest intercepts.
6995 */
6996#ifdef VBOX_WITH_NESTED_HWVIRT_VMX
6997 if (IEM_VMX_IS_NON_ROOT_MODE(pVCpu))
6998 {
6999 if (iemVmxIsRdmsrWrmsrInterceptSet(pVCpu, VMX_EXIT_RDMSR, pVCpu->cpum.GstCtx.ecx))
7000 IEM_VMX_VMEXIT_INSTR_RET(pVCpu, VMX_EXIT_RDMSR, cbInstr);
7001 }
7002#endif
7003
7004#ifdef VBOX_WITH_NESTED_HWVIRT_SVM
7005 if (IEM_SVM_IS_CTRL_INTERCEPT_SET(pVCpu, SVM_CTRL_INTERCEPT_MSR_PROT))
7006 {
7007 VBOXSTRICTRC rcStrict = iemSvmHandleMsrIntercept(pVCpu, pVCpu->cpum.GstCtx.ecx, false /* fWrite */);
7008 if (rcStrict == VINF_SVM_VMEXIT)
7009 return VINF_SUCCESS;
7010 if (rcStrict != VINF_SVM_INTERCEPT_NOT_ACTIVE)
7011 {
7012 Log(("IEM: SVM intercepted rdmsr(%#x) failed. rc=%Rrc\n", pVCpu->cpum.GstCtx.ecx, VBOXSTRICTRC_VAL(rcStrict)));
7013 return rcStrict;
7014 }
7015 }
7016#endif
7017
7018 /*
7019 * Do the job.
7020 */
7021 RTUINT64U uValue;
7022 /** @todo make CPUMAllMsrs.cpp import the necessary MSR state. */
7023 IEM_CTX_IMPORT_RET(pVCpu, CPUMCTX_EXTRN_ALL_MSRS);
7024
7025 VBOXSTRICTRC rcStrict = CPUMQueryGuestMsr(pVCpu, pVCpu->cpum.GstCtx.ecx, &uValue.u);
7026 if (rcStrict == VINF_SUCCESS)
7027 {
7028 pVCpu->cpum.GstCtx.rax = uValue.s.Lo;
7029 pVCpu->cpum.GstCtx.rdx = uValue.s.Hi;
7030 pVCpu->cpum.GstCtx.fExtrn &= ~(CPUMCTX_EXTRN_RAX | CPUMCTX_EXTRN_RDX);
7031
7032 iemRegAddToRipAndClearRF(pVCpu, cbInstr);
7033 return VINF_SUCCESS;
7034 }
7035
7036#ifndef IN_RING3
7037 /* Deferred to ring-3. */
7038 if (rcStrict == VINF_CPUM_R3_MSR_READ)
7039 {
7040 Log(("IEM: rdmsr(%#x) -> ring-3\n", pVCpu->cpum.GstCtx.ecx));
7041 return rcStrict;
7042 }
7043#endif
7044
7045 /* Often a unimplemented MSR or MSR bit, so worth logging. */
7046 if (pVCpu->iem.s.cLogRelRdMsr < 32)
7047 {
7048 pVCpu->iem.s.cLogRelRdMsr++;
7049 LogRel(("IEM: rdmsr(%#x) -> #GP(0)\n", pVCpu->cpum.GstCtx.ecx));
7050 }
7051 else
7052 Log(( "IEM: rdmsr(%#x) -> #GP(0)\n", pVCpu->cpum.GstCtx.ecx));
7053 AssertMsgReturn(rcStrict == VERR_CPUM_RAISE_GP_0, ("%Rrc\n", VBOXSTRICTRC_VAL(rcStrict)), VERR_IPE_UNEXPECTED_STATUS);
7054 return iemRaiseGeneralProtectionFault0(pVCpu);
7055}
7056
7057
7058/**
7059 * Implements WRMSR.
7060 */
7061IEM_CIMPL_DEF_0(iemCImpl_wrmsr)
7062{
7063 /*
7064 * Check preconditions.
7065 */
7066 if (!IEM_GET_GUEST_CPU_FEATURES(pVCpu)->fMsr)
7067 return iemRaiseUndefinedOpcode(pVCpu);
7068 if (pVCpu->iem.s.uCpl != 0)
7069 return iemRaiseGeneralProtectionFault0(pVCpu);
7070
7071 RTUINT64U uValue;
7072 uValue.s.Lo = pVCpu->cpum.GstCtx.eax;
7073 uValue.s.Hi = pVCpu->cpum.GstCtx.edx;
7074
7075 uint32_t const idMsr = pVCpu->cpum.GstCtx.ecx;
7076
7077 /** @todo make CPUMAllMsrs.cpp import the necessary MSR state. */
7078 IEM_CTX_IMPORT_RET(pVCpu, CPUMCTX_EXTRN_ALL_MSRS);
7079
7080 /*
7081 * Check nested-guest intercepts.
7082 */
7083#ifdef VBOX_WITH_NESTED_HWVIRT_VMX
7084 if (IEM_VMX_IS_NON_ROOT_MODE(pVCpu))
7085 {
7086 if (iemVmxIsRdmsrWrmsrInterceptSet(pVCpu, VMX_EXIT_WRMSR, idMsr))
7087 IEM_VMX_VMEXIT_INSTR_RET(pVCpu, VMX_EXIT_WRMSR, cbInstr);
7088 }
7089#endif
7090
7091#ifdef VBOX_WITH_NESTED_HWVIRT_SVM
7092 if (IEM_SVM_IS_CTRL_INTERCEPT_SET(pVCpu, SVM_CTRL_INTERCEPT_MSR_PROT))
7093 {
7094 VBOXSTRICTRC rcStrict = iemSvmHandleMsrIntercept(pVCpu, idMsr, true /* fWrite */);
7095 if (rcStrict == VINF_SVM_VMEXIT)
7096 return VINF_SUCCESS;
7097 if (rcStrict != VINF_SVM_INTERCEPT_NOT_ACTIVE)
7098 {
7099 Log(("IEM: SVM intercepted rdmsr(%#x) failed. rc=%Rrc\n", idMsr, VBOXSTRICTRC_VAL(rcStrict)));
7100 return rcStrict;
7101 }
7102 }
7103#endif
7104
7105 /*
7106 * Do the job.
7107 */
7108 VBOXSTRICTRC rcStrict = CPUMSetGuestMsr(pVCpu, idMsr, uValue.u);
7109 if (rcStrict == VINF_SUCCESS)
7110 {
7111 iemRegAddToRipAndClearRF(pVCpu, cbInstr);
7112 return VINF_SUCCESS;
7113 }
7114
7115#ifndef IN_RING3
7116 /* Deferred to ring-3. */
7117 if (rcStrict == VINF_CPUM_R3_MSR_WRITE)
7118 {
7119 Log(("IEM: wrmsr(%#x) -> ring-3\n", idMsr));
7120 return rcStrict;
7121 }
7122#endif
7123
7124 /* Often a unimplemented MSR or MSR bit, so worth logging. */
7125 if (pVCpu->iem.s.cLogRelWrMsr < 32)
7126 {
7127 pVCpu->iem.s.cLogRelWrMsr++;
7128 LogRel(("IEM: wrmsr(%#x,%#x`%08x) -> #GP(0)\n", idMsr, uValue.s.Hi, uValue.s.Lo));
7129 }
7130 else
7131 Log(( "IEM: wrmsr(%#x,%#x`%08x) -> #GP(0)\n", idMsr, uValue.s.Hi, uValue.s.Lo));
7132 AssertMsgReturn(rcStrict == VERR_CPUM_RAISE_GP_0, ("%Rrc\n", VBOXSTRICTRC_VAL(rcStrict)), VERR_IPE_UNEXPECTED_STATUS);
7133 return iemRaiseGeneralProtectionFault0(pVCpu);
7134}
7135
7136
7137/**
7138 * Implements 'IN eAX, port'.
7139 *
7140 * @param u16Port The source port.
7141 * @param fImm Whether the port was specified through an immediate operand
7142 * or the implicit DX register.
7143 * @param cbReg The register size.
7144 */
7145IEM_CIMPL_DEF_3(iemCImpl_in, uint16_t, u16Port, bool, fImm, uint8_t, cbReg)
7146{
7147 /*
7148 * CPL check
7149 */
7150 VBOXSTRICTRC rcStrict = iemHlpCheckPortIOPermission(pVCpu, u16Port, cbReg);
7151 if (rcStrict != VINF_SUCCESS)
7152 return rcStrict;
7153
7154 /*
7155 * Check VMX nested-guest IO intercept.
7156 */
7157#ifdef VBOX_WITH_NESTED_HWVIRT_VMX
7158 if (IEM_VMX_IS_NON_ROOT_MODE(pVCpu))
7159 {
7160 rcStrict = iemVmxVmexitInstrIo(pVCpu, VMXINSTRID_IO_IN, u16Port, fImm, cbReg, cbInstr);
7161 if (rcStrict != VINF_VMX_INTERCEPT_NOT_ACTIVE)
7162 return rcStrict;
7163 }
7164#else
7165 RT_NOREF(fImm);
7166#endif
7167
7168 /*
7169 * Check SVM nested-guest IO intercept.
7170 */
7171#ifdef VBOX_WITH_NESTED_HWVIRT_SVM
7172 if (IEM_SVM_IS_CTRL_INTERCEPT_SET(pVCpu, SVM_CTRL_INTERCEPT_IOIO_PROT))
7173 {
7174 uint8_t cAddrSizeBits;
7175 switch (pVCpu->iem.s.enmEffAddrMode)
7176 {
7177 case IEMMODE_16BIT: cAddrSizeBits = 16; break;
7178 case IEMMODE_32BIT: cAddrSizeBits = 32; break;
7179 case IEMMODE_64BIT: cAddrSizeBits = 64; break;
7180 IEM_NOT_REACHED_DEFAULT_CASE_RET();
7181 }
7182 rcStrict = iemSvmHandleIOIntercept(pVCpu, u16Port, SVMIOIOTYPE_IN, cbReg, cAddrSizeBits, 0 /* N/A - iEffSeg */,
7183 false /* fRep */, false /* fStrIo */, cbInstr);
7184 if (rcStrict == VINF_SVM_VMEXIT)
7185 return VINF_SUCCESS;
7186 if (rcStrict != VINF_SVM_INTERCEPT_NOT_ACTIVE)
7187 {
7188 Log(("iemCImpl_in: iemSvmHandleIOIntercept failed (u16Port=%#x, cbReg=%u) rc=%Rrc\n", u16Port, cbReg,
7189 VBOXSTRICTRC_VAL(rcStrict)));
7190 return rcStrict;
7191 }
7192 }
7193#endif
7194
7195 /*
7196 * Perform the I/O.
7197 */
7198 uint32_t u32Value = 0;
7199 rcStrict = IOMIOPortRead(pVCpu->CTX_SUFF(pVM), pVCpu, u16Port, &u32Value, cbReg);
7200 if (IOM_SUCCESS(rcStrict))
7201 {
7202 switch (cbReg)
7203 {
7204 case 1: pVCpu->cpum.GstCtx.al = (uint8_t)u32Value; break;
7205 case 2: pVCpu->cpum.GstCtx.ax = (uint16_t)u32Value; break;
7206 case 4: pVCpu->cpum.GstCtx.rax = u32Value; break;
7207 default: AssertFailedReturn(VERR_IEM_IPE_3);
7208 }
7209 iemRegAddToRipAndClearRF(pVCpu, cbInstr);
7210 pVCpu->iem.s.cPotentialExits++;
7211 if (rcStrict != VINF_SUCCESS)
7212 rcStrict = iemSetPassUpStatus(pVCpu, rcStrict);
7213 Assert(rcStrict == VINF_SUCCESS); /* assumed below */
7214
7215 /*
7216 * Check for I/O breakpoints.
7217 */
7218 uint32_t const uDr7 = pVCpu->cpum.GstCtx.dr[7];
7219 if (RT_UNLIKELY( ( (uDr7 & X86_DR7_ENABLED_MASK)
7220 && X86_DR7_ANY_RW_IO(uDr7)
7221 && (pVCpu->cpum.GstCtx.cr4 & X86_CR4_DE))
7222 || DBGFBpIsHwIoArmed(pVCpu->CTX_SUFF(pVM))))
7223 {
7224 IEM_CTX_IMPORT_RET(pVCpu, CPUMCTX_EXTRN_DR0_DR3 | CPUMCTX_EXTRN_DR6);
7225 rcStrict = DBGFBpCheckIo(pVCpu->CTX_SUFF(pVM), pVCpu, IEM_GET_CTX(pVCpu), u16Port, cbReg);
7226 if (rcStrict == VINF_EM_RAW_GUEST_TRAP)
7227 rcStrict = iemRaiseDebugException(pVCpu);
7228 }
7229 }
7230
7231 return rcStrict;
7232}
7233
7234
7235/**
7236 * Implements 'IN eAX, DX'.
7237 *
7238 * @param cbReg The register size.
7239 */
7240IEM_CIMPL_DEF_1(iemCImpl_in_eAX_DX, uint8_t, cbReg)
7241{
7242 return IEM_CIMPL_CALL_3(iemCImpl_in, pVCpu->cpum.GstCtx.dx, false /* fImm */, cbReg);
7243}
7244
7245
7246/**
7247 * Implements 'OUT port, eAX'.
7248 *
7249 * @param u16Port The destination port.
7250 * @param fImm Whether the port was specified through an immediate operand
7251 * or the implicit DX register.
7252 * @param cbReg The register size.
7253 */
7254IEM_CIMPL_DEF_3(iemCImpl_out, uint16_t, u16Port, bool, fImm, uint8_t, cbReg)
7255{
7256 /*
7257 * CPL check
7258 */
7259 VBOXSTRICTRC rcStrict = iemHlpCheckPortIOPermission(pVCpu, u16Port, cbReg);
7260 if (rcStrict != VINF_SUCCESS)
7261 return rcStrict;
7262
7263 /*
7264 * Check VMX nested-guest I/O intercept.
7265 */
7266#ifdef VBOX_WITH_NESTED_HWVIRT_VMX
7267 if (IEM_VMX_IS_NON_ROOT_MODE(pVCpu))
7268 {
7269 rcStrict = iemVmxVmexitInstrIo(pVCpu, VMXINSTRID_IO_OUT, u16Port, fImm, cbReg, cbInstr);
7270 if (rcStrict != VINF_VMX_INTERCEPT_NOT_ACTIVE)
7271 return rcStrict;
7272 }
7273#else
7274 RT_NOREF(fImm);
7275#endif
7276
7277 /*
7278 * Check SVM nested-guest I/O intercept.
7279 */
7280#ifdef VBOX_WITH_NESTED_HWVIRT_SVM
7281 if (IEM_SVM_IS_CTRL_INTERCEPT_SET(pVCpu, SVM_CTRL_INTERCEPT_IOIO_PROT))
7282 {
7283 uint8_t cAddrSizeBits;
7284 switch (pVCpu->iem.s.enmEffAddrMode)
7285 {
7286 case IEMMODE_16BIT: cAddrSizeBits = 16; break;
7287 case IEMMODE_32BIT: cAddrSizeBits = 32; break;
7288 case IEMMODE_64BIT: cAddrSizeBits = 64; break;
7289 IEM_NOT_REACHED_DEFAULT_CASE_RET();
7290 }
7291 rcStrict = iemSvmHandleIOIntercept(pVCpu, u16Port, SVMIOIOTYPE_OUT, cbReg, cAddrSizeBits, 0 /* N/A - iEffSeg */,
7292 false /* fRep */, false /* fStrIo */, cbInstr);
7293 if (rcStrict == VINF_SVM_VMEXIT)
7294 return VINF_SUCCESS;
7295 if (rcStrict != VINF_SVM_INTERCEPT_NOT_ACTIVE)
7296 {
7297 Log(("iemCImpl_out: iemSvmHandleIOIntercept failed (u16Port=%#x, cbReg=%u) rc=%Rrc\n", u16Port, cbReg,
7298 VBOXSTRICTRC_VAL(rcStrict)));
7299 return rcStrict;
7300 }
7301 }
7302#endif
7303
7304 /*
7305 * Perform the I/O.
7306 */
7307 uint32_t u32Value;
7308 switch (cbReg)
7309 {
7310 case 1: u32Value = pVCpu->cpum.GstCtx.al; break;
7311 case 2: u32Value = pVCpu->cpum.GstCtx.ax; break;
7312 case 4: u32Value = pVCpu->cpum.GstCtx.eax; break;
7313 default: AssertFailedReturn(VERR_IEM_IPE_4);
7314 }
7315 rcStrict = IOMIOPortWrite(pVCpu->CTX_SUFF(pVM), pVCpu, u16Port, u32Value, cbReg);
7316 if (IOM_SUCCESS(rcStrict))
7317 {
7318 iemRegAddToRipAndClearRF(pVCpu, cbInstr);
7319 pVCpu->iem.s.cPotentialExits++;
7320 if (rcStrict != VINF_SUCCESS)
7321 rcStrict = iemSetPassUpStatus(pVCpu, rcStrict);
7322 Assert(rcStrict == VINF_SUCCESS); /* assumed below */
7323
7324 /*
7325 * Check for I/O breakpoints.
7326 */
7327 uint32_t const uDr7 = pVCpu->cpum.GstCtx.dr[7];
7328 if (RT_UNLIKELY( ( (uDr7 & X86_DR7_ENABLED_MASK)
7329 && X86_DR7_ANY_RW_IO(uDr7)
7330 && (pVCpu->cpum.GstCtx.cr4 & X86_CR4_DE))
7331 || DBGFBpIsHwIoArmed(pVCpu->CTX_SUFF(pVM))))
7332 {
7333 IEM_CTX_IMPORT_RET(pVCpu, CPUMCTX_EXTRN_DR0_DR3 | CPUMCTX_EXTRN_DR6);
7334 rcStrict = DBGFBpCheckIo(pVCpu->CTX_SUFF(pVM), pVCpu, IEM_GET_CTX(pVCpu), u16Port, cbReg);
7335 if (rcStrict == VINF_EM_RAW_GUEST_TRAP)
7336 rcStrict = iemRaiseDebugException(pVCpu);
7337 }
7338 }
7339 return rcStrict;
7340}
7341
7342
7343/**
7344 * Implements 'OUT DX, eAX'.
7345 *
7346 * @param cbReg The register size.
7347 */
7348IEM_CIMPL_DEF_1(iemCImpl_out_DX_eAX, uint8_t, cbReg)
7349{
7350 return IEM_CIMPL_CALL_3(iemCImpl_out, pVCpu->cpum.GstCtx.dx, false /* fImm */, cbReg);
7351}
7352
7353
7354/**
7355 * Implements 'CLI'.
7356 */
7357IEM_CIMPL_DEF_0(iemCImpl_cli)
7358{
7359 uint32_t fEfl = IEMMISC_GET_EFL(pVCpu);
7360 uint32_t const fEflOld = fEfl;
7361
7362 IEM_CTX_ASSERT(pVCpu, CPUMCTX_EXTRN_CR0 | CPUMCTX_EXTRN_CR4);
7363 if (pVCpu->cpum.GstCtx.cr0 & X86_CR0_PE)
7364 {
7365 uint8_t const uIopl = X86_EFL_GET_IOPL(fEfl);
7366 if (!(fEfl & X86_EFL_VM))
7367 {
7368 if (pVCpu->iem.s.uCpl <= uIopl)
7369 fEfl &= ~X86_EFL_IF;
7370 else if ( pVCpu->iem.s.uCpl == 3
7371 && (pVCpu->cpum.GstCtx.cr4 & X86_CR4_PVI) )
7372 fEfl &= ~X86_EFL_VIF;
7373 else
7374 return iemRaiseGeneralProtectionFault0(pVCpu);
7375 }
7376 /* V8086 */
7377 else if (uIopl == 3)
7378 fEfl &= ~X86_EFL_IF;
7379 else if ( uIopl < 3
7380 && (pVCpu->cpum.GstCtx.cr4 & X86_CR4_VME) )
7381 fEfl &= ~X86_EFL_VIF;
7382 else
7383 return iemRaiseGeneralProtectionFault0(pVCpu);
7384 }
7385 /* real mode */
7386 else
7387 fEfl &= ~X86_EFL_IF;
7388
7389 /* Commit. */
7390 IEMMISC_SET_EFL(pVCpu, fEfl);
7391 iemRegAddToRipAndClearRF(pVCpu, cbInstr);
7392 Log2(("CLI: %#x -> %#x\n", fEflOld, fEfl)); NOREF(fEflOld);
7393 return VINF_SUCCESS;
7394}
7395
7396
7397/**
7398 * Implements 'STI'.
7399 */
7400IEM_CIMPL_DEF_0(iemCImpl_sti)
7401{
7402 uint32_t fEfl = IEMMISC_GET_EFL(pVCpu);
7403 uint32_t const fEflOld = fEfl;
7404
7405 IEM_CTX_ASSERT(pVCpu, CPUMCTX_EXTRN_CR0 | CPUMCTX_EXTRN_CR4);
7406 if (pVCpu->cpum.GstCtx.cr0 & X86_CR0_PE)
7407 {
7408 uint8_t const uIopl = X86_EFL_GET_IOPL(fEfl);
7409 if (!(fEfl & X86_EFL_VM))
7410 {
7411 if (pVCpu->iem.s.uCpl <= uIopl)
7412 fEfl |= X86_EFL_IF;
7413 else if ( pVCpu->iem.s.uCpl == 3
7414 && (pVCpu->cpum.GstCtx.cr4 & X86_CR4_PVI)
7415 && !(fEfl & X86_EFL_VIP) )
7416 fEfl |= X86_EFL_VIF;
7417 else
7418 return iemRaiseGeneralProtectionFault0(pVCpu);
7419 }
7420 /* V8086 */
7421 else if (uIopl == 3)
7422 fEfl |= X86_EFL_IF;
7423 else if ( uIopl < 3
7424 && (pVCpu->cpum.GstCtx.cr4 & X86_CR4_VME)
7425 && !(fEfl & X86_EFL_VIP) )
7426 fEfl |= X86_EFL_VIF;
7427 else
7428 return iemRaiseGeneralProtectionFault0(pVCpu);
7429 }
7430 /* real mode */
7431 else
7432 fEfl |= X86_EFL_IF;
7433
7434 /* Commit. */
7435 IEMMISC_SET_EFL(pVCpu, fEfl);
7436 iemRegAddToRipAndClearRF(pVCpu, cbInstr);
7437 if (!(fEflOld & X86_EFL_IF) && (fEfl & X86_EFL_IF))
7438 EMSetInhibitInterruptsPC(pVCpu, pVCpu->cpum.GstCtx.rip);
7439 Log2(("STI: %#x -> %#x\n", fEflOld, fEfl));
7440 return VINF_SUCCESS;
7441}
7442
7443
7444/**
7445 * Implements 'HLT'.
7446 */
7447IEM_CIMPL_DEF_0(iemCImpl_hlt)
7448{
7449 if (pVCpu->iem.s.uCpl != 0)
7450 return iemRaiseGeneralProtectionFault0(pVCpu);
7451
7452 if ( IEM_VMX_IS_NON_ROOT_MODE(pVCpu)
7453 && IEM_VMX_IS_PROCCTLS_SET(pVCpu, VMX_PROC_CTLS_HLT_EXIT))
7454 {
7455 Log2(("hlt: Guest intercept -> VM-exit\n"));
7456 IEM_VMX_VMEXIT_INSTR_RET(pVCpu, VMX_EXIT_HLT, cbInstr);
7457 }
7458
7459 if (IEM_SVM_IS_CTRL_INTERCEPT_SET(pVCpu, SVM_CTRL_INTERCEPT_HLT))
7460 {
7461 Log2(("hlt: Guest intercept -> #VMEXIT\n"));
7462 IEM_SVM_UPDATE_NRIP(pVCpu);
7463 IEM_SVM_VMEXIT_RET(pVCpu, SVM_EXIT_HLT, 0 /* uExitInfo1 */, 0 /* uExitInfo2 */);
7464 }
7465
7466 iemRegAddToRipAndClearRF(pVCpu, cbInstr);
7467 return VINF_EM_HALT;
7468}
7469
7470
7471/**
7472 * Implements 'MONITOR'.
7473 */
7474IEM_CIMPL_DEF_1(iemCImpl_monitor, uint8_t, iEffSeg)
7475{
7476 /*
7477 * Permission checks.
7478 */
7479 if (pVCpu->iem.s.uCpl != 0)
7480 {
7481 Log2(("monitor: CPL != 0\n"));
7482 return iemRaiseUndefinedOpcode(pVCpu); /** @todo MSR[0xC0010015].MonMwaitUserEn if we care. */
7483 }
7484 if (!IEM_GET_GUEST_CPU_FEATURES(pVCpu)->fMonitorMWait)
7485 {
7486 Log2(("monitor: Not in CPUID\n"));
7487 return iemRaiseUndefinedOpcode(pVCpu);
7488 }
7489
7490 /*
7491 * Check VMX guest-intercept.
7492 * This should be considered a fault-like VM-exit.
7493 * See Intel spec. 25.1.1 "Relative Priority of Faults and VM Exits".
7494 */
7495 if ( IEM_VMX_IS_NON_ROOT_MODE(pVCpu)
7496 && IEM_VMX_IS_PROCCTLS_SET(pVCpu, VMX_PROC_CTLS_MONITOR_EXIT))
7497 {
7498 Log2(("monitor: Guest intercept -> #VMEXIT\n"));
7499 IEM_VMX_VMEXIT_INSTR_RET(pVCpu, VMX_EXIT_MONITOR, cbInstr);
7500 }
7501
7502 /*
7503 * Gather the operands and validate them.
7504 */
7505 RTGCPTR GCPtrMem = pVCpu->iem.s.enmCpuMode == IEMMODE_64BIT ? pVCpu->cpum.GstCtx.rax : pVCpu->cpum.GstCtx.eax;
7506 uint32_t uEcx = pVCpu->cpum.GstCtx.ecx;
7507 uint32_t uEdx = pVCpu->cpum.GstCtx.edx;
7508/** @todo Test whether EAX or ECX is processed first, i.e. do we get \#PF or
7509 * \#GP first. */
7510 if (uEcx != 0)
7511 {
7512 Log2(("monitor rax=%RX64, ecx=%RX32, edx=%RX32; ECX != 0 -> #GP(0)\n", GCPtrMem, uEcx, uEdx)); NOREF(uEdx);
7513 return iemRaiseGeneralProtectionFault0(pVCpu);
7514 }
7515
7516 VBOXSTRICTRC rcStrict = iemMemApplySegment(pVCpu, IEM_ACCESS_TYPE_READ | IEM_ACCESS_WHAT_DATA, iEffSeg, 1, &GCPtrMem);
7517 if (rcStrict != VINF_SUCCESS)
7518 return rcStrict;
7519
7520 RTGCPHYS GCPhysMem;
7521 rcStrict = iemMemPageTranslateAndCheckAccess(pVCpu, GCPtrMem, IEM_ACCESS_TYPE_READ | IEM_ACCESS_WHAT_DATA, &GCPhysMem);
7522 if (rcStrict != VINF_SUCCESS)
7523 return rcStrict;
7524
7525#ifdef VBOX_WITH_NESTED_HWVIRT_VMX
7526 if ( IEM_VMX_IS_NON_ROOT_MODE(pVCpu)
7527 && IEM_VMX_IS_PROCCTLS2_SET(pVCpu, VMX_PROC_CTLS2_VIRT_APIC_ACCESS))
7528 {
7529 /*
7530 * MONITOR does not access the memory, just monitors the address. However,
7531 * if the address falls in the APIC-access page, the address monitored must
7532 * instead be the corresponding address in the virtual-APIC page.
7533 *
7534 * See Intel spec. 29.4.4 "Instruction-Specific Considerations".
7535 */
7536 rcStrict = iemVmxVirtApicAccessUnused(pVCpu, &GCPhysMem);
7537 if ( rcStrict != VINF_VMX_INTERCEPT_NOT_ACTIVE
7538 && rcStrict != VINF_VMX_MODIFIES_BEHAVIOR)
7539 return rcStrict;
7540 }
7541#endif
7542
7543 if (IEM_SVM_IS_CTRL_INTERCEPT_SET(pVCpu, SVM_CTRL_INTERCEPT_MONITOR))
7544 {
7545 Log2(("monitor: Guest intercept -> #VMEXIT\n"));
7546 IEM_SVM_UPDATE_NRIP(pVCpu);
7547 IEM_SVM_VMEXIT_RET(pVCpu, SVM_EXIT_MONITOR, 0 /* uExitInfo1 */, 0 /* uExitInfo2 */);
7548 }
7549
7550 /*
7551 * Call EM to prepare the monitor/wait.
7552 */
7553 rcStrict = EMMonitorWaitPrepare(pVCpu, pVCpu->cpum.GstCtx.rax, pVCpu->cpum.GstCtx.rcx, pVCpu->cpum.GstCtx.rdx, GCPhysMem);
7554 Assert(rcStrict == VINF_SUCCESS);
7555
7556 iemRegAddToRipAndClearRF(pVCpu, cbInstr);
7557 return rcStrict;
7558}
7559
7560
7561/**
7562 * Implements 'MWAIT'.
7563 */
7564IEM_CIMPL_DEF_0(iemCImpl_mwait)
7565{
7566 /*
7567 * Permission checks.
7568 */
7569 if (pVCpu->iem.s.uCpl != 0)
7570 {
7571 Log2(("mwait: CPL != 0\n"));
7572 /** @todo MSR[0xC0010015].MonMwaitUserEn if we care. (Remember to check
7573 * EFLAGS.VM then.) */
7574 return iemRaiseUndefinedOpcode(pVCpu);
7575 }
7576 if (!IEM_GET_GUEST_CPU_FEATURES(pVCpu)->fMonitorMWait)
7577 {
7578 Log2(("mwait: Not in CPUID\n"));
7579 return iemRaiseUndefinedOpcode(pVCpu);
7580 }
7581
7582 /* Check VMX nested-guest intercept. */
7583 if ( IEM_VMX_IS_NON_ROOT_MODE(pVCpu)
7584 && IEM_VMX_IS_PROCCTLS_SET(pVCpu, VMX_PROC_CTLS_MWAIT_EXIT))
7585 IEM_VMX_VMEXIT_MWAIT_RET(pVCpu, EMMonitorIsArmed(pVCpu), cbInstr);
7586
7587 /*
7588 * Gather the operands and validate them.
7589 */
7590 uint32_t const uEax = pVCpu->cpum.GstCtx.eax;
7591 uint32_t const uEcx = pVCpu->cpum.GstCtx.ecx;
7592 if (uEcx != 0)
7593 {
7594 /* Only supported extension is break on IRQ when IF=0. */
7595 if (uEcx > 1)
7596 {
7597 Log2(("mwait eax=%RX32, ecx=%RX32; ECX > 1 -> #GP(0)\n", uEax, uEcx));
7598 return iemRaiseGeneralProtectionFault0(pVCpu);
7599 }
7600 uint32_t fMWaitFeatures = 0;
7601 uint32_t uIgnore = 0;
7602 CPUMGetGuestCpuId(pVCpu, 5, 0, &uIgnore, &uIgnore, &fMWaitFeatures, &uIgnore);
7603 if ( (fMWaitFeatures & (X86_CPUID_MWAIT_ECX_EXT | X86_CPUID_MWAIT_ECX_BREAKIRQIF0))
7604 != (X86_CPUID_MWAIT_ECX_EXT | X86_CPUID_MWAIT_ECX_BREAKIRQIF0))
7605 {
7606 Log2(("mwait eax=%RX32, ecx=%RX32; break-on-IRQ-IF=0 extension not enabled -> #GP(0)\n", uEax, uEcx));
7607 return iemRaiseGeneralProtectionFault0(pVCpu);
7608 }
7609
7610#ifdef VBOX_WITH_NESTED_HWVIRT_VMX
7611 /*
7612 * If the interrupt-window exiting control is set or a virtual-interrupt is pending
7613 * for delivery; and interrupts are disabled the processor does not enter its
7614 * mwait state but rather passes control to the next instruction.
7615 *
7616 * See Intel spec. 25.3 "Changes to Instruction Behavior In VMX Non-root Operation".
7617 */
7618 if ( IEM_VMX_IS_NON_ROOT_MODE(pVCpu)
7619 && !pVCpu->cpum.GstCtx.eflags.Bits.u1IF)
7620 {
7621 if ( IEM_VMX_IS_PROCCTLS_SET(pVCpu, VMX_PROC_CTLS_INT_WINDOW_EXIT)
7622 || VMCPU_FF_IS_SET(pVCpu, VMCPU_FF_INTERRUPT_NESTED_GUEST))
7623 {
7624 iemRegAddToRipAndClearRF(pVCpu, cbInstr);
7625 return VINF_SUCCESS;
7626 }
7627 }
7628#endif
7629 }
7630
7631 /*
7632 * Check SVM nested-guest mwait intercepts.
7633 */
7634 if ( IEM_SVM_IS_CTRL_INTERCEPT_SET(pVCpu, SVM_CTRL_INTERCEPT_MWAIT_ARMED)
7635 && EMMonitorIsArmed(pVCpu))
7636 {
7637 Log2(("mwait: Guest intercept (monitor hardware armed) -> #VMEXIT\n"));
7638 IEM_SVM_UPDATE_NRIP(pVCpu);
7639 IEM_SVM_VMEXIT_RET(pVCpu, SVM_EXIT_MWAIT_ARMED, 0 /* uExitInfo1 */, 0 /* uExitInfo2 */);
7640 }
7641 if (IEM_SVM_IS_CTRL_INTERCEPT_SET(pVCpu, SVM_CTRL_INTERCEPT_MWAIT))
7642 {
7643 Log2(("mwait: Guest intercept -> #VMEXIT\n"));
7644 IEM_SVM_UPDATE_NRIP(pVCpu);
7645 IEM_SVM_VMEXIT_RET(pVCpu, SVM_EXIT_MWAIT, 0 /* uExitInfo1 */, 0 /* uExitInfo2 */);
7646 }
7647
7648 /*
7649 * Call EM to prepare the monitor/wait.
7650 */
7651 VBOXSTRICTRC rcStrict = EMMonitorWaitPerform(pVCpu, uEax, uEcx);
7652
7653 iemRegAddToRipAndClearRF(pVCpu, cbInstr);
7654 return rcStrict;
7655}
7656
7657
7658/**
7659 * Implements 'SWAPGS'.
7660 */
7661IEM_CIMPL_DEF_0(iemCImpl_swapgs)
7662{
7663 Assert(pVCpu->iem.s.enmCpuMode == IEMMODE_64BIT); /* Caller checks this. */
7664
7665 /*
7666 * Permission checks.
7667 */
7668 if (pVCpu->iem.s.uCpl != 0)
7669 {
7670 Log2(("swapgs: CPL != 0\n"));
7671 return iemRaiseUndefinedOpcode(pVCpu);
7672 }
7673
7674 /*
7675 * Do the job.
7676 */
7677 IEM_CTX_IMPORT_RET(pVCpu, CPUMCTX_EXTRN_KERNEL_GS_BASE | CPUMCTX_EXTRN_GS);
7678 uint64_t uOtherGsBase = pVCpu->cpum.GstCtx.msrKERNELGSBASE;
7679 pVCpu->cpum.GstCtx.msrKERNELGSBASE = pVCpu->cpum.GstCtx.gs.u64Base;
7680 pVCpu->cpum.GstCtx.gs.u64Base = uOtherGsBase;
7681
7682 iemRegAddToRipAndClearRF(pVCpu, cbInstr);
7683 return VINF_SUCCESS;
7684}
7685
7686
7687/**
7688 * Implements 'CPUID'.
7689 */
7690IEM_CIMPL_DEF_0(iemCImpl_cpuid)
7691{
7692 if (IEM_VMX_IS_NON_ROOT_MODE(pVCpu))
7693 {
7694 Log2(("cpuid: Guest intercept -> VM-exit\n"));
7695 IEM_VMX_VMEXIT_INSTR_RET(pVCpu, VMX_EXIT_CPUID, cbInstr);
7696 }
7697
7698 if (IEM_SVM_IS_CTRL_INTERCEPT_SET(pVCpu, SVM_CTRL_INTERCEPT_CPUID))
7699 {
7700 Log2(("cpuid: Guest intercept -> #VMEXIT\n"));
7701 IEM_SVM_UPDATE_NRIP(pVCpu);
7702 IEM_SVM_VMEXIT_RET(pVCpu, SVM_EXIT_CPUID, 0 /* uExitInfo1 */, 0 /* uExitInfo2 */);
7703 }
7704
7705 CPUMGetGuestCpuId(pVCpu, pVCpu->cpum.GstCtx.eax, pVCpu->cpum.GstCtx.ecx,
7706 &pVCpu->cpum.GstCtx.eax, &pVCpu->cpum.GstCtx.ebx, &pVCpu->cpum.GstCtx.ecx, &pVCpu->cpum.GstCtx.edx);
7707 pVCpu->cpum.GstCtx.rax &= UINT32_C(0xffffffff);
7708 pVCpu->cpum.GstCtx.rbx &= UINT32_C(0xffffffff);
7709 pVCpu->cpum.GstCtx.rcx &= UINT32_C(0xffffffff);
7710 pVCpu->cpum.GstCtx.rdx &= UINT32_C(0xffffffff);
7711 pVCpu->cpum.GstCtx.fExtrn &= ~(CPUMCTX_EXTRN_RAX | CPUMCTX_EXTRN_RCX | CPUMCTX_EXTRN_RDX | CPUMCTX_EXTRN_RBX);
7712
7713 iemRegAddToRipAndClearRF(pVCpu, cbInstr);
7714 pVCpu->iem.s.cPotentialExits++;
7715 return VINF_SUCCESS;
7716}
7717
7718
7719/**
7720 * Implements 'AAD'.
7721 *
7722 * @param bImm The immediate operand.
7723 */
7724IEM_CIMPL_DEF_1(iemCImpl_aad, uint8_t, bImm)
7725{
7726 uint16_t const ax = pVCpu->cpum.GstCtx.ax;
7727 uint8_t const al = (uint8_t)ax + (uint8_t)(ax >> 8) * bImm;
7728 pVCpu->cpum.GstCtx.ax = al;
7729 iemHlpUpdateArithEFlagsU8(pVCpu, al,
7730 X86_EFL_SF | X86_EFL_ZF | X86_EFL_PF,
7731 X86_EFL_OF | X86_EFL_AF | X86_EFL_CF);
7732
7733 iemRegAddToRipAndClearRF(pVCpu, cbInstr);
7734 return VINF_SUCCESS;
7735}
7736
7737
7738/**
7739 * Implements 'AAM'.
7740 *
7741 * @param bImm The immediate operand. Cannot be 0.
7742 */
7743IEM_CIMPL_DEF_1(iemCImpl_aam, uint8_t, bImm)
7744{
7745 Assert(bImm != 0); /* #DE on 0 is handled in the decoder. */
7746
7747 uint16_t const ax = pVCpu->cpum.GstCtx.ax;
7748 uint8_t const al = (uint8_t)ax % bImm;
7749 uint8_t const ah = (uint8_t)ax / bImm;
7750 pVCpu->cpum.GstCtx.ax = (ah << 8) + al;
7751 iemHlpUpdateArithEFlagsU8(pVCpu, al,
7752 X86_EFL_SF | X86_EFL_ZF | X86_EFL_PF,
7753 X86_EFL_OF | X86_EFL_AF | X86_EFL_CF);
7754
7755 iemRegAddToRipAndClearRF(pVCpu, cbInstr);
7756 return VINF_SUCCESS;
7757}
7758
7759
7760/**
7761 * Implements 'DAA'.
7762 */
7763IEM_CIMPL_DEF_0(iemCImpl_daa)
7764{
7765 uint8_t const al = pVCpu->cpum.GstCtx.al;
7766 bool const fCarry = pVCpu->cpum.GstCtx.eflags.Bits.u1CF;
7767
7768 if ( pVCpu->cpum.GstCtx.eflags.Bits.u1AF
7769 || (al & 0xf) >= 10)
7770 {
7771 pVCpu->cpum.GstCtx.al = al + 6;
7772 pVCpu->cpum.GstCtx.eflags.Bits.u1AF = 1;
7773 }
7774 else
7775 pVCpu->cpum.GstCtx.eflags.Bits.u1AF = 0;
7776
7777 if (al >= 0x9a || fCarry)
7778 {
7779 pVCpu->cpum.GstCtx.al += 0x60;
7780 pVCpu->cpum.GstCtx.eflags.Bits.u1CF = 1;
7781 }
7782 else
7783 pVCpu->cpum.GstCtx.eflags.Bits.u1CF = 0;
7784
7785 iemHlpUpdateArithEFlagsU8(pVCpu, pVCpu->cpum.GstCtx.al, X86_EFL_SF | X86_EFL_ZF | X86_EFL_PF, X86_EFL_OF);
7786 iemRegAddToRipAndClearRF(pVCpu, cbInstr);
7787 return VINF_SUCCESS;
7788}
7789
7790
7791/**
7792 * Implements 'DAS'.
7793 */
7794IEM_CIMPL_DEF_0(iemCImpl_das)
7795{
7796 uint8_t const uInputAL = pVCpu->cpum.GstCtx.al;
7797 bool const fCarry = pVCpu->cpum.GstCtx.eflags.Bits.u1CF;
7798
7799 if ( pVCpu->cpum.GstCtx.eflags.Bits.u1AF
7800 || (uInputAL & 0xf) >= 10)
7801 {
7802 pVCpu->cpum.GstCtx.eflags.Bits.u1AF = 1;
7803 if (uInputAL < 6)
7804 pVCpu->cpum.GstCtx.eflags.Bits.u1CF = 1;
7805 pVCpu->cpum.GstCtx.al = uInputAL - 6;
7806 }
7807 else
7808 {
7809 pVCpu->cpum.GstCtx.eflags.Bits.u1AF = 0;
7810 pVCpu->cpum.GstCtx.eflags.Bits.u1CF = 0;
7811 }
7812
7813 if (uInputAL >= 0x9a || fCarry)
7814 {
7815 pVCpu->cpum.GstCtx.al -= 0x60;
7816 pVCpu->cpum.GstCtx.eflags.Bits.u1CF = 1;
7817 }
7818
7819 iemHlpUpdateArithEFlagsU8(pVCpu, pVCpu->cpum.GstCtx.al, X86_EFL_SF | X86_EFL_ZF | X86_EFL_PF, X86_EFL_OF);
7820 iemRegAddToRipAndClearRF(pVCpu, cbInstr);
7821 return VINF_SUCCESS;
7822}
7823
7824
7825/**
7826 * Implements 'AAA'.
7827 */
7828IEM_CIMPL_DEF_0(iemCImpl_aaa)
7829{
7830 if (IEM_IS_GUEST_CPU_AMD(pVCpu))
7831 {
7832 if ( pVCpu->cpum.GstCtx.eflags.Bits.u1AF
7833 || (pVCpu->cpum.GstCtx.ax & 0xf) >= 10)
7834 {
7835 iemAImpl_add_u16(&pVCpu->cpum.GstCtx.ax, 0x106, &pVCpu->cpum.GstCtx.eflags.u32);
7836 pVCpu->cpum.GstCtx.eflags.Bits.u1AF = 1;
7837 pVCpu->cpum.GstCtx.eflags.Bits.u1CF = 1;
7838 }
7839 else
7840 {
7841 iemHlpUpdateArithEFlagsU16(pVCpu, pVCpu->cpum.GstCtx.ax, X86_EFL_SF | X86_EFL_ZF | X86_EFL_PF, X86_EFL_OF);
7842 pVCpu->cpum.GstCtx.eflags.Bits.u1AF = 0;
7843 pVCpu->cpum.GstCtx.eflags.Bits.u1CF = 0;
7844 }
7845 pVCpu->cpum.GstCtx.ax &= UINT16_C(0xff0f);
7846 }
7847 else
7848 {
7849 if ( pVCpu->cpum.GstCtx.eflags.Bits.u1AF
7850 || (pVCpu->cpum.GstCtx.ax & 0xf) >= 10)
7851 {
7852 pVCpu->cpum.GstCtx.ax += UINT16_C(0x106);
7853 pVCpu->cpum.GstCtx.eflags.Bits.u1AF = 1;
7854 pVCpu->cpum.GstCtx.eflags.Bits.u1CF = 1;
7855 }
7856 else
7857 {
7858 pVCpu->cpum.GstCtx.eflags.Bits.u1AF = 0;
7859 pVCpu->cpum.GstCtx.eflags.Bits.u1CF = 0;
7860 }
7861 pVCpu->cpum.GstCtx.ax &= UINT16_C(0xff0f);
7862 iemHlpUpdateArithEFlagsU8(pVCpu, pVCpu->cpum.GstCtx.al, X86_EFL_SF | X86_EFL_ZF | X86_EFL_PF, X86_EFL_OF);
7863 }
7864
7865 iemRegAddToRipAndClearRF(pVCpu, cbInstr);
7866 return VINF_SUCCESS;
7867}
7868
7869
7870/**
7871 * Implements 'AAS'.
7872 */
7873IEM_CIMPL_DEF_0(iemCImpl_aas)
7874{
7875 if (IEM_IS_GUEST_CPU_AMD(pVCpu))
7876 {
7877 if ( pVCpu->cpum.GstCtx.eflags.Bits.u1AF
7878 || (pVCpu->cpum.GstCtx.ax & 0xf) >= 10)
7879 {
7880 iemAImpl_sub_u16(&pVCpu->cpum.GstCtx.ax, 0x106, &pVCpu->cpum.GstCtx.eflags.u32);
7881 pVCpu->cpum.GstCtx.eflags.Bits.u1AF = 1;
7882 pVCpu->cpum.GstCtx.eflags.Bits.u1CF = 1;
7883 }
7884 else
7885 {
7886 iemHlpUpdateArithEFlagsU16(pVCpu, pVCpu->cpum.GstCtx.ax, X86_EFL_SF | X86_EFL_ZF | X86_EFL_PF, X86_EFL_OF);
7887 pVCpu->cpum.GstCtx.eflags.Bits.u1AF = 0;
7888 pVCpu->cpum.GstCtx.eflags.Bits.u1CF = 0;
7889 }
7890 pVCpu->cpum.GstCtx.ax &= UINT16_C(0xff0f);
7891 }
7892 else
7893 {
7894 if ( pVCpu->cpum.GstCtx.eflags.Bits.u1AF
7895 || (pVCpu->cpum.GstCtx.ax & 0xf) >= 10)
7896 {
7897 pVCpu->cpum.GstCtx.ax -= UINT16_C(0x106);
7898 pVCpu->cpum.GstCtx.eflags.Bits.u1AF = 1;
7899 pVCpu->cpum.GstCtx.eflags.Bits.u1CF = 1;
7900 }
7901 else
7902 {
7903 pVCpu->cpum.GstCtx.eflags.Bits.u1AF = 0;
7904 pVCpu->cpum.GstCtx.eflags.Bits.u1CF = 0;
7905 }
7906 pVCpu->cpum.GstCtx.ax &= UINT16_C(0xff0f);
7907 iemHlpUpdateArithEFlagsU8(pVCpu, pVCpu->cpum.GstCtx.al, X86_EFL_SF | X86_EFL_ZF | X86_EFL_PF, X86_EFL_OF);
7908 }
7909
7910 iemRegAddToRipAndClearRF(pVCpu, cbInstr);
7911 return VINF_SUCCESS;
7912}
7913
7914
7915/**
7916 * Implements the 16-bit version of 'BOUND'.
7917 *
7918 * @note We have separate 16-bit and 32-bit variants of this function due to
7919 * the decoder using unsigned parameters, whereas we want signed one to
7920 * do the job. This is significant for a recompiler.
7921 */
7922IEM_CIMPL_DEF_3(iemCImpl_bound_16, int16_t, idxArray, int16_t, idxLowerBound, int16_t, idxUpperBound)
7923{
7924 /*
7925 * Check if the index is inside the bounds, otherwise raise #BR.
7926 */
7927 if ( idxArray >= idxLowerBound
7928 && idxArray <= idxUpperBound)
7929 {
7930 iemRegAddToRipAndClearRF(pVCpu, cbInstr);
7931 return VINF_SUCCESS;
7932 }
7933
7934 return iemRaiseBoundRangeExceeded(pVCpu);
7935}
7936
7937
7938/**
7939 * Implements the 32-bit version of 'BOUND'.
7940 */
7941IEM_CIMPL_DEF_3(iemCImpl_bound_32, int32_t, idxArray, int32_t, idxLowerBound, int32_t, idxUpperBound)
7942{
7943 /*
7944 * Check if the index is inside the bounds, otherwise raise #BR.
7945 */
7946 if ( idxArray >= idxLowerBound
7947 && idxArray <= idxUpperBound)
7948 {
7949 iemRegAddToRipAndClearRF(pVCpu, cbInstr);
7950 return VINF_SUCCESS;
7951 }
7952
7953 return iemRaiseBoundRangeExceeded(pVCpu);
7954}
7955
7956
7957
7958/*
7959 * Instantiate the various string operation combinations.
7960 */
7961#define OP_SIZE 8
7962#define ADDR_SIZE 16
7963#include "IEMAllCImplStrInstr.cpp.h"
7964#define OP_SIZE 8
7965#define ADDR_SIZE 32
7966#include "IEMAllCImplStrInstr.cpp.h"
7967#define OP_SIZE 8
7968#define ADDR_SIZE 64
7969#include "IEMAllCImplStrInstr.cpp.h"
7970
7971#define OP_SIZE 16
7972#define ADDR_SIZE 16
7973#include "IEMAllCImplStrInstr.cpp.h"
7974#define OP_SIZE 16
7975#define ADDR_SIZE 32
7976#include "IEMAllCImplStrInstr.cpp.h"
7977#define OP_SIZE 16
7978#define ADDR_SIZE 64
7979#include "IEMAllCImplStrInstr.cpp.h"
7980
7981#define OP_SIZE 32
7982#define ADDR_SIZE 16
7983#include "IEMAllCImplStrInstr.cpp.h"
7984#define OP_SIZE 32
7985#define ADDR_SIZE 32
7986#include "IEMAllCImplStrInstr.cpp.h"
7987#define OP_SIZE 32
7988#define ADDR_SIZE 64
7989#include "IEMAllCImplStrInstr.cpp.h"
7990
7991#define OP_SIZE 64
7992#define ADDR_SIZE 32
7993#include "IEMAllCImplStrInstr.cpp.h"
7994#define OP_SIZE 64
7995#define ADDR_SIZE 64
7996#include "IEMAllCImplStrInstr.cpp.h"
7997
7998
7999/**
8000 * Implements 'XGETBV'.
8001 */
8002IEM_CIMPL_DEF_0(iemCImpl_xgetbv)
8003{
8004 IEM_CTX_ASSERT(pVCpu, CPUMCTX_EXTRN_CR4);
8005 if (pVCpu->cpum.GstCtx.cr4 & X86_CR4_OSXSAVE)
8006 {
8007 uint32_t uEcx = pVCpu->cpum.GstCtx.ecx;
8008 switch (uEcx)
8009 {
8010 case 0:
8011 break;
8012
8013 case 1: /** @todo Implement XCR1 support. */
8014 default:
8015 Log(("xgetbv ecx=%RX32 -> #GP(0)\n", uEcx));
8016 return iemRaiseGeneralProtectionFault0(pVCpu);
8017
8018 }
8019 IEM_CTX_IMPORT_RET(pVCpu, CPUMCTX_EXTRN_XCRx);
8020 pVCpu->cpum.GstCtx.rax = RT_LO_U32(pVCpu->cpum.GstCtx.aXcr[uEcx]);
8021 pVCpu->cpum.GstCtx.rdx = RT_HI_U32(pVCpu->cpum.GstCtx.aXcr[uEcx]);
8022
8023 iemRegAddToRipAndClearRF(pVCpu, cbInstr);
8024 return VINF_SUCCESS;
8025 }
8026 Log(("xgetbv CR4.OSXSAVE=0 -> UD\n"));
8027 return iemRaiseUndefinedOpcode(pVCpu);
8028}
8029
8030
8031/**
8032 * Implements 'XSETBV'.
8033 */
8034IEM_CIMPL_DEF_0(iemCImpl_xsetbv)
8035{
8036 if (pVCpu->cpum.GstCtx.cr4 & X86_CR4_OSXSAVE)
8037 {
8038 if (IEM_SVM_IS_CTRL_INTERCEPT_SET(pVCpu, SVM_CTRL_INTERCEPT_XSETBV))
8039 {
8040 Log2(("xsetbv: Guest intercept -> #VMEXIT\n"));
8041 IEM_SVM_UPDATE_NRIP(pVCpu);
8042 IEM_SVM_VMEXIT_RET(pVCpu, SVM_EXIT_XSETBV, 0 /* uExitInfo1 */, 0 /* uExitInfo2 */);
8043 }
8044
8045 if (pVCpu->iem.s.uCpl == 0)
8046 {
8047 IEM_CTX_IMPORT_RET(pVCpu, CPUMCTX_EXTRN_XCRx);
8048
8049 if (IEM_VMX_IS_NON_ROOT_MODE(pVCpu))
8050 IEM_VMX_VMEXIT_INSTR_RET(pVCpu, VMX_EXIT_XSETBV, cbInstr);
8051
8052 uint32_t uEcx = pVCpu->cpum.GstCtx.ecx;
8053 uint64_t uNewValue = RT_MAKE_U64(pVCpu->cpum.GstCtx.eax, pVCpu->cpum.GstCtx.edx);
8054 switch (uEcx)
8055 {
8056 case 0:
8057 {
8058 int rc = CPUMSetGuestXcr0(pVCpu, uNewValue);
8059 if (rc == VINF_SUCCESS)
8060 break;
8061 Assert(rc == VERR_CPUM_RAISE_GP_0);
8062 Log(("xsetbv ecx=%RX32 (newvalue=%RX64) -> #GP(0)\n", uEcx, uNewValue));
8063 return iemRaiseGeneralProtectionFault0(pVCpu);
8064 }
8065
8066 case 1: /** @todo Implement XCR1 support. */
8067 default:
8068 Log(("xsetbv ecx=%RX32 (newvalue=%RX64) -> #GP(0)\n", uEcx, uNewValue));
8069 return iemRaiseGeneralProtectionFault0(pVCpu);
8070
8071 }
8072
8073 iemRegAddToRipAndClearRF(pVCpu, cbInstr);
8074 return VINF_SUCCESS;
8075 }
8076
8077 Log(("xsetbv cpl=%u -> GP(0)\n", pVCpu->iem.s.uCpl));
8078 return iemRaiseGeneralProtectionFault0(pVCpu);
8079 }
8080 Log(("xsetbv CR4.OSXSAVE=0 -> UD\n"));
8081 return iemRaiseUndefinedOpcode(pVCpu);
8082}
8083
8084#ifdef IN_RING3
8085
8086/** Argument package for iemCImpl_cmpxchg16b_fallback_rendezvous_callback. */
8087struct IEMCIMPLCX16ARGS
8088{
8089 PRTUINT128U pu128Dst;
8090 PRTUINT128U pu128RaxRdx;
8091 PRTUINT128U pu128RbxRcx;
8092 uint32_t *pEFlags;
8093# ifdef VBOX_STRICT
8094 uint32_t cCalls;
8095# endif
8096};
8097
8098/**
8099 * @callback_method_impl{FNVMMEMTRENDEZVOUS,
8100 * Worker for iemCImpl_cmpxchg16b_fallback_rendezvous}
8101 */
8102static DECLCALLBACK(VBOXSTRICTRC) iemCImpl_cmpxchg16b_fallback_rendezvous_callback(PVM pVM, PVMCPUCC pVCpu, void *pvUser)
8103{
8104 RT_NOREF(pVM, pVCpu);
8105 struct IEMCIMPLCX16ARGS *pArgs = (struct IEMCIMPLCX16ARGS *)pvUser;
8106# ifdef VBOX_STRICT
8107 Assert(pArgs->cCalls == 0);
8108 pArgs->cCalls++;
8109# endif
8110
8111 iemAImpl_cmpxchg16b_fallback(pArgs->pu128Dst, pArgs->pu128RaxRdx, pArgs->pu128RbxRcx, pArgs->pEFlags);
8112 return VINF_SUCCESS;
8113}
8114
8115#endif /* IN_RING3 */
8116
8117/**
8118 * Implements 'CMPXCHG16B' fallback using rendezvous.
8119 */
8120IEM_CIMPL_DEF_4(iemCImpl_cmpxchg16b_fallback_rendezvous, PRTUINT128U, pu128Dst, PRTUINT128U, pu128RaxRdx,
8121 PRTUINT128U, pu128RbxRcx, uint32_t *, pEFlags)
8122{
8123#ifdef IN_RING3
8124 struct IEMCIMPLCX16ARGS Args;
8125 Args.pu128Dst = pu128Dst;
8126 Args.pu128RaxRdx = pu128RaxRdx;
8127 Args.pu128RbxRcx = pu128RbxRcx;
8128 Args.pEFlags = pEFlags;
8129# ifdef VBOX_STRICT
8130 Args.cCalls = 0;
8131# endif
8132 VBOXSTRICTRC rcStrict = VMMR3EmtRendezvous(pVCpu->CTX_SUFF(pVM), VMMEMTRENDEZVOUS_FLAGS_TYPE_ONCE,
8133 iemCImpl_cmpxchg16b_fallback_rendezvous_callback, &Args);
8134 Assert(Args.cCalls == 1);
8135 if (rcStrict == VINF_SUCCESS)
8136 {
8137 /* Duplicated tail code. */
8138 rcStrict = iemMemCommitAndUnmap(pVCpu, pu128Dst, IEM_ACCESS_DATA_RW);
8139 if (rcStrict == VINF_SUCCESS)
8140 {
8141 pVCpu->cpum.GstCtx.eflags.u = *pEFlags; /* IEM_MC_COMMIT_EFLAGS */
8142 if (!(*pEFlags & X86_EFL_ZF))
8143 {
8144 pVCpu->cpum.GstCtx.rax = pu128RaxRdx->s.Lo;
8145 pVCpu->cpum.GstCtx.rdx = pu128RaxRdx->s.Hi;
8146 }
8147 iemRegAddToRipAndClearRF(pVCpu, cbInstr);
8148 }
8149 }
8150 return rcStrict;
8151#else
8152 RT_NOREF(pVCpu, cbInstr, pu128Dst, pu128RaxRdx, pu128RbxRcx, pEFlags);
8153 return VERR_IEM_ASPECT_NOT_IMPLEMENTED; /* This should get us to ring-3 for now. Should perhaps be replaced later. */
8154#endif
8155}
8156
8157
8158/**
8159 * Implements 'CLFLUSH' and 'CLFLUSHOPT'.
8160 *
8161 * This is implemented in C because it triggers a load like behaviour without
8162 * actually reading anything. Since that's not so common, it's implemented
8163 * here.
8164 *
8165 * @param iEffSeg The effective segment.
8166 * @param GCPtrEff The address of the image.
8167 */
8168IEM_CIMPL_DEF_2(iemCImpl_clflush_clflushopt, uint8_t, iEffSeg, RTGCPTR, GCPtrEff)
8169{
8170 /*
8171 * Pretend to do a load w/o reading (see also iemCImpl_monitor and iemMemMap).
8172 */
8173 VBOXSTRICTRC rcStrict = iemMemApplySegment(pVCpu, IEM_ACCESS_TYPE_READ | IEM_ACCESS_WHAT_DATA, iEffSeg, 1, &GCPtrEff);
8174 if (rcStrict == VINF_SUCCESS)
8175 {
8176 RTGCPHYS GCPhysMem;
8177 rcStrict = iemMemPageTranslateAndCheckAccess(pVCpu, GCPtrEff, IEM_ACCESS_TYPE_READ | IEM_ACCESS_WHAT_DATA, &GCPhysMem);
8178 if (rcStrict == VINF_SUCCESS)
8179 {
8180#ifdef VBOX_WITH_NESTED_HWVIRT_VMX
8181 if ( IEM_VMX_IS_NON_ROOT_MODE(pVCpu)
8182 && IEM_VMX_IS_PROCCTLS2_SET(pVCpu, VMX_PROC_CTLS2_VIRT_APIC_ACCESS))
8183 {
8184 /*
8185 * CLFLUSH/CLFLUSHOPT does not access the memory, but flushes the cache-line
8186 * that contains the address. However, if the address falls in the APIC-access
8187 * page, the address flushed must instead be the corresponding address in the
8188 * virtual-APIC page.
8189 *
8190 * See Intel spec. 29.4.4 "Instruction-Specific Considerations".
8191 */
8192 rcStrict = iemVmxVirtApicAccessUnused(pVCpu, &GCPhysMem);
8193 if ( rcStrict != VINF_VMX_INTERCEPT_NOT_ACTIVE
8194 && rcStrict != VINF_VMX_MODIFIES_BEHAVIOR)
8195 return rcStrict;
8196 }
8197#endif
8198 iemRegAddToRipAndClearRF(pVCpu, cbInstr);
8199 return VINF_SUCCESS;
8200 }
8201 }
8202
8203 return rcStrict;
8204}
8205
8206
8207/**
8208 * Implements 'FINIT' and 'FNINIT'.
8209 *
8210 * @param fCheckXcpts Whether to check for umasked pending exceptions or
8211 * not.
8212 */
8213IEM_CIMPL_DEF_1(iemCImpl_finit, bool, fCheckXcpts)
8214{
8215 IEM_CTX_ASSERT(pVCpu, CPUMCTX_EXTRN_CR0);
8216 if (pVCpu->cpum.GstCtx.cr0 & (X86_CR0_EM | X86_CR0_TS))
8217 return iemRaiseDeviceNotAvailable(pVCpu);
8218
8219 iemFpuActualizeStateForChange(pVCpu);
8220 IEM_CTX_ASSERT(pVCpu, CPUMCTX_EXTRN_X87);
8221
8222 NOREF(fCheckXcpts); /** @todo trigger pending exceptions:
8223 if (fCheckXcpts && TODO )
8224 return iemRaiseMathFault(pVCpu);
8225 */
8226
8227 PX86XSAVEAREA pXState = &pVCpu->cpum.GstCtx.XState;
8228 pXState->x87.FCW = 0x37f;
8229 pXState->x87.FSW = 0;
8230 pXState->x87.FTW = 0x00; /* 0 - empty. */
8231 pXState->x87.FPUDP = 0;
8232 pXState->x87.DS = 0; //??
8233 pXState->x87.Rsrvd2= 0;
8234 pXState->x87.FPUIP = 0;
8235 pXState->x87.CS = 0; //??
8236 pXState->x87.Rsrvd1= 0;
8237 pXState->x87.FOP = 0;
8238
8239 iemHlpUsedFpu(pVCpu);
8240 iemRegAddToRipAndClearRF(pVCpu, cbInstr);
8241 return VINF_SUCCESS;
8242}
8243
8244
8245/**
8246 * Implements 'FXSAVE'.
8247 *
8248 * @param iEffSeg The effective segment.
8249 * @param GCPtrEff The address of the image.
8250 * @param enmEffOpSize The operand size (only REX.W really matters).
8251 */
8252IEM_CIMPL_DEF_3(iemCImpl_fxsave, uint8_t, iEffSeg, RTGCPTR, GCPtrEff, IEMMODE, enmEffOpSize)
8253{
8254 IEM_CTX_ASSERT(pVCpu, CPUMCTX_EXTRN_CR0 | CPUMCTX_EXTRN_X87 | CPUMCTX_EXTRN_SSE_AVX);
8255
8256 /*
8257 * Raise exceptions.
8258 */
8259 if (pVCpu->cpum.GstCtx.cr0 & X86_CR0_EM)
8260 return iemRaiseUndefinedOpcode(pVCpu);
8261 if (pVCpu->cpum.GstCtx.cr0 & (X86_CR0_TS | X86_CR0_EM))
8262 return iemRaiseDeviceNotAvailable(pVCpu);
8263 if (GCPtrEff & 15)
8264 {
8265 /** @todo CPU/VM detection possible! \#AC might not be signal for
8266 * all/any misalignment sizes, intel says its an implementation detail. */
8267 if ( (pVCpu->cpum.GstCtx.cr0 & X86_CR0_AM)
8268 && pVCpu->cpum.GstCtx.eflags.Bits.u1AC
8269 && pVCpu->iem.s.uCpl == 3)
8270 return iemRaiseAlignmentCheckException(pVCpu);
8271 return iemRaiseGeneralProtectionFault0(pVCpu);
8272 }
8273
8274 /*
8275 * Access the memory.
8276 */
8277 void *pvMem512;
8278 VBOXSTRICTRC rcStrict = iemMemMap(pVCpu, &pvMem512, 512, iEffSeg, GCPtrEff, IEM_ACCESS_DATA_W | IEM_ACCESS_PARTIAL_WRITE);
8279 if (rcStrict != VINF_SUCCESS)
8280 return rcStrict;
8281 PX86FXSTATE pDst = (PX86FXSTATE)pvMem512;
8282 PCX86FXSTATE pSrc = &pVCpu->cpum.GstCtx.XState.x87;
8283
8284 /*
8285 * Store the registers.
8286 */
8287 /** @todo CPU/VM detection possible! If CR4.OSFXSR=0 MXCSR it's
8288 * implementation specific whether MXCSR and XMM0-XMM7 are saved. */
8289
8290 /* common for all formats */
8291 pDst->FCW = pSrc->FCW;
8292 pDst->FSW = pSrc->FSW;
8293 pDst->FTW = pSrc->FTW & UINT16_C(0xff);
8294 pDst->FOP = pSrc->FOP;
8295 pDst->MXCSR = pSrc->MXCSR;
8296 pDst->MXCSR_MASK = CPUMGetGuestMxCsrMask(pVCpu->CTX_SUFF(pVM));
8297 for (uint32_t i = 0; i < RT_ELEMENTS(pDst->aRegs); i++)
8298 {
8299 /** @todo Testcase: What actually happens to the 6 reserved bytes? I'm clearing
8300 * them for now... */
8301 pDst->aRegs[i].au32[0] = pSrc->aRegs[i].au32[0];
8302 pDst->aRegs[i].au32[1] = pSrc->aRegs[i].au32[1];
8303 pDst->aRegs[i].au32[2] = pSrc->aRegs[i].au32[2] & UINT32_C(0xffff);
8304 pDst->aRegs[i].au32[3] = 0;
8305 }
8306
8307 /* FPU IP, CS, DP and DS. */
8308 pDst->FPUIP = pSrc->FPUIP;
8309 pDst->CS = pSrc->CS;
8310 pDst->FPUDP = pSrc->FPUDP;
8311 pDst->DS = pSrc->DS;
8312 if (enmEffOpSize == IEMMODE_64BIT)
8313 {
8314 /* Save upper 16-bits of FPUIP (IP:CS:Rsvd1) and FPUDP (DP:DS:Rsvd2). */
8315 pDst->Rsrvd1 = pSrc->Rsrvd1;
8316 pDst->Rsrvd2 = pSrc->Rsrvd2;
8317 pDst->au32RsrvdForSoftware[0] = 0;
8318 }
8319 else
8320 {
8321 pDst->Rsrvd1 = 0;
8322 pDst->Rsrvd2 = 0;
8323 pDst->au32RsrvdForSoftware[0] = X86_FXSTATE_RSVD_32BIT_MAGIC;
8324 }
8325
8326 /* XMM registers. */
8327 if ( !(pVCpu->cpum.GstCtx.msrEFER & MSR_K6_EFER_FFXSR)
8328 || pVCpu->iem.s.enmCpuMode != IEMMODE_64BIT
8329 || pVCpu->iem.s.uCpl != 0)
8330 {
8331 uint32_t cXmmRegs = enmEffOpSize == IEMMODE_64BIT ? 16 : 8;
8332 for (uint32_t i = 0; i < cXmmRegs; i++)
8333 pDst->aXMM[i] = pSrc->aXMM[i];
8334 /** @todo Testcase: What happens to the reserved XMM registers? Untouched,
8335 * right? */
8336 }
8337
8338 /*
8339 * Commit the memory.
8340 */
8341 rcStrict = iemMemCommitAndUnmap(pVCpu, pvMem512, IEM_ACCESS_DATA_W | IEM_ACCESS_PARTIAL_WRITE);
8342 if (rcStrict != VINF_SUCCESS)
8343 return rcStrict;
8344
8345 iemRegAddToRipAndClearRF(pVCpu, cbInstr);
8346 return VINF_SUCCESS;
8347}
8348
8349
8350/**
8351 * Implements 'FXRSTOR'.
8352 *
8353 * @param GCPtrEff The address of the image.
8354 * @param enmEffOpSize The operand size (only REX.W really matters).
8355 */
8356IEM_CIMPL_DEF_3(iemCImpl_fxrstor, uint8_t, iEffSeg, RTGCPTR, GCPtrEff, IEMMODE, enmEffOpSize)
8357{
8358 IEM_CTX_ASSERT(pVCpu, CPUMCTX_EXTRN_CR0 | CPUMCTX_EXTRN_X87 | CPUMCTX_EXTRN_SSE_AVX);
8359
8360 /*
8361 * Raise exceptions.
8362 */
8363 if (pVCpu->cpum.GstCtx.cr0 & X86_CR0_EM)
8364 return iemRaiseUndefinedOpcode(pVCpu);
8365 if (pVCpu->cpum.GstCtx.cr0 & (X86_CR0_TS | X86_CR0_EM))
8366 return iemRaiseDeviceNotAvailable(pVCpu);
8367 if (GCPtrEff & 15)
8368 {
8369 /** @todo CPU/VM detection possible! \#AC might not be signal for
8370 * all/any misalignment sizes, intel says its an implementation detail. */
8371 if ( (pVCpu->cpum.GstCtx.cr0 & X86_CR0_AM)
8372 && pVCpu->cpum.GstCtx.eflags.Bits.u1AC
8373 && pVCpu->iem.s.uCpl == 3)
8374 return iemRaiseAlignmentCheckException(pVCpu);
8375 return iemRaiseGeneralProtectionFault0(pVCpu);
8376 }
8377
8378 /*
8379 * Access the memory.
8380 */
8381 void *pvMem512;
8382 VBOXSTRICTRC rcStrict = iemMemMap(pVCpu, &pvMem512, 512, iEffSeg, GCPtrEff, IEM_ACCESS_DATA_R);
8383 if (rcStrict != VINF_SUCCESS)
8384 return rcStrict;
8385 PCX86FXSTATE pSrc = (PCX86FXSTATE)pvMem512;
8386 PX86FXSTATE pDst = &pVCpu->cpum.GstCtx.XState.x87;
8387
8388 /*
8389 * Check the state for stuff which will #GP(0).
8390 */
8391 uint32_t const fMXCSR = pSrc->MXCSR;
8392 uint32_t const fMXCSR_MASK = CPUMGetGuestMxCsrMask(pVCpu->CTX_SUFF(pVM));
8393 if (fMXCSR & ~fMXCSR_MASK)
8394 {
8395 Log(("fxrstor: MXCSR=%#x (MXCSR_MASK=%#x) -> #GP(0)\n", fMXCSR, fMXCSR_MASK));
8396 return iemRaiseGeneralProtectionFault0(pVCpu);
8397 }
8398
8399 /*
8400 * Load the registers.
8401 */
8402 /** @todo CPU/VM detection possible! If CR4.OSFXSR=0 MXCSR it's
8403 * implementation specific whether MXCSR and XMM0-XMM7 are restored. */
8404
8405 /* common for all formats */
8406 pDst->FCW = pSrc->FCW;
8407 pDst->FSW = pSrc->FSW;
8408 pDst->FTW = pSrc->FTW & UINT16_C(0xff);
8409 pDst->FOP = pSrc->FOP;
8410 pDst->MXCSR = fMXCSR;
8411 /* (MXCSR_MASK is read-only) */
8412 for (uint32_t i = 0; i < RT_ELEMENTS(pSrc->aRegs); i++)
8413 {
8414 pDst->aRegs[i].au32[0] = pSrc->aRegs[i].au32[0];
8415 pDst->aRegs[i].au32[1] = pSrc->aRegs[i].au32[1];
8416 pDst->aRegs[i].au32[2] = pSrc->aRegs[i].au32[2] & UINT32_C(0xffff);
8417 pDst->aRegs[i].au32[3] = 0;
8418 }
8419
8420 /* FPU IP, CS, DP and DS. */
8421 if (pVCpu->iem.s.enmCpuMode == IEMMODE_64BIT)
8422 {
8423 pDst->FPUIP = pSrc->FPUIP;
8424 pDst->CS = pSrc->CS;
8425 pDst->Rsrvd1 = pSrc->Rsrvd1;
8426 pDst->FPUDP = pSrc->FPUDP;
8427 pDst->DS = pSrc->DS;
8428 pDst->Rsrvd2 = pSrc->Rsrvd2;
8429 }
8430 else
8431 {
8432 pDst->FPUIP = pSrc->FPUIP;
8433 pDst->CS = pSrc->CS;
8434 pDst->Rsrvd1 = 0;
8435 pDst->FPUDP = pSrc->FPUDP;
8436 pDst->DS = pSrc->DS;
8437 pDst->Rsrvd2 = 0;
8438 }
8439
8440 /* XMM registers. */
8441 if ( !(pVCpu->cpum.GstCtx.msrEFER & MSR_K6_EFER_FFXSR)
8442 || pVCpu->iem.s.enmCpuMode != IEMMODE_64BIT
8443 || pVCpu->iem.s.uCpl != 0)
8444 {
8445 uint32_t cXmmRegs = enmEffOpSize == IEMMODE_64BIT ? 16 : 8;
8446 for (uint32_t i = 0; i < cXmmRegs; i++)
8447 pDst->aXMM[i] = pSrc->aXMM[i];
8448 }
8449
8450 /*
8451 * Commit the memory.
8452 */
8453 rcStrict = iemMemCommitAndUnmap(pVCpu, pvMem512, IEM_ACCESS_DATA_R);
8454 if (rcStrict != VINF_SUCCESS)
8455 return rcStrict;
8456
8457 iemHlpUsedFpu(pVCpu);
8458 iemRegAddToRipAndClearRF(pVCpu, cbInstr);
8459 return VINF_SUCCESS;
8460}
8461
8462
8463/**
8464 * Implements 'XSAVE'.
8465 *
8466 * @param iEffSeg The effective segment.
8467 * @param GCPtrEff The address of the image.
8468 * @param enmEffOpSize The operand size (only REX.W really matters).
8469 */
8470IEM_CIMPL_DEF_3(iemCImpl_xsave, uint8_t, iEffSeg, RTGCPTR, GCPtrEff, IEMMODE, enmEffOpSize)
8471{
8472 IEM_CTX_ASSERT(pVCpu, CPUMCTX_EXTRN_CR0 | CPUMCTX_EXTRN_X87 | CPUMCTX_EXTRN_SSE_AVX | CPUMCTX_EXTRN_OTHER_XSAVE | CPUMCTX_EXTRN_XCRx);
8473
8474 /*
8475 * Raise exceptions.
8476 */
8477 if (!(pVCpu->cpum.GstCtx.cr4 & X86_CR4_OSXSAVE))
8478 return iemRaiseUndefinedOpcode(pVCpu);
8479 /* When in VMX non-root mode and XSAVE/XRSTOR is not enabled, it results in #UD. */
8480 if ( IEM_VMX_IS_NON_ROOT_MODE(pVCpu)
8481 && !IEM_VMX_IS_PROCCTLS2_SET(pVCpu, VMX_PROC_CTLS2_XSAVES_XRSTORS))
8482 {
8483 Log(("xrstor: Not enabled for nested-guest execution -> #UD\n"));
8484 return iemRaiseUndefinedOpcode(pVCpu);
8485 }
8486 if (pVCpu->cpum.GstCtx.cr0 & X86_CR0_TS)
8487 return iemRaiseDeviceNotAvailable(pVCpu);
8488 if (GCPtrEff & 63)
8489 {
8490 /** @todo CPU/VM detection possible! \#AC might not be signal for
8491 * all/any misalignment sizes, intel says its an implementation detail. */
8492 if ( (pVCpu->cpum.GstCtx.cr0 & X86_CR0_AM)
8493 && pVCpu->cpum.GstCtx.eflags.Bits.u1AC
8494 && pVCpu->iem.s.uCpl == 3)
8495 return iemRaiseAlignmentCheckException(pVCpu);
8496 return iemRaiseGeneralProtectionFault0(pVCpu);
8497 }
8498
8499 /*
8500 * Calc the requested mask.
8501 */
8502 uint64_t const fReqComponents = RT_MAKE_U64(pVCpu->cpum.GstCtx.eax, pVCpu->cpum.GstCtx.edx) & pVCpu->cpum.GstCtx.aXcr[0];
8503 AssertLogRelReturn(!(fReqComponents & ~(XSAVE_C_X87 | XSAVE_C_SSE | XSAVE_C_YMM)), VERR_IEM_ASPECT_NOT_IMPLEMENTED);
8504 uint64_t const fXInUse = pVCpu->cpum.GstCtx.aXcr[0];
8505
8506/** @todo figure out the exact protocol for the memory access. Currently we
8507 * just need this crap to work halfways to make it possible to test
8508 * AVX instructions. */
8509/** @todo figure out the XINUSE and XMODIFIED */
8510
8511 /*
8512 * Access the x87 memory state.
8513 */
8514 /* The x87+SSE state. */
8515 void *pvMem512;
8516 VBOXSTRICTRC rcStrict = iemMemMap(pVCpu, &pvMem512, 512, iEffSeg, GCPtrEff, IEM_ACCESS_DATA_W | IEM_ACCESS_PARTIAL_WRITE);
8517 if (rcStrict != VINF_SUCCESS)
8518 return rcStrict;
8519 PX86FXSTATE pDst = (PX86FXSTATE)pvMem512;
8520 PCX86FXSTATE pSrc = &pVCpu->cpum.GstCtx.XState.x87;
8521
8522 /* The header. */
8523 PX86XSAVEHDR pHdr;
8524 rcStrict = iemMemMap(pVCpu, (void **)&pHdr, sizeof(&pHdr), iEffSeg, GCPtrEff + 512, IEM_ACCESS_DATA_RW);
8525 if (rcStrict != VINF_SUCCESS)
8526 return rcStrict;
8527
8528 /*
8529 * Store the X87 state.
8530 */
8531 if (fReqComponents & XSAVE_C_X87)
8532 {
8533 /* common for all formats */
8534 pDst->FCW = pSrc->FCW;
8535 pDst->FSW = pSrc->FSW;
8536 pDst->FTW = pSrc->FTW & UINT16_C(0xff);
8537 pDst->FOP = pSrc->FOP;
8538 pDst->FPUIP = pSrc->FPUIP;
8539 pDst->CS = pSrc->CS;
8540 pDst->FPUDP = pSrc->FPUDP;
8541 pDst->DS = pSrc->DS;
8542 if (enmEffOpSize == IEMMODE_64BIT)
8543 {
8544 /* Save upper 16-bits of FPUIP (IP:CS:Rsvd1) and FPUDP (DP:DS:Rsvd2). */
8545 pDst->Rsrvd1 = pSrc->Rsrvd1;
8546 pDst->Rsrvd2 = pSrc->Rsrvd2;
8547 pDst->au32RsrvdForSoftware[0] = 0;
8548 }
8549 else
8550 {
8551 pDst->Rsrvd1 = 0;
8552 pDst->Rsrvd2 = 0;
8553 pDst->au32RsrvdForSoftware[0] = X86_FXSTATE_RSVD_32BIT_MAGIC;
8554 }
8555 for (uint32_t i = 0; i < RT_ELEMENTS(pDst->aRegs); i++)
8556 {
8557 /** @todo Testcase: What actually happens to the 6 reserved bytes? I'm clearing
8558 * them for now... */
8559 pDst->aRegs[i].au32[0] = pSrc->aRegs[i].au32[0];
8560 pDst->aRegs[i].au32[1] = pSrc->aRegs[i].au32[1];
8561 pDst->aRegs[i].au32[2] = pSrc->aRegs[i].au32[2] & UINT32_C(0xffff);
8562 pDst->aRegs[i].au32[3] = 0;
8563 }
8564
8565 }
8566
8567 if (fReqComponents & (XSAVE_C_SSE | XSAVE_C_YMM))
8568 {
8569 pDst->MXCSR = pSrc->MXCSR;
8570 pDst->MXCSR_MASK = CPUMGetGuestMxCsrMask(pVCpu->CTX_SUFF(pVM));
8571 }
8572
8573 if (fReqComponents & XSAVE_C_SSE)
8574 {
8575 /* XMM registers. */
8576 uint32_t cXmmRegs = enmEffOpSize == IEMMODE_64BIT ? 16 : 8;
8577 for (uint32_t i = 0; i < cXmmRegs; i++)
8578 pDst->aXMM[i] = pSrc->aXMM[i];
8579 /** @todo Testcase: What happens to the reserved XMM registers? Untouched,
8580 * right? */
8581 }
8582
8583 /* Commit the x87 state bits. (probably wrong) */
8584 rcStrict = iemMemCommitAndUnmap(pVCpu, pvMem512, IEM_ACCESS_DATA_W | IEM_ACCESS_PARTIAL_WRITE);
8585 if (rcStrict != VINF_SUCCESS)
8586 return rcStrict;
8587
8588 /*
8589 * Store AVX state.
8590 */
8591 if (fReqComponents & XSAVE_C_YMM)
8592 {
8593 /** @todo testcase: xsave64 vs xsave32 wrt XSAVE_C_YMM. */
8594 AssertLogRelReturn(pVCpu->cpum.GstCtx.aoffXState[XSAVE_C_YMM_BIT] != UINT16_MAX, VERR_IEM_IPE_9);
8595 PCX86XSAVEYMMHI pCompSrc = CPUMCTX_XSAVE_C_PTR(IEM_GET_CTX(pVCpu), XSAVE_C_YMM_BIT, PCX86XSAVEYMMHI);
8596 PX86XSAVEYMMHI pCompDst;
8597 rcStrict = iemMemMap(pVCpu, (void **)&pCompDst, sizeof(*pCompDst), iEffSeg, GCPtrEff + pVCpu->cpum.GstCtx.aoffXState[XSAVE_C_YMM_BIT],
8598 IEM_ACCESS_DATA_W | IEM_ACCESS_PARTIAL_WRITE);
8599 if (rcStrict != VINF_SUCCESS)
8600 return rcStrict;
8601
8602 uint32_t cXmmRegs = enmEffOpSize == IEMMODE_64BIT ? 16 : 8;
8603 for (uint32_t i = 0; i < cXmmRegs; i++)
8604 pCompDst->aYmmHi[i] = pCompSrc->aYmmHi[i];
8605
8606 rcStrict = iemMemCommitAndUnmap(pVCpu, pCompDst, IEM_ACCESS_DATA_W | IEM_ACCESS_PARTIAL_WRITE);
8607 if (rcStrict != VINF_SUCCESS)
8608 return rcStrict;
8609 }
8610
8611 /*
8612 * Update the header.
8613 */
8614 pHdr->bmXState = (pHdr->bmXState & ~fReqComponents)
8615 | (fReqComponents & fXInUse);
8616
8617 rcStrict = iemMemCommitAndUnmap(pVCpu, pHdr, IEM_ACCESS_DATA_RW);
8618 if (rcStrict != VINF_SUCCESS)
8619 return rcStrict;
8620
8621 iemRegAddToRipAndClearRF(pVCpu, cbInstr);
8622 return VINF_SUCCESS;
8623}
8624
8625
8626/**
8627 * Implements 'XRSTOR'.
8628 *
8629 * @param iEffSeg The effective segment.
8630 * @param GCPtrEff The address of the image.
8631 * @param enmEffOpSize The operand size (only REX.W really matters).
8632 */
8633IEM_CIMPL_DEF_3(iemCImpl_xrstor, uint8_t, iEffSeg, RTGCPTR, GCPtrEff, IEMMODE, enmEffOpSize)
8634{
8635 IEM_CTX_ASSERT(pVCpu, CPUMCTX_EXTRN_CR0 | CPUMCTX_EXTRN_X87 | CPUMCTX_EXTRN_SSE_AVX | CPUMCTX_EXTRN_OTHER_XSAVE | CPUMCTX_EXTRN_XCRx);
8636
8637 /*
8638 * Raise exceptions.
8639 */
8640 if (!(pVCpu->cpum.GstCtx.cr4 & X86_CR4_OSXSAVE))
8641 return iemRaiseUndefinedOpcode(pVCpu);
8642 /* When in VMX non-root mode and XSAVE/XRSTOR is not enabled, it results in #UD. */
8643 if ( IEM_VMX_IS_NON_ROOT_MODE(pVCpu)
8644 && !IEM_VMX_IS_PROCCTLS2_SET(pVCpu, VMX_PROC_CTLS2_XSAVES_XRSTORS))
8645 {
8646 Log(("xrstor: Not enabled for nested-guest execution -> #UD\n"));
8647 return iemRaiseUndefinedOpcode(pVCpu);
8648 }
8649 if (pVCpu->cpum.GstCtx.cr0 & X86_CR0_TS)
8650 return iemRaiseDeviceNotAvailable(pVCpu);
8651 if (GCPtrEff & 63)
8652 {
8653 /** @todo CPU/VM detection possible! \#AC might not be signal for
8654 * all/any misalignment sizes, intel says its an implementation detail. */
8655 if ( (pVCpu->cpum.GstCtx.cr0 & X86_CR0_AM)
8656 && pVCpu->cpum.GstCtx.eflags.Bits.u1AC
8657 && pVCpu->iem.s.uCpl == 3)
8658 return iemRaiseAlignmentCheckException(pVCpu);
8659 return iemRaiseGeneralProtectionFault0(pVCpu);
8660 }
8661
8662/** @todo figure out the exact protocol for the memory access. Currently we
8663 * just need this crap to work halfways to make it possible to test
8664 * AVX instructions. */
8665/** @todo figure out the XINUSE and XMODIFIED */
8666
8667 /*
8668 * Access the x87 memory state.
8669 */
8670 /* The x87+SSE state. */
8671 void *pvMem512;
8672 VBOXSTRICTRC rcStrict = iemMemMap(pVCpu, &pvMem512, 512, iEffSeg, GCPtrEff, IEM_ACCESS_DATA_R);
8673 if (rcStrict != VINF_SUCCESS)
8674 return rcStrict;
8675 PCX86FXSTATE pSrc = (PCX86FXSTATE)pvMem512;
8676 PX86FXSTATE pDst = &pVCpu->cpum.GstCtx.XState.x87;
8677
8678 /*
8679 * Calc the requested mask
8680 */
8681 PX86XSAVEHDR pHdrDst = &pVCpu->cpum.GstCtx.XState.Hdr;
8682 PCX86XSAVEHDR pHdrSrc;
8683 rcStrict = iemMemMap(pVCpu, (void **)&pHdrSrc, sizeof(&pHdrSrc), iEffSeg, GCPtrEff + 512, IEM_ACCESS_DATA_R);
8684 if (rcStrict != VINF_SUCCESS)
8685 return rcStrict;
8686
8687 uint64_t const fReqComponents = RT_MAKE_U64(pVCpu->cpum.GstCtx.eax, pVCpu->cpum.GstCtx.edx) & pVCpu->cpum.GstCtx.aXcr[0];
8688 AssertLogRelReturn(!(fReqComponents & ~(XSAVE_C_X87 | XSAVE_C_SSE | XSAVE_C_YMM)), VERR_IEM_ASPECT_NOT_IMPLEMENTED);
8689 //uint64_t const fXInUse = pVCpu->cpum.GstCtx.aXcr[0];
8690 uint64_t const fRstorMask = pHdrSrc->bmXState;
8691 uint64_t const fCompMask = pHdrSrc->bmXComp;
8692
8693 AssertLogRelReturn(!(fCompMask & XSAVE_C_X), VERR_IEM_ASPECT_NOT_IMPLEMENTED);
8694
8695 uint32_t const cXmmRegs = enmEffOpSize == IEMMODE_64BIT ? 16 : 8;
8696
8697 /* We won't need this any longer. */
8698 rcStrict = iemMemCommitAndUnmap(pVCpu, (void *)pHdrSrc, IEM_ACCESS_DATA_R);
8699 if (rcStrict != VINF_SUCCESS)
8700 return rcStrict;
8701
8702 /*
8703 * Store the X87 state.
8704 */
8705 if (fReqComponents & XSAVE_C_X87)
8706 {
8707 if (fRstorMask & XSAVE_C_X87)
8708 {
8709 pDst->FCW = pSrc->FCW;
8710 pDst->FSW = pSrc->FSW;
8711 pDst->FTW = pSrc->FTW & UINT16_C(0xff);
8712 pDst->FOP = pSrc->FOP;
8713 pDst->FPUIP = pSrc->FPUIP;
8714 pDst->CS = pSrc->CS;
8715 pDst->FPUDP = pSrc->FPUDP;
8716 pDst->DS = pSrc->DS;
8717 if (enmEffOpSize == IEMMODE_64BIT)
8718 {
8719 /* Save upper 16-bits of FPUIP (IP:CS:Rsvd1) and FPUDP (DP:DS:Rsvd2). */
8720 pDst->Rsrvd1 = pSrc->Rsrvd1;
8721 pDst->Rsrvd2 = pSrc->Rsrvd2;
8722 }
8723 else
8724 {
8725 pDst->Rsrvd1 = 0;
8726 pDst->Rsrvd2 = 0;
8727 }
8728 for (uint32_t i = 0; i < RT_ELEMENTS(pDst->aRegs); i++)
8729 {
8730 pDst->aRegs[i].au32[0] = pSrc->aRegs[i].au32[0];
8731 pDst->aRegs[i].au32[1] = pSrc->aRegs[i].au32[1];
8732 pDst->aRegs[i].au32[2] = pSrc->aRegs[i].au32[2] & UINT32_C(0xffff);
8733 pDst->aRegs[i].au32[3] = 0;
8734 }
8735 }
8736 else
8737 {
8738 pDst->FCW = 0x37f;
8739 pDst->FSW = 0;
8740 pDst->FTW = 0x00; /* 0 - empty. */
8741 pDst->FPUDP = 0;
8742 pDst->DS = 0; //??
8743 pDst->Rsrvd2= 0;
8744 pDst->FPUIP = 0;
8745 pDst->CS = 0; //??
8746 pDst->Rsrvd1= 0;
8747 pDst->FOP = 0;
8748 for (uint32_t i = 0; i < RT_ELEMENTS(pSrc->aRegs); i++)
8749 {
8750 pDst->aRegs[i].au32[0] = 0;
8751 pDst->aRegs[i].au32[1] = 0;
8752 pDst->aRegs[i].au32[2] = 0;
8753 pDst->aRegs[i].au32[3] = 0;
8754 }
8755 }
8756 pHdrDst->bmXState |= XSAVE_C_X87; /* playing safe for now */
8757 }
8758
8759 /* MXCSR */
8760 if (fReqComponents & (XSAVE_C_SSE | XSAVE_C_YMM))
8761 {
8762 if (fRstorMask & (XSAVE_C_SSE | XSAVE_C_YMM))
8763 pDst->MXCSR = pSrc->MXCSR;
8764 else
8765 pDst->MXCSR = 0x1f80;
8766 }
8767
8768 /* XMM registers. */
8769 if (fReqComponents & XSAVE_C_SSE)
8770 {
8771 if (fRstorMask & XSAVE_C_SSE)
8772 {
8773 for (uint32_t i = 0; i < cXmmRegs; i++)
8774 pDst->aXMM[i] = pSrc->aXMM[i];
8775 /** @todo Testcase: What happens to the reserved XMM registers? Untouched,
8776 * right? */
8777 }
8778 else
8779 {
8780 for (uint32_t i = 0; i < cXmmRegs; i++)
8781 {
8782 pDst->aXMM[i].au64[0] = 0;
8783 pDst->aXMM[i].au64[1] = 0;
8784 }
8785 }
8786 pHdrDst->bmXState |= XSAVE_C_SSE; /* playing safe for now */
8787 }
8788
8789 /* Unmap the x87 state bits (so we've don't run out of mapping). */
8790 rcStrict = iemMemCommitAndUnmap(pVCpu, pvMem512, IEM_ACCESS_DATA_R);
8791 if (rcStrict != VINF_SUCCESS)
8792 return rcStrict;
8793
8794 /*
8795 * Restore AVX state.
8796 */
8797 if (fReqComponents & XSAVE_C_YMM)
8798 {
8799 AssertLogRelReturn(pVCpu->cpum.GstCtx.aoffXState[XSAVE_C_YMM_BIT] != UINT16_MAX, VERR_IEM_IPE_9);
8800 PX86XSAVEYMMHI pCompDst = CPUMCTX_XSAVE_C_PTR(IEM_GET_CTX(pVCpu), XSAVE_C_YMM_BIT, PX86XSAVEYMMHI);
8801
8802 if (fRstorMask & XSAVE_C_YMM)
8803 {
8804 /** @todo testcase: xsave64 vs xsave32 wrt XSAVE_C_YMM. */
8805 PCX86XSAVEYMMHI pCompSrc;
8806 rcStrict = iemMemMap(pVCpu, (void **)&pCompSrc, sizeof(*pCompDst),
8807 iEffSeg, GCPtrEff + pVCpu->cpum.GstCtx.aoffXState[XSAVE_C_YMM_BIT], IEM_ACCESS_DATA_R);
8808 if (rcStrict != VINF_SUCCESS)
8809 return rcStrict;
8810
8811 for (uint32_t i = 0; i < cXmmRegs; i++)
8812 {
8813 pCompDst->aYmmHi[i].au64[0] = pCompSrc->aYmmHi[i].au64[0];
8814 pCompDst->aYmmHi[i].au64[1] = pCompSrc->aYmmHi[i].au64[1];
8815 }
8816
8817 rcStrict = iemMemCommitAndUnmap(pVCpu, (void *)pCompSrc, IEM_ACCESS_DATA_R);
8818 if (rcStrict != VINF_SUCCESS)
8819 return rcStrict;
8820 }
8821 else
8822 {
8823 for (uint32_t i = 0; i < cXmmRegs; i++)
8824 {
8825 pCompDst->aYmmHi[i].au64[0] = 0;
8826 pCompDst->aYmmHi[i].au64[1] = 0;
8827 }
8828 }
8829 pHdrDst->bmXState |= XSAVE_C_YMM; /* playing safe for now */
8830 }
8831
8832 iemRegAddToRipAndClearRF(pVCpu, cbInstr);
8833 return VINF_SUCCESS;
8834}
8835
8836
8837
8838
8839/**
8840 * Implements 'STMXCSR'.
8841 *
8842 * @param GCPtrEff The address of the image.
8843 */
8844IEM_CIMPL_DEF_2(iemCImpl_stmxcsr, uint8_t, iEffSeg, RTGCPTR, GCPtrEff)
8845{
8846 IEM_CTX_ASSERT(pVCpu, CPUMCTX_EXTRN_CR0 | CPUMCTX_EXTRN_X87 | CPUMCTX_EXTRN_SSE_AVX);
8847
8848 /*
8849 * Raise exceptions.
8850 */
8851 if ( !(pVCpu->cpum.GstCtx.cr0 & X86_CR0_EM)
8852 && (pVCpu->cpum.GstCtx.cr4 & X86_CR4_OSFXSR))
8853 {
8854 if (!(pVCpu->cpum.GstCtx.cr0 & X86_CR0_TS))
8855 {
8856 /*
8857 * Do the job.
8858 */
8859 VBOXSTRICTRC rcStrict = iemMemStoreDataU32(pVCpu, iEffSeg, GCPtrEff, pVCpu->cpum.GstCtx.XState.x87.MXCSR);
8860 if (rcStrict == VINF_SUCCESS)
8861 {
8862 iemRegAddToRipAndClearRF(pVCpu, cbInstr);
8863 return VINF_SUCCESS;
8864 }
8865 return rcStrict;
8866 }
8867 return iemRaiseDeviceNotAvailable(pVCpu);
8868 }
8869 return iemRaiseUndefinedOpcode(pVCpu);
8870}
8871
8872
8873/**
8874 * Implements 'VSTMXCSR'.
8875 *
8876 * @param GCPtrEff The address of the image.
8877 */
8878IEM_CIMPL_DEF_2(iemCImpl_vstmxcsr, uint8_t, iEffSeg, RTGCPTR, GCPtrEff)
8879{
8880 IEM_CTX_ASSERT(pVCpu, CPUMCTX_EXTRN_CR0 | CPUMCTX_EXTRN_X87 | CPUMCTX_EXTRN_SSE_AVX | CPUMCTX_EXTRN_XCRx);
8881
8882 /*
8883 * Raise exceptions.
8884 */
8885 if ( ( !IEM_IS_GUEST_CPU_AMD(pVCpu)
8886 ? (pVCpu->cpum.GstCtx.aXcr[0] & (XSAVE_C_SSE | XSAVE_C_YMM)) == (XSAVE_C_SSE | XSAVE_C_YMM)
8887 : !(pVCpu->cpum.GstCtx.cr0 & X86_CR0_EM)) /* AMD Jaguar CPU (f0x16,m0,s1) behaviour */
8888 && (pVCpu->cpum.GstCtx.cr4 & X86_CR4_OSXSAVE))
8889 {
8890 if (!(pVCpu->cpum.GstCtx.cr0 & X86_CR0_TS))
8891 {
8892 /*
8893 * Do the job.
8894 */
8895 VBOXSTRICTRC rcStrict = iemMemStoreDataU32(pVCpu, iEffSeg, GCPtrEff, pVCpu->cpum.GstCtx.XState.x87.MXCSR);
8896 if (rcStrict == VINF_SUCCESS)
8897 {
8898 iemRegAddToRipAndClearRF(pVCpu, cbInstr);
8899 return VINF_SUCCESS;
8900 }
8901 return rcStrict;
8902 }
8903 return iemRaiseDeviceNotAvailable(pVCpu);
8904 }
8905 return iemRaiseUndefinedOpcode(pVCpu);
8906}
8907
8908
8909/**
8910 * Implements 'LDMXCSR'.
8911 *
8912 * @param GCPtrEff The address of the image.
8913 */
8914IEM_CIMPL_DEF_2(iemCImpl_ldmxcsr, uint8_t, iEffSeg, RTGCPTR, GCPtrEff)
8915{
8916 IEM_CTX_ASSERT(pVCpu, CPUMCTX_EXTRN_CR0 | CPUMCTX_EXTRN_X87 | CPUMCTX_EXTRN_SSE_AVX);
8917
8918 /*
8919 * Raise exceptions.
8920 */
8921 /** @todo testcase - order of LDMXCSR faults. Does \#PF, \#GP and \#SS
8922 * happen after or before \#UD and \#EM? */
8923 if ( !(pVCpu->cpum.GstCtx.cr0 & X86_CR0_EM)
8924 && (pVCpu->cpum.GstCtx.cr4 & X86_CR4_OSFXSR))
8925 {
8926 if (!(pVCpu->cpum.GstCtx.cr0 & X86_CR0_TS))
8927 {
8928 /*
8929 * Do the job.
8930 */
8931 uint32_t fNewMxCsr;
8932 VBOXSTRICTRC rcStrict = iemMemFetchDataU32(pVCpu, &fNewMxCsr, iEffSeg, GCPtrEff);
8933 if (rcStrict == VINF_SUCCESS)
8934 {
8935 uint32_t const fMxCsrMask = CPUMGetGuestMxCsrMask(pVCpu->CTX_SUFF(pVM));
8936 if (!(fNewMxCsr & ~fMxCsrMask))
8937 {
8938 pVCpu->cpum.GstCtx.XState.x87.MXCSR = fNewMxCsr;
8939 iemRegAddToRipAndClearRF(pVCpu, cbInstr);
8940 return VINF_SUCCESS;
8941 }
8942 Log(("lddmxcsr: New MXCSR=%#RX32 & ~MASK=%#RX32 = %#RX32 -> #GP(0)\n",
8943 fNewMxCsr, fMxCsrMask, fNewMxCsr & ~fMxCsrMask));
8944 return iemRaiseGeneralProtectionFault0(pVCpu);
8945 }
8946 return rcStrict;
8947 }
8948 return iemRaiseDeviceNotAvailable(pVCpu);
8949 }
8950 return iemRaiseUndefinedOpcode(pVCpu);
8951}
8952
8953
8954/**
8955 * Commmon routine for fnstenv and fnsave.
8956 *
8957 * @param pVCpu The cross context virtual CPU structure of the calling thread.
8958 * @param enmEffOpSize The effective operand size.
8959 * @param uPtr Where to store the state.
8960 */
8961static void iemCImplCommonFpuStoreEnv(PVMCPUCC pVCpu, IEMMODE enmEffOpSize, RTPTRUNION uPtr)
8962{
8963 IEM_CTX_ASSERT(pVCpu, CPUMCTX_EXTRN_CR0 | CPUMCTX_EXTRN_X87);
8964 PCX86FXSTATE pSrcX87 = &pVCpu->cpum.GstCtx.XState.x87;
8965 if (enmEffOpSize == IEMMODE_16BIT)
8966 {
8967 uPtr.pu16[0] = pSrcX87->FCW;
8968 uPtr.pu16[1] = pSrcX87->FSW;
8969 uPtr.pu16[2] = iemFpuCalcFullFtw(pSrcX87);
8970 if (IEM_IS_REAL_OR_V86_MODE(pVCpu))
8971 {
8972 /** @todo Testcase: How does this work when the FPUIP/CS was saved in
8973 * protected mode or long mode and we save it in real mode? And vice
8974 * versa? And with 32-bit operand size? I think CPU is storing the
8975 * effective address ((CS << 4) + IP) in the offset register and not
8976 * doing any address calculations here. */
8977 uPtr.pu16[3] = (uint16_t)pSrcX87->FPUIP;
8978 uPtr.pu16[4] = ((pSrcX87->FPUIP >> 4) & UINT16_C(0xf000)) | pSrcX87->FOP;
8979 uPtr.pu16[5] = (uint16_t)pSrcX87->FPUDP;
8980 uPtr.pu16[6] = (pSrcX87->FPUDP >> 4) & UINT16_C(0xf000);
8981 }
8982 else
8983 {
8984 uPtr.pu16[3] = pSrcX87->FPUIP;
8985 uPtr.pu16[4] = pSrcX87->CS;
8986 uPtr.pu16[5] = pSrcX87->FPUDP;
8987 uPtr.pu16[6] = pSrcX87->DS;
8988 }
8989 }
8990 else
8991 {
8992 /** @todo Testcase: what is stored in the "gray" areas? (figure 8-9 and 8-10) */
8993 uPtr.pu16[0*2] = pSrcX87->FCW;
8994 uPtr.pu16[0*2+1] = 0xffff; /* (0xffff observed on intel skylake.) */
8995 uPtr.pu16[1*2] = pSrcX87->FSW;
8996 uPtr.pu16[1*2+1] = 0xffff;
8997 uPtr.pu16[2*2] = iemFpuCalcFullFtw(pSrcX87);
8998 uPtr.pu16[2*2+1] = 0xffff;
8999 if (IEM_IS_REAL_OR_V86_MODE(pVCpu))
9000 {
9001 uPtr.pu16[3*2] = (uint16_t)pSrcX87->FPUIP;
9002 uPtr.pu32[4] = ((pSrcX87->FPUIP & UINT32_C(0xffff0000)) >> 4) | pSrcX87->FOP;
9003 uPtr.pu16[5*2] = (uint16_t)pSrcX87->FPUDP;
9004 uPtr.pu32[6] = (pSrcX87->FPUDP & UINT32_C(0xffff0000)) >> 4;
9005 }
9006 else
9007 {
9008 uPtr.pu32[3] = pSrcX87->FPUIP;
9009 uPtr.pu16[4*2] = pSrcX87->CS;
9010 uPtr.pu16[4*2+1] = pSrcX87->FOP;
9011 uPtr.pu32[5] = pSrcX87->FPUDP;
9012 uPtr.pu16[6*2] = pSrcX87->DS;
9013 uPtr.pu16[6*2+1] = 0xffff;
9014 }
9015 }
9016}
9017
9018
9019/**
9020 * Commmon routine for fldenv and frstor
9021 *
9022 * @param pVCpu The cross context virtual CPU structure of the calling thread.
9023 * @param enmEffOpSize The effective operand size.
9024 * @param uPtr Where to store the state.
9025 */
9026static void iemCImplCommonFpuRestoreEnv(PVMCPUCC pVCpu, IEMMODE enmEffOpSize, RTCPTRUNION uPtr)
9027{
9028 IEM_CTX_ASSERT(pVCpu, CPUMCTX_EXTRN_CR0 | CPUMCTX_EXTRN_X87);
9029 PX86FXSTATE pDstX87 = &pVCpu->cpum.GstCtx.XState.x87;
9030 if (enmEffOpSize == IEMMODE_16BIT)
9031 {
9032 pDstX87->FCW = uPtr.pu16[0];
9033 pDstX87->FSW = uPtr.pu16[1];
9034 pDstX87->FTW = uPtr.pu16[2];
9035 if (IEM_IS_REAL_OR_V86_MODE(pVCpu))
9036 {
9037 pDstX87->FPUIP = uPtr.pu16[3] | ((uint32_t)(uPtr.pu16[4] & UINT16_C(0xf000)) << 4);
9038 pDstX87->FPUDP = uPtr.pu16[5] | ((uint32_t)(uPtr.pu16[6] & UINT16_C(0xf000)) << 4);
9039 pDstX87->FOP = uPtr.pu16[4] & UINT16_C(0x07ff);
9040 pDstX87->CS = 0;
9041 pDstX87->Rsrvd1= 0;
9042 pDstX87->DS = 0;
9043 pDstX87->Rsrvd2= 0;
9044 }
9045 else
9046 {
9047 pDstX87->FPUIP = uPtr.pu16[3];
9048 pDstX87->CS = uPtr.pu16[4];
9049 pDstX87->Rsrvd1= 0;
9050 pDstX87->FPUDP = uPtr.pu16[5];
9051 pDstX87->DS = uPtr.pu16[6];
9052 pDstX87->Rsrvd2= 0;
9053 /** @todo Testcase: Is FOP cleared when doing 16-bit protected mode fldenv? */
9054 }
9055 }
9056 else
9057 {
9058 pDstX87->FCW = uPtr.pu16[0*2];
9059 pDstX87->FSW = uPtr.pu16[1*2];
9060 pDstX87->FTW = uPtr.pu16[2*2];
9061 if (IEM_IS_REAL_OR_V86_MODE(pVCpu))
9062 {
9063 pDstX87->FPUIP = uPtr.pu16[3*2] | ((uPtr.pu32[4] & UINT32_C(0x0ffff000)) << 4);
9064 pDstX87->FOP = uPtr.pu32[4] & UINT16_C(0x07ff);
9065 pDstX87->FPUDP = uPtr.pu16[5*2] | ((uPtr.pu32[6] & UINT32_C(0x0ffff000)) << 4);
9066 pDstX87->CS = 0;
9067 pDstX87->Rsrvd1= 0;
9068 pDstX87->DS = 0;
9069 pDstX87->Rsrvd2= 0;
9070 }
9071 else
9072 {
9073 pDstX87->FPUIP = uPtr.pu32[3];
9074 pDstX87->CS = uPtr.pu16[4*2];
9075 pDstX87->Rsrvd1= 0;
9076 pDstX87->FOP = uPtr.pu16[4*2+1];
9077 pDstX87->FPUDP = uPtr.pu32[5];
9078 pDstX87->DS = uPtr.pu16[6*2];
9079 pDstX87->Rsrvd2= 0;
9080 }
9081 }
9082
9083 /* Make adjustments. */
9084 pDstX87->FTW = iemFpuCompressFtw(pDstX87->FTW);
9085 pDstX87->FCW &= ~X86_FCW_ZERO_MASK;
9086 iemFpuRecalcExceptionStatus(pDstX87);
9087 /** @todo Testcase: Check if ES and/or B are automatically cleared if no
9088 * exceptions are pending after loading the saved state? */
9089}
9090
9091
9092/**
9093 * Implements 'FNSTENV'.
9094 *
9095 * @param enmEffOpSize The operand size (only REX.W really matters).
9096 * @param iEffSeg The effective segment register for @a GCPtrEff.
9097 * @param GCPtrEffDst The address of the image.
9098 */
9099IEM_CIMPL_DEF_3(iemCImpl_fnstenv, IEMMODE, enmEffOpSize, uint8_t, iEffSeg, RTGCPTR, GCPtrEffDst)
9100{
9101 RTPTRUNION uPtr;
9102 VBOXSTRICTRC rcStrict = iemMemMap(pVCpu, &uPtr.pv, enmEffOpSize == IEMMODE_16BIT ? 14 : 28,
9103 iEffSeg, GCPtrEffDst, IEM_ACCESS_DATA_W | IEM_ACCESS_PARTIAL_WRITE);
9104 if (rcStrict != VINF_SUCCESS)
9105 return rcStrict;
9106
9107 iemCImplCommonFpuStoreEnv(pVCpu, enmEffOpSize, uPtr);
9108
9109 rcStrict = iemMemCommitAndUnmap(pVCpu, uPtr.pv, IEM_ACCESS_DATA_W | IEM_ACCESS_PARTIAL_WRITE);
9110 if (rcStrict != VINF_SUCCESS)
9111 return rcStrict;
9112
9113 /* Note: C0, C1, C2 and C3 are documented as undefined, we leave them untouched! */
9114 iemRegAddToRipAndClearRF(pVCpu, cbInstr);
9115 return VINF_SUCCESS;
9116}
9117
9118
9119/**
9120 * Implements 'FNSAVE'.
9121 *
9122 * @param GCPtrEffDst The address of the image.
9123 * @param enmEffOpSize The operand size.
9124 */
9125IEM_CIMPL_DEF_3(iemCImpl_fnsave, IEMMODE, enmEffOpSize, uint8_t, iEffSeg, RTGCPTR, GCPtrEffDst)
9126{
9127 IEM_CTX_ASSERT(pVCpu, CPUMCTX_EXTRN_CR0 | CPUMCTX_EXTRN_X87);
9128
9129 RTPTRUNION uPtr;
9130 VBOXSTRICTRC rcStrict = iemMemMap(pVCpu, &uPtr.pv, enmEffOpSize == IEMMODE_16BIT ? 94 : 108,
9131 iEffSeg, GCPtrEffDst, IEM_ACCESS_DATA_W | IEM_ACCESS_PARTIAL_WRITE);
9132 if (rcStrict != VINF_SUCCESS)
9133 return rcStrict;
9134
9135 PX86FXSTATE pFpuCtx = &pVCpu->cpum.GstCtx.XState.x87;
9136 iemCImplCommonFpuStoreEnv(pVCpu, enmEffOpSize, uPtr);
9137 PRTFLOAT80U paRegs = (PRTFLOAT80U)(uPtr.pu8 + (enmEffOpSize == IEMMODE_16BIT ? 14 : 28));
9138 for (uint32_t i = 0; i < RT_ELEMENTS(pFpuCtx->aRegs); i++)
9139 {
9140 paRegs[i].au32[0] = pFpuCtx->aRegs[i].au32[0];
9141 paRegs[i].au32[1] = pFpuCtx->aRegs[i].au32[1];
9142 paRegs[i].au16[4] = pFpuCtx->aRegs[i].au16[4];
9143 }
9144
9145 rcStrict = iemMemCommitAndUnmap(pVCpu, uPtr.pv, IEM_ACCESS_DATA_W | IEM_ACCESS_PARTIAL_WRITE);
9146 if (rcStrict != VINF_SUCCESS)
9147 return rcStrict;
9148
9149 /*
9150 * Re-initialize the FPU context.
9151 */
9152 pFpuCtx->FCW = 0x37f;
9153 pFpuCtx->FSW = 0;
9154 pFpuCtx->FTW = 0x00; /* 0 - empty */
9155 pFpuCtx->FPUDP = 0;
9156 pFpuCtx->DS = 0;
9157 pFpuCtx->Rsrvd2= 0;
9158 pFpuCtx->FPUIP = 0;
9159 pFpuCtx->CS = 0;
9160 pFpuCtx->Rsrvd1= 0;
9161 pFpuCtx->FOP = 0;
9162
9163 iemHlpUsedFpu(pVCpu);
9164 iemRegAddToRipAndClearRF(pVCpu, cbInstr);
9165 return VINF_SUCCESS;
9166}
9167
9168
9169
9170/**
9171 * Implements 'FLDENV'.
9172 *
9173 * @param enmEffOpSize The operand size (only REX.W really matters).
9174 * @param iEffSeg The effective segment register for @a GCPtrEff.
9175 * @param GCPtrEffSrc The address of the image.
9176 */
9177IEM_CIMPL_DEF_3(iemCImpl_fldenv, IEMMODE, enmEffOpSize, uint8_t, iEffSeg, RTGCPTR, GCPtrEffSrc)
9178{
9179 RTCPTRUNION uPtr;
9180 VBOXSTRICTRC rcStrict = iemMemMap(pVCpu, (void **)&uPtr.pv, enmEffOpSize == IEMMODE_16BIT ? 14 : 28,
9181 iEffSeg, GCPtrEffSrc, IEM_ACCESS_DATA_R);
9182 if (rcStrict != VINF_SUCCESS)
9183 return rcStrict;
9184
9185 iemCImplCommonFpuRestoreEnv(pVCpu, enmEffOpSize, uPtr);
9186
9187 rcStrict = iemMemCommitAndUnmap(pVCpu, (void *)uPtr.pv, IEM_ACCESS_DATA_R);
9188 if (rcStrict != VINF_SUCCESS)
9189 return rcStrict;
9190
9191 iemHlpUsedFpu(pVCpu);
9192 iemRegAddToRipAndClearRF(pVCpu, cbInstr);
9193 return VINF_SUCCESS;
9194}
9195
9196
9197/**
9198 * Implements 'FRSTOR'.
9199 *
9200 * @param GCPtrEffSrc The address of the image.
9201 * @param enmEffOpSize The operand size.
9202 */
9203IEM_CIMPL_DEF_3(iemCImpl_frstor, IEMMODE, enmEffOpSize, uint8_t, iEffSeg, RTGCPTR, GCPtrEffSrc)
9204{
9205 RTCPTRUNION uPtr;
9206 VBOXSTRICTRC rcStrict = iemMemMap(pVCpu, (void **)&uPtr.pv, enmEffOpSize == IEMMODE_16BIT ? 94 : 108,
9207 iEffSeg, GCPtrEffSrc, IEM_ACCESS_DATA_R);
9208 if (rcStrict != VINF_SUCCESS)
9209 return rcStrict;
9210
9211 PX86FXSTATE pFpuCtx = &pVCpu->cpum.GstCtx.XState.x87;
9212 iemCImplCommonFpuRestoreEnv(pVCpu, enmEffOpSize, uPtr);
9213 PCRTFLOAT80U paRegs = (PCRTFLOAT80U)(uPtr.pu8 + (enmEffOpSize == IEMMODE_16BIT ? 14 : 28));
9214 for (uint32_t i = 0; i < RT_ELEMENTS(pFpuCtx->aRegs); i++)
9215 {
9216 pFpuCtx->aRegs[i].au32[0] = paRegs[i].au32[0];
9217 pFpuCtx->aRegs[i].au32[1] = paRegs[i].au32[1];
9218 pFpuCtx->aRegs[i].au32[2] = paRegs[i].au16[4];
9219 pFpuCtx->aRegs[i].au32[3] = 0;
9220 }
9221
9222 rcStrict = iemMemCommitAndUnmap(pVCpu, (void *)uPtr.pv, IEM_ACCESS_DATA_R);
9223 if (rcStrict != VINF_SUCCESS)
9224 return rcStrict;
9225
9226 iemHlpUsedFpu(pVCpu);
9227 iemRegAddToRipAndClearRF(pVCpu, cbInstr);
9228 return VINF_SUCCESS;
9229}
9230
9231
9232/**
9233 * Implements 'FLDCW'.
9234 *
9235 * @param u16Fcw The new FCW.
9236 */
9237IEM_CIMPL_DEF_1(iemCImpl_fldcw, uint16_t, u16Fcw)
9238{
9239 IEM_CTX_ASSERT(pVCpu, CPUMCTX_EXTRN_CR0 | CPUMCTX_EXTRN_X87);
9240
9241 /** @todo Testcase: Check what happens when trying to load X86_FCW_PC_RSVD. */
9242 /** @todo Testcase: Try see what happens when trying to set undefined bits
9243 * (other than 6 and 7). Currently ignoring them. */
9244 /** @todo Testcase: Test that it raises and loweres the FPU exception bits
9245 * according to FSW. (This is was is currently implemented.) */
9246 PX86FXSTATE pFpuCtx = &pVCpu->cpum.GstCtx.XState.x87;
9247 pFpuCtx->FCW = u16Fcw & ~X86_FCW_ZERO_MASK;
9248 iemFpuRecalcExceptionStatus(pFpuCtx);
9249
9250 /* Note: C0, C1, C2 and C3 are documented as undefined, we leave them untouched! */
9251 iemHlpUsedFpu(pVCpu);
9252 iemRegAddToRipAndClearRF(pVCpu, cbInstr);
9253 return VINF_SUCCESS;
9254}
9255
9256
9257
9258/**
9259 * Implements the underflow case of fxch.
9260 *
9261 * @param iStReg The other stack register.
9262 */
9263IEM_CIMPL_DEF_1(iemCImpl_fxch_underflow, uint8_t, iStReg)
9264{
9265 IEM_CTX_ASSERT(pVCpu, CPUMCTX_EXTRN_CR0 | CPUMCTX_EXTRN_X87);
9266
9267 PX86FXSTATE pFpuCtx = &pVCpu->cpum.GstCtx.XState.x87;
9268 unsigned const iReg1 = X86_FSW_TOP_GET(pFpuCtx->FSW);
9269 unsigned const iReg2 = (iReg1 + iStReg) & X86_FSW_TOP_SMASK;
9270 Assert(!(RT_BIT(iReg1) & pFpuCtx->FTW) || !(RT_BIT(iReg2) & pFpuCtx->FTW));
9271
9272 /** @todo Testcase: fxch underflow. Making assumptions that underflowed
9273 * registers are read as QNaN and then exchanged. This could be
9274 * wrong... */
9275 if (pFpuCtx->FCW & X86_FCW_IM)
9276 {
9277 if (RT_BIT(iReg1) & pFpuCtx->FTW)
9278 {
9279 if (RT_BIT(iReg2) & pFpuCtx->FTW)
9280 iemFpuStoreQNan(&pFpuCtx->aRegs[0].r80);
9281 else
9282 pFpuCtx->aRegs[0].r80 = pFpuCtx->aRegs[iStReg].r80;
9283 iemFpuStoreQNan(&pFpuCtx->aRegs[iStReg].r80);
9284 }
9285 else
9286 {
9287 pFpuCtx->aRegs[iStReg].r80 = pFpuCtx->aRegs[0].r80;
9288 iemFpuStoreQNan(&pFpuCtx->aRegs[0].r80);
9289 }
9290 pFpuCtx->FSW &= ~X86_FSW_C_MASK;
9291 pFpuCtx->FSW |= X86_FSW_C1 | X86_FSW_IE | X86_FSW_SF;
9292 }
9293 else
9294 {
9295 /* raise underflow exception, don't change anything. */
9296 pFpuCtx->FSW &= ~(X86_FSW_TOP_MASK | X86_FSW_XCPT_MASK);
9297 pFpuCtx->FSW |= X86_FSW_C1 | X86_FSW_IE | X86_FSW_SF | X86_FSW_ES | X86_FSW_B;
9298 }
9299
9300 iemFpuUpdateOpcodeAndIpWorker(pVCpu, pFpuCtx);
9301 iemHlpUsedFpu(pVCpu);
9302 iemRegAddToRipAndClearRF(pVCpu, cbInstr);
9303 return VINF_SUCCESS;
9304}
9305
9306
9307/**
9308 * Implements 'FCOMI', 'FCOMIP', 'FUCOMI', and 'FUCOMIP'.
9309 *
9310 * @param cToAdd 1 or 7.
9311 */
9312IEM_CIMPL_DEF_3(iemCImpl_fcomi_fucomi, uint8_t, iStReg, PFNIEMAIMPLFPUR80EFL, pfnAImpl, bool, fPop)
9313{
9314 Assert(iStReg < 8);
9315 IEM_CTX_ASSERT(pVCpu, CPUMCTX_EXTRN_CR0 | CPUMCTX_EXTRN_X87);
9316
9317 /*
9318 * Raise exceptions.
9319 */
9320 if (pVCpu->cpum.GstCtx.cr0 & (X86_CR0_EM | X86_CR0_TS))
9321 return iemRaiseDeviceNotAvailable(pVCpu);
9322
9323 PX86FXSTATE pFpuCtx = &pVCpu->cpum.GstCtx.XState.x87;
9324 uint16_t u16Fsw = pFpuCtx->FSW;
9325 if (u16Fsw & X86_FSW_ES)
9326 return iemRaiseMathFault(pVCpu);
9327
9328 /*
9329 * Check if any of the register accesses causes #SF + #IA.
9330 */
9331 unsigned const iReg1 = X86_FSW_TOP_GET(u16Fsw);
9332 unsigned const iReg2 = (iReg1 + iStReg) & X86_FSW_TOP_SMASK;
9333 if ((pFpuCtx->FTW & (RT_BIT(iReg1) | RT_BIT(iReg2))) == (RT_BIT(iReg1) | RT_BIT(iReg2)))
9334 {
9335 uint32_t u32Eflags = pfnAImpl(pFpuCtx, &u16Fsw, &pFpuCtx->aRegs[0].r80, &pFpuCtx->aRegs[iStReg].r80);
9336 NOREF(u32Eflags);
9337
9338 pFpuCtx->FSW &= ~X86_FSW_C1;
9339 pFpuCtx->FSW |= u16Fsw & ~X86_FSW_TOP_MASK;
9340 if ( !(u16Fsw & X86_FSW_IE)
9341 || (pFpuCtx->FCW & X86_FCW_IM) )
9342 {
9343 pVCpu->cpum.GstCtx.eflags.u &= ~(X86_EFL_OF | X86_EFL_SF | X86_EFL_AF | X86_EFL_ZF | X86_EFL_PF | X86_EFL_CF);
9344 pVCpu->cpum.GstCtx.eflags.u |= pVCpu->cpum.GstCtx.eflags.u & (X86_EFL_ZF | X86_EFL_PF | X86_EFL_CF);
9345 }
9346 }
9347 else if (pFpuCtx->FCW & X86_FCW_IM)
9348 {
9349 /* Masked underflow. */
9350 pFpuCtx->FSW &= ~X86_FSW_C1;
9351 pFpuCtx->FSW |= X86_FSW_IE | X86_FSW_SF;
9352 pVCpu->cpum.GstCtx.eflags.u &= ~(X86_EFL_OF | X86_EFL_SF | X86_EFL_AF | X86_EFL_ZF | X86_EFL_PF | X86_EFL_CF);
9353 pVCpu->cpum.GstCtx.eflags.u |= X86_EFL_ZF | X86_EFL_PF | X86_EFL_CF;
9354 }
9355 else
9356 {
9357 /* Raise underflow - don't touch EFLAGS or TOP. */
9358 pFpuCtx->FSW &= ~X86_FSW_C1;
9359 pFpuCtx->FSW |= X86_FSW_IE | X86_FSW_SF | X86_FSW_ES | X86_FSW_B;
9360 fPop = false;
9361 }
9362
9363 /*
9364 * Pop if necessary.
9365 */
9366 if (fPop)
9367 {
9368 pFpuCtx->FTW &= ~RT_BIT(iReg1);
9369 pFpuCtx->FSW &= X86_FSW_TOP_MASK;
9370 pFpuCtx->FSW |= ((iReg1 + 7) & X86_FSW_TOP_SMASK) << X86_FSW_TOP_SHIFT;
9371 }
9372
9373 iemFpuUpdateOpcodeAndIpWorker(pVCpu, pFpuCtx);
9374 iemHlpUsedFpu(pVCpu);
9375 iemRegAddToRipAndClearRF(pVCpu, cbInstr);
9376 return VINF_SUCCESS;
9377}
9378
9379/** @} */
9380
Note: See TracBrowser for help on using the repository browser.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette