blob: f9a8eb7fe8ab70ec58e40b52a28f823998b3e7a8 [file] [log] [blame]
Alexander Afanasyeva9034b02014-01-26 18:32:02 -08001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2/**
Davide Pesavento8fd15e62017-04-06 19:58:54 -04003 * Copyright (c) 2014-2017, 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"
Yukai Tu16aabbc2015-10-06 05:08:42 -070027#include "generic-link-service.hpp"
28#include "tcp-transport.hpp"
Junxiao Shi61e3cc52014-03-03 20:40:28 -070029#include "core/global-io.hpp"
Alexander Afanasyeva9034b02014-01-26 18:32:02 -080030
Alexander Afanasyev18bbf812014-01-29 01:40:23 -080031namespace nfd {
Davide Pesavento8fd15e62017-04-06 19:58:54 -040032namespace face {
Alexander Afanasyeva9034b02014-01-26 18:32:02 -080033
Alexander Afanasyev3958b012014-01-31 15:06:13 -080034NFD_LOG_INIT("TcpChannel");
35
Yukai Tu16aabbc2015-10-06 05:08:42 -070036namespace ip = boost::asio::ip;
Alexander Afanasyev8ad71ba2014-01-27 00:07:14 -080037
Junxiao Shi61e3cc52014-03-03 20:40:28 -070038TcpChannel::TcpChannel(const tcp::Endpoint& localEndpoint)
Davide Pesavento292e5e12015-03-13 02:08:33 +010039 : m_localEndpoint(localEndpoint)
40 , m_acceptor(getGlobalIoService())
Davide Pesavento77911cc2017-04-08 22:12:30 -040041 , m_socket(getGlobalIoService())
Junxiao Shi61e3cc52014-03-03 20:40:28 -070042{
Davide Pesavento6ad890a2015-03-09 03:43:17 +010043 setUri(FaceUri(m_localEndpoint));
Davide Pesavento77911cc2017-04-08 22:12:30 -040044 NFD_LOG_CHAN_INFO("Creating channel");
Alexander Afanasyeva9034b02014-01-26 18:32:02 -080045}
46
47void
Alexander Afanasyev855a53c2014-01-27 12:03:00 -080048TcpChannel::listen(const FaceCreatedCallback& onFaceCreated,
Davide Pesavento47ab0292015-11-02 18:45:39 +010049 const FaceCreationFailedCallback& onAcceptFailed,
Alexander Afanasyev855a53c2014-01-27 12:03:00 -080050 int backlog/* = tcp::acceptor::max_connections*/)
Alexander Afanasyeva9034b02014-01-26 18:32:02 -080051{
Davide Pesavento6ad890a2015-03-09 03:43:17 +010052 if (isListening()) {
Davide Pesavento77911cc2017-04-08 22:12:30 -040053 NFD_LOG_CHAN_WARN("Already listening");
Davide Pesavento6ad890a2015-03-09 03:43:17 +010054 return;
55 }
56
57 m_acceptor.open(m_localEndpoint.protocol());
58 m_acceptor.set_option(ip::tcp::acceptor::reuse_address(true));
Davide Pesavento77911cc2017-04-08 22:12:30 -040059 if (m_localEndpoint.address().is_v6()) {
Davide Pesavento6ad890a2015-03-09 03:43:17 +010060 m_acceptor.set_option(ip::v6_only(true));
Davide Pesavento77911cc2017-04-08 22:12:30 -040061 }
Davide Pesavento6ad890a2015-03-09 03:43:17 +010062 m_acceptor.bind(m_localEndpoint);
63 m_acceptor.listen(backlog);
Alexander Afanasyev53a6fd32014-03-23 00:00:04 -070064
Davide Pesavento6ad890a2015-03-09 03:43:17 +010065 accept(onFaceCreated, onAcceptFailed);
Davide Pesavento77911cc2017-04-08 22:12:30 -040066 NFD_LOG_CHAN_DEBUG("Started listening");
Alexander Afanasyeva9034b02014-01-26 18:32:02 -080067}
68
69void
Alexander Afanasyev8ad71ba2014-01-27 00:07:14 -080070TcpChannel::connect(const tcp::Endpoint& remoteEndpoint,
Eric Newberryf40551a2016-09-05 15:41:16 -070071 bool wantLocalFieldsEnabled,
Davide Pesavento47ab0292015-11-02 18:45:39 +010072 const FaceCreatedCallback& onFaceCreated,
73 const FaceCreationFailedCallback& onConnectFailed,
Davide Pesaventoc19408d2017-04-08 00:42:55 -040074 time::nanoseconds timeout)
Alexander Afanasyeva9034b02014-01-26 18:32:02 -080075{
Davide Pesavento6ad890a2015-03-09 03:43:17 +010076 auto it = m_channelFaces.find(remoteEndpoint);
77 if (it != m_channelFaces.end()) {
Davide Pesavento77911cc2017-04-08 22:12:30 -040078 NFD_LOG_CHAN_TRACE("Reusing existing face for " << remoteEndpoint);
Davide Pesavento6ad890a2015-03-09 03:43:17 +010079 onFaceCreated(it->second);
Alexander Afanasyev334b7142014-01-28 12:59:39 -080080 return;
81 }
82
Davide Pesavento292e5e12015-03-13 02:08:33 +010083 auto clientSocket = make_shared<ip::tcp::socket>(ref(getGlobalIoService()));
Davide Pesavento77911cc2017-04-08 22:12:30 -040084 auto timeoutEvent = scheduler::schedule(timeout, bind(&TcpChannel::handleConnectTimeout, this,
85 remoteEndpoint, clientSocket, onConnectFailed));
Alexander Afanasyev8ad71ba2014-01-27 00:07:14 -080086
Davide Pesavento77911cc2017-04-08 22:12:30 -040087 NFD_LOG_CHAN_TRACE("Connecting to " << remoteEndpoint);
Alexander Afanasyev8ad71ba2014-01-27 00:07:14 -080088 clientSocket->async_connect(remoteEndpoint,
Davide Pesavento6ad890a2015-03-09 03:43:17 +010089 bind(&TcpChannel::handleConnect, this,
Davide Pesavento77911cc2017-04-08 22:12:30 -040090 boost::asio::placeholders::error, remoteEndpoint,
91 clientSocket, wantLocalFieldsEnabled, timeoutEvent,
Alexander Afanasyev855a53c2014-01-27 12:03:00 -080092 onFaceCreated, onConnectFailed));
Alexander Afanasyeva9034b02014-01-26 18:32:02 -080093}
94
Alexander Afanasyev8ad71ba2014-01-27 00:07:14 -080095void
Yukai Tu16aabbc2015-10-06 05:08:42 -070096TcpChannel::createFace(ip::tcp::socket&& socket,
Davide Pesavento77911cc2017-04-08 22:12:30 -040097 ndn::nfd::FacePersistency persistency,
Eric Newberryf40551a2016-09-05 15:41:16 -070098 bool wantLocalFieldsEnabled,
99 const FaceCreatedCallback& onFaceCreated)
Alexander Afanasyeva16abd22014-01-31 18:12:29 -0800100{
Junxiao Shicde37ad2015-12-24 01:02:05 -0700101 shared_ptr<Face> face;
Davide Pesavento292e5e12015-03-13 02:08:33 +0100102 tcp::Endpoint remoteEndpoint = socket.remote_endpoint();
Steve DiBenedetto2aa4eca2014-06-20 10:47:40 -0600103
Davide Pesavento6ad890a2015-03-09 03:43:17 +0100104 auto it = m_channelFaces.find(remoteEndpoint);
Davide Pesavento292e5e12015-03-13 02:08:33 +0100105 if (it == m_channelFaces.end()) {
Davide Pesavento8fd15e62017-04-06 19:58:54 -0400106 auto linkService = make_unique<GenericLinkService>();
Eric Newberryf40551a2016-09-05 15:41:16 -0700107 auto options = linkService->getOptions();
108 options.allowLocalFields = wantLocalFieldsEnabled;
109 linkService->setOptions(options);
110
Davide Pesavento8fd15e62017-04-06 19:58:54 -0400111 auto transport = make_unique<TcpTransport>(std::move(socket), persistency);
Junxiao Shicde37ad2015-12-24 01:02:05 -0700112 face = make_shared<Face>(std::move(linkService), std::move(transport));
Steve DiBenedetto2aa4eca2014-06-20 10:47:40 -0600113
Davide Pesavento292e5e12015-03-13 02:08:33 +0100114 m_channelFaces[remoteEndpoint] = face;
Davide Pesavento77911cc2017-04-08 22:12:30 -0400115 connectFaceClosedSignal(*face, [this, remoteEndpoint] { m_channelFaces.erase(remoteEndpoint); });
Davide Pesavento292e5e12015-03-13 02:08:33 +0100116 }
117 else {
118 // we already have a face for this endpoint, just reuse it
119 face = it->second;
Davide Pesavento77911cc2017-04-08 22:12:30 -0400120 NFD_LOG_CHAN_TRACE("Reusing existing face for " << remoteEndpoint);
Junxiao Shi61e3cc52014-03-03 20:40:28 -0700121
Davide Pesavento292e5e12015-03-13 02:08:33 +0100122 boost::system::error_code error;
123 socket.shutdown(ip::tcp::socket::shutdown_both, error);
124 socket.close(error);
125 }
Alexander Afanasyeva0a10fb2014-02-13 19:56:15 -0800126
Steve DiBenedetto2aa4eca2014-06-20 10:47:40 -0600127 // Need to invoke the callback regardless of whether or not we have already created
128 // the face so that control responses and such can be sent.
Alexander Afanasyeva0a10fb2014-02-13 19:56:15 -0800129 onFaceCreated(face);
Alexander Afanasyeva16abd22014-01-31 18:12:29 -0800130}
131
132void
Davide Pesavento6ad890a2015-03-09 03:43:17 +0100133TcpChannel::accept(const FaceCreatedCallback& onFaceCreated,
Davide Pesavento47ab0292015-11-02 18:45:39 +0100134 const FaceCreationFailedCallback& onAcceptFailed)
Alexander Afanasyeva0a10fb2014-02-13 19:56:15 -0800135{
Davide Pesavento77911cc2017-04-08 22:12:30 -0400136 m_acceptor.async_accept(m_socket, bind(&TcpChannel::handleAccept, this,
137 boost::asio::placeholders::error,
138 onFaceCreated, onAcceptFailed));
Alexander Afanasyeva0a10fb2014-02-13 19:56:15 -0800139}
140
141void
Davide Pesavento6ad890a2015-03-09 03:43:17 +0100142TcpChannel::handleAccept(const boost::system::error_code& error,
Davide Pesavento6ad890a2015-03-09 03:43:17 +0100143 const FaceCreatedCallback& onFaceCreated,
Davide Pesavento47ab0292015-11-02 18:45:39 +0100144 const FaceCreationFailedCallback& onAcceptFailed)
Alexander Afanasyev8ad71ba2014-01-27 00:07:14 -0800145{
146 if (error) {
Davide Pesavento77911cc2017-04-08 22:12:30 -0400147 if (error != boost::asio::error::operation_aborted) {
148 NFD_LOG_CHAN_DEBUG("Accept failed: " << error.message());
149 if (onAcceptFailed)
150 onAcceptFailed(500, "Accept failed: " + error.message());
151 }
Alexander Afanasyev8ad71ba2014-01-27 00:07:14 -0800152 return;
153 }
154
Davide Pesavento77911cc2017-04-08 22:12:30 -0400155 NFD_LOG_CHAN_TRACE("Incoming connection from " << m_socket.remote_endpoint());
Davide Pesavento292e5e12015-03-13 02:08:33 +0100156
Davide Pesavento77911cc2017-04-08 22:12:30 -0400157 createFace(std::move(m_socket), ndn::nfd::FACE_PERSISTENCY_ON_DEMAND,
158 false, onFaceCreated);
Alexander Afanasyev334b7142014-01-28 12:59:39 -0800159
Davide Pesavento6ad890a2015-03-09 03:43:17 +0100160 // prepare accepting the next connection
161 accept(onFaceCreated, onAcceptFailed);
Alexander Afanasyev8ad71ba2014-01-27 00:07:14 -0800162}
163
164void
Davide Pesavento6ad890a2015-03-09 03:43:17 +0100165TcpChannel::handleConnect(const boost::system::error_code& error,
Davide Pesavento77911cc2017-04-08 22:12:30 -0400166 const tcp::Endpoint& remoteEndpoint,
Davide Pesavento6ad890a2015-03-09 03:43:17 +0100167 const shared_ptr<ip::tcp::socket>& socket,
Eric Newberryf40551a2016-09-05 15:41:16 -0700168 bool wantLocalFieldsEnabled,
Davide Pesavento6ad890a2015-03-09 03:43:17 +0100169 const scheduler::EventId& connectTimeoutEvent,
170 const FaceCreatedCallback& onFaceCreated,
Davide Pesavento47ab0292015-11-02 18:45:39 +0100171 const FaceCreationFailedCallback& onConnectFailed)
Alexander Afanasyev8ad71ba2014-01-27 00:07:14 -0800172{
Alexander Afanasyev18861802014-06-13 17:49:03 -0700173 scheduler::cancel(connectTimeoutEvent);
Alexander Afanasyev8ad71ba2014-01-27 00:07:14 -0800174
Alexander Afanasyev7465d5f2014-07-07 10:19:42 -0700175#if (BOOST_VERSION == 105400)
176 // To handle regression in Boost 1.54
177 // https://svn.boost.org/trac/boost/ticket/8795
178 boost::system::error_code anotherErrorCode;
179 socket->remote_endpoint(anotherErrorCode);
180 if (error || anotherErrorCode) {
181#else
Alexander Afanasyev8ad71ba2014-01-27 00:07:14 -0800182 if (error) {
Alexander Afanasyev7465d5f2014-07-07 10:19:42 -0700183#endif
Davide Pesavento77911cc2017-04-08 22:12:30 -0400184 if (error != boost::asio::error::operation_aborted) {
185 NFD_LOG_CHAN_DEBUG("Connection to " << remoteEndpoint << " failed: " << error.message());
186 if (onConnectFailed)
187 onConnectFailed(504, "Connection failed: " + error.message());
188 }
Alexander Afanasyev8ad71ba2014-01-27 00:07:14 -0800189 return;
190 }
191
Davide Pesavento77911cc2017-04-08 22:12:30 -0400192 NFD_LOG_CHAN_TRACE("Connected to " << socket->remote_endpoint());
193 createFace(std::move(*socket), ndn::nfd::FACE_PERSISTENCY_PERSISTENT,
194 wantLocalFieldsEnabled, onFaceCreated);
Alexander Afanasyev8ad71ba2014-01-27 00:07:14 -0800195}
196
197void
Davide Pesavento77911cc2017-04-08 22:12:30 -0400198TcpChannel::handleConnectTimeout(const tcp::Endpoint& remoteEndpoint,
199 const shared_ptr<ip::tcp::socket>& socket,
Davide Pesavento47ab0292015-11-02 18:45:39 +0100200 const FaceCreationFailedCallback& onConnectFailed)
Alexander Afanasyev8ad71ba2014-01-27 00:07:14 -0800201{
Davide Pesavento77911cc2017-04-08 22:12:30 -0400202 NFD_LOG_CHAN_DEBUG("Connection to " << remoteEndpoint << " timed out");
Davide Pesavento6ad890a2015-03-09 03:43:17 +0100203
204 // abort the connection attempt
205 boost::system::error_code error;
206 socket->close(error);
207
208 if (onConnectFailed)
Davide Pesavento77911cc2017-04-08 22:12:30 -0400209 onConnectFailed(504, "Connection timed out");
Alexander Afanasyev8ad71ba2014-01-27 00:07:14 -0800210}
211
Davide Pesavento8fd15e62017-04-06 19:58:54 -0400212} // namespace face
Alexander Afanasyev18bbf812014-01-29 01:40:23 -0800213} // namespace nfd