2004-01-14 16:45:37 +01:00
|
|
|
/* cygtls.cc
|
2003-12-23 17:43:45 +01:00
|
|
|
|
2013-07-19 13:54:51 +02:00
|
|
|
Copyright 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012,
|
|
|
|
2013 Red Hat, Inc.
|
2003-12-23 17:43:45 +01:00
|
|
|
|
|
|
|
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"
|
2005-07-03 04:40:30 +02:00
|
|
|
#define USE_SYS_TYPES_FD_SET
|
2003-12-23 17:43:45 +01:00
|
|
|
#include "cygtls.h"
|
|
|
|
#include <syslog.h>
|
2010-12-29 07:33:30 +01:00
|
|
|
#include <stdlib.h>
|
2004-01-14 16:45:37 +01:00
|
|
|
#include "path.h"
|
|
|
|
#include "fhandler.h"
|
|
|
|
#include "dtable.h"
|
|
|
|
#include "cygheap.h"
|
2004-01-19 06:46:54 +01:00
|
|
|
#include "sigproc.h"
|
2010-02-28 16:54:25 +01:00
|
|
|
#include "exception.h"
|
2004-01-14 16:45:37 +01:00
|
|
|
|
2003-12-23 17:43:45 +01:00
|
|
|
/* Two calls to get the stack right... */
|
|
|
|
void
|
2004-02-12 04:01:58 +01:00
|
|
|
_cygtls::call (DWORD (*func) (void *, void *), void *arg)
|
2003-12-23 17:43:45 +01:00
|
|
|
{
|
|
|
|
char buf[CYGTLS_PADSIZE];
|
2010-02-28 16:54:25 +01:00
|
|
|
/* Initialize this thread's ability to respond to things like
|
|
|
|
SIGSEGV or SIGFPE. */
|
|
|
|
exception protect;
|
2006-05-25 04:33:13 +02:00
|
|
|
_my_tls.call2 (func, arg, buf);
|
2003-12-23 17:43:45 +01:00
|
|
|
}
|
|
|
|
|
2012-02-27 12:55:27 +01:00
|
|
|
static int
|
|
|
|
dll_cmp (const void *a, const void *b)
|
|
|
|
{
|
|
|
|
return wcscasecmp ((const wchar_t *) a, *(const wchar_t **) b);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Keep sorted!
|
|
|
|
This is a list of well-known core system DLLs which contain code
|
|
|
|
whiuch is started in its own thread by the system. Kernel32.dll,
|
|
|
|
for instance, contains the thread called on every Ctrl-C keypress
|
|
|
|
in a console window. The DLLs in this list are not recognized as
|
|
|
|
BLODAs. */
|
|
|
|
const wchar_t *well_known_dlls[] =
|
|
|
|
{
|
2012-03-21 11:42:24 +01:00
|
|
|
L"advapi32.dll",
|
2012-02-27 12:55:27 +01:00
|
|
|
L"kernel32.dll",
|
2013-07-23 14:46:02 +02:00
|
|
|
L"kernelbase.dll",
|
2012-02-27 12:55:27 +01:00
|
|
|
L"mswsock.dll",
|
|
|
|
L"ntdll.dll",
|
2012-07-11 11:21:36 +02:00
|
|
|
L"ole32.dll",
|
2012-02-28 10:44:14 +01:00
|
|
|
L"shlwapi.dll",
|
2012-07-11 11:21:36 +02:00
|
|
|
L"wbemprox.dll",
|
2012-02-27 12:55:27 +01:00
|
|
|
L"ws2_32.dll",
|
|
|
|
};
|
|
|
|
|
2003-12-23 17:43:45 +01:00
|
|
|
void
|
2004-02-12 04:01:58 +01:00
|
|
|
_cygtls::call2 (DWORD (*func) (void *, void *), void *arg, void *buf)
|
2003-12-23 17:43:45 +01:00
|
|
|
{
|
2006-05-25 04:33:13 +02:00
|
|
|
init_thread (buf, func);
|
2012-02-27 12:55:27 +01:00
|
|
|
|
|
|
|
/* Optional BLODA detection. The idea is that the function address is
|
|
|
|
supposed to be within Cygwin itself. This is also true for pthreads,
|
2012-08-17 01:34:45 +02:00
|
|
|
since pthreads are always calling thread_wrapper in miscfuncs.cc.
|
2012-02-27 12:55:27 +01:00
|
|
|
Therefore, every function call to a function outside of the Cygwin DLL
|
|
|
|
is potentially a thread injected into the Cygwin process by some BLODA.
|
|
|
|
|
|
|
|
But that's a bit too simple. Assuming the application itself calls
|
|
|
|
CreateThread, then this is a bad idea, but not really invalid. So we
|
|
|
|
shouldn't print a BLODA message if the address is within the loaded
|
|
|
|
image of the application. Also, ntdll.dll starts threads into the
|
|
|
|
application which */
|
|
|
|
if (detect_bloda)
|
|
|
|
{
|
|
|
|
PIMAGE_DOS_HEADER img_start = (PIMAGE_DOS_HEADER) GetModuleHandle (NULL);
|
|
|
|
PIMAGE_NT_HEADERS32 ntheader = (PIMAGE_NT_HEADERS32)
|
|
|
|
((PBYTE) img_start + img_start->e_lfanew);
|
|
|
|
void *img_end = (void *) ((PBYTE) img_start
|
|
|
|
+ ntheader->OptionalHeader.SizeOfImage);
|
|
|
|
if (((void *) func < (void *) cygwin_hmodule
|
|
|
|
|| (void *) func > (void *) cygheap)
|
|
|
|
&& ((void *) func < (void *) img_start || (void *) func >= img_end))
|
|
|
|
{
|
|
|
|
MEMORY_BASIC_INFORMATION mbi;
|
|
|
|
wchar_t modname[PATH_MAX];
|
|
|
|
|
|
|
|
VirtualQuery ((PVOID) func, &mbi, sizeof mbi);
|
|
|
|
GetModuleFileNameW ((HMODULE) mbi.AllocationBase, modname, PATH_MAX);
|
|
|
|
/* Fetch basename and check against list of above system DLLs. */
|
|
|
|
const wchar_t *modbasename = wcsrchr (modname, L'\\') + 1;
|
|
|
|
if (!bsearch (modbasename, well_known_dlls,
|
|
|
|
sizeof well_known_dlls / sizeof well_known_dlls[0],
|
|
|
|
sizeof well_known_dlls[0], dll_cmp))
|
|
|
|
small_printf ("\n\nPotential BLODA detected! Thread function "
|
|
|
|
"called outside of Cygwin DLL:\n %W\n\n", modname);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2004-01-14 16:45:37 +01:00
|
|
|
DWORD res = func (arg, buf);
|
2006-05-25 04:33:13 +02:00
|
|
|
remove (INFINITE);
|
2006-05-31 04:14:17 +02:00
|
|
|
/* Don't call ExitThread on the main thread since we may have been
|
|
|
|
dynamically loaded. */
|
2006-06-02 02:09:50 +02:00
|
|
|
if ((void *) func != (void *) dll_crt0_1
|
|
|
|
&& (void *) func != (void *) dll_dllcrt0_1)
|
2012-12-21 20:32:43 +01:00
|
|
|
ExitThread (res);
|
2003-12-23 17:43:45 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2004-02-12 04:01:58 +01:00
|
|
|
_cygtls::init_thread (void *x, DWORD (*func) (void *, void *))
|
2003-12-23 17:43:45 +01:00
|
|
|
{
|
|
|
|
if (x)
|
|
|
|
{
|
2006-05-16 05:14:24 +02:00
|
|
|
memset (this, 0, sizeof (*this));
|
2011-01-11 09:05:51 +01:00
|
|
|
_REENT_INIT_PTR (&local_clib);
|
2003-12-23 17:43:45 +01:00
|
|
|
stackptr = stack;
|
|
|
|
if (_GLOBAL_REENT)
|
|
|
|
{
|
|
|
|
local_clib._stdin = _GLOBAL_REENT->_stdin;
|
|
|
|
local_clib._stdout = _GLOBAL_REENT->_stdout;
|
|
|
|
local_clib._stderr = _GLOBAL_REENT->_stderr;
|
2004-09-07 06:05:14 +02:00
|
|
|
local_clib.__sdidinit = _GLOBAL_REENT->__sdidinit ? -1 : 0;
|
2003-12-23 17:43:45 +01:00
|
|
|
local_clib.__cleanup = _GLOBAL_REENT->__cleanup;
|
2004-01-26 19:52:02 +01:00
|
|
|
local_clib.__sglue._niobs = 3;
|
|
|
|
local_clib.__sglue._iobs = &_GLOBAL_REENT->__sf[0];
|
2003-12-23 17:43:45 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2006-02-06 19:24:11 +01:00
|
|
|
thread_id = GetCurrentThreadId ();
|
2005-12-05 21:20:18 +01:00
|
|
|
initialized = CYGTLS_INITIALIZED;
|
2003-12-23 17:43:45 +01:00
|
|
|
errno_addr = &(local_clib._errno);
|
2011-08-03 18:40:48 +02:00
|
|
|
locals.cw_timer = NULL;
|
2004-01-14 16:45:37 +01:00
|
|
|
|
|
|
|
if ((void *) func == (void *) cygthread::stub
|
|
|
|
|| (void *) func == (void *) cygthread::simplestub)
|
|
|
|
return;
|
|
|
|
|
2012-08-09 21:58:53 +02:00
|
|
|
cygheap->add_tls (this);
|
2003-12-23 17:43:45 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2004-02-12 04:01:58 +01:00
|
|
|
_cygtls::fixup_after_fork ()
|
|
|
|
{
|
2004-03-16 05:39:38 +01:00
|
|
|
if (sig)
|
|
|
|
{
|
|
|
|
pop ();
|
|
|
|
sig = 0;
|
|
|
|
}
|
2005-10-24 01:47:45 +02:00
|
|
|
stacklock = spinning = 0;
|
2012-07-22 00:58:20 +02:00
|
|
|
signal_arrived = NULL;
|
2009-07-06 17:42:01 +02:00
|
|
|
locals.select.sockevt = NULL;
|
2011-08-03 18:40:48 +02:00
|
|
|
locals.cw_timer = NULL;
|
2004-03-12 04:09:28 +01:00
|
|
|
wq.thread_ev = NULL;
|
2004-02-12 04:01:58 +01:00
|
|
|
}
|
|
|
|
|
2005-03-16 18:07:32 +01:00
|
|
|
#define free_local(x) \
|
|
|
|
if (locals.x) \
|
|
|
|
{ \
|
|
|
|
free (locals.x); \
|
|
|
|
locals.x = NULL; \
|
|
|
|
}
|
|
|
|
|
2004-02-12 04:01:58 +01:00
|
|
|
void
|
|
|
|
_cygtls::remove (DWORD wait)
|
2003-12-23 17:43:45 +01:00
|
|
|
{
|
2006-03-13 05:26:57 +01:00
|
|
|
initialized = 0;
|
2009-07-06 17:42:01 +02:00
|
|
|
if (exit_state >= ES_FINAL)
|
2005-03-03 01:36:49 +01:00
|
|
|
return;
|
2006-01-05 17:26:22 +01:00
|
|
|
|
2013-04-23 11:44:36 +02:00
|
|
|
debug_printf ("wait %u", wait);
|
2011-04-21 10:10:28 +02:00
|
|
|
|
|
|
|
/* FIXME: Need some sort of atthreadexit function to allow things like
|
|
|
|
select to control this themselves. */
|
|
|
|
|
2012-07-22 00:58:20 +02:00
|
|
|
if (signal_arrived)
|
|
|
|
{
|
|
|
|
HANDLE h = signal_arrived;
|
|
|
|
signal_arrived = NULL;
|
|
|
|
CloseHandle (h);
|
|
|
|
}
|
|
|
|
|
2011-04-21 10:10:28 +02:00
|
|
|
/* Close handle and free memory used by select. */
|
2011-04-18 17:51:54 +02:00
|
|
|
if (locals.select.sockevt)
|
2005-04-05 19:13:35 +02:00
|
|
|
{
|
2011-04-21 10:10:28 +02:00
|
|
|
CloseHandle (locals.select.sockevt);
|
|
|
|
locals.select.sockevt = NULL;
|
|
|
|
free_local (select.ser_num);
|
|
|
|
free_local (select.w4);
|
2005-04-05 19:13:35 +02:00
|
|
|
}
|
2011-04-21 10:10:28 +02:00
|
|
|
/* Free memory used by network functions. */
|
|
|
|
free_local (ntoa_buf);
|
|
|
|
free_local (protoent_buf);
|
|
|
|
free_local (servent_buf);
|
|
|
|
free_local (hostent_buf);
|
2008-03-07 12:24:51 +01:00
|
|
|
/* Free temporary TLS path buffers. */
|
|
|
|
locals.pathbufs.destroy ();
|
2013-07-19 13:54:51 +02:00
|
|
|
/* Close timer handle. */
|
|
|
|
if (locals.cw_timer)
|
|
|
|
NtClose (locals.cw_timer);
|
2012-08-09 21:58:53 +02:00
|
|
|
cygheap->remove_tls (this, wait);
|
2004-03-15 03:47:35 +01:00
|
|
|
remove_wq (wait);
|
2003-12-23 17:43:45 +01:00
|
|
|
}
|