Convert logging to log4shib via compile time switch.
[shibboleth/opensaml2.git] / saml / saml1 / binding / impl / SAML1POSTEncoder.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  * SAML1POSTEncoder.cpp
19  * 
20  * SAML 1.x POST binding/profile message encoder
21  */
22
23 #include "internal.h"
24 #include "exceptions.h"
25 #include "binding/MessageEncoder.h"
26 #include "signature/ContentReference.h"
27 #include "saml1/core/Protocols.h"
28
29 #include <fstream>
30 #include <sstream>
31 #include <xercesc/util/Base64.hpp>
32 #include <xmltooling/logging.h>
33 #include <xmltooling/util/NDC.h>
34 #include <xmltooling/util/TemplateEngine.h>
35
36 using namespace opensaml::saml1p;
37 using namespace opensaml::saml2md;
38 using namespace opensaml;
39 using namespace xmlsignature;
40 using namespace xmltooling::logging;
41 using namespace xmltooling;
42 using namespace std;
43
44 namespace opensaml {
45     namespace saml1p {              
46         class SAML_DLLLOCAL SAML1POSTEncoder : public MessageEncoder
47         {
48         public:
49             SAML1POSTEncoder(const DOMElement* e, const XMLCh* ns);
50             virtual ~SAML1POSTEncoder() {}
51             
52             long encode(
53                 GenericResponse& genericResponse,
54                 XMLObject* xmlObject,
55                 const char* destination,
56                 const EntityDescriptor* recipient=NULL,
57                 const char* relayState=NULL,
58                 const ArtifactGenerator* artifactGenerator=NULL,
59                 const Credential* credential=NULL,
60                 const XMLCh* signatureAlg=NULL,
61                 const XMLCh* digestAlg=NULL
62                 ) const;
63
64         protected:
65             /** Pathname of HTML template for transmission of message via POST. */
66             string m_template;
67         };
68
69         MessageEncoder* SAML_DLLLOCAL SAML1POSTEncoderFactory(const pair<const DOMElement*,const XMLCh*>& p)
70         {
71             return new SAML1POSTEncoder(p.first, p.second);
72         }
73     };
74 };
75
76 static const XMLCh _template[] = UNICODE_LITERAL_8(t,e,m,p,l,a,t,e);
77
78 SAML1POSTEncoder::SAML1POSTEncoder(const DOMElement* e, const XMLCh* ns)
79 {
80     if (e) {
81         auto_ptr_char t(e->getAttributeNS(ns, _template));
82         if (t.get() && *t.get())
83             m_template = t.get();
84     }
85     if (m_template.empty())
86         throw XMLToolingException("SAML1POSTEncoder requires template XML attribute.");
87 }
88
89 long SAML1POSTEncoder::encode(
90     GenericResponse& genericResponse,
91     XMLObject* xmlObject,
92     const char* destination,
93     const EntityDescriptor* recipient,
94     const char* relayState,
95     const ArtifactGenerator* artifactGenerator,
96     const Credential* credential,
97     const XMLCh* signatureAlg,
98     const XMLCh* digestAlg
99     ) const
100 {
101 #ifdef _DEBUG
102     xmltooling::NDC ndc("encode");
103 #endif
104     Category& log = Category::getInstance(SAML_LOGCAT".MessageEncoder.SAML1POST");
105
106     log.debug("validating input");
107     if (xmlObject->getParent())
108         throw BindingException("Cannot encode XML content with parent.");
109     Response* response = dynamic_cast<Response*>(xmlObject);
110     if (!response)
111         throw BindingException("XML content for SAML 1.x POST Encoder must be a SAML 1.x <Response>.");
112     if (!relayState)
113         throw BindingException("SAML 1.x POST Encoder requires relay state (TARGET) value.");
114     
115     DOMElement* rootElement = NULL;
116     if (credential) {
117         // Signature based on native XML signing.
118         if (response->getSignature()) {
119             log.debug("response already signed, skipping signature operation");
120         }
121         else {
122             log.debug("signing and marshalling the response");
123
124             // Build a Signature.
125             Signature* sig = SignatureBuilder::buildSignature();
126             response->setSignature(sig);
127             if (signatureAlg)
128                 sig->setSignatureAlgorithm(signatureAlg);
129             if (digestAlg) {
130                 opensaml::ContentReference* cr = dynamic_cast<opensaml::ContentReference*>(sig->getContentReference());
131                 if (cr)
132                     cr->setDigestAlgorithm(digestAlg);
133             }
134     
135             // Sign response while marshalling.
136             vector<Signature*> sigs(1,sig);
137             rootElement = response->marshall((DOMDocument*)NULL,&sigs,credential);
138         }
139     }
140     else {
141         log.debug("marshalling the response");
142         rootElement = response->marshall();
143     }
144     
145     string xmlbuf;
146     XMLHelper::serialize(rootElement, xmlbuf);
147     unsigned int len=0;
148     XMLByte* out=Base64::encode(reinterpret_cast<const XMLByte*>(xmlbuf.data()),xmlbuf.size(),&len);
149     if (out) {
150         xmlbuf.erase();
151         xmlbuf.append(reinterpret_cast<char*>(out),len);
152         XMLString::release(&out);
153     }
154     else {
155         throw BindingException("Base64 encoding of XML failed.");
156     }
157
158     // Push message into template and send result to client.
159     log.debug("message encoded, sending HTML form template to client");
160     TemplateEngine* engine = XMLToolingConfig::getConfig().getTemplateEngine();
161     if (!engine)
162         throw BindingException("Encoding response using POST requires a TemplateEngine instance.");
163     ifstream infile(m_template.c_str());
164     if (!infile)
165         throw BindingException("Failed to open HTML template for POST response ($1).", params(1,m_template.c_str()));
166     TemplateEngine::TemplateParameters params;
167     params.m_map["action"] = destination;
168     params.m_map["SAMLResponse"] = xmlbuf;
169     params.m_map["TARGET"] = relayState;
170     stringstream s;
171     engine->run(infile, s, params);
172     genericResponse.setContentType("text/html");
173     long ret = genericResponse.sendResponse(s);
174
175     // Cleanup by destroying XML.
176     delete xmlObject;
177     return ret;
178 }