VirtualBox

source: vbox/trunk/src/VBox/Additions/common/VBoxService/VBoxServicePageSharing.cpp@ 40054

Last change on this file since 40054 was 40054, checked in by vboxsync, 13 years ago

VMM,VMMDev: Page sharing cleanup.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 26.2 KB
Line 
1/* $Id: VBoxServicePageSharing.cpp 40054 2012-02-09 15:37:11Z vboxsync $ */
2/** @file
3 * VBoxService - Guest page sharing.
4 */
5
6/*
7 * Copyright (C) 2006-2011 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 <iprt/assert.h>
23#include <iprt/avl.h>
24#include <iprt/asm.h>
25#include <iprt/mem.h>
26#include <iprt/process.h>
27#include <iprt/env.h>
28#include <iprt/stream.h>
29#include <iprt/file.h>
30#include <iprt/string.h>
31#include <iprt/semaphore.h>
32#include <iprt/system.h>
33#include <iprt/thread.h>
34#include <iprt/time.h>
35#include <VBox/VBoxGuestLib.h>
36#include "VBoxServiceInternal.h"
37#include "VBoxServiceUtils.h"
38
39
40/*******************************************************************************
41* Global Variables *
42*******************************************************************************/
43
44/** The semaphore we're blocking on. */
45static RTSEMEVENTMULTI g_PageSharingEvent = NIL_RTSEMEVENTMULTI;
46
47#if defined(RT_OS_WINDOWS) && !defined(TARGET_NT4)
48#include <tlhelp32.h>
49#include <psapi.h>
50#include <winternl.h>
51
52typedef struct
53{
54 AVLPVNODECORE Core;
55 HMODULE hModule;
56 char szFileVersion[16];
57 MODULEENTRY32 Info;
58} KNOWN_MODULE, *PKNOWN_MODULE;
59
60#define SystemModuleInformation 11
61
62typedef struct _RTL_PROCESS_MODULE_INFORMATION
63{
64 ULONG Section;
65 PVOID MappedBase;
66 PVOID ImageBase;
67 ULONG ImageSize;
68 ULONG Flags;
69 USHORT LoadOrderIndex;
70 USHORT InitOrderIndex;
71 USHORT LoadCount;
72 USHORT OffsetToFileName;
73 CHAR FullPathName[256];
74} RTL_PROCESS_MODULE_INFORMATION, *PRTL_PROCESS_MODULE_INFORMATION;
75
76typedef struct _RTL_PROCESS_MODULES
77{
78 ULONG NumberOfModules;
79 RTL_PROCESS_MODULE_INFORMATION Modules[1];
80} RTL_PROCESS_MODULES, *PRTL_PROCESS_MODULES;
81
82typedef NTSTATUS (WINAPI *PFNZWQUERYSYSTEMINFORMATION)(ULONG, PVOID, ULONG, PULONG);
83static PFNZWQUERYSYSTEMINFORMATION ZwQuerySystemInformation = NULL;
84static HMODULE hNtdll = 0;
85
86
87static DECLCALLBACK(int) VBoxServicePageSharingEmptyTreeCallback(PAVLPVNODECORE pNode, void *pvUser);
88
89static PAVLPVNODECORE g_pKnownModuleTree = NULL;
90static uint64_t g_idSession = 0;
91
92/**
93 * Registers a new module with the VMM
94 * @param pModule Module ptr
95 * @param fValidateMemory Validate/touch memory pages or not
96 */
97void VBoxServicePageSharingRegisterModule(PKNOWN_MODULE pModule, bool fValidateMemory)
98{
99 VMMDEVSHAREDREGIONDESC aRegions[VMMDEVSHAREDREGIONDESC_MAX];
100 DWORD dwModuleSize = pModule->Info.modBaseSize;
101 BYTE *pBaseAddress = pModule->Info.modBaseAddr;
102 DWORD cbVersionSize, dummy;
103 BYTE *pVersionInfo;
104
105 VBoxServiceVerbose(3, "VBoxServicePageSharingRegisterModule\n");
106
107 cbVersionSize = GetFileVersionInfoSize(pModule->Info.szExePath, &dummy);
108 if (!cbVersionSize)
109 {
110 VBoxServiceVerbose(3, "VBoxServicePageSharingRegisterModule: GetFileVersionInfoSize failed with %d\n", GetLastError());
111 return;
112 }
113 pVersionInfo = (BYTE *)RTMemAlloc(cbVersionSize);
114 if (!pVersionInfo)
115 return;
116
117 if (!GetFileVersionInfo(pModule->Info.szExePath, 0, cbVersionSize, pVersionInfo))
118 {
119 VBoxServiceVerbose(3, "VBoxServicePageSharingRegisterModule: GetFileVersionInfo failed with %d\n", GetLastError());
120 goto end;
121 }
122
123 /* Fetch default code page. */
124 struct LANGANDCODEPAGE {
125 WORD wLanguage;
126 WORD wCodePage;
127 } *lpTranslate;
128
129 UINT cbTranslate;
130 BOOL ret = VerQueryValue(pVersionInfo, TEXT("\\VarFileInfo\\Translation"), (LPVOID *)&lpTranslate, &cbTranslate);
131 if ( !ret
132 || cbTranslate < 4)
133 {
134 VBoxServiceVerbose(3, "VBoxServicePageSharingRegisterModule: VerQueryValue failed with %d (cb=%d)\n", GetLastError(), cbTranslate);
135 goto end;
136 }
137
138 unsigned i;
139 UINT cbFileVersion;
140 char *lpszFileVersion;
141 unsigned cTranslationBlocks = cbTranslate/sizeof(struct LANGANDCODEPAGE);
142
143 for(i = 0; i < cTranslationBlocks; i++)
144 {
145 /* Fetch file version string. */
146 char szFileVersionLocation[256];
147
148 sprintf(szFileVersionLocation, TEXT("\\StringFileInfo\\%04x%04x\\FileVersion"), lpTranslate[i].wLanguage, lpTranslate[i].wCodePage);
149 ret = VerQueryValue(pVersionInfo, szFileVersionLocation, (LPVOID *)&lpszFileVersion, &cbFileVersion);
150 if (ret)
151 break;
152 }
153 if (i == cTranslationBlocks)
154 {
155 VBoxServiceVerbose(3, "VBoxServicePageSharingRegisterModule: no file version found!\n");
156 goto end;
157 }
158
159 _snprintf(pModule->szFileVersion, sizeof(pModule->szFileVersion), "%s", lpszFileVersion);
160 pModule->szFileVersion[RT_ELEMENTS(pModule->szFileVersion) - 1] = 0;
161
162 unsigned idxRegion = 0;
163
164 if (fValidateMemory)
165 {
166 do
167 {
168 MEMORY_BASIC_INFORMATION MemInfo;
169
170 SIZE_T ret = VirtualQuery(pBaseAddress, &MemInfo, sizeof(MemInfo));
171 Assert(ret);
172 if (!ret)
173 {
174 VBoxServiceVerbose(3, "VBoxServicePageSharingRegisterModule: VirtualQueryEx failed with %d\n", GetLastError());
175 break;
176 }
177
178 if ( MemInfo.State == MEM_COMMIT
179 && MemInfo.Type == MEM_IMAGE)
180 {
181 switch (MemInfo.Protect)
182 {
183 case PAGE_EXECUTE:
184 case PAGE_EXECUTE_READ:
185 case PAGE_READONLY:
186 {
187 char *pRegion = (char *)MemInfo.BaseAddress;
188
189 /* Skip the first region as it only contains the image file header. */
190 if (pRegion != (char *)pModule->Info.modBaseAddr)
191 {
192 /* Touch all pages. */
193 while (pRegion < (char *)MemInfo.BaseAddress + MemInfo.RegionSize)
194 {
195 /* Try to trick the optimizer to leave the page touching code in place. */
196 ASMProbeReadByte(pRegion);
197 pRegion += PAGE_SIZE;
198 }
199 }
200#ifdef RT_ARCH_X86
201 aRegions[idxRegion].GCRegionAddr = (RTGCPTR32)MemInfo.BaseAddress;
202#else
203 aRegions[idxRegion].GCRegionAddr = (RTGCPTR64)MemInfo.BaseAddress;
204#endif
205 aRegions[idxRegion].cbRegion = MemInfo.RegionSize;
206 idxRegion++;
207
208 break;
209 }
210
211 default:
212 break; /* ignore */
213 }
214 }
215
216 pBaseAddress = (BYTE *)MemInfo.BaseAddress + MemInfo.RegionSize;
217 if (dwModuleSize > MemInfo.RegionSize)
218 {
219 dwModuleSize -= MemInfo.RegionSize;
220 }
221 else
222 {
223 dwModuleSize = 0;
224 break;
225 }
226
227 if (idxRegion >= RT_ELEMENTS(aRegions))
228 break; /* out of room */
229 }
230 while (dwModuleSize);
231 }
232 else
233 {
234 /* We can't probe kernel memory ranges, so pretend it's one big region. */
235#ifdef RT_ARCH_X86
236 aRegions[idxRegion].GCRegionAddr = (RTGCPTR32)pBaseAddress;
237#else
238 aRegions[idxRegion].GCRegionAddr = (RTGCPTR64)pBaseAddress;
239#endif
240 aRegions[idxRegion].cbRegion = dwModuleSize;
241 idxRegion++;
242 }
243 VBoxServiceVerbose(3, "VBoxServicePageSharingRegisterModule: VbglR3RegisterSharedModule %s %s base=%p size=%x cregions=%d\n", pModule->Info.szModule, pModule->szFileVersion, pModule->Info.modBaseAddr, pModule->Info.modBaseSize, idxRegion);
244 int rc = VbglR3RegisterSharedModule(pModule->Info.szModule, pModule->szFileVersion, (uintptr_t)pModule->Info.modBaseAddr,
245 pModule->Info.modBaseSize, idxRegion, aRegions);
246 if (RT_FAILURE(rc))
247 VBoxServiceVerbose(3, "VBoxServicePageSharingRegisterModule: VbglR3RegisterSharedModule failed with %Rrc\n", rc);
248
249end:
250 RTMemFree(pVersionInfo);
251 return;
252}
253
254/**
255 * Inspect all loaded modules for the specified process
256 * @param dwProcessId Process id
257 */
258void VBoxServicePageSharingInspectModules(DWORD dwProcessId, PAVLPVNODECORE *ppNewTree)
259{
260 HANDLE hProcess, hSnapshot;
261
262 /* Get a list of all the modules in this process. */
263 hProcess = OpenProcess(PROCESS_QUERY_INFORMATION,
264 FALSE /* no child process handle inheritance */, dwProcessId);
265 if (hProcess == NULL)
266 {
267 VBoxServiceVerbose(3, "VBoxServicePageSharingInspectModules: OpenProcess %x failed with %d\n", dwProcessId, GetLastError());
268 return;
269 }
270
271 hSnapshot = CreateToolhelp32Snapshot(TH32CS_SNAPMODULE, dwProcessId);
272 if (hSnapshot == INVALID_HANDLE_VALUE)
273 {
274 VBoxServiceVerbose(3, "VBoxServicePageSharingInspectModules: CreateToolhelp32Snapshot failed with %d\n", GetLastError());
275 CloseHandle(hProcess);
276 return;
277 }
278
279 VBoxServiceVerbose(3, "VBoxServicePageSharingInspectModules\n");
280
281 MODULEENTRY32 ModuleInfo;
282 BOOL bRet;
283
284 ModuleInfo.dwSize = sizeof(ModuleInfo);
285 bRet = Module32First(hSnapshot, &ModuleInfo);
286 do
287 {
288 /** @todo when changing this make sure VBoxService.exe is excluded! */
289 char *pszDot = strrchr(ModuleInfo.szModule, '.');
290 if ( pszDot
291 && (pszDot[1] == 'e' || pszDot[1] == 'E'))
292 continue; /* ignore executables for now. */
293
294 /* Found it before? */
295 PAVLPVNODECORE pRec = RTAvlPVGet(ppNewTree, ModuleInfo.modBaseAddr);
296 if (!pRec)
297 {
298 pRec = RTAvlPVRemove(&g_pKnownModuleTree, ModuleInfo.modBaseAddr);
299 if (!pRec)
300 {
301 /* New module; register it. */
302 PKNOWN_MODULE pModule = (PKNOWN_MODULE)RTMemAllocZ(sizeof(*pModule));
303 Assert(pModule);
304 if (!pModule)
305 break;
306
307 pModule->Info = ModuleInfo;
308 pModule->Core.Key = ModuleInfo.modBaseAddr;
309 pModule->hModule = LoadLibraryEx(ModuleInfo.szExePath, 0, DONT_RESOLVE_DLL_REFERENCES);
310 if (pModule->hModule)
311 VBoxServicePageSharingRegisterModule(pModule, true /* validate pages */);
312
313 VBoxServiceVerbose(3, "\n\n MODULE NAME: %s", ModuleInfo.szModule );
314 VBoxServiceVerbose(3, "\n executable = %s", ModuleInfo.szExePath );
315 VBoxServiceVerbose(3, "\n process ID = 0x%08X", ModuleInfo.th32ProcessID );
316 VBoxServiceVerbose(3, "\n base address = 0x%08X", (DWORD) ModuleInfo.modBaseAddr );
317 VBoxServiceVerbose(3, "\n base size = %d", ModuleInfo.modBaseSize );
318
319 pRec = &pModule->Core;
320 }
321 bool ret = RTAvlPVInsert(ppNewTree, pRec);
322 Assert(ret); NOREF(ret);
323 }
324 }
325 while (Module32Next(hSnapshot, &ModuleInfo));
326
327 CloseHandle(hSnapshot);
328 CloseHandle(hProcess);
329}
330
331/**
332 * Inspect all running processes for executables and dlls that might be worth sharing
333 * with other VMs.
334 *
335 */
336void VBoxServicePageSharingInspectGuest()
337{
338 HANDLE hSnapshot;
339 PAVLPVNODECORE pNewTree = NULL;
340 DWORD dwProcessId = GetCurrentProcessId();
341
342 VBoxServiceVerbose(3, "VBoxServicePageSharingInspectGuest\n");
343
344 hSnapshot = CreateToolhelp32Snapshot(TH32CS_SNAPPROCESS, 0);
345 if (hSnapshot == INVALID_HANDLE_VALUE)
346 {
347 VBoxServiceVerbose(3, "VBoxServicePageSharingInspectGuest: CreateToolhelp32Snapshot failed with %d\n", GetLastError());
348 return;
349 }
350
351 /* Check loaded modules for all running processes. */
352 PROCESSENTRY32 ProcessInfo;
353
354 ProcessInfo.dwSize = sizeof(ProcessInfo);
355 Process32First(hSnapshot, &ProcessInfo);
356
357 do
358 {
359 /* Skip our own process. */
360 if (ProcessInfo.th32ProcessID != dwProcessId)
361 VBoxServicePageSharingInspectModules(ProcessInfo.th32ProcessID, &pNewTree);
362 }
363 while (Process32Next(hSnapshot, &ProcessInfo));
364
365 CloseHandle(hSnapshot);
366
367 /* Check all loaded kernel modules. */
368 if (ZwQuerySystemInformation)
369 {
370 ULONG cbBuffer = 0;
371 PVOID pBuffer = NULL;
372 PRTL_PROCESS_MODULES pSystemModules;
373
374 NTSTATUS ret = ZwQuerySystemInformation(SystemModuleInformation, (PVOID)&cbBuffer, 0, &cbBuffer);
375 if (!cbBuffer)
376 {
377 VBoxServiceVerbose(1, "ZwQuerySystemInformation returned length 0\n");
378 goto skipkernelmodules;
379 }
380
381 pBuffer = RTMemAllocZ(cbBuffer);
382 if (!pBuffer)
383 goto skipkernelmodules;
384
385 ret = ZwQuerySystemInformation(SystemModuleInformation, pBuffer, cbBuffer, &cbBuffer);
386 if (ret != STATUS_SUCCESS)
387 {
388 VBoxServiceVerbose(1, "ZwQuerySystemInformation returned %x (1)\n", ret);
389 goto skipkernelmodules;
390 }
391
392 pSystemModules = (PRTL_PROCESS_MODULES)pBuffer;
393 for (unsigned i = 0; i < pSystemModules->NumberOfModules; i++)
394 {
395 VBoxServiceVerbose(4, "\n\n KERNEL MODULE NAME: %s", pSystemModules->Modules[i].FullPathName[pSystemModules->Modules[i].OffsetToFileName] );
396 VBoxServiceVerbose(4, "\n executable = %s", pSystemModules->Modules[i].FullPathName );
397 VBoxServiceVerbose(4, "\n flags = 0x%08X\n", pSystemModules->Modules[i].Flags);
398
399 /* User-mode modules seem to have no flags set; skip them as we detected them above. */
400 if (pSystemModules->Modules[i].Flags == 0)
401 continue;
402
403 /* Found it before? */
404 PAVLPVNODECORE pRec = RTAvlPVGet(&pNewTree, pSystemModules->Modules[i].ImageBase);
405 if (!pRec)
406 {
407 pRec = RTAvlPVRemove(&g_pKnownModuleTree, pSystemModules->Modules[i].ImageBase);
408 if (!pRec)
409 {
410 /* New module; register it. */
411 char szFullFilePath[512];
412 PKNOWN_MODULE pModule = (PKNOWN_MODULE)RTMemAllocZ(sizeof(*pModule));
413 Assert(pModule);
414 if (!pModule)
415 break;
416
417 strcpy(pModule->Info.szModule, &pSystemModules->Modules[i].FullPathName[pSystemModules->Modules[i].OffsetToFileName]);
418 GetSystemDirectoryA(szFullFilePath, sizeof(szFullFilePath));
419
420 /* skip \Systemroot\system32 */
421 char *lpPath = strchr(&pSystemModules->Modules[i].FullPathName[1], '\\');
422 if (!lpPath)
423 {
424 /* Seen just file names in XP; try to locate the file in the system32 and system32\drivers directories. */
425 strcat(szFullFilePath, "\\");
426 strcat(szFullFilePath, pSystemModules->Modules[i].FullPathName);
427 VBoxServiceVerbose(3, "Unexpected kernel module name try %s\n", szFullFilePath);
428 if (RTFileExists(szFullFilePath) == false)
429 {
430 GetSystemDirectoryA(szFullFilePath, sizeof(szFullFilePath));
431 strcat(szFullFilePath, "\\drivers\\");
432 strcat(szFullFilePath, pSystemModules->Modules[i].FullPathName);
433 VBoxServiceVerbose(3, "Unexpected kernel module name try %s\n", szFullFilePath);
434 if (RTFileExists(szFullFilePath) == false)
435 {
436 VBoxServiceVerbose(1, "Unexpected kernel module name %s\n", pSystemModules->Modules[i].FullPathName);
437 RTMemFree(pModule);
438 continue;
439 }
440 }
441 }
442 else
443 {
444 lpPath = strchr(lpPath+1, '\\');
445 if (!lpPath)
446 {
447 VBoxServiceVerbose(1, "Unexpected kernel module name %s (2)\n", pSystemModules->Modules[i].FullPathName);
448 RTMemFree(pModule);
449 continue;
450 }
451
452 strcat(szFullFilePath, lpPath);
453 }
454
455 strcpy(pModule->Info.szExePath, szFullFilePath);
456 pModule->Info.modBaseAddr = (BYTE *)pSystemModules->Modules[i].ImageBase;
457 pModule->Info.modBaseSize = pSystemModules->Modules[i].ImageSize;
458
459 pModule->Core.Key = pSystemModules->Modules[i].ImageBase;
460 VBoxServicePageSharingRegisterModule(pModule, false /* don't check memory pages */);
461
462 VBoxServiceVerbose(3, "\n\n KERNEL MODULE NAME: %s", pModule->Info.szModule );
463 VBoxServiceVerbose(3, "\n executable = %s", pModule->Info.szExePath );
464 VBoxServiceVerbose(3, "\n base address = 0x%08X", (DWORD) pModule->Info.modBaseAddr );
465 VBoxServiceVerbose(3, "\n flags = 0x%08X", pSystemModules->Modules[i].Flags);
466 VBoxServiceVerbose(3, "\n base size = %d", pModule->Info.modBaseSize );
467
468 pRec = &pModule->Core;
469 }
470 bool ret = RTAvlPVInsert(&pNewTree, pRec);
471 Assert(ret); NOREF(ret);
472 }
473 }
474skipkernelmodules:
475 if (pBuffer)
476 RTMemFree(pBuffer);
477 }
478
479 /* Delete leftover modules in the old tree. */
480 RTAvlPVDestroy(&g_pKnownModuleTree, VBoxServicePageSharingEmptyTreeCallback, NULL);
481
482 /* Check all registered modules. */
483 VbglR3CheckSharedModules();
484
485 /* Activate new module tree. */
486 g_pKnownModuleTree = pNewTree;
487}
488
489/**
490 * RTAvlPVDestroy callback.
491 */
492static DECLCALLBACK(int) VBoxServicePageSharingEmptyTreeCallback(PAVLPVNODECORE pNode, void *pvUser)
493{
494 PKNOWN_MODULE pModule = (PKNOWN_MODULE)pNode;
495 bool *pfUnregister = (bool *)pvUser;
496
497 VBoxServiceVerbose(3, "VBoxServicePageSharingEmptyTreeCallback %s %s\n", pModule->Info.szModule, pModule->szFileVersion);
498
499 /* Dereference module in the hypervisor. */
500 if ( !pfUnregister
501 || *pfUnregister)
502 {
503 int rc = VbglR3UnregisterSharedModule(pModule->Info.szModule, pModule->szFileVersion,
504 (uintptr_t)pModule->Info.modBaseAddr, pModule->Info.modBaseSize);
505 AssertRC(rc);
506 }
507
508 if (pModule->hModule)
509 FreeLibrary(pModule->hModule);
510 RTMemFree(pNode);
511 return 0;
512}
513
514
515#elif TARGET_NT4
516void VBoxServicePageSharingInspectGuest()
517{
518 /* not implemented */
519}
520#else
521void VBoxServicePageSharingInspectGuest()
522{
523 /* @todo other platforms */
524}
525#endif
526
527/** @copydoc VBOXSERVICE::pfnPreInit */
528static DECLCALLBACK(int) VBoxServicePageSharingPreInit(void)
529{
530 return VINF_SUCCESS;
531}
532
533
534/** @copydoc VBOXSERVICE::pfnOption */
535static DECLCALLBACK(int) VBoxServicePageSharingOption(const char **ppszShort, int argc, char **argv, int *pi)
536{
537 NOREF(ppszShort);
538 NOREF(argc);
539 NOREF(argv);
540 NOREF(pi);
541 return VINF_SUCCESS;
542}
543
544
545/** @copydoc VBOXSERVICE::pfnInit */
546static DECLCALLBACK(int) VBoxServicePageSharingInit(void)
547{
548 VBoxServiceVerbose(3, "VBoxServicePageSharingInit\n");
549
550 int rc = RTSemEventMultiCreate(&g_PageSharingEvent);
551 AssertRCReturn(rc, rc);
552
553#if defined(RT_OS_WINDOWS) && !defined(TARGET_NT4)
554 hNtdll = LoadLibrary("ntdll.dll");
555
556 if (hNtdll)
557 ZwQuerySystemInformation = (PFNZWQUERYSYSTEMINFORMATION)GetProcAddress(hNtdll, "ZwQuerySystemInformation");
558
559 rc = VbglR3GetSessionId(&g_idSession);
560 if (RT_FAILURE(rc))
561 {
562 if (rc == VERR_IO_GEN_FAILURE)
563 VBoxServiceVerbose(0, "PageSharing: Page sharing support is not available by the host\n");
564 else
565 VBoxServiceError("VBoxServicePageSharingInit: Failed with rc=%Rrc\n", rc);
566
567 rc = VERR_SERVICE_DISABLED;
568
569 RTSemEventMultiDestroy(g_PageSharingEvent);
570 g_PageSharingEvent = NIL_RTSEMEVENTMULTI;
571
572 }
573#endif
574
575 return rc;
576}
577
578/** @copydoc VBOXSERVICE::pfnWorker */
579DECLCALLBACK(int) VBoxServicePageSharingWorker(bool volatile *pfShutdown)
580{
581 /*
582 * Tell the control thread that it can continue
583 * spawning services.
584 */
585 RTThreadUserSignal(RTThreadSelf());
586
587 /*
588 * Now enter the loop retrieving runtime data continuously.
589 */
590 for (;;)
591 {
592 BOOL fEnabled = VbglR3PageSharingIsEnabled();
593
594 VBoxServiceVerbose(3, "VBoxServicePageSharingWorker: enabled=%d\n", fEnabled);
595
596 if (fEnabled)
597 VBoxServicePageSharingInspectGuest();
598
599 /*
600 * Block for a minute.
601 *
602 * The event semaphore takes care of ignoring interruptions and it
603 * allows us to implement service wakeup later.
604 */
605 if (*pfShutdown)
606 break;
607 int rc = RTSemEventMultiWait(g_PageSharingEvent, 60000);
608 if (*pfShutdown)
609 break;
610 if (rc != VERR_TIMEOUT && RT_FAILURE(rc))
611 {
612 VBoxServiceError("VBoxServicePageSharingWorker: RTSemEventMultiWait failed; rc=%Rrc\n", rc);
613 break;
614 }
615#if defined(RT_OS_WINDOWS) && !defined(TARGET_NT4)
616 uint64_t idNewSession = g_idSession;
617 rc = VbglR3GetSessionId(&idNewSession);
618 AssertRC(rc);
619
620 if (idNewSession != g_idSession)
621 {
622 bool fUnregister = false;
623
624 VBoxServiceVerbose(3, "VBoxServicePageSharingWorker: VM was restored!!\n");
625 /* The VM was restored, so reregister all modules the next time. */
626 RTAvlPVDestroy(&g_pKnownModuleTree, VBoxServicePageSharingEmptyTreeCallback, &fUnregister);
627 g_pKnownModuleTree = NULL;
628
629 g_idSession = idNewSession;
630 }
631#endif
632 }
633
634 RTSemEventMultiDestroy(g_PageSharingEvent);
635 g_PageSharingEvent = NIL_RTSEMEVENTMULTI;
636
637 VBoxServiceVerbose(3, "VBoxServicePageSharingWorker: finished thread\n");
638 return 0;
639}
640
641#ifdef RT_OS_WINDOWS
642
643/**
644 * This gets control when VBoxService is launched with -pagefusionfork by
645 * VBoxServicePageSharingWorkerProcess().
646 *
647 * @returns RTEXITCODE_SUCCESS.
648 *
649 * @remarks It won't normally return since the parent drops the shutdown hint
650 * via RTProcTerminate().
651 */
652RTEXITCODE VBoxServicePageSharingInitFork(void)
653{
654 VBoxServiceVerbose(3, "VBoxServicePageSharingInitFork\n");
655
656 bool fShutdown = false;
657 VBoxServicePageSharingInit();
658 VBoxServicePageSharingWorker(&fShutdown);
659
660 return RTEXITCODE_SUCCESS;
661}
662
663/** @copydoc VBOXSERVICE::pfnWorker */
664DECLCALLBACK(int) VBoxServicePageSharingWorkerProcess(bool volatile *pfShutdown)
665{
666 RTPROCESS hProcess = NIL_RTPROCESS;
667 int rc;
668
669 /*
670 * Tell the control thread that it can continue
671 * spawning services.
672 */
673 RTThreadUserSignal(RTThreadSelf());
674
675 /*
676 * Now enter the loop retrieving runtime data continuously.
677 */
678 for (;;)
679 {
680 BOOL fEnabled = VbglR3PageSharingIsEnabled();
681 VBoxServiceVerbose(3, "VBoxServicePageSharingWorkerProcess: enabled=%d\n", fEnabled);
682
683 /*
684 * Start a 2nd VBoxService process to deal with page fusion as we do
685 * not wish to dummy load dlls into this process. (First load with
686 * DONT_RESOLVE_DLL_REFERENCES, 2nd normal -> dll init routines not called!)
687 */
688 if ( fEnabled
689 && hProcess == NIL_RTPROCESS)
690 {
691 char szExeName[256];
692 char *pszExeName = RTProcGetExecutablePath(szExeName, sizeof(szExeName));
693 if (pszExeName)
694 {
695 char const *papszArgs[3];
696 papszArgs[0] = pszExeName;
697 papszArgs[1] = "--pagefusionfork";
698 papszArgs[2] = NULL;
699 rc = RTProcCreate(pszExeName, papszArgs, RTENV_DEFAULT, 0 /* normal child */, &hProcess);
700 if (RT_FAILURE(rc))
701 VBoxServiceError("VBoxServicePageSharingWorkerProcess: RTProcCreate %s failed; rc=%Rrc\n", pszExeName, rc);
702 }
703 }
704
705 /*
706 * Block for a minute.
707 *
708 * The event semaphore takes care of ignoring interruptions and it
709 * allows us to implement service wakeup later.
710 */
711 if (*pfShutdown)
712 break;
713 rc = RTSemEventMultiWait(g_PageSharingEvent, 60000);
714 if (*pfShutdown)
715 break;
716 if (rc != VERR_TIMEOUT && RT_FAILURE(rc))
717 {
718 VBoxServiceError("VBoxServicePageSharingWorkerProcess: RTSemEventMultiWait failed; rc=%Rrc\n", rc);
719 break;
720 }
721 }
722
723 if (hProcess != NIL_RTPROCESS)
724 RTProcTerminate(hProcess);
725
726 RTSemEventMultiDestroy(g_PageSharingEvent);
727 g_PageSharingEvent = NIL_RTSEMEVENTMULTI;
728
729 VBoxServiceVerbose(3, "VBoxServicePageSharingWorkerProcess: finished thread\n");
730 return 0;
731}
732
733#endif /* RT_OS_WINDOWS */
734
735/** @copydoc VBOXSERVICE::pfnTerm */
736static DECLCALLBACK(void) VBoxServicePageSharingTerm(void)
737{
738 VBoxServiceVerbose(3, "VBoxServicePageSharingTerm\n");
739
740#if defined(RT_OS_WINDOWS) && !defined(TARGET_NT4)
741 if (hNtdll)
742 FreeLibrary(hNtdll);
743#endif
744 return;
745}
746
747
748/** @copydoc VBOXSERVICE::pfnStop */
749static DECLCALLBACK(void) VBoxServicePageSharingStop(void)
750{
751 RTSemEventMultiSignal(g_PageSharingEvent);
752}
753
754
755/**
756 * The 'pagesharing' service description.
757 */
758VBOXSERVICE g_PageSharing =
759{
760 /* pszName. */
761 "pagesharing",
762 /* pszDescription. */
763 "Page Sharing",
764 /* pszUsage. */
765 NULL,
766 /* pszOptions. */
767 NULL,
768 /* methods */
769 VBoxServicePageSharingPreInit,
770 VBoxServicePageSharingOption,
771 VBoxServicePageSharingInit,
772#ifdef RT_OS_WINDOWS
773 VBoxServicePageSharingWorkerProcess,
774#else
775 VBoxServicePageSharingWorker,
776#endif
777 VBoxServicePageSharingStop,
778 VBoxServicePageSharingTerm
779};
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