VirtualBox

source: vbox/trunk/src/VBox/VMM/include/EMHandleRCTmpl.h@ 52075

Last change on this file since 52075 was 52075, checked in by vboxsync, 10 years ago

EM: If IEM can't inject events, do not execute any instructions and reschedule right away.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 13.0 KB
Line 
1/* $Id: EMHandleRCTmpl.h 52075 2014-07-17 12:46:20Z vboxsync $ */
2/** @file
3 * EM - emR3[Raw|Hm]HandleRC template.
4 */
5
6/*
7 * Copyright (C) 2006-2013 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#ifndef ___EMHandleRCTmpl_h
19#define ___EMHandleRCTmpl_h
20
21#if defined(EMHANDLERC_WITH_PATM) && defined(EMHANDLERC_WITH_HM)
22# error "Only one define"
23#endif
24
25
26/**
27 * Process a subset of the raw-mode and hm return codes.
28 *
29 * Since we have to share this with raw-mode single stepping, this inline
30 * function has been created to avoid code duplication.
31 *
32 * @returns VINF_SUCCESS if it's ok to continue raw mode.
33 * @returns VBox status code to return to the EM main loop.
34 *
35 * @param pVM Pointer to the VM.
36 * @param pVCpu Pointer to the VMCPU.
37 * @param rc The return code.
38 * @param pCtx Pointer to the guest CPU context.
39 */
40#ifdef EMHANDLERC_WITH_PATM
41int emR3RawHandleRC(PVM pVM, PVMCPU pVCpu, PCPUMCTX pCtx, int rc)
42#elif defined(EMHANDLERC_WITH_HM)
43int emR3HmHandleRC(PVM pVM, PVMCPU pVCpu, PCPUMCTX pCtx, int rc)
44#endif
45{
46 switch (rc)
47 {
48 /*
49 * Common & simple ones.
50 */
51 case VINF_SUCCESS:
52 break;
53 case VINF_EM_RESCHEDULE_RAW:
54 case VINF_EM_RESCHEDULE_HM:
55 case VINF_EM_RAW_INTERRUPT:
56 case VINF_EM_RAW_TO_R3:
57 case VINF_EM_RAW_TIMER_PENDING:
58 case VINF_EM_PENDING_REQUEST:
59 rc = VINF_SUCCESS;
60 break;
61
62#ifdef EMHANDLERC_WITH_PATM
63 /*
64 * Privileged instruction.
65 */
66 case VINF_EM_RAW_EXCEPTION_PRIVILEGED:
67 case VINF_PATM_PATCH_TRAP_GP:
68 rc = emR3RawPrivileged(pVM, pVCpu);
69 break;
70
71 case VINF_EM_RAW_GUEST_TRAP:
72 /*
73 * Got a trap which needs dispatching.
74 */
75 if (PATMR3IsInsidePatchJump(pVM, pCtx->eip, NULL))
76 {
77 AssertReleaseMsgFailed(("FATAL ERROR: executing random instruction inside generated patch jump %08X\n", CPUMGetGuestEIP(pVCpu)));
78 rc = VERR_EM_RAW_PATCH_CONFLICT;
79 break;
80 }
81 rc = emR3RawGuestTrap(pVM, pVCpu);
82 break;
83
84 /*
85 * Trap in patch code.
86 */
87 case VINF_PATM_PATCH_TRAP_PF:
88 case VINF_PATM_PATCH_INT3:
89 rc = emR3RawPatchTrap(pVM, pVCpu, pCtx, rc);
90 break;
91
92 case VINF_PATM_DUPLICATE_FUNCTION:
93 Assert(PATMIsPatchGCAddr(pVM, pCtx->eip));
94 rc = PATMR3DuplicateFunctionRequest(pVM, pCtx);
95 AssertRC(rc);
96 rc = VINF_SUCCESS;
97 break;
98
99 case VINF_PATM_CHECK_PATCH_PAGE:
100 rc = PATMR3HandleMonitoredPage(pVM);
101 AssertRC(rc);
102 rc = VINF_SUCCESS;
103 break;
104
105 /*
106 * Patch manager.
107 */
108 case VERR_EM_RAW_PATCH_CONFLICT:
109 AssertReleaseMsgFailed(("%Rrc handling is not yet implemented\n", rc));
110 break;
111#endif /* EMHANDLERC_WITH_PATM */
112
113#ifdef EMHANDLERC_WITH_PATM
114 /*
115 * Memory mapped I/O access - attempt to patch the instruction
116 */
117 case VINF_PATM_HC_MMIO_PATCH_READ:
118 rc = PATMR3InstallPatch(pVM, SELMToFlat(pVM, DISSELREG_CS, CPUMCTX2CORE(pCtx), pCtx->eip),
119 PATMFL_MMIO_ACCESS
120 | (CPUMGetGuestCodeBits(pVCpu) == 32 ? PATMFL_CODE32 : 0));
121 if (RT_FAILURE(rc))
122 rc = emR3ExecuteInstruction(pVM, pVCpu, "MMIO");
123 break;
124
125 case VINF_PATM_HC_MMIO_PATCH_WRITE:
126 AssertFailed(); /* not yet implemented. */
127 rc = emR3ExecuteInstruction(pVM, pVCpu, "MMIO");
128 break;
129#endif /* EMHANDLERC_WITH_PATM */
130
131 /*
132 * Conflict or out of page tables.
133 *
134 * VM_FF_PGM_SYNC_CR3 is set by the hypervisor and all we need to
135 * do here is to execute the pending forced actions.
136 */
137 case VINF_PGM_SYNC_CR3:
138 AssertMsg(VMCPU_FF_IS_PENDING(pVCpu, VMCPU_FF_PGM_SYNC_CR3 | VMCPU_FF_PGM_SYNC_CR3_NON_GLOBAL),
139 ("VINF_PGM_SYNC_CR3 and no VMCPU_FF_PGM_SYNC_CR3*!\n"));
140 rc = VINF_SUCCESS;
141 break;
142
143 /*
144 * PGM pool flush pending (guest SMP only).
145 */
146 /** @todo jumping back and forth between ring 0 and 3 can burn a lot of cycles
147 * if the EMT thread that's supposed to handle the flush is currently not active
148 * (e.g. waiting to be scheduled) -> fix this properly!
149 *
150 * bird: Since the clearing is global and done via a rendezvous any CPU can do
151 * it. They would have to choose who to call VMMR3EmtRendezvous and send
152 * the rest to VMMR3EmtRendezvousFF ... Hmm ... that's not going to work
153 * all that well since the latter will race the setup done by the
154 * first. Guess that means we need some new magic in that area for
155 * handling this case. :/
156 */
157 case VINF_PGM_POOL_FLUSH_PENDING:
158 rc = VINF_SUCCESS;
159 break;
160
161 /*
162 * Paging mode change.
163 */
164 case VINF_PGM_CHANGE_MODE:
165 rc = PGMChangeMode(pVCpu, pCtx->cr0, pCtx->cr4, pCtx->msrEFER);
166 if (rc == VINF_SUCCESS)
167 rc = VINF_EM_RESCHEDULE;
168 AssertMsg(RT_FAILURE(rc) || (rc >= VINF_EM_FIRST && rc <= VINF_EM_LAST), ("%Rrc\n", rc));
169 break;
170
171#ifdef EMHANDLERC_WITH_PATM
172 /*
173 * CSAM wants to perform a task in ring-3. It has set an FF action flag.
174 */
175 case VINF_CSAM_PENDING_ACTION:
176 rc = VINF_SUCCESS;
177 break;
178
179 /*
180 * Invoked Interrupt gate - must directly (!) go to the recompiler.
181 */
182 case VINF_EM_RAW_INTERRUPT_PENDING:
183 case VINF_EM_RAW_RING_SWITCH_INT:
184 Assert(TRPMHasTrap(pVCpu));
185 Assert(!PATMIsPatchGCAddr(pVM, pCtx->eip));
186
187 if (TRPMHasTrap(pVCpu))
188 {
189 /* If the guest gate is marked unpatched, then we will check again if we can patch it. */
190 uint8_t u8Interrupt = TRPMGetTrapNo(pVCpu);
191 if (TRPMR3GetGuestTrapHandler(pVM, u8Interrupt) == TRPM_INVALID_HANDLER)
192 {
193 CSAMR3CheckGates(pVM, u8Interrupt, 1);
194 Log(("emR3RawHandleRC: recheck gate %x -> valid=%d\n", u8Interrupt, TRPMR3GetGuestTrapHandler(pVM, u8Interrupt) != TRPM_INVALID_HANDLER));
195 /* Note: If it was successful, then we could go back to raw mode, but let's keep things simple for now. */
196 }
197 }
198 rc = VINF_EM_RESCHEDULE_REM;
199 break;
200
201 /*
202 * Other ring switch types.
203 */
204 case VINF_EM_RAW_RING_SWITCH:
205 rc = emR3RawRingSwitch(pVM, pVCpu);
206 break;
207#endif /* EMHANDLERC_WITH_PATM */
208
209 /*
210 * I/O Port access - emulate the instruction.
211 */
212 case VINF_IOM_R3_IOPORT_READ:
213 case VINF_IOM_R3_IOPORT_WRITE:
214 rc = emR3ExecuteIOInstruction(pVM, pVCpu);
215 break;
216
217 /*
218 * Memory mapped I/O access - emulate the instruction.
219 */
220 case VINF_IOM_R3_MMIO_READ:
221 case VINF_IOM_R3_MMIO_WRITE:
222 case VINF_IOM_R3_MMIO_READ_WRITE:
223 rc = emR3ExecuteInstruction(pVM, pVCpu, "MMIO");
224 break;
225
226#ifdef EMHANDLERC_WITH_HM
227 /*
228 * (MM)IO intensive code block detected; fall back to the recompiler for better performance
229 */
230 case VINF_EM_RAW_EMULATE_IO_BLOCK:
231 rc = HMR3EmulateIoBlock(pVM, pCtx);
232 break;
233
234 case VINF_EM_HM_PATCH_TPR_INSTR:
235 rc = HMR3PatchTprInstr(pVM, pVCpu, pCtx);
236 break;
237#endif
238
239#ifdef EMHANDLERC_WITH_PATM
240 /*
241 * Execute instruction.
242 */
243 case VINF_EM_RAW_EMULATE_INSTR_LDT_FAULT:
244 rc = emR3ExecuteInstruction(pVM, pVCpu, "LDT FAULT: ");
245 break;
246 case VINF_EM_RAW_EMULATE_INSTR_GDT_FAULT:
247 rc = emR3ExecuteInstruction(pVM, pVCpu, "GDT FAULT: ");
248 break;
249 case VINF_EM_RAW_EMULATE_INSTR_IDT_FAULT:
250 rc = emR3ExecuteInstruction(pVM, pVCpu, "IDT FAULT: ");
251 break;
252 case VINF_EM_RAW_EMULATE_INSTR_TSS_FAULT:
253 rc = emR3ExecuteInstruction(pVM, pVCpu, "TSS FAULT: ");
254 break;
255 case VINF_EM_RAW_EMULATE_INSTR_PD_FAULT:
256 rc = emR3ExecuteInstruction(pVM, pVCpu, "PD FAULT: ");
257 break;
258 case VINF_EM_RAW_EMULATE_INSTR_HLT:
259 /** @todo skip instruction and go directly to the halt state. (see REM for implementation details) */
260 rc = emR3RawPrivileged(pVM, pVCpu);
261 break;
262#endif
263
264#ifdef EMHANDLERC_WITH_PATM
265 case VINF_PATM_PENDING_IRQ_AFTER_IRET:
266 rc = emR3ExecuteInstruction(pVM, pVCpu, "EMUL: ", VINF_PATM_PENDING_IRQ_AFTER_IRET);
267 break;
268
269 case VINF_PATCH_EMULATE_INSTR:
270#else
271 case VINF_EM_RAW_GUEST_TRAP:
272#endif
273 case VINF_EM_RAW_EMULATE_INSTR:
274 rc = emR3ExecuteInstruction(pVM, pVCpu, "EMUL: ");
275 break;
276
277 case VINF_EM_RAW_INJECT_TRPM_EVENT:
278#ifdef VBOX_WITH_FIRST_IEM_STEP
279 rc = VBOXSTRICTRC_VAL(IEMInjectTrpmEvent(pVCpu));
280 /* The following condition should be removed when IEM_IMPLEMENTS_TASKSWITCH becomes true. */
281 if (rc == VERR_IEM_ASPECT_NOT_IMPLEMENTED)
282 rc = VINF_EM_RESCHEDULE_REM;
283#else
284 /* Do the same thing as VINF_EM_RAW_EMULATE_INSTR. */
285 rc = emR3ExecuteInstruction(pVM, pVCpu, "EVENT: ");
286#endif
287 break;
288
289
290#ifdef EMHANDLERC_WITH_PATM
291 /*
292 * Stale selector and iret traps => REM.
293 */
294 case VINF_EM_RAW_STALE_SELECTOR:
295 case VINF_EM_RAW_IRET_TRAP:
296 /* We will not go to the recompiler if EIP points to patch code. */
297 if (PATMIsPatchGCAddr(pVM, pCtx->eip))
298 {
299 pCtx->eip = PATMR3PatchToGCPtr(pVM, (RTGCPTR)pCtx->eip, 0);
300 }
301 LogFlow(("emR3RawHandleRC: %Rrc -> %Rrc\n", rc, VINF_EM_RESCHEDULE_REM));
302 rc = VINF_EM_RESCHEDULE_REM;
303 break;
304
305 /*
306 * Conflict in GDT, resync and continue.
307 */
308 case VINF_SELM_SYNC_GDT:
309 AssertMsg(VMCPU_FF_IS_PENDING(pVCpu, VMCPU_FF_SELM_SYNC_GDT | VMCPU_FF_SELM_SYNC_LDT | VMCPU_FF_SELM_SYNC_TSS),
310 ("VINF_SELM_SYNC_GDT without VMCPU_FF_SELM_SYNC_GDT/LDT/TSS!\n"));
311 rc = VINF_SUCCESS;
312 break;
313#endif
314
315 /*
316 * Up a level.
317 */
318 case VINF_EM_TERMINATE:
319 case VINF_EM_OFF:
320 case VINF_EM_RESET:
321 case VINF_EM_SUSPEND:
322 case VINF_EM_HALT:
323 case VINF_EM_RESUME:
324 case VINF_EM_NO_MEMORY:
325 case VINF_EM_RESCHEDULE:
326 case VINF_EM_RESCHEDULE_REM:
327 case VINF_EM_WAIT_SIPI:
328 break;
329
330 /*
331 * Up a level and invoke the debugger.
332 */
333 case VINF_EM_DBG_STEPPED:
334 case VINF_EM_DBG_BREAKPOINT:
335 case VINF_EM_DBG_STEP:
336 case VINF_EM_DBG_HYPER_BREAKPOINT:
337 case VINF_EM_DBG_HYPER_STEPPED:
338 case VINF_EM_DBG_HYPER_ASSERTION:
339 case VINF_EM_DBG_STOP:
340 break;
341
342 /*
343 * Up a level, dump and debug.
344 */
345 case VERR_TRPM_DONT_PANIC:
346 case VERR_TRPM_PANIC:
347 case VERR_VMM_RING0_ASSERTION:
348 case VINF_EM_TRIPLE_FAULT:
349 case VERR_VMM_HYPER_CR3_MISMATCH:
350 case VERR_VMM_RING3_CALL_DISABLED:
351 case VERR_IEM_INSTR_NOT_IMPLEMENTED:
352 case VERR_IEM_ASPECT_NOT_IMPLEMENTED:
353 break;
354
355#ifdef EMHANDLERC_WITH_HM
356 /*
357 * Up a level, after Hm have done some release logging.
358 */
359 case VERR_VMX_INVALID_VMCS_FIELD:
360 case VERR_VMX_INVALID_VMCS_PTR:
361 case VERR_VMX_INVALID_VMXON_PTR:
362 case VERR_VMX_UNEXPECTED_INTERRUPTION_EXIT_TYPE:
363 case VERR_VMX_UNEXPECTED_EXCEPTION:
364 case VERR_VMX_UNEXPECTED_EXIT:
365 case VERR_VMX_INVALID_GUEST_STATE:
366 case VERR_VMX_UNABLE_TO_START_VM:
367 case VERR_SVM_UNKNOWN_EXIT:
368 case VERR_SVM_UNEXPECTED_EXIT:
369 case VERR_SVM_UNEXPECTED_PATCH_TYPE:
370 case VERR_SVM_UNEXPECTED_XCPT_EXIT:
371 HMR3CheckError(pVM, rc);
372 break;
373
374 /* Up a level; fatal */
375 case VERR_VMX_IN_VMX_ROOT_MODE:
376 case VERR_SVM_IN_USE:
377 case VERR_SVM_UNABLE_TO_START_VM:
378 break;
379#endif
380
381 /*
382 * Anything which is not known to us means an internal error
383 * and the termination of the VM!
384 */
385 default:
386 AssertMsgFailed(("Unknown GC return code: %Rra\n", rc));
387 break;
388 }
389 return rc;
390}
391
392#endif
393
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