blob: 197fa4374ecd3defe19e28f05d0322631fce86af [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-relative.hpp"
27
28#include "signature-sha256-with-rsa.hpp"
29#include "security-common.hpp"
30
Yingdi Yu3715f8d2014-01-30 00:32:20 -080031using namespace std;
32
Yingdi Yufc40d872014-02-18 12:56:04 -080033namespace ndn {
Yingdi Yu3715f8d2014-01-30 00:32:20 -080034
Yingdi Yu4b8c6a22014-04-15 23:00:54 -070035SecRuleRelative::SecRuleRelative (const string& dataRegex, const string& signerRegex,
36 const string& op,
37 const string& dataExpand, const string& signerExpand,
38 bool isPositive)
Yingdi Yu3715f8d2014-01-30 00:32:20 -080039 : SecRule(isPositive),
40 m_dataRegex(dataRegex),
41 m_signerRegex(signerRegex),
42 m_op(op),
43 m_dataExpand(dataExpand),
44 m_signerExpand(signerExpand),
45 m_dataNameRegex(dataRegex, dataExpand),
46 m_signerNameRegex(signerRegex, signerExpand)
47{
Alexander Afanasyevfdbfc6d2014-04-14 15:12:11 -070048 if (op != ">" && op != ">=" && op != "==")
Yingdi Yu3715f8d2014-01-30 00:32:20 -080049 throw Error("op is wrong!");
50}
51
52SecRuleRelative::~SecRuleRelative()
Alexander Afanasyevfdbfc6d2014-04-14 15:12:11 -070053{
54}
Yingdi Yu3715f8d2014-01-30 00:32:20 -080055
Alexander Afanasyevfdbfc6d2014-04-14 15:12:11 -070056bool
Yingdi Yu3715f8d2014-01-30 00:32:20 -080057SecRuleRelative::satisfy (const Data& data)
58{
59 Name dataName = data.getName();
Yingdi Yu4b8c6a22014-04-15 23:00:54 -070060 try
61 {
62 SignatureSha256WithRsa sig(data.getSignature());
63 Name signerName = sig.getKeyLocator().getName ();
64 return satisfy (dataName, signerName);
65 }
66 catch (std::runtime_error& e)
67 {
68 return false;
69 }
Yingdi Yu3715f8d2014-01-30 00:32:20 -080070}
Alexander Afanasyevfdbfc6d2014-04-14 15:12:11 -070071
72bool
Yingdi Yu3715f8d2014-01-30 00:32:20 -080073SecRuleRelative::satisfy (const Name& dataName, const Name& signerName)
74{
Alexander Afanasyevfdbfc6d2014-04-14 15:12:11 -070075 if (!m_dataNameRegex.match(dataName))
Yingdi Yu3715f8d2014-01-30 00:32:20 -080076 return false;
77 Name expandDataName = m_dataNameRegex.expand();
78
Alexander Afanasyevfdbfc6d2014-04-14 15:12:11 -070079 if (!m_signerNameRegex.match(signerName))
Yingdi Yu3715f8d2014-01-30 00:32:20 -080080 return false;
81 Name expandSignerName = m_signerNameRegex.expand();
Alexander Afanasyevfdbfc6d2014-04-14 15:12:11 -070082
Yingdi Yu3715f8d2014-01-30 00:32:20 -080083 bool matched = compare(expandDataName, expandSignerName);
Alexander Afanasyevfdbfc6d2014-04-14 15:12:11 -070084
Yingdi Yu3715f8d2014-01-30 00:32:20 -080085 return matched;
86}
87
Alexander Afanasyevfdbfc6d2014-04-14 15:12:11 -070088bool
Yingdi Yu3715f8d2014-01-30 00:32:20 -080089SecRuleRelative::matchDataName (const Data& data)
Yingdi Yu4b8c6a22014-04-15 23:00:54 -070090{
91 return m_dataNameRegex.match(data.getName());
92}
Yingdi Yu3715f8d2014-01-30 00:32:20 -080093
94bool
95SecRuleRelative::matchSignerName (const Data& data)
Alexander Afanasyevfdbfc6d2014-04-14 15:12:11 -070096{
Yingdi Yu4b8c6a22014-04-15 23:00:54 -070097 try
98 {
99 SignatureSha256WithRsa sig(data.getSignature());
100 Name signerName = sig.getKeyLocator().getName ();
101 return m_signerNameRegex.match(signerName);
102 }
103 catch (std::runtime_error& e)
104 {
105 return false;
106 }
Yingdi Yu3715f8d2014-01-30 00:32:20 -0800107}
108
Alexander Afanasyevfdbfc6d2014-04-14 15:12:11 -0700109bool
110SecRuleRelative::compare(const Name& dataName, const Name& signerName)
111{
112 if ((dataName == signerName) && ("==" == m_op || ">=" == m_op))
Yingdi Yu3715f8d2014-01-30 00:32:20 -0800113 return true;
Alexander Afanasyevfdbfc6d2014-04-14 15:12:11 -0700114
Yingdi Yu3715f8d2014-01-30 00:32:20 -0800115 Name::const_iterator i = dataName.begin ();
116 Name::const_iterator j = signerName.begin ();
117
118 for (; i != dataName.end () && j != signerName.end (); i++, j++)
119 {
120 if ((i->compare(*j)) == 0)
121 continue;
122 else
123 return false;
124 }
Alexander Afanasyevfdbfc6d2014-04-14 15:12:11 -0700125
126 if (i == dataName.end())
Yingdi Yu3715f8d2014-01-30 00:32:20 -0800127 return false;
Alexander Afanasyevfdbfc6d2014-04-14 15:12:11 -0700128 else
Yingdi Yu3715f8d2014-01-30 00:32:20 -0800129 return true;
130}
131
Yingdi Yufc40d872014-02-18 12:56:04 -0800132} // namespace ndn