371410e92b7632f1921a8d716fc6a07828b62772
[shibboleth/cpp-opensaml.git] / saml / binding / impl / SecurityPolicy.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  * 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/SecurityPolicyRule.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,string,const DOMElement*>::Factory ClientCertAuthRuleFactory;
36     SAML_DLLLOCAL PluginManager<SecurityPolicyRule,string,const DOMElement*>::Factory MessageFlowRuleFactory;
37     SAML_DLLLOCAL PluginManager<SecurityPolicyRule,string,const DOMElement*>::Factory NullSecurityRuleFactory;
38     SAML_DLLLOCAL PluginManager<SecurityPolicyRule,string,const DOMElement*>::Factory SimpleSigningRuleFactory;
39     SAML_DLLLOCAL PluginManager<SecurityPolicyRule,string,const DOMElement*>::Factory XMLSigningRuleFactory;
40 };
41
42 void SAML_API opensaml::registerSecurityPolicyRules()
43 {
44     SAMLConfig& conf=SAMLConfig::getConfig();
45     conf.SecurityPolicyRuleManager.registerFactory(CLIENTCERTAUTH_POLICY_RULE, ClientCertAuthRuleFactory);
46     conf.SecurityPolicyRuleManager.registerFactory(MESSAGEFLOW_POLICY_RULE, MessageFlowRuleFactory);
47     conf.SecurityPolicyRuleManager.registerFactory(NULLSECURITY_POLICY_RULE, NullSecurityRuleFactory);
48     conf.SecurityPolicyRuleManager.registerFactory(SIMPLESIGNING_POLICY_RULE, SimpleSigningRuleFactory);
49     conf.SecurityPolicyRuleManager.registerFactory(XMLSIGNING_POLICY_RULE, XMLSigningRuleFactory);
50 }
51
52 SecurityPolicy::IssuerMatchingPolicy SecurityPolicy::m_defaultMatching;
53
54 SecurityPolicy::~SecurityPolicy()
55 {
56     reset(false);
57 }
58
59 void SecurityPolicy::reset(bool messageOnly)
60 {
61     XMLString::release(&m_messageID);
62     m_messageID=NULL;
63     m_issueInstant=0;
64     if (!messageOnly) {
65         delete m_issuer;
66         m_issuer=NULL;
67         m_issuerRole=NULL;
68         m_authenticated=false;
69     }
70 }
71
72 void SecurityPolicy::evaluate(const XMLObject& message, const GenericRequest* request)
73 {
74     for (vector<const SecurityPolicyRule*>::const_iterator i=m_rules.begin(); i!=m_rules.end(); ++i)
75         (*i)->evaluate(message,request,*this);
76 }
77
78 void SecurityPolicy::setIssuer(const Issuer* issuer)
79 {
80     if (!getIssuerMatchingPolicy().issuerMatches(m_issuer, issuer))
81         throw SecurityPolicyException("An Issuer was supplied that conflicts with previous results.");
82     
83     if (!m_issuer) {
84         if (m_entityOnly && issuer->getFormat() && !XMLString::equals(issuer->getFormat(), NameIDType::ENTITY))
85             throw SecurityPolicyException("A non-entity Issuer was supplied, violating policy.");
86         m_issuerRole = NULL;
87         m_issuer=issuer->cloneIssuer();
88     }
89 }
90
91 void SecurityPolicy::setIssuer(const XMLCh* issuer)
92 {
93     if (!getIssuerMatchingPolicy().issuerMatches(m_issuer, issuer))
94         throw SecurityPolicyException("An Issuer was supplied that conflicts with previous results.");
95     
96     if (!m_issuer && issuer && *issuer) {
97         m_issuerRole = NULL;
98         m_issuer = IssuerBuilder::buildIssuer();
99         m_issuer->setName(issuer);
100     }
101 }
102
103 void SecurityPolicy::setIssuerMetadata(const RoleDescriptor* issuerRole)
104 {
105     if (issuerRole && m_issuerRole && issuerRole!=m_issuerRole)
106         throw SecurityPolicyException("A rule supplied a RoleDescriptor that conflicts with previous results.");
107     m_issuerRole=issuerRole;
108 }
109
110 bool SecurityPolicy::IssuerMatchingPolicy::issuerMatches(const Issuer* issuer1, const Issuer* issuer2) const
111 {
112     // NULL matches anything for the purposes of this interface.
113     if (!issuer1 || !issuer2)
114         return true;
115     
116     const XMLCh* op1=issuer1->getName();
117     const XMLCh* op2=issuer2->getName();
118     if (!op1 || !op2 || !XMLString::equals(op1,op2))
119         return false;
120     
121     op1=issuer1->getFormat();
122     op2=issuer2->getFormat();
123     if (!XMLString::equals(op1 ? op1 : NameIDType::ENTITY, op2 ? op2 : NameIDType::ENTITY))
124         return false;
125         
126     op1=issuer1->getNameQualifier();
127     op2=issuer2->getNameQualifier();
128     if (!XMLString::equals(op1 ? op1 : &chNull, op2 ? op2 : &chNull))
129         return false;
130
131     op1=issuer1->getSPNameQualifier();
132     op2=issuer2->getSPNameQualifier();
133     if (!XMLString::equals(op1 ? op1 : &chNull, op2 ? op2 : &chNull))
134         return false;
135     
136     return true;
137 }
138
139 bool SecurityPolicy::IssuerMatchingPolicy::issuerMatches(const Issuer* issuer1, const XMLCh* issuer2) const
140 {
141     // NULL matches anything for the purposes of this interface.
142     if (!issuer1 || !issuer2 || !*issuer2)
143         return true;
144     
145     const XMLCh* op1=issuer1->getName();
146     if (!op1 || !XMLString::equals(op1,issuer2))
147         return false;
148     
149     op1=issuer1->getFormat();
150     if (op1 && *op1 && !XMLString::equals(op1, NameIDType::ENTITY))
151         return false;
152         
153     op1=issuer1->getNameQualifier();
154     if (op1 && *op1)
155         return false;
156
157     op1=issuer1->getSPNameQualifier();
158     if (op1 && *op1)
159         return false;
160     
161     return true;
162 }