summaryrefslogtreecommitdiff
path: root/core/qws/qcopbridge.cpp
blob: 822efb76251f3ab79f3d1c709e4b7342c9a8d7bf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
/**********************************************************************
** Copyright (C) 2000-2002 Trolltech AS.  All rights reserved.
**
** This file is part of the Qtopia Environment.
**
** This file may be distributed and/or modified under the terms of the
** GNU General Public License version 2 as published by the Free Software
** Foundation and appearing in the file LICENSE.GPL included in the
** packaging of this file.
**
** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE
** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
**
** See http://www.trolltech.com/gpl/ for GPL licensing information.
**
** Contact info@trolltech.com if any conditions of this licensing are
** not clear to you.
**
**********************************************************************/

#include "qcopbridge.h"
#include "transferserver.h"

/* OPIE */
#include <qpe/qcopenvelope_qws.h>
#include <qpe/qpeapplication.h>
#include <qpe/version.h>
#include <opie2/odebug.h>

/* QT */
#include <qtextstream.h>
#ifdef QWS
#include <qcopchannel_qws.h>
#endif

/* STD */
#define _XOPEN_SOURCE
#include <pwd.h>
#include <sys/types.h>
#include <unistd.h>

#if defined(_OS_LINUX_)
#include <shadow.h>
#endif

//#define INSECURE

const int block_size = 51200;

QCopBridge::QCopBridge( Q_UINT16 port, QObject *parent ,
        const char* name )
    : QServerSocket( port, 1, parent, name ),
      desktopChannel( 0 ),
      cardChannel( 0 )
{
    if ( !ok() )
    owarn << "Failed to bind to port " << port << "" << oendl;
    else {
#ifndef QT_NO_COP
    desktopChannel = new QCopChannel( "QPE/Desktop", this );
    connect( desktopChannel, SIGNAL(received(const QCString&,const QByteArray&)),
         this, SLOT(desktopMessage(const QCString&,const QByteArray&)) );
    cardChannel = new QCopChannel( "QPE/Card", this );
    connect( cardChannel, SIGNAL(received(const QCString&,const QByteArray&)),
         this, SLOT(desktopMessage(const QCString&,const QByteArray&)) );
#endif
    }
    sendSync = FALSE;
}

QCopBridge::~QCopBridge()
{
#ifndef QT_NO_COP
    delete desktopChannel;
#endif
}

void QCopBridge::newConnection( int socket )
{
    QCopBridgePI *pi = new QCopBridgePI( socket, this );
    openConnections.append( pi );
    connect ( pi, SIGNAL( connectionClosed(QCopBridgePI*) ), this, SLOT( connectionClosed(QCopBridgePI*) ) );
#ifndef QT_NO_COP
    QCopEnvelope( "QPE/System", "setScreenSaverMode(int)" ) << QPEApplication::DisableSuspend;
#endif

    if ( sendSync ) {
    pi ->startSync();
    sendSync = FALSE;
    }
}

void QCopBridge::connectionClosed( QCopBridgePI *pi )
{
    openConnections.remove( pi );
    if ( openConnections.count() == 0 ) {
#ifndef QT_NO_COP
    QCopEnvelope( "QPE/System", "setScreenSaverMode(int)" ) << QPEApplication::Enable;
#endif
    }
}

void QCopBridge::closeOpenConnections()
{
    QCopBridgePI *pi;
    for ( pi = openConnections.first(); pi != 0; pi = openConnections.next() )
    pi->close();
}


