gem5  v20.0.0.3
socket.cc
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2020 The Regents of the University of California
3  * All rights reserved
4  *
5  * Copyright (c) 2002-2005 The Regents of The University of Michigan
6  * All rights reserved.
7  *
8  * Redistribution and use in source and binary forms, with or without
9  * modification, are permitted provided that the following conditions are
10  * met: redistributions of source code must retain the above copyright
11  * notice, this list of conditions and the following disclaimer;
12  * redistributions in binary form must reproduce the above copyright
13  * notice, this list of conditions and the following disclaimer in the
14  * documentation and/or other materials provided with the distribution;
15  * neither the name of the copyright holders nor the names of its
16  * contributors may be used to endorse or promote products derived from
17  * this software without specific prior written permission.
18  *
19  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
20  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
21  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
22  * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
23  * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
24  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
25  * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
26  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
27  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
28  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
29  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
30  */
31 
32 #include "base/socket.hh"
33 
34 #include <netinet/in.h>
35 #include <netinet/tcp.h>
36 #include <sys/socket.h>
37 #include <sys/types.h>
38 #include <unistd.h>
39 
40 #include <cerrno>
41 
42 #include "base/logging.hh"
43 #include "base/types.hh"
44 #include "sim/byteswap.hh"
45 
46 using namespace std;
47 
49 bool ListenSocket::anyListening = false;
50 
51 bool ListenSocket::bindToLoopback = false;
52 
53 void
55 {
56  listeningDisabled = false;
57  anyListening = false;
58  bindToLoopback = false;
59 }
60 
61 void
63 {
64  if (anyListening)
65  panic("Too late to disable all listeners, already have a listener");
66  listeningDisabled = true;
67 }
68 
69 bool
71 {
72  return listeningDisabled;
73 }
74 
75 void
77 {
78  if (anyListening)
79  panic("Too late to bind to loopback, already have a listener");
80  bindToLoopback = true;
81 }
82 
84 //
85 //
86 
88  : listening(false), fd(-1)
89 {}
90 
92 {
93  if (fd != -1)
94  close(fd);
95 }
96 
97 // Create a socket and configure it for listening
98 bool
99 ListenSocket::listen(int port, bool reuse)
100 {
101  if (listening)
102  panic("Socket already listening!");
103 
104  fd = ::socket(PF_INET, SOCK_STREAM, 0);
105  if (fd < 0)
106  panic("Can't create socket:%s !", strerror(errno));
107 
108  if (reuse) {
109  int i = 1;
110  if (::setsockopt(fd, SOL_SOCKET, SO_REUSEADDR, (char *)&i,
111  sizeof(i)) < 0)
112  panic("ListenSocket(listen): setsockopt() SO_REUSEADDR failed!");
113  }
114 
115  struct sockaddr_in sockaddr;
116  sockaddr.sin_family = PF_INET;
117  sockaddr.sin_addr.s_addr =
118  htobe<in_addr_t>(bindToLoopback ? INADDR_LOOPBACK : INADDR_ANY);
119  sockaddr.sin_port = htons(port);
120  // finally clear sin_zero
121  memset(&sockaddr.sin_zero, 0, sizeof(sockaddr.sin_zero));
122  int ret = ::bind(fd, (struct sockaddr *)&sockaddr, sizeof (sockaddr));
123  if (ret != 0) {
124  if (ret == -1 && errno != EADDRINUSE)
125  panic("ListenSocket(listen): bind() failed!");
126  return false;
127  }
128 
129  if (::listen(fd, 1) == -1) {
130  if (errno != EADDRINUSE)
131  panic("ListenSocket(listen): listen() failed!");
132 
133  return false;
134  }
135 
136  listening = true;
137  anyListening = true;
138  return true;
139 }
140 
141 
142 // Open a connection. Accept will block, so if you don't want it to,
143 // make sure a connection is ready before you call accept.
144 int
145 ListenSocket::accept(bool nodelay)
146 {
147  struct sockaddr_in sockaddr;
148  socklen_t slen = sizeof (sockaddr);
149  int sfd = ::accept(fd, (struct sockaddr *)&sockaddr, &slen);
150  if (sfd != -1 && nodelay) {
151  int i = 1;
152  if (::setsockopt(sfd, IPPROTO_TCP, TCP_NODELAY, (char *)&i,
153  sizeof(i)) < 0)
154  warn("ListenSocket(accept): setsockopt() TCP_NODELAY failed!");
155  }
156 
157  return sfd;
158 }
#define panic(...)
This implements a cprintf based panic() function.
Definition: logging.hh:163
virtual ~ListenSocket()
Definition: socket.cc:91
virtual bool listen(int port, bool reuse=true)
Definition: socket.cc:99
Bitfield< 7 > i
ListenSocket()
Definition: socket.cc:87
Overload hash function for BasicBlockRange type.
Definition: vec_reg.hh:587
static bool bindToLoopback
Definition: socket.hh:38
static bool allDisabled()
Definition: socket.cc:70
static void loopbackOnly()
Definition: socket.cc:76
virtual int accept(bool nodelay=false)
Definition: socket.cc:145
static bool anyListening
Definition: socket.hh:36
Defines global host-dependent types: Counter, Tick, and (indirectly) {int,uint}{8,16,32,64}_t.
static void disableAll()
Definition: socket.cc:62
bool listening
Definition: socket.hh:47
#define warn(...)
Definition: logging.hh:208
static bool listeningDisabled
Definition: socket.hh:35
static void cleanup()
Definition: socket.cc:54
Bitfield< 14, 12 > fd
Definition: types.hh:158

Generated on Fri Jul 3 2020 15:52:59 for gem5 by doxygen 1.8.13