blob: 6cf50c451da28e1f8ad15ec0a1bd7c6d925742e7 [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/*
Alexander Afanasyev3a2339a2020-05-27 23:05:06 -04003 * Copyright (c) 2014-2020, 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
Alexander Afanasyev18bbf812014-01-29 01:40:23 -080032namespace nfd {
Davide Pesavento8fd15e62017-04-06 19:58:54 -040033namespace face {
Alexander Afanasyeva9034b02014-01-26 18:32:02 -080034
Davide Pesaventoa3148082018-04-12 18:21:54 -040035NFD_LOG_INIT(TcpChannel);
Alexander Afanasyev3958b012014-01-31 15:06:13 -080036
Yukai Tu16aabbc2015-10-06 05:08:42 -070037namespace ip = boost::asio::ip;
Alexander Afanasyev8ad71ba2014-01-27 00:07:14 -080038
Alexander Afanasyevded17422018-04-03 19:00:23 -040039TcpChannel::TcpChannel(const tcp::Endpoint& localEndpoint, bool wantCongestionMarking,
40 DetermineFaceScopeFromAddress determineFaceScope)
Davide Pesavento292e5e12015-03-13 02:08:33 +010041 : m_localEndpoint(localEndpoint)
42 , m_acceptor(getGlobalIoService())
Davide Pesavento77911cc2017-04-08 22:12:30 -040043 , m_socket(getGlobalIoService())
Eric Newberry0c841642018-01-17 15:01:00 -070044 , m_wantCongestionMarking(wantCongestionMarking)
Alexander Afanasyevded17422018-04-03 19:00:23 -040045 , m_determineFaceScope(std::move(determineFaceScope))
Junxiao Shi61e3cc52014-03-03 20:40:28 -070046{
Davide Pesavento6ad890a2015-03-09 03:43:17 +010047 setUri(FaceUri(m_localEndpoint));
Davide Pesavento77911cc2017-04-08 22:12:30 -040048 NFD_LOG_CHAN_INFO("Creating channel");
Alexander Afanasyeva9034b02014-01-26 18:32:02 -080049}
50
51void
Alexander Afanasyev855a53c2014-01-27 12:03:00 -080052TcpChannel::listen(const FaceCreatedCallback& onFaceCreated,
Davide Pesavento47ab0292015-11-02 18:45:39 +010053 const FaceCreationFailedCallback& onAcceptFailed,
Alexander Afanasyev855a53c2014-01-27 12:03:00 -080054 int backlog/* = tcp::acceptor::max_connections*/)
Alexander Afanasyeva9034b02014-01-26 18:32:02 -080055{
Davide Pesavento6ad890a2015-03-09 03:43:17 +010056 if (isListening()) {
Davide Pesavento77911cc2017-04-08 22:12:30 -040057 NFD_LOG_CHAN_WARN("Already listening");
Davide Pesavento6ad890a2015-03-09 03:43:17 +010058 return;
59 }
60
61 m_acceptor.open(m_localEndpoint.protocol());
62 m_acceptor.set_option(ip::tcp::acceptor::reuse_address(true));
Davide Pesavento77911cc2017-04-08 22:12:30 -040063 if (m_localEndpoint.address().is_v6()) {
Davide Pesavento6ad890a2015-03-09 03:43:17 +010064 m_acceptor.set_option(ip::v6_only(true));
Davide Pesavento77911cc2017-04-08 22:12:30 -040065 }
Davide Pesavento6ad890a2015-03-09 03:43:17 +010066 m_acceptor.bind(m_localEndpoint);
67 m_acceptor.listen(backlog);
Alexander Afanasyev53a6fd32014-03-23 00:00:04 -070068
Davide Pesavento6ad890a2015-03-09 03:43:17 +010069 accept(onFaceCreated, onAcceptFailed);
Davide Pesavento77911cc2017-04-08 22:12:30 -040070 NFD_LOG_CHAN_DEBUG("Started listening");
Alexander Afanasyeva9034b02014-01-26 18:32:02 -080071}
72
73void
Alexander Afanasyev8ad71ba2014-01-27 00:07:14 -080074TcpChannel::connect(const tcp::Endpoint& remoteEndpoint,
Davide Pesavento15b55052018-01-27 19:09:28 -050075 const FaceParams& params,
Davide Pesavento47ab0292015-11-02 18:45:39 +010076 const FaceCreatedCallback& onFaceCreated,
77 const FaceCreationFailedCallback& onConnectFailed,
Davide Pesaventoc19408d2017-04-08 00:42:55 -040078 time::nanoseconds timeout)
Alexander Afanasyeva9034b02014-01-26 18:32:02 -080079{
Davide Pesavento6ad890a2015-03-09 03:43:17 +010080 auto it = m_channelFaces.find(remoteEndpoint);
81 if (it != m_channelFaces.end()) {
Davide Pesavento77911cc2017-04-08 22:12:30 -040082 NFD_LOG_CHAN_TRACE("Reusing existing face for " << remoteEndpoint);
Davide Pesavento6ad890a2015-03-09 03:43:17 +010083 onFaceCreated(it->second);
Alexander Afanasyev334b7142014-01-28 12:59:39 -080084 return;
85 }
86
Alexander Afanasyeva6bd7da2019-04-25 17:26:11 -040087 auto clientSocket = make_shared<ip::tcp::socket>(getGlobalIoService());
Davide Pesavento3dade002019-03-19 11:29:56 -060088 auto timeoutEvent = getScheduler().schedule(timeout, [=] {
Davide Pesaventoe4b22382018-06-10 14:37:24 -040089 handleConnectTimeout(remoteEndpoint, clientSocket, onConnectFailed);
90 });
Alexander Afanasyev8ad71ba2014-01-27 00:07:14 -080091
Davide Pesavento77911cc2017-04-08 22:12:30 -040092 NFD_LOG_CHAN_TRACE("Connecting to " << remoteEndpoint);
Davide Pesaventoe4b22382018-06-10 14:37:24 -040093 clientSocket->async_connect(remoteEndpoint, [=] (const auto& e) {
94 this->handleConnect(e, remoteEndpoint, clientSocket, params, timeoutEvent, onFaceCreated, onConnectFailed);
95 });
Alexander Afanasyeva9034b02014-01-26 18:32:02 -080096}
97
Alexander Afanasyev8ad71ba2014-01-27 00:07:14 -080098void
Yukai Tu16aabbc2015-10-06 05:08:42 -070099TcpChannel::createFace(ip::tcp::socket&& socket,
Davide Pesavento15b55052018-01-27 19:09:28 -0500100 const FaceParams& params,
Eric Newberryf40551a2016-09-05 15:41:16 -0700101 const FaceCreatedCallback& onFaceCreated)
Alexander Afanasyeva16abd22014-01-31 18:12:29 -0800102{
Junxiao Shicde37ad2015-12-24 01:02:05 -0700103 shared_ptr<Face> face;
Davide Pesavento292e5e12015-03-13 02:08:33 +0100104 tcp::Endpoint remoteEndpoint = socket.remote_endpoint();
Steve DiBenedetto2aa4eca2014-06-20 10:47:40 -0600105
Davide Pesavento6ad890a2015-03-09 03:43:17 +0100106 auto it = m_channelFaces.find(remoteEndpoint);
Davide Pesavento292e5e12015-03-13 02:08:33 +0100107 if (it == m_channelFaces.end()) {
Eric Newberry2642cd22017-07-13 21:34:53 -0400108 GenericLinkService::Options options;
Davide Pesavento15b55052018-01-27 19:09:28 -0500109 options.allowLocalFields = params.wantLocalFields;
110 options.reliabilityOptions.isEnabled = params.wantLpReliability;
Eric Newberryf40551a2016-09-05 15:41:16 -0700111
Eric Newberry0c3e57b2018-01-25 20:54:46 -0700112 if (boost::logic::indeterminate(params.wantCongestionMarking)) {
113 // Use default value for this channel if parameter is indeterminate
114 options.allowCongestionMarking = m_wantCongestionMarking;
115 }
116 else {
Davide Pesaventofa2aa502019-03-22 13:30:02 -0400117 options.allowCongestionMarking = bool(params.wantCongestionMarking);
Eric Newberry0c3e57b2018-01-25 20:54:46 -0700118 }
119
120 if (params.baseCongestionMarkingInterval) {
121 options.baseCongestionMarkingInterval = *params.baseCongestionMarkingInterval;
122 }
123 if (params.defaultCongestionThreshold) {
124 options.defaultCongestionThreshold = *params.defaultCongestionThreshold;
125 }
126
127 auto linkService = make_unique<GenericLinkService>(options);
Alexander Afanasyevded17422018-04-03 19:00:23 -0400128 auto faceScope = m_determineFaceScope(socket.local_endpoint().address(),
129 socket.remote_endpoint().address());
130 auto transport = make_unique<TcpTransport>(std::move(socket), params.persistency, faceScope);
Junxiao Shicde37ad2015-12-24 01:02:05 -0700131 face = make_shared<Face>(std::move(linkService), std::move(transport));
Alexander Afanasyev3a2339a2020-05-27 23:05:06 -0400132 face->setChannel(shared_from_this()); // use weak_from_this() in C++17
Steve DiBenedetto2aa4eca2014-06-20 10:47:40 -0600133
Davide Pesavento292e5e12015-03-13 02:08:33 +0100134 m_channelFaces[remoteEndpoint] = face;
Davide Pesavento77911cc2017-04-08 22:12:30 -0400135 connectFaceClosedSignal(*face, [this, remoteEndpoint] { m_channelFaces.erase(remoteEndpoint); });
Davide Pesavento292e5e12015-03-13 02:08:33 +0100136 }
137 else {
138 // we already have a face for this endpoint, just reuse it
139 face = it->second;
Davide Pesavento77911cc2017-04-08 22:12:30 -0400140 NFD_LOG_CHAN_TRACE("Reusing existing face for " << remoteEndpoint);
Junxiao Shi61e3cc52014-03-03 20:40:28 -0700141
Davide Pesavento292e5e12015-03-13 02:08:33 +0100142 boost::system::error_code error;
143 socket.shutdown(ip::tcp::socket::shutdown_both, error);
144 socket.close(error);
145 }
Alexander Afanasyeva0a10fb2014-02-13 19:56:15 -0800146
Steve DiBenedetto2aa4eca2014-06-20 10:47:40 -0600147 // Need to invoke the callback regardless of whether or not we have already created
148 // the face so that control responses and such can be sent.
Alexander Afanasyeva0a10fb2014-02-13 19:56:15 -0800149 onFaceCreated(face);
Alexander Afanasyeva16abd22014-01-31 18:12:29 -0800150}
151
152void
Davide Pesavento6ad890a2015-03-09 03:43:17 +0100153TcpChannel::accept(const FaceCreatedCallback& onFaceCreated,
Davide Pesavento47ab0292015-11-02 18:45:39 +0100154 const FaceCreationFailedCallback& onAcceptFailed)
Alexander Afanasyeva0a10fb2014-02-13 19:56:15 -0800155{
Davide Pesaventoe4b22382018-06-10 14:37:24 -0400156 m_acceptor.async_accept(m_socket, [=] (const auto& e) { this->handleAccept(e, onFaceCreated, onAcceptFailed); });
Alexander Afanasyeva0a10fb2014-02-13 19:56:15 -0800157}
158
159void
Davide Pesavento6ad890a2015-03-09 03:43:17 +0100160TcpChannel::handleAccept(const boost::system::error_code& error,
Davide Pesavento6ad890a2015-03-09 03:43:17 +0100161 const FaceCreatedCallback& onFaceCreated,
Davide Pesavento47ab0292015-11-02 18:45:39 +0100162 const FaceCreationFailedCallback& onAcceptFailed)
Alexander Afanasyev8ad71ba2014-01-27 00:07:14 -0800163{
164 if (error) {
Davide Pesavento77911cc2017-04-08 22:12:30 -0400165 if (error != boost::asio::error::operation_aborted) {
166 NFD_LOG_CHAN_DEBUG("Accept failed: " << error.message());
167 if (onAcceptFailed)
168 onAcceptFailed(500, "Accept failed: " + error.message());
169 }
Alexander Afanasyev8ad71ba2014-01-27 00:07:14 -0800170 return;
171 }
172
Davide Pesavento77911cc2017-04-08 22:12:30 -0400173 NFD_LOG_CHAN_TRACE("Incoming connection from " << m_socket.remote_endpoint());
Davide Pesavento15b55052018-01-27 19:09:28 -0500174
175 FaceParams params;
176 params.persistency = ndn::nfd::FACE_PERSISTENCY_ON_DEMAND;
177 createFace(std::move(m_socket), params, onFaceCreated);
Alexander Afanasyev334b7142014-01-28 12:59:39 -0800178
Davide Pesavento6ad890a2015-03-09 03:43:17 +0100179 // prepare accepting the next connection
180 accept(onFaceCreated, onAcceptFailed);
Alexander Afanasyev8ad71ba2014-01-27 00:07:14 -0800181}
182
183void
Davide Pesavento6ad890a2015-03-09 03:43:17 +0100184TcpChannel::handleConnect(const boost::system::error_code& error,
Davide Pesavento77911cc2017-04-08 22:12:30 -0400185 const tcp::Endpoint& remoteEndpoint,
Davide Pesavento6ad890a2015-03-09 03:43:17 +0100186 const shared_ptr<ip::tcp::socket>& socket,
Davide Pesavento15b55052018-01-27 19:09:28 -0500187 const FaceParams& params,
Davide Pesavento6ad890a2015-03-09 03:43:17 +0100188 const scheduler::EventId& connectTimeoutEvent,
189 const FaceCreatedCallback& onFaceCreated,
Davide Pesavento47ab0292015-11-02 18:45:39 +0100190 const FaceCreationFailedCallback& onConnectFailed)
Alexander Afanasyev8ad71ba2014-01-27 00:07:14 -0800191{
Davide Pesavento3dade002019-03-19 11:29:56 -0600192 connectTimeoutEvent.cancel();
Alexander Afanasyev8ad71ba2014-01-27 00:07:14 -0800193
194 if (error) {
Davide Pesavento77911cc2017-04-08 22:12:30 -0400195 if (error != boost::asio::error::operation_aborted) {
196 NFD_LOG_CHAN_DEBUG("Connection to " << remoteEndpoint << " failed: " << error.message());
197 if (onConnectFailed)
198 onConnectFailed(504, "Connection failed: " + error.message());
199 }
Alexander Afanasyev8ad71ba2014-01-27 00:07:14 -0800200 return;
201 }
202
Davide Pesavento77911cc2017-04-08 22:12:30 -0400203 NFD_LOG_CHAN_TRACE("Connected to " << socket->remote_endpoint());
Davide Pesavento15b55052018-01-27 19:09:28 -0500204 createFace(std::move(*socket), params, onFaceCreated);
Alexander Afanasyev8ad71ba2014-01-27 00:07:14 -0800205}
206
207void
Davide Pesavento77911cc2017-04-08 22:12:30 -0400208TcpChannel::handleConnectTimeout(const tcp::Endpoint& remoteEndpoint,
209 const shared_ptr<ip::tcp::socket>& socket,
Davide Pesavento47ab0292015-11-02 18:45:39 +0100210 const FaceCreationFailedCallback& onConnectFailed)
Alexander Afanasyev8ad71ba2014-01-27 00:07:14 -0800211{
Davide Pesavento77911cc2017-04-08 22:12:30 -0400212 NFD_LOG_CHAN_DEBUG("Connection to " << remoteEndpoint << " timed out");
Davide Pesavento6ad890a2015-03-09 03:43:17 +0100213
214 // abort the connection attempt
215 boost::system::error_code error;
216 socket->close(error);
217
218 if (onConnectFailed)
Davide Pesavento77911cc2017-04-08 22:12:30 -0400219 onConnectFailed(504, "Connection timed out");
Alexander Afanasyev8ad71ba2014-01-27 00:07:14 -0800220}
221
Davide Pesavento8fd15e62017-04-06 19:58:54 -0400222} // namespace face
Alexander Afanasyev18bbf812014-01-29 01:40:23 -0800223} // namespace nfd