Multi-line svn commit, see body.
[shibboleth/cpp-opensaml.git] / saml / binding / impl / MessageFlowRule.cpp
1 /*
2  *  Copyright 2001-2007 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         void evaluate(const XMLObject& message, const GenericRequest* request, const XMLCh* protocol, 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 void MessageFlowRule::evaluate(
76     const XMLObject& message, const GenericRequest* request, const XMLCh* protocol, SecurityPolicy& policy
77     ) const
78 {
79     Category& log=Category::getInstance(SAML_LOGCAT".SecurityPolicyRule.MessageFlow");
80     log.debug("evaluating message flow policy (replay checking %s, expiration %lu)", m_checkReplay ? "on" : "off", m_expires);
81
82     time_t now = time(NULL);
83     time_t skew = XMLToolingConfig::getConfig().clock_skew_secs;
84     time_t issueInstant = policy.getIssueInstant();
85     if (issueInstant == 0) {
86         issueInstant = now;
87     }
88     else {
89         if (issueInstant > now + skew) {
90             log.errorStream() << "rejected not-yet-valid message, timestamp (" << issueInstant <<
91                 "), newest allowed (" << now + skew << ")" << CategoryStream::ENDLINE;
92             throw SecurityPolicyException("Message rejected, was issued in the future.");
93         }
94         else if (issueInstant < now - skew - m_expires) {
95             log.errorStream() << "rejected expired message, timestamp (" << issueInstant <<
96                 "), oldest allowed (" << (now - skew - m_expires) << ")" << CategoryStream::ENDLINE;
97             throw SecurityPolicyException("Message expired, was issued too long ago.");
98         }
99     }
100     
101     // Check replay.
102     if (m_checkReplay) {
103         const XMLCh* id = policy.getMessageID();
104         if (!id || !*id)
105             return;
106
107         ReplayCache* replayCache = XMLToolingConfig::getConfig().getReplayCache();
108         if (!replayCache) {
109             log.warn("no ReplayCache available, skipping requested replay check");
110             return;
111         }
112
113         auto_ptr_char temp(id);
114         if (!replayCache->check("MessageFlow", temp.get(), issueInstant + skew + m_expires)) {
115             log.error("replay detected of message ID (%s)", temp.get());
116             throw SecurityPolicyException("Rejecting replayed message ID ($1).", params(1,temp.get()));
117         }
118     }
119 }