Davide Pesavento | cb425e8 | 2019-07-14 21:48:22 -0400 | [diff] [blame] | 1 | /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */ |
| 2 | /* |
Davide Pesavento | 2c9d2ca | 2024-01-27 16:36:51 -0500 | [diff] [blame] | 3 | * Copyright (c) 2014-2024, Regents of the University of California, |
Davide Pesavento | cb425e8 | 2019-07-14 21:48:22 -0400 | [diff] [blame] | 4 | * Arizona Board of Regents, |
| 5 | * Colorado State University, |
| 6 | * University Pierre & Marie Curie, Sorbonne University, |
| 7 | * Washington University in St. Louis, |
| 8 | * Beijing Institute of Technology, |
| 9 | * The University of Memphis. |
| 10 | * |
| 11 | * This file is part of NFD (Named Data Networking Forwarding Daemon). |
| 12 | * See AUTHORS.md for complete list of NFD authors and contributors. |
| 13 | * |
| 14 | * NFD is free software: you can redistribute it and/or modify it under the terms |
| 15 | * of the GNU General Public License as published by the Free Software Foundation, |
| 16 | * either version 3 of the License, or (at your option) any later version. |
| 17 | * |
| 18 | * NFD is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; |
| 19 | * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR |
| 20 | * PURPOSE. See the GNU General Public License for more details. |
| 21 | * |
| 22 | * You should have received a copy of the GNU General Public License along with |
| 23 | * NFD, e.g., in COPYING.md file. If not, see <http://www.gnu.org/licenses/>. |
| 24 | */ |
| 25 | |
| 26 | #ifndef NFD_DAEMON_FACE_FACE_COMMON_HPP |
| 27 | #define NFD_DAEMON_FACE_FACE_COMMON_HPP |
| 28 | |
Teng Liang | d94b7b3 | 2022-07-10 21:29:37 +0800 | [diff] [blame] | 29 | #include "ethernet-protocol.hpp" |
| 30 | #include "udp-protocol.hpp" |
Davide Pesavento | cb425e8 | 2019-07-14 21:48:22 -0400 | [diff] [blame] | 31 | #include "common/logger.hpp" |
| 32 | |
| 33 | #include <ndn-cxx/encoding/nfd-constants.hpp> |
Davide Pesavento | 2c9d2ca | 2024-01-27 16:36:51 -0500 | [diff] [blame] | 34 | #include <ndn-cxx/net/face-uri.hpp> |
Davide Pesavento | cb425e8 | 2019-07-14 21:48:22 -0400 | [diff] [blame] | 35 | |
| 36 | #include <boost/logic/tribool.hpp> |
Teng Liang | d94b7b3 | 2022-07-10 21:29:37 +0800 | [diff] [blame] | 37 | #include <variant> |
Davide Pesavento | cb425e8 | 2019-07-14 21:48:22 -0400 | [diff] [blame] | 38 | |
| 39 | namespace nfd { |
| 40 | namespace face { |
| 41 | |
| 42 | class Face; |
| 43 | class LinkService; |
| 44 | |
Davide Pesavento | a3a7a4e | 2022-05-29 16:06:22 -0400 | [diff] [blame] | 45 | /** |
| 46 | * \brief Identifies a face. |
Davide Pesavento | cb425e8 | 2019-07-14 21:48:22 -0400 | [diff] [blame] | 47 | */ |
| 48 | using FaceId = uint64_t; |
| 49 | |
Davide Pesavento | a3a7a4e | 2022-05-29 16:06:22 -0400 | [diff] [blame] | 50 | /// Indicates an invalid FaceId |
Davide Pesavento | 20d94f6 | 2022-09-26 03:30:53 -0400 | [diff] [blame] | 51 | inline constexpr FaceId INVALID_FACEID = ndn::nfd::INVALID_FACE_ID; |
Davide Pesavento | a3a7a4e | 2022-05-29 16:06:22 -0400 | [diff] [blame] | 52 | /// Identifies the InternalFace used in management |
Davide Pesavento | 20d94f6 | 2022-09-26 03:30:53 -0400 | [diff] [blame] | 53 | inline constexpr FaceId FACEID_INTERNAL_FACE = 1; |
Davide Pesavento | a3a7a4e | 2022-05-29 16:06:22 -0400 | [diff] [blame] | 54 | /// Identifies a packet comes from the ContentStore |
Davide Pesavento | 20d94f6 | 2022-09-26 03:30:53 -0400 | [diff] [blame] | 55 | inline constexpr FaceId FACEID_CONTENT_STORE = 254; |
Davide Pesavento | a3a7a4e | 2022-05-29 16:06:22 -0400 | [diff] [blame] | 56 | /// Identifies the NullFace that drops every packet |
Davide Pesavento | 20d94f6 | 2022-09-26 03:30:53 -0400 | [diff] [blame] | 57 | inline constexpr FaceId FACEID_NULL = 255; |
Davide Pesavento | a3a7a4e | 2022-05-29 16:06:22 -0400 | [diff] [blame] | 58 | /// Upper bound of reserved FaceIds |
Davide Pesavento | 20d94f6 | 2022-09-26 03:30:53 -0400 | [diff] [blame] | 59 | inline constexpr FaceId FACEID_RESERVED_MAX = 255; |
Davide Pesavento | cb425e8 | 2019-07-14 21:48:22 -0400 | [diff] [blame] | 60 | |
Davide Pesavento | a3a7a4e | 2022-05-29 16:06:22 -0400 | [diff] [blame] | 61 | /** |
| 62 | * \brief Minimum MTU that may be set. |
Eric Newberry | cb6551e | 2020-03-02 14:12:16 -0800 | [diff] [blame] | 63 | * |
Davide Pesavento | a3a7a4e | 2022-05-29 16:06:22 -0400 | [diff] [blame] | 64 | * This is done to ensure the NDNLPv2 fragmentation feature functions properly. |
Eric Newberry | cb6551e | 2020-03-02 14:12:16 -0800 | [diff] [blame] | 65 | */ |
Davide Pesavento | 20d94f6 | 2022-09-26 03:30:53 -0400 | [diff] [blame] | 66 | inline constexpr ssize_t MIN_MTU = 64; |
Eric Newberry | cb6551e | 2020-03-02 14:12:16 -0800 | [diff] [blame] | 67 | |
Teng Liang | d94b7b3 | 2022-07-10 21:29:37 +0800 | [diff] [blame] | 68 | /** |
| 69 | * \brief Identifies a remote endpoint on the link. |
Davide Pesavento | cb425e8 | 2019-07-14 21:48:22 -0400 | [diff] [blame] | 70 | * |
Teng Liang | d94b7b3 | 2022-07-10 21:29:37 +0800 | [diff] [blame] | 71 | * This ID is only meaningful in the context of the same Transport. |
| 72 | * Incoming packets from the same remote endpoint have the same EndpointId, |
| 73 | * and incoming packets from different remote endpoints have different EndpointIds. |
Davide Pesavento | cb425e8 | 2019-07-14 21:48:22 -0400 | [diff] [blame] | 74 | * |
Teng Liang | d94b7b3 | 2022-07-10 21:29:37 +0800 | [diff] [blame] | 75 | * Typically, a point-to-point Transport has only one meaningful EndpointId, |
| 76 | * represented by `std::monostate`. |
Davide Pesavento | cb425e8 | 2019-07-14 21:48:22 -0400 | [diff] [blame] | 77 | */ |
Teng Liang | d94b7b3 | 2022-07-10 21:29:37 +0800 | [diff] [blame] | 78 | using EndpointId = std::variant<std::monostate, ethernet::Address, udp::Endpoint>; |
Davide Pesavento | cb425e8 | 2019-07-14 21:48:22 -0400 | [diff] [blame] | 79 | |
Davide Pesavento | 2c9d2ca | 2024-01-27 16:36:51 -0500 | [diff] [blame] | 80 | /** |
| 81 | * \brief Parameters used to set Transport properties or LinkService options on a newly created face. |
Davide Pesavento | cb425e8 | 2019-07-14 21:48:22 -0400 | [diff] [blame] | 82 | * |
Davide Pesavento | 2c9d2ca | 2024-01-27 16:36:51 -0500 | [diff] [blame] | 83 | * Parameters are passed as a struct rather than individually, so that a future change in the list |
| 84 | * of parameters does not require an update to the method signature in all subclasses. |
Davide Pesavento | cb425e8 | 2019-07-14 21:48:22 -0400 | [diff] [blame] | 85 | */ |
| 86 | struct FaceParams |
| 87 | { |
| 88 | ndn::nfd::FacePersistency persistency = ndn::nfd::FACE_PERSISTENCY_PERSISTENT; |
Davide Pesavento | b7bfcb9 | 2022-05-22 23:55:23 -0400 | [diff] [blame] | 89 | std::optional<time::nanoseconds> baseCongestionMarkingInterval; |
| 90 | std::optional<uint64_t> defaultCongestionThreshold; |
| 91 | std::optional<ssize_t> mtu; |
Davide Pesavento | cb425e8 | 2019-07-14 21:48:22 -0400 | [diff] [blame] | 92 | bool wantLocalFields = false; |
| 93 | bool wantLpReliability = false; |
| 94 | boost::logic::tribool wantCongestionMarking = boost::logic::indeterminate; |
| 95 | }; |
| 96 | |
Davide Pesavento | 2c9d2ca | 2024-01-27 16:36:51 -0500 | [diff] [blame] | 97 | /** |
| 98 | * \brief For internal use by FaceLogging macros. |
Davide Pesavento | cb425e8 | 2019-07-14 21:48:22 -0400 | [diff] [blame] | 99 | * |
Davide Pesavento | 2c9d2ca | 2024-01-27 16:36:51 -0500 | [diff] [blame] | 100 | * FaceLogHelper wraps a reference to Face, LinkService, or Transport object. |
Davide Pesavento | cb425e8 | 2019-07-14 21:48:22 -0400 | [diff] [blame] | 101 | * |
Davide Pesavento | 2c9d2ca | 2024-01-27 16:36:51 -0500 | [diff] [blame] | 102 | * `std::ostream& operator<<(std::ostream& os, const FaceLogHelper<T>& flh)` |
| 103 | * should be specialized to print "[id=888,local=scheme://local/uri,remote=scheme://remote/uri] " |
| 104 | * which will appear as part of the log message. |
Davide Pesavento | cb425e8 | 2019-07-14 21:48:22 -0400 | [diff] [blame] | 105 | */ |
| 106 | template<typename T> |
| 107 | class FaceLogHelper |
| 108 | { |
| 109 | public: |
| 110 | explicit |
| 111 | FaceLogHelper(const T& obj1) noexcept |
| 112 | : obj(obj1) |
| 113 | { |
| 114 | } |
| 115 | |
| 116 | public: |
| 117 | const T& obj; |
| 118 | }; |
| 119 | |
| 120 | } // namespace face |
| 121 | |
| 122 | using face::EndpointId; |
| 123 | using face::FaceId; |
Davide Pesavento | 2c9d2ca | 2024-01-27 16:36:51 -0500 | [diff] [blame] | 124 | using ::ndn::FaceUri; |
Davide Pesavento | cb425e8 | 2019-07-14 21:48:22 -0400 | [diff] [blame] | 125 | |
| 126 | } // namespace nfd |
| 127 | |
Davide Pesavento | 2c9d2ca | 2024-01-27 16:36:51 -0500 | [diff] [blame] | 128 | /** |
| 129 | * \defgroup FaceLogging Face logging macros. |
Davide Pesavento | cb425e8 | 2019-07-14 21:48:22 -0400 | [diff] [blame] | 130 | * |
| 131 | * These macros augment the log message with some face-specific information, |
| 132 | * such as the face ID, that are useful to distinguish which face produced the |
| 133 | * message. It is strongly recommended to use these macros instead of the |
| 134 | * generic ones for all logging inside Face, LinkService, Transport subclasses. |
| 135 | * @{ |
| 136 | */ |
| 137 | |
| 138 | /** \cond */ |
| 139 | // implementation detail |
| 140 | #define NFD_LOG_FACE(level, msg) NFD_LOG_##level( \ |
| 141 | ::nfd::face::FaceLogHelper< \ |
Davide Pesavento | b7bfcb9 | 2022-05-22 23:55:23 -0400 | [diff] [blame] | 142 | std::remove_cv_t<std::remove_reference_t<decltype(*this)>> \ |
Davide Pesavento | cb425e8 | 2019-07-14 21:48:22 -0400 | [diff] [blame] | 143 | >(*this) \ |
| 144 | << msg) |
| 145 | /** \endcond */ |
| 146 | |
| 147 | /** \brief Log a message at TRACE level */ |
| 148 | #define NFD_LOG_FACE_TRACE(msg) NFD_LOG_FACE(TRACE, msg) |
| 149 | |
| 150 | /** \brief Log a message at DEBUG level */ |
| 151 | #define NFD_LOG_FACE_DEBUG(msg) NFD_LOG_FACE(DEBUG, msg) |
| 152 | |
| 153 | /** \brief Log a message at INFO level */ |
| 154 | #define NFD_LOG_FACE_INFO(msg) NFD_LOG_FACE(INFO, msg) |
| 155 | |
| 156 | /** \brief Log a message at WARN level */ |
| 157 | #define NFD_LOG_FACE_WARN(msg) NFD_LOG_FACE(WARN, msg) |
| 158 | |
| 159 | /** \brief Log a message at ERROR level */ |
| 160 | #define NFD_LOG_FACE_ERROR(msg) NFD_LOG_FACE(ERROR, msg) |
| 161 | |
| 162 | /** @} */ |
| 163 | |
| 164 | #endif // NFD_DAEMON_FACE_FACE_COMMON_HPP |