summaryrefslogtreecommitdiff
authorzecke <zecke>2004-02-21 13:09:17 (UTC)
committer zecke <zecke>2004-02-21 13:09:17 (UTC)
commit4024cfd1e32a43d82361d6ba9977fe64db88e3ce (patch) (unidiff)
tree1d2e0592a3df330a17d9a07cd2f29615ce5be595
parentaa11789fc4d735a04fac09063851753d8a57027b (diff)
downloadopie-4024cfd1e32a43d82361d6ba9977fe64db88e3ce.zip
opie-4024cfd1e32a43d82361d6ba9977fe64db88e3ce.tar.gz
opie-4024cfd1e32a43d82361d6ba9977fe64db88e3ce.tar.bz2
Fix up syncing mode
InetlliSync,Opie1.0,QtopiaNEW
Diffstat (more/less context) (ignore whitespace changes)
-rw-r--r--core/launcher/qcopbridge.cpp2
-rw-r--r--core/launcher/qcopbridge.h3
-rw-r--r--core/launcher/transferserver.cpp36
3 files changed, 30 insertions, 11 deletions
diff --git a/core/launcher/qcopbridge.cpp b/core/launcher/qcopbridge.cpp
index b45f0cc..9bca360 100644
--- a/core/launcher/qcopbridge.cpp
+++ b/core/launcher/qcopbridge.cpp
@@ -1,498 +1,498 @@
1/********************************************************************** 1/**********************************************************************
2** Copyright (C) 2000-2002 Trolltech AS. All rights reserved. 2** Copyright (C) 2000-2002 Trolltech AS. All rights reserved.
3** 3**
4** This file is part of the Qtopia Environment. 4** This file is part of the Qtopia Environment.
5** 5**
6** This file may be distributed and/or modified under the terms of the 6** This file may be distributed and/or modified under the terms of the
7** GNU General Public License version 2 as published by the Free Software 7** GNU General Public License version 2 as published by the Free Software
8** Foundation and appearing in the file LICENSE.GPL included in the 8** Foundation and appearing in the file LICENSE.GPL included in the
9** packaging of this file. 9** packaging of this file.
10** 10**
11** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE 11** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE
12** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. 12** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
13** 13**
14** See http://www.trolltech.com/gpl/ for GPL licensing information. 14** See http://www.trolltech.com/gpl/ for GPL licensing information.
15** 15**
16** Contact info@trolltech.com if any conditions of this licensing are 16** Contact info@trolltech.com if any conditions of this licensing are
17** not clear to you. 17** not clear to you.
18** 18**
19**********************************************************************/ 19**********************************************************************/
20 20
21#include "qcopbridge.h" 21#include "qcopbridge.h"
22#include "transferserver.h" 22#include "transferserver.h"
23 23
24#include <opie2/oglobal.h> 24#include <opie2/oglobal.h>
25 25
26#ifdef Q_WS_QWS 26#ifdef Q_WS_QWS
27#include <qtopia/qcopenvelope_qws.h> 27#include <qtopia/qcopenvelope_qws.h>
28#endif 28#endif
29#include <qtopia/qpeapplication.h> 29#include <qtopia/qpeapplication.h>
30 30
31#include <qtopia/version.h> 31#include <qtopia/version.h>
32#include <qtopia/config.h> 32#include <qtopia/config.h>
33 33
34#include <qdir.h> 34#include <qdir.h>
35#include <qfile.h> 35#include <qfile.h>
36#include <qtextstream.h> 36#include <qtextstream.h>
37#include <qdatastream.h> 37#include <qdatastream.h>
38#include <qcstring.h> 38#include <qcstring.h>
39#include <qstringlist.h> 39#include <qstringlist.h>
40#include <qfileinfo.h> 40#include <qfileinfo.h>
41#include <qregexp.h> 41#include <qregexp.h>
42#include <qtimer.h> 42#include <qtimer.h>
43#ifdef Q_WS_QWS 43#ifdef Q_WS_QWS
44#include <qcopchannel_qws.h> 44#include <qcopchannel_qws.h>
45#endif 45#endif
46 46
47#ifndef _XOPEN_SOURCE 47#ifndef _XOPEN_SOURCE
48#define _XOPEN_SOURCE 48#define _XOPEN_SOURCE
49#endif 49#endif
50#ifndef Q_OS_WIN32 50#ifndef Q_OS_WIN32
51#include <pwd.h> 51#include <pwd.h>
52#include <unistd.h> 52#include <unistd.h>
53#include <sys/types.h> 53#include <sys/types.h>
54#endif 54#endif
55 55
56#if defined(_OS_LINUX_) 56#if defined(_OS_LINUX_)
57#include <shadow.h> 57#include <shadow.h>
58#endif 58#endif
59 59
60 60
61//#define INSECURE 61//#define INSECURE
62 62
63const int block_size = 51200; 63const int block_size = 51200;
64 64
65QCopBridge::QCopBridge( Q_UINT16 port, QObject *parent, 65QCopBridge::QCopBridge( Q_UINT16 port, QObject *parent,
66 const char* name ) 66 const char* name )
67 : QServerSocket( port, 1, parent, name ), 67 : QServerSocket( port, 1, parent, name ),
68 desktopChannel( 0 ), 68 desktopChannel( 0 ),
69 cardChannel( 0 ) 69 cardChannel( 0 )
70{ 70{
71 if ( !ok() ) 71 if ( !ok() )
72 qWarning( "Failed to bind to port %d", port ); 72 qWarning( "Failed to bind to port %d", port );
73 else { 73 else {
74#ifndef QT_NO_COP 74#ifndef QT_NO_COP
75 desktopChannel = new QCopChannel( "QPE/Desktop", this ); 75 desktopChannel = new QCopChannel( "QPE/Desktop", this );
76 connect( desktopChannel, SIGNAL(received(const QCString &, const QByteArray &)), 76 connect( desktopChannel, SIGNAL(received(const QCString &, const QByteArray &)),
77 this, SLOT(desktopMessage( const QCString &, const QByteArray &)) ); 77 this, SLOT(desktopMessage( const QCString &, const QByteArray &)) );
78 cardChannel = new QCopChannel( "QPE/Card", this ); 78 cardChannel = new QCopChannel( "QPE/Card", this );
79 connect( cardChannel, SIGNAL(received(const QCString &, const QByteArray &)), 79 connect( cardChannel, SIGNAL(received(const QCString &, const QByteArray &)),
80 this, SLOT(desktopMessage( const QCString &, const QByteArray &)) ); 80 this, SLOT(desktopMessage( const QCString &, const QByteArray &)) );
81#endif 81#endif
82 } 82 }
83 sendSync = FALSE; 83 sendSync = FALSE;
84 openConnections.setAutoDelete( TRUE ); 84 openConnections.setAutoDelete( TRUE );
85 authorizeConnections(); 85 authorizeConnections();
86} 86}
87 87
88QCopBridge::~QCopBridge() 88QCopBridge::~QCopBridge()
89{ 89{
90#ifndef QT_NO_COP 90#ifndef QT_NO_COP
91 delete desktopChannel; 91 delete desktopChannel;
92#endif 92#endif
93} 93}
94 94
95void QCopBridge::authorizeConnections() 95void QCopBridge::authorizeConnections()
96{ 96{
97 Config cfg("Security"); 97 Config cfg("Security");
98 cfg.setGroup("SyncMode"); 98 cfg.setGroup("SyncMode");
99 m_mode = Mode(cfg.readNumEntry("Mode", Sharp )); 99 m_mode = Mode(cfg.readNumEntry("Mode", Sharp ));
100 QListIterator<QCopBridgePI> it(openConnections); 100 QListIterator<QCopBridgePI> it(openConnections);
101 while ( it.current() ) { 101 while ( it.current() ) {
102 if ( !it.current()->verifyAuthorised() ) { 102 if ( !it.current()->verifyAuthorised() ) {
103 disconnect ( it.current(), SIGNAL( connectionClosed( QCopBridgePI *) ), this, SLOT( closed( QCopBridgePI *) ) ); 103 disconnect ( it.current(), SIGNAL( connectionClosed( QCopBridgePI *) ), this, SLOT( closed( QCopBridgePI *) ) );
104 openConnections.removeRef( it.current() ); 104 openConnections.removeRef( it.current() );
105 } else 105 } else
106 ++it; 106 ++it;
107 } 107 }
108} 108}
109 109
110void QCopBridge::newConnection( int socket ) 110void QCopBridge::newConnection( int socket )
111{ 111{
112 QCopBridgePI *pi = new QCopBridgePI( socket, this ); 112 QCopBridgePI *pi = new QCopBridgePI( socket, this );
113 openConnections.append( pi ); 113 openConnections.append( pi );
114 connect ( pi, SIGNAL( connectionClosed( QCopBridgePI *) ), this, SLOT( closed( QCopBridgePI *) ) ); 114 connect ( pi, SIGNAL( connectionClosed( QCopBridgePI *) ), this, SLOT( closed( QCopBridgePI *) ) );
115 115
116 /* ### libqtopia merge FIXME */ 116 /* ### libqtopia merge FIXME */
117#if 0 117#if 0
118 QPEApplication::setTempScreenSaverMode( QPEApplication::DisableSuspend ); 118 QPEApplication::setTempScreenSaverMode( QPEApplication::DisableSuspend );
119#endif 119#endif
120#ifndef QT_NO_COP 120#ifndef QT_NO_COP
121 QCopEnvelope( "QPE/System", "setScreenSaverMode(int)" ) << QPEApplication::DisableSuspend; 121 QCopEnvelope( "QPE/System", "setScreenSaverMode(int)" ) << QPEApplication::DisableSuspend;
122#endif 122#endif
123 123
124 if ( sendSync ) { 124 if ( sendSync ) {
125 pi ->startSync(); 125 pi ->startSync();
126 sendSync = FALSE; 126 sendSync = FALSE;
127 } 127 }
128} 128}
129 129
130void QCopBridge::closed( QCopBridgePI *pi ) 130void QCopBridge::closed( QCopBridgePI *pi )
131{ 131{
132 emit connectionClosed( pi->peerAddress() ); 132 emit connectionClosed( pi->peerAddress() );
133 openConnections.removeRef( pi ); 133 openConnections.removeRef( pi );
134 if ( openConnections.count() == 0 ) { 134 if ( openConnections.count() == 0 ) {
135 /* ### FIXME libqtopia merge */ 135 /* ### FIXME libqtopia merge */
136#if 0 136#if 0
137 QPEApplication::setTempScreenSaverMode( QPEApplication::Enable ); 137 QPEApplication::setTempScreenSaverMode( QPEApplication::Enable );
138#endif 138#endif
139#ifndef QT_NO_COP 139#ifndef QT_NO_COP
140 QCopEnvelope( "QPE/System", "setScreenSaverMode(int)" ) << QPEApplication::Enable; 140 QCopEnvelope( "QPE/System", "setScreenSaverMode(int)" ) << QPEApplication::Enable;
141#endif 141#endif
142 } 142 }
143} 143}
144 144
145void QCopBridge::closeOpenConnections() 145void QCopBridge::closeOpenConnections()
146{ 146{
147 QCopBridgePI *pi; 147 QCopBridgePI *pi;
148 for ( pi = openConnections.first(); pi != 0; pi = openConnections.next() ) 148 for ( pi = openConnections.first(); pi != 0; pi = openConnections.next() )
149 pi->close(); 149 pi->close();
150} 150}
151 151
152 152
153void QCopBridge::desktopMessage( const QCString &command, const QByteArray &data ) 153void QCopBridge::desktopMessage( const QCString &command, const QByteArray &data )
154{ 154{
155 if ( command == "startSync()" ) { 155 if ( command == "startSync()" ) {
156 // we need to buffer it a bit 156 // we need to buffer it a bit
157 sendSync = TRUE; 157 sendSync = TRUE;
158 startTimer( 20000 ); 158 startTimer( 20000 );
159 } 159 }
160 160
161 if ( m_mode & Qtopia1_7 ) { 161 if ( m_mode & Qtopia1_7 ) {
162 // send the command to all open connections 162 // send the command to all open connections
163 QCopBridgePI *pi; 163 QCopBridgePI *pi;
164 for ( pi = openConnections.first(); pi != 0; pi = openConnections.next() ) { 164 for ( pi = openConnections.first(); pi != 0; pi = openConnections.next() ) {
165 pi->sendDesktopMessage( command, data ); 165 pi->sendDesktopMessage( command, data );
166 } 166 }
167 } 167 }
168 if ( m_mode & Sharp ) 168 if ( ( m_mode & Sharp ) || (m_mode & IntelliSync) )
169 sendDesktopMessageOld( command, data ); 169 sendDesktopMessageOld( command, data );
170} 170}
171 171
172#ifndef OPIE_NO_OLD_SYNC_CODE 172#ifndef OPIE_NO_OLD_SYNC_CODE
173/* 173/*
174 * Old compat mode 174 * Old compat mode
175 */ 175 */
176void QCopBridge::sendDesktopMessageOld( const QCString& command, const QByteArray& args) { 176void QCopBridge::sendDesktopMessageOld( const QCString& command, const QByteArray& args) {
177 command.stripWhiteSpace(); 177 command.stripWhiteSpace();
178 178
179 int paren = command.find( "(" ); 179 int paren = command.find( "(" );
180 if ( paren <= 0 ) { 180 if ( paren <= 0 ) {
181 qDebug("DesktopMessage: bad qcop syntax"); 181 qDebug("DesktopMessage: bad qcop syntax");
182 return; 182 return;
183 } 183 }
184 184
185 QString params = command.mid( paren + 1 ); 185 QString params = command.mid( paren + 1 );
186 if ( params[params.length()-1] != ')' ) { 186 if ( params[params.length()-1] != ')' ) {
187 qDebug("DesktopMessage: bad qcop syntax"); 187 qDebug("DesktopMessage: bad qcop syntax");
188 return; 188 return;
189 } 189 }
190 190
191 params.truncate( params.length()-1 ); 191 params.truncate( params.length()-1 );
192 192
193 QStringList paramList = QStringList::split( ",", params ); 193 QStringList paramList = QStringList::split( ",", params );
194 QString data; 194 QString data;
195 if ( paramList.count() ) { 195 if ( paramList.count() ) {
196 QDataStream stream( args, IO_ReadOnly ); 196 QDataStream stream( args, IO_ReadOnly );
197 for ( QStringList::Iterator it = paramList.begin(); it != paramList.end(); ++it ) { 197 for ( QStringList::Iterator it = paramList.begin(); it != paramList.end(); ++it ) {
198 QString str; 198 QString str;
199 if ( *it == "QString" ) { 199 if ( *it == "QString" ) {
200 stream >> str; 200 stream >> str;
201 } else if ( *it == "QCString" ) { 201 } else if ( *it == "QCString" ) {
202 QCString cstr; 202 QCString cstr;
203 stream >> cstr; 203 stream >> cstr;
204 str = QString::fromLocal8Bit( cstr ); 204 str = QString::fromLocal8Bit( cstr );
205 } else if ( *it == "int" ) { 205 } else if ( *it == "int" ) {
206 int i; 206 int i;
207 stream >> i; 207 stream >> i;
208 str = QString::number( i ); 208 str = QString::number( i );
209 } else if ( *it == "bool" ) { 209 } else if ( *it == "bool" ) {
210 int i; 210 int i;
211 stream >> i; 211 stream >> i;
212 str = QString::number( i ); 212 str = QString::number( i );
213 } else { 213 } else {
214 qDebug(" cannot route the argument type %s throught the qcop bridge", (*it).latin1() ); 214 qDebug(" cannot route the argument type %s throught the qcop bridge", (*it).latin1() );
215 return; 215 return;
216 } 216 }
217 QString estr; 217 QString estr;
218 for (int i=0; i<(int)str.length(); i++) { 218 for (int i=0; i<(int)str.length(); i++) {
219 QChar ch = str[i]; 219 QChar ch = str[i];
220 if ( ch.row() ) 220 if ( ch.row() )
221 goto quick; 221 goto quick;
222 switch (ch.cell()) { 222 switch (ch.cell()) {
223 case '&': 223 case '&':
224 estr.append( "&amp;" ); 224 estr.append( "&amp;" );
225 break; 225 break;
226 case ' ': 226 case ' ':
227 estr.append( "&0x20;" ); 227 estr.append( "&0x20;" );
228 break; 228 break;
229 case '\n': 229 case '\n':
230 estr.append( "&0x0d;" ); 230 estr.append( "&0x0d;" );
231 break; 231 break;
232 case '\r': 232 case '\r':
233 estr.append( "&0x0a;" ); 233 estr.append( "&0x0a;" );
234 break; 234 break;
235 default: quick: 235 default: quick:
236 estr.append(ch); 236 estr.append(ch);
237 } 237 }
238 } 238 }
239 data += " " + estr; 239 data += " " + estr;
240 } 240 }
241 } 241 }
242 QString sendCommand = QString(command.data()) + data; 242 QString sendCommand = QString(command.data()) + data;
243 243
244 244
245 // send the command to all open connections 245 // send the command to all open connections
246 QCopBridgePI *pi; 246 QCopBridgePI *pi;
247 for ( pi = openConnections.first(); pi != 0; pi = openConnections.next() ) 247 for ( pi = openConnections.first(); pi != 0; pi = openConnections.next() )
248 pi->sendDesktopMessage( sendCommand ); 248 pi->sendDesktopMessage( sendCommand );
249 249
250} 250}
251#endif 251#endif
252 252
253 253
254void QCopBridge::timerEvent( QTimerEvent * ) 254void QCopBridge::timerEvent( QTimerEvent * )
255{ 255{
256 sendSync = FALSE; 256 sendSync = FALSE;
257 killTimers(); 257 killTimers();
258} 258}
259 259
260 260
261QCopBridgePI::QCopBridgePI( int socket, QObject *parent, const char* name ) 261QCopBridgePI::QCopBridgePI( int socket, QObject *parent, const char* name )
262 : QSocket( parent, name ) 262 : QSocket( parent, name )
263{ 263{
264 setSocket( socket ); 264 setSocket( socket );
265 265
266 peerport = peerPort(); 266 peerport = peerPort();
267 peeraddress = peerAddress(); 267 peeraddress = peerAddress();
268 268
269#ifndef INSECURE 269#ifndef INSECURE
270 if ( !SyncAuthentication::isAuthorized(peeraddress) ) { 270 if ( !SyncAuthentication::isAuthorized(peeraddress) ) {
271 state = Forbidden; 271 state = Forbidden;
272 close(); 272 close();
273 } else 273 } else
274#endif 274#endif
275 { 275 {
276 state = Connected; 276 state = Connected;
277 connect( this, SIGNAL( readyRead() ), SLOT( read() ) ); 277 connect( this, SIGNAL( readyRead() ), SLOT( read() ) );
278 QString intro="220 Qtopia "; 278 QString intro="220 Qtopia ";
279 intro += QPE_VERSION; intro += ";"; 279 intro += QPE_VERSION; intro += ";";
280 intro += "challenge="; intro += SyncAuthentication::serverId(); intro += ";"; // No tr 280 intro += "challenge="; intro += SyncAuthentication::serverId(); intro += ";"; // No tr
281 intro += "loginname="; intro += SyncAuthentication::loginName(); intro += ";"; 281 intro += "loginname="; intro += SyncAuthentication::loginName(); intro += ";";
282 intro += "displayname="; intro += SyncAuthentication::ownerName(); intro += ";"; 282 intro += "displayname="; intro += SyncAuthentication::ownerName(); intro += ";";
283 send( intro ); 283 send( intro );
284 state = Wait_USER; 284 state = Wait_USER;
285 } 285 }
286 sendSync = FALSE; 286 sendSync = FALSE;
287 connect( this, SIGNAL( connectionClosed() ), SLOT( myConnectionClosed() ) ); 287 connect( this, SIGNAL( connectionClosed() ), SLOT( myConnectionClosed() ) );
288 288
289 // idle timer to close connections when not used anymore 289 // idle timer to close connections when not used anymore
290 timer = new QTimer(this); 290 timer = new QTimer(this);
291 connect( timer, SIGNAL(timeout()), this, SLOT(myConnectionClosed()) ); 291 connect( timer, SIGNAL(timeout()), this, SLOT(myConnectionClosed()) );
292 timer->start( 300000, TRUE ); 292 timer->start( 300000, TRUE );
293} 293}
294 294
295 295
296QCopBridgePI::~QCopBridgePI() 296QCopBridgePI::~QCopBridgePI()
297{ 297{
298} 298}
299 299
300bool QCopBridgePI::verifyAuthorised() 300bool QCopBridgePI::verifyAuthorised()
301{ 301{
302 if ( !SyncAuthentication::isAuthorized(peerAddress()) ) { 302 if ( !SyncAuthentication::isAuthorized(peerAddress()) ) {
303 state = Forbidden; 303 state = Forbidden;
304 return FALSE; 304 return FALSE;
305 } 305 }
306 return TRUE; 306 return TRUE;
307} 307}
308 308
309void QCopBridgePI::myConnectionClosed() 309void QCopBridgePI::myConnectionClosed()
310{ 310{
311 emit connectionClosed( this ); 311 emit connectionClosed( this );
312} 312}
313 313
314void QCopBridgePI::sendDesktopMessage( const QString &msg ) 314void QCopBridgePI::sendDesktopMessage( const QString &msg )
315{ 315{
316 QString str = "CALL QPE/Desktop " + msg; // No tr 316 QString str = "CALL QPE/Desktop " + msg; // No tr
317 send ( str ); 317 send ( str );
318} 318}
319 319
320void QCopBridgePI::sendDesktopMessage( const QCString &msg, const QByteArray& data ) 320void QCopBridgePI::sendDesktopMessage( const QCString &msg, const QByteArray& data )
321{ 321{
322 if ( !isOpen() ) // eg. Forbidden 322 if ( !isOpen() ) // eg. Forbidden
323 return; 323 return;
324 324
325 const char hdr[]="CALLB QPE/Desktop "; 325 const char hdr[]="CALLB QPE/Desktop ";
326 writeBlock(hdr,sizeof(hdr)-1); 326 writeBlock(hdr,sizeof(hdr)-1);
327 writeBlock(msg,msg.length()); 327 writeBlock(msg,msg.length());
328 writeBlock(" ",1); 328 writeBlock(" ",1);
329 QByteArray b64 = OGlobal::encodeBase64(data); 329 QByteArray b64 = OGlobal::encodeBase64(data);
330 writeBlock(b64.data(),b64.size()); 330 writeBlock(b64.data(),b64.size());
331 writeBlock("\r\n",2); 331 writeBlock("\r\n",2);
332 332
333} 333}
334 334
335 335
336void QCopBridgePI::send( const QString& msg ) 336void QCopBridgePI::send( const QString& msg )
337{ 337{
338 if ( !isOpen() ) // eg. Forbidden 338 if ( !isOpen() ) // eg. Forbidden
339 return; 339 return;
340 QTextStream os( this ); 340 QTextStream os( this );
341 os << msg << endl; 341 os << msg << endl;
342 //qDebug( "sending qcop message: %s", msg.latin1() ); 342 //qDebug( "sending qcop message: %s", msg.latin1() );
343} 343}
344 344
345void QCopBridgePI::read() 345void QCopBridgePI::read()
346{ 346{
347 while ( canReadLine() ) { 347 while ( canReadLine() ) {
348 timer->start( 300000, TRUE ); 348 timer->start( 300000, TRUE );
349 process( readLine().stripWhiteSpace() ); 349 process( readLine().stripWhiteSpace() );
350 } 350 }
351} 351}
352 352
353void QCopBridgePI::process( const QString& message ) 353void QCopBridgePI::process( const QString& message )
354{ 354{
355 //qDebug( "Command: %s", message.latin1() ); 355 //qDebug( "Command: %s", message.latin1() );
356 356
357 // split message using "," as separator 357 // split message using "," as separator
358 QStringList msg = QStringList::split( " ", message ); 358 QStringList msg = QStringList::split( " ", message );
359 if ( msg.isEmpty() ) return; 359 if ( msg.isEmpty() ) return;
360 360
361 // command token 361 // command token
362 QString cmd = msg[0].upper(); 362 QString cmd = msg[0].upper();
363 363
364 // argument token 364 // argument token
365 QString arg; 365 QString arg;
366 if ( msg.count() >= 2 ) 366 if ( msg.count() >= 2 )
367 arg = msg[1]; 367 arg = msg[1];
368 368
369 // we always respond to QUIT, regardless of state 369 // we always respond to QUIT, regardless of state
370 if ( cmd == "QUIT" ) { 370 if ( cmd == "QUIT" ) {
371 send( "211 Have a nice day!" ); // No tr 371 send( "211 Have a nice day!" ); // No tr
372 close(); 372 close();
373 return; 373 return;
374 } 374 }
375 375
376 // connected to client 376 // connected to client
377 if ( Connected == state ) 377 if ( Connected == state )
378 return; 378 return;
379 379
380 // waiting for user name 380 // waiting for user name
381 if ( Wait_USER == state ) { 381 if ( Wait_USER == state ) {
382 382
383 if ( cmd != "USER" || msg.count() < 2 || !SyncAuthentication::checkUser( arg ) ) { 383 if ( cmd != "USER" || msg.count() < 2 || !SyncAuthentication::checkUser( arg ) ) {
384 send( "530 Please login with USER and PASS" ); // No tr 384 send( "530 Please login with USER and PASS" ); // No tr
385 return; 385 return;
386 } 386 }
387 send( "331 User name ok, need password" ); // No tr 387 send( "331 User name ok, need password" ); // No tr
388 state = Wait_PASS; 388 state = Wait_PASS;
389 return; 389 return;
390 } 390 }
391 391
392 // waiting for password 392 // waiting for password
393 if ( Wait_PASS == state ) { 393 if ( Wait_PASS == state ) {
394 394
395 if ( cmd != "PASS" || !SyncAuthentication::checkPassword( arg ) ) { 395 if ( cmd != "PASS" || !SyncAuthentication::checkPassword( arg ) ) {
396 send( "530 Please login with USER and PASS" ); // No tr 396 send( "530 Please login with USER and PASS" ); // No tr
397 return; 397 return;
398 } 398 }
399 send( "230 User logged in, proceed" ); // No tr 399 send( "230 User logged in, proceed" ); // No tr
400 state = Ready; 400 state = Ready;
401 if ( sendSync ) { 401 if ( sendSync ) {
402 sendDesktopMessage( "startSync()" ); 402 sendDesktopMessage( "startSync()" );
403 sendSync = FALSE; 403 sendSync = FALSE;
404 } 404 }
405 return; 405 return;
406 } 406 }
407 407
408 // noop (NOOP) 408 // noop (NOOP)
409 else if ( cmd == "NOOP" ) { 409 else if ( cmd == "NOOP" ) {
410 send( "200 Command okay" ); // No tr 410 send( "200 Command okay" ); // No tr
411 } 411 }
412 412
413 // call (CALL) 413 // call (CALL)
414 else if ( cmd == "CALL" ) { 414 else if ( cmd == "CALL" ) {
415 415
416 // example: call QPE/System execute(QString) addressbook 416 // example: call QPE/System execute(QString) addressbook
417 417
418 if ( msg.count() < 3 ) { 418 if ( msg.count() < 3 ) {
419 send( "500 Syntax error, command unrecognized" ); // No tr 419 send( "500 Syntax error, command unrecognized" ); // No tr
420 } 420 }
421 else { 421 else {
422 422
423 QString channel = msg[1]; 423 QString channel = msg[1];
424 QString command = msg[2]; 424 QString command = msg[2];
425 425
426 command.stripWhiteSpace(); 426 command.stripWhiteSpace();
427 427
428 int paren = command.find( "(" ); 428 int paren = command.find( "(" );
429 if ( paren <= 0 ) { 429 if ( paren <= 0 ) {
430 send( "500 Syntax error, command unrecognized" ); // No tr 430 send( "500 Syntax error, command unrecognized" ); // No tr
431 return; 431 return;
432 } 432 }
433 433
434 QString params = command.mid( paren + 1 ); 434 QString params = command.mid( paren + 1 );
435 if ( params[(int)params.length()-1] != ')' ) { 435 if ( params[(int)params.length()-1] != ')' ) {
436 send( "500 Syntax error, command unrecognized" ); // No tr 436 send( "500 Syntax error, command unrecognized" ); // No tr
437 return; 437 return;
438 } 438 }
439 439
440 params.truncate( params.length()-1 ); 440 params.truncate( params.length()-1 );
441 QByteArray buffer; 441 QByteArray buffer;
442 QDataStream ds( buffer, IO_WriteOnly ); 442 QDataStream ds( buffer, IO_WriteOnly );
443 443
444 int msgId = 3; 444 int msgId = 3;
445 445
446 QStringList paramList = QStringList::split( ",", params ); 446 QStringList paramList = QStringList::split( ",", params );
447 if ( paramList.count() > msg.count() - 3 ) { 447 if ( paramList.count() > msg.count() - 3 ) {
448 send( "500 Syntax error, command unrecognized" ); // No tr 448 send( "500 Syntax error, command unrecognized" ); // No tr
449 return; 449 return;
450 } 450 }
451 451
452 for ( QStringList::Iterator it = paramList.begin(); it != paramList.end(); ++it ) { 452 for ( QStringList::Iterator it = paramList.begin(); it != paramList.end(); ++it ) {
453 453
454 QString arg = msg[msgId]; 454 QString arg = msg[msgId];
455 arg.replace( QRegExp("&0x20;"), " " ); 455 arg.replace( QRegExp("&0x20;"), " " );
456 arg.replace( QRegExp("&amp;"), "&" ); 456 arg.replace( QRegExp("&amp;"), "&" );
457 arg.replace( QRegExp("&0x0d;"), "\n" ); 457 arg.replace( QRegExp("&0x0d;"), "\n" );
458 arg.replace( QRegExp("&0x0a;"), "\r" ); 458 arg.replace( QRegExp("&0x0a;"), "\r" );
459 if ( *it == "QString" ) 459 if ( *it == "QString" )
460 ds << arg; 460 ds << arg;
461 else if ( *it == "QCString" ) 461 else if ( *it == "QCString" )
462 ds << arg.local8Bit(); 462 ds << arg.local8Bit();
463 else if ( *it == "int" ) 463 else if ( *it == "int" )
464 ds << arg.toInt(); 464 ds << arg.toInt();
465 else if ( *it == "bool" ) 465 else if ( *it == "bool" )
466 ds << arg.toInt(); 466 ds << arg.toInt();
467 else { 467 else {
468 send( "500 Syntax error, command unrecognized" ); // No tr 468 send( "500 Syntax error, command unrecognized" ); // No tr
469 return; 469 return;
470 } 470 }
471 msgId++; 471 msgId++;
472 } 472 }
473 473
474#ifndef QT_NO_COP 474#ifndef QT_NO_COP
475 if ( !QCopChannel::isRegistered( channel.latin1() ) ) { 475 if ( !QCopChannel::isRegistered( channel.latin1() ) ) {
476 // send message back about it 476 // send message back about it
477 QString answer = "599 ChannelNotRegistered " + channel; 477 QString answer = "599 ChannelNotRegistered " + channel;
478 send( answer ); 478 send( answer );
479 return; 479 return;
480 } 480 }
481#endif 481#endif
482 482
483#ifndef QT_NO_COP 483#ifndef QT_NO_COP
484 if ( paramList.count() ) 484 if ( paramList.count() )
485 QCopChannel::send( channel.latin1(), command.latin1(), buffer ); 485 QCopChannel::send( channel.latin1(), command.latin1(), buffer );
486 else 486 else
487 QCopChannel::send( channel.latin1(), command.latin1() ); 487 QCopChannel::send( channel.latin1(), command.latin1() );
488 488
489 send( "200 Command okay" ); // No tr 489 send( "200 Command okay" ); // No tr
490#endif 490#endif
491 } 491 }
492 } 492 }
493 // not implemented 493 // not implemented
494 else 494 else
495 send( "502 Command not implemented" ); // No tr 495 send( "502 Command not implemented" ); // No tr
496} 496}
497 497
498 498
diff --git a/core/launcher/qcopbridge.h b/core/launcher/qcopbridge.h
index 9483d9d..d5988cd 100644
--- a/core/launcher/qcopbridge.h
+++ b/core/launcher/qcopbridge.h
@@ -1,100 +1,101 @@
1/********************************************************************** 1/**********************************************************************
2** Copyright (C) 2000-2002 Trolltech AS. All rights reserved. 2** Copyright (C) 2000-2002 Trolltech AS. All rights reserved.
3** 3**
4** This file is part of the Qtopia Environment. 4** This file is part of the Qtopia Environment.
5** 5**
6** This file may be distributed and/or modified under the terms of the 6** This file may be distributed and/or modified under the terms of the
7** GNU General Public License version 2 as published by the Free Software 7** GNU General Public License version 2 as published by the Free Software
8** Foundation and appearing in the file LICENSE.GPL included in the 8** Foundation and appearing in the file LICENSE.GPL included in the
9** packaging of this file. 9** packaging of this file.
10** 10**
11** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE 11** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE
12** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. 12** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
13** 13**
14** See http://www.trolltech.com/gpl/ for GPL licensing information. 14** See http://www.trolltech.com/gpl/ for GPL licensing information.
15** 15**
16** Contact info@trolltech.com if any conditions of this licensing are 16** Contact info@trolltech.com if any conditions of this licensing are
17** not clear to you. 17** not clear to you.
18** 18**
19**********************************************************************/ 19**********************************************************************/
20#ifndef __qcopbridge_h__ 20#ifndef __qcopbridge_h__
21#define __qcopbridge_h__ 21#define __qcopbridge_h__
22 22
23#include <qtopia/global.h> 23#include <qtopia/global.h>
24#include <qserversocket.h> 24#include <qserversocket.h>
25#include <qsocket.h> 25#include <qsocket.h>
26#include <qdir.h> 26#include <qdir.h>
27#include <qfile.h> 27#include <qfile.h>
28#include <qbuffer.h> 28#include <qbuffer.h>
29 29
30class QFileInfo; 30class QFileInfo;
31class QCopBridgePI; 31class QCopBridgePI;
32class QCopChannel; 32class QCopChannel;
33class QTimer; 33class QTimer;
34 34
35class QCopBridge : public QServerSocket 35class QCopBridge : public QServerSocket
36{ 36{
37 Q_OBJECT 37 Q_OBJECT
38 38
39public: 39public:
40 enum Mode { Qtopia1_7= 0x01, Sharp = 0x02, Both = Qtopia1_7 | Sharp }; 40 /* can not or anymore :) */
41 enum Mode { Qtopia1_7= 0x01, Sharp = 0x02, IntelliSync = 0x04 };
41 QCopBridge( Q_UINT16 port, QObject *parent = 0, const char* name = 0 ); 42 QCopBridge( Q_UINT16 port, QObject *parent = 0, const char* name = 0 );
42 virtual ~QCopBridge(); 43 virtual ~QCopBridge();
43 44
44 void newConnection( int socket ); 45 void newConnection( int socket );
45 void closeOpenConnections(); 46 void closeOpenConnections();
46 void authorizeConnections(); 47 void authorizeConnections();
47 48
48public slots: 49public slots:
49 void closed( QCopBridgePI *pi ); 50 void closed( QCopBridgePI *pi );
50 void desktopMessage( const QCString &call, const QByteArray & ); 51 void desktopMessage( const QCString &call, const QByteArray & );
51 52
52signals: 53signals:
53 void connectionClosed( const QHostAddress & ); 54 void connectionClosed( const QHostAddress & );
54 55
55protected: 56protected:
56 void timerEvent( QTimerEvent * ); 57 void timerEvent( QTimerEvent * );
57 void sendDesktopMessageOld( const QCString&, const QByteArray& ); 58 void sendDesktopMessageOld( const QCString&, const QByteArray& );
58 59
59private: 60private:
60 QCopChannel *desktopChannel; 61 QCopChannel *desktopChannel;
61 QCopChannel *cardChannel; 62 QCopChannel *cardChannel;
62 QList<QCopBridgePI> openConnections; 63 QList<QCopBridgePI> openConnections;
63 bool sendSync; 64 bool sendSync;
64 Mode m_mode; 65 Mode m_mode;
65}; 66};
66 67
67 68
68class QCopBridgePI : public QSocket 69class QCopBridgePI : public QSocket
69{ 70{
70 Q_OBJECT 71 Q_OBJECT
71 72
72 enum State { Connected, Wait_USER, Wait_PASS, Ready, Forbidden }; 73 enum State { Connected, Wait_USER, Wait_PASS, Ready, Forbidden };
73 74
74public: 75public:
75 QCopBridgePI( int socket, QObject *parent = 0, const char* name = 0 ); 76 QCopBridgePI( int socket, QObject *parent = 0, const char* name = 0 );
76 virtual ~QCopBridgePI(); 77 virtual ~QCopBridgePI();
77 78
78 void sendDesktopMessage( const QString &msg ); 79 void sendDesktopMessage( const QString &msg );
79 void sendDesktopMessage( const QCString &msg, const QByteArray& ); 80 void sendDesktopMessage( const QCString &msg, const QByteArray& );
80 void startSync() { sendSync = TRUE; } 81 void startSync() { sendSync = TRUE; }
81 bool verifyAuthorised(); 82 bool verifyAuthorised();
82 83
83signals: 84signals:
84 void connectionClosed( QCopBridgePI *); 85 void connectionClosed( QCopBridgePI *);
85 86
86protected slots: 87protected slots:
87 void read(); 88 void read();
88 void send( const QString& msg ); 89 void send( const QString& msg );
89 void process( const QString& command ); 90 void process( const QString& command );
90 void myConnectionClosed(); 91 void myConnectionClosed();
91 92
92private: 93private:
93 State state; 94 State state;
94 Q_UINT16 peerport; 95 Q_UINT16 peerport;
95 QHostAddress peeraddress; 96 QHostAddress peeraddress;
96 bool sendSync; 97 bool sendSync;
97 QTimer *timer; 98 QTimer *timer;
98}; 99};
99 100
100#endif 101#endif
diff --git a/core/launcher/transferserver.cpp b/core/launcher/transferserver.cpp
index 9cb9d7a..8367a62 100644
--- a/core/launcher/transferserver.cpp
+++ b/core/launcher/transferserver.cpp
@@ -1,589 +1,607 @@
1/********************************************************************** 1/**********************************************************************
2** Copyright (C) 2000-2002 Trolltech AS. All rights reserved. 2** Copyright (C) 2000-2002 Trolltech AS. All rights reserved.
3** 3**
4** This file is part of the Qtopia Environment. 4** This file is part of the Qtopia Environment.
5** 5**
6** This file may be distributed and/or modified under the terms of the 6** This file may be distributed and/or modified under the terms of the
7** GNU General Public License version 2 as published by the Free Software 7** GNU General Public License version 2 as published by the Free Software
8** Foundation and appearing in the file LICENSE.GPL included in the 8** Foundation and appearing in the file LICENSE.GPL included in the
9** packaging of this file. 9** packaging of this file.
10** 10**
11** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE 11** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE
12** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. 12** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
13** 13**
14** See http://www.trolltech.com/gpl/ for GPL licensing information. 14** See http://www.trolltech.com/gpl/ for GPL licensing information.
15** 15**
16** Contact info@trolltech.com if any conditions of this licensing are 16** Contact info@trolltech.com if any conditions of this licensing are
17** not clear to you. 17** not clear to you.
18** 18**
19**********************************************************************/ 19**********************************************************************/
20//#define _XOPEN_SOURCE 20//#define _XOPEN_SOURCE
21 21
22#include <opie2/oglobal.h> 22#include <opie2/oglobal.h>
23#include <qtopia/qpeapplication.h> 23#include <qtopia/qpeapplication.h>
24 24
25#ifndef Q_OS_WIN32 25#ifndef Q_OS_WIN32
26#include <pwd.h> 26#include <pwd.h>
27#include <sys/types.h> 27#include <sys/types.h>
28#include <unistd.h> 28#include <unistd.h>
29#include <stdlib.h> 29#include <stdlib.h>
30#include <time.h> 30#include <time.h>
31 31
32#ifndef Q_OS_MACX 32#ifndef Q_OS_MACX
33#include <shadow.h> 33#include <shadow.h>
34#include <crypt.h> 34#include <crypt.h>
35#endif /* Q_OS_MACX */ 35#endif /* Q_OS_MACX */
36 36
37#else 37#else
38#include <stdlib.h> 38#include <stdlib.h>
39#include <time.h> 39#include <time.h>
40#endif 40#endif
41 41
42 42
43#if defined(_OS_LINUX_) 43#if defined(_OS_LINUX_)
44#include <shadow.h> 44#include <shadow.h>
45#endif 45#endif
46 46
47#include <qdir.h> 47#include <qdir.h>
48#include <qfile.h> 48#include <qfile.h>
49#include <qtextstream.h> 49#include <qtextstream.h>
50#include <qdatastream.h> 50#include <qdatastream.h>
51#include <qmessagebox.h> 51#include <qmessagebox.h>
52#include <qstringlist.h> 52#include <qstringlist.h>
53#include <qfileinfo.h> 53#include <qfileinfo.h>
54#include <qregexp.h> 54#include <qregexp.h>
55//#include <qtopia/qcopchannel_qws.h> 55//#include <qtopia/qcopchannel_qws.h>
56#include <qtopia/process.h> 56#include <qtopia/process.h>
57#include <qtopia/global.h> 57#include <qtopia/global.h>
58#include <qtopia/config.h> 58#include <qtopia/config.h>
59#include <qtopia/private/contact.h> 59#include <qtopia/private/contact.h>
60#include <qtopia/quuid.h> 60#include <qtopia/quuid.h>
61#include <qtopia/version.h> 61#include <qtopia/version.h>
62#ifdef Q_WS_QWS 62#ifdef Q_WS_QWS
63#include <qtopia/qcopenvelope_qws.h> 63#include <qtopia/qcopenvelope_qws.h>
64#endif 64#endif
65 65
66 66
67#include "transferserver.h" 67#include "transferserver.h"
68#include <qtopia/qprocess.h> 68#include <qtopia/qprocess.h>
69 69
70const int block_size = 51200; 70const int block_size = 51200;
71 71
72TransferServer::TransferServer( Q_UINT16 port, QObject *parent, 72TransferServer::TransferServer( Q_UINT16 port, QObject *parent,
73 const char* name) 73 const char* name)
74 : QServerSocket( port, 1, parent, name ) 74 : QServerSocket( port, 1, parent, name )
75{ 75{
76 connections.setAutoDelete( TRUE ); 76 connections.setAutoDelete( TRUE );
77 if ( !ok() ) 77 if ( !ok() )
78 qWarning( "Failed to bind to port %d", port ); 78 qWarning( "Failed to bind to port %d", port );
79} 79}
80 80
81void TransferServer::authorizeConnections() 81void TransferServer::authorizeConnections()
82{ 82{
83 QListIterator<ServerPI> it(connections); 83 QListIterator<ServerPI> it(connections);
84 while ( it.current() ) { 84 while ( it.current() ) {
85 if ( !it.current()->verifyAuthorised() ) { 85 if ( !it.current()->verifyAuthorised() ) {
86 disconnect( it.current(), SIGNAL(connectionClosed(ServerPI *)), this, SLOT( closed(ServerPI *)) ); 86 disconnect( it.current(), SIGNAL(connectionClosed(ServerPI *)), this, SLOT( closed(ServerPI *)) );
87 connections.removeRef( it.current() ); 87 connections.removeRef( it.current() );
88 } else 88 } else
89 ++it; 89 ++it;
90 } 90 }
91} 91}
92 92
93void TransferServer::closed(ServerPI *item) 93void TransferServer::closed(ServerPI *item)
94{ 94{
95 connections.removeRef(item); 95 connections.removeRef(item);
96} 96}
97 97
98TransferServer::~TransferServer() 98TransferServer::~TransferServer()
99{ 99{
100} 100}
101 101
102void TransferServer::newConnection( int socket ) 102void TransferServer::newConnection( int socket )
103{ 103{
104 ServerPI *ptr = new ServerPI( socket, this ); 104 ServerPI *ptr = new ServerPI( socket, this );
105 connect( ptr, SIGNAL(connectionClosed(ServerPI *)), this, SLOT( closed(ServerPI *)) ); 105 connect( ptr, SIGNAL(connectionClosed(ServerPI *)), this, SLOT( closed(ServerPI *)) );
106 connections.append( ptr ); 106 connections.append( ptr );
107} 107}
108 108
109QString SyncAuthentication::serverId() 109QString SyncAuthentication::serverId()
110{ 110{
111 Config cfg("Security"); 111 Config cfg("Security");
112 cfg.setGroup("Sync"); 112 cfg.setGroup("Sync");
113 QString r = cfg.readEntry("serverid"); 113 QString r = cfg.readEntry("serverid");
114 114
115 if ( r.isEmpty() ) { 115 if ( r.isEmpty() ) {
116 r = OGlobal::generateUuid(); 116 r = OGlobal::generateUuid();
117 cfg.writeEntry("serverid", r ); 117 cfg.writeEntry("serverid", r );
118 } 118 }
119 return r; 119 return r;
120} 120}
121 121
122QString SyncAuthentication::ownerName() 122QString SyncAuthentication::ownerName()
123{ 123{
124 QString vfilename = Global::applicationFileName("addressbook", 124 QString vfilename = Global::applicationFileName("addressbook",
125 "businesscard.vcf"); 125 "businesscard.vcf");
126 if (QFile::exists(vfilename)) { 126 if (QFile::exists(vfilename)) {
127 Contact c; 127 Contact c;
128 c = Contact::readVCard( vfilename )[0]; 128 c = Contact::readVCard( vfilename )[0];
129 return c.fullName(); 129 return c.fullName();
130 } 130 }
131 131
132 return QString::null; 132 return QString::null;
133} 133}
134 134
135QString SyncAuthentication::loginName() 135QString SyncAuthentication::loginName()
136{ 136{
137 struct passwd *pw = 0L; 137 struct passwd *pw = 0L;
138#ifndef Q_OS_WIN32 138#ifndef Q_OS_WIN32
139 pw = getpwuid( geteuid() ); 139 pw = getpwuid( geteuid() );
140 return QString::fromLocal8Bit( pw->pw_name ); 140 return QString::fromLocal8Bit( pw->pw_name );
141#else 141#else
142 //### revise 142 //### revise
143 return QString(); 143 return QString();
144#endif 144#endif
145} 145}
146 146
147int SyncAuthentication::isAuthorized(QHostAddress peeraddress) 147int SyncAuthentication::isAuthorized(QHostAddress peeraddress)
148{ 148{
149 Config cfg("Security"); 149 Config cfg("Security");
150 cfg.setGroup("Sync"); 150 cfg.setGroup("Sync");
151 // QString allowedstr = cfg.readEntry("auth_peer","192.168.1.0"); 151 // QString allowedstr = cfg.readEntry("auth_peer","192.168.1.0");
152 uint auth_peer = cfg.readNumEntry("auth_peer", 0xc0a80100); 152 uint auth_peer = cfg.readNumEntry("auth_peer", 0xc0a80100);
153 153
154 // QHostAddress allowed; 154 // QHostAddress allowed;
155 // allowed.setAddress(allowedstr); 155 // allowed.setAddress(allowedstr);
156 // uint auth_peer = allowed.ip4Addr(); 156 // uint auth_peer = allowed.ip4Addr();
157 uint auth_peer_bits = cfg.readNumEntry("auth_peer_bits", 24); 157 uint auth_peer_bits = cfg.readNumEntry("auth_peer_bits", 24);
158 uint mask = auth_peer_bits >= 32 // shifting by 32 is not defined 158 uint mask = auth_peer_bits >= 32 // shifting by 32 is not defined
159 ? 0xffffffff : (((1 << auth_peer_bits) - 1) << (32 - auth_peer_bits)); 159 ? 0xffffffff : (((1 << auth_peer_bits) - 1) << (32 - auth_peer_bits));
160 160
161 return (peeraddress.ip4Addr() & mask) == auth_peer; 161 return (peeraddress.ip4Addr() & mask) == auth_peer;
162} 162}
163 163
164bool SyncAuthentication::checkUser( const QString& user ) 164bool SyncAuthentication::checkUser( const QString& user )
165{ 165{
166 if ( user.isEmpty() ) return FALSE; 166 if ( user.isEmpty() ) return FALSE;
167 QString euser = loginName(); 167 QString euser = loginName();
168 return user == euser; 168 return user == euser;
169} 169}
170 170
171bool SyncAuthentication::checkPassword( const QString& password ) 171bool SyncAuthentication::checkPassword( const QString& password )
172{ 172{
173#ifdef ALLOW_UNIX_USER_FTP 173#ifdef ALLOW_UNIX_USER_FTP
174 // First, check system password... 174 // First, check system password...
175 175
176 struct passwd *pw = 0; 176 struct passwd *pw = 0;
177 struct spwd *spw = 0; 177 struct spwd *spw = 0;
178 178
179 pw = getpwuid( geteuid() ); 179 pw = getpwuid( geteuid() );
180 spw = getspnam( pw->pw_name ); 180 spw = getspnam( pw->pw_name );
181 181
182 QString cpwd = QString::fromLocal8Bit( pw->pw_passwd ); 182 QString cpwd = QString::fromLocal8Bit( pw->pw_passwd );
183 if ( cpwd == "x" && spw ) 183 if ( cpwd == "x" && spw )
184 cpwd = QString::fromLocal8Bit( spw->sp_pwdp ); 184 cpwd = QString::fromLocal8Bit( spw->sp_pwdp );
185 185
186 // Note: some systems use more than crypt for passwords. 186 // Note: some systems use more than crypt for passwords.
187 QString cpassword = QString::fromLocal8Bit( crypt( password.local8Bit(), cpwd.local8Bit() ) ); 187 QString cpassword = QString::fromLocal8Bit( crypt( password.local8Bit(), cpwd.local8Bit() ) );
188 if ( cpwd == cpassword ) 188 if ( cpwd == cpassword )
189 return TRUE; 189 return TRUE;
190#endif 190#endif
191 191
192 static int lastdenial=0; 192 static int lastdenial=0;
193 static int denials=0; 193 static int denials=0;
194 int now = time(0); 194 int now = time(0);
195 195
196 Config cfg("Security"); 196 Config cfg("Security");
197 cfg.setGroup("Sync"); 197 cfg.setGroup("SyncMode");
198 QString syncapp = cfg.readEntry("syncapp","Qtopia"); 198 int mode = cfg.readNumEntry("Mode", 0x02 );
199 199
200 //No password needed if the user really wants it 200 //No pass word needed if the user really needs it
201 if (syncapp == "IntelliSync") { 201 if (mode & 0x04) {
202 return TRUE; 202 QMessageBox unauth(
203 } 203 tr("Sync Connection"),
204 204 tr("<qt><p>An unauthorized system is requesting access to this device."
205 // Detect old Qtopia Desktop (no password) 205 "<p>You chose IntelliSync so you may I allow or deny this connection.</qt>" ),
206 QMessageBox::Warning,
207 QMessageBox::Ok, QMessageBox::Cancel|QMessageBox::Default, QMessageBox::NoButton,
208 0, QString::null, TRUE, WStyle_StaysOnTop);
209 unauth.setButtonText(QMessageBox::Ok, tr("Allow" ) );
210 unauth.setButtonText(QMessageBox::Cancel, tr("Deny"));
211 switch( unauth.exec() ) {
212 case QMessageBox::Ok:
213 return TRUE;
214 break;
215 case QMessageBox::Cancel:
216 default:
217 denials++;
218 lastdenial=now;
219 return FALSE;
220 }
221 }
222
223 // Detect old Qtopia Desktop (no password) and fail
206 if ( password.isEmpty() ) { 224 if ( password.isEmpty() ) {
207 if ( denials < 3 || now > lastdenial+600 ) { 225 if ( denials < 3 || now > lastdenial+600 ) {
208 QMessageBox unauth( 226 QMessageBox unauth(
209 tr("Sync Connection"), 227 tr("Sync Connection"),
210 tr("<p>An unauthorized system is requesting access to this device." 228 tr("<p>An unauthorized system is requesting access to this device."
211 "<p>If you are using a version of Qtopia Desktop older than 1.5.1, " 229 "<p>If you are using a version of Qtopia Desktop older than 1.5.1, "
212 "please upgrade or change the security setting to use IntelliSync." ), 230 "please upgrade or change the security setting to use IntelliSync." ),
213 QMessageBox::Warning, 231 QMessageBox::Warning,
214 QMessageBox::Cancel, QMessageBox::NoButton, QMessageBox::NoButton, 232 QMessageBox::Cancel, QMessageBox::NoButton, QMessageBox::NoButton,
215 0, QString::null, TRUE, WStyle_StaysOnTop); 233 0, QString::null, TRUE, WStyle_StaysOnTop);
216 unauth.setButtonText(QMessageBox::Cancel, tr("Deny")); 234 unauth.setButtonText(QMessageBox::Cancel, tr("Deny"));
217 unauth.exec(); 235 unauth.exec();
218 236
219 denials++; 237 denials++;
220 lastdenial=now; 238 lastdenial=now;
221 } 239 }
222 return FALSE; 240 return FALSE;
223 241
224 } 242 }
225 243
226 // Second, check sync password... 244 // Second, check sync password...
227 245
228 static int lock=0; 246 static int lock=0;
229 if ( lock ) return FALSE; 247 if ( lock ) return FALSE;
230 248
231 ++lock; 249 ++lock;
232 250
233 /* 251 /*
234 * we need to support old Sync software and QtopiaDesktop 252 * we need to support old Sync software and QtopiaDesktop
235 */ 253 */
236 if ( password.left(6) == "Qtopia" || password.left(6) == "rootme" ) { 254 if ( password.left(6) == "Qtopia" || password.left(6) == "rootme" ) {
237 Config cfg( "Security" ); 255 Config cfg( "Security" );
238 cfg.setGroup("Sync"); 256 cfg.setGroup("Sync");
239 QStringList pwds = cfg.readListEntry("Passwords",' '); 257 QStringList pwds = cfg.readListEntry("Passwords",' ');
240 for (QStringList::ConstIterator it=pwds.begin(); it!=pwds.end(); ++it) { 258 for (QStringList::ConstIterator it=pwds.begin(); it!=pwds.end(); ++it) {
241#ifndef Q_OS_WIN32 259#ifndef Q_OS_WIN32
242 QString cpassword = QString::fromLocal8Bit( 260 QString cpassword = QString::fromLocal8Bit(
243 crypt( password.mid(8).local8Bit(), (*it).left(2).latin1() ) ); 261 crypt( password.mid(8).local8Bit(), (*it).left(2).latin1() ) );
244#else 262#else
245 // ### revise 263 // ### revise
246 QString cpassword(""); 264 QString cpassword("");
247#endif 265#endif
248 if ( *it == cpassword ) { 266 if ( *it == cpassword ) {
249 lock--; 267 lock--;
250 return TRUE; 268 return TRUE;
251 } 269 }
252 } 270 }
253 271
254 // Unrecognized system. Be careful... 272 // Unrecognized system. Be careful...
255 QMessageBox unrecbox( 273 QMessageBox unrecbox(
256 tr("Sync Connection"), 274 tr("Sync Connection"),
257 tr("<p>An unrecognized system is requesting access to this device." 275 tr("<p>An unrecognized system is requesting access to this device."
258 "<p>If you have just initiated a Sync for the first time, this is normal."), 276 "<p>If you have just initiated a Sync for the first time, this is normal."),
259 QMessageBox::Warning, 277 QMessageBox::Warning,
260 QMessageBox::Cancel, QMessageBox::Yes, QMessageBox::NoButton, 278 QMessageBox::Cancel, QMessageBox::Yes, QMessageBox::NoButton,
261 0, QString::null, TRUE, WStyle_StaysOnTop); 279 0, QString::null, TRUE, WStyle_StaysOnTop);
262 unrecbox.setButtonText(QMessageBox::Cancel, tr("Deny")); 280 unrecbox.setButtonText(QMessageBox::Cancel, tr("Deny"));
263 unrecbox.setButtonText(QMessageBox::Yes, tr("Allow")); 281 unrecbox.setButtonText(QMessageBox::Yes, tr("Allow"));
264 282
265 if ( (denials > 2 && now < lastdenial+600) 283 if ( (denials > 2 && now < lastdenial+600)
266 || unrecbox.exec() != QMessageBox::Yes) 284 || unrecbox.exec() != QMessageBox::Yes)
267 { 285 {
268 denials++; 286 denials++;
269 lastdenial=now; 287 lastdenial=now;
270 lock--; 288 lock--;
271 return FALSE; 289 return FALSE;
272 } else { 290 } else {
273 const char salty[]="abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789/."; 291 const char salty[]="abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789/.";
274 char salt[2]; 292 char salt[2];
275 salt[0]= salty[rand() % (sizeof(salty)-1)]; 293 salt[0]= salty[rand() % (sizeof(salty)-1)];
276 salt[1]= salty[rand() % (sizeof(salty)-1)]; 294 salt[1]= salty[rand() % (sizeof(salty)-1)];
277#ifndef Q_OS_WIN32 295#ifndef Q_OS_WIN32
278 QString cpassword = QString::fromLocal8Bit( 296 QString cpassword = QString::fromLocal8Bit(
279 crypt( password.mid(8).local8Bit(), salt ) ); 297 crypt( password.mid(8).local8Bit(), salt ) );
280#else 298#else
281 //### revise 299 //### revise
282 QString cpassword(""); 300 QString cpassword("");
283#endif 301#endif
284 denials=0; 302 denials=0;
285 pwds.prepend(cpassword); 303 pwds.prepend(cpassword);
286 cfg.writeEntry("Passwords",pwds,' '); 304 cfg.writeEntry("Passwords",pwds,' ');
287 lock--; 305 lock--;
288 return TRUE; 306 return TRUE;
289 } 307 }
290 } 308 }
291 lock--; 309 lock--;
292 310
293 return FALSE; 311 return FALSE;
294} 312}
295 313
296 314
297ServerPI::ServerPI( int socket, QObject *parent, const char* name ) 315ServerPI::ServerPI( int socket, QObject *parent, const char* name )
298 : QSocket( parent, name ) , dtp( 0 ), serversocket( 0 ), waitsocket( 0 ), 316 : QSocket( parent, name ) , dtp( 0 ), serversocket( 0 ), waitsocket( 0 ),
299 storFileSize(-1) 317 storFileSize(-1)
300{ 318{
301 state = Connected; 319 state = Connected;
302 320
303 setSocket( socket ); 321 setSocket( socket );
304 322
305 peerport = peerPort(); 323 peerport = peerPort();
306 peeraddress = peerAddress(); 324 peeraddress = peerAddress();
307 325
308#ifndef INSECURE 326#ifndef INSECURE
309 if ( !SyncAuthentication::isAuthorized(peeraddress) ) { 327 if ( !SyncAuthentication::isAuthorized(peeraddress) ) {
310 state = Forbidden; 328 state = Forbidden;
311 startTimer( 0 ); 329 startTimer( 0 );
312 } else 330 } else
313#endif 331#endif
314 { 332 {
315 connect( this, SIGNAL( readyRead() ), SLOT( read() ) ); 333 connect( this, SIGNAL( readyRead() ), SLOT( read() ) );
316 connect( this, SIGNAL( connectionClosed() ), SLOT( connectionClosed() ) ); 334 connect( this, SIGNAL( connectionClosed() ), SLOT( connectionClosed() ) );
317 335
318 passiv = FALSE; 336 passiv = FALSE;
319 for( int i = 0; i < 4; i++ ) 337 for( int i = 0; i < 4; i++ )
320 wait[i] = FALSE; 338 wait[i] = FALSE;
321 339
322 send( "220 Qtopia " QPE_VERSION " FTP Server" ); // No tr 340 send( "220 Qtopia " QPE_VERSION " FTP Server" ); // No tr
323 state = Wait_USER; 341 state = Wait_USER;
324 342
325 dtp = new ServerDTP( this ); 343 dtp = new ServerDTP( this );
326 connect( dtp, SIGNAL( completed() ), SLOT( dtpCompleted() ) ); 344 connect( dtp, SIGNAL( completed() ), SLOT( dtpCompleted() ) );
327 connect( dtp, SIGNAL( failed() ), SLOT( dtpFailed() ) ); 345 connect( dtp, SIGNAL( failed() ), SLOT( dtpFailed() ) );
328 connect( dtp, SIGNAL( error( int ) ), SLOT( dtpError( int ) ) ); 346 connect( dtp, SIGNAL( error( int ) ), SLOT( dtpError( int ) ) );
329 347
330 348
331 directory = QDir::currentDirPath(); 349 directory = QDir::currentDirPath();
332 350
333 static int p = 1024; 351 static int p = 1024;
334 352
335 while ( !serversocket || !serversocket->ok() ) { 353 while ( !serversocket || !serversocket->ok() ) {
336 delete serversocket; 354 delete serversocket;
337 serversocket = new ServerSocket( ++p, this ); 355 serversocket = new ServerSocket( ++p, this );
338 } 356 }
339 connect( serversocket, SIGNAL( newIncomming( int ) ), 357 connect( serversocket, SIGNAL( newIncomming( int ) ),
340 SLOT( newConnection( int ) ) ); 358 SLOT( newConnection( int ) ) );
341 } 359 }
342} 360}
343 361
344ServerPI::~ServerPI() 362ServerPI::~ServerPI()
345{ 363{
346 close(); 364 close();
347 365
348 if ( dtp ) 366 if ( dtp )
349 dtp->close(); 367 dtp->close();
350 delete dtp; 368 delete dtp;
351 delete serversocket; 369 delete serversocket;
352} 370}
353 371
354bool ServerPI::verifyAuthorised() 372bool ServerPI::verifyAuthorised()
355{ 373{
356 if ( !SyncAuthentication::isAuthorized(peerAddress()) ) { 374 if ( !SyncAuthentication::isAuthorized(peerAddress()) ) {
357 state = Forbidden; 375 state = Forbidden;
358 return FALSE; 376 return FALSE;
359 } 377 }
360 return TRUE; 378 return TRUE;
361} 379}
362 380
363void ServerPI::connectionClosed() 381void ServerPI::connectionClosed()
364{ 382{
365 // qDebug( "Debug: Connection closed" ); 383 // qDebug( "Debug: Connection closed" );
366 emit connectionClosed(this); 384 emit connectionClosed(this);
367} 385}
368 386
369void ServerPI::send( const QString& msg ) 387void ServerPI::send( const QString& msg )
370{ 388{
371 QTextStream os( this ); 389 QTextStream os( this );
372 os << msg << endl; 390 os << msg << endl;
373 //qDebug( "Reply: %s", msg.latin1() ); 391 //qDebug( "Reply: %s", msg.latin1() );
374} 392}
375 393
376void ServerPI::read() 394void ServerPI::read()
377{ 395{
378 while ( canReadLine() ) 396 while ( canReadLine() )
379 process( readLine().stripWhiteSpace() ); 397 process( readLine().stripWhiteSpace() );
380} 398}
381 399
382bool ServerPI::checkReadFile( const QString& file ) 400bool ServerPI::checkReadFile( const QString& file )
383{ 401{
384 QString filename; 402 QString filename;
385 403
386 if ( file[0] != "/" ) 404 if ( file[0] != "/" )
387 filename = directory.path() + "/" + file; 405 filename = directory.path() + "/" + file;
388 else 406 else
389 filename = file; 407 filename = file;
390 408
391 QFileInfo fi( filename ); 409 QFileInfo fi( filename );
392 return ( fi.exists() && fi.isReadable() ); 410 return ( fi.exists() && fi.isReadable() );
393} 411}
394 412
395bool ServerPI::checkWriteFile( const QString& file ) 413bool ServerPI::checkWriteFile( const QString& file )
396{ 414{
397 QString filename; 415 QString filename;
398 416
399 if ( file[0] != "/" ) 417 if ( file[0] != "/" )
400 filename = directory.path() + "/" + file; 418 filename = directory.path() + "/" + file;
401 else 419 else
402 filename = file; 420 filename = file;
403 421
404 QFileInfo fi( filename ); 422 QFileInfo fi( filename );
405 423
406 if ( fi.exists() ) 424 if ( fi.exists() )
407 if ( !QFile( filename ).remove() ) 425 if ( !QFile( filename ).remove() )
408 return FALSE; 426 return FALSE;
409 return TRUE; 427 return TRUE;
410} 428}
411 429
412void ServerPI::process( const QString& message ) 430void ServerPI::process( const QString& message )
413{ 431{
414 //qDebug( "Command: %s", message.latin1() ); 432 //qDebug( "Command: %s", message.latin1() );
415 433
416 // split message using "," as separator 434 // split message using "," as separator
417 QStringList msg = QStringList::split( " ", message ); 435 QStringList msg = QStringList::split( " ", message );
418 if ( msg.isEmpty() ) return; 436 if ( msg.isEmpty() ) return;
419 437
420 // command token 438 // command token
421 QString cmd = msg[0].upper(); 439 QString cmd = msg[0].upper();
422 440
423 // argument token 441 // argument token
424 QString arg; 442 QString arg;
425 if ( msg.count() >= 2 ) 443 if ( msg.count() >= 2 )
426 arg = msg[1]; 444 arg = msg[1];
427 445
428 // full argument string 446 // full argument string
429 QString args; 447 QString args;
430 if ( msg.count() >= 2 ) { 448 if ( msg.count() >= 2 ) {
431 QStringList copy( msg ); 449 QStringList copy( msg );
432 // FIXME: for Qt3 450 // FIXME: for Qt3
433 // copy.pop_front() 451 // copy.pop_front()
434 copy.remove( copy.begin() ); 452 copy.remove( copy.begin() );
435 args = copy.join( " " ); 453 args = copy.join( " " );
436 } 454 }
437 455
438 //qDebug( "args: %s", args.latin1() ); 456 //qDebug( "args: %s", args.latin1() );
439 457
440 // we always respond to QUIT, regardless of state 458 // we always respond to QUIT, regardless of state
441 if ( cmd == "QUIT" ) { 459 if ( cmd == "QUIT" ) {
442 send( "211 Good bye!" ); // No tr 460 send( "211 Good bye!" ); // No tr
443 close(); 461 close();
444 return; 462 return;
445 } 463 }
446 464
447 // connected to client 465 // connected to client
448 if ( Connected == state ) 466 if ( Connected == state )
449 return; 467 return;
450 468
451 // waiting for user name 469 // waiting for user name
452 if ( Wait_USER == state ) { 470 if ( Wait_USER == state ) {
453 471
454 if ( cmd != "USER" || msg.count() < 2 || !SyncAuthentication::checkUser( arg ) ) { 472 if ( cmd != "USER" || msg.count() < 2 || !SyncAuthentication::checkUser( arg ) ) {
455 send( "530 Please login with USER and PASS" ); // No tr 473 send( "530 Please login with USER and PASS" ); // No tr
456 return; 474 return;
457 } 475 }
458 send( "331 User name ok, need password" ); // No tr 476 send( "331 User name ok, need password" ); // No tr
459 state = Wait_PASS; 477 state = Wait_PASS;
460 return; 478 return;
461 } 479 }
462 480
463 // waiting for password 481 // waiting for password
464 if ( Wait_PASS == state ) { 482 if ( Wait_PASS == state ) {
465 483
466 if ( cmd != "PASS" || !SyncAuthentication::checkPassword( arg ) ) { 484 if ( cmd != "PASS" || !SyncAuthentication::checkPassword( arg ) ) {
467 send( "530 Please login with USER and PASS" ); // No tr 485 send( "530 Please login with USER and PASS" ); // No tr
468 return; 486 return;
469 } 487 }
470 send( "230 User logged in, proceed" ); // No tr 488 send( "230 User logged in, proceed" ); // No tr
471 state = Ready; 489 state = Ready;
472 return; 490 return;
473 } 491 }
474 492
475 // ACCESS CONTROL COMMANDS 493 // ACCESS CONTROL COMMANDS
476 494
477 // Only an ALLO sent immediately before STOR is valid. 495 // Only an ALLO sent immediately before STOR is valid.
478 if ( cmd != "STOR" ) 496 if ( cmd != "STOR" )
479 storFileSize = -1; 497 storFileSize = -1;
480 498
481 // account (ACCT) 499 // account (ACCT)
482 if ( cmd == "ACCT" ) { 500 if ( cmd == "ACCT" ) {
483 // even wu-ftp does not support it 501 // even wu-ftp does not support it
484 send( "502 Command not implemented" ); // No tr 502 send( "502 Command not implemented" ); // No tr
485 } 503 }
486 504
487 // change working directory (CWD) 505 // change working directory (CWD)
488 else if ( cmd == "CWD" ) { 506 else if ( cmd == "CWD" ) {
489 507
490 if ( !args.isEmpty() ) { 508 if ( !args.isEmpty() ) {
491 if ( directory.cd( args, TRUE ) ) 509 if ( directory.cd( args, TRUE ) )
492 send( "250 Requested file action okay, completed" ); // No tr 510 send( "250 Requested file action okay, completed" ); // No tr
493 else 511 else
494 send( "550 Requested action not taken" ); // No tr 512 send( "550 Requested action not taken" ); // No tr
495 } 513 }
496 else 514 else
497 send( "500 Syntax error, command unrecognized" ); // No tr 515 send( "500 Syntax error, command unrecognized" ); // No tr
498 } 516 }
499 517
500 // change to parent directory (CDUP) 518 // change to parent directory (CDUP)
501 else if ( cmd == "CDUP" ) { 519 else if ( cmd == "CDUP" ) {
502 if ( directory.cdUp() ) 520 if ( directory.cdUp() )
503 send( "250 Requested file action okay, completed" ); // No tr 521 send( "250 Requested file action okay, completed" ); // No tr
504 else 522 else
505 send( "550 Requested action not taken" ); // No tr 523 send( "550 Requested action not taken" ); // No tr
506 } 524 }
507 525
508 // structure mount (SMNT) 526 // structure mount (SMNT)
509 else if ( cmd == "SMNT" ) { 527 else if ( cmd == "SMNT" ) {
510 // even wu-ftp does not support it 528 // even wu-ftp does not support it
511 send( "502 Command not implemented" ); // No tr 529 send( "502 Command not implemented" ); // No tr
512 } 530 }
513 531
514 // reinitialize (REIN) 532 // reinitialize (REIN)
515 else if ( cmd == "REIN" ) { 533 else if ( cmd == "REIN" ) {
516 // even wu-ftp does not support it 534 // even wu-ftp does not support it
517 send( "502 Command not implemented" ); // No tr 535 send( "502 Command not implemented" ); // No tr
518 } 536 }
519 537
520 538
521 // TRANSFER PARAMETER COMMANDS 539 // TRANSFER PARAMETER COMMANDS
522 540
523 541
524 // data port (PORT) 542 // data port (PORT)
525 else if ( cmd == "PORT" ) { 543 else if ( cmd == "PORT" ) {
526 if ( parsePort( arg ) ) 544 if ( parsePort( arg ) )
527 send( "200 Command okay" ); // No tr 545 send( "200 Command okay" ); // No tr
528 else 546 else
529 send( "500 Syntax error, command unrecognized" ); // No tr 547 send( "500 Syntax error, command unrecognized" ); // No tr
530 } 548 }
531 549
532 // passive (PASV) 550 // passive (PASV)
533 else if ( cmd == "PASV" ) { 551 else if ( cmd == "PASV" ) {
534 passiv = TRUE; 552 passiv = TRUE;
535 send( "227 Entering Passive Mode (" // No tr 553 send( "227 Entering Passive Mode (" // No tr
536 + address().toString().replace( QRegExp( "\\." ), "," ) + "," 554 + address().toString().replace( QRegExp( "\\." ), "," ) + ","
537 + QString::number( ( serversocket->port() ) >> 8 ) + "," 555 + QString::number( ( serversocket->port() ) >> 8 ) + ","
538 + QString::number( ( serversocket->port() ) & 0xFF ) +")" ); 556 + QString::number( ( serversocket->port() ) & 0xFF ) +")" );
539 } 557 }
540 558
541 // representation type (TYPE) 559 // representation type (TYPE)
542 else if ( cmd == "TYPE" ) { 560 else if ( cmd == "TYPE" ) {
543 if ( arg.upper() == "A" || arg.upper() == "I" ) 561 if ( arg.upper() == "A" || arg.upper() == "I" )
544 send( "200 Command okay" ); // No tr 562 send( "200 Command okay" ); // No tr
545 else 563 else
546 send( "504 Command not implemented for that parameter" ); // No tr 564 send( "504 Command not implemented for that parameter" ); // No tr
547 } 565 }
548 566
549 // file structure (STRU) 567 // file structure (STRU)
550 else if ( cmd == "STRU" ) { 568 else if ( cmd == "STRU" ) {
551 if ( arg.upper() == "F" ) 569 if ( arg.upper() == "F" )
552 send( "200 Command okay" ); // No tr 570 send( "200 Command okay" ); // No tr
553 else 571 else
554 send( "504 Command not implemented for that parameter" ); // No tr 572 send( "504 Command not implemented for that parameter" ); // No tr
555 } 573 }
556 574
557 // transfer mode (MODE) 575 // transfer mode (MODE)
558 else if ( cmd == "MODE" ) { 576 else if ( cmd == "MODE" ) {
559 if ( arg.upper() == "S" ) 577 if ( arg.upper() == "S" )
560 send( "200 Command okay" ); // No tr 578 send( "200 Command okay" ); // No tr
561 else 579 else
562 send( "504 Command not implemented for that parameter" ); // No tr 580 send( "504 Command not implemented for that parameter" ); // No tr
563 } 581 }
564 582
565 583
566 // FTP SERVICE COMMANDS 584 // FTP SERVICE COMMANDS
567 585
568 586
569 // retrieve (RETR) 587 // retrieve (RETR)
570 else if ( cmd == "RETR" ) 588 else if ( cmd == "RETR" )
571 if ( !args.isEmpty() && checkReadFile( absFilePath( args ) ) 589 if ( !args.isEmpty() && checkReadFile( absFilePath( args ) )
572 || backupRestoreGzip( absFilePath( args ) ) ) { 590 || backupRestoreGzip( absFilePath( args ) ) ) {
573 send( "150 File status okay" ); // No tr 591 send( "150 File status okay" ); // No tr
574 sendFile( absFilePath( args ) ); 592 sendFile( absFilePath( args ) );
575 } 593 }
576 else { 594 else {
577 qDebug("550 Requested action not taken"); 595 qDebug("550 Requested action not taken");
578 send( "550 Requested action not taken" ); // No tr 596 send( "550 Requested action not taken" ); // No tr
579 } 597 }
580 598
581 // store (STOR) 599 // store (STOR)
582 else if ( cmd == "STOR" ) 600 else if ( cmd == "STOR" )
583 if ( !args.isEmpty() && checkWriteFile( absFilePath( args ) ) ) { 601 if ( !args.isEmpty() && checkWriteFile( absFilePath( args ) ) ) {
584 send( "150 File status okay" ); // No tr 602 send( "150 File status okay" ); // No tr
585 retrieveFile( absFilePath( args ) ); 603 retrieveFile( absFilePath( args ) );
586 } 604 }
587 else 605 else
588 send( "550 Requested action not taken" ); // No tr 606 send( "550 Requested action not taken" ); // No tr
589 607