gem5  v21.0.0.0
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
vncserver.cc
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2010, 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 
42 #include <sys/ioctl.h>
43 #include <sys/stat.h>
44 
45 #if defined(__FreeBSD__)
46 #include <termios.h>
47 
48 #else
49 #include <sys/termios.h>
50 
51 #endif
52 #include "base/vnc/vncserver.hh"
53 
54 #include <fcntl.h>
55 #include <poll.h>
56 #include <sys/types.h>
57 #include <unistd.h>
58 
59 #include <cerrno>
60 #include <cstddef>
61 #include <cstdio>
62 
63 #include "base/atomicio.hh"
64 #include "base/logging.hh"
65 #include "base/output.hh"
66 #include "base/socket.hh"
67 #include "base/trace.hh"
68 #include "debug/VNC.hh"
69 #include "sim/byteswap.hh"
70 #include "sim/core.hh"
71 
73  4, // 4 bytes / pixel
74  16, 8, 0, // R in [23, 16], G in [15, 8], B in [7, 0]
75  8, 8, 8, // 8 bits / channel
76  ByteOrder::little);
77 
86  : PollEvent(fd, e), vncserver(vs)
87 {
88 }
89 
90 void
92 {
93  vncserver->accept();
94 }
95 
100  : PollEvent(fd, e), vncserver(vs)
101 {
102 }
103 
104 void
106 {
107  if (revent & POLLIN)
108  vncserver->data();
109  else if (revent & POLLNVAL)
110  vncserver->detach();
111 }
112 
117  : VncInput(p), listenEvent(NULL), dataEvent(NULL), number(p.number),
118  dataFd(-1), sendUpdate(false),
119  supportsRawEnc(false), supportsResizeEnc(false)
120 {
121  if (p.port)
122  listen(p.port);
123 
125 
126  // We currently only support one pixel format. Extract the pixel
127  // representation from our PixelConverter instance and keep it
128  // around for telling the client and making sure it cooperates
131  pixelFormat.bigendian = pixelConverter.byte_order == ByteOrder::big;
139 
140  DPRINTF(VNC, "Vnc server created at port %d\n", p.port);
141 }
142 
144 {
145  if (dataFd != -1)
146  ::close(dataFd);
147 
148  if (listenEvent)
149  delete listenEvent;
150 
151  if (dataEvent)
152  delete dataEvent;
153 }
154 
155 
156 //socket creation and vnc client attach
157 void
159 {
161  warn_once("Sockets disabled, not accepting vnc client connections");
162  return;
163  }
164 
165  while (!listener.listen(port, true)) {
166  DPRINTF(VNC,
167  "can't bind address vnc server port %d in use PID %d\n",
168  port, getpid());
169  port++;
170  }
171 
172  ccprintf(std::cerr, "%s: Listening for connections on port %d\n",
173  name(), port);
174 
175  listenEvent = new ListenEvent(this, listener.getfd(), POLLIN);
177 }
178 
179 // attach a vnc client
180 void
182 {
183  // As a consequence of being called from the PollQueue, we might
184  // have been called from a different thread. Migrate to "our"
185  // thread.
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 (fd < 0) {
193  warn("%s: failed to accept VNC connection!", name());
194  return;
195  }
196 
197  if (dataFd != -1) {
198  char message[] = "vnc server already attached!\n";
199  atomic_write(fd, message, sizeof(message));
200  ::close(fd);
201  return;
202  }
203 
204  dataFd = fd;
205 
206  // Send our version number to the client
207  write((uint8_t *)vncVersion(), strlen(vncVersion()));
208 
209  // read the client response
210  dataEvent = new DataEvent(this, dataFd, POLLIN);
212 
213  inform("VNC client attached\n");
214 }
215 
216 // data called by data event
217 void
219 {
220  // We have new data, see if we can handle it
221  DPRINTF(VNC, "Vnc client message recieved\n");
222 
223  switch (curState) {
226  break;
228  checkSecurity();
229  break;
230  case WaitForClientInit:
231  // Don't care about shared, just need to read it out of the socket
232  uint8_t shared;
233  if (!read(&shared))
234  return;
235 
236  // Send our idea of the frame buffer
237  sendServerInit();
238 
239  break;
240  case NormalPhase:
241  uint8_t message_type;
242  if (!read(&message_type))
243  return;
244 
245  switch (message_type) {
247  setPixelFormat();
248  break;
249  case ClientSetEncodings:
250  setEncodings();
251  break;
253  requestFbUpdate();
254  break;
255  case ClientKeyEvent:
257  break;
258  case ClientPointerEvent:
260  break;
261  case ClientCutText:
262  recvCutText();
263  break;
264  default:
265  warn("Unimplemented message type recv from client: %d\n",
266  message_type);
267  detach();
268  break;
269  }
270  break;
271  default:
272  panic("Unknown vnc server state\n");
273  }
274 }
275 
276 
277 // read from socket
278 bool
279 VncServer::read(uint8_t *buf, size_t len)
280 {
281  if (dataFd < 0)
282  panic("vnc not properly attached.\n");
283 
284  size_t ret;
285  do {
286  ret = ::read(dataFd, buf, len);
287  } while (ret == -1 && errno == EINTR);
288 
289 
290  if (ret != len) {
291  DPRINTF(VNC, "Read failed %d.\n", ret);
292  detach();
293  return false;
294  }
295 
296  return true;
297 }
298 
299 bool
300 VncServer::read1(uint8_t *buf, size_t len)
301 {
302  return read(buf + 1, len - 1);
303 }
304 
305 
306 template<typename T>
307 bool
309 {
310  return read((uint8_t *)val, sizeof(T));
311 }
312 
313 // write to socket
314 bool
315 VncServer::write(const uint8_t *buf, size_t len)
316 {
317  if (dataFd < 0)
318  panic("Vnc client not properly attached.\n");
319 
320  ssize_t ret = atomic_write(dataFd, buf, len);
321 
322  if (ret != len) {
323  DPRINTF(VNC, "Write failed.\n");
324  detach();
325  return false;
326  }
327 
328  return true;
329 }
330 
331 template<typename T>
332 bool
334 {
335  return write((uint8_t *)val, sizeof(T));
336 }
337 
338 bool
339 VncServer::write(const char* str)
340 {
341  return write((uint8_t *)str, strlen(str));
342 }
343 
344 // detach a vnc client
345 void
347 {
348  if (dataFd != -1) {
349  ::close(dataFd);
350  dataFd = -1;
351  }
352 
353  if (!dataEvent || !dataEvent->queued())
354  return;
355 
357  delete dataEvent;
358  dataEvent = NULL;
360 
361  inform("VNC client detached\n");
362  DPRINTF(VNC, "detach vnc client %d\n", number);
363 }
364 
365 void
366 VncServer::sendError(const char* error_msg)
367 {
368  uint32_t len = strlen(error_msg);
369  if (!write(&len))
370  return;
371  write(error_msg);
372 }
373 
374 void
376 {
377  assert(curState == WaitForProtocolVersion);
378 
379  M5_VAR_USED size_t len;
380  char version_string[13];
381 
382  // Null terminate the message so it's easier to work with
383  version_string[12] = 0;
384 
385  if (!read((uint8_t *)version_string, sizeof(version_string) - 1)) {
386  warn("Failed to read protocol version.");
387  return;
388  }
389 
390  uint32_t major, minor;
391 
392  // Figure out the major/minor numbers
393  if (sscanf(version_string, "RFB %03d.%03d\n", &major, &minor) != 2) {
394  warn(" Malformed protocol version %s\n", version_string);
395  sendError("Malformed protocol version\n");
396  detach();
397  return;
398  }
399 
400  DPRINTF(VNC, "Client request protocol version %d.%d\n", major, minor);
401 
402  // If it's not 3.X we don't support it
403  if (major != 3 || minor < 2) {
404  warn("Unsupported VNC client version... disconnecting\n");
405  uint8_t err = AuthInvalid;
406  write(&err);
407  detach();
408  return;
409  }
410  // Auth is different based on version number
411  if (minor < 7) {
412  uint32_t sec_type = htobe((uint32_t)AuthNone);
413  if (!write(&sec_type))
414  return;
415  } else {
416  uint8_t sec_cnt = 1;
417  uint8_t sec_type = htobe((uint8_t)AuthNone);
418  if (!write(&sec_cnt) || !write(&sec_type))
419  return;
420  }
421 
422  // Wait for client to respond
424 }
425 
426 void
428 {
430 
431  uint8_t security_type;
432  if (!read(&security_type))
433  return;
434 
435  if (security_type != AuthNone) {
436  warn("Unknown VNC security type\n");
437  sendError("Unknown security type\n");
438  }
439 
440  DPRINTF(VNC, "Sending security auth OK\n");
441 
442  uint32_t success = htobe(VncOK);
443  if (!write(&success))
444  return;
446 }
447 
448 void
450 {
451  ServerInitMsg msg;
452 
453  DPRINTF(VNC, "Sending server init message to client\n");
454 
455  msg.fbWidth = htobe(videoWidth());
456  msg.fbHeight = htobe(videoHeight());
457 
458  msg.px.bpp = htobe(pixelFormat.bpp);
459  msg.px.depth = htobe(pixelFormat.depth);
468  memset(msg.px.padding, 0, 3);
469  msg.namelen = 2;
470  msg.namelen = htobe(msg.namelen);
471  std::memcpy(msg.name, "M5", 2);
472 
473  if (!write(&msg))
474  return;
476 }
477 
478 void
480 {
481  DPRINTF(VNC, "Received pixel format from client message\n");
482 
483  PixelFormatMessage pfm;
484  if (!read1((uint8_t *)&pfm, sizeof(PixelFormatMessage)))
485  return;
486 
487  DPRINTF(VNC, " -- bpp = %d; depth = %d; be = %d\n", pfm.px.bpp,
488  pfm.px.depth, pfm.px.bigendian);
489  DPRINTF(VNC, " -- true color = %d red,green,blue max = %d,%d,%d\n",
490  pfm.px.truecolor, betoh(pfm.px.redmax), betoh(pfm.px.greenmax),
491  betoh(pfm.px.bluemax));
492  DPRINTF(VNC, " -- red,green,blue shift = %d,%d,%d\n", pfm.px.redshift,
493  pfm.px.greenshift, pfm.px.blueshift);
494 
495  if (betoh(pfm.px.bpp) != pixelFormat.bpp ||
496  betoh(pfm.px.depth) != pixelFormat.depth ||
497  betoh(pfm.px.bigendian) != pixelFormat.bigendian ||
498  betoh(pfm.px.truecolor) != pixelFormat.truecolor ||
499  betoh(pfm.px.redmax) != pixelFormat.redmax ||
500  betoh(pfm.px.greenmax) != pixelFormat.greenmax ||
501  betoh(pfm.px.bluemax) != pixelFormat.bluemax ||
502  betoh(pfm.px.redshift) != pixelFormat.redshift ||
503  betoh(pfm.px.greenshift) != pixelFormat.greenshift ||
504  betoh(pfm.px.blueshift) != pixelFormat.blueshift) {
505  warn("VNC client doesn't support true color raw encoding\n");
506  detach();
507  }
508 }
509 
510 void
512 {
513  DPRINTF(VNC, "Received supported encodings from client\n");
514 
516  if (!read1((uint8_t *)&pem, sizeof(PixelEncodingsMessage)))
517  return;
518 
519  pem.num_encodings = betoh(pem.num_encodings);
520 
521  DPRINTF(VNC, " -- %d encoding present\n", pem.num_encodings);
523 
524  for (int x = 0; x < pem.num_encodings; x++) {
525  int32_t encoding;
526  if (!read(&encoding))
527  return;
528  DPRINTF(VNC, " -- supports %d\n", betoh(encoding));
529 
530  switch (betoh(encoding)) {
531  case EncodingRaw:
532  supportsRawEnc = true;
533  break;
534  case EncodingDesktopSize:
535  supportsResizeEnc = true;
536  break;
537  }
538  }
539 
540  if (!supportsRawEnc) {
541  warn("VNC clients must always support raw encoding\n");
542  detach();
543  }
544 }
545 
546 void
548 {
549  DPRINTF(VNC, "Received frame buffer update request from client\n");
550 
552  if (!read1((uint8_t *)&fbr, sizeof(FrameBufferUpdateReq)))
553  return;
554 
555  fbr.x = betoh(fbr.x);
556  fbr.y = betoh(fbr.y);
557  fbr.width = betoh(fbr.width);
558  fbr.height = betoh(fbr.height);
559 
560  DPRINTF(VNC, " -- x = %d y = %d w = %d h = %d\n", fbr.x, fbr.y, fbr.width,
561  fbr.height);
562 
564 }
565 
566 void
568 {
569  DPRINTF(VNC, "Received keyboard input from client\n");
570  KeyEventMessage kem;
571  if (!read1((uint8_t *)&kem, sizeof(KeyEventMessage)))
572  return;
573 
574  kem.key = betoh(kem.key);
575  DPRINTF(VNC, " -- received key code %d (%s)\n", kem.key, kem.down_flag ?
576  "down" : "up");
577 
578  if (keyboard)
579  keyboard->keyPress(kem.key, kem.down_flag);
580 }
581 
582 void
584 {
585  DPRINTF(VNC, "Received pointer input from client\n");
587 
588  if (!read1((uint8_t *)&pem, sizeof(PointerEventMessage)))
589  return;
590 
591  pem.x = betoh(pem.x);
592  pem.y = betoh(pem.y);
593  DPRINTF(VNC, " -- pointer at x = %d y = %d buttons = %#x\n", pem.x, pem.y,
594  pem.button_mask);
595 
596  if (mouse)
597  mouse->mouseAt(pem.x, pem.y, pem.button_mask);
598 }
599 
600 void
602 {
603  DPRINTF(VNC, "Received client copy buffer message\n");
604 
606  if (!read1((uint8_t *)&cct, sizeof(ClientCutTextMessage)))
607  return;
608 
609  char str[1025];
610  size_t data_len = betoh(cct.length);
611  DPRINTF(VNC, "String length %d\n", data_len);
612  while (data_len > 0) {
613  size_t bytes_to_read = data_len > 1024 ? 1024 : data_len;
614  if (!read((uint8_t *)&str, bytes_to_read))
615  return;
616  str[bytes_to_read] = 0;
617  data_len -= bytes_to_read;
618  DPRINTF(VNC, "Buffer: %s\n", str);
619  }
620 
621 }
622 
623 
624 void
626 {
627 
628  if (dataFd <= 0 || curState != NormalPhase || !sendUpdate) {
629  DPRINTF(VNC, "NOT sending framebuffer update\n");
630  return;
631  }
632 
633  // The client will request data constantly, unless we throttle it
634  sendUpdate = false;
635 
636  DPRINTF(VNC, "Sending framebuffer update\n");
637 
638  FrameBufferUpdate fbu;
639  FrameBufferRect fbr;
640 
642  fbu.num_rects = 1;
643  fbr.x = 0;
644  fbr.y = 0;
645  fbr.width = videoWidth();
646  fbr.height = videoHeight();
647  fbr.encoding = EncodingRaw;
648 
649  // fix up endian
650  fbu.num_rects = htobe(fbu.num_rects);
651  fbr.x = htobe(fbr.x);
652  fbr.y = htobe(fbr.y);
653  fbr.width = htobe(fbr.width);
654  fbr.height = htobe(fbr.height);
655  fbr.encoding = htobe(fbr.encoding);
656 
657  // send headers to client
658  if (!write(&fbu) || !write(&fbr))
659  return;
660 
661  assert(fb);
662 
664  for (int y = 0; y < fb->height(); ++y) {
665  // Convert and send a line at a time
666  uint8_t *raw_pixel(line_buffer.data());
667  for (unsigned x = 0; x < fb->width(); ++x) {
668  pixelConverter.fromPixel(raw_pixel, fb->pixel(x, y));
669  raw_pixel += pixelConverter.length;
670  }
671 
672  if (!write(line_buffer.data(), line_buffer.size()))
673  return;
674  }
675 }
676 
677 void
679 {
680  assert(fb && dataFd > 0 && curState == NormalPhase);
681  DPRINTF(VNC, "Sending framebuffer resize\n");
682 
683  FrameBufferUpdate fbu;
684  FrameBufferRect fbr;
685 
687  fbu.num_rects = 1;
688  fbr.x = 0;
689  fbr.y = 0;
690  fbr.width = videoWidth();
691  fbr.height = videoHeight();
693 
694  // fix up endian
695  fbu.num_rects = htobe(fbu.num_rects);
696  fbr.x = htobe(fbr.x);
697  fbr.y = htobe(fbr.y);
698  fbr.width = htobe(fbr.width);
699  fbr.height = htobe(fbr.height);
700  fbr.encoding = htobe(fbr.encoding);
701 
702  // send headers to client
703  if (!write(&fbu))
704  return;
705  write(&fbr);
706 
707  // No actual data is sent in this message
708 }
709 
710 void
712 {
714 
715  sendUpdate = true;
717 }
718 
719 void
721 {
722  if (dataFd > 0 && curState == NormalPhase) {
723  if (supportsResizeEnc)
725  else
726  // The frame buffer changed size and we can't update the client
727  detach();
728  }
729 }
VncInput::PixelFormat::truecolor
uint8_t truecolor
Definition: vncinput.hh:103
VncServer::setEncodings
void setEncodings()
Receive encodings message from client and process it.
Definition: vncserver.cc:511
VncServer::ServerInitMsg::name
char name[2]
Definition: vncserver.hh:114
VncInput::PixelFormatMessage
Definition: vncinput.hh:113
vncserver.hh
VncServer::ServerFrameBufferUpdate
@ ServerFrameBufferUpdate
Definition: vncserver.hh:75
PixelConverter::Channel::mask
unsigned mask
Bit mask (after shifting)
Definition: pixel.hh:120
socket.hh
VncServer::sendError
void sendError(const char *error_msg)
vnc client Interface
Definition: vncserver.cc:366
VncServer::FrameBufferRect::x
uint16_t x
Definition: vncserver.hh:124
VncServer::write
bool write(const uint8_t *buf, size_t len)
Write a buffer to the client.
Definition: vncserver.cc:315
warn
#define warn(...)
Definition: logging.hh:239
ListenSocket::listen
virtual bool listen(int port, bool reuse=true)
Definition: socket.cc:97
VncServer::dataFd
int dataFd
Definition: vncserver.hh:169
VncInput::PixelEncodingsMessage::num_encodings
uint16_t num_encodings
Definition: vncinput.hh:122
VncServer::ServerInitMsg
Definition: vncserver.hh:109
VncServer::supportsResizeEnc
bool supportsResizeEnc
If the vnc client supports the desktop resize command.
Definition: vncserver.hh:200
VncServer::AuthNone
const static uint32_t AuthNone
Definition: vncserver.hh:68
atomicio.hh
PixelConverter
Configurable RGB pixel converter.
Definition: pixel.hh:88
VncServer::read1
bool read1(uint8_t *buf, size_t len)
Read len -1 bytes from the client into the buffer provided + 1 assert that we read enough bytes.
Definition: vncserver.cc:300
VncServer::~VncServer
~VncServer()
Definition: vncserver.cc:143
warn_once
#define warn_once(...)
Definition: logging.hh:243
VncServer::accept
void accept()
Definition: vncserver.cc:181
VncServer::ServerInitMsg::fbHeight
uint16_t fbHeight
Definition: vncserver.hh:111
MipsISA::vs
Bitfield< 9, 5 > vs
Definition: pra_constants.hh:146
VncMouse::mouseAt
virtual void mouseAt(uint16_t x, uint16_t y, uint8_t buttons)=0
called whenever the mouse moves or it's button state changes buttons is a simple mask with each butto...
ArmISA::fd
Bitfield< 14, 12 > fd
Definition: types.hh:159
ListenSocket::accept
virtual int accept(bool nodelay=false)
Definition: socket.cc:146
VncInput::Params
VncInputParams Params
Definition: vncinput.hh:154
VncServer::setDirty
void setDirty() override
The frame buffer uses this call to notify the vnc server that the frame buffer has been updated and a...
Definition: vncserver.cc:711
VncServer::WaitForClientInit
@ WaitForClientInit
Definition: vncserver.hh:104
VncServer::VncOK
const static uint32_t VncOK
Error conditions.
Definition: vncserver.hh:71
std::vector< uint8_t >
VncInput::FrameBufferUpdateReq::x
uint16_t x
Definition: vncinput.hh:128
PollQueue::schedule
void schedule(PollEvent *event)
Definition: pollevent.cc:157
VncInput::PixelFormat::bpp
uint8_t bpp
Definition: vncinput.hh:100
PixelConverter::ch_g
Channel ch_g
Green channel conversion helper.
Definition: pixel.hh:193
FrameBuffer::pixel
const Pixel & pixel(unsigned x, unsigned y) const
Get a pixel from an (x, y) coordinate.
Definition: framebuffer.hh:157
VncInput::PixelFormat::greenmax
uint16_t greenmax
Definition: vncinput.hh:105
PixelConverter::byte_order
ByteOrder byte_order
Byte order when stored to memory.
Definition: pixel.hh:188
VncServer::DataEvent::DataEvent
DataEvent(VncServer *vs, int fd, int e)
Poll event for the data socket.
Definition: vncserver.cc:99
VncServer::requestFbUpdate
void requestFbUpdate()
Receive message from client asking for updated frame buffer.
Definition: vncserver.cc:547
output.hh
VncInput
Definition: vncinput.hh:85
VncServer::FrameBufferRect::y
uint16_t y
Definition: vncserver.hh:125
VncServer
Definition: vncserver.hh:58
VncInput::PixelFormat::redmax
uint16_t redmax
Definition: vncinput.hh:104
VncInput::setDirty
virtual void setDirty()
The frame buffer uses this call to notify the vnc server that the frame buffer has been updated and a...
Definition: vncinput.cc:90
VncServer::sendFrameBufferResized
void sendFrameBufferResized()
Tell the client that the frame buffer resized.
Definition: vncserver.cc:678
VncInput::PointerEventMessage
Definition: vncinput.hh:141
VncServer::dataEvent
DataEvent * dataEvent
Definition: vncserver.hh:166
VncServer::pixelConverter
static const PixelConverter pixelConverter
Definition: vncserver.hh:303
VncServer::FrameBufferRect::width
uint16_t width
Definition: vncserver.hh:126
VncServer::ListenEvent::process
void process(int revent)
Definition: vncserver.cc:91
VncServer::curState
ConnectionState curState
The rfb prototol state the connection is in.
Definition: vncserver.hh:187
VncServer::FrameBufferUpdate::type
uint8_t type
Definition: vncserver.hh:118
VncInput::PixelFormat::greenshift
uint8_t greenshift
Definition: vncinput.hh:108
pollQueue
PollQueue pollQueue
Definition: pollevent.cc:53
VncServer::DataEvent
friend class DataEvent
Definition: vncserver.hh:165
VncInput::ClientCutTextMessage
Definition: vncinput.hh:148
VncServer::FrameBufferRect::height
uint16_t height
Definition: vncserver.hh:127
VncInput::PixelFormat::padding
uint8_t padding[3]
Definition: vncinput.hh:110
VncServer::sendServerInit
void sendServerInit()
Send client our idea about what the frame buffer looks like.
Definition: vncserver.cc:449
VncInput::FrameBufferUpdateReq
Definition: vncinput.hh:125
VncInput::PixelFormat::depth
uint8_t depth
Definition: vncinput.hh:101
VncInput::KeyEventMessage::key
uint32_t key
Definition: vncinput.hh:138
PixelConverter::length
unsigned length
Bytes per pixel when stored in memory (including padding)
Definition: pixel.hh:180
DPRINTF
#define DPRINTF(x,...)
Definition: trace.hh:237
ListenSocket::getfd
int getfd() const
Definition: socket.hh:72
VncServer::sendUpdate
bool sendUpdate
An update needs to be sent to the client.
Definition: vncserver.hh:191
VncServer::WaitForSecurityResponse
@ WaitForSecurityResponse
Definition: vncserver.hh:103
VncInput::PixelFormat::redshift
uint8_t redshift
Definition: vncinput.hh:107
PixelConverter::depth
unsigned depth
Number of bits used to represent one pixel value (excluding padding).
Definition: pixel.hh:186
VncInput::PixelFormat::blueshift
uint8_t blueshift
Definition: vncinput.hh:109
VncInput::keyboard
VncKeyboard * keyboard
The device to notify when we get key events.
Definition: vncinput.hh:197
VncServer::checkSecurity
void checkSecurity()
Check that the security exchange was successful.
Definition: vncserver.cc:427
ListenSocket::islistening
bool islistening() const
Definition: socket.hh:73
VncServer::recvKeyboardInput
void recvKeyboardInput()
Receive message from client providing new keyboard input.
Definition: vncserver.cc:567
VncServer::sendFrameBufferUpdate
void sendFrameBufferUpdate()
Send a updated frame buffer to the client.
Definition: vncserver.cc:625
VncServer::WaitForProtocolVersion
@ WaitForProtocolVersion
Definition: vncserver.hh:102
VncServer::FrameBufferUpdate
Definition: vncserver.hh:117
RiscvISA::x
Bitfield< 3 > x
Definition: pagetable.hh:70
VncServer::checkProtocolVersion
void checkProtocolVersion()
Check the client's protocol verion for compatibility and send the security types we support.
Definition: vncserver.cc:375
VncServer::FrameBufferRect::encoding
int32_t encoding
Definition: vncserver.hh:128
VncServer::recvPointerInput
void recvPointerInput()
Recv message from client providing new mouse movement or button click.
Definition: vncserver.cc:583
X86ISA::val
Bitfield< 63 > val
Definition: misc.hh:769
PixelConverter::ch_b
Channel ch_b
Blue channel conversion helper.
Definition: pixel.hh:195
core.hh
betoh
T betoh(T value)
Definition: byteswap.hh:144
EventManager::eventQueue
EventQueue * eventQueue() const
Definition: eventq.hh:1007
VncInput::ClientSetEncodings
@ ClientSetEncodings
Definition: vncinput.hh:92
VncKeyboard::keyPress
virtual void keyPress(uint32_t key, bool down)=0
Called when the vnc server receives a key press event from the client.
VncServer::AuthInvalid
const static uint32_t AuthInvalid
Authentication modes.
Definition: vncserver.hh:67
VncInput::ClientPointerEvent
@ ClientPointerEvent
Definition: vncinput.hh:95
VncServer::FrameBufferUpdate::num_rects
uint16_t num_rects
Definition: vncserver.hh:120
VncServer::supportsRawEnc
bool supportsRawEnc
If the vnc client supports receiving raw data.
Definition: vncserver.hh:197
VncInput::PixelFormat::bluemax
uint16_t bluemax
Definition: vncinput.hh:106
VncServer::EncodingDesktopSize
@ EncodingDesktopSize
Definition: vncserver.hh:86
PollEvent::queued
bool queued()
Definition: pollevent.hh:70
ArmISA::e
Bitfield< 9 > e
Definition: miscregs_types.hh:61
VncInput::ClientCutText
@ ClientCutText
Definition: vncinput.hh:96
SimObject::name
virtual const std::string name() const
Definition: sim_object.hh:182
VncServer::ServerInitMsg::px
PixelFormat px
Definition: vncserver.hh:112
VncInput::PixelEncodingsMessage
Definition: vncinput.hh:119
VncInput::videoWidth
uint16_t videoWidth() const
What is the width of the screen we're displaying.
Definition: vncinput.hh:181
VncServer::number
int number
Definition: vncserver.hh:168
ListenSocket::allDisabled
static bool allDisabled()
Definition: socket.cc:68
VncServer::setPixelFormat
void setPixelFormat()
Receive pixel foramt message from client and process it.
Definition: vncserver.cc:479
EventQueue::ScopedMigration
Definition: eventq.hh:669
PixelConverter::Channel::offset
unsigned offset
Offset in bits.
Definition: pixel.hh:118
VncServer::DataEvent::process
void process(int revent)
Definition: vncserver.cc:105
PixelConverter::ch_r
Channel ch_r
Red channel conversion helper.
Definition: pixel.hh:191
inform
#define inform(...)
Definition: logging.hh:240
VncServer::FrameBufferRect
Definition: vncserver.hh:123
VncServer::recvCutText
void recvCutText()
Receive message from client that there is text in it's paste buffer.
Definition: vncserver.cc:601
PollQueue::remove
void remove(PollEvent *event)
Definition: pollevent.cc:137
VncServer::ListenEvent
friend class ListenEvent
Definition: vncserver.hh:151
VncServer::ServerInitMsg::fbWidth
uint16_t fbWidth
Definition: vncserver.hh:110
htobe
T htobe(T value)
Definition: byteswap.hh:143
VncServer::vncVersion
const char * vncVersion() const
Definition: vncserver.hh:96
ArmISA::len
Bitfield< 18, 16 > len
Definition: miscregs_types.hh:439
VncServer::frameBufferResized
void frameBufferResized() override
Definition: vncserver.cc:720
VncServer::listenEvent
ListenEvent * listenEvent
Definition: vncserver.hh:152
ccprintf
void ccprintf(cp::Print &print)
Definition: cprintf.hh:127
VncServer::ListenEvent::ListenEvent
ListenEvent(VncServer *vs, int fd, int e)
Poll event for the listen socket.
Definition: vncserver.cc:85
VncInput::fb
const FrameBuffer * fb
pointer to the actual data that is stored in the frame buffer device
Definition: vncinput.hh:206
VncInput::ClientSetPixelFormat
@ ClientSetPixelFormat
Definition: vncinput.hh:91
logging.hh
VncServer::ServerInitMsg::namelen
uint32_t namelen
Definition: vncserver.hh:113
VncInput::PixelFormat::bigendian
uint8_t bigendian
Definition: vncinput.hh:102
VncServer::detach
void detach()
Definition: vncserver.cc:346
VncServer::pixelFormat
PixelFormat pixelFormat
The one and only pixel format we support.
Definition: vncserver.hh:194
VncServer::EncodingRaw
@ EncodingRaw
Definition: vncserver.hh:83
atomic_write
ssize_t atomic_write(int fd, const void *s, size_t n)
Definition: atomicio.cc:64
trace.hh
FrameBuffer::width
unsigned width() const
Frame buffer width in pixels.
Definition: framebuffer.hh:96
ArmISA::err
Bitfield< 6 > err
Definition: miscregs_types.hh:744
PollEvent
Definition: pollevent.hh:41
VncInput::videoHeight
uint16_t videoHeight() const
What is the height of the screen we're displaying.
Definition: vncinput.hh:188
MipsISA::p
Bitfield< 0 > p
Definition: pra_constants.hh:323
FrameBuffer::height
unsigned height() const
Frame buffer height in pixels.
Definition: framebuffer.hh:98
VncInput::ClientKeyEvent
@ ClientKeyEvent
Definition: vncinput.hh:94
VncServer::listener
ListenSocket listener
Definition: vncserver.hh:171
VncInput::mouse
VncMouse * mouse
The device to notify when we get mouse events.
Definition: vncinput.hh:203
VncServer::NormalPhase
@ NormalPhase
Definition: vncserver.hh:106
ArmISA::encoding
Bitfield< 27, 25 > encoding
Definition: types.hh:99
VncServer::data
void data()
Definition: vncserver.cc:218
VncServer::VncServer
VncServer(const Params &p)
VncServer.
Definition: vncserver.cc:116
VncServer::listen
void listen(int port)
Definition: vncserver.cc:158
VncServer::read
bool read(uint8_t *buf, size_t len)
Read some data from the client.
Definition: vncserver.cc:279
VncInput::ClientFrameBufferUpdate
@ ClientFrameBufferUpdate
Definition: vncinput.hh:93
byteswap.hh
VncInput::PointerEventMessage::x
uint16_t x
Definition: vncinput.hh:144
VncInput::KeyEventMessage
Definition: vncinput.hh:134
panic
#define panic(...)
This implements a cprintf based panic() function.
Definition: logging.hh:171
PixelConverter::fromPixel
uint32_t fromPixel(const Pixel &pixel) const
Convert a Pixel into a color word.
Definition: pixel.hh:146

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