Boost changes to rest of project
[shibboleth/cpp-sp.git] / adfs / adfs.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  * adfs.cpp
23  *
24  * ADFSv1 extension library.
25  */
26
27 #if defined (_MSC_VER) || defined(__BORLANDC__)
28 # include "config_win32.h"
29 #else
30 # include "config.h"
31 #endif
32
33 #ifdef WIN32
34 # define _CRT_NONSTDC_NO_DEPRECATE 1
35 # define _CRT_SECURE_NO_DEPRECATE 1
36 # define ADFS_EXPORTS __declspec(dllexport)
37 #else
38 # define ADFS_EXPORTS
39 #endif
40
41 #include <shibsp/base.h>
42 #include <shibsp/exceptions.h>
43 #include <shibsp/Application.h>
44 #include <shibsp/ServiceProvider.h>
45 #include <shibsp/SessionCache.h>
46 #include <shibsp/SPConfig.h>
47 #include <shibsp/SPRequest.h>
48 #include <shibsp/TransactionLog.h>
49 #include <shibsp/handler/AssertionConsumerService.h>
50 #include <shibsp/handler/LogoutInitiator.h>
51 #include <shibsp/handler/SessionInitiator.h>
52 #include <boost/scoped_ptr.hpp>
53 #include <xmltooling/logging.h>
54 #include <xmltooling/util/DateTime.h>
55 #include <xmltooling/util/NDC.h>
56 #include <xmltooling/util/URLEncoder.h>
57 #include <xmltooling/util/XMLHelper.h>
58 #include <memory>
59
60 #ifndef SHIBSP_LITE
61 # include <shibsp/attribute/resolver/ResolutionContext.h>
62 # include <shibsp/metadata/MetadataProviderCriteria.h>
63 # include <saml/SAMLConfig.h>
64 # include <saml/exceptions.h>
65 # include <saml/binding/SecurityPolicy.h>
66 # include <saml/saml1/core/Assertions.h>
67 # include <saml/saml2/core/Assertions.h>
68 # include <saml/saml2/metadata/Metadata.h>
69 # include <saml/saml2/metadata/EndpointManager.h>
70 # include <xmltooling/XMLToolingConfig.h>
71 # include <xmltooling/impl/AnyElement.h>
72 # include <xmltooling/util/ParserPool.h>
73 # include <xmltooling/validation/ValidatorSuite.h>
74 using namespace opensaml::saml2md;
75 # ifndef min
76 #  define min(a,b)            (((a) < (b)) ? (a) : (b))
77 # endif
78 #endif
79 using namespace shibsp;
80 using namespace opensaml;
81 using namespace xmltooling::logging;
82 using namespace xmltooling;
83 using namespace xercesc;
84 using namespace boost;
85 using namespace std;
86
87 #define WSFED_NS "http://schemas.xmlsoap.org/ws/2003/07/secext"
88 #define WSTRUST_NS "http://schemas.xmlsoap.org/ws/2005/02/trust"
89
90 namespace {
91
92 #ifndef SHIBSP_LITE
93     class SHIBSP_DLLLOCAL ADFSDecoder : public MessageDecoder
94     {
95         auto_ptr_XMLCh m_ns;
96     public:
97         ADFSDecoder() : m_ns(WSTRUST_NS) {}
98         virtual ~ADFSDecoder() {}
99
100         const XMLCh* getProtocolFamily() const {
101             return m_ns.get();
102         }
103
104         XMLObject* decode(string& relayState, const GenericRequest& genericRequest, SecurityPolicy& policy) const;
105
106     protected:
107         void extractMessageDetails(
108             const XMLObject& message, const GenericRequest& req, const XMLCh* protocol, SecurityPolicy& policy
109             ) const {
110         }
111     };
112
113     MessageDecoder* ADFSDecoderFactory(const pair<const DOMElement*,const XMLCh*>& p)
114     {
115         return new ADFSDecoder();
116     }
117 #endif
118
119 #if defined (_MSC_VER)
120     #pragma warning( push )
121     #pragma warning( disable : 4250 )
122 #endif
123
124     class SHIBSP_DLLLOCAL ADFSSessionInitiator : public SessionInitiator, public AbstractHandler, public RemotedHandler
125     {
126     public:
127         ADFSSessionInitiator(const DOMElement* e, const char* appId)
128             : AbstractHandler(e, Category::getInstance(SHIBSP_LOGCAT".SessionInitiator.ADFS"), nullptr, &m_remapper), m_appId(appId), m_binding(WSFED_NS) {
129             // If Location isn't set, defer address registration until the setParent call.
130             pair<bool,const char*> loc = getString("Location");
131             if (loc.first) {
132                 string address = m_appId + loc.second + "::run::ADFSSI";
133                 setAddress(address.c_str());
134             }
135         }
136         virtual ~ADFSSessionInitiator() {}
137
138         void setParent(const PropertySet* parent) {
139             DOMPropertySet::setParent(parent);
140             pair<bool,const char*> loc = getString("Location");
141             if (loc.first) {
142                 string address = m_appId + loc.second + "::run::ADFSSI";
143                 setAddress(address.c_str());
144             }
145             else {
146                 m_log.warn("no Location property in ADFS SessionInitiator (or parent), can't register as remoted handler");
147             }
148         }
149
150         void receive(DDF& in, ostream& out);
151         pair<bool,long> unwrap(SPRequest& request, DDF& out) const;
152         pair<bool,long> run(SPRequest& request, string& entityID, bool isHandler=true) const;
153
154         const XMLCh* getProtocolFamily() const {
155             return m_binding.get();
156         }
157
158     private:
159         pair<bool,long> doRequest(
160             const Application& application,
161             const HTTPRequest* httpRequest,
162             HTTPResponse& httpResponse,
163             const char* entityID,
164             const char* acsLocation,
165             const char* authnContextClassRef,
166             string& relayState
167             ) const;
168         string m_appId;
169         auto_ptr_XMLCh m_binding;
170     };
171
172     class SHIBSP_DLLLOCAL ADFSConsumer : public shibsp::AssertionConsumerService
173     {
174         auto_ptr_XMLCh m_protocol;
175     public:
176         ADFSConsumer(const DOMElement* e, const char* appId)
177             : shibsp::AssertionConsumerService(e, appId, Category::getInstance(SHIBSP_LOGCAT".SSO.ADFS")), m_protocol(WSFED_NS) {}
178         virtual ~ADFSConsumer() {}
179
180 #ifndef SHIBSP_LITE
181         void generateMetadata(SPSSODescriptor& role, const char* handlerURL) const {
182             AssertionConsumerService::generateMetadata(role, handlerURL);
183             role.addSupport(m_protocol.get());
184         }
185
186     private:
187         void implementProtocol(
188             const Application& application,
189             const HTTPRequest& httpRequest,
190             HTTPResponse& httpResponse,
191             SecurityPolicy& policy,
192             const PropertySet*,
193             const XMLObject& xmlObject
194             ) const;
195 #else
196         const XMLCh* getProtocolFamily() const {
197             return m_protocol.get();
198         }
199 #endif
200     };
201
202     class SHIBSP_DLLLOCAL ADFSLogoutInitiator : public AbstractHandler, public LogoutInitiator
203     {
204     public:
205         ADFSLogoutInitiator(const DOMElement* e, const char* appId)
206                 : AbstractHandler(e, Category::getInstance(SHIBSP_LOGCAT".LogoutInitiator.ADFS")), m_appId(appId), m_binding(WSFED_NS) {
207             // If Location isn't set, defer address registration until the setParent call.
208             pair<bool,const char*> loc = getString("Location");
209             if (loc.first) {
210                 string address = m_appId + loc.second + "::run::ADFSLI";
211                 setAddress(address.c_str());
212             }
213         }
214         virtual ~ADFSLogoutInitiator() {}
215
216         void setParent(const PropertySet* parent) {
217             DOMPropertySet::setParent(parent);
218             pair<bool,const char*> loc = getString("Location");
219             if (loc.first) {
220                 string address = m_appId + loc.second + "::run::ADFSLI";
221                 setAddress(address.c_str());
222             }
223             else {
224                 m_log.warn("no Location property in ADFS LogoutInitiator (or parent), can't register as remoted handler");
225             }
226         }
227
228         void receive(DDF& in, ostream& out);
229         pair<bool,long> run(SPRequest& request, bool isHandler=true) const;
230
231         const XMLCh* getProtocolFamily() const {
232             return m_binding.get();
233         }
234
235     private:
236         pair<bool,long> doRequest(const Application& application, const HTTPRequest& httpRequest, HTTPResponse& httpResponse, Session* session) const;
237
238         string m_appId;
239         auto_ptr_XMLCh m_binding;
240     };
241
242     class SHIBSP_DLLLOCAL ADFSLogout : public AbstractHandler, public LogoutHandler
243     {
244     public:
245         ADFSLogout(const DOMElement* e, const char* appId)
246                 : AbstractHandler(e, Category::getInstance(SHIBSP_LOGCAT".Logout.ADFS")), m_login(e, appId) {
247             m_initiator = false;
248 #ifndef SHIBSP_LITE
249             m_preserve.push_back("wreply");
250             string address = string(appId) + getString("Location").second + "::run::ADFSLO";
251             setAddress(address.c_str());
252 #endif
253         }
254         virtual ~ADFSLogout() {}
255
256         pair<bool,long> run(SPRequest& request, bool isHandler=true) const;
257
258 #ifndef SHIBSP_LITE
259         void generateMetadata(SPSSODescriptor& role, const char* handlerURL) const {
260             m_login.generateMetadata(role, handlerURL);
261             const char* loc = getString("Location").second;
262             string hurl(handlerURL);
263             if (*loc != '/')
264                 hurl += '/';
265             hurl += loc;
266             auto_ptr_XMLCh widen(hurl.c_str());
267             SingleLogoutService* ep = SingleLogoutServiceBuilder::buildSingleLogoutService();
268             ep->setLocation(widen.get());
269             ep->setBinding(m_login.getProtocolFamily());
270             role.getSingleLogoutServices().push_back(ep);
271         }
272
273         const char* getType() const {
274             return m_login.getType();
275         }
276 #endif
277         const XMLCh* getProtocolFamily() const {
278             return m_login.getProtocolFamily();
279         }
280
281     private:
282         ADFSConsumer m_login;
283     };
284
285 #if defined (_MSC_VER)
286     #pragma warning( pop )
287 #endif
288
289     SessionInitiator* ADFSSessionInitiatorFactory(const pair<const DOMElement*,const char*>& p)
290     {
291         return new ADFSSessionInitiator(p.first, p.second);
292     }
293
294     Handler* ADFSLogoutFactory(const pair<const DOMElement*,const char*>& p)
295     {
296         return new ADFSLogout(p.first, p.second);
297     }
298
299     Handler* ADFSLogoutInitiatorFactory(const pair<const DOMElement*,const char*>& p)
300     {
301         return new ADFSLogoutInitiator(p.first, p.second);
302     }
303
304     const XMLCh RequestedSecurityToken[] =      UNICODE_LITERAL_22(R,e,q,u,e,s,t,e,d,S,e,c,u,r,i,t,y,T,o,k,e,n);
305     const XMLCh RequestSecurityTokenResponse[] =UNICODE_LITERAL_28(R,e,q,u,e,s,t,S,e,c,u,r,i,t,y,T,o,k,e,n,R,e,s,p,o,n,s,e);
306 };
307
308 extern "C" int ADFS_EXPORTS xmltooling_extension_init(void*)
309 {
310     SPConfig& conf=SPConfig::getConfig();
311     conf.SessionInitiatorManager.registerFactory("ADFS", ADFSSessionInitiatorFactory);
312     conf.LogoutInitiatorManager.registerFactory("ADFS", ADFSLogoutInitiatorFactory);
313     conf.AssertionConsumerServiceManager.registerFactory("ADFS", ADFSLogoutFactory);
314     conf.AssertionConsumerServiceManager.registerFactory(WSFED_NS, ADFSLogoutFactory);
315 #ifndef SHIBSP_LITE
316     SAMLConfig::getConfig().MessageDecoderManager.registerFactory(WSFED_NS, ADFSDecoderFactory);
317     XMLObjectBuilder::registerBuilder(xmltooling::QName(WSTRUST_NS,"RequestedSecurityToken"), new AnyElementBuilder());
318     XMLObjectBuilder::registerBuilder(xmltooling::QName(WSTRUST_NS,"RequestSecurityTokenResponse"), new AnyElementBuilder());
319 #endif
320     return 0;
321 }
322
323 extern "C" void ADFS_EXPORTS xmltooling_extension_term()
324 {
325     /* should get unregistered during normal shutdown...
326     SPConfig& conf=SPConfig::getConfig();
327     conf.SessionInitiatorManager.deregisterFactory("ADFS");
328     conf.LogoutInitiatorManager.deregisterFactory("ADFS");
329     conf.AssertionConsumerServiceManager.deregisterFactory("ADFS");
330     conf.AssertionConsumerServiceManager.deregisterFactory(WSFED_NS);
331 #ifndef SHIBSP_LITE
332     SAMLConfig::getConfig().MessageDecoderManager.deregisterFactory(WSFED_NS);
333 #endif
334     */
335 }
336
337 pair<bool,long> ADFSSessionInitiator::run(SPRequest& request, string& entityID, bool isHandler) const
338 {
339     // We have to know the IdP to function.
340     if (entityID.empty() || !checkCompatibility(request, isHandler))
341         return make_pair(false, 0L);
342
343     string target;
344     pair<bool,const char*> prop;
345     pair<bool,const char*> acClass;
346     const Handler* ACS = nullptr;
347     const Application& app = request.getApplication();
348
349     if (isHandler) {
350         prop.second = request.getParameter("acsIndex");
351         if (prop.second && *prop.second) {
352             ACS = app.getAssertionConsumerServiceByIndex(atoi(prop.second));
353             if (!ACS)
354                 request.log(SPRequest::SPWarn, "invalid acsIndex specified in request, using acsIndex property");
355         }
356
357         prop = getString("target", request);
358         if (prop.first)
359             target = prop.second;
360
361         // Since we're passing the ACS by value, we need to compute the return URL,
362         // so we'll need the target resource for real.
363         recoverRelayState(app, request, request, target, false);
364
365         acClass = getString("authnContextClassRef", request);
366     }
367     else {
368         // Check for a hardwired target value in the map or handler.
369         prop = getString("target", request, HANDLER_PROPERTY_MAP|HANDLER_PROPERTY_FIXED);
370         if (prop.first)
371             target = prop.second;
372         else
373             target = request.getRequestURL();
374
375         acClass = getString("authnContextClassRef", request, HANDLER_PROPERTY_MAP|HANDLER_PROPERTY_FIXED);
376     }
377
378     if (!ACS) {
379         pair<bool,unsigned int> index = getUnsignedInt("acsIndex", request, HANDLER_PROPERTY_MAP|HANDLER_PROPERTY_FIXED);
380         if (index.first)
381             ACS = app.getAssertionConsumerServiceByIndex(index.second);
382     }
383
384     // Validate the ACS for use with this protocol.
385     if (!ACS || !XMLString::equals(getProtocolFamily(), ACS->getProtocolFamily())) {
386         if (ACS)
387             request.log(SPRequest::SPWarn, "invalid acsIndex property, or non-ADFS ACS, using default ADFS ACS");
388         ACS = app.getAssertionConsumerServiceByProtocol(getProtocolFamily());
389         if (!ACS)
390             throw ConfigurationException("Unable to locate an ADFS-compatible ACS in the configuration.");
391     }
392
393     // Since we're not passing by index, we need to fully compute the return URL.
394     // Compute the ACS URL. We add the ACS location to the base handlerURL.
395     string ACSloc = request.getHandlerURL(target.c_str());
396     prop = ACS->getString("Location");
397     if (prop.first)
398         ACSloc += prop.second;
399
400     if (isHandler) {
401         // We may already have RelayState set if we looped back here,
402         // but we've turned it back into a resource by this point, so if there's
403         // a target on the URL, reset to that value.
404         prop.second = request.getParameter("target");
405         if (prop.second && *prop.second)
406             target = prop.second;
407     }
408
409     m_log.debug("attempting to initiate session using ADFS with provider (%s)", entityID.c_str());
410
411     if (SPConfig::getConfig().isEnabled(SPConfig::OutOfProcess)) {
412         // Out of process means the POST data via the request can be exposed directly to the private method.
413         // The method will handle POST preservation if necessary *before* issuing the response, but only if
414         // it dispatches to an IdP.
415         return doRequest(app, &request, request, entityID.c_str(), ACSloc.c_str(), (acClass.first ? acClass.second : nullptr), target);
416     }
417
418     // Remote the call.
419     DDF out,in = DDF(m_address.c_str()).structure();
420     DDFJanitor jin(in), jout(out);
421     in.addmember("application_id").string(app.getId());
422     in.addmember("entity_id").string(entityID.c_str());
423     in.addmember("acsLocation").string(ACSloc.c_str());
424     if (!target.empty())
425         in.addmember("RelayState").unsafe_string(target.c_str());
426     if (acClass.first)
427         in.addmember("authnContextClassRef").string(acClass.second);
428
429     // Remote the processing.
430     out = request.getServiceProvider().getListenerService()->send(in);
431     return unwrap(request, out);
432 }
433
434 pair<bool,long> ADFSSessionInitiator::unwrap(SPRequest& request, DDF& out) const
435 {
436     // See if there's any response to send back.
437     if (!out["redirect"].isnull() || !out["response"].isnull()) {
438         // If so, we're responsible for handling the POST data, probably by dropping a cookie.
439         preservePostData(request.getApplication(), request, request, out["RelayState"].string());
440     }
441     return RemotedHandler::unwrap(request, out);
442 }
443
444 void ADFSSessionInitiator::receive(DDF& in, ostream& out)
445 {
446     // Find application.
447     const char* aid = in["application_id"].string();
448     const Application* app = aid ? SPConfig::getConfig().getServiceProvider()->getApplication(aid) : nullptr;
449     if (!app) {
450         // Something's horribly wrong.
451         m_log.error("couldn't find application (%s) to generate ADFS request", aid ? aid : "(missing)");
452         throw ConfigurationException("Unable to locate application for new session, deleted?");
453     }
454
455     const char* entityID = in["entity_id"].string();
456     const char* acsLocation = in["acsLocation"].string();
457     if (!entityID || !acsLocation)
458         throw ConfigurationException("No entityID or acsLocation parameter supplied to remoted SessionInitiator.");
459
460     DDF ret(nullptr);
461     DDFJanitor jout(ret);
462
463     // Wrap the outgoing object with a Response facade.
464     scoped_ptr<HTTPResponse> http(getResponse(ret));
465
466     string relayState(in["RelayState"].string() ? in["RelayState"].string() : "");
467
468     // Since we're remoted, the result should either be a throw, which we pass on,
469     // a false/0 return, which we just return as an empty structure, or a response/redirect,
470     // which we capture in the facade and send back.
471     doRequest(*app, nullptr, *http, entityID, acsLocation, in["authnContextClassRef"].string(), relayState);
472     if (!ret.isstruct())
473         ret.structure();
474     ret.addmember("RelayState").unsafe_string(relayState.c_str());
475     out << ret;
476 }
477
478 pair<bool,long> ADFSSessionInitiator::doRequest(
479     const Application& app,
480     const HTTPRequest* httpRequest,
481     HTTPResponse& httpResponse,
482     const char* entityID,
483     const char* acsLocation,
484     const char* authnContextClassRef,
485     string& relayState
486     ) const
487 {
488 #ifndef SHIBSP_LITE
489     // Use metadata to invoke the SSO service directly.
490     MetadataProvider* m = app.getMetadataProvider();
491     Locker locker(m);
492     MetadataProviderCriteria mc(app, entityID, &IDPSSODescriptor::ELEMENT_QNAME, m_binding.get());
493     pair<const EntityDescriptor*,const RoleDescriptor*> entity = m->getEntityDescriptor(mc);
494     if (!entity.first) {
495         m_log.warn("unable to locate metadata for provider (%s)", entityID);
496         throw MetadataException("Unable to locate metadata for identity provider ($entityID)", namedparams(1, "entityID", entityID));
497     }
498     else if (!entity.second) {
499         m_log.log(getParent() ? Priority::INFO : Priority::WARN, "unable to locate ADFS-aware identity provider role for provider (%s)", entityID);
500         if (getParent())
501             return make_pair(false, 0L);
502         throw MetadataException("Unable to locate ADFS-aware identity provider role for provider ($entityID)", namedparams(1, "entityID", entityID));
503     }
504     const EndpointType* ep = EndpointManager<SingleSignOnService>(
505         dynamic_cast<const IDPSSODescriptor*>(entity.second)->getSingleSignOnServices()
506         ).getByBinding(m_binding.get());
507     if (!ep) {
508         m_log.warn("unable to locate compatible SSO service for provider (%s)", entityID);
509         if (getParent())
510             return make_pair(false, 0L);
511         throw MetadataException("Unable to locate compatible SSO service for provider ($entityID)", namedparams(1, "entityID", entityID));
512     }
513
514     preserveRelayState(app, httpResponse, relayState);
515
516     scoped_ptr<AuthnRequestEvent> ar_event(newAuthnRequestEvent(app, httpRequest));
517     if (ar_event.get()) {
518         ar_event->m_binding = WSFED_NS;
519         ar_event->m_protocol = WSFED_NS;
520         ar_event->m_peer = entity.first;
521         app.getServiceProvider().getTransactionLog()->write(*ar_event);
522     }
523
524     // UTC timestamp
525     time_t epoch=time(nullptr);
526 #ifndef HAVE_GMTIME_R
527     struct tm* ptime=gmtime(&epoch);
528 #else
529     struct tm res;
530     struct tm* ptime=gmtime_r(&epoch,&res);
531 #endif
532     char timebuf[32];
533     strftime(timebuf,32,"%Y-%m-%dT%H:%M:%SZ",ptime);
534
535     auto_ptr_char dest(ep->getLocation());
536     const URLEncoder* urlenc = XMLToolingConfig::getConfig().getURLEncoder();
537
538     string req=string(dest.get()) + (strchr(dest.get(),'?') ? '&' : '?') + "wa=wsignin1.0&wreply=" + urlenc->encode(acsLocation) +
539         "&wct=" + urlenc->encode(timebuf) + "&wtrealm=" + urlenc->encode(app.getString("entityID").second);
540     if (authnContextClassRef)
541         req += "&wauth=" + urlenc->encode(authnContextClassRef);
542     if (!relayState.empty())
543         req += "&wctx=" + urlenc->encode(relayState.c_str());
544
545     if (httpRequest) {
546         // If the request object is available, we're responsible for the POST data.
547         preservePostData(app, *httpRequest, httpResponse, relayState.c_str());
548     }
549
550     return make_pair(true, httpResponse.sendRedirect(req.c_str()));
551 #else
552     return make_pair(false, 0L);
553 #endif
554 }
555
556 #ifndef SHIBSP_LITE
557
558 XMLObject* ADFSDecoder::decode(string& relayState, const GenericRequest& genericRequest, SecurityPolicy& policy) const
559 {
560 #ifdef _DEBUG
561     xmltooling::NDC ndc("decode");
562 #endif
563     Category& log = Category::getInstance(SHIBSP_LOGCAT".MessageDecoder.ADFS");
564
565     log.debug("validating input");
566     const HTTPRequest* httpRequest=dynamic_cast<const HTTPRequest*>(&genericRequest);
567     if (!httpRequest)
568         throw BindingException("Unable to cast request object to HTTPRequest type.");
569     if (strcmp(httpRequest->getMethod(),"POST"))
570         throw BindingException("Invalid HTTP method ($1).", params(1, httpRequest->getMethod()));
571     const char* param = httpRequest->getParameter("wa");
572     if (!param || strcmp(param, "wsignin1.0"))
573         throw BindingException("Missing or invalid wa parameter (should be wsignin1.0).");
574     param = httpRequest->getParameter("wctx");
575     if (param)
576         relayState = param;
577
578     param = httpRequest->getParameter("wresult");
579     if (!param)
580         throw BindingException("Request missing wresult parameter.");
581
582     log.debug("decoded ADFS response:\n%s", param);
583
584     // Parse and bind the document into an XMLObject.
585     istringstream is(param);
586     DOMDocument* doc = (policy.getValidating() ? XMLToolingConfig::getConfig().getValidatingParser()
587         : XMLToolingConfig::getConfig().getParser()).parse(is);
588     XercesJanitor<DOMDocument> janitor(doc);
589     auto_ptr<XMLObject> xmlObject(XMLObjectBuilder::buildOneFromElement(doc->getDocumentElement(), true));
590     janitor.release();
591
592     if (!XMLString::equals(xmlObject->getElementQName().getLocalPart(), RequestSecurityTokenResponse)) {
593         log.error("unrecognized root element on message: %s", xmlObject->getElementQName().toString().c_str());
594         throw BindingException("Decoded message was not of the appropriate type.");
595     }
596
597     SchemaValidators.validate(xmlObject.get());
598
599     // Skip policy step here, there's no security in the wrapper.
600     // policy.evaluate(*xmlObject.get(), &genericRequest);
601
602     return xmlObject.release();
603 }
604
605 void ADFSConsumer::implementProtocol(
606     const Application& application,
607     const HTTPRequest& httpRequest,
608     HTTPResponse& httpResponse,
609     SecurityPolicy& policy,
610     const PropertySet*,
611     const XMLObject& xmlObject
612     ) const
613 {
614     // Implementation of ADFS profile.
615     m_log.debug("processing message against ADFS Passive Requester profile");
616
617     // With ADFS, all the security comes from the assertion, which is two levels down in the message.
618
619     const ElementProxy* response = dynamic_cast<const ElementProxy*>(&xmlObject);
620     if (!response || !response->hasChildren())
621         throw FatalProfileException("Incoming message was not of the proper type or contains no security token.");
622
623     const Assertion* token = nullptr;
624     for (vector<XMLObject*>::const_iterator xo = response->getUnknownXMLObjects().begin(); xo != response->getUnknownXMLObjects().end(); ++xo) {
625         // Look for the RequestedSecurityToken element.
626         if (XMLString::equals((*xo)->getElementQName().getLocalPart(), RequestedSecurityToken)) {
627             response = dynamic_cast<const ElementProxy*>(*xo);
628             if (!response || !response->hasChildren())
629                 throw FatalProfileException("Token wrapper element did not contain a security token.");
630             token = dynamic_cast<const Assertion*>(response->getUnknownXMLObjects().front());
631             if (!token || !token->getSignature())
632                 throw FatalProfileException("Incoming message did not contain a signed SAML assertion.");
633             break;
634         }
635     }
636
637     // Extract message and issuer details from assertion.
638     extractMessageDetails(*token, m_protocol.get(), policy);
639
640     // Populate recipient as audience.
641     const EntityDescriptor* entity = policy.getIssuerMetadata() ? dynamic_cast<const EntityDescriptor*>(policy.getIssuerMetadata()->getParent()) : nullptr;
642     policy.getAudiences().push_back(application.getRelyingParty(entity)->getXMLString("entityID").second);
643
644     // Run the policy over the assertion. Handles replay, freshness, and
645     // signature verification, assuming the relevant rules are configured,
646     // along with condition enforcement.
647     policy.evaluate(*token, &httpRequest);
648
649     // If no security is in place now, we kick it.
650     if (!policy.isAuthenticated())
651         throw SecurityPolicyException("Unable to establish security of incoming assertion.");
652
653     const saml1::NameIdentifier* saml1name=nullptr;
654     const saml1::AuthenticationStatement* saml1statement=nullptr;
655     const saml2::NameID* saml2name=nullptr;
656     const saml2::AuthnStatement* saml2statement=nullptr;
657     const XMLCh* authMethod=nullptr;
658     const XMLCh* authInstant=nullptr;
659     time_t now = time(nullptr), sessionExp = 0;
660     const PropertySet* sessionProps = application.getPropertySet("Sessions");
661
662     const saml1::Assertion* saml1token = dynamic_cast<const saml1::Assertion*>(token);
663     if (saml1token) {
664         // Now do profile validation to ensure we can use it for SSO.
665         if (!saml1token->getConditions() || !saml1token->getConditions()->getNotBefore() || !saml1token->getConditions()->getNotOnOrAfter())
666             throw FatalProfileException("Assertion did not contain time conditions.");
667         else if (saml1token->getAuthenticationStatements().empty())
668             throw FatalProfileException("Assertion did not contain an authentication statement.");
669
670         // authnskew allows rejection of SSO if AuthnInstant is too old.
671         pair<bool,unsigned int> authnskew = sessionProps ? sessionProps->getUnsignedInt("maxTimeSinceAuthn") : pair<bool,unsigned int>(false,0);
672
673         saml1statement = saml1token->getAuthenticationStatements().front();
674         if (saml1statement->getAuthenticationInstant()) {
675             if (saml1statement->getAuthenticationInstantEpoch() - XMLToolingConfig::getConfig().clock_skew_secs > now) {
676                 throw FatalProfileException("The login time at your identity provider was future-dated.");
677             }
678             else if (authnskew.first && authnskew.second && saml1statement->getAuthenticationInstantEpoch() <= now &&
679                     (now - saml1statement->getAuthenticationInstantEpoch() > authnskew.second)) {
680                 throw FatalProfileException("The gap between now and the time you logged into your identity provider exceeds the allowed limit.");
681             }
682         }
683         else if (authnskew.first && authnskew.second) {
684             throw FatalProfileException("Your identity provider did not supply a time of login, violating local policy.");
685         }
686
687         // Address checking.
688         saml1::SubjectLocality* locality = saml1statement->getSubjectLocality();
689         if (locality && locality->getIPAddress()) {
690             auto_ptr_char ip(locality->getIPAddress());
691             checkAddress(application, httpRequest, ip.get());
692         }
693
694         saml1name = saml1statement->getSubject()->getNameIdentifier();
695         authMethod = saml1statement->getAuthenticationMethod();
696         if (saml1statement->getAuthenticationInstant())
697             authInstant = saml1statement->getAuthenticationInstant()->getRawData();
698
699         // Session expiration.
700         pair<bool,unsigned int> lifetime = sessionProps ? sessionProps->getUnsignedInt("lifetime") : pair<bool,unsigned int>(true,28800);
701         if (!lifetime.first || lifetime.second == 0)
702             lifetime.second = 28800;
703         sessionExp = now + lifetime.second;
704     }
705     else {
706         const saml2::Assertion* saml2token = dynamic_cast<const saml2::Assertion*>(token);
707         if (!saml2token)
708             throw FatalProfileException("Incoming message did not contain a recognized type of SAML assertion.");
709
710         // Now do profile validation to ensure we can use it for SSO.
711         if (!saml2token->getConditions() || !saml2token->getConditions()->getNotBefore() || !saml2token->getConditions()->getNotOnOrAfter())
712             throw FatalProfileException("Assertion did not contain time conditions.");
713         else if (saml2token->getAuthnStatements().empty())
714             throw FatalProfileException("Assertion did not contain an authentication statement.");
715
716         // authnskew allows rejection of SSO if AuthnInstant is too old.
717         pair<bool,unsigned int> authnskew = sessionProps ? sessionProps->getUnsignedInt("maxTimeSinceAuthn") : pair<bool,unsigned int>(false,0);
718
719         saml2statement = saml2token->getAuthnStatements().front();
720         if (authnskew.first && authnskew.second &&
721                 saml2statement->getAuthnInstant() && (now - saml2statement->getAuthnInstantEpoch() > authnskew.second))
722             throw FatalProfileException("The gap between now and the time you logged into your identity provider exceeds the limit.");
723
724         // Address checking.
725         saml2::SubjectLocality* locality = saml2statement->getSubjectLocality();
726         if (locality && locality->getAddress()) {
727             auto_ptr_char ip(locality->getAddress());
728             checkAddress(application, httpRequest, ip.get());
729         }
730
731         saml2name = saml2token->getSubject() ? saml2token->getSubject()->getNameID() : nullptr;
732         if (saml2statement->getAuthnContext() && saml2statement->getAuthnContext()->getAuthnContextClassRef())
733             authMethod = saml2statement->getAuthnContext()->getAuthnContextClassRef()->getReference();
734         if (saml2statement->getAuthnInstant())
735             authInstant = saml2statement->getAuthnInstant()->getRawData();
736
737         // Session expiration for SAML 2.0 is jointly IdP- and SP-driven.
738         sessionExp = saml2statement->getSessionNotOnOrAfter() ? saml2statement->getSessionNotOnOrAfterEpoch() : 0;
739         pair<bool,unsigned int> lifetime = sessionProps ? sessionProps->getUnsignedInt("lifetime") : pair<bool,unsigned int>(true,28800);
740         if (!lifetime.first || lifetime.second == 0)
741             lifetime.second = 28800;
742         if (sessionExp == 0)
743             sessionExp = now + lifetime.second;     // IdP says nothing, calulate based on SP.
744         else
745             sessionExp = min(sessionExp, now + lifetime.second);    // Use the lowest.
746     }
747
748     m_log.debug("ADFS profile processing completed successfully");
749
750     // We've successfully "accepted" the SSO token.
751     // To complete processing, we need to extract and resolve attributes and then create the session.
752
753     // Normalize a SAML 1.x NameIdentifier...
754     scoped_ptr<saml2::NameID> nameid(saml1name ? saml2::NameIDBuilder::buildNameID() : nullptr);
755     if (saml1name) {
756         nameid->setName(saml1name->getName());
757         nameid->setFormat(saml1name->getFormat());
758         nameid->setNameQualifier(saml1name->getNameQualifier());
759     }
760
761     // The context will handle deleting attributes and new tokens.
762     vector<const Assertion*> tokens(1,token);
763     scoped_ptr<ResolutionContext> ctx(
764         resolveAttributes(
765             application,
766             policy.getIssuerMetadata(),
767             m_protocol.get(),
768             saml1name,
769             saml1statement,
770             (saml1name ? nameid.get() : saml2name),
771             saml2statement,
772             authMethod,
773             nullptr,
774             &tokens
775             )
776         );
777
778     if (ctx.get()) {
779         // Copy over any new tokens, but leave them in the context for cleanup.
780         tokens.insert(tokens.end(), ctx->getResolvedAssertions().begin(), ctx->getResolvedAssertions().end());
781     }
782
783     string session_id;
784     application.getServiceProvider().getSessionCache()->insert(
785         session_id,
786         application,
787         httpRequest,
788         httpResponse,
789         sessionExp,
790         entity,
791         m_protocol.get(),
792         (saml1name ? nameid.get() : saml2name),
793         authInstant,
794         nullptr,
795         authMethod,
796         nullptr,
797         &tokens,
798         ctx ? &ctx->getResolvedAttributes() : nullptr
799         );
800
801     scoped_ptr<LoginEvent> login_event(newLoginEvent(application, httpRequest));
802     if (login_event) {
803         login_event->m_sessionID = session_id.c_str();
804         login_event->m_peer = entity;
805         login_event->m_protocol = WSFED_NS;
806         login_event->m_binding = WSFED_NS;
807         login_event->m_saml1AuthnStatement = saml1statement;
808         login_event->m_nameID = (saml1name ? nameid.get() : saml2name);
809         login_event->m_saml2AuthnStatement = saml2statement;
810         if (ctx)
811             login_event->m_attributes = &ctx->getResolvedAttributes();
812         application.getServiceProvider().getTransactionLog()->write(*login_event);
813     }
814 }
815
816 #endif
817
818 pair<bool,long> ADFSLogoutInitiator::run(SPRequest& request, bool isHandler) const
819 {
820     // Normally we'd do notifications and session clearage here, but ADFS logout
821     // is missing the needed request/response features, so we have to rely on
822     // the IdP half to notify us back about the logout and do the work there.
823     // Basically we have no way to tell in the Logout receiving handler whether
824     // we initiated the logout or not.
825
826     Session* session = nullptr;
827     try {
828         session = request.getSession(false, true, false);  // don't cache it and ignore all checks
829         if (!session)
830             return make_pair(false, 0L);
831
832         // We only handle ADFS sessions.
833         if (!XMLString::equals(session->getProtocol(), WSFED_NS) || !session->getEntityID()) {
834             session->unlock();
835             return make_pair(false, 0L);
836         }
837     }
838     catch (std::exception& ex) {
839         m_log.error("error accessing current session: %s", ex.what());
840         return make_pair(false,0L);
841     }
842
843     if (SPConfig::getConfig().isEnabled(SPConfig::OutOfProcess)) {
844         // When out of process, we run natively.
845         return doRequest(request.getApplication(), request, request, session);
846     }
847     else {
848         // When not out of process, we remote the request.
849         session->unlock();
850         vector<string> headers(1,"Cookie");
851         headers.push_back("User-Agent");
852         DDF out,in = wrap(request, &headers);
853         DDFJanitor jin(in), jout(out);
854         out=request.getServiceProvider().getListenerService()->send(in);
855         return unwrap(request, out);
856     }
857 }
858
859 void ADFSLogoutInitiator::receive(DDF& in, ostream& out)
860 {
861 #ifndef SHIBSP_LITE
862     // Defer to base class for notifications
863     if (in["notify"].integer() == 1)
864         return LogoutHandler::receive(in, out);
865
866     // Find application.
867     const char* aid = in["application_id"].string();
868     const Application* app = aid ? SPConfig::getConfig().getServiceProvider()->getApplication(aid) : nullptr;
869     if (!app) {
870         // Something's horribly wrong.
871         m_log.error("couldn't find application (%s) for logout", aid ? aid : "(missing)");
872         throw ConfigurationException("Unable to locate application for logout, deleted?");
873     }
874
875     // Unpack the request.
876     scoped_ptr<HTTPRequest> req(getRequest(in));
877
878     // Set up a response shim.
879     DDF ret(nullptr);
880     DDFJanitor jout(ret);
881     scoped_ptr<HTTPResponse> resp(getResponse(ret));
882
883     Session* session = nullptr;
884     try {
885          session = app->getServiceProvider().getSessionCache()->find(*app, *req, nullptr, nullptr);
886     }
887     catch (std::exception& ex) {
888         m_log.error("error accessing current session: %s", ex.what());
889     }
890
891     // With no session, we just skip the request and let it fall through to an empty struct return.
892     if (session) {
893         if (session->getEntityID()) {
894             // Since we're remoted, the result should either be a throw, which we pass on,
895             // a false/0 return, which we just return as an empty structure, or a response/redirect,
896             // which we capture in the facade and send back.
897             doRequest(*app, *req, *resp, session);
898         }
899         else {
900             m_log.error("no issuing entityID found in session");
901             session->unlock();
902             app->getServiceProvider().getSessionCache()->remove(*app, *req, resp.get());
903         }
904     }
905     out << ret;
906 #else
907     throw ConfigurationException("Cannot perform logout using lite version of shibsp library.");
908 #endif
909 }
910
911 pair<bool,long> ADFSLogoutInitiator::doRequest(
912     const Application& application, const HTTPRequest& httpRequest, HTTPResponse& httpResponse, Session* session
913     ) const
914 {
915     Locker sessionLocker(session, false);
916
917     // Do back channel notification.
918     vector<string> sessions(1, session->getID());
919     if (!notifyBackChannel(application, httpRequest.getRequestURL(), sessions, false)) {
920 #ifndef SHIBSP_LITE
921         scoped_ptr<LogoutEvent> logout_event(newLogoutEvent(application, &httpRequest, session));
922         if (logout_event) {
923             logout_event->m_logoutType = LogoutEvent::LOGOUT_EVENT_PARTIAL;
924             application.getServiceProvider().getTransactionLog()->write(*logout_event);
925         }
926 #endif
927         sessionLocker.assign();
928         session = nullptr;
929         application.getServiceProvider().getSessionCache()->remove(application, httpRequest, &httpResponse);
930         return sendLogoutPage(application, httpRequest, httpResponse, "partial");
931     }
932
933 #ifndef SHIBSP_LITE
934     pair<bool,long> ret = make_pair(false, 0L);
935
936     try {
937         // With a session in hand, we can create a request message, if we can find a compatible endpoint.
938         MetadataProvider* m = application.getMetadataProvider();
939         Locker metadataLocker(m);
940         MetadataProviderCriteria mc(application, session->getEntityID(), &IDPSSODescriptor::ELEMENT_QNAME, m_binding.get());
941         pair<const EntityDescriptor*,const RoleDescriptor*> entity=m->getEntityDescriptor(mc);
942         if (!entity.first) {
943             throw MetadataException(
944                 "Unable to locate metadata for identity provider ($entityID)", namedparams(1, "entityID", session->getEntityID())
945                 );
946         }
947         else if (!entity.second) {
948             throw MetadataException(
949                 "Unable to locate ADFS IdP role for identity provider ($entityID).", namedparams(1, "entityID", session->getEntityID())
950                 );
951         }
952
953         const EndpointType* ep = EndpointManager<SingleLogoutService>(
954             dynamic_cast<const IDPSSODescriptor*>(entity.second)->getSingleLogoutServices()
955             ).getByBinding(m_binding.get());
956         if (!ep) {
957             throw MetadataException(
958                 "Unable to locate ADFS single logout service for identity provider ($entityID).",
959                 namedparams(1, "entityID", session->getEntityID())
960                 );
961         }
962
963         // Log the request.
964         scoped_ptr<LogoutEvent> logout_event(newLogoutEvent(application, &httpRequest, session));
965         if (logout_event) {
966             logout_event->m_logoutType = LogoutEvent::LOGOUT_EVENT_UNKNOWN;
967             application.getServiceProvider().getTransactionLog()->write(*logout_event);
968         }
969
970         const URLEncoder* urlenc = XMLToolingConfig::getConfig().getURLEncoder();
971         const char* returnloc = httpRequest.getParameter("return");
972         auto_ptr_char dest(ep->getLocation());
973         string req=string(dest.get()) + (strchr(dest.get(),'?') ? '&' : '?') + "wa=wsignout1.0";
974         if (returnloc)
975             req += "&wreply=" + urlenc->encode(returnloc);
976         ret.second = httpResponse.sendRedirect(req.c_str());
977         ret.first = true;
978
979         if (session) {
980             sessionLocker.assign();
981             session = nullptr;
982             application.getServiceProvider().getSessionCache()->remove(application, httpRequest, &httpResponse);
983         }
984     }
985     catch (MetadataException& mex) {
986         // Less noise for IdPs that don't support logout
987         m_log.info("unable to issue ADFS logout request: %s", mex.what());
988     }
989     catch (std::exception& ex) {
990         m_log.error("error issuing ADFS logout request: %s", ex.what());
991     }
992
993     return ret;
994 #else
995     throw ConfigurationException("Cannot perform logout using lite version of shibsp library.");
996 #endif
997 }
998
999 pair<bool,long> ADFSLogout::run(SPRequest& request, bool isHandler) const
1000 {
1001     // Defer to base class for front-channel loop first.
1002     // This won't initiate the loop, only continue/end it.
1003     pair<bool,long> ret = LogoutHandler::run(request, isHandler);
1004     if (ret.first)
1005         return ret;
1006
1007     // wa parameter indicates the "action" to perform
1008     bool returning = false;
1009     const char* param = request.getParameter("wa");
1010     if (param) {
1011         if (!strcmp(param, "wsignin1.0"))
1012             return m_login.run(request, isHandler);
1013         else if (strcmp(param, "wsignout1.0") && strcmp(param, "wsignoutcleanup1.0"))
1014             throw FatalProfileException("Unsupported WS-Federation action paremeter ($1).", params(1, param));
1015     }
1016     else if (strcmp(request.getMethod(),"GET") || !request.getParameter("notifying"))
1017         throw FatalProfileException("Unsupported request to ADFS protocol endpoint.");
1018     else
1019         returning = true;
1020
1021     param = request.getParameter("wreply");
1022     const Application& app = request.getApplication();
1023
1024     if (!returning) {
1025         // Pass control to the first front channel notification point, if any.
1026         map<string,string> parammap;
1027         if (param)
1028             parammap["wreply"] = param;
1029         pair<bool,long> result = notifyFrontChannel(app, request, request, &parammap);
1030         if (result.first)
1031             return result;
1032     }
1033
1034     // Best effort on back channel and to remove the user agent's session.
1035     string session_id = app.getServiceProvider().getSessionCache()->active(app, request);
1036     if (!session_id.empty()) {
1037         vector<string> sessions(1,session_id);
1038         notifyBackChannel(app, request.getRequestURL(), sessions, false);
1039         try {
1040             app.getServiceProvider().getSessionCache()->remove(app, request, &request);
1041         }
1042         catch (std::exception& ex) {
1043             m_log.error("error removing session (%s): %s", session_id.c_str(), ex.what());
1044         }
1045     }
1046
1047     if (param)
1048         return make_pair(true, request.sendRedirect(param));
1049     return sendLogoutPage(app, request, request, "global");
1050 }