blob: 6f4886ccbac06c0200df2c109335a35b7744395e [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 Yu3715f8d2014-01-30 00:32:20 -080029using namespace std;
30
Yingdi Yufc40d872014-02-18 12:56:04 -080031namespace ndn {
Yingdi Yu3715f8d2014-01-30 00:32:20 -080032
33SecRuleSpecific::SecRuleSpecific(shared_ptr<Regex> dataRegex,
34 shared_ptr<Regex> signerRegex)
35 : SecRule(true)
36 , m_dataRegex(dataRegex)
37 , m_signerRegex(signerRegex)
Yingdi Yu0fc447c2014-04-29 19:38:32 -070038 , m_isExempted(false)
39{
40}
41
42SecRuleSpecific::SecRuleSpecific(shared_ptr<Regex> dataRegex)
43 : SecRule(true)
44 , m_dataRegex(dataRegex)
45 , m_isExempted(true)
Yingdi Yu4b8c6a22014-04-15 23:00:54 -070046{
47}
Yingdi Yu3715f8d2014-01-30 00:32:20 -080048
49SecRuleSpecific::SecRuleSpecific(const SecRuleSpecific& rule)
50 : SecRule(true)
51 , m_dataRegex(rule.m_dataRegex)
52 , m_signerRegex(rule.m_signerRegex)
Yingdi Yu0fc447c2014-04-29 19:38:32 -070053 , m_isExempted(rule.m_isExempted)
Yingdi Yu4b8c6a22014-04-15 23:00:54 -070054{
55}
Yingdi Yu3715f8d2014-01-30 00:32:20 -080056
Alexander Afanasyevfdbfc6d2014-04-14 15:12:11 -070057bool
Yingdi Yu3715f8d2014-01-30 00:32:20 -080058SecRuleSpecific::matchDataName(const Data& data)
Yingdi Yu4b8c6a22014-04-15 23:00:54 -070059{
60 return m_dataRegex->match(data.getName());
61}
Yingdi Yu3715f8d2014-01-30 00:32:20 -080062
Alexander Afanasyevfdbfc6d2014-04-14 15:12:11 -070063bool
Yingdi Yu3715f8d2014-01-30 00:32:20 -080064SecRuleSpecific::matchSignerName(const Data& data)
Alexander Afanasyevfdbfc6d2014-04-14 15:12:11 -070065{
Yingdi Yu0fc447c2014-04-29 19:38:32 -070066 if (m_isExempted)
67 return true;
68
Yingdi Yu4b8c6a22014-04-15 23:00:54 -070069 try
70 {
71 SignatureSha256WithRsa sig(data.getSignature());
72 Name signerName = sig.getKeyLocator().getName();
73 return m_signerRegex->match(signerName);
74 }
75 catch (std::runtime_error& e)
76 {
77 return false;
78 }
Yingdi Yu3715f8d2014-01-30 00:32:20 -080079}
80
81bool
Alexander Afanasyevfdbfc6d2014-04-14 15:12:11 -070082SecRuleSpecific::satisfy(const Data& data)
83{
84 return (matchDataName(data) && matchSignerName(data)) ? true : false;
Yingdi Yufc40d872014-02-18 12:56:04 -080085}
Yingdi Yu3715f8d2014-01-30 00:32:20 -080086
87bool
Alexander Afanasyevfdbfc6d2014-04-14 15:12:11 -070088SecRuleSpecific::satisfy(const Name& dataName, const Name& signerName)
89{
Yingdi Yu0fc447c2014-04-29 19:38:32 -070090 bool isSignerMatched = m_isExempted || m_signerRegex->match(signerName);
91 return (m_dataRegex->match(dataName) && isSignerMatched);
Yingdi Yu3715f8d2014-01-30 00:32:20 -080092}
Yingdi Yufc40d872014-02-18 12:56:04 -080093
94} // namespace ndn