blob: ca697e793746cd778b4924dc2b202f41469e5911 [file] [log] [blame]
Giulio Grassi624f6c62014-02-18 19:42:14 +01001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
Junxiao Shi0ba6d642017-07-17 00:53:22 +00002/*
Davide Pesaventoc5a9f812023-10-17 18:01:52 -04003 * Copyright (c) 2014-2023, Regents of the University of California,
Chengyu Fan4381fb62015-01-14 11:37:04 -07004 * 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/>.
Steve DiBenedettoef04f272014-06-04 14:28:31 -060024 */
Giulio Grassi624f6c62014-02-18 19:42:14 +010025
Alexander Afanasyev613e2a92014-04-15 13:36:58 -070026#ifndef NFD_DAEMON_FACE_UDP_FACTORY_HPP
27#define NFD_DAEMON_FACE_UDP_FACTORY_HPP
Giulio Grassi624f6c62014-02-18 19:42:14 +010028
29#include "protocol-factory.hpp"
Davide Pesaventoc5a9f812023-10-17 18:01:52 -040030#include "network-predicate.hpp"
Giulio Grassi624f6c62014-02-18 19:42:14 +010031#include "udp-channel.hpp"
Giulio Grassi624f6c62014-02-18 19:42:14 +010032
Davide Pesaventoe422f9e2022-06-03 01:30:23 -040033namespace nfd::face {
Giulio Grassi624f6c62014-02-18 19:42:14 +010034
Davide Pesaventoc5a9f812023-10-17 18:01:52 -040035/**
36 * \brief Protocol factory for UDP over IPv4 and IPv6.
Junxiao Shi64d99f22017-01-21 23:06:36 +000037 */
Davide Pesavento3db98072021-03-09 23:03:27 -050038class UdpFactory final : public ProtocolFactory
Giulio Grassi624f6c62014-02-18 19:42:14 +010039{
40public:
Alexander Afanasyev5959b012014-06-02 19:18:12 +030041 class Error : public ProtocolFactory::Error
Giulio Grassi624f6c62014-02-18 19:42:14 +010042 {
Alexander Afanasyev5959b012014-06-02 19:18:12 +030043 public:
Davide Pesaventod27841b2018-11-13 00:22:24 -050044 using ProtocolFactory::Error::Error;
Giulio Grassi624f6c62014-02-18 19:42:14 +010045 };
Steve DiBenedettoca53ac62014-03-27 19:58:40 -060046
Junxiao Shib47247d2017-01-24 15:09:16 +000047 static const std::string&
Davide Pesaventod27841b2018-11-13 00:22:24 -050048 getId() noexcept;
Junxiao Shib47247d2017-01-24 15:09:16 +000049
Junxiao Shi0ba6d642017-07-17 00:53:22 +000050 explicit
51 UdpFactory(const CtorParams& params);
52
Giulio Grassi624f6c62014-02-18 19:42:14 +010053 /**
Davide Pesaventoaa9e3b22022-10-21 17:00:07 -040054 * \brief Create UDP-based channel using udp::Endpoint.
Giulio Grassi624f6c62014-02-18 19:42:14 +010055 *
Davide Pesaventoc5a9f812023-10-17 18:01:52 -040056 * udp::Endpoint is an alias for boost::asio::ip::udp::endpoint.
Giulio Grassi624f6c62014-02-18 19:42:14 +010057 *
Davide Pesavento46afec42017-05-28 14:28:47 -040058 * If this method is called twice with the same endpoint, only one channel
59 * will be created. The second call will just return the existing channel.
Giulio Grassi624f6c62014-02-18 19:42:14 +010060 *
61 * If a multicast face is already active on the same local endpoint,
Davide Pesavento46afec42017-05-28 14:28:47 -040062 * the creation fails and an exception is thrown.
Giulio Grassi624f6c62014-02-18 19:42:14 +010063 *
Davide Pesaventoc5a9f812023-10-17 18:01:52 -040064 * \return Always a valid pointer to a UdpChannel object, an exception
Davide Pesavento46afec42017-05-28 14:28:47 -040065 * is thrown if it cannot be created.
66 * \throw UdpFactory::Error
Giulio Grassi624f6c62014-02-18 19:42:14 +010067 */
68 shared_ptr<UdpChannel>
69 createChannel(const udp::Endpoint& localEndpoint,
Davide Pesavento46afec42017-05-28 14:28:47 -040070 time::nanoseconds idleTimeout);
Giulio Grassi624f6c62014-02-18 19:42:14 +010071
Giulio Grassi624f6c62014-02-18 19:42:14 +010072 /**
Davide Pesaventoaa9e3b22022-10-21 17:00:07 -040073 * \brief Create a multicast UDP face.
Giulio Grassi624f6c62014-02-18 19:42:14 +010074 *
Davide Pesaventoc5a9f812023-10-17 18:01:52 -040075 * udp::Endpoint is an alias for boost::asio::ip::udp::endpoint.
Giulio Grassi624f6c62014-02-18 19:42:14 +010076 *
Davide Pesavento46afec42017-05-28 14:28:47 -040077 * The face will join the specified multicast group.
Giulio Grassi624f6c62014-02-18 19:42:14 +010078 *
Md Ashiqur Rahman8ce09032018-01-14 22:43:13 -050079 * If this method is called twice with the same set of arguments, only one
Davide Pesavento46afec42017-05-28 14:28:47 -040080 * face will be created. The second call will just return the existing face.
Giulio Grassi624f6c62014-02-18 19:42:14 +010081 *
Davide Pesaventobb734df2017-10-24 18:05:36 -040082 * If a UDP channel, unicast face, or multicast face already exists on the
Md Ashiqur Rahman8ce09032018-01-14 22:43:13 -050083 * same combination of local address and multicast port, the creation fails
84 * and an exception is thrown.
Giulio Grassi624f6c62014-02-18 19:42:14 +010085 *
Davide Pesaventobb734df2017-10-24 18:05:36 -040086 * \param netif the network interface to which the face will be bound
Md Ashiqur Rahman8ce09032018-01-14 22:43:13 -050087 * \param localAddress the local IP address to which the face will be bound
88 * \param multicastEndpoint the multicast endpoint (multicast group and port number)
Giulio Grassi6d7176d2014-04-16 16:08:48 +020089 *
Davide Pesaventoc5a9f812023-10-17 18:01:52 -040090 * \return Always a valid shared pointer to the created face;
Davide Pesaventobb734df2017-10-24 18:05:36 -040091 * an exception is thrown if the face cannot be created.
Davide Pesaventoc5a9f812023-10-17 18:01:52 -040092 * \throw std::runtime_error %Face creation failed
Giulio Grassi624f6c62014-02-18 19:42:14 +010093 */
Junxiao Shicde37ad2015-12-24 01:02:05 -070094 shared_ptr<Face>
Davide Pesavento279af1c2022-08-29 20:18:32 -040095 createMulticastFace(const ndn::net::NetworkInterface& netif,
Md Ashiqur Rahman8ce09032018-01-14 22:43:13 -050096 const boost::asio::ip::address& localAddress,
97 const udp::Endpoint& multicastEndpoint);
Steve DiBenedettoca53ac62014-03-27 19:58:40 -060098
Davide Pesavento1d7e7af2015-10-10 23:54:08 +020099private:
Davide Pesaventod27841b2018-11-13 00:22:24 -0500100 void
101 doProcessConfig(OptionalConfigSection configSection,
Davide Pesavento3db98072021-03-09 23:03:27 -0500102 FaceSystem::ConfigContext& context) final;
Davide Pesaventod27841b2018-11-13 00:22:24 -0500103
104 void
105 doCreateFace(const CreateFaceRequest& req,
106 const FaceCreatedCallback& onCreated,
Davide Pesavento3db98072021-03-09 23:03:27 -0500107 const FaceCreationFailedCallback& onFailure) final;
Davide Pesaventod27841b2018-11-13 00:22:24 -0500108
109 std::vector<shared_ptr<const Channel>>
Davide Pesavento3db98072021-03-09 23:03:27 -0500110 doGetChannels() const final;
Davide Pesaventod27841b2018-11-13 00:22:24 -0500111
Davide Pesaventoc5a9f812023-10-17 18:01:52 -0400112 /**
113 * \brief Create UDP multicast faces on \p netif if needed by \p m_mcastConfig.
114 * \return List of faces (just created or already existing) on \p netif.
Junxiao Shibbace1d2017-08-06 20:03:37 +0000115 */
Md Ashiqur Rahman8ce09032018-01-14 22:43:13 -0500116 std::vector<shared_ptr<Face>>
Junxiao Shibbace1d2017-08-06 20:03:37 +0000117 applyMcastConfigToNetif(const shared_ptr<const ndn::net::NetworkInterface>& netif);
118
Davide Pesaventoc5a9f812023-10-17 18:01:52 -0400119 /**
120 * \brief Create and destroy UDP multicast faces according to \p m_mcastConfig.
Junxiao Shibbace1d2017-08-06 20:03:37 +0000121 */
Junxiao Shi64d99f22017-01-21 23:06:36 +0000122 void
Junxiao Shibbace1d2017-08-06 20:03:37 +0000123 applyMcastConfig(const FaceSystem::ConfigContext& context);
Junxiao Shi64d99f22017-01-21 23:06:36 +0000124
Davide Pesavento1d7e7af2015-10-10 23:54:08 +0200125private:
Davide Pesaventod5e89e82018-02-07 21:40:21 -0500126 bool m_wantCongestionMarking = false;
Junxiao Shia6286a92021-02-23 06:43:52 -0700127 size_t m_defaultUnicastMtu = ndn::MAX_NDN_PACKET_SIZE;
Davide Pesavento1d7e7af2015-10-10 23:54:08 +0200128 std::map<udp::Endpoint, shared_ptr<UdpChannel>> m_channels;
Junxiao Shi64d99f22017-01-21 23:06:36 +0000129
130 struct MulticastConfig
131 {
132 bool isEnabled = false;
133 udp::Endpoint group = udp::getDefaultMulticastGroup();
Md Ashiqur Rahman8ce09032018-01-14 22:43:13 -0500134 udp::Endpoint groupV6 = udp::getDefaultMulticastGroupV6();
Teng Liangfe4fce32017-03-29 04:49:38 +0000135 ndn::nfd::LinkType linkType = ndn::nfd::LINK_TYPE_MULTI_ACCESS;
Junxiao Shic31080d2017-01-24 15:10:12 +0000136 NetworkInterfacePredicate netifPredicate;
Junxiao Shi64d99f22017-01-21 23:06:36 +0000137 };
Junxiao Shi64d99f22017-01-21 23:06:36 +0000138 MulticastConfig m_mcastConfig;
139 std::map<udp::Endpoint, shared_ptr<Face>> m_mcastFaces;
Junxiao Shibbace1d2017-08-06 20:03:37 +0000140
141 signal::ScopedConnection m_netifAddConn;
142 struct NetifConns
143 {
144 signal::ScopedConnection addrAddConn;
145 };
146 std::map<int, NetifConns> m_netifConns; // ifindex => signal connections
Giulio Grassi624f6c62014-02-18 19:42:14 +0100147};
148
Davide Pesaventoe422f9e2022-06-03 01:30:23 -0400149} // namespace nfd::face
Giulio Grassi624f6c62014-02-18 19:42:14 +0100150
Alexander Afanasyev613e2a92014-04-15 13:36:58 -0700151#endif // NFD_DAEMON_FACE_UDP_FACTORY_HPP