blob: e97e9bb9efe92b3fb4e94cdd03c292777cda9c86 [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
25#include "udp-factory.hpp"
26#include "core/global-io.hpp"
27#include "core/resolver.hpp"
Steve DiBenedettoca53ac62014-03-27 19:58:40 -060028#include "core/network-interface.hpp"
Giulio Grassi624f6c62014-02-18 19:42:14 +010029
Giulio Grassi6d7176d2014-04-16 16:08:48 +020030#if defined(__linux__)
31#include <sys/socket.h>
32#endif
33
Giulio Grassi624f6c62014-02-18 19:42:14 +010034namespace nfd {
35
36using namespace boost::asio;
Junxiao Shi79494162014-04-02 18:25:11 -070037
Giulio Grassi624f6c62014-02-18 19:42:14 +010038NFD_LOG_INIT("UdpFactory");
39
40UdpFactory::UdpFactory(const std::string& defaultPort/* = "6363"*/)
41 : m_defaultPort(defaultPort)
42{
43}
44
Steve DiBenedettoca53ac62014-03-27 19:58:40 -060045
46
47void
48UdpFactory::prohibitEndpoint(const udp::Endpoint& endpoint)
49{
50 using namespace boost::asio::ip;
51
52 static const address_v4 ALL_V4_ENDPOINT(address_v4::from_string("0.0.0.0"));
53 static const address_v6 ALL_V6_ENDPOINT(address_v6::from_string("::"));
54
55 const address& address = endpoint.address();
56
57 if (address.is_v4() && address == ALL_V4_ENDPOINT)
58 {
59 prohibitAllIpv4Endpoints(endpoint.port());
60 }
61 else if (endpoint.address().is_v6() && address == ALL_V6_ENDPOINT)
62 {
63 prohibitAllIpv6Endpoints(endpoint.port());
64 }
65
66 NFD_LOG_TRACE("prohibiting UDP " <<
67 endpoint.address().to_string() << ":" << endpoint.port());
68
69 m_prohibitedEndpoints.insert(endpoint);
70}
71
72void
73UdpFactory::prohibitAllIpv4Endpoints(const uint16_t port)
74{
75 using namespace boost::asio::ip;
76
77 static const address_v4 INVALID_BROADCAST(address_v4::from_string("0.0.0.0"));
78
79 const std::list<shared_ptr<NetworkInterfaceInfo> > nicList(listNetworkInterfaces());
80
81 for (std::list<shared_ptr<NetworkInterfaceInfo> >::const_iterator i = nicList.begin();
82 i != nicList.end();
83 ++i)
84 {
85 const shared_ptr<NetworkInterfaceInfo>& nic = *i;
86 const std::vector<address_v4>& ipv4Addresses = nic->ipv4Addresses;
87
88 for (std::vector<address_v4>::const_iterator j = ipv4Addresses.begin();
89 j != ipv4Addresses.end();
90 ++j)
91 {
92 prohibitEndpoint(udp::Endpoint(*j, port));
93 }
94
95 if (nic->isBroadcastCapable() && nic->broadcastAddress != INVALID_BROADCAST)
96 {
97 NFD_LOG_TRACE("prohibiting broadcast address: " << nic->broadcastAddress.to_string());
98 prohibitEndpoint(udp::Endpoint(nic->broadcastAddress, port));
99 }
100 }
101
102 prohibitEndpoint(udp::Endpoint(address::from_string("255.255.255.255"), port));
103}
104
105void
106UdpFactory::prohibitAllIpv6Endpoints(const uint16_t port)
107{
108 using namespace boost::asio::ip;
109
110 const std::list<shared_ptr<NetworkInterfaceInfo> > nicList(listNetworkInterfaces());
111
112 for (std::list<shared_ptr<NetworkInterfaceInfo> >::const_iterator i = nicList.begin();
113 i != nicList.end();
114 ++i)
115 {
116 const shared_ptr<NetworkInterfaceInfo>& nic = *i;
117 const std::vector<address_v6>& ipv6Addresses = nic->ipv6Addresses;
118
119 for (std::vector<address_v6>::const_iterator j = ipv6Addresses.begin();
120 j != ipv6Addresses.end();
121 ++j)
122 {
123 prohibitEndpoint(udp::Endpoint(*j, port));
124 }
125 }
126}
127
Giulio Grassi624f6c62014-02-18 19:42:14 +0100128shared_ptr<UdpChannel>
129UdpFactory::createChannel(const udp::Endpoint& endpoint,
Alexander Afanasyeveb3197f2014-03-17 19:28:18 -0700130 const time::seconds& timeout)
Giulio Grassi624f6c62014-02-18 19:42:14 +0100131{
132 NFD_LOG_DEBUG("Creating unicast " << endpoint);
Junxiao Shi79494162014-04-02 18:25:11 -0700133
Giulio Grassi624f6c62014-02-18 19:42:14 +0100134 shared_ptr<UdpChannel> channel = findChannel(endpoint);
135 if (static_cast<bool>(channel))
136 return channel;
137
Junxiao Shi79494162014-04-02 18:25:11 -0700138
139 //checking if the endpoint is already in use for multicast face
Giulio Grassi624f6c62014-02-18 19:42:14 +0100140 shared_ptr<MulticastUdpFace> multicast = findMulticastFace(endpoint);
141 if (static_cast<bool>(multicast))
142 throw Error("Cannot create the requested UDP unicast channel, local "
143 "endpoint is already allocated for a UDP multicast face");
Junxiao Shi79494162014-04-02 18:25:11 -0700144
Giulio Grassi624f6c62014-02-18 19:42:14 +0100145 if (endpoint.address().is_multicast()) {
146 throw Error("This method is only for unicast channel. The provided "
147 "endpoint is multicast. Use createMulticastFace to "
148 "create a multicast face");
149 }
150
151 channel = make_shared<UdpChannel>(boost::cref(endpoint),
152 timeout);
153 m_channels[endpoint] = channel;
Steve DiBenedettoca53ac62014-03-27 19:58:40 -0600154 prohibitEndpoint(endpoint);
Giulio Grassi624f6c62014-02-18 19:42:14 +0100155
156 return channel;
157}
158
159shared_ptr<UdpChannel>
160UdpFactory::createChannel(const std::string& localHost,
161 const std::string& localPort,
Alexander Afanasyeveb3197f2014-03-17 19:28:18 -0700162 const time::seconds& timeout)
Giulio Grassi624f6c62014-02-18 19:42:14 +0100163{
164 return createChannel(UdpResolver::syncResolve(localHost, localPort),
165 timeout);
166}
167
168shared_ptr<MulticastUdpFace>
169UdpFactory::createMulticastFace(const udp::Endpoint& localEndpoint,
Giulio Grassi6d7176d2014-04-16 16:08:48 +0200170 const udp::Endpoint& multicastEndpoint,
171 const std::string& networkInterfaceName /* "" */)
Giulio Grassi624f6c62014-02-18 19:42:14 +0100172{
Giulio Grassi6d7176d2014-04-16 16:08:48 +0200173 //checking if the local and multicast endpoint are already in use for a multicast face
Giulio Grassi624f6c62014-02-18 19:42:14 +0100174 shared_ptr<MulticastUdpFace> multicastFace = findMulticastFace(localEndpoint);
175 if (static_cast<bool>(multicastFace)) {
176 if (multicastFace->getMulticastGroup() == multicastEndpoint)
177 return multicastFace;
178 else
179 throw Error("Cannot create the requested UDP multicast face, local "
180 "endpoint is already allocated for a UDP multicast face "
181 "on a different multicast group");
182 }
Junxiao Shi79494162014-04-02 18:25:11 -0700183
Giulio Grassi624f6c62014-02-18 19:42:14 +0100184 //checking if the local endpoint is already in use for an unicast channel
185 shared_ptr<UdpChannel> unicast = findChannel(localEndpoint);
186 if (static_cast<bool>(unicast)) {
187 throw Error("Cannot create the requested UDP multicast face, local "
188 "endpoint is already allocated for a UDP unicast channel");
189 }
190
Steve DiBenedettoca53ac62014-03-27 19:58:40 -0600191 if (m_prohibitedEndpoints.find(multicastEndpoint) != m_prohibitedEndpoints.end()) {
192 throw Error("Cannot create the requested UDP multicast face, "
193 "remote endpoint is owned by this NFD instance");
194 }
195
Giulio Grassi624f6c62014-02-18 19:42:14 +0100196 if (localEndpoint.address().is_v6() || multicastEndpoint.address().is_v6()) {
197 throw Error("IPv6 multicast is not supported yet. Please provide an IPv4 address");
198 }
Junxiao Shi79494162014-04-02 18:25:11 -0700199
Giulio Grassi624f6c62014-02-18 19:42:14 +0100200 if (localEndpoint.port() != multicastEndpoint.port()) {
201 throw Error("Cannot create the requested UDP multicast face, "
202 "both endpoints should have the same port number. ");
203 }
204
205 if (!multicastEndpoint.address().is_multicast()) {
206 throw Error("Cannot create the requested UDP multicast face, "
207 "the multicast group given as input is not a multicast address");
208 }
209
210 shared_ptr<ip::udp::socket> clientSocket =
211 make_shared<ip::udp::socket>(boost::ref(getGlobalIoService()));
Junxiao Shi79494162014-04-02 18:25:11 -0700212
Giulio Grassi624f6c62014-02-18 19:42:14 +0100213 clientSocket->open(multicastEndpoint.protocol());
214
215 clientSocket->set_option(ip::udp::socket::reuse_address(true));
216
217 try {
218 clientSocket->bind(multicastEndpoint);
219
220 if (localEndpoint.address() != ip::address::from_string("0.0.0.0")) {
221 clientSocket->set_option(ip::multicast::outbound_interface(localEndpoint.address().to_v4()));
222 }
223 clientSocket->set_option(ip::multicast::join_group(multicastEndpoint.address().to_v4(),
224 localEndpoint.address().to_v4()));
225 }
226 catch (boost::system::system_error& e) {
227 std::stringstream msg;
228 msg << "Failed to properly configure the socket, check the address (" << e.what() << ")";
229 throw Error(msg.str());
230 }
231
Giulio Grassi6d7176d2014-04-16 16:08:48 +0200232#if defined(__linux__)
233 //On linux system, if there are more than one MulticastUdpFace for the same multicast group but
234 //bound on different network interfaces, the socket has to be bound with the specific interface
235 //using SO_BINDTODEVICE, otherwise the face will receive packets also from other interfaces.
236 //Without SO_BINDTODEVICE every MulticastUdpFace that have joined the same multicast group
237 //on different interfaces will receive the same packet.
238 //This applies only on linux, for OS X the ip::multicast::join_group is enough to get
239 //the desired behaviour
240 if (!networkInterfaceName.empty()) {
241 if (::setsockopt(clientSocket->native_handle(), SOL_SOCKET, SO_BINDTODEVICE,
242 networkInterfaceName.c_str(), networkInterfaceName.size()+1) == -1){
243 throw Error("Cannot bind multicast face to " + networkInterfaceName
244 + " make sure you have CAP_NET_RAW capability" );
245 }
246 }
247
248#endif
249
Giulio Grassi624f6c62014-02-18 19:42:14 +0100250 clientSocket->set_option(ip::multicast::enable_loopback(false));
251
Junxiao Shi79494162014-04-02 18:25:11 -0700252 multicastFace = make_shared<MulticastUdpFace>(boost::cref(clientSocket), localEndpoint);
Giulio Grassi624f6c62014-02-18 19:42:14 +0100253 multicastFace->onFail += bind(&UdpFactory::afterFaceFailed, this, localEndpoint);
254
255 m_multicastFaces[localEndpoint] = multicastFace;
256
257 return multicastFace;
258}
259
260shared_ptr<MulticastUdpFace>
261UdpFactory::createMulticastFace(const std::string& localIp,
262 const std::string& multicastIp,
Giulio Grassi6d7176d2014-04-16 16:08:48 +0200263 const std::string& multicastPort,
264 const std::string& networkInterfaceName /* "" */)
Giulio Grassi624f6c62014-02-18 19:42:14 +0100265{
Junxiao Shi79494162014-04-02 18:25:11 -0700266
Giulio Grassi624f6c62014-02-18 19:42:14 +0100267 return createMulticastFace(UdpResolver::syncResolve(localIp,
268 multicastPort),
269 UdpResolver::syncResolve(multicastIp,
Giulio Grassi6d7176d2014-04-16 16:08:48 +0200270 multicastPort),
271 networkInterfaceName);
Giulio Grassi624f6c62014-02-18 19:42:14 +0100272}
273
274void
275UdpFactory::createFace(const FaceUri& uri,
276 const FaceCreatedCallback& onCreated,
277 const FaceConnectFailedCallback& onConnectFailed)
278{
279 resolver::AddressSelector addressSelector = resolver::AnyAddress();
280 if (uri.getScheme() == "udp4")
281 addressSelector = resolver::Ipv4Address();
282 else if (uri.getScheme() == "udp6")
283 addressSelector = resolver::Ipv6Address();
Junxiao Shi79494162014-04-02 18:25:11 -0700284
Steve DiBenedettoca53ac62014-03-27 19:58:40 -0600285 if (!uri.getPath().empty())
286 {
287 onConnectFailed("Invalid URI");
288 }
289
Junxiao Shi61e3cc52014-03-03 20:40:28 -0700290 UdpResolver::asyncResolve(uri.getHost(),
Giulio Grassi624f6c62014-02-18 19:42:14 +0100291 uri.getPort().empty() ? m_defaultPort : uri.getPort(),
292 bind(&UdpFactory::continueCreateFaceAfterResolve, this, _1,
293 onCreated, onConnectFailed),
294 onConnectFailed,
295 addressSelector);
296
297}
298
299void
300UdpFactory::continueCreateFaceAfterResolve(const udp::Endpoint& endpoint,
301 const FaceCreatedCallback& onCreated,
302 const FaceConnectFailedCallback& onConnectFailed)
303{
304 if (endpoint.address().is_multicast()) {
305 onConnectFailed("The provided address is multicast. Please use createMulticastFace method");
306 return;
307 }
Junxiao Shi79494162014-04-02 18:25:11 -0700308
Steve DiBenedettoca53ac62014-03-27 19:58:40 -0600309 if (m_prohibitedEndpoints.find(endpoint) != m_prohibitedEndpoints.end())
310 {
311 onConnectFailed("Requested endpoint is prohibited "
312 "(reserved by this NFD or disallowed by face management protocol)");
313 return;
314 }
315
Giulio Grassi624f6c62014-02-18 19:42:14 +0100316 // very simple logic for now
Junxiao Shi79494162014-04-02 18:25:11 -0700317
Giulio Grassi624f6c62014-02-18 19:42:14 +0100318 for (ChannelMap::iterator channel = m_channels.begin();
319 channel != m_channels.end();
320 ++channel)
321 {
322 if ((channel->first.address().is_v4() && endpoint.address().is_v4()) ||
323 (channel->first.address().is_v6() && endpoint.address().is_v6()))
324 {
Steve DiBenedettoca53ac62014-03-27 19:58:40 -0600325 channel->second->connect(endpoint, onCreated, onConnectFailed);
Giulio Grassi624f6c62014-02-18 19:42:14 +0100326 return;
327 }
328 }
329 onConnectFailed("No channels available to connect to "
330 + boost::lexical_cast<std::string>(endpoint));
331}
332
333shared_ptr<UdpChannel>
334UdpFactory::findChannel(const udp::Endpoint& localEndpoint)
335{
336 ChannelMap::iterator i = m_channels.find(localEndpoint);
337 if (i != m_channels.end())
338 return i->second;
339 else
340 return shared_ptr<UdpChannel>();
341}
342
343shared_ptr<MulticastUdpFace>
344UdpFactory::findMulticastFace(const udp::Endpoint& localEndpoint)
345{
346 MulticastFaceMap::iterator i = m_multicastFaces.find(localEndpoint);
347 if (i != m_multicastFaces.end())
348 return i->second;
349 else
350 return shared_ptr<MulticastUdpFace>();
351}
352
353void
354UdpFactory::afterFaceFailed(udp::Endpoint& endpoint)
355{
356 NFD_LOG_DEBUG("afterFaceFailed: " << endpoint);
357 m_multicastFaces.erase(endpoint);
358}
359
360
361} // namespace nfd