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