7721fe816c381961c0977c179e92515fd4c3513d
[shibboleth/sp.git] / shibsp / attribute / filtering / impl / AttributeValueStringFunctor.cpp
1 /*
2  *  Copyright 2001-2009 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  * AttributeValueStringFunctor.cpp
19  * 
20  * A match function that matches the value of an attribute against the specified value.
21  */
22
23 #include "internal.h"
24 #include "exceptions.h"
25 #include "attribute/Attribute.h"
26 #include "attribute/filtering/FilteringContext.h"
27 #include "attribute/filtering/FilterPolicyContext.h"
28 #include "attribute/filtering/MatchFunctor.h"
29
30 using namespace shibsp;
31 using namespace std;
32
33 namespace shibsp {
34
35     static const XMLCh attributeID[] =  UNICODE_LITERAL_11(a,t,t,r,i,b,u,t,e,I,D);
36     static const XMLCh value[] =        UNICODE_LITERAL_5(v,a,l,u,e);
37     static const XMLCh ignoreCase[] =   UNICODE_LITERAL_10(i,g,n,o,r,e,C,a,s,e);
38
39     /**
40      * A match function that matches the value of an attribute against the specified value.
41      */
42     class SHIBSP_DLLLOCAL AttributeValueStringFunctor : public MatchFunctor
43     {
44         xmltooling::auto_ptr_char m_attributeID;
45         char* m_value;
46
47         bool hasValue(const FilteringContext& filterContext) const;
48         bool matches(const Attribute& attribute, size_t index) const;
49
50     public:
51         AttributeValueStringFunctor(const DOMElement* e)
52             : m_value(e ? xmltooling::toUTF8(e->getAttributeNS(NULL,value)) : NULL), m_attributeID(e ? e->getAttributeNS(NULL,attributeID) : NULL) {
53             if (!m_value || !*m_value) {
54                 delete[] m_value;
55                 throw ConfigurationException("AttributeValueString MatchFunctor requires non-empty value attribute.");
56             }
57             if (e && e->hasAttributeNS(NULL,ignoreCase)) {
58                 xmltooling::logging::Category::getInstance(SHIBSP_LOGCAT".AttributeFilter").warn(
59                     "ignoreCase property ignored by AttributeValueString MatchFunctor in favor of attribute's caseSensitive property"
60                     );
61             }
62         }
63
64         virtual ~AttributeValueStringFunctor() {
65             delete[] m_value;
66         }
67
68         bool evaluatePolicyRequirement(const FilteringContext& filterContext) const {
69             if (!m_attributeID.get() || !*m_attributeID.get())
70                 throw AttributeFilteringException("No attributeID specified.");
71             return hasValue(filterContext);
72         }
73
74         bool evaluatePermitValue(const FilteringContext& filterContext, const Attribute& attribute, size_t index) const {
75             if (!m_attributeID.get() || !*m_attributeID.get() || XMLString::equals(m_attributeID.get(), attribute.getId()))
76                 return matches(attribute, index);
77             return hasValue(filterContext);
78         }
79     };
80
81     MatchFunctor* SHIBSP_DLLLOCAL AttributeValueStringFactory(const std::pair<const FilterPolicyContext*,const DOMElement*>& p)
82     {
83         return new AttributeValueStringFunctor(p.second);
84     }
85
86 };
87
88 bool AttributeValueStringFunctor::hasValue(const FilteringContext& filterContext) const
89 {
90     size_t count;
91     pair<multimap<string,Attribute*>::const_iterator,multimap<string,Attribute*>::const_iterator> attrs =
92         filterContext.getAttributes().equal_range(m_attributeID.get());
93     for (; attrs.first != attrs.second; ++attrs.first) {
94         count = attrs.first->second->valueCount();
95         for (size_t index = 0; index < count; ++index) {
96             if (matches(*(attrs.first->second), index))
97                 return true;
98         }
99     }
100     return false;
101 }
102
103 bool AttributeValueStringFunctor::matches(const Attribute& attribute, size_t index) const
104 {
105     const char* val = attribute.getString(index);
106     if (!val)
107         return false;
108     if (attribute.isCaseSensitive())
109         return !strcmp(m_value, val);
110
111 #ifdef HAVE_STRCASECMP
112     return !strcasecmp(m_value, val);
113 #else
114     return !stricmp(m_value, val);
115 #endif
116 }