1 | /** @file
|
---|
2 | *
|
---|
3 | * VBox host drivers - Ring-0 support drivers - Testcases:
|
---|
4 | * Test the interrupt gate feature of the support library
|
---|
5 | */
|
---|
6 |
|
---|
7 | /*
|
---|
8 | * Copyright (C) 2006 InnoTek Systemberatung GmbH
|
---|
9 | *
|
---|
10 | * This file is part of VirtualBox Open Source Edition (OSE), as
|
---|
11 | * available from http://www.virtualbox.org. This file is free software;
|
---|
12 | * you can redistribute it and/or modify it under the terms of the GNU
|
---|
13 | * General Public License as published by the Free Software Foundation,
|
---|
14 | * in version 2 as it comes in the "COPYING" file of the VirtualBox OSE
|
---|
15 | * distribution. VirtualBox OSE is distributed in the hope that it will
|
---|
16 | * be useful, but WITHOUT ANY WARRANTY of any kind.
|
---|
17 | *
|
---|
18 | * If you received this file as part of a commercial VirtualBox
|
---|
19 | * distribution, then only the terms of your commercial VirtualBox
|
---|
20 | * license agreement apply instead of the previous paragraph.
|
---|
21 | */
|
---|
22 |
|
---|
23 |
|
---|
24 | /*******************************************************************************
|
---|
25 | * Header Files *
|
---|
26 | *******************************************************************************/
|
---|
27 | #include <VBox/sup.h>
|
---|
28 | #include <VBox/vm.h>
|
---|
29 | #include <VBox/param.h>
|
---|
30 | #include <iprt/runtime.h>
|
---|
31 | #include <iprt/stream.h>
|
---|
32 | #include <iprt/string.h>
|
---|
33 |
|
---|
34 |
|
---|
35 | /**
|
---|
36 | * Makes a path to a file in the executable directory.
|
---|
37 | */
|
---|
38 | static char *ExeDirFile(char *pszFile, const char *pszArgv0, const char *pszFilename)
|
---|
39 | {
|
---|
40 | char *psz;
|
---|
41 | char *psz2;
|
---|
42 |
|
---|
43 | strcpy(pszFile, pszArgv0);
|
---|
44 | psz = strrchr(pszFile, '/');
|
---|
45 | psz2 = strrchr(pszFile, '\\');
|
---|
46 | if (psz < psz2)
|
---|
47 | psz = psz2;
|
---|
48 | if (!psz)
|
---|
49 | psz = strrchr(pszFile, ':');
|
---|
50 | if (!psz)
|
---|
51 | {
|
---|
52 | strcpy(pszFile, "./");
|
---|
53 | psz = &pszFile[1];
|
---|
54 | }
|
---|
55 | strcpy(psz + 1, "VMMR0.r0");
|
---|
56 | return pszFile;
|
---|
57 | }
|
---|
58 |
|
---|
59 | int main(int argc, char **argv)
|
---|
60 | {
|
---|
61 | int rcRet = 0;
|
---|
62 | int rc;
|
---|
63 | int cIterations = argc > 1 ? RTStrToUInt32(argv[1]) : 32;
|
---|
64 | if (cIterations == 0)
|
---|
65 | cIterations = 64;
|
---|
66 |
|
---|
67 | /*
|
---|
68 | * Init.
|
---|
69 | */
|
---|
70 | RTR3Init();
|
---|
71 | VM vm;
|
---|
72 | memset(&vm, 0, sizeof(vm));
|
---|
73 | rc = SUPInit(&vm.pSession);
|
---|
74 | rcRet += rc != 0;
|
---|
75 | RTPrintf("tstInt: SUPInit -> rc=%Vrc\n", rc);
|
---|
76 | if (!rc)
|
---|
77 | {
|
---|
78 | /*
|
---|
79 | * Load VMM code.
|
---|
80 | */
|
---|
81 | char szFile[RTPATH_MAX];
|
---|
82 | rc = SUPLoadVMM(ExeDirFile(szFile, argv[0], "VMMR0.r0"));
|
---|
83 | rcRet += rc != 0;
|
---|
84 | if (!rc)
|
---|
85 | {
|
---|
86 | /*
|
---|
87 | * Call VMM code with invalid function.
|
---|
88 | */
|
---|
89 | for (int i = cIterations; i > 0; i--)
|
---|
90 | {
|
---|
91 | rc = SUPCallVMMR0(&vm, 0xdeadbeef, NULL);
|
---|
92 | //RTPrintf("tstInt: SUPCallVMMR0 -> rc=%Vrc i=%d\n", rc, i);
|
---|
93 | }
|
---|
94 | RTPrintf("tstInt: Performed SUPCallVMMR0 %d times (rc=%Vrc)\n", cIterations, rc);
|
---|
95 |
|
---|
96 | /*
|
---|
97 | * Unload VMM.
|
---|
98 | */
|
---|
99 | rc = SUPUnloadVMM();
|
---|
100 | rcRet += rc != 0;
|
---|
101 | if (rc)
|
---|
102 | RTPrintf("tstInt: SUPUnloadVMM failed with rc=%Vrc\n", rc);
|
---|
103 | }
|
---|
104 | else
|
---|
105 | RTPrintf("tstInt: SUPLoadVMM failed with rc=%Vrc\n", rc);
|
---|
106 |
|
---|
107 | /*
|
---|
108 | * Terminate.
|
---|
109 | */
|
---|
110 | rc = SUPTerm();
|
---|
111 | rcRet += rc != 0;
|
---|
112 | RTPrintf("tstInt: SUPTerm -> rc=%Vrc\n", rc);
|
---|
113 | }
|
---|
114 |
|
---|
115 | return !!rc;
|
---|
116 | }
|
---|
117 |
|
---|