gem5  v21.0.0.0
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
etherswitch.hh
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2014 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  * Device model for an ethernet switch
31  */
32 
33 #ifndef __DEV_ETHERSWITCH_HH__
34 #define __DEV_ETHERSWITCH_HH__
35 
36 #include <map>
37 #include <set>
38 #include <string>
39 #include <vector>
40 
41 #include "base/inet.hh"
42 #include "dev/net/etherint.hh"
43 #include "dev/net/etherlink.hh"
44 #include "dev/net/etherpkt.hh"
45 #include "dev/net/pktfifo.hh"
46 #include "params/EtherSwitch.hh"
47 #include "sim/eventq.hh"
48 #include "sim/serialize.hh"
49 #include "sim/sim_object.hh"
50 
51 class EtherSwitch : public SimObject
52 {
53  public:
54  using Params = EtherSwitchParams;
55 
56  EtherSwitch(const Params &p);
57  ~EtherSwitch();
58 
59  Port &getPort(const std::string &if_name,
60  PortID idx=InvalidPortID) override;
61 
62  protected:
66  class Interface : public EtherInt, public Serializable
67  {
68  public:
69  Interface(const std::string &name, EtherSwitch *_etherSwitch,
70  uint64_t outputBufferSize, Tick delay, Tick delay_var,
71  double rate, unsigned id);
76  bool recvPacket(EthPacketPtr packet);
80  void enqueue(EthPacketPtr packet, unsigned senderId);
81  void sendDone() {}
83 
85  void learnSenderAddr(Net::EthAddr srcMacAddr, Interface *sender);
86 
87  void serialize(CheckpointOut &cp) const;
89 
90  private:
91  const double ticksPerByte;
93  const Tick delayVar;
94  const unsigned interfaceId;
95 
97  protected:
98  struct PortFifoEntry : public Serializable
99  {
100  PortFifoEntry(EthPacketPtr pkt, Tick recv_tick, unsigned id)
101  : packet(pkt), recvTick(recv_tick), srcId(id) {}
102 
105  // id of the port that the packet has been received from
106  unsigned srcId;
108  {
109  packet = nullptr;
110  recvTick = 0;
111  srcId = 0;
112  }
113  void serialize(CheckpointOut &cp) const;
114  void unserialize(CheckpointIn &cp);
115  };
116 
117  class PortFifo : public Serializable
118  {
119  protected:
120  struct EntryOrder {
121  bool operator() (const PortFifoEntry& lhs,
122  const PortFifoEntry& rhs) const
123  {
124  if (lhs.recvTick == rhs.recvTick)
125  return lhs.srcId < rhs.srcId;
126  else
127  return lhs.recvTick < rhs.recvTick;
128  }
129  };
130  std::set<PortFifoEntry, EntryOrder> fifo;
131 
132  const std::string objName;
133  const unsigned _maxsize;
134  unsigned _size;
135 
136  public:
137  PortFifo(const std::string &name, int max)
138  :objName(name), _maxsize(max), _size(0) {}
140 
141  const std::string name() { return objName; }
142  // Returns the available capacity of the fifo.
143  // It can return a negative value because in "push" function
144  // we first push the received packet into the fifo and then
145  // check if we exceed the available capacity (if avail() < 0)
146  // and remove packets from the end of fifo
147  int avail() const { return _maxsize - _size; }
148 
149  EthPacketPtr front() { return fifo.begin()->packet; }
150  bool empty() const { return _size == 0; }
151  unsigned size() const { return _size; }
152 
157  bool push(EthPacketPtr ptr, unsigned senderId);
158  void pop();
159  void clear();
163  void serialize(CheckpointOut &cp) const;
164  void unserialize(CheckpointIn &cp);
165  };
170  void transmit();
172  };
173 
177  };
178 
179  private:
180  // time to live for MAC address mappings
181  const double ttl;
182  // all interfaces of the switch
184  // table that maps MAC address to interfaces
185  std::map<uint64_t, SwitchTableEntry> forwardingTable;
186 
187  void serialize(CheckpointOut &cp) const override;
188  void unserialize(CheckpointIn &cp) override;
189 };
190 
191 #endif // __DEV_ETHERSWITCH_HH__
EtherSwitch::Interface::PortFifo
Definition: etherswitch.hh:117
EtherSwitch::Interface::PortFifo::_size
unsigned _size
Definition: etherswitch.hh:134
EtherSwitch::Interface::sendDone
void sendDone()
Definition: etherswitch.hh:81
EtherSwitch::Interface::PortFifoEntry::serialize
void serialize(CheckpointOut &cp) const
Serialize an object.
Definition: etherswitch.cc:299
EtherSwitch::Interface::PortFifo::fifo
std::set< PortFifoEntry, EntryOrder > fifo
Definition: etherswitch.hh:130
EtherSwitch::getPort
Port & getPort(const std::string &if_name, PortID idx=InvalidPortID) override
Get a port with a given name and index.
Definition: etherswitch.cc:61
serialize.hh
EtherSwitch::interfaces
std::vector< Interface * > interfaces
Definition: etherswitch.hh:183
EtherSwitch::Interface::serialize
void serialize(CheckpointOut &cp) const
Serialize an object.
Definition: etherswitch.cc:272
InvalidPortID
const PortID InvalidPortID
Definition: types.hh:244
EtherSwitch::Interface::parent
EtherSwitch * parent
Definition: etherswitch.hh:96
EtherSwitch::SwitchTableEntry
Definition: etherswitch.hh:174
EtherSwitch::Interface::ticksPerByte
const double ticksPerByte
Definition: etherswitch.hh:91
EtherInt
Definition: etherint.hh:47
EtherSwitch::Params
EtherSwitchParams Params
Definition: etherswitch.hh:54
Serializable
Basic support for object serialization.
Definition: serialize.hh:175
EtherSwitch
Definition: etherswitch.hh:51
EtherSwitch::Interface::PortFifo::serialize
void serialize(CheckpointOut &cp) const
Serialization stuff.
Definition: etherswitch.cc:316
Net::EthAddr
Definition: inet.hh:72
EtherSwitch::Interface::PortFifo::_maxsize
const unsigned _maxsize
Definition: etherswitch.hh:133
EtherSwitch::Interface::PortFifo::size
unsigned size() const
Definition: etherswitch.hh:151
etherint.hh
EtherSwitch::Interface::PortFifoEntry::srcId
unsigned srcId
Definition: etherswitch.hh:106
Tick
uint64_t Tick
Tick count type.
Definition: types.hh:59
EtherSwitch::Interface::PortFifo::name
const std::string name()
Definition: etherswitch.hh:141
EtherSwitch::Interface
Model for an Ethernet switch port.
Definition: etherswitch.hh:66
PortID
int16_t PortID
Port index/ID type, and a symbolic name for an invalid port id.
Definition: types.hh:243
EtherSwitch::Interface::PortFifoEntry::PortFifoEntry
PortFifoEntry(EthPacketPtr pkt, Tick recv_tick, unsigned id)
Definition: etherswitch.hh:100
std::vector
STL vector class.
Definition: stl.hh:37
EtherSwitch::forwardingTable
std::map< uint64_t, SwitchTableEntry > forwardingTable
Definition: etherswitch.hh:185
EtherSwitch::Interface::PortFifo::push
bool push(EthPacketPtr ptr, unsigned senderId)
Push a packet into the fifo and sort the packets with same recv tick by port id.
Definition: etherswitch.cc:72
EtherSwitch::Interface::transmit
void transmit()
Definition: etherswitch.cc:177
EventFunctionWrapper
Definition: eventq.hh:1112
EtherSwitch::SwitchTableEntry::lastUseTime
Tick lastUseTime
Definition: etherswitch.hh:176
EtherSwitch::Interface::PortFifoEntry::unserialize
void unserialize(CheckpointIn &cp)
Unserialize an object.
Definition: etherswitch.cc:307
EtherSwitch::Interface::PortFifoEntry::~PortFifoEntry
~PortFifoEntry()
Definition: etherswitch.hh:107
EtherSwitch::unserialize
void unserialize(CheckpointIn &cp) override
Unserialize an object.
Definition: etherswitch.cc:264
EtherSwitch::Interface::PortFifo::~PortFifo
~PortFifo()
Definition: etherswitch.hh:139
cp
Definition: cprintf.cc:37
EtherSwitch::Interface::PortFifo::EntryOrder
Definition: etherswitch.hh:120
EtherSwitch::SwitchTableEntry::interface
Interface * interface
Definition: etherswitch.hh:175
EtherSwitch::EtherSwitch
EtherSwitch(const Params &p)
Definition: etherswitch.cc:40
EtherSwitch::Interface::learnSenderAddr
void learnSenderAddr(Net::EthAddr srcMacAddr, Interface *sender)
Definition: etherswitch.cc:233
sim_object.hh
EtherSwitch::Interface::PortFifo::pop
void pop()
Definition: etherswitch.cc:104
EtherSwitch::Interface::PortFifo::EntryOrder::operator()
bool operator()(const PortFifoEntry &lhs, const PortFifoEntry &rhs) const
Definition: etherswitch.hh:121
EtherSwitch::Interface::PortFifo::empty
bool empty() const
Definition: etherswitch.hh:150
Port
Ports are used to interface objects to each other.
Definition: port.hh:56
EtherSwitch::Interface::enqueue
void enqueue(EthPacketPtr packet, unsigned senderId)
enqueue packet to the outputFifo
Definition: etherswitch.cc:161
EtherSwitch::Interface::PortFifo::clear
void clear()
Definition: etherswitch.cc:116
Port::id
const PortID id
A numeric identifier to distinguish ports in a vector, and set to InvalidPortID in case this port is ...
Definition: port.hh:74
EtherSwitch::Interface::PortFifoEntry::packet
EthPacketPtr packet
Definition: etherswitch.hh:103
EtherSwitch::Interface::PortFifo::objName
const std::string objName
Definition: etherswitch.hh:132
EtherSwitch::Interface::outputFifo
PortFifo outputFifo
output fifo at each interface
Definition: etherswitch.hh:169
EthPacketPtr
std::shared_ptr< EthPacketData > EthPacketPtr
Definition: etherpkt.hh:87
EtherSwitch::Interface::Interface
Interface(const std::string &name, EtherSwitch *_etherSwitch, uint64_t outputBufferSize, Tick delay, Tick delay_var, double rate, unsigned id)
Definition: etherswitch.cc:122
EtherInt::name
const std::string & name() const
Return port name (for DPRINTF).
Definition: etherint.hh:59
EtherSwitch::Interface::PortFifo::PortFifo
PortFifo(const std::string &name, int max)
Definition: etherswitch.hh:137
EtherSwitch::~EtherSwitch
~EtherSwitch()
Definition: etherswitch.cc:52
EtherSwitch::Interface::PortFifo::avail
int avail() const
Definition: etherswitch.hh:147
EtherSwitch::Interface::PortFifo::front
EthPacketPtr front()
Definition: etherswitch.hh:149
EtherSwitch::Interface::PortFifoEntry
Definition: etherswitch.hh:98
EtherSwitch::Interface::switchingDelay
Tick switchingDelay()
Definition: etherswitch.cc:198
EtherSwitch::Interface::lookupDestPort
Interface * lookupDestPort(Net::EthAddr destAddr)
Definition: etherswitch.cc:209
pktfifo.hh
etherpkt.hh
EtherSwitch::Interface::recvPacket
bool recvPacket(EthPacketPtr packet)
When a packet is received from a device, route it through an (several) output queue(s)
Definition: etherswitch.cc:134
EtherSwitch::Interface::delayVar
const Tick delayVar
Definition: etherswitch.hh:93
CheckpointOut
std::ostream CheckpointOut
Definition: serialize.hh:64
EtherSwitch::Interface::txEvent
EventFunctionWrapper txEvent
Definition: etherswitch.hh:171
EtherSwitch::serialize
void serialize(CheckpointOut &cp) const override
Serialize an object.
Definition: etherswitch.cc:256
EtherSwitch::Interface::PortFifo::unserialize
void unserialize(CheckpointIn &cp)
Unserialize an object.
Definition: etherswitch.cc:329
EtherSwitch::Interface::interfaceId
const unsigned interfaceId
Definition: etherswitch.hh:94
MipsISA::p
Bitfield< 0 > p
Definition: pra_constants.hh:323
inet.hh
CheckpointIn
Definition: serialize.hh:68
EtherSwitch::Interface::unserialize
void unserialize(CheckpointIn &cp)
Unserialize an object.
Definition: etherswitch.cc:285
EtherSwitch::Interface::PortFifoEntry::recvTick
Tick recvTick
Definition: etherswitch.hh:104
EtherSwitch::ttl
const double ttl
Definition: etherswitch.hh:181
EtherSwitch::Interface::switchDelay
const Tick switchDelay
Definition: etherswitch.hh:92
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