gem5  v21.0.1.0
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
terminal.cc
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2019 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  * Copyright (c) 2001-2005 The Regents of The University of Michigan
15  * All rights reserved.
16  *
17  * Redistribution and use in source and binary forms, with or without
18  * modification, are permitted provided that the following conditions are
19  * met: redistributions of source code must retain the above copyright
20  * notice, this list of conditions and the following disclaimer;
21  * redistributions in binary form must reproduce the above copyright
22  * notice, this list of conditions and the following disclaimer in the
23  * documentation and/or other materials provided with the distribution;
24  * neither the name of the copyright holders nor the names of its
25  * contributors may be used to endorse or promote products derived from
26  * this software without specific prior written permission.
27  *
28  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
29  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
30  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
31  * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
32  * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
33  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
34  * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
35  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
36  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
37  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
38  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
39  */
40 
41 /* @file
42  * Implements the user interface to a serial terminal
43  */
44 
45 #include <sys/ioctl.h>
46 
47 #if defined(__FreeBSD__)
48 #include <termios.h>
49 
50 #else
51 #include <sys/termios.h>
52 
53 #endif
54 #include "dev/serial/terminal.hh"
55 
56 #include <poll.h>
57 #include <unistd.h>
58 
59 #include <cctype>
60 #include <cerrno>
61 #include <fstream>
62 #include <iostream>
63 #include <sstream>
64 #include <string>
65 
66 #include "base/atomicio.hh"
67 #include "base/logging.hh"
68 #include "base/output.hh"
69 #include "base/socket.hh"
70 #include "base/trace.hh"
71 #include "debug/Terminal.hh"
72 #include "debug/TerminalVerbose.hh"
73 #include "dev/platform.hh"
74 #include "dev/serial/uart.hh"
75 
76 /*
77  * Poll event for the listen socket
78  */
80  : PollEvent(fd, e), term(t)
81 {
82 }
83 
84 void
86 {
87  term->accept();
88 }
89 
90 /*
91  * Poll event for the data socket
92  */
94  : PollEvent(fd, e), term(t)
95 {
96 }
97 
98 void
100 {
101  // As a consequence of being called from the PollQueue, we might
102  // have been called from a different thread. Migrate to "our"
103  // thread.
104  EventQueue::ScopedMigration migrate(term->eventQueue());
105 
106  if (revent & POLLIN)
107  term->data();
108  else if (revent & POLLNVAL)
109  term->detach();
110 }
111 
112 /*
113  * Terminal code
114  */
116  : SerialDevice(p), listenEvent(NULL), dataEvent(NULL),
117  number(p.number), data_fd(-1), txbuf(16384), rxbuf(16384),
119 #if TRACING_ON == 1
120  , linebuf(16384)
121 #endif
122 {
123  if (outfile)
124  outfile->stream()->setf(std::ios::unitbuf);
125 
126  if (p.port)
127  listen(p.port);
128 }
129 
131 {
132  if (data_fd != -1)
133  ::close(data_fd);
134 
135  if (listenEvent)
136  delete listenEvent;
137 
138  if (dataEvent)
139  delete dataEvent;
140 }
141 
142 OutputStream *
143 Terminal::terminalDump(const TerminalParams &p)
144 {
145  switch (p.outfile) {
146  case TerminalDump::none:
147  return nullptr;
148  case TerminalDump::stdoutput:
149  return simout.findOrCreate("stdout");
150  case TerminalDump::stderror:
151  return simout.findOrCreate("stderr");
152  case TerminalDump::file:
153  return simout.findOrCreate(p.name);
154  default:
155  panic("Invalid option\n");
156  }
157 }
158 
160 // socket creation and terminal attach
161 //
162 
163 void
165 {
167  warn_once("Sockets disabled, not accepting terminal connections");
168  return;
169  }
170 
171  while (!listener.listen(port, true)) {
173  ": can't bind address terminal port %d inuse PID %d\n",
174  port, getpid());
175  port++;
176  }
177 
178  ccprintf(std::cerr, "%s: Listening for connections on port %d\n",
179  name(), port);
180 
181  listenEvent = new ListenEvent(this, listener.getfd(), POLLIN);
183 }
184 
185 void
187 {
188  if (!listener.islistening())
189  panic("%s: cannot accept a connection if not listening!", name());
190 
191  int fd = listener.accept(true);
192  if (data_fd != -1) {
193  char message[] = "terminal already attached!\n";
194  atomic_write(fd, message, sizeof(message));
195  ::close(fd);
196  return;
197  }
198 
199  data_fd = fd;
200  dataEvent = new DataEvent(this, data_fd, POLLIN);
202 
203  std::stringstream stream;
204  ccprintf(stream, "==== m5 terminal: Terminal %d ====", number);
205 
206  // we need an actual carriage return followed by a newline for the
207  // terminal
208  stream << "\r\n";
209 
210  write((const uint8_t *)stream.str().c_str(), stream.str().size());
211 
212  DPRINTFN("attach terminal %d\n", number);
213  char buf[1024];
214  for (size_t i = 0; i < txbuf.size(); i += sizeof(buf)) {
215  const size_t chunk_len(std::min(txbuf.size() - i, sizeof(buf)));
216  txbuf.peek(buf, i, chunk_len);
217  write((const uint8_t *)buf, chunk_len);
218  }
219 }
220 
221 void
223 {
224  if (data_fd != -1) {
225  ::close(data_fd);
226  data_fd = -1;
227  }
228 
230  delete dataEvent;
231  dataEvent = NULL;
232 
233  DPRINTFN("detach terminal %d\n", number);
234 }
235 
236 void
238 {
239  uint8_t buf[1024];
240  int len;
241 
242  len = read(buf, sizeof(buf));
243  if (len) {
244  rxbuf.write((char *)buf, len);
245  notifyInterface();
246  }
247 }
248 
249 size_t
250 Terminal::read(uint8_t *buf, size_t len)
251 {
252  if (data_fd < 0)
253  panic("Terminal not properly attached.\n");
254 
255  ssize_t ret;
256  do {
257  ret = ::read(data_fd, buf, len);
258  } while (ret == -1 && errno == EINTR);
259 
260 
261  if (ret < 0)
262  DPRINTFN("Read failed.\n");
263 
264  if (ret <= 0) {
265  detach();
266  return 0;
267  }
268 
269  return ret;
270 }
271 
272 // Terminal output.
273 size_t
274 Terminal::write(const uint8_t *buf, size_t len)
275 {
276  if (data_fd < 0)
277  panic("Terminal not properly attached.\n");
278 
279  ssize_t ret = atomic_write(data_fd, buf, len);
280  if (ret < len)
281  detach();
282 
283  return ret;
284 }
285 
286 #define MORE_PENDING (ULL(1) << 61)
287 #define RECEIVE_SUCCESS (ULL(0) << 62)
288 #define RECEIVE_NONE (ULL(2) << 62)
289 #define RECEIVE_ERROR (ULL(3) << 62)
290 
291 uint8_t
293 {
294  uint8_t c;
295 
296  assert(!rxbuf.empty());
297  rxbuf.read((char *)&c, 1);
298 
299  DPRINTF(TerminalVerbose, "in: \'%c\' %#02x more: %d\n",
300  isprint(c) ? c : ' ', c, !rxbuf.empty());
301 
302  return c;
303 }
304 
305 uint64_t
307 {
308  uint64_t value;
309 
310  if (dataAvailable()) {
311  value = RECEIVE_SUCCESS | readData();
312  if (!rxbuf.empty())
313  value |= MORE_PENDING;
314  } else {
315  value = RECEIVE_NONE;
316  }
317 
318  DPRINTF(TerminalVerbose, "console_in: return: %#x\n", value);
319 
320  return value;
321 }
322 
323 void
325 {
326 #if TRACING_ON == 1
327  if (DTRACE(Terminal)) {
328  static char last = '\0';
329 
330  if ((c != '\n' && c != '\r') || (last != '\n' && last != '\r')) {
331  if (c == '\n' || c == '\r') {
332  int size = linebuf.size();
333  char *buffer = new char[size + 1];
334  linebuf.read(buffer, size);
335  buffer[size] = '\0';
336  DPRINTF(Terminal, "%s\n", buffer);
337  delete [] buffer;
338  } else {
339  linebuf.write(&c, 1);
340  }
341  }
342 
343  last = c;
344  }
345 #endif
346 
347  txbuf.write(&c, 1);
348 
349  if (data_fd >= 0)
350  write(c);
351 
352  if (outfile)
353  outfile->stream()->put((char)c);
354 
355  DPRINTF(TerminalVerbose, "out: \'%c\' %#02x\n",
356  isprint(c) ? c : ' ', (int)c);
357 
358 }
Terminal::ListenEvent
friend class ListenEvent
Definition: terminal.hh:74
Terminal::console_in
uint64_t console_in()
Definition: terminal.cc:306
socket.hh
Terminal::Params
TerminalParams Params
Definition: terminal.hh:95
ListenSocket::listen
virtual bool listen(int port, bool reuse=true)
Definition: socket.cc:97
atomicio.hh
warn_once
#define warn_once(...)
Definition: logging.hh:243
ArmISA::i
Bitfield< 7 > i
Definition: miscregs_types.hh:63
RECEIVE_SUCCESS
#define RECEIVE_SUCCESS
Definition: terminal.cc:287
ArmISA::fd
Bitfield< 14, 12 > fd
Definition: types.hh:159
Terminal::accept
void accept()
Definition: terminal.cc:186
Terminal::~Terminal
~Terminal()
Definition: terminal.cc:130
ListenSocket::accept
virtual int accept(bool nodelay=false)
Definition: socket.cc:146
Terminal::detach
void detach()
Definition: terminal.cc:222
Terminal::dataEvent
DataEvent * dataEvent
Definition: terminal.hh:88
DTRACE
#define DTRACE(x)
Definition: debug.hh:156
PollQueue::schedule
void schedule(PollEvent *event)
Definition: pollevent.cc:157
terminal.hh
CircleBuf::size
size_t size() const
Definition: circlebuf.hh:69
Terminal::listenEvent
ListenEvent * listenEvent
Definition: terminal.hh:75
output.hh
Terminal::read
void read(uint8_t &c)
Definition: terminal.hh:120
RECEIVE_NONE
#define RECEIVE_NONE
Definition: terminal.cc:288
Stats::none
const FlagsType none
Nothing extra to print.
Definition: info.hh:44
Terminal::data_fd
int data_fd
Definition: terminal.hh:92
Terminal::writeData
void writeData(uint8_t c) override
Transmit a character from the host interface to the device.
Definition: terminal.cc:324
CircleBuf::empty
bool empty() const
Definition: circlebuf.hh:68
Terminal::listen
void listen(int port)
Definition: terminal.cc:164
Terminal::dataAvailable
bool dataAvailable() const override
Check if there is pending data from the serial device.
Definition: terminal.hh:129
Terminal::Terminal
Terminal(const Params &p)
Definition: terminal.cc:115
OutputDirectory::findOrCreate
OutputStream * findOrCreate(const std::string &name, bool binary=false)
Definition: output.cc:259
pollQueue
PollQueue pollQueue
Definition: pollevent.cc:53
Terminal::ListenEvent::ListenEvent
ListenEvent(Terminal *t, int fd, int e)
Definition: terminal.cc:79
OutputStream::stream
std::ostream * stream() const
Get the output underlying output stream.
Definition: output.hh:59
DPRINTF
#define DPRINTF(x,...)
Definition: trace.hh:237
ListenSocket::getfd
int getfd() const
Definition: socket.hh:72
uart.hh
Terminal::write
void write(uint8_t c)
Definition: terminal.hh:122
ListenSocket::islistening
bool islistening() const
Definition: socket.hh:73
Terminal::DataEvent
friend class DataEvent
Definition: terminal.hh:87
Terminal::ListenEvent::process
void process(int revent)
Definition: terminal.cc:85
platform.hh
Terminal::txbuf
CircleBuf< char > txbuf
Definition: terminal.hh:107
Terminal::DataEvent::DataEvent
DataEvent(Terminal *t, int fd, int e)
Definition: terminal.cc:93
CircleBuf::write
void write(InputIterator in, size_t len)
Add elements to the end of the ring buffers and advance.
Definition: circlebuf.hh:155
SerialDevice::notifyInterface
void notifyInterface()
Notify the host interface of pending data.
Definition: serial.cc:64
CircleBuf::peek
void peek(OutputIterator out, size_t len) const
Copy buffer contents without advancing the read pointer.
Definition: circlebuf.hh:90
ArmISA::e
Bitfield< 9 > e
Definition: miscregs_types.hh:61
Terminal::listener
ListenSocket listener
Definition: terminal.hh:101
CircleBuf::read
void read(OutputIterator out, size_t len)
Copy buffer contents and advance the read pointer.
Definition: circlebuf.hh:137
SimObject::name
virtual const std::string name() const
Definition: sim_object.hh:182
Terminal::outfile
OutputStream * outfile
Definition: terminal.hh:109
ListenSocket::allDisabled
static bool allDisabled()
Definition: socket.cc:68
SerialDevice
Base class for serial devices such as terminals.
Definition: serial.hh:91
EventQueue::ScopedMigration
Definition: eventq.hh:669
PollQueue::remove
void remove(PollEvent *event)
Definition: pollevent.cc:137
ArmISA::t
Bitfield< 5 > t
Definition: miscregs_types.hh:67
Terminal::rxbuf
CircleBuf< char > rxbuf
Definition: terminal.hh:108
OutputStream
Definition: output.hh:53
MORE_PENDING
#define MORE_PENDING
Definition: terminal.cc:286
ArmISA::len
Bitfield< 18, 16 > len
Definition: miscregs_types.hh:439
ccprintf
void ccprintf(cp::Print &print)
Definition: cprintf.hh:127
Terminal::data
void data()
Definition: terminal.cc:237
logging.hh
ArmISA::c
Bitfield< 29 > c
Definition: miscregs_types.hh:50
atomic_write
ssize_t atomic_write(int fd, const void *s, size_t n)
Definition: atomicio.cc:64
trace.hh
DPRINTFN
#define DPRINTFN(...)
Definition: trace.hh:241
PollEvent
Definition: pollevent.hh:41
simout
OutputDirectory simout
Definition: output.cc:59
MipsISA::p
Bitfield< 0 > p
Definition: pra_constants.hh:323
Terminal::readData
uint8_t readData() override
Read a character from the device.
Definition: terminal.cc:292
Terminal::number
int number
Definition: terminal.hh:91
Terminal::DataEvent::process
void process(int revent)
Definition: terminal.cc:99
Terminal::terminalDump
OutputStream * terminalDump(const TerminalParams &p)
Definition: terminal.cc:143
Terminal
Definition: terminal.hh:61
panic
#define panic(...)
This implements a cprintf based panic() function.
Definition: logging.hh:171

Generated on Tue Jun 22 2021 15:28:28 for gem5 by doxygen 1.8.17