Tagging 2.4RC1 release.
[shibboleth/sp.git] / shibsp / attribute / filtering / impl / XMLAttributeFilter.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  * XMLAttributeFilter.cpp
19  *
20  * AttributeFilter based on an XML policy language.
21  */
22
23 #include "internal.h"
24 #include "exceptions.h"
25 #include "Application.h"
26 #include "ServiceProvider.h"
27 #include "attribute/Attribute.h"
28 #include "attribute/filtering/AttributeFilter.h"
29 #include "attribute/filtering/FilteringContext.h"
30 #include "attribute/filtering/FilterPolicyContext.h"
31 #include "attribute/filtering/MatchFunctor.h"
32 #include "util/SPConstants.h"
33
34 #include <xmltooling/util/NDC.h>
35 #include <xmltooling/util/ReloadableXMLFile.h>
36 #include <xmltooling/util/Threads.h>
37 #include <xmltooling/util/XMLHelper.h>
38 #include <xercesc/util/XMLUniDefs.hpp>
39
40 using shibspconstants::SHIB2ATTRIBUTEFILTER_NS;
41 using namespace shibsp;
42 using namespace opensaml::saml2md;
43 using namespace opensaml;
44 using namespace xmltooling;
45 using namespace std;
46
47 namespace shibsp {
48
49 #if defined (_MSC_VER)
50     #pragma warning( push )
51     #pragma warning( disable : 4250 )
52 #endif
53
54     // Each Policy has a functor for determining applicability and a map of
55     // attribute IDs to Accept/Deny functor pairs (which can include nullptrs).
56     struct SHIBSP_DLLLOCAL Policy
57     {
58         Policy() : m_applies(nullptr) {}
59         const MatchFunctor* m_applies;
60         typedef multimap< string,pair<const MatchFunctor*,const MatchFunctor*> > rules_t;
61         rules_t m_rules;
62     };
63
64     class SHIBSP_DLLLOCAL XMLFilterImpl
65     {
66     public:
67         XMLFilterImpl(const DOMElement* e, Category& log);
68         ~XMLFilterImpl() {
69             if (m_document)
70                 m_document->release();
71             for_each(m_policyReqRules.begin(), m_policyReqRules.end(), cleanup_pair<string,MatchFunctor>());
72             for_each(m_permitValRules.begin(), m_permitValRules.end(), cleanup_pair<string,MatchFunctor>());
73             for_each(m_denyValRules.begin(), m_denyValRules.end(), cleanup_pair<string,MatchFunctor>());
74         }
75
76         void setDocument(DOMDocument* doc) {
77             m_document = doc;
78         }
79
80         void filterAttributes(const FilteringContext& context, vector<Attribute*>& attributes) const;
81
82     private:
83         MatchFunctor* buildFunctor(
84             const DOMElement* e, const FilterPolicyContext& functorMap, const char* logname, bool standalone
85             );
86         pair< string,pair<const MatchFunctor*,const MatchFunctor*> > buildAttributeRule(
87             const DOMElement* e, const FilterPolicyContext& permMap, const FilterPolicyContext& denyMap, bool standalone
88             );
89
90         Category& m_log;
91         DOMDocument* m_document;
92         vector<Policy> m_policies;
93         map< string,pair<string,pair<const MatchFunctor*,const MatchFunctor*> > > m_attrRules;
94         multimap<string,MatchFunctor*> m_policyReqRules;
95         multimap<string,MatchFunctor*> m_permitValRules;
96         multimap<string,MatchFunctor*> m_denyValRules;
97     };
98
99     class SHIBSP_DLLLOCAL XMLFilter : public AttributeFilter, public ReloadableXMLFile
100     {
101     public:
102         XMLFilter(const DOMElement* e) : ReloadableXMLFile(e, Category::getInstance(SHIBSP_LOGCAT".AttributeFilter")), m_impl(nullptr) {
103             background_load();
104         }
105         ~XMLFilter() {
106             shutdown();
107             delete m_impl;
108         }
109
110         void filterAttributes(const FilteringContext& context, vector<Attribute*>& attributes) const {
111             m_impl->filterAttributes(context, attributes);
112         }
113
114     protected:
115         pair<bool,DOMElement*> background_load();
116
117     private:
118         XMLFilterImpl* m_impl;
119     };
120
121 #if defined (_MSC_VER)
122     #pragma warning( pop )
123 #endif
124
125     AttributeFilter* SHIBSP_DLLLOCAL XMLAttributeFilterFactory(const DOMElement* const & e)
126     {
127         return new XMLFilter(e);
128     }
129
130     static const XMLCh AttributeFilterPolicyGroup[] =   UNICODE_LITERAL_26(A,t,t,r,i,b,u,t,e,F,i,l,t,e,r,P,o,l,i,c,y,G,r,o,u,p);
131     static const XMLCh AttributeFilterPolicy[] =        UNICODE_LITERAL_21(A,t,t,r,i,b,u,t,e,F,i,l,t,e,r,P,o,l,i,c,y);
132     static const XMLCh AttributeRule[] =                UNICODE_LITERAL_13(A,t,t,r,i,b,u,t,e,R,u,l,e);
133     static const XMLCh AttributeRuleReference[] =       UNICODE_LITERAL_22(A,t,t,r,i,b,u,t,e,R,u,l,e,R,e,f,e,r,e,n,c,e);
134     static const XMLCh DenyValueRule[] =                UNICODE_LITERAL_13(D,e,n,y,V,a,l,u,e,R,u,l,e);
135     static const XMLCh DenyValueRuleReference[] =       UNICODE_LITERAL_22(D,e,n,y,V,a,l,u,e,R,u,l,e,R,e,f,e,r,e,n,c,e);
136     static const XMLCh PermitValueRule[] =              UNICODE_LITERAL_15(P,e,r,m,i,t,V,a,l,u,e,R,u,l,e);
137     static const XMLCh PermitValueRuleReference[] =     UNICODE_LITERAL_24(P,e,r,m,i,t,V,a,l,u,e,R,u,l,e,R,e,f,e,r,e,n,c,e);
138     static const XMLCh PolicyRequirementRule[] =        UNICODE_LITERAL_21(P,o,l,i,c,y,R,e,q,u,i,r,e,m,e,n,t,R,u,l,e);
139     static const XMLCh PolicyRequirementRuleReference[]=UNICODE_LITERAL_30(P,o,l,i,c,y,R,e,q,u,i,r,e,m,e,n,t,R,u,l,e,R,e,f,e,r,e,n,c,e);
140     static const XMLCh attributeID[] =                  UNICODE_LITERAL_11(a,t,t,r,i,b,u,t,e,I,D);
141     static const XMLCh _id[] =                          UNICODE_LITERAL_2(i,d);
142     static const XMLCh _ref[] =                         UNICODE_LITERAL_3(r,e,f);
143 };
144
145 XMLFilterImpl::XMLFilterImpl(const DOMElement* e, Category& log) : m_log(log), m_document(nullptr)
146 {
147 #ifdef _DEBUG
148     xmltooling::NDC ndc("XMLFilterImpl");
149 #endif
150
151     if (!XMLHelper::isNodeNamed(e, SHIB2ATTRIBUTEFILTER_NS, AttributeFilterPolicyGroup))
152         throw ConfigurationException("XML AttributeFilter requires afp:AttributeFilterPolicyGroup at root of configuration.");
153
154     FilterPolicyContext reqFunctors(m_policyReqRules);
155     FilterPolicyContext permFunctors(m_permitValRules);
156     FilterPolicyContext denyFunctors(m_denyValRules);
157
158     DOMElement* child = XMLHelper::getFirstChildElement(e);
159     while (child) {
160         if (XMLHelper::isNodeNamed(child, SHIB2ATTRIBUTEFILTER_NS, PolicyRequirementRule)) {
161             buildFunctor(child, reqFunctors, "PolicyRequirementRule", true);
162         }
163         else if (XMLHelper::isNodeNamed(child, SHIB2ATTRIBUTEFILTER_NS, PermitValueRule)) {
164             buildFunctor(child, permFunctors, "PermitValueRule", true);
165         }
166         else if (XMLHelper::isNodeNamed(child, SHIB2ATTRIBUTEFILTER_NS, DenyValueRule)) {
167             buildFunctor(child, denyFunctors, "DenyValueRule", true);
168         }
169         else if (XMLHelper::isNodeNamed(child, SHIB2ATTRIBUTEFILTER_NS, AttributeRule)) {
170             buildAttributeRule(child, permFunctors, denyFunctors, true);
171         }
172         else if (XMLHelper::isNodeNamed(child, SHIB2ATTRIBUTEFILTER_NS, AttributeFilterPolicy)) {
173             e = XMLHelper::getFirstChildElement(child);
174             MatchFunctor* func = nullptr;
175             if (e && XMLHelper::isNodeNamed(e, SHIB2ATTRIBUTEFILTER_NS, PolicyRequirementRule)) {
176                 func = buildFunctor(e, reqFunctors, "PolicyRequirementRule", false);
177             }
178             else if (e && XMLHelper::isNodeNamed(e, SHIB2ATTRIBUTEFILTER_NS, PolicyRequirementRuleReference)) {
179                 string ref(XMLHelper::getAttrString(e, nullptr, _ref));
180                 if (!ref.empty()) {
181                     multimap<string,MatchFunctor*>::const_iterator prr = m_policyReqRules.find(ref);
182                     func = (prr!=m_policyReqRules.end()) ? prr->second : nullptr;
183                 }
184             }
185             if (func) {
186                 m_policies.push_back(Policy());
187                 m_policies.back().m_applies = func;
188                 e = XMLHelper::getNextSiblingElement(e);
189                 while (e) {
190                     if (e && XMLHelper::isNodeNamed(e, SHIB2ATTRIBUTEFILTER_NS, AttributeRule)) {
191                         pair< string,pair<const MatchFunctor*,const MatchFunctor*> > rule = buildAttributeRule(e, permFunctors, denyFunctors, false);
192                         if (rule.second.first || rule.second.second)
193                             m_policies.back().m_rules.insert(Policy::rules_t::value_type(rule.first, rule.second));
194                     }
195                     else if (e && XMLHelper::isNodeNamed(e, SHIB2ATTRIBUTEFILTER_NS, AttributeRuleReference)) {
196                         string ref(XMLHelper::getAttrString(e, nullptr, _ref));
197                         if (!ref.empty()) {
198                             map< string,pair< string,pair< const MatchFunctor*,const MatchFunctor*> > >::const_iterator ar = m_attrRules.find(ref);
199                             if (ar != m_attrRules.end())
200                                 m_policies.back().m_rules.insert(Policy::rules_t::value_type(ar->second.first, ar->second.second));
201                             else
202                                 m_log.warn("skipping invalid AttributeRuleReference (%s)", ref.c_str());
203                         }
204                     }
205                     e = XMLHelper::getNextSiblingElement(e);
206                 }
207             }
208             else {
209                 m_log.warn("skipping AttributeFilterPolicy, PolicyRequirementRule invalid or missing");
210             }
211         }
212         child = XMLHelper::getNextSiblingElement(child);
213     }
214 }
215
216 MatchFunctor* XMLFilterImpl::buildFunctor(
217     const DOMElement* e, const FilterPolicyContext& functorMap, const char* logname, bool standalone
218     )
219 {
220     string id(XMLHelper::getAttrString(e, nullptr, _id));
221
222     if (standalone && id.empty()) {
223         m_log.warn("skipping stand-alone %s with no id", logname);
224         return nullptr;
225     }
226     else if (!id.empty() && functorMap.getMatchFunctors().count(id)) {
227         if (standalone) {
228             m_log.warn("skipping duplicate stand-alone %s with id (%s)", logname, id.c_str());
229             return nullptr;
230         }
231         else
232             id.clear();
233     }
234
235     auto_ptr<xmltooling::QName> type(XMLHelper::getXSIType(e));
236     if (type.get()) {
237         try {
238             MatchFunctor* func = SPConfig::getConfig().MatchFunctorManager.newPlugin(*type.get(), make_pair(&functorMap,e));
239             functorMap.getMatchFunctors().insert(multimap<string,MatchFunctor*>::value_type(id, func));
240             return func;
241         }
242         catch (exception& ex) {
243             m_log.error("error building %s with type (%s): %s", logname, type->toString().c_str(), ex.what());
244         }
245     }
246     else if (standalone)
247         m_log.warn("skipping stand-alone %s with no xsi:type", logname);
248     else
249         m_log.error("%s with no xsi:type", logname);
250
251     return nullptr;
252 }
253
254 pair< string,pair<const MatchFunctor*,const MatchFunctor*> > XMLFilterImpl::buildAttributeRule(
255     const DOMElement* e, const FilterPolicyContext& permMap, const FilterPolicyContext& denyMap, bool standalone
256     )
257 {
258     string id(XMLHelper::getAttrString(e, nullptr, _id));
259
260     if (standalone && id.empty()) {
261         m_log.warn("skipping stand-alone AttributeRule with no id");
262         return make_pair(string(),pair<const MatchFunctor*,const MatchFunctor*>(nullptr,nullptr));
263     }
264     else if (!id.empty() && m_attrRules.count(id)) {
265         if (standalone) {
266             m_log.warn("skipping duplicate stand-alone AttributeRule with id (%s)", id.c_str());
267             return make_pair(string(),pair<const MatchFunctor*,const MatchFunctor*>(nullptr,nullptr));
268         }
269         else
270             id.clear();
271     }
272
273     string attrID(XMLHelper::getAttrString(e, nullptr, attributeID));
274     if (attrID.empty())
275         m_log.warn("skipping AttributeRule with no attributeID");
276
277     MatchFunctor* perm=nullptr;
278     MatchFunctor* deny=nullptr;
279
280     e = XMLHelper::getFirstChildElement(e);
281     if (e && XMLHelper::isNodeNamed(e, SHIB2ATTRIBUTEFILTER_NS, PermitValueRule)) {
282         perm = buildFunctor(e, permMap, "PermitValueRule", false);
283         e = XMLHelper::getNextSiblingElement(e);
284     }
285     else if (e && XMLHelper::isNodeNamed(e, SHIB2ATTRIBUTEFILTER_NS, PermitValueRuleReference)) {
286         string ref(XMLHelper::getAttrString(e, nullptr, _ref));
287         if (!ref.empty()) {
288             multimap<string,MatchFunctor*>::const_iterator pvr = m_permitValRules.find(ref);
289             perm = (pvr!=m_permitValRules.end()) ? pvr->second : nullptr;
290         }
291         e = XMLHelper::getNextSiblingElement(e);
292     }
293
294     if (e && XMLHelper::isNodeNamed(e, SHIB2ATTRIBUTEFILTER_NS, DenyValueRule)) {
295         deny = buildFunctor(e, denyMap, "DenyValueRule", false);
296     }
297     else if (e && XMLHelper::isNodeNamed(e, SHIB2ATTRIBUTEFILTER_NS, DenyValueRuleReference)) {
298         string ref(XMLHelper::getAttrString(e, nullptr, _ref));
299         if (!ref.empty()) {
300             multimap<string,MatchFunctor*>::const_iterator pvr = m_denyValRules.find(ref);
301             deny = (pvr!=m_denyValRules.end()) ? pvr->second : nullptr;
302         }
303     }
304
305     if (perm || deny) {
306         if (!id.empty()) {
307             m_attrRules[id] =
308                 pair< string,pair<const MatchFunctor*,const MatchFunctor*> >(attrID, pair<const MatchFunctor*,const MatchFunctor*>(perm,deny));
309             return m_attrRules[id];
310         }
311         else {
312             return pair< string,pair<const MatchFunctor*,const MatchFunctor*> >(attrID, pair<const MatchFunctor*,const MatchFunctor*>(perm,deny));
313         }
314     }
315
316     if (!id.empty())
317         m_log.warn("skipping AttributeRule (%s), permit and denial rule(s) invalid or missing", id.c_str());
318     else
319         m_log.warn("skipping AttributeRule, permit and denial rule(s) invalid or missing");
320     return pair< string,pair<const MatchFunctor*,const MatchFunctor*> >(string(),pair<const MatchFunctor*,const MatchFunctor*>(nullptr,nullptr));
321 }
322
323 void XMLFilterImpl::filterAttributes(const FilteringContext& context, vector<Attribute*>& attributes) const
324 {
325     auto_ptr_char issuer(context.getAttributeIssuer());
326
327     m_log.debug("filtering %lu attribute(s) from (%s)", attributes.size(), issuer.get() ? issuer.get() : "unknown source");
328
329     if (m_policies.empty()) {
330         m_log.warn("no filter policies were loaded, filtering out all attributes from (%s)", issuer.get() ? issuer.get() : "unknown source");
331         for_each(attributes.begin(), attributes.end(), xmltooling::cleanup<Attribute>());
332         attributes.clear();
333         return;
334     }
335
336     // We have to evaluate every policy that applies against each attribute before deciding what to keep.
337
338     // For efficiency, we build an array of the policies that apply in advance.
339     vector<const Policy*> applicablePolicies;
340     for (vector<Policy>::const_iterator p=m_policies.begin(); p!=m_policies.end(); ++p) {
341         if (p->m_applies->evaluatePolicyRequirement(context))
342             applicablePolicies.push_back(&(*p));
343     }
344
345     // For further efficiency, we declare arrays to store the applicable rules for an Attribute.
346     vector< pair<const MatchFunctor*,const MatchFunctor*> > applicableRules;
347     vector< pair<const MatchFunctor*,const MatchFunctor*> > wildcardRules;
348
349     // Store off the wildcards ahead of time.
350     for (vector<const Policy*>::const_iterator pol=applicablePolicies.begin(); pol!=applicablePolicies.end(); ++pol) {
351         pair<Policy::rules_t::const_iterator,Policy::rules_t::const_iterator> rules = (*pol)->m_rules.equal_range("*");
352         for (; rules.first!=rules.second; ++rules.first)
353             wildcardRules.push_back(rules.first->second);
354     }
355
356     // To track what to keep without removing anything from the original set until the end, we maintain
357     // a map of each Attribute object to a boolean array with true flags indicating what to delete.
358     // A single dimension array tracks attributes being removed entirely.
359     vector<bool> deletedAttributes(attributes.size(), false);
360     map< Attribute*, vector<bool> > deletedPositions;
361
362     // Loop over each attribute to filter them.
363     for (vector<Attribute*>::size_type a=0; a<attributes.size(); ++a) {
364         Attribute* attr = attributes[a];
365
366         // Clear the rule store.
367         applicableRules.clear();
368
369         // Look for rules to run in each policy.
370         for (vector<const Policy*>::const_iterator pol=applicablePolicies.begin(); pol!=applicablePolicies.end(); ++pol) {
371             pair<Policy::rules_t::const_iterator,Policy::rules_t::const_iterator> rules = (*pol)->m_rules.equal_range(attr->getId());
372             for (; rules.first!=rules.second; ++rules.first)
373                 applicableRules.push_back(rules.first->second);
374         }
375
376         // If no rules found, apply wildcards.
377         const vector< pair<const MatchFunctor*,const MatchFunctor*> >& rulesToRun = applicableRules.empty() ? wildcardRules : applicableRules;
378
379         // If no rules apply, remove the attribute entirely.
380         if (rulesToRun.empty()) {
381             m_log.warn(
382                 "no rule found, will remove attribute (%s) from (%s)",
383                 attr->getId(), issuer.get() ? issuer.get() : "unknown source"
384                 );
385             deletedAttributes[a] = true;
386             continue;
387         }
388
389         // Run each permit/deny rule.
390         m_log.debug(
391             "applying filtering rule(s) for attribute (%s) from (%s)",
392             attr->getId(), issuer.get() ? issuer.get() : "unknown source"
393             );
394
395         bool kickit;
396
397         // Examine each value.
398         for (size_t count = attr->valueCount(), index = 0; index < count; ++index) {
399
400             // Assume we're kicking it out.
401             kickit=true;
402
403             for (vector< pair<const MatchFunctor*,const MatchFunctor*> >::const_iterator r=rulesToRun.begin(); r!=rulesToRun.end(); ++r) {
404                 // If there's a permit rule that passes, don't kick it.
405                 if (r->first && r->first->evaluatePermitValue(context, *attr, index))
406                     kickit = false;
407                 if (!kickit && r->second && r->second->evaluatePermitValue(context, *attr, index))
408                     kickit = true;
409             }
410
411             // If we're kicking it, record that in the tracker.
412             if (kickit) {
413                 m_log.warn(
414                     "removed value at position (%lu) of attribute (%s) from (%s)",
415                     index, attr->getId(), issuer.get() ? issuer.get() : "unknown source"
416                     );
417                 deletedPositions[attr].resize(index+1);
418                 deletedPositions[attr][index] = true;
419             }
420         }
421     }
422
423     // Final step: go over the deletedPositions matrix and apply the actual changes. In order to delete
424     // any attributes that end up with no values, we have to do it by looping over the originals.
425     for (vector<Attribute*>::size_type a=0; a<attributes.size();) {
426         Attribute* attr = attributes[a];
427
428         if (deletedAttributes[a]) {
429             m_log.warn(
430                 "removing filtered attribute (%s) from (%s)",
431                 attr->getId(), issuer.get() ? issuer.get() : "unknown source"
432                 );
433             delete attr;
434             deletedAttributes.erase(deletedAttributes.begin() + a);
435             attributes.erase(attributes.begin() + a);
436             continue;
437         }
438         else if (deletedPositions.count(attr) > 0) {
439             // To do the removal, we loop over the bits backwards so that the
440             // underlying value sequence doesn't get distorted by any removals.
441             // Index has to be offset by one because size_type is unsigned.
442             const vector<bool>& row = deletedPositions[attr];
443             for (vector<bool>::size_type index = row.size(); index > 0; --index) {
444                 if (row[index-1])
445                     attr->removeValue(index-1);
446             }
447         }
448
449         // Check for no values.
450         if (attr->valueCount() == 0) {
451             m_log.warn(
452                 "no values left, removing attribute (%s) from (%s)",
453                 attr->getId(), issuer.get() ? issuer.get() : "unknown source"
454                 );
455             delete attr;
456             deletedAttributes.erase(deletedAttributes.begin() + a);
457             attributes.erase(attributes.begin() + a);
458             continue;
459         }
460
461         ++a;
462     }
463 }
464
465 pair<bool,DOMElement*> XMLFilter::background_load()
466 {
467     // Load from source using base class.
468     pair<bool,DOMElement*> raw = ReloadableXMLFile::load();
469
470     // If we own it, wrap it.
471     XercesJanitor<DOMDocument> docjanitor(raw.first ? raw.second->getOwnerDocument() : nullptr);
472
473     XMLFilterImpl* impl = new XMLFilterImpl(raw.second, m_log);
474
475     // If we held the document, transfer it to the impl. If we didn't, it's a no-op.
476     impl->setDocument(docjanitor.release());
477
478     // Perform the swap inside a lock.
479     if (m_lock)
480         m_lock->wrlock();
481     SharedLock locker(m_lock, false);
482     delete m_impl;
483     m_impl = impl;
484
485     return make_pair(false,(DOMElement*)nullptr);
486 }