blob: e3c9910e71578e0e00d7403f226ffbb728465a64 [file] [log] [blame]
Alexander Afanasyeva9034b02014-01-26 18:32:02 -08001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
Eric Newberry2642cd22017-07-13 21:34:53 -04002/*
Junxiao Shib98aa3a2022-01-12 01:14:08 +00003 * Copyright (c) 2014-2022, Regents of the University of California,
Junxiao Shi1e46be32015-01-08 20:18:05 -07004 * 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.
Alexander Afanasyev9bcbc7c2014-04-06 19:37:37 -070010 *
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/>.
Junxiao Shia1937bf2014-11-06 11:43:40 -070024 */
Alexander Afanasyeva9034b02014-01-26 18:32:02 -080025
26#include "tcp-channel.hpp"
Davide Pesaventocb425e82019-07-14 21:48:22 -040027#include "face.hpp"
Yukai Tu16aabbc2015-10-06 05:08:42 -070028#include "generic-link-service.hpp"
29#include "tcp-transport.hpp"
Davide Pesavento2cae8ca2019-04-18 20:48:05 -040030#include "common/global.hpp"
Alexander Afanasyeva9034b02014-01-26 18:32:02 -080031
Davide Pesaventoa9b09b62022-06-04 14:07:25 -040032#include <boost/asio/ip/v6_only.hpp>
33
Davide Pesaventoe422f9e2022-06-03 01:30:23 -040034namespace nfd::face {
Alexander Afanasyeva9034b02014-01-26 18:32:02 -080035
Davide Pesaventoa3148082018-04-12 18:21:54 -040036NFD_LOG_INIT(TcpChannel);
Alexander Afanasyev3958b012014-01-31 15:06:13 -080037
Yukai Tu16aabbc2015-10-06 05:08:42 -070038namespace ip = boost::asio::ip;
Alexander Afanasyev8ad71ba2014-01-27 00:07:14 -080039
Alexander Afanasyevded17422018-04-03 19:00:23 -040040TcpChannel::TcpChannel(const tcp::Endpoint& localEndpoint, bool wantCongestionMarking,
41 DetermineFaceScopeFromAddress determineFaceScope)
Davide Pesavento292e5e12015-03-13 02:08:33 +010042 : m_localEndpoint(localEndpoint)
43 , m_acceptor(getGlobalIoService())
Davide Pesavento77911cc2017-04-08 22:12:30 -040044 , m_socket(getGlobalIoService())
Eric Newberry0c841642018-01-17 15:01:00 -070045 , m_wantCongestionMarking(wantCongestionMarking)
Alexander Afanasyevded17422018-04-03 19:00:23 -040046 , m_determineFaceScope(std::move(determineFaceScope))
Junxiao Shi61e3cc52014-03-03 20:40:28 -070047{
Davide Pesavento6ad890a2015-03-09 03:43:17 +010048 setUri(FaceUri(m_localEndpoint));
Davide Pesavento77911cc2017-04-08 22:12:30 -040049 NFD_LOG_CHAN_INFO("Creating channel");
Alexander Afanasyeva9034b02014-01-26 18:32:02 -080050}
51
52void
Alexander Afanasyev855a53c2014-01-27 12:03:00 -080053TcpChannel::listen(const FaceCreatedCallback& onFaceCreated,
Davide Pesavento47ab0292015-11-02 18:45:39 +010054 const FaceCreationFailedCallback& onAcceptFailed,
Alexander Afanasyev855a53c2014-01-27 12:03:00 -080055 int backlog/* = tcp::acceptor::max_connections*/)
Alexander Afanasyeva9034b02014-01-26 18:32:02 -080056{
Davide Pesavento6ad890a2015-03-09 03:43:17 +010057 if (isListening()) {
Davide Pesavento77911cc2017-04-08 22:12:30 -040058 NFD_LOG_CHAN_WARN("Already listening");
Davide Pesavento6ad890a2015-03-09 03:43:17 +010059 return;
60 }
61
62 m_acceptor.open(m_localEndpoint.protocol());
63 m_acceptor.set_option(ip::tcp::acceptor::reuse_address(true));
Davide Pesavento77911cc2017-04-08 22:12:30 -040064 if (m_localEndpoint.address().is_v6()) {
Davide Pesavento6ad890a2015-03-09 03:43:17 +010065 m_acceptor.set_option(ip::v6_only(true));
Davide Pesavento77911cc2017-04-08 22:12:30 -040066 }
Davide Pesavento6ad890a2015-03-09 03:43:17 +010067 m_acceptor.bind(m_localEndpoint);
68 m_acceptor.listen(backlog);
Alexander Afanasyev53a6fd32014-03-23 00:00:04 -070069
Davide Pesavento6ad890a2015-03-09 03:43:17 +010070 accept(onFaceCreated, onAcceptFailed);
Davide Pesavento77911cc2017-04-08 22:12:30 -040071 NFD_LOG_CHAN_DEBUG("Started listening");
Alexander Afanasyeva9034b02014-01-26 18:32:02 -080072}
73
74void
Alexander Afanasyev8ad71ba2014-01-27 00:07:14 -080075TcpChannel::connect(const tcp::Endpoint& remoteEndpoint,
Davide Pesavento15b55052018-01-27 19:09:28 -050076 const FaceParams& params,
Davide Pesavento47ab0292015-11-02 18:45:39 +010077 const FaceCreatedCallback& onFaceCreated,
78 const FaceCreationFailedCallback& onConnectFailed,
Davide Pesaventoc19408d2017-04-08 00:42:55 -040079 time::nanoseconds timeout)
Alexander Afanasyeva9034b02014-01-26 18:32:02 -080080{
Davide Pesavento6ad890a2015-03-09 03:43:17 +010081 auto it = m_channelFaces.find(remoteEndpoint);
82 if (it != m_channelFaces.end()) {
Davide Pesavento77911cc2017-04-08 22:12:30 -040083 NFD_LOG_CHAN_TRACE("Reusing existing face for " << remoteEndpoint);
Davide Pesavento6ad890a2015-03-09 03:43:17 +010084 onFaceCreated(it->second);
Alexander Afanasyev334b7142014-01-28 12:59:39 -080085 return;
86 }
87
Alexander Afanasyeva6bd7da2019-04-25 17:26:11 -040088 auto clientSocket = make_shared<ip::tcp::socket>(getGlobalIoService());
Davide Pesavento3dade002019-03-19 11:29:56 -060089 auto timeoutEvent = getScheduler().schedule(timeout, [=] {
Davide Pesaventoe4b22382018-06-10 14:37:24 -040090 handleConnectTimeout(remoteEndpoint, clientSocket, onConnectFailed);
91 });
Alexander Afanasyev8ad71ba2014-01-27 00:07:14 -080092
Davide Pesavento77911cc2017-04-08 22:12:30 -040093 NFD_LOG_CHAN_TRACE("Connecting to " << remoteEndpoint);
Davide Pesaventoe4b22382018-06-10 14:37:24 -040094 clientSocket->async_connect(remoteEndpoint, [=] (const auto& e) {
95 this->handleConnect(e, remoteEndpoint, clientSocket, params, timeoutEvent, onFaceCreated, onConnectFailed);
96 });
Alexander Afanasyeva9034b02014-01-26 18:32:02 -080097}
98
Alexander Afanasyev8ad71ba2014-01-27 00:07:14 -080099void
Yukai Tu16aabbc2015-10-06 05:08:42 -0700100TcpChannel::createFace(ip::tcp::socket&& socket,
Davide Pesavento15b55052018-01-27 19:09:28 -0500101 const FaceParams& params,
Junxiao Shib98aa3a2022-01-12 01:14:08 +0000102 const FaceCreatedCallback& onFaceCreated,
103 const FaceCreationFailedCallback& onFaceCreationFailed)
Alexander Afanasyeva16abd22014-01-31 18:12:29 -0800104{
Junxiao Shicde37ad2015-12-24 01:02:05 -0700105 shared_ptr<Face> face;
Junxiao Shib98aa3a2022-01-12 01:14:08 +0000106 boost::system::error_code ec;
107 tcp::Endpoint remoteEndpoint = socket.remote_endpoint(ec);
108 if (ec) {
109 NFD_LOG_CHAN_DEBUG("Retrieve socket remote endpoint failed: " << ec.message());
110 if (onFaceCreationFailed) {
111 onFaceCreationFailed(500, "Retrieve socket remote endpoint failed: " + ec.message());
112 }
113 return;
114 }
Steve DiBenedetto2aa4eca2014-06-20 10:47:40 -0600115
Davide Pesavento6ad890a2015-03-09 03:43:17 +0100116 auto it = m_channelFaces.find(remoteEndpoint);
Davide Pesavento292e5e12015-03-13 02:08:33 +0100117 if (it == m_channelFaces.end()) {
Eric Newberry2642cd22017-07-13 21:34:53 -0400118 GenericLinkService::Options options;
Davide Pesavento15b55052018-01-27 19:09:28 -0500119 options.allowLocalFields = params.wantLocalFields;
120 options.reliabilityOptions.isEnabled = params.wantLpReliability;
Eric Newberryf40551a2016-09-05 15:41:16 -0700121
Eric Newberry0c3e57b2018-01-25 20:54:46 -0700122 if (boost::logic::indeterminate(params.wantCongestionMarking)) {
123 // Use default value for this channel if parameter is indeterminate
124 options.allowCongestionMarking = m_wantCongestionMarking;
125 }
126 else {
Davide Pesaventofa2aa502019-03-22 13:30:02 -0400127 options.allowCongestionMarking = bool(params.wantCongestionMarking);
Eric Newberry0c3e57b2018-01-25 20:54:46 -0700128 }
129
130 if (params.baseCongestionMarkingInterval) {
131 options.baseCongestionMarkingInterval = *params.baseCongestionMarkingInterval;
132 }
133 if (params.defaultCongestionThreshold) {
134 options.defaultCongestionThreshold = *params.defaultCongestionThreshold;
135 }
136
137 auto linkService = make_unique<GenericLinkService>(options);
Alexander Afanasyevded17422018-04-03 19:00:23 -0400138 auto faceScope = m_determineFaceScope(socket.local_endpoint().address(),
139 socket.remote_endpoint().address());
140 auto transport = make_unique<TcpTransport>(std::move(socket), params.persistency, faceScope);
Junxiao Shicde37ad2015-12-24 01:02:05 -0700141 face = make_shared<Face>(std::move(linkService), std::move(transport));
Davide Pesaventob7bfcb92022-05-22 23:55:23 -0400142 face->setChannel(weak_from_this());
Steve DiBenedetto2aa4eca2014-06-20 10:47:40 -0600143
Davide Pesavento292e5e12015-03-13 02:08:33 +0100144 m_channelFaces[remoteEndpoint] = face;
Davide Pesavento77911cc2017-04-08 22:12:30 -0400145 connectFaceClosedSignal(*face, [this, remoteEndpoint] { m_channelFaces.erase(remoteEndpoint); });
Davide Pesavento292e5e12015-03-13 02:08:33 +0100146 }
147 else {
148 // we already have a face for this endpoint, just reuse it
149 face = it->second;
Davide Pesavento77911cc2017-04-08 22:12:30 -0400150 NFD_LOG_CHAN_TRACE("Reusing existing face for " << remoteEndpoint);
Junxiao Shi61e3cc52014-03-03 20:40:28 -0700151
Davide Pesavento292e5e12015-03-13 02:08:33 +0100152 boost::system::error_code error;
153 socket.shutdown(ip::tcp::socket::shutdown_both, error);
154 socket.close(error);
155 }
Alexander Afanasyeva0a10fb2014-02-13 19:56:15 -0800156
Steve DiBenedetto2aa4eca2014-06-20 10:47:40 -0600157 // Need to invoke the callback regardless of whether or not we have already created
158 // the face so that control responses and such can be sent.
Alexander Afanasyeva0a10fb2014-02-13 19:56:15 -0800159 onFaceCreated(face);
Alexander Afanasyeva16abd22014-01-31 18:12:29 -0800160}
161
162void
Davide Pesavento6ad890a2015-03-09 03:43:17 +0100163TcpChannel::accept(const FaceCreatedCallback& onFaceCreated,
Davide Pesavento47ab0292015-11-02 18:45:39 +0100164 const FaceCreationFailedCallback& onAcceptFailed)
Alexander Afanasyeva0a10fb2014-02-13 19:56:15 -0800165{
Davide Pesaventoe4b22382018-06-10 14:37:24 -0400166 m_acceptor.async_accept(m_socket, [=] (const auto& e) { this->handleAccept(e, onFaceCreated, onAcceptFailed); });
Alexander Afanasyeva0a10fb2014-02-13 19:56:15 -0800167}
168
169void
Davide Pesavento6ad890a2015-03-09 03:43:17 +0100170TcpChannel::handleAccept(const boost::system::error_code& error,
Davide Pesavento6ad890a2015-03-09 03:43:17 +0100171 const FaceCreatedCallback& onFaceCreated,
Davide Pesavento47ab0292015-11-02 18:45:39 +0100172 const FaceCreationFailedCallback& onAcceptFailed)
Alexander Afanasyev8ad71ba2014-01-27 00:07:14 -0800173{
174 if (error) {
Davide Pesavento77911cc2017-04-08 22:12:30 -0400175 if (error != boost::asio::error::operation_aborted) {
176 NFD_LOG_CHAN_DEBUG("Accept failed: " << error.message());
177 if (onAcceptFailed)
178 onAcceptFailed(500, "Accept failed: " + error.message());
179 }
Alexander Afanasyev8ad71ba2014-01-27 00:07:14 -0800180 return;
181 }
182
Davide Pesavento77911cc2017-04-08 22:12:30 -0400183 NFD_LOG_CHAN_TRACE("Incoming connection from " << m_socket.remote_endpoint());
Davide Pesavento15b55052018-01-27 19:09:28 -0500184
185 FaceParams params;
186 params.persistency = ndn::nfd::FACE_PERSISTENCY_ON_DEMAND;
Junxiao Shib98aa3a2022-01-12 01:14:08 +0000187 createFace(std::move(m_socket), params, onFaceCreated, onAcceptFailed);
Alexander Afanasyev334b7142014-01-28 12:59:39 -0800188
Davide Pesavento6ad890a2015-03-09 03:43:17 +0100189 // prepare accepting the next connection
190 accept(onFaceCreated, onAcceptFailed);
Alexander Afanasyev8ad71ba2014-01-27 00:07:14 -0800191}
192
193void
Davide Pesavento6ad890a2015-03-09 03:43:17 +0100194TcpChannel::handleConnect(const boost::system::error_code& error,
Davide Pesavento77911cc2017-04-08 22:12:30 -0400195 const tcp::Endpoint& remoteEndpoint,
Davide Pesavento6ad890a2015-03-09 03:43:17 +0100196 const shared_ptr<ip::tcp::socket>& socket,
Davide Pesavento15b55052018-01-27 19:09:28 -0500197 const FaceParams& params,
Davide Pesavento6ad890a2015-03-09 03:43:17 +0100198 const scheduler::EventId& connectTimeoutEvent,
199 const FaceCreatedCallback& onFaceCreated,
Davide Pesavento47ab0292015-11-02 18:45:39 +0100200 const FaceCreationFailedCallback& onConnectFailed)
Alexander Afanasyev8ad71ba2014-01-27 00:07:14 -0800201{
Davide Pesavento3dade002019-03-19 11:29:56 -0600202 connectTimeoutEvent.cancel();
Alexander Afanasyev8ad71ba2014-01-27 00:07:14 -0800203
204 if (error) {
Davide Pesavento77911cc2017-04-08 22:12:30 -0400205 if (error != boost::asio::error::operation_aborted) {
206 NFD_LOG_CHAN_DEBUG("Connection to " << remoteEndpoint << " failed: " << error.message());
207 if (onConnectFailed)
208 onConnectFailed(504, "Connection failed: " + error.message());
209 }
Alexander Afanasyev8ad71ba2014-01-27 00:07:14 -0800210 return;
211 }
212
Davide Pesavento77911cc2017-04-08 22:12:30 -0400213 NFD_LOG_CHAN_TRACE("Connected to " << socket->remote_endpoint());
Junxiao Shib98aa3a2022-01-12 01:14:08 +0000214 createFace(std::move(*socket), params, onFaceCreated, onConnectFailed);
Alexander Afanasyev8ad71ba2014-01-27 00:07:14 -0800215}
216
217void
Davide Pesavento77911cc2017-04-08 22:12:30 -0400218TcpChannel::handleConnectTimeout(const tcp::Endpoint& remoteEndpoint,
219 const shared_ptr<ip::tcp::socket>& socket,
Davide Pesavento47ab0292015-11-02 18:45:39 +0100220 const FaceCreationFailedCallback& onConnectFailed)
Alexander Afanasyev8ad71ba2014-01-27 00:07:14 -0800221{
Davide Pesavento77911cc2017-04-08 22:12:30 -0400222 NFD_LOG_CHAN_DEBUG("Connection to " << remoteEndpoint << " timed out");
Davide Pesavento6ad890a2015-03-09 03:43:17 +0100223
224 // abort the connection attempt
225 boost::system::error_code error;
226 socket->close(error);
227
228 if (onConnectFailed)
Davide Pesavento77911cc2017-04-08 22:12:30 -0400229 onConnectFailed(504, "Connection timed out");
Alexander Afanasyev8ad71ba2014-01-27 00:07:14 -0800230}
231
Davide Pesaventoe422f9e2022-06-03 01:30:23 -0400232} // namespace nfd::face