Yingdi Yu | 89da305 | 2013-10-26 15:08:37 -0700 | [diff] [blame] | 1 | /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil -*- */ |
| 2 | /* |
| 3 | * Copyright (c) 2013, Regents of the University of California |
| 4 | * Yingdi Yu |
| 5 | * |
| 6 | * BSD license, See the LICENSE file for more information |
| 7 | * |
| 8 | * Author: Yingdi Yu <yingdi@cs.ucla.edu> |
| 9 | */ |
| 10 | |
Yingdi Yu | 42f6646 | 2013-10-31 17:38:22 -0700 | [diff] [blame] | 11 | #include "chat-policy-rule.h" |
| 12 | #include <ndn.cxx/fields/signature-sha256-with-rsa.h> |
Yingdi Yu | 89da305 | 2013-10-26 15:08:37 -0700 | [diff] [blame] | 13 | |
| 14 | using namespace ndn; |
| 15 | using namespace std; |
| 16 | using namespace ndn::security; |
| 17 | |
| 18 | |
Yingdi Yu | 42f6646 | 2013-10-31 17:38:22 -0700 | [diff] [blame] | 19 | ChatPolicyRule::ChatPolicyRule(Ptr<Regex> dataRegex, |
| 20 | Ptr<Regex> signerRegex) |
| 21 | : PolicyRule(PolicyRule::IDENTITY_POLICY, true) |
Yingdi Yu | 89da305 | 2013-10-26 15:08:37 -0700 | [diff] [blame] | 22 | , m_dataRegex(dataRegex) |
| 23 | , m_signerRegex(signerRegex) |
Yingdi Yu | 42f6646 | 2013-10-31 17:38:22 -0700 | [diff] [blame] | 24 | {} |
| 25 | |
| 26 | ChatPolicyRule::ChatPolicyRule(const ChatPolicyRule& rule) |
| 27 | : PolicyRule(PolicyRule::IDENTITY_POLICY, true) |
| 28 | , m_dataRegex(rule.m_dataRegex) |
| 29 | , m_signerRegex(rule.m_signerRegex) |
Yingdi Yu | 89da305 | 2013-10-26 15:08:37 -0700 | [diff] [blame] | 30 | {} |
| 31 | |
| 32 | bool |
| 33 | ChatPolicyRule::matchDataName(const Data & data) |
Yingdi Yu | 42f6646 | 2013-10-31 17:38:22 -0700 | [diff] [blame] | 34 | { return m_dataRegex->match(data.getName()); } |
Yingdi Yu | 89da305 | 2013-10-26 15:08:37 -0700 | [diff] [blame] | 35 | |
| 36 | bool |
| 37 | ChatPolicyRule::matchSignerName(const Data & data) |
| 38 | { |
Yingdi Yu | b35b865 | 2013-11-07 11:32:40 -0800 | [diff] [blame] | 39 | Ptr<const Signature> sig = data.getSignature(); |
| 40 | |
| 41 | if(NULL == sig) |
| 42 | return false; |
| 43 | |
| 44 | Ptr<const signature::Sha256WithRsa> sigPtr = DynamicCast<const signature::Sha256WithRsa> (sig); |
| 45 | if(KeyLocator::KEYNAME != sigPtr->getKeyLocator().getType()) |
| 46 | return false; |
| 47 | |
Yingdi Yu | 89da305 | 2013-10-26 15:08:37 -0700 | [diff] [blame] | 48 | Name signerName = sigPtr->getKeyLocator ().getKeyName (); |
Yingdi Yu | 42f6646 | 2013-10-31 17:38:22 -0700 | [diff] [blame] | 49 | return m_signerRegex->match(signerName); |
Yingdi Yu | 89da305 | 2013-10-26 15:08:37 -0700 | [diff] [blame] | 50 | } |
| 51 | |
| 52 | bool |
| 53 | ChatPolicyRule::satisfy(const Data & data) |
| 54 | { return (matchDataName(data) && matchSignerName(data)) ? true : false ; } |
| 55 | |
| 56 | bool |
| 57 | ChatPolicyRule::satisfy(const Name & dataName, const Name & signerName) |
Yingdi Yu | 42f6646 | 2013-10-31 17:38:22 -0700 | [diff] [blame] | 58 | { return (m_dataRegex->match(dataName) && m_signerRegex->match(signerName)); } |