blob: 75f45b97b3829b2c2b2082505736d103ab60eb02 [file] [log] [blame]
Alexander Afanasyevc169a812014-05-20 20:37:29 -04001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
Yingdi Yu3715f8d2014-01-30 00:32:20 -08002/**
Alexander Afanasyevc169a812014-05-20 20:37:29 -04003 * Copyright (c) 2013-2014 Regents of the University of California.
Alexander Afanasyevdfa52c42014-04-24 21:10:11 -07004 *
5 * This file is part of ndn-cxx library (NDN C++ library with eXperimental eXtensions).
Alexander Afanasyevdfa52c42014-04-24 21:10:11 -07006 *
Alexander Afanasyevc169a812014-05-20 20:37:29 -04007 * ndn-cxx library is free software: you can redistribute it and/or modify it under the
8 * terms of the GNU Lesser General Public License as published by the Free Software
9 * Foundation, either version 3 of the License, or (at your option) any later version.
10 *
11 * ndn-cxx library is distributed in the hope that it will be useful, but WITHOUT ANY
12 * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A
13 * PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details.
14 *
15 * You should have received copies of the GNU General Public License and GNU Lesser
16 * General Public License along with ndn-cxx, e.g., in COPYING.md file. If not, see
17 * <http://www.gnu.org/licenses/>.
18 *
19 * See AUTHORS.md for complete list of ndn-cxx authors and contributors.
Alexander Afanasyevdfa52c42014-04-24 21:10:11 -070020 *
21 * @author Yingdi Yu <http://irl.cs.ucla.edu/~yingdi/>
Yingdi Yu3715f8d2014-01-30 00:32:20 -080022 */
23
Alexander Afanasyeve2dcdfd2014-02-07 15:53:28 -080024#include "common.hpp"
25
Yingdi Yu3715f8d2014-01-30 00:32:20 -080026#include "sec-rule-specific.hpp"
27#include "signature-sha256-with-rsa.hpp"
28
Yingdi Yufc40d872014-02-18 12:56:04 -080029namespace ndn {
Yingdi Yu3715f8d2014-01-30 00:32:20 -080030
31SecRuleSpecific::SecRuleSpecific(shared_ptr<Regex> dataRegex,
32 shared_ptr<Regex> signerRegex)
33 : SecRule(true)
34 , m_dataRegex(dataRegex)
35 , m_signerRegex(signerRegex)
Yingdi Yu0fc447c2014-04-29 19:38:32 -070036 , m_isExempted(false)
37{
38}
39
40SecRuleSpecific::SecRuleSpecific(shared_ptr<Regex> dataRegex)
41 : SecRule(true)
42 , m_dataRegex(dataRegex)
43 , m_isExempted(true)
Yingdi Yu4b8c6a22014-04-15 23:00:54 -070044{
45}
Yingdi Yu3715f8d2014-01-30 00:32:20 -080046
47SecRuleSpecific::SecRuleSpecific(const SecRuleSpecific& rule)
48 : SecRule(true)
49 , m_dataRegex(rule.m_dataRegex)
50 , m_signerRegex(rule.m_signerRegex)
Yingdi Yu0fc447c2014-04-29 19:38:32 -070051 , m_isExempted(rule.m_isExempted)
Yingdi Yu4b8c6a22014-04-15 23:00:54 -070052{
53}
Yingdi Yu3715f8d2014-01-30 00:32:20 -080054
Alexander Afanasyevfdbfc6d2014-04-14 15:12:11 -070055bool
Yingdi Yu3715f8d2014-01-30 00:32:20 -080056SecRuleSpecific::matchDataName(const Data& data)
Yingdi Yu4b8c6a22014-04-15 23:00:54 -070057{
58 return m_dataRegex->match(data.getName());
59}
Yingdi Yu3715f8d2014-01-30 00:32:20 -080060
Alexander Afanasyevfdbfc6d2014-04-14 15:12:11 -070061bool
Yingdi Yu3715f8d2014-01-30 00:32:20 -080062SecRuleSpecific::matchSignerName(const Data& data)
Alexander Afanasyevfdbfc6d2014-04-14 15:12:11 -070063{
Yingdi Yu0fc447c2014-04-29 19:38:32 -070064 if (m_isExempted)
65 return true;
66
Yingdi Yu4b8c6a22014-04-15 23:00:54 -070067 try
68 {
Yingdi Yu5ec0ee32014-06-24 16:26:09 -070069 SignatureWithPublicKey sig(data.getSignature());
Yingdi Yu4b8c6a22014-04-15 23:00:54 -070070 Name signerName = sig.getKeyLocator().getName();
71 return m_signerRegex->match(signerName);
72 }
Yingdi Yu5ec0ee32014-06-24 16:26:09 -070073 catch (Tlv::Error& e)
74 {
75 return false;
76 }
77 catch (KeyLocator::Error& e)
78 {
79 return false;
80 }
81 catch (RegexMatcher::Error& e)
Yingdi Yu4b8c6a22014-04-15 23:00:54 -070082 {
83 return false;
84 }
Yingdi Yu3715f8d2014-01-30 00:32:20 -080085}
86
87bool
Alexander Afanasyevfdbfc6d2014-04-14 15:12:11 -070088SecRuleSpecific::satisfy(const Data& data)
89{
90 return (matchDataName(data) && matchSignerName(data)) ? true : false;
Yingdi Yufc40d872014-02-18 12:56:04 -080091}
Yingdi Yu3715f8d2014-01-30 00:32:20 -080092
93bool
Alexander Afanasyevfdbfc6d2014-04-14 15:12:11 -070094SecRuleSpecific::satisfy(const Name& dataName, const Name& signerName)
95{
Yingdi Yu0fc447c2014-04-29 19:38:32 -070096 bool isSignerMatched = m_isExempted || m_signerRegex->match(signerName);
Yingdi Yu5ec0ee32014-06-24 16:26:09 -070097 return m_dataRegex->match(dataName) && isSignerMatched;
Yingdi Yu3715f8d2014-01-30 00:32:20 -080098}
Yingdi Yufc40d872014-02-18 12:56:04 -080099
100} // namespace ndn