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