-
Notifications
You must be signed in to change notification settings - Fork 391
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
Listener addEvent deadlock #2202
Comments
It is not related to the deadlock but after attaching something to the Listener one cannot use it anymore outside of the listener to send/receive data until it is detached. The reason for this is that neither of the endpoint instances are thread safe. Regarding the deadlock. It looks like there is indeed a case were a deadlock can happen due to the check whether the event is already attached.
I'm not that familiar with the Unfortunately we cannot use Edit: I'm not sure if there is another issue though. When an event is detached from within the listener thread, it might lead to another deadlock or a race but I have to think more about it. The problem is that the slot is marked as free while the callback is still running and if an event is attached in the callback right after the detach it might get the same slot. @elfenpiff @budrus @MatthiasKillat you are more familiar with the listener. What do you think about my proposal? |
Hi we encounter a deadlock in the Listener on b184113 in the follow situation.
We have main thread (M) and an iceoryx listener thread (L) with the following execution trace 1..4;
1(M): M creates a new iceoryx client (C1) and call Listener::attatchEvent and then send a request (Req1).
2(L): We get the reply (Req1) and go into the ReplyHandler (H1). It recursive lock m_events[2].
3(M): M creates a new iceoryx client (C2) and call Listener::attatchEvent, it locks Listener::m_addEventMutex and block on m_events[2]
4(L): H1 creates a new iceoryx client(C3) and call Listener::attatchEvent, it blocks on Listener::m_addEventMutex ==> DEADLOCK
By judging from the attatchEvent comments ("This method can be called from any thread concurrently without any restrictions!") this is an iceoryx bug.
Please advice
Best regards
The text was updated successfully, but these errors were encountered: