thunk.c 79.5 KB
Newer Older
1 2 3 4 5 6 7
/*
 * KERNEL32 thunks and other undocumented stuff
 *
 * Copyright 1996, 1997 Alexandre Julliard
 * Copyright 1997, 1998 Marcus Meissner
 * Copyright 1998       Ulrich Weigand
 *
8 9 10 11 12 13 14 15 16 17 18 19
 * 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
20
 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
21 22
 */

23
#include "config.h"
24
#include "wine/port.h"
25

26 27
#include <string.h>
#include <sys/types.h>
28
#include <stdarg.h>
29
#include <stdio.h>
30 31 32
#ifdef HAVE_UNISTD_H
# include <unistd.h>
#endif
33

34 35
#ifdef __i386__

36 37 38
#include "windef.h"
#include "winbase.h"
#include "winerror.h"
39
#include "winternl.h"
40
#include "wownt32.h"
41 42
#include "wine/winbase16.h"

43
#include "wine/debug.h"
44
#include "wine/library.h"
45
#include "kernel_private.h"
46
#include "kernel16_private.h"
47

48
WINE_DEFAULT_DEBUG_CHANNEL(thunk);
49

50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121
struct ThunkDataCommon
{
    char                   magic[4];         /* 00 */
    DWORD                  checksum;         /* 04 */
};

struct ThunkDataLS16
{
    struct ThunkDataCommon common;           /* 00 */
    SEGPTR                 targetTable;      /* 08 */
    DWORD                  firstTime;        /* 0C */
};

struct ThunkDataLS32
{
    struct ThunkDataCommon common;           /* 00 */
    DWORD *                targetTable;      /* 08 */
    char                   lateBinding[4];   /* 0C */
    DWORD                  flags;            /* 10 */
    DWORD                  reserved1;        /* 14 */
    DWORD                  reserved2;        /* 18 */
    DWORD                  offsetQTThunk;    /* 1C */
    DWORD                  offsetFTProlog;   /* 20 */
};

struct ThunkDataSL16
{
    struct ThunkDataCommon common;            /* 00 */
    DWORD                  flags1;            /* 08 */
    DWORD                  reserved1;         /* 0C */
    struct ThunkDataSL *   fpData;            /* 10 */
    SEGPTR                 spData;            /* 14 */
    DWORD                  reserved2;         /* 18 */
    char                   lateBinding[4];    /* 1C */
    DWORD                  flags2;            /* 20 */
    DWORD                  reserved3;         /* 20 */
    SEGPTR                 apiDatabase;       /* 28 */
};

struct ThunkDataSL32
{
    struct ThunkDataCommon common;            /* 00 */
    DWORD                  reserved1;         /* 08 */
    struct ThunkDataSL *   data;              /* 0C */
    char                   lateBinding[4];    /* 10 */
    DWORD                  flags;             /* 14 */
    DWORD                  reserved2;         /* 18 */
    DWORD                  reserved3;         /* 1C */
    DWORD                  offsetTargetTable; /* 20 */
};

struct ThunkDataSL
{
#if 0
    This structure differs from the Win95 original,
    but this should not matter since it is strictly internal to
    the thunk handling routines in KRNL386 / KERNEL32.

    For reference, here is the Win95 layout:

    struct ThunkDataCommon common;            /* 00 */
    DWORD                  flags1;            /* 08 */
    SEGPTR                 apiDatabase;       /* 0C */
    WORD                   exePtr;            /* 10 */
    WORD                   segMBA;            /* 12 */
    DWORD                  lenMBATotal;       /* 14 */
    DWORD                  lenMBAUsed;        /* 18 */
    DWORD                  flags2;            /* 1C */
    char                   pszDll16[256];     /* 20 */
    char                   pszDll32[256];     /*120 */

    We do it differently since all our thunk handling is done
122
    by 32-bit code. Therefore we do not need to provide
123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148
    easy access to this data, especially the process target
    table database, for 16-bit code.
#endif

    struct ThunkDataCommon common;
    DWORD                  flags1;
    struct SLApiDB *       apiDB;
    struct SLTargetDB *    targetDB;
    DWORD                  flags2;
    char                   pszDll16[256];
    char                   pszDll32[256];
};

struct SLTargetDB
{
     struct SLTargetDB *   next;
     DWORD                 process;
     DWORD *               targetTable;
};

struct SLApiDB
{
    DWORD                  nrArgBytes;
    DWORD                  errorReturnValue;
};

149 150 151
SEGPTR CALL32_CBClient_RetAddr = 0;
SEGPTR CALL32_CBClientEx_RetAddr = 0;

152
extern void __wine_call_from_16_thunk();
153

154 155 156 157 158 159 160 161 162 163 164 165 166 167 168
/* Push a DWORD on the 32-bit stack */
static inline void stack32_push( CONTEXT86 *context, DWORD val )
{
    context->Esp -= sizeof(DWORD);
    *(DWORD *)context->Esp = val;
}

/* Pop a DWORD from the 32-bit stack */
static inline DWORD stack32_pop( CONTEXT86 *context )
{
    DWORD ret = *(DWORD *)context->Esp;
    context->Esp += sizeof(DWORD);
    return ret;
}

169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184
/***********************************************************************
 *                                                                     *
 *                 Win95 internal thunks                               *
 *                                                                     *
 ***********************************************************************/

/***********************************************************************
 *           LogApiThk    (KERNEL.423)
 */
void WINAPI LogApiThk( LPSTR func )
{
    TRACE( "%s\n", debugstr_a(func) );
}

/***********************************************************************
 *           LogApiThkLSF    (KERNEL32.42)
185
 *
186 187
 * NOTE: needs to preserve all registers!
 */
188
void WINAPI __regs_LogApiThkLSF( LPSTR func, CONTEXT86 *context )
189 190 191
{
    TRACE( "%s\n", debugstr_a(func) );
}
192
DEFINE_REGS_ENTRYPOINT( LogApiThkLSF, 1 )
193 194 195

/***********************************************************************
 *           LogApiThkSL    (KERNEL32.44)
196
 *
197 198
 * NOTE: needs to preserve all registers!
 */
199
void WINAPI __regs_LogApiThkSL( LPSTR func, CONTEXT86 *context )
200 201 202
{
    TRACE( "%s\n", debugstr_a(func) );
}
203
DEFINE_REGS_ENTRYPOINT( LogApiThkSL, 1 )
204 205 206

/***********************************************************************
 *           LogCBThkSL    (KERNEL32.47)
207
 *
208 209
 * NOTE: needs to preserve all registers!
 */
210
void WINAPI __regs_LogCBThkSL( LPSTR func, CONTEXT86 *context )
211 212 213
{
    TRACE( "%s\n", debugstr_a(func) );
}
214
DEFINE_REGS_ENTRYPOINT( LogCBThkSL, 1 )
215 216 217

/***********************************************************************
 * Generates a FT_Prolog call.
218
 *
219 220 221 222 223 224 225 226 227 228 229 230
 *  0FB6D1                  movzbl edx,cl
 *  8B1495xxxxxxxx	    mov edx,[4*edx + targetTable]
 *  68xxxxxxxx		    push FT_Prolog
 *  C3			    lret
 */
static void _write_ftprolog(LPBYTE relayCode ,DWORD *targetTable) {
	LPBYTE	x;

	x	= relayCode;
	*x++	= 0x0f;*x++=0xb6;*x++=0xd1; /* movzbl edx,cl */
	*x++	= 0x8B;*x++=0x14;*x++=0x95;*(DWORD**)x= targetTable;
	x+=4;	/* mov edx, [4*edx + targetTable] */
231
	*x++	= 0x68; *(DWORD*)x = (DWORD)GetProcAddress(kernel32_handle,"FT_Prolog");
232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257
	x+=4; 	/* push FT_Prolog */
	*x++	= 0xC3;		/* lret */
	/* fill rest with 0xCC / int 3 */
}

/***********************************************************************
 *	_write_qtthunk					(internal)
 * Generates a QT_Thunk style call.
 *
 *  33C9                    xor ecx, ecx
 *  8A4DFC                  mov cl , [ebp-04]
 *  8B148Dxxxxxxxx          mov edx, [4*ecx + targetTable]
 *  B8yyyyyyyy              mov eax, QT_Thunk
 *  FFE0                    jmp eax
 */
static void _write_qtthunk(
	LPBYTE relayCode,	/* [in] start of QT_Thunk stub */
	DWORD *targetTable	/* [in] start of thunk (for index lookup) */
) {
	LPBYTE	x;

	x	= relayCode;
	*x++	= 0x33;*x++=0xC9; /* xor ecx,ecx */
	*x++	= 0x8A;*x++=0x4D;*x++=0xFC; /* movb cl,[ebp-04] */
	*x++	= 0x8B;*x++=0x14;*x++=0x8D;*(DWORD**)x= targetTable;
	x+=4;	/* mov edx, [4*ecx + targetTable */
258
	*x++	= 0xB8; *(DWORD*)x = (DWORD)GetProcAddress(kernel32_handle,"QT_Thunk");
259 260 261 262 263 264 265 266
	x+=4; 	/* mov eax , QT_Thunk */
	*x++	= 0xFF; *x++ = 0xE0;	/* jmp eax */
	/* should fill the rest of the 32 bytes with 0xCC */
}

/***********************************************************************
 *           _loadthunk
 */
267
static LPVOID _loadthunk(LPCSTR module, LPCSTR func, LPCSTR module32,
268 269 270
                         struct ThunkDataCommon *TD32, DWORD checksum)
{
    struct ThunkDataCommon *TD16;
271
    HMODULE16 hmod;
272 273
    int ordinal;

274
    if ((hmod = LoadLibrary16(module)) <= 32)
275 276 277 278 279 280 281
    {
        ERR("(%s, %s, %s): Unable to load '%s', error %d\n",
                   module, func, module32, module, hmod);
        return 0;
    }

    if (   !(ordinal = NE_GetOrdinal(hmod, func))
282
        || !(TD16 = MapSL((SEGPTR)NE_GetEntryPointEx(hmod, ordinal, FALSE))))
283 284 285 286 287 288 289 290 291
    {
        ERR("Unable to find thunk data '%s' in %s, required by %s (conflicting/incorrect DLL versions !?).\n",
                   func, module, module32);
        return 0;
    }

    if (TD32 && memcmp(TD16->magic, TD32->magic, 4))
    {
        ERR("(%s, %s, %s): Bad magic %c%c%c%c (should be %c%c%c%c)\n",
292
                   module, func, module32,
293 294 295 296 297 298 299
                   TD16->magic[0], TD16->magic[1], TD16->magic[2], TD16->magic[3],
                   TD32->magic[0], TD32->magic[1], TD32->magic[2], TD32->magic[3]);
        return 0;
    }

    if (TD32 && TD16->checksum != TD32->checksum)
    {
300
        ERR("(%s, %s, %s): Wrong checksum %08x (should be %08x)\n",
301 302 303 304 305 306
                   module, func, module32, TD16->checksum, TD32->checksum);
        return 0;
    }

    if (!TD32 && checksum && checksum != *(LPDWORD)TD16)
    {
307
        ERR("(%s, %s, %s): Wrong checksum %08x (should be %08x)\n",
308 309 310 311 312 313 314 315 316 317
                   module, func, module32, *(LPDWORD)TD16, checksum);
        return 0;
    }

    return TD16;
}

/***********************************************************************
 *           GetThunkStuff    (KERNEL32.53)
 */
318
LPVOID WINAPI GetThunkStuff(LPCSTR module, LPCSTR func)
319 320 321 322 323 324 325 326 327 328 329 330 331 332
{
    return _loadthunk(module, func, "<kernel>", NULL, 0L);
}

/***********************************************************************
 *           GetThunkBuff    (KERNEL32.52)
 * Returns a pointer to ThkBuf in the 16bit library SYSTHUNK.DLL.
 */
LPVOID WINAPI GetThunkBuff(void)
{
    return GetThunkStuff("SYSTHUNK.DLL", "ThkBuf");
}

/***********************************************************************
333
 *		ThunkConnect32		(KERNEL32.@)
334 335
 * Connects a 32bit and a 16bit thunkbuffer.
 */
