blob: 0ec8bb5b3ecd05191584523d81778e822997d269 [file] [log] [blame]
Alexander Afanasyev09236c22020-06-03 13:42:38 -04001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2/*
Davide Pesavento09904412021-03-24 16:40:53 -04003 * Copyright (c) 2013-2021 Regents of the University of California.
Alexander Afanasyev09236c22020-06-03 13:42:38 -04004 *
5 * This file is part of ndn-cxx library (NDN C++ library with eXperimental eXtensions).
6 *
7 * 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.
20 */
21
Davide Pesavento09904412021-03-24 16:40:53 -040022#ifndef NDN_CXX_SECURITY_CERTIFICATE_FETCHER_DIRECT_FETCH_HPP
23#define NDN_CXX_SECURITY_CERTIFICATE_FETCHER_DIRECT_FETCH_HPP
Alexander Afanasyev09236c22020-06-03 13:42:38 -040024
25#include "ndn-cxx/security/certificate-fetcher-from-network.hpp"
26
27namespace ndn {
28namespace security {
29inline namespace v2 {
30
31/**
32 * @brief Extends CertificateFetcherFromNetwork to fetch certificates from the incoming face of
33 * the packet
34 *
35 * During Interest and Data validation, if IncomingFaceId tag is present on the original Interest,
36 * this fetcher will send a "direct Interest" to fetch certificates from the face where the original
37 * packet was received, in addition to fetching from the infrastructure. The application must
38 * enable NextHopFaceId privilege on the face used by this fetcher prior to the validation.
39 */
40class CertificateFetcherDirectFetch : public CertificateFetcherFromNetwork
41{
42public:
43 explicit
44 CertificateFetcherDirectFetch(Face& face);
45
46 /**
47 * If \p wantDirectInterestOnly, only the direct Interest will be sent out.
48 */
49 void
50 setSendDirectInterestOnly(bool wantDirectInterestOnly);
51
52protected:
53 void
54 doFetch(const shared_ptr<CertificateRequest>& keyRequest, const shared_ptr<ValidationState>& state,
55 const ValidationContinuation& continueValidation) override;
56
57private:
58 bool m_wantDirectInterestOnly = false;
59};
60
61} // inline namespace v2
62} // namespace security
63} // namespace ndn
64
Davide Pesavento09904412021-03-24 16:40:53 -040065#endif // NDN_CXX_SECURITY_CERTIFICATE_FETCHER_DIRECT_FETCH_HPP