// ************************************************************************** // * This file is part of the FreeFileSync project. It is distributed under * // * GNU General Public License: http://www.gnu.org/licenses/gpl.html * // * Copyright (C) ZenJu (zhnmju123 AT gmx DOT de) - All Rights Reserved * // ************************************************************************** #include "shadow.h" #include #include //includes "windows.h" #include #include #include "ShadowCopy/shadow.h" #include using namespace zen; using namespace shadow; namespace { bool runningWOW64() //test if process is running under WOW64 (reference http://msdn.microsoft.com/en-us/library/ms684139(VS.85).aspx) { //dynamically load windows API function typedef BOOL (WINAPI* IsWow64ProcessFun)(HANDLE hProcess, PBOOL Wow64Process); const SysDllFun isWow64Process(L"kernel32.dll", "IsWow64Process"); if (isWow64Process) { BOOL isWow64 = FALSE; if (isWow64Process(::GetCurrentProcess(), &isWow64)) return isWow64 == TRUE; } return false; } } //############################################################################################################# class ShadowCopy::ShadowVolume { public: ShadowVolume(const Zstring& volumeNameFormatted) : //throw(FileError) createShadowCopy (getDllName(), createShadowCopyFctName), releaseShadowCopy(getDllName(), releaseShadowCopyFctName), getShadowVolume (getDllName(), getShadowVolumeFctName), backupHandle(nullptr) { //check if shadow copy dll was loaded correctly if (!createShadowCopy || !releaseShadowCopy || !getShadowVolume) throw FileError(_("Error accessing Volume Shadow Copy Service!") + L"\n" + _("Could not load a required DLL:") + L" \"" + getDllName() + L"\""); //VSS does not support running under WOW64 except for Windows XP and Windows Server 2003 //(Reference: http://msdn.microsoft.com/en-us/library/aa384627(VS.85).aspx) if (runningWOW64()) throw FileError(_("Error accessing Volume Shadow Copy Service!") + L"\n" + _("Making shadow copies on WOW64 is not supported. Please use FreeFileSync 64-bit version.")); //--------------------------------------------------------------------------------------------------------- //start shadow volume copy service: wchar_t errorMessage[1000]; backupHandle = createShadowCopy(volumeNameFormatted.c_str(), errorMessage, 1000); if (!backupHandle) throw FileError(_("Error accessing Volume Shadow Copy Service!") + L"\n" + L"(" + errorMessage + L" Volume: \"" + volumeNameFormatted + L"\")"); wchar_t shadowVolName[1000]; getShadowVolume(backupHandle, shadowVolName, 1000); shadowVol = Zstring(shadowVolName) + FILE_NAME_SEPARATOR; //shadowVolName NEVER has a trailing backslash } ~ShadowVolume() { releaseShadowCopy(backupHandle); //fast! no performance optimization necessary } Zstring getShadowVolumeName() const //trailing path separator { return shadowVol; } private: ShadowVolume(const ShadowVolume&); ShadowVolume& operator=(const ShadowVolume&); const DllFun createShadowCopy; const DllFun releaseShadowCopy; const DllFun getShadowVolume; Zstring shadowVol; ShadowHandle backupHandle; }; //############################################################################################################# Zstring ShadowCopy::makeShadowCopy(const Zstring& inputFile) { wchar_t volumeNameRaw[1000]; if (!::GetVolumePathName(inputFile.c_str(), //__in LPCTSTR lpszFileName, volumeNameRaw, //__out LPTSTR lpszVolumePathName, 1000)) //__in DWORD cchBufferLength throw FileError(_("Could not determine volume name for file:") + L"\n\"" + inputFile + L"\""); Zstring volumeNameFormatted = volumeNameRaw; if (!endsWith(volumeNameFormatted, FILE_NAME_SEPARATOR)) volumeNameFormatted += FILE_NAME_SEPARATOR; //input file is always absolute! directory formatting takes care of this! Therefore volume name can always be found. const size_t pos = inputFile.find(volumeNameFormatted); //inputFile needs NOT to begin with volumeNameFormatted: consider for example \\?\ prefix! if (pos == Zstring::npos) { std::wstring msg = _("Volume name %x not part of filename %y!"); replace(msg, L"%x", std::wstring(L"\"") + volumeNameFormatted + L"\"", false); replace(msg, L"%y", std::wstring(L"\"") + inputFile + L"\"", false); throw FileError(msg); } //get or create instance of shadow volume VolNameShadowMap::const_iterator iter = shadowVol.find(volumeNameFormatted); if (iter == shadowVol.end()) { std::shared_ptr newEntry(new ShadowVolume(volumeNameFormatted)); iter = shadowVol.insert(std::make_pair(volumeNameFormatted, newEntry)).first; } //return filename alias on shadow copy volume return iter->second->getShadowVolumeName() + Zstring(inputFile.c_str() + pos + volumeNameFormatted.length()); }