Remove xmlproviders from build, deleted old AAP interface.
[shibboleth/cpp-sp.git] / shib / shib.h
index 0083591..cdcfeb4 100644 (file)
@@ -1,53 +1,19 @@
 /*
- * The Shibboleth License, Version 1.
- * Copyright (c) 2002
- * University Corporation for Advanced Internet Development, Inc.
- * All rights reserved
+ *  Copyright 2001-2007 Internet2
  *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
  *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions are met:
+ *     http://www.apache.org/licenses/LICENSE-2.0
  *
- * Redistributions of source code must retain the above copyright notice, this
- * list of conditions and the following disclaimer.
- *
- * Redistributions in binary form must reproduce the above copyright notice,
- * this list of conditions and the following disclaimer in the documentation
- * and/or other materials provided with the distribution, if any, must include
- * the following acknowledgment: "This product includes software developed by
- * the University Corporation for Advanced Internet Development
- * <http://www.ucaid.edu>Internet2 Project. Alternately, this acknowledegement
- * may appear in the software itself, if and wherever such third-party
- * acknowledgments normally appear.
- *
- * Neither the name of Shibboleth nor the names of its contributors, nor
- * Internet2, nor the University Corporation for Advanced Internet Development,
- * Inc., nor UCAID may be used to endorse or promote products derived from this
- * software without specific prior written permission. For written permission,
- * please contact shibboleth@shibboleth.org
- *
- * Products derived from this software may not be called Shibboleth, Internet2,
- * UCAID, or the University Corporation for Advanced Internet Development, nor
- * may Shibboleth appear in their name, without prior written permission of the
- * University Corporation for Advanced Internet Development.
- *
- *
- * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
- * AND WITH ALL FAULTS. ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
- * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A
- * PARTICULAR PURPOSE, AND NON-INFRINGEMENT ARE DISCLAIMED AND THE ENTIRE RISK
- * OF SATISFACTORY QUALITY, PERFORMANCE, ACCURACY, AND EFFORT IS WITH LICENSEE.
- * IN NO EVENT SHALL THE COPYRIGHT OWNER, CONTRIBUTORS OR THE UNIVERSITY
- * CORPORATION FOR ADVANCED INTERNET DEVELOPMENT, INC. BE LIABLE FOR ANY DIRECT,
- * INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
- * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
- * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
- * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
- * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
  */
 
