Convert from NULL macro to nullptr, remove unused zlib code.
[shibboleth/cpp-opensaml.git] / saml / saml2 / binding / impl / SAML2POSTDecoder.cpp
1 /*
2  *  Copyright 2001-2010 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  * SAML2POSTDecoder.cpp
19  * 
20  * SAML 2.0 HTTP POST binding message encoder.
21  */
22
23 #include "internal.h"
24 #include "exceptions.h"
25 #include "binding/SecurityPolicy.h"
26 #include "saml2/binding/SAML2MessageDecoder.h"
27 #include "saml2/core/Protocols.h"
28 #include "saml2/metadata/Metadata.h"
29 #include "saml2/metadata/MetadataProvider.h"
30
31 #include <xercesc/framework/MemBufInputSource.hpp>
32 #include <xercesc/framework/Wrapper4InputSource.hpp>
33 #include <xercesc/util/Base64.hpp>
34 #include <xmltooling/logging.h>
35 #include <xmltooling/XMLToolingConfig.h>
36 #include <xmltooling/io/HTTPRequest.h>
37 #include <xmltooling/util/NDC.h>
38 #include <xmltooling/util/ParserPool.h>
39 #include <xmltooling/validation/ValidatorSuite.h>
40
41 using namespace opensaml::saml2md;
42 using namespace opensaml::saml2p;
43 using namespace opensaml::saml2;
44 using namespace opensaml;
45 using namespace xmltooling::logging;
46 using namespace xmltooling;
47 using namespace std;
48
49 namespace opensaml {
50     namespace saml2p {              
51         class SAML_DLLLOCAL SAML2POSTDecoder : public SAML2MessageDecoder
52         {
53         public:
54             SAML2POSTDecoder() {}
55             virtual ~SAML2POSTDecoder() {}
56             
57             xmltooling::XMLObject* decode(
58                 std::string& relayState,
59                 const GenericRequest& genericRequest,
60                 SecurityPolicy& policy
61                 ) const;
62         };                
63
64         MessageDecoder* SAML_DLLLOCAL SAML2POSTDecoderFactory(const pair<const DOMElement*,const XMLCh*>& p)
65         {
66             return new SAML2POSTDecoder();
67         }
68     };
69 };
70
71 XMLObject* SAML2POSTDecoder::decode(
72     std::string& relayState,
73     const GenericRequest& genericRequest,
74     SecurityPolicy& policy
75     ) const
76 {
77 #ifdef _DEBUG
78     xmltooling::NDC ndc("decode");
79 #endif
80     Category& log = Category::getInstance(SAML_LOGCAT".MessageDecoder.SAML2POST");
81
82     log.debug("validating input");
83     const HTTPRequest* httpRequest=dynamic_cast<const HTTPRequest*>(&genericRequest);
84     if (!httpRequest)
85         throw BindingException("Unable to cast request object to HTTPRequest type.");
86     if (strcmp(httpRequest->getMethod(),"POST"))
87         throw BindingException("Invalid HTTP method ($1).", params(1, httpRequest->getMethod()));
88     const char* msg = httpRequest->getParameter("SAMLResponse");
89     if (!msg)
90         msg = httpRequest->getParameter("SAMLRequest");
91     if (!msg)
92         throw BindingException("Request missing SAMLRequest or SAMLResponse form parameter.");
93     const char* state = httpRequest->getParameter("RelayState");
94     if (state)
95         relayState = state;
96     else
97         relayState.erase();
98
99     // Decode the base64 into SAML.
100     xsecsize_t x;
101     XMLByte* decoded=Base64::decode(reinterpret_cast<const XMLByte*>(msg),&x);
102     if (!decoded)
103         throw BindingException("Unable to decode base64 in POST binding message.");
104     log.debugStream() << "decoded SAML message:\n" << decoded << logging::eol;
105     
106     // Parse and bind the document into an XMLObject.
107     MemBufInputSource src(decoded, x, "SAMLMessage", true);
108     Wrapper4InputSource dsrc(&src, false);
109     DOMDocument* doc = (policy.getValidating() ? XMLToolingConfig::getConfig().getValidatingParser()
110         : XMLToolingConfig::getConfig().getParser()).parse(dsrc); 
111     XercesJanitor<DOMDocument> janitor(doc);
112     auto_ptr<XMLObject> xmlObject(XMLObjectBuilder::buildOneFromElement(doc->getDocumentElement(), true));
113     janitor.release();
114
115     saml2::RootObject* root = nullptr;
116     StatusResponseType* response = nullptr;
117     RequestAbstractType* request = dynamic_cast<RequestAbstractType*>(xmlObject.get());
118     if (!request) {
119         response = dynamic_cast<StatusResponseType*>(xmlObject.get());
120         if (!response)
121             throw BindingException("XML content for SAML 2.0 HTTP-POST Decoder must be a SAML 2.0 protocol message.");
122         root = static_cast<saml2::RootObject*>(response);
123     }
124     else {
125         root = static_cast<saml2::RootObject*>(request);
126     }
127     
128     SchemaValidators.validate(root);
129
130     // Run through the policy.
131     extractMessageDetails(*root, genericRequest, samlconstants::SAML20P_NS, policy);
132     policy.evaluate(*root, &genericRequest);
133     
134     // Check destination URL.
135     auto_ptr_char dest(request ? request->getDestination() : response->getDestination());
136     const char* dest2 = httpRequest->getRequestURL();
137     const char* delim = strchr(dest2, '?');
138     if ((root->getSignature() || httpRequest->getParameter("Signature")) && (!dest.get() || !*(dest.get()))) {
139         log.error("signed SAML message missing Destination attribute");
140         throw BindingException("Signed SAML message missing Destination attribute identifying intended destination.");
141     }
142     else if (dest.get() && *dest.get() && ((delim && strncmp(dest.get(), dest2, delim - dest2)) || (!delim && strcmp(dest.get(),dest2)))) {
143         log.error("POST targeted at (%s), but delivered to (%s)", dest.get(), dest2);
144         throw BindingException("SAML message delivered with POST to incorrect server URL.");
145     }
146     
147     return xmlObject.release();
148 }