VirtualBox

Changeset 86506 in vbox


Ignore:
Timestamp:
Oct 9, 2020 3:54:19 PM (4 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
140821
Message:

Main/VBoxC: Fix Medium::parent reference leaks in Console::i_configMedium(). bugref:9841

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

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Main/include/ConsoleImpl.h

    r85309 r86506  
    735735                       bool fDiscard,
    736736                       bool fNonRotational,
    737                        IMedium *pMedium,
     737                       ComPtr<IMedium> ptrMedium,
    738738                       MachineState_T aMachineState,
    739739                       HRESULT *phrc);
  • trunk/src/VBox/Main/src-client/ConsoleImpl2.cpp

    r86284 r86506  
    45154515        mapMediumAttachments[devicePath] = pMediumAtt;
    45164516
    4517         ComPtr<IMedium> pMedium;
    4518         hrc = pMediumAtt->COMGETTER(Medium)(pMedium.asOutParam());                          H();
     4517        ComPtr<IMedium> ptrMedium;
     4518        hrc = pMediumAtt->COMGETTER(Medium)(ptrMedium.asOutParam());                        H();
    45194519
    45204520        /*
     
    45274527                || aMachineState == MachineState_Restoring))
    45284528        {
    4529             rc = i_checkMediumLocation(pMedium, &fUseHostIOCache);
     4529            rc = i_checkMediumLocation(ptrMedium, &fUseHostIOCache);
    45304530            if (RT_FAILURE(rc))
    45314531                return rc;
     
    45334533
    45344534        BOOL fPassthrough = FALSE;
    4535         if (pMedium)
     4535        if (ptrMedium.isNotNull())
    45364536        {
    45374537            BOOL fHostDrive;
    4538             hrc = pMedium->COMGETTER(HostDrive)(&fHostDrive);                               H();
     4538            hrc = ptrMedium->COMGETTER(HostDrive)(&fHostDrive);                             H();
    45394539            if (  (   lType == DeviceType_DVD
    45404540                   || lType == DeviceType_Floppy)
     
    45454545                 */
    45464546                Bstr strFile;
    4547                 hrc = pMedium->COMGETTER(Location)(strFile.asOutParam());                   H();
     4547                hrc = ptrMedium->COMGETTER(Location)(strFile.asOutParam());                 H();
    45484548                Utf8Str utfFile = Utf8Str(strFile);
    45494549                RTFSTYPE enmFsTypeFile = RTFSTYPE_UNKNOWN;
     
    45934593                            !!fDiscard,
    45944594                            !!fNonRotational,
    4595                             pMedium,
     4595                            ptrMedium,
    45964596                            aMachineState,
    45974597                            phrc);
     
    46794679                            bool fDiscard,
    46804680                            bool fNonRotational,
    4681                             IMedium *pMedium,
     4681                            ComPtr<IMedium> ptrMedium,
    46824682                            MachineState_T aMachineState,
    46834683                            HRESULT *phrc)
     
    46954695
    46964696        BOOL fHostDrive = FALSE;
    4697         MediumType_T mediumType  = MediumType_Normal;
    4698         if (pMedium)
    4699         {
    4700             hrc = pMedium->COMGETTER(HostDrive)(&fHostDrive);                               H();
    4701             hrc = pMedium->COMGETTER(Type)(&mediumType);                                    H();
     4697        MediumType_T mediumType = MediumType_Normal;
     4698        if (ptrMedium.isNotNull())
     4699        {
     4700            hrc = ptrMedium->COMGETTER(HostDrive)(&fHostDrive);                             H();
     4701            hrc = ptrMedium->COMGETTER(Type)(&mediumType);                                  H();
    47024702        }
    47034703
    47044704        if (fHostDrive)
    47054705        {
    4706             Assert(pMedium);
     4706            Assert(ptrMedium.isNotNull());
    47074707            if (enmType == DeviceType_DVD)
    47084708            {
     
    47104710                InsertConfigNode(pLunL0, "Config", &pCfg);
    47114711
    4712                 hrc = pMedium->COMGETTER(Location)(bstr.asOutParam());                      H();
     4712                hrc = ptrMedium->COMGETTER(Location)(bstr.asOutParam());                    H();
    47134713                InsertConfigString(pCfg, "Path", bstr);
    47144714
     
    47204720                InsertConfigNode(pLunL0, "Config", &pCfg);
    47214721
    4722                 hrc = pMedium->COMGETTER(Location)(bstr.asOutParam());                      H();
     4722                hrc = ptrMedium->COMGETTER(Location)(bstr.asOutParam());                    H();
    47234723                InsertConfigString(pCfg, "Path", bstr);
    47244724            }
     
    47554755            }
    47564756
    4757             if (    pMedium
     4757            if (    ptrMedium.isNotNull()
    47584758                && (   enmType == DeviceType_DVD
    47594759                    || enmType == DeviceType_Floppy)
     
    47674767                // would be to discard the VM state...
    47684768                MediumState_T mediumState;
    4769                 hrc = pMedium->RefreshState(&mediumState);                                  H();
     4769                hrc = ptrMedium->RefreshState(&mediumState);                                H();
    47704770                if (mediumState == MediumState_Inaccessible)
    47714771                {
    47724772                    Bstr loc;
    4773                     hrc = pMedium->COMGETTER(Location)(loc.asOutParam());                   H();
     4773                    hrc = ptrMedium->COMGETTER(Location)(loc.asOutParam());                 H();
    47744774                    i_atVMRuntimeErrorCallbackF(0, "DvdOrFloppyImageInaccessible",
    47754775                                                "The image file '%ls' is inaccessible and is being ignored. "
     
    47774777                                                loc.raw(),
    47784778                                                enmType == DeviceType_DVD ? "DVD" : "floppy");
    4779                     pMedium = NULL;
    4780                 }
    4781             }
    4782 
    4783             if (pMedium)
     4779                    ptrMedium.setNull();
     4780                }
     4781            }
     4782
     4783            if (ptrMedium.isNotNull())
    47844784            {
    47854785                /* Start with length of parent chain, as the list is reversed */
    47864786                unsigned uImage = 0;
    4787                 IMedium *pTmp = pMedium;
    4788                 while (pTmp)
     4787                ComPtr<IMedium> ptrTmp = ptrMedium;
     4788                while (ptrTmp.isNotNull())
    47894789                {
    47904790                    uImage++;
    4791                     hrc = pTmp->COMGETTER(Parent)(&pTmp);                                   H();
     4791                    ComPtr<IMedium> ptrParent;
     4792                    hrc = ptrTmp->COMGETTER(Parent)(ptrParent.asOutParam());               H();
     4793                    ptrTmp = ptrParent;
    47924794                }
    47934795                /* Index of last image */
     
    48134815# endif
    48144816
    4815                 hrc = pMedium->COMGETTER(Location)(bstr.asOutParam());                      H();
     4817                hrc = ptrMedium->COMGETTER(Location)(bstr.asOutParam());                    H();
    48164818                InsertConfigString(pCfg, "Path", bstr);
    48174819
    4818                 hrc = pMedium->COMGETTER(Format)(bstr.asOutParam());                        H();
     4820                hrc = ptrMedium->COMGETTER(Format)(bstr.asOutParam());                      H();
    48194821                InsertConfigString(pCfg, "Format", bstr);
    48204822
     
    48774879                bool fHostIP = true;
    48784880                bool fEncrypted = false;
    4879                 hrc = i_configMediumProperties(pCfg, pMedium, &fHostIP, &fEncrypted); H();
     4881                hrc = i_configMediumProperties(pCfg, ptrMedium, &fHostIP, &fEncrypted); H();
    48804882
    48814883                /* Create an inverted list of parents. */
    48824884                uImage--;
    4883                 IMedium *pParentMedium = pMedium;
     4885                ComPtr<IMedium> ptrParentMedium = ptrMedium;
    48844886                for (PCFGMNODE pParent = pCfg;; uImage--)
    48854887                {
    4886                     hrc = pParentMedium->COMGETTER(Parent)(&pMedium);                       H();
    4887                     if (!pMedium)
     4888                    ComPtr<IMedium> ptrCurMedium;
     4889                    hrc = ptrParentMedium->COMGETTER(Parent)(ptrCurMedium.asOutParam());    H();
     4890                    if (ptrCurMedium.isNull())
    48884891                        break;
    48894892
    48904893                    PCFGMNODE pCur;
    48914894                    InsertConfigNode(pParent, "Parent", &pCur);
    4892                     hrc = pMedium->COMGETTER(Location)(bstr.asOutParam());                  H();
     4895                    hrc = ptrCurMedium->COMGETTER(Location)(bstr.asOutParam()); H();
    48934896                    InsertConfigString(pCur, "Path", bstr);
    48944897
    4895                     hrc = pMedium->COMGETTER(Format)(bstr.asOutParam());                    H();
     4898                    hrc = ptrCurMedium->COMGETTER(Format)(bstr.asOutParam());  H();
    48964899                    InsertConfigString(pCur, "Format", bstr);
    48974900
     
    49054908
    49064909                    /* Configure medium properties. */
    4907                     hrc = i_configMediumProperties(pCur, pMedium, &fHostIP, &fEncrypted); H();
     4910                    hrc = i_configMediumProperties(pCur, ptrCurMedium, &fHostIP, &fEncrypted); H();
    49084911
    49094912                    /* next */
    49104913                    pParent = pCur;
    4911                     pParentMedium = pMedium;
     4914                    ptrParentMedium = ptrCurMedium;
    49124915                }
    49134916
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