Constantin Kaplinsky | a2adc8d | 2006-05-25 05:01:55 +0000 | [diff] [blame] | 1 | /* Copyright (C) 2002-2005 RealVNC Ltd. All Rights Reserved. |
| 2 | * |
| 3 | * This is free software; you can redistribute it and/or modify |
| 4 | * it under the terms of the GNU General Public License as published by |
| 5 | * the Free Software Foundation; either version 2 of the License, or |
| 6 | * (at your option) any later version. |
| 7 | * |
| 8 | * This software is distributed in the hope that it will be useful, |
| 9 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 10 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 11 | * GNU General Public License for more details. |
| 12 | * |
| 13 | * You should have received a copy of the GNU General Public License |
| 14 | * along with this software; if not, write to the Free Software |
| 15 | * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, |
| 16 | * USA. |
| 17 | */ |
| 18 | |
| 19 | // -=- Single-Threaded VNC Server implementation |
| 20 | |
| 21 | |
| 22 | // Note about how sockets get closed: |
| 23 | // |
| 24 | // Closing sockets to clients is non-trivial because the code which calls |
| 25 | // VNCServerST must explicitly know about all the sockets (so that it can block |
| 26 | // on them appropriately). However, VNCServerST may want to close clients for |
| 27 | // a number of reasons, and from a variety of entry points. The simplest is |
| 28 | // when processSocketEvent() is called for a client, and the remote end has |
| 29 | // closed its socket. A more complex reason is when processSocketEvent() is |
| 30 | // called for a client which has just sent a ClientInit with the shared flag |
| 31 | // set to false - in this case we want to close all other clients. Yet another |
| 32 | // reason for disconnecting clients is when the desktop size has changed as a |
| 33 | // result of a call to setPixelBuffer(). |
| 34 | // |
| 35 | // The responsibility for creating and deleting sockets is entirely with the |
| 36 | // calling code. When VNCServerST wants to close a connection to a client it |
| 37 | // calls the VNCSConnectionST's close() method which calls shutdown() on the |
| 38 | // socket. Eventually the calling code will notice that the socket has been |
| 39 | // shut down and call removeSocket() so that we can delete the |
| 40 | // VNCSConnectionST. Note that the socket must not be deleted by the calling |
| 41 | // code until after removeSocket() has been called. |
| 42 | // |
| 43 | // One minor complication is that we don't allocate a VNCSConnectionST object |
| 44 | // for a blacklisted host (since we want to minimise the resources used for |
| 45 | // dealing with such a connection). In order to properly implement the |
| 46 | // getSockets function, we must maintain a separate closingSockets list, |
| 47 | // otherwise blacklisted connections might be "forgotten". |
| 48 | |
| 49 | |
| 50 | #include <rfb/ServerCore.h> |
| 51 | #include <rfb/VNCServerST.h> |
| 52 | #include <rfb/VNCSConnectionST.h> |
| 53 | #include <rfb/ComparingUpdateTracker.h> |
| 54 | #include <rfb/SSecurityFactoryStandard.h> |
| 55 | #include <rfb/KeyRemapper.h> |
| 56 | #include <rfb/util.h> |
| 57 | |
| 58 | #include <rdr/types.h> |
| 59 | |
| 60 | using namespace rfb; |
| 61 | |
| 62 | static LogWriter slog("VNCServerST"); |
| 63 | LogWriter VNCServerST::connectionsLog("Connections"); |
| 64 | static SSecurityFactoryStandard defaultSecurityFactory; |
| 65 | |
| 66 | // |
| 67 | // -=- VNCServerST Implementation |
| 68 | // |
| 69 | |
| 70 | // -=- Constructors/Destructor |
| 71 | |
| 72 | VNCServerST::VNCServerST(const char* name_, SDesktop* desktop_, |
| 73 | SSecurityFactory* sf) |
| 74 | : blHosts(&blacklist), desktop(desktop_), desktopStarted(false), pb(0), |
| 75 | m_pFTManager(0), name(strDup(name_)), pointerClient(0), comparer(0), |
| 76 | renderedCursorInvalid(false), |
| 77 | securityFactory(sf ? sf : &defaultSecurityFactory), |
| 78 | queryConnectionHandler(0), keyRemapper(&KeyRemapper::defInstance), |
| 79 | useEconomicTranslate(false), |
Pierre Ossman | 02e43d7 | 2009-03-05 11:57:11 +0000 | [diff] [blame] | 80 | lastConnectionTime(0), disableclients(false) |
Constantin Kaplinsky | a2adc8d | 2006-05-25 05:01:55 +0000 | [diff] [blame] | 81 | { |
| 82 | lastUserInputTime = lastDisconnectTime = time(0); |
| 83 | slog.debug("creating single-threaded server %s", name.buf); |
| 84 | } |
| 85 | |
| 86 | VNCServerST::~VNCServerST() |
| 87 | { |
| 88 | slog.debug("shutting down server %s", name.buf); |
| 89 | |
| 90 | // Close any active clients, with appropriate logging & cleanup |
| 91 | closeClients("Server shutdown"); |
| 92 | |
| 93 | // Delete all the clients, and their sockets, and any closing sockets |
| 94 | // NB: Deleting a client implicitly removes it from the clients list |
| 95 | while (!clients.empty()) { |
| 96 | delete clients.front(); |
| 97 | } |
| 98 | |
| 99 | // Stop the desktop object if active, *only* after deleting all clients! |
| 100 | if (desktopStarted) { |
| 101 | desktopStarted = false; |
| 102 | desktop->stop(); |
| 103 | } |
| 104 | |
| 105 | delete comparer; |
| 106 | } |
| 107 | |
| 108 | |
| 109 | // SocketServer methods |
| 110 | |
| 111 | void VNCServerST::addSocket(network::Socket* sock, bool outgoing) |
| 112 | { |
| 113 | // - Check the connection isn't black-marked |
| 114 | // *** do this in getSecurity instead? |
| 115 | CharArray address(sock->getPeerAddress()); |
| 116 | if (blHosts->isBlackmarked(address.buf)) { |
| 117 | connectionsLog.error("blacklisted: %s", address.buf); |
| 118 | try { |
| 119 | SConnection::writeConnFailedFromScratch("Too many security failures", |
| 120 | &sock->outStream()); |
| 121 | } catch (rdr::Exception&) { |
| 122 | } |
| 123 | sock->shutdown(); |
| 124 | closingSockets.push_back(sock); |
| 125 | return; |
| 126 | } |
| 127 | |
| 128 | if (clients.empty()) { |
| 129 | lastConnectionTime = time(0); |
| 130 | } |
| 131 | |
| 132 | VNCSConnectionST* client = new VNCSConnectionST(this, sock, outgoing); |
| 133 | client->init(); |
| 134 | } |
| 135 | |
| 136 | void VNCServerST::removeSocket(network::Socket* sock) { |
| 137 | // - If the socket has resources allocated to it, delete them |
| 138 | std::list<VNCSConnectionST*>::iterator ci; |
| 139 | for (ci = clients.begin(); ci != clients.end(); ci++) { |
| 140 | if ((*ci)->getSock() == sock) { |
| 141 | // - Delete the per-Socket resources |
| 142 | delete *ci; |
| 143 | |
| 144 | // - Check that the desktop object is still required |
| 145 | if (authClientCount() == 0 && desktopStarted) { |
| 146 | slog.debug("no authenticated clients - stopping desktop"); |
| 147 | desktopStarted = false; |
| 148 | desktop->stop(); |
| 149 | } |
| 150 | return; |
| 151 | } |
| 152 | } |
| 153 | |
| 154 | // - If the Socket has no resources, it may have been a closingSocket |
| 155 | closingSockets.remove(sock); |
| 156 | } |
| 157 | |
| 158 | void VNCServerST::processSocketEvent(network::Socket* sock) |
| 159 | { |
| 160 | // - Find the appropriate VNCSConnectionST and process the event |
| 161 | std::list<VNCSConnectionST*>::iterator ci; |
| 162 | for (ci = clients.begin(); ci != clients.end(); ci++) { |
| 163 | if ((*ci)->getSock() == sock) { |
| 164 | (*ci)->processMessages(); |
| 165 | return; |
| 166 | } |
| 167 | } |
| 168 | throw rdr::Exception("invalid Socket in VNCServerST"); |
| 169 | } |
| 170 | |
| 171 | int VNCServerST::checkTimeouts() |
| 172 | { |
| 173 | int timeout = 0; |
| 174 | std::list<VNCSConnectionST*>::iterator ci, ci_next; |
| 175 | for (ci=clients.begin();ci!=clients.end();ci=ci_next) { |
| 176 | ci_next = ci; ci_next++; |
| 177 | soonestTimeout(&timeout, (*ci)->checkIdleTimeout()); |
| 178 | } |
| 179 | |
| 180 | int timeLeft; |
Constantin Kaplinsky | 8499d0c | 2008-08-21 05:51:29 +0000 | [diff] [blame] | 181 | time_t now = time(0); |
Constantin Kaplinsky | a2adc8d | 2006-05-25 05:01:55 +0000 | [diff] [blame] | 182 | |
Constantin Kaplinsky | a2adc8d | 2006-05-25 05:01:55 +0000 | [diff] [blame] | 183 | // Check MaxDisconnectionTime |
| 184 | if (rfb::Server::maxDisconnectionTime && clients.empty()) { |
| 185 | if (now < lastDisconnectTime) { |
| 186 | // Someone must have set the time backwards. |
| 187 | slog.info("Time has gone backwards - resetting lastDisconnectTime"); |
| 188 | lastDisconnectTime = now; |
| 189 | } |
| 190 | timeLeft = lastDisconnectTime + rfb::Server::maxDisconnectionTime - now; |
| 191 | if (timeLeft < -60) { |
| 192 | // Someone must have set the time forwards. |
| 193 | slog.info("Time has gone forwards - resetting lastDisconnectTime"); |
| 194 | lastDisconnectTime = now; |
| 195 | timeLeft = rfb::Server::maxDisconnectionTime; |
| 196 | } |
| 197 | if (timeLeft <= 0) { |
| 198 | slog.info("MaxDisconnectionTime reached, exiting"); |
| 199 | exit(0); |
| 200 | } |
| 201 | soonestTimeout(&timeout, timeLeft * 1000); |
| 202 | } |
| 203 | |
| 204 | // Check MaxConnectionTime |
| 205 | if (rfb::Server::maxConnectionTime && lastConnectionTime && !clients.empty()) { |
| 206 | if (now < lastConnectionTime) { |
| 207 | // Someone must have set the time backwards. |
| 208 | slog.info("Time has gone backwards - resetting lastConnectionTime"); |
| 209 | lastConnectionTime = now; |
| 210 | } |
| 211 | timeLeft = lastConnectionTime + rfb::Server::maxConnectionTime - now; |
| 212 | if (timeLeft < -60) { |
| 213 | // Someone must have set the time forwards. |
| 214 | slog.info("Time has gone forwards - resetting lastConnectionTime"); |
| 215 | lastConnectionTime = now; |
| 216 | timeLeft = rfb::Server::maxConnectionTime; |
| 217 | } |
| 218 | if (timeLeft <= 0) { |
| 219 | slog.info("MaxConnectionTime reached, exiting"); |
| 220 | exit(0); |
| 221 | } |
| 222 | soonestTimeout(&timeout, timeLeft * 1000); |
| 223 | } |
| 224 | |
| 225 | |
| 226 | // Check MaxIdleTime |
| 227 | if (rfb::Server::maxIdleTime) { |
| 228 | if (now < lastUserInputTime) { |
| 229 | // Someone must have set the time backwards. |
| 230 | slog.info("Time has gone backwards - resetting lastUserInputTime"); |
| 231 | lastUserInputTime = now; |
| 232 | } |
| 233 | timeLeft = lastUserInputTime + rfb::Server::maxIdleTime - now; |
| 234 | if (timeLeft < -60) { |
| 235 | // Someone must have set the time forwards. |
| 236 | slog.info("Time has gone forwards - resetting lastUserInputTime"); |
| 237 | lastUserInputTime = now; |
| 238 | timeLeft = rfb::Server::maxIdleTime; |
| 239 | } |
| 240 | if (timeLeft <= 0) { |
| 241 | slog.info("MaxIdleTime reached, exiting"); |
| 242 | exit(0); |
| 243 | } |
| 244 | soonestTimeout(&timeout, timeLeft * 1000); |
| 245 | } |
| 246 | |
| 247 | return timeout; |
| 248 | } |
| 249 | |
| 250 | |
| 251 | // VNCServer methods |
| 252 | |
| 253 | void VNCServerST::setPixelBuffer(PixelBuffer* pb_) |
| 254 | { |
| 255 | pb = pb_; |
| 256 | delete comparer; |
| 257 | comparer = 0; |
| 258 | |
| 259 | if (pb) { |
| 260 | comparer = new ComparingUpdateTracker(pb); |
| 261 | cursor.setPF(pb->getPF()); |
| 262 | renderedCursor.setPF(pb->getPF()); |
| 263 | |
| 264 | std::list<VNCSConnectionST*>::iterator ci, ci_next; |
| 265 | for (ci=clients.begin();ci!=clients.end();ci=ci_next) { |
| 266 | ci_next = ci; ci_next++; |
| 267 | (*ci)->pixelBufferChange(); |
| 268 | } |
| 269 | } else { |
| 270 | if (desktopStarted) |
| 271 | throw Exception("setPixelBuffer: null PixelBuffer when desktopStarted?"); |
| 272 | } |
| 273 | } |
| 274 | |
| 275 | void VNCServerST::setColourMapEntries(int firstColour, int nColours) |
| 276 | { |
| 277 | std::list<VNCSConnectionST*>::iterator ci, ci_next; |
| 278 | for (ci = clients.begin(); ci != clients.end(); ci = ci_next) { |
| 279 | ci_next = ci; ci_next++; |
| 280 | (*ci)->setColourMapEntriesOrClose(firstColour, nColours); |
| 281 | } |
| 282 | } |
| 283 | |
| 284 | void VNCServerST::bell() |
| 285 | { |
| 286 | std::list<VNCSConnectionST*>::iterator ci, ci_next; |
| 287 | for (ci = clients.begin(); ci != clients.end(); ci = ci_next) { |
| 288 | ci_next = ci; ci_next++; |
| 289 | (*ci)->bell(); |
| 290 | } |
| 291 | } |
| 292 | |
| 293 | void VNCServerST::serverCutText(const char* str, int len) |
| 294 | { |
| 295 | std::list<VNCSConnectionST*>::iterator ci, ci_next; |
| 296 | for (ci = clients.begin(); ci != clients.end(); ci = ci_next) { |
| 297 | ci_next = ci; ci_next++; |
| 298 | (*ci)->serverCutText(str, len); |
| 299 | } |
| 300 | } |
| 301 | |
Peter Ã…strand | c39e078 | 2009-01-15 12:21:42 +0000 | [diff] [blame] | 302 | void VNCServerST::setName(const char* name_) |
| 303 | { |
| 304 | name.replaceBuf(strDup(name_)); |
| 305 | std::list<VNCSConnectionST*>::iterator ci, ci_next; |
| 306 | for (ci = clients.begin(); ci != clients.end(); ci = ci_next) { |
| 307 | ci_next = ci; ci_next++; |
| 308 | (*ci)->setDesktopName(name_); |
| 309 | } |
| 310 | } |
| 311 | |
Constantin Kaplinsky | a2adc8d | 2006-05-25 05:01:55 +0000 | [diff] [blame] | 312 | void VNCServerST::add_changed(const Region& region) |
| 313 | { |
Constantin Kaplinsky | 3ce6a72 | 2008-09-05 02:26:35 +0000 | [diff] [blame] | 314 | if (comparer != 0) { |
| 315 | comparer->add_changed(region); |
| 316 | } |
Constantin Kaplinsky | a2adc8d | 2006-05-25 05:01:55 +0000 | [diff] [blame] | 317 | } |
| 318 | |
| 319 | void VNCServerST::add_copied(const Region& dest, const Point& delta) |
| 320 | { |
Constantin Kaplinsky | 3ce6a72 | 2008-09-05 02:26:35 +0000 | [diff] [blame] | 321 | if (comparer != 0) { |
| 322 | comparer->add_copied(dest, delta); |
| 323 | } |
Constantin Kaplinsky | a2adc8d | 2006-05-25 05:01:55 +0000 | [diff] [blame] | 324 | } |
| 325 | |
| 326 | bool VNCServerST::clientsReadyForUpdate() |
| 327 | { |
| 328 | std::list<VNCSConnectionST*>::iterator ci; |
| 329 | for (ci = clients.begin(); ci != clients.end(); ci++) { |
| 330 | if ((*ci)->readyForUpdate()) |
| 331 | return true; |
| 332 | } |
| 333 | return false; |
| 334 | } |
| 335 | |
| 336 | void VNCServerST::tryUpdate() |
| 337 | { |
| 338 | std::list<VNCSConnectionST*>::iterator ci, ci_next; |
| 339 | for (ci = clients.begin(); ci != clients.end(); ci = ci_next) { |
| 340 | ci_next = ci; ci_next++; |
| 341 | (*ci)->writeFramebufferUpdateOrClose(); |
| 342 | } |
| 343 | } |
| 344 | |
| 345 | void VNCServerST::setCursor(int width, int height, const Point& newHotspot, |
| 346 | void* data, void* mask) |
| 347 | { |
| 348 | cursor.hotspot = newHotspot; |
| 349 | cursor.setSize(width, height); |
| 350 | memcpy(cursor.data, data, cursor.dataLen()); |
| 351 | memcpy(cursor.mask.buf, mask, cursor.maskLen()); |
| 352 | |
| 353 | cursor.crop(); |
| 354 | |
| 355 | renderedCursorInvalid = true; |
| 356 | |
| 357 | std::list<VNCSConnectionST*>::iterator ci, ci_next; |
| 358 | for (ci = clients.begin(); ci != clients.end(); ci = ci_next) { |
| 359 | ci_next = ci; ci_next++; |
| 360 | (*ci)->renderedCursorChange(); |
| 361 | (*ci)->setCursorOrClose(); |
| 362 | } |
| 363 | } |
| 364 | |
| 365 | void VNCServerST::setCursorPos(const Point& pos) |
| 366 | { |
| 367 | if (!cursorPos.equals(pos)) { |
| 368 | cursorPos = pos; |
| 369 | renderedCursorInvalid = true; |
| 370 | std::list<VNCSConnectionST*>::iterator ci; |
| 371 | for (ci = clients.begin(); ci != clients.end(); ci++) |
| 372 | (*ci)->renderedCursorChange(); |
| 373 | } |
| 374 | } |
| 375 | |
| 376 | // Other public methods |
| 377 | |
| 378 | void VNCServerST::approveConnection(network::Socket* sock, bool accept, |
| 379 | const char* reason) |
| 380 | { |
| 381 | std::list<VNCSConnectionST*>::iterator ci; |
| 382 | for (ci = clients.begin(); ci != clients.end(); ci++) { |
| 383 | if ((*ci)->getSock() == sock) { |
| 384 | (*ci)->approveConnectionOrClose(accept, reason); |
| 385 | return; |
| 386 | } |
| 387 | } |
| 388 | } |
| 389 | |
| 390 | void VNCServerST::closeClients(const char* reason, network::Socket* except) |
| 391 | { |
| 392 | std::list<VNCSConnectionST*>::iterator i, next_i; |
| 393 | for (i=clients.begin(); i!=clients.end(); i=next_i) { |
| 394 | next_i = i; next_i++; |
| 395 | if ((*i)->getSock() != except) |
| 396 | (*i)->close(reason); |
| 397 | } |
| 398 | } |
| 399 | |
| 400 | void VNCServerST::getSockets(std::list<network::Socket*>* sockets) |
| 401 | { |
| 402 | sockets->clear(); |
| 403 | std::list<VNCSConnectionST*>::iterator ci; |
| 404 | for (ci = clients.begin(); ci != clients.end(); ci++) { |
| 405 | sockets->push_back((*ci)->getSock()); |
| 406 | } |
| 407 | std::list<network::Socket*>::iterator si; |
| 408 | for (si = closingSockets.begin(); si != closingSockets.end(); si++) { |
| 409 | sockets->push_back(*si); |
| 410 | } |
| 411 | } |
| 412 | |
| 413 | SConnection* VNCServerST::getSConnection(network::Socket* sock) { |
| 414 | std::list<VNCSConnectionST*>::iterator ci; |
| 415 | for (ci = clients.begin(); ci != clients.end(); ci++) { |
| 416 | if ((*ci)->getSock() == sock) |
| 417 | return *ci; |
| 418 | } |
| 419 | return 0; |
| 420 | } |
| 421 | |
| 422 | |
| 423 | // -=- Internal methods |
| 424 | |
| 425 | void VNCServerST::startDesktop() |
| 426 | { |
| 427 | if (!desktopStarted) { |
| 428 | slog.debug("starting desktop"); |
| 429 | desktop->start(this); |
| 430 | desktopStarted = true; |
| 431 | if (!pb) |
| 432 | throw Exception("SDesktop::start() did not set a valid PixelBuffer"); |
| 433 | } |
| 434 | } |
| 435 | |
| 436 | int VNCServerST::authClientCount() { |
| 437 | int count = 0; |
| 438 | std::list<VNCSConnectionST*>::iterator ci; |
| 439 | for (ci = clients.begin(); ci != clients.end(); ci++) { |
| 440 | if ((*ci)->authenticated()) |
| 441 | count++; |
| 442 | } |
| 443 | return count; |
| 444 | } |
| 445 | |
| 446 | inline bool VNCServerST::needRenderedCursor() |
| 447 | { |
| 448 | std::list<VNCSConnectionST*>::iterator ci; |
| 449 | for (ci = clients.begin(); ci != clients.end(); ci++) |
| 450 | if ((*ci)->needRenderedCursor()) return true; |
| 451 | return false; |
| 452 | } |
| 453 | |
| 454 | // checkUpdate() is called just before sending an update. It checks to see |
| 455 | // what updates are pending and propagates them to the update tracker for each |
| 456 | // client. It uses the ComparingUpdateTracker's compare() method to filter out |
| 457 | // areas of the screen which haven't actually changed. It also checks the |
| 458 | // state of the (server-side) rendered cursor, if necessary rendering it again |
| 459 | // with the correct background. |
| 460 | |
| 461 | void VNCServerST::checkUpdate() |
| 462 | { |
Constantin Kaplinsky | 604d781 | 2007-08-31 15:50:37 +0000 | [diff] [blame] | 463 | UpdateInfo ui; |
| 464 | comparer->getUpdateInfo(&ui, pb->getRect()); |
| 465 | |
Constantin Kaplinsky | a2adc8d | 2006-05-25 05:01:55 +0000 | [diff] [blame] | 466 | bool renderCursor = needRenderedCursor(); |
| 467 | |
Constantin Kaplinsky | 604d781 | 2007-08-31 15:50:37 +0000 | [diff] [blame] | 468 | if (ui.is_empty() && !(renderCursor && renderedCursorInvalid)) |
Constantin Kaplinsky | a2adc8d | 2006-05-25 05:01:55 +0000 | [diff] [blame] | 469 | return; |
| 470 | |
Pierre Ossman | 02e43d7 | 2009-03-05 11:57:11 +0000 | [diff] [blame] | 471 | Region toCheck = ui.changed.union_(ui.copied); |
Constantin Kaplinsky | a2adc8d | 2006-05-25 05:01:55 +0000 | [diff] [blame] | 472 | |
| 473 | if (renderCursor) { |
| 474 | Rect clippedCursorRect |
| 475 | = cursor.getRect(cursorTL()).intersect(pb->getRect()); |
| 476 | |
| 477 | if (!renderedCursorInvalid && (toCheck.intersect(clippedCursorRect) |
| 478 | .is_empty())) { |
| 479 | renderCursor = false; |
| 480 | } else { |
| 481 | renderedCursorTL = clippedCursorRect.tl; |
| 482 | renderedCursor.setSize(clippedCursorRect.width(), |
| 483 | clippedCursorRect.height()); |
| 484 | toCheck.assign_union(clippedCursorRect); |
| 485 | } |
| 486 | } |
| 487 | |
| 488 | pb->grabRegion(toCheck); |
| 489 | |
Constantin Kaplinsky | f0b3be7 | 2008-08-21 05:22:04 +0000 | [diff] [blame] | 490 | if (rfb::Server::compareFB) { |
Constantin Kaplinsky | a2adc8d | 2006-05-25 05:01:55 +0000 | [diff] [blame] | 491 | comparer->compare(); |
Constantin Kaplinsky | f0b3be7 | 2008-08-21 05:22:04 +0000 | [diff] [blame] | 492 | comparer->getUpdateInfo(&ui, pb->getRect()); |
| 493 | } |
Constantin Kaplinsky | a2adc8d | 2006-05-25 05:01:55 +0000 | [diff] [blame] | 494 | |
| 495 | if (renderCursor) { |
| 496 | pb->getImage(renderedCursor.data, |
| 497 | renderedCursor.getRect(renderedCursorTL)); |
| 498 | renderedCursor.maskRect(cursor.getRect(cursorTL() |
| 499 | .subtract(renderedCursorTL)), |
| 500 | cursor.data, cursor.mask.buf); |
| 501 | renderedCursorInvalid = false; |
| 502 | } |
| 503 | |
| 504 | std::list<VNCSConnectionST*>::iterator ci, ci_next; |
| 505 | for (ci = clients.begin(); ci != clients.end(); ci = ci_next) { |
| 506 | ci_next = ci; ci_next++; |
Constantin Kaplinsky | 604d781 | 2007-08-31 15:50:37 +0000 | [diff] [blame] | 507 | (*ci)->add_copied(ui.copied, ui.copy_delta); |
| 508 | (*ci)->add_changed(ui.changed); |
Constantin Kaplinsky | a2adc8d | 2006-05-25 05:01:55 +0000 | [diff] [blame] | 509 | } |
| 510 | |
| 511 | comparer->clear(); |
| 512 | } |
| 513 | |
Constantin Kaplinsky | a2adc8d | 2006-05-25 05:01:55 +0000 | [diff] [blame] | 514 | void VNCServerST::getConnInfo(ListConnInfo * listConn) |
| 515 | { |
| 516 | listConn->Clear(); |
| 517 | listConn->setDisable(getDisable()); |
| 518 | if (clients.empty()) |
| 519 | return; |
| 520 | std::list<VNCSConnectionST*>::iterator i; |
| 521 | for (i = clients.begin(); i != clients.end(); i++) |
| 522 | listConn->addInfo((void*)(*i), (*i)->getSock()->getPeerAddress(), |
| 523 | (*i)->getStartTime(), (*i)->getStatus()); |
| 524 | } |
| 525 | |
| 526 | void VNCServerST::setConnStatus(ListConnInfo* listConn) |
| 527 | { |
| 528 | setDisable(listConn->getDisable()); |
| 529 | if (listConn->Empty() || clients.empty()) return; |
| 530 | for (listConn->iBegin(); !listConn->iEnd(); listConn->iNext()) { |
| 531 | VNCSConnectionST* conn = (VNCSConnectionST*)listConn->iGetConn(); |
| 532 | std::list<VNCSConnectionST*>::iterator i; |
| 533 | for (i = clients.begin(); i != clients.end(); i++) { |
| 534 | if ((*i) == conn) { |
| 535 | int status = listConn->iGetStatus(); |
| 536 | if (status == 3) { |
| 537 | (*i)->close(0); |
| 538 | } else { |
| 539 | (*i)->setStatus(status); |
| 540 | } |
| 541 | break; |
| 542 | } |
| 543 | } |
| 544 | } |
| 545 | } |
Constantin Kaplinsky | 9d1fc6c | 2008-06-14 05:23:10 +0000 | [diff] [blame] | 546 | |