VirtualBox

Changeset 58052 in vbox for trunk/src/VBox/Additions


Ignore:
Timestamp:
Oct 6, 2015 1:45:20 PM (10 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
103106
Message:

VBoxService: More service introduction pages. A few more cleanups.

Location:
trunk/src/VBox/Additions/common/VBoxService
Files:
8 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Additions/common/VBoxService/VBoxServiceAutoMount.cpp

    r58030 r58052  
    1414 * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
    1515 * 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 *
    1633 */
    1734
     
    602619     * for the pfShutdown flag to be set by the main thread.
    603620     */
     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 */
    604626    for (;;)
    605627    {
  • trunk/src/VBox/Additions/common/VBoxService/VBoxServiceBalloon.cpp

    r58031 r58052  
    1414 * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
    1515 * 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 *
    1638 */
    1739
  • trunk/src/VBox/Additions/common/VBoxService/VBoxServiceClipboard-os2.cpp

    r58029 r58052  
    1414 * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
    1515 * 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.
    1634 */
    1735
     
    203221                if (g_atomOdin32UnicodeText == 0)
    204222                    VGSvcError("WinAddAtom() failed, lasterr=%lx; WinFindAtom() failed, lasterror=%lx\n",
    205                                      lLastError, WinGetLastError(g_habCtrl));
     223                               lLastError, WinGetLastError(g_habCtrl));
    206224
    207225                VGSvcVerbose(2, "g_u32ClientId=%RX32 g_atomNothingChanged=%#x g_atomOdin32UnicodeText=%#x\n",
    208                                    g_u32ClientId, g_atomNothingChanged, g_atomOdin32UnicodeText);
     226                             g_u32ClientId, g_atomNothingChanged, g_atomOdin32UnicodeText);
    209227                return VINF_SUCCESS;
    210228            }
     
    214232        else
    215233            VGSvcError("WinAddAtom() failed, lasterr=%lx; WinFindAtom() failed, lasterror=%lx\n",
    216                              lLastError, WinGetLastError(g_habCtrl));
     234                       lLastError, WinGetLastError(g_habCtrl));
    217235    }
    218236    else
     
    291309                    if (!WinSetClipbrdData(g_habWorker, 0, CF_TEXT, CFI_POINTER))
    292310                        VGSvcError("WinSetClipbrdData(,,CF_TEXT,) failed, lasterr=%lx\n", WinGetLastError(g_habWorker));
    293                     if (    g_atomOdin32UnicodeText
    294                         &&  !WinSetClipbrdData(g_habWorker, 0, g_atomOdin32UnicodeText, CFI_POINTER))
     311                    if (   g_atomOdin32UnicodeText
     312                        && !WinSetClipbrdData(g_habWorker, 0, g_atomOdin32UnicodeText, CFI_POINTER))
    295313                        VGSvcError("WinSetClipbrdData(,,g_atomOdin32UnicodeText,) failed, lasterr=%lx\n", WinGetLastError(g_habWorker));
    296314                }
     
    486504                {
    487505                    VGSvcError("vgsvcClipboardOs2RenderFormat: WinSetClipbrdData(,%p,%#x, CF_POINTER) failed, lasterror=%lx\n",
    488                                      pvPM, usFmt, WinGetLastError(g_habWorker));
     506                               pvPM, usFmt, WinGetLastError(g_habWorker));
    489507                    DosFreeMem(pvPM);
    490508                }
     
    879897                                            MPFROMLONG(fFormats), 0))
    880898                                VGSvcError("WinPostMsg(%lx, FORMATS,,) failed, lasterr=%#lx\n",
    881                                                  g_hwndWorker, WinGetLastError(g_habListener));
     899                                           g_hwndWorker, WinGetLastError(g_habListener));
    882900                            break;
    883901
     
    889907                                            MPFROMLONG(fFormats), 0))
    890908                                VGSvcError("WinPostMsg(%lx, READ_DATA,,) failed, lasterr=%#lx\n",
    891                                                  g_hwndWorker, WinGetLastError(g_habListener));
     909                                           g_hwndWorker, WinGetLastError(g_habListener));
    892910                            break;
    893911
     
    9941012                                if (qmsg.msg != WM_TIMER)
    9951013                                    VGSvcVerbose(6, "WinGetMsg -> hwnd=%p msg=%#x mp1=%p mp2=%p time=%#x ptl=%d,%d rsrv=%#x\n",
    996                                                        qmsg.hwnd, qmsg.msg, qmsg.mp1, qmsg.mp2, qmsg.time, qmsg.ptl.x, qmsg.ptl.y, qmsg.reserved);
     1014                                                 qmsg.hwnd, qmsg.msg, qmsg.mp1, qmsg.mp2, qmsg.time, qmsg.ptl.x, qmsg.ptl.y, qmsg.reserved);
    9971015                                WinDispatchMsg(g_habWorker, &qmsg);
    9981016                            }
  • trunk/src/VBox/Additions/common/VBoxService/VBoxServiceControl.cpp

    r58033 r58052  
    1919 *
    2020 * 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.
    2124 *
    2225 * The IGuest APIs provides means to manipulate (control) files, directories,
  • trunk/src/VBox/Additions/common/VBoxService/VBoxServiceCpuHotPlug.cpp

    r58029 r58052  
    11/* $Id$ */
    22/** @file
    3  * VBoxService - Guest Additions CPU Hot Plugging Service.
     3 * VBoxService - Guest Additions CPU Hot-Plugging Service.
    44 */
    55
     
    1616 */
    1717
     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 */
    1829
    1930/*********************************************************************************************************************************
     
    96107{
    97108    /** device:<id> */
    98     {true, "device:*"},
     109    { true, "device:*" },
    99110    /** LNXSYBUS:<id> */
    100     {true, "LNXSYBUS:*"}
     111    { true, "LNXSYBUS:*" }
    101112};
    102113
     
    105116{
    106117    /** ACPI0004:<id> */
    107     {true, "ACPI0004:*"}
     118    { true, "ACPI0004:*" }
    108119};
    109120
     
    112123{
    113124    /** LNXCPU:<id> */
    114     {true, "LNXCPU:*"},
     125    { true, "LNXCPU:*" },
    115126    /** ACPI_CPU:<id> */
    116     {true, "ACPI_CPU:*"}
     127    { true, "ACPI_CPU:*" }
    117128};
    118129
     
    121132{
    122133    /** 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 },
    124135    /** 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 },
    126137    /** 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 },
    128139    /** 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 },
    130141};
    131142
     
    553564    for (;;)
    554565    {
    555         /* Wait for CPU hot plugging event. */
     566        /* Wait for CPU hot-plugging event. */
    556567        uint32_t            idCpuCore;
    557568        uint32_t            idCpuPackage;
     
    613624    "cpuhotplug",
    614625    /* pszDescription. */
    615     "CPU hot plugging monitor",
     626    "CPU hot-plugging monitor",
    616627    /* pszUsage. */
    617628    NULL,
  • trunk/src/VBox/Additions/common/VBoxService/VBoxServicePageSharing.cpp

    r58033 r58052  
    1616 */
    1717
     18
    1819/** @page pg_vgsvc_pagesharing VBoxService - Page Sharing
    1920 *
    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).
    2336 *
    2437 * This is currently only implemented on Windows.  There is no technical reason
    2538 * for it not to be doable for all the other guests too, it's just a matter of
    2639 * customer demand and engineering time.
     40 *
    2741 */
    2842
  • trunk/src/VBox/Additions/common/VBoxService/VBoxServiceTimeSync.cpp

    r58033 r58052  
    1919/** @page pg_vgsvc_timesync     VBoxService - The Time Sync Service
    2020 *
     21 * The time sync subservice synchronizes the guest OS walltime with the host.
     22 *
    2123 * The time sync service plays along with the Time Manager (TM) in the VMM
    2224 * 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.
    2528 *
    2629 * There are three normal (= acceptable) cases:
  • trunk/src/VBox/Additions/common/VBoxService/VBoxServiceVMInfo.cpp

    r58033 r58052  
    1919 *
    2020 * 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/".
    2332 *
    2433 *
Note: See TracChangeset for help on using the changeset viewer.

© 2025 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette