blob: a57cb25eb6d0a7e5c77797fe61722e2aaac9a769 [file] [log] [blame]
/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
/*
* Copyright (c) 2014-2018, Regents of the University of California,
* Arizona Board of Regents,
* Colorado State University,
* University Pierre & Marie Curie, Sorbonne University,
* Washington University in St. Louis,
* Beijing Institute of Technology,
* The University of Memphis.
*
* This file is part of NFD (Named Data Networking Forwarding Daemon).
* See AUTHORS.md for complete list of NFD authors and contributors.
*
* NFD is free software: you can redistribute it and/or modify it under the terms
* of the GNU General Public License as published by the Free Software Foundation,
* either version 3 of the License, or (at your option) any later version.
*
* NFD is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
* without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
* PURPOSE. See the GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License along with
* NFD, e.g., in COPYING.md file. If not, see <http://www.gnu.org/licenses/>.
*/
#ifndef NFD_DAEMON_FACE_UDP_FACTORY_HPP
#define NFD_DAEMON_FACE_UDP_FACTORY_HPP
#include "protocol-factory.hpp"
#include "udp-channel.hpp"
namespace nfd {
namespace face {
/** \brief Protocol factory for UDP over IPv4 and IPv6
*/
class UdpFactory : public ProtocolFactory
{
public:
class Error : public ProtocolFactory::Error
{
public:
using ProtocolFactory::Error::Error;
};
static const std::string&
getId() noexcept;
explicit
UdpFactory(const CtorParams& params);
/**
* \brief Create UDP-based channel using udp::Endpoint
*
* udp::Endpoint is really an alias for boost::asio::ip::udp::endpoint.
*
* If this method is called twice with the same endpoint, only one channel
* will be created. The second call will just return the existing channel.
*
* If a multicast face is already active on the same local endpoint,
* the creation fails and an exception is thrown.
*
* \return always a valid pointer to a UdpChannel object, an exception
* is thrown if it cannot be created.
* \throw UdpFactory::Error
*/
shared_ptr<UdpChannel>
createChannel(const udp::Endpoint& localEndpoint,
time::nanoseconds idleTimeout);
/**
* \brief Create a multicast UDP face
*
* udp::Endpoint is really an alias for boost::asio::ip::udp::endpoint.
*
* The face will join the specified multicast group.
*
* If this method is called twice with the same set of arguments, only one
* face will be created. The second call will just return the existing face.
*
* If a UDP channel, unicast face, or multicast face already exists on the
* same combination of local address and multicast port, the creation fails
* and an exception is thrown.
*
* \param netif the network interface to which the face will be bound
* \param localAddress the local IP address to which the face will be bound
* \param multicastEndpoint the multicast endpoint (multicast group and port number)
*
* \return always a valid shared pointer to the created face;
* an exception is thrown if the face cannot be created.
* \throw UdpFactory::Error
*/
shared_ptr<Face>
createMulticastFace(const shared_ptr<const ndn::net::NetworkInterface>& netif,
const boost::asio::ip::address& localAddress,
const udp::Endpoint& multicastEndpoint);
private:
/** \brief process face_system.udp config section
*/
void
doProcessConfig(OptionalConfigSection configSection,
FaceSystem::ConfigContext& context) override;
void
doCreateFace(const CreateFaceRequest& req,
const FaceCreatedCallback& onCreated,
const FaceCreationFailedCallback& onFailure) override;
std::vector<shared_ptr<const Channel>>
doGetChannels() const override;
/** \brief Create UDP multicast faces on \p netif if needed by \p m_mcastConfig
* \return list of faces (just created or already existing) on \p netif
*/
std::vector<shared_ptr<Face>>
applyMcastConfigToNetif(const shared_ptr<const ndn::net::NetworkInterface>& netif);
/** \brief Create and destroy UDP multicast faces according to \p m_mcastConfig
*/
void
applyMcastConfig(const FaceSystem::ConfigContext& context);
private:
bool m_wantCongestionMarking = false;
std::map<udp::Endpoint, shared_ptr<UdpChannel>> m_channels;
struct MulticastConfig
{
bool isEnabled = false;
udp::Endpoint group = udp::getDefaultMulticastGroup();
udp::Endpoint groupV6 = udp::getDefaultMulticastGroupV6();
ndn::nfd::LinkType linkType = ndn::nfd::LINK_TYPE_MULTI_ACCESS;
NetworkInterfacePredicate netifPredicate;
};
MulticastConfig m_mcastConfig;
std::map<udp::Endpoint, shared_ptr<Face>> m_mcastFaces;
signal::ScopedConnection m_netifAddConn;
struct NetifConns
{
signal::ScopedConnection addrAddConn;
};
std::map<int, NetifConns> m_netifConns; // ifindex => signal connections
};
} // namespace face
} // namespace nfd
#endif // NFD_DAEMON_FACE_UDP_FACTORY_HPP