-
Notifications
You must be signed in to change notification settings - Fork 1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Isn't there a possible deadlock issue with DetourUpdateThread and DetourTransactionCommit? #70
Comments
Yes, it's possible. I met it. |
I'm fairly reliably hitting this, and @adams85's patch mentioned above fixes it for me (apply with |
please use PR #144 to fix your rest problems like DETOUR_TRACE you said.
|
While that might be a more thorough fix, I'm not comfortable diverging that far from master, or familiar enough with Detours to review #144 even for my own use. The smaller patch - and sticking to release builds of Detours - is a better solution for me. |
@sonyps5201314 fwiw, while I don't work on Detours or at Microsoft, it's generally best to create pull requests that address a single bug/issue at a time, keeping them as small as possible - this makes them much easier to review, and usually leads to them getting merged by the project maintainers much faster. |
Patch-free workaround:
Edit: turns out this is suggested at https://devblogs.microsoft.com/oldnewthing/20170125-00/?p=95255 |
@fredemmott,Please read the latest reply in PR #144 to answer your doubts. |
@fredemmott Thanks for pointing out |
As it turned out, the |
To be clear, I'm only suggesting it as a work around for common cases. The thorough new allocator approach is more thorough, and likely better for merging. Yep, if another thread has the lock and is busy or suspended, it can't acquire the lock until that's free. Whether this is OK for a workaround depends on your use case. HeapLock/HeapUnlock should always be in matched pairs, so being unlocked by another thread "shouldn't" happen. This would be extremely misbehaved code, but there's admittedly lots of misbehaved code out there - and I'm surprised that HeapUnlock doesn't require that HeapUnlock is called from the same thread as HeapLock. I'd much rather see a thorough fix like the custom heap/alloc merged into detours - but until that's done, where I am able to assume there's no long-running heap locks and no cross-thread heap unlock, I prefer to minimize the amount of code that I'm using that hasn't been reviewed/merged by the project maintainers. |
I started a PR which enables you to use Detours in a way that avoids deadlocks. See the PR description for details at #261. This doesn't solve the issue for any existing Detours user. You have to change your code that uses Detours in the way explained in the PR description. |
I notice that both
DetourUpdateThread
andDetourTransactionCommit
usenew
anddelete
in their code. Assuming these eventually translate to calls toGlobalAlloc
andGlobalFree
, isn't it possible for deadlock to occur if a thread previously suspended byDetourUpdateThread
currently holds a lock on the default heap? This could be avoided by having Detours allocate its own heap withCreateHeap
and using that heap for all allocations that occur during a transaction.The text was updated successfully, but these errors were encountered: