Yukai Tu | 74c895d | 2015-09-21 01:11:51 -0700 | [diff] [blame] | 1 | /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */ |
Eric Newberry | b49313d | 2017-12-24 20:22:27 -0700 | [diff] [blame] | 2 | /* |
Davide Pesavento | 3dade00 | 2019-03-19 11:29:56 -0600 | [diff] [blame] | 3 | * Copyright (c) 2014-2019, Regents of the University of California, |
Yukai Tu | 74c895d | 2015-09-21 01:11:51 -0700 | [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. |
| 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/>. |
| 24 | */ |
| 25 | |
| 26 | #ifndef NFD_DAEMON_FACE_STREAM_TRANSPORT_HPP |
| 27 | #define NFD_DAEMON_FACE_STREAM_TRANSPORT_HPP |
| 28 | |
| 29 | #include "transport.hpp" |
Eric Newberry | b49313d | 2017-12-24 20:22:27 -0700 | [diff] [blame] | 30 | #include "socket-utils.hpp" |
Davide Pesavento | 2cae8ca | 2019-04-18 20:48:05 -0400 | [diff] [blame] | 31 | #include "common/global.hpp" |
Yukai Tu | 74c895d | 2015-09-21 01:11:51 -0700 | [diff] [blame] | 32 | |
| 33 | #include <queue> |
| 34 | |
| 35 | namespace nfd { |
| 36 | namespace face { |
| 37 | |
| 38 | /** \brief Implements Transport for stream-based protocols. |
| 39 | * |
| 40 | * \tparam Protocol a stream-based protocol in Boost.Asio |
| 41 | */ |
| 42 | template<class Protocol> |
| 43 | class StreamTransport : public Transport |
| 44 | { |
| 45 | public: |
| 46 | typedef Protocol protocol; |
| 47 | |
| 48 | /** \brief Construct stream transport. |
| 49 | * |
| 50 | * \param socket Protocol-specific socket for the created transport |
| 51 | */ |
| 52 | explicit |
| 53 | StreamTransport(typename protocol::socket&& socket); |
| 54 | |
Eric Newberry | b49313d | 2017-12-24 20:22:27 -0700 | [diff] [blame] | 55 | ssize_t |
| 56 | getSendQueueLength() override; |
| 57 | |
Davide Pesavento | 8728a25 | 2015-11-06 04:01:22 +0100 | [diff] [blame] | 58 | protected: |
Davide Pesavento | 1816d4b | 2017-07-02 12:20:48 -0400 | [diff] [blame] | 59 | void |
Davide Pesavento | b84bd3a | 2016-04-22 02:21:45 +0200 | [diff] [blame] | 60 | doClose() override; |
Yukai Tu | 74c895d | 2015-09-21 01:11:51 -0700 | [diff] [blame] | 61 | |
Yukai Tu | 74c895d | 2015-09-21 01:11:51 -0700 | [diff] [blame] | 62 | void |
| 63 | deferredClose(); |
| 64 | |
Davide Pesavento | 1816d4b | 2017-07-02 12:20:48 -0400 | [diff] [blame] | 65 | void |
Davide Pesavento | b3a23ca | 2019-05-04 20:40:21 -0400 | [diff] [blame^] | 66 | doSend(const Block& packet, const EndpointId& endpoint) override; |
Davide Pesavento | 8728a25 | 2015-11-06 04:01:22 +0100 | [diff] [blame] | 67 | |
Yukai Tu | 74c895d | 2015-09-21 01:11:51 -0700 | [diff] [blame] | 68 | void |
| 69 | sendFromQueue(); |
| 70 | |
| 71 | void |
| 72 | handleSend(const boost::system::error_code& error, |
| 73 | size_t nBytesSent); |
| 74 | |
| 75 | void |
Weiwei Liu | dcdf621 | 2016-08-31 14:34:22 -0700 | [diff] [blame] | 76 | startReceive(); |
| 77 | |
| 78 | void |
Yukai Tu | 74c895d | 2015-09-21 01:11:51 -0700 | [diff] [blame] | 79 | handleReceive(const boost::system::error_code& error, |
| 80 | size_t nBytesReceived); |
| 81 | |
| 82 | void |
| 83 | processErrorCode(const boost::system::error_code& error); |
| 84 | |
Weiwei Liu | dcdf621 | 2016-08-31 14:34:22 -0700 | [diff] [blame] | 85 | virtual void |
| 86 | handleError(const boost::system::error_code& error); |
| 87 | |
| 88 | void |
| 89 | resetReceiveBuffer(); |
| 90 | |
| 91 | void |
| 92 | resetSendQueue(); |
| 93 | |
Eric Newberry | b49313d | 2017-12-24 20:22:27 -0700 | [diff] [blame] | 94 | size_t |
| 95 | getSendQueueBytes() const; |
| 96 | |
Yukai Tu | 74c895d | 2015-09-21 01:11:51 -0700 | [diff] [blame] | 97 | protected: |
| 98 | typename protocol::socket m_socket; |
| 99 | |
Davide Pesavento | a314808 | 2018-04-12 18:21:54 -0400 | [diff] [blame] | 100 | NFD_LOG_MEMBER_DECL(); |
Yukai Tu | 74c895d | 2015-09-21 01:11:51 -0700 | [diff] [blame] | 101 | |
| 102 | private: |
Davide Pesavento | 8728a25 | 2015-11-06 04:01:22 +0100 | [diff] [blame] | 103 | uint8_t m_receiveBuffer[ndn::MAX_NDN_PACKET_SIZE]; |
| 104 | size_t m_receiveBufferSize; |
Yukai Tu | 74c895d | 2015-09-21 01:11:51 -0700 | [diff] [blame] | 105 | std::queue<Block> m_sendQueue; |
Eric Newberry | b49313d | 2017-12-24 20:22:27 -0700 | [diff] [blame] | 106 | size_t m_sendQueueBytes; |
Yukai Tu | 74c895d | 2015-09-21 01:11:51 -0700 | [diff] [blame] | 107 | }; |
| 108 | |
Yukai Tu | 74c895d | 2015-09-21 01:11:51 -0700 | [diff] [blame] | 109 | |
| 110 | template<class T> |
Yukai Tu | 74c895d | 2015-09-21 01:11:51 -0700 | [diff] [blame] | 111 | StreamTransport<T>::StreamTransport(typename StreamTransport::protocol::socket&& socket) |
| 112 | : m_socket(std::move(socket)) |
Davide Pesavento | 8728a25 | 2015-11-06 04:01:22 +0100 | [diff] [blame] | 113 | , m_receiveBufferSize(0) |
Eric Newberry | b49313d | 2017-12-24 20:22:27 -0700 | [diff] [blame] | 114 | , m_sendQueueBytes(0) |
Yukai Tu | 74c895d | 2015-09-21 01:11:51 -0700 | [diff] [blame] | 115 | { |
Eric Newberry | b49313d | 2017-12-24 20:22:27 -0700 | [diff] [blame] | 116 | // No queue capacity is set because there is no theoretical limit to the size of m_sendQueue. |
| 117 | // Therefore, protecting against send queue overflows is less critical than in other transport |
| 118 | // types. Instead, we use the default threshold specified in the GenericLinkService options. |
| 119 | |
Weiwei Liu | dcdf621 | 2016-08-31 14:34:22 -0700 | [diff] [blame] | 120 | startReceive(); |
Yukai Tu | 74c895d | 2015-09-21 01:11:51 -0700 | [diff] [blame] | 121 | } |
| 122 | |
| 123 | template<class T> |
Eric Newberry | b49313d | 2017-12-24 20:22:27 -0700 | [diff] [blame] | 124 | ssize_t |
| 125 | StreamTransport<T>::getSendQueueLength() |
| 126 | { |
| 127 | ssize_t queueLength = getTxQueueLength(m_socket.native_handle()); |
| 128 | if (queueLength == QUEUE_ERROR) { |
| 129 | NFD_LOG_FACE_WARN("Failed to obtain send queue length from socket: " << std::strerror(errno)); |
| 130 | } |
| 131 | return getSendQueueBytes() + std::max<ssize_t>(0, queueLength); |
| 132 | } |
| 133 | |
| 134 | template<class T> |
Davide Pesavento | 8728a25 | 2015-11-06 04:01:22 +0100 | [diff] [blame] | 135 | void |
Yukai Tu | 74c895d | 2015-09-21 01:11:51 -0700 | [diff] [blame] | 136 | StreamTransport<T>::doClose() |
| 137 | { |
| 138 | NFD_LOG_FACE_TRACE(__func__); |
| 139 | |
| 140 | if (m_socket.is_open()) { |
| 141 | // Cancel all outstanding operations and shutdown the socket |
| 142 | // so that no further sends or receives are possible. |
| 143 | // Use the non-throwing variants and ignore errors, if any. |
| 144 | boost::system::error_code error; |
| 145 | m_socket.cancel(error); |
| 146 | m_socket.shutdown(protocol::socket::shutdown_both, error); |
| 147 | } |
| 148 | |
| 149 | // Ensure that the Transport stays alive at least until |
| 150 | // all pending handlers are dispatched |
Davide Pesavento | 1816d4b | 2017-07-02 12:20:48 -0400 | [diff] [blame] | 151 | getGlobalIoService().post([this] { deferredClose(); }); |
Yukai Tu | 74c895d | 2015-09-21 01:11:51 -0700 | [diff] [blame] | 152 | |
Davide Pesavento | 1816d4b | 2017-07-02 12:20:48 -0400 | [diff] [blame] | 153 | // Some bug or feature of Boost.Asio (see https://redmine.named-data.net/issues/1856): |
Yukai Tu | 74c895d | 2015-09-21 01:11:51 -0700 | [diff] [blame] | 154 | // |
| 155 | // When doClose is called from a socket event handler (e.g., from handleReceive), |
| 156 | // m_socket.shutdown() does not trigger the cancellation of the handleSend callback. |
| 157 | // Instead, handleSend is invoked as nothing bad happened. |
| 158 | // |
| 159 | // In order to prevent the assertion in handleSend from failing, we clear the queue |
| 160 | // and close the socket in deferredClose, i.e., after all callbacks scheduled up to |
| 161 | // this point have been executed. If more send operations are scheduled after this |
| 162 | // point, they will fail because the socket has been shutdown, and their callbacks |
| 163 | // will be invoked with error code == asio::error::shut_down. |
| 164 | } |
| 165 | |
| 166 | template<class T> |
Davide Pesavento | 8728a25 | 2015-11-06 04:01:22 +0100 | [diff] [blame] | 167 | void |
Yukai Tu | 74c895d | 2015-09-21 01:11:51 -0700 | [diff] [blame] | 168 | StreamTransport<T>::deferredClose() |
| 169 | { |
| 170 | NFD_LOG_FACE_TRACE(__func__); |
| 171 | |
Weiwei Liu | dcdf621 | 2016-08-31 14:34:22 -0700 | [diff] [blame] | 172 | resetSendQueue(); |
Yukai Tu | 74c895d | 2015-09-21 01:11:51 -0700 | [diff] [blame] | 173 | |
| 174 | // use the non-throwing variant and ignore errors, if any |
| 175 | boost::system::error_code error; |
| 176 | m_socket.close(error); |
| 177 | |
| 178 | this->setState(TransportState::CLOSED); |
| 179 | } |
| 180 | |
| 181 | template<class T> |
Davide Pesavento | 8728a25 | 2015-11-06 04:01:22 +0100 | [diff] [blame] | 182 | void |
Davide Pesavento | b3a23ca | 2019-05-04 20:40:21 -0400 | [diff] [blame^] | 183 | StreamTransport<T>::doSend(const Block& packet, const EndpointId&) |
Davide Pesavento | 8728a25 | 2015-11-06 04:01:22 +0100 | [diff] [blame] | 184 | { |
| 185 | NFD_LOG_FACE_TRACE(__func__); |
| 186 | |
Weiwei Liu | dcdf621 | 2016-08-31 14:34:22 -0700 | [diff] [blame] | 187 | if (getState() != TransportState::UP) |
| 188 | return; |
| 189 | |
Davide Pesavento | 8728a25 | 2015-11-06 04:01:22 +0100 | [diff] [blame] | 190 | bool wasQueueEmpty = m_sendQueue.empty(); |
Davide Pesavento | b3a23ca | 2019-05-04 20:40:21 -0400 | [diff] [blame^] | 191 | m_sendQueue.push(packet); |
| 192 | m_sendQueueBytes += packet.size(); |
Davide Pesavento | 8728a25 | 2015-11-06 04:01:22 +0100 | [diff] [blame] | 193 | |
| 194 | if (wasQueueEmpty) |
| 195 | sendFromQueue(); |
| 196 | } |
| 197 | |
| 198 | template<class T> |
| 199 | void |
Yukai Tu | 74c895d | 2015-09-21 01:11:51 -0700 | [diff] [blame] | 200 | StreamTransport<T>::sendFromQueue() |
| 201 | { |
| 202 | boost::asio::async_write(m_socket, boost::asio::buffer(m_sendQueue.front()), |
Davide Pesavento | e4b2238 | 2018-06-10 14:37:24 -0400 | [diff] [blame] | 203 | [this] (auto&&... args) { this->handleSend(std::forward<decltype(args)>(args)...); }); |
Yukai Tu | 74c895d | 2015-09-21 01:11:51 -0700 | [diff] [blame] | 204 | } |
| 205 | |
| 206 | template<class T> |
Davide Pesavento | 8728a25 | 2015-11-06 04:01:22 +0100 | [diff] [blame] | 207 | void |
Yukai Tu | 74c895d | 2015-09-21 01:11:51 -0700 | [diff] [blame] | 208 | StreamTransport<T>::handleSend(const boost::system::error_code& error, |
| 209 | size_t nBytesSent) |
| 210 | { |
| 211 | if (error) |
| 212 | return processErrorCode(error); |
| 213 | |
| 214 | NFD_LOG_FACE_TRACE("Successfully sent: " << nBytesSent << " bytes"); |
| 215 | |
| 216 | BOOST_ASSERT(!m_sendQueue.empty()); |
Eric Newberry | b49313d | 2017-12-24 20:22:27 -0700 | [diff] [blame] | 217 | BOOST_ASSERT(m_sendQueue.front().size() == nBytesSent); |
| 218 | m_sendQueueBytes -= nBytesSent; |
Yukai Tu | 74c895d | 2015-09-21 01:11:51 -0700 | [diff] [blame] | 219 | m_sendQueue.pop(); |
| 220 | |
| 221 | if (!m_sendQueue.empty()) |
| 222 | sendFromQueue(); |
| 223 | } |
| 224 | |
| 225 | template<class T> |
Davide Pesavento | 8728a25 | 2015-11-06 04:01:22 +0100 | [diff] [blame] | 226 | void |
Weiwei Liu | dcdf621 | 2016-08-31 14:34:22 -0700 | [diff] [blame] | 227 | StreamTransport<T>::startReceive() |
| 228 | { |
| 229 | BOOST_ASSERT(getState() == TransportState::UP); |
| 230 | |
| 231 | m_socket.async_receive(boost::asio::buffer(m_receiveBuffer + m_receiveBufferSize, |
| 232 | ndn::MAX_NDN_PACKET_SIZE - m_receiveBufferSize), |
Davide Pesavento | e4b2238 | 2018-06-10 14:37:24 -0400 | [diff] [blame] | 233 | [this] (auto&&... args) { this->handleReceive(std::forward<decltype(args)>(args)...); }); |
Weiwei Liu | dcdf621 | 2016-08-31 14:34:22 -0700 | [diff] [blame] | 234 | } |
| 235 | |
| 236 | template<class T> |
| 237 | void |
Yukai Tu | 74c895d | 2015-09-21 01:11:51 -0700 | [diff] [blame] | 238 | StreamTransport<T>::handleReceive(const boost::system::error_code& error, |
| 239 | size_t nBytesReceived) |
| 240 | { |
| 241 | if (error) |
| 242 | return processErrorCode(error); |
| 243 | |
| 244 | NFD_LOG_FACE_TRACE("Received: " << nBytesReceived << " bytes"); |
| 245 | |
Davide Pesavento | 8728a25 | 2015-11-06 04:01:22 +0100 | [diff] [blame] | 246 | m_receiveBufferSize += nBytesReceived; |
Yukai Tu | 74c895d | 2015-09-21 01:11:51 -0700 | [diff] [blame] | 247 | size_t offset = 0; |
Yukai Tu | 74c895d | 2015-09-21 01:11:51 -0700 | [diff] [blame] | 248 | bool isOk = true; |
Davide Pesavento | 8728a25 | 2015-11-06 04:01:22 +0100 | [diff] [blame] | 249 | while (m_receiveBufferSize - offset > 0) { |
Davide Pesavento | 1816d4b | 2017-07-02 12:20:48 -0400 | [diff] [blame] | 250 | Block element; |
Davide Pesavento | 8728a25 | 2015-11-06 04:01:22 +0100 | [diff] [blame] | 251 | std::tie(isOk, element) = Block::fromBuffer(m_receiveBuffer + offset, m_receiveBufferSize - offset); |
Yukai Tu | 74c895d | 2015-09-21 01:11:51 -0700 | [diff] [blame] | 252 | if (!isOk) |
| 253 | break; |
| 254 | |
| 255 | offset += element.size(); |
Davide Pesavento | 8728a25 | 2015-11-06 04:01:22 +0100 | [diff] [blame] | 256 | BOOST_ASSERT(offset <= m_receiveBufferSize); |
Yukai Tu | 74c895d | 2015-09-21 01:11:51 -0700 | [diff] [blame] | 257 | |
Davide Pesavento | b3a23ca | 2019-05-04 20:40:21 -0400 | [diff] [blame^] | 258 | this->receive(element); |
Yukai Tu | 74c895d | 2015-09-21 01:11:51 -0700 | [diff] [blame] | 259 | } |
| 260 | |
Davide Pesavento | 8728a25 | 2015-11-06 04:01:22 +0100 | [diff] [blame] | 261 | if (!isOk && m_receiveBufferSize == ndn::MAX_NDN_PACKET_SIZE && offset == 0) { |
Davide Pesavento | 1816d4b | 2017-07-02 12:20:48 -0400 | [diff] [blame] | 262 | NFD_LOG_FACE_ERROR("Failed to parse incoming packet or packet too large to process"); |
Yukai Tu | 74c895d | 2015-09-21 01:11:51 -0700 | [diff] [blame] | 263 | this->setState(TransportState::FAILED); |
| 264 | doClose(); |
| 265 | return; |
| 266 | } |
| 267 | |
| 268 | if (offset > 0) { |
Davide Pesavento | 8728a25 | 2015-11-06 04:01:22 +0100 | [diff] [blame] | 269 | if (offset != m_receiveBufferSize) { |
| 270 | std::copy(m_receiveBuffer + offset, m_receiveBuffer + m_receiveBufferSize, m_receiveBuffer); |
| 271 | m_receiveBufferSize -= offset; |
Yukai Tu | 74c895d | 2015-09-21 01:11:51 -0700 | [diff] [blame] | 272 | } |
| 273 | else { |
Davide Pesavento | 8728a25 | 2015-11-06 04:01:22 +0100 | [diff] [blame] | 274 | m_receiveBufferSize = 0; |
Yukai Tu | 74c895d | 2015-09-21 01:11:51 -0700 | [diff] [blame] | 275 | } |
| 276 | } |
| 277 | |
Weiwei Liu | dcdf621 | 2016-08-31 14:34:22 -0700 | [diff] [blame] | 278 | startReceive(); |
Yukai Tu | 74c895d | 2015-09-21 01:11:51 -0700 | [diff] [blame] | 279 | } |
| 280 | |
| 281 | template<class T> |
Davide Pesavento | 8728a25 | 2015-11-06 04:01:22 +0100 | [diff] [blame] | 282 | void |
Yukai Tu | 74c895d | 2015-09-21 01:11:51 -0700 | [diff] [blame] | 283 | StreamTransport<T>::processErrorCode(const boost::system::error_code& error) |
| 284 | { |
| 285 | NFD_LOG_FACE_TRACE(__func__); |
| 286 | |
| 287 | if (getState() == TransportState::CLOSING || |
| 288 | getState() == TransportState::FAILED || |
| 289 | getState() == TransportState::CLOSED || |
| 290 | error == boost::asio::error::operation_aborted || // when cancel() is called |
| 291 | error == boost::asio::error::shut_down) // after shutdown() is called |
| 292 | // transport is shutting down, ignore any errors |
| 293 | return; |
| 294 | |
Weiwei Liu | dcdf621 | 2016-08-31 14:34:22 -0700 | [diff] [blame] | 295 | handleError(error); |
| 296 | } |
| 297 | |
| 298 | template<class T> |
| 299 | void |
| 300 | StreamTransport<T>::handleError(const boost::system::error_code& error) |
| 301 | { |
Davide Pesavento | 68ab43d | 2017-07-02 13:37:35 -0400 | [diff] [blame] | 302 | if (error == boost::asio::error::eof) { |
| 303 | this->setState(TransportState::CLOSING); |
| 304 | } |
| 305 | else { |
Davide Pesavento | 1816d4b | 2017-07-02 12:20:48 -0400 | [diff] [blame] | 306 | NFD_LOG_FACE_ERROR("Send or receive operation failed: " << error.message()); |
Davide Pesavento | 68ab43d | 2017-07-02 13:37:35 -0400 | [diff] [blame] | 307 | this->setState(TransportState::FAILED); |
| 308 | } |
Yukai Tu | 74c895d | 2015-09-21 01:11:51 -0700 | [diff] [blame] | 309 | doClose(); |
| 310 | } |
| 311 | |
Weiwei Liu | dcdf621 | 2016-08-31 14:34:22 -0700 | [diff] [blame] | 312 | template<class T> |
| 313 | void |
| 314 | StreamTransport<T>::resetReceiveBuffer() |
| 315 | { |
| 316 | m_receiveBufferSize = 0; |
| 317 | } |
| 318 | |
| 319 | template<class T> |
| 320 | void |
| 321 | StreamTransport<T>::resetSendQueue() |
| 322 | { |
| 323 | std::queue<Block> emptyQueue; |
| 324 | std::swap(emptyQueue, m_sendQueue); |
Eric Newberry | b49313d | 2017-12-24 20:22:27 -0700 | [diff] [blame] | 325 | m_sendQueueBytes = 0; |
| 326 | } |
| 327 | |
| 328 | template<class T> |
| 329 | size_t |
| 330 | StreamTransport<T>::getSendQueueBytes() const |
| 331 | { |
| 332 | return m_sendQueueBytes; |
Weiwei Liu | dcdf621 | 2016-08-31 14:34:22 -0700 | [diff] [blame] | 333 | } |
| 334 | |
Yukai Tu | 74c895d | 2015-09-21 01:11:51 -0700 | [diff] [blame] | 335 | } // namespace face |
| 336 | } // namespace nfd |
| 337 | |
| 338 | #endif // NFD_DAEMON_FACE_STREAM_TRANSPORT_HPP |