a3f7bd9003f223fea3cd72f2e1908e57fbce64ed
[presencevnc] / src / vncclientthread.cpp
1 /****************************************************************************
2 **
3 ** Copyright (C) 2007-2008 Urs Wolfer <uwolfer @ kde.org>
4 **
5 ** This file is part of KDE.
6 **
7 ** This program is free software; you can redistribute it and/or modify
8 ** it under the terms of the GNU General Public License as published by
9 ** the Free Software Foundation; either version 2 of the License, or
10 ** (at your option) any later version.
11 **
12 ** This program is distributed in the hope that it will be useful,
13 ** but WITHOUT ANY WARRANTY; without even the implied warranty of
14 ** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 ** GNU General Public License for more details.
16 **
17 ** You should have received a copy of the GNU General Public License
18 ** along with this program; see the file COPYING. If not, write to
19 ** the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
20 ** Boston, MA 02110-1301, USA.
21 **
22 ****************************************************************************/
23
24 #include "vncclientthread.h"
25
26 #include <QMutexLocker>
27 #include <QTimer>
28
29 static QString outputErrorMessageString;
30
31 rfbBool VncClientThread::newclient(rfbClient *cl)
32 {
33     VncClientThread *t = (VncClientThread*)rfbClientGetClientData(cl, 0);
34     Q_ASSERT(t);
35
36     const int width = cl->width, height = cl->height, depth = cl->format.bitsPerPixel;
37     const int size = width * height * (depth / 8);
38     if (t->frameBuffer)
39         delete [] t->frameBuffer; // do not leak if we get a new framebuffer size
40     t->frameBuffer = new uint8_t[size];
41     cl->frameBuffer = t->frameBuffer;
42     memset(cl->frameBuffer, '\0', size);
43     cl->format.bitsPerPixel = 32;
44     cl->format.redShift = 16;
45     cl->format.greenShift = 8;
46     cl->format.blueShift = 0;
47     cl->format.redMax = 0xff;
48     cl->format.greenMax = 0xff;
49     cl->format.blueMax = 0xff;
50
51     switch (t->quality()) {
52     case RemoteView::High:
53         cl->appData.useBGR233 = 0;
54         cl->appData.encodingsString = "copyrect hextile raw";
55         cl->appData.compressLevel = 0;
56         cl->appData.qualityLevel = 9;
57         break;
58     case RemoteView::Medium:
59         cl->appData.useBGR233 = 0;
60         cl->appData.encodingsString = "tight zrle ultra copyrect hextile zlib corre rre raw";
61         cl->appData.compressLevel = 5;
62         cl->appData.qualityLevel = 7;
63         break;
64     case RemoteView::Low:
65     case RemoteView::Unknown:
66     default:
67         cl->appData.useBGR233 = 1;
68         cl->appData.encodingsString = "tight zrle ultra copyrect hextile zlib corre rre raw";
69         cl->appData.compressLevel = 9;
70         cl->appData.qualityLevel = 1;
71     }
72
73     SetFormatAndEncodings(cl);
74
75     return true;
76 }
77
78 void VncClientThread::updatefb(rfbClient* cl, int x, int y, int w, int h)
79 {
80     //kDebug(5011) << "updated client: x: " << x << ", y: " << y << ", w: " << w << ", h: " << h;
81
82     const int width = cl->width, height = cl->height;
83
84     const QImage img(cl->frameBuffer, width, height, QImage::Format_RGB32);
85
86     if (img.isNull()) {
87         kDebug(5011) << "image not loaded";
88     }
89
90     VncClientThread *t = (VncClientThread*)rfbClientGetClientData(cl, 0);
91     Q_ASSERT(t);
92
93     t->setImage(img);
94
95     t->emitUpdated(x, y, w, h);
96 }
97
98 void VncClientThread::cuttext(rfbClient* cl, const char *text, int textlen)
99 {
100     const QString cutText = QString::fromUtf8(text, textlen);
101     kDebug(5011) << "cuttext: " << cutText;
102
103     if (!cutText.isEmpty()) {
104         VncClientThread *t = (VncClientThread*)rfbClientGetClientData(cl, 0);
105         Q_ASSERT(t);
106
107         t->emitGotCut(cutText);
108     }
109 }
110
111 char *VncClientThread::passwdHandler(rfbClient *cl)
112 {
113     kDebug(5011) << "password request" << kBacktrace();
114
115     VncClientThread *t = (VncClientThread*)rfbClientGetClientData(cl, 0);
116     Q_ASSERT(t);
117
118     t->m_passwordError = true;
119     t->passwordRequest();
120
121     return strdup(t->password().toLocal8Bit());
122 }
123
124 void VncClientThread::setPassword(const QString &password)
125 {
126     if(password.isNull()) //cancelled, don't retry
127         m_passwordError = false;
128
129     m_password = password;
130 }
131
132 void VncClientThread::outputHandler(const char *format, ...)
133 {
134     va_list args;
135     va_start(args, format);
136
137     QString message;
138     message.vsprintf(format, args);
139
140     va_end(args);
141
142     message = message.trimmed();
143
144     kDebug(5011) << message;
145
146     if ((message.contains("Couldn't convert ")) ||
147             (message.contains("Unable to connect to VNC server")))
148         outputErrorMessageString = i18n("Server not found.");
149     else if ((message.contains("VNC connection failed: Authentication failed, too many tries")) ||
150             (message.contains("VNC connection failed: Too many authentication failures")))
151         outputErrorMessageString = i18n("VNC authentication failed because of too many authentication tries.");
152     else if (message.contains("VNC connection failed: Authentication failed"))
153         outputErrorMessageString = i18n("VNC authentication failed.");
154     else if (message.contains("VNC server closed connection"))
155         outputErrorMessageString = i18n("VNC server closed connection.");
156     else if (message.contains("VNC server supports protocol version 3.889")) // see http://bugs.kde.org/162640
157         outputErrorMessageString = "INTERNAL:APPLE_VNC_COMPATIBILTY"; // internal messages, not displayed to user
158 }
159
160 VncClientThread::VncClientThread(QObject *parent)
161     : QThread(parent)
162     , frameBuffer(0)
163 {
164     QMutexLocker locker(&mutex);
165     m_stopped = false;
166
167     QTimer *outputErrorMessagesCheckTimer = new QTimer(this);
168     outputErrorMessagesCheckTimer->setInterval(500);
169     connect(outputErrorMessagesCheckTimer, SIGNAL(timeout()), this, SLOT(checkOutputErrorMessage()));
170     outputErrorMessagesCheckTimer->start();
171 }
172
173 VncClientThread::~VncClientThread()
174 {
175     stop();
176
177     const bool quitSuccess = wait(1000);
178
179     if(!quitSuccess)
180         kDebug(5011) << "~VncClientThread(): Quit failed";
181
182     delete [] frameBuffer;
183     //cl is free()d when event loop exits.
184 }
185
186 void VncClientThread::checkOutputErrorMessage()
187 {
188     if (!outputErrorMessageString.isEmpty()) {
189         QString errorMessage = outputErrorMessageString;
190         outputErrorMessageString.clear();
191         // show authentication failure error only after the 3rd unsuccessful try
192         if ((errorMessage != i18n("VNC authentication failed.")) || m_passwordError)
193             emit outputErrorMessage(errorMessage);
194     }
195 }
196
197 void VncClientThread::setHost(const QString &host)
198 {
199     QMutexLocker locker(&mutex);
200     m_host = host;
201 }
202
203 void VncClientThread::setPort(int port)
204 {
205     QMutexLocker locker(&mutex);
206     m_port = port;
207 }
208
209 void VncClientThread::setQuality(RemoteView::Quality quality)
210 {
211     m_quality = quality;
212 }
213
214 RemoteView::Quality VncClientThread::quality() const
215 {
216     return m_quality;
217 }
218
219 void VncClientThread::setImage(const QImage &img)
220 {
221     QMutexLocker locker(&mutex);
222     m_image = img;
223 }
224
225 const QImage VncClientThread::image(int x, int y, int w, int h)
226 {
227     QMutexLocker locker(&mutex);
228
229     if (w == 0) // full image requested
230         return m_image;
231     else
232         return m_image.copy(x, y, w, h);
233 }
234
235 void VncClientThread::emitUpdated(int x, int y, int w, int h)
236 {
237     emit imageUpdated(x, y, w, h);
238 }
239
240 void VncClientThread::emitGotCut(const QString &text)
241 {
242     emit gotCut(text);
243 }
244
245 void VncClientThread::stop()
246 {
247     if(m_stopped)
248         return;
249
250     //also abort listening for connections, should be safe without locking
251     if(listen_port)
252         cl->listenSpecified = false;
253
254     QMutexLocker locker(&mutex);
255     m_stopped = true;
256 }
257
258 void VncClientThread::run()
259 {
260     QMutexLocker locker(&mutex);
261
262     int passwd_failures = 0;
263     while (!m_stopped) { // try to connect as long as the server allows
264         m_passwordError = false;
265         outputErrorMessageString.clear(); //don't deliver error messages of old instances...
266
267         rfbClientLog = outputHandler;
268         rfbClientErr = outputHandler;
269         cl = rfbGetClient(8, 3, 4); // bitsPerSample, samplesPerPixel, bytesPerPixel
270         cl->MallocFrameBuffer = newclient;
271         cl->canHandleNewFBSize = true;
272         cl->GetPassword = passwdHandler;
273         cl->GotFrameBufferUpdate = updatefb;
274         cl->GotXCutText = cuttext;
275         rfbClientSetClientData(cl, 0, this);
276
277         cl->serverHost = strdup(m_host.toUtf8().constData());
278
279         if (m_port < 0 || !m_port) // port is invalid or empty...
280             m_port = 5900; // fallback: try an often used VNC port
281
282         if (m_port >= 0 && m_port < 100) // the user most likely used the short form (e.g. :1)
283             m_port += 5900;
284         cl->serverPort = m_port;
285
286         cl->listenSpecified = rfbBool(listen_port > 0);
287         cl->listenPort = listen_port;
288
289         kDebug(5011) << "--------------------- trying init ---------------------";
290
291         if (rfbInitClient(cl, 0, 0))
292             break;
293
294         //init failed...
295         if (m_passwordError) {
296             passwd_failures++;
297             if(passwd_failures < 3)
298                 continue; //that's ok, try again
299         }
300
301         //stop connecting
302         m_stopped = true;
303         return; //no cleanup necessary, cl was free()d by rfbInitClient()
304     }
305
306     locker.unlock();
307
308     // Main VNC event loop
309     while (!m_stopped) {
310         const int i = WaitForMessage(cl, 500);
311         if(m_stopped or i < 0)
312             break;
313
314         if (i)
315             if (!HandleRFBServerMessage(cl))
316                 break;
317
318         locker.relock();
319
320         while (!m_eventQueue.isEmpty()) {
321             ClientEvent* clientEvent = m_eventQueue.dequeue();
322             clientEvent->fire(cl);
323             delete clientEvent;
324         }
325
326         locker.unlock();
327     }
328
329     // Cleanup allocated resources
330     locker.relock();
331     rfbClientCleanup(cl);
332     m_stopped = true;
333 }
334
335 ClientEvent::~ClientEvent()
336 {
337 }
338
339 void PointerClientEvent::fire(rfbClient* cl)
340 {
341     SendPointerEvent(cl, m_x, m_y, m_buttonMask);
342 }
343
344 void KeyClientEvent::fire(rfbClient* cl)
345 {
346     SendKeyEvent(cl, m_key, m_pressed);
347 }
348
349 void ClientCutEvent::fire(rfbClient* cl)
350 {
351     SendClientCutText(cl, text.toUtf8().data(), text.size());
352 }
353
354 void VncClientThread::mouseEvent(int x, int y, int buttonMask)
355 {
356     QMutexLocker lock(&mutex);
357     if (m_stopped)
358         return;
359
360     m_eventQueue.enqueue(new PointerClientEvent(x, y, buttonMask));
361 }
362
363 void VncClientThread::keyEvent(int key, bool pressed)
364 {
365     QMutexLocker lock(&mutex);
366     if (m_stopped)
367         return;
368
369     m_eventQueue.enqueue(new KeyClientEvent(key, pressed));
370 }
371
372 void VncClientThread::clientCut(const QString &text)
373 {
374     QMutexLocker lock(&mutex);
375     if (m_stopped)
376         return;
377
378     m_eventQueue.enqueue(new ClientCutEvent(text));
379 }