Summary: | Bidirectional IIOP behaves poorly with multiple interfaces | ||
---|---|---|---|
Product: | TAO | Reporter: | Phil Mesnier <mesnierp> |
Component: | ORB | Assignee: | Phil Mesnier <mesnierp> |
Status: | NEW --- | ||
Severity: | normal | CC: | colding |
Priority: | P3 | ||
Version: | 1.6.3 | ||
Hardware: | All | ||
OS: | Linux | ||
Attachments: | Anticipated fix for the primary bug |
Description
Phil Mesnier
2008-04-01 21:26:13 CDT
Created attachment 1022 [details]
Anticipated fix for the primary bug
The attached patch resolves the issue where a client on a multihomed host aggressively filters out endpoints that do not match the interface through which a connection was made. It also resolves the second half of the problem by only caching the first entry in the listen point list.
The reason for only caching the first endpoint is that the connection cache right now has a 1-1 association between endpoints and transports. When a server receives a bidir context, it recaches the current transport, associating it with the newly received endpoint. If a list of endpoints are received, then the transport would only be associated with the last endpoint in the list and that is surely the wrong outcome.
Rather than rip out the processing loop completely, I've got it temporarily limiting the processing to no more than 1 element from the list. If the transport cache can be modified so that many endpoints can refer to the same transport, then iterating over the full list would be the right thing to do.
Turns out that the problem of bidir IIOP is not resolved by my patch. When a POA has an endpoint policy applied to it, it becomes possible that the first endpoint in the listen point list (as defined by the order of IIOP_Acceptors in the acceptor repository) may not be represented in an IOR generated by the POA. Thus when the recipient of a bidir context containing the listen point list only recaches the transport to the first endpoint in the list, the desired endpoint for contacting the target object won't be in the cache. The solution to this problem is to figure out a way to allow more than one endpoint refer to a single transport in the transport cache. At least that is the best I can think of at this time. |