| /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */ |
| /** |
| * Copyright (c) 2014-2017, 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 |
| * |
| * UDP unicast is available over both IPv4 and IPv6. |
| * UDP multicast is available over IPv4 only. |
| */ |
| class UdpFactory : public ProtocolFactory |
| { |
| public: |
| /** |
| * \brief Exception of UdpFactory |
| */ |
| class Error : public ProtocolFactory::Error |
| { |
| public: |
| explicit |
| Error(const std::string& what) |
| : ProtocolFactory::Error(what) |
| { |
| } |
| }; |
| |
| static const std::string& |
| getId(); |
| |
| /** \brief process face_system.udp config section |
| */ |
| void |
| processConfig(OptionalConfigSection configSection, |
| FaceSystem::ConfigContext& context) override; |
| |
| void |
| createFace(const FaceUri& uri, |
| ndn::nfd::FacePersistency persistency, |
| bool wantLocalFieldsEnabled, |
| const FaceCreatedCallback& onCreated, |
| const FaceCreationFailedCallback& onFailure) override; |
| |
| /** |
| * \brief Create UDP-based channel using udp::Endpoint |
| * |
| * udp::Endpoint is really an alias for boost::asio::ip::udp::endpoint. |
| * |
| * If this method called twice with the same endpoint, only one channel |
| * will be created. The second call will just retrieve the existing |
| * channel. |
| * |
| * If a multicast face is already active on the same local endpoint, |
| * the creation fails and an exception is thrown |
| * |
| * Once a face is created, if it doesn't send/receive anything for |
| * a period of time equal to timeout, it will be destroyed |
| * @todo this funcionality has to be implemented |
| * |
| * \returns always a valid pointer to a UdpChannel object, an exception |
| * is thrown if it cannot be created. |
| * |
| * \throws UdpFactory::Error |
| * |
| * \see http://www.boost.org/doc/libs/1_42_0/doc/html/boost_asio/reference/ip__udp/endpoint.html |
| * for details on ways to create udp::Endpoint |
| */ |
| shared_ptr<UdpChannel> |
| createChannel(const udp::Endpoint& localEndpoint, |
| const time::seconds& timeout = time::seconds(600)); |
| |
| /** |
| * \brief Create UDP-based channel using specified IP address and port number |
| * |
| * This method is just a helper that converts a string representation of localIp and port to |
| * udp::Endpoint and calls the other createChannel overload. |
| * |
| * If localHost is a IPv6 address of a specific device, it must be in the form: |
| * ip address%interface name |
| * Example: fe80::5e96:9dff:fe7d:9c8d%en1 |
| * Otherwise, you can use :: |
| * |
| * \throws UdpChannel::Error if the bind on the socket fails |
| * \throws UdpFactory::Error |
| */ |
| shared_ptr<UdpChannel> |
| createChannel(const std::string& localIp, const std::string& localPort, |
| const time::seconds& timeout = time::seconds(600)); |
| |
| std::vector<shared_ptr<const Channel>> |
| getChannels() const override; |
| |
| /** |
| * \brief Create MulticastUdpFace using udp::Endpoint |
| * |
| * udp::Endpoint is really an alias for boost::asio::ip::udp::endpoint. |
| * |
| * The face will join the multicast group |
| * |
| * If this method called twice with the same endpoint and group, only one face |
| * will be created. The second call will just retrieve the existing |
| * channel. |
| * |
| * If an unicast face is already active on the same local NIC and port, the |
| * creation fails and an exception is thrown |
| * |
| * \param localEndpoint local endpoint |
| * \param multicastEndpoint multicast endpoint |
| * \param networkInterfaceName name of the network interface on which the face will be bound |
| * (Used only on multihomed linux machine with more than one MulticastUdpFace for |
| * the same multicast group. If specified, will requires CAP_NET_RAW capability) |
| * An empty string can be provided in other system or in linux machine with only one |
| * MulticastUdpFace per multicast group |
| * |
| * |
| * \returns always a valid pointer to a MulticastUdpFace object, an exception |
| * is thrown if it cannot be created. |
| * |
| * \throws UdpFactory::Error |
| * |
| * \see http://www.boost.org/doc/libs/1_42_0/doc/html/boost_asio/reference/ip__udp/endpoint.html |
| * for details on ways to create udp::Endpoint |
| */ |
| shared_ptr<Face> |
| createMulticastFace(const udp::Endpoint& localEndpoint, |
| const udp::Endpoint& multicastEndpoint, |
| const std::string& networkInterfaceName = ""); |
| |
| shared_ptr<Face> |
| createMulticastFace(const std::string& localIp, |
| const std::string& multicastIp, |
| const std::string& multicastPort, |
| const std::string& networkInterfaceName = ""); |
| |
| PUBLIC_WITH_TESTS_ELSE_PRIVATE: |
| void |
| prohibitEndpoint(const udp::Endpoint& endpoint); |
| |
| void |
| prohibitAllIpv4Endpoints(uint16_t port); |
| |
| void |
| prohibitAllIpv6Endpoints(uint16_t port); |
| |
| private: |
| /** |
| * \brief Look up UdpChannel using specified local endpoint |
| * |
| * \returns shared pointer to the existing UdpChannel object |
| * or nullptr when such channel does not exist |
| */ |
| shared_ptr<UdpChannel> |
| findChannel(const udp::Endpoint& localEndpoint) const; |
| |
| /** |
| * \brief Look up multicast UdpFace using specified local endpoint |
| * |
| * \returns shared pointer to the existing multicast UdpFace object |
| * or nullptr when such face does not exist |
| */ |
| shared_ptr<Face> |
| findMulticastFace(const udp::Endpoint& localEndpoint) const; |
| |
| void |
| applyMulticastConfig(const FaceSystem::ConfigContext& context); |
| |
| private: |
| std::map<udp::Endpoint, shared_ptr<UdpChannel>> m_channels; |
| |
| struct MulticastConfig |
| { |
| bool isEnabled = false; |
| udp::Endpoint group = udp::getDefaultMulticastGroup(); |
| ndn::nfd::LinkType linkType = ndn::nfd::LINK_TYPE_MULTI_ACCESS; |
| NetworkInterfacePredicate netifPredicate; |
| }; |
| |
| MulticastConfig m_mcastConfig; |
| std::map<udp::Endpoint, shared_ptr<Face>> m_mcastFaces; |
| |
| PUBLIC_WITH_TESTS_ELSE_PRIVATE: |
| std::set<udp::Endpoint> m_prohibitedEndpoints; |
| }; |
| |
| } // namespace face |
| } // namespace nfd |
| |
| #endif // NFD_DAEMON_FACE_UDP_FACTORY_HPP |