336
UINT WINAPI ThunkConnect32(
337 338 339 340 341 342 343 344 345 346 347 348 349
	struct ThunkDataCommon *TD,  /* [in/out] thunkbuffer */
	LPSTR thunkfun16,            /* [in] win16 thunkfunction */
	LPSTR module16,              /* [in] name of win16 dll */
	LPSTR module32,              /* [in] name of win32 dll */
	HMODULE hmod32,            /* [in] hmodule of win32 dll */
	DWORD dwReason               /* [in] initialisation argument */
) {
    BOOL directionSL;

    if (!strncmp(TD->magic, "SL01", 4))
    {
        directionSL = TRUE;

350
        TRACE("SL01 thunk %s (%p) <- %s (%s), Reason: %d\n",
351
              module32, TD, module16, thunkfun16, dwReason);
352 353 354 355 356
    }
    else if (!strncmp(TD->magic, "LS01", 4))
    {
        directionSL = FALSE;

357
        TRACE("LS01 thunk %s (%p) -> %s (%s), Reason: %d\n",
358
              module32, TD, module16, thunkfun16, dwReason);
359 360 361
    }
    else
    {
362
        ERR("Invalid magic %c%c%c%c\n",
363 364 365
                   TD->magic[0], TD->magic[1], TD->magic[2], TD->magic[3]);
        return 0;
    }
366

367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395
    switch (dwReason)
    {
        case DLL_PROCESS_ATTACH:
        {
            struct ThunkDataCommon *TD16;
            if (!(TD16 = _loadthunk(module16, thunkfun16, module32, TD, 0L)))
                return 0;

            if (directionSL)
            {
                struct ThunkDataSL32 *SL32 = (struct ThunkDataSL32 *)TD;
                struct ThunkDataSL16 *SL16 = (struct ThunkDataSL16 *)TD16;
                struct SLTargetDB *tdb;

                if (SL16->fpData == NULL)
                {
                    ERR("ThunkConnect16 was not called!\n");
                    return 0;
                }

                SL32->data = SL16->fpData;

                tdb = HeapAlloc(GetProcessHeap(), 0, sizeof(*tdb));
                tdb->process = GetCurrentProcessId();
                tdb->targetTable = (DWORD *)(thunkfun16 + SL32->offsetTargetTable);

                tdb->next = SL32->data->targetDB;   /* FIXME: not thread-safe! */
                SL32->data->targetDB = tdb;

396
                TRACE("Process %08x allocated TargetDB entry for ThunkDataSL %p\n",
397
                      GetCurrentProcessId(), SL32->data);
398 399 400 401 402 403
            }
            else
            {
                struct ThunkDataLS32 *LS32 = (struct ThunkDataLS32 *)TD;
                struct ThunkDataLS16 *LS16 = (struct ThunkDataLS16 *)TD16;

404
                LS32->targetTable = MapSL(LS16->targetTable);
405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421

                /* write QT_Thunk and FT_Prolog stubs */
                _write_qtthunk ((LPBYTE)TD + LS32->offsetQTThunk,  LS32->targetTable);
                _write_ftprolog((LPBYTE)TD + LS32->offsetFTProlog, LS32->targetTable);
            }
            break;
        }

        case DLL_PROCESS_DETACH:
            /* FIXME: cleanup */
            break;
    }

    return 1;
}

/**********************************************************************
422
 * 		QT_Thunk			(KERNEL32.@)
423 424
 *
 * The target address is in EDX.
425
 * The 16bit arguments start at ESP.
426
 * The number of 16bit argument bytes is EBP-ESP-0x40 (64 Byte thunksetup).
427 428 429 430 431 432 433 434 435
 * So the stack layout is 16bit argument bytes and then the 64 byte
 * scratch buffer.
 * The scratch buffer is used as work space by Windows' QT_Thunk
 * function.
 * As the programs unfortunately don't always provide a fixed size
 * scratch buffer (danger, stack corruption ahead !!), we simply resort
 * to copying over the whole EBP-ESP range to the 16bit stack
 * (as there's no way to safely figure out the param count
 * due to this misbehaviour of some programs).
436
 * [ok]
437 438 439 440 441 442
 *
 * See DDJ article 9614c for a very good description of QT_Thunk (also
 * available online !).
 *
 * FIXME: DDJ talks of certain register usage rules; I'm not sure
 * whether we cover this 100%.
443
 */
444
void WINAPI __regs_QT_Thunk( CONTEXT86 *context )
445 446 447 448
{
    CONTEXT86 context16;
    DWORD argsize;

449
    context16 = *context;
450

451 452
    context16.SegFs = wine_get_fs();
    context16.SegGs = wine_get_gs();
453 454
    context16.SegCs = HIWORD(context->Edx);
    context16.Eip   = LOWORD(context->Edx);
455 456
    /* point EBP to the STACK16FRAME on the stack
     * for the call_to_16 to set up the register content on calling */
457
    context16.Ebp   = OFFSETOF(NtCurrentTeb()->WOW32Reserved) + FIELD_OFFSET(STACK16FRAME,bp);
458

459 460 461 462 463 464 465 466 467 468
    /*
     * used to be (problematic):
     * argsize = context->Ebp - context->Esp - 0x40;
     * due to some programs abusing the API, we better assume the full
     * EBP - ESP range for copying instead: */
    argsize = context->Ebp - context->Esp;

    /* ok, too much is insane; let's limit param count a bit again */
    if (argsize > 64)
	argsize = 64; /* 32 WORDs */
469

470
    WOWCallback16Ex( 0, WCB16_REGS, argsize, (void *)context->Esp, (DWORD *)&context16 );
471 472 473
    context->Eax = context16.Eax;
    context->Edx = context16.Edx;
    context->Ecx = context16.Ecx;
474

475 476 477
    /* make sure to update the Win32 ESP, too, in order to throw away
     * the number of parameters that the Win16 function
     * accepted (that it popped from the corresponding Win16 stack) */
478
    context->Esp +=   LOWORD(context16.Esp) -
479
                        ( OFFSETOF(NtCurrentTeb()->WOW32Reserved) - argsize );
480
}
481
DEFINE_REGS_ENTRYPOINT( QT_Thunk, 0 )
482 483 484


/**********************************************************************
485
 * 		FT_Prolog			(KERNEL32.@)
486
 *
487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502
 * The set of FT_... thunk routines is used instead of QT_Thunk,
 * if structures have to be converted from 32-bit to 16-bit
 * (change of member alignment, conversion of members).
 *
 * The thunk function (as created by the thunk compiler) calls
 * FT_Prolog at the beginning, to set up a stack frame and
 * allocate a 64 byte buffer on the stack.
 * The input parameters (target address and some flags) are
 * saved for later use by FT_Thunk.
 *
 * Input:  EDX  16-bit target address (SEGPTR)
 *         CX   bits  0..7   target number (in target table)
 *              bits  8..9   some flags (unclear???)
 *              bits 10..15  number of DWORD arguments
 *
 * Output: A new stackframe is created, and a 64 byte buffer
503
 *         allocated on the stack. The layout of the stack
504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524
 *         on return is as follows:
 *
 *  (ebp+4)  return address to caller of thunk function
 *  (ebp)    old EBP
 *  (ebp-4)  saved EBX register of caller
 *  (ebp-8)  saved ESI register of caller
 *  (ebp-12) saved EDI register of caller
 *  (ebp-16) saved ECX register, containing flags
 *  (ebp-20) bitmap containing parameters that are to be converted
 *           by FT_Thunk; it is initialized to 0 by FT_Prolog and
 *           filled in by the thunk code before calling FT_Thunk
 *  (ebp-24)
 *    ...    (unclear)
 *  (ebp-44)
 *  (ebp-48) saved EAX register of caller (unclear, never restored???)
 *  (ebp-52) saved EDX register, containing 16-bit thunk target
 *  (ebp-56)
 *    ...    (unclear)
 *  (ebp-64)
 *
 *  ESP is EBP-64 after return.
525
 *
526
 */
527
void WINAPI __regs_FT_Prolog( CONTEXT86 *context )
528 529
{
    /* Build stack frame */
530 531
    stack32_push(context, context->Ebp);
    context->Ebp = context->Esp;
532 533

    /* Allocate 64-byte Thunk Buffer */
534 535
    context->Esp -= 64;
    memset((char *)context->Esp, '\0', 64);
536 537 538

    /* Store Flags (ECX) and Target Address (EDX) */
    /* Save other registers to be restored later */
539 540 541 542
    *(DWORD *)(context->Ebp -  4) = context->Ebx;
    *(DWORD *)(context->Ebp -  8) = context->Esi;
    *(DWORD *)(context->Ebp - 12) = context->Edi;
    *(DWORD *)(context->Ebp - 16) = context->Ecx;
543

544 545
    *(DWORD *)(context->Ebp - 48) = context->Eax;
    *(DWORD *)(context->Ebp - 52) = context->Edx;
546
}
547
DEFINE_REGS_ENTRYPOINT( FT_Prolog, 0 )
548 549

/**********************************************************************
550
 * 		FT_Thunk			(KERNEL32.@)
551
 *
552
 * This routine performs the actual call to 16-bit code,
553 554 555 556 557 558 559 560
 * similar to QT_Thunk. The differences are:
 *  - The call target is taken from the buffer created by FT_Prolog
 *  - Those arguments requested by the thunk code (by setting the
 *    corresponding bit in the bitmap at EBP-20) are converted
 *    from 32-bit pointers to segmented pointers (those pointers
 *    are guaranteed to point to structures copied to the stack
 *    by the thunk code, so we always use the 16-bit stack selector
 *    for those addresses).
561
 *
562 563
 *    The bit #i of EBP-20 corresponds here to the DWORD starting at
 *    ESP+4 + 2*i.
564 565
 *
 * FIXME: It is unclear what happens if there are more than 32 WORDs
566 567 568
 *        of arguments, so that the single DWORD bitmap is no longer
 *        sufficient ...
 */
569
void WINAPI __regs_FT_Thunk( CONTEXT86 *context )
570
{
571 572
    DWORD mapESPrelative = *(DWORD *)(context->Ebp - 20);
    DWORD callTarget     = *(DWORD *)(context->Ebp - 52);
573 574 575

    CONTEXT86 context16;
    DWORD i, argsize;
576 577
    DWORD newstack[32];
    LPBYTE oldstack;
578

579
    context16 = *context;
580

581 582
    context16.SegFs = wine_get_fs();
    context16.SegGs = wine_get_gs();
583 584
    context16.SegCs = HIWORD(callTarget);
    context16.Eip   = LOWORD(callTarget);
585
    context16.Ebp   = OFFSETOF(NtCurrentTeb()->WOW32Reserved) + FIELD_OFFSET(STACK16FRAME,bp);
586

587
    argsize  = context->Ebp-context->Esp-0x40;
588
    if (argsize > sizeof(newstack)) argsize = sizeof(newstack);
589
    oldstack = (LPBYTE)context->Esp;
590 591 592 593 594 595

    memcpy( newstack, oldstack, argsize );

    for (i = 0; i < 32; i++)	/* NOTE: What about > 32 arguments? */
	if (mapESPrelative & (1 << i))
	{
596
	    SEGPTR *arg = (SEGPTR *)newstack[i];
597 598
	    *arg = MAKESEGPTR(SELECTOROF(NtCurrentTeb()->WOW32Reserved),
                              OFFSETOF(NtCurrentTeb()->WOW32Reserved) - argsize
599
                              + (*(LPBYTE *)arg - oldstack));
600 601
	}

602
    WOWCallback16Ex( 0, WCB16_REGS, argsize, newstack, (DWORD *)&context16 );
603 604 605
    context->Eax = context16.Eax;
    context->Edx = context16.Edx;
    context->Ecx = context16.Ecx;
606

607
    context->Esp +=   LOWORD(context16.Esp) -
608
                        ( OFFSETOF(NtCurrentTeb()->WOW32Reserved) - argsize );
609 610 611 612

    /* Copy modified buffers back to 32-bit stack */
    memcpy( oldstack, newstack, argsize );
}
613
DEFINE_REGS_ENTRYPOINT( FT_Thunk, 0 )
614

615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630
/***********************************************************************
 *		FT_Exit0 (KERNEL32.@)
 *		FT_Exit4 (KERNEL32.@)
 *		FT_Exit8 (KERNEL32.@)
 *		FT_Exit12 (KERNEL32.@)
 *		FT_Exit16 (KERNEL32.@)
 *		FT_Exit20 (KERNEL32.@)
 *		FT_Exit24 (KERNEL32.@)
 *		FT_Exit28 (KERNEL32.@)
 *		FT_Exit32 (KERNEL32.@)
 *		FT_Exit36 (KERNEL32.@)
 *		FT_Exit40 (KERNEL32.@)
 *		FT_Exit44 (KERNEL32.@)
 *		FT_Exit48 (KERNEL32.@)
 *		FT_Exit52 (KERNEL32.@)
 *		FT_Exit56 (KERNEL32.@)
631 632 633
 *
 * One of the FT_ExitNN functions is called at the end of the thunk code.
 * It removes the stack frame created by FT_Prolog, moves the function
634 635
 * return from EBX to EAX (yes, FT_Thunk did use EAX for the return
 * value, but the thunk code has moved it from EAX to EBX in the
636 637 638 639
 * meantime ... :-), restores the caller's EBX, ESI, and EDI registers,
 * and perform a return to the CALLER of the thunk code (while removing
 * the given number of arguments from the caller's stack).
 */
640 641 642 643 644 645
#define FT_EXIT_RESTORE_REGS \
    "movl %ebx,%eax\n\t" \
    "movl -4(%ebp),%ebx\n\t" \
    "movl -8(%ebp),%esi\n\t" \
    "movl -12(%ebp),%edi\n\t" \
    "leave\n\t"
