Major revamp of credential and trust handling code, PKIX engine still needs work.
[shibboleth/cpp-opensaml.git] / saml / saml1 / binding / impl / SAML1SOAPEncoder.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  * SAML1SOAPEncoder.cpp
19  * 
20  * SAML 1.x SOAP binding message encoder
21  */
22
23 #include "internal.h"
24 #include "exceptions.h"
25 #include "binding/HTTPResponse.h"
26 #include "binding/MessageEncoder.h"
27 #include "saml1/core/Protocols.h"
28
29 #include <sstream>
30 #include <log4cpp/Category.hh>
31 #include <xmltooling/util/NDC.h>
32 #include <xmltooling/soap/SOAP.h>
33
34 using namespace opensaml::saml1p;
35 using namespace opensaml;
36 using namespace xmlsignature;
37 using namespace soap11;
38 using namespace xmltooling;
39 using namespace log4cpp;
40 using namespace std;
41
42 namespace opensaml {
43     namespace saml1p {              
44         class SAML_DLLLOCAL SAML1SOAPEncoder : public MessageEncoder
45         {
46         public:
47             SAML1SOAPEncoder(const DOMElement* e) {}
48             virtual ~SAML1SOAPEncoder() {}
49             
50             long encode(
51                 GenericResponse& genericResponse,
52                 XMLObject* xmlObject,
53                 const char* destination,
54                 const char* recipientID=NULL,
55                 const char* relayState=NULL,
56                 const Credential* credential=NULL,
57                 const XMLCh* sigAlgorithm=NULL
58                 ) const;
59         };
60
61         MessageEncoder* SAML_DLLLOCAL SAML1SOAPEncoderFactory(const DOMElement* const & e)
62         {
63             return new SAML1SOAPEncoder(e);
64         }
65     };
66 };
67
68 long SAML1SOAPEncoder::encode(
69     GenericResponse& genericResponse,
70     XMLObject* xmlObject,
71     const char* destination,
72     const char* recipientID,
73     const char* relayState,
74     const Credential* credential,
75     const XMLCh* sigAlgorithm
76     ) const
77 {
78 #ifdef _DEBUG
79     xmltooling::NDC ndc("encode");
80 #endif
81     Category& log = Category::getInstance(SAML_LOGCAT".MessageEncoder.SAML1SOAP");
82
83     log.debug("validating input");
84     if (xmlObject->getParent())
85         throw BindingException("Cannot encode XML content with parent.");
86
87     genericResponse.setContentType("text/xml");
88     HTTPResponse* httpResponse = dynamic_cast<HTTPResponse*>(&genericResponse);
89     if (httpResponse) {
90         httpResponse->setResponseHeader("Cache-Control", "no-cache, no-store, must-revalidate, private");
91         httpResponse->setResponseHeader("Pragma", "no-cache");
92     }
93
94     DOMElement* rootElement = NULL;
95     Response* response = dynamic_cast<Response*>(xmlObject);
96     if (response) {
97         try {
98             Envelope* env = EnvelopeBuilder::buildEnvelope();
99             Body* body = BodyBuilder::buildBody();
100             env->setBody(body);
101             body->getUnknownXMLObjects().push_back(response);
102             if (credential) {
103                 if (response->getSignature()) {
104                     log.debug("response already signed, skipping signature operation");
105                     rootElement = env->marshall();
106                 }
107                 else {
108                     log.debug("signing and marshalling the response");
109         
110                     // Build a Signature.
111                     Signature* sig = SignatureBuilder::buildSignature();
112                     response->setSignature(sig);    
113                     if (sigAlgorithm)
114                         sig->setSignatureAlgorithm(sigAlgorithm);
115             
116                     // Sign response while marshalling.
117                     vector<Signature*> sigs(1,sig);
118                     rootElement = env->marshall((DOMDocument*)NULL,&sigs,credential);
119                 }
120             }
121             else {
122                 log.debug("marshalling the response");
123                 rootElement = env->marshall();
124             }
125             
126             stringstream s;
127             s << *rootElement;
128             log.debug("sending serialized response");
129             long ret = genericResponse.sendResponse(s);
130         
131             // Cleanup by destroying XML.
132             delete env;
133             return ret;
134         }
135         catch (XMLToolingException&) {
136             // A bit weird...we have to "revert" things so that the response is isolated
137             // so the caller can free it.
138             if (response->getParent()) {
139                 response->getParent()->detach();
140                 response->detach();
141             }
142             throw;
143         }
144     }
145
146     Fault* fault = dynamic_cast<Fault*>(xmlObject);
147     if (fault) {
148         try {
149             log.debug("building Envelope and marshalling Fault");
150             Envelope* env = EnvelopeBuilder::buildEnvelope();
151             Body* body = BodyBuilder::buildBody();
152             env->setBody(body);
153             body->getUnknownXMLObjects().push_back(fault);
154             rootElement = env->marshall();
155     
156             string xmlbuf;
157             XMLHelper::serialize(rootElement, xmlbuf);
158             istringstream s(xmlbuf);
159             log.debug("sending serialized fault");
160             long ret = genericResponse.sendError(s);
161         
162             // Cleanup by destroying XML.
163             delete env;
164             return ret;
165         }
166         catch (XMLToolingException&) {
167             // A bit weird...we have to "revert" things so that the fault is isolated
168             // so the caller can free it.
169             if (fault->getParent()) {
170                 fault->getParent()->detach();
171                 fault->detach();
172             }
173             throw;
174         }
175     }
176
177     Envelope* env = dynamic_cast<Envelope*>(xmlObject);
178     if (env) {
179         log.debug("marshalling envelope");
180         rootElement = env->marshall();
181
182         bool error =
183             (env->getBody() &&
184                 env->getBody()->hasChildren() &&
185                     dynamic_cast<Fault*>(env->getBody()->getUnknownXMLObjects().front()));
186
187         string xmlbuf;
188         XMLHelper::serialize(rootElement, xmlbuf);
189         istringstream s(xmlbuf);
190         log.debug("sending serialized envelope");
191         long ret = error ? genericResponse.sendError(s) : genericResponse.sendResponse(s);
192     
193         // Cleanup by destroying XML.
194         delete env;
195         return ret;
196     }
197
198     throw BindingException("XML content for SAML 1.x SOAP Encoder must be a SAML 1.x <Response> or SOAP Fault/Envelope.");
199 }