SINIC: Commit old code from ASPLOS 2006 studies.
[gem5.git] / src / dev / ethertap.hh
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 * Authors: Nathan Binkert
29 */
30
31 /* @file
32 * Interface to connect a simulated ethernet device to the real world
33 */
34
35 #ifndef __ETHERTAP_HH__
36 #define __ETHERTAP_HH__
37
38 #include <queue>
39 #include <string>
40
41 #include "base/pollevent.hh"
42 #include "dev/etherobject.hh"
43 #include "dev/etherint.hh"
44 #include "dev/etherpkt.hh"
45 #include "params/EtherTap.hh"
46 #include "sim/eventq.hh"
47 #include "sim/sim_object.hh"
48
49 class TapEvent;
50 class TapListener;
51 class EtherTapInt;
52
53 /*
54 * Interface to connect a simulated ethernet device to the real world
55 */
56 class EtherTap : public EtherObject
57 {
58 protected:
59 friend class TapEvent;
60 TapEvent *event;
61
62 protected:
63 friend class TapListener;
64 TapListener *listener;
65 int socket;
66 char *buffer;
67 int buflen;
68 int32_t buffer_offset;
69 int32_t data_len;
70
71 EtherDump *dump;
72
73 void attach(int fd);
74 void detach();
75
76 protected:
77 std::string device;
78 std::queue<EthPacketPtr> packetBuffer;
79 EtherTapInt *interface;
80
81 void process(int revent);
82 void enqueue(EthPacketData *packet);
83 void retransmit();
84
85 /*
86 */
87 class TxEvent : public Event
88 {
89 protected:
90 EtherTap *tap;
91
92 public:
93 TxEvent(EtherTap *_tap)
94 : Event(&mainEventQueue), tap(_tap) {}
95 void process() { tap->retransmit(); }
96 virtual const char *description() const
97 { return "EtherTap retransmit"; }
98 };
99
100 friend class TxEvent;
101 TxEvent txEvent;
102
103 public:
104 typedef EtherTapParams Params;
105 EtherTap(const Params *p);
106 virtual ~EtherTap();
107
108 const Params *
109 params() const
110 {
111 return dynamic_cast<const Params *>(_params);
112 }
113
114 virtual EtherInt *getEthPort(const std::string &if_name, int idx);
115
116 virtual bool recvPacket(EthPacketPtr packet);
117 virtual void sendDone();
118
119 virtual void serialize(std::ostream &os);
120 virtual void unserialize(Checkpoint *cp, const std::string &section);
121 };
122
123 class EtherTapInt : public EtherInt
124 {
125 private:
126 EtherTap *tap;
127 public:
128 EtherTapInt(const std::string &name, EtherTap *t)
129 : EtherInt(name), tap(t)
130 { }
131
132 virtual bool recvPacket(EthPacketPtr pkt) { return tap->recvPacket(pkt); }
133 virtual void sendDone() { tap->sendDone(); }
134 };
135
136
137 #endif // __ETHERTAP_HH__