2001-09-11 22:01:02 +02:00
|
|
|
/* init.cc
|
2000-02-17 20:38:33 +01:00
|
|
|
|
|
|
|
This file is part of Cygwin.
|
|
|
|
|
|
|
|
This software is a copyrighted work licensed under the terms of the
|
|
|
|
Cygwin license. Please consult the file "CYGWIN_LICENSE" for
|
|
|
|
details. */
|
|
|
|
|
|
|
|
#include "winsup.h"
|
2003-11-28 21:55:59 +01:00
|
|
|
#include "cygtls.h"
|
2005-08-14 21:48:07 +02:00
|
|
|
#include "ntdll.h"
|
2008-07-27 16:52:46 +02:00
|
|
|
#include "shared_info.h"
|
2000-02-17 20:38:33 +01:00
|
|
|
|
2006-05-16 05:14:24 +02:00
|
|
|
static DWORD _my_oldfunc;
|
|
|
|
|
2012-02-14 20:08:20 +01:00
|
|
|
static char *search_for = (char *) cygthread::stub;
|
|
|
|
unsigned threadfunc_ix[8];
|
2004-01-14 16:45:37 +01:00
|
|
|
|
2010-09-01 20:24:11 +02:00
|
|
|
static bool dll_finished_loading;
|
2004-01-14 16:45:37 +01:00
|
|
|
#define OLDFUNC_OFFSET -1
|
2000-02-17 20:38:33 +01:00
|
|
|
|
2003-12-14 08:09:22 +01:00
|
|
|
static void WINAPI
|
|
|
|
threadfunc_fe (VOID *arg)
|
|
|
|
{
|
2017-10-09 18:08:10 +02:00
|
|
|
#ifdef __i386__
|
|
|
|
#if __GNUC_PREREQ(6,0)
|
2017-09-12 21:30:34 +02:00
|
|
|
#pragma GCC diagnostic ignored "-Wframe-address"
|
2017-10-09 18:08:10 +02:00
|
|
|
#endif
|
2004-04-30 15:27:27 +02:00
|
|
|
(void)__builtin_return_address(1);
|
2017-10-09 18:08:10 +02:00
|
|
|
#if __GNUC_PREREQ(6,0)
|
2017-09-12 21:30:34 +02:00
|
|
|
#pragma GCC diagnostic pop
|
2017-10-09 18:08:10 +02:00
|
|
|
#endif
|
2004-04-30 15:27:27 +02:00
|
|
|
asm volatile ("andl $-16,%%esp" ::: "%esp");
|
2015-07-29 13:32:29 +02:00
|
|
|
#endif
|
2006-05-16 05:14:24 +02:00
|
|
|
_cygtls::call ((DWORD (*) (void *, void *)) TlsGetValue (_my_oldfunc), arg);
|
2004-01-14 16:45:37 +01:00
|
|
|
}
|
|
|
|
|
2004-01-20 00:03:43 +01:00
|
|
|
/* If possible, redirect the thread entry point to a cygwin routine which
|
|
|
|
adds tls stuff to the stack. */
|
2003-12-14 08:09:22 +01:00
|
|
|
static void
|
2004-02-13 20:34:32 +01:00
|
|
|
munge_threadfunc ()
|
2003-12-14 08:09:22 +01:00
|
|
|
{
|
2004-03-22 19:30:38 +01:00
|
|
|
int i;
|
2004-01-14 16:45:37 +01:00
|
|
|
char **ebp = (char **) __builtin_frame_address (0);
|
2004-03-22 19:30:38 +01:00
|
|
|
if (!threadfunc_ix[0])
|
2003-12-14 08:09:22 +01:00
|
|
|
{
|
2004-03-22 19:30:38 +01:00
|
|
|
char **peb;
|
2015-12-02 12:11:06 +01:00
|
|
|
char **top = (char **) NtCurrentTeb()->Tib.StackBase;
|
2004-03-22 19:30:38 +01:00
|
|
|
for (peb = ebp, i = 0; peb < top && i < 7; peb++)
|
2004-01-14 16:45:37 +01:00
|
|
|
if (*peb == search_for)
|
2004-03-22 19:30:38 +01:00
|
|
|
threadfunc_ix[i++] = peb - ebp;
|
2005-12-29 21:46:34 +01:00
|
|
|
if (0 && !threadfunc_ix[0])
|
2004-03-22 19:30:38 +01:00
|
|
|
{
|
|
|
|
try_to_debug ();
|
|
|
|
return;
|
|
|
|
}
|
2003-12-14 08:09:22 +01:00
|
|
|
}
|
|
|
|
|
2006-03-13 00:57:05 +01:00
|
|
|
if (threadfunc_ix[0])
|
2004-01-14 16:45:37 +01:00
|
|
|
{
|
2015-10-29 09:17:46 +01:00
|
|
|
char *threadfunc = NULL;
|
|
|
|
|
2015-12-15 15:48:44 +01:00
|
|
|
NtQueryInformationThread (NtCurrentThread (),
|
|
|
|
ThreadQuerySetWin32StartAddress,
|
|
|
|
&threadfunc, sizeof threadfunc, NULL);
|
2006-03-13 00:57:05 +01:00
|
|
|
if (!search_for || threadfunc == search_for)
|
|
|
|
{
|
|
|
|
search_for = NULL;
|
|
|
|
for (i = 0; threadfunc_ix[i]; i++)
|
2015-10-29 09:17:46 +01:00
|
|
|
if (!threadfunc || ebp[threadfunc_ix[i]] == threadfunc)
|
|
|
|
ebp[threadfunc_ix[i]] = (char *) threadfunc_fe;
|
2006-05-16 05:14:24 +02:00
|
|
|
TlsSetValue (_my_oldfunc, threadfunc);
|
2006-03-13 00:57:05 +01:00
|
|
|
}
|
2004-01-14 16:45:37 +01:00
|
|
|
}
|
2003-12-14 08:09:22 +01:00
|
|
|
}
|
|
|
|
|
2011-08-18 17:59:16 +02:00
|
|
|
void dll_crt0_0 ();
|
2004-01-14 16:45:37 +01:00
|
|
|
|
2016-07-27 13:52:10 +02:00
|
|
|
/* Non-static fake variable so GCC doesn't second-guess if we *really*
|
|
|
|
need the alloca'd space in the DLL_PROCESS_ATTACH case below... */
|
|
|
|
void *alloca_dummy;
|
|
|
|
|
2005-09-28 04:43:29 +02:00
|
|
|
extern "C" BOOL WINAPI
|
2003-12-14 08:09:22 +01:00
|
|
|
dll_entry (HANDLE h, DWORD reason, void *static_load)
|
2000-02-17 20:38:33 +01:00
|
|
|
{
|
2011-12-12 11:16:53 +01:00
|
|
|
BOOL test_stack_marker;
|
2006-02-23 20:21:21 +01:00
|
|
|
|
2000-02-17 20:38:33 +01:00
|
|
|
switch (reason)
|
|
|
|
{
|
|
|
|
case DLL_PROCESS_ATTACH:
|
2006-03-18 20:17:21 +01:00
|
|
|
init_console_handler (false);
|
|
|
|
|
2005-03-22 20:00:31 +01:00
|
|
|
cygwin_hmodule = (HMODULE) h;
|
2005-05-17 03:21:06 +02:00
|
|
|
dynamically_loaded = (static_load == NULL);
|
2005-08-14 21:48:07 +02:00
|
|
|
|
2016-07-20 22:05:59 +02:00
|
|
|
/* Starting with adding the POSIX-1.2008 per-thread locale functionality,
|
|
|
|
we need an initalized _REENT area even for the functions called from
|
2016-07-27 13:52:10 +02:00
|
|
|
dll_crt0_0. Most importantly, we need the _REENT->_locale pointer
|
2016-07-20 22:05:59 +02:00
|
|
|
initialized to NULL, so subsequent calls to locale-specific functions
|
|
|
|
will always fall back to __global_locale, rather then crash due to
|
|
|
|
_REENT->_locale having an arbitrary value. */
|
2016-07-27 13:52:10 +02:00
|
|
|
alloca_dummy = alloca (CYGTLS_PADSIZE);
|
|
|
|
memcpy (_REENT, _GLOBAL_REENT, sizeof (struct _reent));
|
2016-07-20 22:05:59 +02:00
|
|
|
|
2004-01-14 16:45:37 +01:00
|
|
|
dll_crt0_0 ();
|
2006-05-16 05:14:24 +02:00
|
|
|
_my_oldfunc = TlsAlloc ();
|
2010-09-01 20:24:11 +02:00
|
|
|
dll_finished_loading = true;
|
2000-02-17 20:38:33 +01:00
|
|
|
break;
|
2002-10-07 06:12:54 +02:00
|
|
|
case DLL_PROCESS_DETACH:
|
2008-07-27 16:52:46 +02:00
|
|
|
if (dynamically_loaded)
|
|
|
|
shared_destroy ();
|
2002-10-07 06:12:54 +02:00
|
|
|
break;
|
2000-02-17 20:38:33 +01:00
|
|
|
case DLL_THREAD_ATTACH:
|
2010-09-01 20:24:11 +02:00
|
|
|
if (dll_finished_loading)
|
2005-12-29 21:46:34 +01:00
|
|
|
munge_threadfunc ();
|
2000-02-17 20:38:33 +01:00
|
|
|
break;
|
2003-12-26 05:40:52 +01:00
|
|
|
case DLL_THREAD_DETACH:
|
2011-05-15 20:49:40 +02:00
|
|
|
if (dll_finished_loading
|
2011-12-12 11:16:53 +01:00
|
|
|
&& (PVOID) &_my_tls > (PVOID) &test_stack_marker
|
2006-05-17 05:36:14 +02:00
|
|
|
&& _my_tls.isinitialized ())
|
2014-11-21 22:41:37 +01:00
|
|
|
_my_tls.remove (0);
|
2003-12-26 05:40:52 +01:00
|
|
|
break;
|
2000-02-17 20:38:33 +01:00
|
|
|
}
|
2005-09-28 04:43:29 +02:00
|
|
|
|
|
|
|
return TRUE;
|
2000-02-17 20:38:33 +01:00
|
|
|
}
|