Bug 394

Summary: TODO list for SSLIOP
Product: TAO Reporter: Ossama Othman <ossama.othman>
Component: SSLIOP Pluggable ProtocolAssignee: Ossama Othman <ossama.othman>
Status: RESOLVED FIXED    
Severity: enhancement    
Priority: P3    
Version: 1.1.9   
Hardware: All   
OS: All   
Bug Depends on: 611    
Bug Blocks:    

Description Ossama Othman 1999-12-14 18:28:42 CST
SSLIOP TODO list compiled from various e-mail correspondences:

        1) Add support for the DomainManager in TAO, this means:
           - Creating concrete implementations of the DomainManager
             interface, possibly as a separate service (ala ImplRepo)
           - Add support in the CORBA::Servant class to hold the list
             of DomainManagers and return them when the right
             operation is invoked.
           - Add support in the ORB core to configure the default
             DomainManager
           - Add support in the POA to set the DomainManager or create
             a new one if the policy so requires
        2) Implement the Policy objects for security.
        3) Use the DomainManager to query the policy objects and
           control SSL using that (this is dynamic btw).

        We also have to make the *whole* thing configurable, because
certain applications do not require a DomainManager and in fact, it is
too much of a nuisance to have one around....

        * We need to use BIOs to implement timeouts in CORBA requests.

        * We need to refactor the code in SSLIOP_Transport::send() and
          ACE::send() somehow, this is a real challenge, because ACE
          uses the file descriptors directly, and that is unacceptable
          for SSL.

 > > I suppose one thing we will need is a ACE_X509 class to handle the certs
 > > and things like that.
 >
 > Indeed.  That would be nice to have.  Right now we have an
 > ACE_SSL_Context class that handles all certificate related
 > operations.  Carlos, do you think it is a good idea to create an X509
 > class as Rick suggests?

        I think Rick's proposal is better than the ACE_SSL_Context
class, yet, i'm not sure if we need the ACE_X509 wrapper, IMHO we need
a use case for that.  My objective was never to wrap the complete
OpenSSL interface (after all, it is ugly "C", but it is portable and
works), my goal was to provide enough wrappers as to make it easy to
leverage other ACE components, such as Acceptor, Connector and
Reactor.

Rick H Wesson writes:
 > I am only proposing wrapping enough X509 methods to have access to the
 > certificates so that I can make a decision on weither or not I want the
 > operation to procede based on the X509_NAME which contains many attributes
 > that I could make the decision upon.

        Makes perfect sense now.  This ties to another TODO entry that
we never had the time to deal with:

        * Provide a CORBA interface to wrap the verification upcalls
          from SSL, for example:

        CORBA::Object_var tmp =
          orb->resolve_initial_reference ("SSLCurrent");
        TAO_SSL::SSLCurrent_var current =
          TAO_SSL::SSLCurrent::_narrow (tmp.in ());

        // Implement the TAO_SSL::VerificationCallback interface...
        MyCallback_i verification callback;
        current->set_verification_mode (callback._this ()); // leak..
        // TAO_SSL::VerificationCallback defines operations to check
        // if the X509 certificates are acceptable....

        // The SSLCurrent interface can be used to set other things,
        // such as, new "trusted" CA, or CRL directories...
Comment 1 Ossama Othman 1999-12-17 09:22:59 CST
So much for reducing the size of my bug list.
Comment 2 Ossama Othman 2000-09-25 18:40:02 CDT
The resolver framework must be completed before further progress can be made on
most of these TODO items.

The SSLCurrent feature (actually SSLIOPCurrent) is also captured in bug 610.
Comment 3 Ossama Othman 2000-11-28 19:35:35 CST
An "SSLIOPCurrent" object is now available in the pending TAO 1.1.11 beta.  See
bug 610 for details.
Comment 4 Ossama Othman 2002-03-30 23:00:42 CST
TAO 1.2.2 implements most of the items in the above TODO list, except for the 
DomainManager.  In particular:

- most of the client side security policies have been implemented
- timeout have been implemented
- some authentication support has been added via the standard CORBA Security 
Level 2 interfaces
Comment 5 Ossama Othman 2004-09-19 00:53:04 CDT
The remainder of the issues no longer apply or won't be addressed.  Open a new
bugzilla entry if necessary.