646

647
#define DEFINE_FT_Exit(n) \
648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664
    __ASM_GLOBAL_FUNC( FT_Exit ## n, FT_EXIT_RESTORE_REGS "ret $" #n )

DEFINE_FT_Exit(0)
DEFINE_FT_Exit(4)
DEFINE_FT_Exit(8)
DEFINE_FT_Exit(12)
DEFINE_FT_Exit(16)
DEFINE_FT_Exit(20)
DEFINE_FT_Exit(24)
DEFINE_FT_Exit(28)
DEFINE_FT_Exit(32)
DEFINE_FT_Exit(36)
DEFINE_FT_Exit(40)
DEFINE_FT_Exit(44)
DEFINE_FT_Exit(48)
DEFINE_FT_Exit(52)
DEFINE_FT_Exit(56)
665 666 667 668


/***********************************************************************
 * 		ThunkInitLS 	(KERNEL32.43)
669
 * A thunkbuffer link routine
670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693
 * The thunkbuf looks like:
 *
 *	00: DWORD	length		? don't know exactly
 *	04: SEGPTR	ptr		? where does it point to?
 * The pointer ptr is written into the first DWORD of 'thunk'.
 * (probably correctly implemented)
 * [ok probably]
 * RETURNS
 *	segmented pointer to thunk?
 */
DWORD WINAPI ThunkInitLS(
	LPDWORD thunk,	/* [in] win32 thunk */
	LPCSTR thkbuf,	/* [in] thkbuffer name in win16 dll */
	DWORD len,	/* [in] thkbuffer length */
	LPCSTR dll16,	/* [in] name of win16 dll */
	LPCSTR dll32	/* [in] name of win32 dll (FIXME: not used?) */
) {
	LPDWORD		addr;

	if (!(addr = _loadthunk( dll16, thkbuf, dll32, NULL, len )))
		return 0;

	if (!addr[1])
		return 0;
694
	*thunk = addr[1];
695 696 697 698 699 700

	return addr[1];
}

/***********************************************************************
 * 		Common32ThkLS 	(KERNEL32.45)
701
 *
702
 * This is another 32->16 thunk, independent of the QT_Thunk/FT_Thunk
703
 * style thunks. The basic difference is that the parameter conversion
704 705 706 707
 * is done completely on the *16-bit* side here. Thus we do not call
 * the 16-bit target directly, but call a common entry point instead.
 * This entry function then calls the target according to the target
 * number passed in the DI register.
708
 *
709 710 711 712 713 714 715 716 717 718 719 720
 * Input:  EAX    SEGPTR to the common 16-bit entry point
 *         CX     offset in thunk table (target number * 4)
 *         DX     error return value if execution fails (unclear???)
 *         EDX.HI number of DWORD parameters
 *
 * (Note that we need to move the thunk table offset from CX to DI !)
 *
 * The called 16-bit stub expects its stack to look like this:
 *     ...
 *   (esp+40)  32-bit arguments
 *     ...
 *   (esp+8)   32 byte of stack space available as buffer
721 722
 *   (esp)     8 byte return address for use with 0x66 lret
 *
723 724
 * The called 16-bit stub uses a 0x66 lret to return to 32-bit code,
 * and uses the EAX register to return a DWORD return value.
725
 * Thus we need to use a special assembly glue routine
726 727
 * (CallRegisterLongProc instead of CallRegisterShortProc).
 *
728
 * Finally, we return to the caller, popping the arguments off
729 730
 * the stack.  The number of arguments to be popped is returned
 * in the BL register by the called 16-bit routine.
731 732
 *
 */
733
void WINAPI __regs_Common32ThkLS( CONTEXT86 *context )
734 735 736 737
{
    CONTEXT86 context16;
    DWORD argsize;

738
    context16 = *context;
739

740 741
    context16.SegFs = wine_get_fs();
    context16.SegGs = wine_get_gs();
742 743 744
    context16.Edi   = LOWORD(context->Ecx);
    context16.SegCs = HIWORD(context->Eax);
    context16.Eip   = LOWORD(context->Eax);
745
    context16.Ebp   = OFFSETOF(NtCurrentTeb()->WOW32Reserved) + FIELD_OFFSET(STACK16FRAME,bp);
746

747
    argsize = HIWORD(context->Edx) * 4;
748 749

    /* FIXME: hack for stupid USER32 CallbackGlueLS routine */
750
    if (context->Edx == context->Eip)
751 752
        argsize = 6 * 4;

753 754 755 756 757
    /* Note: the first 32 bytes we copy are just garbage from the 32-bit stack, in order to reserve
     *       the space. It is safe to do that since the register function prefix has reserved
     *       a lot more space than that below context->Esp.
     */
    WOWCallback16Ex( 0, WCB16_REGS, argsize + 32, (LPBYTE)context->Esp - 32, (DWORD *)&context16 );
758
    context->Eax = context16.Eax;
759 760

    /* Clean up caller's stack frame */
761
    context->Esp += LOBYTE(context16.Ebx);
762
}
763
DEFINE_REGS_ENTRYPOINT( Common32ThkLS, 0 )
764 765 766 767 768 769 770

/***********************************************************************
 *		OT_32ThkLSF	(KERNEL32.40)
 *
 * YET Another 32->16 thunk. The difference to Common32ThkLS is that
 * argument processing is done on both the 32-bit and the 16-bit side:
 * The 32-bit side prepares arguments, copying them onto the stack.
771 772
 *
 * When this routine is called, the first word on the stack is the
773 774 775
 * number of argument bytes prepared by the 32-bit code, and EDX
 * contains the 16-bit target address.
 *
776
 * The called 16-bit routine is another relaycode, doing further
777 778 779 780 781 782 783
 * argument processing and then calling the real 16-bit target
 * whose address is stored at [bp-04].
 *
 * The call proceeds using a normal CallRegisterShortProc.
 * After return from the 16-bit relaycode, the arguments need
 * to be copied *back* to the 32-bit stack, since the 32-bit
 * relaycode processes output parameters.
784
 *
785 786 787 788 789 790 791
 * Note that we copy twice the number of arguments, since some of the
 * 16-bit relaycodes in SYSTHUNK.DLL directly access the original
 * arguments of the caller!
 *
 * (Note that this function seems only to be used for
 *  OLECLI32 -> OLECLI and OLESVR32 -> OLESVR thunking.)
 */
792
void WINAPI __regs_OT_32ThkLSF( CONTEXT86 *context )
793 794 795 796
{
    CONTEXT86 context16;
    DWORD argsize;

797
    context16 = *context;
798

799 800
    context16.SegFs = wine_get_fs();
    context16.SegGs = wine_get_gs();
801 802
    context16.SegCs = HIWORD(context->Edx);
    context16.Eip   = LOWORD(context->Edx);
803
    context16.Ebp   = OFFSETOF(NtCurrentTeb()->WOW32Reserved) + FIELD_OFFSET(STACK16FRAME,bp);
804

805
    argsize = 2 * *(WORD *)context->Esp + 2;
806

807
    WOWCallback16Ex( 0, WCB16_REGS, argsize, (void *)context->Esp, (DWORD *)&context16 );
808 809
    context->Eax = context16.Eax;
    context->Edx = context16.Edx;
810

811
    /* Copy modified buffers back to 32-bit stack */
812
    memcpy( (LPBYTE)context->Esp,
813
            (LPBYTE)CURRENT_STACK16 - argsize, argsize );
814

815
    context->Esp +=   LOWORD(context16.Esp) -
816
                        ( OFFSETOF(NtCurrentTeb()->WOW32Reserved) - argsize );
817
}
818
DEFINE_REGS_ENTRYPOINT( OT_32ThkLSF, 0 )
819 820 821 822 823 824

/***********************************************************************
 *		ThunkInitLSF		(KERNEL32.41)
 * A thunk setup routine.
 * Expects a pointer to a preinitialized thunkbuffer in the first argument
 * looking like:
Jon Griffiths's avatar
Jon Griffiths committed
825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846
 *|	00..03:		unknown	(pointer, check _41, _43, _46)
 *|	04: EB1E		jmp +0x20
 *|
 *|	06..23:		unknown (space for replacement code, check .90)
 *|
 *|	24:>E800000000		call offset 29
 *|	29:>58			pop eax		   ( target of call )
 *|	2A: 2D25000000		sub eax,0x00000025 ( now points to offset 4 )
 *|	2F: BAxxxxxxxx		mov edx,xxxxxxxx
 *|	34: 68yyyyyyyy		push KERNEL32.90
 *|	39: C3			ret
 *|
 *|	3A: EB1E		jmp +0x20
 *|	3E ... 59:	unknown (space for replacement code?)
 *|	5A: E8xxxxxxxx		call <32bitoffset xxxxxxxx>
 *|	5F: 5A			pop edx
 *|	60: 81EA25xxxxxx	sub edx, 0x25xxxxxx
 *|	66: 52			push edx
 *|	67: 68xxxxxxxx		push xxxxxxxx
 *|	6C: 68yyyyyyyy		push KERNEL32.89
 *|	71: C3			ret
 *|	72: end?
847 848 849 850
 * This function checks if the code is there, and replaces the yyyyyyyy entries
 * by the functionpointers.
 * The thunkbuf looks like:
 *
Jon Griffiths's avatar
Jon Griffiths committed
851 852
 *|	00: DWORD	length		? don't know exactly
 *|	04: SEGPTR	ptr		? where does it point to?
853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868
 * The segpointer ptr is written into the first DWORD of 'thunk'.
 * [ok probably]
 * RETURNS
 *	unclear, pointer to win16 thkbuffer?
 */
LPVOID WINAPI ThunkInitLSF(
	LPBYTE thunk,	/* [in] win32 thunk */
	LPCSTR thkbuf,	/* [in] thkbuffer name in win16 dll */
	DWORD len,	/* [in] length of thkbuffer */
	LPCSTR dll16,	/* [in] name of win16 dll */
	LPCSTR dll32	/* [in] name of win32 dll */
) {
	LPDWORD		addr,addr2;

	/* FIXME: add checks for valid code ... */
	/* write pointers to kernel32.89 and kernel32.90 (+ordinal base of 1) */
869 870
	*(DWORD*)(thunk+0x35) = (DWORD)GetProcAddress(kernel32_handle,(LPSTR)90);
	*(DWORD*)(thunk+0x6D) = (DWORD)GetProcAddress(kernel32_handle,(LPSTR)89);
871

872

873 874 875
	if (!(addr = _loadthunk( dll16, thkbuf, dll32, NULL, len )))
		return 0;

876
	addr2 = MapSL(addr[1]);
877 878 879 880 881 882 883 884
	if (HIWORD(addr2))
		*(DWORD*)thunk = (DWORD)addr2;

	return addr2;
}

/***********************************************************************
 *		FT_PrologPrime			(KERNEL32.89)
885
 *
886
 * This function is called from the relay code installed by
887
 * ThunkInitLSF. It replaces the location from where it was
888 889 890
 * called by a standard FT_Prolog call stub (which is 'primed'
 * by inserting the correct target table pointer).
 * Finally, it calls that stub.
891
 *
892
 * Input:  ECX    target number + flags (passed through to FT_Prolog)
893
 *        (ESP)   offset of location where target table pointer
894 895 896
 *                is stored, relative to the start of the relay code
 *        (ESP+4) pointer to start of relay code
 *                (this is where the FT_Prolog call stub gets written to)
897
 *
898
 * Note: The two DWORD arguments get popped off the stack.
899
 *
900
 */
901
void WINAPI __regs_FT_PrologPrime( CONTEXT86 *context )
902 903 904 905 906 907
{
    DWORD  targetTableOffset;
    LPBYTE relayCode;

    /* Compensate for the fact that the Wine register relay code thought
       we were being called, although we were in fact jumped to */
908
    context->Esp -= 4;
909 910 911 912 913 914 915

    /* Write FT_Prolog call stub */
    targetTableOffset = stack32_pop(context);
    relayCode = (LPBYTE)stack32_pop(context);
    _write_ftprolog( relayCode, *(DWORD **)(relayCode+targetTableOffset) );

    /* Jump to the call stub just created */
916
    context->Eip = (DWORD)relayCode;
917
}
918
DEFINE_REGS_ENTRYPOINT( FT_PrologPrime, 0 )
919 920 921 922

/***********************************************************************
 *		QT_ThunkPrime			(KERNEL32.90)
 *
923
 * This function corresponds to FT_PrologPrime, but installs a
924 925 926 927 928
 * call stub for QT_Thunk instead.
 *
 * Input: (EBP-4) target number (passed through to QT_Thunk)
 *         EDX    target table pointer location offset
 *         EAX    start of relay code
929
 *
930
 */
931
void WINAPI __regs_QT_ThunkPrime( CONTEXT86 *context )
932 933 934 935 936 937
{
    DWORD  targetTableOffset;
    LPBYTE relayCode;

    /* Compensate for the fact that the Wine register relay code thought
       we were being called, although we were in fact jumped to */
938
    context->Esp -= 4;
939 940

    /* Write QT_Thunk call stub */
941 942
    targetTableOffset = context->Edx;
    relayCode = (LPBYTE)context->Eax;
943 944 945
    _write_qtthunk( relayCode, *(DWORD **)(relayCode+targetTableOffset) );

    /* Jump to the call stub just created */
946
    context->Eip = (DWORD)relayCode;
947
}
948
DEFINE_REGS_ENTRYPOINT( QT_ThunkPrime, 0 )
949 950 951 952 953 954 955 956

/***********************************************************************
 *		ThunkInitSL (KERNEL32.46)
 * Another thunkbuf link routine.
 * The start of the thunkbuf looks like this:
 * 	00: DWORD	length
 *	04: SEGPTR	address for thunkbuffer pointer
 * [ok probably]
957 958 959
 *
 * RETURNS
 *  Nothing.
960 961 962 963 964 965 966 967 968 969 970 971 972
 */
VOID WINAPI ThunkInitSL(
	LPBYTE thunk,		/* [in] start of thunkbuffer */
	LPCSTR thkbuf,		/* [in] name/ordinal of thunkbuffer in win16 dll */
	DWORD len,		/* [in] length of thunkbuffer */
	LPCSTR dll16,		/* [in] name of win16 dll containing the thkbuf */
	LPCSTR dll32		/* [in] win32 dll. FIXME: strange, unused */
) {
	LPDWORD		addr;

	if (!(addr = _loadthunk( dll16, thkbuf, dll32, NULL, len )))
		return;

973
	*(DWORD*)MapSL(addr[1]) = (DWORD)thunk;
974 975 976
}

/**********************************************************************
977
 *           SSInit		(KERNEL.700)
978 979 980
 * RETURNS
 *	TRUE for success.
 */
981
BOOL WINAPI SSInit16(void)
982 983 984 985 986
{
    return TRUE;
}

/**********************************************************************
987
 *           SSOnBigStack	(KERNEL32.87)
988 989 990 991 992 993
 * Check if thunking is initialized (ss selector set up etc.)
 * We do that differently, so just return TRUE.
 * [ok]
 * RETURNS
 *	TRUE for success.
 */
994
BOOL WINAPI SSOnBigStack(void)
995 996 997 998 999 1000
{
    TRACE("Yes, thunking is initialized\n");
    return TRUE;
}

/**********************************************************************
1001
 *           SSConfirmSmallStack     (KERNEL.704)
1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012
 *
 * Abort if not on small stack.
 *
 * This must be a register routine as it has to preserve *all* registers.
 */
void WINAPI SSConfirmSmallStack( CONTEXT86 *context )
{
    /* We are always on the small stack while in 16-bit code ... */
}

/**********************************************************************
1013
 *           SSCall (KERNEL32.88)
1014 1015 1016 1017 1018
 * One of the real thunking functions. This one seems to be for 32<->32
 * thunks. It should probably be capable of crossing processboundaries.
 *
 * And YES, I've seen nr=48 (somewhere in the Win95 32<->16 OLE coupling)
 * [ok]
1019 1020 1021
 *
 * RETURNS
 *  Thunked function result.
1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033
 */
DWORD WINAPIV SSCall(
	DWORD nr,	/* [in] number of argument bytes */
	DWORD flags,	/* [in] FIXME: flags ? */
	FARPROC fun,	/* [in] function to call */
	...		/* [in/out] arguments */
) {
    DWORD i,ret;
    DWORD *args = ((DWORD *)&fun) + 1;

    if(TRACE_ON(thunk))
    {
1034
      DPRINTF("(%d,0x%08x,%p,[",nr,flags,fun);
1035
      for (i=0;i<nr/4;i++)
1036
          DPRINTF("0x%08x,",args[i]);
1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066
      DPRINTF("])\n");
    }
    switch (nr) {
    case 0:	ret = fun();
		break;
    case 4:	ret = fun(args[0]);
		break;
    case 8:	ret = fun(args[0],args[1]);
		break;
    case 12:	ret = fun(args[0],args[1],args[2]);
		break;
    case 16:	ret = fun(args[0],args[1],args[2],args[3]);
		break;
    case 20:	ret = fun(args[0],args[1],args[2],args[3],args[4]);
		break;
    case 24:	ret = fun(args[0],args[1],args[2],args[3],args[4],args[5]);
		break;
    case 28:	ret = fun(args[0],args[1],args[2],args[3],args[4],args[5],args[6]);
		break;
    case 32:	ret = fun(args[0],args[1],args[2],args[3],args[4],args[5],args[6],args[7]);
		break;
    case 36:	ret = fun(args[0],args[1],args[2],args[3],args[4],args[5],args[6],args[7],args[8]);
		break;
    case 40:	ret = fun(args[0],args[1],args[2],args[3],args[4],args[5],args[6],args[7],args[8],args[9]);
		break;
    case 44:	ret = fun(args[0],args[1],args[2],args[3],args[4],args[5],args[6],args[7],args[8],args[9],args[10]);
		break;
    case 48:	ret = fun(args[0],args[1],args[2],args[3],args[4],args[5],args[6],args[7],args[8],args[9],args[10],args[11]);
		break;
    default:
1067
	WARN("Unsupported nr of arguments, %d\n",nr);
1068 1069 1070 1071
	ret = 0;
	break;

    }
1072
    TRACE(" returning %d ...\n",ret);
1073 1074 1075 1076 1077 1078
    return ret;
}

/**********************************************************************
 *           W32S_BackTo32                      (KERNEL32.51)
 */
1079
void WINAPI __regs_W32S_BackTo32( CONTEXT86 *context )
1080
{
1081 1082
    LPDWORD stack = (LPDWORD)context->Esp;
    FARPROC proc = (FARPROC)context->Eip;
1083

1084
    context->Eax = proc( stack[1], stack[2], stack[3], stack[4], stack[5],
1085 1086
                               stack[6], stack[7], stack[8], stack[9], stack[10] );

1087
    context->Eip = stack32_pop(context);
1088
}
1089
DEFINE_REGS_ENTRYPOINT( W32S_BackTo32, 0 )
1090 1091

/**********************************************************************
1092
 *			AllocSLCallback		(KERNEL32.@)
1093
 *
1094 1095
 * Allocate a 16->32 callback.
 *
Jon Griffiths's avatar
Jon Griffiths committed
1096
 * NOTES
1097 1098 1099
 * Win95 uses some structchains for callbacks. It allocates them
 * in blocks of 100 entries, size 32 bytes each, layout:
 * blockstart:
Jon Griffiths's avatar
Jon Griffiths committed
1100 1101 1102 1103
 *| 	0:	PTR	nextblockstart
 *|	4:	entry	*first;
 *|	8:	WORD	sel ( start points to blockstart)
 *|	A:	WORD	unknown
1104
 * 100xentry:
Jon Griffiths's avatar
Jon Griffiths committed
1105 1106 1107
 *|	00..17:		Code
 *|	18:	PDB	*owning_process;
 *|	1C:	PTR	blockstart
1108 1109 1110 1111 1112 1113 1114
 *
 * We ignore this for now. (Just a note for further developers)
 * FIXME: use this method, so we don't waste selectors...
 *
 * Following code is then generated by AllocSLCallback. The code is 16 bit, so
 * the 0x66 prefix switches from word->long registers.
 *
Jon Griffiths's avatar
Jon Griffiths committed
1115 1116 1117 1118
 *|	665A		pop	edx
 *|	6668x arg2 x 	pushl	<arg2>
 *|	6652		push	edx
 *|	EAx arg1 x	jmpf	<arg1>
1119 1120 1121
 *
 * returns the startaddress of this thunk.
 *
Jon Griffiths's avatar
Jon Griffiths committed
1122
 * Note, that they look very similar to the ones allocates by THUNK_Alloc.
1123
 * RETURNS
Jon Griffiths's avatar
Jon Griffiths committed
1124
 *	A segmented pointer to the start of the thunk
1125 1126 1127
 */
DWORD WINAPI
AllocSLCallback(
Jon Griffiths's avatar
Jon Griffiths committed
1128 1129
	DWORD finalizer,	/* [in] Finalizer function */
	DWORD callback		/* [in] Callback function */
1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141
) {
	LPBYTE	x,thunk = HeapAlloc( GetProcessHeap(), 0, 32 );
	WORD	sel;

	x=thunk;
	*x++=0x66;*x++=0x5a;				/* popl edx */
	*x++=0x66;*x++=0x68;*(DWORD*)x=finalizer;x+=4;	/* pushl finalizer */
	*x++=0x66;*x++=0x52;				/* pushl edx */
	*x++=0xea;*(DWORD*)x=callback;x+=4;		/* jmpf callback */

	*(DWORD*)(thunk+18) = GetCurrentProcessId();

1142
	sel = SELECTOR_AllocBlock( thunk, 32, WINE_LDT_FLAGS_CODE );
1143 1144 1145 1146
	return (sel<<16)|0;
}

/**********************************************************************
1147
 * 		FreeSLCallback		(KERNEL32.@)
1148
 * Frees the specified 16->32 callback
1149 1150 1151
 *
 * RETURNS
 *  Nothing.
1152 1153 1154 1155 1156
 */
void WINAPI
FreeSLCallback(
	DWORD x	/* [in] 16 bit callback (segmented pointer?) */
) {
1157
	FIXME("(0x%08x): stub\n",x);
1158 1159
}

1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203
/**********************************************************************
 * 		AllocMappedBuffer	(KERNEL32.38)
 *
 * This is an undocumented KERNEL32 function that
 * SMapLS's a GlobalAlloc'ed buffer.
 *
 * RETURNS
 *       EDI register: pointer to buffer
 *
 * NOTES
 *       The buffer is preceded by 8 bytes:
 *        ...
 *       edi+0   buffer
 *       edi-4   SEGPTR to buffer
 *       edi-8   some magic Win95 needs for SUnMapLS
 *               (we use it for the memory handle)
 *
 *       The SEGPTR is used by the caller!
 */
void WINAPI __regs_AllocMappedBuffer(
              CONTEXT86 *context /* [in] EDI register: size of buffer to allocate */
) {
    HGLOBAL handle = GlobalAlloc(0, context->Edi + 8);
    DWORD *buffer = GlobalLock(handle);
    DWORD ptr = 0;

    if (buffer)
        if (!(ptr = MapLS(buffer + 2)))
        {
            GlobalUnlock(handle);
            GlobalFree(handle);
        }

    if (!ptr)
        context->Eax = context->Edi = 0;
    else
    {
        buffer[0] = (DWORD)handle;
        buffer[1] = ptr;

        context->Eax = ptr;
        context->Edi = (DWORD)(buffer + 2);
    }
}
1204
DEFINE_REGS_ENTRYPOINT( AllocMappedBuffer, 0 )
1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226

/**********************************************************************
 * 		FreeMappedBuffer	(KERNEL32.39)
 *
 * Free a buffer allocated by AllocMappedBuffer
 *
 * RETURNS
 *  Nothing.
 */
void WINAPI __regs_FreeMappedBuffer(
              CONTEXT86 *context /* [in] EDI register: pointer to buffer */
) {
    if (context->Edi)
    {
        DWORD *buffer = (DWORD *)context->Edi - 2;

        UnMapLS(buffer[1]);

        GlobalUnlock((HGLOBAL)buffer[0]);
        GlobalFree((HGLOBAL)buffer[0]);
    }
}
1227
DEFINE_REGS_ENTRYPOINT( FreeMappedBuffer, 0 )
1228 1229 1230 1231 1232

/**********************************************************************
 * 		GetTEBSelectorFS	(KERNEL.475)
 * 	Set the 16-bit %fs to the 32-bit %fs (current TEB selector)
 */
1233
void WINAPI GetTEBSelectorFS16(void)
1234
{
1235
    CURRENT_STACK16->fs = wine_get_fs();
1236 1237 1238
}

/**********************************************************************
1239
 * 		IsPeFormat		(KERNEL.431)
Jon Griffiths's avatar
Jon Griffiths committed
1240 1241 1242
 *
 * Determine if a file is a PE format executable.
 *
1243 1244
 * RETURNS
 *  TRUE, if it is.
Jon Griffiths's avatar
Jon Griffiths committed
1245 1246 1247 1248
 *  FALSE if the file could not be opened or is not a PE file.
 *
 * NOTES
 *  If fn is given as NULL then the function expects hf16 to be valid.
1249 1250
 */
BOOL16 WINAPI IsPeFormat16(
1251
	LPSTR	fn,	/* [in] Filename to the executable */
Jon Griffiths's avatar
Jon Griffiths committed
1252 1253
	HFILE16 hf16)	/* [in] An open file handle */
{
1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269
    BOOL ret = FALSE;
    IMAGE_DOS_HEADER mzh;
    OFSTRUCT ofs;
    DWORD xmagic;

    if (fn) hf16 = OpenFile16(fn,&ofs,OF_READ);
    if (hf16 == HFILE_ERROR16) return FALSE;
    _llseek16(hf16,0,SEEK_SET);
    if (sizeof(mzh)!=_lread16(hf16,&mzh,sizeof(mzh))) goto done;
    if (mzh.e_magic!=IMAGE_DOS_SIGNATURE) goto done;
    _llseek16(hf16,mzh.e_lfanew,SEEK_SET);
    if (sizeof(DWORD)!=_lread16(hf16,&xmagic,sizeof(DWORD))) goto done;
    ret = (xmagic == IMAGE_NT_SIGNATURE);
 done:
    _lclose16(hf16);
    return ret;
1270 1271 1272 1273
}


/***********************************************************************
1274
 *           K32Thk1632Prolog			(KERNEL32.@)
1275
 */
1276
void WINAPI __regs_K32Thk1632Prolog( CONTEXT86 *context )
1277
{
1278
   LPBYTE code = (LPBYTE)context->Eip - 5;
1279 1280 1281 1282 1283 1284

   /* Arrrgh! SYSTHUNK.DLL just has to re-implement another method
      of 16->32 thunks instead of using one of the standard methods!
      This means that SYSTHUNK.DLL itself switches to a 32-bit stack,
      and does a far call to the 32-bit code segment of OLECLI32/OLESVR32.
      Unfortunately, our CallTo/CallFrom mechanism is therefore completely
1285
      bypassed, which means it will crash the next time the 32-bit OLE
1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297
      code thunks down again to 16-bit (this *will* happen!).

      The following hack tries to recognize this situation.
      This is possible since the called stubs in OLECLI32/OLESVR32 all
      look exactly the same:
        00   E8xxxxxxxx    call K32Thk1632Prolog
        05   FF55FC        call [ebp-04]
        08   E8xxxxxxxx    call K32Thk1632Epilog
        0D   66CB          retf

      If we recognize this situation, we try to simulate the actions
      of our CallTo/CallFrom mechanism by copying the 16-bit stack
1298 1299
      to our 32-bit stack, creating a proper STACK16FRAME and
      updating cur_stack. */
1300 1301 1302 1303

   if (   code[5] == 0xFF && code[6] == 0x55 && code[7] == 0xFC
       && code[13] == 0x66 && code[14] == 0xCB)
   {
1304 1305
      DWORD argSize = context->Ebp - context->Esp;
      char *stack16 = (char *)context->Esp - 4;
1306
      STACK16FRAME *frame16 = (STACK16FRAME *)stack16 - 1;
1307 1308 1309 1310
      STACK32FRAME *frame32 = (STACK32FRAME *)NtCurrentTeb()->WOW32Reserved;
      char *stack32 = (char *)frame32 - argSize;
      WORD  stackSel  = SELECTOROF(frame32->frame16);
      DWORD stackBase = GetSelectorBase(stackSel);
1311

1312
      TRACE("before SYSTHUNK hack: EBP: %08x ESP: %08x cur_stack: %p\n",
1313
            context->Ebp, context->Esp, NtCurrentTeb()->WOW32Reserved);
1314 1315

      memset(frame16, '\0', sizeof(STACK16FRAME));
1316
      frame16->frame32 = frame32;
1317
      frame16->ebp = context->Ebp;
1318 1319

      memcpy(stack32, stack16, argSize);
1320
      NtCurrentTeb()->WOW32Reserved = (void *)MAKESEGPTR(stackSel, (DWORD)frame16 - stackBase);
1321

1322 1323
      context->Esp = (DWORD)stack32 + 4;
      context->Ebp = context->Esp + argSize;
1324

1325
      TRACE("after  SYSTHUNK hack: EBP: %08x ESP: %08x cur_stack: %p\n",
1326
            context->Ebp, context->Esp, NtCurrentTeb()->WOW32Reserved);
1327 1328
   }

1329 1330 1331
    /* entry_point is never used again once the entry point has
       been called.  Thus we re-use it to hold the Win16Lock count */
   ReleaseThunkLock(&CURRENT_STACK16->entry_point);
1332
}
1333
DEFINE_REGS_ENTRYPOINT( K32Thk1632Prolog, 0 )
1334 1335

/***********************************************************************
1336
 *           K32Thk1632Epilog			(KERNEL32.@)
1337
 */
1338
void WINAPI __regs_K32Thk1632Epilog( CONTEXT86 *context )
1339
{
1340
   LPBYTE code = (LPBYTE)context->Eip - 13;
1341

1342
   RestoreThunkLock(CURRENT_STACK16->entry_point);
1343 1344 1345 1346 1347 1348

   /* We undo the SYSTHUNK hack if necessary. See K32Thk1632Prolog. */

   if (   code[5] == 0xFF && code[6] == 0x55 && code[7] == 0xFC
       && code[13] == 0x66 && code[14] == 0xCB)
   {
1349
      STACK16FRAME *frame16 = MapSL((SEGPTR)NtCurrentTeb()->WOW32Reserved);
1350 1351 1352 1353
      char *stack16 = (char *)(frame16 + 1);
      DWORD argSize = frame16->ebp - (DWORD)stack16;
      char *stack32 = (char *)frame16->frame32 - argSize;

1354
      DWORD nArgsPopped = context->Esp - (DWORD)stack32;
1355

1356
      TRACE("before SYSTHUNK hack: EBP: %08x ESP: %08x cur_stack: %p\n",
1357
            context->Ebp, context->Esp, NtCurrentTeb()->WOW32Reserved);
1358

1359
      NtCurrentTeb()->WOW32Reserved = frame16->frame32;
1360

1361 1362
      context->Esp = (DWORD)stack16 + nArgsPopped;
      context->Ebp = frame16->ebp;
1363

1364
      TRACE("after  SYSTHUNK hack: EBP: %08x ESP: %08x cur_stack: %p\n",
1365
            context->Ebp, context->Esp, NtCurrentTeb()->WOW32Reserved);
1366 1367
   }
}
1368
DEFINE_REGS_ENTRYPOINT( K32Thk1632Epilog, 0 )
1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386

/*********************************************************************
 *                   PK16FNF [KERNEL32.91]
 *
 *  This routine fills in the supplied 13-byte (8.3 plus terminator)
 *  string buffer with the 8.3 filename of a recently loaded 16-bit
 *  module.  It is unknown exactly what modules trigger this
 *  mechanism or what purpose this serves.  Win98 Explorer (and
 *  probably also Win95 with IE 4 shell integration) calls this
 *  several times during initialization.
 *
 *  FIXME: find out what this really does and make it work.
 */
void WINAPI PK16FNF(LPSTR strPtr)
{
       FIXME("(%p): stub\n", strPtr);

       /* fill in a fake filename that'll be easy to recognize */
1387
       strcpy(strPtr, "WINESTUB.FIX");
1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412
}

/***********************************************************************
 * 16->32 Flat Thunk routines:
 */

/***********************************************************************
 *              ThunkConnect16          (KERNEL.651)
 * Connects a 32bit and a 16bit thunkbuffer.
 */
UINT WINAPI ThunkConnect16(
        LPSTR module16,              /* [in] name of win16 dll */
        LPSTR module32,              /* [in] name of win32 dll */
        HINSTANCE16 hInst16,         /* [in] hInst of win16 dll */
        DWORD dwReason,              /* [in] initialisation argument */
        struct ThunkDataCommon *TD,  /* [in/out] thunkbuffer */
        LPSTR thunkfun32,            /* [in] win32 thunkfunction */
        WORD cs                      /* [in] CS of win16 dll */
) {
    BOOL directionSL;

    if (!strncmp(TD->magic, "SL01", 4))
    {
        directionSL = TRUE;

1413
        TRACE("SL01 thunk %s (%p) -> %s (%s), Reason: %d\n",
1414
              module16, TD, module32, thunkfun32, dwReason);
1415 1416 1417 1418 1419
    }
    else if (!strncmp(TD->magic, "LS01", 4))
    {
        directionSL = FALSE;

1420
        TRACE("LS01 thunk %s (%p) <- %s (%s), Reason: %d\n",
1421
              module16, TD, module32, thunkfun32, dwReason);
1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445
    }
    else
    {
        ERR("Invalid magic %c%c%c%c\n",
            TD->magic[0], TD->magic[1], TD->magic[2], TD->magic[3]);
        return 0;
    }

    switch (dwReason)
    {
        case DLL_PROCESS_ATTACH:
            if (directionSL)
            {
                struct ThunkDataSL16 *SL16 = (struct ThunkDataSL16 *)TD;
                struct ThunkDataSL   *SL   = SL16->fpData;

                if (SL == NULL)
                {
                    SL = HeapAlloc(GetProcessHeap(), 0, sizeof(*SL));

                    SL->common   = SL16->common;
                    SL->flags1   = SL16->flags1;
                    SL->flags2   = SL16->flags2;

1446
                    SL->apiDB    = MapSL(SL16->apiDatabase);
1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486
                    SL->targetDB = NULL;

                    lstrcpynA(SL->pszDll16, module16, 255);
                    lstrcpynA(SL->pszDll32, module32, 255);

                    /* We should create a SEGPTR to the ThunkDataSL,
                       but since the contents are not in the original format,
                       any access to this by 16-bit code would crash anyway. */
                    SL16->spData = 0;
                    SL16->fpData = SL;
                }


                if (SL->flags2 & 0x80000000)
                {
                    TRACE("Preloading 32-bit library\n");
                    LoadLibraryA(module32);
                }
            }
            else
            {
                /* nothing to do */
            }
            break;

        case DLL_PROCESS_DETACH:
            /* FIXME: cleanup */
            break;
    }

    return 1;
}


/***********************************************************************
 *           C16ThkSL                           (KERNEL.630)
 */

void WINAPI C16ThkSL(CONTEXT86 *context)
{
1487
    LPBYTE stub = MapSL(context->Eax), x = stub;
1488 1489
    WORD cs = wine_get_cs();
    WORD ds = wine_get_ds();
1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500

    /* We produce the following code:
     *
     *   mov ax, __FLATDS
     *   mov es, ax
     *   movzx ecx, cx
     *   mov edx, es:[ecx + $EDX]
     *   push bp
     *   push edx
     *   push dx
     *   push edx
1501
     *   call __FLATCS:__wine_call_from_16_thunk
1502 1503
     */

1504
    *x++ = 0xB8; *(WORD *)x = ds; x += sizeof(WORD);
1505 1506 1507
    *x++ = 0x8E; *x++ = 0xC0;
    *x++ = 0x66; *x++ = 0x0F; *x++ = 0xB7; *x++ = 0xC9;
    *x++ = 0x67; *x++ = 0x66; *x++ = 0x26; *x++ = 0x8B;
1508
                 *x++ = 0x91; *(DWORD *)x = context->Edx; x += sizeof(DWORD);
1509 1510 1511 1512 1513

    *x++ = 0x55;
    *x++ = 0x66; *x++ = 0x52;
    *x++ = 0x52;
    *x++ = 0x66; *x++ = 0x52;
1514 1515 1516
    *x++ = 0x66; *x++ = 0x9A;
    *(void **)x = __wine_call_from_16_thunk; x += sizeof(void *);
    *(WORD *)x = cs; x += sizeof(WORD);
1517 1518

    /* Jump to the stub code just created */
1519 1520
    context->Eip = LOWORD(context->Eax);
    context->SegCs  = HIWORD(context->Eax);
1521 1522 1523

    /* Since C16ThkSL got called by a jmp, we need to leave the
       original return address on the stack */
1524
    context->Esp -= 4;
1525 1526 1527 1528 1529 1530 1531 1532
}

/***********************************************************************
 *           C16ThkSL01                         (KERNEL.631)
 */

void WINAPI C16ThkSL01(CONTEXT86 *context)
{
1533
    LPBYTE stub = MapSL(context->Eax), x = stub;
1534 1535 1536

    if (stub)
    {
1537
        struct ThunkDataSL16 *SL16 = MapSL(context->Edx);
1538 1539
        struct ThunkDataSL *td = SL16->fpData;

1540
        DWORD procAddress = (DWORD)GetProcAddress16(GetModuleHandle16("KERNEL"), (LPCSTR)631);
1541
        WORD cs = wine_get_cs();
1542 1543 1544 1545 1546 1547 1548

        if (!td)
        {
            ERR("ThunkConnect16 was not called!\n");
            return;
        }

1549
        TRACE("Creating stub for ThunkDataSL %p\n", td);
1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560


        /* We produce the following code:
         *
         *   xor eax, eax
         *   mov edx, $td
         *   call C16ThkSL01
         *   push bp
         *   push edx
         *   push dx
         *   push edx
1561
         *   call __FLATCS:__wine_call_from_16_thunk
1562 1563 1564
         */

        *x++ = 0x66; *x++ = 0x33; *x++ = 0xC0;
1565 1566
        *x++ = 0x66; *x++ = 0xBA; *(void **)x = td; x += sizeof(void *);
        *x++ = 0x9A; *(DWORD *)x = procAddress; x += sizeof(DWORD);
1567 1568 1569 1570 1571

        *x++ = 0x55;
        *x++ = 0x66; *x++ = 0x52;
        *x++ = 0x52;
        *x++ = 0x66; *x++ = 0x52;
1572 1573 1574
        *x++ = 0x66; *x++ = 0x9A;
        *(void **)x = __wine_call_from_16_thunk; x += sizeof(void *);
        *(WORD *)x = cs; x += sizeof(WORD);
1575 1576

        /* Jump to the stub code just created */
1577 1578
        context->Eip = LOWORD(context->Eax);
        context->SegCs  = HIWORD(context->Eax);
1579 1580

        /* Since C16ThkSL01 got called by a jmp, we need to leave the
1581
           original return address on the stack */
1582
        context->Esp -= 4;
1583 1584 1585
    }
    else
    {
1586
        struct ThunkDataSL *td = (struct ThunkDataSL *)context->Edx;
1587
        DWORD targetNr = LOWORD(context->Ecx) / 4;
1588 1589
        struct SLTargetDB *tdb;

1590
        TRACE("Process %08x calling target %d of ThunkDataSL %p\n",
1591
              GetCurrentProcessId(), targetNr, td);
1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608

        for (tdb = td->targetDB; tdb; tdb = tdb->next)
            if (tdb->process == GetCurrentProcessId())
                break;

        if (!tdb)
        {
            TRACE("Loading 32-bit library %s\n", td->pszDll32);
            LoadLibraryA(td->pszDll32);

            for (tdb = td->targetDB; tdb; tdb = tdb->next)
                if (tdb->process == GetCurrentProcessId())
                    break;
        }

        if (tdb)
        {
1609
            context->Edx = tdb->targetTable[targetNr];
1610

1611
            TRACE("Call target is %08x\n", context->Edx);
1612 1613 1614
        }
        else
        {
1615
            WORD *stack = MapSL( MAKESEGPTR(context->SegSs, LOWORD(context->Esp)) );
1616 1617
            context->Edx = (context->Edx & ~0xffff) | HIWORD(td->apiDB[targetNr].errorReturnValue);
            context->Eax = (context->Eax & ~0xffff) | LOWORD(td->apiDB[targetNr].errorReturnValue);
1618 1619 1620
            context->Eip = stack[2];
            context->SegCs  = stack[3];
            context->Esp += td->apiDB[targetNr].nrArgBytes + 4;
1621

1622
            ERR("Process %08x did not ThunkConnect32 %s to %s\n",
1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656
                GetCurrentProcessId(), td->pszDll32, td->pszDll16);
        }
    }
}


/***********************************************************************
 * 16<->32 Thunklet/Callback API:
 */

#include "pshpack1.h"
typedef struct _THUNKLET
{
    BYTE        prefix_target;
    BYTE        pushl_target;
    DWORD       target;

    BYTE        prefix_relay;
    BYTE        pushl_relay;
    DWORD       relay;

    BYTE        jmp_glue;
    DWORD       glue;

    BYTE        type;
    HINSTANCE16 owner;
    struct _THUNKLET *next;
} THUNKLET;
#include "poppack.h"

#define THUNKLET_TYPE_LS  1
#define THUNKLET_TYPE_SL  2

static HANDLE  ThunkletHeap = 0;
1657
static WORD ThunkletCodeSel;
1658 1659 1660 1661 1662 1663 1664 1665
static THUNKLET *ThunkletAnchor = NULL;

static FARPROC ThunkletSysthunkGlueLS = 0;
static SEGPTR    ThunkletSysthunkGlueSL = 0;

static FARPROC ThunkletCallbackGlueLS = 0;
static SEGPTR    ThunkletCallbackGlueSL = 0;

1666 1667

/* map a thunk allocated on ThunkletHeap to a 16-bit pointer */
1668
static inline SEGPTR get_segptr( void *thunk )
1669
{
1670
    if (!thunk) return 0;
1671 1672 1673
    return MAKESEGPTR( ThunkletCodeSel, (char *)thunk - (char *)ThunkletHeap );
}

1674 1675 1676
/***********************************************************************
 *           THUNK_Init
 */
1677
static BOOL THUNK_Init(void)
1678 1679 1680
{
    LPBYTE thunk;

1681
    ThunkletHeap = HeapCreate( 0, 0x10000, 0x10000 );
1682 1683
    if (!ThunkletHeap) return FALSE;

1684
    ThunkletCodeSel = SELECTOR_AllocBlock( ThunkletHeap, 0x10000, WINE_LDT_FLAGS_CODE );
1685

1686 1687
    thunk = HeapAlloc( ThunkletHeap, 0, 5 );
    if (!thunk) return FALSE;
1688

1689 1690 1691 1692
    ThunkletSysthunkGlueLS = (FARPROC)thunk;
    *thunk++ = 0x58;                             /* popl eax */
    *thunk++ = 0xC3;                             /* ret      */

1693
    ThunkletSysthunkGlueSL = get_segptr( thunk );
1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712
    *thunk++ = 0x66; *thunk++ = 0x58;            /* popl eax */
    *thunk++ = 0xCB;                             /* lret     */

    return TRUE;
}

/***********************************************************************
 *     SetThunkletCallbackGlue             (KERNEL.560)
 */
void WINAPI SetThunkletCallbackGlue16( FARPROC glueLS, SEGPTR glueSL )
{
    ThunkletCallbackGlueLS = glueLS;
    ThunkletCallbackGlueSL = glueSL;
}


/***********************************************************************
 *     THUNK_FindThunklet
 */
1713 1714
static THUNKLET *THUNK_FindThunklet( DWORD target, DWORD relay,
                                     DWORD glue, BYTE type )
1715
{
1716
    THUNKLET *thunk;
1717 1718 1719 1720

    for (thunk = ThunkletAnchor; thunk; thunk = thunk->next)
        if (    thunk->type   == type
             && thunk->target == target
1721
             && thunk->relay  == relay
1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732
             && ( type == THUNKLET_TYPE_LS ?
                    ( thunk->glue == glue - (DWORD)&thunk->type )
                  : ( thunk->glue == glue ) ) )
            return thunk;

     return NULL;
}

/***********************************************************************
 *     THUNK_AllocLSThunklet
 */
1733 1734
static FARPROC THUNK_AllocLSThunklet( SEGPTR target, DWORD relay,
                                      FARPROC glue, HTASK16 owner )
1735 1736 1737 1738 1739
{
    THUNKLET *thunk = THUNK_FindThunklet( (DWORD)target, relay, (DWORD)glue,
                                          THUNKLET_TYPE_LS );
    if (!thunk)
    {
1740
        TDB *pTask = GlobalLock16( owner );
1741

1742
        if (!ThunkletHeap) THUNK_Init();
1743 1744 1745 1746 1747 1748 1749 1750
        if ( !(thunk = HeapAlloc( ThunkletHeap, 0, sizeof(THUNKLET) )) )
            return 0;

        thunk->prefix_target = thunk->prefix_relay = 0x90;
        thunk->pushl_target  = thunk->pushl_relay  = 0x68;
        thunk->jmp_glue = 0xE9;

        thunk->target  = (DWORD)target;
1751
        thunk->relay   = relay;
1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766
        thunk->glue    = (DWORD)glue - (DWORD)&thunk->type;

        thunk->type    = THUNKLET_TYPE_LS;
        thunk->owner   = pTask? pTask->hInstance : 0;

        thunk->next    = ThunkletAnchor;
        ThunkletAnchor = thunk;
    }

    return (FARPROC)thunk;
}

/***********************************************************************
 *     THUNK_AllocSLThunklet
 */
1767 1768
static SEGPTR THUNK_AllocSLThunklet( FARPROC target, DWORD relay,
                                     SEGPTR glue, HTASK16 owner )
1769 1770 1771 1772 1773
{
    THUNKLET *thunk = THUNK_FindThunklet( (DWORD)target, relay, (DWORD)glue,
                                          THUNKLET_TYPE_SL );
    if (!thunk)
    {
1774
        TDB *pTask = GlobalLock16( owner );
1775

1776
        if (!ThunkletHeap) THUNK_Init();
1777 1778 1779 1780 1781 1782 1783 1784
        if ( !(thunk = HeapAlloc( ThunkletHeap, 0, sizeof(THUNKLET) )) )
            return 0;

        thunk->prefix_target = thunk->prefix_relay = 0x66;
        thunk->pushl_target  = thunk->pushl_relay  = 0x68;
        thunk->jmp_glue = 0xEA;

        thunk->target  = (DWORD)target;
1785
        thunk->relay   = relay;
1786 1787 1788 1789 1790 1791 1792 1793 1794
        thunk->glue    = (DWORD)glue;

        thunk->type    = THUNKLET_TYPE_SL;
        thunk->owner   = pTask? pTask->hInstance : 0;

        thunk->next    = ThunkletAnchor;
        ThunkletAnchor = thunk;
    }

1795
    return get_segptr( thunk );
1796 1797 1798 1799 1800
}

/**********************************************************************
 *     IsLSThunklet
 */
1801
static BOOL16 IsLSThunklet( THUNKLET *thunk )
1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822
{
    return    thunk->prefix_target == 0x90 && thunk->pushl_target == 0x68
           && thunk->prefix_relay  == 0x90 && thunk->pushl_relay  == 0x68
           && thunk->jmp_glue == 0xE9 && thunk->type == THUNKLET_TYPE_LS;
}

/**********************************************************************
 *     IsSLThunklet                        (KERNEL.612)
 */
BOOL16 WINAPI IsSLThunklet16( THUNKLET *thunk )
{
    return    thunk->prefix_target == 0x66 && thunk->pushl_target == 0x68
           && thunk->prefix_relay  == 0x66 && thunk->pushl_relay  == 0x68
           && thunk->jmp_glue == 0xEA && thunk->type == THUNKLET_TYPE_SL;
}



/***********************************************************************
 *     AllocLSThunkletSysthunk             (KERNEL.607)
 */
1823
FARPROC WINAPI AllocLSThunkletSysthunk16( SEGPTR target,
1824 1825
                                          FARPROC relay, DWORD dummy )
{
1826
    if (!ThunkletSysthunkGlueLS) THUNK_Init();
1827
    return THUNK_AllocLSThunklet( (SEGPTR)relay, (DWORD)target,
1828 1829 1830 1831 1832 1833
                                  ThunkletSysthunkGlueLS, GetCurrentTask() );
}

/***********************************************************************
 *     AllocSLThunkletSysthunk             (KERNEL.608)
 */
1834
SEGPTR WINAPI AllocSLThunkletSysthunk16( FARPROC target,
1835 1836
                                       SEGPTR relay, DWORD dummy )
{
1837
    if (!ThunkletSysthunkGlueSL) THUNK_Init();
1838
    return THUNK_AllocSLThunklet( (FARPROC)relay, (DWORD)target,
1839 1840 1841 1842 1843 1844 1845
                                  ThunkletSysthunkGlueSL, GetCurrentTask() );
}


/***********************************************************************
 *     AllocLSThunkletCallbackEx           (KERNEL.567)
 */
1846
FARPROC WINAPI AllocLSThunkletCallbackEx16( SEGPTR target,
1847 1848
                                            DWORD relay, HTASK16 task )
{
1849
    THUNKLET *thunk = MapSL( target );
1850 1851
    if ( !thunk ) return NULL;

1852
    if (   IsSLThunklet16( thunk ) && thunk->relay == relay
1853 1854 1855
        && thunk->glue == (DWORD)ThunkletCallbackGlueSL )
        return (FARPROC)thunk->target;

1856
    return THUNK_AllocLSThunklet( target, relay,
1857 1858 1859 1860 1861 1862
                                  ThunkletCallbackGlueLS, task );
}

/***********************************************************************
 *     AllocSLThunkletCallbackEx           (KERNEL.568)
 */
1863
SEGPTR WINAPI AllocSLThunkletCallbackEx16( FARPROC target,
1864 1865 1866 1867 1868
                                         DWORD relay, HTASK16 task )
{
    THUNKLET *thunk = (THUNKLET *)target;
    if ( !thunk ) return 0;

1869
    if (   IsLSThunklet( thunk ) && thunk->relay == relay
1870 1871 1872
        && thunk->glue == (DWORD)ThunkletCallbackGlueLS - (DWORD)&thunk->type )
        return (SEGPTR)thunk->target;

1873
    return THUNK_AllocSLThunklet( target, relay,
1874 1875 1876 1877
                                  ThunkletCallbackGlueSL, task );
}

/***********************************************************************
1878
 *     AllocLSThunkletCallback             (KERNEL.561)
1879
 *     AllocLSThunkletCallback_dup         (KERNEL.606)
1880 1881 1882 1883 1884 1885 1886
 */
FARPROC WINAPI AllocLSThunkletCallback16( SEGPTR target, DWORD relay )
{
    return AllocLSThunkletCallbackEx16( target, relay, GetCurrentTask() );
}

/***********************************************************************
1887
 *     AllocSLThunkletCallback             (KERNEL.562)
1888
 *     AllocSLThunkletCallback_dup         (KERNEL.605)
1889 1890 1891 1892 1893 1894 1895
 */
SEGPTR WINAPI AllocSLThunkletCallback16( FARPROC target, DWORD relay )
{
    return AllocSLThunkletCallbackEx16( target, relay, GetCurrentTask() );
}

/***********************************************************************
1896
 *     FindLSThunkletCallback              (KERNEL.563)
1897
 *     FindLSThunkletCallback_dup          (KERNEL.609)
1898 1899 1900
 */
FARPROC WINAPI FindLSThunkletCallback( SEGPTR target, DWORD relay )
{
1901
    THUNKLET *thunk = MapSL( target );
1902
    if (   thunk && IsSLThunklet16( thunk ) && thunk->relay == relay
1903 1904 1905
        && thunk->glue == (DWORD)ThunkletCallbackGlueSL )
        return (FARPROC)thunk->target;

1906 1907
    thunk = THUNK_FindThunklet( (DWORD)target, relay,
                                (DWORD)ThunkletCallbackGlueLS,
1908 1909 1910 1911 1912
                                THUNKLET_TYPE_LS );
    return (FARPROC)thunk;
}

/***********************************************************************
1913
 *     FindSLThunkletCallback              (KERNEL.564)
1914
 *     FindSLThunkletCallback_dup          (KERNEL.610)
1915 1916 1917 1918
 */
SEGPTR WINAPI FindSLThunkletCallback( FARPROC target, DWORD relay )
{
    THUNKLET *thunk = (THUNKLET *)target;
1919
    if (   thunk && IsLSThunklet( thunk ) && thunk->relay == relay
1920 1921 1922
        && thunk->glue == (DWORD)ThunkletCallbackGlueLS - (DWORD)&thunk->type )
        return (SEGPTR)thunk->target;

1923 1924
    thunk = THUNK_FindThunklet( (DWORD)target, relay,
                                (DWORD)ThunkletCallbackGlueSL,
1925
                                THUNKLET_TYPE_SL );
1926
    return get_segptr( thunk );
1927 1928 1929 1930
}


/***********************************************************************
Patrik Stridvall's avatar
Patrik Stridvall committed
1931
 *     FreeThunklet            (KERNEL.611)
1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952
 */
BOOL16 WINAPI FreeThunklet16( DWORD unused1, DWORD unused2 )
{
    return FALSE;
}


/***********************************************************************
 * Callback Client API
 */

#define N_CBC_FIXED    20
#define N_CBC_VARIABLE 10
#define N_CBC_TOTAL    (N_CBC_FIXED + N_CBC_VARIABLE)

static SEGPTR CBClientRelay16[ N_CBC_TOTAL ];
static FARPROC *CBClientRelay32[ N_CBC_TOTAL ];

/***********************************************************************
 *     RegisterCBClient                    (KERNEL.619)
 */
1953
INT16 WINAPI RegisterCBClient16( INT16 wCBCId,
1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976
                                 SEGPTR relay16, FARPROC *relay32 )
{
    /* Search for free Callback ID */
    if ( wCBCId == -1 )
        for ( wCBCId = N_CBC_FIXED; wCBCId < N_CBC_TOTAL; wCBCId++ )
            if ( !CBClientRelay16[ wCBCId ] )
                break;

    /* Register Callback ID */
    if ( wCBCId > 0 && wCBCId < N_CBC_TOTAL )
    {
        CBClientRelay16[ wCBCId ] = relay16;
        CBClientRelay32[ wCBCId ] = relay32;
    }
    else
        wCBCId = 0;

    return wCBCId;
}

/***********************************************************************
 *     UnRegisterCBClient                  (KERNEL.622)
 */
1977
INT16 WINAPI UnRegisterCBClient16( INT16 wCBCId,
1978 1979
                                   SEGPTR relay16, FARPROC *relay32 )
{
1980 1981
    if (    wCBCId >= N_CBC_FIXED && wCBCId < N_CBC_TOTAL
         && CBClientRelay16[ wCBCId ] == relay16
1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999
         && CBClientRelay32[ wCBCId ] == relay32 )
    {
        CBClientRelay16[ wCBCId ] = 0;
        CBClientRelay32[ wCBCId ] = 0;
    }
    else
        wCBCId = 0;

    return wCBCId;
}


/***********************************************************************
 *     InitCBClient                        (KERNEL.623)
 */
void WINAPI InitCBClient16( FARPROC glueLS )
{
    HMODULE16 kernel = GetModuleHandle16( "KERNEL" );
2000
    SEGPTR glueSL = (SEGPTR)GetProcAddress16( kernel, (LPCSTR)604 );
2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011

    SetThunkletCallbackGlue16( glueLS, glueSL );
}

/***********************************************************************
 *     CBClientGlueSL                      (KERNEL.604)
 */
void WINAPI CBClientGlueSL( CONTEXT86 *context )
{
    /* Create stack frame */
    SEGPTR stackSeg = stack16_push( 12 );
2012
    LPWORD stackLin = MapSL( stackSeg );
2013
    SEGPTR glue, *glueTab;
2014

2015 2016 2017 2018
    stackLin[3] = (WORD)context->Ebp;
    stackLin[2] = (WORD)context->Esi;
    stackLin[1] = (WORD)context->Edi;
    stackLin[0] = (WORD)context->SegDs;
2019

2020 2021 2022
    context->Ebp = OFFSETOF( stackSeg ) + 6;
    context->Esp = OFFSETOF( stackSeg ) - 4;
    context->SegGs = 0;
2023 2024

    /* Jump to 16-bit relay code */
2025
    glueTab = MapSL( CBClientRelay16[ stackLin[5] ] );
2026
    glue = glueTab[ stackLin[4] ];
2027 2028
    context->SegCs = SELECTOROF( glue );
    context->Eip   = OFFSETOF  ( glue );
2029 2030 2031 2032 2033
}

/***********************************************************************
 *     CBClientThunkSL                      (KERNEL.620)
 */
2034
extern DWORD CALL32_CBClient( FARPROC proc, LPWORD args, WORD *stackLin, DWORD *esi );
2035 2036 2037 2038
void WINAPI CBClientThunkSL( CONTEXT86 *context )
{
    /* Call 32-bit relay code */

2039
    LPWORD args = MapSL( MAKESEGPTR( context->SegSs, LOWORD(context->Ebp) ) );
2040 2041
    FARPROC proc = CBClientRelay32[ args[2] ][ args[1] ];

2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053
    /* fill temporary area for the asm code (see comments in winebuild) */
    SEGPTR stack = stack16_push( 12 );
    LPWORD stackLin = MapSL(stack);
    /* stackLin[0] and stackLin[1] reserved for the 32-bit stack ptr */
    stackLin[2] = wine_get_ss();
    stackLin[3] = 0;
    stackLin[4] = OFFSETOF(stack) + 12;
    stackLin[5] = SELECTOROF(stack);
    stackLin[6] = OFFSETOF(CALL32_CBClientEx_RetAddr);  /* overwrite return address */
    stackLin[7] = SELECTOROF(CALL32_CBClientEx_RetAddr);
    context->Eax = CALL32_CBClient( proc, args, stackLin + 4, &context->Esi );
    stack16_pop( 12 );
2054 2055 2056 2057 2058
}

/***********************************************************************
 *     CBClientThunkSLEx                    (KERNEL.621)
 */
2059
extern DWORD CALL32_CBClientEx( FARPROC proc, LPWORD args, WORD *stackLin, DWORD *esi, INT *nArgs );
2060 2061 2062 2063
void WINAPI CBClientThunkSLEx( CONTEXT86 *context )
{
    /* Call 32-bit relay code */

2064
    LPWORD args = MapSL( MAKESEGPTR( context->SegSs, LOWORD(context->Ebp) ) );
2065 2066 2067 2068
    FARPROC proc = CBClientRelay32[ args[2] ][ args[1] ];
    INT nArgs;
    LPWORD stackLin;

2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083
    /* fill temporary area for the asm code (see comments in winebuild) */
    SEGPTR stack = stack16_push( 24 );
    stackLin = MapSL(stack);
    stackLin[0] = OFFSETOF(stack) + 4;
    stackLin[1] = SELECTOROF(stack);
    stackLin[2] = wine_get_ds();
    stackLin[5] = OFFSETOF(stack) + 24;
    /* stackLin[6] and stackLin[7] reserved for the 32-bit stack ptr */
    stackLin[8] = wine_get_ss();
    stackLin[9] = 0;
    stackLin[10] = OFFSETOF(CALL32_CBClientEx_RetAddr);
    stackLin[11] = SELECTOROF(CALL32_CBClientEx_RetAddr);

    context->Eax = CALL32_CBClientEx( proc, args, stackLin, &context->Esi, &nArgs );
    stack16_pop( 24 );
2084 2085 2086

    /* Restore registers saved by CBClientGlueSL */
    stackLin = (LPWORD)((LPBYTE)CURRENT_STACK16 + sizeof(STACK16FRAME) - 4);
2087
    context->Ebp = (context->Ebp & ~0xffff) | stackLin[3];
2088 2089
    context->Esi = (context->Esi & ~0xffff) | stackLin[2];
    context->Edi = (context->Edi & ~0xffff) | stackLin[1];
2090 2091
    context->SegDs = stackLin[0];
    context->Esp += 16+nArgs;
2092 2093

    /* Return to caller of CBClient thunklet */
2094 2095
    context->SegCs = stackLin[9];
    context->Eip   = stackLin[8];
2096 2097 2098 2099
}


/***********************************************************************
2100
 *           Get16DLLAddress       (KERNEL32.@)
2101 2102 2103 2104 2105
 *
 * This function is used by a Win32s DLL if it wants to call a Win16 function.
 * A 16:16 segmented pointer to the function is returned.
 * Written without any docu.
 */
2106
SEGPTR WINAPI Get16DLLAddress(HMODULE16 handle, LPSTR func_name)
2107 2108 2109 2110 2111 2112 2113
{
    static WORD code_sel32;
    FARPROC16 proc_16;
    LPBYTE thunk;

    if (!code_sel32)
    {
2114
        if (!ThunkletHeap) THUNK_Init();
2115
        code_sel32 = SELECTOR_AllocBlock( ThunkletHeap, 0x10000,
2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130
                                          WINE_LDT_FLAGS_CODE | WINE_LDT_FLAGS_32BIT );
        if (!code_sel32) return 0;
    }
    if (!(thunk = HeapAlloc( ThunkletHeap, 0, 32 ))) return 0;

    if (!handle) handle = GetModuleHandle16("WIN32S16");
    proc_16 = GetProcAddress16(handle, func_name);

    /* movl proc_16, $edx */
    *thunk++ = 0xba;
    *(FARPROC16 *)thunk = proc_16;
    thunk += sizeof(FARPROC16);

     /* jmpl QT_Thunk */
    *thunk++ = 0xea;
2131
    *(FARPROC *)thunk = GetProcAddress(kernel32_handle,"QT_Thunk");
2132
    thunk += sizeof(FARPROC16);
2133
    *(WORD *)thunk = wine_get_cs();
2134 2135

    return MAKESEGPTR( code_sel32, (char *)thunk - (char *)ThunkletHeap );
2136 2137 2138 2139 2140 2141 2142
}


/***********************************************************************
 *		GetWin16DOSEnv			(KERNEL32.34)
 * Returns some internal value.... probably the default environment database?
 */
2143
DWORD WINAPI GetWin16DOSEnv(void)
2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162
{
	FIXME("stub, returning 0\n");
	return 0;
}

/**********************************************************************
 *           GetPK16SysVar    (KERNEL32.92)
 */
LPVOID WINAPI GetPK16SysVar(void)
{
    static BYTE PK16SysVar[128];

    FIXME("()\n");
    return PK16SysVar;
}

/**********************************************************************
 *           CommonUnimpStub    (KERNEL32.17)
 */
2163
void WINAPI __regs_CommonUnimpStub( CONTEXT86 *context )
2164
{
2165
    FIXME("generic stub: %s\n", ((LPSTR)context->Eax ? (LPSTR)context->Eax : "?"));
2166

2167
    switch ((context->Ecx >> 4) & 0x0f)
2168
    {
2169 2170 2171 2172 2173
    case 15:  context->Eax = -1;   break;
    case 14:  context->Eax = 0x78; break;
    case 13:  context->Eax = 0x32; break;
    case 1:   context->Eax = 1;    break;
    default:  context->Eax = 0;    break;
2174 2175
    }

2176
    context->Esp += (context->Ecx & 0x0f) * 4;
2177
}
2178
DEFINE_REGS_ENTRYPOINT( CommonUnimpStub, 0 )
2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189

/**********************************************************************
 *           HouseCleanLogicallyDeadHandles    (KERNEL32.33)
 */
void WINAPI HouseCleanLogicallyDeadHandles(void)
{
    /* Whatever this is supposed to do, our handles probably
       don't need it :-) */
}

/**********************************************************************
Patrik Stridvall's avatar
Patrik Stridvall committed
2190
 *		@ (KERNEL32.100)
2191 2192 2193
 */
BOOL WINAPI _KERNEL32_100(HANDLE threadid,DWORD exitcode,DWORD x)
{
2194
	FIXME("(%p,%d,0x%08x): stub\n",threadid,exitcode,x);
2195 2196 2197 2198
	return TRUE;
}

/**********************************************************************
Patrik Stridvall's avatar
Patrik Stridvall committed
2199
 *		@ (KERNEL32.99)
2200 2201 2202 2203
 *
 * Checks whether the clock has to be switched from daylight
 * savings time to standard time or vice versa.
 *
2204 2205 2206
 */
DWORD WINAPI _KERNEL32_99(DWORD x)
{
2207
	FIXME("(0x%08x): stub\n",x);
2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235
	return 1;
}


/**********************************************************************
 *	     Catch    (KERNEL.55)
 *
 * Real prototype is:
 *   INT16 WINAPI Catch( LPCATCHBUF lpbuf );
 */
void WINAPI Catch16( LPCATCHBUF lpbuf, CONTEXT86 *context )
{
    /* Note: we don't save the current ss, as the catch buffer is */
    /* only 9 words long. Hopefully no one will have the silly    */
    /* idea to change the current stack before calling Throw()... */

    /* Windows uses:
     * lpbuf[0] = ip
     * lpbuf[1] = cs
     * lpbuf[2] = sp
     * lpbuf[3] = bp
     * lpbuf[4] = si
     * lpbuf[5] = di
     * lpbuf[6] = ds
     * lpbuf[7] = unused
     * lpbuf[8] = ss
     */

2236 2237
    lpbuf[0] = LOWORD(context->Eip);
    lpbuf[1] = context->SegCs;
2238
    /* Windows pushes 4 more words before saving sp */
2239 2240 2241 2242 2243
    lpbuf[2] = LOWORD(context->Esp) - 4 * sizeof(WORD);
    lpbuf[3] = LOWORD(context->Ebp);
    lpbuf[4] = LOWORD(context->Esi);
    lpbuf[5] = LOWORD(context->Edi);
    lpbuf[6] = context->SegDs;
2244
    lpbuf[7] = 0;
2245
    lpbuf[8] = context->SegSs;
2246
    context->Eax &= ~0xffff;  /* Return 0 */
2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260
}


/**********************************************************************
 *	     Throw    (KERNEL.56)
 *
 * Real prototype is:
 *   INT16 WINAPI Throw( LPCATCHBUF lpbuf, INT16 retval );
 */
void WINAPI Throw16( LPCATCHBUF lpbuf, INT16 retval, CONTEXT86 *context )
{
    STACK16FRAME *pFrame;
    STACK32FRAME *frame32;

2261
    context->Eax = (context->Eax & ~0xffff) | (WORD)retval;
2262 2263

    /* Find the frame32 corresponding to the frame16 we are jumping to */
2264
    pFrame = CURRENT_STACK16;
2265 2266 2267
    frame32 = pFrame->frame32;
    while (frame32 && frame32->frame16)
    {
2268
        if (OFFSETOF(frame32->frame16) < OFFSETOF(NtCurrentTeb()->WOW32Reserved))
2269 2270 2271 2272 2273 2274 2275
            break;  /* Something strange is going on */
        if (OFFSETOF(frame32->frame16) > lpbuf[2])
        {
            /* We found the right frame */
            pFrame->frame32 = frame32;
            break;
        }
2276
        frame32 = ((STACK16FRAME *)MapSL(frame32->frame16))->frame32;
2277
    }
2278
    RtlUnwind( &pFrame->frame32->frame, NULL, NULL, 0 );
2279

2280 2281 2282 2283 2284 2285 2286
    context->Eip = lpbuf[0];
    context->SegCs  = lpbuf[1];
    context->Esp = lpbuf[2] + 4 * sizeof(WORD) - sizeof(WORD) /*extra arg*/;
    context->Ebp = lpbuf[3];
    context->Esi = lpbuf[4];
    context->Edi = lpbuf[5];
    context->SegDs  = lpbuf[6];
2287

2288
    if (lpbuf[8] != context->SegSs)
2289 2290
        ERR("Switching stack segment with Throw() not supported; expect crash now\n" );
}
2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520


/*
 *  16-bit WOW routines (in KERNEL)
 */

/**********************************************************************
 *           GetVDMPointer32W      (KERNEL.516)
 */
DWORD WINAPI GetVDMPointer32W16( SEGPTR vp, UINT16 fMode )
{
    GlobalPageLock16(GlobalHandle16(SELECTOROF(vp)));
    return (DWORD)K32WOWGetVDMPointer( vp, 0, (DWORD)fMode );
}

/***********************************************************************
 *           LoadLibraryEx32W      (KERNEL.513)
 */
DWORD WINAPI LoadLibraryEx32W16( LPCSTR lpszLibFile, DWORD hFile, DWORD dwFlags )
{
    HMODULE hModule;
    DWORD mutex_count;
    OFSTRUCT ofs;
    const char *p;

    if (!lpszLibFile)
    {
        SetLastError(ERROR_INVALID_PARAMETER);
        return 0;
    }

    /* if the file cannot be found, call LoadLibraryExA anyway, since it might be
       a builtin module. This case is handled in MODULE_LoadLibraryExA */

    if ((p = strrchr( lpszLibFile, '.' )) && !strchr( p, '\\' ))  /* got an extension */
    {
        if (OpenFile16( lpszLibFile, &ofs, OF_EXIST ) != HFILE_ERROR16)
            lpszLibFile = ofs.szPathName;
    }
    else
    {
        char buffer[MAX_PATH+4];
        strcpy( buffer, lpszLibFile );
        strcat( buffer, ".dll" );
        if (OpenFile16( buffer, &ofs, OF_EXIST ) != HFILE_ERROR16)
            lpszLibFile = ofs.szPathName;
    }

    ReleaseThunkLock( &mutex_count );
    hModule = LoadLibraryExA( lpszLibFile, (HANDLE)hFile, dwFlags );
    RestoreThunkLock( mutex_count );

    return (DWORD)hModule;
}

/***********************************************************************
 *           GetProcAddress32W     (KERNEL.515)
 */
DWORD WINAPI GetProcAddress32W16( DWORD hModule, LPCSTR lpszProc )
{
    return (DWORD)GetProcAddress( (HMODULE)hModule, lpszProc );
}

/***********************************************************************
 *           FreeLibrary32W        (KERNEL.514)
 */
DWORD WINAPI FreeLibrary32W16( DWORD hLibModule )
{
    BOOL retv;
    DWORD mutex_count;

    ReleaseThunkLock( &mutex_count );
    retv = FreeLibrary( (HMODULE)hLibModule );
    RestoreThunkLock( mutex_count );
    return (DWORD)retv;
}


#define CPEX_DEST_STDCALL   0x00000000
#define CPEX_DEST_CDECL     0x80000000

/**********************************************************************
 *           WOW_CallProc32W
 */
static DWORD WOW_CallProc32W16( FARPROC proc32, DWORD nrofargs, DWORD *args )
{
    DWORD ret;
    DWORD mutex_count;

    ReleaseThunkLock( &mutex_count );

    /*
     * FIXME:  If ( nrofargs & CPEX_DEST_CDECL ) != 0, we should call a
     *         32-bit CDECL routine ...
     */

    if (!proc32) ret = 0;
    else switch (nrofargs)
    {
    case 0: ret = proc32();
            break;
    case 1: ret = proc32(args[0]);
            break;
    case 2: ret = proc32(args[0],args[1]);
            break;
    case 3: ret = proc32(args[0],args[1],args[2]);
            break;
    case 4: ret = proc32(args[0],args[1],args[2],args[3]);
            break;
    case 5: ret = proc32(args[0],args[1],args[2],args[3],args[4]);
            break;
    case 6: ret = proc32(args[0],args[1],args[2],args[3],args[4],args[5]);
            break;
    case 7: ret = proc32(args[0],args[1],args[2],args[3],args[4],args[5],args[6]);
            break;
    case 8: ret = proc32(args[0],args[1],args[2],args[3],args[4],args[5],args[6],args[7]);
            break;
    case 9: ret = proc32(args[0],args[1],args[2],args[3],args[4],args[5],args[6],args[7],args[8]);
            break;
    case 10:ret = proc32(args[0],args[1],args[2],args[3],args[4],args[5],args[6],args[7],args[8],args[9]);
            break;
    case 11:ret = proc32(args[0],args[1],args[2],args[3],args[4],args[5],args[6],args[7],args[8],args[9],args[10]);
            break;
    case 12:ret = proc32(args[0],args[1],args[2],args[3],args[4],args[5],args[6],args[7],args[8],args[9],args[10],args[11]);
            break;
    case 13:ret = proc32(args[0],args[1],args[2],args[3],args[4],args[5],args[6],args[7],args[8],args[9],args[10],args[11],args[12]);
            break;
    case 14:ret = proc32(args[0],args[1],args[2],args[3],args[4],args[5],args[6],args[7],args[8],args[9],args[10],args[11],args[12],args[13]);
            break;
    case 15:ret = proc32(args[0],args[1],args[2],args[3],args[4],args[5],args[6],args[7],args[8],args[9],args[10],args[11],args[12],args[13],args[14]);
            break;
    default:
            /* FIXME: should go up to 32  arguments */
            ERR("Unsupported number of arguments %d, please report.\n",nrofargs);
            ret = 0;
            break;
    }

    RestoreThunkLock( mutex_count );

    TRACE("returns %08x\n",ret);
    return ret;
}

/**********************************************************************
 *           CallProc32W           (KERNEL.517)
 */
DWORD WINAPIV CallProc32W16( DWORD nrofargs, DWORD argconvmask, FARPROC proc32, VA_LIST16 valist )
{
    DWORD args[32];
    unsigned int i;

    TRACE("(%d,%d,%p args[",nrofargs,argconvmask,proc32);

    for (i=0;i<nrofargs;i++)
    {
        if (argconvmask & (1<<i))
        {
            SEGPTR ptr = VA_ARG16( valist, SEGPTR );
            /* pascal convention, have to reverse the arguments order */
            args[nrofargs - i - 1] = (DWORD)MapSL(ptr);
            TRACE("%08x(%p),",ptr,MapSL(ptr));
        }
        else
        {
            DWORD arg = VA_ARG16( valist, DWORD );
            /* pascal convention, have to reverse the arguments order */
            args[nrofargs - i - 1] = arg;
            TRACE("%d,", arg);
        }
    }
    TRACE("])\n");

    /* POP nrofargs DWORD arguments and 3 DWORD parameters */
    stack16_pop( (3 + nrofargs) * sizeof(DWORD) );

    return WOW_CallProc32W16( proc32, nrofargs, args );
}

/**********************************************************************
 *           _CallProcEx32W         (KERNEL.518)
 */
DWORD WINAPIV CallProcEx32W16( DWORD nrofargs, DWORD argconvmask, FARPROC proc32, VA_LIST16 valist )
{
    DWORD args[32];
    unsigned int i;

    TRACE("(%d,%d,%p args[",nrofargs,argconvmask,proc32);

    for (i=0;i<nrofargs;i++)
    {
        if (argconvmask & (1<<i))
        {
            SEGPTR ptr = VA_ARG16( valist, SEGPTR );
            args[i] = (DWORD)MapSL(ptr);
            TRACE("%08x(%p),",ptr,MapSL(ptr));
        }
        else
        {
            DWORD arg = VA_ARG16( valist, DWORD );
            args[i] = arg;
            TRACE("%d,", arg);
        }
    }
    TRACE("])\n");
    return WOW_CallProc32W16( proc32, nrofargs, args );
}


/**********************************************************************
 *           WOW16Call               (KERNEL.500)
 *
 * FIXME!!!
 *
 */
DWORD WINAPIV WOW16Call(WORD x, WORD y, WORD z, VA_LIST16 args)
{
        int     i;
        DWORD   calladdr;
        FIXME("(0x%04x,0x%04x,%d),calling (",x,y,z);

        for (i=0;i<x/2;i++) {
                WORD    a = VA_ARG16(args,WORD);
                DPRINTF("%04x ",a);
        }
        calladdr = VA_ARG16(args,DWORD);
        stack16_pop( 3*sizeof(WORD) + x + sizeof(DWORD) );
        DPRINTF(") calling address was 0x%08x\n",calladdr);
        return 0;
}
2521 2522

#endif /* __i386__ */