Giulio Grassi | 624f6c6 | 2014-02-18 19:42:14 +0100 | [diff] [blame] | 1 | /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */ |
| 2 | /** |
Junxiao Shi | 64d99f2 | 2017-01-21 23:06:36 +0000 | [diff] [blame] | 3 | * Copyright (c) 2014-2017, Regents of the University of California, |
Chengyu Fan | 4381fb6 | 2015-01-14 11:37:04 -0700 | [diff] [blame] | 4 | * 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 Afanasyev | 9bcbc7c | 2014-04-06 19:37:37 -0700 | [diff] [blame] | 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/>. |
Steve DiBenedetto | ef04f27 | 2014-06-04 14:28:31 -0600 | [diff] [blame] | 24 | */ |
Giulio Grassi | 624f6c6 | 2014-02-18 19:42:14 +0100 | [diff] [blame] | 25 | |
Alexander Afanasyev | 613e2a9 | 2014-04-15 13:36:58 -0700 | [diff] [blame] | 26 | #ifndef NFD_DAEMON_FACE_UDP_FACTORY_HPP |
| 27 | #define NFD_DAEMON_FACE_UDP_FACTORY_HPP |
Giulio Grassi | 624f6c6 | 2014-02-18 19:42:14 +0100 | [diff] [blame] | 28 | |
| 29 | #include "protocol-factory.hpp" |
| 30 | #include "udp-channel.hpp" |
Giulio Grassi | 624f6c6 | 2014-02-18 19:42:14 +0100 | [diff] [blame] | 31 | |
Giulio Grassi | 624f6c6 | 2014-02-18 19:42:14 +0100 | [diff] [blame] | 32 | namespace nfd { |
Junxiao Shi | 64d99f2 | 2017-01-21 23:06:36 +0000 | [diff] [blame] | 33 | namespace face { |
Giulio Grassi | 624f6c6 | 2014-02-18 19:42:14 +0100 | [diff] [blame] | 34 | |
Junxiao Shi | 64d99f2 | 2017-01-21 23:06:36 +0000 | [diff] [blame] | 35 | /** \brief protocol factory for UDP over IPv4 and IPv6 |
| 36 | * |
| 37 | * UDP unicast is available over both IPv4 and IPv6. |
| 38 | * UDP multicast is available over IPv4 only. |
| 39 | */ |
Giulio Grassi | 624f6c6 | 2014-02-18 19:42:14 +0100 | [diff] [blame] | 40 | class UdpFactory : public ProtocolFactory |
| 41 | { |
| 42 | public: |
| 43 | /** |
| 44 | * \brief Exception of UdpFactory |
| 45 | */ |
Alexander Afanasyev | 5959b01 | 2014-06-02 19:18:12 +0300 | [diff] [blame] | 46 | class Error : public ProtocolFactory::Error |
Giulio Grassi | 624f6c6 | 2014-02-18 19:42:14 +0100 | [diff] [blame] | 47 | { |
Alexander Afanasyev | 5959b01 | 2014-06-02 19:18:12 +0300 | [diff] [blame] | 48 | public: |
| 49 | explicit |
| 50 | Error(const std::string& what) |
| 51 | : ProtocolFactory::Error(what) |
| 52 | { |
| 53 | } |
Giulio Grassi | 624f6c6 | 2014-02-18 19:42:14 +0100 | [diff] [blame] | 54 | }; |
Steve DiBenedetto | ca53ac6 | 2014-03-27 19:58:40 -0600 | [diff] [blame] | 55 | |
Junxiao Shi | b47247d | 2017-01-24 15:09:16 +0000 | [diff] [blame] | 56 | static const std::string& |
| 57 | getId(); |
| 58 | |
Junxiao Shi | 64d99f2 | 2017-01-21 23:06:36 +0000 | [diff] [blame] | 59 | /** \brief process face_system.udp config section |
| 60 | */ |
| 61 | void |
| 62 | processConfig(OptionalConfigSection configSection, |
| 63 | FaceSystem::ConfigContext& context) override; |
| 64 | |
| 65 | void |
| 66 | createFace(const FaceUri& uri, |
| 67 | ndn::nfd::FacePersistency persistency, |
| 68 | bool wantLocalFieldsEnabled, |
| 69 | const FaceCreatedCallback& onCreated, |
| 70 | const FaceCreationFailedCallback& onFailure) override; |
Alexander Afanasyev | 5959b01 | 2014-06-02 19:18:12 +0300 | [diff] [blame] | 71 | |
Giulio Grassi | 624f6c6 | 2014-02-18 19:42:14 +0100 | [diff] [blame] | 72 | /** |
| 73 | * \brief Create UDP-based channel using udp::Endpoint |
| 74 | * |
| 75 | * udp::Endpoint is really an alias for boost::asio::ip::udp::endpoint. |
| 76 | * |
| 77 | * If this method called twice with the same endpoint, only one channel |
| 78 | * will be created. The second call will just retrieve the existing |
| 79 | * channel. |
| 80 | * |
| 81 | * If a multicast face is already active on the same local endpoint, |
| 82 | * the creation fails and an exception is thrown |
| 83 | * |
| 84 | * Once a face is created, if it doesn't send/receive anything for |
| 85 | * a period of time equal to timeout, it will be destroyed |
| 86 | * @todo this funcionality has to be implemented |
| 87 | * |
| 88 | * \returns always a valid pointer to a UdpChannel object, an exception |
| 89 | * is thrown if it cannot be created. |
| 90 | * |
| 91 | * \throws UdpFactory::Error |
| 92 | * |
| 93 | * \see http://www.boost.org/doc/libs/1_42_0/doc/html/boost_asio/reference/ip__udp/endpoint.html |
| 94 | * for details on ways to create udp::Endpoint |
| 95 | */ |
| 96 | shared_ptr<UdpChannel> |
| 97 | createChannel(const udp::Endpoint& localEndpoint, |
Alexander Afanasyev | 5959b01 | 2014-06-02 19:18:12 +0300 | [diff] [blame] | 98 | const time::seconds& timeout = time::seconds(600)); |
Giulio Grassi | 624f6c6 | 2014-02-18 19:42:14 +0100 | [diff] [blame] | 99 | |
| 100 | /** |
Alexander Afanasyev | 0e156df | 2015-01-26 22:33:43 -0800 | [diff] [blame] | 101 | * \brief Create UDP-based channel using specified IP address and port number |
Giulio Grassi | 624f6c6 | 2014-02-18 19:42:14 +0100 | [diff] [blame] | 102 | * |
Alexander Afanasyev | 0e156df | 2015-01-26 22:33:43 -0800 | [diff] [blame] | 103 | * This method is just a helper that converts a string representation of localIp and port to |
| 104 | * udp::Endpoint and calls the other createChannel overload. |
Giulio Grassi | 624f6c6 | 2014-02-18 19:42:14 +0100 | [diff] [blame] | 105 | * |
Steve DiBenedetto | ca53ac6 | 2014-03-27 19:58:40 -0600 | [diff] [blame] | 106 | * If localHost is a IPv6 address of a specific device, it must be in the form: |
Giulio Grassi | 624f6c6 | 2014-02-18 19:42:14 +0100 | [diff] [blame] | 107 | * ip address%interface name |
| 108 | * Example: fe80::5e96:9dff:fe7d:9c8d%en1 |
Steve DiBenedetto | ca53ac6 | 2014-03-27 19:58:40 -0600 | [diff] [blame] | 109 | * Otherwise, you can use :: |
Giulio Grassi | 624f6c6 | 2014-02-18 19:42:14 +0100 | [diff] [blame] | 110 | * |
Giulio Grassi | 624f6c6 | 2014-02-18 19:42:14 +0100 | [diff] [blame] | 111 | * \throws UdpChannel::Error if the bind on the socket fails |
| 112 | * \throws UdpFactory::Error |
| 113 | */ |
| 114 | shared_ptr<UdpChannel> |
Davide Pesavento | 1d7e7af | 2015-10-10 23:54:08 +0200 | [diff] [blame] | 115 | createChannel(const std::string& localIp, const std::string& localPort, |
Alexander Afanasyev | 5959b01 | 2014-06-02 19:18:12 +0300 | [diff] [blame] | 116 | const time::seconds& timeout = time::seconds(600)); |
Giulio Grassi | 624f6c6 | 2014-02-18 19:42:14 +0100 | [diff] [blame] | 117 | |
Junxiao Shi | 64d99f2 | 2017-01-21 23:06:36 +0000 | [diff] [blame] | 118 | std::vector<shared_ptr<const Channel>> |
| 119 | getChannels() const override; |
| 120 | |
Giulio Grassi | 624f6c6 | 2014-02-18 19:42:14 +0100 | [diff] [blame] | 121 | /** |
| 122 | * \brief Create MulticastUdpFace using udp::Endpoint |
| 123 | * |
| 124 | * udp::Endpoint is really an alias for boost::asio::ip::udp::endpoint. |
| 125 | * |
| 126 | * The face will join the multicast group |
| 127 | * |
| 128 | * If this method called twice with the same endpoint and group, only one face |
| 129 | * will be created. The second call will just retrieve the existing |
| 130 | * channel. |
| 131 | * |
| 132 | * If an unicast face is already active on the same local NIC and port, the |
| 133 | * creation fails and an exception is thrown |
| 134 | * |
Alexander Afanasyev | b755e9d | 2015-10-20 17:35:51 -0500 | [diff] [blame] | 135 | * \param localEndpoint local endpoint |
| 136 | * \param multicastEndpoint multicast endpoint |
Giulio Grassi | 6d7176d | 2014-04-16 16:08:48 +0200 | [diff] [blame] | 137 | * \param networkInterfaceName name of the network interface on which the face will be bound |
| 138 | * (Used only on multihomed linux machine with more than one MulticastUdpFace for |
| 139 | * the same multicast group. If specified, will requires CAP_NET_RAW capability) |
| 140 | * An empty string can be provided in other system or in linux machine with only one |
| 141 | * MulticastUdpFace per multicast group |
| 142 | * |
| 143 | * |
Giulio Grassi | 624f6c6 | 2014-02-18 19:42:14 +0100 | [diff] [blame] | 144 | * \returns always a valid pointer to a MulticastUdpFace object, an exception |
Steve DiBenedetto | ca53ac6 | 2014-03-27 19:58:40 -0600 | [diff] [blame] | 145 | * is thrown if it cannot be created. |
Giulio Grassi | 624f6c6 | 2014-02-18 19:42:14 +0100 | [diff] [blame] | 146 | * |
| 147 | * \throws UdpFactory::Error |
| 148 | * |
| 149 | * \see http://www.boost.org/doc/libs/1_42_0/doc/html/boost_asio/reference/ip__udp/endpoint.html |
| 150 | * for details on ways to create udp::Endpoint |
| 151 | */ |
Junxiao Shi | cde37ad | 2015-12-24 01:02:05 -0700 | [diff] [blame] | 152 | shared_ptr<Face> |
Giulio Grassi | 624f6c6 | 2014-02-18 19:42:14 +0100 | [diff] [blame] | 153 | createMulticastFace(const udp::Endpoint& localEndpoint, |
Giulio Grassi | 6d7176d | 2014-04-16 16:08:48 +0200 | [diff] [blame] | 154 | const udp::Endpoint& multicastEndpoint, |
| 155 | const std::string& networkInterfaceName = ""); |
Steve DiBenedetto | ca53ac6 | 2014-03-27 19:58:40 -0600 | [diff] [blame] | 156 | |
Junxiao Shi | cde37ad | 2015-12-24 01:02:05 -0700 | [diff] [blame] | 157 | shared_ptr<Face> |
Giulio Grassi | 624f6c6 | 2014-02-18 19:42:14 +0100 | [diff] [blame] | 158 | createMulticastFace(const std::string& localIp, |
| 159 | const std::string& multicastIp, |
Giulio Grassi | 6d7176d | 2014-04-16 16:08:48 +0200 | [diff] [blame] | 160 | const std::string& multicastPort, |
| 161 | const std::string& networkInterfaceName = ""); |
Steve DiBenedetto | ca53ac6 | 2014-03-27 19:58:40 -0600 | [diff] [blame] | 162 | |
Alexander Afanasyev | 70aaf8a | 2014-12-13 00:44:22 -0800 | [diff] [blame] | 163 | PUBLIC_WITH_TESTS_ELSE_PRIVATE: |
Steve DiBenedetto | ca53ac6 | 2014-03-27 19:58:40 -0600 | [diff] [blame] | 164 | void |
| 165 | prohibitEndpoint(const udp::Endpoint& endpoint); |
| 166 | |
| 167 | void |
Davide Pesavento | 1d7e7af | 2015-10-10 23:54:08 +0200 | [diff] [blame] | 168 | prohibitAllIpv4Endpoints(uint16_t port); |
Steve DiBenedetto | ca53ac6 | 2014-03-27 19:58:40 -0600 | [diff] [blame] | 169 | |
| 170 | void |
Davide Pesavento | 1d7e7af | 2015-10-10 23:54:08 +0200 | [diff] [blame] | 171 | prohibitAllIpv6Endpoints(uint16_t port); |
Steve DiBenedetto | ca53ac6 | 2014-03-27 19:58:40 -0600 | [diff] [blame] | 172 | |
Davide Pesavento | 1d7e7af | 2015-10-10 23:54:08 +0200 | [diff] [blame] | 173 | private: |
Giulio Grassi | 624f6c6 | 2014-02-18 19:42:14 +0100 | [diff] [blame] | 174 | /** |
| 175 | * \brief Look up UdpChannel using specified local endpoint |
| 176 | * |
| 177 | * \returns shared pointer to the existing UdpChannel object |
Davide Pesavento | 1d7e7af | 2015-10-10 23:54:08 +0200 | [diff] [blame] | 178 | * or nullptr when such channel does not exist |
Giulio Grassi | 624f6c6 | 2014-02-18 19:42:14 +0100 | [diff] [blame] | 179 | */ |
| 180 | shared_ptr<UdpChannel> |
Davide Pesavento | 1d7e7af | 2015-10-10 23:54:08 +0200 | [diff] [blame] | 181 | findChannel(const udp::Endpoint& localEndpoint) const; |
Steve DiBenedetto | ca53ac6 | 2014-03-27 19:58:40 -0600 | [diff] [blame] | 182 | |
Giulio Grassi | 624f6c6 | 2014-02-18 19:42:14 +0100 | [diff] [blame] | 183 | /** |
| 184 | * \brief Look up multicast UdpFace using specified local endpoint |
| 185 | * |
Davide Pesavento | 1d7e7af | 2015-10-10 23:54:08 +0200 | [diff] [blame] | 186 | * \returns shared pointer to the existing multicast UdpFace object |
Yukai Tu | 0a49d34 | 2015-09-13 12:54:22 +0800 | [diff] [blame] | 187 | * or nullptr when such face does not exist |
Giulio Grassi | 624f6c6 | 2014-02-18 19:42:14 +0100 | [diff] [blame] | 188 | */ |
Junxiao Shi | cde37ad | 2015-12-24 01:02:05 -0700 | [diff] [blame] | 189 | shared_ptr<Face> |
Davide Pesavento | 1d7e7af | 2015-10-10 23:54:08 +0200 | [diff] [blame] | 190 | findMulticastFace(const udp::Endpoint& localEndpoint) const; |
Steve DiBenedetto | ca53ac6 | 2014-03-27 19:58:40 -0600 | [diff] [blame] | 191 | |
Junxiao Shi | 64d99f2 | 2017-01-21 23:06:36 +0000 | [diff] [blame] | 192 | void |
| 193 | applyMulticastConfig(const FaceSystem::ConfigContext& context); |
| 194 | |
Davide Pesavento | 1d7e7af | 2015-10-10 23:54:08 +0200 | [diff] [blame] | 195 | private: |
| 196 | std::map<udp::Endpoint, shared_ptr<UdpChannel>> m_channels; |
Junxiao Shi | 64d99f2 | 2017-01-21 23:06:36 +0000 | [diff] [blame] | 197 | |
| 198 | struct MulticastConfig |
| 199 | { |
| 200 | bool isEnabled = false; |
| 201 | udp::Endpoint group = udp::getDefaultMulticastGroup(); |
Teng Liang | fe4fce3 | 2017-03-29 04:49:38 +0000 | [diff] [blame^] | 202 | ndn::nfd::LinkType linkType = ndn::nfd::LINK_TYPE_MULTI_ACCESS; |
Junxiao Shi | c31080d | 2017-01-24 15:10:12 +0000 | [diff] [blame] | 203 | NetworkInterfacePredicate netifPredicate; |
Junxiao Shi | 64d99f2 | 2017-01-21 23:06:36 +0000 | [diff] [blame] | 204 | }; |
| 205 | |
| 206 | MulticastConfig m_mcastConfig; |
| 207 | std::map<udp::Endpoint, shared_ptr<Face>> m_mcastFaces; |
Steve DiBenedetto | ca53ac6 | 2014-03-27 19:58:40 -0600 | [diff] [blame] | 208 | |
Davide Pesavento | 1d7e7af | 2015-10-10 23:54:08 +0200 | [diff] [blame] | 209 | PUBLIC_WITH_TESTS_ELSE_PRIVATE: |
Steve DiBenedetto | ca53ac6 | 2014-03-27 19:58:40 -0600 | [diff] [blame] | 210 | std::set<udp::Endpoint> m_prohibitedEndpoints; |
Giulio Grassi | 624f6c6 | 2014-02-18 19:42:14 +0100 | [diff] [blame] | 211 | }; |
| 212 | |
Junxiao Shi | 64d99f2 | 2017-01-21 23:06:36 +0000 | [diff] [blame] | 213 | } // namespace face |
Giulio Grassi | 624f6c6 | 2014-02-18 19:42:14 +0100 | [diff] [blame] | 214 | } // namespace nfd |
| 215 | |
Alexander Afanasyev | 613e2a9 | 2014-04-15 13:36:58 -0700 | [diff] [blame] | 216 | #endif // NFD_DAEMON_FACE_UDP_FACTORY_HPP |