Revamped binding classes with security policy layer.
[shibboleth/cpp-opensaml.git] / saml / binding / impl / SecurityPolicy.cpp
1 /*
2  *  Copyright 2001-2006 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  * SecurityPolicy.cpp
19  * 
20  * Overall policy used to verify the security of an incoming message. 
21  */
22
23 #include "internal.h"
24 #include "exceptions.h"
25 #include "binding/SecurityPolicy.h"
26 #include "saml2/core/Assertions.h"
27
28 using namespace opensaml::saml2md;
29 using namespace opensaml::saml2;
30 using namespace opensaml;
31 using namespace xmltooling;
32 using namespace std;
33
34 namespace opensaml {
35     SAML_DLLLOCAL PluginManager<SecurityPolicyRule,const DOMElement*>::Factory MessageFlowRuleFactory;
36     SAML_DLLLOCAL PluginManager<SecurityPolicyRule,const DOMElement*>::Factory MessageSigningRuleFactory;
37 };
38
39 void SAML_API opensaml::registerSecurityPolicyRules()
40 {
41     SAMLConfig& conf=SAMLConfig::getConfig();
42     conf.SecurityPolicyRuleManager.registerFactory(MESSAGEFLOW_POLICY_RULE, MessageFlowRuleFactory);
43     conf.SecurityPolicyRuleManager.registerFactory(MESSAGESIGNING_POLICY_RULE, MessageSigningRuleFactory);
44 }
45
46 SecurityPolicy::~SecurityPolicy()
47 {
48     delete m_issuer;
49 }
50
51 void SecurityPolicy::evaluate(const GenericRequest& request, const XMLObject& message)
52 {
53     for (vector<const SecurityPolicyRule*>::const_iterator i=m_rules.begin(); i!=m_rules.end(); ++i) {
54
55         // Run the rule...
56         pair<Issuer*,const RoleDescriptor*> ident = (*i)->evaluate(request,message,m_metadata,&m_role,m_trust);
57
58         // Make sure returned issuer doesn't conflict.
59          
60         if (ident.first) {
61             if (!issuerMatches(ident.first, m_issuer)) {
62                 delete ident.first;
63                 throw BindingException("Policy rules returned differing Issuers.");
64             }
65             delete m_issuer;
66             m_issuer=ident.first;
67         }
68
69         if (ident.second) {
70             if (m_issuerRole && ident.second!=m_issuerRole)
71                 throw BindingException("Policy rules returned differing issuer RoleDescriptors.");
72             m_issuerRole=ident.second;
73         }
74     }
75 }
76
77 void SecurityPolicy::setIssuer(saml2::Issuer* issuer)
78 {
79     if (!issuerMatches(issuer, m_issuer)) {
80         delete issuer;
81         throw BindingException("Externally provided Issuer conflicts with policy results.");
82     }
83     
84     delete m_issuer;
85     m_issuer=issuer;
86 }
87
88 void SecurityPolicy::setIssuerMetadata(const saml2md::RoleDescriptor* issuerRole)
89 {
90     if (issuerRole && m_issuerRole && issuerRole!=m_issuerRole)
91         throw BindingException("Externally provided RoleDescriptor conflicts with policy results.");
92     m_issuerRole=issuerRole;
93 }
94
95 bool SecurityPolicy::issuerMatches(const Issuer* issuer1, const Issuer* issuer2) const
96 {
97     // NULL matches anything for the purposes of this interface.
98     if (!issuer1 || !issuer2)
99         return true;
100     
101     const XMLCh* op1=issuer1->getName();
102     const XMLCh* op2=issuer2->getName();
103     if (!op1 || !op2 || !XMLString::equals(op1,op2))
104         return false;
105     
106     op1=issuer1->getFormat();
107     op2=issuer2->getFormat();
108     if (!XMLString::equals(op1 ? op1 : NameIDType::ENTITY, op2 ? op2 : NameIDType::ENTITY))
109         return false;
110         
111     op1=issuer1->getNameQualifier();
112     op2=issuer2->getNameQualifier();
113     if (!XMLString::equals(op1 ? op1 : &chNull, op2 ? op2 : &chNull))
114         return false;
115
116     op1=issuer1->getSPNameQualifier();
117     op2=issuer2->getSPNameQualifier();
118     if (!XMLString::equals(op1 ? op1 : &chNull, op2 ? op2 : &chNull))
119         return false;
120     
121     return true;
122 }