-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.c
3100 lines (2679 loc) · 79.1 KB
/
main.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
/*=============================================================================
*
* FFFTP
*
===============================================================================
/ 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.
/============================================================================*/
#define STRICT
// IPv6対応
#include <winsock2.h>
#include <windows.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <mbstring.h>
#include <malloc.h>
#include <windowsx.h>
#include <commctrl.h>
#include <stdarg.h>
// IPv6対応
//#include <winsock.h>
#include "common.h"
#include "resource.h"
#include "aes.h"
// 暗号化通信対応
#include "sha.h"
#include <htmlhelp.h>
#include "helpid.h"
// UTF-8対応
#undef __MBSWRAPPER_H__
#include "mbswrapper.h"
#define RESIZE_OFF 0 /* ウインドウの区切り位置変更していない */
#define RESIZE_ON 1 /* ウインドウの区切り位置変更中 */
#define RESIZE_PREPARE 2 /* ウインドウの区切り位置変更の準備 */
#define RESIZE_HPOS 0 /* ローカル-ホスト間の区切り位置変更 */
#define RESIZE_VPOS 1 /* リスト-タスク間の区切り位置の変更 */
/*===== プロトタイプ =====*/
static int InitApp(LPSTR lpszCmdLine, int cmdShow);
static int MakeAllWindows(int cmdShow);
static void DeleteAllObject(void);
static LRESULT CALLBACK FtpWndProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam);
static void StartupProc(char *Cmd);
static int AnalyzeComLine(char *Str, int *AutoConnect, int *CmdOption, char *unc, int Max);
static int CheckIniFileName(char *Str, char *Ini);
static int CheckMasterPassword(char *Str, char *Ini);
static int GetTokenAfterOption(char *Str, char *Result, const char* Opt1, const char* Opt2 );
static char *GetToken(char *Str, char *Buf);
static void ExitProc(HWND hWnd);
static void ChangeDir(int Win, char *Path);
static void ResizeWindowProc(void);
static void CalcWinSize(void);
// static void AskWindowPos(HWND hWnd);
static void CheckResizeFrame(WPARAM Keys, int x, int y);
static void DispDirInfo(void);
static void DeleteAlltempFile(void);
// 64ビット対応
//static BOOL CALLBACK AboutDialogProc(HWND hDlg, UINT message, WPARAM wParam, LPARAM lParam);
static INT_PTR CALLBACK AboutDialogProc(HWND hDlg, UINT message, WPARAM wParam, LPARAM lParam);
static int EnterMasterPasswordAndSet( int Res, HWND hWnd );
/*===== ローカルなワーク =====*/
static const char FtpClassStr[] = "FFFTPWin";
static HINSTANCE hInstFtp;
static HWND hWndFtp = NULL;
static HWND hWndCurFocus = NULL;
static HACCEL Accel;
static HBRUSH RootColorBrush = NULL;
static int Resizing = RESIZE_OFF;
static int ResizePos;
static HCURSOR hCursor;
int ClientWidth;
static int ClientHeight;
int SepaWidth;
int RemoteWidth;
int ListHeight;
static TEMPFILELIST *TempFiles = NULL;
static int SaveExit = YES;
static int AutoExit = NO;
static char HelpPath[FMAX_PATH+1];
static char IniPath[FMAX_PATH+1];
static int ForceIni = NO;
TRANSPACKET MainTransPkt; /* ファイル転送用パケット */
/* これを使って転送を行うと、ツールバーの転送 */
/* 中止ボタンで中止できる */
char TitleHostName[HOST_ADRS_LEN+1];
char FilterStr[FILTER_EXT_LEN+1] = { "*" };
int CancelFlg;
static int SuppressRefresh = 0;
static DWORD dwCookie;
// 暗号化通信対応
static char SSLRootCAFilePath[FMAX_PATH+1];
// マルチコアCPUの特定環境下でファイル通信中にクラッシュするバグ対策
static DWORD MainThreadId;
/*===== グローバルなワーク =====*/
HWND hHelpWin = NULL;
/* 設定値 */
int WinPosX = CW_USEDEFAULT;
int WinPosY = 0;
// 機能が増えたためサイズ変更
// VGAサイズに収まるようになっていたのをSVGAサイズに引き上げ
//int WinWidth = 630;
//int WinHeight = 393;
//int LocalWidth = 309;
//int TaskHeight = 50;
//int LocalTabWidth[4] = { 120, 90, 60, 37 };
//int RemoteTabWidth[6] = { 120, 90, 60, 37, 60, 60 };
int WinWidth = 790;
int WinHeight = 513;
int LocalWidth = 389;
int TaskHeight = 100;
int LocalTabWidth[4] = { 160, 110, 60, 37 };
int RemoteTabWidth[6] = { 160, 110, 60, 37, 60, 60 };
char UserMailAdrs[USER_MAIL_LEN+1] = { "[email protected]" };
char ViewerName[VIEWERS][FMAX_PATH+1] = { { "notepad" }, { "" }, { "" } };
HFONT ListFont = NULL;
LOGFONT ListLogFont;
int LocalFileSort = SORT_NAME;
int LocalDirSort = SORT_NAME;
int RemoteFileSort = SORT_NAME;
int RemoteDirSort = SORT_NAME;
int TransMode = TYPE_X;
int ConnectOnStart = YES;
int DebugConsole = NO;
int SaveWinPos = NO;
char AsciiExt[ASCII_EXT_LEN+1] = { "*.txt\0*.html\0*.htm\0*.cgi\0*.pl\0" };
int RecvMode = TRANS_DLG;
int SendMode = TRANS_DLG;
int MoveMode = MOVE_DLG;
int ListType = LVS_REPORT;
// LISTのキャッシュを無効にする(リモートのディレクトリの表示が更新されないバグ対策)
//int CacheEntry = 10;
int CacheEntry = -10;
int CacheSave = NO;
char DefaultLocalPath[FMAX_PATH+1] = { "" };
int SaveTimeStamp = YES;
int FindMode = 0;
int DotFile = YES;
int DclickOpen = YES;
int ConnectAndSet = YES;
SOUNDFILE Sound[SOUND_TYPES] = { { NO, "" }, { NO, "" }, { NO, "" } };
int FnameCnv = FNAME_NOCNV;
int TimeOut = 90;
int RmEOF = NO;
int RegType = REGTYPE_REG;
char FwallHost[HOST_ADRS_LEN+1] = { "" };
char FwallUser[USER_NAME_LEN+1] = { "" };
char FwallPass[PASSWORD_LEN+1] = { "" };
int FwallPort = PORT_NOR;
int FwallType = 1;
int FwallDefault = NO;
int FwallSecurity = SECURITY_AUTO;
int FwallResolv = NO;
int FwallLower = NO;
int FwallDelimiter = '@';
int PasvDefault = NO;
char MirrorNoTrn[MIRROR_LEN+1] = { "*.bak\0" };
char MirrorNoDel[MIRROR_LEN+1] = { "" };
int MirrorFnameCnv = NO;
int SplitVertical = YES;
int RasClose = NO;
int RasCloseNotify = YES;
int FileHist = 5;
char DefAttrList[DEFATTRLIST_LEN+1] = { "" };
SIZE HostDlgSize = { -1, -1 };
SIZE BmarkDlgSize = { -1, -1 };
SIZE MirrorDlgSize = { -1, -1 };
int Sizing = SW_RESTORE;
int SortSave = NO;
char TmpPath[FMAX_PATH+1];
int QuickAnonymous = YES;
int PassToHist = YES;
int VaxSemicolon = NO;
int SendQuit = NO;
int NoRasControl = NO;
int SuppressSave = NO;
int DispIgnoreHide = NO;
int DispDrives = NO;
int MirUpDelNotify = YES;
int MirDownDelNotify = YES;
int FolderAttr = NO;
int FolderAttrNum = 777;
// 暗号化通信対応
BYTE CertificateCacheHash[MAX_CERT_CACHE_HASH][20];
BYTE SSLRootCAFileHash[20];
// ファイルアイコン表示対応
int DispFileIcon = NO;
/*----- メインルーチン --------------------------------------------------------
*
* Parameter
* HINSTANCE hInstance : このアプリケーションのこのインスタンスのハンドル
* HINSTANCE hPrevInstance : このアプリケーションの直前のインスタンスのハンドル
* LPSTR lpszCmdLine : アプリケーションが起動したときのコマンドラインをさすロングポインタ
* int cmdShow : 最初に表示するウインドウの形式。
*
* Return Value
* int 最後のメッセージのwParam
*----------------------------------------------------------------------------*/
int PASCAL WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, LPSTR lpszCmdLine, int cmdShow)
{
MSG Msg;
int Ret;
BOOL Sts;
// プロセス保護
#ifdef ENABLE_PROCESS_PROTECTION
DWORD ProtectLevel;
char* pCommand;
char Option[FMAX_PATH+1];
ProtectLevel = PROCESS_PROTECTION_NONE;
pCommand = lpszCmdLine;
while(pCommand = GetToken(pCommand, Option))
{
if(strcmp(Option, "--protect") == 0)
{
ProtectLevel = PROCESS_PROTECTION_DEFAULT;
break;
}
else if(strcmp(Option, "--protect-high") == 0)
{
ProtectLevel = PROCESS_PROTECTION_HIGH;
break;
}
else if(strcmp(Option, "--protect-medium") == 0)
{
ProtectLevel = PROCESS_PROTECTION_MEDIUM;
break;
}
else if(strcmp(Option, "--protect-low") == 0)
{
ProtectLevel = PROCESS_PROTECTION_LOW;
break;
}
}
if(ProtectLevel != PROCESS_PROTECTION_NONE)
{
SetProcessProtectionLevel(ProtectLevel);
if(!InitializeLoadLibraryHook())
{
MessageBox(NULL, MSGJPN321, "FFFTP", MB_OK | MB_ICONERROR);
return 0;
}
#ifndef _DEBUG
if(IsDebuggerPresent())
{
MessageBox(NULL, MSGJPN322, "FFFTP", MB_OK | MB_ICONERROR);
return 0;
}
#endif
if(!UnloadUntrustedModule())
{
MessageBox(NULL, MSGJPN323, "FFFTP", MB_OK | MB_ICONERROR);
return 0;
}
#ifndef _DEBUG
if(RestartProtectedProcess(" --restart"))
return 0;
#endif
if(!EnableLoadLibraryHook(TRUE))
{
MessageBox(NULL, MSGJPN324, "FFFTP", MB_OK | MB_ICONERROR);
return 0;
}
}
else
InitializeLoadLibraryHook();
#endif
// マルチコアCPUの特定環境下でファイル通信中にクラッシュするバグ対策
#ifdef DISABLE_MULTI_CPUS
SetProcessAffinityMask(GetCurrentProcess(), 1);
#endif
MainThreadId = GetCurrentThreadId();
// yutaka
if(OleInitialize(NULL) != S_OK){
MessageBox(NULL, MSGJPN298, "FFFTP", MB_OK | MB_ICONERROR);
return 0;
}
InitCommonControls();
// FTPS対応
#ifdef USE_OPENSSL
LoadOpenSSL();
#endif
// SFTP対応
LoadPuTTY();
Ret = FALSE;
hWndFtp = NULL;
hInstFtp = hInstance;
if(InitApp(lpszCmdLine, cmdShow) == FFFTP_SUCCESS)
{
for(;;)
{
Sts = GetMessage(&Msg, NULL, 0, 0);
if((Sts == 0) || (Sts == -1))
break;
// 64ビット対応
// if(!HtmlHelp(NULL, NULL, HH_PRETRANSLATEMESSAGE, (DWORD)&Msg))
if(!HtmlHelp(NULL, NULL, HH_PRETRANSLATEMESSAGE, (DWORD_PTR)&Msg))
{
/* ディレクトリ名の表示コンボボックスでBSやRETが効くように */
/* コンボボックス内ではアクセラレータを無効にする */
if((Msg.hwnd == GetLocalHistEditHwnd()) ||
(Msg.hwnd == GetRemoteHistEditHwnd()) ||
((hHelpWin != NULL) && (GetAncestor(Msg.hwnd, GA_ROOT) == hHelpWin)) ||
GetHideUI() == YES ||
(TranslateAccelerator(hWndFtp, Accel, &Msg) == 0))
{
TranslateMessage(&Msg);
DispatchMessage(&Msg);
}
}
}
Ret = Msg.wParam;
}
UnregisterClass(FtpClassStr, hInstFtp);
// FTPS対応
#ifdef USE_OPENSSL
FreeOpenSSL();
#endif
// SFTP対応
FreePuTTY();
OleUninitialize();
return(Ret);
}
/*----- アプリケーションの初期設定 --------------------------------------------
*
* Parameter
* HINSTANCE hInstance : このアプリケーションのこのインスタンスのハンドル
* HINSTANCE hPrevInstance : このアプリケーションの直前のインスタンスのハンドル
* LPSTR lpszCmdLine : アプリケーションが起動したときのコマンドラインをさすロングポインタ
* int cmdShow : 最初に表示するウインドウの形式。
*
* Return Value
* int ステータス
* FFFTP_SUCCESS/FFFTP_FAIL
*----------------------------------------------------------------------------*/
static int InitApp(LPSTR lpszCmdLine, int cmdShow)
{
int sts;
int Err;
WSADATA WSAData;
char PwdBuf[FMAX_PATH+1];
int useDefautPassword = 0; /* 警告文表示用 */
int masterpass;
sts = FFFTP_FAIL;
aes_init();
srand(GetTickCount());
// 64ビット対応
// HtmlHelp(NULL, NULL, HH_INITIALIZE, (DWORD)&dwCookie);
HtmlHelp(NULL, NULL, HH_INITIALIZE, (DWORD_PTR)&dwCookie);
SaveUpdateBellInfo();
if((Err = WSAStartup((WORD)0x0202, &WSAData)) != 0)
MessageBox(NULL, ReturnWSError(Err), "FFFTP - Startup", MB_OK);
else
{
Accel = LoadAccelerators(hInstFtp, MAKEINTRESOURCE(ffftp_accel));
// 環境依存の不具合対策
// GetTempPath(FMAX_PATH, TmpPath);
GetAppTempPath(TmpPath);
_mkdir(TmpPath);
SetYenTail(TmpPath);
GetModuleFileName(NULL, HelpPath, FMAX_PATH);
strcpy(GetFileName(HelpPath), "ffftp.chm");
if(CheckIniFileName(lpszCmdLine, IniPath) == 0)
{
GetModuleFileName(NULL, IniPath, FMAX_PATH);
strcpy(GetFileName(IniPath), "ffftp.ini");
}
else
{
ForceIni = YES;
RegType = REGTYPE_INI;
}
// AllocConsole();
/* 2010.02.01 genta マスターパスワードを入力させる
-z オプションがあるときは最初だけスキップ
-z オプションがないときは,デフォルトパスワードをまず試す
LoadRegistory()する
パスワードが不一致なら再入力するか尋ねる.
(破損していた場合はさせない)
*/
if( CheckMasterPassword(lpszCmdLine, PwdBuf))
{
SetMasterPassword( PwdBuf );
useDefautPassword = 0;
}
else {
/* パスワード指定無し */
SetMasterPassword( NULL );
/* この場では表示できないのでフラグだけ立てておく*/
useDefautPassword = 2;
}
/* パスワードチェックのみ実施 */
masterpass = 1;
while( ValidateMasterPassword() == YES &&
GetMasterPasswordStatus() == PASSWORD_UNMATCH ){
if( useDefautPassword != 2 ){
/* 再トライするか確認 */
if( MessageBox(NULL, MSGJPN304, "FFFTP", MB_YESNO | MB_ICONEXCLAMATION) == IDNO ){
useDefautPassword = 0; /* 不一致なので,もはやデフォルトかどうかは分からない */
break;
}
}
/* 再入力させる*/
masterpass = EnterMasterPasswordAndSet(masterpasswd_dlg, NULL);
if( masterpass == 2 ){
useDefautPassword = 1;
}
else if( masterpass == 0 ){
SaveExit = NO;
break;
}
else {
useDefautPassword = 0;
}
}
if(masterpass != 0)
{
LoadRegistory();
// 暗号化通信対応
SetSSLTimeoutCallback(TimeOut * 1000, SSLTimeoutCallback);
SetSSLConfirmCallback(SSLConfirmCallback);
GetModuleFileName(NULL, SSLRootCAFilePath, FMAX_PATH);
strcpy(GetFileName(SSLRootCAFilePath), "ssl.pem");
LoadSSLRootCAFile();
LoadJre();
if(NoRasControl == NO)
LoadRasLib();
LoadKernelLib();
//タイマの精度を改善
timeBeginPeriod(1);
CountPrevFfftpWindows();
if(MakeAllWindows(cmdShow) == FFFTP_SUCCESS)
{
hWndCurFocus = GetLocalHwnd();
if(strlen(DefaultLocalPath) > 0)
SetCurrentDirectory(DefaultLocalPath);
SetSortTypeImm(LocalFileSort, LocalDirSort, RemoteFileSort, RemoteDirSort);
SetTransferTypeImm(TransMode);
DispTransferType();
SetHostKanaCnvImm(YES);
SetHostKanjiCodeImm(KANJI_NOCNV);
// 本当はローカルのデフォルトをUTF-8にしたいが旧バージョンとの互換性のためShift_JISに設定
// SetLocalKanjiCodeImm(KANJI_UTF8N);
SetLocalKanjiCodeImm(KANJI_SJIS);
DispListType();
DispDotFileMode();
DispSyncMoveMode();
MakeCacheBuf(CacheEntry);
if(CacheSave == YES)
LoadCache();
if(MakeTransferThread() == FFFTP_SUCCESS)
{
DoPrintf("DEBUG MESSAGE ON ! ##");
DispWindowTitle();
// SourceForge.JPによるフォーク
// SetTaskMsg("FFFTP Ver." VER_STR " Copyright(C) 1997-2010 Sota & cooperators.");
SetTaskMsg("FFFTP Ver." VER_STR " Copyright(C) 1997-2010 Sota & cooperators.\r\nCopyright (C) 2011-2012 FFFTP Project (Hiromichi Matsushima, Suguru Kawamoto, IWAMOTO Kouichi, vitamin0x, unarist, Asami, fortran90, tomo1192, Yuji Tanaka, Moriguchi Hirokazu).");
if(ForceIni)
SetTaskMsg("%s%s", MSGJPN283, IniPath);
if(IsFolderExist(TmpPath) == NO)
{
SetTaskMsg(MSGJPN152, TmpPath);
GetTempPath(FMAX_PATH, TmpPath);
SetTaskMsg(MSGJPN153, TmpPath);
}
DoPrintf("Tmp =%s", TmpPath);
DoPrintf("Help=%s", HelpPath);
DragAcceptFiles(GetRemoteHwnd(), TRUE);
DragAcceptFiles(GetLocalHwnd(), TRUE);
SetAllHistoryToMenu();
GetLocalDirForWnd();
MakeButtonsFocus();
DispTransferFiles();
StartupProc(lpszCmdLine);
sts = FFFTP_SUCCESS;
/* セキュリティ警告文の表示 */
if( useDefautPassword ){
SetTaskMsg(MSGJPN300);
}
/* パスワード不一致警告文の表示 */
switch( GetMasterPasswordStatus() ){
case PASSWORD_UNMATCH:
SetTaskMsg(MSGJPN301);
break;
case BAD_PASSWORD_HASH:
SetTaskMsg(MSGJPN302);
break;
default:
break;
}
}
}
}
}
// 暗号化通信対応
#ifdef USE_OPENSSL
if(IsOpenSSLLoaded())
SetTaskMsg(MSGJPN318);
else
SetTaskMsg(MSGJPN319);
#endif
if(sts == FFFTP_FAIL)
DeleteAllObject();
return(sts);
}
/*----- ウインドウを作成する --------------------------------------------------
*
* Parameter
* int cmdShow : 最初に表示するウインドウの形式。
*
* Return Value
* int ステータス
* FFFTP_SUCCESS/FFFTP_FAIL
*----------------------------------------------------------------------------*/
static int MakeAllWindows(int cmdShow)
{
RECT Rect1;
RECT Rect2;
WNDCLASSEX wClass;
int Sts;
int StsTask;
int StsSbar;
int StsTbar;
int StsList;
int StsLvtips;
int StsSocket;
/*===== メインウインドウ =====*/
RootColorBrush = CreateSolidBrush(GetSysColor(COLOR_3DFACE));
wClass.cbSize = sizeof(WNDCLASSEX);
wClass.style = 0;
wClass.lpfnWndProc = FtpWndProc;
wClass.cbClsExtra = 0;
wClass.cbWndExtra = 0;
wClass.hInstance = hInstFtp;
wClass.hIcon = LoadIcon(hInstFtp, MAKEINTRESOURCE(ffftp));
wClass.hCursor = NULL;
wClass.hbrBackground = RootColorBrush;
wClass.lpszMenuName = (LPSTR)MAKEINTRESOURCE(main_menu);
wClass.lpszClassName = FtpClassStr;
wClass.hIconSm = NULL;
RegisterClassEx(&wClass);
if(SaveWinPos == NO)
{
WinPosX = CW_USEDEFAULT;
WinPosY = 0;
}
hWndFtp = CreateWindow(FtpClassStr, "FFFTP",
WS_OVERLAPPEDWINDOW | WS_CLIPCHILDREN | WS_CLIPSIBLINGS,
WinPosX, WinPosY, WinWidth, WinHeight,
HWND_DESKTOP, 0, hInstFtp, NULL);
if(hWndFtp != NULL)
{
SystemParametersInfo(SPI_GETWORKAREA, 0, &Rect1, 0);
GetWindowRect(hWndFtp, &Rect2);
if(Rect2.bottom > Rect1.bottom)
{
Rect2.top = max1(0, Rect2.top - (Rect2.bottom - Rect1.bottom));
MoveWindow(hWndFtp, Rect2.left, Rect2.top, WinWidth, WinHeight, FALSE);
}
/*===== ステイタスバー =====*/
StsSbar = MakeStatusBarWindow(hWndFtp, hInstFtp);
CalcWinSize();
/*===== ツールバー =====*/
StsTbar = MakeToolBarWindow(hWndFtp, hInstFtp);
/*===== ファイルリストウインドウ =====*/
StsList = MakeListWin(hWndFtp, hInstFtp);
/*==== タスクウインドウ ====*/
StsTask = MakeTaskWindow(hWndFtp, hInstFtp);
if((cmdShow != SW_MINIMIZE) && (cmdShow != SW_SHOWMINIMIZED) && (cmdShow != SW_SHOWMINNOACTIVE) &&
(Sizing == SW_MAXIMIZE))
cmdShow = SW_MAXIMIZE;
ShowWindow(hWndFtp, cmdShow);
/*==== ソケットウインドウ ====*/
StsSocket = MakeSocketWin(hWndFtp, hInstFtp);
StsLvtips = InitListViewTips(hWndFtp, hInstFtp);
}
Sts = FFFTP_SUCCESS;
if((hWndFtp == NULL) ||
(StsTbar == FFFTP_FAIL) ||
(StsList == FFFTP_FAIL) ||
(StsSbar == FFFTP_FAIL) ||
(StsTask == FFFTP_FAIL) ||
(StsLvtips == FFFTP_FAIL) ||
(StsSocket == FFFTP_FAIL))
{
Sts = FFFTP_FAIL;
}
if(Sts == FFFTP_SUCCESS)
SetListViewType();
return(Sts);
}
/*----- ウインドウのタイトルを表示する ----------------------------------------
*
* Parameter
* なし
*
* Return Value
* なし
*----------------------------------------------------------------------------*/
void DispWindowTitle(void)
{
char Tmp[HOST_ADRS_LEN+FILTER_EXT_LEN+20];
if(AskConnecting() == YES)
sprintf(Tmp, "%s (%s) - FFFTP", TitleHostName, FilterStr);
else
sprintf(Tmp, "FFFTP (%s)", FilterStr);
SetWindowText(GetMainHwnd(), Tmp);
return;
}
/*----- 全てのオブジェクトを削除 ----------------------------------------------
*
* Parameter
* なし
*
* Return Value
* なし
*----------------------------------------------------------------------------*/
static void DeleteAllObject(void)
{
DeleteCacheBuf();
//move to WM_DESTROY
WSACleanup();
//test システム任せ
// if(ListFont != NULL)
// DeleteObject(ListFont);
// if(RootColorBrush != NULL)
// DeleteObject(RootColorBrush);
//test システム任せ
// DeleteListViewTips();
// DeleteListWin();
// DeleteStatusBarWindow();
// DeleteTaskWindow();
// DeleteToolBarWindow();
// DeleteSocketWin();
//move to WM_DESTROY
if(hWndFtp != NULL)
DestroyWindow(hWndFtp);
ReleaseJre();
ReleaseRasLib();
ReleaseKernelLib();
return;
}
/*----- メインウインドウのウインドウハンドルを返す ----------------------------
*
* Parameter
* なし
*
* Return Value
* HWND ウインドウハンドル
*----------------------------------------------------------------------------*/
HWND GetMainHwnd(void)
{
return(hWndFtp);
}
/*----- 現在フォーカスがあるウインドウのウインドウハンドルを返す --------------
*
* Parameter
* なし
*
* Return Value
* HWND ウインドウハンドル
*----------------------------------------------------------------------------*/
HWND GetFocusHwnd(void)
{
return(hWndCurFocus);
}
/*----- 現在フォーカスがあるウインドウのをセットする --------------------------
*
* Parameter
* HWND hWnd : ウインドウハンドル
*
* Return Value
* なし
*----------------------------------------------------------------------------*/
void SetFocusHwnd(HWND hWnd)
{
hWndCurFocus = hWnd;
return;
}
/*----- プログラムのインスタンスを返す ----------------------------------------
*
* Parameter
* なし
*
* Return Value
* HINSTANCE インスタンス
*----------------------------------------------------------------------------*/
HINSTANCE GetFtpInst(void)
{
return(hInstFtp);
}
/*----- メインウインドウのメッセージ処理 --------------------------------------
*
* Parameter
* HWND hWnd : ウインドウハンドル
* UINT message : メッセージ番号
* WPARAM wParam : メッセージの WPARAM 引数
* LPARAM lParam : メッセージの LPARAM 引数
*
* Return Value
* メッセージに対応する戻り値
*----------------------------------------------------------------------------*/
static LRESULT CALLBACK FtpWndProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam)
{
PAINTSTRUCT ps;
LPTOOLTIPTEXT lpttt;
// UTF-8対応
LPTOOLTIPTEXTW wlpttt;
RECT Rect;
int TmpTransType;
switch (message)
{
// 自動切断対策
case WM_TIMER :
if(wParam == 1)
NoopProc();
break;
case WM_COMMAND :
// 同時接続対応
// 中断後に受信バッファに応答が残っていると次のコマンドの応答が正しく処理できない
if(CancelFlg == YES)
RemoveReceivedData(AskCmdCtrlSkt());
switch(LOWORD(wParam))
{
case MENU_CONNECT :
// 自動切断対策
KillTimer(hWnd, 1);
ConnectProc(DLG_TYPE_CON, -1);
// 自動切断対策
if(AskNoopInterval() > 0)
SetTimer(hWnd, 1, AskNoopInterval() * 1000, NULL);
break;
case MENU_CONNECT_NUM :
// 自動切断対策
KillTimer(hWnd, 1);
ConnectProc(DLG_TYPE_CON, (int)lParam);
// 自動切断対策
if(AskNoopInterval() > 0)
SetTimer(hWnd, 1, AskNoopInterval() * 1000, NULL);
if(AskConnecting() == YES)
{
if(HIWORD(wParam) & OPT_MIRROR)
{
if(HIWORD(wParam) & OPT_FORCE)
MirrorUploadProc(NO);
else
MirrorUploadProc(YES);
}
else if(HIWORD(wParam) & OPT_MIRRORDOWN)
{
if(HIWORD(wParam) & OPT_FORCE)
MirrorDownloadProc(NO);
else
MirrorDownloadProc(YES);
}
}
break;
case MENU_SET_CONNECT :
// 自動切断対策
KillTimer(hWnd, 1);
ConnectProc(DLG_TYPE_SET, -1);
// 自動切断対策
if(AskNoopInterval() > 0)
SetTimer(hWnd, 1, AskNoopInterval() * 1000, NULL);
break;
case MENU_QUICK :
// 自動切断対策
KillTimer(hWnd, 1);
QuickConnectProc();
// 自動切断対策
if(AskNoopInterval() > 0)
SetTimer(hWnd, 1, AskNoopInterval() * 1000, NULL);
break;
case MENU_DISCONNECT :
if(AskTryingConnect() == YES)
CancelFlg = YES;
else if(AskConnecting() == YES)
{
SaveBookMark();
SaveCurrentSetToHost();
DisconnectProc();
}
break;
case MENU_HIST_1 :
case MENU_HIST_2 :
case MENU_HIST_3 :
case MENU_HIST_4 :
case MENU_HIST_5 :
case MENU_HIST_6 :
case MENU_HIST_7 :
case MENU_HIST_8 :
case MENU_HIST_9 :
case MENU_HIST_10 :
case MENU_HIST_11 :
case MENU_HIST_12 :
case MENU_HIST_13 :
case MENU_HIST_14 :
case MENU_HIST_15 :
case MENU_HIST_16 :
case MENU_HIST_17 :
case MENU_HIST_18 :
case MENU_HIST_19 :
case MENU_HIST_20 :
// 自動切断対策
KillTimer(hWnd, 1);
HistoryConnectProc(LOWORD(wParam));
// 自動切断対策
if(AskNoopInterval() > 0)
SetTimer(hWnd, 1, AskNoopInterval() * 1000, NULL);
break;
case MENU_UPDIR :
if(hWndCurFocus == GetLocalHwnd())
PostMessage(hWnd, WM_COMMAND, MAKEWPARAM(MENU_LOCAL_UPDIR, 0), 0);
else
PostMessage(hWnd, WM_COMMAND, MAKEWPARAM(MENU_REMOTE_UPDIR, 0), 0);
break;
case MENU_DCLICK :
if(hWndCurFocus == GetLocalHwnd())
DoubleClickProc(WIN_LOCAL, YES, -1);
else
{
SuppressRefresh = 1;
DoubleClickProc(WIN_REMOTE, YES, -1);
SuppressRefresh = 0;
}
break;
case MENU_OPEN1 :
if(hWndCurFocus == GetLocalHwnd())
DoubleClickProc(WIN_LOCAL, YES, 0);
else
{
SuppressRefresh = 1;
DoubleClickProc(WIN_REMOTE, YES, 0);
SuppressRefresh = 0;
}
break;