Handle library unload.
[shibboleth/cpp-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
73 // Metadata Factories
74
75 PlugManager::Factory XMLMetadataFactory;
76 PlugManager::Factory XMLRevocationFactory;
77 PlugManager::Factory XMLTrustFactory;
78 PlugManager::Factory XMLCredentialsFactory;
79 PlugManager::Factory XMLAAPFactory;
80 PlugManager::Factory FileCredResolverFactory;
81
82
83 extern "C" SAMLAttribute* ShibAttributeFactory(DOMElement* e)
84 {
85     DOMNode* n=e->getFirstChild();
86     while (n && n->getNodeType()!=DOMNode::ELEMENT_NODE)
87         n=n->getNextSibling();
88     if (n && static_cast<DOMElement*>(n)->hasAttributeNS(NULL,SHIB_L(Scope)))
89         return new ScopedAttribute(e);
90     return new SAMLAttribute(e);
91 }
92
93 void log_openssl()
94 {
95     const char* file;
96     const char* data;
97     int flags,line;
98
99     unsigned long code=ERR_get_error_line_data(&file,&line,&data,&flags);
100     while (code) {
101         Category& log=Category::getInstance("OpenSSL");
102         log.errorStream() << "error code: " << code << " in " << file << ", line " << line << CategoryStream::ENDLINE;
103         if (data && (flags & ERR_TXT_STRING))
104             log.errorStream() << "error data: " << data << CategoryStream::ENDLINE;
105         code=ERR_get_error_line_data(&file,&line,&data,&flags);
106     }
107 }
108
109 X509* B64_to_X509(const char* buf)
110 {
111     BIO* bmem = BIO_new_mem_buf((void*)buf,-1);
112     BIO* b64 = BIO_new(BIO_f_base64());
113     b64 = BIO_push(b64, bmem);
114     X509* x=NULL;
115     d2i_X509_bio(b64,&x);
116     if (!x)
117         log_openssl();
118     BIO_free_all(b64);
119     return x;
120 }
121
122 X509_CRL* B64_to_CRL(const char* buf)
123 {
124     BIO* bmem = BIO_new_mem_buf((void*)buf,-1);
125     BIO* b64 = BIO_new(BIO_f_base64());
126     b64 = BIO_push(b64, bmem);
127     X509_CRL* x=NULL;
128     d2i_X509_CRL_bio(b64,&x);
129     if (!x)
130         log_openssl();
131     BIO_free_all(b64);
132     return x;
133 }
134
135 extern "C" int XML_EXPORTS saml_extension_init(void*)
136 {
137     // Register extension schemas.
138     saml::XML::registerSchema(::XML::SHIB_NS,::XML::SHIB_SCHEMA_ID);
139     saml::XML::registerSchema(::XML::TRUST_NS,::XML::TRUST_SCHEMA_ID);
140     saml::XML::registerSchema(::XML::CREDS_NS,::XML::CREDS_SCHEMA_ID);
141
142     // Register metadata factories
143     ShibConfig& conf=ShibConfig::getConfig();
144     conf.m_plugMgr.regFactory("edu.internet2.middleware.shibboleth.common.provider.XMLMetadata",&XMLMetadataFactory);
145     conf.m_plugMgr.regFactory("edu.internet2.middleware.shibboleth.common.provider.XMLRevocation",&XMLRevocationFactory);
146     conf.m_plugMgr.regFactory("edu.internet2.middleware.shibboleth.common.provider.XMLTrust",&XMLTrustFactory);
147     conf.m_plugMgr.regFactory("edu.internet2.middleware.shibboleth.common.Credentials",&XMLCredentialsFactory);
148     conf.m_plugMgr.regFactory("edu.internet2.middleware.shibboleth.common.Credentials.FileCredentialResolver",&FileCredResolverFactory);
149     conf.m_plugMgr.regFactory("edu.internet2.middleware.shibboleth.target.provider.XMLAAP",&XMLAAPFactory);
150
151     SAMLAttribute::setFactory(&ShibAttributeFactory);
152
153     return 0;
154 }
155
156 extern "C" void XML_EXPORTS saml_extension_term()
157 {
158     // Unregister metadata factories
159     ShibConfig& conf=ShibConfig::getConfig();
160     conf.m_plugMgr.unregFactory("edu.internet2.middleware.shibboleth.common.provider.XMLMetadata");
161     conf.m_plugMgr.unregFactory("edu.internet2.middleware.shibboleth.common.provider.XMLRevocation");
162     conf.m_plugMgr.unregFactory("edu.internet2.middleware.shibboleth.common.provider.XMLTrust");
163     conf.m_plugMgr.unregFactory("edu.internet2.middleware.shibboleth.common.Credentials");
164     conf.m_plugMgr.unregFactory("edu.internet2.middleware.shibboleth.common.Credentials.FileCredentialResolver");
165     conf.m_plugMgr.unregFactory("edu.internet2.middleware.shibboleth.target.provider.XMLAAP");
166
167     SAMLAttribute::setFactory(NULL);
168 }