3d4cb42f7df991fab39e239d4efd0f0715b973af
[shibboleth/cpp-opensaml.git] / saml / saml2 / binding / impl / SAML2POSTDecoder.cpp
1 /*
2  *  Copyright 2001-2006 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/HTTPRequest.h"
26 #include "saml2/binding/SAML2POSTDecoder.h"
27 #include "saml2/core/Protocols.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::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         MessageDecoder* SAML_DLLLOCAL SAML2POSTDecoderFactory(const DOMElement* const & e)
47         {
48             return new SAML2POSTDecoder(e);
49         }
50     };
51 };
52
53 SAML2POSTDecoder::SAML2POSTDecoder(const DOMElement* e) {}
54
55 SAML2POSTDecoder::~SAML2POSTDecoder() {}
56
57 saml2::RootObject* SAML2POSTDecoder::decode(
58     std::string& relayState,
59     const GenericRequest& genericRequest,
60     SecurityPolicy& policy
61     ) const
62 {
63 #ifdef _DEBUG
64     xmltooling::NDC ndc("decode");
65 #endif
66     Category& log = Category::getInstance(SAML_LOGCAT".MessageDecoder.SAML2POST");
67
68     log.debug("validating input");
69     const HTTPRequest* httpRequest=dynamic_cast<const HTTPRequest*>(&genericRequest);
70     if (!httpRequest) {
71         log.error("unable to cast request to HTTPRequest type");
72         return NULL;
73     }
74     if (strcmp(httpRequest->getMethod(),"POST"))
75         return NULL;
76     const char* msg = httpRequest->getParameter("SAMLResponse");
77     if (!msg)
78         msg = httpRequest->getParameter("SAMLRequest");
79     if (!msg)
80         return NULL;
81     const char* state = httpRequest->getParameter("RelayState");
82     if (state)
83         relayState = state;
84     else
85         relayState.erase();
86
87     // Decode the base64 into SAML.
88     unsigned int x;
89     XMLByte* decoded=Base64::decode(reinterpret_cast<const XMLByte*>(msg),&x);
90     if (!decoded)
91         throw BindingException("Unable to decode base64 in POST binding message.");
92     log.debug("decoded SAML message:\n%s", decoded);
93     istringstream is(reinterpret_cast<char*>(decoded));
94     XMLString::release(&decoded);
95     
96     // Parse and bind the document into an XMLObject.
97     DOMDocument* doc = (m_validate ? XMLToolingConfig::getConfig().getValidatingParser()
98         : XMLToolingConfig::getConfig().getParser()).parse(is); 
99     XercesJanitor<DOMDocument> janitor(doc);
100     auto_ptr<XMLObject> xmlObject(XMLObjectBuilder::buildOneFromElement(doc->getDocumentElement(), true));
101     janitor.release();
102
103     saml2::RootObject* root = dynamic_cast<saml2::RootObject*>(xmlObject.get());
104     if (!root)
105         throw BindingException("XML content for SAML 2.0 HTTP-POST Decoder must be a SAML 2.0 protocol message.");
106     
107     try {
108         if (!m_validate)
109             SchemaValidators.validate(xmlObject.get());
110         
111         // Run through the policy.
112         policy.evaluate(genericRequest, *root);
113     }
114     catch (XMLToolingException& ex) {
115         // This is just to maximize the likelihood of attaching a source to the message for support purposes.
116         if (policy.getIssuerMetadata())
117             annotateException(&ex,policy.getIssuerMetadata()); // throws it
118
119         const Issuer* claimedIssuer = root->getIssuer();
120         if (!claimedIssuer) {
121             // Check for assertions.
122             const Response* assbag = dynamic_cast<Response*>(root);
123             if (assbag) {
124                 const vector<Assertion*>& assertions=assbag->getAssertions();
125                 if (!assertions.empty())
126                     claimedIssuer = assertions.front()->getIssuer();
127             }
128         }
129     
130         if (!claimedIssuer || !claimedIssuer->getName())
131             throw;
132         const EntityDescriptor* provider=NULL;
133         if (!policy.getMetadataProvider() ||
134                 !(provider=policy.getMetadataProvider()->getEntityDescriptor(claimedIssuer->getName(), false))) {
135             // Just record it.
136             auto_ptr_char iname(claimedIssuer->getName());
137             if (iname.get())
138                 ex.addProperty("entityID", iname.get());
139             throw;
140         }
141
142         if (policy.getRole()) {
143             const RoleDescriptor* roledesc=provider->getRoleDescriptor(*(policy.getRole()), samlconstants::SAML20P_NS);
144             if (roledesc) annotateException(&ex,roledesc); // throws it
145         }
146         annotateException(&ex,provider);  // throws it
147     }
148
149     xmlObject.release();
150     return root;
151 }