VirtualBox

source: vbox/trunk/src/VBox/VMM/PATM/VMMAll/PATMAll.cpp@ 11147

Last change on this file since 11147 was 9344, checked in by vboxsync, 16 years ago

Types and string format specifiers.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Id
File size: 20.6 KB
Line 
1/* $Id: PATMAll.cpp 9344 2008-06-03 09:49:14Z vboxsync $ */
2/** @file
3 * PATM - The Patch Manager, all contexts.
4 */
5
6/*
7 * Copyright (C) 2006-2007 Sun Microsystems, Inc.
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 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa
18 * Clara, CA 95054 USA or visit http://www.sun.com if you need
19 * additional information or have any questions.
20 */
21
22/*******************************************************************************
23* Header Files *
24*******************************************************************************/
25#define LOG_GROUP LOG_GROUP_PATM
26#include <VBox/patm.h>
27#include <VBox/cpum.h>
28#include <VBox/dis.h>
29#include <VBox/disopcode.h>
30#include <VBox/em.h>
31#include <VBox/err.h>
32#include <VBox/selm.h>
33#include <VBox/mm.h>
34#include "PATMInternal.h"
35#include <VBox/vm.h>
36#include "PATMA.h"
37
38#include <VBox/log.h>
39#include <iprt/assert.h>
40
41
42/**
43 * Load virtualized flags.
44 *
45 * This function is called from CPUMRawEnter(). It doesn't have to update the
46 * IF and IOPL eflags bits, the caller will enforce those to set and 0 repectively.
47 *
48 * @param pVM VM handle.
49 * @param pCtxCore The cpu context core.
50 * @see pg_raw
51 */
52PATMDECL(void) PATMRawEnter(PVM pVM, PCPUMCTXCORE pCtxCore)
53{
54 bool fPatchCode = PATMIsPatchGCAddr(pVM, (RTRCPTR)pCtxCore->eip);
55
56 /*
57 * Currently we don't bother to check whether PATM is enabled or not.
58 * For all cases where it isn't, IOPL will be safe and IF will be set.
59 */
60 register uint32_t efl = pCtxCore->eflags.u32;
61 CTXSUFF(pVM->patm.s.pGCState)->uVMFlags = efl & PATM_VIRTUAL_FLAGS_MASK;
62 AssertMsg((efl & X86_EFL_IF) || PATMShouldUseRawMode(pVM, (RTRCPTR)pCtxCore->eip), ("X86_EFL_IF is clear and PATM is disabled! (eip=%VRv eflags=%08x fPATM=%d pPATMGC=%VGv-%VGv\n", pCtxCore->eip, pCtxCore->eflags.u32, PATMIsEnabled(pVM), pVM->patm.s.pPatchMemGC, pVM->patm.s.pPatchMemGC + pVM->patm.s.cbPatchMem));
63
64 AssertReleaseMsg(CTXSUFF(pVM->patm.s.pGCState)->fPIF || fPatchCode, ("fPIF=%d eip=%VRv\n", CTXSUFF(pVM->patm.s.pGCState)->fPIF, pCtxCore->eip));
65
66 efl &= ~PATM_VIRTUAL_FLAGS_MASK;
67 efl |= X86_EFL_IF;
68 pCtxCore->eflags.u32 = efl;
69
70#ifdef IN_RING3
71#ifdef PATM_EMULATE_SYSENTER
72 PCPUMCTX pCtx;
73 int rc;
74
75 /* Check if the sysenter handler has changed. */
76 rc = CPUMQueryGuestCtxPtr(pVM, &pCtx);
77 AssertRC(rc);
78 if ( rc == VINF_SUCCESS
79 && pCtx->SysEnter.cs != 0
80 && pCtx->SysEnter.eip != 0
81 )
82 {
83 if (pVM->patm.s.pfnSysEnterGC != (RTRCPTR)pCtx->SysEnter.eip)
84 {
85 pVM->patm.s.pfnSysEnterPatchGC = 0;
86 pVM->patm.s.pfnSysEnterGC = 0;
87
88 Log2(("PATMRawEnter: installing sysenter patch for %VRv\n", pCtx->SysEnter.eip));
89 pVM->patm.s.pfnSysEnterPatchGC = PATMR3QueryPatchGCPtr(pVM, pCtx->SysEnter.eip);
90 if (pVM->patm.s.pfnSysEnterPatchGC == 0)
91 {
92 rc = PATMR3InstallPatch(pVM, pCtx->SysEnter.eip, PATMFL_SYSENTER | PATMFL_CODE32);
93 if (rc == VINF_SUCCESS)
94 {
95 pVM->patm.s.pfnSysEnterPatchGC = PATMR3QueryPatchGCPtr(pVM, pCtx->SysEnter.eip);
96 pVM->patm.s.pfnSysEnterGC = (RTRCPTR)pCtx->SysEnter.eip;
97 Assert(pVM->patm.s.pfnSysEnterPatchGC);
98 }
99 }
100 else
101 pVM->patm.s.pfnSysEnterGC = (RTRCPTR)pCtx->SysEnter.eip;
102 }
103 }
104 else
105 {
106 pVM->patm.s.pfnSysEnterPatchGC = 0;
107 pVM->patm.s.pfnSysEnterGC = 0;
108 }
109#endif
110#endif
111}
112
113
114/**
115 * Restores virtualized flags.
116 *
117 * This function is called from CPUMRawLeave(). It will update the eflags register.
118 *
119 ** @note Only here we are allowed to switch back to guest code (without a special reason such as a trap in patch code)!!
120 *
121 * @param pVM VM handle.
122 * @param pCtxCore The cpu context core.
123 * @param rawRC Raw mode return code
124 * @see @ref pg_raw
125 */
126PATMDECL(void) PATMRawLeave(PVM pVM, PCPUMCTXCORE pCtxCore, int rawRC)
127{
128 bool fPatchCode = PATMIsPatchGCAddr(pVM, (RTRCPTR)pCtxCore->eip);
129 /*
130 * We will only be called if PATMRawEnter was previously called.
131 */
132 register uint32_t efl = pCtxCore->eflags.u32;
133 efl = (efl & ~PATM_VIRTUAL_FLAGS_MASK) | (CTXSUFF(pVM->patm.s.pGCState)->uVMFlags & PATM_VIRTUAL_FLAGS_MASK);
134 pCtxCore->eflags.u32 = efl;
135 CTXSUFF(pVM->patm.s.pGCState)->uVMFlags = X86_EFL_IF;
136
137 AssertReleaseMsg((efl & X86_EFL_IF) || fPatchCode || rawRC == VINF_PATM_PENDING_IRQ_AFTER_IRET || VBOX_FAILURE(rawRC), ("Inconsistent state at %VRv rc=%Vrc\n", pCtxCore->eip, rawRC));
138 AssertReleaseMsg(CTXSUFF(pVM->patm.s.pGCState)->fPIF || fPatchCode || VBOX_FAILURE(rawRC), ("fPIF=%d eip=%VRv rc=%Vrc\n", CTXSUFF(pVM->patm.s.pGCState)->fPIF, pCtxCore->eip, rawRC));
139
140#ifdef IN_RING3
141 if ( (efl & X86_EFL_IF)
142 && fPatchCode
143 )
144 {
145 if ( rawRC < VINF_PATM_LEAVEGC_FIRST
146 || rawRC > VINF_PATM_LEAVEGC_LAST)
147 {
148 /*
149 * Golden rules:
150 * - Don't interrupt special patch streams that replace special instructions
151 * - Don't break instruction fusing (sti, pop ss, mov ss)
152 * - Don't go back to an instruction that has been overwritten by a patch jump
153 * - Don't interrupt an idt handler on entry (1st instruction); technically incorrect
154 *
155 */
156 if (CTXSUFF(pVM->patm.s.pGCState)->fPIF == 1) /* consistent patch instruction state */
157 {
158 PATMTRANSSTATE enmState;
159 RTRCPTR pOrgInstrGC = PATMR3PatchToGCPtr(pVM, pCtxCore->eip, &enmState);
160
161 AssertRelease(pOrgInstrGC);
162
163 Assert(enmState != PATMTRANS_OVERWRITTEN);
164 if (enmState == PATMTRANS_SAFE)
165 {
166 Assert(!PATMFindActivePatchByEntrypoint(pVM, pOrgInstrGC));
167 Log(("Switchback from %VRv to %VRv (Psp=%x)\n", pCtxCore->eip, pOrgInstrGC, CTXSUFF(pVM->patm.s.pGCState)->Psp));
168 STAM_COUNTER_INC(&pVM->patm.s.StatSwitchBack);
169 pCtxCore->eip = pOrgInstrGC;
170 fPatchCode = false; /* to reset the stack ptr */
171
172 CTXSUFF(pVM->patm.s.pGCState)->GCPtrInhibitInterrupts = 0; /* reset this pointer; safe otherwise the state would be PATMTRANS_INHIBITIRQ */
173 }
174 else
175 {
176 LogFlow(("Patch address %VRv can't be interrupted (state=%d)!\n", pCtxCore->eip, enmState));
177 STAM_COUNTER_INC(&pVM->patm.s.StatSwitchBackFail);
178 }
179 }
180 else
181 {
182 LogFlow(("Patch address %VRv can't be interrupted (fPIF=%d)!\n", pCtxCore->eip, CTXSUFF(pVM->patm.s.pGCState)->fPIF));
183 STAM_COUNTER_INC(&pVM->patm.s.StatSwitchBackFail);
184 }
185 }
186 }
187#else /* !IN_RING3 */
188 AssertMsgFailed(("!IN_RING3"));
189#endif /* !IN_RING3 */
190
191 if (!fPatchCode)
192 {
193 if (CTXSUFF(pVM->patm.s.pGCState)->GCPtrInhibitInterrupts == (RTRCPTR)pCtxCore->eip)
194 {
195 EMSetInhibitInterruptsPC(pVM, pCtxCore->eip);
196 }
197 CTXSUFF(pVM->patm.s.pGCState)->GCPtrInhibitInterrupts = 0;
198
199 /* Reset the stack pointer to the top of the stack. */
200#ifdef DEBUG
201 if (CTXSUFF(pVM->patm.s.pGCState)->Psp != PATM_STACK_SIZE)
202 {
203 LogFlow(("PATMRawLeave: Reset PATM stack (Psp = %x)\n", CTXSUFF(pVM->patm.s.pGCState)->Psp));
204 }
205#endif
206 CTXSUFF(pVM->patm.s.pGCState)->Psp = PATM_STACK_SIZE;
207 }
208}
209
210/**
211 * Get the EFLAGS.
212 * This is a worker for CPUMRawGetEFlags().
213 *
214 * @returns The eflags.
215 * @param pVM The VM handle.
216 * @param pCtxCore The context core.
217 */
218PATMDECL(uint32_t) PATMRawGetEFlags(PVM pVM, PCCPUMCTXCORE pCtxCore)
219{
220 uint32_t efl = pCtxCore->eflags.u32;
221 efl &= ~PATM_VIRTUAL_FLAGS_MASK;
222 efl |= pVM->patm.s.CTXSUFF(pGCState)->uVMFlags & PATM_VIRTUAL_FLAGS_MASK;
223 return efl;
224}
225
226/**
227 * Updates the EFLAGS.
228 * This is a worker for CPUMRawSetEFlags().
229 *
230 * @param pVM The VM handle.
231 * @param pCtxCore The context core.
232 * @param efl The new EFLAGS value.
233 */
234PATMDECL(void) PATMRawSetEFlags(PVM pVM, PCPUMCTXCORE pCtxCore, uint32_t efl)
235{
236 pVM->patm.s.CTXSUFF(pGCState)->uVMFlags = efl & PATM_VIRTUAL_FLAGS_MASK;
237 efl &= ~PATM_VIRTUAL_FLAGS_MASK;
238 efl |= X86_EFL_IF;
239 pCtxCore->eflags.u32 = efl;
240}
241
242/**
243 * Check if we must use raw mode (patch code being executed)
244 *
245 * @param pVM VM handle.
246 * @param pAddrGC Guest context address
247 */
248PATMDECL(bool) PATMShouldUseRawMode(PVM pVM, RTRCPTR pAddrGC)
249{
250 return ( PATMIsEnabled(pVM)
251 && ((pAddrGC >= (RTRCPTR)pVM->patm.s.pPatchMemGC && pAddrGC < (RTRCPTR)((RTRCUINTPTR)pVM->patm.s.pPatchMemGC + pVM->patm.s.cbPatchMem)))) ? true : false;
252}
253
254/**
255 * Returns the guest context pointer and size of the GC context structure
256 *
257 * @returns VBox status code.
258 * @param pVM The VM to operate on.
259 */
260PATMDECL(RCPTRTYPE(PPATMGCSTATE)) PATMQueryGCState(PVM pVM)
261{
262 return pVM->patm.s.pGCStateGC;
263}
264
265/**
266 * Checks whether the GC address is part of our patch region
267 *
268 * @returns VBox status code.
269 * @param pVM The VM to operate on.
270 * @param pAddrGC Guest context address
271 */
272PATMDECL(bool) PATMIsPatchGCAddr(PVM pVM, RTRCPTR pAddrGC)
273{
274 return (PATMIsEnabled(pVM) && pAddrGC >= pVM->patm.s.pPatchMemGC && pAddrGC < (RTRCPTR)((RTRCUINTPTR)pVM->patm.s.pPatchMemGC + pVM->patm.s.cbPatchMem)) ? true : false;
275}
276
277/**
278 * Set parameters for pending MMIO patch operation
279 *
280 * @returns VBox status code.
281 * @param pDevIns Device instance.
282 * @param GCPhys MMIO physical address
283 * @param pCachedData GC pointer to cached data
284 */
285PATMDECL(int) PATMSetMMIOPatchInfo(PVM pVM, RTGCPHYS GCPhys, RTRCPTR pCachedData)
286{
287 pVM->patm.s.mmio.GCPhys = GCPhys;
288 pVM->patm.s.mmio.pCachedData = (RTRCPTR)pCachedData;
289
290 return VINF_SUCCESS;
291}
292
293/**
294 * Checks if the interrupt flag is enabled or not.
295 *
296 * @returns true if it's enabled.
297 * @returns false if it's diabled.
298 *
299 * @param pVM The VM handle.
300 */
301PATMDECL(bool) PATMAreInterruptsEnabled(PVM pVM)
302{
303 PCPUMCTX pCtx = 0;
304 int rc;
305
306 rc = CPUMQueryGuestCtxPtr(pVM, &pCtx);
307 AssertRC(rc);
308
309 return PATMAreInterruptsEnabledByCtxCore(pVM, CPUMCTX2CORE(pCtx));
310}
311
312/**
313 * Checks if the interrupt flag is enabled or not.
314 *
315 * @returns true if it's enabled.
316 * @returns false if it's diabled.
317 *
318 * @param pVM The VM handle.
319 * @param pCtxCore CPU context
320 */
321PATMDECL(bool) PATMAreInterruptsEnabledByCtxCore(PVM pVM, PCPUMCTXCORE pCtxCore)
322{
323 if (PATMIsEnabled(pVM))
324 {
325 if (PATMIsPatchGCAddr(pVM, (RTRCPTR)pCtxCore->eip))
326 return false;
327 }
328 return !!(pCtxCore->eflags.u32 & X86_EFL_IF);
329}
330
331/**
332 * Check if the instruction is patched as a duplicated function
333 *
334 * @returns patch record
335 * @param pVM The VM to operate on.
336 * @param pInstrGC Guest context point to the instruction
337 *
338 */
339PATMDECL(PPATMPATCHREC) PATMQueryFunctionPatch(PVM pVM, RTRCPTR pInstrGC)
340{
341 PPATMPATCHREC pRec;
342
343 AssertCompile(sizeof(AVLOU32KEY) == sizeof(pInstrGC));
344 pRec = (PPATMPATCHREC)RTAvloU32Get(&CTXSUFF(pVM->patm.s.PatchLookupTree)->PatchTree, (AVLOU32KEY)pInstrGC);
345 if ( pRec
346 && (pRec->patch.uState == PATCH_ENABLED)
347 && (pRec->patch.flags & (PATMFL_DUPLICATE_FUNCTION|PATMFL_CALLABLE_AS_FUNCTION))
348 )
349 return pRec;
350 return 0;
351}
352
353/**
354 * Checks if the int 3 was caused by a patched instruction
355 *
356 * @returns VBox status
357 *
358 * @param pVM The VM handle.
359 * @param pInstrGC Instruction pointer
360 * @param pOpcode Original instruction opcode (out, optional)
361 * @param pSize Original instruction size (out, optional)
362 */
363PATMDECL(bool) PATMIsInt3Patch(PVM pVM, RTRCPTR pInstrGC, uint32_t *pOpcode, uint32_t *pSize)
364{
365 PPATMPATCHREC pRec;
366
367 pRec = (PPATMPATCHREC)RTAvloU32Get(&CTXSUFF(pVM->patm.s.PatchLookupTree)->PatchTree, (AVLOU32KEY)pInstrGC);
368 if ( pRec
369 && (pRec->patch.uState == PATCH_ENABLED)
370 && (pRec->patch.flags & (PATMFL_INT3_REPLACEMENT|PATMFL_INT3_REPLACEMENT_BLOCK))
371 )
372 {
373 if (pOpcode) *pOpcode = pRec->patch.opcode;
374 if (pSize) *pSize = pRec->patch.cbPrivInstr;
375 return true;
376 }
377 return false;
378}
379
380/**
381 * Emulate sysenter, sysexit and syscall instructions
382 *
383 * @returns VBox status
384 *
385 * @param pVM The VM handle.
386 * @param pCtxCore The relevant core context.
387 * @param pCpu Disassembly context
388 */
389PATMDECL(int) PATMSysCall(PVM pVM, PCPUMCTXCORE pRegFrame, PDISCPUSTATE pCpu)
390{
391 PCPUMCTX pCtx;
392 int rc;
393
394 rc = CPUMQueryGuestCtxPtr(pVM, &pCtx);
395 AssertRCReturn(rc, VINF_EM_RAW_RING_SWITCH);
396
397 if (pCpu->pCurInstr->opcode == OP_SYSENTER)
398 {
399 if ( pCtx->SysEnter.cs == 0
400 || pRegFrame->eflags.Bits.u1VM
401 || (pRegFrame->cs & X86_SEL_RPL) != 3
402 || pVM->patm.s.pfnSysEnterPatchGC == 0
403 || pVM->patm.s.pfnSysEnterGC != (RTRCPTR)pCtx->SysEnter.eip
404 || !(PATMRawGetEFlags(pVM, pRegFrame) & X86_EFL_IF))
405 goto end;
406
407 Log2(("PATMSysCall: sysenter from %VRv to %VRv\n", pRegFrame->eip, pVM->patm.s.pfnSysEnterPatchGC));
408 /** @todo the base and limit are forced to 0 & 4G-1 resp. We assume the selector is wide open here. */
409 /** @note The Intel manual suggests that the OS is responsible for this. */
410 pRegFrame->cs = (pCtx->SysEnter.cs & ~X86_SEL_RPL) | 1;
411 pRegFrame->eip = /** @todo ugly conversion! */(uint32_t)pVM->patm.s.pfnSysEnterPatchGC;
412 pRegFrame->ss = pRegFrame->cs + 8; /* SysEnter.cs + 8 */
413 pRegFrame->esp = pCtx->SysEnter.esp;
414 pRegFrame->eflags.u32 &= ~(X86_EFL_VM|X86_EFL_RF);
415 pRegFrame->eflags.u32 |= X86_EFL_IF;
416
417 /* Turn off interrupts. */
418 pVM->patm.s.CTXSUFF(pGCState)->uVMFlags &= ~X86_EFL_IF;
419
420 STAM_COUNTER_INC(&pVM->patm.s.StatSysEnter);
421
422 return VINF_SUCCESS;
423 }
424 else
425 if (pCpu->pCurInstr->opcode == OP_SYSEXIT)
426 {
427 if ( pCtx->SysEnter.cs == 0
428 || (pRegFrame->cs & X86_SEL_RPL) != 1
429 || pRegFrame->eflags.Bits.u1VM
430 || !(PATMRawGetEFlags(pVM, pRegFrame) & X86_EFL_IF))
431 goto end;
432
433 Log2(("PATMSysCall: sysexit from %VRv to %VRv\n", pRegFrame->eip, pRegFrame->edx));
434
435 pRegFrame->cs = ((pCtx->SysEnter.cs + 16) & ~X86_SEL_RPL) | 3;
436 pRegFrame->eip = pRegFrame->edx;
437 pRegFrame->ss = pRegFrame->cs + 8; /* SysEnter.cs + 24 */
438 pRegFrame->esp = pRegFrame->ecx;
439
440 STAM_COUNTER_INC(&pVM->patm.s.StatSysExit);
441
442 return VINF_SUCCESS;
443 }
444 else
445 if (pCpu->pCurInstr->opcode == OP_SYSCALL)
446 {
447 /** @todo implement syscall */
448 }
449 else
450 if (pCpu->pCurInstr->opcode == OP_SYSRET)
451 {
452 /** @todo implement sysret */
453 }
454
455end:
456 return VINF_EM_RAW_RING_SWITCH;
457}
458
459/**
460 * Adds branch pair to the lookup cache of the particular branch instruction
461 *
462 * @returns VBox status
463 * @param pVM The VM to operate on.
464 * @param pJumpTableGC Pointer to branch instruction lookup cache
465 * @param pBranchTarget Original branch target
466 * @param pRelBranchPatch Relative duplicated function address
467 */
468PATMDECL(int) PATMAddBranchToLookupCache(PVM pVM, RTRCPTR pJumpTableGC, RTRCPTR pBranchTarget, RTRCUINTPTR pRelBranchPatch)
469{
470 PPATCHJUMPTABLE pJumpTable;
471
472 Log(("PATMAddBranchToLookupCache: Adding (%VRv->%VRv (%VRv)) to table %VRv\n", pBranchTarget, pRelBranchPatch + pVM->patm.s.pPatchMemGC, pRelBranchPatch, pJumpTableGC));
473
474 AssertReturn(PATMIsPatchGCAddr(pVM, pJumpTableGC), VERR_INVALID_PARAMETER);
475
476#ifdef IN_GC
477 pJumpTable = (PPATCHJUMPTABLE) pJumpTableGC;
478#else
479 pJumpTable = (PPATCHJUMPTABLE) (pJumpTableGC - pVM->patm.s.pPatchMemGC + pVM->patm.s.pPatchMemHC);
480#endif
481 Log(("Nr addresses = %d, insert pos = %d\n", pJumpTable->cAddresses, pJumpTable->ulInsertPos));
482 if (pJumpTable->cAddresses < pJumpTable->nrSlots)
483 {
484 uint32_t i;
485
486 for (i=0;i<pJumpTable->nrSlots;i++)
487 {
488 if (pJumpTable->Slot[i].pInstrGC == 0)
489 {
490 pJumpTable->Slot[i].pInstrGC = pBranchTarget;
491 /* Relative address - eases relocation */
492 pJumpTable->Slot[i].pRelPatchGC = pRelBranchPatch;
493 pJumpTable->cAddresses++;
494 break;
495 }
496 }
497 AssertReturn(i < pJumpTable->nrSlots, VERR_INTERNAL_ERROR);
498#ifdef VBOX_WITH_STATISTICS
499 STAM_COUNTER_INC(&pVM->patm.s.StatFunctionLookupInsert);
500 if (pVM->patm.s.StatU32FunctionMaxSlotsUsed < i)
501 pVM->patm.s.StatU32FunctionMaxSlotsUsed = i + 1;
502#endif
503 }
504 else
505 {
506 /* Replace an old entry. */
507 /** @todo replacement strategy isn't really bright. change to something better if required. */
508 Assert(pJumpTable->ulInsertPos < pJumpTable->nrSlots);
509 Assert((pJumpTable->nrSlots & 1) == 0);
510
511 pJumpTable->ulInsertPos &= (pJumpTable->nrSlots-1);
512 pJumpTable->Slot[pJumpTable->ulInsertPos].pInstrGC = pBranchTarget;
513 /* Relative address - eases relocation */
514 pJumpTable->Slot[pJumpTable->ulInsertPos].pRelPatchGC = pRelBranchPatch;
515
516 pJumpTable->ulInsertPos = (pJumpTable->ulInsertPos+1) & (pJumpTable->nrSlots-1);
517
518 STAM_COUNTER_INC(&pVM->patm.s.StatFunctionLookupReplace);
519 }
520
521 return VINF_SUCCESS;
522}
523
524
525#if defined(VBOX_WITH_STATISTICS) || defined(LOG_ENABLED)
526/**
527 * Return the name of the patched instruction
528 *
529 * @returns instruction name
530 *
531 * @param opcode DIS instruction opcode
532 * @param fPatchFlags Patch flags
533 */
534PATMDECL(const char *) patmGetInstructionString(uint32_t opcode, uint32_t fPatchFlags)
535{
536 const char *pszInstr = NULL;
537
538 switch (opcode)
539 {
540 case OP_CLI:
541 pszInstr = "cli";
542 break;
543 case OP_PUSHF:
544 pszInstr = "pushf";
545 break;
546 case OP_POPF:
547 pszInstr = "popf";
548 break;
549 case OP_STR:
550 pszInstr = "str";
551 break;
552 case OP_LSL:
553 pszInstr = "lsl";
554 break;
555 case OP_LAR:
556 pszInstr = "lar";
557 break;
558 case OP_SGDT:
559 pszInstr = "sgdt";
560 break;
561 case OP_SLDT:
562 pszInstr = "sldt";
563 break;
564 case OP_SIDT:
565 pszInstr = "sidt";
566 break;
567 case OP_SMSW:
568 pszInstr = "smsw";
569 break;
570 case OP_VERW:
571 pszInstr = "verw";
572 break;
573 case OP_VERR:
574 pszInstr = "verr";
575 break;
576 case OP_CPUID:
577 pszInstr = "cpuid";
578 break;
579 case OP_JMP:
580 pszInstr = "jmp";
581 break;
582 case OP_JO:
583 pszInstr = "jo";
584 break;
585 case OP_JNO:
586 pszInstr = "jno";
587 break;
588 case OP_JC:
589 pszInstr = "jc";
590 break;
591 case OP_JNC:
592 pszInstr = "jnc";
593 break;
594 case OP_JE:
595 pszInstr = "je";
596 break;
597 case OP_JNE:
598 pszInstr = "jne";
599 break;
600 case OP_JBE:
601 pszInstr = "jbe";
602 break;
603 case OP_JNBE:
604 pszInstr = "jnbe";
605 break;
606 case OP_JS:
607 pszInstr = "js";
608 break;
609 case OP_JNS:
610 pszInstr = "jns";
611 break;
612 case OP_JP:
613 pszInstr = "jp";
614 break;
615 case OP_JNP:
616 pszInstr = "jnp";
617 break;
618 case OP_JL:
619 pszInstr = "jl";
620 break;
621 case OP_JNL:
622 pszInstr = "jnl";
623 break;
624 case OP_JLE:
625 pszInstr = "jle";
626 break;
627 case OP_JNLE:
628 pszInstr = "jnle";
629 break;
630 case OP_JECXZ:
631 pszInstr = "jecxz";
632 break;
633 case OP_LOOP:
634 pszInstr = "loop";
635 break;
636 case OP_LOOPNE:
637 pszInstr = "loopne";
638 break;
639 case OP_LOOPE:
640 pszInstr = "loope";
641 break;
642 case OP_MOV:
643 if (fPatchFlags & PATMFL_IDTHANDLER)
644 {
645 pszInstr = "mov (Int/Trap Handler)";
646 }
647 break;
648 case OP_SYSENTER:
649 pszInstr = "sysenter";
650 break;
651 case OP_PUSH:
652 pszInstr = "push (cs)";
653 break;
654 case OP_CALL:
655 pszInstr = "call";
656 break;
657 case OP_IRET:
658 pszInstr = "iret";
659 break;
660 }
661 return pszInstr;
662}
663#endif
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