void QCopBridge::desktopMessage( const QCString &command, const QByteArray &args )
{
    command.stripWhiteSpace();

    int paren = command.find( "(" );
    if ( paren <= 0 ) {
    odebug << "DesktopMessage: bad qcop syntax" << oendl;
    return;
    }

    QString params = command.mid( paren + 1 );
    if ( params[params.length()-1] != ')' ) {
    odebug << "DesktopMessage: bad qcop syntax" << oendl;
    return;
    }

    params.truncate( params.length()-1 );

    QStringList paramList = QStringList::split( ",", params );
    QString data;
    if ( paramList.count() ) {
    QDataStream stream( args, IO_ReadOnly );
    for ( QStringList::Iterator it = paramList.begin(); it != paramList.end(); ++it ) {
        QString str;
        if ( *it == "QString" ) {
        stream >> str;
        } else if ( *it == "QCString" ) {
        QCString cstr;
        stream >> cstr;
        str = QString::fromLocal8Bit( cstr );
        } else if ( *it == "int" ) {
        int i;
        stream >> i;
        str = QString::number( i );
        } else if ( *it == "bool" ) {
        int i;
        stream >> i;
        str = QString::number( i );
        } else {
        odebug << " cannot route the argument type " << (*it) << " throught the qcop bridge" << oendl;
        return;
        }
        QString estr;
        for (int i=0; i<(int)str.length(); i++) {
        QChar ch = str[i];
        if ( ch.row() )
            goto quick;
        switch (ch.cell()) {
            case '&':
            estr.append( "&amp;" );
            break;
            case ' ':
            estr.append( "&0x20;" );
            break;
            case '\n':
            estr.append( "&0x0d;" );
            break;
            case '\r':
            estr.append( "&0x0a;" );
            break;
            default: quick:
            estr.append(ch);
        }
        }
        data += " " + estr;
    }
    }
    QString sendCommand = QString(command.data()) + data;
    // send the command to all open connections
    if ( command == "startSync()" ) {
    // we need to buffer it a bit
    sendSync = TRUE;
    startTimer( 20000 );
    }

    QCopBridgePI *pi;
    for ( pi = openConnections.first(); pi != 0; pi = openConnections.next() ) {
    pi->sendDesktopMessage( sendCommand );
    }
}

void QCopBridge::timerEvent( QTimerEvent * )
{
    sendSync = FALSE;
    killTimers();
}


QCopBridgePI::QCopBridgePI( int socket, QObject *parent , const char* name )
    : QSocket( parent, name )
{
    setSocket( socket );

    peerport = peerPort();
    peeraddress = peerAddress();

#ifndef INSECURE
    if ( !SyncAuthentication::isAuthorized(peeraddress) ) {
    state = Forbidden;
    startTimer( 0 );
    } else
#endif
    {
    state = Connected;
    sendSync = FALSE;
    connect( this, SIGNAL( readyRead() ), SLOT( read() ) );
    connect( this, SIGNAL( connectionClosed() ), SLOT( connectionClosed() ) );

    QString intro="220 Qtopia ";
    intro += QPE_VERSION; intro += ";";
    intro += "challenge="; intro += SyncAuthentication::serverId(); intro += ";";
    intro += "loginname="; intro += SyncAuthentication::loginName(); intro += ";";
    intro += "displayname="; intro += SyncAuthentication::ownerName(); intro += ";";
    send( intro );
    state = Wait_USER;

    // idle timer to close connections when not used anymore
    startTimer( 60000 );
    connected = TRUE;
    }
}


QCopBridgePI::~QCopBridgePI()
{

}

void QCopBridgePI::connectionClosed()
{
    emit connectionClosed( this );
    // odebug << "Debug: Connection closed" << oendl;
    delete this;
}

void QCopBridgePI::sendDesktopMessage( const QString &msg )
{
    QString str = "CALL QPE/Desktop " + msg;
    send ( str );
}


void QCopBridgePI::send( const QString& msg )
{
    QTextStream os( this );
    os << msg << endl;
    //odebug << "sending qcop message: " << msg << "" << oendl;
}

void QCopBridgePI::read()
{
    while ( canReadLine() )
    process( readLine().stripWhiteSpace() );
}

