1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132
|
/**
* Licensed to the University Corporation for Advanced Internet
* Development, Inc. (UCAID) under one or more contributor license
* agreements. See the NOTICE file distributed with this work for
* additional information regarding copyright ownership.
*
* UCAID licenses this file to you under the Apache License,
* Version 2.0 (the "License"); you may not use this file except
* in compliance with the License. You may obtain a copy of the
* License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND,
* either express or implied. See the License for the specific
* language governing permissions and limitations under the License.
*/
/**
* SAML2SOAPClient.cpp
*
* Specialized SOAPClient for SAML 2.0 SOAP binding.
*/
#include "internal.h"
#include "exceptions.h"
#include "binding/SecurityPolicy.h"
#include "binding/SOAPClient.h"
#include "saml2/binding/SAML2SOAPClient.h"
#include "saml2/core/Protocols.h"
#include "saml2/metadata/Metadata.h"
#include "saml2/metadata/MetadataProvider.h"
#include <xmltooling/logging.h>
#include <xmltooling/soap/SOAP.h>
using namespace opensaml::saml2;
using namespace opensaml::saml2p;
using namespace opensaml::saml2md;
using namespace opensaml;
using namespace soap11;
using namespace xmltooling::logging;
using namespace xmltooling;
using namespace std;
SAML2SOAPClient::SAML2SOAPClient(opensaml::SOAPClient& soaper, bool fatalSAMLErrors)
: m_soaper(soaper), m_fatal(fatalSAMLErrors), m_correlate(nullptr)
{
}
SAML2SOAPClient::~SAML2SOAPClient()
{
XMLString::release(&m_correlate);
}
void SAML2SOAPClient::sendSAML(RequestAbstractType* request, const char* from, MetadataCredentialCriteria& to, const char* endpoint)
{
auto_ptr<Envelope> env(EnvelopeBuilder::buildEnvelope());
Body* body = BodyBuilder::buildBody();
env->setBody(body);
body->getUnknownXMLObjects().push_back(request);
m_soaper.send(*env.get(), from, to, endpoint);
m_correlate = XMLString::replicate(request->getID());
}
StatusResponseType* SAML2SOAPClient::receiveSAML()
{
auto_ptr<Envelope> env(m_soaper.receive());
if (env.get()) {
Body* body = env->getBody();
if (body && body->hasChildren()) {
// Check for SAML Response.
StatusResponseType* response = dynamic_cast<StatusResponseType*>(body->getUnknownXMLObjects().front());
if (response) {
// Check InResponseTo.
if (m_correlate && response->getInResponseTo() && !XMLString::equals(m_correlate, response->getInResponseTo()))
throw SecurityPolicyException("InResponseTo attribute did not correlate with the Request ID.");
SecurityPolicy& policy = m_soaper.getPolicy();
policy.reset(true);
// Extract Response details.
policy.setMessageID(response->getID());
policy.setIssueInstant(response->getIssueInstantEpoch());
// Extract and re-verify Issuer if present.
const Issuer* issuer = response->getIssuer();
if (issuer)
policy.setIssuer(issuer); // This will throw if it conflicts with the known peer identity.
// Now run the policy.
policy.evaluate(*response);
// Check Status.
Status* status = response->getStatus();
if (status) {
const XMLCh* code = status->getStatusCode() ? status->getStatusCode()->getValue() : nullptr;
if (code && !XMLString::equals(code,StatusCode::SUCCESS) && handleError(*status)) {
BindingException ex("SAML response contained an error.");
annotateException(&ex, policy.getIssuerMetadata(), status); // throws it
}
}
env.release();
body->detach(); // frees Envelope
response->detach(); // frees Body
return response;
}
}
BindingException ex("SOAP Envelope did not contain a SAML Response or a Fault.");
if (m_soaper.getPolicy().getIssuerMetadata())
annotateException(&ex, m_soaper.getPolicy().getIssuerMetadata()); // throws it
else
ex.raise();
}
return nullptr;
}
bool SAML2SOAPClient::handleError(const saml2p::Status& status)
{
auto_ptr_char code((status.getStatusCode() ? status.getStatusCode()->getValue() : nullptr));
auto_ptr_char str((status.getStatusMessage() ? status.getStatusMessage()->getMessage() : nullptr));
Category::getInstance(SAML_LOGCAT".SOAPClient").error(
"SOAP client detected a SAML error: (%s) (%s)",
(code.get() ? code.get() : "no code"),
(str.get() ? str.get() : "no message")
);
return m_fatal;
}
|