Giulio Grassi | 624f6c6 | 2014-02-18 19:42:14 +0100 | [diff] [blame] | 1 | /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */ |
Eric Newberry | 2642cd2 | 2017-07-13 21:34:53 -0400 | [diff] [blame] | 2 | /* |
Eric Newberry | 0c84164 | 2018-01-17 15:01:00 -0700 | [diff] [blame] | 3 | * Copyright (c) 2014-2018, Regents of the University of California, |
Alexander Afanasyev | 319f2c8 | 2015-01-07 14:56:53 -0800 | [diff] [blame] | 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 Afanasyev | 9bcbc7c | 2014-04-06 19:37:37 -0700 | [diff] [blame] | 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/>. |
Junxiao Shi | 5dd26c3 | 2014-07-20 23:15:14 -0700 | [diff] [blame] | 24 | */ |
Giulio Grassi | 624f6c6 | 2014-02-18 19:42:14 +0100 | [diff] [blame] | 25 | |
| 26 | #include "udp-channel.hpp" |
Yukai Tu | 0a49d34 | 2015-09-13 12:54:22 +0800 | [diff] [blame] | 27 | #include "generic-link-service.hpp" |
| 28 | #include "unicast-udp-transport.hpp" |
Giulio Grassi | 624f6c6 | 2014-02-18 19:42:14 +0100 | [diff] [blame] | 29 | #include "core/global-io.hpp" |
| 30 | |
| 31 | namespace nfd { |
Davide Pesavento | 8fd15e6 | 2017-04-06 19:58:54 -0400 | [diff] [blame] | 32 | namespace face { |
Giulio Grassi | 624f6c6 | 2014-02-18 19:42:14 +0100 | [diff] [blame] | 33 | |
Davide Pesavento | a314808 | 2018-04-12 18:21:54 -0400 | [diff] [blame] | 34 | NFD_LOG_INIT(UdpChannel); |
Giulio Grassi | 624f6c6 | 2014-02-18 19:42:14 +0100 | [diff] [blame] | 35 | |
Davide Pesavento | 8fd15e6 | 2017-04-06 19:58:54 -0400 | [diff] [blame] | 36 | namespace ip = boost::asio::ip; |
Giulio Grassi | 624f6c6 | 2014-02-18 19:42:14 +0100 | [diff] [blame] | 37 | |
| 38 | UdpChannel::UdpChannel(const udp::Endpoint& localEndpoint, |
Eric Newberry | 0c84164 | 2018-01-17 15:01:00 -0700 | [diff] [blame] | 39 | time::nanoseconds idleTimeout, |
| 40 | bool wantCongestionMarking) |
Giulio Grassi | 624f6c6 | 2014-02-18 19:42:14 +0100 | [diff] [blame] | 41 | : m_localEndpoint(localEndpoint) |
Davide Pesavento | 292e5e1 | 2015-03-13 02:08:33 +0100 | [diff] [blame] | 42 | , m_socket(getGlobalIoService()) |
Davide Pesavento | 43ff2a9 | 2017-05-18 19:50:57 -0400 | [diff] [blame] | 43 | , m_idleFaceTimeout(idleTimeout) |
Eric Newberry | 0c84164 | 2018-01-17 15:01:00 -0700 | [diff] [blame] | 44 | , m_wantCongestionMarking(wantCongestionMarking) |
Giulio Grassi | 624f6c6 | 2014-02-18 19:42:14 +0100 | [diff] [blame] | 45 | { |
Davide Pesavento | 6ad890a | 2015-03-09 03:43:17 +0100 | [diff] [blame] | 46 | setUri(FaceUri(m_localEndpoint)); |
Davide Pesavento | 77911cc | 2017-04-08 22:12:30 -0400 | [diff] [blame] | 47 | NFD_LOG_CHAN_INFO("Creating channel"); |
Giulio Grassi | 624f6c6 | 2014-02-18 19:42:14 +0100 | [diff] [blame] | 48 | } |
| 49 | |
Giulio Grassi | 624f6c6 | 2014-02-18 19:42:14 +0100 | [diff] [blame] | 50 | void |
| 51 | UdpChannel::connect(const udp::Endpoint& remoteEndpoint, |
Davide Pesavento | 15b5505 | 2018-01-27 19:09:28 -0500 | [diff] [blame] | 52 | const FaceParams& params, |
Steve DiBenedetto | ca53ac6 | 2014-03-27 19:58:40 -0600 | [diff] [blame] | 53 | const FaceCreatedCallback& onFaceCreated, |
Davide Pesavento | 47ab029 | 2015-11-02 18:45:39 +0100 | [diff] [blame] | 54 | const FaceCreationFailedCallback& onConnectFailed) |
Giulio Grassi | 624f6c6 | 2014-02-18 19:42:14 +0100 | [diff] [blame] | 55 | { |
Junxiao Shi | c540149 | 2015-12-23 16:33:21 -0700 | [diff] [blame] | 56 | shared_ptr<Face> face; |
Giulio Grassi | 624f6c6 | 2014-02-18 19:42:14 +0100 | [diff] [blame] | 57 | try { |
Davide Pesavento | 15b5505 | 2018-01-27 19:09:28 -0500 | [diff] [blame] | 58 | face = createFace(remoteEndpoint, params).second; |
Giulio Grassi | 624f6c6 | 2014-02-18 19:42:14 +0100 | [diff] [blame] | 59 | } |
Davide Pesavento | 6ad890a | 2015-03-09 03:43:17 +0100 | [diff] [blame] | 60 | catch (const boost::system::system_error& e) { |
Davide Pesavento | 77911cc | 2017-04-08 22:12:30 -0400 | [diff] [blame] | 61 | NFD_LOG_CHAN_DEBUG("Face creation for " << remoteEndpoint << " failed: " << e.what()); |
Davide Pesavento | 292e5e1 | 2015-03-13 02:08:33 +0100 | [diff] [blame] | 62 | if (onConnectFailed) |
Davide Pesavento | 77911cc | 2017-04-08 22:12:30 -0400 | [diff] [blame] | 63 | onConnectFailed(504, std::string("Face creation failed: ") + e.what()); |
Steve DiBenedetto | ca53ac6 | 2014-03-27 19:58:40 -0600 | [diff] [blame] | 64 | return; |
Giulio Grassi | 624f6c6 | 2014-02-18 19:42:14 +0100 | [diff] [blame] | 65 | } |
Davide Pesavento | 6ad890a | 2015-03-09 03:43:17 +0100 | [diff] [blame] | 66 | |
Davide Pesavento | 292e5e1 | 2015-03-13 02:08:33 +0100 | [diff] [blame] | 67 | // Need to invoke the callback regardless of whether or not we had already |
| 68 | // created the face so that control responses and such can be sent |
| 69 | onFaceCreated(face); |
Giulio Grassi | 624f6c6 | 2014-02-18 19:42:14 +0100 | [diff] [blame] | 70 | } |
| 71 | |
Junxiao Shi | c540149 | 2015-12-23 16:33:21 -0700 | [diff] [blame] | 72 | void |
| 73 | UdpChannel::listen(const FaceCreatedCallback& onFaceCreated, |
Davide Pesavento | 77911cc | 2017-04-08 22:12:30 -0400 | [diff] [blame] | 74 | const FaceCreationFailedCallback& onFaceCreationFailed) |
Giulio Grassi | 624f6c6 | 2014-02-18 19:42:14 +0100 | [diff] [blame] | 75 | { |
Junxiao Shi | c540149 | 2015-12-23 16:33:21 -0700 | [diff] [blame] | 76 | if (isListening()) { |
Davide Pesavento | 77911cc | 2017-04-08 22:12:30 -0400 | [diff] [blame] | 77 | NFD_LOG_CHAN_WARN("Already listening"); |
Junxiao Shi | c540149 | 2015-12-23 16:33:21 -0700 | [diff] [blame] | 78 | return; |
| 79 | } |
| 80 | |
| 81 | m_socket.open(m_localEndpoint.protocol()); |
| 82 | m_socket.set_option(ip::udp::socket::reuse_address(true)); |
Davide Pesavento | 77911cc | 2017-04-08 22:12:30 -0400 | [diff] [blame] | 83 | if (m_localEndpoint.address().is_v6()) { |
Junxiao Shi | c540149 | 2015-12-23 16:33:21 -0700 | [diff] [blame] | 84 | m_socket.set_option(ip::v6_only(true)); |
Davide Pesavento | 77911cc | 2017-04-08 22:12:30 -0400 | [diff] [blame] | 85 | } |
Junxiao Shi | c540149 | 2015-12-23 16:33:21 -0700 | [diff] [blame] | 86 | m_socket.bind(m_localEndpoint); |
Davide Pesavento | 77911cc | 2017-04-08 22:12:30 -0400 | [diff] [blame] | 87 | |
| 88 | waitForNewPeer(onFaceCreated, onFaceCreationFailed); |
| 89 | NFD_LOG_CHAN_DEBUG("Started listening"); |
Junxiao Shi | c540149 | 2015-12-23 16:33:21 -0700 | [diff] [blame] | 90 | } |
| 91 | |
| 92 | void |
| 93 | UdpChannel::waitForNewPeer(const FaceCreatedCallback& onFaceCreated, |
| 94 | const FaceCreationFailedCallback& onReceiveFailed) |
| 95 | { |
Davide Pesavento | acca18a | 2017-04-09 13:23:16 -0400 | [diff] [blame] | 96 | m_socket.async_receive_from(boost::asio::buffer(m_receiveBuffer), m_remoteEndpoint, |
Junxiao Shi | c540149 | 2015-12-23 16:33:21 -0700 | [diff] [blame] | 97 | bind(&UdpChannel::handleNewPeer, this, |
| 98 | boost::asio::placeholders::error, |
| 99 | boost::asio::placeholders::bytes_transferred, |
| 100 | onFaceCreated, onReceiveFailed)); |
| 101 | } |
| 102 | |
| 103 | void |
| 104 | UdpChannel::handleNewPeer(const boost::system::error_code& error, |
| 105 | size_t nBytesReceived, |
| 106 | const FaceCreatedCallback& onFaceCreated, |
| 107 | const FaceCreationFailedCallback& onReceiveFailed) |
| 108 | { |
| 109 | if (error) { |
Davide Pesavento | 77911cc | 2017-04-08 22:12:30 -0400 | [diff] [blame] | 110 | if (error != boost::asio::error::operation_aborted) { |
| 111 | NFD_LOG_CHAN_DEBUG("Receive failed: " << error.message()); |
| 112 | if (onReceiveFailed) |
| 113 | onReceiveFailed(500, "Receive failed: " + error.message()); |
| 114 | } |
Junxiao Shi | c540149 | 2015-12-23 16:33:21 -0700 | [diff] [blame] | 115 | return; |
| 116 | } |
| 117 | |
Davide Pesavento | 77911cc | 2017-04-08 22:12:30 -0400 | [diff] [blame] | 118 | NFD_LOG_CHAN_TRACE("New peer " << m_remoteEndpoint); |
Junxiao Shi | c540149 | 2015-12-23 16:33:21 -0700 | [diff] [blame] | 119 | |
| 120 | bool isCreated = false; |
Junxiao Shi | cde37ad | 2015-12-24 01:02:05 -0700 | [diff] [blame] | 121 | shared_ptr<Face> face; |
Junxiao Shi | c540149 | 2015-12-23 16:33:21 -0700 | [diff] [blame] | 122 | try { |
Davide Pesavento | 15b5505 | 2018-01-27 19:09:28 -0500 | [diff] [blame] | 123 | FaceParams params; |
| 124 | params.persistency = ndn::nfd::FACE_PERSISTENCY_ON_DEMAND; |
| 125 | std::tie(isCreated, face) = createFace(m_remoteEndpoint, params); |
Junxiao Shi | c540149 | 2015-12-23 16:33:21 -0700 | [diff] [blame] | 126 | } |
| 127 | catch (const boost::system::system_error& e) { |
Davide Pesavento | 77911cc | 2017-04-08 22:12:30 -0400 | [diff] [blame] | 128 | NFD_LOG_CHAN_DEBUG("Face creation for " << m_remoteEndpoint << " failed: " << e.what()); |
Junxiao Shi | c540149 | 2015-12-23 16:33:21 -0700 | [diff] [blame] | 129 | if (onReceiveFailed) |
Davide Pesavento | 77911cc | 2017-04-08 22:12:30 -0400 | [diff] [blame] | 130 | onReceiveFailed(504, std::string("Face creation failed: ") + e.what()); |
Junxiao Shi | c540149 | 2015-12-23 16:33:21 -0700 | [diff] [blame] | 131 | return; |
| 132 | } |
| 133 | |
| 134 | if (isCreated) |
| 135 | onFaceCreated(face); |
Davide Pesavento | 43ff2a9 | 2017-05-18 19:50:57 -0400 | [diff] [blame] | 136 | else |
| 137 | NFD_LOG_CHAN_DEBUG("Received datagram for existing face"); |
Junxiao Shi | c540149 | 2015-12-23 16:33:21 -0700 | [diff] [blame] | 138 | |
| 139 | // dispatch the datagram to the face for processing |
Davide Pesavento | 77911cc | 2017-04-08 22:12:30 -0400 | [diff] [blame] | 140 | auto* transport = static_cast<UnicastUdpTransport*>(face->getTransport()); |
Davide Pesavento | acca18a | 2017-04-09 13:23:16 -0400 | [diff] [blame] | 141 | transport->receiveDatagram(m_receiveBuffer.data(), nBytesReceived, error); |
Junxiao Shi | c540149 | 2015-12-23 16:33:21 -0700 | [diff] [blame] | 142 | |
Davide Pesavento | 77911cc | 2017-04-08 22:12:30 -0400 | [diff] [blame] | 143 | waitForNewPeer(onFaceCreated, onReceiveFailed); |
Giulio Grassi | 624f6c6 | 2014-02-18 19:42:14 +0100 | [diff] [blame] | 144 | } |
| 145 | |
Junxiao Shi | cde37ad | 2015-12-24 01:02:05 -0700 | [diff] [blame] | 146 | std::pair<bool, shared_ptr<Face>> |
Davide Pesavento | 77911cc | 2017-04-08 22:12:30 -0400 | [diff] [blame] | 147 | UdpChannel::createFace(const udp::Endpoint& remoteEndpoint, |
Davide Pesavento | 15b5505 | 2018-01-27 19:09:28 -0500 | [diff] [blame] | 148 | const FaceParams& params) |
Giulio Grassi | 624f6c6 | 2014-02-18 19:42:14 +0100 | [diff] [blame] | 149 | { |
Davide Pesavento | 6ad890a | 2015-03-09 03:43:17 +0100 | [diff] [blame] | 150 | auto it = m_channelFaces.find(remoteEndpoint); |
Davide Pesavento | 292e5e1 | 2015-03-13 02:08:33 +0100 | [diff] [blame] | 151 | if (it != m_channelFaces.end()) { |
Eric Newberry | f40551a | 2016-09-05 15:41:16 -0700 | [diff] [blame] | 152 | // we already have a face for this endpoint, so reuse it |
Davide Pesavento | 77911cc | 2017-04-08 22:12:30 -0400 | [diff] [blame] | 153 | NFD_LOG_CHAN_TRACE("Reusing existing face for " << remoteEndpoint); |
Yanbiao Li | 58ba3f9 | 2017-02-15 14:27:18 +0000 | [diff] [blame] | 154 | return {false, it->second}; |
Davide Pesavento | 292e5e1 | 2015-03-13 02:08:33 +0100 | [diff] [blame] | 155 | } |
Junxiao Shi | c099ddb | 2014-12-25 20:53:20 -0700 | [diff] [blame] | 156 | |
Davide Pesavento | 292e5e1 | 2015-03-13 02:08:33 +0100 | [diff] [blame] | 157 | // else, create a new face |
| 158 | ip::udp::socket socket(getGlobalIoService(), m_localEndpoint.protocol()); |
| 159 | socket.set_option(ip::udp::socket::reuse_address(true)); |
| 160 | socket.bind(m_localEndpoint); |
| 161 | socket.connect(remoteEndpoint); |
Steve DiBenedetto | 2aa4eca | 2014-06-20 10:47:40 -0600 | [diff] [blame] | 162 | |
Eric Newberry | 2642cd2 | 2017-07-13 21:34:53 -0400 | [diff] [blame] | 163 | GenericLinkService::Options options; |
Davide Pesavento | 15b5505 | 2018-01-27 19:09:28 -0500 | [diff] [blame] | 164 | options.reliabilityOptions.isEnabled = params.wantLpReliability; |
Eric Newberry | 0c3e57b | 2018-01-25 20:54:46 -0700 | [diff] [blame] | 165 | |
| 166 | if (boost::logic::indeterminate(params.wantCongestionMarking)) { |
| 167 | // Use default value for this channel if parameter is indeterminate |
| 168 | options.allowCongestionMarking = m_wantCongestionMarking; |
| 169 | } |
| 170 | else { |
| 171 | options.allowCongestionMarking = params.wantCongestionMarking; |
| 172 | } |
| 173 | |
| 174 | if (params.baseCongestionMarkingInterval) { |
| 175 | options.baseCongestionMarkingInterval = *params.baseCongestionMarkingInterval; |
| 176 | } |
| 177 | if (params.defaultCongestionThreshold) { |
| 178 | options.defaultCongestionThreshold = *params.defaultCongestionThreshold; |
| 179 | } |
| 180 | |
Eric Newberry | 2642cd2 | 2017-07-13 21:34:53 -0400 | [diff] [blame] | 181 | auto linkService = make_unique<GenericLinkService>(options); |
Davide Pesavento | 15b5505 | 2018-01-27 19:09:28 -0500 | [diff] [blame] | 182 | auto transport = make_unique<UnicastUdpTransport>(std::move(socket), params.persistency, m_idleFaceTimeout); |
Junxiao Shi | cde37ad | 2015-12-24 01:02:05 -0700 | [diff] [blame] | 183 | auto face = make_shared<Face>(std::move(linkService), std::move(transport)); |
Steve DiBenedetto | 2aa4eca | 2014-06-20 10:47:40 -0600 | [diff] [blame] | 184 | |
Yukai Tu | 0a49d34 | 2015-09-13 12:54:22 +0800 | [diff] [blame] | 185 | m_channelFaces[remoteEndpoint] = face; |
Davide Pesavento | 77911cc | 2017-04-08 22:12:30 -0400 | [diff] [blame] | 186 | connectFaceClosedSignal(*face, [this, remoteEndpoint] { m_channelFaces.erase(remoteEndpoint); }); |
Junxiao Shi | c540149 | 2015-12-23 16:33:21 -0700 | [diff] [blame] | 187 | |
Davide Pesavento | 292e5e1 | 2015-03-13 02:08:33 +0100 | [diff] [blame] | 188 | return {true, face}; |
Giulio Grassi | 624f6c6 | 2014-02-18 19:42:14 +0100 | [diff] [blame] | 189 | } |
| 190 | |
Davide Pesavento | 8fd15e6 | 2017-04-06 19:58:54 -0400 | [diff] [blame] | 191 | } // namespace face |
Giulio Grassi | 624f6c6 | 2014-02-18 19:42:14 +0100 | [diff] [blame] | 192 | } // namespace nfd |