Multi-line svn commit, see body.
[shibboleth/cpp-opensaml.git] / saml / binding / impl / SimpleSigningRule.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  * SimpleSigningRule.cpp
19  * 
20  * Blob-oriented signature checking SecurityPolicyRule
21  */
22
23 #include "internal.h"
24 #include "exceptions.h"
25 #include "binding/SecurityPolicyRule.h"
26 #include "saml2/core/Assertions.h"
27 #include "saml2/metadata/Metadata.h"
28 #include "saml2/metadata/MetadataCredentialCriteria.h"
29 #include "saml2/metadata/MetadataProvider.h"
30
31 #include <xercesc/util/Base64.hpp>
32 #include <xmltooling/logging.h>
33 #include <xmltooling/io/HTTPRequest.h>
34 #include <xmltooling/security/SignatureTrustEngine.h>
35
36 using namespace opensaml::saml2md;
37 using namespace opensaml;
38 using namespace xmltooling::logging;
39 using namespace xmltooling;
40 using namespace std;
41
42 using xmlsignature::KeyInfo;
43 using xmlsignature::SignatureException;
44
45 namespace opensaml {
46     class SAML_DLLLOCAL SimpleSigningRule : public SecurityPolicyRule
47     {
48     public:
49         SimpleSigningRule(const DOMElement* e);
50         virtual ~SimpleSigningRule() {}
51         
52         const char* getType() const {
53             return SIMPLESIGNING_POLICY_RULE;
54         }
55         void evaluate(const XMLObject& message, const GenericRequest* request, const XMLCh* protocol, SecurityPolicy& policy) const;
56
57     private:
58         // Appends a raw parameter=value pair to the string.
59         static bool appendParameter(string& s, const char* data, const char* name);
60
61         bool m_errorsFatal;
62     };
63
64     SecurityPolicyRule* SAML_DLLLOCAL SimpleSigningRuleFactory(const DOMElement* const & e)
65     {
66         return new SimpleSigningRule(e);
67     }
68
69     static const XMLCh errorsFatal[] = UNICODE_LITERAL_11(e,r,r,o,r,s,F,a,t,a,l);
70 };
71
72 bool SimpleSigningRule::appendParameter(string& s, const char* data, const char* name)
73 {
74     const char* start = strstr(data,name);
75     if (!start)
76         return false;
77     if (!s.empty())
78         s += '&';
79     const char* end = strchr(start,'&');
80     if (end)
81         s.append(start, end-start);
82     else
83         s.append(start);
84     return true;
85 }
86
87 SimpleSigningRule::SimpleSigningRule(const DOMElement* e) : m_errorsFatal(false)
88 {
89     if (e) {
90         const XMLCh* flag = e->getAttributeNS(NULL, errorsFatal);
91         m_errorsFatal = (flag && (*flag==chLatin_t || *flag==chDigit_1)); 
92     }
93 }
94
95 void SimpleSigningRule::evaluate(
96     const XMLObject& message, const GenericRequest* request, const XMLCh* protocol, SecurityPolicy& policy
97     ) const
98 {
99     Category& log=Category::getInstance(SAML_LOGCAT".SecurityPolicyRule.SimpleSigning");
100     
101     if (!policy.getIssuerMetadata()) {
102         log.debug("ignoring message, no issuer metadata supplied");
103         return;
104     }
105
106     const SignatureTrustEngine* sigtrust;
107     if (!(sigtrust=dynamic_cast<const SignatureTrustEngine*>(policy.getTrustEngine()))) {
108         log.debug("ignoring message, no SignatureTrustEngine supplied");
109         return;
110     }
111
112     const HTTPRequest* httpRequest = dynamic_cast<const HTTPRequest*>(request);
113     if (!request || !httpRequest)
114         return;
115
116     const char* signature = request->getParameter("Signature");
117     if (!signature)
118         return;
119     
120     const char* sigAlgorithm = request->getParameter("SigAlg");
121     if (!sigAlgorithm) {
122         log.error("SigAlg parameter not found, no way to verify the signature");
123         return;
124     }
125
126     string input;
127     const char* pch;
128     if (!strcmp(httpRequest->getMethod(), "GET")) {
129         // We have to construct a string containing the signature input by accessing the
130         // request directly. We can't use the decoded parameters because we need the raw
131         // data and URL-encoding isn't canonical.
132
133         // NOTE: SimpleSign for GET means Redirect binding, which means we verify over the
134         // base64-encoded message directly.
135
136         pch = httpRequest->getQueryString();
137         if (!appendParameter(input, pch, "SAMLRequest="))
138             appendParameter(input, pch, "SAMLResponse=");
139         appendParameter(input, pch, "RelayState=");
140         appendParameter(input, pch, "SigAlg=");
141     }
142     else {
143         // With POST, the input string is concatenated from the decoded form controls.
144         // GET should be this way too, but I messed up the spec, sorry.
145
146         // NOTE: SimpleSign for POST means POST binding, which means we verify over the
147         // base64-decoded XML. This sucks, because we have to decode the base64 directly.
148         // Serializing the XMLObject doesn't guarantee the signature will verify (this is
149         // why XMLSignature exists, and why this isn't really "simpler").
150
151         unsigned int x;
152         pch = httpRequest->getParameter("SAMLRequest");
153         if (pch) {
154             XMLByte* decoded=Base64::decode(reinterpret_cast<const XMLByte*>(pch),&x);
155             if (!decoded) {
156                 log.warn("unable to decode base64 in POST binding message");
157                 return;
158             }
159             input = string("SAMLRequest=") + reinterpret_cast<const char*>(decoded);
160             XMLString::release(&decoded);
161         }
162         else {
163             pch = httpRequest->getParameter("SAMLResponse");
164             XMLByte* decoded=Base64::decode(reinterpret_cast<const XMLByte*>(pch),&x);
165             if (!decoded) {
166                 log.warn("unable to decode base64 in POST binding message");
167                 return;
168             }
169             input = string("SAMLResponse=") + reinterpret_cast<const char*>(decoded);
170             XMLString::release(&decoded);
171         }
172
173         pch = httpRequest->getParameter("RelayState");
174         if (pch)
175             input = input + "&RelayState=" + pch;
176         input = input + "&SigAlg=" + sigAlgorithm;
177     }
178
179     // Check for KeyInfo, but defensively (we might be able to run without it).
180     KeyInfo* keyInfo=NULL;
181     pch = request->getParameter("KeyInfo");
182     if (pch) {
183         try {
184             istringstream kstrm(pch);
185             DOMDocument* doc = XMLToolingConfig::getConfig().getParser().parse(kstrm);
186             XercesJanitor<DOMDocument> janitor(doc);
187             XMLObject* kxml = XMLObjectBuilder::buildOneFromElement(doc->getDocumentElement(), true);
188             janitor.release();
189             if (!(keyInfo=dynamic_cast<KeyInfo*>(kxml)))
190                 delete kxml;
191         }
192         catch (XMLToolingException& ex) {
193             log.warn("Failed to load KeyInfo from message: %s", ex.what());
194         }
195     }
196     
197     auto_ptr<KeyInfo> kjanitor(keyInfo);
198     auto_ptr_XMLCh alg(sigAlgorithm);
199
200     // Set up criteria object.
201     MetadataCredentialCriteria cc(*(policy.getIssuerMetadata()));
202     cc.setXMLAlgorithm(alg.get());
203
204     if (!sigtrust->validate(alg.get(), signature, keyInfo, input.c_str(), input.length(), *(policy.getMetadataProvider()), &cc)) {
205         log.error("unable to verify message signature with supplied trust engine");
206         if (m_errorsFatal)
207             throw SignatureException("Message was signed, but signature could not be verified.");
208         return;
209     }
210
211     log.debug("signature verified against message issuer");
212     policy.setSecure(true);
213 }