Bug 4207 - Transport Cache Manager does not allow access to index:1 when transport at index:0 is closed
Summary: Transport Cache Manager does not allow access to index:1 when transport at in...
Status: NEW
Alias: None
Product: TAO
Classification: Unclassified
Component: ORB (show other bugs)
Version: 2.3.3
Hardware: x86 Linux
: P3 normal
Assignee: DOC Center Support List (internal)
URL:
Depends on:
Blocks:
 
Reported: 2015-11-06 21:31 CST by milan.cvetkovic
Modified: 2015-11-07 12:23 CST (History)
0 users

See Also:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description milan.cvetkovic 2015-11-06 21:31:21 CST
I found this while working with BidirGIOP, and reported on mailing lists:

https://groups.google.com/forum/#!topic/comp.soft-sys.ace/w5fhVVwJqB4

Transport_Cache_Manager uses hash map to keep ip:port:index->Transport mappings. 

When there are multiple transports with same IP:port values, key in Cache_ExtId is modified with a new value of index:1, resulting in a different hash value.
If all connections are up, and index:0 is BUSY Transport_Cache_Manager_T::find_i would loop and make another lookup with index:1. As long as all Transports to this IP:port are alive, everything works.

However, if the first established transport is closed, entry with index:0 would be removed, but any other existing (and perhaps available) entries with higher indexes would no longer be reachable. This is amplified in BiDirGIOP use case, if the remote client uses same ip and port for callbacks after each restart
Comment 1 milan.cvetkovic 2015-11-07 12:23:10 CST
I have created pull request #157 with automated test and bug fix.