e6cfbf1c1903fad3d08ecf499679e838cbf0606b
[shibboleth/cpp-opensaml.git] / saml / saml1 / binding / impl / SAML1SOAPDecoder.cpp
1 /**
2  * Licensed to the University Corporation for Advanced Internet
3  * Development, Inc. (UCAID) under one or more contributor license
4  * agreements. See the NOTICE file distributed with this work for
5  * additional information regarding copyright ownership.
6  *
7  * UCAID licenses this file to you under the Apache License,
8  * Version 2.0 (the "License"); you may not use this file except
9  * in compliance with the License. You may obtain a copy of the
10  * License at
11  *
12  * http://www.apache.org/licenses/LICENSE-2.0
13  *
14  * Unless required by applicable law or agreed to in writing,
15  * software distributed under the License is distributed on an
16  * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND,
17  * either express or implied. See the License for the specific
18  * language governing permissions and limitations under the License.
19  */
20
21 /**
22  * SAML1SOAPDecoder.cpp
23  * 
24  * SAML 1.x SOAP binding message decoder.
25  */
26
27 #include "internal.h"
28 #include "exceptions.h"
29 #include "binding/SecurityPolicy.h"
30 #include "saml1/binding/SAML1MessageDecoder.h"
31 #include "saml1/core/Protocols.h"
32
33 #include <xmltooling/logging.h>
34 #include <xmltooling/XMLToolingConfig.h>
35 #include <xmltooling/io/GenericRequest.h>
36 #include <xmltooling/soap/SOAP.h>
37 #include <xmltooling/util/NDC.h>
38 #include <xmltooling/util/ParserPool.h>
39 #include <xmltooling/validation/ValidatorSuite.h>
40
41 using namespace opensaml::saml1p;
42 using namespace opensaml;
43 using namespace soap11;
44 using namespace xmltooling::logging;
45 using namespace xmltooling;
46 using namespace std;
47
48 namespace opensaml {
49     namespace saml1p {              
50         class SAML_DLLLOCAL SAML1SOAPDecoder : public SAML1MessageDecoder
51         {
52         public:
53             SAML1SOAPDecoder() {}
54             virtual ~SAML1SOAPDecoder() {}
55
56             bool isUserAgentPresent() const {
57                 return false;
58             }
59
60             xmltooling::XMLObject* decode(
61                 std::string& relayState,
62                 const GenericRequest& genericRequest,
63                 SecurityPolicy& policy
64                 ) const;
65         };                
66
67         MessageDecoder* SAML_DLLLOCAL SAML1SOAPDecoderFactory(const pair<const DOMElement*,const XMLCh*>& p)
68         {
69             return new SAML1SOAPDecoder();
70         }
71     };
72 };
73
74 XMLObject* SAML1SOAPDecoder::decode(
75     string& relayState,
76     const GenericRequest& genericRequest,
77     SecurityPolicy& policy
78     ) const
79 {
80 #ifdef _DEBUG
81     xmltooling::NDC ndc("decode");
82 #endif
83     Category& log = Category::getInstance(SAML_LOGCAT".MessageDecoder.SAML1SOAP");
84
85     log.debug("validating input");
86     string s = genericRequest.getContentType();
87     if (s.find("text/xml") == string::npos) {
88         log.warn("ignoring incorrect content type (%s)", s.c_str() ? s.c_str() : "none");
89         throw BindingException("Invalid content type for SOAP message.");
90     }
91
92     const char* data = genericRequest.getRequestBody();
93     if (!data)
94         throw BindingException("SOAP message had an empty request body.");
95     log.debug("received message:\n%s", data);
96     istringstream is(data);
97     
98     // Parse and bind the document into an XMLObject.
99     DOMDocument* doc = (policy.getValidating() ? XMLToolingConfig::getConfig().getValidatingParser()
100         : XMLToolingConfig::getConfig().getParser()).parse(is); 
101     XercesJanitor<DOMDocument> janitor(doc);
102     auto_ptr<XMLObject> xmlObject(XMLObjectBuilder::buildOneFromElement(doc->getDocumentElement(), true));
103     janitor.release();
104
105     Envelope* env = dynamic_cast<Envelope*>(xmlObject.get());
106     if (!env)
107         throw BindingException("Decoded message was not a SOAP 1.1 Envelope.");
108
109     SchemaValidators.validate(env);
110     
111     Body* body = env->getBody();
112     if (body && body->hasChildren()) {
113         Request* request = dynamic_cast<Request*>(body->getUnknownXMLObjects().front());
114         if (request) {
115             // Run through the policy at two layers.
116             pair<bool,int> minor = request->getMinorVersion();
117             extractMessageDetails(
118                 *env,
119                 genericRequest,
120                 (minor.first && minor.second==0) ? samlconstants::SAML10_PROTOCOL_ENUM : samlconstants::SAML11_PROTOCOL_ENUM,
121                 policy
122                 );
123             policy.evaluate(*env,&genericRequest);
124
125             // Reset, extract, and run again.
126             policy.reset(true);
127             extractMessageDetails(
128                 *request,
129                 genericRequest,
130                 (minor.first && minor.second==0) ? samlconstants::SAML10_PROTOCOL_ENUM : samlconstants::SAML11_PROTOCOL_ENUM,
131                 policy
132                 );
133             policy.evaluate(*request,&genericRequest);
134             xmlObject.release();
135             body->detach(); // frees Envelope
136             request->detach();   // frees Body
137             return request;
138         }
139     }
140     
141     throw BindingException("SOAP Envelope did not contain a SAML 1.x Request.");
142 }