24 #include "ns3/abort.h"
25 #include "ns3/config.h"
26 #include "ns3/fd-net-device.h"
28 #include "ns3/names.h"
29 #include "ns3/netmap-net-device.h"
30 #include "ns3/object-factory.h"
31 #include "ns3/packet.h"
32 #include "ns3/simulator.h"
33 #include "ns3/trace-helper.h"
34 #include "ns3/uinteger.h"
36 #include <arpa/inet.h>
42 #include <net/ethernet.h>
44 #include <net/netmap_user.h>
45 #include <netinet/in.h>
49 #include <sys/ioctl.h>
51 #include <sys/socket.h>
63 #define EMU_MAGIC 65867
102 device->AggregateObject(ndqi);
103 netmapDevice->SetNetDeviceQueue(ndqi->GetTxQueue(0));
113 NS_FATAL_ERROR(
"NetmapNetDeviceHelper::SetFileDescriptor (): m_deviceName is not set");
120 int fd = socket(PF_INET, SOCK_DGRAM, 0);
127 bzero(&ifr,
sizeof(ifr));
128 strncpy((
char*)ifr.ifr_name,
m_deviceName.c_str(), IFNAMSIZ - 1);
131 int32_t
rc = ioctl(fd, SIOCGIFINDEX, &ifr);
134 NS_FATAL_ERROR(
"NetmapNetDeviceHelper::SetFileDescriptor (): Can't get interface index");
137 rc = ioctl(fd, SIOCGIFFLAGS, &ifr);
140 NS_FATAL_ERROR(
"NetmapNetDeviceHelper::SetFileDescriptor (): Can't get interface flags");
154 if ((ifr.ifr_flags & IFF_PROMISC) == 0)
158 <<
" is not in promiscuous mode. Please config the interface in promiscuous "
159 "mode before to run the simulation.");
162 if ((ifr.ifr_flags & IFF_BROADCAST) != IFF_BROADCAST)
168 device->SetIsBroadcast(
false);
171 if ((ifr.ifr_flags & IFF_MULTICAST) == IFF_MULTICAST)
174 device->SetIsMulticast(
true);
185 rc = ioctl(fd, SIOCGIFMTU, &ifr);
188 NS_FATAL_ERROR(
"FdNetDevice::SetFileDescriptor (): Can't ioctl SIOCGIFMTU");
192 device->SetMtu(ifr.ifr_mtu);
211 int sock = socket(PF_UNIX, SOCK_DGRAM, 0);
215 "NetmapNetDeviceHelper::CreateFileDescriptor(): Unix socket creation error, errno = "
222 struct sockaddr_un un;
223 memset(&un, 0,
sizeof(un));
224 un.sun_family = AF_UNIX;
225 int status = bind(sock, (
struct sockaddr*)&un,
sizeof(sa_family_t));
228 NS_FATAL_ERROR(
"NetmapNetDeviceHelper::CreateFileDescriptor(): Could not bind(): errno = "
242 socklen_t len =
sizeof(un);
243 status = getsockname(sock, (
struct sockaddr*)&un, &len);
247 "NetmapNetDeviceHelper::CreateFileDescriptor(): Could not getsockname(): errno = "
267 pid_t pid = ::fork();
277 std::ostringstream oss;
281 NS_LOG_INFO(
"Parameters set to \"" << oss.str() <<
"\"");
286 status = ::execlp(NETMAP_DEV_CREATOR,
296 "NetmapNetDeviceHelper::CreateFileDescriptor(): Back from execlp(), status = "
297 << status <<
", errno = " << ::strerror(errno));
307 pid_t waited = waitpid(pid, &st, 0);
311 "NetmapNetDeviceHelper::CreateFileDescriptor(): waitpid() fails, errno = "
314 NS_ASSERT_MSG(pid == waited,
"NetmapNetDeviceHelper::CreateFileDescriptor(): pid mismatch");
323 int exitStatus = WEXITSTATUS(st);
326 NS_FATAL_ERROR(
"NetmapNetDeviceHelper::CreateFileDescriptor(): socket creator "
327 "exited normally with status "
334 "NetmapNetDeviceHelper::CreateFileDescriptor(): socket creator exited abnormally");
350 iov.iov_base = &magic;
351 iov.iov_len =
sizeof(magic);
364 size_t msg_size =
sizeof(
int);
365 char control[CMSG_SPACE(msg_size)];
378 msg.msg_name =
nullptr;
382 msg.msg_control = control;
383 msg.msg_controllen =
sizeof(control);
390 ssize_t bytesRead = recvmsg(sock, &msg, 0);
391 if (bytesRead !=
sizeof(
int))
393 NS_FATAL_ERROR(
"NetmapNetDeviceHelper::CreateFileDescriptor(): Wrong byte count from "
402 struct cmsghdr* cmsg;
403 for (cmsg = CMSG_FIRSTHDR(&msg); cmsg !=
nullptr; cmsg = CMSG_NXTHDR(&msg, cmsg))
405 if (cmsg->cmsg_level == SOL_SOCKET && cmsg->cmsg_type == SCM_RIGHTS)
414 NS_LOG_INFO(
"Got SCM_RIGHTS with correct magic " << magic);
415 int* rawSocket = (
int*)CMSG_DATA(cmsg);
416 NS_LOG_INFO(
"Got the socket from the socket creator = " << *rawSocket);
421 NS_LOG_INFO(
"Got SCM_RIGHTS, but with bad magic " << magic);
425 NS_FATAL_ERROR(
"Did not get the raw socket from the socket creator");
446 memset(&nmr, 0,
sizeof(nmr));
448 nmr.nr_version = NETMAP_API;
454 int code = ioctl(fd, NIOCREGIF, &nmr);
461 uint8_t* memory = (uint8_t*)mmap(0, nmr.nr_memsize, PROT_WRITE | PROT_READ, MAP_SHARED, fd, 0);
463 if (memory == MAP_FAILED)
469 struct netmap_if* nifp = NETMAP_IF(memory, nmr.nr_offset);
473 NS_FATAL_ERROR(
"Failed getting the base struct of the interface in netmap mode");
476 device->SetNetmapInterfaceRepresentation(nifp);
477 device->SetTxRingsInfo(nifp->ni_tx_rings, nmr.nr_tx_slots);
478 device->SetRxRingsInfo(nifp->ni_rx_rings, nmr.nr_rx_slots);
480 device->SetFileDescriptor(fd);
virtual Ptr< NetDevice > InstallPriv(Ptr< Node > node) const
This method creates an ns3::FdNetDevice and associates it to a node.
void SetTypeId(std::string type)
Set the TypeId of the Objects to be created by this helper.
a NetDevice to read/write network traffic from/into a file descriptor.
static TypeId GetTypeId()
Get the type ID.
Ptr< NetDevice > InstallPriv(Ptr< Node > node) const
This method creates an ns3::FdNetDevice attached to a physical network interface.
virtual int CreateFileDescriptor() const
Call out to a separate process running as suid root in order to get a raw socket.
void SetDeviceName(std::string deviceName)
Set the device name of this device.
std::string m_deviceName
The unix/linux name of the underlying device (e.g., eth0)
void SwitchInNetmapMode(int fd, Ptr< NetmapNetDevice > device) const
Switch the fd in netmap mode.
std::string GetDeviceName()
Get the device name of this device.
virtual void SetDeviceAttributes(Ptr< FdNetDevice > device) const
Sets device flags and MTU.
Smart pointer class similar to boost::intrusive_ptr.
AttributeValue implementation for TypeId.
Hold an unsigned integer type.
#define NS_ASSERT(condition)
At runtime, in debugging builds, if this condition is not true, the program prints the source file,...
#define NS_ASSERT_MSG(condition, message)
At runtime, in debugging builds, if this condition is not true, the program prints the message to out...
#define NS_FATAL_ERROR(msg)
Report a fatal error with a message and terminate.
#define NS_LOG_COMPONENT_DEFINE(name)
Define a Log component with a specific name.
#define NS_LOG_DEBUG(msg)
Use NS_LOG to output a message of level LOG_DEBUG.
#define NS_LOG_LOGIC(msg)
Use NS_LOG to output a message of level LOG_LOGIC.
#define NS_LOG_FUNCTION(parameters)
If log level LOG_FUNCTION is enabled, this macro will output all input parameters separated by ",...
#define NS_LOG_INFO(msg)
Use NS_LOG to output a message of level LOG_INFO.
Every class exported by the ns3 library is enclosed in the ns3 namespace.
std::string BufferToString(uint8_t *buffer, uint32_t len)
Convert a byte buffer to a string containing a hex representation of the buffer.
ns3::StringValue attribute value declarations.