1 | /* $Id: tstVMMR0CallHost-1.cpp 2981 2007-06-01 16:01:28Z vboxsync $ */
|
---|
2 | /** @file
|
---|
3 | * Testcase for the VMMR0JMPBUF operations.
|
---|
4 | */
|
---|
5 |
|
---|
6 | /*
|
---|
7 | * Copyright (C) 2006-2007 innotek GmbH
|
---|
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 as published by the Free Software Foundation,
|
---|
13 | * in version 2 as it comes in the "COPYING" file of the VirtualBox OSE
|
---|
14 | * distribution. VirtualBox OSE is distributed in the hope that it will
|
---|
15 | * be useful, but WITHOUT ANY WARRANTY of any kind.
|
---|
16 | *
|
---|
17 | * If you received this file as part of a commercial VirtualBox
|
---|
18 | * distribution, then only the terms of your commercial VirtualBox
|
---|
19 | * license agreement apply instead of the previous paragraph.
|
---|
20 | */
|
---|
21 |
|
---|
22 | /*******************************************************************************
|
---|
23 | * Header Files *
|
---|
24 | *******************************************************************************/
|
---|
25 | #include <iprt/runtime.h>
|
---|
26 | #include <iprt/string.h>
|
---|
27 | #include <iprt/stream.h>
|
---|
28 | #include <iprt/alloca.h>
|
---|
29 | #include <VBox/err.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.h>
|
---|
34 | #include "VMMInternal.h"
|
---|
35 |
|
---|
36 |
|
---|
37 |
|
---|
38 | /*******************************************************************************
|
---|
39 | * Global Variables *
|
---|
40 | *******************************************************************************/
|
---|
41 | /** The jump buffer. */
|
---|
42 | static VMMR0JMPBUF g_Jmp;
|
---|
43 | /** The saved stack. */
|
---|
44 | static uint8_t g_Stack[8192];
|
---|
45 |
|
---|
46 |
|
---|
47 | int foo(int i, int iZero, int iMinusOne)
|
---|
48 | {
|
---|
49 | char *pv = (char *)alloca(i + 32);
|
---|
50 | RTStrPrintf(pv, i + 32, "i=%d%*s\n", i, i+32, "");
|
---|
51 | if ((i % 7) == 0)
|
---|
52 | {
|
---|
53 | int rc = vmmR0CallHostLongJmp(&g_Jmp, 42);
|
---|
54 | if (!rc)
|
---|
55 | return i + 10000;
|
---|
56 | return -1;
|
---|
57 | }
|
---|
58 | return i;
|
---|
59 | }
|
---|
60 |
|
---|
61 |
|
---|
62 | DECLCALLBACK(int) tst2(intptr_t i)
|
---|
63 | {
|
---|
64 | if (i < 0 || i > 8192)
|
---|
65 | {
|
---|
66 | RTPrintf("tstVMMR0CallHost-1: FAILURE - i=%d is out of range [0..8192]\n", i);
|
---|
67 | return 1;
|
---|
68 | }
|
---|
69 | int iExpect = (i % 7) == 0 ? i + 10000 : i;
|
---|
70 | int rc = foo(i, 0, -1);
|
---|
71 | if (rc != iExpect)
|
---|
72 | {
|
---|
73 | RTPrintf("tstVMMR0CallHost-1: FAILURE - i=%d rc=%d expected=%d\n", i, rc, iExpect);
|
---|
74 | return 1;
|
---|
75 | }
|
---|
76 | return 0;
|
---|
77 | }
|
---|
78 |
|
---|
79 | int tst(int iFrom, int iTo, int iInc)
|
---|
80 | {
|
---|
81 | for (int i = iFrom; i < iTo; i += iInc)
|
---|
82 | {
|
---|
83 | int rc = vmmR0CallHostSetJmp(&g_Jmp, (PFNVMMR0SETJMP)tst2, (PVM)i);
|
---|
84 | if (rc != 0 && rc != 42)
|
---|
85 | {
|
---|
86 | RTPrintf("tstVMMR0CallHost-1: FAILURE - i=%d rc=%d setjmp\n", i, rc);
|
---|
87 | return 1;
|
---|
88 | }
|
---|
89 | }
|
---|
90 | return 0;
|
---|
91 | }
|
---|
92 |
|
---|
93 |
|
---|
94 | int main()
|
---|
95 | {
|
---|
96 | /*
|
---|
97 | * Init.
|
---|
98 | */
|
---|
99 | RTR3Init(false);
|
---|
100 | RTPrintf("tstVMMR0CallHost-1: Testing...\n");
|
---|
101 | g_Jmp.pvSavedStack = (RTR0PTR)&g_Stack[0];
|
---|
102 |
|
---|
103 | /*
|
---|
104 | * Try about 1000 long jumps with increasing stack size..
|
---|
105 | */
|
---|
106 | int rc = tst(0, 7000, 1);
|
---|
107 | if (!rc)
|
---|
108 | rc = tst(7599, 0, -1);
|
---|
109 |
|
---|
110 | if (!rc)
|
---|
111 | RTPrintf("tstVMMR0CallHost-1: SUCCESS\n");
|
---|
112 | else
|
---|
113 | RTPrintf("tstVMMR0CallHost-1: FAILED\n");
|
---|
114 | return !!rc;
|
---|
115 | }
|
---|