Fix thread_local, tls, ASLR, and DEP with MingW
This commit changes the way Thread::caller_id works. By moving caller_id to the .cpp file we make sure that the TLS variable doesn't get relocated twice causing a crash. Since we build with LTO for release builds (and everyone should be doing that anyway) there is no extra overhead from the non-static method. We do do an extra bool check now there but I don't think this will add much in the way of overhead. This check cannot be avoided if we still want to be able to cache the thread ID hash, as we had to move the setter because of limitations of the WinRT platform. The original workaround for this was in #46813 but this has some unintended consequences. Specifically; threads that never create a Thread object will always return 0 in Thread::get_caller_id() which caused a regression. For instance the editor now freezes when importing large textures. This PR also addresses that. Additionally we now enable ASLR support when building with MingW, this includes a workaround for MingW. MingW refuses to create an appropriate relocation table if no symbols are exported. So we just export the various main() functions in godot_windows.cpp. While ASLR support isn't criticial for Godot, previous versions of Godot just happened to work with a dynamic base 'by accident' and some users run Godot this way. After the thread change the .tls section now needs relocations to make this work. By enabling ASLR at build-time we create these relocations and people who forced ALSR on previously will now get a working Godot again. This fixes #47256 and fixes #47219 This is the 3.x version of this PR. For master a different approach is possible which I will make in the coming days.
This commit is contained in:
parent
6c3e6a5109
commit
ff3099abcf
4 changed files with 19 additions and 12 deletions
|
@ -47,7 +47,8 @@ uint64_t Thread::_thread_id_hash(const std::thread::id &p_t) {
|
||||||
}
|
}
|
||||||
|
|
||||||
Thread::ID Thread::main_thread_id = _thread_id_hash(std::this_thread::get_id());
|
Thread::ID Thread::main_thread_id = _thread_id_hash(std::this_thread::get_id());
|
||||||
thread_local Thread::ID Thread::caller_id = 0;
|
static thread_local Thread::ID caller_id = 0;
|
||||||
|
static thread_local bool caller_id_cached = false;
|
||||||
|
|
||||||
void Thread::_set_platform_funcs(
|
void Thread::_set_platform_funcs(
|
||||||
Error (*p_set_name_func)(const String &),
|
Error (*p_set_name_func)(const String &),
|
||||||
|
@ -61,7 +62,9 @@ void Thread::_set_platform_funcs(
|
||||||
}
|
}
|
||||||
|
|
||||||
void Thread::callback(Thread *p_self, const Settings &p_settings, Callback p_callback, void *p_userdata) {
|
void Thread::callback(Thread *p_self, const Settings &p_settings, Callback p_callback, void *p_userdata) {
|
||||||
Thread::caller_id = _thread_id_hash(p_self->thread.get_id());
|
caller_id = _thread_id_hash(p_self->thread.get_id());
|
||||||
|
caller_id_cached = true;
|
||||||
|
|
||||||
if (set_priority_func) {
|
if (set_priority_func) {
|
||||||
set_priority_func(p_settings.priority);
|
set_priority_func(p_settings.priority);
|
||||||
}
|
}
|
||||||
|
@ -112,10 +115,6 @@ Error Thread::set_name(const String &p_name) {
|
||||||
return ERR_UNAVAILABLE;
|
return ERR_UNAVAILABLE;
|
||||||
}
|
}
|
||||||
|
|
||||||
Thread::Thread() {
|
|
||||||
caller_id = _thread_id_hash(std::this_thread::get_id());
|
|
||||||
}
|
|
||||||
|
|
||||||
Thread::~Thread() {
|
Thread::~Thread() {
|
||||||
if (id != _thread_id_hash(std::thread::id())) {
|
if (id != _thread_id_hash(std::thread::id())) {
|
||||||
#ifdef DEBUG_ENABLED
|
#ifdef DEBUG_ENABLED
|
||||||
|
@ -125,4 +124,13 @@ Thread::~Thread() {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Thread::ID Thread::get_caller_id() {
|
||||||
|
if (likely(caller_id_cached)) {
|
||||||
|
return caller_id;
|
||||||
|
} else {
|
||||||
|
caller_id = _thread_id_hash(std::this_thread::get_id());
|
||||||
|
caller_id_cached = true;
|
||||||
|
return caller_id;
|
||||||
|
}
|
||||||
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
|
@ -66,7 +66,6 @@ private:
|
||||||
static uint64_t _thread_id_hash(const std::thread::id &p_t);
|
static uint64_t _thread_id_hash(const std::thread::id &p_t);
|
||||||
|
|
||||||
ID id = _thread_id_hash(std::thread::id());
|
ID id = _thread_id_hash(std::thread::id());
|
||||||
static thread_local ID caller_id;
|
|
||||||
std::thread thread;
|
std::thread thread;
|
||||||
|
|
||||||
static void callback(Thread *p_self, const Settings &p_settings, Thread::Callback p_callback, void *p_userdata);
|
static void callback(Thread *p_self, const Settings &p_settings, Thread::Callback p_callback, void *p_userdata);
|
||||||
|
@ -87,7 +86,7 @@ public:
|
||||||
#if !defined(NO_THREADS)
|
#if !defined(NO_THREADS)
|
||||||
_FORCE_INLINE_ ID get_id() const { return id; }
|
_FORCE_INLINE_ ID get_id() const { return id; }
|
||||||
// get the ID of the caller thread
|
// get the ID of the caller thread
|
||||||
_FORCE_INLINE_ static ID get_caller_id() { return caller_id; }
|
static ID get_caller_id();
|
||||||
// get the ID of the main thread
|
// get the ID of the main thread
|
||||||
_FORCE_INLINE_ static ID get_main_id() { return main_thread_id; }
|
_FORCE_INLINE_ static ID get_main_id() { return main_thread_id; }
|
||||||
|
|
||||||
|
@ -98,7 +97,6 @@ public:
|
||||||
///< waits until thread is finished, and deallocates it.
|
///< waits until thread is finished, and deallocates it.
|
||||||
void wait_to_finish();
|
void wait_to_finish();
|
||||||
|
|
||||||
Thread();
|
|
||||||
~Thread();
|
~Thread();
|
||||||
#else
|
#else
|
||||||
_FORCE_INLINE_ ID get_id() const { return 0; }
|
_FORCE_INLINE_ ID get_id() const { return 0; }
|
||||||
|
|
|
@ -397,6 +397,7 @@ def configure_mingw(env):
|
||||||
## Compile flags
|
## Compile flags
|
||||||
|
|
||||||
env.Append(CCFLAGS=["-mwindows"])
|
env.Append(CCFLAGS=["-mwindows"])
|
||||||
|
env.Append(LINKFLAGS=["-Wl,--nxcompat", "-Wl,--dynamicbase"])
|
||||||
env.Append(CPPDEFINES=["WINDOWS_ENABLED", "OPENGL_ENABLED", "WASAPI_ENABLED", "WINMIDI_ENABLED"])
|
env.Append(CPPDEFINES=["WINDOWS_ENABLED", "OPENGL_ENABLED", "WASAPI_ENABLED", "WINMIDI_ENABLED"])
|
||||||
env.Append(CPPDEFINES=[("WINVER", env["target_win_version"]), ("_WIN32_WINNT", env["target_win_version"])])
|
env.Append(CPPDEFINES=[("WINVER", env["target_win_version"]), ("_WIN32_WINNT", env["target_win_version"])])
|
||||||
env.Append(
|
env.Append(
|
||||||
|
|
|
@ -135,7 +135,7 @@ char *wc_to_utf8(const wchar_t *wc) {
|
||||||
return ubuf;
|
return ubuf;
|
||||||
}
|
}
|
||||||
|
|
||||||
int widechar_main(int argc, wchar_t **argv) {
|
__declspec(dllexport) int widechar_main(int argc, wchar_t **argv) {
|
||||||
|
|
||||||
OS_Windows os(NULL);
|
OS_Windows os(NULL);
|
||||||
|
|
||||||
|
@ -169,7 +169,7 @@ int widechar_main(int argc, wchar_t **argv) {
|
||||||
return os.get_exit_code();
|
return os.get_exit_code();
|
||||||
};
|
};
|
||||||
|
|
||||||
int _main() {
|
__declspec(dllexport) int _main() {
|
||||||
LPWSTR *wc_argv;
|
LPWSTR *wc_argv;
|
||||||
int argc;
|
int argc;
|
||||||
int result;
|
int result;
|
||||||
|
@ -187,7 +187,7 @@ int _main() {
|
||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
|
|
||||||
int main(int _argc, char **_argv) {
|
__declspec(dllexport) int main(int _argc, char **_argv) {
|
||||||
// _argc and _argv are ignored
|
// _argc and _argv are ignored
|
||||||
// we are going to use the WideChar version of them instead
|
// we are going to use the WideChar version of them instead
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue