X-Git-Url: http://www.project-moonshot.org/gitweb/?p=shibboleth%2Fcpp-opensaml.git;a=blobdiff_plain;f=saml%2Fsaml2%2Fbinding%2Fimpl%2FSAML2ArtifactEncoder.cpp;h=a4dd248690f3daeaef03fba892ef6386d4c6b195;hp=5d318085d751d47b8c7b641cfd0959fd2f90609a;hb=b5b26ae562b0317264119a51aa9de40674af1dea;hpb=b1614d3c1fc1f4230ab2a123f43994127c25462c diff --git a/saml/saml2/binding/impl/SAML2ArtifactEncoder.cpp b/saml/saml2/binding/impl/SAML2ArtifactEncoder.cpp index 5d31808..a4dd248 100644 --- a/saml/saml2/binding/impl/SAML2ArtifactEncoder.cpp +++ b/saml/saml2/binding/impl/SAML2ArtifactEncoder.cpp @@ -23,23 +23,26 @@ #include "internal.h" #include "exceptions.h" #include "binding/ArtifactMap.h" -#include "binding/HTTPResponse.h" #include "binding/MessageEncoder.h" #include "saml2/binding/SAML2Artifact.h" #include "saml2/core/Protocols.h" +#include "saml2/metadata/Metadata.h" #include #include -#include +#include +#include #include +#include #include #include using namespace opensaml::saml2p; +using namespace opensaml::saml2md; using namespace opensaml; using namespace xmlsignature; +using namespace xmltooling::logging; using namespace xmltooling; -using namespace log4cpp; using namespace std; namespace opensaml { @@ -47,38 +50,48 @@ namespace opensaml { class SAML_DLLLOCAL SAML2ArtifactEncoder : public MessageEncoder { public: - SAML2ArtifactEncoder(const DOMElement* e); + SAML2ArtifactEncoder(const DOMElement* e, const XMLCh* ns); virtual ~SAML2ArtifactEncoder() {} long encode( GenericResponse& genericResponse, XMLObject* xmlObject, const char* destination, - const char* recipientID=NULL, + const EntityDescriptor* recipient=NULL, const char* relayState=NULL, + const ArtifactGenerator* artifactGenerator=NULL, const Credential* credential=NULL, - const XMLCh* sigAlgorithm=NULL + const XMLCh* signatureAlg=NULL, + const XMLCh* digestAlg=NULL ) const; private: - string m_template; + bool m_post; + string m_template; }; - MessageEncoder* SAML_DLLLOCAL SAML2ArtifactEncoderFactory(const DOMElement* const & e) + MessageEncoder* SAML_DLLLOCAL SAML2ArtifactEncoderFactory(const pair& p) { - return new SAML2ArtifactEncoder(e); + return new SAML2ArtifactEncoder(p.first, p.second); } }; -}; -static const XMLCh _template[] = UNICODE_LITERAL_8(t,e,m,p,l,a,t,e); + static const XMLCh _template[] = UNICODE_LITERAL_8(t,e,m,p,l,a,t,e); + static const XMLCh postArtifact[] = UNICODE_LITERAL_12(p,o,s,t,A,r,t,i,f,a,c,t); +}; -SAML2ArtifactEncoder::SAML2ArtifactEncoder(const DOMElement* e) +SAML2ArtifactEncoder::SAML2ArtifactEncoder(const DOMElement* e, const XMLCh* ns) : m_post(false) { if (e) { - auto_ptr_char t(e->getAttributeNS(NULL, _template)); - if (t.get()) - m_template = t.get(); + const XMLCh* flag = e->getAttributeNS(ns, postArtifact); + m_post = (flag && (*flag==chLatin_t || *flag==chDigit_1)); + if (m_post) { + auto_ptr_char t(e->getAttributeNS(ns, _template)); + if (t.get() && *t.get()) { + m_template = t.get(); + XMLToolingConfig::getConfig().getPathResolver()->resolve(m_template, PathResolver::XMLTOOLING_CFG_FILE); + } + } } } @@ -86,10 +99,12 @@ long SAML2ArtifactEncoder::encode( GenericResponse& genericResponse, XMLObject* xmlObject, const char* destination, - const char* recipientID, + const EntityDescriptor* recipient, const char* relayState, + const ArtifactGenerator* artifactGenerator, const Credential* credential, - const XMLCh* sigAlgorithm + const XMLCh* signatureAlg, + const XMLCh* digestAlg ) const { #ifdef _DEBUG @@ -109,20 +124,22 @@ long SAML2ArtifactEncoder::encode( StatusResponseType* response = NULL; RequestAbstractType* request = dynamic_cast(xmlObject); - if (!request) + if (!request) { response = dynamic_cast(xmlObject); - if (!response) - throw BindingException("XML content for SAML 2.0 HTTP-Artifact Encoder must be a SAML 2.0 protocol message."); + if (!response) + throw BindingException("XML content for SAML 2.0 HTTP-Artifact Encoder must be a SAML 2.0 protocol message."); + } ArtifactMap* mapper = SAMLConfig::getConfig().getArtifactMap(); if (!mapper) throw BindingException("SAML 2.0 HTTP-Artifact Encoder requires ArtifactMap be set in configuration."); // Obtain a fresh artifact. - if (!m_artifactGenerator) + if (!artifactGenerator) throw BindingException("SAML 2.0 HTTP-Artifact Encoder requires an ArtifactGenerator instance."); - log.debug("obtaining new artifact for relying party (%s)", recipientID ? recipientID : "unknown"); - auto_ptr artifact(m_artifactGenerator->generateSAML2Artifact(recipientID)); + auto_ptr_char recipientID(recipient ? recipient->getEntityID() : NULL); + log.debug("obtaining new artifact for relying party (%s)", recipientID.get() ? recipientID.get() : "unknown"); + auto_ptr artifact(artifactGenerator->generateSAML2Artifact(recipient)); if (credential) { // Signature based on native XML signing. @@ -135,18 +152,26 @@ long SAML2ArtifactEncoder::encode( // Build a Signature. Signature* sig = SignatureBuilder::buildSignature(); request ? request->setSignature(sig) : response->setSignature(sig); - if (sigAlgorithm) - sig->setSignatureAlgorithm(sigAlgorithm); + if (signatureAlg) + sig->setSignatureAlgorithm(signatureAlg); + if (digestAlg) { + opensaml::ContentReference* cr = dynamic_cast(sig->getContentReference()); + if (cr) + cr->setDigestAlgorithm(digestAlg); + } // Sign response while marshalling. vector sigs(1,sig); xmlObject->marshall((DOMDocument*)NULL,&sigs,credential); } } + + if (log.isDebugEnabled()) + log.debugStream() << "marshalled message:" << logging::eol << *xmlObject << logging::eol; // Store the message. Last step in storage will be to delete the XML. log.debug("storing artifact and content in map"); - mapper->storeContent(xmlObject, artifact.get(), recipientID); + mapper->storeContent(xmlObject, artifact.get(), recipientID.get()); if (m_template.empty()) { // Generate redirect. @@ -154,7 +179,7 @@ long SAML2ArtifactEncoder::encode( loc += (strchr(destination,'?') ? '&' : '?'); const URLEncoder* escaper = XMLToolingConfig::getConfig().getURLEncoder(); loc = loc + "SAMLart=" + escaper->encode(artifact->encode().c_str()); - if (relayState) + if (relayState && *relayState) loc = loc + "&RelayState=" + escaper->encode(relayState); log.debug("message encoded, sending redirect to client"); return httpResponse->sendRedirect(loc.c_str()); @@ -171,7 +196,7 @@ long SAML2ArtifactEncoder::encode( TemplateEngine::TemplateParameters params; params.m_map["action"] = destination; params.m_map["SAMLart"] = artifact->encode(); - if (relayState) + if (relayState && *relayState) params.m_map["RelayState"] = relayState; stringstream s; engine->run(infile, s, params);