Changeset 58052 in vbox for trunk/src/VBox/Additions
- Timestamp:
- Oct 6, 2015 1:45:20 PM (10 years ago)
- svn:sync-xref-src-repo-rev:
- 103106
- Location:
- trunk/src/VBox/Additions/common/VBoxService
- Files:
-
- 8 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/common/VBoxService/VBoxServiceAutoMount.cpp
r58030 r58052 14 14 * VirtualBox OSE distribution. VirtualBox OSE is distributed in the 15 15 * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind. 16 */ 17 18 19 /** @page pg_vgsvc_automount VBoxService - Shared Folder Automounter 20 * 21 * The Shared Folder Automounter subservice mounts shared folders upon request 22 * from the host. 23 * 24 * This retrieves shared folder automount requests from Main via the VMMDev. 25 * The current implemention only does this once, for some inexplicable reason, 26 * so the run-time addition of automounted shared folders are not heeded. 27 * 28 * This subservice is only used on linux and solaris. On Windows the current 29 * thinking is this is better of done from VBoxTray, some one argue that for 30 * drive letter assigned shared folders it would be better to do some magic here 31 * (obviously not involving NDAddConnection). 32 * 16 33 */ 17 34 … … 602 619 * for the pfShutdown flag to be set by the main thread. 603 620 */ 621 /** @todo r=bird: Shared folders have always been configurable at run time, so 622 * this service must be changed to check for changes and execute those changes! 623 * 624 * The 0.5sec sleep here is just soo crude and must go! 625 */ 604 626 for (;;) 605 627 { -
trunk/src/VBox/Additions/common/VBoxService/VBoxServiceBalloon.cpp
r58031 r58052 14 14 * VirtualBox OSE distribution. VirtualBox OSE is distributed in the 15 15 * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind. 16 */ 17 18 19 /** @page pg_vgsvc_memballoon VBoxService - Memory Ballooning 20 * 21 * The Memory Ballooning subservice works with VBoxGuest, PGM and GMM to 22 * dynamically reallocate memory between VMs. 23 * 24 * Memory ballooning is typically used to deal with overcomitting memory on the 25 * host. It allowes you to borrow memory from one or more VMs and make it 26 * available to others. In theory it could also be used to make memory 27 * available to the host system, however memory fragmentation typically makes 28 * that difficult. 29 * 30 * The memory ballooning subservices talks to PGM, GMM and Main via the VMMDev. 31 * It polls for change requests at an interval and executes them when they 32 * arrive. There are two ways we implement the actual ballooning, either 33 * VBoxGuest allocates kernel memory and donates it to the host, or this service 34 * allocates process memory which VBoxGuest then locks down and donates to the 35 * host. While we prefer the former method it is not practicable on all OS and 36 * we have to use the latter. 37 * 16 38 */ 17 39 -
trunk/src/VBox/Additions/common/VBoxService/VBoxServiceClipboard-os2.cpp
r58029 r58052 14 14 * VirtualBox OSE distribution. VirtualBox OSE is distributed in the 15 15 * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind. 16 */ 17 18 19 /** @page pg_vgsvc_clipboard VBoxService - Clipboard (OS/2) 20 * 21 * The Clipboard subservice provides clipboard sharing for OS/2 guests only. 22 * 23 * This was the second subservice that was added to VBoxService. OS/2 is a 24 * single user system and we don't provide any VBoxTray or VBoxClient like 25 * processes. Because it's kind of simple system, it became natural to put the 26 * clipboard sharing here in VBoxService for OS/2. 27 * 28 * In addition to integrating with the native OS/2 PM clipboard formats, we also 29 * try provide the Odin32, a windows API layer for OS/2 (developed by Sander van 30 * Leeuwen and friends, later mainly InnoTek), with additional formats. 31 * 32 * Bitmaps are currently not supported, but that can easily be added should the 33 * need ever arrise. 16 34 */ 17 35 … … 203 221 if (g_atomOdin32UnicodeText == 0) 204 222 VGSvcError("WinAddAtom() failed, lasterr=%lx; WinFindAtom() failed, lasterror=%lx\n", 205 223 lLastError, WinGetLastError(g_habCtrl)); 206 224 207 225 VGSvcVerbose(2, "g_u32ClientId=%RX32 g_atomNothingChanged=%#x g_atomOdin32UnicodeText=%#x\n", 208 226 g_u32ClientId, g_atomNothingChanged, g_atomOdin32UnicodeText); 209 227 return VINF_SUCCESS; 210 228 } … … 214 232 else 215 233 VGSvcError("WinAddAtom() failed, lasterr=%lx; WinFindAtom() failed, lasterror=%lx\n", 216 234 lLastError, WinGetLastError(g_habCtrl)); 217 235 } 218 236 else … … 291 309 if (!WinSetClipbrdData(g_habWorker, 0, CF_TEXT, CFI_POINTER)) 292 310 VGSvcError("WinSetClipbrdData(,,CF_TEXT,) failed, lasterr=%lx\n", WinGetLastError(g_habWorker)); 293 if ( 294 && 311 if ( g_atomOdin32UnicodeText 312 && !WinSetClipbrdData(g_habWorker, 0, g_atomOdin32UnicodeText, CFI_POINTER)) 295 313 VGSvcError("WinSetClipbrdData(,,g_atomOdin32UnicodeText,) failed, lasterr=%lx\n", WinGetLastError(g_habWorker)); 296 314 } … … 486 504 { 487 505 VGSvcError("vgsvcClipboardOs2RenderFormat: WinSetClipbrdData(,%p,%#x, CF_POINTER) failed, lasterror=%lx\n", 488 506 pvPM, usFmt, WinGetLastError(g_habWorker)); 489 507 DosFreeMem(pvPM); 490 508 } … … 879 897 MPFROMLONG(fFormats), 0)) 880 898 VGSvcError("WinPostMsg(%lx, FORMATS,,) failed, lasterr=%#lx\n", 881 899 g_hwndWorker, WinGetLastError(g_habListener)); 882 900 break; 883 901 … … 889 907 MPFROMLONG(fFormats), 0)) 890 908 VGSvcError("WinPostMsg(%lx, READ_DATA,,) failed, lasterr=%#lx\n", 891 909 g_hwndWorker, WinGetLastError(g_habListener)); 892 910 break; 893 911 … … 994 1012 if (qmsg.msg != WM_TIMER) 995 1013 VGSvcVerbose(6, "WinGetMsg -> hwnd=%p msg=%#x mp1=%p mp2=%p time=%#x ptl=%d,%d rsrv=%#x\n", 996 1014 qmsg.hwnd, qmsg.msg, qmsg.mp1, qmsg.mp2, qmsg.time, qmsg.ptl.x, qmsg.ptl.y, qmsg.reserved); 997 1015 WinDispatchMsg(g_habWorker, &qmsg); 998 1016 } -
trunk/src/VBox/Additions/common/VBoxService/VBoxServiceControl.cpp
r58033 r58052 19 19 * 20 20 * The Guest Control subservice helps implementing the IGuest APIs. 21 * 22 * The communication between this service (and its children) and IGuest goes 23 * over the HGCM GuestControl service. 21 24 * 22 25 * The IGuest APIs provides means to manipulate (control) files, directories, -
trunk/src/VBox/Additions/common/VBoxService/VBoxServiceCpuHotPlug.cpp
r58029 r58052 1 1 /* $Id$ */ 2 2 /** @file 3 * VBoxService - Guest Additions CPU Hot 3 * VBoxService - Guest Additions CPU Hot-Plugging Service. 4 4 */ 5 5 … … 16 16 */ 17 17 18 /** @page pg_vgsvc_cpuhotplug CPU Hot-Plugging 19 * 20 * The CPU Hot-Plugging subservice helps execute and coordinate CPU hot-plugging 21 * between the guest OS and the VMM. 22 * 23 * CPU Hot-Plugging is useful for reallocating CPU resources from one VM to 24 * other VMs or/and the host. It talks to the VMM via VMMDev, new hot-plugging 25 * events being signalled with an interrupt (no polling). 26 * 27 * Currently only supported for linux guests. 28 */ 18 29 19 30 /********************************************************************************************************************************* … … 96 107 { 97 108 /** device:<id> */ 98 { true, "device:*"},109 { true, "device:*" }, 99 110 /** LNXSYBUS:<id> */ 100 { true, "LNXSYBUS:*"}111 { true, "LNXSYBUS:*" } 101 112 }; 102 113 … … 105 116 { 106 117 /** ACPI0004:<id> */ 107 { true, "ACPI0004:*"}118 { true, "ACPI0004:*" } 108 119 }; 109 120 … … 112 123 { 113 124 /** LNXCPU:<id> */ 114 { true, "LNXCPU:*"},125 { true, "LNXCPU:*" }, 115 126 /** ACPI_CPU:<id> */ 116 { true, "ACPI_CPU:*"}127 { true, "ACPI_CPU:*" } 117 128 }; 118 129 … … 121 132 { 122 133 /** Level 1 */ 123 { ACPI_CPU_PATH_NOT_PROBED, g_aAcpiCpuPathLvl1, RT_ELEMENTS(g_aAcpiCpuPathLvl1), NULL, NULL},134 { ACPI_CPU_PATH_NOT_PROBED, g_aAcpiCpuPathLvl1, RT_ELEMENTS(g_aAcpiCpuPathLvl1), NULL, NULL }, 124 135 /** Level 2 */ 125 { ACPI_CPU_PATH_NOT_PROBED, g_aAcpiCpuPathLvl2, RT_ELEMENTS(g_aAcpiCpuPathLvl2), NULL, NULL},136 { ACPI_CPU_PATH_NOT_PROBED, g_aAcpiCpuPathLvl2, RT_ELEMENTS(g_aAcpiCpuPathLvl2), NULL, NULL }, 126 137 /** Level 3 */ 127 { ACPI_CPU_PATH_NOT_PROBED, g_aAcpiCpuPathLvl3, RT_ELEMENTS(g_aAcpiCpuPathLvl3), NULL, NULL},138 { ACPI_CPU_PATH_NOT_PROBED, g_aAcpiCpuPathLvl3, RT_ELEMENTS(g_aAcpiCpuPathLvl3), NULL, NULL }, 128 139 /** Level 4 */ 129 { ACPI_CPU_PATH_NOT_PROBED, g_aAcpiCpuPathLvl4, RT_ELEMENTS(g_aAcpiCpuPathLvl4), NULL, NULL},140 { ACPI_CPU_PATH_NOT_PROBED, g_aAcpiCpuPathLvl4, RT_ELEMENTS(g_aAcpiCpuPathLvl4), NULL, NULL }, 130 141 }; 131 142 … … 553 564 for (;;) 554 565 { 555 /* Wait for CPU hot 566 /* Wait for CPU hot-plugging event. */ 556 567 uint32_t idCpuCore; 557 568 uint32_t idCpuPackage; … … 613 624 "cpuhotplug", 614 625 /* pszDescription. */ 615 "CPU hot 626 "CPU hot-plugging monitor", 616 627 /* pszUsage. */ 617 628 NULL, -
trunk/src/VBox/Additions/common/VBoxService/VBoxServicePageSharing.cpp
r58033 r58052 16 16 */ 17 17 18 18 19 /** @page pg_vgsvc_pagesharing VBoxService - Page Sharing 19 20 * 20 * The Page Sharing subservice is the driving force in implementing the Page 21 * Fusion feature in VirtualBox. It is its responsibility to find memory 22 * mappings and other good candidates for page sharing. 21 * The Page Sharing subservice is responsible for finding memory mappings 22 * suitable page fusions. 23 * 24 * It is the driving force behind the Page Fusion feature in VirtualBox. 25 * Working with PGM and GMM (ring-0) thru the VMMDev interface. Every so often 26 * it reenumerates the memory mappings (executables and shared libraries) of the 27 * guest OS and reports additions and removals to GMM. For each mapping there 28 * is a filename and version as well as and address range and subsections. GMM 29 * will match the mapping with mapping with the same name and version from other 30 * VMs and see if there are any identical pages between the two. 31 * 32 * To increase the hit rate and reduce the volatility, the service launches a 33 * child process which loads all the Windows system DLLs it can. The child 34 * process is necessary as the DLLs are loaded without running the init code, 35 * and therefore not actually callable for other VBoxService code (may crash). 23 36 * 24 37 * This is currently only implemented on Windows. There is no technical reason 25 38 * for it not to be doable for all the other guests too, it's just a matter of 26 39 * customer demand and engineering time. 40 * 27 41 */ 28 42 -
trunk/src/VBox/Additions/common/VBoxService/VBoxServiceTimeSync.cpp
r58033 r58052 19 19 /** @page pg_vgsvc_timesync VBoxService - The Time Sync Service 20 20 * 21 * The time sync subservice synchronizes the guest OS walltime with the host. 22 * 21 23 * The time sync service plays along with the Time Manager (TM) in the VMM 22 24 * to keep the guest time accurate using the host machine as reference. 23 * TM will try its best to make sure all timer ticks gets delivered so that 24 * there isn't normally any need to adjust the guest time. 25 * Communication is facilitated by VMMDev. TM will try its best to make sure 26 * all timer ticks gets delivered so that there isn't normally any need to 27 * adjust the guest time. 25 28 * 26 29 * There are three normal (= acceptable) cases: -
trunk/src/VBox/Additions/common/VBoxService/VBoxServiceVMInfo.cpp
r58033 r58052 19 19 * 20 20 * The VM Information subservice provides heaps of useful information about the 21 * VM via guest properties. Check out the "/VirtualBox/GuestInfo/" part of the 22 * guest properties. 21 * VM via guest properties. 22 * 23 * Guest properties is a limited database maintained by the HGCM GuestProperties 24 * service in cooperation with the Main API (VBoxSVC). Properties have a name 25 * (ours are path like), a string value, and a nanosecond timestamp (unix 26 * epoch). The timestamp lets the user see how recent the information is. As 27 * an laternative to polling on changes, it is also possible to wait on changes 28 * via the Main API or VBoxManage on the host side and VBoxControl in the guest. 29 * 30 * The namespace "/VirtualBox/" is reserved for value provided by VirtualBox. 31 * This service provides all the information under "/VirtualBox/GuestInfo/". 23 32 * 24 33 *
Note:
See TracChangeset
for help on using the changeset viewer.