void QCopBridgePI::process( const QString& message )
{
    //odebug << "Command: " << message << "" << oendl;

    // split message using "," as separator
    QStringList msg = QStringList::split( " ", message );
    if ( msg.isEmpty() ) return;

    // command token
    QString cmd = msg[0].upper();

    // argument token
    QString arg;
    if ( msg.count() >= 2 )
    arg = msg[1];

    // we always respond to QUIT, regardless of state
    if ( cmd == "QUIT" ) {
    send( "211 Have a nice day!" );
    delete this;
    return;
    }

    // connected to client
    if ( Connected == state )
    return;

    // waiting for user name
    if ( Wait_USER == state ) {

    if ( cmd != "USER" || msg.count() < 2 || !SyncAuthentication::checkUser( arg ) ) {
        send( "530 Please login with USER and PASS" );
        return;
    }
    send( "331 User name ok, need password" );
    state = Wait_PASS;
    return;
    }

    // waiting for password
    if ( Wait_PASS == state ) {

    if ( cmd != "PASS" || !SyncAuthentication::checkPassword( arg ) ) {
        send( "530 Please login with USER and PASS" );
        return;
    }
    send( "230 User logged in, proceed" );
    state = Ready;
    if ( sendSync ) {
        sendDesktopMessage( "startSync()" );
        sendSync = FALSE;
    }
    return;
    }

    // noop (NOOP)
    else if ( cmd == "NOOP" ) {
    connected = TRUE;
    send( "200 Command okay" );
    }

    // call (CALL)
    else if ( cmd == "CALL" ) {

    // example: call QPE/System execute(QString) addressbook

    if ( msg.count() < 3 ) {
        send( "500 Syntax error, command unrecognized" );
    }
    else {

        QString channel = msg[1];
        QString command = msg[2];

        command.stripWhiteSpace();

        int paren = command.find( "(" );
        if ( paren <= 0 ) {
        send( "500 Syntax error, command unrecognized" );
        return;
        }

        QString params = command.mid( paren + 1 );
        if ( params[params.length()-1] != ')' ) {
        send( "500 Syntax error, command unrecognized" );
        return;
        }

        params.truncate( params.length()-1 );
        QByteArray buffer;
        QDataStream ds( buffer, IO_WriteOnly );

        int msgId = 3;

        QStringList paramList = QStringList::split( ",", params );
        if ( paramList.count() > msg.count() - 3 ) {
        send( "500 Syntax error, command unrecognized" );
        return;
        }

        for ( QStringList::Iterator it = paramList.begin(); it != paramList.end(); ++it ) {

        QString arg = msg[msgId];
        arg.replace( QRegExp("&0x20;"), " " );
        arg.replace( QRegExp("&amp;"), "&" );
        arg.replace( QRegExp("&0x0d;"), "\n" );
        arg.replace( QRegExp("&0x0a;"), "\r" );
        if ( *it == "QString" )
            ds << arg;
        else if ( *it == "QCString" )
            ds << arg.local8Bit();
        else if ( *it == "int" )
            ds << arg.toInt();
        else if ( *it == "bool" )
            ds << arg.toInt();
        else {
            send( "500 Syntax error, command unrecognized" );
            return;
        }
        msgId++;
        }

#ifndef QT_NO_COP
        if ( !QCopChannel::isRegistered( channel.latin1() ) ) {
        // send message back about it
        QString answer = "599 ChannelNotRegistered " + channel;
        send( answer );
        return;
        }
#endif

#ifndef QT_NO_COP
        if ( paramList.count() )
        QCopChannel::send( channel.latin1(), command.latin1(), buffer );
        else
        QCopChannel::send( channel.latin1(), command.latin1() );

        send( "200 Command okay" );
#endif
    }
    }
    // not implemented
    else
    send( "502 Command not implemented" );
}



void QCopBridgePI::timerEvent( QTimerEvent * )
{
    if ( connected )
    connected = FALSE;
    else
    connectionClosed();
}