Next integration phase, metadata and trust conversion.
[shibboleth/cpp-sp.git] / xmlproviders / XMLProviders.cpp
1 /*
2  *  Copyright 2001-2005 Internet2
3  * 
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *     http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16
17 /* XMLProviders.cpp - bootstraps the extension library
18
19    Scott Cantor
20    2/14/04
21
22    $History:$
23 */
24
25 #ifdef WIN32
26 # define XML_EXPORTS __declspec(dllexport)
27 #else
28 # define XML_EXPORTS
29 #endif
30
31 #include "internal.h"
32 #include <shib-target/shib-target.h>
33 #include <log4cpp/Category.hh>
34 #include <openssl/err.h>
35
36 using namespace saml;
37 using namespace shibboleth;
38 using namespace log4cpp;
39 using namespace std;
40
41 // Metadata Factories
42
43 PlugManager::Factory TargetedIDFactory;
44 PlugManager::Factory XMLCredentialsFactory;
45 PlugManager::Factory XMLAAPFactory;
46 PlugManager::Factory FileCredResolverFactory;
47 PlugManager::Factory XMLAccessControlFactory;
48
49 extern "C" int XML_EXPORTS saml_extension_init(void*)
50 {
51     // Register extension schemas.
52     saml::XML::registerSchema(::XML::SHIB_NS,::XML::SHIB_SCHEMA_ID);
53     saml::XML::registerSchema(::XML::CREDS_NS,::XML::CREDS_SCHEMA_ID);
54
55     // Register metadata factories (some are legacy aliases)
56     SAMLConfig& conf=SAMLConfig::getConfig();
57     conf.getPlugMgr().regFactory("edu.internet2.middleware.shibboleth.common.provider.TargetedIDFactory",&TargetedIDFactory);
58     conf.getPlugMgr().regFactory("edu.internet2.middleware.shibboleth.common.Credentials",&XMLCredentialsFactory);
59     conf.getPlugMgr().regFactory("edu.internet2.middleware.shibboleth.common.Credentials.FileCredentialResolver",&FileCredResolverFactory);
60     conf.getPlugMgr().regFactory("edu.internet2.middleware.shibboleth.aap.provider.XMLAAP",&XMLAAPFactory);
61     conf.getPlugMgr().regFactory("edu.internet2.middleware.shibboleth.target.provider.XMLAAP",&XMLAAPFactory);
62     conf.getPlugMgr().regFactory(shibtarget::XML::XMLAccessControlType,&XMLAccessControlFactory);
63
64     return 0;
65 }
66
67 extern "C" void XML_EXPORTS saml_extension_term()
68 {
69     // Unregister metadata factories
70     SAMLConfig& conf=SAMLConfig::getConfig();
71     conf.getPlugMgr().unregFactory("edu.internet2.middleware.shibboleth.common.provider.TargetedIDFactory");
72     conf.getPlugMgr().unregFactory("edu.internet2.middleware.shibboleth.common.Credentials");
73     conf.getPlugMgr().unregFactory("edu.internet2.middleware.shibboleth.common.Credentials.FileCredentialResolver");
74     conf.getPlugMgr().unregFactory("edu.internet2.middleware.shibboleth.aap.provider.XMLAAP");
75     conf.getPlugMgr().unregFactory("edu.internet2.middleware.shibboleth.target.provider.XMLAAP");
76     conf.getPlugMgr().unregFactory(shibtarget::XML::XMLAccessControlType);
77 }
78
79 void log_openssl()
80 {
81     const char* file;
82     const char* data;
83     int flags,line;
84
85     unsigned long code=ERR_get_error_line_data(&file,&line,&data,&flags);
86     while (code) {
87         Category& log=Category::getInstance("OpenSSL");
88         log.errorStream() << "error code: " << code << " in " << file << ", line " << line << CategoryStream::ENDLINE;
89         if (data && (flags & ERR_TXT_STRING))
90             log.errorStream() << "error data: " << data << CategoryStream::ENDLINE;
91         code=ERR_get_error_line_data(&file,&line,&data,&flags);
92     }
93 }