Add XML validation flag to policy.
[shibboleth/cpp-opensaml.git] / saml / saml1 / binding / impl / SAML1POSTDecoder.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  * SAML1POSTDecoder.cpp
19  * 
20  * SAML 1.x POST binding/profile message decoder
21  */
22
23 #include "internal.h"
24 #include "exceptions.h"
25 #include "binding/HTTPRequest.h"
26 #include "saml1/core/Assertions.h"
27 #include "saml1/binding/SAML1POSTDecoder.h"
28 #include "saml2/metadata/Metadata.h"
29 #include "saml2/metadata/MetadataProvider.h"
30
31 #include <log4cpp/Category.hh>
32 #include <xercesc/util/Base64.hpp>
33 #include <xmltooling/util/NDC.h>
34 #include <xmltooling/validation/ValidatorSuite.h>
35
36 using namespace opensaml::saml2md;
37 using namespace opensaml::saml1p;
38 using namespace opensaml::saml1;
39 using namespace opensaml;
40 using namespace xmltooling;
41 using namespace log4cpp;
42 using namespace std;
43
44 namespace opensaml {
45     namespace saml1p {              
46         MessageDecoder* SAML_DLLLOCAL SAML1POSTDecoderFactory(const DOMElement* const & e)
47         {
48             return new SAML1POSTDecoder(e);
49         }
50     };
51 };
52
53 SAML1POSTDecoder::SAML1POSTDecoder(const DOMElement* e) {}
54
55 XMLObject* SAML1POSTDecoder::decode(
56     string& relayState,
57     const GenericRequest& genericRequest,
58     SecurityPolicy& policy
59     ) const
60 {
61 #ifdef _DEBUG
62     xmltooling::NDC ndc("decode");
63 #endif
64     Category& log = Category::getInstance(SAML_LOGCAT".MessageDecoder.SAML1POST");
65
66     log.debug("validating input");
67     const HTTPRequest* httpRequest=dynamic_cast<const HTTPRequest*>(&genericRequest);
68     if (!httpRequest) {
69         log.error("unable to cast request to HTTPRequest type");
70         return NULL;
71     }
72     if (strcmp(httpRequest->getMethod(),"POST"))
73         return NULL;
74     const char* samlResponse = httpRequest->getParameter("SAMLResponse");
75     const char* TARGET = httpRequest->getParameter("TARGET");
76     if (!samlResponse || !TARGET)
77         return NULL;
78     relayState = TARGET;
79
80     // Decode the base64 into SAML.
81     unsigned int x;
82     XMLByte* decoded=Base64::decode(reinterpret_cast<const XMLByte*>(samlResponse),&x);
83     if (!decoded)
84         throw BindingException("Unable to decode base64 in POST profile response.");
85     log.debug("decoded SAML response:\n%s", decoded);
86     istringstream is(reinterpret_cast<char*>(decoded));
87     XMLString::release(&decoded);
88     
89     // Parse and bind the document into an XMLObject.
90     DOMDocument* doc = (policy.getValidating() ? XMLToolingConfig::getConfig().getValidatingParser()
91         : XMLToolingConfig::getConfig().getParser()).parse(is); 
92     XercesJanitor<DOMDocument> janitor(doc);
93     auto_ptr<XMLObject> xmlObject(XMLObjectBuilder::buildOneFromElement(doc->getDocumentElement(), true));
94     janitor.release();
95
96     Response* response = dynamic_cast<Response*>(xmlObject.get());
97     if (!response)
98         throw BindingException("Decoded message was not a SAML 1.x Response.");
99
100     if (!policy.getValidating())
101         SchemaValidators.validate(xmlObject.get());
102
103     // Run through the policy.
104     policy.evaluate(*response, &genericRequest);
105     
106     // Check recipient URL.
107     auto_ptr_char recipient(response->getRecipient());
108     const char* recipient2 = httpRequest->getRequestURL();
109     if (!recipient.get() || !*(recipient.get())) {
110         log.error("response missing Recipient attribute");
111         throw BindingException("SAML response did not contain Recipient attribute identifying intended destination.");
112     }
113     else if (!recipient2 || !*recipient2 || strcmp(recipient.get(),recipient2)) {
114         log.error("POST targeted at (%s), but delivered to (%s)", recipient.get(), recipient2 ? recipient2 : "none");
115         throw BindingException("SAML message delivered with POST to incorrect server URL.");
116     }
117     
118     return xmlObject.release();
119 }