1 | /** @file
|
---|
2 | *
|
---|
3 | * Small tool to (un)install the VBoxGuest device driver
|
---|
4 | *
|
---|
5 | * Copyright (C) 2006-2007 Sun Microsystems, Inc.
|
---|
6 | *
|
---|
7 | * This file is part of VirtualBox Open Source Edition (OSE), as
|
---|
8 | * available from http://www.virtualbox.org. This file is free software;
|
---|
9 | * you can redistribute it and/or modify it under the terms of the GNU
|
---|
10 | * General Public License (GPL) as published by the Free Software
|
---|
11 | * Foundation, in version 2 as it comes in the "COPYING" file of the
|
---|
12 | * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
|
---|
13 | * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
|
---|
14 | *
|
---|
15 | * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa
|
---|
16 | * Clara, CA 95054 USA or visit http://www.sun.com if you need
|
---|
17 | * additional information or have any questions.
|
---|
18 | */
|
---|
19 |
|
---|
20 |
|
---|
21 | /*******************************************************************************
|
---|
22 | * Header Files *
|
---|
23 | *******************************************************************************/
|
---|
24 | #include <windows.h>
|
---|
25 |
|
---|
26 | #include <stdio.h>
|
---|
27 | #include <stdlib.h>
|
---|
28 | #include <string.h>
|
---|
29 |
|
---|
30 | #include <VBox/VBoxGuest.h>
|
---|
31 |
|
---|
32 |
|
---|
33 | //#define TESTMODE
|
---|
34 |
|
---|
35 |
|
---|
36 |
|
---|
37 | int installDriver(void)
|
---|
38 | {
|
---|
39 | /*
|
---|
40 | * Assume it didn't exist, so we'll create the service.
|
---|
41 | */
|
---|
42 | SC_HANDLE hSMgrCreate = OpenSCManager(NULL, NULL, SERVICE_CHANGE_CONFIG);
|
---|
43 | if (!hSMgrCreate)
|
---|
44 | {
|
---|
45 | printf("OpenSCManager(,,create) failed rc=%d\n", GetLastError());
|
---|
46 | return -1;
|
---|
47 | }
|
---|
48 |
|
---|
49 | char szDriver[MAX_PATH];
|
---|
50 | GetSystemDirectory(szDriver, sizeof(szDriver));
|
---|
51 | strcat(szDriver, "\\drivers\\VBoxGuestNT.sys");
|
---|
52 |
|
---|
53 | SC_HANDLE hService = CreateService(hSMgrCreate,
|
---|
54 | VBOXGUEST_SERVICE_NAME,
|
---|
55 | "VBoxGuest Support Driver",
|
---|
56 | SERVICE_QUERY_STATUS,
|
---|
57 | SERVICE_KERNEL_DRIVER,
|
---|
58 | SERVICE_BOOT_START,
|
---|
59 | SERVICE_ERROR_NORMAL,
|
---|
60 | szDriver,
|
---|
61 | "System",
|
---|
62 | NULL, NULL, NULL, NULL);
|
---|
63 | if (!hService)
|
---|
64 | {
|
---|
65 | printf("CreateService failed! lasterr=%d\n", GetLastError());
|
---|
66 | } else
|
---|
67 | {
|
---|
68 | CloseServiceHandle(hService);
|
---|
69 | }
|
---|
70 | CloseServiceHandle(hSMgrCreate);
|
---|
71 | return hService ? 0 : -1;
|
---|
72 | }
|
---|
73 |
|
---|
74 | int uninstallDriver(void)
|
---|
75 | {
|
---|
76 | int rc = -1;
|
---|
77 | SC_HANDLE hSMgr = OpenSCManager(NULL, NULL, SERVICE_CHANGE_CONFIG);
|
---|
78 | if (!hSMgr)
|
---|
79 | {
|
---|
80 | printf("OpenSCManager(,,delete) failed rc=%d\n", GetLastError());
|
---|
81 | return -1;
|
---|
82 | }
|
---|
83 | SC_HANDLE hService = OpenService(hSMgr, VBOXGUEST_SERVICE_NAME, DELETE);
|
---|
84 | if (hService)
|
---|
85 | {
|
---|
86 | /*
|
---|
87 | * Delete the service.
|
---|
88 | */
|
---|
89 | if (DeleteService(hService))
|
---|
90 | rc = 0;
|
---|
91 | else
|
---|
92 | printf("DeleteService failed lasterr=%d\n", GetLastError());
|
---|
93 | CloseServiceHandle(hService);
|
---|
94 | }
|
---|
95 | else if (GetLastError() == ERROR_SERVICE_DOES_NOT_EXIST)
|
---|
96 | rc = 0;
|
---|
97 | else
|
---|
98 | printf("OpenService failed lasterr=%d\n", GetLastError());
|
---|
99 | CloseServiceHandle(hSMgr);
|
---|
100 | return rc;
|
---|
101 | }
|
---|
102 |
|
---|
103 |
|
---|
104 | HANDLE openDriver(void)
|
---|
105 | {
|
---|
106 | HANDLE hDevice;
|
---|
107 |
|
---|
108 | hDevice = CreateFile(VBOXGUEST_DEVICE_NAME, // Win2k+: VBOXGUEST_DEVICE_NAME_GLOBAL
|
---|
109 | GENERIC_READ | GENERIC_WRITE,
|
---|
110 | FILE_SHARE_READ | FILE_SHARE_WRITE,
|
---|
111 | NULL,
|
---|
112 | OPEN_EXISTING,
|
---|
113 | FILE_ATTRIBUTE_NORMAL,
|
---|
114 | NULL);
|
---|
115 | if (hDevice == INVALID_HANDLE_VALUE)
|
---|
116 | {
|
---|
117 | printf("CreateFile did not work. GetLastError() 0x%x\n", GetLastError());
|
---|
118 | }
|
---|
119 | return hDevice;
|
---|
120 | }
|
---|
121 |
|
---|
122 | int closeDriver(HANDLE hDevice)
|
---|
123 | {
|
---|
124 | CloseHandle(hDevice);
|
---|
125 | return 0;
|
---|
126 | }
|
---|
127 |
|
---|
128 | #ifdef TESTMODE
|
---|
129 | typedef struct TESTFOO
|
---|
130 | {
|
---|
131 | int values[16];
|
---|
132 | } TESTFOO, *PTESTFOO;
|
---|
133 |
|
---|
134 | int performTest(void)
|
---|
135 | {
|
---|
136 | int rc = 0;
|
---|
137 |
|
---|
138 | HANDLE hDevice = openDriver();
|
---|
139 |
|
---|
140 | if (hDevice != INVALID_HANDLE_VALUE)
|
---|
141 | {
|
---|
142 | DWORD cbReturned;
|
---|
143 |
|
---|
144 | closeDriver(hDevice);
|
---|
145 | } else
|
---|
146 | {
|
---|
147 | printf("openDriver failed!\n");
|
---|
148 | }
|
---|
149 |
|
---|
150 |
|
---|
151 | return rc;
|
---|
152 | }
|
---|
153 | #endif
|
---|
154 |
|
---|
155 | void displayHelpAndExit(char *programName)
|
---|
156 | {
|
---|
157 | printf("error, syntax: %s [install|uninstall]\n", programName);
|
---|
158 | exit(1);
|
---|
159 | }
|
---|
160 |
|
---|
161 | int main(int argc, char **argv)
|
---|
162 | {
|
---|
163 | bool installMode;
|
---|
164 | #ifdef TESTMODE
|
---|
165 | bool testMode = false;
|
---|
166 | #endif
|
---|
167 |
|
---|
168 | if (argc != 2)
|
---|
169 | {
|
---|
170 | displayHelpAndExit(argv[0]);
|
---|
171 | }
|
---|
172 | if (strcmp(argv[1], "install") == 0)
|
---|
173 | {
|
---|
174 | installMode = true;
|
---|
175 | } else
|
---|
176 | if (strcmp(argv[1], "uninstall") == 0)
|
---|
177 | {
|
---|
178 | installMode = false;
|
---|
179 | } else
|
---|
180 | #ifdef TESTMODE
|
---|
181 | if (strcmp(argv[1], "test") == 0)
|
---|
182 | {
|
---|
183 | testMode = true;
|
---|
184 | } else
|
---|
185 | #endif
|
---|
186 | {
|
---|
187 | displayHelpAndExit(argv[0]);
|
---|
188 | }
|
---|
189 |
|
---|
190 | int rc;
|
---|
191 |
|
---|
192 | #ifdef TESTMODE
|
---|
193 | if (testMode)
|
---|
194 | {
|
---|
195 | rc = performTest();
|
---|
196 | } else
|
---|
197 | #endif
|
---|
198 | if (installMode)
|
---|
199 | {
|
---|
200 | rc = installDriver();
|
---|
201 | } else
|
---|
202 | {
|
---|
203 | rc = uninstallDriver();
|
---|
204 | }
|
---|
205 |
|
---|
206 | if (rc == 0)
|
---|
207 | {
|
---|
208 | printf("operation completed successfully!\n");
|
---|
209 | } else
|
---|
210 | {
|
---|
211 | printf("error: operation failed with status code %d\n", rc);
|
---|
212 | }
|
---|
213 |
|
---|
214 | return rc;
|
---|
215 | }
|
---|