You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

CConn.cxx 19KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694
  1. /* Copyright (C) 2002-2005 RealVNC Ltd. All Rights Reserved.
  2. * Copyright (C) 2011 D. R. Commander. All Rights Reserved.
  3. * Copyright 2009-2014 Pierre Ossman for Cendio AB
  4. *
  5. * This is free software; you can redistribute it and/or modify
  6. * it under the terms of the GNU General Public License as published by
  7. * the Free Software Foundation; either version 2 of the License, or
  8. * (at your option) any later version.
  9. *
  10. * This software is distributed in the hope that it will be useful,
  11. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  13. * GNU General Public License for more details.
  14. *
  15. * You should have received a copy of the GNU General Public License
  16. * along with this software; if not, write to the Free Software
  17. * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307,
  18. * USA.
  19. */
  20. #ifdef HAVE_CONFIG_H
  21. #include <config.h>
  22. #endif
  23. #include <assert.h>
  24. #ifndef _WIN32
  25. #include <unistd.h>
  26. #endif
  27. #include <rfb/CMsgWriter.h>
  28. #include <rfb/encodings.h>
  29. #include <rfb/Decoder.h>
  30. #include <rfb/Hostname.h>
  31. #include <rfb/LogWriter.h>
  32. #include <rfb/util.h>
  33. #include <rfb/screenTypes.h>
  34. #include <rfb/fenceTypes.h>
  35. #include <rfb/Timer.h>
  36. #include <rdr/MemInStream.h>
  37. #include <rdr/MemOutStream.h>
  38. #include <network/TcpSocket.h>
  39. #include <FL/Fl.H>
  40. #include <FL/fl_ask.H>
  41. #include "CConn.h"
  42. #include "OptionsDialog.h"
  43. #include "DesktopWindow.h"
  44. #include "i18n.h"
  45. #include "parameters.h"
  46. #include "vncviewer.h"
  47. #ifdef WIN32
  48. #include "win32.h"
  49. #endif
  50. using namespace rdr;
  51. using namespace rfb;
  52. using namespace std;
  53. static rfb::LogWriter vlog("CConn");
  54. // 8 colours (1 bit per component)
  55. static const PixelFormat verylowColourPF(8, 3,false, true,
  56. 1, 1, 1, 2, 1, 0);
  57. // 64 colours (2 bits per component)
  58. static const PixelFormat lowColourPF(8, 6, false, true,
  59. 3, 3, 3, 4, 2, 0);
  60. // 256 colours (2-3 bits per component)
  61. static const PixelFormat mediumColourPF(8, 8, false, true,
  62. 7, 7, 3, 5, 2, 0);
  63. CConn::CConn(const char* vncServerName, network::Socket* socket=NULL)
  64. : serverHost(0), serverPort(0), desktop(NULL),
  65. pendingPFChange(false),
  66. currentEncoding(encodingTight), lastServerEncoding((unsigned int)-1),
  67. formatChange(false), encodingChange(false),
  68. firstUpdate(true), pendingUpdate(false), continuousUpdates(false),
  69. forceNonincremental(true), supportsSyncFence(false)
  70. {
  71. setShared(::shared);
  72. sock = socket;
  73. memset(decoders, 0, sizeof(decoders));
  74. int encNum = encodingNum(preferredEncoding);
  75. if (encNum != -1)
  76. currentEncoding = encNum;
  77. cp.supportsLocalCursor = true;
  78. cp.supportsDesktopResize = true;
  79. cp.supportsExtendedDesktopSize = true;
  80. cp.supportsDesktopRename = true;
  81. if (customCompressLevel)
  82. cp.compressLevel = compressLevel;
  83. else
  84. cp.compressLevel = -1;
  85. if (!noJpeg)
  86. cp.qualityLevel = qualityLevel;
  87. else
  88. cp.qualityLevel = -1;
  89. if(sock == NULL) {
  90. try {
  91. getHostAndPort(vncServerName, &serverHost, &serverPort);
  92. sock = new network::TcpSocket(serverHost, serverPort);
  93. vlog.info(_("connected to host %s port %d"), serverHost, serverPort);
  94. } catch (rdr::Exception& e) {
  95. vlog.error("%s", e.str());
  96. fl_alert("%s", e.str());
  97. exit_vncviewer();
  98. return;
  99. }
  100. }
  101. Fl::add_fd(sock->getFd(), FL_READ | FL_EXCEPT, socketEvent, this);
  102. // See callback below
  103. sock->inStream().setBlockCallback(this);
  104. setServerName(serverHost);
  105. setStreams(&sock->inStream(), &sock->outStream());
  106. initialiseProtocol();
  107. OptionsDialog::addCallback(handleOptions, this);
  108. }
  109. CConn::~CConn()
  110. {
  111. OptionsDialog::removeCallback(handleOptions);
  112. for (size_t i = 0; i < sizeof(decoders)/sizeof(decoders[0]); i++)
  113. delete decoders[i];
  114. if (desktop)
  115. delete desktop;
  116. delete [] serverHost;
  117. if (sock)
  118. Fl::remove_fd(sock->getFd());
  119. delete sock;
  120. }
  121. void CConn::refreshFramebuffer()
  122. {
  123. forceNonincremental = true;
  124. // Without fences, we cannot safely trigger an update request directly
  125. // but must wait for the next update to arrive.
  126. if (supportsSyncFence)
  127. requestNewUpdate();
  128. }
  129. const char *CConn::connectionInfo()
  130. {
  131. static char infoText[1024] = "";
  132. char scratch[100];
  133. char pfStr[100];
  134. // Crude way of avoiding constant overflow checks
  135. assert((sizeof(scratch) + 1) * 10 < sizeof(infoText));
  136. infoText[0] = '\0';
  137. snprintf(scratch, sizeof(scratch),
  138. _("Desktop name: %.80s"), cp.name());
  139. strcat(infoText, scratch);
  140. strcat(infoText, "\n");
  141. snprintf(scratch, sizeof(scratch),
  142. _("Host: %.80s port: %d"), serverHost, serverPort);
  143. strcat(infoText, scratch);
  144. strcat(infoText, "\n");
  145. snprintf(scratch, sizeof(scratch),
  146. _("Size: %d x %d"), cp.width, cp.height);
  147. strcat(infoText, scratch);
  148. strcat(infoText, "\n");
  149. // TRANSLATORS: Will be filled in with a string describing the
  150. // protocol pixel format in a fairly language neutral way
  151. cp.pf().print(pfStr, 100);
  152. snprintf(scratch, sizeof(scratch),
  153. _("Pixel format: %s"), pfStr);
  154. strcat(infoText, scratch);
  155. strcat(infoText, "\n");
  156. // TRANSLATORS: Similar to the earlier "Pixel format" string
  157. serverPF.print(pfStr, 100);
  158. snprintf(scratch, sizeof(scratch),
  159. _("(server default %s)"), pfStr);
  160. strcat(infoText, scratch);
  161. strcat(infoText, "\n");
  162. snprintf(scratch, sizeof(scratch),
  163. _("Requested encoding: %s"), encodingName(currentEncoding));
  164. strcat(infoText, scratch);
  165. strcat(infoText, "\n");
  166. snprintf(scratch, sizeof(scratch),
  167. _("Last used encoding: %s"), encodingName(lastServerEncoding));
  168. strcat(infoText, scratch);
  169. strcat(infoText, "\n");
  170. snprintf(scratch, sizeof(scratch),
  171. _("Line speed estimate: %d kbit/s"), sock->inStream().kbitsPerSecond());
  172. strcat(infoText, scratch);
  173. strcat(infoText, "\n");
  174. snprintf(scratch, sizeof(scratch),
  175. _("Protocol version: %d.%d"), cp.majorVersion, cp.minorVersion);
  176. strcat(infoText, scratch);
  177. strcat(infoText, "\n");
  178. snprintf(scratch, sizeof(scratch),
  179. _("Security method: %s"), secTypeName(csecurity->getType()));
  180. strcat(infoText, scratch);
  181. strcat(infoText, "\n");
  182. return infoText;
  183. }
  184. // The RFB core is not properly asynchronous, so it calls this callback
  185. // whenever it needs to block to wait for more data. Since FLTK is
  186. // monitoring the socket, we just make sure FLTK gets to run.
  187. void CConn::blockCallback()
  188. {
  189. int next_timer;
  190. next_timer = Timer::checkTimeouts();
  191. if (next_timer == 0)
  192. next_timer = INT_MAX;
  193. Fl::wait((double)next_timer / 1000.0);
  194. }
  195. void CConn::socketEvent(FL_SOCKET fd, void *data)
  196. {
  197. CConn *cc;
  198. static bool recursing = false;
  199. assert(data);
  200. cc = (CConn*)data;
  201. // I don't think processMsg() is recursion safe, so add this check
  202. if (recursing)
  203. return;
  204. recursing = true;
  205. try {
  206. // processMsg() only processes one message, so we need to loop
  207. // until the buffers are empty or things will stall.
  208. do {
  209. cc->processMsg();
  210. } while (cc->sock->inStream().checkNoWait(1));
  211. } catch (rdr::EndOfStream& e) {
  212. vlog.info("%s", e.str());
  213. exit_vncviewer();
  214. } catch (rdr::Exception& e) {
  215. vlog.error("%s", e.str());
  216. exit_vncviewer(e.str());
  217. }
  218. recursing = false;
  219. }
  220. ////////////////////// CConnection callback methods //////////////////////
  221. // serverInit() is called when the serverInit message has been received. At
  222. // this point we create the desktop window and display it. We also tell the
  223. // server the pixel format and encodings to use and request the first update.
  224. void CConn::serverInit()
  225. {
  226. CConnection::serverInit();
  227. // If using AutoSelect with old servers, start in FullColor
  228. // mode. See comment in autoSelectFormatAndEncoding.
  229. if (cp.beforeVersion(3, 8) && autoSelect)
  230. fullColour.setParam(true);
  231. serverPF = cp.pf();
  232. desktop = new DesktopWindow(cp.width, cp.height, cp.name(), serverPF, this);
  233. fullColourPF = desktop->getPreferredPF();
  234. // Force a switch to the format and encoding we'd like
  235. formatChange = encodingChange = true;
  236. // And kick off the update cycle
  237. requestNewUpdate();
  238. // This initial update request is a bit of a corner case, so we need
  239. // to help out setting the correct format here.
  240. assert(pendingPFChange);
  241. cp.setPF(pendingPF);
  242. pendingPFChange = false;
  243. }
  244. // setDesktopSize() is called when the desktop size changes (including when
  245. // it is set initially).
  246. void CConn::setDesktopSize(int w, int h)
  247. {
  248. CConnection::setDesktopSize(w,h);
  249. resizeFramebuffer();
  250. }
  251. // setExtendedDesktopSize() is a more advanced version of setDesktopSize()
  252. void CConn::setExtendedDesktopSize(int reason, int result, int w, int h,
  253. const rfb::ScreenSet& layout)
  254. {
  255. CConnection::setExtendedDesktopSize(reason, result, w, h, layout);
  256. if ((reason == reasonClient) && (result != resultSuccess)) {
  257. vlog.error(_("SetDesktopSize failed: %d"), result);
  258. return;
  259. }
  260. resizeFramebuffer();
  261. }
  262. // setName() is called when the desktop name changes
  263. void CConn::setName(const char* name)
  264. {
  265. CConnection::setName(name);
  266. if (desktop)
  267. desktop->setName(name);
  268. }
  269. // framebufferUpdateStart() is called at the beginning of an update.
  270. // Here we try to send out a new framebuffer update request so that the
  271. // next update can be sent out in parallel with us decoding the current
  272. // one.
  273. void CConn::framebufferUpdateStart()
  274. {
  275. // Note: This might not be true if sync fences are supported
  276. pendingUpdate = false;
  277. requestNewUpdate();
  278. }
  279. // framebufferUpdateEnd() is called at the end of an update.
  280. // For each rectangle, the FdInStream will have timed the speed
  281. // of the connection, allowing us to select format and encoding
  282. // appropriately, and then request another incremental update.
  283. void CConn::framebufferUpdateEnd()
  284. {
  285. desktop->updateWindow();
  286. if (firstUpdate) {
  287. // We need fences to make extra update requests and continuous
  288. // updates "safe". See fence() for the next step.
  289. if (cp.supportsFence)
  290. writer()->writeFence(fenceFlagRequest | fenceFlagSyncNext, 0, NULL);
  291. firstUpdate = false;
  292. }
  293. // A format change has been scheduled and we are now past the update
  294. // with the old format. Time to active the new one.
  295. if (pendingPFChange) {
  296. cp.setPF(pendingPF);
  297. pendingPFChange = false;
  298. }
  299. // Compute new settings based on updated bandwidth values
  300. if (autoSelect)
  301. autoSelectFormatAndEncoding();
  302. // Make sure that the FLTK handling and the timers gets some CPU time
  303. // in case of back to back framebuffer updates.
  304. Fl::check();
  305. Timer::checkTimeouts();
  306. }
  307. // The rest of the callbacks are fairly self-explanatory...
  308. void CConn::setColourMapEntries(int firstColour, int nColours, rdr::U16* rgbs)
  309. {
  310. vlog.error(_("Invalid SetColourMapEntries from server!"));
  311. }
  312. void CConn::bell()
  313. {
  314. fl_beep();
  315. }
  316. void CConn::serverCutText(const char* str, rdr::U32 len)
  317. {
  318. char *buffer;
  319. int size, ret;
  320. if (!acceptClipboard)
  321. return;
  322. size = fl_utf8froma(NULL, 0, str, len);
  323. if (size <= 0)
  324. return;
  325. size++;
  326. buffer = new char[size];
  327. ret = fl_utf8froma(buffer, size, str, len);
  328. assert(ret < size);
  329. vlog.debug("Got clipboard data (%d bytes)", strlen(buffer));
  330. // RFB doesn't have separate selection and clipboard concepts, so we
  331. // dump the data into both variants.
  332. Fl::copy(buffer, ret, 0);
  333. Fl::copy(buffer, ret, 1);
  334. delete [] buffer;
  335. }
  336. void CConn::dataRect(const Rect& r, int encoding)
  337. {
  338. sock->inStream().startTiming();
  339. if (encoding != encodingCopyRect)
  340. lastServerEncoding = encoding;
  341. if (!Decoder::supported(encoding)) {
  342. // TRANSLATORS: Refers to a VNC protocol encoding type
  343. vlog.error(_("Unknown encoding %d"), encoding);
  344. throw Exception(_("Unknown encoding"));
  345. }
  346. if (!decoders[encoding]) {
  347. decoders[encoding] = Decoder::createDecoder(encoding, this);
  348. if (!decoders[encoding]) {
  349. vlog.error(_("Unknown encoding %d"), encoding);
  350. throw Exception(_("Unknown encoding"));
  351. }
  352. }
  353. decoders[encoding]->readRect(r, desktop->getFramebuffer());
  354. sock->inStream().stopTiming();
  355. }
  356. void CConn::setCursor(int width, int height, const Point& hotspot,
  357. void* data, void* mask)
  358. {
  359. desktop->setCursor(width, height, hotspot, data, mask);
  360. }
  361. void CConn::fence(rdr::U32 flags, unsigned len, const char data[])
  362. {
  363. CMsgHandler::fence(flags, len, data);
  364. if (flags & fenceFlagRequest) {
  365. // We handle everything synchronously so we trivially honor these modes
  366. flags = flags & (fenceFlagBlockBefore | fenceFlagBlockAfter);
  367. writer()->writeFence(flags, len, data);
  368. return;
  369. }
  370. if (len == 0) {
  371. // Initial probe
  372. if (flags & fenceFlagSyncNext) {
  373. supportsSyncFence = true;
  374. if (cp.supportsContinuousUpdates) {
  375. vlog.info(_("Enabling continuous updates"));
  376. continuousUpdates = true;
  377. writer()->writeEnableContinuousUpdates(true, 0, 0, cp.width, cp.height);
  378. }
  379. }
  380. } else {
  381. // Pixel format change
  382. rdr::MemInStream memStream(data, len);
  383. PixelFormat pf;
  384. pf.read(&memStream);
  385. cp.setPF(pf);
  386. }
  387. }
  388. ////////////////////// Internal methods //////////////////////
  389. void CConn::resizeFramebuffer()
  390. {
  391. if (!desktop)
  392. return;
  393. if (continuousUpdates)
  394. writer()->writeEnableContinuousUpdates(true, 0, 0, cp.width, cp.height);
  395. desktop->resizeFramebuffer(cp.width, cp.height);
  396. }
  397. // autoSelectFormatAndEncoding() chooses the format and encoding appropriate
  398. // to the connection speed:
  399. //
  400. // First we wait for at least one second of bandwidth measurement.
  401. //
  402. // Above 16Mbps (i.e. LAN), we choose the second highest JPEG quality,
  403. // which should be perceptually lossless.
  404. //
  405. // If the bandwidth is below that, we choose a more lossy JPEG quality.
  406. //
  407. // If the bandwidth drops below 256 Kbps, we switch to palette mode.
  408. //
  409. // Note: The system here is fairly arbitrary and should be replaced
  410. // with something more intelligent at the server end.
  411. //
  412. void CConn::autoSelectFormatAndEncoding()
  413. {
  414. int kbitsPerSecond = sock->inStream().kbitsPerSecond();
  415. unsigned int timeWaited = sock->inStream().timeWaited();
  416. bool newFullColour = fullColour;
  417. int newQualityLevel = qualityLevel;
  418. // Always use Tight
  419. if (currentEncoding != encodingTight) {
  420. currentEncoding = encodingTight;
  421. encodingChange = true;
  422. }
  423. // Check that we have a decent bandwidth measurement
  424. if ((kbitsPerSecond == 0) || (timeWaited < 10000))
  425. return;
  426. // Select appropriate quality level
  427. if (!noJpeg) {
  428. if (kbitsPerSecond > 16000)
  429. newQualityLevel = 8;
  430. else
  431. newQualityLevel = 6;
  432. if (newQualityLevel != qualityLevel) {
  433. vlog.info(_("Throughput %d kbit/s - changing to quality %d"),
  434. kbitsPerSecond, newQualityLevel);
  435. cp.qualityLevel = newQualityLevel;
  436. qualityLevel.setParam(newQualityLevel);
  437. encodingChange = true;
  438. }
  439. }
  440. if (cp.beforeVersion(3, 8)) {
  441. // Xvnc from TightVNC 1.2.9 sends out FramebufferUpdates with
  442. // cursors "asynchronously". If this happens in the middle of a
  443. // pixel format change, the server will encode the cursor with
  444. // the old format, but the client will try to decode it
  445. // according to the new format. This will lead to a
  446. // crash. Therefore, we do not allow automatic format change for
  447. // old servers.
  448. return;
  449. }
  450. // Select best color level
  451. newFullColour = (kbitsPerSecond > 256);
  452. if (newFullColour != fullColour) {
  453. vlog.info(_("Throughput %d kbit/s - full color is now %s"),
  454. kbitsPerSecond,
  455. newFullColour ? _("enabled") : _("disabled"));
  456. fullColour.setParam(newFullColour);
  457. formatChange = true;
  458. }
  459. }
  460. // checkEncodings() sends a setEncodings message if one is needed.
  461. void CConn::checkEncodings()
  462. {
  463. if (encodingChange && writer()) {
  464. vlog.info(_("Using %s encoding"),encodingName(currentEncoding));
  465. writer()->writeSetEncodings(currentEncoding, true);
  466. encodingChange = false;
  467. }
  468. }
  469. // requestNewUpdate() requests an update from the server, having set the
  470. // format and encoding appropriately.
  471. void CConn::requestNewUpdate()
  472. {
  473. if (formatChange) {
  474. PixelFormat pf;
  475. /* Catch incorrect requestNewUpdate calls */
  476. assert(!pendingUpdate || supportsSyncFence);
  477. if (fullColour) {
  478. pf = fullColourPF;
  479. } else {
  480. if (lowColourLevel == 0)
  481. pf = verylowColourPF;
  482. else if (lowColourLevel == 1)
  483. pf = lowColourPF;
  484. else
  485. pf = mediumColourPF;
  486. }
  487. if (supportsSyncFence) {
  488. // We let the fence carry the pixel format and switch once we
  489. // get the response back. That way we will be synchronised with
  490. // when the server switches.
  491. rdr::MemOutStream memStream;
  492. pf.write(&memStream);
  493. writer()->writeFence(fenceFlagRequest | fenceFlagSyncNext,
  494. memStream.length(), (const char*)memStream.data());
  495. } else {
  496. // New requests are sent out at the start of processing the last
  497. // one, so we cannot switch our internal format right now (doing so
  498. // would mean misdecoding the current update).
  499. pendingPFChange = true;
  500. pendingPF = pf;
  501. }
  502. char str[256];
  503. pf.print(str, 256);
  504. vlog.info(_("Using pixel format %s"),str);
  505. writer()->writeSetPixelFormat(pf);
  506. formatChange = false;
  507. }
  508. checkEncodings();
  509. if (forceNonincremental || !continuousUpdates) {
  510. pendingUpdate = true;
  511. writer()->writeFramebufferUpdateRequest(Rect(0, 0, cp.width, cp.height),
  512. !forceNonincremental);
  513. }
  514. forceNonincremental = false;
  515. }
  516. void CConn::handleOptions(void *data)
  517. {
  518. CConn *self = (CConn*)data;
  519. // Checking all the details of the current set of encodings is just
  520. // a pain. Assume something has changed, as resending the encoding
  521. // list is cheap. Avoid overriding what the auto logic has selected
  522. // though.
  523. if (!autoSelect) {
  524. int encNum = encodingNum(preferredEncoding);
  525. if (encNum != -1)
  526. self->currentEncoding = encNum;
  527. }
  528. self->cp.supportsLocalCursor = true;
  529. if (customCompressLevel)
  530. self->cp.compressLevel = compressLevel;
  531. else
  532. self->cp.compressLevel = -1;
  533. if (!noJpeg && !autoSelect)
  534. self->cp.qualityLevel = qualityLevel;
  535. else
  536. self->cp.qualityLevel = -1;
  537. self->encodingChange = true;
  538. // Format changes refreshes the entire screen though and are therefore
  539. // very costly. It's probably worth the effort to see if it is necessary
  540. // here.
  541. PixelFormat pf;
  542. if (fullColour) {
  543. pf = self->fullColourPF;
  544. } else {
  545. if (lowColourLevel == 0)
  546. pf = verylowColourPF;
  547. else if (lowColourLevel == 1)
  548. pf = lowColourPF;
  549. else
  550. pf = mediumColourPF;
  551. }
  552. if (!pf.equal(self->cp.pf())) {
  553. self->formatChange = true;
  554. // Without fences, we cannot safely trigger an update request directly
  555. // but must wait for the next update to arrive.
  556. if (self->supportsSyncFence)
  557. self->requestNewUpdate();
  558. }
  559. }