Moved URLEncoder down to tooling lib, added exception->querystring method.
[shibboleth/cpp-opensaml.git] / saml / saml2 / binding / impl / SAML2ArtifactEncoder.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  * SAML2ArtifactEncoder.cpp
19  * 
20  * SAML 2.0 HTTP-Artifact binding message encoder
21  */
22
23 #include "internal.h"
24 #include "exceptions.h"
25 #include "binding/ArtifactMap.h"
26 #include "binding/HTTPResponse.h"
27 #include "binding/MessageEncoder.h"
28 #include "saml2/binding/SAML2Artifact.h"
29 #include "saml2/core/Protocols.h"
30
31 #include <fstream>
32 #include <sstream>
33 #include <log4cpp/Category.hh>
34 #include <xmltooling/util/NDC.h>
35 #include <xmltooling/util/TemplateEngine.h>
36 #include <xmltooling/util/URLEncoder.h>
37
38 using namespace opensaml::saml2p;
39 using namespace opensaml;
40 using namespace xmlsignature;
41 using namespace xmltooling;
42 using namespace log4cpp;
43 using namespace std;
44
45 namespace opensaml {
46     namespace saml2p {              
47         class SAML_DLLLOCAL SAML2ArtifactEncoder : public MessageEncoder
48         {
49         public:
50             SAML2ArtifactEncoder(const DOMElement* e);
51             virtual ~SAML2ArtifactEncoder() {}
52             
53             long encode(
54                 GenericResponse& genericResponse,
55                 xmltooling::XMLObject* xmlObject,
56                 const char* destination,
57                 const char* recipientID=NULL,
58                 const char* relayState=NULL,
59                 const xmltooling::CredentialResolver* credResolver=NULL,
60                 const XMLCh* sigAlgorithm=NULL
61                 ) const;
62         
63         private:
64             std::string m_template; 
65         };
66
67         MessageEncoder* SAML_DLLLOCAL SAML2ArtifactEncoderFactory(const DOMElement* const & e)
68         {
69             return new SAML2ArtifactEncoder(e);
70         }
71     };
72 };
73
74 static const XMLCh _template[] = UNICODE_LITERAL_8(t,e,m,p,l,a,t,e);
75
76 SAML2ArtifactEncoder::SAML2ArtifactEncoder(const DOMElement* e)
77 {
78     if (e) {
79         auto_ptr_char t(e->getAttributeNS(NULL, _template));
80         if (t.get())
81             m_template = t.get();
82     }
83 }
84
85 long SAML2ArtifactEncoder::encode(
86     GenericResponse& genericResponse,
87     xmltooling::XMLObject* xmlObject,
88     const char* destination,
89     const char* recipientID,
90     const char* relayState,
91     const CredentialResolver* credResolver,
92     const XMLCh* sigAlgorithm
93     ) const
94 {
95 #ifdef _DEBUG
96     xmltooling::NDC ndc("encode");
97 #endif
98     Category& log = Category::getInstance(SAML_LOGCAT".MessageEncoder.SAML2Artifact");
99
100     log.debug("validating input");
101     HTTPResponse* httpResponse=dynamic_cast<HTTPResponse*>(&genericResponse);
102     if (!httpResponse)
103         throw BindingException("Unable to cast response interface to HTTPResponse type.");
104     if (relayState && strlen(relayState)>80)
105         throw BindingException("RelayState cannot exceed 80 bytes in length.");
106     
107     if (xmlObject->getParent())
108         throw BindingException("Cannot encode XML content with parent.");
109
110     StatusResponseType* response = NULL;
111     RequestAbstractType* request = dynamic_cast<RequestAbstractType*>(xmlObject);
112     if (!request)
113         response = dynamic_cast<StatusResponseType*>(xmlObject);
114     if (!response)
115         throw BindingException("XML content for SAML 2.0 HTTP-Artifact Encoder must be a SAML 2.0 protocol message.");
116     
117     ArtifactMap* mapper = SAMLConfig::getConfig().getArtifactMap();
118     if (!mapper)
119         throw BindingException("SAML 2.0 HTTP-Artifact Encoder requires ArtifactMap be set in configuration.");
120
121     // Obtain a fresh artifact.
122     if (!m_artifactGenerator)
123         throw BindingException("SAML 2.0 HTTP-Artifact Encoder requires an ArtifactGenerator instance.");
124     log.debug("obtaining new artifact for relying party (%s)", recipientID ? recipientID : "unknown");
125     auto_ptr<SAMLArtifact> artifact(m_artifactGenerator->generateSAML2Artifact(recipientID));
126
127     if (credResolver) {
128         // Signature based on native XML signing.
129         if (request ? request->getSignature() : response->getSignature()) {
130             log.debug("message already signed, skipping signature operation");
131         }
132         else {
133             log.debug("signing the message");
134
135             // Build a Signature.
136             Signature* sig = buildSignature(credResolver, sigAlgorithm);
137             
138             // Append Signature.
139             request ? request->setSignature(sig) : response->setSignature(sig);    
140         
141             // Sign response while marshalling.
142             vector<Signature*> sigs(1,sig);
143             xmlObject->marshall((DOMDocument*)NULL,&sigs);
144         }
145     }
146     
147     // Store the message. Last step in storage will be to delete the XML.
148     log.debug("storing artifact and content in map");
149     mapper->storeContent(xmlObject, artifact.get(), recipientID);
150
151     if (m_template.empty()) {
152         // Generate redirect.
153         string loc = destination;
154         loc += (strchr(destination,'?') ? '&' : '?');
155         const URLEncoder* escaper = XMLToolingConfig::getConfig().getURLEncoder();
156         loc = loc + "SAMLart=" + escaper->encode(artifact->encode().c_str());
157         if (relayState)
158             loc = loc + "&RelayState=" + escaper->encode(relayState);
159         log.debug("message encoded, sending redirect to client");
160         return httpResponse->sendRedirect(loc.c_str());
161     }
162     else {
163         // Push message into template and send result to client. 
164         log.debug("message encoded, sending HTML form template to client");
165         TemplateEngine* engine = XMLToolingConfig::getConfig().getTemplateEngine();
166         if (!engine)
167             throw BindingException("Encoding artifact using POST requires a TemplateEngine instance.");
168         ifstream infile(m_template.c_str());
169         if (!infile)
170             throw BindingException("Failed to open HTML template for POST response ($1).", params(1,m_template.c_str()));
171         TemplateEngine::TemplateParameters params;
172         params.m_map["action"] = destination;
173         params.m_map["SAMLart"] = artifact->encode();
174         if (relayState)
175             params.m_map["RelayState"] = relayState;
176         stringstream s;
177         engine->run(infile, s, params);
178         httpResponse->setContentType("text/html");
179         return httpResponse->sendResponse(s);
180     }
181 }