blob: 3f7cfa1497586d14d74ac30cc0aebe95aa128b71 [file] [log] [blame]
Yukai Tu0a49d342015-09-13 12:54:22 +08001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
Davide Pesavento8215a3a2017-12-25 19:14:33 -05002/*
Davide Pesaventoc0df94e2023-10-08 19:26:55 -04003 * Copyright (c) 2014-2023, 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.
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_MULTICAST_UDP_TRANSPORT_HPP
27#define NFD_DAEMON_FACE_MULTICAST_UDP_TRANSPORT_HPP
28
29#include "datagram-transport.hpp"
30
Davide Pesaventoa9b09b62022-06-04 14:07:25 -040031#include <boost/asio/ip/udp.hpp>
Davide Pesavento8215a3a2017-12-25 19:14:33 -050032#include <ndn-cxx/net/network-interface.hpp>
33
Davide Pesaventoe422f9e2022-06-03 01:30:23 -040034namespace nfd::face {
Yukai Tu0a49d342015-09-13 12:54:22 +080035
Davide Pesaventoa3148082018-04-12 18:21:54 -040036NFD_LOG_MEMBER_DECL_SPECIALIZED((DatagramTransport<boost::asio::ip::udp, Multicast>));
37
Yukai Tu0a49d342015-09-13 12:54:22 +080038/**
Davide Pesaventoc0df94e2023-10-08 19:26:55 -040039 * \brief A Transport that communicates on a UDP multicast group.
Yukai Tu0a49d342015-09-13 12:54:22 +080040 */
Davide Pesaventob84bd3a2016-04-22 02:21:45 +020041class MulticastUdpTransport final : public DatagramTransport<boost::asio::ip::udp, Multicast>
Yukai Tu0a49d342015-09-13 12:54:22 +080042{
43public:
Davide Pesavento8215a3a2017-12-25 19:14:33 -050044 class Error : public std::runtime_error
45 {
46 public:
Davide Pesaventob3a23ca2019-05-04 20:40:21 -040047 using std::runtime_error::runtime_error;
Davide Pesavento8215a3a2017-12-25 19:14:33 -050048 };
49
Yukai Tu0a49d342015-09-13 12:54:22 +080050 /**
Davide Pesaventoc0df94e2023-10-08 19:26:55 -040051 * \brief Creates a UDP-based transport for multicast communication.
Alexander Afanasyevb755e9d2015-10-20 17:35:51 -050052 * \param multicastGroup multicast group
Md Ashiqur Rahman8ce09032018-01-14 22:43:13 -050053 * \param recvSocket socket used to receive multicast packets
Alexander Afanasyevb755e9d2015-10-20 17:35:51 -050054 * \param sendSocket socket used to send to the multicast group
Md Ashiqur Rahman8ce09032018-01-14 22:43:13 -050055 * \param linkType either `ndn::nfd::LINK_TYPE_MULTI_ACCESS` or `ndn::nfd::LINK_TYPE_AD_HOC`
Yukai Tu0a49d342015-09-13 12:54:22 +080056 */
Davide Pesaventoc0df94e2023-10-08 19:26:55 -040057 MulticastUdpTransport(const boost::asio::ip::udp::endpoint& multicastGroup,
58 boost::asio::ip::udp::socket&& recvSocket,
59 boost::asio::ip::udp::socket&& sendSocket,
Teng Liangfe4fce32017-03-29 04:49:38 +000060 ndn::nfd::LinkType linkType);
Davide Pesavento8728a252015-11-06 04:01:22 +010061
Eric Newberryb49313d2017-12-24 20:22:27 -070062 ssize_t
63 getSendQueueLength() final;
64
Davide Pesavento279af1c2022-08-29 20:18:32 -040065 /**
Davide Pesaventoc0df94e2023-10-08 19:26:55 -040066 * \brief Opens and configures the receive-side socket.
Davide Pesavento279af1c2022-08-29 20:18:32 -040067 */
Davide Pesavento8215a3a2017-12-25 19:14:33 -050068 static void
Davide Pesaventoc0df94e2023-10-08 19:26:55 -040069 openRxSocket(boost::asio::ip::udp::socket& sock,
70 const boost::asio::ip::udp::endpoint& multicastGroup,
Davide Pesavento279af1c2022-08-29 20:18:32 -040071 const boost::asio::ip::address& localAddress = {},
72 const ndn::net::NetworkInterface* netif = nullptr);
Davide Pesavento8215a3a2017-12-25 19:14:33 -050073
Davide Pesavento279af1c2022-08-29 20:18:32 -040074 /**
Davide Pesaventoc0df94e2023-10-08 19:26:55 -040075 * \brief Opens and configures the transmit-side socket.
Davide Pesavento279af1c2022-08-29 20:18:32 -040076 */
Davide Pesavento8215a3a2017-12-25 19:14:33 -050077 static void
Davide Pesaventoc0df94e2023-10-08 19:26:55 -040078 openTxSocket(boost::asio::ip::udp::socket& sock,
79 const boost::asio::ip::udp::endpoint& localEndpoint,
Davide Pesavento279af1c2022-08-29 20:18:32 -040080 const ndn::net::NetworkInterface* netif = nullptr,
Davide Pesavento8215a3a2017-12-25 19:14:33 -050081 bool enableLoopback = false);
82
Yukai Tu0a49d342015-09-13 12:54:22 +080083private:
Yanbiao Li32dab972016-11-27 12:26:09 +080084 void
Teng Liang13d582a2020-07-21 20:23:11 -070085 doSend(const Block& packet) final;
Yukai Tu0a49d342015-09-13 12:54:22 +080086
Yanbiao Li32dab972016-11-27 12:26:09 +080087 void
Davide Pesaventob84bd3a2016-04-22 02:21:45 +020088 doClose() final;
Yukai Tu0a49d342015-09-13 12:54:22 +080089
90private:
Davide Pesaventoc0df94e2023-10-08 19:26:55 -040091 boost::asio::ip::udp::endpoint m_multicastGroup;
92 boost::asio::ip::udp::socket m_sendSocket;
Yukai Tu0a49d342015-09-13 12:54:22 +080093};
94
Davide Pesaventoe422f9e2022-06-03 01:30:23 -040095} // namespace nfd::face
Yukai Tu0a49d342015-09-13 12:54:22 +080096
97#endif // NFD_DAEMON_FACE_MULTICAST_UDP_TRANSPORT_HPP