New policy rules for handling conditions.
[shibboleth/cpp-opensaml.git] / saml / binding / impl / MessageFlowRule.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  * MessageFlowRule.cpp
19  *
20  * SAML replay and freshness checking SecurityPolicyRule
21  */
22
23 #include "internal.h"
24 #include "exceptions.h"
25 #include "binding/SecurityPolicyRule.h"
26
27 #include <xmltooling/logging.h>
28 #include <xmltooling/util/ReplayCache.h>
29 #include <xercesc/util/XMLUniDefs.hpp>
30
31 using namespace opensaml;
32 using namespace xmltooling::logging;
33 using namespace xmltooling;
34 using namespace std;
35
36 namespace opensaml {
37     class SAML_DLLLOCAL MessageFlowRule : public SecurityPolicyRule
38     {
39     public:
40         MessageFlowRule(const DOMElement* e);
41         virtual ~MessageFlowRule() {}
42
43         const char* getType() const {
44             return MESSAGEFLOW_POLICY_RULE;
45         }
46         bool evaluate(const XMLObject& message, const GenericRequest* request, SecurityPolicy& policy) const;
47
48     private:
49         bool m_checkReplay;
50         time_t m_expires;
51     };
52
53     SecurityPolicyRule* SAML_DLLLOCAL MessageFlowRuleFactory(const DOMElement* const & e)
54     {
55         return new MessageFlowRule(e);
56     }
57 };
58
59 static const XMLCh checkReplay[] = UNICODE_LITERAL_11(c,h,e,c,k,R,e,p,l,a,y);
60 static const XMLCh expires[] = UNICODE_LITERAL_7(e,x,p,i,r,e,s);
61
62 MessageFlowRule::MessageFlowRule(const DOMElement* e)
63     : m_checkReplay(true), m_expires(XMLToolingConfig::getConfig().clock_skew_secs)
64 {
65     if (e) {
66         const XMLCh* attr = e->getAttributeNS(NULL, checkReplay);
67         if (attr && (*attr==chLatin_f || *attr==chDigit_0))
68             m_checkReplay = false;
69         attr = e->getAttributeNS(NULL, expires);
70         if (attr)
71             m_expires = XMLString::parseInt(attr);
72     }
73 }
74
75 bool MessageFlowRule::evaluate(const XMLObject& message, const GenericRequest* request, SecurityPolicy& policy) const
76 {
77     Category& log=Category::getInstance(SAML_LOGCAT".SecurityPolicyRule.MessageFlow");
78     log.debug("evaluating message flow policy (replay checking %s, expiration %lu)", m_checkReplay ? "on" : "off", m_expires);
79
80     time_t now = policy.getTime();
81     time_t skew = XMLToolingConfig::getConfig().clock_skew_secs;
82     time_t issueInstant = policy.getIssueInstant();
83     if (issueInstant == 0) {
84         issueInstant = now;
85     }
86     else {
87         if (issueInstant > now + skew) {
88             log.errorStream() << "rejected not-yet-valid message, timestamp (" << issueInstant <<
89                 "), newest allowed (" << now + skew << ")" << logging::eol;
90             throw SecurityPolicyException("Message rejected, was issued in the future.");
91         }
92         else if (issueInstant < now - skew - m_expires) {
93             log.errorStream() << "rejected expired message, timestamp (" << issueInstant <<
94                 "), oldest allowed (" << (now - skew - m_expires) << ")" << logging::eol;
95             throw SecurityPolicyException("Message expired, was issued too long ago.");
96         }
97     }
98
99     // Check replay.
100     if (m_checkReplay) {
101         const XMLCh* id = policy.getMessageID();
102         if (!id || !*id)
103             return false;
104
105         ReplayCache* replayCache = XMLToolingConfig::getConfig().getReplayCache();
106         if (!replayCache) {
107             log.warn("no ReplayCache available, skipping requested replay check");
108             return false;
109         }
110
111         auto_ptr_char temp(id);
112         if (!replayCache->check("MessageFlow", temp.get(), issueInstant + skew + m_expires)) {
113             log.error("replay detected of message ID (%s)", temp.get());
114             throw SecurityPolicyException("Rejecting replayed message ID ($1).", params(1,temp.get()));
115         }
116         return true;
117     }
118     return false;
119 }