-
Notifications
You must be signed in to change notification settings - Fork 6
/
vmwaregateway.cpp
464 lines (411 loc) · 11.6 KB
/
vmwaregateway.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
///////////////////////////////////////////////////////////////////////////////
//
// (c) 2000 by Volkmar Uhlig, [email protected], www.uhlig-langert.de/volkmar
//
// all code can be reused and modified
//
//
//
#define WINVER 0x401
#include "winsock2.h"
#include <stdio.h>
#include "servicemgr.h"
#define SERVICE_NAME "VMWareGateway"
#define DISPLAY_NAME "VMWareGateway"
#define SERVER_PORT 567
#define BUFFER_SIZE 1024
#define PIPE_NAME "\\\\.\\pipe\\vmwaredebug"
const char* errServerBusy = "Server is currently connected\n";
// event numbers/index into event array
#define LISTEN_EVENT 0
#define IO_EVENT 1
#define PIPE_CONNECT 2
#define PIPE_READ 3
#define SERVICE_EVENT 4
#define MAX_EVENTS 5
// verbose output - traces a lot
BOOL verbose = FALSE;
PSECURITY_DESCRIPTOR
CreateVmwareGatewaySD(VOID)
{
static SID_IDENTIFIER_AUTHORITY LocalSystemAuthority = {SECURITY_NT_AUTHORITY};
static SID_IDENTIFIER_AUTHORITY WorldAuthority = {SECURITY_WORLD_SID_AUTHORITY};
PSID LocalSystemSid = NULL;
PSID AdministratorsSid = NULL;
PSID EveryoneSid = NULL;
PACL Dacl;
DWORD DaclSize;
PSECURITY_DESCRIPTOR pSD = NULL;
/* create the SYSTEM, Administrators and Everyone SIDs */
if (!AllocateAndInitializeSid(&LocalSystemAuthority,
1,
SECURITY_LOCAL_SYSTEM_RID,
0,
0,
0,
0,
0,
0,
0,
&LocalSystemSid) ||
!AllocateAndInitializeSid(&LocalSystemAuthority,
2,
SECURITY_BUILTIN_DOMAIN_RID,
DOMAIN_ALIAS_RID_ADMINS,
0,
0,
0,
0,
0,
0,
&AdministratorsSid) ||
!AllocateAndInitializeSid(&WorldAuthority,
1,
SECURITY_WORLD_RID,
0,
0,
0,
0,
0,
0,
0,
&EveryoneSid))
{
printf("Failed initializing the SIDs for the default security descriptor (0x%p, 0x%p, 0x%p)\n",
LocalSystemSid, AdministratorsSid, EveryoneSid);
goto Cleanup;
}
/* allocate the security descriptor and DACL */
DaclSize = sizeof(ACL) +
((GetLengthSid(LocalSystemSid) +
GetLengthSid(AdministratorsSid) +
GetLengthSid(EveryoneSid)) +
(3 * FIELD_OFFSET(ACCESS_ALLOWED_ACE,
SidStart)));
pSD = (PSECURITY_DESCRIPTOR)LocalAlloc(LMEM_FIXED,
(SIZE_T)DaclSize + sizeof(SECURITY_DESCRIPTOR));
if (pSD == NULL)
{
printf("Failed to allocate the default security descriptor and ACL\n");
goto Cleanup;
}
if (!InitializeSecurityDescriptor(pSD,
SECURITY_DESCRIPTOR_REVISION))
{
printf("Failed to initialize the default security descriptor\n");
goto Cleanup;
}
/* initialize and build the DACL */
Dacl = (PACL)((ULONG_PTR)pSD + sizeof(SECURITY_DESCRIPTOR));
if (!InitializeAcl(Dacl,
(DWORD)DaclSize,
ACL_REVISION))
{
printf("Failed to initialize the DACL of the default security descriptor\n");
goto Cleanup;
}
/* add the SYSTEM Ace */
if (!AddAccessAllowedAce(Dacl,
ACL_REVISION,
FILE_GENERIC_READ | FILE_GENERIC_WRITE | FILE_GENERIC_EXECUTE,
LocalSystemSid))
{
printf("Failed to add the SYSTEM ACE\n");
goto Cleanup;
}
/* add the Administrators Ace */
if (!AddAccessAllowedAce(Dacl,
ACL_REVISION,
FILE_GENERIC_READ | FILE_GENERIC_WRITE | FILE_GENERIC_EXECUTE,
AdministratorsSid))
{
printf("Failed to add the Administrators ACE\n");
goto Cleanup;
}
/* add the Everyone Ace */
if (!AddAccessAllowedAce(Dacl,
ACL_REVISION,
FILE_GENERIC_READ | FILE_GENERIC_WRITE | FILE_GENERIC_EXECUTE,
EveryoneSid))
{
printf("Failed to add the Everyone ACE\n");
goto Cleanup;
}
/* set the DACL */
if (!SetSecurityDescriptorDacl(pSD,
TRUE,
Dacl,
FALSE))
{
printf("Failed to set the DACL of the default security descriptor\n");
Cleanup:
if (pSD != NULL)
{
LocalFree((HLOCAL)pSD);
pSD = NULL;
}
}
if (LocalSystemSid != NULL)
{
FreeSid(LocalSystemSid);
}
if (AdministratorsSid != NULL)
{
FreeSid(AdministratorsSid);
}
if (EveryoneSid != NULL)
{
FreeSid(EveryoneSid);
}
return pSD;
}
// the central server loop
void Server()
{
WORD wVersionRequested;
WSADATA wsaData;
PSECURITY_DESCRIPTOR sd;
SECURITY_ATTRIBUTES sa;
wVersionRequested = MAKEWORD( 2, 2 );
// socket and pipe handles
HANDLE pipe;
SOCKET s, conn;
WSAEVENT hEvents[MAX_EVENTS];
OVERLAPPED ovRead, ovConnect;
// copy buffers
char buffersocket[BUFFER_SIZE];
char bufferpipe[BUFFER_SIZE];
DWORD dwBytesSocket, dwBytesPipe;
// booleans of connection states
BOOL pipeConnected = FALSE;
BOOL socketConnected = FALSE;
// socket stuff
sockaddr_in sockaddr;
int err;
int addrlen;
// init network
if (err = WSAStartup(wVersionRequested, &wsaData)) {
printf("Error initializing network\n");
return;
}
// create a suitable security descriptor
sd = CreateVmwareGatewaySD();
sa.nLength = sizeof(sa);
sa.lpSecurityDescriptor = sd;
sa.bInheritHandle = FALSE;
// first create the named pipe
pipe = CreateNamedPipe(PIPE_NAME,
PIPE_ACCESS_DUPLEX | FILE_FLAG_OVERLAPPED,
0,
1,
100,
100,
NMPWAIT_WAIT_FOREVER,
&sa);
if (sd != NULL)
LocalFree((HLOCAL)sd);
if (pipe == INVALID_HANDLE_VALUE) {
printf("Could not create named pipe (%d)\n", GetLastError());
exit(0);
}
hEvents[SERVICE_EVENT] = hServiceEvent;
// now create the listen socket to wait for incoming requests
hEvents[LISTEN_EVENT] = WSACreateEvent();
hEvents[IO_EVENT] = WSACreateEvent();
ovConnect.hEvent = hEvents[PIPE_CONNECT] = CreateEvent(NULL, TRUE, FALSE, NULL);
ovRead.hEvent = hEvents[PIPE_READ] = CreateEvent(NULL, TRUE, FALSE, NULL);
if (hEvents[LISTEN_EVENT] == WSA_INVALID_EVENT ||
hEvents[IO_EVENT] == WSA_INVALID_EVENT ||
hEvents[PIPE_CONNECT] == NULL ||
hEvents[PIPE_READ] == NULL)
{
printf("Error creating net event\n");
return;
}
// async connect to named pipe
err = ConnectNamedPipe(pipe, &ovConnect);
// listen socket
s = socket(AF_INET, SOCK_STREAM, 0);
if (s == INVALID_SOCKET) {
printf("Could not initialize socket (%d)\n", GetLastError());
return;
}
sockaddr.sin_family=AF_INET;
sockaddr.sin_port=htons(SERVER_PORT);
sockaddr.sin_addr.s_addr = ADDR_ANY;
err = bind(s, (struct sockaddr*)&sockaddr, sizeof(sockaddr));
if (err) {
printf("Could not bind socket (%d)\n", GetLastError());
return;
}
err = listen(s, 5);
WSAEventSelect(s, hEvents[LISTEN_EVENT], FD_ACCEPT);
// central loop
while(1)
{
DWORD numEvent = WSAWaitForMultipleEvents(MAX_EVENTS, hEvents,
FALSE, WSA_INFINITE, TRUE);
//printf("Event: %d\n", numEvent);
switch(numEvent) {
case LISTEN_EVENT:
printf("incoming telnet request ");
if (!socketConnected) {
addrlen = sizeof(sockaddr);
conn = accept(s, (struct sockaddr*)&sockaddr, &addrlen);
if (conn == INVALID_SOCKET) {
printf("error connecting\n");
}
else {
//err = listen(s, 5); relisten???
hEvents[IO_EVENT] = WSACreateEvent();
WSAEventSelect(conn, hEvents[IO_EVENT], FD_READ|FD_CLOSE);
socketConnected = TRUE;
printf("accepted\n");
}
}
else {
addrlen = sizeof(sockaddr);
SOCKET tmp = accept(s, (struct sockaddr*)&sockaddr, &addrlen);
send(tmp, errServerBusy, strlen(errServerBusy), 0);
closesocket(tmp);
printf("denied\n");
}
WSAResetEvent(hEvents[LISTEN_EVENT]);
break;
case IO_EVENT:
{
WSANETWORKEVENTS NetEvents;
WSAEnumNetworkEvents(conn, hEvents[IO_EVENT], &NetEvents);
switch(NetEvents.lNetworkEvents)
{
case FD_READ:
dwBytesSocket = recv(conn, buffersocket, sizeof(buffersocket), 0);
if (verbose) {
buffersocket[dwBytesSocket]=0;
printf("%s", buffersocket);
}
if (pipeConnected) {
DWORD dwWritten;
WriteFile(pipe, buffersocket, dwBytesSocket, &dwWritten, NULL);
}
break;
case FD_CLOSE:
/* connection closed by host */
closesocket(conn);
socketConnected = FALSE;
listen(s, 5);
printf("telnet session closed\n");
break;
}
} break;
case PIPE_CONNECT:
if (!GetOverlappedResult(pipe, &ovConnect, &dwBytesPipe, FALSE))
{
printf("error pipe connect (%d)\n", GetLastError());
break;
}
printf("pipe connected\n");
ResetEvent(hEvents[PIPE_CONNECT]);
ResetEvent(hEvents[PIPE_READ]);
pipeConnected = TRUE;
ovRead.Offset = 0;
ovRead.OffsetHigh = 0;
ReadFile(pipe, bufferpipe, sizeof(bufferpipe), &dwBytesPipe, &ovRead);
break;
case PIPE_READ:
if (GetOverlappedResult(pipe, &ovRead, &dwBytesPipe, FALSE))
{
if (verbose) {
bufferpipe[dwBytesPipe] = 0;
printf(bufferpipe);
}
if (socketConnected)
{
send(conn, bufferpipe, dwBytesPipe, 0);
}
ResetEvent(hEvents[PIPE_READ]);
}
else
{
DWORD err = GetLastError();
switch (err) {
case ERROR_BROKEN_PIPE: /* disconnect and reconnect pipe */
DisconnectNamedPipe(pipe);
ConnectNamedPipe(pipe, &ovConnect);
ResetEvent(hEvents[PIPE_CONNECT]);
ResetEvent(hEvents[PIPE_READ]);
pipeConnected = FALSE;
printf("pipe disconnected\n");
continue;break;
}
}
ovRead.Offset = 0;
ovRead.OffsetHigh = 0;
ReadFile(pipe, bufferpipe, sizeof(bufferpipe), &dwBytesPipe, &ovRead);
break;
}
}
WSACleanup();
}
LPCSTR GetServiceName(BOOL bLongName)
{
if (bLongName)
return DISPLAY_NAME;
else
return SERVICE_NAME;
}
void ShowHelp() {
printf("Named pipe <-> telnet server for Windows NT/2000 (use on your own risk :)\n"
"Volkmar Uhlig ([email protected]), www.uhlig-langert.de/volkmar\n\n"
"Commands:\n"
"\t/R register as a service\n"
"\t/U unregister service\n"
"\t/T testmode\n"
"\t/V verbose mode\n"
"\nThe pipe name is \"%s\" and the telnet port is %d.\n", PIPE_NAME, SERVER_PORT);
}
BOOL CheckArg(int argc, char * argv[], char * arg)
{
for (int i=1; i<argc; i++)
if (_stricmp(argv[i], arg) == 0) return TRUE;
return FALSE;
}
int main(int argc, char* argv[])
{
char modulename[512];
GetModuleFileName(NULL, modulename, sizeof(modulename));
if (argc > 1) {
if (CheckArg(argc, argv, "/v"))
{
verbose = TRUE;
printf("verbose mode\n");
}
if (CheckArg(argc, argv, "/r"))
{
RegisterService(modulename, "\0\0");
return 0;
}
if (CheckArg(argc, argv, "/u"))
{
UnregisterService();
return 0;
}
if (CheckArg(argc, argv, "/t")) {
printf("test mode - press Ctrl+C to stop program\n");
hServiceEvent = CreateEvent(NULL, FALSE, FALSE, NULL);
Server();
CloseHandle(hServiceEvent);
return 0;
}
ShowHelp();
}
else {
SERVICE_TABLE_ENTRY dispatchTable[] =
{
{ TEXT(SERVICE_NAME), (LPSERVICE_MAIN_FUNCTION)service_main},
{ NULL, NULL }
};
StartServiceCtrlDispatcher(dispatchTable);
}
return 0;
}