1999-01-31 11:11:54 +01:00
|
|
|
/*
|
|
|
|
* Implementation of VERSION.DLL - Resource Access routines
|
|
|
|
*
|
|
|
|
* Copyright 1996,1997 Marcus Meissner
|
|
|
|
* Copyright 1997 David Cuthbert
|
|
|
|
* Copyright 1999 Ulrich Weigand
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
2000-02-10 23:15:21 +01:00
|
|
|
#include <sys/types.h>
|
|
|
|
#include <unistd.h>
|
1999-01-31 11:11:54 +01:00
|
|
|
|
1999-02-17 14:51:06 +01:00
|
|
|
#include "neexe.h"
|
|
|
|
#include "module.h"
|
|
|
|
#include "winver.h"
|
1999-01-31 11:11:54 +01:00
|
|
|
#include "lzexpand.h"
|
1999-05-14 10:17:14 +02:00
|
|
|
#include "debugtools.h"
|
1999-01-31 11:11:54 +01:00
|
|
|
|
2000-02-10 23:15:21 +01:00
|
|
|
DEFAULT_DEBUG_CHANNEL(ver);
|
1999-04-19 16:56:29 +02:00
|
|
|
|
1999-01-31 11:11:54 +01:00
|
|
|
|
|
|
|
/***********************************************************************
|
|
|
|
* read_xx_header [internal]
|
|
|
|
*/
|
1999-02-26 12:11:13 +01:00
|
|
|
static int read_xx_header( HFILE lzfd )
|
1999-01-31 11:11:54 +01:00
|
|
|
{
|
|
|
|
IMAGE_DOS_HEADER mzh;
|
|
|
|
char magic[3];
|
|
|
|
|
1999-02-26 12:11:13 +01:00
|
|
|
LZSeek( lzfd, 0, SEEK_SET );
|
|
|
|
if ( sizeof(mzh) != LZRead( lzfd, &mzh, sizeof(mzh) ) )
|
1999-01-31 11:11:54 +01:00
|
|
|
return 0;
|
|
|
|
if ( mzh.e_magic != IMAGE_DOS_SIGNATURE )
|
|
|
|
return 0;
|
|
|
|
|
1999-02-26 12:11:13 +01:00
|
|
|
LZSeek( lzfd, mzh.e_lfanew, SEEK_SET );
|
|
|
|
if ( 2 != LZRead( lzfd, magic, 2 ) )
|
1999-01-31 11:11:54 +01:00
|
|
|
return 0;
|
|
|
|
|
1999-02-26 12:11:13 +01:00
|
|
|
LZSeek( lzfd, mzh.e_lfanew, SEEK_SET );
|
1999-01-31 11:11:54 +01:00
|
|
|
|
|
|
|
if ( magic[0] == 'N' && magic[1] == 'E' )
|
|
|
|
return IMAGE_OS2_SIGNATURE;
|
|
|
|
if ( magic[0] == 'P' && magic[1] == 'E' )
|
|
|
|
return IMAGE_NT_SIGNATURE;
|
|
|
|
|
|
|
|
magic[2] = '\0';
|
1999-05-14 10:17:14 +02:00
|
|
|
WARN("Can't handle %s files.\n", magic );
|
1999-01-31 11:11:54 +01:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/***********************************************************************
|
|
|
|
* load_ne_resource [internal]
|
|
|
|
*/
|
1999-02-26 12:11:13 +01:00
|
|
|
static BOOL find_ne_resource( HFILE lzfd, LPCSTR typeid, LPCSTR resid,
|
1999-01-31 11:11:54 +01:00
|
|
|
DWORD *resLen, DWORD *resOff )
|
|
|
|
{
|
|
|
|
IMAGE_OS2_HEADER nehd;
|
|
|
|
NE_TYPEINFO *typeInfo;
|
|
|
|
NE_NAMEINFO *nameInfo;
|
|
|
|
DWORD nehdoffset;
|
|
|
|
LPBYTE resTab;
|
|
|
|
DWORD resTabSize;
|
|
|
|
|
|
|
|
/* Read in NE header */
|
1999-02-26 12:11:13 +01:00
|
|
|
nehdoffset = LZSeek( lzfd, 0, SEEK_CUR );
|
|
|
|
if ( sizeof(nehd) != LZRead( lzfd, &nehd, sizeof(nehd) ) ) return 0;
|
1999-01-31 11:11:54 +01:00
|
|
|
|
2000-04-18 13:58:24 +02:00
|
|
|
resTabSize = nehd.ne_restab - nehd.ne_rsrctab;
|
1999-01-31 11:11:54 +01:00
|
|
|
if ( !resTabSize )
|
|
|
|
{
|
1999-05-14 10:17:14 +02:00
|
|
|
TRACE("No resources in NE dll\n" );
|
1999-01-31 11:11:54 +01:00
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Read in resource table */
|
|
|
|
resTab = HeapAlloc( GetProcessHeap(), 0, resTabSize );
|
|
|
|
if ( !resTab ) return FALSE;
|
|
|
|
|
2000-04-18 13:58:24 +02:00
|
|
|
LZSeek( lzfd, nehd.ne_rsrctab + nehdoffset, SEEK_SET );
|
1999-02-26 12:11:13 +01:00
|
|
|
if ( resTabSize != LZRead( lzfd, resTab, resTabSize ) )
|
1999-01-31 11:11:54 +01:00
|
|
|
{
|
|
|
|
HeapFree( GetProcessHeap(), 0, resTab );
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Find resource */
|
|
|
|
typeInfo = (NE_TYPEINFO *)(resTab + 2);
|
|
|
|
typeInfo = NE_FindTypeSection( resTab, typeInfo, typeid );
|
|
|
|
if ( !typeInfo )
|
|
|
|
{
|
1999-05-14 10:17:14 +02:00
|
|
|
TRACE("No typeid entry found for %p\n", typeid );
|
1999-01-31 11:11:54 +01:00
|
|
|
HeapFree( GetProcessHeap(), 0, resTab );
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
nameInfo = NE_FindResourceFromType( resTab, typeInfo, resid );
|
|
|
|
if ( !nameInfo )
|
|
|
|
{
|
1999-05-14 10:17:14 +02:00
|
|
|
TRACE("No resid entry found for %p\n", typeid );
|
1999-01-31 11:11:54 +01:00
|
|
|
HeapFree( GetProcessHeap(), 0, resTab );
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Return resource data */
|
1999-02-09 15:15:48 +01:00
|
|
|
if ( resLen ) *resLen = nameInfo->length << *(WORD *)resTab;
|
|
|
|
if ( resOff ) *resOff = nameInfo->offset << *(WORD *)resTab;
|
1999-01-31 11:11:54 +01:00
|
|
|
|
|
|
|
HeapFree( GetProcessHeap(), 0, resTab );
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
/***********************************************************************
|
|
|
|
* load_pe_resource [internal]
|
|
|
|
*/
|
1999-02-26 12:11:13 +01:00
|
|
|
static BOOL find_pe_resource( HFILE lzfd, LPCSTR typeid, LPCSTR resid,
|
1999-01-31 11:11:54 +01:00
|
|
|
DWORD *resLen, DWORD *resOff )
|
|
|
|
{
|
|
|
|
IMAGE_NT_HEADERS pehd;
|
|
|
|
DWORD pehdoffset;
|
|
|
|
PIMAGE_DATA_DIRECTORY resDataDir;
|
|
|
|
PIMAGE_SECTION_HEADER sections;
|
|
|
|
LPBYTE resSection;
|
|
|
|
DWORD resSectionSize;
|
|
|
|
DWORD resDir;
|
|
|
|
PIMAGE_RESOURCE_DIRECTORY resPtr;
|
|
|
|
PIMAGE_RESOURCE_DATA_ENTRY resData;
|
|
|
|
int i, nSections;
|
|
|
|
|
|
|
|
|
|
|
|
/* Read in PE header */
|
1999-02-26 12:11:13 +01:00
|
|
|
pehdoffset = LZSeek( lzfd, 0, SEEK_CUR );
|
|
|
|
if ( sizeof(pehd) != LZRead( lzfd, &pehd, sizeof(pehd) ) ) return 0;
|
1999-01-31 11:11:54 +01:00
|
|
|
|
|
|
|
resDataDir = pehd.OptionalHeader.DataDirectory+IMAGE_FILE_RESOURCE_DIRECTORY;
|
|
|
|
if ( !resDataDir->Size )
|
|
|
|
{
|
1999-05-14 10:17:14 +02:00
|
|
|
TRACE("No resources in PE dll\n" );
|
1999-01-31 11:11:54 +01:00
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Read in section table */
|
|
|
|
nSections = pehd.FileHeader.NumberOfSections;
|
|
|
|
sections = HeapAlloc( GetProcessHeap(), 0,
|
|
|
|
nSections * sizeof(IMAGE_SECTION_HEADER) );
|
|
|
|
if ( !sections ) return FALSE;
|
|
|
|
|
1999-02-26 12:11:13 +01:00
|
|
|
LZSeek( lzfd, pehdoffset +
|
1999-01-31 11:11:54 +01:00
|
|
|
sizeof(DWORD) + /* Signature */
|
|
|
|
sizeof(IMAGE_FILE_HEADER) +
|
|
|
|
pehd.FileHeader.SizeOfOptionalHeader, SEEK_SET );
|
|
|
|
|
|
|
|
if ( nSections * sizeof(IMAGE_SECTION_HEADER) !=
|
1999-02-26 12:11:13 +01:00
|
|
|
LZRead( lzfd, sections, nSections * sizeof(IMAGE_SECTION_HEADER) ) )
|
1999-01-31 11:11:54 +01:00
|
|
|
{
|
|
|
|
HeapFree( GetProcessHeap(), 0, sections );
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Find resource section */
|
|
|
|
for ( i = 0; i < nSections; i++ )
|
|
|
|
if ( resDataDir->VirtualAddress >= sections[i].VirtualAddress
|
|
|
|
&& resDataDir->VirtualAddress < sections[i].VirtualAddress +
|
|
|
|
sections[i].SizeOfRawData )
|
|
|
|
break;
|
|
|
|
|
|
|
|
if ( i == nSections )
|
|
|
|
{
|
|
|
|
HeapFree( GetProcessHeap(), 0, sections );
|
1999-05-14 10:17:14 +02:00
|
|
|
TRACE("Couldn't find resource section\n" );
|
1999-01-31 11:11:54 +01:00
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Read in resource section */
|
|
|
|
resSectionSize = sections[i].SizeOfRawData;
|
|
|
|
resSection = HeapAlloc( GetProcessHeap(), 0, resSectionSize );
|
|
|
|
if ( !resSection )
|
|
|
|
{
|
|
|
|
HeapFree( GetProcessHeap(), 0, sections );
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
1999-02-26 12:11:13 +01:00
|
|
|
LZSeek( lzfd, sections[i].PointerToRawData, SEEK_SET );
|
|
|
|
if ( resSectionSize != LZRead( lzfd, resSection, resSectionSize ) )
|
1999-01-31 11:11:54 +01:00
|
|
|
{
|
|
|
|
HeapFree( GetProcessHeap(), 0, resSection );
|
|
|
|
HeapFree( GetProcessHeap(), 0, sections );
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Find resource */
|
|
|
|
resDir = (DWORD)resSection +
|
|
|
|
(resDataDir->VirtualAddress - sections[i].VirtualAddress);
|
|
|
|
|
|
|
|
resPtr = (PIMAGE_RESOURCE_DIRECTORY)resDir;
|
|
|
|
resPtr = GetResDirEntryA( resPtr, typeid, resDir, FALSE );
|
|
|
|
if ( !resPtr )
|
|
|
|
{
|
1999-05-14 10:17:14 +02:00
|
|
|
TRACE("No typeid entry found for %p\n", typeid );
|
1999-01-31 11:11:54 +01:00
|
|
|
HeapFree( GetProcessHeap(), 0, resSection );
|
|
|
|
HeapFree( GetProcessHeap(), 0, sections );
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
resPtr = GetResDirEntryA( resPtr, resid, resDir, FALSE );
|
|
|
|
if ( !resPtr )
|
|
|
|
{
|
1999-05-14 10:17:14 +02:00
|
|
|
TRACE("No resid entry found for %p\n", resid );
|
1999-01-31 11:11:54 +01:00
|
|
|
HeapFree( GetProcessHeap(), 0, resSection );
|
|
|
|
HeapFree( GetProcessHeap(), 0, sections );
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
resPtr = GetResDirEntryA( resPtr, 0, resDir, TRUE );
|
|
|
|
if ( !resPtr )
|
|
|
|
{
|
1999-05-14 10:17:14 +02:00
|
|
|
TRACE("No default language entry found for %p\n", resid );
|
1999-01-31 11:11:54 +01:00
|
|
|
HeapFree( GetProcessHeap(), 0, resSection );
|
|
|
|
HeapFree( GetProcessHeap(), 0, sections );
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Find resource data section */
|
|
|
|
resData = (PIMAGE_RESOURCE_DATA_ENTRY)resPtr;
|
|
|
|
for ( i = 0; i < nSections; i++ )
|
|
|
|
if ( resData->OffsetToData >= sections[i].VirtualAddress
|
|
|
|
&& resData->OffsetToData < sections[i].VirtualAddress +
|
|
|
|
sections[i].SizeOfRawData )
|
|
|
|
break;
|
|
|
|
|
|
|
|
if ( i == nSections )
|
|
|
|
{
|
1999-05-14 10:17:14 +02:00
|
|
|
TRACE("Couldn't find resource data section\n" );
|
1999-01-31 11:11:54 +01:00
|
|
|
HeapFree( GetProcessHeap(), 0, resSection );
|
|
|
|
HeapFree( GetProcessHeap(), 0, sections );
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Return resource data */
|
1999-02-09 15:15:48 +01:00
|
|
|
if ( resLen ) *resLen = resData->Size;
|
|
|
|
if ( resOff ) *resOff = resData->OffsetToData - sections[i].VirtualAddress
|
|
|
|
+ sections[i].PointerToRawData;
|
1999-01-31 11:11:54 +01:00
|
|
|
|
|
|
|
HeapFree( GetProcessHeap(), 0, resSection );
|
|
|
|
HeapFree( GetProcessHeap(), 0, sections );
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
/***********************************************************************
|
|
|
|
* GetFileResourceSize32 [internal]
|
|
|
|
*/
|
1999-02-26 12:11:13 +01:00
|
|
|
DWORD WINAPI GetFileResourceSize( LPCSTR lpszFileName,
|
1999-01-31 11:11:54 +01:00
|
|
|
LPCSTR lpszResType, LPCSTR lpszResId,
|
|
|
|
LPDWORD lpdwFileOffset )
|
|
|
|
{
|
1999-02-26 12:11:13 +01:00
|
|
|
BOOL retv = FALSE;
|
|
|
|
HFILE lzfd;
|
1999-01-31 11:11:54 +01:00
|
|
|
OFSTRUCT ofs;
|
|
|
|
DWORD reslen;
|
|
|
|
|
1999-05-14 10:17:14 +02:00
|
|
|
TRACE("(%s,type=0x%lx,id=0x%lx,off=%p)\n",
|
1999-01-31 11:11:54 +01:00
|
|
|
debugstr_a(lpszFileName), (LONG)lpszResType, (LONG)lpszResId,
|
|
|
|
lpszResId );
|
|
|
|
|
1999-02-26 12:11:13 +01:00
|
|
|
lzfd = LZOpenFileA( lpszFileName, &ofs, OF_READ );
|
1999-01-31 11:11:54 +01:00
|
|
|
if ( !lzfd ) return 0;
|
|
|
|
|
|
|
|
switch ( read_xx_header( lzfd ) )
|
|
|
|
{
|
|
|
|
case IMAGE_OS2_SIGNATURE:
|
|
|
|
retv = find_ne_resource( lzfd, lpszResType, lpszResId,
|
|
|
|
&reslen, lpdwFileOffset );
|
|
|
|
break;
|
|
|
|
|
|
|
|
case IMAGE_NT_SIGNATURE:
|
|
|
|
retv = find_pe_resource( lzfd, lpszResType, lpszResId,
|
|
|
|
&reslen, lpdwFileOffset );
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
1999-02-26 12:11:13 +01:00
|
|
|
LZClose( lzfd );
|
1999-01-31 11:11:54 +01:00
|
|
|
return retv? reslen : 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/***********************************************************************
|
|
|
|
* GetFileResource32 [internal]
|
|
|
|
*/
|
1999-02-26 12:11:13 +01:00
|
|
|
DWORD WINAPI GetFileResource( LPCSTR lpszFileName,
|
1999-01-31 11:11:54 +01:00
|
|
|
LPCSTR lpszResType, LPCSTR lpszResId,
|
|
|
|
DWORD dwFileOffset,
|
|
|
|
DWORD dwResLen, LPVOID lpvData )
|
|
|
|
{
|
1999-02-26 12:11:13 +01:00
|
|
|
BOOL retv = FALSE;
|
|
|
|
HFILE lzfd;
|
1999-01-31 11:11:54 +01:00
|
|
|
OFSTRUCT ofs;
|
1999-02-02 11:39:33 +01:00
|
|
|
DWORD reslen = dwResLen;
|
1999-01-31 11:11:54 +01:00
|
|
|
|
1999-05-14 10:17:14 +02:00
|
|
|
TRACE("(%s,type=0x%lx,id=0x%lx,off=%ld,len=%ld,data=%p)\n",
|
1999-01-31 11:11:54 +01:00
|
|
|
debugstr_a(lpszFileName), (LONG)lpszResType, (LONG)lpszResId,
|
|
|
|
dwFileOffset, dwResLen, lpvData );
|
|
|
|
|
1999-02-26 12:11:13 +01:00
|
|
|
lzfd = LZOpenFileA( lpszFileName, &ofs, OF_READ );
|
1999-01-31 11:11:54 +01:00
|
|
|
if ( lzfd == 0 ) return 0;
|
|
|
|
|
|
|
|
if ( !dwFileOffset )
|
|
|
|
{
|
|
|
|
switch ( read_xx_header( lzfd ) )
|
|
|
|
{
|
|
|
|
case IMAGE_OS2_SIGNATURE:
|
|
|
|
retv = find_ne_resource( lzfd, lpszResType, lpszResId,
|
|
|
|
&reslen, &dwFileOffset );
|
|
|
|
break;
|
|
|
|
|
|
|
|
case IMAGE_NT_SIGNATURE:
|
|
|
|
retv = find_pe_resource( lzfd, lpszResType, lpszResId,
|
|
|
|
&reslen, &dwFileOffset );
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( !retv )
|
|
|
|
{
|
1999-02-26 12:11:13 +01:00
|
|
|
LZClose( lzfd );
|
1999-01-31 11:11:54 +01:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
1999-02-26 12:11:13 +01:00
|
|
|
LZSeek( lzfd, dwFileOffset, SEEK_SET );
|
|
|
|
reslen = LZRead( lzfd, lpvData, min( reslen, dwResLen ) );
|
|
|
|
LZClose( lzfd );
|
1999-01-31 11:11:54 +01:00
|
|
|
|
|
|
|
return reslen;
|
|
|
|
}
|
|
|
|
|