gem5  v21.0.0.0
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
tcp_iface.cc
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2015 ARM Limited
3  * All rights reserved
4  *
5  * The license below extends only to copyright in the software and shall
6  * not be construed as granting a license to any other intellectual
7  * property including but not limited to intellectual property relating
8  * to a hardware implementation of the functionality of the software
9  * licensed hereunder. You may use the software subject to the license
10  * terms below provided that you ensure that this notice is replicated
11  * unmodified and in its entirety in all distributions of the software,
12  * modified or unmodified, in source code or in binary form.
13  *
14  * Redistribution and use in source and binary forms, with or without
15  * modification, are permitted provided that the following conditions are
16  * met: redistributions of source code must retain the above copyright
17  * notice, this list of conditions and the following disclaimer;
18  * redistributions in binary form must reproduce the above copyright
19  * notice, this list of conditions and the following disclaimer in the
20  * documentation and/or other materials provided with the distribution;
21  * neither the name of the copyright holders nor the names of its
22  * contributors may be used to endorse or promote products derived from
23  * this software without specific prior written permission.
24  *
25  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
26  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
27  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
28  * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
29  * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
30  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
31  * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
32  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
33  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
34  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
35  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
36  */
37 
38 /* @file
39  * TCP stream socket based interface class implementation for dist-gem5 runs.
40  */
41 
42 #include "dev/net/tcp_iface.hh"
43 
44 #include <arpa/inet.h>
45 #include <netdb.h>
46 #include <netinet/tcp.h>
47 #include <sys/socket.h>
48 #include <sys/types.h>
49 #include <unistd.h>
50 
51 #include <cerrno>
52 #include <cstring>
53 #include <vector>
54 
55 #include "base/trace.hh"
56 #include "base/types.hh"
57 #include "debug/DistEthernet.hh"
58 #include "debug/DistEthernetCmd.hh"
59 #include "sim/core.hh"
60 #include "sim/sim_exit.hh"
61 
62 #if defined(__FreeBSD__)
63 #include <netinet/in.h>
64 
65 #endif
66 
67 // MSG_NOSIGNAL does not exists on OS X
68 #if defined(__APPLE__) || defined(__MACH__)
69 #ifndef MSG_NOSIGNAL
70 #define MSG_NOSIGNAL SO_NOSIGPIPE
71 #endif
72 #endif
73 
76 int TCPIface::fdStatic = -1;
77 bool TCPIface::anyListening = false;
78 
79 TCPIface::TCPIface(std::string server_name, unsigned server_port,
80  unsigned dist_rank, unsigned dist_size,
81  Tick sync_start, Tick sync_repeat,
82  EventManager *em, bool use_pseudo_op, bool is_switch,
83  int num_nodes) :
84  DistIface(dist_rank, dist_size, sync_start, sync_repeat, em, use_pseudo_op,
85  is_switch, num_nodes), serverName(server_name),
86  serverPort(server_port), isSwitch(is_switch), listening(false)
87 {
88  if (is_switch && isPrimary) {
89  while (!listen(serverPort)) {
90  DPRINTF(DistEthernet, "TCPIface(listen): Can't bind port %d\n",
91  serverPort);
92  serverPort++;
93  }
94  inform("tcp_iface listening on port %d", serverPort);
95  // Now accept the first connection requests from each compute node and
96  // store the node info. The compute nodes will then wait for ack
97  // messages. Ack messages will be sent by initTransport() in the
98  // appropriate order to make sure that every compute node is always
99  // connected to the same switch port.
100  NodeInfo ni;
101  for (int i = 0; i < size; i++) {
102  accept();
103  DPRINTF(DistEthernet, "First connection, waiting for link info\n");
104  if (!recvTCP(sock, &ni, sizeof(ni)))
105  panic("Failed to receive link info");
106  nodes.push_back(std::make_pair(ni, sock));
107  }
108  }
109 }
110 
111 bool
113 {
114  if (listening)
115  panic("Socket already listening!");
116 
117  struct sockaddr_in sockaddr;
118  int ret;
119 
120  fdStatic = socket(PF_INET, SOCK_STREAM, IPPROTO_TCP);
121  panic_if(fdStatic < 0, "socket() failed: %s", strerror(errno));
122 
123  sockaddr.sin_family = PF_INET;
124  sockaddr.sin_addr.s_addr = INADDR_ANY;
125  sockaddr.sin_port = htons(port);
126  // finally clear sin_zero
127  memset(&sockaddr.sin_zero, 0, sizeof(sockaddr.sin_zero));
128  ret = ::bind(fdStatic, (struct sockaddr *)&sockaddr, sizeof (sockaddr));
129 
130  if (ret != 0) {
131  if (ret == -1 && errno != EADDRINUSE)
132  panic("ListenSocket(listen): bind() failed!");
133  return false;
134  }
135 
136  if (::listen(fdStatic, 24) == -1) {
137  if (errno != EADDRINUSE)
138  panic("ListenSocket(listen): listen() failed!");
139 
140  return false;
141  }
142 
143  listening = true;
144  anyListening = true;
145  return true;
146 }
147 
148 void
150 {
151  static unsigned cur_rank = 0;
152  static unsigned cur_id = 0;
153  NodeInfo ni;
154 
155  if (isSwitch) {
156  if (cur_id == 0) { // first connection accepted in the ctor already
157  auto const &iface0 =
158  std::find_if(nodes.begin(), nodes.end(),
159  [](const std::pair<NodeInfo, int> &cn) -> bool {
160  return cn.first.rank == cur_rank;
161  });
162  assert(iface0 != nodes.end());
163  assert(iface0->first.distIfaceId == 0);
164  sock = iface0->second;
165  ni = iface0->first;
166  } else { // additional connections from the same compute node
167  accept();
168  DPRINTF(DistEthernet, "Next connection, waiting for link info\n");
169  if (!recvTCP(sock, &ni, sizeof(ni)))
170  panic("Failed to receive link info");
171  assert(ni.rank == cur_rank);
172  assert(ni.distIfaceId == cur_id);
173  }
174  inform("Link okay (iface:%d -> (node:%d, iface:%d))",
175  distIfaceId, ni.rank, ni.distIfaceId);
176  if (ni.distIfaceId < ni.distIfaceNum - 1) {
177  cur_id++;
178  } else {
179  cur_rank++;
180  cur_id = 0;
181  }
182  // send ack
183  ni.distIfaceId = distIfaceId;
184  ni.distIfaceNum = distIfaceNum;
185  sendTCP(sock, &ni, sizeof(ni));
186  } else { // this is not a switch
187  connect();
188  // send link info
189  ni.rank = rank;
190  ni.distIfaceId = distIfaceId;
191  ni.distIfaceNum = distIfaceNum;
192  sendTCP(sock, &ni, sizeof(ni));
193  DPRINTF(DistEthernet, "Connected, waiting for ack (distIfaceId:%d\n",
194  distIfaceId);
195  if (!recvTCP(sock, &ni, sizeof(ni)))
196  panic("Failed to receive ack");
197  assert(ni.rank == rank);
198  inform("Link okay (iface:%d -> switch iface:%d)", distIfaceId,
199  ni.distIfaceId);
200  }
201  sockRegistry.push_back(sock);
202 }
203 
204 void
206 {
207  struct sockaddr_in sockaddr;
208  socklen_t slen = sizeof (sockaddr);
209  sock = ::accept(fdStatic, (struct sockaddr *)&sockaddr, &slen);
210  if (sock != -1) {
211  int i = 1;
212  if (setsockopt(sock, IPPROTO_TCP, TCP_NODELAY, (char *)&i,
213  sizeof(i)) < 0)
214  warn("ListenSocket(accept): setsockopt() TCP_NODELAY failed!");
215  }
216 }
217 
218 void
220 {
221  struct addrinfo addr_hint, *addr_results;
222  int ret;
223 
224  std::string port_str = std::to_string(serverPort);
225 
226  sock = socket(PF_INET, SOCK_STREAM, IPPROTO_TCP);
227  panic_if(sock < 0, "socket() failed: %s", strerror(errno));
228 
229  int fl = 1;
230  if (setsockopt(sock, IPPROTO_TCP, TCP_NODELAY, (char *)&fl, sizeof(fl)) < 0)
231  warn("ConnectSocket(connect): setsockopt() TCP_NODELAY failed!");
232 
233  bzero(&addr_hint, sizeof(addr_hint));
234  addr_hint.ai_family = AF_INET;
235  addr_hint.ai_socktype = SOCK_STREAM;
236  addr_hint.ai_protocol = IPPROTO_TCP;
237 
238  ret = getaddrinfo(serverName.c_str(), port_str.c_str(),
239  &addr_hint, &addr_results);
240  panic_if(ret < 0, "getaddrinf() failed: %s", strerror(errno));
241 
242  DPRINTF(DistEthernet, "Connecting to %s:%s\n",
243  serverName.c_str(), port_str.c_str());
244 
245  ret = ::connect(sock, (struct sockaddr *)(addr_results->ai_addr),
246  addr_results->ai_addrlen);
247  panic_if(ret < 0, "connect() failed: %s", strerror(errno));
248 
249  freeaddrinfo(addr_results);
250 }
251 
253 {
254  M5_VAR_USED int ret;
255 
256  ret = close(sock);
257  assert(ret == 0);
258 }
259 
260 void
261 TCPIface::sendTCP(int sock, const void *buf, unsigned length)
262 {
263  ssize_t ret;
264 
265  ret = ::send(sock, buf, length, MSG_NOSIGNAL);
266  if (ret < 0) {
267  if (errno == ECONNRESET || errno == EPIPE) {
268  exitSimLoop("Message server closed connection, simulation "
269  "is exiting");
270  } else {
271  panic("send() failed: %s", strerror(errno));
272  }
273  }
274  panic_if(ret != length, "send() failed");
275 }
276 
277 bool
278 TCPIface::recvTCP(int sock, void *buf, unsigned length)
279 {
280  ssize_t ret;
281 
282  ret = ::recv(sock, buf, length, MSG_WAITALL );
283  if (ret < 0) {
284  if (errno == ECONNRESET || errno == EPIPE)
285  inform("recv(): %s", strerror(errno));
286  else if (ret < 0)
287  panic("recv() failed: %s", strerror(errno));
288  } else if (ret == 0) {
289  inform("recv(): Connection closed");
290  } else if (ret != length)
291  panic("recv() failed");
292 
293  return (ret == length);
294 }
295 
296 void
298 {
299  sendTCP(sock, &header, sizeof(header));
300  sendTCP(sock, packet->data, packet->length);
301 }
302 
303 void
305 {
306  DPRINTF(DistEthernetCmd, "TCPIface::sendCmd() type: %d\n",
307  static_cast<int>(header.msgType));
308  // Global commands (i.e. sync request) are always sent by the primary
309  // DistIface. The transfer method is simply implemented as point-to-point
310  // messages for now
311  for (auto s: sockRegistry)
312  sendTCP(s, (void*)&header, sizeof(header));
313 }
314 
315 bool
317 {
318  bool ret = recvTCP(sock, &header, sizeof(header));
319  DPRINTF(DistEthernetCmd, "TCPIface::recvHeader() type: %d ret: %d\n",
320  static_cast<int>(header.msgType), ret);
321  return ret;
322 }
323 
324 void
326 {
327  packet = std::make_shared<EthPacketData>(header.dataPacketLength);
328  bool ret = recvTCP(sock, packet->data, header.dataPacketLength);
329  panic_if(!ret, "Error while reading socket");
330  packet->simLength = header.simLength;
331  packet->length = header.dataPacketLength;
332 }
333 
334 void
336 {
337  // We cannot setup the conections in the constructor because the number
338  // of dist interfaces (per process) is unknown until the (simobject) init
339  // phase. That information is necessary for global connection ordering.
341 }
DistIface::distIfaceNum
static unsigned distIfaceNum
Number of DistIface objects (i.e.
Definition: dist_iface.hh:488
TCPIface::~TCPIface
~TCPIface() override
Definition: tcp_iface.cc:252
warn
#define warn(...)
Definition: logging.hh:239
DistIface
The interface class to talk to peer gem5 processes.
Definition: dist_iface.hh:99
TCPIface::listening
bool listening
Definition: tcp_iface.hh:72
ArmISA::i
Bitfield< 7 > i
Definition: miscregs_types.hh:63
TCPIface::sendTCP
void sendTCP(int sock, const void *buf, unsigned length)
Send out a message through a TCP stream socket.
Definition: tcp_iface.cc:261
TCPIface::recvTCP
bool recvTCP(int sock, void *buf, unsigned length)
Receive the next incoming message through a TCP stream socket.
Definition: tcp_iface.cc:278
sc_dt::to_string
const std::string to_string(sc_enc enc)
Definition: sc_fxdefs.cc:91
TCPIface::recvHeader
bool recvHeader(Header &header) override
Receive a header (i.e.
Definition: tcp_iface.cc:316
Tick
uint64_t Tick
Tick count type.
Definition: types.hh:59
header
output header
Definition: nop.cc:36
std::vector
STL vector class.
Definition: stl.hh:37
TCPIface::serverPort
int serverPort
Definition: tcp_iface.hh:68
TCPIface::listen
bool listen(int port)
Definition: tcp_iface.cc:112
sim_exit.hh
DistHeaderPkt::Header
Definition: dist_packet.hh:77
TCPIface::nodes
static std::vector< std::pair< NodeInfo, int > > nodes
Definition: tcp_iface.hh:86
DistIface::size
unsigned size
The number of gem5 processes comprising this dist simulation.
Definition: dist_iface.hh:484
TCPIface::TCPIface
TCPIface(std::string server_name, unsigned server_port, unsigned dist_rank, unsigned dist_size, Tick sync_start, Tick sync_repeat, EventManager *em, bool use_pseudo_op, bool is_switch, int num_nodes)
The ctor creates and connects the stream socket to the server.
Definition: tcp_iface.cc:79
TCPIface::establishConnection
void establishConnection()
Definition: tcp_iface.cc:149
TCPIface::serverName
std::string serverName
Definition: tcp_iface.hh:67
TCPIface::fdStatic
static int fdStatic
Definition: tcp_iface.hh:74
DPRINTF
#define DPRINTF(x,...)
Definition: trace.hh:237
TCPIface::sock
int sock
The stream socket to connect to the server.
Definition: tcp_iface.hh:65
TCPIface::sendCmd
void sendCmd(const Header &header) override
Send out a control command to the remote end.
Definition: tcp_iface.cc:304
DistIface::rank
unsigned rank
The rank of this process among the gem5 peers.
Definition: dist_iface.hh:480
TCPIface::isSwitch
bool isSwitch
Definition: tcp_iface.hh:70
TCPIface::initTransport
void initTransport() override
Init hook for the underlaying transport.
Definition: tcp_iface.cc:335
exitSimLoop
void exitSimLoop(const std::string &message, int exit_code, Tick when, Tick repeat, bool serialize)
Schedule an event to exit the simulation loop (returning to Python) at the end of the current cycle (...
Definition: sim_events.cc:85
X86ISA::em
Bitfield< 2 > em
Definition: misc.hh:602
DistIface::isPrimary
bool isPrimary
Definition: dist_iface.hh:494
std::pair
STL pair class.
Definition: stl.hh:58
TCPIface::sockRegistry
static std::vector< int > sockRegistry
Storage for all opened sockets.
Definition: tcp_iface.hh:90
core.hh
EthPacketPtr
std::shared_ptr< EthPacketData > EthPacketPtr
Definition: etherpkt.hh:87
TCPIface::sendPacket
void sendPacket(const Header &header, const EthPacketPtr &packet) override
Send out a data packet to the remote end.
Definition: tcp_iface.cc:297
panic_if
#define panic_if(cond,...)
Conditional panic macro that checks the supplied condition and only panics if the condition is true a...
Definition: logging.hh:197
TCPIface::NodeInfo
Compute node info and storage for the very first connection from each node (used by the switch)
Definition: tcp_iface.hh:80
inform
#define inform(...)
Definition: logging.hh:240
tcp_iface.hh
types.hh
TCPIface::anyListening
static bool anyListening
Definition: tcp_iface.hh:73
TCPIface::connect
void connect()
Definition: tcp_iface.cc:219
PowerISA::ni
Bitfield< 3 > ni
Definition: miscregs.hh:92
DistIface::distIfaceId
unsigned distIfaceId
Unique id for the dist link.
Definition: dist_iface.hh:492
TCPIface::recvPacket
void recvPacket(const Header &header, EthPacketPtr &packet) override
Receive a packet from the remote end.
Definition: tcp_iface.cc:325
EventManager
Definition: eventq.hh:984
trace.hh
ArmISA::s
Bitfield< 4 > s
Definition: miscregs_types.hh:556
TCPIface::accept
void accept()
Definition: tcp_iface.cc:205
panic
#define panic(...)
This implements a cprintf based panic() function.
Definition: logging.hh:171

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