Davide Pesavento | 43ff2a9 | 2017-05-18 19:50:57 -0400 | [diff] [blame] | 1 | /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */ |
Junxiao Shi | 0d82d04 | 2017-07-07 06:15:27 +0000 | [diff] [blame] | 2 | /* |
Davide Pesavento | 91c15c8 | 2024-01-15 17:14:23 -0500 | [diff] [blame] | 3 | * Copyright (c) 2014-2024, Regents of the University of California, |
Davide Pesavento | 43ff2a9 | 2017-05-18 19:50:57 -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_ETHERNET_CHANNEL_HPP |
| 27 | #define NFD_DAEMON_FACE_ETHERNET_CHANNEL_HPP |
| 28 | |
| 29 | #include "channel.hpp" |
Junxiao Shi | 0d82d04 | 2017-07-07 06:15:27 +0000 | [diff] [blame] | 30 | #include "ethernet-protocol.hpp" |
Davide Pesavento | 43ff2a9 | 2017-05-18 19:50:57 -0400 | [diff] [blame] | 31 | #include "pcap-helper.hpp" |
Davide Pesavento | 3db9807 | 2021-03-09 23:03:27 -0500 | [diff] [blame] | 32 | |
Davide Pesavento | a9b09b6 | 2022-06-04 14:07:25 -0400 | [diff] [blame] | 33 | #include <boost/asio/posix/stream_descriptor.hpp> |
Junxiao Shi | 0d82d04 | 2017-07-07 06:15:27 +0000 | [diff] [blame] | 34 | #include <ndn-cxx/net/network-interface.hpp> |
Davide Pesavento | 43ff2a9 | 2017-05-18 19:50:57 -0400 | [diff] [blame] | 35 | |
Davide Pesavento | 2c9d2ca | 2024-01-27 16:36:51 -0500 | [diff] [blame] | 36 | #include <map> |
| 37 | |
Davide Pesavento | e422f9e | 2022-06-03 01:30:23 -0400 | [diff] [blame] | 38 | namespace nfd::face { |
Davide Pesavento | 43ff2a9 | 2017-05-18 19:50:57 -0400 | [diff] [blame] | 39 | |
| 40 | /** |
Davide Pesavento | 9bf64cc | 2023-10-05 02:12:02 -0400 | [diff] [blame] | 41 | * \brief Class implementing an Ethernet-based channel to create faces. |
Davide Pesavento | 43ff2a9 | 2017-05-18 19:50:57 -0400 | [diff] [blame] | 42 | */ |
Davide Pesavento | 3db9807 | 2021-03-09 23:03:27 -0500 | [diff] [blame] | 43 | class EthernetChannel final : public Channel |
Davide Pesavento | 43ff2a9 | 2017-05-18 19:50:57 -0400 | [diff] [blame] | 44 | { |
| 45 | public: |
| 46 | /** |
Davide Pesavento | 9bf64cc | 2023-10-05 02:12:02 -0400 | [diff] [blame] | 47 | * \brief EthernetChannel-related error. |
Davide Pesavento | 43ff2a9 | 2017-05-18 19:50:57 -0400 | [diff] [blame] | 48 | */ |
| 49 | class Error : public std::runtime_error |
| 50 | { |
| 51 | public: |
Davide Pesavento | aa9e3b2 | 2022-10-21 17:00:07 -0400 | [diff] [blame] | 52 | using std::runtime_error::runtime_error; |
Davide Pesavento | 43ff2a9 | 2017-05-18 19:50:57 -0400 | [diff] [blame] | 53 | }; |
| 54 | |
| 55 | /** |
Davide Pesavento | 9bf64cc | 2023-10-05 02:12:02 -0400 | [diff] [blame] | 56 | * \brief Create an Ethernet channel on the given \p localEndpoint (network interface). |
Davide Pesavento | 43ff2a9 | 2017-05-18 19:50:57 -0400 | [diff] [blame] | 57 | * |
Davide Pesavento | 9bf64cc | 2023-10-05 02:12:02 -0400 | [diff] [blame] | 58 | * To enable the creation of faces upon incoming connections, one needs to |
| 59 | * explicitly call listen(). |
Davide Pesavento | 43ff2a9 | 2017-05-18 19:50:57 -0400 | [diff] [blame] | 60 | */ |
Junxiao Shi | 0d82d04 | 2017-07-07 06:15:27 +0000 | [diff] [blame] | 61 | EthernetChannel(shared_ptr<const ndn::net::NetworkInterface> localEndpoint, |
Davide Pesavento | 43ff2a9 | 2017-05-18 19:50:57 -0400 | [diff] [blame] | 62 | time::nanoseconds idleTimeout); |
| 63 | |
| 64 | bool |
Davide Pesavento | 3db9807 | 2021-03-09 23:03:27 -0500 | [diff] [blame] | 65 | isListening() const final |
Davide Pesavento | 43ff2a9 | 2017-05-18 19:50:57 -0400 | [diff] [blame] | 66 | { |
| 67 | return m_isListening; |
| 68 | } |
| 69 | |
| 70 | size_t |
Davide Pesavento | 3db9807 | 2021-03-09 23:03:27 -0500 | [diff] [blame] | 71 | size() const final |
Davide Pesavento | 43ff2a9 | 2017-05-18 19:50:57 -0400 | [diff] [blame] | 72 | { |
| 73 | return m_channelFaces.size(); |
| 74 | } |
| 75 | |
| 76 | /** |
Davide Pesavento | 9bf64cc | 2023-10-05 02:12:02 -0400 | [diff] [blame] | 77 | * \brief Create a unicast Ethernet face toward \p remoteEndpoint. |
Davide Pesavento | 43ff2a9 | 2017-05-18 19:50:57 -0400 | [diff] [blame] | 78 | */ |
| 79 | void |
| 80 | connect(const ethernet::Address& remoteEndpoint, |
Davide Pesavento | 15b5505 | 2018-01-27 19:09:28 -0500 | [diff] [blame] | 81 | const FaceParams& params, |
Davide Pesavento | 43ff2a9 | 2017-05-18 19:50:57 -0400 | [diff] [blame] | 82 | const FaceCreatedCallback& onFaceCreated, |
| 83 | const FaceCreationFailedCallback& onConnectFailed); |
| 84 | |
| 85 | /** |
Davide Pesavento | 9bf64cc | 2023-10-05 02:12:02 -0400 | [diff] [blame] | 86 | * \brief Start listening. |
Davide Pesavento | 43ff2a9 | 2017-05-18 19:50:57 -0400 | [diff] [blame] | 87 | * |
| 88 | * Enable listening on the local endpoint, waiting for incoming frames, |
| 89 | * and creating a face when a frame is received from a new remote host. |
| 90 | * |
| 91 | * Faces created in this way will have on-demand persistency. |
| 92 | * |
| 93 | * \param onFaceCreated Callback to notify successful creation of a face |
| 94 | * \param onFaceCreationFailed Callback to notify errors |
| 95 | * \throw Error |
| 96 | */ |
| 97 | void |
| 98 | listen(const FaceCreatedCallback& onFaceCreated, |
| 99 | const FaceCreationFailedCallback& onFaceCreationFailed); |
| 100 | |
| 101 | private: |
| 102 | void |
| 103 | asyncRead(const FaceCreatedCallback& onFaceCreated, |
| 104 | const FaceCreationFailedCallback& onReceiveFailed); |
| 105 | |
| 106 | void |
| 107 | handleRead(const boost::system::error_code& error, |
| 108 | const FaceCreatedCallback& onFaceCreated, |
| 109 | const FaceCreationFailedCallback& onReceiveFailed); |
| 110 | |
| 111 | void |
Davide Pesavento | a599d2a | 2022-02-16 18:52:43 -0500 | [diff] [blame] | 112 | processIncomingPacket(span<const uint8_t> packet, |
Davide Pesavento | 43ff2a9 | 2017-05-18 19:50:57 -0400 | [diff] [blame] | 113 | const ethernet::Address& sender, |
| 114 | const FaceCreatedCallback& onFaceCreated, |
| 115 | const FaceCreationFailedCallback& onReceiveFailed); |
| 116 | |
| 117 | std::pair<bool, shared_ptr<Face>> |
| 118 | createFace(const ethernet::Address& remoteEndpoint, |
Davide Pesavento | 15b5505 | 2018-01-27 19:09:28 -0500 | [diff] [blame] | 119 | const FaceParams& params); |
Davide Pesavento | 43ff2a9 | 2017-05-18 19:50:57 -0400 | [diff] [blame] | 120 | |
| 121 | void |
| 122 | updateFilter(); |
| 123 | |
| 124 | private: |
Junxiao Shi | 0d82d04 | 2017-07-07 06:15:27 +0000 | [diff] [blame] | 125 | shared_ptr<const ndn::net::NetworkInterface> m_localEndpoint; |
Davide Pesavento | 91c15c8 | 2024-01-15 17:14:23 -0500 | [diff] [blame] | 126 | bool m_isListening = false; |
Davide Pesavento | 43ff2a9 | 2017-05-18 19:50:57 -0400 | [diff] [blame] | 127 | boost::asio::posix::stream_descriptor m_socket; |
| 128 | PcapHelper m_pcap; |
| 129 | std::map<ethernet::Address, shared_ptr<Face>> m_channelFaces; |
| 130 | const time::nanoseconds m_idleFaceTimeout; ///< Timeout for automatic closure of idle on-demand faces |
| 131 | |
Davide Pesavento | 91c15c8 | 2024-01-15 17:14:23 -0500 | [diff] [blame] | 132 | #ifndef NDEBUG |
| 133 | /// Number of frames dropped by the kernel, as reported by libpcap |
| 134 | size_t m_nDropped = 0; |
Davide Pesavento | 43ff2a9 | 2017-05-18 19:50:57 -0400 | [diff] [blame] | 135 | #endif |
| 136 | }; |
| 137 | |
Davide Pesavento | e422f9e | 2022-06-03 01:30:23 -0400 | [diff] [blame] | 138 | } // namespace nfd::face |
Davide Pesavento | 43ff2a9 | 2017-05-18 19:50:57 -0400 | [diff] [blame] | 139 | |
| 140 | #endif // NFD_DAEMON_FACE_ETHERNET_CHANNEL_HPP |