
Independed user vars in uninstaller and installer git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@2656 212acab6-be3b-0410-9dea-997c60f758d6
376 lines
9.4 KiB
C
376 lines
9.4 KiB
C
#include <windows.h>
|
|
#include "fileform.h"
|
|
#include "util.h"
|
|
#include "state.h"
|
|
#include "resource.h"
|
|
#include "lang.h"
|
|
|
|
#ifdef NSIS_CONFIG_COMPRESSION_SUPPORT
|
|
#ifdef NSIS_COMPRESS_USE_ZLIB
|
|
#include "../zlib/zlib.h"
|
|
#endif
|
|
|
|
#ifdef NSIS_COMPRESS_USE_BZIP2
|
|
#include "../bzip2/bzlib.h"
|
|
|
|
#define z_stream DState
|
|
#define inflateInit(x) BZ2_bzDecompressInit(x)
|
|
#define inflateReset(x) BZ2_bzDecompressInit(x)
|
|
|
|
#define inflate(x) BZ2_bzDecompress(x)
|
|
#define Z_OK BZ_OK
|
|
#define Z_STREAM_END BZ_STREAM_END
|
|
#endif//NSIS_COMPRESS_USE_BZIP2
|
|
|
|
#endif
|
|
|
|
#include "ui.h"
|
|
|
|
char *g_db_strtab;
|
|
|
|
static int g_db_offset;
|
|
HANDLE g_db_hFile;
|
|
|
|
#if defined(NSIS_CONFIG_COMPRESSION_SUPPORT) && defined(NSIS_COMPRESS_WHOLE)
|
|
HANDLE dbd_hFile=INVALID_HANDLE_VALUE;
|
|
static int dbd_size, dbd_pos, dbd_srcpos, dbd_fulllen;
|
|
#endif//NSIS_COMPRESS_WHOLE
|
|
|
|
int inst_flags;
|
|
|
|
int NSISCALL isheader(firstheader *h)
|
|
{
|
|
if ((h->flags & (~FH_FLAGS_MASK)) ||
|
|
h->siginfo != FH_SIG ||
|
|
h->nsinst[2] != FH_INT3 ||
|
|
h->nsinst[1] != FH_INT2 ||
|
|
h->nsinst[0] != FH_INT1) return 0;
|
|
return h->length_of_all_following_data;
|
|
}
|
|
|
|
|
|
#ifdef NSIS_CONFIG_COMPRESSION_SUPPORT
|
|
static z_stream g_inflate_stream;
|
|
#endif
|
|
/*
|
|
void DEBUG(const char* Frm, ...)
|
|
{
|
|
char Buf[1024];
|
|
va_list va;
|
|
va_start(va, Frm);
|
|
wvsprintf(Buf, Frm, va);
|
|
MessageBox(0, Buf, 0, 0);
|
|
va_end(va);
|
|
}
|
|
*/
|
|
const char * NSISCALL loadHeaders(void)
|
|
{
|
|
void *data;
|
|
firstheader h;
|
|
|
|
if (!ReadSelfFile((LPVOID)&h,sizeof(h)) || !isheader(&h)) return _LANG_INVALIDCRC;
|
|
|
|
#ifdef NSIS_SUPPORT_NAMED_USERVARS
|
|
//DEBUG("Needed size is : %i", h.length_of_header + h.length_of_uservars);
|
|
g_usrvars = (NSIS_STRING*)GlobalReAlloc(g_usrvars, h.length_of_header + h.length_of_uservars, GMEM_MOVEABLE);
|
|
data = (void*)(g_usrvars[0]+h.length_of_uservars);
|
|
#else
|
|
data=(void*)my_GlobalAlloc(h.length_of_header);
|
|
#endif
|
|
|
|
#ifdef NSIS_CONFIG_COMPRESSION_SUPPORT
|
|
inflateInit(&g_inflate_stream);
|
|
|
|
#ifdef NSIS_COMPRESS_WHOLE
|
|
inflateReset(&g_inflate_stream);
|
|
|
|
{
|
|
char fno[MAX_PATH];
|
|
GetTempFileName(temp_directory,"nst",0,fno);
|
|
dbd_hFile=CreateFile(fno,GENERIC_WRITE|GENERIC_READ,0,NULL,CREATE_ALWAYS,FILE_ATTRIBUTE_TEMPORARY|FILE_FLAG_DELETE_ON_CLOSE,NULL);
|
|
if (dbd_hFile == INVALID_HANDLE_VALUE)
|
|
{
|
|
return _LANG_ERRORWRITINGTEMP;
|
|
}
|
|
}
|
|
dbd_srcpos=SetSelfFilePointer(0,FILE_CURRENT);
|
|
dbd_fulllen=dbd_srcpos-sizeof(h)+h.length_of_all_following_data-((h.flags&FH_FLAGS_CRC)?4:0);
|
|
#endif
|
|
#endif
|
|
|
|
if (GetCompressedDataFromDataBlockToMemory(-1,data,h.length_of_header) != h.length_of_header)
|
|
{
|
|
GlobalFree((HGLOBAL)data);
|
|
return _LANG_INVALIDCRC;
|
|
}
|
|
|
|
#if !defined(NSIS_COMPRESS_WHOLE) || !defined(NSIS_CONFIG_COMPRESSION_SUPPORT)
|
|
g_db_offset=SetSelfFilePointer(0,FILE_CURRENT);
|
|
#else
|
|
g_db_offset=dbd_pos;
|
|
#endif
|
|
|
|
g_inst_combinedheader=data;
|
|
|
|
inst_flags=((common_header *)data)->flags;
|
|
|
|
#ifdef NSIS_CONFIG_UNINSTALL_SUPPORT
|
|
if (h.flags&FH_FLAGS_UNINSTALL)
|
|
{
|
|
g_is_uninstaller++;
|
|
g_inst_page=(page *) (g_inst_uninstheader + 1);
|
|
}
|
|
else
|
|
#endif
|
|
{
|
|
g_inst_section=(section *) (g_inst_header + 1);
|
|
num_sections=g_inst_header->num_sections;
|
|
g_inst_page=(page *) (g_inst_section + num_sections);
|
|
}
|
|
g_inst_entry=(entry *) (g_inst_page + g_inst_cmnheader->num_pages);
|
|
g_db_strtab = (char *) (g_inst_entry + g_inst_cmnheader->num_entries);
|
|
return 0;
|
|
}
|
|
|
|
const char * NSISCALL GetStringFromStringTab(int offs)
|
|
{
|
|
return g_db_strtab+(offs < 0 ? LANG_STR_TAB(offs) : offs);
|
|
}
|
|
|
|
#define IBUFSIZE 16384
|
|
#define OBUFSIZE 32768
|
|
|
|
// returns -3 if compression error/eof/etc
|
|
|
|
#if !defined(NSIS_COMPRESS_WHOLE) || !defined(NSIS_CONFIG_COMPRESSION_SUPPORT)
|
|
|
|
int NSISCALL _dodecomp(int offset, HANDLE hFileOut, char *outbuf, int outbuflen)
|
|
{
|
|
static char inbuffer[IBUFSIZE+OBUFSIZE];
|
|
char *outbuffer;
|
|
int outbuffer_len=outbuf?outbuflen:OBUFSIZE;
|
|
int retval=0;
|
|
int input_len;
|
|
|
|
outbuffer = outbuf?outbuf:(inbuffer+IBUFSIZE);
|
|
|
|
if (offset>=0)
|
|
{
|
|
/*
|
|
int lp=SetSelfFilePointer(0,FILE_CURRENT);
|
|
if (lp > g_db_offset+offset)
|
|
{
|
|
char buf[1023];
|
|
wsprintf(buf,"going from %d to %d",lp,g_db_offset+offset);
|
|
MessageBox(NULL,buf,"seeking back",MB_OK);
|
|
}
|
|
*/
|
|
SetSelfFilePointer(g_db_offset+offset,FILE_BEGIN);
|
|
}
|
|
|
|
if (!ReadSelfFile((LPVOID)&input_len,sizeof(int))) return -3;
|
|
|
|
#ifdef NSIS_CONFIG_COMPRESSION_SUPPORT
|
|
if (input_len & 0x80000000) // compressed
|
|
{
|
|
inflateReset(&g_inflate_stream);
|
|
input_len &= 0x7fffffff; // take off top bit.
|
|
|
|
while (input_len > 0)
|
|
{
|
|
int l=min(input_len,IBUFSIZE);
|
|
int err;
|
|
|
|
if (!ReadSelfFile((LPVOID)inbuffer,l)) return -3;
|
|
|
|
g_inflate_stream.next_in = inbuffer;
|
|
g_inflate_stream.avail_in = l;
|
|
input_len-=l;
|
|
|
|
for (;;)
|
|
{
|
|
int u;
|
|
g_inflate_stream.next_out = outbuffer;
|
|
g_inflate_stream.avail_out = (unsigned int)outbuffer_len;
|
|
|
|
err=inflate(&g_inflate_stream);
|
|
|
|
if (err<0) return -4;
|
|
|
|
u=(char*)g_inflate_stream.next_out - outbuffer;
|
|
|
|
if (!u) break;
|
|
|
|
if (!outbuf)
|
|
{
|
|
DWORD r;
|
|
if (!WriteFile(hFileOut,outbuffer,u,&r,NULL) || (int)r != u) return -2;
|
|
retval+=u;
|
|
}
|
|
else
|
|
{
|
|
retval+=u;
|
|
outbuffer_len-=u;
|
|
outbuffer=g_inflate_stream.next_out;
|
|
if (outbuffer_len < 1) return retval;
|
|
}
|
|
if (err==Z_STREAM_END) return retval;
|
|
}
|
|
}
|
|
}
|
|
else
|
|
#endif//NSIS_CONFIG_COMPRESSION_SUPPORT
|
|
{
|
|
if (!outbuf)
|
|
{
|
|
while (input_len > 0)
|
|
{
|
|
DWORD l=min(input_len,outbuffer_len);
|
|
DWORD t;
|
|
if (!ReadSelfFile((LPVOID)inbuffer,l)) return -3;
|
|
if (!WriteFile(hFileOut,inbuffer,l,&t,NULL) || l!=t) return -2;
|
|
retval+=l;
|
|
input_len-=l;
|
|
}
|
|
}
|
|
else
|
|
{
|
|
int l=min(input_len,outbuflen);
|
|
if (!ReadSelfFile((LPVOID)outbuf,l)) return -3;
|
|
retval=l;
|
|
}
|
|
}
|
|
return retval;
|
|
}
|
|
#else//NSIS_COMPRESS_WHOLE
|
|
|
|
static char _inbuffer[IBUFSIZE];
|
|
static char _outbuffer[OBUFSIZE];
|
|
extern int m_length;
|
|
extern int m_pos;
|
|
extern BOOL CALLBACK verProc(HWND, UINT, WPARAM, LPARAM);
|
|
extern BOOL CALLBACK DialogProc(HWND, UINT, WPARAM, LPARAM);
|
|
static int NSISCALL __ensuredata(int amount)
|
|
{
|
|
HWND hwnd=NULL;
|
|
unsigned int verify_time=GetTickCount()+500;
|
|
int needed=amount-(dbd_size-dbd_pos);
|
|
if (needed>0)
|
|
{
|
|
SetSelfFilePointer(dbd_srcpos,FILE_BEGIN);
|
|
SetFilePointer(dbd_hFile,dbd_size,NULL,FILE_BEGIN);
|
|
m_length=needed;
|
|
m_pos=0;
|
|
for (;;)
|
|
{
|
|
int err;
|
|
int l=min(IBUFSIZE,dbd_fulllen-dbd_srcpos);
|
|
if (!ReadSelfFile((LPVOID)_inbuffer,l)) return -1;
|
|
dbd_srcpos+=l;
|
|
g_inflate_stream.next_in=_inbuffer;
|
|
g_inflate_stream.avail_in=l;
|
|
do
|
|
{
|
|
DWORD r,t;
|
|
#ifdef NSIS_CONFIG_VISIBLE_SUPPORT
|
|
if (g_inst_cmnheader)
|
|
#ifdef NSIS_CONFIG_SILENT_SUPPORT
|
|
if (!(inst_flags&(CH_FLAGS_SILENT|CH_FLAGS_SILENT_LOG)))
|
|
#endif
|
|
{
|
|
if (hwnd) {
|
|
MSG msg;
|
|
m_pos=m_length-(amount-(dbd_size-dbd_pos));
|
|
while (PeekMessage(&msg,NULL,0,0,PM_REMOVE)) DispatchMessage(&msg);
|
|
}
|
|
else if (GetWindowLong(g_hwnd,DWL_DLGPROC) != (long)DialogProc && GetTickCount() > verify_time)
|
|
hwnd=CreateDialogParam(
|
|
g_hInstance,
|
|
MAKEINTRESOURCE(IDD_VERIFY),
|
|
0,
|
|
verProc,
|
|
(LPARAM)_LANG_UNPACKING
|
|
);
|
|
}
|
|
#endif//NSIS_CONFIG_VISIBLE_SUPPORT
|
|
g_inflate_stream.next_out=_outbuffer;
|
|
g_inflate_stream.avail_out=OBUFSIZE;
|
|
err=inflate(&g_inflate_stream);
|
|
if (err<0)
|
|
{
|
|
return -3;
|
|
}
|
|
r=g_inflate_stream.next_out-_outbuffer;
|
|
if (r)
|
|
{
|
|
if (!WriteFile(dbd_hFile,_outbuffer,r,&t,NULL) || r != t)
|
|
{
|
|
return -2;
|
|
}
|
|
dbd_size+=r;
|
|
}
|
|
else if (g_inflate_stream.avail_in || !l) return -3;
|
|
else break;
|
|
}
|
|
while (g_inflate_stream.avail_in);
|
|
if (amount-(dbd_size-dbd_pos) <= 0) break;
|
|
}
|
|
SetFilePointer(dbd_hFile,dbd_pos,NULL,FILE_BEGIN);
|
|
}
|
|
if (hwnd) DestroyWindow(hwnd);
|
|
return 0;
|
|
}
|
|
|
|
|
|
int NSISCALL _dodecomp(int offset, HANDLE hFileOut, char *outbuf, int outbuflen)
|
|
{
|
|
DWORD r;
|
|
int input_len;
|
|
int retval;
|
|
if (offset>=0)
|
|
{
|
|
dbd_pos=g_db_offset+offset;
|
|
SetFilePointer(dbd_hFile,dbd_pos,NULL,FILE_BEGIN);
|
|
}
|
|
retval=__ensuredata(sizeof(int));
|
|
if (retval<0) return retval;
|
|
|
|
if (!ReadFile(dbd_hFile,(LPVOID)&input_len,sizeof(int),&r,NULL) || r!=sizeof(int)) return -3;
|
|
dbd_pos+=sizeof(int);
|
|
|
|
retval=__ensuredata(input_len);
|
|
if (retval < 0) return retval;
|
|
|
|
if (!outbuf)
|
|
{
|
|
while (input_len > 0)
|
|
{
|
|
DWORD t;
|
|
DWORD l=min(input_len,IBUFSIZE);
|
|
if (!ReadFile(dbd_hFile,(LPVOID)_inbuffer,l,&r,NULL) || l != r) return -3;
|
|
if (!WriteFile(hFileOut,_inbuffer,r,&t,NULL) || t != l) return -2;
|
|
retval+=r;
|
|
input_len-=r;
|
|
dbd_pos+=r;
|
|
}
|
|
}
|
|
else
|
|
{
|
|
if (!ReadFile(dbd_hFile,(LPVOID)outbuf,min(input_len,outbuflen),&r,NULL)) return -3;
|
|
retval=r;
|
|
dbd_pos+=r;
|
|
}
|
|
return retval;
|
|
}
|
|
#endif//NSIS_COMPRESS_WHOLE
|
|
|
|
BOOL NSISCALL ReadSelfFile(LPVOID lpBuffer, DWORD nNumberOfBytesToRead)
|
|
{
|
|
DWORD rd;
|
|
return ReadFile(g_db_hFile,lpBuffer,nNumberOfBytesToRead,&rd,NULL) && (rd == nNumberOfBytesToRead);
|
|
}
|
|
|
|
DWORD NSISCALL SetSelfFilePointer(LONG lDistanceToMove, DWORD dwMoveMethod)
|
|
{
|
|
return SetFilePointer(g_db_hFile,lDistanceToMove,NULL,dwMoveMethod);
|
|
}
|