NFD: Named Data Networking Forwarding Daemon 24.07-28-gdcc0e6e0
Loading...
Searching...
No Matches
tcp-channel.cpp
Go to the documentation of this file.
1/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2/*
3 * Copyright (c) 2014-2024, Regents of the University of California,
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#include "tcp-channel.hpp"
27#include "face.hpp"
29#include "tcp-transport.hpp"
30#include "common/global.hpp"
31
32#include <boost/asio/ip/v6_only.hpp>
33
34namespace nfd::face {
35
36namespace ip = boost::asio::ip;
37
38NFD_LOG_INIT(TcpChannel);
39
40TcpChannel::TcpChannel(const tcp::Endpoint& localEndpoint, bool wantCongestionMarking,
41 DetermineFaceScopeFromAddress determineFaceScope)
42 : m_localEndpoint(localEndpoint)
43 , m_wantCongestionMarking(wantCongestionMarking)
44 , m_acceptor(getGlobalIoService())
45 , m_determineFaceScope(std::move(determineFaceScope))
46{
47 setUri(FaceUri(m_localEndpoint));
48 NFD_LOG_CHAN_INFO("Creating channel");
49}
50
51void
53 const FaceCreationFailedCallback& onAcceptFailed,
54 int backlog)
55{
56 if (isListening()) {
57 NFD_LOG_CHAN_WARN("Already listening");
58 return;
59 }
60
61 m_acceptor.open(m_localEndpoint.protocol());
62 m_acceptor.set_option(boost::asio::socket_base::reuse_address(true));
63 if (m_localEndpoint.address().is_v6()) {
64 m_acceptor.set_option(ip::v6_only(true));
65 }
66 m_acceptor.bind(m_localEndpoint);
67 m_acceptor.listen(backlog);
68
69 accept(onFaceCreated, onAcceptFailed);
70 NFD_LOG_CHAN_DEBUG("Started listening");
71}
72
73void
74TcpChannel::connect(const tcp::Endpoint& remoteEndpoint,
75 const FaceParams& params,
76 const FaceCreatedCallback& onFaceCreated,
77 const FaceCreationFailedCallback& onConnectFailed,
78 time::nanoseconds timeout)
79{
80 auto it = m_channelFaces.find(remoteEndpoint);
81 if (it != m_channelFaces.end()) {
82 NFD_LOG_CHAN_TRACE("Reusing existing face for " << remoteEndpoint);
83 onFaceCreated(it->second);
84 return;
85 }
86
87 auto clientSocket = make_shared<ip::tcp::socket>(getGlobalIoService());
88 auto timeoutEvent = getScheduler().schedule(timeout, [=] {
89 handleConnectTimeout(remoteEndpoint, clientSocket, onConnectFailed);
90 });
91
92 NFD_LOG_CHAN_TRACE("Connecting to " << remoteEndpoint);
93 clientSocket->async_connect(remoteEndpoint, [=] (const auto& e) {
94 this->handleConnect(e, remoteEndpoint, clientSocket, params, timeoutEvent, onFaceCreated, onConnectFailed);
95 });
96}
97
98void
99TcpChannel::createFace(ip::tcp::socket&& socket,
100 const FaceParams& params,
101 const FaceCreatedCallback& onFaceCreated,
102 const FaceCreationFailedCallback& onFaceCreationFailed)
103{
104 shared_ptr<Face> face;
105 boost::system::error_code ec;
106 tcp::Endpoint remoteEndpoint = socket.remote_endpoint(ec);
107 if (ec) {
108 NFD_LOG_CHAN_DEBUG("Retrieve socket remote endpoint failed: " << ec.message());
109 if (onFaceCreationFailed) {
110 onFaceCreationFailed(500, "Retrieve socket remote endpoint failed: " + ec.message());
111 }
112 return;
113 }
114
115 auto it = m_channelFaces.find(remoteEndpoint);
116 if (it == m_channelFaces.end()) {
118 options.allowLocalFields = params.wantLocalFields;
119 options.reliabilityOptions.isEnabled = params.wantLpReliability;
120
121 if (boost::logic::indeterminate(params.wantCongestionMarking)) {
122 // Use default value for this channel if parameter is indeterminate
123 options.allowCongestionMarking = m_wantCongestionMarking;
124 }
125 else {
126 options.allowCongestionMarking = bool(params.wantCongestionMarking);
127 }
128
130 options.baseCongestionMarkingInterval = *params.baseCongestionMarkingInterval;
131 }
132 if (params.defaultCongestionThreshold) {
133 options.defaultCongestionThreshold = *params.defaultCongestionThreshold;
134 }
135
136 auto linkService = make_unique<GenericLinkService>(options);
137 auto faceScope = m_determineFaceScope(socket.local_endpoint().address(),
138 socket.remote_endpoint().address());
139 auto transport = make_unique<TcpTransport>(std::move(socket), params.persistency, faceScope);
140 face = make_shared<Face>(std::move(linkService), std::move(transport));
141 face->setChannel(weak_from_this());
142
143 m_channelFaces[remoteEndpoint] = face;
144 connectFaceClosedSignal(*face, [this, remoteEndpoint] { m_channelFaces.erase(remoteEndpoint); });
145 }
146 else {
147 // we already have a face for this endpoint, just reuse it
148 face = it->second;
149 NFD_LOG_CHAN_TRACE("Reusing existing face for " << remoteEndpoint);
150
151 boost::system::error_code error;
152 socket.shutdown(boost::asio::socket_base::shutdown_both, error);
153 socket.close(error);
154 }
155
156 // Need to invoke the callback regardless of whether or not we have already created
157 // the face so that control responses and such can be sent.
158 onFaceCreated(face);
159}
160
161void
162TcpChannel::accept(const FaceCreatedCallback& onFaceCreated,
163 const FaceCreationFailedCallback& onAcceptFailed)
164{
165 m_acceptor.async_accept([=] (const boost::system::error_code& error, ip::tcp::socket socket) {
166 if (error) {
167 if (error != boost::asio::error::operation_aborted) {
168 NFD_LOG_CHAN_DEBUG("Accept failed: " << error.message());
169 if (onAcceptFailed)
170 onAcceptFailed(500, "Accept failed: " + error.message());
171 }
172 return;
173 }
174
175 NFD_LOG_CHAN_TRACE("Incoming connection from " << socket.remote_endpoint());
176
177 FaceParams params;
178 params.persistency = ndn::nfd::FACE_PERSISTENCY_ON_DEMAND;
179 createFace(std::move(socket), params, onFaceCreated, onAcceptFailed);
180
181 // prepare accepting the next connection
182 accept(onFaceCreated, onAcceptFailed);
183 });
184}
185
186void
187TcpChannel::handleConnect(const boost::system::error_code& error,
188 const tcp::Endpoint& remoteEndpoint,
189 const shared_ptr<ip::tcp::socket>& socket,
190 const FaceParams& params,
191 const ndn::scheduler::EventId& connectTimeoutEvent,
192 const FaceCreatedCallback& onFaceCreated,
193 const FaceCreationFailedCallback& onConnectFailed)
194{
195 connectTimeoutEvent.cancel();
196
197 if (error) {
198 if (error != boost::asio::error::operation_aborted) {
199 NFD_LOG_CHAN_DEBUG("Connection to " << remoteEndpoint << " failed: " << error.message());
200 if (onConnectFailed)
201 onConnectFailed(504, "Connection failed: " + error.message());
202 }
203 return;
204 }
205
206 NFD_LOG_CHAN_TRACE("Connected to " << socket->remote_endpoint());
207 createFace(std::move(*socket), params, onFaceCreated, onConnectFailed);
208}
209
210void
211TcpChannel::handleConnectTimeout(const tcp::Endpoint& remoteEndpoint,
212 const shared_ptr<ip::tcp::socket>& socket,
213 const FaceCreationFailedCallback& onConnectFailed)
214{
215 NFD_LOG_CHAN_DEBUG("Connection to " << remoteEndpoint << " timed out");
216
217 // abort the connection attempt
218 boost::system::error_code error;
219 socket->close(error);
220
221 if (onConnectFailed)
222 onConnectFailed(504, "Connection timed out");
223}
224
225} // namespace nfd::face
void setUri(const FaceUri &uri) noexcept
Definition channel.cpp:34
TcpChannel(const tcp::Endpoint &localEndpoint, bool wantCongestionMarking, DetermineFaceScopeFromAddress determineFaceScope)
Create a TCP channel for the specified localEndpoint.
void listen(const FaceCreatedCallback &onFaceCreated, const FaceCreationFailedCallback &onAcceptFailed, int backlog=boost::asio::socket_base::max_listen_connections)
Enable listening on the local endpoint, accept connections, and create faces when remote host makes a...
void connect(const tcp::Endpoint &remoteEndpoint, const FaceParams &params, const FaceCreatedCallback &onFaceCreated, const FaceCreationFailedCallback &onConnectFailed, time::nanoseconds timeout=8_s)
Create a face by establishing a TCP connection to remoteEndpoint.
bool isListening() const final
Returns whether the channel is listening.
#define NFD_LOG_CHAN_DEBUG(msg)
Log a message at DEBUG level.
#define NFD_LOG_CHAN_INFO(msg)
Log a message at INFO level.
#define NFD_LOG_CHAN_WARN(msg)
Log a message at WARN level.
#define NFD_LOG_CHAN_TRACE(msg)
Log a message at TRACE level.
#define NFD_LOG_INIT(name)
Definition logger.hpp:31
std::function< void(uint32_t status, const std::string &reason)> FaceCreationFailedCallback
Prototype for the callback that is invoked when a face fails to be created.
Definition channel.hpp:94
std::function< ndn::nfd::FaceScope(const boost::asio::ip::address &local, const boost::asio::ip::address &remote)> DetermineFaceScopeFromAddress
std::function< void(const shared_ptr< Face > &)> FaceCreatedCallback
Prototype for the callback that is invoked when a face is created (in response to an incoming connect...
Definition channel.hpp:90
void connectFaceClosedSignal(Face &face, std::function< void()> f)
Invokes a callback when a face is closed.
Definition channel.cpp:46
boost::asio::ip::tcp::endpoint Endpoint
ndn::Scheduler & getScheduler()
Returns the global Scheduler instance for the calling thread.
Definition global.cpp:45
boost::asio::io_context & getGlobalIoService()
Returns the global io_context instance for the calling thread.
Definition global.cpp:36
Parameters used to set Transport properties or LinkService options on a newly created face.
std::optional< uint64_t > defaultCongestionThreshold
std::optional< time::nanoseconds > baseCongestionMarkingInterval
ndn::nfd::FacePersistency persistency
boost::logic::tribool wantCongestionMarking