Yingdi Yu | 43e7161 | 2013-10-30 22:19:31 -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 | 5e0af3e | 2014-01-15 19:33:25 -0800 | [diff] [blame^] | 11 | #include "sec-rule-sync-specific.h" |
| 12 | #include <ndn-cpp/security/signature-sha256-with-rsa.hpp> |
Yingdi Yu | 43e7161 | 2013-10-30 22:19:31 -0700 | [diff] [blame] | 13 | |
| 14 | using namespace ndn; |
Yingdi Yu | 46c9f1a | 2013-12-18 15:15:46 +0800 | [diff] [blame] | 15 | using namespace ndn::ptr_lib; |
Yingdi Yu | 43e7161 | 2013-10-30 22:19:31 -0700 | [diff] [blame] | 16 | using namespace std; |
Yingdi Yu | 43e7161 | 2013-10-30 22:19:31 -0700 | [diff] [blame] | 17 | |
| 18 | |
Yingdi Yu | 5e0af3e | 2014-01-15 19:33:25 -0800 | [diff] [blame^] | 19 | SecRuleSyncSpecific::SecRuleSyncSpecific(shared_ptr<Regex> dataRegex, |
| 20 | shared_ptr<Regex> signerRegex) |
| 21 | : SecRule(SecRule::IDENTITY_RULE, true) |
Yingdi Yu | 43e7161 | 2013-10-30 22:19:31 -0700 | [diff] [blame] | 22 | , m_dataRegex(dataRegex) |
| 23 | , m_signerRegex(signerRegex) |
| 24 | {} |
| 25 | |
Yingdi Yu | 5e0af3e | 2014-01-15 19:33:25 -0800 | [diff] [blame^] | 26 | SecRuleSyncSpecific::SecRuleSyncSpecific(const SecRuleSyncSpecific& rule) |
| 27 | : SecRule(SecRule::IDENTITY_RULE, true) |
Yingdi Yu | 43e7161 | 2013-10-30 22:19:31 -0700 | [diff] [blame] | 28 | , m_dataRegex(rule.m_dataRegex) |
| 29 | , m_signerRegex(rule.m_signerRegex) |
| 30 | {} |
| 31 | |
| 32 | bool |
Yingdi Yu | 5e0af3e | 2014-01-15 19:33:25 -0800 | [diff] [blame^] | 33 | SecRuleSyncSpecific::matchDataName(const Data& data) |
Yingdi Yu | 43e7161 | 2013-10-30 22:19:31 -0700 | [diff] [blame] | 34 | { return m_dataRegex->match(data.getName()); } |
| 35 | |
| 36 | bool |
Yingdi Yu | 5e0af3e | 2014-01-15 19:33:25 -0800 | [diff] [blame^] | 37 | SecRuleSyncSpecific::matchSignerName(const Data& data) |
Yingdi Yu | 43e7161 | 2013-10-30 22:19:31 -0700 | [diff] [blame] | 38 | { |
Yingdi Yu | 0cb0f2b | 2014-01-09 13:51:16 -0800 | [diff] [blame] | 39 | try{ |
| 40 | SignatureSha256WithRsa sig(data.getSignature()); |
| 41 | Name signerName = sig.getKeyLocator().getName (); |
| 42 | return m_signerRegex->match(signerName); |
| 43 | }catch(SignatureSha256WithRsa::Error &e){ |
| 44 | return false; |
| 45 | }catch(KeyLocator::Error &e){ |
| 46 | return false; |
| 47 | } |
Yingdi Yu | 43e7161 | 2013-10-30 22:19:31 -0700 | [diff] [blame] | 48 | } |
| 49 | |
| 50 | bool |
Yingdi Yu | 5e0af3e | 2014-01-15 19:33:25 -0800 | [diff] [blame^] | 51 | SecRuleSyncSpecific::satisfy(const Data & data) |
Yingdi Yu | 43e7161 | 2013-10-30 22:19:31 -0700 | [diff] [blame] | 52 | { return (matchDataName(data) && matchSignerName(data)) ? true : false ; } |
| 53 | |
| 54 | bool |
Yingdi Yu | 5e0af3e | 2014-01-15 19:33:25 -0800 | [diff] [blame^] | 55 | SecRuleSyncSpecific::satisfy(const Name & dataName, const Name & signerName) |
Yingdi Yu | 43e7161 | 2013-10-30 22:19:31 -0700 | [diff] [blame] | 56 | { return (m_dataRegex->match(dataName) && m_signerRegex->match(signerName)); } |