blob: fa146adcf132e055bad7e288f995f2105d587327 [file] [log] [blame]
Giulio Grassi624f6c62014-02-18 19:42:14 +01001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2/**
Alexander Afanasyev9bcbc7c2014-04-06 19:37:37 -07003 * Copyright (c) 2014 Regents of the University of California,
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 *
10 * This file is part of NFD (Named Data Networking Forwarding Daemon).
11 * See AUTHORS.md for complete list of NFD authors and contributors.
12 *
13 * NFD is free software: you can redistribute it and/or modify it under the terms
14 * of the GNU General Public License as published by the Free Software Foundation,
15 * either version 3 of the License, or (at your option) any later version.
16 *
17 * NFD is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
18 * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
19 * PURPOSE. See the GNU General Public License for more details.
20 *
21 * You should have received a copy of the GNU General Public License along with
22 * NFD, e.g., in COPYING.md file. If not, see <http://www.gnu.org/licenses/>.
23 **/
Giulio Grassi624f6c62014-02-18 19:42:14 +010024
Alexander Afanasyev613e2a92014-04-15 13:36:58 -070025#ifndef NFD_DAEMON_FACE_UDP_FACTORY_HPP
26#define NFD_DAEMON_FACE_UDP_FACTORY_HPP
Giulio Grassi624f6c62014-02-18 19:42:14 +010027
28#include "protocol-factory.hpp"
29#include "udp-channel.hpp"
30#include "multicast-udp-face.hpp"
31
32
33namespace nfd {
34
35// @todo The multicast support for ipv6 must be implemented
36
37class UdpFactory : public ProtocolFactory
38{
39public:
40 /**
41 * \brief Exception of UdpFactory
42 */
43 struct Error : public ProtocolFactory::Error
44 {
45 Error(const std::string& what) : ProtocolFactory::Error(what) {}
46 };
Steve DiBenedettoca53ac62014-03-27 19:58:40 -060047
Giulio Grassi624f6c62014-02-18 19:42:14 +010048 explicit
49 UdpFactory(const std::string& defaultPort = "6363");
50
51 /**
52 * \brief Create UDP-based channel using udp::Endpoint
53 *
54 * udp::Endpoint is really an alias for boost::asio::ip::udp::endpoint.
55 *
56 * If this method called twice with the same endpoint, only one channel
57 * will be created. The second call will just retrieve the existing
58 * channel.
59 *
60 * If a multicast face is already active on the same local endpoint,
61 * the creation fails and an exception is thrown
62 *
63 * Once a face is created, if it doesn't send/receive anything for
64 * a period of time equal to timeout, it will be destroyed
65 * @todo this funcionality has to be implemented
66 *
67 * \returns always a valid pointer to a UdpChannel object, an exception
68 * is thrown if it cannot be created.
69 *
70 * \throws UdpFactory::Error
71 *
72 * \see http://www.boost.org/doc/libs/1_42_0/doc/html/boost_asio/reference/ip__udp/endpoint.html
73 * for details on ways to create udp::Endpoint
74 */
75 shared_ptr<UdpChannel>
76 createChannel(const udp::Endpoint& localEndpoint,
Alexander Afanasyeveb3197f2014-03-17 19:28:18 -070077 const time::seconds& timeout = time::seconds(600));
Giulio Grassi624f6c62014-02-18 19:42:14 +010078
79 /**
80 * \brief Create UDP-based channel using specified host and port number
81 *
82 * This method will attempt to resolve the provided host and port numbers
83 * and will throw UdpFactory::Error when channel cannot be created.
84 *
85 * Note that this call will **BLOCK** until resolution is done or failed.
86 *
Steve DiBenedettoca53ac62014-03-27 19:58:40 -060087 * If localHost is a IPv6 address of a specific device, it must be in the form:
Giulio Grassi624f6c62014-02-18 19:42:14 +010088 * ip address%interface name
89 * Example: fe80::5e96:9dff:fe7d:9c8d%en1
Steve DiBenedettoca53ac62014-03-27 19:58:40 -060090 * Otherwise, you can use ::
Giulio Grassi624f6c62014-02-18 19:42:14 +010091 *
92 * Once a face is created, if it doesn't send/receive anything for
93 * a period of time equal to timeout, it will be destroyed
94 * @todo this funcionality has to be implemented
95 *
96 * \throws UdpChannel::Error if the bind on the socket fails
97 * \throws UdpFactory::Error
98 */
99 shared_ptr<UdpChannel>
100 createChannel(const std::string& localHost,
101 const std::string& localPort,
Alexander Afanasyeveb3197f2014-03-17 19:28:18 -0700102 const time::seconds& timeout = time::seconds(600));
Giulio Grassi624f6c62014-02-18 19:42:14 +0100103
104 /**
105 * \brief Create MulticastUdpFace using udp::Endpoint
106 *
107 * udp::Endpoint is really an alias for boost::asio::ip::udp::endpoint.
108 *
109 * The face will join the multicast group
110 *
111 * If this method called twice with the same endpoint and group, only one face
112 * will be created. The second call will just retrieve the existing
113 * channel.
114 *
115 * If an unicast face is already active on the same local NIC and port, the
116 * creation fails and an exception is thrown
117 *
Giulio Grassi6d7176d2014-04-16 16:08:48 +0200118 * \param networkInterfaceName name of the network interface on which the face will be bound
119 * (Used only on multihomed linux machine with more than one MulticastUdpFace for
120 * the same multicast group. If specified, will requires CAP_NET_RAW capability)
121 * An empty string can be provided in other system or in linux machine with only one
122 * MulticastUdpFace per multicast group
123 *
124 *
Giulio Grassi624f6c62014-02-18 19:42:14 +0100125 * \returns always a valid pointer to a MulticastUdpFace object, an exception
Steve DiBenedettoca53ac62014-03-27 19:58:40 -0600126 * is thrown if it cannot be created.
Giulio Grassi624f6c62014-02-18 19:42:14 +0100127 *
128 * \throws UdpFactory::Error
129 *
130 * \see http://www.boost.org/doc/libs/1_42_0/doc/html/boost_asio/reference/ip__udp/endpoint.html
131 * for details on ways to create udp::Endpoint
132 */
133 shared_ptr<MulticastUdpFace>
134 createMulticastFace(const udp::Endpoint& localEndpoint,
Giulio Grassi6d7176d2014-04-16 16:08:48 +0200135 const udp::Endpoint& multicastEndpoint,
136 const std::string& networkInterfaceName = "");
Steve DiBenedettoca53ac62014-03-27 19:58:40 -0600137
Giulio Grassi624f6c62014-02-18 19:42:14 +0100138 shared_ptr<MulticastUdpFace>
139 createMulticastFace(const std::string& localIp,
140 const std::string& multicastIp,
Giulio Grassi6d7176d2014-04-16 16:08:48 +0200141 const std::string& multicastPort,
142 const std::string& networkInterfaceName = "");
Steve DiBenedettoca53ac62014-03-27 19:58:40 -0600143
Giulio Grassi624f6c62014-02-18 19:42:14 +0100144 // from Factory
145 virtual void
146 createFace(const FaceUri& uri,
147 const FaceCreatedCallback& onCreated,
148 const FaceConnectFailedCallback& onConnectFailed);
149
150protected:
151 typedef std::map< udp::Endpoint, shared_ptr<MulticastUdpFace> > MulticastFaceMap;
152
153 /**
154 * \brief Keeps tracking of the MulticastUdpFace created
155 */
156 MulticastFaceMap m_multicastFaces;
157
158private:
Steve DiBenedettoca53ac62014-03-27 19:58:40 -0600159
160 void
161 prohibitEndpoint(const udp::Endpoint& endpoint);
162
163 void
164 prohibitAllIpv4Endpoints(const uint16_t port);
165
166 void
167 prohibitAllIpv6Endpoints(const uint16_t port);
168
Giulio Grassi624f6c62014-02-18 19:42:14 +0100169 void
170 afterFaceFailed(udp::Endpoint& endpoint);
Steve DiBenedettoca53ac62014-03-27 19:58:40 -0600171
Giulio Grassi624f6c62014-02-18 19:42:14 +0100172 /**
173 * \brief Look up UdpChannel using specified local endpoint
174 *
175 * \returns shared pointer to the existing UdpChannel object
176 * or empty shared pointer when such channel does not exist
177 *
178 * \throws never
179 */
180 shared_ptr<UdpChannel>
181 findChannel(const udp::Endpoint& localEndpoint);
Steve DiBenedettoca53ac62014-03-27 19:58:40 -0600182
183
Giulio Grassi624f6c62014-02-18 19:42:14 +0100184 /**
185 * \brief Look up multicast UdpFace using specified local endpoint
186 *
187 * \returns shared pointer to the existing multicast MulticastUdpFace object
188 * or empty shared pointer when such face does not exist
189 *
190 * \throws never
191 */
192 shared_ptr<MulticastUdpFace>
193 findMulticastFace(const udp::Endpoint& localEndpoint);
Steve DiBenedettoca53ac62014-03-27 19:58:40 -0600194
Giulio Grassi624f6c62014-02-18 19:42:14 +0100195 void
196 continueCreateFaceAfterResolve(const udp::Endpoint& endpoint,
197 const FaceCreatedCallback& onCreated,
198 const FaceConnectFailedCallback& onConnectFailed);
Steve DiBenedettoca53ac62014-03-27 19:58:40 -0600199
Giulio Grassi624f6c62014-02-18 19:42:14 +0100200 typedef std::map< udp::Endpoint, shared_ptr<UdpChannel> > ChannelMap;
201 ChannelMap m_channels;
Steve DiBenedettoca53ac62014-03-27 19:58:40 -0600202
Giulio Grassi624f6c62014-02-18 19:42:14 +0100203 std::string m_defaultPort;
Steve DiBenedettoca53ac62014-03-27 19:58:40 -0600204
205 std::set<udp::Endpoint> m_prohibitedEndpoints;
Giulio Grassi624f6c62014-02-18 19:42:14 +0100206};
207
208} // namespace nfd
209
Alexander Afanasyev613e2a92014-04-15 13:36:58 -0700210#endif // NFD_DAEMON_FACE_UDP_FACTORY_HPP