https://issues.shibboleth.net/jira/browse/SSPCPP-396
[shibboleth/cpp-sp.git] / shibsp / ServiceProvider.cpp
1 /**
2  * Licensed to the University Corporation for Advanced Internet
3  * Development, Inc. (UCAID) under one or more contributor license
4  * agreements. See the NOTICE file distributed with this work for
5  * additional information regarding copyright ownership.
6  *
7  * UCAID licenses this file to you under the Apache License,
8  * Version 2.0 (the "License"); you may not use this file except
9  * in compliance with the License. You may obtain a copy of the
10  * License at
11  *
12  * http://www.apache.org/licenses/LICENSE-2.0
13  *
14  * Unless required by applicable law or agreed to in writing,
15  * software distributed under the License is distributed on an
16  * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND,
17  * either express or implied. See the License for the specific
18  * language governing permissions and limitations under the License.
19  */
20
21 /**
22  * ServiceProvider.cpp
23  *
24  * Interface to a Shibboleth ServiceProvider instance.
25  */
26
27 #include "internal.h"
28 #include "exceptions.h"
29 #include "AccessControl.h"
30 #include "Application.h"
31 #include "ServiceProvider.h"
32 #include "SessionCache.h"
33 #include "SPRequest.h"
34 #include "attribute/Attribute.h"
35 #include "handler/SessionInitiator.h"
36 #include "util/TemplateParameters.h"
37
38 #include <fstream>
39 #include <sstream>
40 #include <boost/algorithm/string.hpp>
41 #ifndef SHIBSP_LITE
42 # include <saml/exceptions.h>
43 # include <saml/saml2/metadata/MetadataProvider.h>
44 #endif
45 #include <xmltooling/XMLToolingConfig.h>
46 #include <xmltooling/util/NDC.h>
47 #include <xmltooling/util/PathResolver.h>
48 #include <xmltooling/util/URLEncoder.h>
49 #include <xmltooling/util/XMLHelper.h>
50
51 using namespace shibsp;
52 using namespace xmltooling::logging;
53 using namespace xmltooling;
54 using namespace std;
55
56 namespace shibsp {
57     SHIBSP_DLLLOCAL PluginManager<ServiceProvider,string,const DOMElement*>::Factory XMLServiceProviderFactory;
58
59     long SHIBSP_DLLLOCAL sendError(
60         Category& log, SPRequest& request, const Application* app, const char* page, TemplateParameters& tp, bool mayRedirect=true
61         )
62     {
63         // The properties we need can be set in the RequestMap, or the Errors element.
64         bool mderror = dynamic_cast<const opensaml::saml2md::MetadataException*>(tp.getRichException())!=nullptr;
65         bool accesserror = (strcmp(page, "access")==0);
66         pair<bool,const char*> redirectErrors = pair<bool,const char*>(false,nullptr);
67         pair<bool,const char*> pathname = pair<bool,const char*>(false,nullptr);
68
69         // Strictly for error handling, detect a nullptr application and point at the default.
70         if (!app)
71             app = request.getServiceProvider().getApplication(nullptr);
72
73         const PropertySet* props=app->getPropertySet("Errors");
74
75         // First look for settings in the request map of the form pageError.
76         try {
77             RequestMapper::Settings settings = request.getRequestSettings();
78             if (mderror)
79                 pathname = settings.first->getString("metadataError");
80             if (!pathname.first) {
81                 string pagename(page);
82                 pagename += "Error";
83                 pathname = settings.first->getString(pagename.c_str());
84             }
85             if (mayRedirect)
86                 redirectErrors = settings.first->getString("redirectErrors");
87         }
88         catch (exception& ex) {
89             log.error(ex.what());
90         }
91
92         // Check for redirection on errors instead of template.
93         if (mayRedirect) {
94             if (!redirectErrors.first && props)
95                 redirectErrors = props->getString("redirectErrors");
96             if (redirectErrors.first) {
97                 string loc(redirectErrors.second);
98                 request.absolutize(loc);
99                 loc = loc + '?' + tp.toQueryString();
100                 return request.sendRedirect(loc.c_str());
101             }
102         }
103
104         request.setContentType("text/html");
105         request.setResponseHeader("Expires","Wed, 01 Jan 1997 12:00:00 GMT");
106         request.setResponseHeader("Cache-Control","private,no-store,no-cache,max-age=0");
107
108         // Nothing in the request map, so check for a property named "page" in the Errors property set.
109         if (!pathname.first && props) {
110             if (mderror)
111                 pathname=props->getString("metadata");
112             if (!pathname.first)
113                 pathname=props->getString(page);
114         }
115
116         // If there's still no template to use, just use pageError.html unless it's an access issue.
117         string fname;
118         if (!pathname.first) {
119             if (!accesserror) {
120                 fname = string(page) + "Error.html";
121                 pathname.second = fname.c_str();
122             }
123         }
124         else {
125             fname = pathname.second;
126         }
127
128         // If we have a template to use, use it.
129         if (!fname.empty()) {
130             ifstream infile(XMLToolingConfig::getConfig().getPathResolver()->resolve(fname, PathResolver::XMLTOOLING_CFG_FILE).c_str());
131             if (infile) {
132                 tp.setPropertySet(props);
133                 stringstream str;
134                 XMLToolingConfig::getConfig().getTemplateEngine()->run(infile, str, tp, tp.getRichException());
135                 return request.sendError(str);
136             }
137         }
138
139         // If we got here, then either it's an access error or a template failed.
140         if (accesserror) {
141             istringstream msg("Access Denied");
142             return request.sendResponse(msg, HTTPResponse::XMLTOOLING_HTTP_STATUS_FORBIDDEN);
143         }
144
145         log.error("sendError could not process error template (%s)", pathname.second);
146         istringstream msg("Internal Server Error. Please contact the site administrator.");
147         return request.sendError(msg);
148     }
149
150     void SHIBSP_DLLLOCAL clearHeaders(SPRequest& request) {
151         const Application& app = request.getApplication();
152         app.clearHeader(request, "Shib-Cookie-Name", "HTTP_SHIB_COOKIE_NAME");
153         app.clearHeader(request, "Shib-Session-ID", "HTTP_SHIB_SESSION_ID");
154         app.clearHeader(request, "Shib-Session-Index", "HTTP_SHIB_SESSION_INDEX");
155         app.clearHeader(request, "Shib-Identity-Provider", "HTTP_SHIB_IDENTITY_PROVIDER");
156         app.clearHeader(request, "Shib-Authentication-Method", "HTTP_SHIB_AUTHENTICATION_METHOD");
157         app.clearHeader(request, "Shib-Authentication-Instant", "HTTP_SHIB_AUTHENTICATION_INSTANT");
158         app.clearHeader(request, "Shib-AuthnContext-Class", "HTTP_SHIB_AUTHNCONTEXT_CLASS");
159         app.clearHeader(request, "Shib-AuthnContext-Decl", "HTTP_SHIB_AUTHNCONTEXT_DECL");
160         app.clearHeader(request, "Shib-Assertion-Count", "HTTP_SHIB_ASSERTION_COUNT");
161         app.clearAttributeHeaders(request);
162         request.clearHeader("REMOTE_USER", "HTTP_REMOTE_USER");
163     }
164 };
165
166 void SHIBSP_API shibsp::registerServiceProviders()
167 {
168     SPConfig::getConfig().ServiceProviderManager.registerFactory(XML_SERVICE_PROVIDER, XMLServiceProviderFactory);
169 }
170
171 ServiceProvider::ServiceProvider()
172 {
173     m_authTypes.insert("shibboleth");
174 }
175
176 ServiceProvider::~ServiceProvider()
177 {
178 }
179
180 #ifndef SHIBSP_LITE
181 SecurityPolicyProvider* ServiceProvider::getSecurityPolicyProvider(bool required) const
182 {
183     if (required)
184         throw ConfigurationException("No SecurityPolicyProvider available.");
185     return nullptr;
186 }
187 #endif
188
189 Remoted* ServiceProvider::regListener(const char* address, Remoted* listener)
190 {
191     Remoted* ret = nullptr;
192     map<string,Remoted*>::const_iterator i = m_listenerMap.find(address);
193     if (i != m_listenerMap.end())
194         ret = i->second;
195     m_listenerMap[address] = listener;
196     Category::getInstance(SHIBSP_LOGCAT".ServiceProvider").info("registered remoted message endpoint (%s)",address);
197     return ret;
198 }
199
200 bool ServiceProvider::unregListener(const char* address, Remoted* current, Remoted* restore)
201 {
202     map<string,Remoted*>::const_iterator i = m_listenerMap.find(address);
203     if (i != m_listenerMap.end() && i->second == current) {
204         if (restore)
205             m_listenerMap[address] = restore;
206         else
207             m_listenerMap.erase(address);
208         Category::getInstance(SHIBSP_LOGCAT".ServiceProvider").info("unregistered remoted message endpoint (%s)",address);
209         return true;
210     }
211     return false;
212 }
213
214 Remoted* ServiceProvider::lookupListener(const char *address) const
215 {
216     map<string,Remoted*>::const_iterator i = m_listenerMap.find(address);
217     return (i == m_listenerMap.end()) ? nullptr : i->second;
218 }
219
220 pair<bool,long> ServiceProvider::doAuthentication(SPRequest& request, bool handler) const
221 {
222 #ifdef _DEBUG
223     xmltooling::NDC ndc("doAuthentication");
224 #endif
225     Category& log = Category::getInstance(SHIBSP_LOGCAT".ServiceProvider");
226
227     const Application* app = nullptr;
228     string targetURL = request.getRequestURL();
229
230     try {
231         RequestMapper::Settings settings = request.getRequestSettings();
232         app = &(request.getApplication());
233
234         // If not SSL, check to see if we should block or redirect it.
235         if (!request.isSecure()) {
236             pair<bool,const char*> redirectToSSL = settings.first->getString("redirectToSSL");
237             if (redirectToSSL.first) {
238 #ifdef HAVE_STRCASECMP
239                 if (!strcasecmp("GET",request.getMethod()) || !strcasecmp("HEAD",request.getMethod())) {
240 #else
241                 if (!stricmp("GET",request.getMethod()) || !stricmp("HEAD",request.getMethod())) {
242 #endif
243                     // Compute the new target URL
244                     string redirectURL = string("https://") + request.getHostname();
245                     if (strcmp(redirectToSSL.second,"443")) {
246                         redirectURL = redirectURL + ':' + redirectToSSL.second;
247                     }
248                     redirectURL += request.getRequestURI();
249                     return make_pair(true, request.sendRedirect(redirectURL.c_str()));
250                 }
251                 else {
252                     TemplateParameters tp;
253                     tp.m_map["requestURL"] = targetURL.substr(0,targetURL.find('?'));
254                     return make_pair(true, sendError(log, request, app, "ssl", tp, false));
255                 }
256             }
257         }
258
259         const char* handlerURL=request.getHandlerURL(targetURL.c_str());
260         if (!handlerURL)
261             throw ConfigurationException("Cannot determine handler from resource URL, check configuration.");
262
263         // If the request URL contains the handler base URL for this application, either dispatch
264         // directly (mainly Apache 2.0) or just pass back control.
265         if (boost::contains(targetURL, handlerURL)) {
266             if (handler)
267                 return doHandler(request);
268             else
269                 return make_pair(true, request.returnOK());
270         }
271
272         // These settings dictate how to proceed.
273         pair<bool,const char*> authType = settings.first->getString("authType");
274         pair<bool,bool> requireSession = settings.first->getBool("requireSession");
275         pair<bool,const char*> requireSessionWith = settings.first->getString("requireSessionWith");
276         pair<bool,const char*> requireLogoutWith = settings.first->getString("requireLogoutWith");
277
278         // If no session is required AND the AuthType (an Apache-derived concept) isn't recognized,
279         // then we ignore this request and consider it unprotected. Apache might lie to us if
280         // ShibBasicHijack is on, but that's up to it.
281         if ((!requireSession.first || !requireSession.second) && !requireSessionWith.first &&
282                 (!authType.first || m_authTypes.find(boost::to_lower_copy(string(authType.second))) == m_authTypes.end()))
283             return make_pair(true, request.returnDecline());
284
285         // Fix for secadv 20050901
286         clearHeaders(request);
287
288         Session* session = nullptr;
289         try {
290             session = request.getSession();
291         }
292         catch (exception& e) {
293             log.warn("error during session lookup: %s", e.what());
294             // If it's not a retryable session failure, we throw to the outer handler for reporting.
295             if (dynamic_cast<opensaml::RetryableProfileException*>(&e) == nullptr)
296                 throw;
297         }
298
299         if (session) {
300             // Check for logout interception.
301             if (requireLogoutWith.first) {
302                 // Check for a completion parameter on the query string.
303                 const char* qstr = request.getQueryString();
304                 if (!qstr || !strstr(qstr, "shiblogoutdone=1")) {
305                     // First leg of circuit, so we redirect to the logout endpoint specified with this URL as a return location.
306                     string selfurl = request.getRequestURL();
307                     if (!qstr)
308                         selfurl += '?';
309                     selfurl += "shiblogoutdone=1";
310                     string loc = requireLogoutWith.second;
311                     request.absolutize(loc);
312                     if (loc.find('?') != string::npos)
313                         loc += '&';
314                     else
315                         loc += '?';
316                     loc += "return=" + XMLToolingConfig::getConfig().getURLEncoder()->encode(selfurl.c_str());
317                     return make_pair(true, request.sendRedirect(loc.c_str()));
318                 }
319             }
320         }
321         else {
322             // No session.  Maybe that's acceptable?
323             if ((!requireSession.first || !requireSession.second) && !requireSessionWith.first)
324                 return make_pair(true, request.returnOK());
325
326             // No session, but we require one. Initiate a new session using the indicated method.
327             const SessionInitiator* initiator=nullptr;
328             if (requireSessionWith.first) {
329                 initiator=app->getSessionInitiatorById(requireSessionWith.second);
330                 if (!initiator) {
331                     throw ConfigurationException(
332                         "No session initiator found with id ($1), check requireSessionWith command.", params(1, requireSessionWith.second)
333                         );
334                 }
335             }
336             else {
337                 initiator=app->getDefaultSessionInitiator();
338                 if (!initiator)
339                     throw ConfigurationException("No default session initiator found, check configuration.");
340             }
341
342             return initiator->run(request, false);
343         }
344
345         request.setAuthType(authType.second);
346
347         // We're done.  Everything is okay.  Nothing to report.  Nothing to do..
348         // Let the caller decide how to proceed.
349         log.debug("doAuthentication succeeded");
350         return make_pair(false,0L);
351     }
352     catch (exception& e) {
353         request.log(SPRequest::SPError, e.what());
354         TemplateParameters tp(&e);
355         tp.m_map["requestURL"] = targetURL.substr(0,targetURL.find('?'));
356         return make_pair(true, sendError(log, request, app, "session", tp));
357     }
358 }
359
360 pair<bool,long> ServiceProvider::doAuthorization(SPRequest& request) const
361 {
362 #ifdef _DEBUG
363     xmltooling::NDC ndc("doAuthorization");
364 #endif
365     Category& log = Category::getInstance(SHIBSP_LOGCAT".ServiceProvider");
366
367     const Application* app = nullptr;
368     const Session* session = nullptr;
369     string targetURL = request.getRequestURL();
370
371     try {
372         RequestMapper::Settings settings = request.getRequestSettings();
373         app = &(request.getApplication());
374
375         // Three settings dictate how to proceed.
376         pair<bool,const char*> authType = settings.first->getString("authType");
377         pair<bool,bool> requireSession = settings.first->getBool("requireSession");
378         pair<bool,const char*> requireSessionWith = settings.first->getString("requireSessionWith");
379
380         // If no session is required AND the AuthType (an Apache-derived concept) isn't recognized,
381         // then we ignore this request and consider it unprotected. Apache might lie to us if
382         // ShibBasicHijack is on, but that's up to it.
383         if ((!requireSession.first || !requireSession.second) && !requireSessionWith.first &&
384                 (!authType.first || m_authTypes.find(boost::to_lower_copy(string(authType.second))) == m_authTypes.end()))
385             return make_pair(true, request.returnDecline());
386
387         // Do we have an access control plugin?
388         if (settings.second) {
389             try {
390                 session = request.getSession(false);
391             }
392             catch (exception& e) {
393                 log.warn("unable to obtain session to pass to access control provider: %s", e.what());
394             }
395
396             Locker acllock(settings.second);
397             switch (settings.second->authorized(request, session)) {
398                 case AccessControl::shib_acl_true:
399                     log.debug("access control provider granted access");
400                     return make_pair(true, request.returnOK());
401
402                 case AccessControl::shib_acl_false:
403                 {
404                     log.warn("access control provider denied access");
405                     TemplateParameters tp(nullptr, nullptr, session);
406                     tp.m_map["requestURL"] = targetURL;
407                     return make_pair(true, sendError(log, request, app, "access", tp, false));
408                 }
409
410                 default:
411                     // Use the "DECLINE" interface to signal we don't know what to do.
412                     return make_pair(true, request.returnDecline());
413             }
414         }
415         else {
416             return make_pair(true, request.returnDecline());
417         }
418     }
419     catch (exception& e) {
420         request.log(SPRequest::SPError, e.what());
421         TemplateParameters tp(&e, nullptr, session);
422         tp.m_map["requestURL"] = targetURL.substr(0,targetURL.find('?'));
423         return make_pair(true, sendError(log, request, app, "access", tp));
424     }
425 }
426
427 pair<bool,long> ServiceProvider::doExport(SPRequest& request, bool requireSession) const
428 {
429 #ifdef _DEBUG
430     xmltooling::NDC ndc("doExport");
431 #endif
432     Category& log = Category::getInstance(SHIBSP_LOGCAT".ServiceProvider");
433
434     const Application* app = nullptr;
435     const Session* session = nullptr;
436     string targetURL = request.getRequestURL();
437
438     try {
439         RequestMapper::Settings settings = request.getRequestSettings();
440         app = &(request.getApplication());
441
442         try {
443             session = request.getSession(false);
444         }
445         catch (exception& e) {
446             log.warn("unable to obtain session to export to request: %s", e.what());
447                 // If we have to have a session, then this is a fatal error.
448                 if (requireSession)
449                         throw;
450         }
451
452                 // Still no data?
453         if (!session) {
454                 if (requireSession)
455                 throw opensaml::RetryableProfileException("Unable to obtain session to export to request.");
456                 else
457                         return make_pair(false, 0L);    // just bail silently
458         }
459
460                 pair<bool,const char*> enc = settings.first->getString("encoding");
461                 if (enc.first && strcmp(enc.second, "URL"))
462                         throw ConfigurationException("Unsupported value for 'encoding' content setting ($1).", params(1,enc.second));
463
464         const URLEncoder* encoder = XMLToolingConfig::getConfig().getURLEncoder();
465
466         app->setHeader(request, "Shib-Application-ID", app->getId());
467         app->setHeader(request, "Shib-Session-ID", session->getID());
468
469         // Check for export of "standard" variables.
470         // A 3.0 release would switch this default to false and rely solely on the
471         // Assertion extractor plugin and ship out of the box with the same defaults.
472         pair<bool,bool> stdvars = settings.first->getBool("exportStdVars");
473         if (!stdvars.first || stdvars.second) {
474             const char* hval = session->getEntityID();
475             if (hval)
476                 app->setHeader(request, "Shib-Identity-Provider", hval);
477             hval = session->getAuthnInstant();
478             if (hval)
479                 app->setHeader(request, "Shib-Authentication-Instant", hval);
480             hval = session->getAuthnContextClassRef();
481             if (hval) {
482                 app->setHeader(request, "Shib-Authentication-Method", hval);
483                 app->setHeader(request, "Shib-AuthnContext-Class", hval);
484             }
485             hval = session->getAuthnContextDeclRef();
486             if (hval)
487                 app->setHeader(request, "Shib-AuthnContext-Decl", hval);
488             hval = session->getSessionIndex();
489             if (hval)
490                 app->setHeader(request, "Shib-Session-Index", hval);
491         }
492
493         // Check for export of algorithmically-derived portion of cookie names.
494         stdvars = settings.first->getBool("exportCookie");
495         if (stdvars.first && stdvars.second) {
496             pair<string,const char*> cookieprops = app->getCookieNameProps(nullptr);
497             app->setHeader(request, "Shib-Cookie-Name", cookieprops.first.c_str());
498         }
499
500         // Maybe export the assertion keys.
501         pair<bool,bool> exp = settings.first->getBool("exportAssertion");
502         if (exp.first && exp.second) {
503             const PropertySet* sessions = app->getPropertySet("Sessions");
504             pair<bool,const char*> exportLocation = sessions ? sessions->getString("exportLocation") : pair<bool,const char*>(false,nullptr);
505             if (!exportLocation.first)
506                 log.warn("can't export assertions without an exportLocation Sessions property");
507             else {
508                 string exportName = "Shib-Assertion-00";
509                 string baseURL;
510                 if (!strncmp(exportLocation.second, "http", 4))
511                     baseURL = exportLocation.second;
512                 else
513                     baseURL = string(request.getHandlerURL(targetURL.c_str())) + exportLocation.second;
514                 baseURL = baseURL + "?key=" + session->getID() + "&ID=";
515                 const vector<const char*>& tokens = session->getAssertionIDs();
516                 vector<const char*>::size_type count = 0;
517                 for (vector<const char*>::const_iterator tokenids = tokens.begin(); tokenids!=tokens.end(); ++tokenids) {
518                     count++;
519                     *(exportName.rbegin()) = '0' + (count%10);
520                     *(++exportName.rbegin()) = '0' + (count/10);
521                     string fullURL = baseURL + encoder->encode(*tokenids);
522                     app->setHeader(request, exportName.c_str(), fullURL.c_str());
523                 }
524                 app->setHeader(request, "Shib-Assertion-Count", exportName.c_str() + 15);
525             }
526         }
527
528         // Export the attributes.
529         const multimap<string,const Attribute*>& attributes = session->getIndexedAttributes();
530         for (multimap<string,const Attribute*>::const_iterator a = attributes.begin(); a != attributes.end(); ++a) {
531             if (a->second->isInternal())
532                 continue;
533             string header(app->getSecureHeader(request, a->first.c_str()));
534             const vector<string>& vals = a->second->getSerializedValues();
535             for (vector<string>::const_iterator v = vals.begin(); v != vals.end(); ++v) {
536                 if (!header.empty())
537                     header += ";";
538                                 if (enc.first) {
539                                         // If URL-encoding, any semicolons will get escaped anyway.
540                                         header += encoder->encode(v->c_str());
541                                 }
542                                 else {
543                                         string::size_type pos = v->find_first_of(';', string::size_type(0));
544                                         if (pos != string::npos) {
545                                                 string value(*v);
546                                                 for (; pos != string::npos; pos = value.find_first_of(';', pos)) {
547                                                         value.insert(pos, "\\");
548                                                         pos += 2;
549                                                 }
550                                                 header += value;
551                                         }
552                                         else {
553                                                 header += (*v);
554                                         }
555                                 }
556             }
557             app->setHeader(request, a->first.c_str(), header.c_str());
558         }
559
560         // Check for REMOTE_USER.
561         bool remoteUserSet = false;
562         const vector<string>& rmids = app->getRemoteUserAttributeIds();
563         for (vector<string>::const_iterator rmid = rmids.begin(); !remoteUserSet && rmid != rmids.end(); ++rmid) {
564             pair<multimap<string,const Attribute*>::const_iterator,multimap<string,const Attribute*>::const_iterator> matches =
565                 attributes.equal_range(*rmid);
566             for (; matches.first != matches.second; ++matches.first) {
567                 const vector<string>& vals = matches.first->second->getSerializedValues();
568                 if (!vals.empty()) {
569                                         if (enc.first)
570                                                 request.setRemoteUser(encoder->encode(vals.front().c_str()).c_str());
571                                         else
572                                                 request.setRemoteUser(vals.front().c_str());
573                     remoteUserSet = true;
574                     break;
575                 }
576             }
577         }
578
579         return make_pair(false,0L);
580     }
581     catch (exception& e) {
582         request.log(SPRequest::SPError, e.what());
583         TemplateParameters tp(&e, nullptr, session);
584         tp.m_map["requestURL"] = targetURL.substr(0,targetURL.find('?'));
585         return make_pair(true, sendError(log, request, app, "session", tp));
586     }
587 }
588
589 pair<bool,long> ServiceProvider::doHandler(SPRequest& request) const
590 {
591 #ifdef _DEBUG
592     xmltooling::NDC ndc("doHandler");
593 #endif
594     Category& log = Category::getInstance(SHIBSP_LOGCAT".ServiceProvider");
595
596     const Application* app = nullptr;
597     string targetURL = request.getRequestURL();
598
599     try {
600         RequestMapper::Settings settings = request.getRequestSettings();
601         app = &(request.getApplication());
602
603         // If not SSL, check to see if we should block or redirect it.
604         if (!request.isSecure()) {
605             pair<bool,const char*> redirectToSSL = settings.first->getString("redirectToSSL");
606             if (redirectToSSL.first) {
607 #ifdef HAVE_STRCASECMP
608                 if (!strcasecmp("GET",request.getMethod()) || !strcasecmp("HEAD",request.getMethod())) {
609 #else
610                 if (!stricmp("GET",request.getMethod()) || !stricmp("HEAD",request.getMethod())) {
611 #endif
612                     // Compute the new target URL
613                     string redirectURL = string("https://") + request.getHostname();
614                     if (strcmp(redirectToSSL.second,"443")) {
615                         redirectURL = redirectURL + ':' + redirectToSSL.second;
616                     }
617                     redirectURL += request.getRequestURI();
618                     return make_pair(true, request.sendRedirect(redirectURL.c_str()));
619                 }
620                 else {
621                     TemplateParameters tp;
622                     tp.m_map["requestURL"] = targetURL.substr(0,targetURL.find('?'));
623                     return make_pair(true,sendError(log, request, app, "ssl", tp, false));
624                 }
625             }
626         }
627
628         const char* handlerURL = request.getHandlerURL(targetURL.c_str());
629         if (!handlerURL)
630             throw ConfigurationException("Cannot determine handler from resource URL, check configuration.");
631
632         // Make sure we only process handler requests.
633         if (!boost::contains(targetURL, handlerURL))
634             return make_pair(true, request.returnDecline());
635
636         const PropertySet* sessionProps = app->getPropertySet("Sessions");
637         if (!sessionProps)
638             throw ConfigurationException("Unable to map request to application session settings, check configuration.");
639
640         // Process incoming request.
641         pair<bool,bool> handlerSSL = sessionProps->getBool("handlerSSL");
642
643         // Make sure this is SSL, if it should be
644         if ((!handlerSSL.first || handlerSSL.second) && !request.isSecure())
645             throw opensaml::FatalProfileException("Blocked non-SSL access to Shibboleth handler.");
646
647         // We dispatch based on our path info. We know the request URL begins with or equals the handler URL,
648         // so the path info is the next character (or null).
649         const Handler* handler = app->getHandler(targetURL.c_str() + strlen(handlerURL));
650         if (!handler)
651             throw ConfigurationException("Shibboleth handler invoked at an unconfigured location.");
652
653         pair<bool,long> hret = handler->run(request);
654
655         // Did the handler run successfully?
656         if (hret.first)
657             return hret;
658
659         throw ConfigurationException("Configured Shibboleth handler failed to process the request.");
660     }
661     catch (exception& e) {
662         request.log(SPRequest::SPError, e.what());
663         const Session* session = nullptr;
664         try {
665             session = request.getSession(false, true);
666         }
667         catch (exception&) {
668         }
669         TemplateParameters tp(&e, nullptr, session);
670         tp.m_map["requestURL"] = targetURL.substr(0, targetURL.find('?'));
671         tp.m_request = &request;
672         return make_pair(true, sendError(log, request, app, "session", tp));
673     }
674 }