urbackup_backend/urbackupcommon/os_functions_win.cpp
2015-01-27 21:48:32 +01:00

848 lines
19 KiB
C++

/*************************************************************************
* UrBackup - Client/Server backup system
* Copyright (C) 2011-2014 Martin Raiber
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
**************************************************************************/
#include "os_functions.h"
#include "../stringtools.h"
#ifndef OS_FUNC_NO_SERVER
#include "../Interface/Server.h"
#endif
#ifdef _WIN_PRE_VISTA
#define _WIN32_WINNT 0x0500
#endif
#include <winsock2.h>
#include <windows.h>
#include <stdlib.h>
#include <algorithm>
#include <io.h>
#include <fcntl.h>
#include <sys\stat.h>
#include <time.h>
#include <assert.h>
#ifdef USE_NTFS_TXF
#include <KtmW32.h>
#endif
#define REPARSE_MOUNTPOINT_HEADER_SIZE 8
typedef struct {
DWORD ReparseTag;
DWORD ReparseDataLength;
WORD Reserved;
WORD ReparseTargetLength;
WORD ReparseTargetMaximumLength;
WORD Reserved1;
WCHAR ReparseTarget[1];
} REPARSE_MOUNTPOINT_DATA_BUFFER, *PREPARSE_MOUNTPOINT_DATA_BUFFER;
typedef struct _REPARSE_DATA_BUFFER {
ULONG ReparseTag;
USHORT ReparseDataLength;
USHORT Reserved;
union {
struct {
USHORT SubstituteNameOffset;
USHORT SubstituteNameLength;
USHORT PrintNameOffset;
USHORT PrintNameLength;
ULONG Flags;
WCHAR PathBuffer[1];
} SymbolicLinkReparseBuffer;
struct {
USHORT SubstituteNameOffset;
USHORT SubstituteNameLength;
USHORT PrintNameOffset;
USHORT PrintNameLength;
WCHAR PathBuffer[1];
} MountPointReparseBuffer;
struct {
UCHAR DataBuffer[1];
} GenericReparseBuffer;
};
} REPARSE_DATA_BUFFER, *PREPARSE_DATA_BUFFER;
void getMousePos(int &x, int &y)
{
POINT mousepos;
GetCursorPos(&mousepos);
x=mousepos.x;
y=mousepos.y;
}
std::vector<SFile> getFiles(const std::wstring &path, bool *has_error, bool follow_symlinks, bool exact_filesize)
{
if(has_error!=NULL)
{
*has_error=false;
}
std::vector<SFile> tmp;
HANDLE fHandle;
WIN32_FIND_DATAW wfd;
std::wstring tpath=path;
if(!tpath.empty() && tpath[tpath.size()-1]=='\\' ) tpath.erase(path.size()-1, 1);
fHandle=FindFirstFileW((tpath+L"\\*").c_str(),&wfd);
if(fHandle==INVALID_HANDLE_VALUE)
{
if(tpath.find(L"\\\\?\\UNC")==0)
{
tpath.erase(0, 7);
tpath=L"\\"+tpath;
fHandle=FindFirstFileW((tpath+L"\\*").c_str(),&wfd);
}
else if(tpath.find(L"\\\\?\\")==0)
{
tpath.erase(0, 4);
fHandle=FindFirstFileW((tpath+L"\\*").c_str(),&wfd);
}
if(fHandle==INVALID_HANDLE_VALUE)
{
if(has_error!=NULL)
{
*has_error=true;
}
return tmp;
}
}
do
{
if( !(wfd.dwFileAttributes &FILE_ATTRIBUTE_REPARSE_POINT && wfd.dwFileAttributes &FILE_ATTRIBUTE_DIRECTORY) || follow_symlinks )
{
SFile f;
f.name=wfd.cFileName;
if(f.name==L"." || f.name==L".." )
continue;
f.isdir=(wfd.dwFileAttributes & FILE_ATTRIBUTE_DIRECTORY)>0;
LARGE_INTEGER lwt;
lwt.HighPart=wfd.ftLastWriteTime.dwHighDateTime;
lwt.LowPart=wfd.ftLastWriteTime.dwLowDateTime;
f.last_modified=lwt.QuadPart;
LARGE_INTEGER size;
size.HighPart=wfd.nFileSizeHigh;
size.LowPart=wfd.nFileSizeLow;
f.size=size.QuadPart;
if(exact_filesize && !(wfd.dwFileAttributes & FILE_ATTRIBUTE_DIRECTORY) )
{
if(wfd.dwFileAttributes &FILE_ATTRIBUTE_REPARSE_POINT)
{
HANDLE hFile = CreateFileW(os_file_prefix(tpath+L"\\"+f.name).c_str(), GENERIC_READ, FILE_SHARE_WRITE|FILE_SHARE_READ, NULL,
OPEN_EXISTING, FILE_FLAG_BACKUP_SEMANTICS, NULL);
if(hFile!=INVALID_HANDLE_VALUE)
{
BY_HANDLE_FILE_INFORMATION file_info;
if(GetFileInformationByHandle(hFile, &file_info))
{
size.HighPart = file_info.nFileSizeHigh;
size.LowPart = file_info.nFileSizeLow;
f.size = size.QuadPart;
lwt.HighPart = file_info.ftLastWriteTime.dwHighDateTime;
lwt.LowPart = file_info.ftLastWriteTime.dwLowDateTime;
f.last_modified = lwt.QuadPart;
}
CloseHandle(hFile);
}
}
else
{
WIN32_FILE_ATTRIBUTE_DATA fad;
if( GetFileAttributesExW(os_file_prefix(tpath+L"\\"+f.name).c_str(), GetFileExInfoStandard, &fad) )
{
size.HighPart = fad.nFileSizeHigh;
size.LowPart = fad.nFileSizeLow;
f.size = size.QuadPart;
lwt.HighPart = fad.ftLastWriteTime.dwHighDateTime;
lwt.LowPart = fad.ftLastWriteTime.dwLowDateTime;
f.last_modified = lwt.QuadPart;
}
}
}
if(f.last_modified<0) f.last_modified*=-1;
tmp.push_back(f);
}
}
while (FindNextFileW(fHandle,&wfd) );
FindClose(fHandle);
std::sort(tmp.begin(), tmp.end());
return tmp;
}
#ifndef OS_FUNC_NO_SERVER
void removeFile(const std::wstring &path)
{
_unlink(Server->ConvertToUTF8(path).c_str());
}
void moveFile(const std::wstring &src, const std::wstring &dst)
{
rename(Server->ConvertToUTF8(src).c_str(), Server->ConvertToUTF8(dst).c_str() );
}
#endif
bool isDirectory(const std::wstring &path, void* transaction)
{
DWORD attrib;
#ifdef USE_NTFS_TXF
if(transaction!=NULL)
{
WIN32_FILE_ATTRIBUTE_DATA ad;
if(!GetFileAttributesTransactedW(path.c_str(), GetFileExInfoStandard, &ad, transaction))
{
attrib=0xFFFFFFFF;
}
else
{
attrib = ad.dwFileAttributes;
}
}
else
{
#endif
attrib = GetFileAttributesW(path.c_str());
#ifdef USE_NTFS_TXF
}
#endif
if ( attrib == 0xFFFFFFFF || !(attrib & FILE_ATTRIBUTE_DIRECTORY) )
{
return false;
}
else
{
return true;
}
}
int64 os_atoi64(const std::string &str)
{
return _atoi64(str.c_str());
}
bool os_create_dir(const std::wstring &dir)
{
return CreateDirectoryW(dir.c_str(), NULL)!=0;
}
bool os_create_dir(const std::string &dir)
{
return CreateDirectoryA(dir.c_str(), NULL)!=0;
}
bool os_create_hardlink(const std::wstring &linkname, const std::wstring &fname, bool use_ioref, bool* too_many_links)
{
BOOL r=CreateHardLinkW(linkname.c_str(), fname.c_str(), NULL);
if(too_many_links!=NULL)
{
*too_many_links=false;
if(!r)
{
int err=GetLastError();
if(err==ERROR_TOO_MANY_LINKS)
{
*too_many_links=true;
}
}
}
return r!=0;
}
int64 os_free_space(const std::wstring &path)
{
std::wstring cp=path;
if(path.size()==0)
return -1;
if(cp[cp.size()-1]=='/')
cp.erase(cp.size()-1, 1);
if(cp[cp.size()-1]!='\\')
cp+='\\';
ULARGE_INTEGER li;
BOOL r=GetDiskFreeSpaceExW(path.c_str(), &li, NULL, NULL);
if(r!=0)
return li.QuadPart;
else
return -1;
}
int64 os_total_space(const std::wstring &path)
{
std::wstring cp=path;
if(path.size()==0)
return -1;
if(cp[cp.size()-1]=='/')
cp.erase(cp.size()-1, 1);
if(cp[cp.size()-1]!='\\')
cp+='\\';
ULARGE_INTEGER li;
BOOL r=GetDiskFreeSpaceExW(path.c_str(), NULL, &li, NULL);
if(r!=0)
return li.QuadPart;
else
return -1;
}
bool os_directory_exists(const std::wstring &path)
{
return isDirectory(path, NULL);
}
bool os_remove_nonempty_dir(const std::wstring &path, os_symlink_callback_t symlink_callback, void* userdata, bool delete_root)
{
WIN32_FIND_DATAW wfd;
HANDLE hf=FindFirstFileW((path+L"\\*").c_str(), &wfd);
std::wstring tpath=path;
if(hf==INVALID_HANDLE_VALUE)
{
if(next(tpath, 0, L"\\\\?\\UNC"))
{
tpath.erase(0, 7);
tpath=L"\\"+tpath;
hf=FindFirstFileW((tpath+L"\\*").c_str(),&wfd);
}
else if(next(tpath, 0, L"\\\\?\\"))
{
tpath.erase(0, 4);
hf=FindFirstFileW((tpath+L"\\*").c_str(),&wfd);
}
if(hf==INVALID_HANDLE_VALUE)
{
return false;
}
}
BOOL b=true;
while( b )
{
if( (std::wstring)wfd.cFileName!=L"." && (std::wstring)wfd.cFileName!=L".." )
{
if( wfd.dwFileAttributes & FILE_ATTRIBUTE_REPARSE_POINT)
{
if(symlink_callback!=NULL
&& (wfd.dwReserved0==IO_REPARSE_TAG_MOUNT_POINT
|| wfd.dwReserved0==IO_REPARSE_TAG_SYMLINK) )
{
symlink_callback(path+L"\\"+wfd.cFileName, userdata);
}
else if(wfd.dwFileAttributes & FILE_ATTRIBUTE_DIRECTORY)
{
os_remove_symlink_dir(path+L"\\"+wfd.cFileName);
}
else
{
DeleteFileW((path+L"\\"+wfd.cFileName).c_str());
}
}
else if(wfd.dwFileAttributes & FILE_ATTRIBUTE_DIRECTORY )
{
os_remove_nonempty_dir(tpath+L"\\"+wfd.cFileName, symlink_callback, userdata);
}
else
{
DeleteFileW((path+L"\\"+wfd.cFileName).c_str());
}
}
b=FindNextFileW(hf,&wfd);
}
FindClose(hf);
if(delete_root)
{
if(!RemoveDirectoryW(path.c_str()))
{
#ifndef OS_FUNC_NO_SERVER
Server->Log(L"Error deleting directory \""+path+L"\"", LL_ERROR);
#endif
}
}
return true;
}
bool os_remove_symlink_dir(const std::wstring &path)
{
return RemoveDirectoryW(path.c_str())!=FALSE;
}
bool os_remove_dir(const std::string &path)
{
return RemoveDirectoryA(path.c_str())!=FALSE;
}
bool os_remove_dir(const std::wstring &path)
{
return RemoveDirectoryW(path.c_str())!=FALSE;
}
std::wstring os_file_sep(void)
{
return L"\\";
}
std::string os_file_sepn(void)
{
return "\\";
}
bool os_link_symbolic_symlink(const std::wstring &target, const std::wstring &lname, void* transaction)
{
#if (_WIN32_WINNT >= 0x0600)
DWORD flags=0;
if(isDirectory(target, transaction))
flags|=SYMBOLIC_LINK_FLAG_DIRECTORY;
DWORD rc;
if(transaction==NULL)
{
rc=CreateSymbolicLink(lname.c_str(), target.c_str(), flags);
}
else
{
rc=CreateSymbolicLinkTransactedW(lname.c_str(), target.c_str(), flags, transaction);
}
if(rc==FALSE)
{
#ifndef OS_FUNC_NO_SERVER
Server->Log(L"Creating symbolic link from \""+lname+L"\" to \""+target+L"\" failed with error "+convert((int)GetLastError()), LL_ERROR);
#endif
}
return rc!=0;
#else
return false;
#endif
}
bool os_link_symbolic_junctions(const std::wstring &target, const std::wstring &lname)
{
bool ret=false;
std::wstring wtarget=target;
HANDLE hJunc=INVALID_HANDLE_VALUE;
char *buf=NULL;
if(wtarget.find(L"\\\\?\\UNC")==0)
{
wtarget.erase(0, 7);
wtarget=L"\\"+wtarget;
}
else if(wtarget.find(os_file_prefix(L""))==0)
{
wtarget.erase(0, os_file_prefix(L"").size());
}
if(!wtarget.empty() && wtarget[0]!='\\')
wtarget=L"\\??\\"+wtarget;
if(!wtarget.empty() && wtarget[wtarget.size()-1]=='\\')
wtarget.erase(wtarget.size()-1, 1);
if(!CreateDirectoryW(lname.c_str(), NULL) )
{
goto cleanup;
}
hJunc=CreateFileW(lname.c_str(), GENERIC_WRITE, 0, NULL, OPEN_EXISTING, FILE_FLAG_OPEN_REPARSE_POINT|FILE_FLAG_BACKUP_SEMANTICS, NULL);
if(hJunc==INVALID_HANDLE_VALUE)
goto cleanup;
size_t bsize=sizeof(REPARSE_MOUNTPOINT_DATA_BUFFER) + (wtarget.size()+1) * sizeof(wchar_t)+30;
buf=new char[bsize];
memset(buf, 0, bsize);
REPARSE_MOUNTPOINT_DATA_BUFFER *rb=(REPARSE_MOUNTPOINT_DATA_BUFFER*)buf;
rb->ReparseTag=IO_REPARSE_TAG_MOUNT_POINT;
rb->ReparseTargetMaximumLength=(WORD)((wtarget.size()+1)*sizeof(wchar_t));
rb->ReparseTargetLength=rb->ReparseTargetMaximumLength-1*sizeof(wchar_t);
rb->ReparseDataLength=rb->ReparseTargetLength+12;
memcpy(rb->ReparseTarget, wtarget.c_str(), rb->ReparseTargetMaximumLength);
DWORD bytes_ret;
if(!DeviceIoControl(hJunc, FSCTL_SET_REPARSE_POINT, rb, rb->ReparseDataLength+REPARSE_MOUNTPOINT_HEADER_SIZE, NULL, 0, &bytes_ret, NULL) )
{
goto cleanup;
}
ret=true;
cleanup:
if(!ret)
{
#ifndef OS_FUNC_NO_SERVER
Server->Log("Creating junction failed. Last error="+nconvert((int)GetLastError()), LL_ERROR);
#endif
}
delete []buf;
if(hJunc!=INVALID_HANDLE_VALUE)
CloseHandle(hJunc);
if(!ret)
{
RemoveDirectoryW(lname.c_str());
}
return ret;
}
#ifndef OS_FUNC_NO_NET
bool os_lookuphostname(std::string pServer, unsigned int *dest)
{
const char* host=pServer.c_str();
unsigned int addr = inet_addr(host);
if (addr != INADDR_NONE)
{
*dest = addr;
}
else
{
hostent* hp = gethostbyname(host);
if (hp != 0)
{
in_addr tmp;
memcpy(&tmp, hp->h_addr, hp->h_length );
*dest=tmp.s_addr;
}
else
{
return false;
}
}
return true;
}
#endif
bool os_link_symbolic(const std::wstring &target, const std::wstring &lname, void* transaction)
{
if(transaction==NULL)
{
if(!os_link_symbolic_junctions(target, lname) )
return os_link_symbolic_symlink(target, lname, NULL);
}
else
{
return os_link_symbolic_symlink(target, lname, transaction);
}
return true;
}
bool os_get_symlink_target(const std::wstring &lname, std::wstring &target)
{
HANDLE hJunc=CreateFileW(lname.c_str(), GENERIC_READ, FILE_SHARE_READ,
NULL, OPEN_EXISTING, FILE_FLAG_OPEN_REPARSE_POINT|FILE_ATTRIBUTE_REPARSE_POINT|FILE_FLAG_BACKUP_SEMANTICS, NULL);
if(hJunc==INVALID_HANDLE_VALUE)
return false;
DWORD needed_buffer_size = 0;
DWORD bytes_returned;
std::string buffer;
buffer.resize((std::max)((size_t)REPARSE_GUID_DATA_BUFFER_HEADER_SIZE, (size_t)512));
BOOL b = DeviceIoControl(hJunc, FSCTL_GET_REPARSE_POINT, NULL, 0, &buffer[0], static_cast<DWORD>(buffer.size()), &bytes_returned, NULL);
if(!b)
{
if(GetLastError()!= ERROR_INSUFFICIENT_BUFFER)
{
CloseHandle(hJunc);
return false;
}
}
const REPARSE_DATA_BUFFER* reparse_buffer = reinterpret_cast<const REPARSE_DATA_BUFFER*>(buffer.data());
if(!IsReparseTagMicrosoft(reparse_buffer->ReparseTag))
{
CloseHandle(hJunc);
return false;
}
if(!b)
{
buffer.resize(reparse_buffer->ReparseDataLength);
b = DeviceIoControl(hJunc, FSCTL_GET_REPARSE_POINT, NULL, 0, &buffer[0], static_cast<DWORD>(buffer.size()), &bytes_returned, NULL);
if(!b)
{
CloseHandle(hJunc);
return false;
}
}
CloseHandle(hJunc);
bool ret=true;
if(reparse_buffer->ReparseTag==IO_REPARSE_TAG_SYMLINK)
{
target.resize(reparse_buffer->SymbolicLinkReparseBuffer.SubstituteNameLength/sizeof(wchar_t));
memcpy(&target[0],
&reparse_buffer->SymbolicLinkReparseBuffer.PathBuffer[reparse_buffer->SymbolicLinkReparseBuffer.SubstituteNameOffset/sizeof(wchar_t)],
reparse_buffer->SymbolicLinkReparseBuffer.SubstituteNameLength);
}
else if(reparse_buffer->ReparseTag==IO_REPARSE_TAG_MOUNT_POINT)
{
target.resize(reparse_buffer->MountPointReparseBuffer.SubstituteNameLength/sizeof(wchar_t));
memcpy(&target[0],
&reparse_buffer->MountPointReparseBuffer.PathBuffer[reparse_buffer->MountPointReparseBuffer.SubstituteNameOffset/sizeof(wchar_t)],
reparse_buffer->MountPointReparseBuffer.SubstituteNameLength);
}
else
{
ret=false;
}
if(next(target, 0, L"\\??\\"))
target.erase(0,4);
return ret;
}
bool os_is_symlink(const std::wstring &lname)
{
DWORD attrs = GetFileAttributesW(lname.c_str());
if(attrs == INVALID_FILE_ATTRIBUTES)
return false;
return (attrs & FILE_ATTRIBUTE_REPARSE_POINT)>0;
}
std::wstring os_file_prefix(std::wstring path)
{
if(path.size()>=2 && path[0]=='\\' && path[1]=='\\' )
{
if(path.size()>=3 && path[2]=='?')
{
return path;
}
else
{
return L"\\\\?\\UNC"+path.substr(1);
}
}
else
return L"\\\\?\\"+path;
}
bool os_file_truncate(const std::wstring &fn, int64 fsize)
{
int fh;
if( _wsopen_s ( &fh, fn.c_str(), _O_RDWR | _O_CREAT, _SH_DENYNO,
_S_IREAD | _S_IWRITE ) == 0 )
{
if( _chsize_s( fh, fsize ) != 0 )
{
_close( fh );
return false;
}
_close( fh );
return true;
}
else
{
return false;
}
}
std::string os_strftime(std::string fs)
{
time_t rawtime;
char buffer [100];
time ( &rawtime );
struct tm timeinfo;
localtime_s(&timeinfo, &rawtime);
strftime (buffer,100,fs.c_str(),&timeinfo);
std::string r(buffer);
return r;
}
bool os_create_dir_recursive(std::wstring fn)
{
if(fn.empty())
return false;
bool b=os_create_dir(fn);
if(!b)
{
b=os_create_dir_recursive(ExtractFilePath(fn));
if(!b)
return false;
return os_create_dir(fn);
}
else
{
return true;
}
}
std::wstring os_get_final_path(std::wstring path)
{
#if (_WIN32_WINNT >= 0x0600)
std::wstring ret;
if(path.size()<3 && path.find(L":")==std::string::npos)
{
path+=L":";
}
if(path.find(L"\\")==std::string::npos)
{
path+=L"\\";
}
HANDLE hFile = CreateFileW(path.c_str(),
GENERIC_READ,
FILE_SHARE_READ,
NULL,
OPEN_EXISTING,
FILE_ATTRIBUTE_NORMAL | FILE_FLAG_BACKUP_SEMANTICS,
NULL);
if( hFile==INVALID_HANDLE_VALUE )
{
#ifndef OS_FUNC_NO_SERVER
Server->Log(L"Could not open path in os_get_final_path for \""+path+L"\"", LL_ERROR);
#endif
return path;
}
DWORD dwBufsize = GetFinalPathNameByHandleW( hFile, NULL, 0, VOLUME_NAME_DOS );
if(dwBufsize==0)
{
#ifndef OS_FUNC_NO_SERVER
Server->Log(L"Error getting path size in in os_get_final_path error="+convert((int)GetLastError())+L" for \""+path+L"\"", LL_ERROR);
#endif
CloseHandle(hFile);
return path;
}
ret.resize(dwBufsize+1);
DWORD dwRet = GetFinalPathNameByHandleW( hFile, (LPWSTR)ret.c_str(), dwBufsize, VOLUME_NAME_DOS );
CloseHandle(hFile);
if(dwRet==0)
{
#ifndef OS_FUNC_NO_SERVER
Server->Log("Error getting path in in os_get_final_path error="+nconvert((int)GetLastError()), LL_ERROR);
#endif
}
else if(dwRet<ret.size())
{
ret.resize(dwRet);
if(ret.find(L"\\\\?\\UNC")==0)
{
ret.erase(0, 7);
ret=L"\\"+ret;
}
if(ret.find(L"\\\\?\\")==0)
{
ret.erase(0,4);
}
/*if(ret.size()>=2 && ret[ret.size()-2]=='.' && ret[ret.size()-1]=='.' )
{
ret.resize(ret.size()-2);
}*/
return ret;
}
else
{
#ifndef OS_FUNC_NO_SERVER
Server->Log("Error getting path (buffer too small) in in os_get_final_path error="+nconvert((int)GetLastError()), LL_ERROR);
#endif
}
return path;
#else
return path;
#endif
}
#ifndef OS_FUNC_NO_SERVER
bool os_rename_file(std::wstring src, std::wstring dst, void* transaction)
{
BOOL rc;
#ifdef USE_NTFS_TXF
if(transaction==NULL)
{
#endif
rc = MoveFileExW(src.c_str(), dst.c_str(), MOVEFILE_REPLACE_EXISTING);
#ifdef USE_NTFS_TXF
}
else
{
rc=MoveFileTransactedW(src.c_str(), dst.c_str(), NULL, NULL, MOVEFILE_REPLACE_EXISTING, transaction);
}
#endif
#ifdef _DEBUG
if(rc==0)
{
Server->Log("MoveFileW error: "+nconvert((int)GetLastError()), LL_ERROR);
}
#endif
return rc!=0;
}
#endif
void* os_start_transaction()
{
#ifdef USE_NTFS_TXF
HANDLE htrans = CreateTransaction(NULL, NULL, 0, 0, 0, 0, NULL);
if(htrans==INVALID_HANDLE_VALUE)
{
Server->Log("Creating transaction failed. ec="+nconvert((int)GetLastError), LL_WARNING);
return NULL;
}
return htrans;
#else
return NULL;
#endif
}
bool os_finish_transaction(void* transaction)
{
#ifdef USE_NTFS_TXF
if(transaction==NULL)
{
return false;
}
BOOL b = CommitTransaction(transaction);
if(!b)
{
Server->Log("Commiting transaction failed. ec="+nconvert((int)GetLastError), LL_ERROR);
CloseHandle(transaction);
return false;
}
CloseHandle(transaction);
return true;
#else
return true;
#endif
}
int64 os_last_error()
{
return GetLastError();
}