blob: c9920c446991914ca1a63174e5146480833623eb [file] [log] [blame]
Giulio Grassi624f6c62014-02-18 19:42:14 +01001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2/**
Alexander Afanasyev319f2c82015-01-07 14:56:53 -08003 * Copyright (c) 2014-2015, 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.
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 Shi5dd26c32014-07-20 23:15:14 -070024 */
Giulio Grassi624f6c62014-02-18 19:42:14 +010025
26#include "udp-channel.hpp"
Davide Pesavento6ad890a2015-03-09 03:43:17 +010027#include "udp-face.hpp"
Giulio Grassi624f6c62014-02-18 19:42:14 +010028#include "core/global-io.hpp"
29
30namespace nfd {
31
32NFD_LOG_INIT("UdpChannel");
33
34using namespace boost::asio;
35
36UdpChannel::UdpChannel(const udp::Endpoint& localEndpoint,
Alexander Afanasyeveb3197f2014-03-17 19:28:18 -070037 const time::seconds& timeout)
Giulio Grassi624f6c62014-02-18 19:42:14 +010038 : m_localEndpoint(localEndpoint)
Davide Pesavento292e5e12015-03-13 02:08:33 +010039 , m_socket(getGlobalIoService())
Giulio Grassi69871f02014-03-09 16:14:44 +010040 , m_idleFaceTimeout(timeout)
Giulio Grassi624f6c62014-02-18 19:42:14 +010041{
Davide Pesavento6ad890a2015-03-09 03:43:17 +010042 setUri(FaceUri(m_localEndpoint));
Giulio Grassi624f6c62014-02-18 19:42:14 +010043}
44
45void
46UdpChannel::listen(const FaceCreatedCallback& onFaceCreated,
Davide Pesavento6ad890a2015-03-09 03:43:17 +010047 const ConnectFailedCallback& onReceiveFailed)
Giulio Grassi624f6c62014-02-18 19:42:14 +010048{
Davide Pesavento6ad890a2015-03-09 03:43:17 +010049 if (isListening()) {
50 NFD_LOG_WARN("[" << m_localEndpoint << "] Already listening");
51 return;
Giulio Grassi624f6c62014-02-18 19:42:14 +010052 }
Steve DiBenedettoca53ac62014-03-27 19:58:40 -060053
Davide Pesavento292e5e12015-03-13 02:08:33 +010054 m_socket.open(m_localEndpoint.protocol());
55 m_socket.set_option(ip::udp::socket::reuse_address(true));
56 if (m_localEndpoint.address().is_v6())
57 m_socket.set_option(ip::v6_only(true));
58
59 m_socket.bind(m_localEndpoint);
60 m_socket.async_receive_from(boost::asio::buffer(m_inputBuffer, ndn::MAX_NDN_PACKET_SIZE),
61 m_remoteEndpoint,
62 bind(&UdpChannel::handleNewPeer, this,
63 boost::asio::placeholders::error,
64 boost::asio::placeholders::bytes_transferred,
65 onFaceCreated, onReceiveFailed));
Giulio Grassi624f6c62014-02-18 19:42:14 +010066}
67
Giulio Grassi624f6c62014-02-18 19:42:14 +010068void
69UdpChannel::connect(const udp::Endpoint& remoteEndpoint,
Yukai Tu375dcb02015-08-01 13:04:43 +080070 ndn::nfd::FacePersistency persistency,
Steve DiBenedettoca53ac62014-03-27 19:58:40 -060071 const FaceCreatedCallback& onFaceCreated,
72 const ConnectFailedCallback& onConnectFailed)
Giulio Grassi624f6c62014-02-18 19:42:14 +010073{
Davide Pesavento292e5e12015-03-13 02:08:33 +010074 shared_ptr<UdpFace> face;
Giulio Grassi624f6c62014-02-18 19:42:14 +010075 try {
Yukai Tu375dcb02015-08-01 13:04:43 +080076 face = createFace(remoteEndpoint, persistency).second;
Giulio Grassi624f6c62014-02-18 19:42:14 +010077 }
Davide Pesavento6ad890a2015-03-09 03:43:17 +010078 catch (const boost::system::system_error& e) {
Davide Pesavento292e5e12015-03-13 02:08:33 +010079 NFD_LOG_WARN("[" << m_localEndpoint << "] Connect failed: " << e.what());
80 if (onConnectFailed)
81 onConnectFailed(e.what());
Steve DiBenedettoca53ac62014-03-27 19:58:40 -060082 return;
Giulio Grassi624f6c62014-02-18 19:42:14 +010083 }
Davide Pesavento6ad890a2015-03-09 03:43:17 +010084
Davide Pesavento292e5e12015-03-13 02:08:33 +010085 // Need to invoke the callback regardless of whether or not we had already
86 // created the face so that control responses and such can be sent
87 onFaceCreated(face);
Giulio Grassi624f6c62014-02-18 19:42:14 +010088}
89
Giulio Grassi624f6c62014-02-18 19:42:14 +010090size_t
91UdpChannel::size() const
92{
93 return m_channelFaces.size();
94}
95
Davide Pesavento292e5e12015-03-13 02:08:33 +010096std::pair<bool, shared_ptr<UdpFace>>
Yukai Tu375dcb02015-08-01 13:04:43 +080097UdpChannel::createFace(const udp::Endpoint& remoteEndpoint, ndn::nfd::FacePersistency persistency)
Giulio Grassi624f6c62014-02-18 19:42:14 +010098{
Davide Pesavento6ad890a2015-03-09 03:43:17 +010099 auto it = m_channelFaces.find(remoteEndpoint);
Davide Pesavento292e5e12015-03-13 02:08:33 +0100100 if (it != m_channelFaces.end()) {
101 // we already have a face for this endpoint, just reuse it
Yukai Tu375dcb02015-08-01 13:04:43 +0800102 auto face = it->second;
103 // only on-demand -> persistent -> permanent transition is allowed
104 bool isTransitionAllowed = persistency != face->getPersistency() &&
105 (face->getPersistency() == ndn::nfd::FACE_PERSISTENCY_ON_DEMAND ||
106 persistency == ndn::nfd::FACE_PERSISTENCY_PERMANENT);
107 if (isTransitionAllowed) {
108 face->setPersistency(persistency);
Yukai Tu731f0d72015-07-04 11:14:44 +0800109 }
Yukai Tu375dcb02015-08-01 13:04:43 +0800110 return {false, face};
Davide Pesavento292e5e12015-03-13 02:08:33 +0100111 }
Junxiao Shic099ddb2014-12-25 20:53:20 -0700112
Davide Pesavento292e5e12015-03-13 02:08:33 +0100113 // else, create a new face
114 ip::udp::socket socket(getGlobalIoService(), m_localEndpoint.protocol());
115 socket.set_option(ip::udp::socket::reuse_address(true));
116 socket.bind(m_localEndpoint);
117 socket.connect(remoteEndpoint);
Steve DiBenedetto2aa4eca2014-06-20 10:47:40 -0600118
Davide Pesavento292e5e12015-03-13 02:08:33 +0100119 auto face = make_shared<UdpFace>(FaceUri(remoteEndpoint), FaceUri(m_localEndpoint),
Yukai Tu375dcb02015-08-01 13:04:43 +0800120 std::move(socket), persistency, m_idleFaceTimeout);
Steve DiBenedetto2aa4eca2014-06-20 10:47:40 -0600121
Davide Pesavento292e5e12015-03-13 02:08:33 +0100122 face->onFail.connectSingleShot([this, remoteEndpoint] (const std::string&) {
123 NFD_LOG_TRACE("Erasing " << remoteEndpoint << " from channel face map");
124 m_channelFaces.erase(remoteEndpoint);
125 });
126 m_channelFaces[remoteEndpoint] = face;
Steve DiBenedetto2aa4eca2014-06-20 10:47:40 -0600127
Davide Pesavento292e5e12015-03-13 02:08:33 +0100128 return {true, face};
Giulio Grassi624f6c62014-02-18 19:42:14 +0100129}
130
131void
Davide Pesavento6ad890a2015-03-09 03:43:17 +0100132UdpChannel::handleNewPeer(const boost::system::error_code& error,
133 size_t nBytesReceived,
134 const FaceCreatedCallback& onFaceCreated,
135 const ConnectFailedCallback& onReceiveFailed)
Giulio Grassi624f6c62014-02-18 19:42:14 +0100136{
Alexander Afanasyev90c20fa2015-02-12 16:46:45 -0800137 if (error) {
Davide Pesavento6ad890a2015-03-09 03:43:17 +0100138 if (error == boost::asio::error::operation_aborted) // when the socket is closed by someone
Alexander Afanasyev90c20fa2015-02-12 16:46:45 -0800139 return;
140
Davide Pesavento6ad890a2015-03-09 03:43:17 +0100141 NFD_LOG_DEBUG("[" << m_localEndpoint << "] Receive failed: " << error.message());
142 if (onReceiveFailed)
143 onReceiveFailed(error.message());
Alexander Afanasyev90c20fa2015-02-12 16:46:45 -0800144 return;
145 }
146
Davide Pesavento292e5e12015-03-13 02:08:33 +0100147 NFD_LOG_DEBUG("[" << m_localEndpoint << "] New peer " << m_remoteEndpoint);
Alexander Afanasyev6f5ff632014-03-07 16:40:10 +0000148
Davide Pesavento292e5e12015-03-13 02:08:33 +0100149 bool created;
Alexander Afanasyev6f5ff632014-03-07 16:40:10 +0000150 shared_ptr<UdpFace> face;
Davide Pesavento292e5e12015-03-13 02:08:33 +0100151 try {
Yukai Tu375dcb02015-08-01 13:04:43 +0800152 std::tie(created, face) = createFace(m_remoteEndpoint, ndn::nfd::FACE_PERSISTENCY_ON_DEMAND);
Alexander Afanasyev6f5ff632014-03-07 16:40:10 +0000153 }
Davide Pesavento292e5e12015-03-13 02:08:33 +0100154 catch (const boost::system::system_error& e) {
155 NFD_LOG_WARN("[" << m_localEndpoint << "] Failed to create face for peer "
156 << m_remoteEndpoint << ": " << e.what());
157 if (onReceiveFailed)
158 onReceiveFailed(e.what());
159 return;
Giulio Grassi624f6c62014-02-18 19:42:14 +0100160 }
161
Davide Pesavento292e5e12015-03-13 02:08:33 +0100162 if (created)
163 onFaceCreated(face);
164
Davide Pesaventoa7530582014-06-30 20:45:52 +0200165 // dispatch the datagram to the face for processing
166 face->receiveDatagram(m_inputBuffer, nBytesReceived, error);
Giulio Grassi624f6c62014-02-18 19:42:14 +0100167
Davide Pesavento292e5e12015-03-13 02:08:33 +0100168 m_socket.async_receive_from(boost::asio::buffer(m_inputBuffer, ndn::MAX_NDN_PACKET_SIZE),
169 m_remoteEndpoint,
170 bind(&UdpChannel::handleNewPeer, this,
171 boost::asio::placeholders::error,
172 boost::asio::placeholders::bytes_transferred,
173 onFaceCreated, onReceiveFailed));
Giulio Grassi624f6c62014-02-18 19:42:14 +0100174}
175
Giulio Grassi624f6c62014-02-18 19:42:14 +0100176} // namespace nfd