Go to the documentation of this file.
35 #if defined(__OpenBSD__) || defined(__APPLE__)
36 #include <sys/param.h>
40 #if USE_TUNTAP && defined(__linux__)
41 #if 1 // Hide from the style checker since these have to be out of order.
42 #include <sys/socket.h>
47 #include <linux/if_tun.h>
52 #include <netinet/in.h>
53 #include <sys/ioctl.h>
64 #include "debug/Ethernet.hh"
65 #include "debug/EthernetData.hh"
93 txEvent([this]{
retransmit(); },
"EtherTapBase retransmit")
95 buffer =
new uint8_t[buflen];
110 uint8_t *
buffer = (uint8_t *)this->buffer;
113 bool tapevent_present =
false;
115 tapevent_present =
true;
117 event->serialize(
cp);
127 uint8_t *
buffer = (uint8_t *)this->buffer;
130 bool tapevent_present;
132 if (tapevent_present) {
134 event->unserialize(
cp);
145 event =
new TapEvent(
this,
fd, POLLIN|POLLERR);
161 if (if_name ==
"tap")
172 DPRINTF(Ethernet,
"EtherTap sim->real len=%d\n", packet->length);
173 DDUMP(EthernetData, packet->data, packet->length);
175 bool success =
sendReal(packet->data, packet->length);
186 packet = std::make_shared<EthPacketData>(
len);
187 packet->length =
len;
188 packet->simLength =
len;
189 memcpy(packet->data,
data,
len);
191 DPRINTF(Ethernet,
"EtherTap real->sim len=%d\n", packet->length);
192 DDUMP(EthernetData, packet->data, packet->length);
194 DPRINTF(Ethernet,
"bus busy...buffer for retransmission\n");
213 DPRINTF(Ethernet,
"EtherTap retransmit\n");
258 DPRINTF(Ethernet,
"TapListener(listen): Can't bind port %d\n",
port);
262 ccprintf(std::cerr,
"Listening for tap connection on port %d\n",
port);
276 panic(
"TapListener(accept): cannot accept if we're not listening!");
287 fatal(
"All listeners are disabled! EtherTapStub can't work!");
328 DPRINTF(Ethernet,
"EtherTapStub attached\n");
335 DPRINTF(Ethernet,
"EtherTapStub detached\n");
344 if (revent & POLLERR) {
349 if (!(revent & POLLIN))
367 DPRINTF(Ethernet,
"Received data from peer: len=%d buffer_used=%d "
370 uint8_t *frame_start = &
buffer[
sizeof(uint32_t)];
402 int fd = open(
p.tun_clone_device.c_str(), O_RDWR | O_NONBLOCK);
404 panic(
"Couldn't open %s.\n",
p.tun_clone_device);
407 memset(&ifr, 0,
sizeof(ifr));
408 ifr.ifr_flags = IFF_TAP | IFF_NO_PI;
409 strncpy(ifr.ifr_name,
p.tap_device_name.c_str(), IFNAMSIZ - 1);
411 if (ioctl(
fd, TUNSETIFF, (
void *)&ifr) < 0)
412 panic(
"Failed to access tap device %s.\n", ifr.ifr_name);
418 EtherTap::~EtherTap()
426 EtherTap::recvReal(
int revent)
428 if (revent & POLLERR)
429 panic(
"Error polling for tap data.\n");
431 if (!(revent & POLLIN))
435 while ((ret = read(tap, buffer, buflen))) {
439 panic(
"Failed to read from tap device.\n");
442 sendSimulated(buffer, ret);
447 EtherTap::sendReal(
const void *
data,
size_t len)
452 pfd->events = POLLOUT;
458 panic(
"Failed to write data to tap device.\n");
460 int ret = poll(pfd, 1, -1);
463 if (ret == -1 || (ret == 1 && (pfd->revents & POLLERR))) {
464 panic(
"Failed when polling to write data to tap device.\n");
#define fatal(...)
This implements a cprintf based fatal() function.
bool scheduled() const
Determine if the current event is scheduled.
EtherTapBase(const Params &p)
void recvReal(int revent) override
virtual bool listen(int port, bool reuse=true)
TapListener(EtherTapStub *t, int p)
virtual bool sendReal(const void *data, size_t len)=0
#define UNSERIALIZE_SCALAR(scalar)
TapEvent(EtherTapBase *_tap, int fd, int e)
virtual int accept(bool nodelay=false)
void sendSimulated(void *data, size_t len)
int16_t PortID
Port index/ID type, and a symbolic name for an invalid port id.
virtual void recvReal(int revent)=0
void schedule(PollEvent *event)
void unserialize(CheckpointIn &cp) override
Unserialize an object.
EtherTapBaseParams Params
void schedule(Event &event, Tick when)
virtual Port & getPort(const std::string &if_name, PortID idx=InvalidPortID)
Get a port with a given name and index.
Ports are used to interface objects to each other.
void unserialize(CheckpointIn &cp) override
Unserialize an object.
#define SERIALIZE_ARRAY(member, size)
void serialize(CheckpointOut &cp) const override
Serialize an object.
EventQueue * eventQueue() const
const std::string & name()
#define SERIALIZE_SCALAR(scalar)
#define DDUMP(x, data, count)
DPRINTF is a debugging trace facility that allows one to selectively enable tracing statements.
Port & getPort(const std::string &if_name, PortID idx=InvalidPortID) override
Get a port with a given name and index.
void process(int revent) override
std::shared_ptr< EthPacketData > EthPacketPtr
static bool allDisabled()
void process(int revent) override
#define UNSERIALIZE_ARRAY(member, size)
void dump()
Dump all statistics data to the registered outputs.
void ccprintf(cp::Print &print)
std::ostream CheckpointOut
bool sendPacket(EthPacketPtr packet)
Tick curTick()
The universal simulation clock.
Event(TapListener *l, int fd, int e)
EtherTapStub(const Params &p)
EventFunctionWrapper txEvent
std::queue< EthPacketPtr > packetBuffer
bool recvSimulated(EthPacketPtr packet)
void serialize(CheckpointOut &cp) const override
Serialize an object.
void dump(EthPacketPtr &pkt)
#define panic(...)
This implements a cprintf based panic() function.
bool sendReal(const void *data, size_t len) override
Abstract superclass for simulation objects.
Generated on Tue Mar 23 2021 19:41:26 for gem5 by doxygen 1.8.17