blob: 471a97164ef50df3da01901ab568d920b636b277 [file] [log] [blame]
Giulio Grassi624f6c62014-02-18 19:42:14 +01001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
Eric Newberry2642cd22017-07-13 21:34:53 -04002/*
Junxiao Shi64d99f22017-01-21 23:06:36 +00003 * Copyright (c) 2014-2017, Regents of the University of California,
Yukai Tu0a49d342015-09-13 12:54:22 +08004 * 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
Alexander Afanasyev613e2a92014-04-15 13:36:58 -070026#ifndef NFD_DAEMON_FACE_UDP_CHANNEL_HPP
27#define NFD_DAEMON_FACE_UDP_CHANNEL_HPP
Giulio Grassi624f6c62014-02-18 19:42:14 +010028
Junxiao Shi61e3cc52014-03-03 20:40:28 -070029#include "channel.hpp"
Junxiao Shi64d99f22017-01-21 23:06:36 +000030#include "udp-protocol.hpp"
Giulio Grassi624f6c62014-02-18 19:42:14 +010031
Davide Pesaventoacca18a2017-04-09 13:23:16 -040032#include <array>
33
Giulio Grassi624f6c62014-02-18 19:42:14 +010034namespace nfd {
Davide Pesavento8fd15e62017-04-06 19:58:54 -040035namespace face {
Giulio Grassi624f6c62014-02-18 19:42:14 +010036
Giulio Grassi624f6c62014-02-18 19:42:14 +010037/**
38 * \brief Class implementing UDP-based channel to create faces
Giulio Grassi624f6c62014-02-18 19:42:14 +010039 */
Junxiao Shi61e3cc52014-03-03 20:40:28 -070040class UdpChannel : public Channel
Giulio Grassi624f6c62014-02-18 19:42:14 +010041{
42public:
Giulio Grassi624f6c62014-02-18 19:42:14 +010043 /**
Davide Pesavento43ff2a92017-05-18 19:50:57 -040044 * \brief Create a UDP channel on the given \p localEndpoint
Giulio Grassi624f6c62014-02-18 19:42:14 +010045 *
46 * To enable creation of faces upon incoming connections,
47 * one needs to explicitly call UdpChannel::listen method.
Davide Pesavento43ff2a92017-05-18 19:50:57 -040048 * The created socket is bound to \p localEndpoint.
Giulio Grassi624f6c62014-02-18 19:42:14 +010049 */
50 UdpChannel(const udp::Endpoint& localEndpoint,
Davide Pesavento43ff2a92017-05-18 19:50:57 -040051 time::nanoseconds idleTimeout);
Giulio Grassi624f6c62014-02-18 19:42:14 +010052
Davide Pesaventoc19408d2017-04-08 00:42:55 -040053 bool
54 isListening() const override
55 {
56 return m_socket.is_open();
57 }
58
Junxiao Shic5401492015-12-23 16:33:21 -070059 size_t
Davide Pesaventoc19408d2017-04-08 00:42:55 -040060 size() const override
61 {
62 return m_channelFaces.size();
63 }
Junxiao Shic5401492015-12-23 16:33:21 -070064
65 /**
Davide Pesavento43ff2a92017-05-18 19:50:57 -040066 * \brief Create a unicast UDP face toward \p remoteEndpoint
Junxiao Shic5401492015-12-23 16:33:21 -070067 *
Davide Pesavento43ff2a92017-05-18 19:50:57 -040068 * \param remoteEndpoint The remote UDP endpoint
69 * \param persistency Persistency of the newly created face
Eric Newberry2642cd22017-07-13 21:34:53 -040070 * \param wantLpReliability whether LpReliability should be enabled
Davide Pesavento43ff2a92017-05-18 19:50:57 -040071 * \param onFaceCreated Callback to notify successful creation of the face
72 * \param onConnectFailed Callback to notify errors
Junxiao Shic5401492015-12-23 16:33:21 -070073 */
74 void
75 connect(const udp::Endpoint& remoteEndpoint,
76 ndn::nfd::FacePersistency persistency,
Eric Newberry2642cd22017-07-13 21:34:53 -040077 bool wantLpReliability,
Junxiao Shic5401492015-12-23 16:33:21 -070078 const FaceCreatedCallback& onFaceCreated,
79 const FaceCreationFailedCallback& onConnectFailed);
80
81 /**
Davide Pesavento43ff2a92017-05-18 19:50:57 -040082 * \brief Start listening
83 *
84 * Enable listening on the local endpoint, waiting for incoming datagrams,
85 * and creating a face when a datagram is received from a new remote host.
86 *
87 * Faces created in this way will have on-demand persistency.
Davide Pesavento77911cc2017-04-08 22:12:30 -040088 *
89 * \param onFaceCreated Callback to notify successful creation of a face
90 * \param onFaceCreationFailed Callback to notify errors
Giulio Grassi624f6c62014-02-18 19:42:14 +010091 */
92 void
93 listen(const FaceCreatedCallback& onFaceCreated,
Davide Pesavento77911cc2017-04-08 22:12:30 -040094 const FaceCreationFailedCallback& onFaceCreationFailed);
Giulio Grassi624f6c62014-02-18 19:42:14 +010095
Giulio Grassi624f6c62014-02-18 19:42:14 +010096private:
Junxiao Shic5401492015-12-23 16:33:21 -070097 void
98 waitForNewPeer(const FaceCreatedCallback& onFaceCreated,
99 const FaceCreationFailedCallback& onReceiveFailed);
Giulio Grassi624f6c62014-02-18 19:42:14 +0100100
101 /**
Davide Pesavento43ff2a92017-05-18 19:50:57 -0400102 * \brief The channel has received a packet from a remote
103 * endpoint not associated with any UDP face yet
Giulio Grassi624f6c62014-02-18 19:42:14 +0100104 */
105 void
Davide Pesavento6ad890a2015-03-09 03:43:17 +0100106 handleNewPeer(const boost::system::error_code& error,
107 size_t nBytesReceived,
108 const FaceCreatedCallback& onFaceCreated,
Davide Pesavento47ab0292015-11-02 18:45:39 +0100109 const FaceCreationFailedCallback& onReceiveFailed);
Giulio Grassi624f6c62014-02-18 19:42:14 +0100110
Junxiao Shicde37ad2015-12-24 01:02:05 -0700111 std::pair<bool, shared_ptr<Face>>
Davide Pesavento77911cc2017-04-08 22:12:30 -0400112 createFace(const udp::Endpoint& remoteEndpoint,
Eric Newberry2642cd22017-07-13 21:34:53 -0400113 ndn::nfd::FacePersistency persistency,
114 bool wantLpReliability);
Junxiao Shic5401492015-12-23 16:33:21 -0700115
Giulio Grassi624f6c62014-02-18 19:42:14 +0100116private:
Davide Pesavento77911cc2017-04-08 22:12:30 -0400117 const udp::Endpoint m_localEndpoint;
118 udp::Endpoint m_remoteEndpoint; ///< The latest peer that started communicating with us
119 boost::asio::ip::udp::socket m_socket; ///< Socket used to "accept" new peers
Davide Pesaventoacca18a2017-04-09 13:23:16 -0400120 std::array<uint8_t, ndn::MAX_NDN_PACKET_SIZE> m_receiveBuffer;
Davide Pesavento43ff2a92017-05-18 19:50:57 -0400121 std::map<udp::Endpoint, shared_ptr<Face>> m_channelFaces;
122 const time::nanoseconds m_idleFaceTimeout; ///< Timeout for automatic closure of idle on-demand faces
Giulio Grassi624f6c62014-02-18 19:42:14 +0100123};
124
Davide Pesavento8fd15e62017-04-06 19:58:54 -0400125} // namespace face
Giulio Grassi624f6c62014-02-18 19:42:14 +0100126} // namespace nfd
127
Alexander Afanasyev613e2a92014-04-15 13:36:58 -0700128#endif // NFD_DAEMON_FACE_UDP_CHANNEL_HPP