1999-03-13 12:54:55 +00:00
|
|
|
/*
|
|
|
|
* Win32s Universal Thunk API
|
|
|
|
*
|
|
|
|
* Copyright 1999 Ulrich Weigand
|
|
|
|
*/
|
|
|
|
|
1999-07-24 10:27:58 +00:00
|
|
|
#include "wine/winbase16.h"
|
1999-03-13 12:54:55 +00:00
|
|
|
#include "heap.h"
|
|
|
|
#include "module.h"
|
|
|
|
#include "selectors.h"
|
|
|
|
#include "callback.h"
|
1999-04-01 10:05:40 +00:00
|
|
|
#include "process.h"
|
1999-05-14 08:17:14 +00:00
|
|
|
#include "debugtools.h"
|
1999-03-13 12:54:55 +00:00
|
|
|
|
2000-01-29 19:49:58 +00:00
|
|
|
DEFAULT_DEBUG_CHANNEL(thunk);
|
1999-04-19 14:56:29 +00:00
|
|
|
|
1999-04-25 12:36:53 +00:00
|
|
|
#include "pshpack1.h"
|
1999-03-13 12:54:55 +00:00
|
|
|
|
|
|
|
typedef struct
|
|
|
|
{
|
|
|
|
BYTE popl_eax;
|
|
|
|
BYTE pushl;
|
|
|
|
DWORD target;
|
|
|
|
BYTE pushl_eax;
|
|
|
|
BYTE ljmp;
|
|
|
|
DWORD utglue16;
|
|
|
|
|
|
|
|
} UT16THUNK;
|
|
|
|
|
|
|
|
typedef struct
|
|
|
|
{
|
|
|
|
BYTE popl_eax;
|
|
|
|
BYTE pushl;
|
|
|
|
DWORD target;
|
|
|
|
BYTE pushl_eax;
|
|
|
|
BYTE jmp;
|
|
|
|
DWORD utglue32;
|
|
|
|
|
|
|
|
} UT32THUNK;
|
|
|
|
|
1999-04-25 12:36:53 +00:00
|
|
|
#include "poppack.h"
|
1999-03-13 12:54:55 +00:00
|
|
|
|
1999-04-01 10:05:40 +00:00
|
|
|
typedef struct _UTINFO
|
1999-03-13 12:54:55 +00:00
|
|
|
{
|
1999-04-01 10:05:40 +00:00
|
|
|
struct _UTINFO *next;
|
1999-03-13 12:54:55 +00:00
|
|
|
HMODULE hModule;
|
|
|
|
HMODULE16 hModule16;
|
|
|
|
|
|
|
|
UT16THUNK ut16;
|
|
|
|
UT32THUNK ut32;
|
|
|
|
|
|
|
|
} UTINFO;
|
|
|
|
|
2000-04-15 20:44:21 +00:00
|
|
|
typedef DWORD (CALLBACK *UTGLUEPROC)( LPVOID lpBuff, DWORD dwUserDefined );
|
|
|
|
|
1999-03-13 12:54:55 +00:00
|
|
|
BOOL WINAPI UTRegister( HMODULE hModule, LPSTR lpsz16BITDLL,
|
|
|
|
LPSTR lpszInitName, LPSTR lpszProcName,
|
|
|
|
FARPROC *ppfn32Thunk, FARPROC pfnUT32CallBack,
|
|
|
|
LPVOID lpBuff );
|
|
|
|
|
|
|
|
VOID WINAPI UTUnRegister( HMODULE hModule );
|
|
|
|
|
2000-08-14 14:29:22 +00:00
|
|
|
/* ### start build ### */
|
|
|
|
extern LONG CALLBACK UTTHUNK_CallTo16_long_ll(FARPROC16,LONG,LONG);
|
|
|
|
/* ### stop build ### */
|
1999-03-13 12:54:55 +00:00
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* UTGlue16 (WPROCS.*)
|
|
|
|
*/
|
2000-04-15 20:44:21 +00:00
|
|
|
DWORD WINAPI UTGlue16( LPVOID lpBuff, DWORD dwUserDefined, SEGPTR *translationList,
|
|
|
|
UTGLUEPROC target )
|
1999-03-13 12:54:55 +00:00
|
|
|
{
|
|
|
|
INT i;
|
|
|
|
|
|
|
|
/* Convert arguments to flat pointers */
|
|
|
|
|
|
|
|
if ( translationList )
|
|
|
|
for ( i = 0; translationList[i]; i++ )
|
|
|
|
{
|
|
|
|
LPVOID flatPtr = PTR_SEG_TO_LIN( translationList[i] );
|
|
|
|
*(LPVOID *)flatPtr = PTR_SEG_TO_LIN( *(SEGPTR *)flatPtr );
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Call 32-bit routine */
|
|
|
|
|
|
|
|
return target( lpBuff, dwUserDefined );
|
|
|
|
}
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* UTGlue32
|
|
|
|
*/
|
1999-06-26 14:58:24 +00:00
|
|
|
static DWORD WINAPI UTGlue32( FARPROC16 target, LPVOID lpBuff, DWORD dwUserDefined,
|
|
|
|
LPVOID translationList[] )
|
1999-03-13 12:54:55 +00:00
|
|
|
{
|
|
|
|
SEGPTR segBuff, *segptrList = NULL;
|
|
|
|
INT i, nList = 0;
|
|
|
|
DWORD retv;
|
|
|
|
|
|
|
|
/* Convert arguments to SEGPTRs */
|
|
|
|
|
|
|
|
if ( translationList )
|
|
|
|
for ( nList = 0; translationList[nList]; nList++ )
|
|
|
|
;
|
|
|
|
|
|
|
|
if ( nList )
|
|
|
|
{
|
|
|
|
segptrList = HeapAlloc( GetProcessHeap(), 0, sizeof(SEGPTR)*nList );
|
|
|
|
if ( !segptrList )
|
|
|
|
{
|
1999-05-14 08:17:14 +00:00
|
|
|
FIXME("Unable to allocate segptrList!" );
|
1999-03-13 12:54:55 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
for ( i = 0; i < nList; i++ )
|
|
|
|
segptrList[i] = *(SEGPTR *)translationList[i]
|
|
|
|
= MapLS( *(LPVOID *)translationList[i] );
|
|
|
|
}
|
|
|
|
|
|
|
|
segBuff = MapLS( lpBuff );
|
|
|
|
|
|
|
|
/* Call 16-bit routine */
|
|
|
|
|
2000-08-14 14:29:22 +00:00
|
|
|
retv = UTTHUNK_CallTo16_long_ll( target, segBuff, dwUserDefined );
|
1999-03-13 12:54:55 +00:00
|
|
|
|
|
|
|
/* Free temporary selectors */
|
|
|
|
|
|
|
|
UnMapLS( segBuff );
|
|
|
|
|
|
|
|
if ( nList )
|
|
|
|
{
|
|
|
|
for ( i = 0; i < nList; i++ )
|
|
|
|
UnMapLS( segptrList[i] );
|
|
|
|
|
|
|
|
HeapFree( GetProcessHeap(), 0, segptrList );
|
|
|
|
}
|
|
|
|
|
|
|
|
return retv;
|
|
|
|
}
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* UTAlloc
|
|
|
|
*/
|
|
|
|
static UTINFO *UTAlloc( HMODULE hModule, HMODULE16 hModule16,
|
|
|
|
FARPROC16 target16, FARPROC target32 )
|
|
|
|
{
|
1999-07-24 10:27:58 +00:00
|
|
|
static FARPROC16 UTGlue16_Segptr = NULL;
|
|
|
|
UTINFO *ut;
|
|
|
|
|
|
|
|
if ( !UTGlue16_Segptr )
|
|
|
|
{
|
|
|
|
HMODULE16 hModule = GetModuleHandle16( "WPROCS" );
|
|
|
|
int ordinal = NE_GetOrdinal( hModule, "UTGlue16" );
|
|
|
|
if ( hModule && ordinal )
|
|
|
|
UTGlue16_Segptr = NE_GetEntryPoint( hModule, ordinal );
|
|
|
|
|
|
|
|
if ( !UTGlue16_Segptr ) return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
ut = HeapAlloc( SegptrHeap, HEAP_ZERO_MEMORY, sizeof(UTINFO) );
|
1999-03-13 12:54:55 +00:00
|
|
|
if ( !ut ) return NULL;
|
|
|
|
|
|
|
|
ut->hModule = hModule;
|
|
|
|
ut->hModule16 = hModule16;
|
|
|
|
|
|
|
|
ut->ut16.popl_eax = 0x58;
|
|
|
|
ut->ut16.pushl = 0x68;
|
|
|
|
ut->ut16.target = (DWORD)target32;
|
|
|
|
ut->ut16.pushl_eax = 0x50;
|
|
|
|
ut->ut16.ljmp = 0xea;
|
1999-07-24 10:27:58 +00:00
|
|
|
ut->ut16.utglue16 = (DWORD)UTGlue16_Segptr;
|
1999-03-13 12:54:55 +00:00
|
|
|
|
|
|
|
ut->ut32.popl_eax = 0x58;
|
|
|
|
ut->ut32.pushl = 0x68;
|
|
|
|
ut->ut32.target = (DWORD)target16;
|
|
|
|
ut->ut32.pushl_eax = 0x50;
|
|
|
|
ut->ut32.jmp = 0xe9;
|
|
|
|
ut->ut32.utglue32 = (DWORD)UTGlue32 - ((DWORD)&ut->ut32.utglue32 + sizeof(DWORD));
|
|
|
|
|
1999-04-01 10:05:40 +00:00
|
|
|
ut->next = PROCESS_Current()->UTState;
|
|
|
|
PROCESS_Current()->UTState = ut;
|
1999-03-13 12:54:55 +00:00
|
|
|
|
|
|
|
return ut;
|
|
|
|
}
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* UTFree
|
|
|
|
*/
|
|
|
|
static void UTFree( UTINFO *ut )
|
|
|
|
{
|
|
|
|
UTINFO **ptr;
|
|
|
|
|
1999-04-01 10:05:40 +00:00
|
|
|
for ( ptr = &PROCESS_Current()->UTState; *ptr; ptr = &(*ptr)->next )
|
1999-03-13 12:54:55 +00:00
|
|
|
if ( *ptr == ut )
|
|
|
|
{
|
|
|
|
*ptr = ut->next;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
HeapFree( SegptrHeap, 0, ut );
|
|
|
|
}
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* UTFind
|
|
|
|
*/
|
|
|
|
static UTINFO *UTFind( HMODULE hModule )
|
|
|
|
{
|
|
|
|
UTINFO *ut;
|
|
|
|
|
1999-04-01 10:05:40 +00:00
|
|
|
for ( ut = PROCESS_Current()->UTState; ut; ut =ut->next )
|
1999-03-13 12:54:55 +00:00
|
|
|
if ( ut->hModule == hModule )
|
|
|
|
break;
|
|
|
|
|
|
|
|
return ut;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* UTRegister (KERNEL32.697)
|
|
|
|
*/
|
|
|
|
BOOL WINAPI UTRegister( HMODULE hModule, LPSTR lpsz16BITDLL,
|
|
|
|
LPSTR lpszInitName, LPSTR lpszProcName,
|
|
|
|
FARPROC *ppfn32Thunk, FARPROC pfnUT32CallBack,
|
|
|
|
LPVOID lpBuff )
|
|
|
|
{
|
|
|
|
UTINFO *ut;
|
|
|
|
HMODULE16 hModule16;
|
|
|
|
FARPROC16 target16, init16;
|
|
|
|
|
|
|
|
/* Load 16-bit DLL and get UTProc16 entry point */
|
|
|
|
|
|
|
|
if ( (hModule16 = LoadLibrary16( lpsz16BITDLL )) <= 32
|
|
|
|
|| (target16 = WIN32_GetProcAddress16( hModule16, lpszProcName )) == 0 )
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
/* Allocate UTINFO struct */
|
|
|
|
|
1999-04-01 10:05:40 +00:00
|
|
|
EnterCriticalSection( &PROCESS_Current()->crit_section );
|
1999-03-13 12:54:55 +00:00
|
|
|
if ( (ut = UTFind( hModule )) != NULL )
|
|
|
|
ut = NULL;
|
|
|
|
else
|
|
|
|
ut = UTAlloc( hModule, hModule16, target16, pfnUT32CallBack );
|
1999-04-01 10:05:40 +00:00
|
|
|
LeaveCriticalSection( &PROCESS_Current()->crit_section );
|
1999-03-13 12:54:55 +00:00
|
|
|
|
|
|
|
if ( !ut )
|
|
|
|
{
|
|
|
|
FreeLibrary16( hModule16 );
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Call UTInit16 if present */
|
|
|
|
|
|
|
|
if ( lpszInitName
|
|
|
|
&& (init16 = WIN32_GetProcAddress16( hModule16, lpszInitName )) != 0 )
|
|
|
|
{
|
|
|
|
SEGPTR callback = SEGPTR_GET( &ut->ut16 );
|
|
|
|
SEGPTR segBuff = MapLS( lpBuff );
|
|
|
|
|
2000-08-14 14:29:22 +00:00
|
|
|
if ( !UTTHUNK_CallTo16_long_ll( init16, callback, segBuff ) )
|
1999-03-13 12:54:55 +00:00
|
|
|
{
|
|
|
|
UnMapLS( segBuff );
|
|
|
|
UTUnRegister( hModule );
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
UnMapLS( segBuff );
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Return 32-bit thunk */
|
|
|
|
|
|
|
|
*ppfn32Thunk = (FARPROC) &ut->ut32;
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* UTUnRegister (KERNEL32.698)
|
|
|
|
*/
|
|
|
|
VOID WINAPI UTUnRegister( HMODULE hModule )
|
|
|
|
{
|
|
|
|
UTINFO *ut;
|
|
|
|
HMODULE16 hModule16 = 0;
|
|
|
|
|
1999-04-01 10:05:40 +00:00
|
|
|
EnterCriticalSection( &PROCESS_Current()->crit_section );
|
1999-03-13 12:54:55 +00:00
|
|
|
ut = UTFind( hModule );
|
|
|
|
if ( !ut )
|
|
|
|
{
|
|
|
|
hModule16 = ut->hModule16;
|
|
|
|
UTFree( ut );
|
|
|
|
}
|
1999-04-01 10:05:40 +00:00
|
|
|
LeaveCriticalSection( &PROCESS_Current()->crit_section );
|
1999-03-13 12:54:55 +00:00
|
|
|
|
|
|
|
if ( hModule16 )
|
|
|
|
FreeLibrary16( hModule16 );
|
|
|
|
}
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* UTInit16 (KERNEL.494)
|
|
|
|
*/
|
|
|
|
WORD WINAPI UTInit16( DWORD x1, DWORD x2, DWORD x3, DWORD x4 )
|
|
|
|
{
|
1999-05-14 08:17:14 +00:00
|
|
|
FIXME("(%08lx, %08lx, %08lx, %08lx): stub\n", x1, x2, x3, x4 );
|
1999-03-13 12:54:55 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|