#pragma once #include "Sxsp.h" // // Turn this off to fail all manifests without catalogs during the parse! // #define SXS_LAX_MANIFEST_VALIDATION // // Warning - leaving this defined will --DISABLE-- WFP-SXS. // Define it as FALSE if you want to turn it back on. // #define YOU_ARE_HAVING_ANY_WIERDNESS_WITH_SFC_AND_SXS FALSE // // For this checkin (11/23ish/2000), we'll be leaving it turned OFF // // #define YOU_ARE_HAVING_ANY_WIERDNESS_WITH_SFC_AND_SXS TRUE // // This stuff is private! // #include "hashfile.h" #include "CAssemblyRecoveryInfo.h" #include "recover.h" BOOL SxspResolveAssemblyManifestPath( const CBaseStringBuffer &rAsmDirectoryName, CBaseStringBuffer &rbsManifestPath ); BOOL SxspIsSfcIgnoredStoreSubdir( PCWSTR pwszDir ); class CProtectionRequestList; class CStringListEntry; class CProtectionRequestRecord; #include "HashFile.h" #include "FusionHash.h" class CStringListEntry : public CAlignedSingleListEntry { public: CStringListEntry() { } CStringBuffer m_sbText; private: CStringListEntry(const CStringListEntry &); void operator =(const CStringListEntry &); }; #pragma warning(disable:4327) // indirection alignment of LHS (16) is greater than RHS (8) #pragma warning(disable:4328) // indirection alignment of formal parameter 2 (16) is greater than the actual argument alignment (8) class CProtectionRequestRecord { private: CStringBuffer m_sbAssemblyDirectoryName; CStringBuffer m_sbManifestPath; CStringBuffer m_sbAssemblyStore; CStringBuffer m_sbKeyValue; DWORD m_dwAction; PSXS_PROTECT_DIRECTORY m_pvProtection; ULONG m_ulInRecoveryMode; CProtectionRequestList *m_pParent; __declspec(align(16)) SLIST_HEADER m_ListHeader; BOOL m_bIsManPathResolved; BOOL m_bInitialized; CAssemblyRecoveryInfo m_RecoverInfo; public: CProtectionRequestRecord(); inline CProtectionRequestList *GetParent() const { return m_pParent; } inline CAssemblyRecoveryInfo &GetRecoveryInfo() { return m_RecoverInfo; } inline const CAssemblyRecoveryInfo &GetRecoveryInfo() const { return m_RecoverInfo; } inline const CBaseStringBuffer &GetAssemblyDirectoryName() const { return m_sbAssemblyDirectoryName; } inline const CBaseStringBuffer &GetChangeBasePath() const { return m_sbKeyValue; } inline VOID SetParent(CProtectionRequestList *pParent) { m_pParent = pParent; }; inline VOID MarkInRecoveryMode(BOOL inRecovery) { ::SxspInterlockedExchange( &m_ulInRecoveryMode, ( inRecovery ? 1 : 0 ) ); } inline VOID ClearList(); inline BOOL GetManifestContent(CSecurityMetaData *&pSecurityData); inline BOOL SetAssemblyDirectoryName(const CBaseStringBuffer &rsbNewname) { return m_sbAssemblyDirectoryName.Win32Assign(rsbNewname); } inline BOOL GetManifestPath(CBaseStringBuffer &sbManPath); inline BOOL AddSubFile(const CBaseStringBuffer &sbThing); inline BOOL PopNextFileChange(CBaseStringBuffer &Dest); inline BOOL GetAssemblyStore(CBaseStringBuffer &Dest) { return Dest.Win32Assign(m_sbAssemblyStore); } inline BOOL Initialize( const CBaseStringBuffer &sbAssemblyName, const CBaseStringBuffer &sbKeyString, CProtectionRequestList* ParentList, PVOID pvRequestRecord, DWORD dwAction ); ~CProtectionRequestRecord(); private: CProtectionRequestRecord(const CProtectionRequestRecord &); void operator =(const CProtectionRequestRecord &); }; class CRecoveryJobTableEntry { public: CRecoveryJobTableEntry() : m_Result(Recover_Unknown), m_dwLastError(ERROR_SUCCESS), m_fSuccessValue(TRUE), m_Subscriber(0), m_EventInstallingAssemblyComplete(INVALID_HANDLE_VALUE) { } SxsRecoveryResult m_Result; DWORD m_dwLastError; BOOL m_fSuccessValue; ULONG m_Subscriber; HANDLE m_EventInstallingAssemblyComplete; BOOL Initialize(); BOOL StartInstallation(); BOOL InstallationComplete( BOOL bDoneOk, SxsRecoveryResult Result, DWORD dwLastError ); BOOL WaitUntilCompleted( SxsRecoveryResult &rResult, BOOL &rbSucceededValue, DWORD &rdwErrorResult ); ~CRecoveryJobTableEntry(); private: CRecoveryJobTableEntry(const CRecoveryJobTableEntry &); void operator =(const CRecoveryJobTableEntry &); }; class CProtectionRequestList : public CCleanupBase { private: typedef CCaseInsensitiveUnicodeStringPtrTable COurInternalTable; typedef CCaseInsensitiveUnicodeStringPtrTableIter COurInternalTableIter; typedef CCaseInsensitiveUnicodeStringPtrTable CInstallsInProgressTable; CRITICAL_SECTION m_cSection; CRITICAL_SECTION m_cInstallerCriticalSection; COurInternalTable *m_pInternalList; CInstallsInProgressTable *m_pInstallsTable; // // Manifest edits are trickier, they get their own system of being handled. // __declspec(align(16)) SLIST_HEADER m_ManifestEditList; HANDLE m_hManifestEditHappened; ULONG m_ulIsAThreadServicingManifests; PVOID m_Padding; // Required for win64 win S-Lists are 16 byte aligned static DWORD ProtectionNormalThreadProc( PVOID pvParam ); static DWORD ProtectionManifestThreadProc( PVOID pvParam ); static BOOL ProtectionManifestThreadProcNoSEH( PVOID pvParam ); inline BOOL ProtectionNormalThreadProcWrapped( CProtectionRequestRecord *pProtectionRequest ); inline BOOL ProtectionManifestThreadProcWrapped(); inline BOOL ProtectionManifestSingleManifestWorker( const CStringListEntry *pEntry ); static PCWSTR m_arrIgnorableSubdirs[]; static SIZE_T m_cIgnorableSubdirs; friend BOOL SxspConstructProtectionList(); BOOL Initialize(); CProtectionRequestList(); BOOL PerformRecoveryOfAssembly( const CAssemblyRecoveryInfo &RecoverInfo, CRecoveryCopyQueue* pvPotentialQueue, SxsRecoveryResult &Result ); ~CProtectionRequestList(); public: static BOOL IsSfcIgnoredStoreSubdir( PCWSTR wsz ); void DeleteYourself() { this->~CProtectionRequestList(); } VOID ClearProtectionItems(CProtectionRequestRecord *Asm) { FUSION_DELETE_SINGLETON( Asm ); } BOOL AttemptRemoveItem( CProtectionRequestRecord *AttemptRemoval ); BOOL AddRequest( PSXS_PROTECT_DIRECTORY pProtect, PCWSTR pcwszDirName, SIZE_T cchName, DWORD dwAction ); private: CProtectionRequestList(const CProtectionRequestList &); void operator =(const CProtectionRequestList &); }; VOID SxsProtectionEnableProcessing( BOOL bActivityEnabled );