VirtualBox

source: vbox/trunk/src/VBox/VMM/testcase/tstVMMR0CallHost-1.cpp@ 61793

Last change on this file since 61793 was 61793, checked in by vboxsync, 8 years ago

tstVMMR0CallHost-1: Prepped for testing small variations in caller stack depth.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Id Revision
File size: 6.7 KB
Line 
1/* $Id: tstVMMR0CallHost-1.cpp 61793 2016-06-21 14:06:00Z vboxsync $ */
2/** @file
3 * Testcase for the VMMR0JMPBUF operations.
4 */
5
6/*
7 * Copyright (C) 2006-2015 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
19/*********************************************************************************************************************************
20* Header Files *
21*********************************************************************************************************************************/
22#include <VBox/err.h>
23#include <VBox/param.h>
24#include <iprt/alloca.h>
25#include <iprt/initterm.h>
26#include <iprt/rand.h>
27#include <iprt/string.h>
28#include <iprt/stream.h>
29#include <iprt/test.h>
30
31#define IN_VMM_R0
32#define IN_RING0 /* pretent we're in Ring-0 to get the prototypes. */
33#include <VBox/vmm/vmm.h>
34#include "VMMInternal.h"
35
36
37/*********************************************************************************************************************************
38* Defined Constants And Macros *
39*********************************************************************************************************************************/
40#if !defined(VMM_R0_SWITCH_STACK) && !defined(VMM_R0_NO_SWITCH_STACK)
41# error "VMM_R0_SWITCH_STACK or VMM_R0_NO_SWITCH_STACK has to be defined."
42#endif
43
44
45/*********************************************************************************************************************************
46* Global Variables *
47*********************************************************************************************************************************/
48/** The jump buffer. */
49static VMMR0JMPBUF g_Jmp;
50/** The number of jumps we've done. */
51static unsigned volatile g_cJmps;
52/** Number of bytes allocated last time we called foo(). */
53static size_t volatile g_cbFoo;
54/** Number of bytes used last time we called foo(). */
55static intptr_t volatile g_cbFooUsed;
56
57
58int foo(int i, int iZero, int iMinusOne)
59{
60 NOREF(iZero);
61
62 /* allocate a buffer which we fill up to the end. */
63 size_t cb = (i % 1555) + 32;
64 g_cbFoo = cb;
65 char *pv = (char *)alloca(cb);
66 RTStrPrintf(pv, cb, "i=%d%*s\n", i, cb, "");
67#ifdef VMM_R0_SWITCH_STACK
68 g_cbFooUsed = VMM_STACK_SIZE - ((uintptr_t)pv - (uintptr_t)g_Jmp.pvSavedStack);
69 RTTESTI_CHECK_MSG_RET(g_cbFooUsed < (intptr_t)VMM_STACK_SIZE - 128, ("%#x - (%p - %p) -> %#x; cb=%#x i=%d\n", VMM_STACK_SIZE, pv, g_Jmp.pvSavedStack, g_cbFooUsed, cb, i), -15);
70#elif defined(RT_ARCH_AMD64)
71 g_cbFooUsed = (uintptr_t)g_Jmp.rsp - (uintptr_t)pv;
72 RTTESTI_CHECK_MSG_RET(g_cbFooUsed < VMM_STACK_SIZE - 128, ("%p - %p -> %#x; cb=%#x i=%d\n", g_Jmp.rsp, pv, g_cbFooUsed, cb, i), -15);
73#elif defined(RT_ARCH_X86)
74 g_cbFooUsed = (uintptr_t)g_Jmp.esp - (uintptr_t)pv;
75 RTTESTI_CHECK_MSG_RET(g_cbFooUsed < (intptr_t)VMM_STACK_SIZE - 128, ("%p - %p -> %#x; cb=%#x i=%d\n", g_Jmp.esp, pv, g_cbFooUsed, cb, i), -15);
76#endif
77
78 /* Twice in a row, every 7th time. */
79 if ((i % 7) <= 1)
80 {
81 g_cJmps++;
82 int rc = vmmR0CallRing3LongJmp(&g_Jmp, 42);
83 if (!rc)
84 return i + 10000;
85 return -1;
86 }
87 NOREF(iMinusOne);
88 return i;
89}
90
91
92DECLCALLBACK(int) tst2(intptr_t i, intptr_t i2)
93{
94 RTTESTI_CHECK_MSG_RET(i >= 0 && i <= 8192, ("i=%d is out of range [0..8192]\n", i), 1);
95 RTTESTI_CHECK_MSG_RET(i2 == 0, ("i2=%d is out of range [0]\n", i2), 1);
96 int iExpect = (i % 7) <= 1 ? i + 10000 : i;
97 int rc = foo(i, 0, -1);
98 RTTESTI_CHECK_MSG_RET(rc == iExpect, ("i=%d rc=%d expected=%d\n", i, rc, iExpect), 1);
99 return 0;
100}
101
102
103DECLCALLBACK(DECL_NO_INLINE(RT_NOTHING, int)) stackRandom(PVMMR0JMPBUF pJmpBuf, PFNVMMR0SETJMP pfn, PVM pVM, PVMCPU pVCpu)
104{
105#if 0
106 uint32_t cbRand = RTRandU32Ex(1, 64);
107#else
108 uint32_t cbRand = 1;
109#endif
110 uint8_t volatile *pabFuzz = (uint8_t volatile *)alloca(cbRand);
111 memset((void *)pabFuzz, 0xfa, cbRand);
112 int rc = vmmR0CallRing3SetJmp(pJmpBuf, pfn, pVM, pVCpu);
113 memset((void *)pabFuzz, 0xaf, cbRand);
114 return rc;
115}
116
117
118void tst(int iFrom, int iTo, int iInc)
119{
120#ifdef VMM_R0_SWITCH_STACK
121 int const cIterations = iFrom > iTo ? iFrom - iTo : iTo - iFrom;
122 void *pvPrev = alloca(1);
123#endif
124
125 RTR0PTR R0PtrSaved = g_Jmp.pvSavedStack;
126 RT_ZERO(g_Jmp);
127 g_Jmp.pvSavedStack = R0PtrSaved;
128 memset((void *)g_Jmp.pvSavedStack, '\0', VMM_STACK_SIZE);
129 g_cbFoo = 0;
130 g_cJmps = 0;
131 g_cbFooUsed = 0;
132
133 for (int i = iFrom, iItr = 0; i != iTo; i += iInc, iItr++)
134 {
135 int rc = stackRandom(&g_Jmp, (PFNVMMR0SETJMP)tst2, (PVM)(uintptr_t)i, 0);
136 RTTESTI_CHECK_MSG_RETV(rc == 0 || rc == 42, ("i=%d rc=%d setjmp; cbFoo=%#x cbFooUsed=%#x\n", i, rc, g_cbFoo, g_cbFooUsed));
137
138#ifdef VMM_R0_SWITCH_STACK
139 /* Make the stack pointer slide for the second half of the calls. */
140 if (iItr >= cIterations / 2)
141 {
142 /* Note! gcc does funny rounding up of alloca(). */
143 void *pv2 = alloca((i % 63) | 1);
144 size_t cb2 = (uintptr_t)pvPrev - (uintptr_t)pv2;
145 RTTESTI_CHECK_MSG(cb2 >= 16 && cb2 <= 128, ("cb2=%zu pv2=%p pvPrev=%p iAlloca=%d\n", cb2, pv2, pvPrev, iItr));
146 memset(pv2, 0xff, cb2);
147 memset(pvPrev, 0xee, 1);
148 pvPrev = pv2;
149 }
150#endif
151 }
152 RTTESTI_CHECK_MSG_RETV(g_cJmps, ("No jumps!"));
153 if (g_Jmp.cbUsedAvg || g_Jmp.cUsedTotal)
154 RTTestIPrintf(RTTESTLVL_ALWAYS, "cbUsedAvg=%#x cbUsedMax=%#x cUsedTotal=%#llx\n",
155 g_Jmp.cbUsedAvg, g_Jmp.cbUsedMax, g_Jmp.cUsedTotal);
156}
157
158
159int main()
160{
161 /*
162 * Init.
163 */
164 RTTEST hTest;
165 RTEXITCODE rcExit = RTTestInitAndCreate("tstVMMR0CallHost-1", &hTest);
166 if (rcExit != RTEXITCODE_SUCCESS)
167 return rcExit;
168 RTTestBanner(hTest);
169
170 g_Jmp.pvSavedStack = (RTR0PTR)RTTestGuardedAllocTail(hTest, VMM_STACK_SIZE);
171
172 /*
173 * Run two test with about 1000 long jumps each.
174 */
175 RTTestSub(hTest, "Increasing stack usage");
176 tst(0, 7000, 1);
177 RTTestSub(hTest, "Decreasing stack usage");
178 tst(7599, 0, -1);
179
180 return RTTestSummaryAndDestroy(hTest);
181}
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