30 #include <pcap/pcap.h> 32 #include <arpa/inet.h> 41 const ethernet::Address& remoteEndpoint)
43 , m_pcap(localEndpoint.getName())
44 , m_srcAddress(localEndpoint.getEthernetAddress())
45 , m_destAddress(remoteEndpoint)
46 , m_interfaceName(localEndpoint.getName())
47 , m_hasRecentlyReceived(false)
57 BOOST_THROW_EXCEPTION(
Error(e.what()));
71 boost::system::error_code error;
89 sendPacket(packet.packet);
93 EthernetTransport::sendPacket(
const ndn::Block& block)
95 ndn::EncodingBuffer buffer(block);
98 if (block.size() < ethernet::MIN_DATA_LEN) {
99 static const uint8_t padding[ethernet::MIN_DATA_LEN] = {};
100 buffer.appendByteArray(padding, ethernet::MIN_DATA_LEN - block.size());
104 static uint16_t ethertype = htons(ethernet::ETHERTYPE_NDN);
105 buffer.prependByteArray(reinterpret_cast<const uint8_t*>(ðertype), ethernet::TYPE_LEN);
110 int sent = pcap_inject(
m_pcap, buffer.buf(), buffer.size());
113 else if (static_cast<size_t>(sent) < buffer.size())
114 handleError(
"Failed to send the full frame: size=" + to_string(buffer.size()) +
115 " sent=" + to_string(sent));
122 EthernetTransport::asyncRead()
124 m_socket.async_read_some(boost::asio::null_buffers(),
125 bind(&EthernetTransport::handleRead,
this,
126 boost::asio::placeholders::error));
130 EthernetTransport::handleRead(
const boost::system::error_code& error)
135 if (error != boost::asio::error::operation_aborted &&
139 handleError(
"Receive operation failed: " + error.message());
149 if (pkt ==
nullptr) {
153 const ether_header* eh;
160 ethernet::Address sender(eh->ether_shost);
161 pkt += ethernet::HDR_LEN;
162 len -= ethernet::HDR_LEN;
169 if (nDropped - m_nDropped > 0)
171 m_nDropped = nDropped;
179 const ethernet::Address& sender)
185 std::tie(isOk, element) = Block::fromBuffer(payload, length);
191 m_hasRecentlyReceived =
true;
195 "Transport::Packet::remoteEndpoint is too small");
203 EthernetTransport::handleError(
const std::string& errorMessage)
ethernet::Address m_srcAddress
ethernet::Address m_destAddress
#define NFD_LOG_FACE_TRACE(msg)
Log a message at TRACE level.
boost::asio::posix::stream_descriptor m_socket
#define NFD_LOG_FACE_DEBUG(msg)
Log a message at DEBUG level.
void receive(Packet &&packet)
receive a link-layer packet
stores a packet along with the remote endpoint
void doClose() final
performs Transport specific operations to close the transport
the transport is being closed due to a failure
#define NFD_LOG_FACE_WARN(msg)
Log a message at WARN level.
size_t getNDropped() const
Get the number of packets dropped by the kernel, as reported by libpcap.
std::string getLastError() const
Get last error message.
Copyright (c) 2014-2015, Regents of the University of California, Arizona Board of Regents...
void receivePayload(const uint8_t *payload, size_t length, const ethernet::Address &sender)
Processes the payload of an incoming frame.
the transport is closed, and can be safely deallocated
std::tuple< const uint8_t *, size_t, std::string > readNextPacket() const
Read the next packet captured on the interface.
the transport is being closed gracefully, either by the peer or by a call to close() ...
std::pair< const ether_header *, std::string > checkFrameHeader(const uint8_t *packet, size_t length, const Address &localAddr, const Address &destAddr)
EthernetTransport(const ndn::net::NetworkInterface &localEndpoint, const ethernet::Address &remoteEndpoint)
void activate(int dlt)
Start capturing packets.
int getFd() const
Obtain a file descriptor that can be used in calls such as select(2) and poll(2). ...
ndn::nfd::FacePersistency getPersistency() const
#define NFD_LOG_INIT(name)
TransportState getState() const
void close()
Stop capturing and close the handle.
EndpointId remoteEndpoint
identifies the remote endpoint
void setState(TransportState newState)
set transport state
#define NFD_LOG_FACE_ERROR(msg)
Log a message at ERROR level.
boost::asio::io_service & getGlobalIoService()