Alexander Afanasyev | 09236c2 | 2020-06-03 13:42:38 -0400 | [diff] [blame] | 1 | /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */ |
| 2 | /* |
Davide Pesavento | 0990441 | 2021-03-24 16:40:53 -0400 | [diff] [blame] | 3 | * Copyright (c) 2013-2021 Regents of the University of California. |
Alexander Afanasyev | 09236c2 | 2020-06-03 13:42:38 -0400 | [diff] [blame] | 4 | * |
| 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 Pesavento | 0990441 | 2021-03-24 16:40:53 -0400 | [diff] [blame] | 22 | #ifndef NDN_CXX_SECURITY_CERTIFICATE_FETCHER_DIRECT_FETCH_HPP |
| 23 | #define NDN_CXX_SECURITY_CERTIFICATE_FETCHER_DIRECT_FETCH_HPP |
Alexander Afanasyev | 09236c2 | 2020-06-03 13:42:38 -0400 | [diff] [blame] | 24 | |
| 25 | #include "ndn-cxx/security/certificate-fetcher-from-network.hpp" |
| 26 | |
| 27 | namespace ndn { |
| 28 | namespace security { |
| 29 | inline 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 | */ |
| 40 | class CertificateFetcherDirectFetch : public CertificateFetcherFromNetwork |
| 41 | { |
| 42 | public: |
| 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 | |
| 52 | protected: |
| 53 | void |
| 54 | doFetch(const shared_ptr<CertificateRequest>& keyRequest, const shared_ptr<ValidationState>& state, |
| 55 | const ValidationContinuation& continueValidation) override; |
| 56 | |
| 57 | private: |
| 58 | bool m_wantDirectInterestOnly = false; |
| 59 | }; |
| 60 | |
| 61 | } // inline namespace v2 |
| 62 | } // namespace security |
| 63 | } // namespace ndn |
| 64 | |
Davide Pesavento | 0990441 | 2021-03-24 16:40:53 -0400 | [diff] [blame] | 65 | #endif // NDN_CXX_SECURITY_CERTIFICATE_FETCHER_DIRECT_FETCH_HPP |