IOMAllMMIO.cpp revision 9243c25e887b8f49e764b130c132bbe1b60bed50
/* $Id$ */
/** @file
* IOM - Input / Output Monitor - Any Context, MMIO & String I/O.
*/
/*
* Copyright (C) 2006-2007 Sun Microsystems, Inc.
*
* This file is part of VirtualBox Open Source Edition (OSE), as
* available from http://www.virtualbox.org. This file is free software;
* General Public License (GPL) as published by the Free Software
* Foundation, in version 2 as it comes in the "COPYING" file of the
* VirtualBox OSE distribution. VirtualBox OSE is distributed in the
* hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
*
* Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa
* Clara, CA 95054 USA or visit http://www.sun.com if you need
* additional information or have any questions.
*/
/*******************************************************************************
* Header Files *
*******************************************************************************/
#define LOG_GROUP LOG_GROUP_IOM
#include "IOMInternal.h"
#include <VBox/disopcode.h>
/*******************************************************************************
* Global Variables *
*******************************************************************************/
/**
* Array for fast recode of the operand size (1/2/4/8 bytes) to bit shift value.
*/
static const unsigned g_aSize2Shift[] =
{
~0, /* 0 - invalid */
0, /* *1 == 2^0 */
1, /* *2 == 2^1 */
~0, /* 3 - invalid */
2, /* *4 == 2^2 */
~0, /* 5 - invalid */
~0, /* 6 - invalid */
~0, /* 7 - invalid */
3 /* *8 == 2^3 */
};
/**
* Macro for fast recode of the operand size (1/2/4/8 bytes) to bit shift value.
*/
/**
* Wrapper which does the write and updates range statistics when such are enabled.
* @warning RT_SUCCESS(rc=VINF_IOM_HC_MMIO_WRITE) is TRUE!
*/
DECLINLINE(int) iomMMIODoWrite(PVM pVM, PIOMMMIORANGE pRange, RTGCPHYS GCPhysFault, const void *pvData, unsigned cb)
{
#ifdef VBOX_WITH_STATISTICS
#endif
int rc;
rc = pRange->CTX_SUFF(pfnWriteCallback)(pRange->CTX_SUFF(pDevIns), pRange->CTX_SUFF(pvUser), GCPhysFault, (void *)pvData, cb); /* @todo fix const!! */
else
rc = VINF_SUCCESS;
if (rc != VINF_IOM_HC_MMIO_WRITE)
return rc;
}
/**
* Wrapper which does the read and updates range statistics when such are enabled.
*/
DECLINLINE(int) iomMMIODoRead(PVM pVM, PIOMMMIORANGE pRange, RTGCPHYS GCPhysFault, void *pvData, unsigned cb)
{
#ifdef VBOX_WITH_STATISTICS
#endif
int rc;
rc = pRange->CTX_SUFF(pfnReadCallback)(pRange->CTX_SUFF(pDevIns), pRange->CTX_SUFF(pvUser), GCPhysFault, pvData, cb);
else
{
/** @todo r=bird: this is (probably) wrong, all bits should be set here I
* think. */
switch (cb)
{
default:
break;
}
rc = VINF_SUCCESS;
}
if (rc != VINF_IOM_HC_MMIO_READ)
return rc;
}
/**
* Internal - statistics only.
*/
{
#ifdef VBOX_WITH_STATISTICS
switch (cb)
{
case 1:
break;
case 2:
break;
case 4:
break;
case 8:
break;
default:
/* No way. */
break;
}
#else
#endif
}
/**
* MOV reg, mem (read)
* MOVZX reg, mem (read)
* MOVSX reg, mem (read)
*
* @returns VBox status code.
*
* @param pVM The virtual machine.
* @param pRegFrame Pointer to CPUMCTXCORE guest registers structure.
* @param pCpu Disassembler CPU state.
* @param pRange Pointer MMIO range.
* @param GCPhysFault The GC physical address corresponding to pvFault.
*/
static int iomInterpretMOVxXRead(PVM pVM, PCPUMCTXCORE pRegFrame, PDISCPUSTATE pCpu, PIOMMMIORANGE pRange, RTGCPHYS GCPhysFault)
{
/*
* Get the data size from parameter 2,
* and call the handler function to get the data.
*/
if (rc == VINF_SUCCESS)
{
/*
* Do sign extension for MOVSX.
*/
/** @todo checkup MOVSX implementation! */
{
if (cb == 1)
{
/* DWORD <- BYTE */
}
else
{
/* DWORD <- WORD */
}
}
/*
* Store the result to register (parameter 1).
*/
}
if (rc == VINF_SUCCESS)
return rc;
}
/**
* MOV mem, reg|imm (write)
*
* @returns VBox status code.
*
* @param pVM The virtual machine.
* @param pRegFrame Pointer to CPUMCTXCORE guest registers structure.
* @param pCpu Disassembler CPU state.
* @param pRange Pointer MMIO range.
* @param GCPhysFault The GC physical address corresponding to pvFault.
*/
static int iomInterpretMOVxXWrite(PVM pVM, PCPUMCTXCORE pRegFrame, PDISCPUSTATE pCpu, PIOMMMIORANGE pRange, RTGCPHYS GCPhysFault)
{
/*
* Get data to write from second parameter,
* and call the callback to write it.
*/
unsigned cb = 0;
if (rc == VINF_SUCCESS)
return rc;
}
/** Wrapper for reading virtual memory. */
{
#ifdef IN_GC
#else
#endif
}
/** Wrapper for writing virtual memory. */
{
#ifdef IN_GC
#else
#endif
}
#ifdef IOM_WITH_MOVS_SUPPORT
/**
* [REP] MOVSB
* [REP] MOVSW
* [REP] MOVSD
*
* Restricted implementation.
*
*
* @returns VBox status code.
*
* @param pVM The virtual machine.
* @param uErrorCode CPU Error code.
* @param pRegFrame Trap register frame.
* @param GCPhysFault The GC physical address corresponding to pvFault.
* @param pCpu Disassembler CPU state.
* @param pRange Pointer MMIO range.
* @param ppStat Which sub-sample to attribute this call to.
*/
static int iomInterpretMOVS(PVM pVM, RTGCUINT uErrorCode, PCPUMCTXCORE pRegFrame, RTGCPHYS GCPhysFault, PDISCPUSTATE pCpu, PIOMMMIORANGE pRange, PSTAMPROFILE *ppStat)
{
/*
* We do not support segment prefixes or REPNE.
*/
return VINF_IOM_HC_MMIO_READ_WRITE; /** @todo -> interpret whatever. */
/*
*/
{
#ifndef IN_GC
return VINF_EM_RAW_EMULATE_INSTR;
#endif
if (SELMGetCpuModeFromSelector(pVM, pRegFrame->eflags, pRegFrame->cs, &pRegFrame->csHid) == CPUMODE_16BIT)
cTransfers &= 0xffff;
if (!cTransfers)
return VINF_SUCCESS;
}
/* Get the current privilege level. */
/*
* Get data size.
*/
#ifdef VBOX_WITH_STATISTICS
#endif
/** @todo re-evaluate on page boundraries. */
int rc;
if (uErrorCode & X86_TRAP_PF_RW)
{
/*
* Write operation: [Mem] -> [MMIO]
* ds:esi (Virt Src) -> es:edi (Phys Dst)
*/
/* Check callback. */
return VINF_IOM_HC_MMIO_WRITE;
/* Convert source address ds:esi. */
if (RT_SUCCESS(rc))
{
/* Access verification first; we currently can't recover properly from traps inside this instruction */
if (rc != VINF_SUCCESS)
{
return VINF_EM_RAW_EMULATE_INSTR;
}
#ifdef IN_GC
#endif
/* copy loop. */
while (cTransfers)
{
if (rc != VINF_SUCCESS)
break;
if (rc != VINF_SUCCESS)
break;
pu8Virt += offIncrement;
Phys += offIncrement;
cTransfers--;
}
#ifdef IN_GC
#endif
/* Update ecx. */
}
else
}
else
{
/*
* Read operation: [MMIO] -> [mem] or [MMIO] -> [MMIO]
* ds:[eSI] (Phys Src) -> es:[eDI] (Virt Dst)
*/
/* Check callback. */
return VINF_IOM_HC_MMIO_READ;
/* Convert destination address. */
if (RT_FAILURE(rc))
return VINF_EM_RAW_GUEST_TRAP;
/* Check if destination address is MMIO. */
if ( RT_SUCCESS(rc)
{
/*
* Extra: [MMIO] -> [MMIO]
*/
return VINF_IOM_HC_MMIO_READ_WRITE;
/* copy loop. */
while (cTransfers)
{
if (rc != VINF_SUCCESS)
break;
if (rc != VINF_SUCCESS)
break;
Phys += offIncrement;
PhysDst += offIncrement;
cTransfers--;
}
}
else
{
/*
* Normal: [MMIO] -> [Mem]
*/
/* Access verification first; we currently can't recover properly from traps inside this instruction */
if (rc != VINF_SUCCESS)
{
return VINF_EM_RAW_EMULATE_INSTR;
}
/* copy loop. */
#ifdef IN_GC
#endif
while (cTransfers)
{
if (rc != VINF_SUCCESS)
break;
if (rc != VINF_SUCCESS)
{
break;
}
pu8Virt += offIncrement;
Phys += offIncrement;
cTransfers--;
}
#ifdef IN_GC
#endif
}
/* Update ecx on exit. */
}
/* work statistics. */
if (rc == VINF_SUCCESS)
return rc;
}
#endif /* IOM_WITH_MOVS_SUPPORT */
/**
* [REP] STOSB
* [REP] STOSW
* [REP] STOSD
*
* Restricted implementation.
*
*
* @returns VBox status code.
*
* @param pVM The virtual machine .
* @param pRegFrame Trap register frame.
* @param GCPhysFault The GC physical address corresponding to pvFault.
* @param pCpu Disassembler CPU state.
* @param pRange Pointer MMIO range.
*/
static int iomInterpretSTOS(PVM pVM, PCPUMCTXCORE pRegFrame, RTGCPHYS GCPhysFault, PDISCPUSTATE pCpu, PIOMMMIORANGE pRange)
{
/*
* We do not support segment prefixes or REPNE..
*/
return VINF_IOM_HC_MMIO_READ_WRITE; /** @todo -> REM instead of HC */
/*
*/
{
#ifndef IN_GC
return VINF_EM_RAW_EMULATE_INSTR;
#endif
if (SELMGetCpuModeFromSelector(pVM, pRegFrame->eflags, pRegFrame->cs, &pRegFrame->csHid) == CPUMODE_16BIT)
cTransfers &= 0xffff;
if (!cTransfers)
return VINF_SUCCESS;
}
/** @todo r=bird: bounds checks! */
/*
* Get data size.
*/
#ifdef VBOX_WITH_STATISTICS
#endif
int rc;
{
/*
* Use the fill callback.
*/
/** @todo pfnFillCallback must return number of bytes successfully written!!! */
if (offIncrement > 0)
{
/* addr++ variant. */
rc = pRange->CTX_SUFF(pfnFillCallback)(pRange->CTX_SUFF(pDevIns), pRange->CTX_SUFF(pvUser), Phys, u32Data, cb, cTransfers);
if (rc == VINF_SUCCESS)
{
/* Update registers. */
}
}
else
{
/* addr-- variant. */
rc = pRange->CTX_SUFF(pfnFillCallback)(pRange->CTX_SUFF(pDevIns), pRange->CTX_SUFF(pvUser), (Phys - (cTransfers - 1)) << SIZE_2_SHIFT(cb), u32Data, cb, cTransfers);
if (rc == VINF_SUCCESS)
{
/* Update registers. */
}
}
}
else
{
/*
* Use the write callback.
*/
/* fill loop. */
do
{
if (rc != VINF_SUCCESS)
break;
Phys += offIncrement;
cTransfers--;
} while (cTransfers);
/* Update ecx on exit. */
}
/*
* Work statistics and return.
*/
if (rc == VINF_SUCCESS)
return rc;
}
/**
* [REP] LODSB
* [REP] LODSW
* [REP] LODSD
*
* Restricted implementation.
*
*
* @returns VBox status code.
*
* @param pVM The virtual machine.
* @param pRegFrame Trap register frame.
* @param GCPhysFault The GC physical address corresponding to pvFault.
* @param pCpu Disassembler CPU state.
* @param pRange Pointer MMIO range.
*/
static int iomInterpretLODS(PVM pVM, PCPUMCTXCORE pRegFrame, RTGCPHYS GCPhysFault, PDISCPUSTATE pCpu, PIOMMMIORANGE pRange)
{
/*
* We do not support segment prefixes or REP*.
*/
return VINF_IOM_HC_MMIO_READ_WRITE; /** @todo -> REM instead of HC */
/*
* Get data size.
*/
/*
* Perform read.
*/
if (rc == VINF_SUCCESS)
/*
* Work statistics and return.
*/
if (rc == VINF_SUCCESS)
return rc;
}
/**
* CMP [MMIO], reg|imm
* CMP reg|imm, [MMIO]
*
* Restricted implementation.
*
*
* @returns VBox status code.
*
* @param pVM The virtual machine.
* @param pRegFrame Trap register frame.
* @param GCPhysFault The GC physical address corresponding to pvFault.
* @param pCpu Disassembler CPU state.
* @param pRange Pointer MMIO range.
*/
static int iomInterpretCMP(PVM pVM, PCPUMCTXCORE pRegFrame, RTGCPHYS GCPhysFault, PDISCPUSTATE pCpu, PIOMMMIORANGE pRange)
{
/*
* Get the operands.
*/
unsigned cb = 0;
int rc;
/* cmp reg, [MMIO]. */
/* cmp [MMIO], reg|imm. */
else
{
AssertMsgFailed(("Disassember CMP problem..\n"));
}
if (rc == VINF_SUCCESS)
{
/* Emulate CMP and update guest flags. */
pRegFrame->eflags.u32 = (pRegFrame->eflags.u32 & ~(X86_EFL_CF | X86_EFL_PF | X86_EFL_AF | X86_EFL_ZF | X86_EFL_SF | X86_EFL_OF))
}
return rc;
}
/**
* AND [MMIO], reg|imm
* AND reg, [MMIO]
* OR [MMIO], reg|imm
* OR reg, [MMIO]
*
* Restricted implementation.
*
*
* @returns VBox status code.
*
* @param pVM The virtual machine.
* @param pRegFrame Trap register frame.
* @param GCPhysFault The GC physical address corresponding to pvFault.
* @param pCpu Disassembler CPU state.
* @param pRange Pointer MMIO range.
* @param pfnEmulate Instruction emulation function.
*/
static int iomInterpretOrXorAnd(PVM pVM, PCPUMCTXCORE pRegFrame, RTGCPHYS GCPhysFault, PDISCPUSTATE pCpu, PIOMMMIORANGE pRange, PFNEMULATEPARAM3 pfnEmulate)
{
unsigned cb = 0;
bool fAndWrite;
int rc;
#ifdef LOG_ENABLED
const char *pszInstr;
pszInstr = "Xor";
pszInstr = "Or";
pszInstr = "And";
else
pszInstr = "OrXorAnd??";
#endif
{
/* and reg, [MMIO]. */
fAndWrite = false;
}
{
/* and [MMIO], reg|imm. */
fAndWrite = true;
else
}
else
{
AssertMsgFailed(("Disassember AND problem..\n"));
}
if (rc == VINF_SUCCESS)
{
/* Emulate AND and update guest flags. */
if (fAndWrite)
/* Store result to MMIO. */
else
{
/* Store result to register. */
}
if (rc == VINF_SUCCESS)
{
/* Update guest's eflags and finish. */
pRegFrame->eflags.u32 = (pRegFrame->eflags.u32 & ~(X86_EFL_CF | X86_EFL_PF | X86_EFL_AF | X86_EFL_ZF | X86_EFL_SF | X86_EFL_OF))
}
}
return rc;
}
/**
* TEST [MMIO], reg|imm
* TEST reg, [MMIO]
*
* Restricted implementation.
*
*
* @returns VBox status code.
*
* @param pVM The virtual machine.
* @param pRegFrame Trap register frame.
* @param GCPhysFault The GC physical address corresponding to pvFault.
* @param pCpu Disassembler CPU state.
* @param pRange Pointer MMIO range.
*/
static int iomInterpretTEST(PVM pVM, PCPUMCTXCORE pRegFrame, RTGCPHYS GCPhysFault, PDISCPUSTATE pCpu, PIOMMMIORANGE pRange)
{
unsigned cb = 0;
int rc;
{
/* and test, [MMIO]. */
}
{
/* test [MMIO], reg|imm. */
}
else
{
AssertMsgFailed(("Disassember TEST problem..\n"));
}
if (rc == VINF_SUCCESS)
{
/* Emulate TEST (=AND without write back) and update guest EFLAGS. */
pRegFrame->eflags.u32 = (pRegFrame->eflags.u32 & ~(X86_EFL_CF | X86_EFL_PF | X86_EFL_AF | X86_EFL_ZF | X86_EFL_SF | X86_EFL_OF))
}
return rc;
}
/**
* BT [MMIO], reg|imm
*
* Restricted implementation.
*
*
* @returns VBox status code.
*
* @param pVM The virtual machine.
* @param pRegFrame Trap register frame.
* @param GCPhysFault The GC physical address corresponding to pvFault.
* @param pCpu Disassembler CPU state.
* @param pRange Pointer MMIO range.
*/
static int iomInterpretBT(PVM pVM, PCPUMCTXCORE pRegFrame, RTGCPHYS GCPhysFault, PDISCPUSTATE pCpu, PIOMMMIORANGE pRange)
{
unsigned cb = 0;
int rc;
{
/* bt [MMIO], reg|imm. */
}
else
{
AssertMsgFailed(("Disassember BT problem..\n"));
}
if (rc == VINF_SUCCESS)
{
/* The size of the memory operand only matters here. */
/* Find the bit inside the faulting address */
}
return rc;
}
/**
* XCHG [MMIO], reg
* XCHG reg, [MMIO]
*
* Restricted implementation.
*
*
* @returns VBox status code.
*
* @param pVM The virtual machine.
* @param pRegFrame Trap register frame.
* @param GCPhysFault The GC physical address corresponding to pvFault.
* @param pCpu Disassembler CPU state.
* @param pRange Pointer MMIO range.
*/
static int iomInterpretXCHG(PVM pVM, PCPUMCTXCORE pRegFrame, RTGCPHYS GCPhysFault, PDISCPUSTATE pCpu, PIOMMMIORANGE pRange)
{
/* Check for read & write handlers since IOMMMIOHandler doesn't cover this. */
return VINF_IOM_HC_MMIO_READ_WRITE;
int rc;
unsigned cb = 0;
{
/* xchg reg, [MMIO]. */
if (rc == VINF_SUCCESS)
{
/* Store result to MMIO. */
if (rc == VINF_SUCCESS)
{
/* Store result to register. */
}
else
}
else
}
{
/* xchg [MMIO], reg. */
if (rc == VINF_SUCCESS)
{
/* Store result to MMIO. */
if (rc == VINF_SUCCESS)
{
/* Store result to register. */
}
else
}
else
}
else
{
AssertMsgFailed(("Disassember XCHG problem..\n"));
}
return rc;
}
/**
* \#PF Handler callback for MMIO ranges.
*
* @returns VBox status code (appropriate for GC return).
* @param pVM VM Handle.
* @param uErrorCode CPU Error code.
* @param pCtxCore Trap register frame.
* @param pvFault The fault address (cr2).
* @param GCPhysFault The GC physical address corresponding to pvFault.
* @param pvUser Pointer to the MMIO ring-3 range entry.
*/
VMMDECL(int) IOMMMIOHandler(PVM pVM, RTGCUINT uErrorCode, PCPUMCTXCORE pCtxCore, RTGCPTR pvFault, RTGCPHYS GCPhysFault, void *pvUser)
{
Log(("IOMMMIOHandler: GCPhys=%RGp uErr=%#x pvFault=%VGv eip=%VGv\n",
#ifdef VBOX_WITH_STATISTICS
/*
* Locate the statistics, if > PAGE_SIZE we'll use the first byte for everything.
*/
if (!pStats)
{
# ifdef IN_RING3
return VERR_NO_MEMORY;
# else
# endif
}
#endif
#ifndef IN_RING3
/*
* Should we defer the request right away?
*/
if (uErrorCode & X86_TRAP_PF_RW
{
# ifdef VBOX_WITH_STATISTICS
if (uErrorCode & X86_TRAP_PF_RW)
else
# endif
}
#endif /* !IN_RING3 */
/*
* Disassemble the instruction and interprete it.
*/
unsigned cbOp;
{
case OP_MOV:
case OP_MOVZX:
case OP_MOVSX:
{
if (uErrorCode & X86_TRAP_PF_RW)
else
break;
}
#ifdef IOM_WITH_MOVS_SUPPORT
case OP_MOVSB:
case OP_MOVSWD:
{
break;
}
#endif
case OP_STOSB:
case OP_STOSWD:
break;
case OP_LODSB:
case OP_LODSWD:
break;
case OP_CMP:
break;
case OP_AND:
break;
case OP_OR:
break;
case OP_XOR:
break;
case OP_TEST:
break;
case OP_BT:
break;
case OP_XCHG:
break;
/*
* The instruction isn't supported. Hand it on to ring-3.
*/
default:
break;
}
/*
* On success advance EIP.
*/
if (rc == VINF_SUCCESS)
else
{
#if defined(VBOX_WITH_STATISTICS) && !defined(IN_RING3)
switch (rc)
{
case VINF_IOM_HC_MMIO_READ:
break;
case VINF_IOM_HC_MMIO_WRITE:
break;
}
#endif
}
return rc;
}
#ifdef IN_RING3
/**
* \#PF Handler callback for MMIO ranges.
*
* @returns VINF_SUCCESS if the handler have carried out the operation.
* @returns VINF_PGM_HANDLER_DO_DEFAULT if the caller should carry out the access operation.
* @param pVM VM Handle.
* @param GCPhys The physical address the guest is writing to.
* @param pvPhys The HC mapping of that address.
* @param enmAccessType The access type.
* @param pvUser Pointer to the MMIO range entry.
*/
DECLCALLBACK(int) IOMR3MMIOHandler(PVM pVM, RTGCPHYS GCPhysFault, void *pvPhys, void *pvBuf, size_t cbBuf, PGMACCESSTYPE enmAccessType, void *pvUser)
{
int rc;
if (enmAccessType == PGMACCESSTYPE_READ)
else
return rc;
}
#endif /* IN_RING3 */
/**
* Reads a MMIO register.
*
* @returns VBox status code.
*
* @param pVM VM handle.
* @param GCPhys The physical address to read.
* @param pu32Value Where to store the value read.
* @param cbValue The size of the register to read in bytes. 1, 2 or 4 bytes.
*/
{
/*
* Lookup the current context range node and statistics.
*/
("Handlers and page tables are out of sync or something! GCPhys=%VGp cbValue=%d\n", GCPhys, cbValue),
#ifdef VBOX_WITH_STATISTICS
if (!pStats)
# ifdef IN_RING3
return VERR_NO_MEMORY;
# else
return VINF_IOM_HC_MMIO_READ;
# endif
#endif /* VBOX_WITH_STATISTICS */
{
/*
* Perform the read and deal with the result.
*/
#ifdef VBOX_WITH_STATISTICS
#endif
int rc = pRange->CTX_SUFF(pfnReadCallback)(pRange->CTX_SUFF(pDevIns), pRange->CTX_SUFF(pvUser), GCPhys, pu32Value, cbValue);
#ifdef VBOX_WITH_STATISTICS
if (rc != VINF_IOM_HC_MMIO_READ)
#endif
switch (rc)
{
case VINF_SUCCESS:
default:
return rc;
case VINF_IOM_MMIO_UNUSED_00:
switch (cbValue)
{
}
return VINF_SUCCESS;
case VINF_IOM_MMIO_UNUSED_FF:
switch (cbValue)
{
}
return VINF_SUCCESS;
}
}
#ifndef IN_RING3
if (pRange->pfnReadCallbackR3)
{
return VINF_IOM_HC_MMIO_READ;
}
#endif
/*
* Lookup the ring-3 range.
*/
#ifdef VBOX_WITH_STATISTICS
#endif
/* Unassigned memory; this is actually not supposed to happen. */
switch (cbValue)
{
}
Log4(("IOMMMIORead: GCPhys=%RGp *pu32=%08RX32 cb=%d rc=VINF_SUCCESS\n", GCPhys, *pu32Value, cbValue));
return VINF_SUCCESS;
}
/**
* Writes to a MMIO register.
*
* @returns VBox status code.
*
* @param pVM VM handle.
* @param GCPhys The physical address to write to.
* @param u32Value The value to write.
* @param cbValue The size of the register to read in bytes. 1, 2 or 4 bytes.
*/
{
/*
* Lookup the current context range node.
*/
("Handlers and page tables are out of sync or something! GCPhys=%VGp cbValue=%d\n", GCPhys, cbValue),
#ifdef VBOX_WITH_STATISTICS
if (!pStats)
# ifdef IN_RING3
return VERR_NO_MEMORY;
# else
return VINF_IOM_HC_MMIO_WRITE;
# endif
#endif /* VBOX_WITH_STATISTICS */
/*
* to defer it to ring-3.
*/
{
#ifdef VBOX_WITH_STATISTICS
#endif
int rc = pRange->CTX_SUFF(pfnWriteCallback)(pRange->CTX_SUFF(pDevIns), pRange->CTX_SUFF(pvUser), GCPhys, &u32Value, cbValue);
#ifdef VBOX_WITH_STATISTICS
if (rc != VINF_IOM_HC_MMIO_WRITE)
#endif
return rc;
}
#ifndef IN_RING3
if (pRange->pfnWriteCallbackR3)
{
return VINF_IOM_HC_MMIO_WRITE;
}
#endif
/*
* No write handler, nothing to do.
*/
#ifdef VBOX_WITH_STATISTICS
#endif
Log4(("IOMMMIOWrite: GCPhys=%RGp u32=%08RX32 cb=%d rc=%Vrc\n", GCPhys, u32Value, cbValue, VINF_SUCCESS));
return VINF_SUCCESS;
}
/**
* ES:EDI,DX[,ECX]
*
* @remark Assumes caller checked the access privileges (IOMInterpretCheckPortIOAccess)
*
* @returns Strict VBox status code. Informational status codes other than the one documented
* here are to be treated as internal failure. Use IOM_SUCCESS() to check for success.
* @retval VINF_SUCCESS Success.
* @retval VINF_EM_FIRST-VINF_EM_LAST Success with some exceptions (see IOM_SUCCESS()), the
* status code must be passed on to EM.
* @retval VINF_EM_RAW_EMULATE_INSTR Defer the read to the REM.
* @retval VINF_EM_RAW_GUEST_TRAP The exception was left pending. (TRPMRaiseXcptErr)
* @retval VINF_TRPM_XCPT_DISPATCHED The exception was raised and dispatched for raw-mode execution. (TRPMRaiseXcptErr)
* @retval VINF_EM_RESCHEDULE_REM The exception was dispatched and cannot be executed in raw-mode. (TRPMRaiseXcptErr)
*
* @param pVM The virtual machine.
* @param pRegFrame Pointer to CPUMCTXCORE guest registers structure.
* @param uPort IO Port
* @param uPrefix IO instruction prefix
* @param cbTransfer Size of transfer unit
*/
VMMDECL(int) IOMInterpretINSEx(PVM pVM, PCPUMCTXCORE pRegFrame, uint32_t uPort, uint32_t uPrefix, uint32_t cbTransfer)
{
#ifdef VBOX_WITH_STATISTICS
#endif
/*
* We do not support REPNE or decrementing destination
* pointer. Segment prefixes are deliberately ignored, as per the instruction specification.
*/
if ( (uPrefix & PREFIX_REPNE)
return VINF_EM_RAW_EMULATE_INSTR;
/*
*/
if (uPrefix & PREFIX_REP)
{
#ifndef IN_GC
return VINF_EM_RAW_EMULATE_INSTR;
#endif
if (SELMGetCpuModeFromSelector(pVM, pRegFrame->eflags, pRegFrame->cs, &pRegFrame->csHid) == CPUMODE_16BIT)
cTransfers &= 0xffff;
if (!cTransfers)
return VINF_SUCCESS;
}
/* Convert destination address es:edi. */
&GCPtrDst);
if (RT_FAILURE(rc))
{
return VINF_EM_RAW_EMULATE_INSTR;
}
/* Access verification first; we can't recover from traps inside this instruction, as the port read cannot be repeated. */
if (rc != VINF_SUCCESS)
{
return VINF_EM_RAW_EMULATE_INSTR;
}
if (cTransfers > 1)
{
/* If the device supports string transfers, ask it to do as
* much as it wants. The rest is done with single-word transfers. */
}
#ifdef IN_GC
#endif
{
if (!IOM_SUCCESS(rc))
break;
cTransfers--;
}
#ifdef IN_GC
#endif
/* Update ecx on exit. */
if (uPrefix & PREFIX_REP)
AssertMsg(rc == VINF_SUCCESS || rc == VINF_IOM_HC_IOPORT_READ || (rc >= VINF_EM_FIRST && rc <= VINF_EM_LAST) || RT_FAILURE(rc), ("%Vrc\n", rc));
return rc;
}
/**
* ES:EDI,DX[,ECX]
*
* @returns Strict VBox status code. Informational status codes other than the one documented
* here are to be treated as internal failure. Use IOM_SUCCESS() to check for success.
* @retval VINF_SUCCESS Success.
* @retval VINF_EM_FIRST-VINF_EM_LAST Success with some exceptions (see IOM_SUCCESS()), the
* status code must be passed on to EM.
* @retval VINF_EM_RAW_EMULATE_INSTR Defer the read to the REM.
* @retval VINF_EM_RAW_GUEST_TRAP The exception was left pending. (TRPMRaiseXcptErr)
* @retval VINF_TRPM_XCPT_DISPATCHED The exception was raised and dispatched for raw-mode execution. (TRPMRaiseXcptErr)
* @retval VINF_EM_RESCHEDULE_REM The exception was dispatched and cannot be executed in raw-mode. (TRPMRaiseXcptErr)
*
* @param pVM The virtual machine.
* @param pRegFrame Pointer to CPUMCTXCORE guest registers structure.
* @param pCpu Disassembler CPU state.
*/
{
/*
* Get port number directly from the register (no need to bother the
* disassembler). And get the I/O register size from the opcode / prefix.
*/
unsigned cb = 0;
cb = 1;
else
{
AssertMsg(rc == VINF_EM_RAW_GUEST_TRAP || rc == VINF_TRPM_XCPT_DISPATCHED || rc == VINF_TRPM_XCPT_DISPATCHED || RT_FAILURE(rc), ("%Vrc\n", rc));
return rc;
}
}
/**
* DS:ESI,DX[,ECX]
*
* @remark Assumes caller checked the access privileges (IOMInterpretCheckPortIOAccess)
*
* @returns Strict VBox status code. Informational status codes other than the one documented
* here are to be treated as internal failure. Use IOM_SUCCESS() to check for success.
* @retval VINF_SUCCESS Success.
* @retval VINF_EM_FIRST-VINF_EM_LAST Success with some exceptions (see IOM_SUCCESS()), the
* status code must be passed on to EM.
* @retval VINF_EM_RAW_GUEST_TRAP The exception was left pending. (TRPMRaiseXcptErr)
* @retval VINF_TRPM_XCPT_DISPATCHED The exception was raised and dispatched for raw-mode execution. (TRPMRaiseXcptErr)
* @retval VINF_EM_RESCHEDULE_REM The exception was dispatched and cannot be executed in raw-mode. (TRPMRaiseXcptErr)
*
* @param pVM The virtual machine.
* @param pRegFrame Pointer to CPUMCTXCORE guest registers structure.
* @param uPort IO Port
* @param uPrefix IO instruction prefix
* @param cbTransfer Size of transfer unit
*/
VMMDECL(int) IOMInterpretOUTSEx(PVM pVM, PCPUMCTXCORE pRegFrame, uint32_t uPort, uint32_t uPrefix, uint32_t cbTransfer)
{
#ifdef VBOX_WITH_STATISTICS
#endif
/*
* We do not support segment prefixes, REPNE or
* decrementing source pointer.
*/
return VINF_EM_RAW_EMULATE_INSTR;
/*
*/
if (uPrefix & PREFIX_REP)
{
#ifndef IN_GC
return VINF_EM_RAW_EMULATE_INSTR;
#endif
if (SELMGetCpuModeFromSelector(pVM, pRegFrame->eflags, pRegFrame->cs, &pRegFrame->csHid) == CPUMODE_16BIT)
cTransfers &= 0xffff;
if (!cTransfers)
return VINF_SUCCESS;
}
/* Convert source address ds:esi. */
&GCPtrSrc);
if (RT_FAILURE(rc))
{
return VINF_EM_RAW_EMULATE_INSTR;
}
/* Access verification first; we currently can't recover properly from traps inside this instruction */
if (rc != VINF_SUCCESS)
{
return VINF_EM_RAW_EMULATE_INSTR;
}
if (cTransfers > 1)
{
/*
* If the device supports string transfers, ask it to do as
* much as it wants. The rest is done with single-word transfers.
*/
}
#ifdef IN_GC
#endif
{
if (rc != VINF_SUCCESS)
break;
if (!IOM_SUCCESS(rc))
break;
cTransfers--;
}
#ifdef IN_GC
#endif
/* Update ecx on exit. */
if (uPrefix & PREFIX_REP)
AssertMsg(rc == VINF_SUCCESS || rc == VINF_IOM_HC_IOPORT_WRITE || (rc >= VINF_EM_FIRST && rc <= VINF_EM_LAST) || RT_FAILURE(rc), ("%Vrc\n", rc));
return rc;
}
/**
* DS:ESI,DX[,ECX]
*
* @returns Strict VBox status code. Informational status codes other than the one documented
* here are to be treated as internal failure. Use IOM_SUCCESS() to check for success.
* @retval VINF_SUCCESS Success.
* @retval VINF_EM_FIRST-VINF_EM_LAST Success with some exceptions (see IOM_SUCCESS()), the
* status code must be passed on to EM.
* @retval VINF_EM_RAW_EMULATE_INSTR Defer the write to the REM.
* @retval VINF_EM_RAW_GUEST_TRAP The exception was left pending. (TRPMRaiseXcptErr)
* @retval VINF_TRPM_XCPT_DISPATCHED The exception was raised and dispatched for raw-mode execution. (TRPMRaiseXcptErr)
* @retval VINF_EM_RESCHEDULE_REM The exception was dispatched and cannot be executed in raw-mode. (TRPMRaiseXcptErr)
*
* @param pVM The virtual machine.
* @param pRegFrame Pointer to CPUMCTXCORE guest registers structure.
* @param pCpu Disassembler CPU state.
*/
{
/*
* Get port number from the first parameter.
* And get the I/O register size from the opcode / prefix.
*/
unsigned cb = 0;
cb = 1;
else
{
AssertMsg(rc == VINF_EM_RAW_GUEST_TRAP || rc == VINF_TRPM_XCPT_DISPATCHED || rc == VINF_TRPM_XCPT_DISPATCHED || RT_FAILURE(rc), ("%Vrc\n", rc));
return rc;
}
}
#ifndef IN_GC
/**
* Modify an existing MMIO region page; map to another guest physical region and change the access flags
*
* @returns VBox status code.
*
* @param pVM The virtual machine.
* @param GCPhys Physical address that's part of the MMIO region to be changed.
* @param GCPhysRemapped Remapped address.
* @param fPageFlags Page flags to set (typically X86_PTE_RW).
*/
VMMDECL(int) IOMMMIOModifyPage(PVM pVM, RTGCPHYS GCPhys, RTGCPHYS GCPhysRemapped, uint64_t fPageFlags)
{
/*
* Lookup the current context range node and statistics.
*/
("Handlers and page tables are out of sync or something! GCPhys=%VGp\n", GCPhys),
/* This currently only works in real mode, protected mode without paging or with nested paging. */
return VINF_SUCCESS; /* ignore */
#ifdef VBOX_STRICT
#endif
/* Mark it as writable and present so reads and writes no longer fault. */
return VINF_SUCCESS;
}
/**
* Reset a previously modified MMIO region; restore the access flags.
*
* @returns VBox status code.
*
* @param pVM The virtual machine.
* @param GCPhys Physical address that's part of the MMIO region to be reset.
*/
{
unsigned cb;
/*
* Lookup the current context range node and statistics.
*/
("Handlers and page tables are out of sync or something! GCPhys=%VGp\n", GCPhys),
/* This currently only works in real mode, protected mode without paging or with nested paging. */
return VINF_SUCCESS; /* ignore */
while(cb)
{
/* Mark it as not present again to intercept all read and write access. */
#ifdef VBOX_STRICT
#endif
}
return VINF_SUCCESS;
}
#endif /* !IN_GC */