NS-3 based Named Data Networking (NDN) simulator
ndnSIM 2.5: NDN, CCN, CCNx, content centric networks
API Documentation
multicast-udp-transport.cpp
Go to the documentation of this file.
1 /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2 /*
3  * Copyright (c) 2014-2018, 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  * The University of Memphis.
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/>.
24  */
25 
27 #include "socket-utils.hpp"
28 #include "udp-protocol.hpp"
29 
31 
32 #include <boost/functional/hash.hpp>
33 
34 #ifdef __linux__
35 #include <cerrno> // for errno
36 #include <cstring> // for std::strerror()
37 #include <sys/socket.h> // for setsockopt()
38 #endif // __linux__
39 
40 namespace nfd {
41 namespace face {
42 
44  Multicast, "MulticastUdpTransport");
45 
46 MulticastUdpTransport::MulticastUdpTransport(const protocol::endpoint& multicastGroup,
47  protocol::socket&& recvSocket,
48  protocol::socket&& sendSocket,
49  ndn::nfd::LinkType linkType)
50  : DatagramTransport(std::move(recvSocket))
51  , m_multicastGroup(multicastGroup)
52  , m_sendSocket(std::move(sendSocket))
53 {
54  this->setLocalUri(FaceUri(m_sendSocket.local_endpoint()));
55  this->setRemoteUri(FaceUri(multicastGroup));
58  this->setLinkType(linkType);
59  this->setMtu(udp::computeMtu(m_sendSocket.local_endpoint()));
60 
61  protocol::socket::send_buffer_size sendBufferSizeOption;
62  boost::system::error_code error;
63  m_sendSocket.get_option(sendBufferSizeOption);
64  if (error) {
65  NFD_LOG_FACE_WARN("Failed to obtain send queue capacity from socket: " << error.message());
67  }
68  else {
69  this->setSendQueueCapacity(sendBufferSizeOption.value());
70  }
71 
72  NFD_LOG_FACE_INFO("Creating transport");
73 }
74 
75 ssize_t
77 {
78  ssize_t queueLength = getTxQueueLength(m_sendSocket.native_handle());
79  if (queueLength == QUEUE_ERROR) {
80  NFD_LOG_FACE_WARN("Failed to obtain send queue length from socket: " << std::strerror(errno));
81  }
82  return queueLength;
83 }
84 
85 void
86 MulticastUdpTransport::doSend(Transport::Packet&& packet)
87 {
88  NFD_LOG_FACE_TRACE(__func__);
89 
90  m_sendSocket.async_send_to(boost::asio::buffer(packet.packet), m_multicastGroup,
92  boost::asio::placeholders::error,
93  boost::asio::placeholders::bytes_transferred,
94  packet.packet));
95 }
96 
97 void
98 MulticastUdpTransport::doClose()
99 {
100  if (m_sendSocket.is_open()) {
101  NFD_LOG_FACE_TRACE("Closing sending socket");
102 
103  // Cancel all outstanding operations and close the socket.
104  // Use the non-throwing variants and ignore errors, if any.
105  boost::system::error_code error;
106  m_sendSocket.cancel(error);
107  m_sendSocket.close(error);
108  }
109 
111 }
112 
113 static void
114 bindToDevice(int fd, const std::string& ifname)
115 {
116  // On Linux, if there is more than one MulticastUdpTransport for the same multicast
117  // group but they are on different network interfaces, each socket needs to be bound
118  // to the corresponding interface using SO_BINDTODEVICE, otherwise the transport will
119  // receive all packets sent to the other interfaces as well.
120  // This is needed only on Linux. On macOS, the boost::asio::ip::multicast::join_group
121  // option is sufficient to obtain the desired behavior.
122 
123 #ifdef __linux__
125  if (::setsockopt(fd, SOL_SOCKET, SO_BINDTODEVICE, ifname.data(), ifname.size() + 1) < 0) {
126  BOOST_THROW_EXCEPTION(MulticastUdpTransport::Error("Cannot bind multicast rx socket to " +
127  ifname + ": " + std::strerror(errno)));
128  }
129  });
130 #endif // __linux__
131 }
132 
133 void
134 MulticastUdpTransport::openRxSocket(protocol::socket& sock,
135  const protocol::endpoint& multicastGroup,
136  const boost::asio::ip::address& localAddress,
137  const shared_ptr<const ndn::net::NetworkInterface>& netif)
138 {
139  BOOST_ASSERT(!sock.is_open());
140 
141  sock.open(multicastGroup.protocol());
142  sock.set_option(protocol::socket::reuse_address(true));
143 
144  if (multicastGroup.address().is_v4()) {
145  BOOST_ASSERT(localAddress.is_v4());
146  sock.bind(multicastGroup);
147  sock.set_option(boost::asio::ip::multicast::join_group(multicastGroup.address().to_v4(),
148  localAddress.to_v4()));
149  }
150  else {
151  BOOST_ASSERT(localAddress.is_v6());
152  sock.set_option(boost::asio::ip::v6_only(true));
153 #ifdef WITH_TESTS
154  // To simplify unit tests, we bind to the "any" IPv6 address if the supplied multicast
155  // address lacks a scope id. Calling bind() without a scope id would otherwise fail.
156  if (multicastGroup.address().to_v6().scope_id() == 0)
157  sock.bind(protocol::endpoint(boost::asio::ip::address_v6::any(), multicastGroup.port()));
158  else
159 #endif
160  sock.bind(multicastGroup);
161  sock.set_option(boost::asio::ip::multicast::join_group(multicastGroup.address().to_v6()));
162  }
163 
164  if (netif)
165  bindToDevice(sock.native_handle(), netif->getName());
166 }
167 
168 void
169 MulticastUdpTransport::openTxSocket(protocol::socket& sock,
170  const protocol::endpoint& localEndpoint,
171  const shared_ptr<const ndn::net::NetworkInterface>& netif,
172  bool enableLoopback)
173 {
174  BOOST_ASSERT(!sock.is_open());
175 
176  sock.open(localEndpoint.protocol());
177  sock.set_option(protocol::socket::reuse_address(true));
178  sock.set_option(boost::asio::ip::multicast::enable_loopback(enableLoopback));
179 
180  if (localEndpoint.address().is_v4()) {
181  sock.bind(localEndpoint);
182  if (!localEndpoint.address().is_unspecified())
183  sock.set_option(boost::asio::ip::multicast::outbound_interface(localEndpoint.address().to_v4()));
184  }
185  else {
186  sock.set_option(boost::asio::ip::v6_only(true));
187  sock.bind(localEndpoint);
188  if (netif)
189  sock.set_option(boost::asio::ip::multicast::outbound_interface(netif->getIndex()));
190  }
191 }
192 
193 template<>
196 {
197  if (ep.address().is_v4()) {
198  return (static_cast<uint64_t>(ep.port()) << 32) |
199  static_cast<uint64_t>(ep.address().to_v4().to_ulong());
200  }
201  else {
202  size_t seed = 0;
203  const auto& addrBytes = ep.address().to_v6().to_bytes();
204  boost::hash_range(seed, addrBytes.begin(), addrBytes.end());
205  boost::hash_combine(seed, ep.port());
206  return seed;
207  }
208 }
209 
210 } // namespace face
211 } // namespace nfd
void handleSend(const boost::system::error_code &error, size_t nBytesSent, const Block &payload)
void setPersistency(ndn::nfd::FacePersistency newPersistency)
changes face persistency setting
Definition: transport.cpp:158
static void openRxSocket(protocol::socket &sock, const protocol::endpoint &multicastGroup, const boost::asio::ip::address &localAddress, const shared_ptr< const ndn::net::NetworkInterface > &netif=nullptr)
#define NFD_LOG_INCLASS_2TEMPLATE_SPECIALIZATION_DEFINE(cls, s1, s2, name)
Definition: logger.hpp:50
#define NFD_LOG_FACE_TRACE(msg)
Log a message at TRACE level.
Definition: face-log.hpp:79
void setRemoteUri(const FaceUri &uri)
Definition: transport.hpp:423
static void runElevated(F &&f)
void doClose() override
performs Transport specific operations to close the transport
stores a packet along with the remote endpoint
Definition: transport.hpp:122
STL namespace.
const ssize_t QUEUE_ERROR
indicates that the transport was unable to retrieve the queue capacity/length
Definition: transport.hpp:108
void setLinkType(ndn::nfd::LinkType linkType)
Definition: transport.hpp:453
Implements Transport for datagram-based protocols.
void setMtu(ssize_t mtu)
Definition: transport.hpp:465
ssize_t computeMtu(const Endpoint &localEndpoint)
computes maximum payload size in a UDP packet
void setScope(ndn::nfd::FaceScope scope)
Definition: transport.hpp:435
static EndpointId makeEndpointId(const typename protocol::endpoint &ep)
MulticastUdpTransport(const protocol::endpoint &multicastGroup, protocol::socket &&recvSocket, protocol::socket &&sendSocket, ndn::nfd::LinkType linkType)
Creates a UDP-based transport for multicast communication.
static void bindToDevice(int fd, const std::string &ifname)
#define NFD_LOG_FACE_INFO(msg)
Log a message at INFO level.
Definition: face-log.hpp:85
Copyright (c) 2011-2015 Regents of the University of California.
Definition: ndn-common.hpp:40
static void openTxSocket(protocol::socket &sock, const protocol::endpoint &localEndpoint, const shared_ptr< const ndn::net::NetworkInterface > &netif=nullptr, bool enableLoopback=false)
void setLocalUri(const FaceUri &uri)
Definition: transport.hpp:411
ssize_t getTxQueueLength(int fd)
obtain send queue length from a specified system socket
represents the underlying protocol and address used by a Face
Definition: face-uri.hpp:44
void setSendQueueCapacity(ssize_t sendQueueCapacity)
Definition: transport.hpp:478
uint64_t EndpointId
identifies an endpoint on the link
Definition: transport.hpp:118
#define NFD_LOG_FACE_WARN(msg)
Log a message at WARN level.
Definition: face-log.hpp:88