2003-12-29 22:50:59 +00:00
|
|
|
/*
|
|
|
|
* Implementation of VERSION.DLL - File Installer routines
|
|
|
|
*
|
|
|
|
* Copyright 1996,1997 Marcus Meissner
|
|
|
|
* Copyright 1997 David Cuthbert
|
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2.1 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library 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
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
|
|
* License along with this library; if not, write to the Free Software
|
2007-07-27 10:17:42 +00:00
|
|
|
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
|
2003-12-29 22:50:59 +00:00
|
|
|
*
|
|
|
|
* TODO
|
|
|
|
* o Check the installation functions.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <stdarg.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <string.h>
|
|
|
|
|
|
|
|
#include "windef.h"
|
|
|
|
#include "winbase.h"
|
|
|
|
#include "winver.h"
|
|
|
|
#include "winnls.h"
|
|
|
|
#include "wine/unicode.h"
|
|
|
|
#include "winerror.h"
|
|
|
|
#include "lzexpand.h"
|
|
|
|
#include "wine/debug.h"
|
|
|
|
|
|
|
|
WINE_DEFAULT_DEBUG_CHANNEL(ver);
|
|
|
|
|
|
|
|
|
|
|
|
/******************************************************************************
|
|
|
|
* testFileExistenceA
|
|
|
|
*
|
|
|
|
* Tests whether a given path/file combination exists. If the file does
|
|
|
|
* not exist, the return value is zero. If it does exist, the return
|
|
|
|
* value is non-zero.
|
|
|
|
*
|
|
|
|
* Revision history
|
|
|
|
* 30-May-1997 Dave Cuthbert (dacut@ece.cmu.edu)
|
|
|
|
* Original implementation
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
static int testFileExistenceA( char const * path, char const * file, BOOL excl )
|
|
|
|
{
|
|
|
|
char filename[1024];
|
|
|
|
int filenamelen;
|
|
|
|
OFSTRUCT fileinfo;
|
|
|
|
|
|
|
|
fileinfo.cBytes = sizeof(OFSTRUCT);
|
|
|
|
|
|
|
|
strcpy(filename, path);
|
|
|
|
filenamelen = strlen(filename);
|
|
|
|
|
|
|
|
/* Add a trailing \ if necessary */
|
|
|
|
if(filenamelen) {
|
|
|
|
if(filename[filenamelen - 1] != '\\')
|
|
|
|
strcat(filename, "\\");
|
|
|
|
}
|
|
|
|
else /* specify the current directory */
|
|
|
|
strcpy(filename, ".\\");
|
|
|
|
|
|
|
|
/* Create the full pathname */
|
|
|
|
strcat(filename, file);
|
|
|
|
|
|
|
|
return (OpenFile(filename, &fileinfo,
|
|
|
|
OF_EXIST | (excl ? OF_SHARE_EXCLUSIVE : 0)) != HFILE_ERROR);
|
|
|
|
}
|
|
|
|
|
|
|
|
/******************************************************************************
|
|
|
|
* testFileExistenceW
|
|
|
|
*/
|
|
|
|
static int testFileExistenceW( const WCHAR *path, const WCHAR *file, BOOL excl )
|
|
|
|
{
|
|
|
|
char *filename;
|
|
|
|
DWORD pathlen, filelen;
|
|
|
|
int ret;
|
|
|
|
OFSTRUCT fileinfo;
|
|
|
|
|
|
|
|
fileinfo.cBytes = sizeof(OFSTRUCT);
|
|
|
|
|
|
|
|
pathlen = WideCharToMultiByte( CP_ACP, 0, path, -1, NULL, 0, NULL, NULL );
|
|
|
|
filelen = WideCharToMultiByte( CP_ACP, 0, file, -1, NULL, 0, NULL, NULL );
|
|
|
|
filename = HeapAlloc( GetProcessHeap(), 0, pathlen+filelen+2 );
|
|
|
|
|
|
|
|
WideCharToMultiByte( CP_ACP, 0, path, -1, filename, pathlen, NULL, NULL );
|
|
|
|
/* Add a trailing \ if necessary */
|
|
|
|
if (pathlen > 1)
|
|
|
|
{
|
|
|
|
if (filename[pathlen-2] != '\\') strcpy( &filename[pathlen-1], "\\" );
|
|
|
|
}
|
|
|
|
else /* specify the current directory */
|
|
|
|
strcpy(filename, ".\\");
|
|
|
|
|
|
|
|
WideCharToMultiByte( CP_ACP, 0, file, -1, filename+strlen(filename), filelen, NULL, NULL );
|
|
|
|
|
|
|
|
ret = (OpenFile(filename, &fileinfo,
|
|
|
|
OF_EXIST | (excl ? OF_SHARE_EXCLUSIVE : 0)) != HFILE_ERROR);
|
|
|
|
HeapFree( GetProcessHeap(), 0, filename );
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*****************************************************************************
|
|
|
|
* VerFindFileA [VERSION.@]
|
|
|
|
*
|
|
|
|
* Determines where to install a file based on whether it locates another
|
|
|
|
* version of the file in the system. The values VerFindFile returns are
|
|
|
|
* used in a subsequent call to the VerInstallFile function.
|
|
|
|
*
|
|
|
|
* Revision history:
|
|
|
|
* 30-May-1997 Dave Cuthbert (dacut@ece.cmu.edu)
|
|
|
|
* Reimplementation of VerFindFile from original stub.
|
|
|
|
*/
|
|
|
|
DWORD WINAPI VerFindFileA(
|
2004-01-05 18:12:18 +00:00
|
|
|
DWORD flags,
|
2007-11-29 11:26:23 +00:00
|
|
|
LPCSTR lpszFilename,
|
|
|
|
LPCSTR lpszWinDir,
|
|
|
|
LPCSTR lpszAppDir,
|
2003-12-29 22:50:59 +00:00
|
|
|
LPSTR lpszCurDir,
|
2007-11-29 11:26:23 +00:00
|
|
|
PUINT lpuCurDirLen,
|
2003-12-29 22:50:59 +00:00
|
|
|
LPSTR lpszDestDir,
|
2007-11-29 11:26:23 +00:00
|
|
|
PUINT lpuDestDirLen )
|
2003-12-29 22:50:59 +00:00
|
|
|
{
|
|
|
|
DWORD retval = 0;
|
|
|
|
const char *curDir;
|
|
|
|
const char *destDir;
|
|
|
|
unsigned int curDirSizeReq;
|
|
|
|
unsigned int destDirSizeReq;
|
|
|
|
char systemDir[MAX_PATH];
|
|
|
|
|
|
|
|
/* Print out debugging information */
|
|
|
|
TRACE("flags = %x filename=%s windir=%s appdir=%s curdirlen=%p(%u) destdirlen=%p(%u)\n",
|
|
|
|
flags, debugstr_a(lpszFilename), debugstr_a(lpszWinDir), debugstr_a(lpszAppDir),
|
|
|
|
lpuCurDirLen, lpuCurDirLen ? *lpuCurDirLen : 0,
|
|
|
|
lpuDestDirLen, lpuDestDirLen ? *lpuDestDirLen : 0 );
|
|
|
|
|
|
|
|
/* Figure out where the file should go; shared files default to the
|
|
|
|
system directory */
|
|
|
|
|
|
|
|
GetSystemDirectoryA(systemDir, sizeof(systemDir));
|
|
|
|
curDir = "";
|
|
|
|
destDir = "";
|
|
|
|
|
|
|
|
if(flags & VFFF_ISSHAREDFILE)
|
|
|
|
{
|
|
|
|
destDir = systemDir;
|
|
|
|
/* Were we given a filename? If so, try to find the file. */
|
|
|
|
if(lpszFilename)
|
|
|
|
{
|
|
|
|
if(testFileExistenceA(destDir, lpszFilename, FALSE)) curDir = destDir;
|
|
|
|
else if(lpszAppDir && testFileExistenceA(lpszAppDir, lpszFilename, FALSE))
|
|
|
|
{
|
|
|
|
curDir = lpszAppDir;
|
|
|
|
retval |= VFF_CURNEDEST;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else /* not a shared file */
|
|
|
|
{
|
|
|
|
if(lpszAppDir)
|
|
|
|
{
|
|
|
|
destDir = lpszAppDir;
|
|
|
|
if(lpszFilename)
|
|
|
|
{
|
|
|
|
if(testFileExistenceA(destDir, lpszFilename, FALSE)) curDir = destDir;
|
|
|
|
else if(testFileExistenceA(systemDir, lpszFilename, FALSE))
|
|
|
|
{
|
|
|
|
curDir = systemDir;
|
|
|
|
retval |= VFF_CURNEDEST;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
Finish the Wine sync. These components are not just rc file changes
atl, comctl32, comdlg32, dwmapi, fusion, gdiplus, jscript, mpr, mshtml, msi, msimtf, msxml3, ole32, oleaut32, riched20, shdocvw, shlwapi, urlmon, usp10, version and windowscodecs
Seems to build and boot. /me hides
svn path=/trunk/; revision=48273
2010-07-26 02:26:04 +00:00
|
|
|
/* Check to see if the file exists and is in use by another application */
|
2006-05-10 08:19:03 +00:00
|
|
|
if (lpszFilename && testFileExistenceA(curDir, lpszFilename, FALSE)) {
|
|
|
|
if (lpszFilename && !testFileExistenceA(curDir, lpszFilename, TRUE))
|
|
|
|
retval |= VFF_FILEINUSE;
|
|
|
|
}
|
2003-12-29 22:50:59 +00:00
|
|
|
|
|
|
|
curDirSizeReq = strlen(curDir) + 1;
|
|
|
|
destDirSizeReq = strlen(destDir) + 1;
|
|
|
|
|
|
|
|
/* Make sure that the pointers to the size of the buffers are
|
|
|
|
valid; if not, do NOTHING with that buffer. If that pointer
|
|
|
|
is valid, then make sure that the buffer pointer is valid, too! */
|
|
|
|
|
|
|
|
if(lpuDestDirLen && lpszDestDir)
|
|
|
|
{
|
|
|
|
if (*lpuDestDirLen < destDirSizeReq) retval |= VFF_BUFFTOOSMALL;
|
|
|
|
lstrcpynA(lpszDestDir, destDir, *lpuDestDirLen);
|
|
|
|
*lpuDestDirLen = destDirSizeReq;
|
|
|
|
}
|
|
|
|
if(lpuCurDirLen && lpszCurDir)
|
|
|
|
{
|
|
|
|
if(*lpuCurDirLen < curDirSizeReq) retval |= VFF_BUFFTOOSMALL;
|
|
|
|
lstrcpynA(lpszCurDir, curDir, *lpuCurDirLen);
|
|
|
|
*lpuCurDirLen = curDirSizeReq;
|
|
|
|
}
|
|
|
|
|
2007-07-27 10:17:42 +00:00
|
|
|
TRACE("ret = %u (%s%s%s) curdir=%s destdir=%s\n", retval,
|
2003-12-29 22:50:59 +00:00
|
|
|
(retval & VFF_CURNEDEST) ? "VFF_CURNEDEST " : "",
|
|
|
|
(retval & VFF_FILEINUSE) ? "VFF_FILEINUSE " : "",
|
|
|
|
(retval & VFF_BUFFTOOSMALL) ? "VFF_BUFFTOOSMALL " : "",
|
|
|
|
debugstr_a(lpszCurDir), debugstr_a(lpszDestDir));
|
|
|
|
|
|
|
|
return retval;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*****************************************************************************
|
|
|
|
* VerFindFileW [VERSION.@]
|
|
|
|
*/
|
2007-11-29 11:26:23 +00:00
|
|
|
DWORD WINAPI VerFindFileW( DWORD flags,LPCWSTR lpszFilename,LPCWSTR lpszWinDir,
|
|
|
|
LPCWSTR lpszAppDir, LPWSTR lpszCurDir,PUINT lpuCurDirLen,
|
|
|
|
LPWSTR lpszDestDir,PUINT lpuDestDirLen )
|
2003-12-29 22:50:59 +00:00
|
|
|
{
|
|
|
|
static const WCHAR emptyW;
|
|
|
|
DWORD retval = 0;
|
|
|
|
const WCHAR *curDir;
|
|
|
|
const WCHAR *destDir;
|
|
|
|
unsigned int curDirSizeReq;
|
|
|
|
unsigned int destDirSizeReq;
|
|
|
|
WCHAR systemDir[MAX_PATH];
|
|
|
|
|
|
|
|
/* Print out debugging information */
|
|
|
|
TRACE("flags = %x filename=%s windir=%s appdir=%s curdirlen=%p(%u) destdirlen=%p(%u)\n",
|
|
|
|
flags, debugstr_w(lpszFilename), debugstr_w(lpszWinDir), debugstr_w(lpszAppDir),
|
|
|
|
lpuCurDirLen, lpuCurDirLen ? *lpuCurDirLen : 0,
|
|
|
|
lpuDestDirLen, lpuDestDirLen ? *lpuDestDirLen : 0 );
|
|
|
|
|
|
|
|
/* Figure out where the file should go; shared files default to the
|
|
|
|
system directory */
|
|
|
|
|
|
|
|
GetSystemDirectoryW(systemDir, sizeof(systemDir)/sizeof(WCHAR));
|
|
|
|
curDir = &emptyW;
|
|
|
|
destDir = &emptyW;
|
|
|
|
|
|
|
|
if(flags & VFFF_ISSHAREDFILE)
|
|
|
|
{
|
|
|
|
destDir = systemDir;
|
|
|
|
/* Were we given a filename? If so, try to find the file. */
|
|
|
|
if(lpszFilename)
|
|
|
|
{
|
|
|
|
if(testFileExistenceW(destDir, lpszFilename, FALSE)) curDir = destDir;
|
|
|
|
else if(lpszAppDir && testFileExistenceW(lpszAppDir, lpszFilename, FALSE))
|
|
|
|
{
|
|
|
|
curDir = lpszAppDir;
|
|
|
|
retval |= VFF_CURNEDEST;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else /* not a shared file */
|
|
|
|
{
|
|
|
|
if(lpszAppDir)
|
|
|
|
{
|
|
|
|
destDir = lpszAppDir;
|
|
|
|
if(lpszFilename)
|
|
|
|
{
|
|
|
|
if(testFileExistenceW(destDir, lpszFilename, FALSE)) curDir = destDir;
|
|
|
|
else if(testFileExistenceW(systemDir, lpszFilename, FALSE))
|
|
|
|
{
|
|
|
|
curDir = systemDir;
|
|
|
|
retval |= VFF_CURNEDEST;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (lpszFilename && !testFileExistenceW(curDir, lpszFilename, TRUE))
|
|
|
|
retval |= VFF_FILEINUSE;
|
|
|
|
|
|
|
|
curDirSizeReq = strlenW(curDir) + 1;
|
|
|
|
destDirSizeReq = strlenW(destDir) + 1;
|
|
|
|
|
|
|
|
/* Make sure that the pointers to the size of the buffers are
|
|
|
|
valid; if not, do NOTHING with that buffer. If that pointer
|
|
|
|
is valid, then make sure that the buffer pointer is valid, too! */
|
|
|
|
|
|
|
|
if(lpuDestDirLen && lpszDestDir)
|
|
|
|
{
|
|
|
|
if (*lpuDestDirLen < destDirSizeReq) retval |= VFF_BUFFTOOSMALL;
|
|
|
|
lstrcpynW(lpszDestDir, destDir, *lpuDestDirLen);
|
|
|
|
*lpuDestDirLen = destDirSizeReq;
|
|
|
|
}
|
|
|
|
if(lpuCurDirLen && lpszCurDir)
|
|
|
|
{
|
|
|
|
if(*lpuCurDirLen < curDirSizeReq) retval |= VFF_BUFFTOOSMALL;
|
|
|
|
lstrcpynW(lpszCurDir, curDir, *lpuCurDirLen);
|
|
|
|
*lpuCurDirLen = curDirSizeReq;
|
|
|
|
}
|
|
|
|
|
2007-07-27 10:17:42 +00:00
|
|
|
TRACE("ret = %u (%s%s%s) curdir=%s destdir=%s\n", retval,
|
2003-12-29 22:50:59 +00:00
|
|
|
(retval & VFF_CURNEDEST) ? "VFF_CURNEDEST " : "",
|
|
|
|
(retval & VFF_FILEINUSE) ? "VFF_FILEINUSE " : "",
|
|
|
|
(retval & VFF_BUFFTOOSMALL) ? "VFF_BUFFTOOSMALL " : "",
|
|
|
|
debugstr_w(lpszCurDir), debugstr_w(lpszDestDir));
|
|
|
|
return retval;
|
|
|
|
}
|
|
|
|
|
|
|
|
static LPBYTE
|
|
|
|
_fetch_versioninfo(LPSTR fn,VS_FIXEDFILEINFO **vffi) {
|
|
|
|
DWORD alloclen;
|
|
|
|
LPBYTE buf;
|
|
|
|
DWORD ret;
|
|
|
|
|
|
|
|
alloclen = 1000;
|
|
|
|
buf=HeapAlloc(GetProcessHeap(), 0, alloclen);
|
|
|
|
if(buf == NULL) {
|
|
|
|
WARN("Memory exausted while fetching version info!\n");
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
while (1) {
|
|
|
|
ret = GetFileVersionInfoA(fn,0,alloclen,buf);
|
|
|
|
if (!ret) {
|
|
|
|
HeapFree(GetProcessHeap(), 0, buf);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
if (alloclen<*(WORD*)buf) {
|
|
|
|
alloclen = *(WORD*)buf;
|
|
|
|
HeapFree(GetProcessHeap(), 0, buf);
|
|
|
|
buf = HeapAlloc(GetProcessHeap(), 0, alloclen);
|
|
|
|
if(buf == NULL) {
|
|
|
|
WARN("Memory exausted while fetching version info!\n");
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
*vffi = (VS_FIXEDFILEINFO*)(buf+0x14);
|
|
|
|
if ((*vffi)->dwSignature == 0x004f0049) /* hack to detect unicode */
|
|
|
|
*vffi = (VS_FIXEDFILEINFO*)(buf+0x28);
|
|
|
|
if ((*vffi)->dwSignature != VS_FFI_SIGNATURE)
|
2007-07-27 10:17:42 +00:00
|
|
|
WARN("Bad VS_FIXEDFILEINFO signature 0x%08x\n",(*vffi)->dwSignature);
|
2003-12-29 22:50:59 +00:00
|
|
|
return buf;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static DWORD
|
|
|
|
_error2vif(DWORD error) {
|
|
|
|
switch (error) {
|
|
|
|
case ERROR_ACCESS_DENIED:
|
|
|
|
return VIF_ACCESSVIOLATION;
|
|
|
|
case ERROR_SHARING_VIOLATION:
|
|
|
|
return VIF_SHARINGVIOLATION;
|
|
|
|
default:
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/******************************************************************************
|
|
|
|
* VerInstallFileA [VERSION.@]
|
|
|
|
*/
|
|
|
|
DWORD WINAPI VerInstallFileA(
|
2007-11-29 11:26:23 +00:00
|
|
|
DWORD flags,LPCSTR srcfilename,LPCSTR destfilename,LPCSTR srcdir,
|
|
|
|
LPCSTR destdir,LPCSTR curdir,LPSTR tmpfile,PUINT tmpfilelen )
|
2003-12-29 22:50:59 +00:00
|
|
|
{
|
|
|
|
LPCSTR pdest;
|
|
|
|
char destfn[260],tmpfn[260],srcfn[260];
|
|
|
|
HFILE hfsrc,hfdst;
|
2008-04-10 11:28:55 +00:00
|
|
|
DWORD attr,xret,tmplast;
|
|
|
|
LONG ret;
|
2003-12-29 22:50:59 +00:00
|
|
|
LPBYTE buf1,buf2;
|
|
|
|
OFSTRUCT ofs;
|
|
|
|
|
|
|
|
TRACE("(%x,%s,%s,%s,%s,%s,%p,%d)\n",
|
|
|
|
flags,srcfilename,destfilename,srcdir,destdir,curdir,tmpfile,*tmpfilelen
|
|
|
|
);
|
|
|
|
xret = 0;
|
|
|
|
sprintf(srcfn,"%s\\%s",srcdir,srcfilename);
|
|
|
|
if (!destdir || !*destdir) pdest = srcdir;
|
|
|
|
else pdest = destdir;
|
|
|
|
sprintf(destfn,"%s\\%s",pdest,destfilename);
|
|
|
|
hfsrc=LZOpenFileA(srcfn,&ofs,OF_READ);
|
|
|
|
if (hfsrc < 0)
|
|
|
|
return VIF_CANNOTREADSRC;
|
|
|
|
sprintf(tmpfn,"%s\\%s",pdest,destfilename);
|
|
|
|
tmplast=strlen(pdest)+1;
|
|
|
|
attr = GetFileAttributesA(tmpfn);
|
|
|
|
if (attr != INVALID_FILE_ATTRIBUTES) {
|
|
|
|
if (attr & FILE_ATTRIBUTE_READONLY) {
|
|
|
|
LZClose(hfsrc);
|
|
|
|
return VIF_WRITEPROT;
|
|
|
|
}
|
|
|
|
/* FIXME: check if file currently in use and return VIF_FILEINUSE */
|
|
|
|
}
|
|
|
|
attr = INVALID_FILE_ATTRIBUTES;
|
|
|
|
if (flags & VIFF_FORCEINSTALL) {
|
|
|
|
if (tmpfile[0]) {
|
|
|
|
sprintf(tmpfn,"%s\\%s",pdest,tmpfile);
|
|
|
|
tmplast = strlen(pdest)+1;
|
|
|
|
attr = GetFileAttributesA(tmpfn);
|
|
|
|
/* if it exists, it has been copied by the call before.
|
|
|
|
* we jump over the copy part...
|
|
|
|
*/
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (attr == INVALID_FILE_ATTRIBUTES) {
|
|
|
|
char *s;
|
|
|
|
|
|
|
|
GetTempFileNameA(pdest,"ver",0,tmpfn); /* should not fail ... */
|
|
|
|
s=strrchr(tmpfn,'\\');
|
|
|
|
if (s)
|
|
|
|
tmplast = s-tmpfn;
|
|
|
|
else
|
|
|
|
tmplast = 0;
|
|
|
|
hfdst = OpenFile(tmpfn,&ofs,OF_CREATE);
|
|
|
|
if (hfdst == HFILE_ERROR) {
|
|
|
|
LZClose(hfsrc);
|
|
|
|
return VIF_CANNOTCREATE; /* | translated dos error */
|
|
|
|
}
|
|
|
|
ret = LZCopy(hfsrc,hfdst);
|
|
|
|
_lclose(hfdst);
|
2008-04-10 11:28:55 +00:00
|
|
|
if (ret < 0) {
|
2003-12-29 22:50:59 +00:00
|
|
|
/* translate LZ errors into VIF_xxx */
|
|
|
|
switch (ret) {
|
|
|
|
case LZERROR_BADINHANDLE:
|
|
|
|
case LZERROR_READ:
|
|
|
|
case LZERROR_BADVALUE:
|
|
|
|
case LZERROR_UNKNOWNALG:
|
2008-04-10 11:28:55 +00:00
|
|
|
xret = VIF_CANNOTREADSRC;
|
2003-12-29 22:50:59 +00:00
|
|
|
break;
|
|
|
|
case LZERROR_BADOUTHANDLE:
|
|
|
|
case LZERROR_WRITE:
|
2008-04-10 11:28:55 +00:00
|
|
|
xret = VIF_OUTOFSPACE;
|
2003-12-29 22:50:59 +00:00
|
|
|
break;
|
|
|
|
case LZERROR_GLOBALLOC:
|
|
|
|
case LZERROR_GLOBLOCK:
|
2008-04-10 11:28:55 +00:00
|
|
|
xret = VIF_OUTOFMEMORY;
|
2003-12-29 22:50:59 +00:00
|
|
|
break;
|
|
|
|
default: /* unknown error, should not happen */
|
2008-04-10 11:28:55 +00:00
|
|
|
FIXME("Unknown LZCopy error %d, ignoring.\n", ret);
|
|
|
|
xret = 0;
|
2003-12-29 22:50:59 +00:00
|
|
|
break;
|
|
|
|
}
|
2008-04-10 11:28:55 +00:00
|
|
|
if (xret) {
|
2003-12-29 22:50:59 +00:00
|
|
|
LZClose(hfsrc);
|
2008-04-10 11:28:55 +00:00
|
|
|
return xret;
|
2003-12-29 22:50:59 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
xret = 0;
|
|
|
|
if (!(flags & VIFF_FORCEINSTALL)) {
|
|
|
|
VS_FIXEDFILEINFO *destvffi,*tmpvffi;
|
|
|
|
buf1 = _fetch_versioninfo(destfn,&destvffi);
|
|
|
|
if (buf1) {
|
|
|
|
buf2 = _fetch_versioninfo(tmpfn,&tmpvffi);
|
|
|
|
if (buf2) {
|
2007-07-27 10:17:42 +00:00
|
|
|
char *tbuf1,*tbuf2;
|
|
|
|
static const CHAR trans_array[] = "\\VarFileInfo\\Translation";
|
2003-12-29 22:50:59 +00:00
|
|
|
UINT len1,len2;
|
|
|
|
|
|
|
|
len1=len2=40;
|
|
|
|
|
|
|
|
/* compare file versions */
|
|
|
|
if ((destvffi->dwFileVersionMS > tmpvffi->dwFileVersionMS)||
|
|
|
|
((destvffi->dwFileVersionMS==tmpvffi->dwFileVersionMS)&&
|
|
|
|
(destvffi->dwFileVersionLS > tmpvffi->dwFileVersionLS)
|
|
|
|
)
|
|
|
|
)
|
|
|
|
xret |= VIF_MISMATCH|VIF_SRCOLD;
|
|
|
|
/* compare filetypes and filesubtypes */
|
|
|
|
if ((destvffi->dwFileType!=tmpvffi->dwFileType) ||
|
|
|
|
(destvffi->dwFileSubtype!=tmpvffi->dwFileSubtype)
|
|
|
|
)
|
|
|
|
xret |= VIF_MISMATCH|VIF_DIFFTYPE;
|
2007-07-27 10:17:42 +00:00
|
|
|
if (VerQueryValueA(buf1,trans_array,(LPVOID*)&tbuf1,&len1) &&
|
|
|
|
VerQueryValueA(buf2,trans_array,(LPVOID*)&tbuf2,&len2)
|
2003-12-29 22:50:59 +00:00
|
|
|
) {
|
2006-05-10 08:19:03 +00:00
|
|
|
/* Do something with tbuf1 and tbuf2
|
|
|
|
* generates DIFFLANG|MISMATCH
|
2003-12-29 22:50:59 +00:00
|
|
|
*/
|
|
|
|
}
|
|
|
|
HeapFree(GetProcessHeap(), 0, buf2);
|
|
|
|
} else
|
|
|
|
xret=VIF_MISMATCH|VIF_SRCOLD;
|
|
|
|
HeapFree(GetProcessHeap(), 0, buf1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (xret) {
|
|
|
|
if (*tmpfilelen<strlen(tmpfn+tmplast)) {
|
|
|
|
xret|=VIF_BUFFTOOSMALL;
|
|
|
|
DeleteFileA(tmpfn);
|
|
|
|
} else {
|
|
|
|
strcpy(tmpfile,tmpfn+tmplast);
|
|
|
|
*tmpfilelen = strlen(tmpfn+tmplast)+1;
|
|
|
|
xret|=VIF_TEMPFILE;
|
|
|
|
}
|
|
|
|
} else {
|
2006-05-10 08:19:03 +00:00
|
|
|
if (INVALID_FILE_ATTRIBUTES!=GetFileAttributesA(destfn))
|
2003-12-29 22:50:59 +00:00
|
|
|
if (!DeleteFileA(destfn)) {
|
|
|
|
xret|=_error2vif(GetLastError())|VIF_CANNOTDELETE;
|
|
|
|
DeleteFileA(tmpfn);
|
|
|
|
LZClose(hfsrc);
|
|
|
|
return xret;
|
|
|
|
}
|
|
|
|
if ((!(flags & VIFF_DONTDELETEOLD)) &&
|
|
|
|
curdir &&
|
|
|
|
*curdir &&
|
|
|
|
lstrcmpiA(curdir,pdest)
|
|
|
|
) {
|
|
|
|
char curfn[260];
|
|
|
|
|
|
|
|
sprintf(curfn,"%s\\%s",curdir,destfilename);
|
|
|
|
if (INVALID_FILE_ATTRIBUTES != GetFileAttributesA(curfn)) {
|
|
|
|
/* FIXME: check if in use ... if it is, VIF_CANNOTDELETECUR */
|
|
|
|
if (!DeleteFileA(curfn))
|
|
|
|
xret|=_error2vif(GetLastError())|VIF_CANNOTDELETECUR;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (!MoveFileA(tmpfn,destfn)) {
|
|
|
|
xret|=_error2vif(GetLastError())|VIF_CANNOTRENAME;
|
|
|
|
DeleteFileA(tmpfn);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
LZClose(hfsrc);
|
|
|
|
return xret;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/******************************************************************************
|
|
|
|
* VerInstallFileW [VERSION.@]
|
|
|
|
*/
|
|
|
|
DWORD WINAPI VerInstallFileW(
|
2007-11-29 11:26:23 +00:00
|
|
|
DWORD flags,LPCWSTR srcfilename,LPCWSTR destfilename,LPCWSTR srcdir,
|
|
|
|
LPCWSTR destdir,LPCWSTR curdir,LPWSTR tmpfile,PUINT tmpfilelen )
|
2003-12-29 22:50:59 +00:00
|
|
|
{
|
|
|
|
LPSTR wsrcf = NULL, wsrcd = NULL, wdestf = NULL, wdestd = NULL, wtmpf = NULL, wcurd = NULL;
|
2009-06-07 11:12:48 +00:00
|
|
|
DWORD ret = 0;
|
2003-12-29 22:50:59 +00:00
|
|
|
UINT len;
|
|
|
|
|
|
|
|
if (srcfilename)
|
|
|
|
{
|
|
|
|
len = WideCharToMultiByte( CP_ACP, 0, srcfilename, -1, NULL, 0, NULL, NULL );
|
|
|
|
if ((wsrcf = HeapAlloc( GetProcessHeap(), 0, len )))
|
|
|
|
WideCharToMultiByte( CP_ACP, 0, srcfilename, -1, wsrcf, len, NULL, NULL );
|
2009-06-07 11:12:48 +00:00
|
|
|
else
|
|
|
|
ret = VIF_OUTOFMEMORY;
|
2003-12-29 22:50:59 +00:00
|
|
|
}
|
2009-06-07 11:12:48 +00:00
|
|
|
if (srcdir && !ret)
|
2003-12-29 22:50:59 +00:00
|
|
|
{
|
|
|
|
len = WideCharToMultiByte( CP_ACP, 0, srcdir, -1, NULL, 0, NULL, NULL );
|
|
|
|
if ((wsrcd = HeapAlloc( GetProcessHeap(), 0, len )))
|
|
|
|
WideCharToMultiByte( CP_ACP, 0, srcdir, -1, wsrcd, len, NULL, NULL );
|
2009-06-07 11:12:48 +00:00
|
|
|
else
|
|
|
|
ret = VIF_OUTOFMEMORY;
|
2003-12-29 22:50:59 +00:00
|
|
|
}
|
2009-06-07 11:12:48 +00:00
|
|
|
if (destfilename && !ret)
|
2003-12-29 22:50:59 +00:00
|
|
|
{
|
|
|
|
len = WideCharToMultiByte( CP_ACP, 0, destfilename, -1, NULL, 0, NULL, NULL );
|
|
|
|
if ((wdestf = HeapAlloc( GetProcessHeap(), 0, len )))
|
|
|
|
WideCharToMultiByte( CP_ACP, 0, destfilename, -1, wdestf, len, NULL, NULL );
|
2009-06-07 11:12:48 +00:00
|
|
|
else
|
|
|
|
ret = VIF_OUTOFMEMORY;
|
2003-12-29 22:50:59 +00:00
|
|
|
}
|
2009-06-07 11:12:48 +00:00
|
|
|
if (destdir && !ret)
|
2003-12-29 22:50:59 +00:00
|
|
|
{
|
|
|
|
len = WideCharToMultiByte( CP_ACP, 0, destdir, -1, NULL, 0, NULL, NULL );
|
|
|
|
if ((wdestd = HeapAlloc( GetProcessHeap(), 0, len )))
|
|
|
|
WideCharToMultiByte( CP_ACP, 0, destdir, -1, wdestd, len, NULL, NULL );
|
2009-06-07 11:12:48 +00:00
|
|
|
else
|
|
|
|
ret = VIF_OUTOFMEMORY;
|
2003-12-29 22:50:59 +00:00
|
|
|
}
|
2009-06-07 11:12:48 +00:00
|
|
|
if (curdir && !ret)
|
2003-12-29 22:50:59 +00:00
|
|
|
{
|
|
|
|
len = WideCharToMultiByte( CP_ACP, 0, curdir, -1, NULL, 0, NULL, NULL );
|
|
|
|
if ((wcurd = HeapAlloc( GetProcessHeap(), 0, len )))
|
|
|
|
WideCharToMultiByte( CP_ACP, 0, curdir, -1, wcurd, len, NULL, NULL );
|
2009-06-07 11:12:48 +00:00
|
|
|
else
|
|
|
|
ret = VIF_OUTOFMEMORY;
|
2003-12-29 22:50:59 +00:00
|
|
|
}
|
2009-06-07 11:12:48 +00:00
|
|
|
if (!ret)
|
|
|
|
{
|
|
|
|
len = *tmpfilelen * sizeof(WCHAR);
|
|
|
|
wtmpf = HeapAlloc( GetProcessHeap(), 0, len );
|
|
|
|
if (!wtmpf)
|
|
|
|
ret = VIF_OUTOFMEMORY;
|
|
|
|
}
|
|
|
|
if (!ret)
|
|
|
|
ret = VerInstallFileA(flags,wsrcf,wdestf,wsrcd,wdestd,wcurd,wtmpf,&len);
|
2003-12-29 22:50:59 +00:00
|
|
|
if (!ret)
|
|
|
|
*tmpfilelen = MultiByteToWideChar( CP_ACP, 0, wtmpf, -1, tmpfile, *tmpfilelen );
|
|
|
|
else if (ret & VIF_BUFFTOOSMALL)
|
|
|
|
*tmpfilelen = len; /* FIXME: not correct */
|
|
|
|
|
|
|
|
HeapFree( GetProcessHeap(), 0, wsrcf );
|
|
|
|
HeapFree( GetProcessHeap(), 0, wsrcd );
|
|
|
|
HeapFree( GetProcessHeap(), 0, wdestf );
|
|
|
|
HeapFree( GetProcessHeap(), 0, wdestd );
|
|
|
|
HeapFree( GetProcessHeap(), 0, wtmpf );
|
|
|
|
HeapFree( GetProcessHeap(), 0, wcurd );
|
|
|
|
return ret;
|
|
|
|
}
|