Fix handling of errorFatal flag in rules.
[shibboleth/cpp-opensaml.git] / saml / binding / impl / ClientCertAuthRule.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  * ClientCertAuthRule.cpp
19  * 
20  * TLS client authentication SecurityPolicyRule
21  */
22
23 #include "internal.h"
24 #include "exceptions.h"
25 #include "binding/SecurityPolicyRule.h"
26 #include "saml2/metadata/Metadata.h"
27 #include "saml2/metadata/MetadataCredentialCriteria.h"
28 #include "saml2/metadata/MetadataProvider.h"
29
30 #include <xmltooling/logging.h>
31 #include <xmltooling/security/X509TrustEngine.h>
32 #include <xmltooling/util/ReplayCache.h>
33
34 using namespace opensaml::saml2md;
35 using namespace opensaml;
36 using namespace xmltooling::logging;
37 using namespace xmltooling;
38 using namespace std;
39
40 namespace opensaml {
41     class SAML_DLLLOCAL ClientCertAuthRule : public SecurityPolicyRule
42     {
43     public:
44         ClientCertAuthRule(const DOMElement* e);
45         virtual ~ClientCertAuthRule() {}
46         
47         const char* getType() const {
48             return CLIENTCERTAUTH_POLICY_RULE;
49         }
50         void evaluate(const XMLObject& message, const GenericRequest* request, SecurityPolicy& policy) const;
51
52     private:
53         bool m_errorFatal;
54     };
55
56     SecurityPolicyRule* SAML_DLLLOCAL ClientCertAuthRuleFactory(const DOMElement* const & e)
57     {
58         return new ClientCertAuthRule(e);
59     }
60
61     static const XMLCh errorFatal[] = UNICODE_LITERAL_10(e,r,r,o,r,F,a,t,a,l);
62 };
63
64 ClientCertAuthRule::ClientCertAuthRule(const DOMElement* e) : m_errorFatal(false)
65 {
66     if (e) {
67         const XMLCh* flag = e->getAttributeNS(NULL, errorFatal);
68         m_errorFatal = (flag && (*flag==chLatin_t || *flag==chDigit_1)); 
69     }
70 }
71
72 void ClientCertAuthRule::evaluate(const XMLObject& message, const GenericRequest* request, SecurityPolicy& policy) const
73 {
74     Category& log=Category::getInstance(SAML_LOGCAT".SecurityPolicyRule.ClientCertAuth");
75     
76     if (!request)
77         return;
78     
79     if (!policy.getIssuerMetadata()) {
80         log.debug("ignoring message, no issuer metadata supplied");
81         return;
82     }
83
84     const X509TrustEngine* x509trust;
85     if (!(x509trust=dynamic_cast<const X509TrustEngine*>(policy.getTrustEngine()))) {
86         log.debug("ignoring message, no X509TrustEngine supplied");
87         return;
88     }
89     
90     const std::vector<XSECCryptoX509*>& chain = request->getClientCertificates();
91     if (chain.empty())
92         return;
93     
94     // Set up criteria object, including peer name to enforce cert name checking.
95     MetadataCredentialCriteria cc(*(policy.getIssuerMetadata()));
96     auto_ptr_char pn(policy.getIssuer()->getName());
97     cc.setPeerName(pn.get());
98     cc.setUsage(Credential::TLS_CREDENTIAL);
99
100     if (!x509trust->validate(chain.front(), chain, *(policy.getMetadataProvider()), &cc)) {
101         if (m_errorFatal)
102             throw SecurityPolicyException("Client certificate supplied, but could not be verified.");
103         log.error("unable to verify certificate chain with supplied trust engine");
104         return;
105     }
106     
107     log.debug("client certificate verified against message issuer");
108     policy.setAuthenticated(true);
109 }