blob: 2a47caa2dcd1ca0cac6b3ffe552e8536775e66d0 [file] [log] [blame]
Vince Lehmanc2acdcb2015-04-29 11:14:35 -05001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
Alexander Afanasyev0ad01f32020-06-03 14:12:58 -04002/*
Junxiao Shib032fcb2022-04-28 01:28:50 +00003 * Copyright (c) 2014-2022, The University of Memphis,
Vince Lehmanc2acdcb2015-04-29 11:14:35 -05004 * Regents of the University of California,
5 * Arizona Board of Regents.
6 *
7 * This file is part of NLSR (Named-data Link State Routing).
8 * See AUTHORS.md for complete list of NLSR authors and contributors.
9 *
10 * NLSR is free software: you can redistribute it and/or modify it under the terms
11 * of the GNU General Public License as published by the Free Software Foundation,
12 * either version 3 of the License, or (at your option) any later version.
13 *
14 * NLSR is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
15 * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
16 * PURPOSE. See the GNU General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License along with
19 * NLSR, e.g., in COPYING.md file. If not, see <http://www.gnu.org/licenses/>.
Alexander Afanasyev0ad01f32020-06-03 14:12:58 -040020 */
Vince Lehmanc2acdcb2015-04-29 11:14:35 -050021
22#ifndef NLSR_CERTIFICATE_STORE_HPP
23#define NLSR_CERTIFICATE_STORE_HPP
24
Saurab Dulal427e0122019-11-28 11:58:02 -060025#include "common.hpp"
26#include "test-access-control.hpp"
27#include "lsdb.hpp"
Vince Lehmanc2acdcb2015-04-29 11:14:35 -050028
29#include <ndn-cxx/interest.hpp>
Saurab Dulal427e0122019-11-28 11:58:02 -060030#include <ndn-cxx/mgmt/nfd/controller.hpp>
Alexander Afanasyev0ad01f32020-06-03 14:12:58 -040031#include <ndn-cxx/security/certificate.hpp>
Saurab Dulal427e0122019-11-28 11:58:02 -060032#include <ndn-cxx/security/validator-config.hpp>
Vince Lehmanc2acdcb2015-04-29 11:14:35 -050033
34namespace nlsr {
Saurab Dulal427e0122019-11-28 11:58:02 -060035class ConfParameter;
Vince Lehmanc2acdcb2015-04-29 11:14:35 -050036namespace security {
37
Nick Gordond0a7df32017-05-30 16:44:34 -050038/*! \brief Store certificates for names
39 *
40 * Stores certificates that this router claims to be authoritative
41 * for. That is, this stores only the certificates that we will reply
42 * to KEY interests with, e.g. when other routers are verifying data
43 * we have sent.
44 */
Vince Lehmanc2acdcb2015-04-29 11:14:35 -050045class CertificateStore
46{
47public:
Saurab Dulal427e0122019-11-28 11:58:02 -060048 CertificateStore(ndn::Face& face, ConfParameter& confParam, Lsdb& lsdb);
49
Vince Lehmanc2acdcb2015-04-29 11:14:35 -050050 void
Alexander Afanasyev0ad01f32020-06-03 14:12:58 -040051 insert(const ndn::security::Certificate& certificate);
Vince Lehmanc2acdcb2015-04-29 11:14:35 -050052
Junxiao Shib032fcb2022-04-28 01:28:50 +000053 /*!
54 * \brief Find a certificate
55 * \param name Either key name or certificate name.
Saurab Dulal427e0122019-11-28 11:58:02 -060056 *
57 * Find a certificate that NLSR has. First it checks against the
58 * certificates this NLSR claims to be authoritative for, usually
59 * something like this specific router's certificate, and then
60 * checks the cache of certificates it has already fetched. If none
61 * can be found, it will return an null pointer.
Junxiao Shib032fcb2022-04-28 01:28:50 +000062 */
Alexander Afanasyev0ad01f32020-06-03 14:12:58 -040063 const ndn::security::Certificate*
Junxiao Shib032fcb2022-04-28 01:28:50 +000064 find(const ndn::Name& name) const;
Vince Lehmanc2acdcb2015-04-29 11:14:35 -050065
Saurab Dulal427e0122019-11-28 11:58:02 -060066 /*! \brief Retrieves the chain of certificates from Validator's cache and
67 * store them in Nlsr's own CertificateStore.
68 * \param keyName Name of the first key in the certificate chain.
69 */
70 void
71 publishCertFromCache(const ndn::Name& keyName);
Vince Lehmanc2acdcb2015-04-29 11:14:35 -050072
Saurab Dulal427e0122019-11-28 11:58:02 -060073 void
74 afterFetcherSignalEmitted(const ndn::Data& lsaSegment);
Vince Lehmanc2acdcb2015-04-29 11:14:35 -050075
76PUBLIC_WITH_TESTS_ELSE_PRIVATE:
Junxiao Shib032fcb2022-04-28 01:28:50 +000077 const ndn::security::Certificate*
78 findByKeyName(const ndn::Name& keyName) const;
79
80 const ndn::security::Certificate*
81 findByCertName(const ndn::Name& certName) const;
82
Vince Lehmanc2acdcb2015-04-29 11:14:35 -050083 void
Saurab Dulal427e0122019-11-28 11:58:02 -060084 clear();
85
86 void
87 setInterestFilter(const ndn::Name& prefix, const bool loopback = false);
88
89 void
90 registerKeyPrefixes();
91
92 void
93 onKeyInterest(const ndn::Name& name, const ndn::Interest& interest);
94
95 void
96 onKeyPrefixRegSuccess(const ndn::Name& name);
97
98 void
99 registrationFailed(const ndn::Name& name);
Vince Lehmanc2acdcb2015-04-29 11:14:35 -0500100
101private:
Alexander Afanasyev0ad01f32020-06-03 14:12:58 -0400102 typedef std::map<ndn::Name, ndn::security::Certificate> CertMap;
Vince Lehmanc2acdcb2015-04-29 11:14:35 -0500103 CertMap m_certificates;
Saurab Dulal427e0122019-11-28 11:58:02 -0600104 ndn::Face& m_face;
105 ConfParameter& m_confParam;
Saurab Dulal427e0122019-11-28 11:58:02 -0600106 ndn::security::ValidatorConfig& m_validator;
107 ndn::util::signal::ScopedConnection m_afterSegmentValidatedConnection;
Vince Lehmanc2acdcb2015-04-29 11:14:35 -0500108};
109
110} // namespace security
111} // namespace nlsr
112
113#endif // NLSR_CERTIFICATE_STORE_HPP