tstVMMR0CallHost-1.cpp revision 677833bc953b6cb418c701facbdcf4aa18d6c44e
/** @file
*
* Testcase for the VMMR0JMPBUF operations.
*/
/*
* Copyright (C) 2006 InnoTek Systemberatung GmbH
*
* This file is part of VirtualBox Open Source Edition (OSE), as
* available from http://www.virtualbox.org. This file is free software;
* you can redistribute it and/or modify it under the terms of the GNU
* General Public License 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.
*
* If you received this file as part of a commercial VirtualBox
* distribution, then only the terms of your commercial VirtualBox
* license agreement apply instead of the previous paragraph.
*/
/*******************************************************************************
* Header Files *
*******************************************************************************/
#include <iprt/runtime.h>
#include <iprt/string.h>
#include <iprt/stream.h>
#include <iprt/alloca.h>
#include <VBox/err.h>
#define IN_VMM_R0
#define IN_RING0 /* pretent we're in Ring-0 to get the prototypes. */
#include <VBox/vmm.h>
#include "VMMInternal.h"
/*******************************************************************************
* Global Variables *
*******************************************************************************/
/** The jump buffer. */
static VMMR0JMPBUF g_Jmp;
/** The saved stack. */
static uint8_t g_Stack[8192];
int foo(int i, int iZero, int iMinusOne)
{
char *pv = (char *)alloca(i + 32);
RTStrPrintf(pv, i + 32, "i=%d%*s\n", i, i+32, "");
if ((i % 7) == 0)
{
int rc = vmmR0CallHostLongJmp(&g_Jmp, 42);
if (!rc)
return i + 10000;
return -1;
}
return i;
}
DECLCALLBACK(int) tst2(intptr_t i)
{
int iExpect = (i % 7) == 0 ? i + 10000 : i;
int rc = foo(i, 0, -1);
if (rc != iExpect)
{
RTPrintf("tstVMMR0CallHost-1: FAILURE - i=%d rc=%d expected=%d\n", i, rc, iExpect);
return 1;
}
return 0;
}
int tst(int iFrom, int iTo, int iInc)
{
for (int i = iFrom; i < iTo; i += iInc)
{
int rc = vmmR0CallHostSetJmp(&g_Jmp, (PFNVMMR0SETJMP)tst2, (PVM)i);
if (rc != 0 && rc != 42)
{
RTPrintf("tstVMMR0CallHost-1: FAILURE - i=%d rc=%d setjmp\n", i, rc);
return 1;
}
}
return 0;
}
int main()
{
/*
* Init.
*/
RTR3Init(false);
RTPrintf("tstVMMR0CallHost-1: Testing...\n");
g_Jmp.pvSavedStack = &g_Stack[0];
/*
* Try about 1000 long jumps with increasing stack size..
*/
int rc = tst(0, 7000, 1);
if (!rc)
rc = tst(7599, 0, -1);
if (!rc)
RTPrintf("tstVMMR0CallHost-1: SUCCESS\n");
else
RTPrintf("tstVMMR0CallHost-1: FAILED\n");
return !!rc;
}