gem5  v21.0.0.0
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
ethertap.hh
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2003-2005 The Regents of The University of Michigan
3  * All rights reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions are
7  * met: redistributions of source code must retain the above copyright
8  * notice, this list of conditions and the following disclaimer;
9  * redistributions in binary form must reproduce the above copyright
10  * notice, this list of conditions and the following disclaimer in the
11  * documentation and/or other materials provided with the distribution;
12  * neither the name of the copyright holders nor the names of its
13  * contributors may be used to endorse or promote products derived from
14  * this software without specific prior written permission.
15  *
16  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
17  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
18  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
19  * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
20  * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
21  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
22  * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
26  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27  */
28 
29 /* @file
30  * Interface to connect a simulated ethernet device to the real world
31  */
32 
33 #ifndef __DEV_NET_ETHERTAP_HH__
34 #define __DEV_NET_ETHERTAP_HH__
35 
36 #include <queue>
37 #include <string>
38 
39 #include "base/pollevent.hh"
40 #include "config/use_tuntap.hh"
41 #include "dev/net/etherint.hh"
42 #include "dev/net/etherpkt.hh"
43 
44 #if USE_TUNTAP
45 #include "params/EtherTap.hh"
46 
47 #endif
48 
49 #include "params/EtherTapStub.hh"
50 #include "sim/eventq.hh"
51 #include "sim/sim_object.hh"
52 
53 class TapEvent;
54 class EtherTapInt;
55 
56 class EtherTapBase : public SimObject
57 {
58  public:
59  using Params = EtherTapBaseParams;
60  EtherTapBase(const Params &p);
61  virtual ~EtherTapBase();
62 
63  void serialize(CheckpointOut &cp) const override;
64  void unserialize(CheckpointIn &cp) override;
65 
66  protected:
67  uint8_t *buffer;
68  int buflen;
69 
71 
72 
73  /*
74  * Interface to the real network.
75  */
76  protected:
77  friend class TapEvent;
79  void pollFd(int fd);
80  void stopPolling();
81 
82  // Receive data from the real network.
83  virtual void recvReal(int revent) = 0;
84  // Prepare and send data out to the real network.
85  virtual bool sendReal(const void *data, size_t len) = 0;
86 
87 
88  /*
89  * Interface to the simulated network.
90  */
91  protected:
93 
94  public:
95  Port &getPort(const std::string &if_name,
96  PortID idx=InvalidPortID) override;
97 
98  bool recvSimulated(EthPacketPtr packet);
99  void sendSimulated(void *data, size_t len);
100 
101  protected:
102  std::queue<EthPacketPtr> packetBuffer;
103  void retransmit();
105 };
106 
107 class EtherTapInt : public EtherInt
108 {
109  private:
111  public:
112  EtherTapInt(const std::string &name, EtherTapBase *t) :
113  EtherInt(name), tap(t)
114  { }
115 
116  bool recvPacket(EthPacketPtr pkt) override
117  { return tap->recvSimulated(pkt); }
118  void sendDone() override {}
119 };
120 
121 
122 class TapListener;
123 
124 /*
125  * Interface to connect a simulated ethernet device to the real world. An
126  * external helper program bridges between this object's TCP port and a
127  * source/sink for Ethernet frames. Each frame going in either direction is
128  * prepended with the frame's length in a 32 bit integer in network byte order.
129  */
131 {
132  public:
133  using Params = EtherTapStubParams;
134  EtherTapStub(const Params &p);
135  ~EtherTapStub();
136 
137  void serialize(CheckpointOut &cp) const override;
138  void unserialize(CheckpointIn &cp) override;
139 
140 
141  protected:
142  friend class TapListener;
144 
145  int socket;
146 
147  void attach(int fd);
148  void detach();
149 
150  uint32_t buffer_used;
151  uint32_t frame_len;
152 
153  void recvReal(int revent) override;
154  bool sendReal(const void *data, size_t len) override;
155 };
156 
157 
158 #if USE_TUNTAP
159 class EtherTap : public EtherTapBase
160 {
161  public:
162  using Params = EtherTapParams;
163  EtherTap(const Params &p);
164  ~EtherTap();
165 
166 
167  protected:
168  int tap;
169 
170  void recvReal(int revent) override;
171  bool sendReal(const void *data, size_t len) override;
172 };
173 #endif
174 
175 
176 #endif // __DEV_NET_ETHERTAP_HH__
EtherTapBase::EtherTapBase
EtherTapBase(const Params &p)
Definition: ethertap.cc:90
EtherTapStub::recvReal
void recvReal(int revent) override
Definition: ethertap.cc:342
data
const char data[]
Definition: circlebuf.test.cc:47
EtherTapBase::sendReal
virtual bool sendReal(const void *data, size_t len)=0
EtherTapBase::stopPolling
void stopPolling()
Definition: ethertap.cc:150
InvalidPortID
const PortID InvalidPortID
Definition: types.hh:244
EtherTapBase::retransmit
void retransmit()
Definition: ethertap.cc:204
EtherInt
Definition: etherint.hh:47
ArmISA::fd
Bitfield< 14, 12 > fd
Definition: types.hh:159
etherint.hh
EtherTapBase::sendSimulated
void sendSimulated(void *data, size_t len)
Definition: ethertap.cc:183
PortID
int16_t PortID
Port index/ID type, and a symbolic name for an invalid port id.
Definition: types.hh:243
EtherTapStub
Definition: ethertap.hh:130
EtherTapInt::tap
EtherTapBase * tap
Definition: ethertap.hh:110
EtherTapBase::recvReal
virtual void recvReal(int revent)=0
EtherTapBase::buflen
int buflen
Definition: ethertap.hh:68
EtherTapInt::sendDone
void sendDone() override
Definition: ethertap.hh:118
TapEvent
Definition: ethertap.cc:70
EtherTapStub::unserialize
void unserialize(CheckpointIn &cp) override
Unserialize an object.
Definition: ethertap.cc:309
EtherTapBase::interface
EtherTapInt * interface
Definition: ethertap.hh:92
EtherTapBase::Params
EtherTapBaseParams Params
Definition: ethertap.hh:59
EtherTapStub::buffer_used
uint32_t buffer_used
Definition: ethertap.hh:150
EventFunctionWrapper
Definition: eventq.hh:1112
EtherTapInt::recvPacket
bool recvPacket(EthPacketPtr pkt) override
Definition: ethertap.hh:116
EtherTapStub::socket
int socket
Definition: ethertap.hh:145
cp
Definition: cprintf.cc:37
EtherTapStub::listener
TapListener * listener
Definition: ethertap.hh:143
sim_object.hh
EtherTapInt
Definition: ethertap.hh:107
pollevent.hh
Port
Ports are used to interface objects to each other.
Definition: port.hh:56
EtherTapBase::unserialize
void unserialize(CheckpointIn &cp) override
Unserialize an object.
Definition: ethertap.cc:124
EtherTapBase::serialize
void serialize(CheckpointOut &cp) const override
Serialize an object.
Definition: ethertap.cc:107
EtherTapBase::event
TapEvent * event
Definition: ethertap.hh:78
EtherTapBase::getPort
Port & getPort(const std::string &if_name, PortID idx=InvalidPortID) override
Get a port with a given name and index.
Definition: ethertap.cc:159
TapListener
Definition: ethertap.cc:223
EtherTapStub::attach
void attach(int fd)
Definition: ethertap.cc:320
EthPacketPtr
std::shared_ptr< EthPacketData > EthPacketPtr
Definition: etherpkt.hh:87
EtherInt::name
const std::string & name() const
Return port name (for DPRINTF).
Definition: etherint.hh:59
ArmISA::t
Bitfield< 5 > t
Definition: miscregs_types.hh:67
ArmISA::len
Bitfield< 18, 16 > len
Definition: miscregs_types.hh:439
EtherTapStub::frame_len
uint32_t frame_len
Definition: ethertap.hh:151
etherpkt.hh
CheckpointOut
std::ostream CheckpointOut
Definition: serialize.hh:64
EtherDump
Definition: etherdump.hh:45
EtherTapBase::~EtherTapBase
virtual ~EtherTapBase()
Definition: ethertap.cc:99
EtherTapBase::pollFd
void pollFd(int fd)
Definition: ethertap.cc:142
EtherTapBase::buffer
uint8_t * buffer
Definition: ethertap.hh:67
EtherTapStub::detach
void detach()
Definition: ethertap.cc:333
MipsISA::p
Bitfield< 0 > p
Definition: pra_constants.hh:323
CheckpointIn
Definition: serialize.hh:68
EtherTapStub::EtherTapStub
EtherTapStub(const Params &p)
Definition: ethertap.cc:284
EtherTapBase::txEvent
EventFunctionWrapper txEvent
Definition: ethertap.hh:104
EtherTapStub::~EtherTapStub
~EtherTapStub()
Definition: ethertap.cc:293
EtherTapBase::packetBuffer
std::queue< EthPacketPtr > packetBuffer
Definition: ethertap.hh:102
EtherTapBase::recvSimulated
bool recvSimulated(EthPacketPtr packet)
Definition: ethertap.cc:167
EtherTapStub::serialize
void serialize(CheckpointOut &cp) const override
Serialize an object.
Definition: ethertap.cc:299
EtherTapBase
Definition: ethertap.hh:56
EtherTapBase::dump
EtherDump * dump
Definition: ethertap.hh:70
EtherTapInt::EtherTapInt
EtherTapInt(const std::string &name, EtherTapBase *t)
Definition: ethertap.hh:112
EtherTapStub::sendReal
bool sendReal(const void *data, size_t len) override
Definition: ethertap.cc:388
eventq.hh
SimObject
Abstract superclass for simulation objects.
Definition: sim_object.hh:141

Generated on Tue Mar 23 2021 19:41:26 for gem5 by doxygen 1.8.17