-
Notifications
You must be signed in to change notification settings - Fork 0
/
remote.c
1790 lines (1539 loc) · 42.1 KB
/
remote.c
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
/*=============================================================================
*
* リモート側のファイル操作
*
===============================================================================
/ Copyright (C) 1997-2007 Sota. All rights reserved.
/
/ Redistribution and use in source and binary forms, with or without
/ modification, are permitted provided that the following conditions
/ are met:
/
/ 1. Redistributions of source code must retain the above copyright
/ notice, this list of conditions and the following disclaimer.
/ 2. Redistributions in binary form must reproduce the above copyright
/ notice, this list of conditions and the following disclaimer in the
/ documentation and/or other materials provided with the distribution.
/
/ THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
/ IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
/ OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
/ IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
/ INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
/ BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
/ USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
/ ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
/ (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
/ THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
/============================================================================*/
/* このソースは一部、WS_FTP Version 93.12.05 のソースを参考にしました。 */
#define STRICT
#include <stdio.h>
#include <stdlib.h>
#include <stdarg.h>
#include <string.h>
#include <mbstring.h>
#include <time.h>
// IPv6対応
//#include <winsock.h>
#include <winsock2.h>
#include <windowsx.h>
#include <commctrl.h>
#include "common.h"
#include "resource.h"
#define PWD_XPWD 0
#define PWD_PWD 1
/*===== プロトタイプ =====*/
static int DoPWD(char *Buf);
static int ReadOneLine(SOCKET cSkt, char *Buf, int Max, int *CancelCheckWork);
static int DoDirList(HWND hWnd, SOCKET cSkt, char *AddOpt, char *Path, int Num, int *CancelCheckWork);
static void ChangeSepaLocal2Remote(char *Fname);
static void ChangeSepaRemote2Local(char *Fname);
/*===== 外部参照 =====*/
extern TRANSPACKET MainTransPkt;
/* 設定値 */
extern int TimeOut;
extern int SendQuit;
// 同時接続対応
extern int CancelFlg;
/*===== ローカルなワーク =====*/
static int PwdCommandType;
// 同時接続対応
//static int CheckCancelFlg = NO;
/*----- リモート側のカレントディレクトリ変更 ----------------------------------
*
* Parameter
* char *Path : パス名
* int Disp : ディレクトリリストにパス名を表示するかどうか(YES/NO)
* int ForceGet : 失敗してもカレントディレクトリを取得する
* int ErrorBell : エラー事の音を鳴らすかどうか(YES/NO)
*
* Return Value
* int 応答コードの1桁目
*----------------------------------------------------------------------------*/
int DoCWD(char *Path, int Disp, int ForceGet, int ErrorBell)
{
int Sts;
char Buf[FMAX_PATH+1];
Sts = FTP_COMPLETE * 100;
if(strcmp(Path, "..") == 0)
Sts = CommandProcCmd(NULL, "CDUP");
else if(strcmp(Path, "") != 0)
{
if((AskHostType() != HTYPE_VMS) || (strchr(Path, '[') != NULL))
Sts = CommandProcCmd(NULL, "CWD %s", Path);
else
Sts = CommandProcCmd(NULL, "CWD [.%s]", Path); /* VMS用 */
}
if((Sts/100 >= FTP_CONTINUE) && (ErrorBell == YES))
SoundPlay(SND_ERROR);
if((Sts/100 == FTP_COMPLETE) ||
(ForceGet == YES))
{
if(Disp == YES)
{
if(DoPWD(Buf) != FTP_COMPLETE)
{
/*===== PWDが使えなかった場合 =====*/
if(*Path == '/')
strcpy(Buf, Path);
else
{
AskRemoteCurDir(Buf, FMAX_PATH);
if(strlen(Buf) == 0)
strcpy(Buf, "/");
while(*Path != NUL)
{
if(strcmp(Path, ".") == 0)
Path++;
else if(strncmp(Path, "./", 2) == 0)
Path += 2;
else if(strcmp(Path, "..") == 0)
{
GetUpperDir(Buf);
Path += 2;
}
else if(strncmp(Path, "../", 2) == 0)
{
GetUpperDir(Buf);
Path += 3;
}
else
{
SetSlashTail(Buf);
strcat(Buf, Path);
break;
}
}
}
}
SetRemoteDirHist(Buf);
}
}
return(Sts/100);
}
/*----- リモート側のカレントディレクトリ変更(その2)-------------------------
*
* Parameter
* char *Path : パス名
* char *Cur : カレントディレクトリ
*
* Return Value
* int 応答コードの1桁目
*
* Note
* パス名は "xxx/yyy/zzz" の形式
* ディレクトリ変更が失敗したら、カレントディレクトリに戻しておく
*----------------------------------------------------------------------------*/
int DoCWDStepByStep(char *Path, char *Cur)
{
int Sts;
char *Set;
char *Set2;
char Tmp[FMAX_PATH+2];
Sts = FTP_COMPLETE;
memset(Tmp, NUL, FMAX_PATH+2);
strcpy(Tmp, Path);
Set = Tmp;
while(*Set != NUL)
{
if((Set2 = strchr(Set, '/')) != NULL)
*Set2 = NUL;
if((Sts = DoCWD(Set, NO, NO, NO)) != FTP_COMPLETE)
break;
if(Set2 == NULL)
break;
Set = Set2 + 1;
}
if(Sts != FTP_COMPLETE)
DoCWD(Cur, NO, NO, NO);
return(Sts);
}
/*----- リモート側のカレントディレクトリ取得 ----------------------------------
*
* Parameter
* char *Buf : パス名を返すバッファ
*
* Return Value
* int 応答コードの1桁目
*----------------------------------------------------------------------------*/
static int DoPWD(char *Buf)
{
char *Pos;
char Tmp[1024];
int Sts;
if(PwdCommandType == PWD_XPWD)
{
Sts = CommandProcCmd(Tmp, "XPWD");
if(Sts/100 != FTP_COMPLETE)
PwdCommandType = PWD_PWD;
}
if(PwdCommandType == PWD_PWD)
Sts = CommandProcCmd(Tmp, "PWD");
if(Sts/100 == FTP_COMPLETE)
{
if((Pos = strchr(Tmp, '"')) != NULL)
{
memmove(Tmp, Pos+1, strlen(Pos+1)+1);
if((Pos = strchr(Tmp, '"')) != NULL)
*Pos = NUL;
}
else
memmove(Tmp, Tmp+4, strlen(Tmp+4)+1);
if(strlen(Tmp) < FMAX_PATH)
{
strcpy(Buf, Tmp);
ReplaceAll(Buf, '\\', '/');
ChangeSepaRemote2Local(Buf);
}
else
Sts = FTP_ERROR*100;
}
return(Sts/100);
}
/*----- PWDコマンドのタイプを初期化する ---------------------------------------
*
* Parameter
* なし
*
* Return Value
* なし
*----------------------------------------------------------------------------*/
void InitPWDcommand()
{
PwdCommandType = PWD_XPWD;
}
/*----- リモート側のディレクトリ作成 ----------------------------------------
*
* Parameter
* char *Path : パス名
*
* Return Value
* int 応答コードの1桁目
*----------------------------------------------------------------------------*/
int DoMKD(char *Path)
{
int Sts;
Sts = CommandProcCmd(NULL, "MKD %s", Path);
if(Sts/100 >= FTP_CONTINUE)
SoundPlay(SND_ERROR);
return(Sts/100);
}
/*----- リモート側のディレクトリ削除 ------------------------------------------
*
* Parameter
* char *Path : パス名
*
* Return Value
* int 応答コードの1桁目
*----------------------------------------------------------------------------*/
int DoRMD(char *Path)
{
int Sts;
Sts = CommandProcCmd(NULL, "RMD %s", Path);
if(Sts/100 >= FTP_CONTINUE)
SoundPlay(SND_ERROR);
return(Sts/100);
}
/*----- リモート側のファイル削除 ----------------------------------------------
*
* Parameter
* char *Path : パス名
*
* Return Value
* int 応答コードの1桁目
*----------------------------------------------------------------------------*/
int DoDELE(char *Path)
{
int Sts;
Sts = CommandProcCmd(NULL, "DELE %s", Path);
if(Sts/100 >= FTP_CONTINUE)
SoundPlay(SND_ERROR);
return(Sts/100);
}
/*----- リモート側のファイル名変更 --------------------------------------------
*
* Parameter
* char *Src : 元ファイル名
* char *Dst : 変更後のファイル名
*
* Return Value
* int 応答コードの1桁目
*----------------------------------------------------------------------------*/
int DoRENAME(char *Src, char *Dst)
{
int Sts;
Sts = CommandProcCmd(NULL, "RNFR %s", Src);
if(Sts == 350)
// 同時接続対応
// Sts = command(AskCmdCtrlSkt(), NULL, &CheckCancelFlg, "RNTO %s", Dst);
Sts = command(AskCmdCtrlSkt(), NULL, &CancelFlg, "RNTO %s", Dst);
if(Sts/100 >= FTP_CONTINUE)
SoundPlay(SND_ERROR);
return(Sts/100);
}
/*----- リモート側のファイルの属性変更 ----------------------------------------
*
* Parameter
* char *Path : パス名
* char *Mode : モード文字列
*
* Return Value
* int 応答コードの1桁目
*----------------------------------------------------------------------------*/
int DoCHMOD(char *Path, char *Mode)
{
int Sts;
Sts = CommandProcCmd(NULL, "%s %s %s", AskHostChmodCmd(), Mode, Path);
if(Sts/100 >= FTP_CONTINUE)
SoundPlay(SND_ERROR);
return(Sts/100);
}
/*----- リモート側のファイルのサイズを取得(転送ソケット使用)-----------------
*
* Parameter
* char *Path : パス名
* LONGLONG *Size : ファイルのサイズを返すワーク
*
* Return Value
* int 応答コードの1桁目
*
* Note
* ★★転送ソケットを使用する★★
* サイズが選られない時は Size = -1 を返す
*----------------------------------------------------------------------------*/
// 同時接続対応
//int DoSIZE(char *Path, LONGLONG *Size)
int DoSIZE(SOCKET cSkt, char *Path, LONGLONG *Size, int *CancelCheckWork)
{
int Sts;
char Tmp[1024];
// 同時接続対応
// Sts = CommandProcTrn(Tmp, "SIZE %s", Path);
Sts = CommandProcTrn(cSkt, Tmp, CancelCheckWork, "SIZE %s", Path);
*Size = -1;
if((Sts/100 == FTP_COMPLETE) && (strlen(Tmp) > 4) && IsDigit(Tmp[4]))
*Size = _atoi64(&Tmp[4]);
return(Sts/100);
}
/*----- リモート側のファイルの日付を取得(転送ソケット使用)-------------------
*
* Parameter
* char *Path : パス名
* FILETIME *Time : 日付を返すワーク
*
* Return Value
* int 応答コードの1桁目
*
* Note
* ★★転送ソケットを使用する★★
* 日付が選られない時は Time = 0 を返す
*----------------------------------------------------------------------------*/
// 同時接続対応
//int DoMDTM(char *Path, FILETIME *Time)
int DoMDTM(SOCKET cSkt, char *Path, FILETIME *Time, int *CancelCheckWork)
{
int Sts;
char Tmp[1024];
SYSTEMTIME sTime;
Time->dwLowDateTime = 0;
Time->dwHighDateTime = 0;
// 同時接続対応
// Sts = CommandProcTrn(Tmp, "MDTM %s", Path);
Sts = CommandProcTrn(cSkt, Tmp, CancelCheckWork, "MDTM %s", Path);
if(Sts/100 == FTP_COMPLETE)
{
sTime.wMilliseconds = 0;
if(sscanf(Tmp+4, "%04d%02d%02d%02d%02d%02d",
&sTime.wYear, &sTime.wMonth, &sTime.wDay,
&sTime.wHour, &sTime.wMinute, &sTime.wSecond) == 6)
{
SystemTimeToFileTime(&sTime, Time);
SpecificLocalFileTime2FileTime(Time, AskHostTimeZone());
}
}
return(Sts/100);
}
/*----- リモート側のコマンドを実行 --------------------------------------------
*
* Parameter
* char *CmdStr : コマンド文字列
*
* Return Value
* int 応答コードの1桁目
*----------------------------------------------------------------------------*/
int DoQUOTE(char *CmdStr)
{
int Sts;
Sts = CommandProcCmd(NULL, "%s", CmdStr);
if(Sts/100 >= FTP_CONTINUE)
SoundPlay(SND_ERROR);
return(Sts/100);
}
/*----- ソケットを閉じる ------------------------------------------------------
*
* Parameter
* なし
*
* Return Value
* SOCKET 閉じた後のソケット
*----------------------------------------------------------------------------*/
SOCKET DoClose(SOCKET Sock)
{
if(Sock != INVALID_SOCKET)
{
// if(WSAIsBlocking())
// {
// DoPrintf("Skt=%u : Cancelled blocking call", Sock);
// WSACancelBlockingCall();
// }
do_closesocket(Sock);
DoPrintf("Skt=%u : Socket closed.", Sock);
Sock = INVALID_SOCKET;
}
if(Sock != INVALID_SOCKET)
DoPrintf("Skt=%u : Failed to close socket.", Sock);
return(Sock);
}
/*----- ホストからログアウトする ----------------------------------------------
*
* Parameter
* kSOCKET ctrl_skt : ソケット
*
* Return Value
* int 応答コードの1桁目
*----------------------------------------------------------------------------*/
int DoQUIT(SOCKET ctrl_skt)
{
int Ret;
Ret = FTP_COMPLETE;
if(SendQuit == YES)
// 同時接続対応
// Ret = command(ctrl_skt, NULL, &CheckCancelFlg, "QUIT") / 100;
Ret = command(ctrl_skt, NULL, &CancelFlg, "QUIT") / 100;
return(Ret);
}
/*----- リモート側のディレクトリリストを取得(コマンドコントロールソケットを使用)
*
* Parameter
* char *AddOpt : 追加のオプション
* char *Path : パス名
* int Num : ファイル名番号
*
* Return Value
* int 応答コードの1桁目
*----------------------------------------------------------------------------*/
int DoDirListCmdSkt(char *AddOpt, char *Path, int Num, int *CancelCheckWork)
{
int Sts;
if(AskTransferNow() == YES)
SktShareProh();
// if((Sts = DoDirList(NULL, AskCmdCtrlSkt(), AddOpt, Path, Num)) == 429)
// {
// ReConnectCmdSkt();
Sts = DoDirList(NULL, AskCmdCtrlSkt(), AddOpt, Path, Num, CancelCheckWork);
if(Sts/100 >= FTP_CONTINUE)
SoundPlay(SND_ERROR);
// }
return(Sts/100);
}
/*----- リモート側のディレクトリリストを取得 ----------------------------------
*
* Parameter
* HWND hWnd : 転送中ダイアログのウインドウハンドル
* SOCKET cSkt : コントロールソケット
* char *AddOpt : 追加のオプション
* char *Path : パス名 (""=カレントディレクトリ)
* int Num : ファイル名番号
*
* Return Value
* int 応答コード
*----------------------------------------------------------------------------*/
static int DoDirList(HWND hWnd, SOCKET cSkt, char *AddOpt, char *Path, int Num, int *CancelCheckWork)
{
char Tmp[FMAX_PATH];
int Sts;
//#pragma aaa
//DoPrintf("===== DoDirList %d = %s", Num, Path);
MakeCacheFileName(Num, Tmp);
// MainTransPkt.ctrl_skt = cSkt;
if(AskListCmdMode() == NO)
{
strcpy(MainTransPkt.Cmd, "NLST");
if(strlen(AskHostLsName()) > 0)
{
strcat(MainTransPkt.Cmd, " ");
if((AskHostType() == HTYPE_ACOS) || (AskHostType() == HTYPE_ACOS_4))
strcat(MainTransPkt.Cmd, "'");
strcat(MainTransPkt.Cmd, AskHostLsName());
if((AskHostType() == HTYPE_ACOS) || (AskHostType() == HTYPE_ACOS_4))
strcat(MainTransPkt.Cmd, "'");
}
if(strlen(AddOpt) > 0)
strcat(MainTransPkt.Cmd, AddOpt);
}
else
{
// MLSD対応
// strcpy(MainTransPkt.Cmd, "LIST");
if(AskUseMLSD() && (AskHostFeature() & FEATURE_MLSD))
strcpy(MainTransPkt.Cmd, "MLSD");
else
strcpy(MainTransPkt.Cmd, "LIST");
if(strlen(AddOpt) > 0)
{
strcat(MainTransPkt.Cmd, " -");
strcat(MainTransPkt.Cmd, AddOpt);
}
}
if(strlen(Path) > 0)
strcat(MainTransPkt.Cmd, " ");
strcpy(MainTransPkt.RemoteFile, Path);
strcpy(MainTransPkt.LocalFile, Tmp);
MainTransPkt.Type = TYPE_A;
MainTransPkt.Size = -1;
/* ファイルリストの中の漢字のファイル名は、別途 */
/* ChangeFnameRemote2Local で変換する */
MainTransPkt.KanjiCode = KANJI_NOCNV;
MainTransPkt.KanaCnv = YES;
MainTransPkt.Mode = EXIST_OVW;
MainTransPkt.ExistSize = 0;
MainTransPkt.hWndTrans = hWnd;
MainTransPkt.Next = NULL;
Sts = DoDownLoad(cSkt, &MainTransPkt, YES, CancelCheckWork);
//#pragma aaa
//DoPrintf("===== DoDirList Done.");
return(Sts);
}
/*----- リモート側へコマンドを送りリプライを待つ(コマンドソケット)-----------
*
* Parameter
* char *Reply : リプライのコピー先 (NULL=コピーしない)
* char *fmt : フォーマット文字列
* ... : パラメータ
*
* Return Value
* int 応答コード
*
* Note
* コマンドコントロールソケットを使う
*----------------------------------------------------------------------------*/
int CommandProcCmd(char *Reply, char *fmt, ...)
{
va_list Args;
char Cmd[1024];
int Sts;
va_start(Args, fmt);
wvsprintf(Cmd, fmt, Args);
va_end(Args);
if(AskTransferNow() == YES)
SktShareProh();
//#pragma aaa
//DoPrintf("**CommandProcCmd : %s", Cmd);
// if((Sts = command(AskCmdCtrlSkt(), Reply, "%s", Cmd)) == 429)
// {
// if(ReConnectCmdSkt() == FFFTP_SUCCESS)
// {
// 同時接続対応
// Sts = command(AskCmdCtrlSkt(), Reply, &CheckCancelFlg, "%s", Cmd);
Sts = command(AskCmdCtrlSkt(), Reply, &CancelFlg, "%s", Cmd);
// }
// }
return(Sts);
}
#if defined(HAVE_TANDEM)
/*----- OSS/Guardian ファイルシステムを切り替えるコマンドを送る ---------------
*
* Parameter
* なし
*
* Return Value
* なし
*----------------------------------------------------------------------------*/
void SwitchOSSProc(void)
{
char Buf[MAX_PATH+1];
/* DoPWD でノード名の \ を保存するために OSSフラグも変更する */
if(AskOSS() == YES) {
DoQUOTE("GUARDIAN");
SetOSS(NO);
} else {
DoQUOTE("OSS");
SetOSS(YES);
}
/* Current Dir 再取得 */
if (DoPWD(Buf) == FTP_COMPLETE)
SetRemoteDirHist(Buf);
/* ファイルリスト再読み込み */
PostMessage(GetMainHwnd(), WM_COMMAND, MAKEWPARAM(REFRESH_REMOTE, 0), 0);
return;
}
#endif
/*----- リモート側へコマンドを送りリプライを待つ(転送ソケット)---------------
*
* Parameter
* char *Reply : リプライのコピー先 (NULL=コピーしない)
* char *fmt : フォーマット文字列
* ... : パラメータ
*
* Return Value
* int 応答コード
*
* Note
* 転送コントロールソケットを使う
*----------------------------------------------------------------------------*/
// 同時接続対応
//int CommandProcTrn(char *Reply, char *fmt, ...)
int CommandProcTrn(SOCKET cSkt, char *Reply, int* CancelCheckWork, char *fmt, ...)
{
va_list Args;
char Cmd[1024];
int Sts;
va_start(Args, fmt);
wvsprintf(Cmd, fmt, Args);
va_end(Args);
//#pragma aaa
//DoPrintf("**CommandProcTrn : %s", Cmd);
// if((Sts = command(AskTrnCtrlSkt(), Reply, "%s", Cmd)) == 429)
// {
// if(ReConnectTrnSkt() == FFFTP_SUCCESS)
// Sts = command(AskTrnCtrlSkt(), Reply, &CheckCancelFlg, "%s", Cmd);
Sts = command(cSkt, Reply, CancelCheckWork, "%s", Cmd);
// }
return(Sts);
}
/*----- コマンドを送りリプライを待つ ------------------------------------------
*
* Parameter
* SOCKET cSkt : コントロールソケット
* char *Reply : リプライのコピー先 (NULL=コピーしない)
* char *fmt : フォーマット文字列
* ... : パラメータ
*
* Return Value
* int 応答コード
*
* Note
* ホストのファイル名の漢字コードに応じて、ここで漢字コードの変換を行なう
*----------------------------------------------------------------------------*/
//#pragma aaa
//static int cntcnt = 0;
// SFTP対応
int ConvertFTPCommandToPuTTYSFTP(SOCKET cSkt, char *Reply, int *CancelCheckWork, char *Cmd)
{
// TODO:
// 未実装
int Sts;
char NewCmd[FMAX_PATH*2];
static char RenameFrom[FMAX_PATH+1];
Sts = 429;
Reply[0] = '\0';
if(strcmp(Cmd, "QUIT") == 0)
{
sprintf(NewCmd, "ls\r\n");
SFTP_send(cSkt, NewCmd, strlen(NewCmd), 0);
}
if(strcmp(Cmd, "LIST") == 0)
{
sprintf(NewCmd, "ls\r\n");
SFTP_send(cSkt, NewCmd, strlen(NewCmd), 0);
}
else if(strncmp(Cmd, "REST ", 5) == 0)
{
SFTP_SetFilePosition(cSkt, (LONGLONG)_strtoi64(&Cmd[5], NULL, 10));
}
else if(strncmp(Cmd, "RETR ", 5) == 0)
{
sprintf(NewCmd, "get \"%s\"\r\n", &Cmd[5]);
SFTP_send(cSkt, NewCmd, strlen(NewCmd), 0);
}
else if(strncmp(Cmd, "STOR ", 5) == 0)
{
sprintf(NewCmd, "put \"%s\"\r\n", &Cmd[5]);
SFTP_send(cSkt, NewCmd, strlen(NewCmd), 0);
}
else if(strncmp(Cmd, "APPE ", 5) == 0)
{
sprintf(NewCmd, "reput \"%s\"\r\n", &Cmd[5]);
SFTP_send(cSkt, NewCmd, strlen(NewCmd), 0);
}
else if(strncmp(Cmd, "DELE ", 5) == 0)
{
sprintf(NewCmd, "rm \"%s\"\r\n", &Cmd[5]);
SFTP_send(cSkt, NewCmd, strlen(NewCmd), 0);
}
else if(strncmp(Cmd, "CWD ", 4) == 0)
{
sprintf(NewCmd, "cd \"%s\"\r\n", &Cmd[4]);
SFTP_send(cSkt, NewCmd, strlen(NewCmd), 0);
}
else if(strcmp(Cmd, "PWD") == 0)
{
sprintf(NewCmd, "pwd\r\n");
SFTP_send(cSkt, NewCmd, strlen(NewCmd), 0);
}
else if(strcmp(Cmd, "XPWD") == 0)
{
sprintf(NewCmd, "pwd\r\n");
SFTP_send(cSkt, NewCmd, strlen(NewCmd), 0);
}
else if(strncmp(Cmd, "MKD ", 4) == 0)
{
sprintf(NewCmd, "mkdir \"%s\"\r\n", &Cmd[4]);
SFTP_send(cSkt, NewCmd, strlen(NewCmd), 0);
}
else if(strncmp(Cmd, "RMD ", 4) == 0)
{
sprintf(NewCmd, "rmdir \"%s\"\r\n", &Cmd[4]);
SFTP_send(cSkt, NewCmd, strlen(NewCmd), 0);
}
else if(strncmp(Cmd, "RNFR ", 5) == 0)
{
strcpy(RenameFrom, &Cmd[5]);
}
else if(strncmp(Cmd, "RNTO ", 5) == 0)
{
sprintf(NewCmd, "mv \"%s\" \"%s\"\r\n", RenameFrom, &Cmd[5]);
SFTP_send(cSkt, NewCmd, strlen(NewCmd), 0);
}
else if(strncmp(Cmd, "SITE CHMOD ", 11) == 0)
{
Cmd[14] = '\0';
sprintf(NewCmd, "chmod %s \"%s\"\r\n", &Cmd[11], &Cmd[15]);
SFTP_send(cSkt, NewCmd, strlen(NewCmd), 0);
}
return Sts;
}
int command(SOCKET cSkt, char *Reply, int *CancelCheckWork, char *fmt, ...)
{
va_list Args;
char Cmd[FMAX_PATH*2];
int Sts;
char TmpBuf[ONELINE_BUF_SIZE];
if(cSkt != INVALID_SOCKET)
{
va_start(Args, fmt);
wvsprintf(Cmd, fmt, Args);
va_end(Args);
// SFTP対応
if(IsSFTPAttached(cSkt))
return ConvertFTPCommandToPuTTYSFTP(cSkt, Reply, CancelCheckWork, Cmd);
if(strncmp(Cmd, "PASS ", 5) == 0)
SetTaskMsg(">PASS [xxxxxx]");
else if((strncmp(Cmd, "USER ", 5) == 0) ||
(strncmp(Cmd, "OPEN ", 5) == 0))
{
SetTaskMsg(">%s", Cmd);
}
else
{
ChangeSepaLocal2Remote(Cmd);
SetTaskMsg(">%s", Cmd);
ChangeFnameLocal2Remote(Cmd, FMAX_PATH*2);
}
// DoPrintf("SEND : %s", Cmd);
strcat(Cmd, "\x0D\x0A");
if(Reply != NULL)
strcpy(Reply, "");
Sts = 429;
if(SendData(cSkt, Cmd, strlen(Cmd), 0, CancelCheckWork) == FFFTP_SUCCESS)
{
Sts = ReadReplyMessage(cSkt, Reply, 1024, CancelCheckWork, TmpBuf);
}
//#pragma aaa
//if(Reply != NULL)
// DoPrintf("%x : %x : %s : %s", cSkt, &TmpBuf, Cmd, Reply);
//else
// DoPrintf("%x : %x : %s : NULL", cSkt, &TmpBuf, Cmd);
// DoPrintf("command() RET=%d", Sts);
}
else
Sts = 429;
return(Sts);
}
/*----- データを送る ----------------------------------------------------------
*
* Parameter
* SOCKET Skt : ソケット
* char *Data : データ
* int Size : 送るデータのサイズ
* int Mode : コールモード
*
* Return Value
* int ステータス
* FFFTP_SUCCESS/FFFTP_FAIL
*----------------------------------------------------------------------------*/
int SendData(SOCKET Skt, char *Data, int Size, int Mode, int *CancelCheckWork)
{
int Sts;
int Tmp;
// fd_set SendFds;
// struct timeval Tout;
// struct timeval *ToutPtr;
int TimeOutErr;
Sts = FFFTP_FAIL;
if(Skt != INVALID_SOCKET)
{
Sts = FFFTP_SUCCESS;
while(Size > 0)
{
// FD_ZERO(&SendFds);
// FD_SET(Skt, &SendFds);
// ToutPtr = NULL;
// if(TimeOut != 0)
// {
// Tout.tv_sec = TimeOut;
// Tout.tv_usec = 0;
// ToutPtr = &Tout;
// }
// Tmp = select(0, NULL, &SendFds, NULL, ToutPtr);
// if(Tmp == SOCKET_ERROR)
// {
// Sts = FFFTP_FAIL;
// ReportWSError("select", WSAGetLastError());
// break;
// }
// else if(Tmp == 0)
// {
// Sts = FFFTP_FAIL;
// SetTaskMsg(MSGJPN241);
// break;
// }
Tmp = do_send(Skt, Data, Size, Mode, &TimeOutErr, CancelCheckWork);
if(TimeOutErr == YES)
{
Sts = FFFTP_FAIL;
SetTaskMsg(MSGJPN241);
break;
}
else if(Tmp == SOCKET_ERROR)
{
Sts = FFFTP_FAIL;
ReportWSError("send", WSAGetLastError());
break;
}
Size -= Tmp;
Data += Tmp;
}
}
return(Sts);
}
/*----- 応答メッセージを受け取る ----------------------------------------------
*
* Parameter
* SOCKET cSkt : コントロールソケット
* char *Buf : メッセージを受け取るバッファ (NULL=コピーしない)