Null security rule for disabling security checks.
authorScott Cantor <cantor.2@osu.edu>
Tue, 6 Mar 2007 17:53:00 +0000 (17:53 +0000)
committerScott Cantor <cantor.2@osu.edu>
Tue, 6 Mar 2007 17:53:00 +0000 (17:53 +0000)
saml/Makefile.am
saml/binding/impl/NullSecurityRule.cpp [new file with mode: 0644]
saml/saml.vcproj

index 61cca51..8183f96 100644 (file)
@@ -98,6 +98,7 @@ libsaml_la_SOURCES = \
        binding/impl/MessageDecoder.cpp \
        binding/impl/MessageEncoder.cpp \
        binding/impl/MessageFlowRule.cpp \
+       binding/impl/NullSecurityRule.cpp \
        binding/impl/SAMLArtifact.cpp \
        binding/impl/SecurityPolicy.cpp \
        binding/impl/SimpleSigningRule.cpp \
diff --git a/saml/binding/impl/NullSecurityRule.cpp b/saml/binding/impl/NullSecurityRule.cpp
new file mode 100644 (file)
index 0000000..e861072
--- /dev/null
@@ -0,0 +1,56 @@
+/*
+ *  Copyright 2001-2007 Internet2
+ * 
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ *     http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+/**
+ * NullSecurityRule.cpp
+ * 
+ * SecurityPolicyRule that "disables" security. 
+ */
+
+#include "internal.h"
+#include "binding/SecurityPolicyRule.h"
+
+#include <log4cpp/Category.hh>
+
+using namespace opensaml;
+using namespace xmltooling;
+using namespace log4cpp;
+using namespace std;
+
+namespace opensaml {
+    class SAML_DLLLOCAL NullSecurityRule : public SecurityPolicyRule
+    {
+    public:
+        NullSecurityRule(const DOMElement* e) : m_log(Category::getInstance(SAML_LOGCAT".SecurityPolicyRule.NullSecurity")) {}
+        virtual ~NullSecurityRule() {}
+        
+        void evaluate(const XMLObject& message, const GenericRequest* request, SecurityPolicy& policy) const;
+
+    private:
+        Category& m_log;
+    };
+
+    SecurityPolicyRule* SAML_DLLLOCAL NullSecurityRuleFactory(const DOMElement* const & e)
+    {
+        return new NullSecurityRule(e);
+    }
+};
+
+void NullSecurityRule::evaluate(const XMLObject& message, const GenericRequest* request, SecurityPolicy& policy) const
+{
+    m_log.warn("security enforced using NULL policy rule, be sure you know what you're doing");
+    policy.setSecure(true);
+}
index b1d48ab..107ae93 100644 (file)
                                                >\r
                                        </File>\r
                                        <File\r
+                                               RelativePath=".\binding\impl\NullSecurityRule.cpp"\r
+                                               >\r
+                                       </File>\r
+                                       <File\r
                                                RelativePath=".\binding\impl\SAMLArtifact.cpp"\r
                                                >\r
                                        </File>\r