-
 /* shib.h - Shibboleth header file
 
    Scott Cantor
 #ifndef __shib_h__
 #define __shib_h__
 
+#include <saml/saml2/metadata/Metadata.h>
+#include <saml/saml2/metadata/MetadataProvider.h>
+#include <xmltooling/security/TrustEngine.h>
+
 #include <saml/saml.h>
-#include <openssl/ssl.h>
+#undef SAML10_PROTOCOL_ENUM
 
 #ifdef WIN32
 # ifndef SHIB_EXPORTS
 # define SHIB_EXPORTS
 #endif
 
-#define SHIB_L(s) shibboleth::XML::Literals::s
-#define SHIB_L_QNAME(p,s) shibboleth::XML::Literals::p##_##s
-
 namespace shibboleth
 {
-    #define DECLARE_SHIB_EXCEPTION(name,base) \
-        class SHIB_EXPORTS name : public saml::base \
-        { \
-        public: \
-            name(const char* msg) : saml::base(msg) {RTTI(name);} \
-            name(const std::string& msg) : saml::base(msg) {RTTI(name);} \
-            name(const saml::Iterator<saml::QName>& codes, const char* msg) : saml::base(codes,msg) {RTTI(name);} \
-            name(const saml::Iterator<saml::QName>& codes, const std::string& msg) : saml::base(codes, msg) {RTTI(name);} \
-            name(const saml::QName& code, const char* msg) : saml::base(code,msg) {RTTI(name);} \
-            name(const saml::QName& code, const std::string& msg) : saml::base(code, msg) {RTTI(name);} \
-            name(DOMElement* e) : saml::base(e) {RTTI(name);} \
-            name(std::istream& in) : saml::base(in) {RTTI(name);} \
-            virtual ~name() throw () {} \
-        }
-
-    DECLARE_SHIB_EXCEPTION(UnsupportedProtocolException,SAMLException);
-    DECLARE_SHIB_EXCEPTION(MetadataException,SAMLException);
-
-    // Metadata abstract interfaces
-    
-    struct SHIB_EXPORTS IContactInfo
-    {
-        enum ContactType { technical, administrative, billing, other };
-        virtual ContactType getType() const=0;
-        virtual const char* getName() const=0;
-        virtual const char* getEmail() const=0;
-        virtual ~IContactInfo() {}
-    };
-
-    struct SHIB_EXPORTS ISite
+    struct SHIB_EXPORTS IAttributeFactory : public virtual saml::IPlugIn
     {
-        virtual const XMLCh* getName() const=0;
-        virtual saml::Iterator<const XMLCh*> getGroups() const=0;
-        virtual saml::Iterator<const IContactInfo*> getContacts() const=0;
-        virtual const char* getErrorURL() const=0;
-        virtual bool validate(saml::Iterator<XSECCryptoX509*> certs) const=0;
-        virtual bool validate(saml::Iterator<const XMLCh*> certs) const=0;
-        virtual ~ISite() {}
-    };
-    
-    struct SHIB_EXPORTS IAuthority
-    {
-        virtual const XMLCh* getName() const=0;
-        virtual const char* getURL() const=0;
-        virtual ~IAuthority() {}
-    };
-
-    struct SHIB_EXPORTS IOriginSite : public ISite
-    {
-        virtual saml::Iterator<const IAuthority*> getHandleServices() const=0;
-        virtual saml::Iterator<const IAuthority*> getAttributeAuthorities() const=0;
-        virtual saml::Iterator<std::pair<const XMLCh*,bool> > getSecurityDomains() const=0;
-        virtual ~IOriginSite() {}
-    };
-
-    struct SHIB_EXPORTS IMetadata
-    {
-        virtual void lock()=0;
-        virtual void unlock()=0;
-        virtual const ISite* lookup(const XMLCh* site) const=0;
-        virtual ~IMetadata() {}
-    };
-
-    struct SHIB_EXPORTS ITrust
-    {
-        virtual void lock()=0;
-        virtual void unlock()=0;
-        virtual saml::Iterator<XSECCryptoX509*> getCertificates(const XMLCh* subject) const=0;
-        virtual bool validate(const ISite* site, saml::Iterator<XSECCryptoX509*> certs) const=0;
-        virtual bool validate(const ISite* site, saml::Iterator<const XMLCh*> certs) const=0;
-        virtual bool attach(const ISite* site, SSL_CTX* ctx) const=0;
-        virtual ~ITrust() {}
-    };
-    
-    struct SHIB_EXPORTS ICredentials
-    {
-        virtual void lock()=0;
-        virtual void unlock()=0;
-        virtual bool attach(const XMLCh* subject, const ISite* relyingParty, SSL_CTX* ctx) const=0;
-        virtual ~ICredentials() {}
-    };
-    
-    struct SHIB_EXPORTS ICredResolver
-    {
-        virtual void resolveKey(SSL_CTX* ctx) const=0;
-        virtual void resolveCert(SSL_CTX* ctx) const=0;
-        virtual void dump(FILE* f) const=0;
-        virtual void dump() const { dump(stdout); }
-        virtual ~ICredResolver() {}
-    };
-
-    struct SHIB_EXPORTS IAttributeRule
-    {
-        virtual const XMLCh* getName() const=0;
-        virtual const XMLCh* getNamespace() const=0;
-        virtual const char* getFactory() const=0;
-        virtual const char* getAlias() const=0;
-        virtual const char* getHeader() const=0;
-        virtual bool accept(const XMLCh* originSite, const DOMElement* e) const=0;
-        virtual ~IAttributeRule() {}
-    };
-    
-    struct SHIB_EXPORTS IAAP
-    {
-        virtual void lock()=0;
-        virtual void unlock()=0;
-        virtual const IAttributeRule* lookup(const XMLCh* attrName, const XMLCh* attrNamespace=NULL) const=0;
-        virtual const IAttributeRule* lookup(const char* alias) const=0;
-        virtual saml::Iterator<const IAttributeRule*> getAttributeRules() const=0;
-        virtual ~IAAP() {}
-    };
-
-#ifdef SHIB_INSTANTIATE
-    template class SHIB_EXPORTS saml::Iterator<const IContactInfo*>;
-    template class SHIB_EXPORTS saml::ArrayIterator<const IContactInfo*>;
-    template class SHIB_EXPORTS saml::Iterator<const IAuthority*>;
-    template class SHIB_EXPORTS saml::ArrayIterator<const IAuthority*>;
-    template class SHIB_EXPORTS saml::Iterator<const IAttributeRule*>;
-    template class SHIB_EXPORTS saml::ArrayIterator<const IAttributeRule*>;
-    template class SHIB_EXPORTS saml::Iterator<IMetadata*>;
-    template class SHIB_EXPORTS saml::ArrayIterator<IMetadata*>;
-    template class SHIB_EXPORTS saml::Iterator<ITrust*>;
-    template class SHIB_EXPORTS saml::ArrayIterator<ITrust*>;
-    template class SHIB_EXPORTS saml::Iterator<ICredentials*>;
-    template class SHIB_EXPORTS saml::ArrayIterator<ICredentials*>;
-    template class SHIB_EXPORTS saml::Iterator<IAAP*>;
-    template class SHIB_EXPORTS saml::ArrayIterator<IAAP*>;
-#endif
-
-    class SHIB_EXPORTS SimpleAttribute : public saml::SAMLAttribute
-    {
-    public:
-        SimpleAttribute(const XMLCh* name, const XMLCh* ns, long lifetime=0,
-                        const saml::Iterator<const XMLCh*>& values=EMPTY(const XMLCh*));
-        SimpleAttribute(DOMElement* e);
-        virtual saml::SAMLObject* clone() const;
-        virtual ~SimpleAttribute();
-
-    protected:
-        virtual bool accept(DOMElement* e) const;
-
-        const XMLCh* m_originSite;
-    };
-
-    class SHIB_EXPORTS ScopedAttribute : public SimpleAttribute
-    {
-    public:
-        ScopedAttribute(const XMLCh* name, const XMLCh* ns, long lifetime=0,
-                        const saml::Iterator<const XMLCh*>& scopes=EMPTY(const XMLCh*),
-                        const saml::Iterator<const XMLCh*>& values=EMPTY(const XMLCh*));
-        ScopedAttribute(DOMElement* e);
-        virtual ~ScopedAttribute();
-
-        virtual DOMNode* toDOM(DOMDocument* doc=NULL, bool xmlns=true) const;
-        virtual saml::SAMLObject* clone() const;
-
-        virtual saml::Iterator<const XMLCh*> getValues() const;
-        virtual saml::Iterator<std::string> getSingleByteValues() const;
-
-    protected:
-        virtual bool addValue(DOMElement* e);
-
-        std::vector<const XMLCh*> m_scopes;
-        mutable std::vector<const XMLCh*> m_scopedValues;
+        virtual saml::SAMLAttribute* build(DOMElement* e) const=0;
+        virtual ~IAttributeFactory() {}
     };
 
-    class SHIB_EXPORTS ShibPOSTProfile
+    // Subclass around the OpenSAML browser profile interface,
+    // incoporates additional functionality using Shib-defined APIs.
+    class SHIB_EXPORTS ShibBrowserProfile : virtual public saml::SAMLBrowserProfile
     {
     public:
-        ShibPOSTProfile(const saml::Iterator<const XMLCh*>& policies, const XMLCh* receiver, int ttlSeconds);
-        ShibPOSTProfile(const saml::Iterator<const XMLCh*>& policies, const XMLCh* issuer);
-        virtual ~ShibPOSTProfile();
+        struct SHIB_EXPORTS ITokenValidator {
+            virtual void validateToken(
+                saml::SAMLAssertion* token,
+                time_t=0,
+                const opensaml::saml2md::RoleDescriptor* role=NULL,
+                const xmltooling::TrustEngine* trustEngine=NULL
+                ) const=0;
+            virtual ~ITokenValidator() {}
+        };
 
-        virtual const saml::SAMLAssertion* getSSOAssertion(const saml::SAMLResponse& r);
-        virtual const saml::SAMLAuthenticationStatement* getSSOStatement(const saml::SAMLAssertion& a);
-        virtual saml::SAMLResponse* accept(const XMLByte* buf, XMLCh** originSitePtr=NULL);
-        virtual saml::SAMLResponse* prepare(
-            const XMLCh* recipient,
-            const XMLCh* name,
-            const XMLCh* nameQualifier,
-            const XMLCh* subjectIP,
-            const XMLCh* authMethod,
-            time_t authInstant,
-            const saml::Iterator<saml::SAMLAuthorityBinding*>& bindings,
-            XSECCryptoKey* responseKey,
-            const saml::Iterator<XSECCryptoX509*>& responseCerts=EMPTY(XSECCryptoX509*),
-            XSECCryptoKey* assertionKey=NULL,
-            const saml::Iterator<XSECCryptoX509*>& assertionCerts=EMPTY(XSECCryptoX509*)
+        ShibBrowserProfile(
+            const ITokenValidator* validator,
+            opensaml::saml2md::MetadataProvider* metadata=NULL,
+            xmltooling::TrustEngine* trust=NULL
             );
-        virtual bool checkReplayCache(const saml::SAMLAssertion& a);
-
-        virtual const XMLCh* getOriginSite(const saml::SAMLResponse& r);
-
-    protected:
-        virtual void verifySignature(
-            const saml::SAMLSignedObject& obj,
-            const IOriginSite* originSite,
-            const XMLCh* signerName,
-            XSECCryptoKey* knownKey=NULL);
-
-        signatureMethod m_algorithm;
-        std::vector<const XMLCh*> m_policies;
-        XMLCh* m_issuer;
-        XMLCh* m_receiver;
-        int m_ttlSeconds;
-
-    private:
-        ShibPOSTProfile(const ShibPOSTProfile&) {}
-        ShibPOSTProfile& operator=(const ShibPOSTProfile&) {return *this;}
-    };
-
-    class SHIB_EXPORTS ShibPOSTProfileFactory
-    {
-    public:
-        static ShibPOSTProfile* getInstance(const saml::Iterator<const XMLCh*>& policies, const XMLCh* receiver, int ttlSeconds);
-        static ShibPOSTProfile* getInstance(const saml::Iterator<const XMLCh*>& policies, const XMLCh* issuer);
-    };
+        virtual ~ShibBrowserProfile();
 
-    // Glue classes between abstract metadata and concrete providers
-    
-    class SHIB_EXPORTS OriginMetadata
-    {
-    public:
-        OriginMetadata(const XMLCh* site);
-        ~OriginMetadata();
-        bool fail() const {return m_mapper==NULL;}
-        const IOriginSite* operator->() const {return m_site;}
-        operator const IOriginSite*() const {return m_site;}
-        
-    private:
-        OriginMetadata(const OriginMetadata&);
-        void operator=(const OriginMetadata&);
-        IMetadata* m_mapper;
-        const IOriginSite* m_site;
-    };
+        virtual saml::SAMLBrowserProfile::BrowserProfileResponse receive(
+            const char* samlResponse,
+            const XMLCh* recipient,
+            saml::IReplayCache* replayCache,
+            int minorVersion=1
+            ) const;
+        virtual saml::SAMLBrowserProfile::BrowserProfileResponse receive(
+            saml::Iterator<const char*> artifacts,
+            const XMLCh* recipient,
+            saml::SAMLBrowserProfile::ArtifactMapper* artifactMapper,
+            saml::IReplayCache* replayCache,
+            int minorVersion=1
+            ) const;
 
-    class SHIB_EXPORTS Trust
-    {
-    public:
-        Trust() : m_mapper(NULL) {}
-        ~Trust();
-        saml::Iterator<XSECCryptoX509*> getCertificates(const XMLCh* subject);
-        bool validate(const ISite* site, saml::Iterator<XSECCryptoX509*> certs) const;
-        bool validate(const ISite* site, saml::Iterator<const XMLCh*> certs) const;
-        bool attach(const ISite* site, SSL_CTX* ctx) const;
-        
     private:
-        Trust(const Trust&);
-        void operator=(const Trust&);
-        ITrust* m_mapper;
-    };
-    
-    class SHIB_EXPORTS Credentials
-    {
-    public:
-        static bool attach(const XMLCh* subject, const ISite* relyingParty, SSL_CTX* ctx);
-    };
+        void postprocess(saml::SAMLBrowserProfile::BrowserProfileResponse& bpr, int minorVersion=1) const;
 
-    class SHIB_EXPORTS AAP
-    {
-    public:
-        AAP(const XMLCh* attrName, const XMLCh* attrNamespace=NULL);
-        AAP(const char* alias);
-        ~AAP();
-        bool fail() const {return m_mapper==NULL;}
-        const IAttributeRule* operator->() const {return m_rule;}
-        operator const IAttributeRule*() const {return m_rule;}
-        
-    private:
-        AAP(const AAP&);
-        void operator=(const AAP&);
-        IAAP* m_mapper;
-        const IAttributeRule* m_rule;
+        saml::SAMLBrowserProfile* m_profile;
+        opensaml::saml2md::MetadataProvider* m_metadata;
+        xmltooling::TrustEngine* m_trust;
+        const ITokenValidator* m_validator;
     };
 
-    extern "C" {
-        typedef IMetadata* MetadataFactory(const char* source);
-        typedef ITrust* TrustFactory(const char* source);
-        typedef ICredentials* CredentialsFactory(const char* source);
-        typedef ICredResolver* CredResolverFactory(const DOMElement* e);
-        typedef IAAP* AAPFactory(const char* source);
-    }
-    
     class SHIB_EXPORTS ShibConfig
     {
     public:
         ShibConfig() {}
-        virtual ~ShibConfig();
+        virtual ~ShibConfig() {}
 
         // global per-process setup and shutdown of Shibboleth runtime
-        virtual bool init()=0;
-        virtual void term()=0;
+        virtual bool init();
+        virtual void term();
+
+        // manages specific attribute name to factory mappings
+        void regAttributeMapping(const XMLCh* name, const IAttributeFactory* factory);
+        void unregAttributeMapping(const XMLCh* name);
+        void clearAttributeMappings();
 
         // enables runtime and clients to access configuration
         static ShibConfig& getConfig();
-
-        // allows pluggable implementations of metadata
-        virtual void regFactory(const char* type, MetadataFactory* factory)=0;
-        virtual void regFactory(const char* type, TrustFactory* factory)=0;
-        virtual void regFactory(const char* type, CredentialsFactory* factory)=0;
-        virtual void regFactory(const char* type, CredResolverFactory* factory)=0;
-        virtual void regFactory(const char* type, AAPFactory* factory)=0;
-        virtual void regFactory(const char* type, saml::SAMLAttributeFactory* factory)=0;
-        virtual void unregFactory(const char* type)=0;
-        
-        // builds a specific metadata lookup object
-        virtual bool addMetadata(const char* type, const char* source)=0;
-        
-        virtual saml::Iterator<IMetadata*> getMetadataProviders() const=0;
-        virtual saml::Iterator<ITrust*> getTrustProviders() const=0;
-        virtual saml::Iterator<ICredentials*> getCredentialProviders() const=0;
-        virtual CredResolverFactory* getCredResolverFactory(const char* type) const=0;
-        virtual saml::Iterator<IAAP*> getAAPProviders() const=0;
-        virtual saml::SAMLAttributeFactory* getAttributeFactory(const char* type) const=0;
-    };
-
-    struct SHIB_EXPORTS Constants
-    {
-        static const XMLCh SHIB_ATTRIBUTE_NAMESPACE_URI[];
-        static const XMLCh SHIB_NAMEID_FORMAT_URI[];
-        
-        static const XMLCh XMLSIG_RETMETHOD_RAWX509[];  // DER X.509 defined by xmlsig
-        
-        static saml::QName SHIB_ATTRIBUTE_VALUE_TYPE; 
-    };
-
-    class SHIB_EXPORTS XML
-    {
-    public:
-        // URI constants
-        static const XMLCh SHIB_NS[];
-        static const XMLCh SHIB_SCHEMA_ID[];
-
-        struct SHIB_EXPORTS Literals
-        {
-            // Shibboleth vocabulary
-            static const XMLCh AttributeValueType[];
-
-            static const XMLCh Scope[];
-
-            static const XMLCh AttributeAuthority[];
-            static const XMLCh Contact[];
-            static const XMLCh Domain[];
-            static const XMLCh Email[];
-            static const XMLCh ErrorURL[];
-            static const XMLCh HandleService[];
-            static const XMLCh InvalidHandle[];
-            static const XMLCh Location[];
-            static const XMLCh Name[];
-            static const XMLCh OriginSite[];
-            static const XMLCh SiteGroup[];
-            
-            static const XMLCh CertificateRef[];
-            static const XMLCh Class[];
-            static const XMLCh Credentials[];
-            static const XMLCh CustomCredResolver[];
-            static const XMLCh Exponent[];
-            static const XMLCh FileCredResolver[];
-            static const XMLCh Id[];
-            static const XMLCh KeyAuthority[];
-            static const XMLCh KeyRef[];
-            static const XMLCh KeyUse[];
-            static const XMLCh Modulus[];
-            static const XMLCh Password[];
-            static const XMLCh Path[];
-            static const XMLCh RelyingParty[];
-            static const XMLCh RetrievalMethod[];
-            static const XMLCh RSAKeyValue[];
-            static const XMLCh Trust[];
-            static const XMLCh URI[];
-            static const XMLCh VerifyDepth[];
-
-            static const XMLCh Accept[];
-            static const XMLCh Alias[];
-            static const XMLCh AnySite[];
-            static const XMLCh AnyValue[];
-            static const XMLCh AttributeAcceptancePolicy[];
-            static const XMLCh AttributeRule[];
-            static const XMLCh Factory[];
-            static const XMLCh Header[];
-            static const XMLCh Namespace[];
-            static const XMLCh SiteRule[];
-            static const XMLCh Type[];
-            static const XMLCh Value[];
-
-            static const XMLCh literal[];
-            static const XMLCh regexp[];
-            static const XMLCh xpath[];
-
-            static const XMLCh technical[];
-            static const XMLCh administrative[];
-            static const XMLCh billing[];
-            static const XMLCh other[];
-
-            // XML vocabulary
-            static const XMLCh xmlns_shib[];
-        };
-    };
-
-    class SHIB_EXPORTS SAMLBindingFactory
-    {
-    public:
-        static saml::SAMLBinding* getInstance(
-            const XMLCh* subject,
-            const ISite* relyingParty,
-            const XMLCh* protocol=saml::SAMLBinding::SAML_SOAP_HTTPS);
     };
 }