VirtualBox

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


Ignore:
Timestamp:
Nov 18, 2017 2:06:23 AM (7 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
119130
Message:

Main: SDS plan B proof of concept.

Location:
trunk/src/VBox/Main
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Main/idl/VirtualBox.xidl

    r69729 r69734  
    2438024380  -->
    2438124381  <interface
    24382     name="IVBoxSVC" extends="$unknown"
    24383     uuid="8876e618-8936-4b2c-3015-aaebe6d479b9"
    24384     wsmap="suppress"
    24385     reservedMethods="2" reservedAttributes="4"
     24382    name="IVBoxSVC" extends="IUnknown"
     24383    uuid="902659ea-d14e-4444-4bc1-40b0d01ae9b3"
     24384    wsmap="suppress" internal="yes"  notdual="yes"
     24385    reservedMethods="0" reservedAttributes="0"
    2438624386    >
    2438724387      <desc>
  • trunk/src/VBox/Main/idl/midl.xsl

    r69379 r69734  
    219219    uuid(<xsl:value-of select="@uuid"/>),
    220220    object,
     221<xsl:if test="@notdual != 'yes'">
    221222    dual,
     223</xsl:if>
    222224    oleautomation
    223225<xsl:if test="$g_fGenProxy = 'yes'">
  • trunk/src/VBox/Main/include/VirtualBoxSDSImpl.h

    r69729 r69734  
    139139    static VirtualBoxCache m_cache;
    140140    friend VirtualBoxToken;
     141
     142#ifdef VBOX_WITH_SDS_PLAN_B
     143    // quick and dirty for checking the concept.
     144    IVBoxSVC *m_pVBoxSVC;
     145    uint32_t  m_pidVBoxSVC;
     146#endif
    141147};
    142148
  • trunk/src/VBox/Main/src-server/win/svcmain.cpp

    r69731 r69734  
    11/* $Id$ */
    22/** @file
    3  *
    43 * SVCMAIN - COM out-of-proc server main entry
    54 */
     
    1716 */
    1817
     18
     19/*********************************************************************************************************************************
     20*   Header Files                                                                                                                 *
     21*********************************************************************************************************************************/
     22#define RTMEM_WRAP_SOME_NEW_AND_DELETE_TO_EF // DONT COMMIT
     23#define RTMEM_WRAP_TO_EF_APIS
     24#include <iprt/mem.h>
    1925#include <iprt/win/windows.h>
    2026#include <stdio.h>
     
    2733
    2834#include "VirtualBoxImpl.h"
    29 #ifdef VBOX_WITH_SDS_PLAN_B
    30 # include "VBoxSVCWrap.h"
    31 #endif
     35//#ifdef VBOX_WITH_SDS_PLAN_B
     36//# include "VBoxSVCWrap.h"
     37//#endif
    3238#include "Logging.h"
    3339
     
    4450#include <iprt/asm.h>
    4551
     52
     53/*********************************************************************************************************************************
     54*   Defined Constants And Macros                                                                                                 *
     55*********************************************************************************************************************************/
     56#define MAIN_WND_CLASS L"VirtualBox Interface"
     57
     58
     59/*********************************************************************************************************************************
     60*   Structures and Typedefs                                                                                                      *
     61*********************************************************************************************************************************/
    4662class CExeModule : public ATL::CComModule
    4763{
     
    5470    bool HasActiveConnection();
    5571    bool bActivity;
     72    static bool isIdleLockCount(LONG cLocks);
    5673};
     74
     75
     76/*********************************************************************************************************************************
     77*   Global Variables                                                                                                             *
     78*********************************************************************************************************************************/
     79BEGIN_OBJECT_MAP(ObjectMap)
     80    OBJECT_ENTRY(CLSID_VirtualBox, VirtualBox)
     81END_OBJECT_MAP()
     82
     83CExeModule *g_pModule     = NULL;
     84HWND        g_hMainWindow = NULL;
     85HINSTANCE   g_hInstance   = NULL;
     86#ifdef VBOX_WITH_SDS_PLAN_B
     87/** This is set if we're connected to SDS and should discount a server lock
     88 * that it is holding when deciding whether we're idle or not. */
     89bool        g_fRegisteredWithVBoxSDS = false;
     90#endif
    5791
    5892/* Normal timeout usually used in Shutdown Monitor */
     
    6094volatile uint32_t dwTimeOut = dwNormalTimeout; /* time for EXE to be idle before shutting down. Can be decreased at system shutdown phase. */
    6195
     96
     97
    6298/* Passed to CreateThread to monitor the shutdown event */
    6399static DWORD WINAPI MonitorProc(void* pv)
     
    70106LONG CExeModule::Unlock()
    71107{
    72     LONG l = ATL::CComModule::Unlock();
    73     if (l == 0)
     108    LONG cLocks = ATL::CComModule::Unlock();
     109    if (isIdleLockCount(cLocks))
    74110    {
    75111        bActivity = true;
    76112        SetEvent(hEventShutdown); /* tell monitor that we transitioned to zero */
    77113    }
    78     return l;
     114    return cLocks;
    79115}
    80116
    81117bool CExeModule::HasActiveConnection()
    82118{
    83     return bActivity || GetLockCount() > 0;
     119    return bActivity || !isIdleLockCount(GetLockCount());
     120}
     121
     122/**
     123 * Checks if @a cLocks signifies an IDLE server lock load.
     124 *
     125 * This takes VBoxSDS into account (i.e. ignores it).
     126 */
     127/*static*/ bool CExeModule::isIdleLockCount(LONG cLocks)
     128{
     129#ifdef VBOX_WITH_SDS_PLAN_B
     130    if (g_fRegisteredWithVBoxSDS)
     131        return cLocks <= 1;
     132#endif
     133    return cLocks <= 0;
    84134}
    85135
     
    90140    {
    91141        WaitForSingleObject(hEventShutdown, INFINITE);
    92         DWORD dwWait=0;
     142        DWORD dwWait;
    93143        do
    94144        {
     
    160210    IUnknown              *m_pObj;
    161211    /** Pointer to the IVBoxSVC implementation that VBoxSDS works with. */
    162     ComObjPtr<VBoxSVC>     m_ptrVBoxSVC;
     212    VBoxSVC               *m_pVBoxSVC;
    163213    /** The VBoxSDS interface. */
    164214    ComPtr<IVirtualBoxSDS> m_ptrVirtualBoxSDS;
    165215
    166216public:
    167     VirtualBoxClassFactory() : m_iState(0), m_hrcCreate(S_OK), m_pObj(NULL) { }
     217    VirtualBoxClassFactory() : m_iState(0), m_hrcCreate(S_OK), m_pObj(NULL), m_pVBoxSVC(NULL)
     218    { }
     219
    168220    virtual ~VirtualBoxClassFactory()
    169221    {
     
    173225            m_pObj = NULL;
    174226        }
     227
    175228        /** @todo Need to check if this is okay wrt COM termination. */
    176229        i_deregisterWithSds();
     
    181234
    182235    /** Worker for VBoxSVC::getVirtualBox. */
    183     HRESULT i_getVirtualBox(ComPtr<IUnknown> &aResult);
     236    HRESULT i_getVirtualBox(IUnknown **ppResult);
    184237
    185238private:
    186239    HRESULT VirtualBoxClassFactory::i_registerWithSds(IUnknown **ppOtherVirtualBox);
    187240    void    VirtualBoxClassFactory::i_deregisterWithSds(void);
     241
     242    friend VBoxSVC;
    188243};
    189244
     
    193248 * VirtualBox object when the next VBoxSVC for this user registers itself.
    194249 */
    195 class ATL_NO_VTABLE VBoxSVC : public VBoxSVCWrap
    196 {
    197 public:
    198     DECLARE_EMPTY_CTOR_DTOR(VBoxSVC)
    199 
    200     HRESULT FinalConstruct()
    201     {
    202         return BaseFinalConstruct();
    203     }
    204 
    205     void FinalRelease()
    206     {
    207         uninit();
    208         BaseFinalRelease();
    209     }
    210 
    211     // public initializer/uninitializer for internal purposes only
    212     HRESULT init(VirtualBoxClassFactory *pFactory)
    213     {
    214         AutoInitSpan autoInitSpan(this);
    215         AssertReturn(autoInitSpan.isOk(), E_FAIL);
    216 
    217         m_pFactory = pFactory;
    218 
    219         autoInitSpan.setSucceeded();
    220         return S_OK;
    221     }
    222 
    223     void uninit()
    224     {
    225         AutoUninitSpan autoUninitSpan(this);
    226         if (!autoUninitSpan.uninitDone())
    227             m_pFactory = NULL;
    228     }
    229 
     250class VBoxSVC : public IVBoxSVC
     251{
    230252private:
    231     // Wrapped IVBoxSVC method.
    232     HRESULT getVirtualBox(ComPtr<IUnknown> &aResult)
    233     {
    234         if (m_pFactory)
    235             return m_pFactory->i_getVirtualBox(aResult);
    236         return E_FAIL;
    237     }
     253    /** Number of references. */
     254    uint32_t volatile m_cRefs;
    238255
    239256public:
    240257    /** Pointer to the factory. */
    241258    VirtualBoxClassFactory *m_pFactory;
     259
     260public:
     261    VBoxSVC(VirtualBoxClassFactory *pFactory)
     262        : m_cRefs(1), m_pFactory(pFactory)
     263    { }
     264    virtual ~VBoxSVC()
     265    {
     266        if (m_pFactory)
     267        {
     268            if (m_pFactory->m_pVBoxSVC)
     269                m_pFactory->m_pVBoxSVC = NULL;
     270            m_pFactory = NULL;
     271        }
     272    }
     273    RTMEMEF_NEW_AND_DELETE_OPERATORS();
     274
     275    // IUnknown
     276    STDMETHOD(QueryInterface)(REFIID riid, void **ppvObject)
     277    {
     278        if (riid == __uuidof(IUnknown))
     279            *ppvObject = (void *)(IUnknown *)this;
     280        else if (riid == __uuidof(IVBoxSVC))
     281            *ppvObject = (void *)(IVBoxSVC *)this;
     282        else
     283        {
     284            return E_NOINTERFACE;
     285        }
     286        AddRef();
     287        return S_OK;
     288
     289    }
     290
     291    STDMETHOD_(ULONG,AddRef)(void)
     292    {
     293        uint32_t cRefs = ASMAtomicIncU32(&m_cRefs);
     294        return cRefs;
     295    }
     296
     297    STDMETHOD_(ULONG,Release)(void)
     298    {
     299        uint32_t cRefs = ASMAtomicDecU32(&m_cRefs);
     300        if (cRefs == 0)
     301            delete this;
     302        return cRefs;
     303    }
     304
     305    // IVBoxSVC
     306    STDMETHOD(GetVirtualBox)(IUnknown **ppResult)
     307    {
     308        if (m_pFactory)
     309            return m_pFactory->i_getVirtualBox(ppResult);
     310        return E_FAIL;
     311    }
    242312};
    243 
    244 DEFINE_EMPTY_CTOR_DTOR(VBoxSVC);
    245313
    246314
     
    250318     * Connect to VBoxSDS.
    251319     */
    252     ComPtr<IVirtualBoxSDS> m_ptrVirtualBoxSDS;
    253320    HRESULT hrc = CoCreateInstance(CLSID_VirtualBoxSDS, NULL, CLSCTX_LOCAL_SERVER, IID_IVirtualBoxSDS,
    254321                                   (void **)m_ptrVirtualBoxSDS.asOutParam());
     
    258325         * Create VBoxSVC object and hand that to VBoxSDS.
    259326         */
    260         hrc = m_ptrVBoxSVC.createObject();
     327        m_pVBoxSVC = new VBoxSVC(this);
     328        hrc = m_ptrVirtualBoxSDS->RegisterVBoxSVC(m_pVBoxSVC, GetCurrentProcessId(), ppOtherVirtualBox);
    261329        if (SUCCEEDED(hrc))
    262330        {
    263             hrc = m_ptrVBoxSVC->init(this);
    264             if (SUCCEEDED(hrc))
    265             {
    266                 hrc = m_ptrVirtualBoxSDS->RegisterVBoxSVC(m_ptrVBoxSVC, GetCurrentProcessId(), ppOtherVirtualBox);
    267                 if (SUCCEEDED(hrc))
    268                 {
    269                     return hrc;
    270                 }
    271             }
    272         }
     331            g_fRegisteredWithVBoxSDS = true;
     332            return hrc;
     333        }
     334        m_pVBoxSVC->Release();
    273335    }
    274336    m_ptrVirtualBoxSDS.setNull();
    275     m_ptrVBoxSVC.setNull();
     337    m_pVBoxSVC = NULL;
    276338    *ppOtherVirtualBox = NULL;
    277339    return hrc;
     
    282344{
    283345    Log(("VirtualBoxClassFactory::i_deregisterWithSds\n"));
    284 }
    285 
    286 
    287 HRESULT VirtualBoxClassFactory::i_getVirtualBox(ComPtr<IUnknown> &aResult)
     346
     347    if (m_ptrVirtualBoxSDS.isNotNull())
     348    {
     349        if (m_pVBoxSVC)
     350        {
     351            HRESULT hrc = m_ptrVirtualBoxSDS->DeregisterVBoxSVC(m_pVBoxSVC, GetCurrentProcessId());
     352            NOREF(hrc);
     353        }
     354        m_ptrVirtualBoxSDS.setNull();
     355        g_fRegisteredWithVBoxSDS = false;
     356    }
     357    if (m_pVBoxSVC)
     358    {
     359        m_pVBoxSVC->m_pFactory = NULL;
     360        m_pVBoxSVC->Release();
     361        m_pVBoxSVC = NULL;
     362    }
     363}
     364
     365
     366HRESULT VirtualBoxClassFactory::i_getVirtualBox(IUnknown **ppResult)
    288367{
    289368    IUnknown *pObj = m_pObj;
     
    292371        /** @todo Do we need to do something regarding server locking?  Hopefully COM
    293372         *        deals with that........... */
    294         aResult = pObj;
     373        pObj->AddRef();
     374        *ppResult = pObj;
    295375        Log(("VirtualBoxClassFactory::GetVirtualBox: S_OK - %p\n", pObj));
    296376        return S_OK;
    297377    }
    298     aResult.setNull();
     378    *ppResult = NULL;
    299379    Log(("VirtualBoxClassFactory::GetVirtualBox: E_FAIL\n"));
    300380    return E_FAIL;
     
    400480
    401481
    402 BEGIN_OBJECT_MAP(ObjectMap)
    403     OBJECT_ENTRY(CLSID_VirtualBox, VirtualBox)
    404 END_OBJECT_MAP()
    405 
    406 CExeModule* g_pModule = NULL;
    407 HWND g_hMainWindow = NULL;
    408 HINSTANCE g_hInstance = NULL;
    409 #define MAIN_WND_CLASS L"VirtualBox Interface"
    410 
    411 
    412482/*
    413483* Wrapper for Win API function ShutdownBlockReasonCreate
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