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