Summary: | TP_Reactor enhancements | ||
---|---|---|---|
Product: | ACE | Reporter: | Nanbor Wang <bala> |
Component: | ACE Core | Assignee: | DOC Center Support List (internal) <tao-support> |
Status: | REOPENED --- | ||
Severity: | enhancement | CC: | dhinton, gclark |
Priority: | P3 | ||
Version: | 5.1.19 | ||
Hardware: | All | ||
OS: | All | ||
Bug Depends on: | |||
Bug Blocks: | 982, 1038, 943, 1020 | ||
Attachments: |
One possible implementation and use of event handler ref counting to prevent the race condition of bugs 1074 and 1020.
Bug fix in event handler ref counting implementation |
Description
Nanbor Wang
2001-09-14 18:23:30 CDT
The ACE_Select_Reactor family of classes, which included TPR, use ACE_Token to implement a FIFO thread scheduling mechanism. But this isn't always the most efficient. Therefore, adding the ability to select a thread scheduling strategy, e.g., LIFO, either by deriving from or strategizing ACE_Token, could increase performance. Added myself to cc list Accepting this one too.. This is after a long discussion with Irfan on this. Looks like the enhanced reactor should have a way to dispatch to the handles based on priority of the handle/connection. A naive dispatching mechanism would hurt RTCORBA a lot. For example the reactor could manage 3 connections opened up by threads of different priorities from the client. If the messages are handled naively we could easily be servicing the lowest priority connection. (This seems definitely possible if the server thread has a zero priority and uses client propagated policy model). A solution for this problem is to allow setting of priorities to the handles so that dispatching can be done after reodering the handlesets based on priority. The methods can be on the Reactor so that an application would be able to change the priority of the handle at run time. Irfan , if you would like to add more information, please go ahead. *** Bug 1074 has been marked as a duplicate of this bug. *** Created attachment 94 [details]
One possible implementation and use of event handler ref counting to prevent the race condition of bugs 1074 and 1020.
If it's of any interest, the previous attachment shows changes that we are using, that add reference counting to ACE_Event_Handler, and that use these in place of the pending_upcalls counter in the TP_Reactor to control the lifetime of IIOP connection handlers. This fixes the race condition in bug 1074 (and presumably that in bug 1020 as well, although we have not tested the latter). Here's a summary of the changes: ACE_Event_Handler changes: - Add add_ref() and remove_ref() methods. add_ref() increments a reference count, and remove_ref() decrements the count, deleting the event handler object when the counter reaches zero. - Initialize the ref count to 1 in the constructor. ACE_TP_Reactor changes: - Change handle_socket_events() so that it increments the event handler's ref count before dispatching to its callback method, and decrements it afterwards. TAO_IIOP_Connection_Handler changes: - Change handle_close() to call handle_close_i() unconditionally, rather than checking pending_upcalls first. - Change handle_close_i() to call remove_ref(this) instead of directly deleting itself. The destruction of the event handler and associated Transport object will be done by the connection handler's destructor. - In handle_input(), remove the increment, decrement, and check of the pending_upcalls counter. Don't call handle_close_i(). The changes apply to the following files: ACE_wrappers/ace/Event_Handler.h v 4.41 ACE_wrappers/ace/Event_Handler.cpp v 4.19 ACE_wrappers/ace/TP_Reactor.cpp v 4.47 ACE_wrappers/TAO/tao/IIOP_Connection_Handler.cpp v 1.46 Created attachment 95 [details]
Bug fix in event handler ref counting implementation
The previous attachment is diffs to ace/Select_Reactor_Base.cpp that
prevent dispatch_notify() from closing the handle twice if the event
handler callback detects an error.
This fix applies to the event handler mods of attachment 94 [details].
Another feature which is needed and which has not been captured explicitly is this - When the Reactor holds a refcounted handler in its internal map, the handler would not be deleted till all the references to the handler goes off. In other words the external references to the handler should be zero. In the mean time if a connection is accepted for the same handle (this is very much possible), the handler shoudl not be added to the internal maps immediately. The addition should be delayed to make sure that all the references to the original handler go away. The TP_Reactor does not have signal handling capabilities. Needs to be implemented. Yet another use case that the enhancements should take care is the following - The reactor code releases the guard and then uses an event handler. Yes, the handler is suspended to avoid multiple threads from calling handle_XXX(), but there is no guarantee that the application will not call remove_handler(..., DONT_CALL) and then remove the handler. Nor can the application find out if the handle is suspended and therefore in the middle of an upcall. In other words, the TP_Reactor is at risk of using released memory, small risk, but a real one. The solution to this reference counting and a new memory management scheme. Fixed. This ChangeLogTag: Mon Jul 07 18:00:38 2003 Irfan Pyarali <irfan@oomworks.com> describes the proper fixes to these problems. Reopening the bug since one of the points is not addressed (In reply to comment #15) > Reopening the bug since one of the points is not addressed In particular, the fairness issue is unresolved, correct? |