Change license header.
[shibboleth/cpp-sp.git] / shibsp / attribute / filtering / impl / OrMatchFunctor.cpp
1 /**
2  * Licensed to the University Corporation for Advanced Internet
3  * Development, Inc. (UCAID) under one or more contributor license
4  * agreements. See the NOTICE file distributed with this work for
5  * additional information regarding copyright ownership.
6  *
7  * UCAID licenses this file to you under the Apache License,
8  * Version 2.0 (the "License"); you may not use this file except
9  * in compliance with the License. You may obtain a copy of the
10  * License at
11  *
12  * http://www.apache.org/licenses/LICENSE-2.0
13  *
14  * Unless required by applicable law or agreed to in writing,
15  * software distributed under the License is distributed on an
16  * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND,
17  * either express or implied. See the License for the specific
18  * language governing permissions and limitations under the License.
19  */
20
21 /**
22  * OrMatchFunctor.cpp
23  * 
24  * A MatchFunctor that logical ORs the results of contained functors.
25  */
26
27 #include "internal.h"
28 #include "exceptions.h"
29 #include "attribute/filtering/FilterPolicyContext.h"
30 #include "attribute/filtering/MatchFunctor.h"
31 #include "util/SPConstants.h"
32
33 #include <xercesc/util/XMLUniDefs.hpp>
34 #include <xmltooling/util/XMLHelper.h>
35
36 using namespace shibsp;
37 using namespace xmltooling;
38 using namespace std;
39
40 namespace shibsp {
41
42     /**
43      * A MatchFunctor that logical ORs the results of contained functors.
44      */
45     class SHIBSP_DLLLOCAL OrMatchFunctor : public MatchFunctor
46     {
47     public:
48         OrMatchFunctor(const pair<const FilterPolicyContext*,const DOMElement*>& p);
49
50         bool evaluatePolicyRequirement(const FilteringContext& filterContext) const {
51             for (vector<const MatchFunctor*>::const_iterator mf = m_functors.begin(); mf!=m_functors.end(); ++mf)
52                 if ((*mf)->evaluatePolicyRequirement(filterContext))
53                     return true;
54             return false;
55         }
56
57         bool evaluatePermitValue(const FilteringContext& filterContext, const Attribute& attribute, size_t index) const {
58             for (vector<const MatchFunctor*>::const_iterator mf = m_functors.begin(); mf!=m_functors.end(); ++mf)
59                 if ((*mf)->evaluatePermitValue(filterContext, attribute, index))
60                     return true;
61             return false;
62         }
63
64     private:
65         MatchFunctor* buildFunctor(const DOMElement* e, const FilterPolicyContext* functorMap);
66
67         vector<const MatchFunctor*> m_functors;
68     };
69
70     MatchFunctor* SHIBSP_DLLLOCAL OrMatchFunctorFactory(const pair<const FilterPolicyContext*,const DOMElement*>& p)
71     {
72         return new OrMatchFunctor(p);
73     }
74
75     static XMLCh _id[] =            UNICODE_LITERAL_2(i,d);
76     static XMLCh _ref[] =           UNICODE_LITERAL_3(r,e,f);
77     static XMLCh Rule[] =           UNICODE_LITERAL_4(R,u,l,e);
78     static XMLCh RuleReference[] =  UNICODE_LITERAL_13(R,u,l,e,R,e,f,e,r,e,n,c,e);
79 };
80
81 OrMatchFunctor::OrMatchFunctor(const pair<const FilterPolicyContext*,const DOMElement*>& p)
82 {
83     MatchFunctor* func;
84     const DOMElement* e = XMLHelper::getFirstChildElement(p.second);
85     while (e) {
86         func = nullptr;
87         if (XMLHelper::isNodeNamed(e, shibspconstants::SHIB2ATTRIBUTEFILTER_MF_BASIC_NS, Rule)) {
88             func = buildFunctor(e, p.first);
89         }
90         else if (XMLHelper::isNodeNamed(e, shibspconstants::SHIB2ATTRIBUTEFILTER_MF_BASIC_NS, RuleReference)) {
91             string ref = XMLHelper::getAttrString(e, nullptr, _ref);
92             if (!ref.empty()) {
93                 multimap<string,MatchFunctor*>::const_iterator rule = p.first->getMatchFunctors().find(ref);
94                 func = (rule!=p.first->getMatchFunctors().end()) ? rule->second : nullptr;
95             }
96         }
97
98         if (func)
99             m_functors.push_back(func);
100
101         e = XMLHelper::getNextSiblingElement(e);
102     }
103 }
104
105 MatchFunctor* OrMatchFunctor::buildFunctor(const DOMElement* e, const FilterPolicyContext* functorMap)
106 {
107     // We'll track and map IDs just for consistency, but don't require them or worry about dups.
108     string id = XMLHelper::getAttrString(e, nullptr, _id);
109     if (!id.empty() && functorMap->getMatchFunctors().count(id))
110         id.clear();
111
112     auto_ptr<xmltooling::QName> type(XMLHelper::getXSIType(e));
113     if (!type.get())
114         throw ConfigurationException("Child Rule found with no xsi:type.");
115
116     MatchFunctor* func = SPConfig::getConfig().MatchFunctorManager.newPlugin(*type.get(), make_pair(functorMap,e));
117     functorMap->getMatchFunctors().insert(multimap<string,MatchFunctor*>::value_type(id, func));
118     return func;
119 }