45159c8eff2c03a026c9f2bfd71145e0c22cfaee
[shibboleth/sp.git] / xmlproviders / XMLProviders.cpp
1 /*
2  * The Shibboleth License, Version 1.
3  * Copyright (c) 2002
4  * University Corporation for Advanced Internet Development, Inc.
5  * All rights reserved
6  *
7  *
8  * Redistribution and use in source and binary forms, with or without
9  * modification, are permitted provided that the following conditions are met:
10  *
11  * Redistributions of source code must retain the above copyright notice, this
12  * list of conditions and the following disclaimer.
13  *
14  * Redistributions in binary form must reproduce the above copyright notice,
15  * this list of conditions and the following disclaimer in the documentation
16  * and/or other materials provided with the distribution, if any, must include
17  * the following acknowledgment: "This product includes software developed by
18  * the University Corporation for Advanced Internet Development
19  * <http://www.ucaid.edu>Internet2 Project. Alternately, this acknowledegement
20  * may appear in the software itself, if and wherever such third-party
21  * acknowledgments normally appear.
22  *
23  * Neither the name of Shibboleth nor the names of its contributors, nor
24  * Internet2, nor the University Corporation for Advanced Internet Development,
25  * Inc., nor UCAID may be used to endorse or promote products derived from this
26  * software without specific prior written permission. For written permission,
27  * please contact shibboleth@shibboleth.org
28  *
29  * Products derived from this software may not be called Shibboleth, Internet2,
30  * UCAID, or the University Corporation for Advanced Internet Development, nor
31  * may Shibboleth appear in their name, without prior written permission of the
32  * University Corporation for Advanced Internet Development.
33  *
34  *
35  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
36  * AND WITH ALL FAULTS. ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
37  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A
38  * PARTICULAR PURPOSE, AND NON-INFRINGEMENT ARE DISCLAIMED AND THE ENTIRE RISK
39  * OF SATISFACTORY QUALITY, PERFORMANCE, ACCURACY, AND EFFORT IS WITH LICENSEE.
40  * IN NO EVENT SHALL THE COPYRIGHT OWNER, CONTRIBUTORS OR THE UNIVERSITY
41  * CORPORATION FOR ADVANCED INTERNET DEVELOPMENT, INC. BE LIABLE FOR ANY DIRECT,
42  * INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
43  * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
44  * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
45  * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
46  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
47  * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
48  */
49
50
51 /* XMLProviders.cpp - bootstraps the extension library
52
53    Scott Cantor
54    2/14/04
55
56    $History:$
57 */
58
59 #ifdef WIN32
60 # define XML_EXPORTS __declspec(dllexport)
61 #else
62 # define XML_EXPORTS
63 #endif
64
65 #include "internal.h"
66 #include <log4cpp/Category.hh>
67 #include <openssl/err.h>
68
69 using namespace saml;
70 using namespace shibboleth;
71 using namespace log4cpp;
72 using namespace std;
73
74 // Metadata Factories
75
76 PlugManager::Factory TargetedIDFactory;
77 PlugManager::Factory XMLMetadataFactory;
78 PlugManager::Factory XMLTrustFactory;
79 PlugManager::Factory XMLCredentialsFactory;
80 PlugManager::Factory XMLAAPFactory;
81 PlugManager::Factory FileCredResolverFactory;
82
83 extern "C" int XML_EXPORTS saml_extension_init(void*)
84 {
85     // Register extension schemas.
86     saml::XML::registerSchema(::XML::SHIB_NS,::XML::SHIB_SCHEMA_ID);
87     saml::XML::registerSchema(::XML::SHIBMETA_NS,::XML::SHIBMETA_SCHEMA_ID);
88     saml::XML::registerSchema(::XML::TRUST_NS,::XML::TRUST_SCHEMA_ID);
89     saml::XML::registerSchema(::XML::CREDS_NS,::XML::CREDS_SCHEMA_ID);
90     saml::XML::registerSchema(::XML::SAML2META_NS,::XML::SAML2META_SCHEMA_ID);
91     saml::XML::registerSchema(::XML::SAML2ASSERT_NS,::XML::SAML2ASSERT_SCHEMA_ID);
92     saml::XML::registerSchema(::XML::XMLENC_NS,::XML::XMLENC_SCHEMA_ID);
93
94     // Register metadata factories (some are legacy aliases)
95     SAMLConfig& conf=SAMLConfig::getConfig();
96     conf.getPlugMgr().regFactory("edu.internet2.middleware.shibboleth.common.provider.TargetedIDFactory",&TargetedIDFactory);
97     conf.getPlugMgr().regFactory("edu.internet2.middleware.shibboleth.metadata.provider.XMLMetadata",&XMLMetadataFactory);
98     conf.getPlugMgr().regFactory("edu.internet2.middleware.shibboleth.common.provider.XMLMetadata",&XMLMetadataFactory);
99     conf.getPlugMgr().regFactory("edu.internet2.middleware.shibboleth.trust.provider.XMLTrust",&XMLTrustFactory);
100     conf.getPlugMgr().regFactory("edu.internet2.middleware.shibboleth.common.provider.XMLTrust",&XMLTrustFactory);
101     conf.getPlugMgr().regFactory("edu.internet2.middleware.shibboleth.common.Credentials",&XMLCredentialsFactory);
102     conf.getPlugMgr().regFactory("edu.internet2.middleware.shibboleth.common.Credentials.FileCredentialResolver",&FileCredResolverFactory);
103     conf.getPlugMgr().regFactory("edu.internet2.middleware.shibboleth.aap.provider.XMLAAP",&XMLAAPFactory);
104     conf.getPlugMgr().regFactory("edu.internet2.middleware.shibboleth.target.provider.XMLAAP",&XMLAAPFactory);
105
106     return 0;
107 }
108
109 extern "C" void XML_EXPORTS saml_extension_term()
110 {
111     // Unregister metadata factories
112     SAMLConfig& conf=SAMLConfig::getConfig();
113     conf.getPlugMgr().unregFactory("edu.internet2.middleware.shibboleth.common.provider.TargetedIDFactory");
114     conf.getPlugMgr().unregFactory("edu.internet2.middleware.shibboleth.metadata.provider.XMLMetadata");
115     conf.getPlugMgr().unregFactory("edu.internet2.middleware.shibboleth.common.provider.XMLMetadata");
116     conf.getPlugMgr().unregFactory("edu.internet2.middleware.shibboleth.trust.provider.XMLTrust");
117     conf.getPlugMgr().unregFactory("edu.internet2.middleware.shibboleth.common.provider.XMLTrust");
118     conf.getPlugMgr().unregFactory("edu.internet2.middleware.shibboleth.common.Credentials");
119     conf.getPlugMgr().unregFactory("edu.internet2.middleware.shibboleth.common.Credentials.FileCredentialResolver");
120     conf.getPlugMgr().unregFactory("edu.internet2.middleware.shibboleth.aap.provider.XMLAAP");
121     conf.getPlugMgr().unregFactory("edu.internet2.middleware.shibboleth.target.provider.XMLAAP");
122 }
123
124 void log_openssl()
125 {
126     const char* file;
127     const char* data;
128     int flags,line;
129
130     unsigned long code=ERR_get_error_line_data(&file,&line,&data,&flags);
131     while (code) {
132         Category& log=Category::getInstance("OpenSSL");
133         log.errorStream() << "error code: " << code << " in " << file << ", line " << line << CategoryStream::ENDLINE;
134         if (data && (flags & ERR_TXT_STRING))
135             log.errorStream() << "error data: " << data << CategoryStream::ENDLINE;
136         code=ERR_get_error_line_data(&file,&line,&data,&flags);
137     }
138 }
139
140 X509* B64_to_X509(const char* buf)
141 {
142     BIO* bmem = BIO_new_mem_buf((void*)buf,-1);
143     BIO* b64 = BIO_new(BIO_f_base64());
144     b64 = BIO_push(b64, bmem);
145     X509* x=NULL;
146     d2i_X509_bio(b64,&x);
147     if (!x)
148         log_openssl();
149     BIO_free_all(b64);
150     return x;
151 }
152
153 X509_CRL* B64_to_CRL(const char* buf)
154 {
155     BIO* bmem = BIO_new_mem_buf((void*)buf,-1);
156     BIO* b64 = BIO_new(BIO_f_base64());
157     b64 = BIO_push(b64, bmem);
158     X509_CRL* x=NULL;
159     d2i_X509_CRL_bio(b64,&x);
160     if (!x)
161         log_openssl();
162     BIO_free_all(b64);
163     return x;
164 }