-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathESP32FtpServer.cpp
1239 lines (1141 loc) · 34.2 KB
/
ESP32FtpServer.cpp
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
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/*
* FTP Server for ESP32
*
* based on FTP Serveur for Arduino Due and Ethernet shield (W5100) or WIZ820io (W5200)
* based on Jean-Michel Gallego's work
* modified to work with esp8266 SPIFFS by David Paiva [email protected]
*
* Modified by Ed Williams to support active or passive modes. No wildcards are supported.
* Works with Windows FTP, UNIX FTP, WinSCP, Classic FTP and Firefox FTP clients that I
* have access to. It's definitely not complete but works well enough for me.
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
* 2017: modified by @robo8080
* 2019: modified by @fa1ke5
* 2020-01-01: Modified by @mtnbkr88 (Ed Williams)
*
*/
#include "ESP32FtpServer.h"
#include <WiFi.h>
#include <FS.h>
#include "SD_MMC.h"
#include <string.h>
using namespace std;
WiFiServer ftpServer( FTP_CTRL_PORT );
WiFiServer dataServer( FTP_DATA_PORT );
void FtpServer::begin(String uname, String pword)
{
// Tells the ftp server to begin listening for incoming connection
_FTP_USER = uname;
_FTP_PASS = pword;
// Default for data port
dataPort = FTP_DATA_PORT;
ftpServer.begin();
delay(10);
dataServer.begin( FTP_DATA_PORT );
delay(10);
millisTimeOut = (uint32_t)FTP_TIME_OUT * 60 * 1000;
millisDelay = 0;
cmdStatus = 0;
iniVariables();
}
void FtpServer::iniVariables()
{
// Default Data connection is Active
dataPassiveConn = false;
// Set the root directory
strcpy( cwdName, "/" );
rnfrCmd = false;
transferStatus = 0;
}
void FtpServer::handleFTP()
{
if((int32_t) ( millisDelay - millis() ) > 0 )
return;
if (ftpServer.hasClient()) { // returns true when a remote computer is trying to connect
client.stop(); // dump old client connection if there was one
client = ftpServer.available(); // point client to the new remote connection
}
if( cmdStatus == 0 ) // if command status is zero, then server is not ready to handle it
{
if( client.connected())
disconnectClient(); // if connection not expected, close it
cmdStatus = 1;
}
else if( cmdStatus == 1 ) // Ftp server waiting for connection
{
abortTransfer(); // killing all current activity and setting up for new connections
iniVariables();
#ifdef FTP_DEBUG
Serial.println("Ftp server waiting for connection on port "+ String(FTP_CTRL_PORT));
#endif
cmdStatus = 2;
}
else if( cmdStatus == 2 ) // Ftp server idle
{
if( client.connected() ) // true if a client is currently connected
{
clientConnected();
millisEndConnection = millis() + 10 * 1000 ; // wait client id during 10 s.
cmdStatus = 3;
}
}
else if( readChar() > 0 ) // got response
{
if( ! strcmp( command, "OPTS" ) || ( ! strcmp( command, "SYST" )) || ( ! strcmp( command, "FEAT" )) ) {
processCommand(); // process OPTS, SYST and FEAT
}
else if( cmdStatus == 3 ) // Ftp server waiting for user identity
{ if( userIdentity() )
cmdStatus = 4;
else
cmdStatus = 0;
}
else if( cmdStatus == 4 ) // Ftp server waiting for user registration
if( userPassword() )
{
cmdStatus = 5;
millisEndConnection = millis() + millisTimeOut;
}
else
cmdStatus = 0;
else if( cmdStatus == 5 ) // Ftp server waiting for user command
if( ! processCommand())
cmdStatus = 0;
else
millisEndConnection = millis() + millisTimeOut;
}
else if (!client.connected() || !client)
{
cmdStatus = 1;
#ifdef FTP_DEBUG
Serial.println("client disconnected");
#endif
}
if( transferStatus == 1 ) // Retrieve data
{
if( ! doRetrieve())
transferStatus = 0;
}
else if( transferStatus == 2 ) // Store data
{
if( ! doStore())
transferStatus = 0;
}
else if( cmdStatus > 2 && ! ((int32_t) ( millisEndConnection - millis() ) > 0 ))
{
client.print("530 Timeout\r\n");
millisDelay = millis() + 200; // delay of 200 ms
cmdStatus = 0;
}
}
void FtpServer::clientConnected()
{
#ifdef FTP_DEBUG
Serial.println("Client connected!");
#endif
client.print( "220 Welcome to FTP for ESP32 Version "+ String(FTP_SERVER_VERSION) +"\r\n");
iCL = 0;
}
void FtpServer::disconnectClient()
{
#ifdef FTP_DEBUG
Serial.println(" Disconnecting client");
#endif
abortTransfer();
client.print("221 Goodbye\r\n");
client.stop();
}
boolean FtpServer::userIdentity()
{
if( strcmp( command, "USER" ))
client.print( "500 Syntax error\r\n");
if( strcmp( parameters, _FTP_USER.c_str() ))
client.print( "530 user not found\r\n");
else
{
client.print( "331 OK. Password required\r\n");
strcpy( cwdName, "/" );
return true;
}
millisDelay = millis() + 100; // delay of 100 ms
return false;
}
boolean FtpServer::userPassword()
{
if( strcmp( command, "PASS" ))
client.print( "500 Syntax error\r\n");
else if( strcmp( parameters, _FTP_PASS.c_str() ))
client.print( "530 Invalid password\r\n");
else
{
#ifdef FTP_DEBUG
Serial.println( "OK. Waiting for commands.");
#endif
client.print( "230 Login successful.\r\n");
return true;
}
millisDelay = millis() + 100; // delay of 100 ms
return false;
}
boolean FtpServer::processCommand()
{
///////////////////////////////////////
// //
// ACCESS CONTROL COMMANDS //
// //
///////////////////////////////////////
//
// CDUP - Change to Parent Directory
//
if( ! strcmp( command, "CDUP" ) || ( ! strcmp( command, "CWD" ) && ! strcmp( parameters, ".." )))
{
bool ok = false;
if( strlen( cwdName ) > 1 ) // do nothing if cwdName is root
{
// if cwdName ends with '/', remove it (must not append)
if( cwdName[ strlen( cwdName ) - 1 ] == '/' )
cwdName[ strlen( cwdName ) - 1 ] = 0;
// search last '/'
char * pSep = strrchr( cwdName, '/' );
ok = pSep > cwdName;
// if found, ends the string on its position
if( ok )
{
* pSep = 0;
ok = SD_MMC.exists( cwdName );
}
}
// if an error appends, move to root
if( ! ok )
strcpy( cwdName, "/" );
client.print("250 Ok. Current directory is " + String(cwdName) + "\r\n");
}
//
// CWD - Change Working Directory
//
else if( ! strcmp( command, "CWD" ) || ! strcmp( command, "XCWD" ) )
{
// check if first three of new path is "/.."
char first3[4];
first3[0] = parameters[0];
first3[1] = parameters[1];
first3[2] = parameters[2];
if ( !strcmp( first3, "/.." ) ) { // if yes, remove "/.." from head of parameters
int pl = strlen(parameters)-3;
for (int i=0; i < pl; i++)
parameters[i] = parameters[i+3];
parameters[pl] = 0;
}
char path[ FTP_CWD_SIZE ];
char curcwdName[ FTP_CWD_SIZE ];
strcpy( curcwdName, cwdName);
if( haveParameter() && makeExistsPath( path ))
{
strcpy( cwdName, path );
File dir = SD_MMC.open(cwdName);
if(dir.isDirectory())
client.print( "250 Ok. Current directory is " + String(cwdName) + "\r\n");
else {
client.print( "550 " + String(cwdName) + " is not a directory\r\n");
strcpy(cwdName, curcwdName);
}
}
}
//
// PWD - Print Directory
//
else if( ! strcmp( command, "PWD" ) || ! strcmp( command, "XPWD" ) )
client.print( "257 \"" + String(cwdName) + "\" is your current directory\r\n");
//
// QUIT
//
else if( ! strcmp( command, "QUIT" ))
{
disconnectClient();
return false;
}
///////////////////////////////////////
// //
// TRANSFER PARAMETER COMMANDS //
// //
///////////////////////////////////////
//
// MODE - Transfer Mode
//
else if( ! strcmp( command, "MODE" ))
{
if( ! strcmp( parameters, "S" ))
client.print( "200 S Ok\r\n");
else
client.print( "504 Only S(tream) is supported\r\n");
}
//
// PASV - Passive Connection management
//
else if( ! strcmp( command, "PASV" ))
{
if (data.connected()) data.stop(); // drop old data connection if connected
if (dataPort != FTP_DATA_PORT_PASV) { // set to passive port if not already set
//dataIp = Ethernet.localIP();
dataIp = WiFi.localIP();
dataPort = FTP_DATA_PORT_PASV;
dataServer.stop();
delay(10);
dataServer.begin( FTP_DATA_PORT_PASV );
delay(10);
}
#ifdef FTP_DEBUG
Serial.println("Connection management set to passive");
Serial.println( "Local data port set to " + String(dataPort));
#endif
client.print( "227 Entering Passive Mode ("+ String(dataIp[0]) + "," + String(dataIp[1])+","+ String(dataIp[2])+","+ String(dataIp[3])+","+String( dataPort >> 8 ) +","+String ( dataPort & 255 )+").\r\n");
dataPassiveConn = true;
}
//
// PORT - Data Port
//
else if( ! strcmp( command, "PORT" ))
{
if (data) data.stop(); // drop any current data connection
// to setup for a new active data connection
// get IP of data client
dataIp[ 0 ] = atoi( parameters );
char * p = strchr( parameters, ',' );
for( uint8_t i = 1; i < 4; i ++ )
{
dataIp[ i ] = atoi( ++ p );
p = strchr( p, ',' );
}
// get port of data client
dataPort = 256 * atoi( ++ p );
p = strchr( p, ',' );
dataPort += atoi( ++ p );
if( p == NULL )
client.print( "501 Can't interpret parameters\r\n");
else
{
dataServer.stop();
delay(10);
dataServer.begin( FTP_DATA_PORT );
delay(10);
#ifdef FTP_DEBUG
Serial.println("Connection management set to active");
Serial.println( "Local data port set to " + String( FTP_DATA_PORT ));
#endif
client.print("200 PORT command successful\r\n");
dataPassiveConn = false;
}
}
//
// STRU - File Structure
//
else if( ! strcmp( command, "STRU" ))
{
if( ! strcmp( parameters, "F" ))
client.print( "200 F Ok\r\n");
else
client.print( "504 Only F(ile) is suported\r\n");
}
//
// TYPE - Data Type
//
else if( ! strcmp( command, "TYPE" ))
{
if( ! strcmp( parameters, "A" ))
client.print( "200 Switching to ASCII mode\r\n");
else if( ! strcmp( parameters, "I" ))
client.print( "200 Switching to Binary mode\r\n");
else
client.print( "504 Unknown TYPE\r\n");
}
///////////////////////////////////////
// //
// FTP SERVICE COMMANDS //
// //
///////////////////////////////////////
//
// ABOR - Abort
//
else if( ! strcmp( command, "ABOR" ))
{
abortTransfer();
client.print( "226 Data connection closed\r\n");
}
//
// DELE - Delete a File
//
else if( ! strcmp( command, "DELE" ))
{
char path[ FTP_CWD_SIZE ];
if( strlen( parameters ) == 0 )
client.print( "501 No file name\r\n");
else if( makePath( path ))
{
if( ! SD_MMC.exists( path ))
client.print( "550 File " + String(parameters) + " not found\r\n");
else
{
if( SD_MMC.remove( path ))
client.print( "250 Deleted " + String(parameters) + "\r\n" );
else
client.print( "450 Can't delete " + String(parameters) + "\r\n" );
}
}
}
//
// LIST - List
//
else if( ! strcmp( command, "LIST" ))
{
if(dataConnect()){
char path[ FTP_CWD_SIZE ] = "";
char buffer[256] = "";
if ( ! makePath( path )) {
client.print( "550 File/Directory " +String(parameters)+ " not found\r\n");
}
else {
File dir = SD_MMC.open(path);
if ( !dir )
client.print( "550 Can't open " + String(path) + "\r\n" );
else {
uint16_t nm = 0;
if (dir.isDirectory()) { // process a directory listing
client.print( "150 Here comes the directory listing\r\n");
File file = dir.openNextFile();
while( file == 1) {
if ( formatLIST ( &file, buffer ) ) {
data.print( String(buffer) + "\r\n" );
#ifdef FTP_DEBUG
Serial.println( String(buffer) );
#endif
nm ++;
}
file = dir.openNextFile();
if (file < 1 ) {
break;
}
}
client.print( "226 Directory send OK.\r\n");
Serial.println( "226 " + String(nm) + " matches total");
}
else { // process a file listing
client.print( "150 Here comes the file listing\r\n");
if ( formatLIST ( &dir, buffer ) ) {
data.print( String(buffer) + "\r\n" );
#ifdef FTP_DEBUG
Serial.println( String(buffer) );
#endif
nm ++;
client.print( "226 File send OK.\r\n");
Serial.println( "226 " + String(nm) + " matches total");
}
else {
client.print( "550 Can't open " + String(path) + "\r\n" );
}
}
}
}
data.stop();
}
else {
client.print( "425 No data connection\r\n");
}
}
//
// MLSD - Listing for Machine Processing (see RFC 3659)
//
else if( ! strcmp( command, "MLSD" ))
{
if( dataConnect() ){
char path[ FTP_CWD_SIZE ];
char buffer[256] = "";
if ( ! makePath( path )) {
client.print( "550 Directory " +String(parameters)+ " not found\r\n");
}
else {
File dir = SD_MMC.open(path);
if ( !dir )
client.print( "550 Can't open " + String(path) + "\r\n" );
else {
uint16_t nm = 0;
if (!dir.isDirectory()) // don't process a name file
client.print( "501 " + String(path) + " is not a directory\r\n");
else {
client.print( "150 Here comes the directory listing\r\n");
File file = dir.openNextFile();
while( file == 1) {
if ( formatMLST ( &file, buffer ) ) {
#ifdef FTP_DEBUG
Serial.println( String(buffer) );
#endif
data.print( String(buffer) + "\r\n" );
nm ++;
}
file = dir.openNextFile();
if (file < 1 ) {
break;
}
}
client.print( "226 Directory send OK.\r\n");
Serial.println( "226 " + String(nm) + " matches total");
}
}
}
data.stop();
}
else {
client.print( "425 No data connection\r\n");
}
}
//
// MLST - Single Listing for Machine Processing (see RFC 3659)
//
else if( ! strcmp( command, "MLST" ))
{
char path[ FTP_CWD_SIZE ];
char buffer[256] = "";
if ( ! makePath( path )) {
client.print( "550 Path " +String(parameters)+ " not found\r\n");
}
else {
File dir = SD_MMC.open(path);
if ( !dir )
client.print( "550 Can't open " + String(path) + "\r\n" );
else {
uint16_t nm = 0;
client.print( "250- Listing " + String(path) + "\r\n");
formatMLST ( &dir, buffer );
char * p = strchr( buffer, ' ' );
buffer[p-buffer+1] = 0;
strncat( buffer, path, 256 );
#ifdef FTP_DEBUG
Serial.println( String(buffer) );
#endif
client.print( " " + String(buffer) + "\r\n" );
client.print( "250 End\r\n");
}
}
}
//
// NLST - Name List
//
else if( ! strcmp( command, "NLST" ))
{
if( ! dataConnect())
client.print( "425 No data connection\r\n");
else
{
char path[ FTP_CWD_SIZE ] = "";
if ( ! makePath( path ))
client.print( "550 Directory " +String(parameters)+ " not found\r\n");
else {
File dir = SD_MMC.open(path);
if ( !dir )
client.print( "550 Can't open directory " + String(path) + "\r\n" );
else {
if ( ! dir.isDirectory() ) // process a directory listing
client.print( "550 Can't open directory " + String(path) + "\r\n" );
else {
uint16_t nm = 0;
client.print( "150 Here comes the directory listing\r\n");
File file = dir.openNextFile();
while( file) {
if ( ! file.isDirectory()) {
data.print( String(file.name()) + "\r\n");
nm ++;
}
file = dir.openNextFile();
}
client.print( "226 " + String(nm) + " matches total\r\n");
}
}
}
data.stop();
}
}
//
// NOOP
//
else if( ! strcmp( command, "NOOP" ))
{
// dataPort = 0;
client.print( "200 Zzz...\r\n");
}
//
// RETR - Retrieve
//
else if( ! strcmp( command, "RETR" ))
{
char path[ FTP_CWD_SIZE ];
if( strlen( parameters ) == 0 )
client.print( "501 No file name\r\n");
else if( makePath( path ))
{
file = SD_MMC.open(path, "r");
if( !file) {
client.print( "550 File " +String(parameters)+ " not found\r\n");
Serial.println("550");
}
else if( ! dataConnect()) {
client.print( "425 No data connection\r\n");
Serial.println("425");
}
else
{
#ifdef FTP_DEBUG
Serial.println("Sending " + String(parameters));
#endif
client.print( "150-Connected to port "+ String(dataPort) + "\r\n150 " + String(file.size()) + " bytes to download\r\n");
millisBeginTrans = millis();
bytesTransfered = 0;
transferStatus = 1;
}
}
}
//
// STOR - Store
//
else if( ! strcmp( command, "STOR" ))
{
char path[ FTP_CWD_SIZE ];
if( strlen( parameters ) == 0 )
client.print( "501 No file name\r\n");
else if( makePath( path ))
{
file = SD_MMC.open(path, "w");
if( !file)
client.print( "451 Can't open/create " + String(parameters) + "\r\n" );
else if( ! dataConnect())
{
client.print( "425 No data connection\r\n");
file.close();
}
else
{
#ifdef FTP_DEBUG
Serial.println( "Receiving " +String(parameters));
#endif
client.print( "150 Connected to port " + String(dataPort) + "\r\n" );
millisBeginTrans = millis();
bytesTransfered = 0;
transferStatus = 2;
}
}
}
//
// MKD - Make Directory
//
else if( ! strcmp( command, "MKD" ) || ! strcmp( command, "XMKD" ))
{
char path[ FTP_CWD_SIZE ];
if( haveParameter() && makePath( path )){
if (SD_MMC.exists( path )){
client.print( "521 Can't create \"" + String(parameters) + ", Directory exists\r\n");
}
else
{
if( SD_MMC.mkdir( path )){
client.print( "257 \"" + String(parameters) + "\" created\r\n");
}
else{
client.print( "550 Can't create \"" + String(parameters) + "\r\n" );
}
}
}
}
//
// RMD - Remove a Directory
//
else if( ! strcmp( command, "RMD" ) || ! strcmp( command, "XRMD" ))
{
char path[ FTP_CWD_SIZE ];
if( haveParameter() && makePath( path )){
if( SD_MMC.rmdir( path )){
#ifdef FTP_DEBUG
Serial.println( " Deleting " +String(parameters));
#endif
client.print( "250 \"" + String(parameters) + "\" deleted\r\n");
}
else
{
client.print( "550 Can't remove \"" + String(parameters) + "\". Directory not found or not empty\r\n");
}
}
}
//
// RNFR - Rename From
//
else if( ! strcmp( command, "RNFR" ))
{
buf[ 0 ] = 0;
if( strlen( parameters ) == 0 )
client.print( "501 No file name\r\n");
else if( makePath( buf ))
{
if( ! SD_MMC.exists( buf ))
client.print( "550 File " +String(parameters)+ " not found\r\n");
else
{
#ifdef FTP_DEBUG
Serial.println("Renaming " + String(buf));
#endif
client.print( "350 RNFR accepted - file exists, ready for destination\r\n");
rnfrCmd = true;
}
}
}
//
// RNTO - Rename To
//
else if( ! strcmp( command, "RNTO" ))
{
char path[ FTP_CWD_SIZE ];
char dir[ FTP_FIL_SIZE ];
if( strlen( buf ) == 0 || ! rnfrCmd )
client.print( "503 Need RNFR before RNTO\r\n");
else if( strlen( parameters ) == 0 )
client.print( "501 No file name\r\n");
else if( makePath( path ))
{
if( SD_MMC.exists( path ))
client.print( "553 " +String(parameters)+ " already exists\r\n");
else
{
#ifdef FTP_DEBUG
Serial.println("Renaming " + String(buf) + " to " + String(path));
#endif
if( SD_MMC.rename( buf, path ))
client.print( "250 File successfully renamed or moved\r\n");
else
client.print( "451 Rename/move failure\r\n");
}
}
rnfrCmd = false;
}
//
// SYST - System Type
//
else if( ! strcmp( command, "SYST" ))
{
client.print( "215 UNIX Type: L8\r\n");
}
///////////////////////////////////////
// //
// EXTENSIONS COMMANDS (RFC 3659) //
// //
///////////////////////////////////////
//
// FEAT - New Features
//
else if( ! strcmp( command, "FEAT" ))
{
client.print( "211-Features:\r\n MDTM\r\n MLSD\r\n MLST\r\n SIZE\r\n211 END\r\n" );
}
//
// MDTM - File Modification Time (see RFC 3659)
//
else if (!strcmp(command, "MDTM"))
{
char path[ FTP_CWD_SIZE ];
if( strlen( parameters ) == 0 )
client.print( "550 No file name\r\n");
else if( makePath( path ))
{
file = SD_MMC.open(path, "r");
if(!file)
client.print( "550 Can't open " +String(parameters) + "\r\n" );
else
{
char ft[21];
time_t ftime = file.getLastWrite();
strftime(ft, sizeof(ft), "%Y%m%d%H%M%S", gmtime(&ftime));
#ifdef FTP_DEBUG
Serial.println("MDTM " + String(ft));
#endif
client.print( "213 " + String(ft) + "\r\n" );
file.close();
}
}
}
//
// SIZE - Size of the file
//
else if( ! strcmp( command, "SIZE" ))
{
char path[ FTP_CWD_SIZE ];
if( strlen( parameters ) == 0 )
client.print( "550 No file name\r\n");
else if( makePath( path ))
{
file = SD_MMC.open(path, "r");
if(!file)
client.print( "550 Can't open " +String(parameters) + "\r\n" );
else
{
#ifdef FTP_DEBUG
Serial.println("SIZE " + String(file.size()));
#endif
client.print( "213 " + String(file.size()) + "\r\n" );
file.close();
}
}
}
//
// SITE - System command
//
else if( ! strcmp( command, "SITE" ))
{
client.print( "500 Unknown SITE command " + String(parameters) + "\r\n" );
}
//
// OPTS - OPTS UTF8 ON
//
else if( ! strcmp( command, "OPTS" ))
{
client.print( "200 None\r\n");
}
//
// Unrecognized commands ...
//
else
client.print( "500 Unknown command\r\n");
return true;
}
boolean FtpServer::dataConnect()
{
unsigned long startTime = millis();
//wait 5 seconds for a data connection
if (!dataPassiveConn) data.connect(dataIp, dataPort); // connect to client on data port
// when in active mode
else
{
while (!dataServer.hasClient() && millis() - startTime < 10000)
// wait for a data connection
{
yield(); // don't hog the cpu
if (dataServer.hasClient()){
Serial.println("Found data connection");
break;
}
#ifdef FTP_DEBUG
else {
Serial.println("Waiting for data connection...");
}
#endif
} // end of waiting for for connection loop
if (dataServer.hasClient()) { // if dataServer has a connection...
data = dataServer.available(); // connect new dataServer connection to client data connection
#ifdef FTP_DEBUG
Serial.println("ftpdataserver client connected...");
#endif
}
}
return data.connected(); // return true if client data is connected
}
boolean FtpServer::doRetrieve()
{
if (data.connected()) {
int16_t nb = file.readBytes(buf, FTP_BUF_SIZE);
if (nb > 0) {
data.write((uint8_t*)buf, nb);
bytesTransfered += nb;
return true;
}
}
closeTransfer();
return false;
}
boolean FtpServer::doStore()
{
if( data.connected() )
{
int16_t nb = data.readBytes((uint8_t*) buf, FTP_BUF_SIZE );
if( nb > 0 )
{
// Serial.println( millis() << " " << nb << endl;
file.write((uint8_t*) buf, nb );
bytesTransfered += nb;
}
return true;
}
closeTransfer();
return false;
}
void FtpServer::closeTransfer()
{
uint32_t deltaT = (int32_t) ( millis() - millisBeginTrans );
if( deltaT > 0 && bytesTransfered > 0 )
{
client.print( "226-File successfully transferred\r\n226 " + String(deltaT) + " ms, "+ String(bytesTransfered / deltaT) + " kbytes/s\r\n");
}
else
client.print( "226 File successfully transferred\r\n");
file.close();
data.stop();
}
void FtpServer::abortTransfer()
{
if( transferStatus > 0 )
{
file.close();
data.stop();
client.print( "426 Transfer aborted\r\n" );
#ifdef FTP_DEBUG
Serial.println( "Transfer aborted!") ;
#endif
}
transferStatus = 0;
}
// Read a char from client connected to ftp server
//
// update cmdLine and command buffers, iCL and parameters pointers
//
// return:
// -2 if buffer cmdLine is full
// -1 if line not completed
// 0 if empty line received
// length of cmdLine (positive) if no empty line received
int8_t FtpServer::readChar()
{
int8_t rc = -1;
if( client.available())
{
char c = client.read();
#ifdef FTP_DEBUG
Serial.print( c);
//char h[3];
//sprintf(h,"%02X", c);
//Serial.print( "(" + String(h) + ")" );
#endif
if( c == '\\' )
c = '/';
if( c != '\r' )
if( c != '\n' )
{
if( iCL < FTP_CMD_SIZE )