Simplify/rename signing and encryption properties.
[shibboleth/sp.git] / shibsp / handler / impl / AbstractHandler.cpp
1 /*
2  *  Copyright 2001-2007 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 /**
18  * AbstractHandler.cpp
19  * 
20  * Base class for handlers based on a DOMPropertySet. 
21  */
22
23 #include "internal.h"
24 #include "Application.h"
25 #include "exceptions.h"
26 #include "ServiceProvider.h"
27 #include "SPRequest.h"
28 #include "handler/AbstractHandler.h"
29 #include "handler/LogoutHandler.h"
30 #include "remoting/ListenerService.h"
31 #include "util/SPConstants.h"
32
33 #ifndef SHIBSP_LITE
34 # include <saml/SAMLConfig.h>
35 # include <saml/binding/SAMLArtifact.h>
36 # include <saml/saml1/core/Protocols.h>
37 # include <saml/saml2/core/Protocols.h>
38 # include <saml/saml2/metadata/Metadata.h>
39 # include <saml/saml2/metadata/MetadataCredentialCriteria.h>
40 # include <saml/util/SAMLConstants.h>
41 # include <xmltooling/util/StorageService.h>
42 using namespace opensaml::saml2md;
43 #else
44 # include "lite/SAMLConstants.h"
45 #endif
46
47 #include <xmltooling/XMLToolingConfig.h>
48 #include <xmltooling/util/URLEncoder.h>
49
50 using namespace shibsp;
51 using namespace samlconstants;
52 using namespace opensaml;
53 using namespace xmltooling;
54 using namespace xercesc;
55 using namespace std;
56
57 namespace shibsp {
58     SHIBSP_DLLLOCAL PluginManager< Handler,string,pair<const DOMElement*,const char*> >::Factory SAML1ConsumerFactory;
59     SHIBSP_DLLLOCAL PluginManager< Handler,string,pair<const DOMElement*,const char*> >::Factory SAML2ConsumerFactory;
60     SHIBSP_DLLLOCAL PluginManager< Handler,string,pair<const DOMElement*,const char*> >::Factory SAML2ArtifactResolutionFactory;
61     SHIBSP_DLLLOCAL PluginManager< Handler,string,pair<const DOMElement*,const char*> >::Factory AssertionLookupFactory;
62     SHIBSP_DLLLOCAL PluginManager< Handler,string,pair<const DOMElement*,const char*> >::Factory ChainingLogoutInitiatorFactory;
63     SHIBSP_DLLLOCAL PluginManager< Handler,string,pair<const DOMElement*,const char*> >::Factory LocalLogoutInitiatorFactory;
64     SHIBSP_DLLLOCAL PluginManager< Handler,string,pair<const DOMElement*,const char*> >::Factory SAML2LogoutInitiatorFactory;
65     SHIBSP_DLLLOCAL PluginManager< Handler,string,pair<const DOMElement*,const char*> >::Factory SAML2LogoutFactory;
66 };
67
68 void SHIBSP_API shibsp::registerHandlers()
69 {
70     SPConfig& conf=SPConfig::getConfig();
71     
72     conf.AssertionConsumerServiceManager.registerFactory(SAML1_PROFILE_BROWSER_ARTIFACT, SAML1ConsumerFactory);
73     conf.AssertionConsumerServiceManager.registerFactory(SAML1_PROFILE_BROWSER_POST, SAML1ConsumerFactory);
74     conf.AssertionConsumerServiceManager.registerFactory(SAML20_BINDING_HTTP_POST, SAML2ConsumerFactory);
75     conf.AssertionConsumerServiceManager.registerFactory(SAML20_BINDING_HTTP_POST_SIMPLESIGN, SAML2ConsumerFactory);
76     conf.AssertionConsumerServiceManager.registerFactory(SAML20_BINDING_HTTP_ARTIFACT, SAML2ConsumerFactory);
77
78     conf.ArtifactResolutionServiceManager.registerFactory(SAML20_BINDING_SOAP, SAML2ArtifactResolutionFactory);
79
80     conf.HandlerManager.registerFactory(SAML20_BINDING_URI, AssertionLookupFactory);
81
82     conf.LogoutInitiatorManager.registerFactory(CHAINING_LOGOUT_INITIATOR, ChainingLogoutInitiatorFactory);
83     conf.LogoutInitiatorManager.registerFactory(LOCAL_LOGOUT_INITIATOR, LocalLogoutInitiatorFactory);
84     conf.LogoutInitiatorManager.registerFactory(SAML2_LOGOUT_INITIATOR, SAML2LogoutInitiatorFactory);
85     conf.SingleLogoutServiceManager.registerFactory(SAML20_BINDING_SOAP, SAML2LogoutFactory);
86     conf.SingleLogoutServiceManager.registerFactory(SAML20_BINDING_HTTP_REDIRECT, SAML2LogoutFactory);
87     conf.SingleLogoutServiceManager.registerFactory(SAML20_BINDING_HTTP_POST, SAML2LogoutFactory);
88     conf.SingleLogoutServiceManager.registerFactory(SAML20_BINDING_HTTP_POST_SIMPLESIGN, SAML2LogoutFactory);
89     conf.SingleLogoutServiceManager.registerFactory(SAML20_BINDING_HTTP_ARTIFACT, SAML2LogoutFactory);
90 }
91
92 AbstractHandler::AbstractHandler(
93     const DOMElement* e, Category& log, DOMNodeFilter* filter, const map<string,string>* remapper
94     ) : m_log(log), m_configNS(shibspconstants::SHIB2SPCONFIG_NS) {
95     load(e,log,filter,remapper);
96 }
97
98 #ifndef SHIBSP_LITE
99
100 void AbstractHandler::checkError(const XMLObject* response, const saml2md::RoleDescriptor* role) const
101 {
102     const saml2p::StatusResponseType* r2 = dynamic_cast<const saml2p::StatusResponseType*>(response);
103     if (r2) {
104         const saml2p::Status* status = r2->getStatus();
105         if (status) {
106             const saml2p::StatusCode* sc = status->getStatusCode();
107             const XMLCh* code = sc ? sc->getValue() : NULL;
108             if (code && !XMLString::equals(code,saml2p::StatusCode::SUCCESS)) {
109                 FatalProfileException ex("SAML response contained an error.");
110                 annotateException(&ex, role, status);   // throws it
111             }
112         }
113     }
114
115     const saml1p::Response* r1 = dynamic_cast<const saml1p::Response*>(response);
116     if (r1) {
117         const saml1p::Status* status = r1->getStatus();
118         if (status) {
119             const saml1p::StatusCode* sc = status->getStatusCode();
120             const QName* code = sc ? sc->getValue() : NULL;
121             if (code && *code != saml1p::StatusCode::SUCCESS) {
122                 FatalProfileException ex("SAML response contained an error.");
123                 ex.addProperty("statusCode", code->toString().c_str());
124                 if (sc->getStatusCode()) {
125                     code = sc->getStatusCode()->getValue();
126                     if (code)
127                         ex.addProperty("statusCode2", code->toString().c_str());
128                 }
129                 if (status->getStatusMessage()) {
130                     auto_ptr_char msg(status->getStatusMessage()->getMessage());
131                     if (msg.get() && *msg.get())
132                         ex.addProperty("statusMessage", msg.get());
133                 }
134                 ex.raise();
135             }
136         }
137     }
138 }
139
140 void AbstractHandler::fillStatus(saml2p::StatusResponseType& response, const XMLCh* code, const XMLCh* subcode, const char* msg) const
141 {
142     saml2p::Status* status = saml2p::StatusBuilder::buildStatus();
143     saml2p::StatusCode* scode = saml2p::StatusCodeBuilder::buildStatusCode();
144     status->setStatusCode(scode);
145     scode->setValue(code);
146     if (subcode) {
147         saml2p::StatusCode* ssubcode = saml2p::StatusCodeBuilder::buildStatusCode();
148         scode->setStatusCode(ssubcode);
149         ssubcode->setValue(subcode);
150     }
151     if (msg) {
152         pair<bool,bool> flag = getBool("detailedErrors", m_configNS.get());
153         auto_ptr_XMLCh widemsg((flag.first && flag.second) ? msg : "Error processing request.");
154         saml2p::StatusMessage* sm = saml2p::StatusMessageBuilder::buildStatusMessage();
155         status->setStatusMessage(sm);
156         sm->setMessage(widemsg.get());
157     }
158     response.setStatus(status);
159 }
160
161 long AbstractHandler::sendMessage(
162     const MessageEncoder& encoder,
163     XMLObject* msg,
164     const char* relayState,
165     const char* destination,
166     const saml2md::RoleDescriptor* role,
167     const Application& application,
168     HTTPResponse& httpResponse,
169     bool signIfPossible
170     ) const
171 {
172     const EntityDescriptor* entity = role ? dynamic_cast<const EntityDescriptor*>(role->getParent()) : NULL;
173     const PropertySet* relyingParty = application.getRelyingParty(entity);
174     pair<bool,const char*> flag = signIfPossible ? make_pair(true,"true") : relyingParty->getString("signing");
175     if (role && flag.first &&
176         (!strcmp(flag.second, "true") ||
177             (encoder.isUserAgentPresent() && !strcmp(flag.second, "front")) ||
178             (!encoder.isUserAgentPresent() && !strcmp(flag.second, "back")))) {
179         CredentialResolver* credResolver=application.getCredentialResolver();
180         if (credResolver) {
181             Locker credLocker(credResolver);
182             // Fill in criteria to use.
183             MetadataCredentialCriteria mcc(*role);
184             mcc.setUsage(CredentialCriteria::SIGNING_CREDENTIAL);
185             pair<bool,const char*> keyName = relyingParty->getString("keyName");
186             if (keyName.first)
187                 mcc.getKeyNames().insert(keyName.second);
188             pair<bool,const XMLCh*> sigalg = relyingParty->getXMLString("signingAlg");
189             if (sigalg.first)
190                 mcc.setXMLAlgorithm(sigalg.second);
191             const Credential* cred = credResolver->resolve(&mcc);
192             if (cred) {
193                 // Signed request.
194                 return encoder.encode(
195                     httpResponse,
196                     msg,
197                     destination,
198                     entity,
199                     relayState,
200                     &application,
201                     cred,
202                     sigalg.second,
203                     relyingParty->getXMLString("digestAlg").second
204                     );
205             }
206             else {
207                 m_log.warn("no signing credential resolved, leaving message unsigned");
208             }
209         }
210         else {
211             m_log.warn("no credential resolver installed, leaving message unsigned");
212         }
213     }
214
215     // Unsigned request.
216     return encoder.encode(httpResponse, msg, destination, entity, relayState, &application);
217 }
218
219 #endif
220
221 void AbstractHandler::preserveRelayState(const Application& application, HTTPResponse& response, string& relayState) const
222 {
223     if (relayState.empty())
224         return;
225
226     // No setting means just pass it by value.
227     pair<bool,const char*> mech=getString("relayState");
228     if (!mech.first || !mech.second || !*mech.second)
229         return;
230
231     if (!strcmp(mech.second, "cookie")) {
232         // Here we store the state in a cookie and send a fixed
233         // value so we can recognize it on the way back.
234         if (relayState != "cookie") {
235             const URLEncoder* urlenc = XMLToolingConfig::getConfig().getURLEncoder();
236             pair<string,const char*> shib_cookie=application.getCookieNameProps("_shibstate_");
237             string stateval = urlenc->encode(relayState.c_str()) + shib_cookie.second;
238             response.setCookie(shib_cookie.first.c_str(),stateval.c_str());
239             relayState = "cookie";
240         }
241     }
242     else if (strstr(mech.second,"ss:")==mech.second) {
243         if (relayState.find("ss:")!=0) {
244             mech.second+=3;
245             if (*mech.second) {
246                 if (SPConfig::getConfig().isEnabled(SPConfig::OutOfProcess)) {
247 #ifndef SHIBSP_LITE
248                     StorageService* storage = application.getServiceProvider().getStorageService(mech.second);
249                     if (storage) {
250                         string rsKey;
251                         SAMLConfig::getConfig().generateRandomBytes(rsKey,10);
252                         rsKey = SAMLArtifact::toHex(rsKey);
253                         if (!storage->createString("RelayState", rsKey.c_str(), relayState.c_str(), time(NULL) + 600))
254                             throw IOException("Attempted to insert duplicate storage key.");
255                         relayState = string(mech.second-3) + ':' + rsKey;
256                     }
257                     else {
258                         m_log.error("Storage-backed RelayState with invalid StorageService ID (%s)", mech.second);
259                         relayState.erase();
260                     }
261 #endif
262                 }
263                 else if (SPConfig::getConfig().isEnabled(SPConfig::InProcess)) {
264                     DDF out,in = DDF("set::RelayState").structure();
265                     in.addmember("id").string(mech.second);
266                     in.addmember("value").string(relayState.c_str());
267                     DDFJanitor jin(in),jout(out);
268                     out = application.getServiceProvider().getListenerService()->send(in);
269                     if (!out.isstring())
270                         throw IOException("StorageService-backed RelayState mechanism did not return a state key.");
271                     relayState = string(mech.second-3) + ':' + out.string();
272                 }
273             }
274         }
275     }
276     else
277         throw ConfigurationException("Unsupported relayState mechanism ($1).", params(1,mech.second));
278 }
279
280 void AbstractHandler::recoverRelayState(const Application& application, HTTPRequest& httpRequest, string& relayState, bool clear) const
281 {
282     SPConfig& conf = SPConfig::getConfig();
283
284     // Look for StorageService-backed state of the form "ss:SSID:key".
285     const char* state = relayState.c_str();
286     if (strstr(state,"ss:")==state) {
287         state += 3;
288         const char* key = strchr(state,':');
289         if (key) {
290             string ssid = relayState.substr(3, key - state);
291             key++;
292             if (!ssid.empty() && *key) {
293                 if (conf.isEnabled(SPConfig::OutOfProcess)) {
294 #ifndef SHIBSP_LITE
295                     StorageService* storage = conf.getServiceProvider()->getStorageService(ssid.c_str());
296                     if (storage) {
297                         ssid = key;
298                         if (storage->readString("RelayState",ssid.c_str(),&relayState)>0) {
299                             if (clear)
300                                 storage->deleteString("RelayState",ssid.c_str());
301                             return;
302                         }
303                         else
304                             relayState.erase();
305                     }
306                     else {
307                         Category::getInstance(SHIBSP_LOGCAT".Handler").error(
308                             "Storage-backed RelayState with invalid StorageService ID (%s)", ssid.c_str()
309                             );
310                         relayState.erase();
311                     }
312 #endif
313                 }
314                 else if (conf.isEnabled(SPConfig::InProcess)) {
315                     DDF out,in = DDF("get::RelayState").structure();
316                     in.addmember("id").string(ssid.c_str());
317                     in.addmember("key").string(key);
318                     in.addmember("clear").integer(clear ? 1 : 0);
319                     DDFJanitor jin(in),jout(out);
320                     out = application.getServiceProvider().getListenerService()->send(in);
321                     if (!out.isstring()) {
322                         m_log.error("StorageService-backed RelayState mechanism did not return a state value.");
323                         relayState.erase();
324                     }
325                     else {
326                         relayState = out.string();
327                         return;
328                     }
329                 }
330             }
331         }
332     }
333     
334     if (conf.isEnabled(SPConfig::InProcess)) {
335         if (relayState == "cookie") {
336             // Pull the value from the "relay state" cookie.
337             pair<string,const char*> relay_cookie = application.getCookieNameProps("_shibstate_");
338             // In process, we should be able to cast down to a full SPRequest.
339             SPRequest& request = dynamic_cast<SPRequest&>(httpRequest);
340             const char* state = request.getCookie(relay_cookie.first.c_str());
341             if (state && *state) {
342                 // URL-decode the value.
343                 char* rscopy=strdup(state);
344                 XMLToolingConfig::getConfig().getURLEncoder()->decode(rscopy);
345                 relayState = rscopy;
346                 free(rscopy);
347                 
348                 if (clear)
349                     request.setCookie(relay_cookie.first.c_str(),relay_cookie.second);
350                 return;
351             }
352
353             relayState.erase();
354         }
355
356         // Check for "default" value.
357         if (relayState.empty() || relayState == "default") {
358             pair<bool,const char*> homeURL=application.getString("homeURL");
359             relayState=homeURL.first ? homeURL.second : "/";
360             return;
361         }
362     }
363
364     if (relayState == "default")
365         relayState.empty();
366 }