VirtualBox

Changeset 46613 in vbox for trunk/src/VBox/Storage/VMDK.cpp


Ignore:
Timestamp:
Jun 18, 2013 10:27:13 AM (12 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
86497
Message:

Storage: Propagate errors when closing a file but free everything nevertheless (see @bugref{6791})

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Storage/VMDK.cpp

    r44528 r46613  
    524524
    525525static void vmdkFreeStreamBuffers(PVMDKEXTENT pExtent);
    526 static void vmdkFreeExtentData(PVMDKIMAGE pImage, PVMDKEXTENT pExtent,
    527                                bool fDelete);
     526static int vmdkFreeExtentData(PVMDKIMAGE pImage, PVMDKEXTENT pExtent,
     527                              bool fDelete);
    528528
    529529static int vmdkCreateExtents(PVMDKIMAGE pImage, unsigned cExtents);
     
    28622862 * Internal: free the memory used by the extent data structure, optionally
    28632863 * deleting the referenced files.
     2864 *
     2865 * @returns VBox status code.
     2866 * @param   pImage    Pointer to the image instance data.
     2867 * @param   pExtent   The extent to free.
     2868 * @param   fDelete   Flag whether to delete the backing storage.
    28642869 */
    2865 static void vmdkFreeExtentData(PVMDKIMAGE pImage, PVMDKEXTENT pExtent,
    2866                                bool fDelete)
    2867 {
     2870static int vmdkFreeExtentData(PVMDKIMAGE pImage, PVMDKEXTENT pExtent,
     2871                              bool fDelete)
     2872{
     2873    int rc = VINF_SUCCESS;
     2874
    28682875    vmdkFreeGrainDirectory(pExtent);
    28692876    if (pExtent->pDescData)
     
    28752882    {
    28762883        /* Do not delete raw extents, these have full and base names equal. */
    2877         vmdkFileClose(pImage, &pExtent->pFile,
    2878                          fDelete
    2879                       && pExtent->pszFullname
    2880                       && strcmp(pExtent->pszFullname, pExtent->pszBasename));
     2884        rc =vmdkFileClose(pImage, &pExtent->pFile,
     2885                             fDelete
     2886                          && pExtent->pszFullname
     2887                          && strcmp(pExtent->pszFullname, pExtent->pszBasename));
    28812888    }
    28822889    if (pExtent->pszBasename)
     
    28912898    }
    28922899    vmdkFreeStreamBuffers(pExtent);
     2900
     2901    return rc;
    28932902}
    28942903
     
    43214330        {
    43224331            for (unsigned i = 0 ; i < pImage->cExtents; i++)
    4323                 vmdkFreeExtentData(pImage, &pImage->pExtents[i], fDelete);
     4332            {
     4333                int rc2 = vmdkFreeExtentData(pImage, &pImage->pExtents[i], fDelete);
     4334                if (RT_SUCCESS(rc))
     4335                    rc = rc2; /* Propogate any error when closing the file. */
     4336            }
    43244337            RTMemFree(pImage->pExtents);
    43254338            pImage->pExtents = NULL;
     
    43274340        pImage->cExtents = 0;
    43284341        if (pImage->pFile != NULL)
    4329             vmdkFileClose(pImage, &pImage->pFile, fDelete);
    4330         vmdkFileCheckAllClose(pImage);
     4342        {
     4343            int rc2 = vmdkFileClose(pImage, &pImage->pFile, fDelete);
     4344            if (RT_SUCCESS(rc))
     4345                rc = rc2; /* Propogate any error when closing the file. */
     4346        }
     4347        int rc2 = vmdkFileCheckAllClose(pImage);
     4348        if (RT_SUCCESS(rc))
     4349            rc = rc2; /* Propogate any error when closing the file. */
    43314350
    43324351        if (pImage->pGTCache)
     
    55175536            goto rollback;
    55185537        /* Close the extent file. */
    5519         vmdkFileClose(pImage, &pExtent->pFile, false);
     5538        rc = vmdkFileClose(pImage, &pExtent->pFile, false);
     5539        if (RT_FAILURE(rc))
     5540            goto rollback;
     5541
    55205542        /* Rename the extent file. */
    55215543        rc = vdIfIoIntFileMove(pImage->pIfIo, pExtent->pszFullname, apszNewName[i], 0);
     
    55265548    }
    55275549    /* Release all old stuff. */
    5528     vmdkFreeImage(pImage, false);
     5550    rc = vmdkFreeImage(pImage, false);
     5551    if (RT_FAILURE(rc))
     5552        goto rollback;
    55295553
    55305554    fImageFreed = true;
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