Skip warning when acsIndex not used.
[shibboleth/cpp-sp.git] / shibsp / handler / impl / SAML2SessionInitiator.cpp
1 /*
2  *  Copyright 2001-2010 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  * SAML2SessionInitiator.cpp
19  *
20  * SAML 2.0 AuthnRequest support.
21  */
22
23 #include "internal.h"
24 #include "Application.h"
25 #include "exceptions.h"
26 #include "ServiceProvider.h"
27 #include "handler/AbstractHandler.h"
28 #include "handler/RemotedHandler.h"
29 #include "handler/SessionInitiator.h"
30 #include "util/SPConstants.h"
31
32 #ifndef SHIBSP_LITE
33 # include "metadata/MetadataProviderCriteria.h"
34 # include <saml/SAMLConfig.h>
35 # include <saml/saml2/core/Protocols.h>
36 # include <saml/saml2/metadata/EndpointManager.h>
37 # include <saml/saml2/metadata/Metadata.h>
38 # include <saml/saml2/metadata/MetadataCredentialCriteria.h>
39 # include <saml/util/SAMLConstants.h>
40 using namespace opensaml::saml2;
41 using namespace opensaml::saml2p;
42 using namespace opensaml::saml2md;
43 #else
44 # include "lite/SAMLConstants.h"
45 # include <xercesc/util/XMLUniDefs.hpp>
46 #endif
47
48 using namespace shibsp;
49 using namespace opensaml;
50 using namespace xmltooling;
51 using namespace std;
52
53 namespace shibsp {
54
55 #if defined (_MSC_VER)
56     #pragma warning( push )
57     #pragma warning( disable : 4250 )
58 #endif
59
60     class SHIBSP_DLLLOCAL SAML2SessionInitiator : public SessionInitiator, public AbstractHandler, public RemotedHandler
61     {
62     public:
63         SAML2SessionInitiator(const DOMElement* e, const char* appId);
64         virtual ~SAML2SessionInitiator() {
65 #ifndef SHIBSP_LITE
66             if (SPConfig::getConfig().isEnabled(SPConfig::OutOfProcess)) {
67                 XMLString::release(&m_outgoing);
68                 for_each(m_encoders.begin(), m_encoders.end(), cleanup_pair<const XMLCh*,MessageEncoder>());
69                 delete m_requestTemplate;
70                 delete m_ecp;
71             }
72 #endif
73         }
74
75         void setParent(const PropertySet* parent);
76         void receive(DDF& in, ostream& out);
77         pair<bool,long> unwrap(SPRequest& request, DDF& out) const;
78         pair<bool,long> run(SPRequest& request, string& entityID, bool isHandler=true) const;
79
80         const XMLCh* getProtocolFamily() const {
81             return samlconstants::SAML20P_NS;
82         }
83
84     private:
85         pair<bool,long> doRequest(
86             const Application& application,
87             const HTTPRequest* httpRequest,
88             HTTPResponse& httpResponse,
89             const char* entityID,
90             const XMLCh* acsIndex,
91             bool artifactInbound,
92             const char* acsLocation,
93             const XMLCh* acsBinding,
94             bool isPassive,
95             bool forceAuthn,
96             const char* authnContextClassRef,
97             const char* authnContextComparison,
98             const char* NameIDFormat,
99             const char* SPNameQualifier,
100             string& relayState
101             ) const;
102
103         string m_appId;
104         auto_ptr_char m_paosNS,m_ecpNS;
105         auto_ptr_XMLCh m_paosBinding;
106 #ifndef SHIBSP_LITE
107         XMLCh* m_outgoing;
108         vector<const XMLCh*> m_bindings;
109         map<const XMLCh*,MessageEncoder*> m_encoders;
110         MessageEncoder* m_ecp;
111         AuthnRequest* m_requestTemplate;
112 #else
113         bool m_ecp;
114 #endif
115     };
116
117 #if defined (_MSC_VER)
118     #pragma warning( pop )
119 #endif
120
121     SessionInitiator* SHIBSP_DLLLOCAL SAML2SessionInitiatorFactory(const pair<const DOMElement*,const char*>& p)
122     {
123         return new SAML2SessionInitiator(p.first, p.second);
124     }
125
126 };
127
128 SAML2SessionInitiator::SAML2SessionInitiator(const DOMElement* e, const char* appId)
129     : AbstractHandler(e, Category::getInstance(SHIBSP_LOGCAT".SessionInitiator.SAML2"), nullptr, &m_remapper), m_appId(appId),
130         m_paosNS(samlconstants::PAOS_NS), m_ecpNS(samlconstants::SAML20ECP_NS), m_paosBinding(samlconstants::SAML20_BINDING_PAOS)
131 {
132     static const XMLCh ECP[] = UNICODE_LITERAL_3(E,C,P);
133     const XMLCh* flag = e ? e->getAttributeNS(nullptr,ECP) : nullptr;
134 #ifdef SHIBSP_LITE
135     m_ecp = (flag && (*flag == chLatin_t || *flag == chDigit_1));
136 #else
137     m_outgoing=nullptr;
138     m_ecp = nullptr;
139     m_requestTemplate=nullptr;
140
141     if (SPConfig::getConfig().isEnabled(SPConfig::OutOfProcess)) {
142         // Check for a template AuthnRequest to build from.
143         DOMElement* child = XMLHelper::getFirstChildElement(e, samlconstants::SAML20P_NS, AuthnRequest::LOCAL_NAME);
144         if (child)
145             m_requestTemplate = dynamic_cast<AuthnRequest*>(AuthnRequestBuilder::buildOneFromElement(child));
146
147         // If directed, build an ECP encoder.
148         if (flag && (*flag == chLatin_t || *flag == chDigit_1)) {
149             try {
150                 m_ecp = SAMLConfig::getConfig().MessageEncoderManager.newPlugin(
151                     samlconstants::SAML20_BINDING_PAOS, pair<const DOMElement*,const XMLCh*>(e,nullptr)
152                     );
153             }
154             catch (exception& ex) {
155                 m_log.error("error building PAOS/ECP MessageEncoder: %s", ex.what());
156             }
157         }
158
159         // Handle outgoing binding setup.
160         pair<bool,const XMLCh*> outgoing = getXMLString("outgoingBindings");
161         if (outgoing.first) {
162             m_outgoing = XMLString::replicate(outgoing.second);
163             XMLString::trim(m_outgoing);
164         }
165         else {
166             // No override, so we'll install a default binding precedence.
167             string prec = string(samlconstants::SAML20_BINDING_HTTP_REDIRECT) + ' ' + samlconstants::SAML20_BINDING_HTTP_POST + ' ' +
168                 samlconstants::SAML20_BINDING_HTTP_POST_SIMPLESIGN + ' ' + samlconstants::SAML20_BINDING_HTTP_ARTIFACT;
169             m_outgoing = XMLString::transcode(prec.c_str());
170         }
171
172         int pos;
173         XMLCh* start = m_outgoing;
174         while (start && *start) {
175             pos = XMLString::indexOf(start,chSpace);
176             if (pos != -1)
177                 *(start + pos)=chNull;
178             m_bindings.push_back(start);
179             try {
180                 auto_ptr_char b(start);
181                 MessageEncoder * encoder = SAMLConfig::getConfig().MessageEncoderManager.newPlugin(
182                     b.get(),pair<const DOMElement*,const XMLCh*>(e,nullptr)
183                     );
184                 if (encoder->isUserAgentPresent() && XMLString::equals(getProtocolFamily(), encoder->getProtocolFamily())) {
185                     m_encoders[start] = encoder;
186                     m_log.debug("supporting outgoing binding (%s)", b.get());
187                 }
188                 else {
189                     delete encoder;
190                     m_log.warn("skipping outgoing binding (%s), not a SAML 2.0 front-channel mechanism", b.get());
191                 }
192             }
193             catch (exception& ex) {
194                 m_log.error("error building MessageEncoder: %s", ex.what());
195             }
196             if (pos != -1)
197                 start = start + pos + 1;
198             else
199                 break;
200         }
201     }
202 #endif
203
204     // If Location isn't set, defer address registration until the setParent call.
205     pair<bool,const char*> loc = getString("Location");
206     if (loc.first) {
207         string address = m_appId + loc.second + "::run::SAML2SI";
208         setAddress(address.c_str());
209     }
210
211     m_supportedOptions.insert("isPassive");
212 }
213
214 void SAML2SessionInitiator::setParent(const PropertySet* parent)
215 {
216     DOMPropertySet::setParent(parent);
217     pair<bool,const char*> loc = getString("Location");
218     if (loc.first) {
219         string address = m_appId + loc.second + "::run::SAML2SI";
220         setAddress(address.c_str());
221     }
222     else {
223         m_log.warn("no Location property in SAML2 SessionInitiator (or parent), can't register as remoted handler");
224     }
225 }
226
227 pair<bool,long> SAML2SessionInitiator::run(SPRequest& request, string& entityID, bool isHandler) const
228 {
229     // First check for ECP support, since that doesn't require an IdP to be known.
230     bool ECP = false;
231     if (m_ecp && request.getHeader("Accept").find("application/vnd.paos+xml") != string::npos) {
232         string PAOS = request.getHeader("PAOS");
233         if (PAOS.find(m_paosNS.get()) != string::npos && PAOS.find(m_ecpNS.get()) != string::npos)
234             ECP = true;
235     }
236
237     // We have to know the IdP to function unless this is ECP.
238     if ((!ECP && entityID.empty()) || !checkCompatibility(request, isHandler))
239         return make_pair(false,0L);
240
241     string target;
242     pair<bool,const char*> prop;
243     const Handler* ACS=nullptr;
244     pair<bool,const char*> acClass, acComp, nidFormat, spQual;
245     bool isPassive=false,forceAuthn=false;
246     const Application& app=request.getApplication();
247
248     // ECP means the ACS will be by value no matter what.
249     pair<bool,bool> acsByIndex = ECP ? make_pair(true,false) : getBool("acsByIndex");
250
251     if (isHandler) {
252         prop.second = request.getParameter("acsIndex");
253         if (prop.second && *prop.second) {
254             ACS = app.getAssertionConsumerServiceByIndex(atoi(prop.second));
255             if (!ACS)
256                 request.log(SPRequest::SPWarn, "invalid acsIndex specified in request, using acsIndex property");
257             else if (ECP && !XMLString::equals(ACS->getString("Binding").second, samlconstants::SAML20_BINDING_PAOS)) {
258                 request.log(SPRequest::SPWarn, "acsIndex in request referenced a non-PAOS ACS, using default ACS location");
259                 ACS = nullptr;
260             }
261         }
262
263         prop = getString("target", request);
264         if (prop.first)
265             target = prop.second;
266
267         // Always need to recover target URL to compute handler below.
268         recoverRelayState(app, request, request, target, false);
269
270         pair<bool,bool> flag = getBool("isPassive", request);
271         isPassive = (flag.first && flag.second);
272
273         if (!isPassive) {
274             flag = getBool("forceAuthn", request);
275             forceAuthn = (flag.first && flag.second);
276         }
277
278         // Populate via parameter, map, or property.
279         acClass = getString("authnContextClassRef", request);
280         acComp = getString("authnContextComparison", request);
281         nidFormat = getString("NameIDFormat", request);
282         spQual = getString("SPNameQualifier", request);
283     }
284     else {
285         // Check for a hardwired target value in the map or handler.
286         prop = getString("target", request, HANDLER_PROPERTY_MAP|HANDLER_PROPERTY_FIXED);
287         if (prop.first)
288             target = prop.second;
289         else
290             target = request.getRequestURL();
291
292         pair<bool,bool> flag = getBool("isPassive", request, HANDLER_PROPERTY_MAP|HANDLER_PROPERTY_FIXED);
293         isPassive = flag.first && flag.second;
294         if (!isPassive) {
295             flag = getBool("forceAuthn", request, HANDLER_PROPERTY_MAP|HANDLER_PROPERTY_FIXED);
296             forceAuthn = flag.first && flag.second;
297         }
298
299         // Populate via map or property.
300         acClass = getString("authnContextClassRef", request, HANDLER_PROPERTY_MAP|HANDLER_PROPERTY_FIXED);
301         acComp = getString("authnContextComparison", request, HANDLER_PROPERTY_MAP|HANDLER_PROPERTY_FIXED);
302         nidFormat = getString("NameIDFormat", request, HANDLER_PROPERTY_MAP|HANDLER_PROPERTY_FIXED);
303         spQual = getString("SPNameQualifier", request, HANDLER_PROPERTY_MAP|HANDLER_PROPERTY_FIXED);
304     }
305
306     if (ECP)
307         m_log.debug("attempting to initiate session using SAML 2.0 Enhanced Client Profile");
308     else
309         m_log.debug("attempting to initiate session using SAML 2.0 with provider (%s)", entityID.c_str());
310
311     if (!ACS) {
312         if (ECP) {
313             ACS = app.getAssertionConsumerServiceByProtocol(getProtocolFamily(), samlconstants::SAML20_BINDING_PAOS);
314             if (!ACS)
315                 throw ConfigurationException("Unable to locate PAOS response endpoint.");
316         }
317         else {
318             // Try fixed index property.
319             pair<bool,unsigned int> index = getUnsignedInt("acsIndex", request, HANDLER_PROPERTY_MAP|HANDLER_PROPERTY_FIXED);
320             if (index.first)
321                 ACS = app.getAssertionConsumerServiceByIndex(index.second);
322         }
323     }
324
325     // If we picked by index, validate the ACS for use with this protocol.
326     if (!ECP && (!ACS || !XMLString::equals(getProtocolFamily(), ACS->getProtocolFamily()))) {
327         if (ACS)
328             request.log(SPRequest::SPWarn, "invalid acsIndex property, or non-SAML 2.0 ACS, using default SAML 2.0 ACS");
329         ACS = app.getAssertionConsumerServiceByProtocol(getProtocolFamily());
330         if (!ACS)
331             throw ConfigurationException("Unable to locate a SAML 2.0 ACS endpoint to use for response.");
332     }
333
334     // To invoke the request builder, the key requirement is to figure out how
335     // to express the ACS, by index or value, and if by value, where.
336     // We have to compute the handlerURL no matter what, because we may need to
337     // flip the index to an SSL-version.
338     string ACSloc = request.getHandlerURL(target.c_str());
339
340     SPConfig& conf = SPConfig::getConfig();
341     if (conf.isEnabled(SPConfig::OutOfProcess)) {
342         if (acsByIndex.first && acsByIndex.second) {
343             // Pass by Index.
344             if (isHandler) {
345                 // We may already have RelayState set if we looped back here,
346                 // but we've turned it back into a resource by this point, so if there's
347                 // a target on the URL, reset to that value.
348                 prop.second = request.getParameter("target");
349                 if (prop.second && *prop.second)
350                     target = prop.second;
351             }
352
353             // Determine index to use.
354             pair<bool,const XMLCh*> ix = pair<bool,const XMLCh*>(false,nullptr);
355             if (!strncmp(ACSloc.c_str(), "https", 5)) {
356                 ix = ACS->getXMLString("sslIndex", shibspconstants::ASCII_SHIB2SPCONFIG_NS);
357                 if (!ix.first)
358                         ix = ACS->getXMLString("index");
359             }
360             else {
361                 ix = ACS->getXMLString("index");
362             }
363
364             return doRequest(
365                 app, &request, request, entityID.c_str(),
366                 ix.second,
367                 XMLString::equals(ACS->getString("Binding").second, samlconstants::SAML20_BINDING_HTTP_ARTIFACT),
368                 nullptr, nullptr,
369                 isPassive, forceAuthn,
370                 acClass.first ? acClass.second : nullptr,
371                 acComp.first ? acComp.second : nullptr,
372                 nidFormat.first ? nidFormat.second : nullptr,
373                 spQual.first ? spQual.second : nullptr,
374                 target
375                 );
376         }
377
378         // Since we're not passing by index, we need to fully compute the return URL and binding.
379         // Compute the ACS URL. We add the ACS location to the base handlerURL.
380         prop = ACS->getString("Location");
381         if (prop.first)
382             ACSloc += prop.second;
383
384         if (isHandler) {
385             // We may already have RelayState set if we looped back here,
386             // but we've turned it back into a resource by this point, so if there's
387             // a target on the URL, reset to that value.
388             prop.second = request.getParameter("target");
389             if (prop.second && *prop.second)
390                 target = prop.second;
391         }
392
393         return doRequest(
394             app, &request, request, entityID.c_str(),
395             nullptr,
396             XMLString::equals(ACS->getString("Binding").second, samlconstants::SAML20_BINDING_HTTP_ARTIFACT),
397             ACSloc.c_str(), ACS->getXMLString("Binding").second,
398             isPassive, forceAuthn,
399             acClass.first ? acClass.second : nullptr,
400             acComp.first ? acComp.second : nullptr,
401             nidFormat.first ? nidFormat.second : nullptr,
402             spQual.first ? spQual.second : nullptr,
403             target
404             );
405     }
406
407     // Remote the call.
408     DDF out,in = DDF(m_address.c_str()).structure();
409     DDFJanitor jin(in), jout(out);
410     in.addmember("application_id").string(app.getId());
411     if (!entityID.empty())
412         in.addmember("entity_id").string(entityID.c_str());
413     if (isPassive)
414         in.addmember("isPassive").integer(1);
415     else if (forceAuthn)
416         in.addmember("forceAuthn").integer(1);
417     if (acClass.first)
418         in.addmember("authnContextClassRef").string(acClass.second);
419     if (acComp.first)
420         in.addmember("authnContextComparison").string(acComp.second);
421     if (nidFormat.first)
422         in.addmember("NameIDFormat").string(nidFormat.second);
423     if (spQual.first)
424         in.addmember("SPNameQualifier").string(spQual.second);
425     if (acsByIndex.first && acsByIndex.second) {
426         // Determine index to use.
427         pair<bool,const char*> ix = pair<bool,const char*>(false,nullptr);
428         if (!strncmp(ACSloc.c_str(), "https", 5)) {
429                 ix = ACS->getString("sslIndex", shibspconstants::ASCII_SHIB2SPCONFIG_NS);
430                 if (!ix.first)
431                         ix = ACS->getString("index");
432         }
433         else {
434                 ix = ACS->getString("index");
435         }
436         in.addmember("acsIndex").string(ix.second);
437         if (XMLString::equals(ACS->getString("Binding").second, samlconstants::SAML20_BINDING_HTTP_ARTIFACT))
438             in.addmember("artifact").integer(1);
439     }
440     else {
441         // Since we're not passing by index, we need to fully compute the return URL and binding.
442         // Compute the ACS URL. We add the ACS location to the base handlerURL.
443         prop = ACS->getString("Location");
444         if (prop.first)
445             ACSloc += prop.second;
446         in.addmember("acsLocation").string(ACSloc.c_str());
447         prop = ACS->getString("Binding");
448         in.addmember("acsBinding").string(prop.second);
449         if (XMLString::equals(prop.second, samlconstants::SAML20_BINDING_HTTP_ARTIFACT))
450             in.addmember("artifact").integer(1);
451     }
452
453     if (isHandler) {
454         // We may already have RelayState set if we looped back here,
455         // but we've turned it back into a resource by this point, so if there's
456         // a target on the URL, reset to that value.
457         prop.second = request.getParameter("target");
458         if (prop.second && *prop.second)
459             target = prop.second;
460     }
461     if (!target.empty())
462         in.addmember("RelayState").unsafe_string(target.c_str());
463
464     // Remote the processing.
465     out = request.getServiceProvider().getListenerService()->send(in);
466     return unwrap(request, out);
467 }
468
469 pair<bool,long> SAML2SessionInitiator::unwrap(SPRequest& request, DDF& out) const
470 {
471     // See if there's any response to send back.
472     if (!out["redirect"].isnull() || !out["response"].isnull()) {
473         // If so, we're responsible for handling the POST data, probably by dropping a cookie.
474         preservePostData(request.getApplication(), request, request, out["RelayState"].string());
475     }
476     return RemotedHandler::unwrap(request, out);
477 }
478
479 void SAML2SessionInitiator::receive(DDF& in, ostream& out)
480 {
481     // Find application.
482     const char* aid=in["application_id"].string();
483     const Application* app=aid ? SPConfig::getConfig().getServiceProvider()->getApplication(aid) : nullptr;
484     if (!app) {
485         // Something's horribly wrong.
486         m_log.error("couldn't find application (%s) to generate AuthnRequest", aid ? aid : "(missing)");
487         throw ConfigurationException("Unable to locate application for new session, deleted?");
488     }
489
490     DDF ret(nullptr);
491     DDFJanitor jout(ret);
492
493     // Wrap the outgoing object with a Response facade.
494     auto_ptr<HTTPResponse> http(getResponse(ret));
495
496     auto_ptr_XMLCh index(in["acsIndex"].string());
497     auto_ptr_XMLCh bind(in["acsBinding"].string());
498
499     string relayState(in["RelayState"].string() ? in["RelayState"].string() : "");
500     string postData(in["PostData"].string() ? in["PostData"].string() : "");
501
502     // Since we're remoted, the result should either be a throw, which we pass on,
503     // a false/0 return, which we just return as an empty structure, or a response/redirect,
504     // which we capture in the facade and send back.
505     doRequest(
506         *app, nullptr, *http.get(), in["entity_id"].string(),
507         index.get(),
508         (in["artifact"].integer() != 0),
509         in["acsLocation"].string(), bind.get(),
510         in["isPassive"].integer()==1, in["forceAuthn"].integer()==1,
511         in["authnContextClassRef"].string(), in["authnContextComparison"].string(),
512         in["NameIDFormat"].string(), in["SPNameQualifier"].string(),
513         relayState
514         );
515     if (!ret.isstruct())
516         ret.structure();
517     ret.addmember("RelayState").unsafe_string(relayState.c_str());
518     out << ret;
519 }
520
521 #ifndef SHIBSP_LITE
522 namespace {
523     class _sameIdP : public binary_function<const IDPEntry*, const XMLCh*, bool>
524     {
525     public:
526         bool operator()(const IDPEntry* entry, const XMLCh* entityID) const {
527             return entry ? XMLString::equals(entry->getProviderID(), entityID) : false;
528         }
529     };
530 };
531 #endif
532
533 pair<bool,long> SAML2SessionInitiator::doRequest(
534     const Application& app,
535     const HTTPRequest* httpRequest,
536     HTTPResponse& httpResponse,
537     const char* entityID,
538     const XMLCh* acsIndex,
539     bool artifactInbound,
540     const char* acsLocation,
541     const XMLCh* acsBinding,
542     bool isPassive,
543     bool forceAuthn,
544     const char* authnContextClassRef,
545     const char* authnContextComparison,
546     const char* NameIDFormat,
547     const char* SPNameQualifier,
548     string& relayState
549     ) const
550 {
551 #ifndef SHIBSP_LITE
552     bool ECP = XMLString::equals(acsBinding, m_paosBinding.get());
553
554     pair<const EntityDescriptor*,const RoleDescriptor*> entity = pair<const EntityDescriptor*,const RoleDescriptor*>(nullptr,nullptr);
555     const IDPSSODescriptor* role = nullptr;
556     const EndpointType* ep = nullptr;
557     const MessageEncoder* encoder = nullptr;
558
559     // We won't need this for ECP, but safety dictates we get the lock here.
560     MetadataProvider* m=app.getMetadataProvider();
561     Locker locker(m);
562
563     if (ECP) {
564         encoder = m_ecp;
565         if (!encoder) {
566             m_log.error("MessageEncoder for PAOS binding not available");
567             return make_pair(false,0L);
568         }
569     }
570     else {
571         // Use metadata to locate the IdP's SSO service.
572         MetadataProviderCriteria mc(app, entityID, &IDPSSODescriptor::ELEMENT_QNAME, samlconstants::SAML20P_NS);
573         entity=m->getEntityDescriptor(mc);
574         if (!entity.first) {
575             m_log.warn("unable to locate metadata for provider (%s)", entityID);
576             throw MetadataException("Unable to locate metadata for identity provider ($entityID)", namedparams(1, "entityID", entityID));
577         }
578         else if (!entity.second) {
579             m_log.log(getParent() ? Priority::INFO : Priority::WARN, "unable to locate SAML 2.0 identity provider role for provider (%s)", entityID);
580             if (getParent())
581                 return make_pair(false,0L);
582             throw MetadataException("Unable to locate SAML 2.0 identity provider role for provider ($entityID)", namedparams(1, "entityID", entityID));
583         }
584         else if (artifactInbound && !SPConfig::getConfig().getArtifactResolver()->isSupported(dynamic_cast<const SSODescriptorType&>(*entity.second))) {
585             m_log.warn("artifact binding selected for response, but identity provider lacks support");
586             if (getParent())
587                 return make_pair(false,0L);
588             throw MetadataException("Identity provider ($entityID) lacks SAML 2.0 artifact support.", namedparams(1, "entityID", entityID));
589         }
590
591         // Loop over the supportable outgoing bindings.
592         role = dynamic_cast<const IDPSSODescriptor*>(entity.second);
593         vector<const XMLCh*>::const_iterator b;
594         for (b = m_bindings.begin(); b!=m_bindings.end(); ++b) {
595             if (ep=EndpointManager<SingleSignOnService>(role->getSingleSignOnServices()).getByBinding(*b)) {
596                 map<const XMLCh*,MessageEncoder*>::const_iterator enc = m_encoders.find(*b);
597                 if (enc!=m_encoders.end())
598                     encoder = enc->second;
599                 break;
600             }
601         }
602         if (!ep || !encoder) {
603             m_log.warn("unable to locate compatible SSO service for provider (%s)", entityID);
604             if (getParent())
605                 return make_pair(false,0L);
606             throw MetadataException("Unable to locate compatible SSO service for provider ($entityID)", namedparams(1, "entityID", entityID));
607         }
608     }
609
610     preserveRelayState(app, httpResponse, relayState);
611
612     auto_ptr<AuthnRequest> req(m_requestTemplate ? m_requestTemplate->cloneAuthnRequest() : AuthnRequestBuilder::buildAuthnRequest());
613     if (m_requestTemplate) {
614         // Freshen TS and ID.
615         req->setID(nullptr);
616         req->setIssueInstant(time(nullptr));
617     }
618
619     if (ep)
620         req->setDestination(ep->getLocation());
621     if (acsIndex && *acsIndex)
622         req->setAssertionConsumerServiceIndex(acsIndex);
623     if (acsLocation) {
624         auto_ptr_XMLCh wideloc(acsLocation);
625         req->setAssertionConsumerServiceURL(wideloc.get());
626     }
627     if (acsBinding && *acsBinding)
628         req->setProtocolBinding(acsBinding);
629     if (isPassive)
630         req->IsPassive(isPassive);
631     else if (forceAuthn)
632         req->ForceAuthn(forceAuthn);
633     if (!req->getIssuer()) {
634         Issuer* issuer = IssuerBuilder::buildIssuer();
635         req->setIssuer(issuer);
636         issuer->setName(app.getRelyingParty(entity.first)->getXMLString("entityID").second);
637     }
638     if (!req->getNameIDPolicy()) {
639         NameIDPolicy* namepol = NameIDPolicyBuilder::buildNameIDPolicy();
640         req->setNameIDPolicy(namepol);
641         namepol->AllowCreate(true);
642     }
643     if (NameIDFormat && *NameIDFormat) {
644         auto_ptr_XMLCh wideform(NameIDFormat);
645         req->getNameIDPolicy()->setFormat(wideform.get());
646     }
647     if (SPNameQualifier && *SPNameQualifier) {
648         auto_ptr_XMLCh widequal(SPNameQualifier);
649         req->getNameIDPolicy()->setSPNameQualifier(widequal.get());
650     }
651     if (authnContextClassRef || authnContextComparison) {
652         RequestedAuthnContext* reqContext = req->getRequestedAuthnContext();
653         if (!reqContext) {
654             reqContext = RequestedAuthnContextBuilder::buildRequestedAuthnContext();
655             req->setRequestedAuthnContext(reqContext);
656         }
657         if (authnContextClassRef) {
658             reqContext->getAuthnContextDeclRefs().clear();
659             auto_ptr_XMLCh wideclass(authnContextClassRef);
660             AuthnContextClassRef* cref = AuthnContextClassRefBuilder::buildAuthnContextClassRef();
661             cref->setReference(wideclass.get());
662             reqContext->getAuthnContextClassRefs().push_back(cref);
663         }
664
665         if (reqContext->getAuthnContextClassRefs().empty() && reqContext->getAuthnContextDeclRefs().empty()) {
666                 req->setRequestedAuthnContext(nullptr);
667         }
668         else if (authnContextComparison) {
669             auto_ptr_XMLCh widecomp(authnContextComparison);
670             reqContext->setComparison(widecomp.get());
671         }
672     }
673
674     pair<bool,bool> requestDelegation = getBool("requestDelegation");
675     if (requestDelegation.first && requestDelegation.second && entity.first) {
676         // Request delegation by including the IdP as an Audience.
677         // Also specify the expected session lifetime as the bound on the assertion lifetime.
678         const PropertySet* sessionProps = app.getPropertySet("Sessions");
679         pair<bool,unsigned int> lifetime = sessionProps ? sessionProps->getUnsignedInt("lifetime") : pair<bool,unsigned int>(true,28800);
680         if (!lifetime.first || lifetime.second == 0)
681             lifetime.second = 28800;
682         if (!req->getConditions())
683             req->setConditions(ConditionsBuilder::buildConditions());
684         req->getConditions()->setNotOnOrAfter(time(nullptr) + lifetime.second + 300);
685         AudienceRestriction* audrest = AudienceRestrictionBuilder::buildAudienceRestriction();
686         req->getConditions()->getConditions().push_back(audrest);
687         Audience* aud = AudienceBuilder::buildAudience();
688         audrest->getAudiences().push_back(aud);
689         aud->setAudienceURI(entity.first->getEntityID());
690     }
691
692     if (ECP && entityID) {
693         auto_ptr_XMLCh wideid(entityID);
694         Scoping* scoping = req->getScoping();
695         if (!scoping) {
696             scoping = ScopingBuilder::buildScoping();
697             req->setScoping(scoping);
698         }
699         IDPList* idplist = scoping->getIDPList();
700         if (!idplist) {
701             idplist = IDPListBuilder::buildIDPList();
702             scoping->setIDPList(idplist);
703         }
704         VectorOf(IDPEntry) entries = idplist->getIDPEntrys();
705         if (find_if(entries, bind2nd(_sameIdP(), wideid.get())) == nullptr) {
706             IDPEntry* entry = IDPEntryBuilder::buildIDPEntry();
707             entry->setProviderID(wideid.get());
708             entries.push_back(entry);
709         }
710     }
711
712     auto_ptr_char dest(ep ? ep->getLocation() : nullptr);
713
714     if (httpRequest) {
715         // If the request object is available, we're responsible for the POST data.
716         preservePostData(app, *httpRequest, httpResponse, relayState.c_str());
717     }
718
719     long ret = sendMessage(
720         *encoder, req.get(), relayState.c_str(), dest.get(), role, app, httpResponse, role ? role->WantAuthnRequestsSigned() : false
721         );
722     req.release();  // freed by encoder
723     return make_pair(true,ret);
724 #else
725     return make_pair(false,0L);
726 #endif
727 }