blob: 83af8fbee1603c9295770a4de8423c18a8f96363 [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
Yingdi Yufc40d872014-02-18 12:56:04 -080024#ifndef NDN_SECURITY_SEC_RULE_SPECIFIC_H
25#define NDN_SECURITY_SEC_RULE_SPECIFIC_H
Yingdi Yu3715f8d2014-01-30 00:32:20 -080026
Alexander Afanasyeve2dcdfd2014-02-07 15:53:28 -080027#include "../common.hpp"
Yingdi Yu3715f8d2014-01-30 00:32:20 -080028#include "sec-rule.hpp"
29#include "../util/regex.hpp"
30
Yingdi Yufc40d872014-02-18 12:56:04 -080031namespace ndn {
Yingdi Yu3715f8d2014-01-30 00:32:20 -080032
Yingdi Yu4b8c6a22014-04-15 23:00:54 -070033class SecRuleSpecific : public SecRule
Yingdi Yu3715f8d2014-01-30 00:32:20 -080034{
Yingdi Yu4b8c6a22014-04-15 23:00:54 -070035
Yingdi Yu3715f8d2014-01-30 00:32:20 -080036public:
Yingdi Yu4b8c6a22014-04-15 23:00:54 -070037 SecRuleSpecific(shared_ptr<Regex> dataRegex,
38 shared_ptr<Regex> signerRegex);
Yingdi Yu3715f8d2014-01-30 00:32:20 -080039
Yingdi Yu0fc447c2014-04-29 19:38:32 -070040 SecRuleSpecific(shared_ptr<Regex> dataRegex);
41
Yingdi Yu3715f8d2014-01-30 00:32:20 -080042 SecRuleSpecific(const SecRuleSpecific& rule);
43
44 virtual
45 ~SecRuleSpecific() {};
46
Yingdi Yu4b8c6a22014-04-15 23:00:54 -070047 bool
48 matchDataName(const Data& data);
Yingdi Yu3715f8d2014-01-30 00:32:20 -080049
50 bool
Yingdi Yu4b8c6a22014-04-15 23:00:54 -070051 matchSignerName(const Data& data);
Yingdi Yu3715f8d2014-01-30 00:32:20 -080052
53 bool
Yingdi Yu4b8c6a22014-04-15 23:00:54 -070054 satisfy(const Data& data);
55
56 bool
57 satisfy(const Name& dataName, const Name& signerName);
58
Yingdi Yu0fc447c2014-04-29 19:38:32 -070059 bool
60 isExempted() const
61 {
62 return m_isExempted;
63 }
64
Yingdi Yu3715f8d2014-01-30 00:32:20 -080065private:
Yingdi Yu4b8c6a22014-04-15 23:00:54 -070066 shared_ptr<Regex> m_dataRegex;
67 shared_ptr<Regex> m_signerRegex;
Yingdi Yu0fc447c2014-04-29 19:38:32 -070068 bool m_isExempted;
Yingdi Yu3715f8d2014-01-30 00:32:20 -080069};
70
Yingdi Yufc40d872014-02-18 12:56:04 -080071} // namespace ndn
Yingdi Yu3715f8d2014-01-30 00:32:20 -080072
Yingdi Yufc40d872014-02-18 12:56:04 -080073#endif //NDN_SECURITY_SEC_RULE_SPECIFIC_H