Multi-line svn commit, see body.
[shibboleth/cpp-opensaml.git] / saml / saml1 / binding / impl / SAML1MessageDecoder.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  * SAML1MessageDecoder.cpp
19  * 
20  * Base class for SAML 1.x MessageDecoders.
21  */
22
23 #include "internal.h"
24 #include "exceptions.h"
25 #include "saml1/binding/SAML1MessageDecoder.h"
26 #include "saml1/core/Assertions.h"
27 #include "saml1/core/Protocols.h"
28 #include "saml2/metadata/Metadata.h"
29 #include "saml2/metadata/MetadataProvider.h"
30
31 #include <xmltooling/logging.h>
32
33 using namespace opensaml::saml2md;
34 using namespace opensaml::saml1p;
35 using namespace opensaml::saml1;
36 using namespace opensaml;
37 using namespace xmltooling::logging;
38 using namespace xmltooling;
39 using namespace std;
40
41 void SAML1MessageDecoder::extractMessageDetails(
42     const XMLObject& message, const GenericRequest& req, const XMLCh* protocol, SecurityPolicy& policy
43     ) const
44 {
45     // Only handle SAML 1.x protocol messages.
46     const QName& q = message.getElementQName();
47     if (!XMLString::equals(q.getNamespaceURI(), samlconstants::SAML1P_NS))
48         return;
49
50     Category& log = Category::getInstance(SAML_LOGCAT".MessageDecoder.SAML1");
51
52     const Request* request=NULL;
53     const Response* response=NULL;
54     if (XMLString::equals(q.getLocalPart(), Request::LOCAL_NAME))
55         request = dynamic_cast<const Request*>(&message);
56     if (!request && XMLString::equals(q.getLocalPart(), Response::LOCAL_NAME))
57         response = dynamic_cast<const Response*>(&message);
58
59     if (!request && !response) {
60         log.warn("decoder cannot extract details from non-SAML 1.x protocol message");
61         return;
62     }
63
64     const RootObject* root = request ? static_cast<const RootObject*>(request) : static_cast<const RootObject*>(response);
65
66     // Extract message details.
67     policy.setMessageID(root->getID());
68     policy.setIssueInstant(root->getIssueInstantEpoch());
69
70     if (request) {
71         log.warn("issuer identity not extracted, only responses with assertions carry issuer information in standard SAML 1.x");
72         return;
73     }
74
75     log.debug("extracting issuer from SAML 1.x Response");
76     const vector<saml1::Assertion*>& assertions = response->getAssertions();
77     if (assertions.empty()) {
78         log.warn("issuer identity not extracted from response (no assertions were present)");
79         return;
80     }
81
82     const XMLCh* issuer = assertions.front()->getIssuer();
83     policy.setIssuer(issuer);
84     if (log.isDebugEnabled()) {
85         auto_ptr_char iname(issuer);
86         log.debug("response from (%s)", iname.get());
87     }
88
89     if (policy.getIssuerMetadata()) {
90         log.debug("metadata for issuer already set, leaving in place");
91         return;
92     }
93
94     if (policy.getMetadataProvider() && policy.getRole()) {
95         log.debug("searching metadata for response issuer...");
96         const EntityDescriptor* entity = policy.getMetadataProvider()->getEntityDescriptor(issuer);
97         if (entity) {
98             log.debug("matched response issuer against metadata, searching for applicable role...");
99             const RoleDescriptor* roledesc=entity->getRoleDescriptor(*policy.getRole(), protocol);
100             if (roledesc)
101                 policy.setIssuerMetadata(roledesc);
102             else if (log.isWarnEnabled())
103                 log.warn("unable to find compatible role (%s) in metadata", policy.getRole()->toString().c_str());
104         }
105         else if (log.isWarnEnabled()) {
106             auto_ptr_char iname(issuer);
107             log.warn("no metadata found, can't establish identity of issuer (%s)", iname.get());
108         }
109     }
110 }