VirtualBox

Changeset 59424 in vbox for trunk/src/VBox/Main


Ignore:
Timestamp:
Jan 20, 2016 7:20:11 PM (9 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
105150
Message:

VBoxCOM/VBoxProxyStub: Don't update COM registrations if there are other users around, only first client or server started does the updating, to avoid confusing already running VBox processes (like VMs and VBoxSVC).

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Main/glue/initterm.cpp

    r59418 r59424  
    248248# ifdef VBOX_WITH_AUTO_COM_REG_UPDATE
    249249    /*
    250      * First time we're called in a process, we refresh the VBox COM registrations.
     250     * First time we're called in a process, we refresh the VBox COM
     251     * registrations.   Use a global mutex to prevent updating when there are
     252     * API users already active, as that could lead to a bit of a mess.
    251253     */
    252     if (fAutoRegUpdate && gCOMMainThread == NIL_RTTHREAD)
    253     {
    254         char szPath[RTPATH_MAX];
    255         int vrc = RTPathAppPrivateArch(szPath, sizeof(szPath));
    256         if (RT_SUCCESS(vrc))
    257         {
     254    if (   fAutoRegUpdate
     255        && gCOMMainThread == NIL_RTTHREAD)
     256    {
     257        SetLastError(ERROR_SUCCESS);
     258        HANDLE hLeakIt = CreateMutexW(NULL/*pSecAttr*/, FALSE, L"Global\\VirtualBoxComLazyRegistrationMutant");
     259        DWORD  dwErr   = GetLastError();
     260        AssertMsg(dwErr == ERROR_SUCCESS || dwErr == ERROR_ALREADY_EXISTS, ("%u\n", dwErr));
     261        if (dwErr == ERROR_SUCCESS)
     262        {
     263            char szPath[RTPATH_MAX];
     264            int vrc = RTPathAppPrivateArch(szPath, sizeof(szPath));
     265            if (RT_SUCCESS(vrc))
    258266#  ifndef VBOX_IN_32_ON_64_MAIN_API
    259             rc = RTPathAppend(szPath, sizeof(szPath),
    260                                  RT_MAKE_U64(((PKUSER_SHARED_DATA)MM_SHARED_USER_DATA_VA)->NtMinorVersion,
    261                                              ((PKUSER_SHARED_DATA)MM_SHARED_USER_DATA_VA)->NtMajorVersion)
    262                               >= RT_MAKE_U64(1/*Lo*/,6/*Hi*/)
    263                               ? "VBoxProxyStub.dll" : "VBoxProxyStubLegacy.dll");
     267                rc = RTPathAppend(szPath, sizeof(szPath),
     268                                     RT_MAKE_U64(((PKUSER_SHARED_DATA)MM_SHARED_USER_DATA_VA)->NtMinorVersion,
     269                                                 ((PKUSER_SHARED_DATA)MM_SHARED_USER_DATA_VA)->NtMajorVersion)
     270                                  >= RT_MAKE_U64(1/*Lo*/,6/*Hi*/)
     271                                  ? "VBoxProxyStub.dll" : "VBoxProxyStubLegacy.dll");
    264272#  else
    265             rc = RTPathAppend(szPath, sizeof(szPath), "x86\\VBoxProxyStub-x86.dll");
     273                rc = RTPathAppend(szPath, sizeof(szPath), "x86\\VBoxProxyStub-x86.dll");
    266274#  endif
    267         }
    268         if (RT_SUCCESS(vrc))
    269         {
    270             RTLDRMOD hMod;
    271             vrc = RTLdrLoad(szPath, &hMod);
    272275            if (RT_SUCCESS(vrc))
    273276            {
    274                 union
     277                RTLDRMOD hMod;
     278                vrc = RTLdrLoad(szPath, &hMod);
     279                if (RT_SUCCESS(vrc))
    275280                {
    276                     void *pv;
    277                     DECLCALLBACKMEMBER(uint32_t, pfnRegUpdate)(void);
    278                 } u;
    279                 rc = RTLdrGetSymbol(hMod, "VbpsUpdateRegistrations", &u.pv);
    280                 if (RT_SUCCESS(rc))
    281                     u.pfnRegUpdate();
    282                 /* Just keep it loaded. */
     281                    union
     282                    {
     283                        void *pv;
     284                        DECLCALLBACKMEMBER(uint32_t, pfnRegUpdate)(void);
     285                    } u;
     286                    rc = RTLdrGetSymbol(hMod, "VbpsUpdateRegistrations", &u.pv);
     287                    if (RT_SUCCESS(rc))
     288                        u.pfnRegUpdate();
     289                    /* Just keep it loaded. */
     290                }
    283291            }
    284292        }
     293        Assert(hLeakIt != NULL); NOREF(hLeakIt);
    285294    }
    286295# endif
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