Configuration.cpp 65 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001
  1. //---------------------------------------------------------------------------
  2. #include <vcl.h>
  3. #pragma hdrstop
  4. #include <FileInfo.h>
  5. #include "Common.h"
  6. #include "Exceptions.h"
  7. #include "Configuration.h"
  8. #include "PuttyIntf.h"
  9. #include "TextsCore.h"
  10. #include "Interface.h"
  11. #include "CoreMain.h"
  12. #include "Security.h"
  13. #include "FileMasks.h"
  14. #include "CopyParam.h"
  15. #include <shlobj.h>
  16. #include <System.IOUtils.hpp>
  17. #include <System.StrUtils.hpp>
  18. //---------------------------------------------------------------------------
  19. #pragma package(smart_init)
  20. //---------------------------------------------------------------------------
  21. const wchar_t * AutoSwitchNames = L"On;Off;Auto";
  22. const wchar_t * NotAutoSwitchNames = L"Off;On;Auto";
  23. //---------------------------------------------------------------------------
  24. // See https://www.iana.org/assignments/hash-function-text-names/hash-function-text-names.xhtml
  25. const UnicodeString Sha1ChecksumAlg(L"sha-1");
  26. const UnicodeString Sha224ChecksumAlg(L"sha-224");
  27. const UnicodeString Sha256ChecksumAlg(L"sha-256");
  28. const UnicodeString Sha384ChecksumAlg(L"sha-384");
  29. const UnicodeString Sha512ChecksumAlg(L"sha-512");
  30. const UnicodeString Md5ChecksumAlg(L"md5");
  31. // Not defined by IANA
  32. const UnicodeString Crc32ChecksumAlg(L"crc32");
  33. //---------------------------------------------------------------------------
  34. const UnicodeString SshFingerprintType(L"ssh");
  35. const UnicodeString TlsFingerprintType(L"tls");
  36. //---------------------------------------------------------------------------
  37. const UnicodeString FtpsCertificateStorageKey(L"FtpsCertificates");
  38. const UnicodeString HttpsCertificateStorageKey(L"HttpsCertificates");
  39. const UnicodeString LastFingerprintsStorageKey(L"LastFingerprints");
  40. const UnicodeString DirectoryStatisticsCacheKey(L"DirectoryStatisticsCache");
  41. const UnicodeString CDCacheKey(L"CDCache");
  42. const UnicodeString BannersKey(L"Banners");
  43. //---------------------------------------------------------------------------
  44. const int BelowNormalLogLevels = 1;
  45. //---------------------------------------------------------------------------
  46. __fastcall TConfiguration::TConfiguration()
  47. {
  48. FCriticalSection = new TCriticalSection();
  49. FUpdating = 0;
  50. FStorage = stDetect;
  51. FDontSave = false;
  52. FForceSave = false;
  53. FApplicationInfo = NULL;
  54. FUsage = new TUsage(this);
  55. FDefaultCollectUsage = false;
  56. FScripting = false;
  57. UnicodeString RandomSeedPath;
  58. if (!GetEnvironmentVariable(L"APPDATA").IsEmpty())
  59. {
  60. RandomSeedPath = L"%APPDATA%";
  61. }
  62. else
  63. {
  64. RandomSeedPath = GetShellFolderPath(CSIDL_LOCAL_APPDATA);
  65. if (RandomSeedPath.IsEmpty())
  66. {
  67. RandomSeedPath = GetShellFolderPath(CSIDL_APPDATA);
  68. }
  69. }
  70. FDefaultRandomSeedFile = IncludeTrailingBackslash(RandomSeedPath) + L"winscp.rnd";
  71. }
  72. //---------------------------------------------------------------------------
  73. void __fastcall TConfiguration::Default()
  74. {
  75. TGuard Guard(FCriticalSection);
  76. FDisablePasswordStoring = false;
  77. FForceBanners = false;
  78. FDisableAcceptingHostKeys = false;
  79. TRegistryStorage * AdminStorage;
  80. AdminStorage = new TRegistryStorage(RegistryStorageKey, HKEY_LOCAL_MACHINE);
  81. try
  82. {
  83. if (AdminStorage->OpenRootKey(false))
  84. {
  85. LoadAdmin(AdminStorage);
  86. AdminStorage->CloseSubKey();
  87. }
  88. }
  89. __finally
  90. {
  91. delete AdminStorage;
  92. }
  93. RandomSeedFile = FDefaultRandomSeedFile;
  94. PuttyRegistryStorageKey = OriginalPuttyRegistryStorageKey;
  95. FConfirmOverwriting = true;
  96. FConfirmResume = true;
  97. FAutoReadDirectoryAfterOp = true;
  98. FSessionReopenAuto = 5000;
  99. FSessionReopenBackground = 2000;
  100. FSessionReopenTimeout = 0;
  101. FSessionReopenAutoStall = 60000;
  102. FTunnelLocalPortNumberLow = 50000;
  103. FTunnelLocalPortNumberHigh = 50099;
  104. FCacheDirectoryChangesMaxSize = 100;
  105. FShowFtpWelcomeMessage = false;
  106. FExternalIpAddress = L"";
  107. FLocalPortNumberMin = 0;
  108. FLocalPortNumberMax = 0;
  109. FTryFtpWhenSshFails = true;
  110. FParallelDurationThreshold = 10;
  111. FMimeTypes = UnicodeString();
  112. FDontReloadMoreThanSessions = 1000;
  113. FScriptProgressFileNameLimit = 25;
  114. FKeyVersion = 0;
  115. CollectUsage = FDefaultCollectUsage;
  116. FLogging = false;
  117. FPermanentLogging = false;
  118. FLogFileName = DefaultLogFileName;
  119. FPermanentLogFileName = FLogFileName;
  120. FLogFileAppend = true;
  121. FLogSensitive = false;
  122. FPermanentLogSensitive = FLogSensitive;
  123. FLogMaxSize = 0;
  124. FPermanentLogMaxSize = FLogMaxSize;
  125. FLogMaxCount = 0;
  126. FPermanentLogMaxCount = FLogMaxCount;
  127. FLogProtocol = 0;
  128. FPermanentLogProtocol = FLogProtocol;
  129. UpdateActualLogProtocol();
  130. FLogActions = false;
  131. FPermanentLogActions = false;
  132. FLogActionsRequired = false;
  133. FActionsLogFileName = L"%TEMP%\\!S.xml";
  134. FPermanentActionsLogFileName = FActionsLogFileName;
  135. FProgramIniPathWrittable = -1;
  136. FCustomIniFileStorageName = LoadCustomIniFileStorageName();
  137. Changed();
  138. }
  139. //---------------------------------------------------------------------------
  140. __fastcall TConfiguration::~TConfiguration()
  141. {
  142. DebugAssert(!FUpdating);
  143. if (FApplicationInfo) FreeFileInfo(FApplicationInfo);
  144. delete FCriticalSection;
  145. delete FUsage;
  146. }
  147. //---------------------------------------------------------------------------
  148. void __fastcall TConfiguration::UpdateStaticUsage()
  149. {
  150. Usage->Set(L"ConfigurationIniFile", (Storage == stIniFile));
  151. Usage->Set(L"ConfigurationIniFileCustom", !CustomIniFileStorageName.IsEmpty());
  152. Usage->Set("Unofficial", IsUnofficial);
  153. // this is called from here, because we are guarded from calling into
  154. // master password handler here, see TWinConfiguration::UpdateStaticUsage
  155. StoredSessions->UpdateStaticUsage();
  156. }
  157. //---------------------------------------------------------------------------
  158. THierarchicalStorage * TConfiguration::CreateConfigStorage()
  159. {
  160. bool SessionList = false;
  161. return CreateScpStorage(SessionList);
  162. }
  163. //---------------------------------------------------------------------------
  164. THierarchicalStorage * TConfiguration::CreateConfigRegistryStorage()
  165. {
  166. return new TRegistryStorage(RegistryStorageKey);
  167. }
  168. //---------------------------------------------------------------------------
  169. THierarchicalStorage * TConfiguration::CreateScpStorage(bool & SessionList)
  170. {
  171. TGuard Guard(FCriticalSection);
  172. THierarchicalStorage * Result;
  173. if (Storage == stRegistry)
  174. {
  175. Result = CreateConfigRegistryStorage();
  176. }
  177. else if (Storage == stNul)
  178. {
  179. Result = TIniFileStorage::CreateFromPath(INI_NUL);
  180. }
  181. else
  182. {
  183. UnicodeString StorageName = IniFileStorageName;
  184. Result = TIniFileStorage::CreateFromPath(StorageName);
  185. }
  186. if ((FOptionsStorage.get() != NULL) && (FOptionsStorage->Count > 0))
  187. {
  188. if (!SessionList)
  189. {
  190. Result = new TOptionsStorage(FOptionsStorage.get(), ConfigurationSubKey, Result);
  191. }
  192. else
  193. {
  194. // cannot reuse session list storage for configuration as for it we need
  195. // the option-override storage above
  196. }
  197. }
  198. else
  199. {
  200. // All the above stores can be reused for configuration,
  201. // if no options-overrides are set
  202. SessionList = false;
  203. }
  204. return Result;
  205. }
  206. //---------------------------------------------------------------------------
  207. UnicodeString __fastcall TConfiguration::PropertyToKey(const UnicodeString & Property)
  208. {
  209. // no longer useful
  210. int P = Property.LastDelimiter(L".>");
  211. UnicodeString Result = Property.SubString(P + 1, Property.Length() - P);
  212. if ((Result[1] == L'F') && ((wchar_t)toupper(Result[2]) == Result[2]))
  213. {
  214. Result.Delete(1, 1);
  215. }
  216. return Result;
  217. }
  218. //---------------------------------------------------------------------------
  219. #define BLOCK(KEY, CANCREATE, BLOCK) \
  220. if (Storage->OpenSubKeyPath(KEY, CANCREATE)) try { BLOCK } __finally { Storage->CloseSubKeyPath(); }
  221. #define KEY(TYPE, VAR) KEYEX(TYPE, VAR, PropertyToKey(TEXT(#VAR)))
  222. #define REGCONFIG(CANCREATE) \
  223. BLOCK(L"Interface", CANCREATE, \
  224. KEY(String, RandomSeedFile); \
  225. KEY(String, PuttyRegistryStorageKey); \
  226. KEY(Bool, ConfirmOverwriting); \
  227. KEY(Bool, ConfirmResume); \
  228. KEY(Bool, AutoReadDirectoryAfterOp); \
  229. KEY(Integer, SessionReopenAuto); \
  230. KEY(Integer, SessionReopenBackground); \
  231. KEY(Integer, SessionReopenTimeout); \
  232. KEY(Integer, SessionReopenAutoStall); \
  233. KEY(Integer, TunnelLocalPortNumberLow); \
  234. KEY(Integer, TunnelLocalPortNumberHigh); \
  235. KEY(Integer, CacheDirectoryChangesMaxSize); \
  236. KEY(Bool, ShowFtpWelcomeMessage); \
  237. KEY(String, ExternalIpAddress); \
  238. KEY(Integer, LocalPortNumberMin); \
  239. KEY(Integer, LocalPortNumberMax); \
  240. KEY(Bool, TryFtpWhenSshFails); \
  241. KEY(Integer, ParallelDurationThreshold); \
  242. KEY(String, MimeTypes); \
  243. KEY(Integer, DontReloadMoreThanSessions); \
  244. KEY(Integer, ScriptProgressFileNameLimit); \
  245. KEY(Integer, KeyVersion); \
  246. KEY(Bool, CollectUsage); \
  247. ); \
  248. BLOCK(L"Logging", CANCREATE, \
  249. KEYEX(Bool, PermanentLogging, L"Logging"); \
  250. KEYEX(String,PermanentLogFileName, L"LogFileName"); \
  251. KEY(Bool, LogFileAppend); \
  252. KEYEX(Bool, PermanentLogSensitive, L"LogSensitive"); \
  253. KEYEX(Int64, PermanentLogMaxSize, L"LogMaxSize"); \
  254. KEYEX(Integer, PermanentLogMaxCount, L"LogMaxCount"); \
  255. KEYEX(Integer,PermanentLogProtocol, L"LogProtocol"); \
  256. KEYEX(Bool, PermanentLogActions, L"LogActions"); \
  257. KEYEX(String,PermanentActionsLogFileName, L"ActionsLogFileName"); \
  258. );
  259. //---------------------------------------------------------------------------
  260. void __fastcall TConfiguration::SaveData(THierarchicalStorage * Storage, bool /*All*/)
  261. {
  262. #define KEYEX(TYPE, VAR, NAME) Storage->Write ## TYPE(NAME, VAR)
  263. REGCONFIG(true);
  264. #undef KEYEX
  265. if (Storage->OpenSubKey(L"Usage", true))
  266. {
  267. FUsage->Save(Storage);
  268. Storage->CloseSubKey();
  269. }
  270. }
  271. //---------------------------------------------------------------------------
  272. void __fastcall TConfiguration::Save()
  273. {
  274. // only modified, implicit
  275. DoSave(false, false);
  276. }
  277. //---------------------------------------------------------------------------
  278. void __fastcall TConfiguration::SaveExplicit()
  279. {
  280. // only modified, explicit
  281. DoSave(false, true);
  282. }
  283. //---------------------------------------------------------------------------
  284. void __fastcall TConfiguration::DoSave(bool All, bool Explicit)
  285. {
  286. if (FDontSave) return;
  287. THierarchicalStorage * AStorage = CreateConfigStorage();
  288. try
  289. {
  290. AStorage->AccessMode = smReadWrite;
  291. AStorage->Explicit = Explicit;
  292. AStorage->ForceSave = FForceSave;
  293. if (AStorage->OpenSubKey(ConfigurationSubKey, true))
  294. {
  295. // if saving to TOptionsStorage, make sure we save everything so that
  296. // all configuration is properly transferred to the master storage
  297. bool ConfigAll = All || AStorage->Temporary;
  298. SaveData(AStorage, ConfigAll);
  299. }
  300. }
  301. __finally
  302. {
  303. delete AStorage;
  304. }
  305. Saved();
  306. if (All)
  307. {
  308. StoredSessions->Save(true, Explicit);
  309. }
  310. // clean up as last, so that if it fails (read only INI), the saving can proceed
  311. if (Storage == stRegistry)
  312. {
  313. CleanupIniFile();
  314. }
  315. SaveCustomIniFileStorageName();
  316. }
  317. //---------------------------------------------------------------------------
  318. void __fastcall TConfiguration::SaveCustomIniFileStorageName()
  319. {
  320. // Particularly, not to create an empty "Override" key, unless the custom INI file is ever set
  321. if (CustomIniFileStorageName != LoadCustomIniFileStorageName())
  322. {
  323. std::unique_ptr<TRegistryStorage> RegistryStorage(new TRegistryStorage(GetRegistryStorageOverrideKey()));
  324. RegistryStorage->AccessMode = smReadWrite;
  325. RegistryStorage->Explicit = true;
  326. if (RegistryStorage->OpenRootKey(true))
  327. {
  328. RegistryStorage->WriteString(L"IniFile", CustomIniFileStorageName);
  329. RegistryStorage->CloseSubKey();
  330. }
  331. }
  332. }
  333. //---------------------------------------------------------------------------
  334. void __fastcall TConfiguration::Export(const UnicodeString & FileName)
  335. {
  336. // not to "append" the export to an existing file
  337. if (FileExists(FileName))
  338. {
  339. DeleteFileChecked(FileName);
  340. }
  341. THierarchicalStorage * Storage = NULL;
  342. THierarchicalStorage * ExportStorage = NULL;
  343. try
  344. {
  345. ExportStorage = TIniFileStorage::CreateFromPath(FileName);
  346. ExportStorage->AccessMode = smReadWrite;
  347. ExportStorage->Explicit = true;
  348. Storage = CreateConfigStorage();
  349. Storage->AccessMode = smRead;
  350. CopyData(Storage, ExportStorage);
  351. if (ExportStorage->OpenSubKey(ConfigurationSubKey, true))
  352. {
  353. SaveData(ExportStorage, true);
  354. }
  355. }
  356. __finally
  357. {
  358. delete ExportStorage;
  359. delete Storage;
  360. }
  361. StoredSessions->Export(FileName);
  362. }
  363. //---------------------------------------------------------------------------
  364. void __fastcall TConfiguration::Import(const UnicodeString & FileName)
  365. {
  366. THierarchicalStorage * Storage = NULL;
  367. THierarchicalStorage * ImportStorage = NULL;
  368. try
  369. {
  370. ImportStorage = TIniFileStorage::CreateFromPath(FileName);
  371. ImportStorage->AccessMode = smRead;
  372. Storage = CreateConfigStorage();
  373. Storage->AccessMode = smReadWrite;
  374. Storage->Explicit = true;
  375. CopyData(ImportStorage, Storage);
  376. Default();
  377. LoadFrom(ImportStorage);
  378. if (ImportStorage->OpenSubKey(Configuration->StoredSessionsSubKey, false))
  379. {
  380. StoredSessions->Clear();
  381. StoredSessions->DefaultSettings->Default();
  382. StoredSessions->Load(ImportStorage);
  383. }
  384. }
  385. __finally
  386. {
  387. delete ImportStorage;
  388. delete Storage;
  389. }
  390. // save all and explicit
  391. DoSave(true, true);
  392. }
  393. //---------------------------------------------------------------------------
  394. void __fastcall TConfiguration::LoadData(THierarchicalStorage * Storage)
  395. {
  396. #define KEYEX(TYPE, VAR, NAME) VAR = Storage->Read ## TYPE(NAME, VAR)
  397. #pragma warn -eas
  398. REGCONFIG(false);
  399. #pragma warn +eas
  400. #undef KEYEX
  401. if (Storage->OpenSubKey(L"Usage", false))
  402. {
  403. FUsage->Load(Storage);
  404. Storage->CloseSubKey();
  405. }
  406. if (FPermanentLogActions && FPermanentActionsLogFileName.IsEmpty() &&
  407. FPermanentLogging && !FPermanentLogFileName.IsEmpty())
  408. {
  409. FPermanentActionsLogFileName = FPermanentLogFileName;
  410. FPermanentLogging = false;
  411. FPermanentLogFileName = L"";
  412. }
  413. }
  414. //---------------------------------------------------------------------------
  415. void __fastcall TConfiguration::LoadAdmin(THierarchicalStorage * Storage)
  416. {
  417. FDisablePasswordStoring = Storage->ReadBool(L"DisablePasswordStoring", FDisablePasswordStoring);
  418. FForceBanners = Storage->ReadBool(L"ForceBanners", FForceBanners);
  419. FDisableAcceptingHostKeys = Storage->ReadBool(L"DisableAcceptingHostKeys", FDisableAcceptingHostKeys);
  420. FDefaultCollectUsage = Storage->ReadBool(L"DefaultCollectUsage", FDefaultCollectUsage);
  421. }
  422. //---------------------------------------------------------------------------
  423. void __fastcall TConfiguration::LoadFrom(THierarchicalStorage * Storage)
  424. {
  425. if (Storage->OpenSubKey(ConfigurationSubKey, false))
  426. {
  427. LoadData(Storage);
  428. Storage->CloseSubKey();
  429. }
  430. }
  431. //---------------------------------------------------------------------------
  432. UnicodeString __fastcall TConfiguration::GetRegistryStorageOverrideKey()
  433. {
  434. return GetRegistryStorageKey() + L" Override";
  435. }
  436. //---------------------------------------------------------------------------
  437. UnicodeString __fastcall TConfiguration::LoadCustomIniFileStorageName()
  438. {
  439. UnicodeString Result;
  440. std::unique_ptr<TRegistryStorage> RegistryStorage(new TRegistryStorage(GetRegistryStorageOverrideKey()));
  441. if (RegistryStorage->OpenRootKey(false))
  442. {
  443. Result = RegistryStorage->ReadString(L"IniFile", L"");
  444. RegistryStorage->CloseSubKey();
  445. }
  446. RegistryStorage.reset(NULL);
  447. return Result;
  448. }
  449. //---------------------------------------------------------------------------
  450. void __fastcall TConfiguration::Load(THierarchicalStorage * Storage)
  451. {
  452. TGuard Guard(FCriticalSection);
  453. TStorageAccessMode StorageAccessMode = Storage->AccessMode;
  454. try
  455. {
  456. Storage->AccessMode = smRead;
  457. LoadFrom(Storage);
  458. }
  459. __finally
  460. {
  461. Storage->AccessMode = StorageAccessMode;
  462. }
  463. }
  464. //---------------------------------------------------------------------------
  465. bool __fastcall TConfiguration::CopySubKey(THierarchicalStorage * Source, THierarchicalStorage * Target, const UnicodeString & Name)
  466. {
  467. bool Result = Source->OpenSubKey(Name, false);
  468. if (Result)
  469. {
  470. Result = Target->OpenSubKey(Name, true);
  471. if (!Result)
  472. {
  473. Source->CloseSubKey();
  474. }
  475. }
  476. return Result;
  477. }
  478. //---------------------------------------------------------------------------
  479. void __fastcall TConfiguration::CopyAllStringsInSubKey(
  480. THierarchicalStorage * Source, THierarchicalStorage * Target, const UnicodeString & Name)
  481. {
  482. if (CopySubKey(Source, Target, Name))
  483. {
  484. std::unique_ptr<TStrings> Names(new TStringList());
  485. Source->GetValueNames(Names.get());
  486. for (int Index = 0; Index < Names->Count; Index++)
  487. {
  488. UnicodeString Buf = Source->ReadStringRaw(Names->Strings[Index], UnicodeString());
  489. Target->WriteStringRaw(Names->Strings[Index], Buf);
  490. }
  491. Target->CloseSubKey();
  492. Source->CloseSubKey();
  493. }
  494. }
  495. //---------------------------------------------------------------------------
  496. void __fastcall TConfiguration::CopyData(THierarchicalStorage * Source,
  497. THierarchicalStorage * Target)
  498. {
  499. if (CopySubKey(Source, Target, ConfigurationSubKey))
  500. {
  501. if (CopySubKey(Source, Target, CDCacheKey))
  502. {
  503. std::unique_ptr<TStrings> Names(new TStringList());
  504. Source->GetValueNames(Names.get());
  505. for (int Index = 0; Index < Names->Count; Index++)
  506. {
  507. Target->WriteBinaryData(Names->Strings[Index], Source->ReadBinaryData(Names->Strings[Index]));
  508. }
  509. Target->CloseSubKey();
  510. Source->CloseSubKey();
  511. }
  512. CopyAllStringsInSubKey(Source, Target, BannersKey);
  513. CopyAllStringsInSubKey(Source, Target, LastFingerprintsStorageKey);
  514. Target->CloseSubKey();
  515. Source->CloseSubKey();
  516. }
  517. CopyAllStringsInSubKey(Source, Target, SshHostKeysSubKey);
  518. CopyAllStringsInSubKey(Source, Target, FtpsCertificateStorageKey);
  519. CopyAllStringsInSubKey(Source, Target, HttpsCertificateStorageKey);
  520. }
  521. //---------------------------------------------------------------------------
  522. void __fastcall TConfiguration::LoadDirectoryChangesCache(const UnicodeString SessionKey,
  523. TRemoteDirectoryChangesCache * DirectoryChangesCache)
  524. {
  525. THierarchicalStorage * Storage = CreateConfigStorage();
  526. try
  527. {
  528. Storage->AccessMode = smRead;
  529. if (Storage->OpenSubKey(ConfigurationSubKey, false) &&
  530. Storage->OpenSubKey(CDCacheKey, false) &&
  531. Storage->ValueExists(SessionKey))
  532. {
  533. DirectoryChangesCache->Deserialize(Storage->ReadBinaryData(SessionKey));
  534. }
  535. }
  536. __finally
  537. {
  538. delete Storage;
  539. }
  540. }
  541. //---------------------------------------------------------------------------
  542. void __fastcall TConfiguration::SaveDirectoryChangesCache(const UnicodeString SessionKey,
  543. TRemoteDirectoryChangesCache * DirectoryChangesCache)
  544. {
  545. THierarchicalStorage * Storage = CreateConfigStorage();
  546. try
  547. {
  548. Storage->AccessMode = smReadWrite;
  549. if (Storage->OpenSubKey(ConfigurationSubKey, true) &&
  550. Storage->OpenSubKey(CDCacheKey, true))
  551. {
  552. UnicodeString Data;
  553. DirectoryChangesCache->Serialize(Data);
  554. Storage->WriteBinaryData(SessionKey, Data);
  555. }
  556. }
  557. __finally
  558. {
  559. delete Storage;
  560. }
  561. }
  562. //---------------------------------------------------------------------------
  563. UnicodeString __fastcall TConfiguration::BannerHash(const UnicodeString & Banner)
  564. {
  565. RawByteString Result;
  566. Result.SetLength(16);
  567. md5checksum(
  568. reinterpret_cast<const char*>(Banner.c_str()), Banner.Length() * sizeof(wchar_t),
  569. (unsigned char*)Result.c_str());
  570. return BytesToHex(Result);
  571. }
  572. //---------------------------------------------------------------------------
  573. void __fastcall TConfiguration::GetBannerData(
  574. const UnicodeString & SessionKey, UnicodeString & BannerHash, unsigned int & Params)
  575. {
  576. BannerHash = UnicodeString();
  577. Params = 0;
  578. std::unique_ptr<THierarchicalStorage> Storage(CreateConfigStorage());
  579. Storage->AccessMode = smRead;
  580. if (Storage->OpenSubKey(ConfigurationSubKey, false) &&
  581. Storage->OpenSubKey(BannersKey, false))
  582. {
  583. UnicodeString S = Storage->ReadString(SessionKey, L"");
  584. BannerHash = CutToChar(S, L',', true);
  585. Params = StrToIntDef(L"$" + CutToChar(S, L',', true), 0);
  586. }
  587. }
  588. //---------------------------------------------------------------------------
  589. bool __fastcall TConfiguration::ShowBanner(
  590. const UnicodeString & SessionKey, const UnicodeString & Banner, unsigned int & Params)
  591. {
  592. UnicodeString StoredBannerHash;
  593. GetBannerData(SessionKey, StoredBannerHash, Params);
  594. bool Result = (StoredBannerHash != BannerHash(Banner));
  595. return Result;
  596. }
  597. //---------------------------------------------------------------------------
  598. void __fastcall TConfiguration::SetBannerData(
  599. const UnicodeString & SessionKey, const UnicodeString & BannerHash, unsigned int Params)
  600. {
  601. std::unique_ptr<THierarchicalStorage> Storage(CreateConfigStorage());
  602. Storage->AccessMode = smReadWrite;
  603. if (Storage->OpenSubKey(ConfigurationSubKey, true) &&
  604. Storage->OpenSubKey(BannersKey, true))
  605. {
  606. Storage->WriteString(SessionKey, BannerHash + L"," + UIntToStr(Params));
  607. }
  608. }
  609. //---------------------------------------------------------------------------
  610. void __fastcall TConfiguration::NeverShowBanner(const UnicodeString & SessionKey, const UnicodeString & Banner)
  611. {
  612. UnicodeString DummyBannerHash;
  613. unsigned int Params;
  614. GetBannerData(SessionKey, DummyBannerHash, Params);
  615. SetBannerData(SessionKey, BannerHash(Banner), Params);
  616. }
  617. //---------------------------------------------------------------------------
  618. void __fastcall TConfiguration::SetBannerParams(const UnicodeString & SessionKey, unsigned int Params)
  619. {
  620. UnicodeString BannerHash;
  621. unsigned int DummyParams;
  622. GetBannerData(SessionKey, BannerHash, DummyParams);
  623. SetBannerData(SessionKey, BannerHash, Params);
  624. }
  625. //---------------------------------------------------------------------------
  626. UnicodeString __fastcall TConfiguration::FormatFingerprintKey(const UnicodeString & SiteKey, const UnicodeString & FingerprintType)
  627. {
  628. return FORMAT(L"%s:%s", (SiteKey, FingerprintType));
  629. }
  630. //---------------------------------------------------------------------------
  631. void __fastcall TConfiguration::RememberLastFingerprint(const UnicodeString & SiteKey, const UnicodeString & FingerprintType, const UnicodeString & Fingerprint)
  632. {
  633. std::unique_ptr<THierarchicalStorage> Storage(CreateConfigStorage());
  634. Storage->AccessMode = smReadWrite;
  635. if (Storage->OpenSubKey(ConfigurationSubKey, true) &&
  636. Storage->OpenSubKey(LastFingerprintsStorageKey, true))
  637. {
  638. UnicodeString FingerprintKey = FormatFingerprintKey(SiteKey, FingerprintType);
  639. Storage->WriteString(FingerprintKey, Fingerprint);
  640. }
  641. }
  642. //---------------------------------------------------------------------------
  643. UnicodeString __fastcall TConfiguration::LastFingerprint(const UnicodeString & SiteKey, const UnicodeString & FingerprintType)
  644. {
  645. UnicodeString Result;
  646. std::unique_ptr<THierarchicalStorage> Storage(CreateConfigStorage());
  647. Storage->AccessMode = smRead;
  648. if (Storage->OpenSubKey(ConfigurationSubKey, false) &&
  649. Storage->OpenSubKey(LastFingerprintsStorageKey, false))
  650. {
  651. UnicodeString FingerprintKey = FormatFingerprintKey(SiteKey, FingerprintType);
  652. Result = Storage->ReadString(FingerprintKey, L"");
  653. }
  654. return Result;
  655. }
  656. //---------------------------------------------------------------------------
  657. void __fastcall TConfiguration::Changed()
  658. {
  659. TNotifyEvent AOnChange = NULL;
  660. {
  661. TGuard Guard(FCriticalSection);
  662. if (FUpdating == 0)
  663. {
  664. AOnChange = OnChange;
  665. }
  666. else
  667. {
  668. FChanged = true;
  669. }
  670. }
  671. // No specific reason to call this outside of a guard, just that it is less of a change to a previous unguarded code
  672. if (AOnChange != NULL)
  673. {
  674. AOnChange(this);
  675. }
  676. }
  677. //---------------------------------------------------------------------------
  678. void __fastcall TConfiguration::BeginUpdate()
  679. {
  680. FCriticalSection->Enter();
  681. if (FUpdating == 0)
  682. {
  683. FChanged = false;
  684. }
  685. FUpdating++;
  686. // Greater value would probably indicate some nesting problem in code
  687. DebugAssert(FUpdating < 6);
  688. }
  689. //---------------------------------------------------------------------------
  690. void __fastcall TConfiguration::EndUpdate()
  691. {
  692. DebugAssert(FUpdating > 0);
  693. FUpdating--;
  694. if ((FUpdating == 0) && FChanged)
  695. {
  696. FChanged = false;
  697. Changed();
  698. }
  699. FCriticalSection->Leave();
  700. }
  701. //---------------------------------------------------------------------------
  702. void __fastcall TConfiguration::CleanupConfiguration()
  703. {
  704. try
  705. {
  706. CleanupRegistry(ConfigurationSubKey);
  707. if (Storage == stRegistry)
  708. {
  709. FDontSave = true;
  710. }
  711. }
  712. catch (Exception &E)
  713. {
  714. throw ExtException(&E, LoadStr(CLEANUP_CONFIG_ERROR));
  715. }
  716. }
  717. //---------------------------------------------------------------------------
  718. bool TConfiguration::RegistryPathExists(const UnicodeString & RegistryPath)
  719. {
  720. std::unique_ptr<TRegistryStorage> Registry(new TRegistryStorage(RegistryStorageKey));
  721. UnicodeString ParentKey = ExtractFileDir(RegistryPath);
  722. UnicodeString SubKey = ExtractFileName(RegistryPath);
  723. return
  724. Registry->OpenRootKey(false) &&
  725. (ParentKey.IsEmpty() ||
  726. Registry->OpenSubKeyPath(ParentKey, false)) &&
  727. Registry->KeyExists(SubKey);
  728. }
  729. //---------------------------------------------------------------------------
  730. void __fastcall TConfiguration::CleanupRegistry(const UnicodeString & RegistryPath)
  731. {
  732. std::unique_ptr<TRegistryStorage> Registry(new TRegistryStorage(RegistryStorageKey));
  733. UnicodeString ParentKey = ExtractFileDir(RegistryPath);
  734. if (ParentKey.IsEmpty() ||
  735. Registry->OpenSubKeyPath(ParentKey, false))
  736. {
  737. UnicodeString SubKey = ExtractFileName(RegistryPath);
  738. Registry->RecursiveDeleteSubKey(SubKey);
  739. }
  740. }
  741. //---------------------------------------------------------------------------
  742. TStrings * TConfiguration::GetCaches()
  743. {
  744. std::unique_ptr<TStrings> Result(new TStringList());
  745. Result->Add(SshHostKeysSubKey);
  746. Result->Add(FtpsCertificateStorageKey);
  747. Result->Add(HttpsCertificateStorageKey);
  748. Result->Add(DirectoryStatisticsCacheKey);
  749. Result->Add(TPath::Combine(ConfigurationSubKey, CDCacheKey));
  750. Result->Add(TPath::Combine(ConfigurationSubKey, BannersKey));
  751. Result->Add(TPath::Combine(ConfigurationSubKey, LastFingerprintsStorageKey));
  752. return Result.release();
  753. }
  754. //---------------------------------------------------------------------------
  755. bool __fastcall TConfiguration::HasAnyCache()
  756. {
  757. bool Result = false;
  758. std::unique_ptr<TStrings> Caches(GetCaches());
  759. for (int Index = 0; Index < Caches->Count; Index++)
  760. {
  761. if (RegistryPathExists(Caches->Strings[Index]))
  762. {
  763. Result = true;
  764. break;
  765. }
  766. }
  767. return Result;
  768. }
  769. //---------------------------------------------------------------------------
  770. void __fastcall TConfiguration::CleanupCaches()
  771. {
  772. try
  773. {
  774. std::unique_ptr<TStrings> Caches(GetCaches());
  775. for (int Index = 0; Index < Caches->Count; Index++)
  776. {
  777. CleanupRegistry(Caches->Strings[Index]);
  778. }
  779. }
  780. catch (Exception & E)
  781. {
  782. throw ExtException(&E, LoadStr(CLEANUP_CACHES_ERROR));
  783. }
  784. }
  785. //---------------------------------------------------------------------------
  786. void __fastcall TConfiguration::CleanupRandomSeedFile()
  787. {
  788. try
  789. {
  790. DontSaveRandomSeed();
  791. if (FileExists(ApiPath(RandomSeedFileName)))
  792. {
  793. DeleteFileChecked(RandomSeedFileName);
  794. }
  795. }
  796. catch (Exception &E)
  797. {
  798. throw ExtException(&E, LoadStr(CLEANUP_SEEDFILE_ERROR));
  799. }
  800. }
  801. //---------------------------------------------------------------------------
  802. void __fastcall TConfiguration::CleanupIniFile()
  803. {
  804. try
  805. {
  806. if (FileExists(ApiPath(IniFileStorageNameForReading)))
  807. {
  808. DeleteFileChecked(IniFileStorageNameForReading);
  809. }
  810. if (Storage == stIniFile)
  811. {
  812. FDontSave = true;
  813. }
  814. }
  815. catch (Exception &E)
  816. {
  817. throw ExtException(&E, LoadStr(CLEANUP_INIFILE_ERROR));
  818. }
  819. }
  820. //---------------------------------------------------------------------------
  821. void __fastcall TConfiguration::DontSave()
  822. {
  823. FDontSave = true;
  824. }
  825. //---------------------------------------------------------------------------
  826. RawByteString __fastcall TConfiguration::EncryptPassword(UnicodeString Password, UnicodeString Key)
  827. {
  828. if (Password.IsEmpty())
  829. {
  830. return RawByteString();
  831. }
  832. else
  833. {
  834. return ::EncryptPassword(Password, Key);
  835. }
  836. }
  837. //---------------------------------------------------------------------------
  838. UnicodeString __fastcall TConfiguration::DecryptPassword(RawByteString Password, UnicodeString Key)
  839. {
  840. if (Password.IsEmpty())
  841. {
  842. return UnicodeString();
  843. }
  844. else
  845. {
  846. return ::DecryptPassword(Password, Key);
  847. }
  848. }
  849. //---------------------------------------------------------------------------
  850. RawByteString __fastcall TConfiguration::StronglyRecryptPassword(RawByteString Password, UnicodeString /*Key*/)
  851. {
  852. return Password;
  853. }
  854. //---------------------------------------------------------------------------
  855. TVSFixedFileInfo *__fastcall TConfiguration::GetFixedApplicationInfo()
  856. {
  857. return GetFixedFileInfo(ApplicationInfo);
  858. }
  859. //---------------------------------------------------------------------------
  860. int __fastcall TConfiguration::GetCompoundVersion()
  861. {
  862. TVSFixedFileInfo * FileInfo = FixedApplicationInfo;
  863. return CalculateCompoundVersion(
  864. HIWORD(FileInfo->dwFileVersionMS), LOWORD(FileInfo->dwFileVersionMS),
  865. HIWORD(FileInfo->dwFileVersionLS));
  866. }
  867. //---------------------------------------------------------------------------
  868. UnicodeString __fastcall TConfiguration::ModuleFileName()
  869. {
  870. return ParamStr(0);
  871. }
  872. //---------------------------------------------------------------------------
  873. void * __fastcall TConfiguration::GetFileApplicationInfo(const UnicodeString FileName)
  874. {
  875. void * Result;
  876. if (FileName.IsEmpty())
  877. {
  878. if (!FApplicationInfo)
  879. {
  880. FApplicationInfo = CreateFileInfo(ModuleFileName());
  881. }
  882. Result = FApplicationInfo;
  883. }
  884. else
  885. {
  886. Result = CreateFileInfo(FileName);
  887. }
  888. return Result;
  889. }
  890. //---------------------------------------------------------------------------
  891. void * __fastcall TConfiguration::GetApplicationInfo()
  892. {
  893. return GetFileApplicationInfo("");
  894. }
  895. //---------------------------------------------------------------------------
  896. UnicodeString __fastcall TConfiguration::GetFileProductName(const UnicodeString FileName)
  897. {
  898. return GetFileFileInfoString(L"ProductName", FileName);
  899. }
  900. //---------------------------------------------------------------------------
  901. UnicodeString __fastcall TConfiguration::GetFileCompanyName(const UnicodeString FileName)
  902. {
  903. // particularly in IDE build, company name is empty
  904. return GetFileFileInfoString(L"CompanyName", FileName, true);
  905. }
  906. //---------------------------------------------------------------------------
  907. UnicodeString __fastcall TConfiguration::GetProductName()
  908. {
  909. return GetFileProductName(L"");
  910. }
  911. //---------------------------------------------------------------------------
  912. UnicodeString __fastcall TConfiguration::GetCompanyName()
  913. {
  914. return GetFileCompanyName(L"");
  915. }
  916. //---------------------------------------------------------------------------
  917. UnicodeString __fastcall TConfiguration::GetFileProductVersion(const UnicodeString FileName)
  918. {
  919. return TrimVersion(GetFileFileInfoString(L"ProductVersion", FileName));
  920. }
  921. //---------------------------------------------------------------------------
  922. UnicodeString __fastcall TConfiguration::GetFileDescription(const UnicodeString & FileName)
  923. {
  924. return GetFileFileInfoString(L"FileDescription", FileName);
  925. }
  926. //---------------------------------------------------------------------------
  927. UnicodeString __fastcall TConfiguration::GetProductVersion()
  928. {
  929. return GetFileProductVersion(L"");
  930. }
  931. //---------------------------------------------------------------------------
  932. UnicodeString __fastcall TConfiguration::GetReleaseType()
  933. {
  934. return GetFileInfoString(L"ReleaseType");
  935. }
  936. //---------------------------------------------------------------------------
  937. bool __fastcall TConfiguration::GetIsUnofficial()
  938. {
  939. #ifdef BUILD_OFFICIAL
  940. return false;
  941. #else
  942. return true;
  943. #endif
  944. }
  945. //---------------------------------------------------------------------------
  946. UnicodeString __fastcall TConfiguration::GetVersionStr()
  947. {
  948. TGuard Guard(FCriticalSection);
  949. try
  950. {
  951. UnicodeString BuildStr;
  952. if (!IsUnofficial)
  953. {
  954. BuildStr = LoadStr(VERSION_BUILD);
  955. }
  956. else
  957. {
  958. #ifdef _DEBUG
  959. BuildStr = LoadStr(VERSION_DEBUG_BUILD);
  960. #else
  961. BuildStr = LoadStr(VERSION_DEV_BUILD);
  962. #endif
  963. }
  964. int Build = LOWORD(FixedApplicationInfo->dwFileVersionLS);
  965. if (Build > 0)
  966. {
  967. BuildStr += L" " + IntToStr(Build);
  968. }
  969. #ifndef BUILD_OFFICIAL
  970. UnicodeString BuildDate = __DATE__;
  971. UnicodeString MonthStr = CutToChar(BuildDate, L' ', true);
  972. int Month = ParseShortEngMonthName(MonthStr);
  973. int Day = StrToInt(CutToChar(BuildDate, L' ', true));
  974. int Year = StrToInt(Trim(BuildDate));
  975. UnicodeString DateStr = FORMAT(L"%d-%2.2d-%2.2d", (Year, Month, Day));
  976. AddToList(BuildStr, DateStr, L" ");
  977. #endif
  978. UnicodeString FullVersion = Version;
  979. UnicodeString AReleaseType = GetReleaseType();
  980. if (DebugAlwaysTrue(!AReleaseType.IsEmpty()) &&
  981. !SameText(AReleaseType, L"stable") &&
  982. !SameText(AReleaseType, L"development"))
  983. {
  984. FullVersion += L" " + AReleaseType;
  985. }
  986. UnicodeString Result = FMTLOAD(VERSION2, (FullVersion, BuildStr));
  987. #ifndef BUILD_OFFICIAL
  988. Result += L" " + LoadStr(VERSION_DONT_DISTRIBUTE);
  989. #endif
  990. return Result;
  991. }
  992. catch (Exception &E)
  993. {
  994. throw ExtException(&E, L"Can't get application version");
  995. }
  996. }
  997. //---------------------------------------------------------------------------
  998. UnicodeString __fastcall TConfiguration::GetFileVersion(const UnicodeString & FileName)
  999. {
  1000. UnicodeString Result;
  1001. void * FileInfo = CreateFileInfo(FileName);
  1002. try
  1003. {
  1004. Result = GetFileVersion(GetFixedFileInfo(FileInfo));
  1005. }
  1006. __finally
  1007. {
  1008. FreeFileInfo(FileInfo);
  1009. }
  1010. return Result;
  1011. }
  1012. //---------------------------------------------------------------------------
  1013. UnicodeString __fastcall TConfiguration::GetFileVersion(TVSFixedFileInfo * Info)
  1014. {
  1015. TGuard Guard(FCriticalSection);
  1016. try
  1017. {
  1018. UnicodeString Result =
  1019. FormatVersion(
  1020. HIWORD(Info->dwFileVersionMS),
  1021. LOWORD(Info->dwFileVersionMS),
  1022. HIWORD(Info->dwFileVersionLS));
  1023. return Result;
  1024. }
  1025. catch (Exception &E)
  1026. {
  1027. throw ExtException(&E, L"Can't get file version");
  1028. }
  1029. }
  1030. //---------------------------------------------------------------------------
  1031. UnicodeString __fastcall TConfiguration::GetVersion()
  1032. {
  1033. return GetFileVersion(FixedApplicationInfo);
  1034. }
  1035. //---------------------------------------------------------------------------
  1036. UnicodeString __fastcall TConfiguration::GetFileFileInfoString(const UnicodeString Key,
  1037. const UnicodeString FileName, bool AllowEmpty)
  1038. {
  1039. TGuard Guard(FCriticalSection);
  1040. UnicodeString Result;
  1041. void * Info = GetFileApplicationInfo(FileName);
  1042. try
  1043. {
  1044. if ((Info != NULL) && (GetTranslationCount(Info) > 0))
  1045. {
  1046. TTranslation Translation;
  1047. Translation = GetTranslation(Info, 0);
  1048. Result = ::GetFileInfoString(Info, Translation, Key, AllowEmpty);
  1049. }
  1050. else
  1051. {
  1052. DebugAssert(!FileName.IsEmpty());
  1053. }
  1054. }
  1055. __finally
  1056. {
  1057. if (!FileName.IsEmpty())
  1058. {
  1059. FreeFileInfo(Info);
  1060. }
  1061. }
  1062. return Result;
  1063. }
  1064. //---------------------------------------------------------------------------
  1065. UnicodeString __fastcall TConfiguration::GetFileInfoString(const UnicodeString Key)
  1066. {
  1067. return GetFileFileInfoString(Key, L"");
  1068. }
  1069. //---------------------------------------------------------------------------
  1070. UnicodeString __fastcall TConfiguration::GetFileMimeType(const UnicodeString & FileName)
  1071. {
  1072. UnicodeString Result;
  1073. bool Found = false;
  1074. if (!MimeTypes.IsEmpty())
  1075. {
  1076. UnicodeString FileNameOnly = ExtractFileName(FileName);
  1077. UnicodeString AMimeTypes = MimeTypes;
  1078. while (!Found && !AMimeTypes.IsEmpty())
  1079. {
  1080. UnicodeString Token = CutToChar(AMimeTypes, L',', true);
  1081. UnicodeString MaskStr = CutToChar(Token, L'=', true);
  1082. TFileMasks Mask(MaskStr);
  1083. if (Mask.Matches(FileNameOnly))
  1084. {
  1085. Result = Token.Trim();
  1086. Found = true;
  1087. }
  1088. }
  1089. }
  1090. if (!Found) // allow an override to "no" Content-Type
  1091. {
  1092. Result = ::GetFileMimeType(FileName);
  1093. }
  1094. return Result;
  1095. }
  1096. //---------------------------------------------------------------------------
  1097. UnicodeString __fastcall TConfiguration::GetRegistryStorageKey()
  1098. {
  1099. return GetRegistryKey();
  1100. }
  1101. //---------------------------------------------------------------------------
  1102. void __fastcall TConfiguration::SetNulStorage()
  1103. {
  1104. FStorage = stNul;
  1105. }
  1106. //---------------------------------------------------------------------------
  1107. void __fastcall TConfiguration::SetDefaultStorage()
  1108. {
  1109. FStorage = stDetect;
  1110. }
  1111. //---------------------------------------------------------------------------
  1112. void __fastcall TConfiguration::SetExplicitIniFileStorageName(const UnicodeString & FileName)
  1113. {
  1114. FIniFileStorageName = FileName;
  1115. FStorage = stIniFile;
  1116. }
  1117. //---------------------------------------------------------------------------
  1118. UnicodeString __fastcall TConfiguration::GetDefaultIniFileExportPath()
  1119. {
  1120. UnicodeString PersonalDirectory = GetPersonalFolder();
  1121. UnicodeString FileName = IncludeTrailingBackslash(PersonalDirectory) +
  1122. ExtractFileName(ExpandEnvironmentVariables(IniFileStorageName));
  1123. return FileName;
  1124. }
  1125. //---------------------------------------------------------------------------
  1126. UnicodeString __fastcall TConfiguration::GetIniFileStorageNameForReading()
  1127. {
  1128. return GetIniFileStorageName(true);
  1129. }
  1130. //---------------------------------------------------------------------------
  1131. UnicodeString __fastcall TConfiguration::GetIniFileStorageNameForReadingWriting()
  1132. {
  1133. return GetIniFileStorageName(false);
  1134. }
  1135. //---------------------------------------------------------------------------
  1136. UnicodeString __fastcall TConfiguration::GetAutomaticIniFileStorageName(bool ReadingOnly)
  1137. {
  1138. UnicodeString ProgramPath = ParamStr(0);
  1139. UnicodeString ProgramIniPath = ChangeFileExt(ProgramPath, L".ini");
  1140. UnicodeString IniPath;
  1141. if (FileExists(ApiPath(ProgramIniPath)))
  1142. {
  1143. IniPath = ProgramIniPath;
  1144. }
  1145. else
  1146. {
  1147. UnicodeString AppDataIniPath =
  1148. IncludeTrailingBackslash(GetShellFolderPath(CSIDL_APPDATA)) +
  1149. ExtractFileName(ProgramIniPath);
  1150. if (FileExists(ApiPath(AppDataIniPath)))
  1151. {
  1152. IniPath = AppDataIniPath;
  1153. }
  1154. else
  1155. {
  1156. // avoid expensive test if we are interested in existing files only
  1157. if (!ReadingOnly && (FProgramIniPathWrittable < 0))
  1158. {
  1159. UnicodeString ProgramDir = ExtractFilePath(ProgramPath);
  1160. FProgramIniPathWrittable = IsDirectoryWriteable(ProgramDir) ? 1 : 0;
  1161. }
  1162. // does not really matter what we return when < 0
  1163. IniPath = (FProgramIniPathWrittable == 0) ? AppDataIniPath : ProgramIniPath;
  1164. }
  1165. }
  1166. // BACKWARD COMPATIBILITY with 4.x
  1167. if (FVirtualIniFileStorageName.IsEmpty() &&
  1168. TPath::IsDriveRooted(IniPath))
  1169. {
  1170. UnicodeString LocalAppDataPath = GetShellFolderPath(CSIDL_LOCAL_APPDATA);
  1171. // virtual store for non-system drives have a different virtual store,
  1172. // do not bother about them
  1173. if (TPath::IsDriveRooted(LocalAppDataPath) &&
  1174. SameText(ExtractFileDrive(IniPath), ExtractFileDrive(LocalAppDataPath)))
  1175. {
  1176. FVirtualIniFileStorageName =
  1177. IncludeTrailingBackslash(LocalAppDataPath) +
  1178. L"VirtualStore\\" +
  1179. IniPath.SubString(4, IniPath.Length() - 3);
  1180. }
  1181. }
  1182. if (!FVirtualIniFileStorageName.IsEmpty() &&
  1183. FileExists(ApiPath(FVirtualIniFileStorageName)))
  1184. {
  1185. return FVirtualIniFileStorageName;
  1186. }
  1187. else
  1188. {
  1189. return IniPath;
  1190. }
  1191. }
  1192. //---------------------------------------------------------------------------
  1193. UnicodeString __fastcall TConfiguration::GetIniFileParamValue()
  1194. {
  1195. UnicodeString Result;
  1196. if (Storage == stNul)
  1197. {
  1198. Result = INI_NUL;
  1199. }
  1200. else if ((Storage == stIniFile) && !FIniFileStorageName.IsEmpty())
  1201. {
  1202. Result = FIniFileStorageName;
  1203. }
  1204. return Result;
  1205. }
  1206. //---------------------------------------------------------------------------
  1207. UnicodeString __fastcall TConfiguration::GetIniFileStorageName(bool ReadingOnly)
  1208. {
  1209. UnicodeString Result;
  1210. if (!FIniFileStorageName.IsEmpty())
  1211. {
  1212. Result = FIniFileStorageName;
  1213. }
  1214. else if (!FCustomIniFileStorageName.IsEmpty())
  1215. {
  1216. Result = FCustomIniFileStorageName;
  1217. }
  1218. else
  1219. {
  1220. Result = GetAutomaticIniFileStorageName(ReadingOnly);
  1221. }
  1222. return Result;
  1223. }
  1224. //---------------------------------------------------------------------------
  1225. void __fastcall TConfiguration::SetOptionsStorage(TStrings * value)
  1226. {
  1227. TGuard Guard(FCriticalSection);
  1228. if (FOptionsStorage.get() == NULL)
  1229. {
  1230. FOptionsStorage.reset(new TStringList());
  1231. }
  1232. FOptionsStorage->AddStrings(value);
  1233. }
  1234. //---------------------------------------------------------------------------
  1235. TStrings * __fastcall TConfiguration::GetOptionsStorage()
  1236. {
  1237. return FOptionsStorage.get();
  1238. }
  1239. //---------------------------------------------------------------------------
  1240. UnicodeString __fastcall TConfiguration::GetPuttySessionsSubKey()
  1241. {
  1242. return StoredSessionsSubKey;
  1243. }
  1244. //---------------------------------------------------------------------------
  1245. UnicodeString __fastcall TConfiguration::GetPuttySessionsKey()
  1246. {
  1247. return PuttyRegistryStorageKey + L"\\" + PuttySessionsSubKey;
  1248. }
  1249. //---------------------------------------------------------------------------
  1250. UnicodeString __fastcall TConfiguration::GetStoredSessionsSubKey()
  1251. {
  1252. return L"Sessions";
  1253. }
  1254. //---------------------------------------------------------------------------
  1255. UnicodeString __fastcall TConfiguration::GetSshHostKeysSubKey()
  1256. {
  1257. return L"SshHostKeys";
  1258. }
  1259. //---------------------------------------------------------------------------
  1260. UnicodeString __fastcall TConfiguration::GetConfigurationSubKey()
  1261. {
  1262. return L"Configuration";
  1263. }
  1264. //---------------------------------------------------------------------------
  1265. UnicodeString __fastcall TConfiguration::GetRootKeyStr()
  1266. {
  1267. return RootKeyToStr(HKEY_CURRENT_USER);
  1268. }
  1269. //---------------------------------------------------------------------------
  1270. void __fastcall TConfiguration::MoveStorage(TStorage AStorage, const UnicodeString & ACustomIniFileStorageName)
  1271. {
  1272. if ((FStorage != AStorage) ||
  1273. ((FStorage == stIniFile) && !FIniFileStorageName.IsEmpty()) ||
  1274. !IsPathToSameFile(FCustomIniFileStorageName, ACustomIniFileStorageName))
  1275. {
  1276. TStorage StorageBak = FStorage;
  1277. UnicodeString CustomIniFileStorageNameBak = FCustomIniFileStorageName;
  1278. UnicodeString IniFileStorageNameBak = FIniFileStorageName;
  1279. try
  1280. {
  1281. THierarchicalStorage * SourceStorage = NULL;
  1282. THierarchicalStorage * TargetStorage = NULL;
  1283. try
  1284. {
  1285. SourceStorage = CreateConfigStorage();
  1286. SourceStorage->AccessMode = smRead;
  1287. FStorage = AStorage;
  1288. FCustomIniFileStorageName = ACustomIniFileStorageName;
  1289. FIniFileStorageName = UnicodeString();
  1290. TargetStorage = CreateConfigStorage();
  1291. TargetStorage->AccessMode = smReadWrite;
  1292. TargetStorage->Explicit = true;
  1293. // copy before save as it removes the ini file,
  1294. // when switching from ini to registry
  1295. CopyData(SourceStorage, TargetStorage);
  1296. }
  1297. __finally
  1298. {
  1299. delete SourceStorage;
  1300. delete TargetStorage;
  1301. }
  1302. // save all and explicit,
  1303. // this also removes an INI file, when switching to registry storage
  1304. DoSave(true, true);
  1305. }
  1306. catch (...)
  1307. {
  1308. // If this fails, do not pretend that storage was switched.
  1309. // For instance:
  1310. // - When writing to an INI file fails (unlikely, as we fallback to user profile)
  1311. // - When removing INI file fails, when switching to registry
  1312. // (possible, when the INI file is in Program Files folder)
  1313. FStorage = StorageBak;
  1314. FCustomIniFileStorageName = CustomIniFileStorageNameBak;
  1315. FIniFileStorageName = IniFileStorageNameBak;
  1316. throw;
  1317. }
  1318. }
  1319. }
  1320. //---------------------------------------------------------------------------
  1321. void __fastcall TConfiguration::ScheduleCustomIniFileStorageUse(const UnicodeString & ACustomIniFileStorageName)
  1322. {
  1323. FStorage = stIniFile;
  1324. FCustomIniFileStorageName = ACustomIniFileStorageName;
  1325. SaveCustomIniFileStorageName();
  1326. }
  1327. //---------------------------------------------------------------------------
  1328. void __fastcall TConfiguration::Saved()
  1329. {
  1330. // nothing
  1331. }
  1332. //---------------------------------------------------------------------------
  1333. TStorage __fastcall TConfiguration::GetStorage()
  1334. {
  1335. TGuard Guard(FCriticalSection);
  1336. if (FStorage == stDetect)
  1337. {
  1338. if (FileExists(ApiPath(IniFileStorageNameForReading)))
  1339. {
  1340. FStorage = stIniFile;
  1341. }
  1342. else
  1343. {
  1344. FStorage = stRegistry;
  1345. }
  1346. }
  1347. return FStorage;
  1348. }
  1349. //---------------------------------------------------------------------
  1350. static TStoredSessionList * CreateSessionsForImport(TStoredSessionList * Sessions)
  1351. {
  1352. std::unique_ptr<TStoredSessionList> Result(new TStoredSessionList(true));
  1353. Result->DefaultSettings = Sessions->DefaultSettings;
  1354. return Result.release();
  1355. }
  1356. //---------------------------------------------------------------------
  1357. TStoredSessionList * __fastcall TConfiguration::SelectFilezillaSessionsForImport(
  1358. TStoredSessionList * Sessions, UnicodeString & Error)
  1359. {
  1360. std::unique_ptr<TStoredSessionList> ImportSessionList(CreateSessionsForImport(Sessions));
  1361. UnicodeString AppDataPath = GetShellFolderPath(CSIDL_APPDATA);
  1362. UnicodeString FilezillaSiteManagerFile = TPath::Combine(AppDataPath, L"FileZilla\\sitemanager.xml");
  1363. UnicodeString FilezillaConfigurationFile = TPath::Combine(AppDataPath, L"FileZilla\\filezilla.xml");
  1364. if (FileExists(ApiPath(FilezillaSiteManagerFile)))
  1365. {
  1366. ImportSessionList->ImportFromFilezilla(FilezillaSiteManagerFile, FilezillaConfigurationFile);
  1367. if (ImportSessionList->Count > 0)
  1368. {
  1369. ImportSessionList->SelectSessionsToImport(Sessions, true);
  1370. }
  1371. else
  1372. {
  1373. Error = FMTLOAD(FILEZILLA_NO_SITES, (FilezillaSiteManagerFile));
  1374. }
  1375. }
  1376. else
  1377. {
  1378. Error = FMTLOAD(FILEZILLA_SITE_MANAGER_NOT_FOUND, (FilezillaSiteManagerFile));
  1379. }
  1380. return ImportSessionList.release();
  1381. }
  1382. //---------------------------------------------------------------------
  1383. bool __fastcall TConfiguration::AnyFilezillaSessionForImport(TStoredSessionList * Sessions)
  1384. {
  1385. try
  1386. {
  1387. UnicodeString Error;
  1388. std::unique_ptr<TStoredSessionList> Sesssions(SelectFilezillaSessionsForImport(Sessions, Error));
  1389. return (Sesssions->Count > 0);
  1390. }
  1391. catch (...)
  1392. {
  1393. return false;
  1394. }
  1395. }
  1396. //---------------------------------------------------------------------
  1397. static UnicodeString GetOpensshFolder()
  1398. {
  1399. UnicodeString ProfilePath = GetShellFolderPath(CSIDL_PROFILE);
  1400. UnicodeString Result = TPath::Combine(ProfilePath, L".ssh");
  1401. return Result;
  1402. }
  1403. //---------------------------------------------------------------------
  1404. TStoredSessionList * __fastcall TConfiguration::SelectKnownHostsSessionsForImport(
  1405. TStoredSessionList * Sessions, UnicodeString & Error)
  1406. {
  1407. std::unique_ptr<TStoredSessionList> ImportSessionList(CreateSessionsForImport(Sessions));
  1408. UnicodeString KnownHostsFile = TPath::Combine(GetOpensshFolder(), L"known_hosts");
  1409. try
  1410. {
  1411. if (FileExists(ApiPath(KnownHostsFile)))
  1412. {
  1413. std::unique_ptr<TStrings> Lines(new TStringList());
  1414. LoadScriptFromFile(KnownHostsFile, Lines.get(), true);
  1415. ImportSessionList->ImportFromKnownHosts(Lines.get());
  1416. }
  1417. else
  1418. {
  1419. throw Exception(LoadStr(KNOWN_HOSTS_NOT_FOUND));
  1420. }
  1421. }
  1422. catch (Exception & E)
  1423. {
  1424. Error = FORMAT(L"%s\n(%s)", (E.Message, KnownHostsFile));
  1425. }
  1426. return ImportSessionList.release();
  1427. }
  1428. //---------------------------------------------------------------------
  1429. TStoredSessionList * __fastcall TConfiguration::SelectKnownHostsSessionsForImport(
  1430. TStrings * Lines, TStoredSessionList * Sessions, UnicodeString & Error)
  1431. {
  1432. std::unique_ptr<TStoredSessionList> ImportSessionList(CreateSessionsForImport(Sessions));
  1433. try
  1434. {
  1435. ImportSessionList->ImportFromKnownHosts(Lines);
  1436. }
  1437. catch (Exception & E)
  1438. {
  1439. Error = E.Message;
  1440. }
  1441. return ImportSessionList.release();
  1442. }
  1443. //---------------------------------------------------------------------------
  1444. TStoredSessionList * TConfiguration::SelectOpensshSessionsForImport(
  1445. TStoredSessionList * Sessions, UnicodeString & Error)
  1446. {
  1447. std::unique_ptr<TStoredSessionList> ImportSessionList(CreateSessionsForImport(Sessions));
  1448. UnicodeString ConfigFile = TPath::Combine(GetOpensshFolder(), L"config");
  1449. try
  1450. {
  1451. if (FileExists(ApiPath(ConfigFile)))
  1452. {
  1453. std::unique_ptr<TStrings> Lines(new TStringList());
  1454. LoadScriptFromFile(ConfigFile, Lines.get(), true);
  1455. ImportSessionList->ImportFromOpenssh(Lines.get());
  1456. if (ImportSessionList->Count > 0)
  1457. {
  1458. ImportSessionList->SelectSessionsToImport(Sessions, true);
  1459. }
  1460. else
  1461. {
  1462. throw Exception(LoadStr(OPENSSH_CONFIG_NO_SITES));
  1463. }
  1464. }
  1465. else
  1466. {
  1467. throw Exception(LoadStr(OPENSSH_CONFIG_NOT_FOUND));
  1468. }
  1469. }
  1470. catch (Exception & E)
  1471. {
  1472. Error = FORMAT(L"%s\n(%s)", (E.Message, ConfigFile));
  1473. }
  1474. return ImportSessionList.release();
  1475. }
  1476. //---------------------------------------------------------------------------
  1477. void __fastcall TConfiguration::SetRandomSeedFile(UnicodeString value)
  1478. {
  1479. if (RandomSeedFile != value)
  1480. {
  1481. UnicodeString PrevRandomSeedFileName = RandomSeedFileName;
  1482. FRandomSeedFile = value;
  1483. // never allow empty seed file to avoid Putty trying to reinitialize the path
  1484. if (RandomSeedFileName.IsEmpty())
  1485. {
  1486. FRandomSeedFile = FDefaultRandomSeedFile;
  1487. }
  1488. if (!PrevRandomSeedFileName.IsEmpty() &&
  1489. (PrevRandomSeedFileName != RandomSeedFileName) &&
  1490. FileExists(ApiPath(PrevRandomSeedFileName)))
  1491. {
  1492. // ignore any error
  1493. DeleteFile(ApiPath(PrevRandomSeedFileName));
  1494. }
  1495. }
  1496. }
  1497. //---------------------------------------------------------------------------
  1498. UnicodeString __fastcall TConfiguration::GetDirectoryStatisticsCacheKey(
  1499. const UnicodeString & SessionKey, const UnicodeString & Path, const TCopyParamType & CopyParam)
  1500. {
  1501. std::unique_ptr<TStringList> RawOptions(new TStringList());
  1502. RawOptions->Add(SessionKey);
  1503. RawOptions->Add(UnixExcludeTrailingBackslash(Path));
  1504. TCopyParamType Defaults;
  1505. TCopyParamType FilterCopyParam;
  1506. FilterCopyParam.IncludeFileMask = CopyParam.IncludeFileMask;
  1507. FilterCopyParam.ExcludeHiddenFiles = CopyParam.ExcludeHiddenFiles;
  1508. FilterCopyParam.ExcludeEmptyDirectories = CopyParam.ExcludeEmptyDirectories;
  1509. std::unique_ptr<TOptionsStorage> OptionsStorage(new TOptionsStorage(RawOptions.get(), true));
  1510. FilterCopyParam.Save(OptionsStorage.get(), &Defaults);
  1511. UTF8String RawOptionsBuf(RawOptions->CommaText.LowerCase());
  1512. UnicodeString Result = Sha256(RawOptionsBuf.c_str(), RawOptionsBuf.Length());
  1513. return Result;
  1514. }
  1515. //---------------------------------------------------------------------------
  1516. THierarchicalStorage * TConfiguration::OpenDirectoryStatisticsCache(bool CanCreate)
  1517. {
  1518. std::unique_ptr<THierarchicalStorage> Storage(Configuration->CreateConfigStorage());
  1519. Storage->AccessMode = CanCreate ? smReadWrite : smRead;
  1520. if (!Storage->OpenSubKey(DirectoryStatisticsCacheKey, CanCreate))
  1521. {
  1522. Storage.reset(NULL);
  1523. }
  1524. return Storage.release();
  1525. }
  1526. //---------------------------------------------------------------------------
  1527. TStrings * __fastcall TConfiguration::LoadDirectoryStatisticsCache(
  1528. const UnicodeString & SessionKey, const UnicodeString & Path, const TCopyParamType & CopyParam)
  1529. {
  1530. std::unique_ptr<THierarchicalStorage> Storage(OpenDirectoryStatisticsCache(false));
  1531. std::unique_ptr<TStringList> Result(new TStringList());
  1532. if (Storage.get() != NULL)
  1533. {
  1534. UnicodeString Key = GetDirectoryStatisticsCacheKey(SessionKey, Path, CopyParam);
  1535. UnicodeString Buf = Storage->ReadString(Key, UnicodeString());
  1536. Result->CommaText = Buf;
  1537. }
  1538. return Result.release();
  1539. }
  1540. //---------------------------------------------------------------------------
  1541. void __fastcall TConfiguration::SaveDirectoryStatisticsCache(
  1542. const UnicodeString & SessionKey, const UnicodeString & Path, const TCopyParamType & CopyParam, TStrings * DataList)
  1543. {
  1544. std::unique_ptr<THierarchicalStorage> Storage(OpenDirectoryStatisticsCache(true));
  1545. if (Storage.get() != NULL)
  1546. {
  1547. UnicodeString Key = GetDirectoryStatisticsCacheKey(SessionKey, Path, CopyParam);
  1548. UnicodeString Buf = DataList->CommaText;
  1549. Storage->WriteString(Key, Buf);
  1550. }
  1551. }
  1552. //---------------------------------------------------------------------
  1553. UnicodeString __fastcall TConfiguration::GetRandomSeedFileName()
  1554. {
  1555. // StripPathQuotes should not be needed as we do not feed quotes anymore
  1556. return StripPathQuotes(ExpandEnvironmentVariables(FRandomSeedFile)).Trim();
  1557. }
  1558. //---------------------------------------------------------------------
  1559. void __fastcall TConfiguration::SetExternalIpAddress(UnicodeString value)
  1560. {
  1561. SET_CONFIG_PROPERTY(ExternalIpAddress);
  1562. }
  1563. //---------------------------------------------------------------------
  1564. bool TConfiguration::HasLocalPortNumberLimits()
  1565. {
  1566. return (LocalPortNumberMin > 0) && (LocalPortNumberMax >= LocalPortNumberMin);
  1567. }
  1568. //---------------------------------------------------------------------
  1569. void TConfiguration::SetLocalPortNumberMin(int value)
  1570. {
  1571. SET_CONFIG_PROPERTY(LocalPortNumberMin);
  1572. }
  1573. //---------------------------------------------------------------------
  1574. void TConfiguration::SetLocalPortNumberMax(int value)
  1575. {
  1576. SET_CONFIG_PROPERTY(LocalPortNumberMax);
  1577. }
  1578. //---------------------------------------------------------------------
  1579. void __fastcall TConfiguration::SetMimeTypes(UnicodeString value)
  1580. {
  1581. SET_CONFIG_PROPERTY(MimeTypes);
  1582. }
  1583. //---------------------------------------------------------------------
  1584. void __fastcall TConfiguration::SetTryFtpWhenSshFails(bool value)
  1585. {
  1586. SET_CONFIG_PROPERTY(TryFtpWhenSshFails);
  1587. }
  1588. //---------------------------------------------------------------------
  1589. void __fastcall TConfiguration::SetParallelDurationThreshold(int value)
  1590. {
  1591. SET_CONFIG_PROPERTY(ParallelDurationThreshold);
  1592. }
  1593. //---------------------------------------------------------------------
  1594. void __fastcall TConfiguration::SetPuttyRegistryStorageKey(UnicodeString value)
  1595. {
  1596. SET_CONFIG_PROPERTY(PuttyRegistryStorageKey);
  1597. }
  1598. //---------------------------------------------------------------------------
  1599. TEOLType __fastcall TConfiguration::GetLocalEOLType()
  1600. {
  1601. return eolCRLF;
  1602. }
  1603. //---------------------------------------------------------------------
  1604. bool __fastcall TConfiguration::GetCollectUsage()
  1605. {
  1606. return FUsage->Collect;
  1607. }
  1608. //---------------------------------------------------------------------
  1609. void __fastcall TConfiguration::SetCollectUsage(bool value)
  1610. {
  1611. FUsage->Collect = value;
  1612. }
  1613. //---------------------------------------------------------------------
  1614. void __fastcall TConfiguration::TemporaryLogging(const UnicodeString ALogFileName)
  1615. {
  1616. if (SameText(ExtractFileExt(ALogFileName), L".xml"))
  1617. {
  1618. TemporaryActionsLogging(ALogFileName);
  1619. }
  1620. else
  1621. {
  1622. FLogging = true;
  1623. FLogFileName = ALogFileName;
  1624. UpdateActualLogProtocol();
  1625. }
  1626. }
  1627. //---------------------------------------------------------------------
  1628. void __fastcall TConfiguration::TemporaryActionsLogging(const UnicodeString ALogFileName)
  1629. {
  1630. FLogActions = true;
  1631. FActionsLogFileName = ALogFileName;
  1632. }
  1633. //---------------------------------------------------------------------
  1634. void __fastcall TConfiguration::TemporaryLogProtocol(int ALogProtocol)
  1635. {
  1636. FLogProtocol = ALogProtocol;
  1637. UpdateActualLogProtocol();
  1638. }
  1639. //---------------------------------------------------------------------
  1640. void __fastcall TConfiguration::TemporaryLogSensitive(bool ALogSensitive)
  1641. {
  1642. FLogSensitive = ALogSensitive;
  1643. }
  1644. //---------------------------------------------------------------------
  1645. void __fastcall TConfiguration::TemporaryLogMaxSize(__int64 ALogMaxSize)
  1646. {
  1647. FLogMaxSize = ALogMaxSize;
  1648. }
  1649. //---------------------------------------------------------------------
  1650. void __fastcall TConfiguration::TemporaryLogMaxCount(int ALogMaxCount)
  1651. {
  1652. FLogMaxCount = ALogMaxCount;
  1653. }
  1654. //---------------------------------------------------------------------
  1655. void __fastcall TConfiguration::SetLogging(bool value)
  1656. {
  1657. TGuard Guard(FCriticalSection);
  1658. if (Logging != value)
  1659. {
  1660. FPermanentLogging = value;
  1661. FLogging = value;
  1662. UpdateActualLogProtocol();
  1663. Changed();
  1664. }
  1665. }
  1666. //---------------------------------------------------------------------
  1667. bool __fastcall TConfiguration::GetLogging()
  1668. {
  1669. TGuard Guard(FCriticalSection);
  1670. return FPermanentLogging;
  1671. }
  1672. //---------------------------------------------------------------------
  1673. void __fastcall TConfiguration::SetLogFileName(UnicodeString value)
  1674. {
  1675. TGuard Guard(FCriticalSection);
  1676. if (LogFileName != value)
  1677. {
  1678. FPermanentLogFileName = value;
  1679. FLogFileName = value;
  1680. Changed();
  1681. }
  1682. }
  1683. //---------------------------------------------------------------------
  1684. UnicodeString __fastcall TConfiguration::GetLogFileName()
  1685. {
  1686. TGuard Guard(FCriticalSection);
  1687. return FPermanentLogFileName;
  1688. }
  1689. //---------------------------------------------------------------------
  1690. void __fastcall TConfiguration::SetActionsLogFileName(UnicodeString value)
  1691. {
  1692. TGuard Guard(FCriticalSection);
  1693. if (ActionsLogFileName != value)
  1694. {
  1695. FPermanentActionsLogFileName = value;
  1696. FActionsLogFileName = value;
  1697. Changed();
  1698. }
  1699. }
  1700. //---------------------------------------------------------------------
  1701. UnicodeString __fastcall TConfiguration::GetPermanentActionsLogFileName()
  1702. {
  1703. TGuard Guard(FCriticalSection);
  1704. return FPermanentActionsLogFileName;
  1705. }
  1706. //---------------------------------------------------------------------
  1707. UnicodeString __fastcall TConfiguration::GetActionsLogFileName()
  1708. {
  1709. TGuard Guard(FCriticalSection);
  1710. return FActionsLogFileName;
  1711. }
  1712. //---------------------------------------------------------------------
  1713. bool __fastcall TConfiguration::GetLogToFile()
  1714. {
  1715. // guarded within GetLogFileName
  1716. return !LogFileName.IsEmpty();
  1717. }
  1718. //---------------------------------------------------------------------
  1719. void __fastcall TConfiguration::UpdateActualLogProtocol()
  1720. {
  1721. FActualLogProtocol = FLogging ? FLogProtocol : (-BelowNormalLogLevels - 1);
  1722. }
  1723. //---------------------------------------------------------------------
  1724. void __fastcall TConfiguration::SetLogProtocol(int value)
  1725. {
  1726. TGuard Guard(FCriticalSection);
  1727. if (LogProtocol != value)
  1728. {
  1729. FPermanentLogProtocol = value;
  1730. FLogProtocol = value;
  1731. Changed();
  1732. UpdateActualLogProtocol();
  1733. }
  1734. }
  1735. //---------------------------------------------------------------------
  1736. void __fastcall TConfiguration::SetLogActions(bool value)
  1737. {
  1738. TGuard Guard(FCriticalSection);
  1739. if (LogActions != value)
  1740. {
  1741. FPermanentLogActions = value;
  1742. FLogActions = value;
  1743. Changed();
  1744. }
  1745. }
  1746. //---------------------------------------------------------------------
  1747. bool __fastcall TConfiguration::GetLogActions()
  1748. {
  1749. TGuard Guard(FCriticalSection);
  1750. return FPermanentLogActions;
  1751. }
  1752. //---------------------------------------------------------------------
  1753. void __fastcall TConfiguration::SetLogFileAppend(bool value)
  1754. {
  1755. SET_CONFIG_PROPERTY(LogFileAppend);
  1756. }
  1757. //---------------------------------------------------------------------
  1758. void __fastcall TConfiguration::SetLogSensitive(bool value)
  1759. {
  1760. if (LogSensitive != value)
  1761. {
  1762. FPermanentLogSensitive = value;
  1763. FLogSensitive = value;
  1764. Changed();
  1765. }
  1766. }
  1767. //---------------------------------------------------------------------
  1768. void __fastcall TConfiguration::SetLogMaxSize(__int64 value)
  1769. {
  1770. TGuard Guard(FCriticalSection);
  1771. if (LogMaxSize != value)
  1772. {
  1773. FPermanentLogMaxSize = value;
  1774. FLogMaxSize = value;
  1775. Changed();
  1776. }
  1777. }
  1778. //---------------------------------------------------------------------
  1779. __int64 __fastcall TConfiguration::GetLogMaxSize()
  1780. {
  1781. TGuard Guard(FCriticalSection);
  1782. return FPermanentLogMaxSize;
  1783. }
  1784. //---------------------------------------------------------------------
  1785. void __fastcall TConfiguration::SetLogMaxCount(int value)
  1786. {
  1787. if (LogMaxCount != value)
  1788. {
  1789. FPermanentLogMaxCount = value;
  1790. FLogMaxCount = value;
  1791. Changed();
  1792. }
  1793. }
  1794. //---------------------------------------------------------------------
  1795. int __fastcall TConfiguration::GetLogMaxCount()
  1796. {
  1797. TGuard Guard(FCriticalSection);
  1798. return FPermanentLogMaxCount;
  1799. }
  1800. //---------------------------------------------------------------------
  1801. UnicodeString __fastcall TConfiguration::GetDefaultLogFileName()
  1802. {
  1803. return L"%TEMP%\\!S.log";
  1804. }
  1805. //---------------------------------------------------------------------------
  1806. void __fastcall TConfiguration::SetConfirmOverwriting(bool value)
  1807. {
  1808. TGuard Guard(FCriticalSection);
  1809. SET_CONFIG_PROPERTY(ConfirmOverwriting);
  1810. }
  1811. //---------------------------------------------------------------------------
  1812. bool __fastcall TConfiguration::GetConfirmOverwriting()
  1813. {
  1814. TGuard Guard(FCriticalSection);
  1815. return FConfirmOverwriting;
  1816. }
  1817. //---------------------------------------------------------------------------
  1818. void __fastcall TConfiguration::SetConfirmResume(bool value)
  1819. {
  1820. TGuard Guard(FCriticalSection);
  1821. SET_CONFIG_PROPERTY(ConfirmResume);
  1822. }
  1823. //---------------------------------------------------------------------------
  1824. bool __fastcall TConfiguration::GetConfirmResume()
  1825. {
  1826. TGuard Guard(FCriticalSection);
  1827. return FConfirmResume;
  1828. }
  1829. //---------------------------------------------------------------------------
  1830. void __fastcall TConfiguration::SetAutoReadDirectoryAfterOp(bool value)
  1831. {
  1832. TGuard Guard(FCriticalSection);
  1833. SET_CONFIG_PROPERTY(AutoReadDirectoryAfterOp);
  1834. }
  1835. //---------------------------------------------------------------------------
  1836. bool __fastcall TConfiguration::GetAutoReadDirectoryAfterOp()
  1837. {
  1838. TGuard Guard(FCriticalSection);
  1839. return FAutoReadDirectoryAfterOp;
  1840. }
  1841. //---------------------------------------------------------------------------
  1842. UnicodeString __fastcall TConfiguration::GetTimeFormat()
  1843. {
  1844. return L"h:nn:ss";
  1845. }
  1846. //---------------------------------------------------------------------------
  1847. UnicodeString __fastcall TConfiguration::GetPartialExt() const
  1848. {
  1849. return PARTIAL_EXT;
  1850. }
  1851. //---------------------------------------------------------------------------
  1852. UnicodeString __fastcall TConfiguration::GetDefaultKeyFile()
  1853. {
  1854. return L"";
  1855. }
  1856. //---------------------------------------------------------------------------
  1857. bool __fastcall TConfiguration::GetRememberPassword()
  1858. {
  1859. return false;
  1860. }
  1861. //---------------------------------------------------------------------------
  1862. void __fastcall TConfiguration::SetSessionReopenAuto(int value)
  1863. {
  1864. SET_CONFIG_PROPERTY(SessionReopenAuto);
  1865. }
  1866. //---------------------------------------------------------------------------
  1867. void __fastcall TConfiguration::SetSessionReopenBackground(int value)
  1868. {
  1869. SET_CONFIG_PROPERTY(SessionReopenBackground);
  1870. }
  1871. //---------------------------------------------------------------------------
  1872. void __fastcall TConfiguration::SetSessionReopenTimeout(int value)
  1873. {
  1874. SET_CONFIG_PROPERTY(SessionReopenTimeout);
  1875. }
  1876. //---------------------------------------------------------------------------
  1877. void __fastcall TConfiguration::SetSessionReopenAutoStall(int value)
  1878. {
  1879. SET_CONFIG_PROPERTY(SessionReopenAutoStall);
  1880. }
  1881. //---------------------------------------------------------------------------
  1882. void __fastcall TConfiguration::SetTunnelLocalPortNumberLow(int value)
  1883. {
  1884. SET_CONFIG_PROPERTY(TunnelLocalPortNumberLow);
  1885. }
  1886. //---------------------------------------------------------------------------
  1887. void __fastcall TConfiguration::SetTunnelLocalPortNumberHigh(int value)
  1888. {
  1889. SET_CONFIG_PROPERTY(TunnelLocalPortNumberHigh);
  1890. }
  1891. //---------------------------------------------------------------------------
  1892. void __fastcall TConfiguration::SetCacheDirectoryChangesMaxSize(int value)
  1893. {
  1894. SET_CONFIG_PROPERTY(CacheDirectoryChangesMaxSize);
  1895. }
  1896. //---------------------------------------------------------------------------
  1897. void __fastcall TConfiguration::SetShowFtpWelcomeMessage(bool value)
  1898. {
  1899. SET_CONFIG_PROPERTY(ShowFtpWelcomeMessage);
  1900. }
  1901. //---------------------------------------------------------------------------
  1902. bool __fastcall TConfiguration::GetPersistent()
  1903. {
  1904. return (Storage != stNul) && !FDontSave;
  1905. }
  1906. //---------------------------------------------------------------------------
  1907. //---------------------------------------------------------------------------
  1908. void __fastcall TShortCuts::Add(TShortCut ShortCut)
  1909. {
  1910. FShortCuts.insert(ShortCut);
  1911. }
  1912. //---------------------------------------------------------------------------
  1913. bool __fastcall TShortCuts::Has(TShortCut ShortCut) const
  1914. {
  1915. return (FShortCuts.count(ShortCut) != 0);
  1916. }