* init.cc (dll_entry): Reinstantiate wow64_test_stack_marker and
previous stack tests.
This commit is contained in:
parent
06f85bf553
commit
6215837523
|
@ -1,3 +1,8 @@
|
||||||
|
2011-05-25 Corinna Vinschen <corinna@vinschen.de>
|
||||||
|
|
||||||
|
* init.cc (dll_entry): Reinstantiate wow64_test_stack_marker and
|
||||||
|
previous stack tests.
|
||||||
|
|
||||||
2011-05-25 Corinna Vinschen <corinna@vinschen.de>
|
2011-05-25 Corinna Vinschen <corinna@vinschen.de>
|
||||||
|
|
||||||
* posix.sgml (std-notes): Add missing <para>.
|
* posix.sgml (std-notes): Add missing <para>.
|
||||||
|
|
|
@ -115,7 +115,7 @@ extern void __stdcall dll_crt0_0 ();
|
||||||
extern "C" BOOL WINAPI
|
extern "C" BOOL WINAPI
|
||||||
dll_entry (HANDLE h, DWORD reason, void *static_load)
|
dll_entry (HANDLE h, DWORD reason, void *static_load)
|
||||||
{
|
{
|
||||||
PTEB teb;
|
BOOL wow64_test_stack_marker;
|
||||||
|
|
||||||
switch (reason)
|
switch (reason)
|
||||||
{
|
{
|
||||||
|
@ -131,10 +131,9 @@ dll_entry (HANDLE h, DWORD reason, void *static_load)
|
||||||
the auto load address of DLLs?
|
the auto load address of DLLs?
|
||||||
Check if we're running in WOW64 on a 64 bit machine *and* are
|
Check if we're running in WOW64 on a 64 bit machine *and* are
|
||||||
spawned by a genuine 64 bit process. If so, respawn. */
|
spawned by a genuine 64 bit process. If so, respawn. */
|
||||||
teb = NtCurrentTeb ();
|
|
||||||
if (wincap.is_wow64 ()
|
if (wincap.is_wow64 ()
|
||||||
&& teb->Tib.StackLimit >= (PBOOL) 0x400000
|
&& &wow64_test_stack_marker >= (PBOOL) 0x400000
|
||||||
&& teb->Tib.StackBase <= (PBOOL) 0x10000000)
|
&& &wow64_test_stack_marker <= (PBOOL) 0x10000000)
|
||||||
respawn_wow64_process ();
|
respawn_wow64_process ();
|
||||||
|
|
||||||
dll_crt0_0 ();
|
dll_crt0_0 ();
|
||||||
|
@ -150,19 +149,17 @@ dll_entry (HANDLE h, DWORD reason, void *static_load)
|
||||||
munge_threadfunc ();
|
munge_threadfunc ();
|
||||||
break;
|
break;
|
||||||
case DLL_THREAD_DETACH:
|
case DLL_THREAD_DETACH:
|
||||||
teb = NtCurrentTeb ();
|
|
||||||
if (dll_finished_loading
|
if (dll_finished_loading
|
||||||
&& (PVOID) &teb >= teb->Tib.StackLimit
|
&& (PVOID) &_my_tls > (PVOID) &wow64_test_stack_marker
|
||||||
&& (PVOID) &teb < teb->Tib.StackBase
|
|
||||||
&& _my_tls.isinitialized ())
|
&& _my_tls.isinitialized ())
|
||||||
_my_tls.remove (0);
|
_my_tls.remove (0);
|
||||||
/* Windows 2000 has a bug in NtTerminateThread. Instead of releasing
|
/* Windows 2000 has a bug in NtTerminateThread. Instead of releasing
|
||||||
the stack at teb->DeallocationStack it uses the value of
|
the stack at teb->DeallocationStack it uses the value of
|
||||||
teb->Tib.StackLimit to evaluate the stack address. So we just claim
|
teb->Tib.StackLimit to evaluate the stack address. So we just claim
|
||||||
there is no stack. */
|
there is no stack. */
|
||||||
if (teb->DeallocationStack == NULL
|
if (NtCurrentTeb ()->DeallocationStack == NULL
|
||||||
&& !wincap.has_stack_size_param_is_a_reservation ())
|
&& !wincap.has_stack_size_param_is_a_reservation ())
|
||||||
teb->Tib.StackLimit = NULL;
|
NtCurrentTeb ()->Tib.StackLimit = NULL;
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue