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