Configuration.cpp 66 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022
  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 UnicodeString OpensshFolderName(L".ssh");
  45. const UnicodeString OpensshAuthorizedKeysFileName(L"authorized_keys");
  46. //---------------------------------------------------------------------------
  47. const int BelowNormalLogLevels = 1;
  48. //---------------------------------------------------------------------------
  49. __fastcall TConfiguration::TConfiguration()
  50. {
  51. FCriticalSection = new TCriticalSection();
  52. FUpdating = 0;
  53. FStorage = stDetect;
  54. FDontSave = false;
  55. FForceSave = false;
  56. FApplicationInfo = NULL;
  57. FUsage = new TUsage(this);
  58. FDefaultCollectUsage = false;
  59. FScripting = false;
  60. UnicodeString RandomSeedPath;
  61. if (!GetEnvironmentVariable(L"APPDATA").IsEmpty())
  62. {
  63. RandomSeedPath = L"%APPDATA%";
  64. }
  65. else
  66. {
  67. RandomSeedPath = GetShellFolderPath(CSIDL_LOCAL_APPDATA);
  68. if (RandomSeedPath.IsEmpty())
  69. {
  70. RandomSeedPath = GetShellFolderPath(CSIDL_APPDATA);
  71. }
  72. }
  73. FDefaultRandomSeedFile = IncludeTrailingBackslash(RandomSeedPath) + L"winscp.rnd";
  74. }
  75. //---------------------------------------------------------------------------
  76. void __fastcall TConfiguration::Default()
  77. {
  78. TGuard Guard(FCriticalSection);
  79. FDisablePasswordStoring = false;
  80. FForceBanners = false;
  81. FDisableAcceptingHostKeys = false;
  82. TRegistryStorage * AdminStorage;
  83. AdminStorage = new TRegistryStorage(RegistryStorageKey, HKEY_LOCAL_MACHINE);
  84. try
  85. {
  86. if (AdminStorage->OpenRootKey(false))
  87. {
  88. LoadAdmin(AdminStorage);
  89. AdminStorage->CloseSubKey();
  90. }
  91. }
  92. __finally
  93. {
  94. delete AdminStorage;
  95. }
  96. RandomSeedFile = FDefaultRandomSeedFile;
  97. PuttyRegistryStorageKey = OriginalPuttyRegistryStorageKey;
  98. FConfirmOverwriting = true;
  99. FConfirmResume = true;
  100. FAutoReadDirectoryAfterOp = true;
  101. FSessionReopenAuto = 5000;
  102. FSessionReopenBackground = 2000;
  103. FSessionReopenTimeout = 0;
  104. FSessionReopenAutoStall = 60000;
  105. FTunnelLocalPortNumberLow = 50000;
  106. FTunnelLocalPortNumberHigh = 50099;
  107. FCacheDirectoryChangesMaxSize = 100;
  108. FShowFtpWelcomeMessage = false;
  109. FExternalIpAddress = L"";
  110. FLocalPortNumberMin = 0;
  111. FLocalPortNumberMax = 0;
  112. FTryFtpWhenSshFails = true;
  113. FParallelDurationThreshold = 10;
  114. FMimeTypes = UnicodeString();
  115. FCertificateStorage = EmptyStr;
  116. FDontReloadMoreThanSessions = 1000;
  117. FScriptProgressFileNameLimit = 25;
  118. FKeyVersion = 0;
  119. CollectUsage = FDefaultCollectUsage;
  120. FLogging = false;
  121. FPermanentLogging = false;
  122. FLogFileName = DefaultLogFileName;
  123. FPermanentLogFileName = FLogFileName;
  124. FLogFileAppend = true;
  125. FLogSensitive = false;
  126. FPermanentLogSensitive = FLogSensitive;
  127. FLogMaxSize = 0;
  128. FPermanentLogMaxSize = FLogMaxSize;
  129. FLogMaxCount = 0;
  130. FPermanentLogMaxCount = FLogMaxCount;
  131. FLogProtocol = 0;
  132. FPermanentLogProtocol = FLogProtocol;
  133. UpdateActualLogProtocol();
  134. FLogActions = false;
  135. FPermanentLogActions = false;
  136. FLogActionsRequired = false;
  137. FActionsLogFileName = L"%TEMP%\\!S.xml";
  138. FPermanentActionsLogFileName = FActionsLogFileName;
  139. FProgramIniPathWrittable = -1;
  140. FCustomIniFileStorageName = LoadCustomIniFileStorageName();
  141. Changed();
  142. }
  143. //---------------------------------------------------------------------------
  144. __fastcall TConfiguration::~TConfiguration()
  145. {
  146. DebugAssert(!FUpdating);
  147. if (FApplicationInfo) FreeFileInfo(FApplicationInfo);
  148. delete FCriticalSection;
  149. delete FUsage;
  150. }
  151. //---------------------------------------------------------------------------
  152. void __fastcall TConfiguration::UpdateStaticUsage()
  153. {
  154. Usage->Set(L"ConfigurationIniFile", (Storage == stIniFile));
  155. Usage->Set(L"ConfigurationIniFileCustom", !CustomIniFileStorageName.IsEmpty());
  156. Usage->Set("Unofficial", IsUnofficial);
  157. // this is called from here, because we are guarded from calling into
  158. // master password handler here, see TWinConfiguration::UpdateStaticUsage
  159. StoredSessions->UpdateStaticUsage();
  160. }
  161. //---------------------------------------------------------------------------
  162. THierarchicalStorage * TConfiguration::CreateConfigStorage()
  163. {
  164. bool SessionList = false;
  165. return CreateScpStorage(SessionList);
  166. }
  167. //---------------------------------------------------------------------------
  168. THierarchicalStorage * TConfiguration::CreateConfigRegistryStorage()
  169. {
  170. return new TRegistryStorage(RegistryStorageKey);
  171. }
  172. //---------------------------------------------------------------------------
  173. THierarchicalStorage * TConfiguration::CreateScpStorage(bool & SessionList)
  174. {
  175. TGuard Guard(FCriticalSection);
  176. THierarchicalStorage * Result;
  177. if (Storage == stRegistry)
  178. {
  179. Result = CreateConfigRegistryStorage();
  180. }
  181. else if (Storage == stNul)
  182. {
  183. Result = TIniFileStorage::CreateFromPath(INI_NUL);
  184. }
  185. else
  186. {
  187. UnicodeString StorageName = IniFileStorageName;
  188. Result = TIniFileStorage::CreateFromPath(StorageName);
  189. }
  190. if ((FOptionsStorage.get() != NULL) && (FOptionsStorage->Count > 0))
  191. {
  192. if (!SessionList)
  193. {
  194. Result = new TOptionsStorage(FOptionsStorage.get(), ConfigurationSubKey, Result);
  195. }
  196. else
  197. {
  198. // cannot reuse session list storage for configuration as for it we need
  199. // the option-override storage above
  200. }
  201. }
  202. else
  203. {
  204. // All the above stores can be reused for configuration,
  205. // if no options-overrides are set
  206. SessionList = false;
  207. }
  208. return Result;
  209. }
  210. //---------------------------------------------------------------------------
  211. UnicodeString __fastcall TConfiguration::PropertyToKey(const UnicodeString & Property)
  212. {
  213. // no longer useful
  214. int P = Property.LastDelimiter(L".>");
  215. UnicodeString Result = Property.SubString(P + 1, Property.Length() - P);
  216. if ((Result[1] == L'F') && ((wchar_t)toupper(Result[2]) == Result[2]))
  217. {
  218. Result.Delete(1, 1);
  219. }
  220. return Result;
  221. }
  222. //---------------------------------------------------------------------------
  223. #define BLOCK(KEY, CANCREATE, BLOCK) \
  224. if (Storage->OpenSubKeyPath(KEY, CANCREATE)) try { BLOCK } __finally { Storage->CloseSubKeyPath(); }
  225. #define KEY(TYPE, VAR) KEYEX(TYPE, VAR, PropertyToKey(TEXT(#VAR)))
  226. #define REGCONFIG(CANCREATE) \
  227. BLOCK(L"Interface", CANCREATE, \
  228. KEY(String, RandomSeedFile); \
  229. KEY(String, PuttyRegistryStorageKey); \
  230. KEY(Bool, ConfirmOverwriting); \
  231. KEY(Bool, ConfirmResume); \
  232. KEY(Bool, AutoReadDirectoryAfterOp); \
  233. KEY(Integer, SessionReopenAuto); \
  234. KEY(Integer, SessionReopenBackground); \
  235. KEY(Integer, SessionReopenTimeout); \
  236. KEY(Integer, SessionReopenAutoStall); \
  237. KEY(Integer, TunnelLocalPortNumberLow); \
  238. KEY(Integer, TunnelLocalPortNumberHigh); \
  239. KEY(Integer, CacheDirectoryChangesMaxSize); \
  240. KEY(Bool, ShowFtpWelcomeMessage); \
  241. KEY(String, ExternalIpAddress); \
  242. KEY(Integer, LocalPortNumberMin); \
  243. KEY(Integer, LocalPortNumberMax); \
  244. KEY(Bool, TryFtpWhenSshFails); \
  245. KEY(Integer, ParallelDurationThreshold); \
  246. KEY(String, MimeTypes); \
  247. KEY(Integer, DontReloadMoreThanSessions); \
  248. KEY(Integer, ScriptProgressFileNameLimit); \
  249. KEY(Integer, KeyVersion); \
  250. KEY(Bool, CollectUsage); \
  251. KEY(String, CertificateStorage); \
  252. ); \
  253. BLOCK(L"Logging", CANCREATE, \
  254. KEYEX(Bool, PermanentLogging, L"Logging"); \
  255. KEYEX(String,PermanentLogFileName, L"LogFileName"); \
  256. KEY(Bool, LogFileAppend); \
  257. KEYEX(Bool, PermanentLogSensitive, L"LogSensitive"); \
  258. KEYEX(Int64, PermanentLogMaxSize, L"LogMaxSize"); \
  259. KEYEX(Integer, PermanentLogMaxCount, L"LogMaxCount"); \
  260. KEYEX(Integer,PermanentLogProtocol, L"LogProtocol"); \
  261. KEYEX(Bool, PermanentLogActions, L"LogActions"); \
  262. KEYEX(String,PermanentActionsLogFileName, L"ActionsLogFileName"); \
  263. );
  264. //---------------------------------------------------------------------------
  265. void __fastcall TConfiguration::SaveData(THierarchicalStorage * Storage, bool /*All*/)
  266. {
  267. #define KEYEX(TYPE, VAR, NAME) Storage->Write ## TYPE(NAME, VAR)
  268. REGCONFIG(true);
  269. #undef KEYEX
  270. if (Storage->OpenSubKey(L"Usage", true))
  271. {
  272. FUsage->Save(Storage);
  273. Storage->CloseSubKey();
  274. }
  275. }
  276. //---------------------------------------------------------------------------
  277. void __fastcall TConfiguration::Save()
  278. {
  279. // only modified, implicit
  280. DoSave(false, false);
  281. }
  282. //---------------------------------------------------------------------------
  283. void __fastcall TConfiguration::SaveExplicit()
  284. {
  285. // only modified, explicit
  286. DoSave(false, true);
  287. }
  288. //---------------------------------------------------------------------------
  289. void __fastcall TConfiguration::DoSave(bool All, bool Explicit)
  290. {
  291. if (FDontSave) return;
  292. THierarchicalStorage * AStorage = CreateConfigStorage();
  293. try
  294. {
  295. AStorage->AccessMode = smReadWrite;
  296. AStorage->Explicit = Explicit;
  297. AStorage->ForceSave = FForceSave;
  298. if (AStorage->OpenSubKey(ConfigurationSubKey, true))
  299. {
  300. // if saving to TOptionsStorage, make sure we save everything so that
  301. // all configuration is properly transferred to the master storage
  302. bool ConfigAll = All || AStorage->Temporary;
  303. SaveData(AStorage, ConfigAll);
  304. }
  305. }
  306. __finally
  307. {
  308. delete AStorage;
  309. }
  310. Saved();
  311. if (All)
  312. {
  313. StoredSessions->Save(true, Explicit);
  314. }
  315. // clean up as last, so that if it fails (read only INI), the saving can proceed
  316. if (Storage == stRegistry)
  317. {
  318. CleanupIniFile();
  319. }
  320. SaveCustomIniFileStorageName();
  321. }
  322. //---------------------------------------------------------------------------
  323. void __fastcall TConfiguration::SaveCustomIniFileStorageName()
  324. {
  325. // Particularly, not to create an empty "Override" key, unless the custom INI file is ever set
  326. if (CustomIniFileStorageName != LoadCustomIniFileStorageName())
  327. {
  328. std::unique_ptr<TRegistryStorage> RegistryStorage(new TRegistryStorage(GetRegistryStorageOverrideKey()));
  329. RegistryStorage->AccessMode = smReadWrite;
  330. RegistryStorage->Explicit = true;
  331. if (RegistryStorage->OpenRootKey(true))
  332. {
  333. RegistryStorage->WriteString(L"IniFile", CustomIniFileStorageName);
  334. RegistryStorage->CloseSubKey();
  335. }
  336. }
  337. }
  338. //---------------------------------------------------------------------------
  339. void __fastcall TConfiguration::Export(const UnicodeString & FileName)
  340. {
  341. // not to "append" the export to an existing file
  342. if (FileExists(FileName))
  343. {
  344. DeleteFileChecked(FileName);
  345. }
  346. THierarchicalStorage * Storage = NULL;
  347. THierarchicalStorage * ExportStorage = NULL;
  348. try
  349. {
  350. ExportStorage = TIniFileStorage::CreateFromPath(FileName);
  351. ExportStorage->AccessMode = smReadWrite;
  352. ExportStorage->Explicit = true;
  353. Storage = CreateConfigStorage();
  354. Storage->AccessMode = smRead;
  355. CopyData(Storage, ExportStorage);
  356. if (ExportStorage->OpenSubKey(ConfigurationSubKey, true))
  357. {
  358. SaveData(ExportStorage, true);
  359. }
  360. }
  361. __finally
  362. {
  363. delete ExportStorage;
  364. delete Storage;
  365. }
  366. StoredSessions->Export(FileName);
  367. }
  368. //---------------------------------------------------------------------------
  369. void __fastcall TConfiguration::Import(const UnicodeString & FileName)
  370. {
  371. THierarchicalStorage * Storage = NULL;
  372. THierarchicalStorage * ImportStorage = NULL;
  373. try
  374. {
  375. ImportStorage = TIniFileStorage::CreateFromPath(FileName);
  376. ImportStorage->AccessMode = smRead;
  377. Storage = CreateConfigStorage();
  378. Storage->AccessMode = smReadWrite;
  379. Storage->Explicit = true;
  380. CopyData(ImportStorage, Storage);
  381. Default();
  382. LoadFrom(ImportStorage);
  383. Storage->RecursiveDeleteSubKey(Configuration->StoredSessionsSubKey);
  384. if (ImportStorage->OpenSubKey(Configuration->StoredSessionsSubKey, false))
  385. {
  386. StoredSessions->Clear();
  387. StoredSessions->DefaultSettings->Default();
  388. StoredSessions->Load(ImportStorage);
  389. }
  390. }
  391. __finally
  392. {
  393. delete ImportStorage;
  394. delete Storage;
  395. }
  396. // save all and explicit
  397. DoSave(true, true);
  398. FDontSave = true;
  399. }
  400. //---------------------------------------------------------------------------
  401. void __fastcall TConfiguration::LoadData(THierarchicalStorage * Storage)
  402. {
  403. #define KEYEX(TYPE, VAR, NAME) VAR = Storage->Read ## TYPE(NAME, VAR)
  404. #pragma warn -eas
  405. REGCONFIG(false);
  406. #pragma warn +eas
  407. #undef KEYEX
  408. if (Storage->OpenSubKey(L"Usage", false))
  409. {
  410. FUsage->Load(Storage);
  411. Storage->CloseSubKey();
  412. }
  413. if (FPermanentLogActions && FPermanentActionsLogFileName.IsEmpty() &&
  414. FPermanentLogging && !FPermanentLogFileName.IsEmpty())
  415. {
  416. FPermanentActionsLogFileName = FPermanentLogFileName;
  417. FPermanentLogging = false;
  418. FPermanentLogFileName = L"";
  419. }
  420. }
  421. //---------------------------------------------------------------------------
  422. void __fastcall TConfiguration::LoadAdmin(THierarchicalStorage * Storage)
  423. {
  424. FDisablePasswordStoring = Storage->ReadBool(L"DisablePasswordStoring", FDisablePasswordStoring);
  425. FForceBanners = Storage->ReadBool(L"ForceBanners", FForceBanners);
  426. FDisableAcceptingHostKeys = Storage->ReadBool(L"DisableAcceptingHostKeys", FDisableAcceptingHostKeys);
  427. FDefaultCollectUsage = Storage->ReadBool(L"DefaultCollectUsage", FDefaultCollectUsage);
  428. }
  429. //---------------------------------------------------------------------------
  430. void __fastcall TConfiguration::LoadFrom(THierarchicalStorage * Storage)
  431. {
  432. if (Storage->OpenSubKey(ConfigurationSubKey, false))
  433. {
  434. LoadData(Storage);
  435. Storage->CloseSubKey();
  436. }
  437. }
  438. //---------------------------------------------------------------------------
  439. UnicodeString __fastcall TConfiguration::GetRegistryStorageOverrideKey()
  440. {
  441. return GetRegistryStorageKey() + L" Override";
  442. }
  443. //---------------------------------------------------------------------------
  444. UnicodeString __fastcall TConfiguration::LoadCustomIniFileStorageName()
  445. {
  446. UnicodeString Result;
  447. std::unique_ptr<TRegistryStorage> RegistryStorage(new TRegistryStorage(GetRegistryStorageOverrideKey()));
  448. if (RegistryStorage->OpenRootKey(false))
  449. {
  450. Result = RegistryStorage->ReadString(L"IniFile", L"");
  451. RegistryStorage->CloseSubKey();
  452. }
  453. RegistryStorage.reset(NULL);
  454. return Result;
  455. }
  456. //---------------------------------------------------------------------------
  457. void __fastcall TConfiguration::Load(THierarchicalStorage * Storage)
  458. {
  459. TGuard Guard(FCriticalSection);
  460. TStorageAccessMode StorageAccessMode = Storage->AccessMode;
  461. try
  462. {
  463. Storage->AccessMode = smRead;
  464. LoadFrom(Storage);
  465. }
  466. __finally
  467. {
  468. Storage->AccessMode = StorageAccessMode;
  469. }
  470. }
  471. //---------------------------------------------------------------------------
  472. bool __fastcall TConfiguration::CopySubKey(THierarchicalStorage * Source, THierarchicalStorage * Target, const UnicodeString & Name)
  473. {
  474. bool Result = Source->OpenSubKey(Name, false);
  475. if (Result)
  476. {
  477. Result = Target->OpenSubKey(Name, true);
  478. if (!Result)
  479. {
  480. Source->CloseSubKey();
  481. }
  482. }
  483. return Result;
  484. }
  485. //---------------------------------------------------------------------------
  486. void __fastcall TConfiguration::CopyAllStringsInSubKey(
  487. THierarchicalStorage * Source, THierarchicalStorage * Target, const UnicodeString & Name)
  488. {
  489. if (CopySubKey(Source, Target, Name))
  490. {
  491. std::unique_ptr<TStrings> Names(new TStringList());
  492. Source->GetValueNames(Names.get());
  493. for (int Index = 0; Index < Names->Count; Index++)
  494. {
  495. UnicodeString Buf = Source->ReadStringRaw(Names->Strings[Index], UnicodeString());
  496. Target->WriteStringRaw(Names->Strings[Index], Buf);
  497. }
  498. Target->CloseSubKey();
  499. Source->CloseSubKey();
  500. }
  501. }
  502. //---------------------------------------------------------------------------
  503. void __fastcall TConfiguration::CopyData(THierarchicalStorage * Source,
  504. THierarchicalStorage * Target)
  505. {
  506. if (CopySubKey(Source, Target, ConfigurationSubKey))
  507. {
  508. if (CopySubKey(Source, Target, CDCacheKey))
  509. {
  510. std::unique_ptr<TStrings> Names(new TStringList());
  511. Source->GetValueNames(Names.get());
  512. for (int Index = 0; Index < Names->Count; Index++)
  513. {
  514. Target->WriteBinaryData(Names->Strings[Index], Source->ReadBinaryData(Names->Strings[Index]));
  515. }
  516. Target->CloseSubKey();
  517. Source->CloseSubKey();
  518. }
  519. CopyAllStringsInSubKey(Source, Target, BannersKey);
  520. CopyAllStringsInSubKey(Source, Target, LastFingerprintsStorageKey);
  521. Target->CloseSubKey();
  522. Source->CloseSubKey();
  523. }
  524. CopyAllStringsInSubKey(Source, Target, SshHostKeysSubKey);
  525. CopyAllStringsInSubKey(Source, Target, FtpsCertificateStorageKey);
  526. CopyAllStringsInSubKey(Source, Target, HttpsCertificateStorageKey);
  527. }
  528. //---------------------------------------------------------------------------
  529. void __fastcall TConfiguration::LoadDirectoryChangesCache(const UnicodeString SessionKey,
  530. TRemoteDirectoryChangesCache * DirectoryChangesCache)
  531. {
  532. THierarchicalStorage * Storage = CreateConfigStorage();
  533. try
  534. {
  535. Storage->AccessMode = smRead;
  536. if (Storage->OpenSubKey(ConfigurationSubKey, false) &&
  537. Storage->OpenSubKey(CDCacheKey, false) &&
  538. Storage->ValueExists(SessionKey))
  539. {
  540. DirectoryChangesCache->Deserialize(Storage->ReadBinaryData(SessionKey));
  541. }
  542. }
  543. __finally
  544. {
  545. delete Storage;
  546. }
  547. }
  548. //---------------------------------------------------------------------------
  549. void __fastcall TConfiguration::SaveDirectoryChangesCache(const UnicodeString SessionKey,
  550. TRemoteDirectoryChangesCache * DirectoryChangesCache)
  551. {
  552. THierarchicalStorage * Storage = CreateConfigStorage();
  553. try
  554. {
  555. Storage->AccessMode = smReadWrite;
  556. if (Storage->OpenSubKey(ConfigurationSubKey, true) &&
  557. Storage->OpenSubKey(CDCacheKey, true))
  558. {
  559. UnicodeString Data;
  560. DirectoryChangesCache->Serialize(Data);
  561. Storage->WriteBinaryData(SessionKey, Data);
  562. }
  563. }
  564. __finally
  565. {
  566. delete Storage;
  567. }
  568. }
  569. //---------------------------------------------------------------------------
  570. UnicodeString __fastcall TConfiguration::BannerHash(const UnicodeString & Banner)
  571. {
  572. RawByteString Result;
  573. Result.SetLength(16);
  574. md5checksum(
  575. reinterpret_cast<const char*>(Banner.c_str()), Banner.Length() * sizeof(wchar_t),
  576. (unsigned char*)Result.c_str());
  577. return BytesToHex(Result);
  578. }
  579. //---------------------------------------------------------------------------
  580. void __fastcall TConfiguration::GetBannerData(
  581. const UnicodeString & SessionKey, UnicodeString & BannerHash, unsigned int & Params)
  582. {
  583. BannerHash = UnicodeString();
  584. Params = 0;
  585. std::unique_ptr<THierarchicalStorage> Storage(CreateConfigStorage());
  586. Storage->AccessMode = smRead;
  587. if (Storage->OpenSubKey(ConfigurationSubKey, false) &&
  588. Storage->OpenSubKey(BannersKey, false))
  589. {
  590. UnicodeString S = Storage->ReadString(SessionKey, L"");
  591. BannerHash = CutToChar(S, L',', true);
  592. Params = StrToIntDef(L"$" + CutToChar(S, L',', true), 0);
  593. }
  594. }
  595. //---------------------------------------------------------------------------
  596. bool __fastcall TConfiguration::ShowBanner(
  597. const UnicodeString & SessionKey, const UnicodeString & Banner, unsigned int & Params)
  598. {
  599. UnicodeString StoredBannerHash;
  600. GetBannerData(SessionKey, StoredBannerHash, Params);
  601. bool Result = (StoredBannerHash != BannerHash(Banner));
  602. return Result;
  603. }
  604. //---------------------------------------------------------------------------
  605. void __fastcall TConfiguration::SetBannerData(
  606. const UnicodeString & SessionKey, const UnicodeString & BannerHash, unsigned int Params)
  607. {
  608. std::unique_ptr<THierarchicalStorage> Storage(CreateConfigStorage());
  609. Storage->AccessMode = smReadWrite;
  610. if (Storage->OpenSubKey(ConfigurationSubKey, true) &&
  611. Storage->OpenSubKey(BannersKey, true))
  612. {
  613. Storage->WriteString(SessionKey, BannerHash + L"," + UIntToStr(Params));
  614. }
  615. }
  616. //---------------------------------------------------------------------------
  617. void __fastcall TConfiguration::NeverShowBanner(const UnicodeString & SessionKey, const UnicodeString & Banner)
  618. {
  619. UnicodeString DummyBannerHash;
  620. unsigned int Params;
  621. GetBannerData(SessionKey, DummyBannerHash, Params);
  622. SetBannerData(SessionKey, BannerHash(Banner), Params);
  623. }
  624. //---------------------------------------------------------------------------
  625. void __fastcall TConfiguration::SetBannerParams(const UnicodeString & SessionKey, unsigned int Params)
  626. {
  627. UnicodeString BannerHash;
  628. unsigned int DummyParams;
  629. GetBannerData(SessionKey, BannerHash, DummyParams);
  630. SetBannerData(SessionKey, BannerHash, Params);
  631. }
  632. //---------------------------------------------------------------------------
  633. UnicodeString __fastcall TConfiguration::FormatFingerprintKey(const UnicodeString & SiteKey, const UnicodeString & FingerprintType)
  634. {
  635. return FORMAT(L"%s:%s", (SiteKey, FingerprintType));
  636. }
  637. //---------------------------------------------------------------------------
  638. void __fastcall TConfiguration::RememberLastFingerprint(const UnicodeString & SiteKey, const UnicodeString & FingerprintType, const UnicodeString & Fingerprint)
  639. {
  640. std::unique_ptr<THierarchicalStorage> Storage(CreateConfigStorage());
  641. Storage->AccessMode = smReadWrite;
  642. if (Storage->OpenSubKey(ConfigurationSubKey, true) &&
  643. Storage->OpenSubKey(LastFingerprintsStorageKey, true))
  644. {
  645. UnicodeString FingerprintKey = FormatFingerprintKey(SiteKey, FingerprintType);
  646. Storage->WriteString(FingerprintKey, Fingerprint);
  647. }
  648. }
  649. //---------------------------------------------------------------------------
  650. UnicodeString __fastcall TConfiguration::LastFingerprint(const UnicodeString & SiteKey, const UnicodeString & FingerprintType)
  651. {
  652. UnicodeString Result;
  653. std::unique_ptr<THierarchicalStorage> Storage(CreateConfigStorage());
  654. Storage->AccessMode = smRead;
  655. if (Storage->OpenSubKey(ConfigurationSubKey, false) &&
  656. Storage->OpenSubKey(LastFingerprintsStorageKey, false))
  657. {
  658. UnicodeString FingerprintKey = FormatFingerprintKey(SiteKey, FingerprintType);
  659. Result = Storage->ReadString(FingerprintKey, L"");
  660. }
  661. return Result;
  662. }
  663. //---------------------------------------------------------------------------
  664. void __fastcall TConfiguration::Changed()
  665. {
  666. TNotifyEvent AOnChange = NULL;
  667. {
  668. TGuard Guard(FCriticalSection);
  669. if (FUpdating == 0)
  670. {
  671. AOnChange = OnChange;
  672. }
  673. else
  674. {
  675. FChanged = true;
  676. }
  677. }
  678. // No specific reason to call this outside of a guard, just that it is less of a change to a previous unguarded code
  679. if (AOnChange != NULL)
  680. {
  681. AOnChange(this);
  682. }
  683. }
  684. //---------------------------------------------------------------------------
  685. void __fastcall TConfiguration::BeginUpdate()
  686. {
  687. FCriticalSection->Enter();
  688. if (FUpdating == 0)
  689. {
  690. FChanged = false;
  691. }
  692. FUpdating++;
  693. // Greater value would probably indicate some nesting problem in code
  694. DebugAssert(FUpdating < 6);
  695. }
  696. //---------------------------------------------------------------------------
  697. void __fastcall TConfiguration::EndUpdate()
  698. {
  699. DebugAssert(FUpdating > 0);
  700. FUpdating--;
  701. if ((FUpdating == 0) && FChanged)
  702. {
  703. FChanged = false;
  704. Changed();
  705. }
  706. FCriticalSection->Leave();
  707. }
  708. //---------------------------------------------------------------------------
  709. void __fastcall TConfiguration::CleanupConfiguration()
  710. {
  711. try
  712. {
  713. CleanupRegistry(ConfigurationSubKey);
  714. if (Storage == stRegistry)
  715. {
  716. FDontSave = true;
  717. }
  718. }
  719. catch (Exception &E)
  720. {
  721. throw ExtException(&E, LoadStr(CLEANUP_CONFIG_ERROR));
  722. }
  723. }
  724. //---------------------------------------------------------------------------
  725. bool TConfiguration::RegistryPathExists(const UnicodeString & RegistryPath)
  726. {
  727. std::unique_ptr<TRegistryStorage> Registry(new TRegistryStorage(RegistryStorageKey));
  728. UnicodeString ParentKey = ExtractFileDir(RegistryPath);
  729. UnicodeString SubKey = ExtractFileName(RegistryPath);
  730. return
  731. Registry->OpenRootKey(false) &&
  732. (ParentKey.IsEmpty() ||
  733. Registry->OpenSubKeyPath(ParentKey, false)) &&
  734. Registry->KeyExists(SubKey);
  735. }
  736. //---------------------------------------------------------------------------
  737. void __fastcall TConfiguration::CleanupRegistry(const UnicodeString & RegistryPath)
  738. {
  739. std::unique_ptr<TRegistryStorage> Registry(new TRegistryStorage(RegistryStorageKey));
  740. UnicodeString ParentKey = ExtractFileDir(RegistryPath);
  741. if (ParentKey.IsEmpty() ||
  742. Registry->OpenSubKeyPath(ParentKey, false))
  743. {
  744. UnicodeString SubKey = ExtractFileName(RegistryPath);
  745. Registry->RecursiveDeleteSubKey(SubKey);
  746. }
  747. }
  748. //---------------------------------------------------------------------------
  749. TStrings * TConfiguration::GetCaches()
  750. {
  751. std::unique_ptr<TStrings> Result(new TStringList());
  752. Result->Add(SshHostKeysSubKey);
  753. Result->Add(FtpsCertificateStorageKey);
  754. Result->Add(HttpsCertificateStorageKey);
  755. Result->Add(DirectoryStatisticsCacheKey);
  756. Result->Add(TPath::Combine(ConfigurationSubKey, CDCacheKey));
  757. Result->Add(TPath::Combine(ConfigurationSubKey, BannersKey));
  758. Result->Add(TPath::Combine(ConfigurationSubKey, LastFingerprintsStorageKey));
  759. return Result.release();
  760. }
  761. //---------------------------------------------------------------------------
  762. bool __fastcall TConfiguration::HasAnyCache()
  763. {
  764. bool Result = false;
  765. std::unique_ptr<TStrings> Caches(GetCaches());
  766. for (int Index = 0; Index < Caches->Count; Index++)
  767. {
  768. if (RegistryPathExists(Caches->Strings[Index]))
  769. {
  770. Result = true;
  771. break;
  772. }
  773. }
  774. return Result;
  775. }
  776. //---------------------------------------------------------------------------
  777. void __fastcall TConfiguration::CleanupCaches()
  778. {
  779. try
  780. {
  781. std::unique_ptr<TStrings> Caches(GetCaches());
  782. for (int Index = 0; Index < Caches->Count; Index++)
  783. {
  784. CleanupRegistry(Caches->Strings[Index]);
  785. }
  786. }
  787. catch (Exception & E)
  788. {
  789. throw ExtException(&E, LoadStr(CLEANUP_CACHES_ERROR));
  790. }
  791. }
  792. //---------------------------------------------------------------------------
  793. void __fastcall TConfiguration::CleanupRandomSeedFile()
  794. {
  795. try
  796. {
  797. DontSaveRandomSeed();
  798. if (FileExists(ApiPath(RandomSeedFileName)))
  799. {
  800. DeleteFileChecked(RandomSeedFileName);
  801. }
  802. }
  803. catch (Exception &E)
  804. {
  805. throw ExtException(&E, LoadStr(CLEANUP_SEEDFILE_ERROR));
  806. }
  807. }
  808. //---------------------------------------------------------------------------
  809. void __fastcall TConfiguration::CleanupIniFile()
  810. {
  811. try
  812. {
  813. if (FileExists(ApiPath(IniFileStorageNameForReading)))
  814. {
  815. DeleteFileChecked(IniFileStorageNameForReading);
  816. }
  817. if (Storage == stIniFile)
  818. {
  819. FDontSave = true;
  820. }
  821. }
  822. catch (Exception &E)
  823. {
  824. throw ExtException(&E, LoadStr(CLEANUP_INIFILE_ERROR));
  825. }
  826. }
  827. //---------------------------------------------------------------------------
  828. void __fastcall TConfiguration::DontSave()
  829. {
  830. FDontSave = true;
  831. }
  832. //---------------------------------------------------------------------------
  833. RawByteString __fastcall TConfiguration::EncryptPassword(UnicodeString Password, UnicodeString Key)
  834. {
  835. if (Password.IsEmpty())
  836. {
  837. return RawByteString();
  838. }
  839. else
  840. {
  841. return ::EncryptPassword(Password, Key);
  842. }
  843. }
  844. //---------------------------------------------------------------------------
  845. UnicodeString __fastcall TConfiguration::DecryptPassword(RawByteString Password, UnicodeString Key)
  846. {
  847. if (Password.IsEmpty())
  848. {
  849. return UnicodeString();
  850. }
  851. else
  852. {
  853. return ::DecryptPassword(Password, Key);
  854. }
  855. }
  856. //---------------------------------------------------------------------------
  857. RawByteString __fastcall TConfiguration::StronglyRecryptPassword(RawByteString Password, UnicodeString /*Key*/)
  858. {
  859. return Password;
  860. }
  861. //---------------------------------------------------------------------------
  862. TVSFixedFileInfo *__fastcall TConfiguration::GetFixedApplicationInfo()
  863. {
  864. return GetFixedFileInfo(ApplicationInfo);
  865. }
  866. //---------------------------------------------------------------------------
  867. int __fastcall TConfiguration::GetCompoundVersion()
  868. {
  869. TVSFixedFileInfo * FileInfo = FixedApplicationInfo;
  870. return CalculateCompoundVersion(
  871. HIWORD(FileInfo->dwFileVersionMS), LOWORD(FileInfo->dwFileVersionMS),
  872. HIWORD(FileInfo->dwFileVersionLS));
  873. }
  874. //---------------------------------------------------------------------------
  875. UnicodeString __fastcall TConfiguration::ModuleFileName()
  876. {
  877. return ParamStr(0);
  878. }
  879. //---------------------------------------------------------------------------
  880. void * __fastcall TConfiguration::GetFileApplicationInfo(const UnicodeString FileName)
  881. {
  882. void * Result;
  883. if (FileName.IsEmpty())
  884. {
  885. if (!FApplicationInfo)
  886. {
  887. FApplicationInfo = CreateFileInfo(ModuleFileName());
  888. }
  889. Result = FApplicationInfo;
  890. }
  891. else
  892. {
  893. Result = CreateFileInfo(FileName);
  894. }
  895. return Result;
  896. }
  897. //---------------------------------------------------------------------------
  898. void * __fastcall TConfiguration::GetApplicationInfo()
  899. {
  900. return GetFileApplicationInfo("");
  901. }
  902. //---------------------------------------------------------------------------
  903. UnicodeString __fastcall TConfiguration::GetFileProductName(const UnicodeString FileName)
  904. {
  905. return GetFileFileInfoString(L"ProductName", FileName);
  906. }
  907. //---------------------------------------------------------------------------
  908. UnicodeString __fastcall TConfiguration::GetFileCompanyName(const UnicodeString FileName)
  909. {
  910. // particularly in IDE build, company name is empty
  911. return GetFileFileInfoString(L"CompanyName", FileName, true);
  912. }
  913. //---------------------------------------------------------------------------
  914. UnicodeString __fastcall TConfiguration::GetProductName()
  915. {
  916. return GetFileProductName(L"");
  917. }
  918. //---------------------------------------------------------------------------
  919. UnicodeString __fastcall TConfiguration::GetCompanyName()
  920. {
  921. return GetFileCompanyName(L"");
  922. }
  923. //---------------------------------------------------------------------------
  924. UnicodeString __fastcall TConfiguration::GetFileProductVersion(const UnicodeString FileName)
  925. {
  926. return TrimVersion(GetFileFileInfoString(L"ProductVersion", FileName));
  927. }
  928. //---------------------------------------------------------------------------
  929. UnicodeString __fastcall TConfiguration::GetFileDescription(const UnicodeString & FileName)
  930. {
  931. return GetFileFileInfoString(L"FileDescription", FileName);
  932. }
  933. //---------------------------------------------------------------------------
  934. UnicodeString __fastcall TConfiguration::GetProductVersion()
  935. {
  936. return GetFileProductVersion(L"");
  937. }
  938. //---------------------------------------------------------------------------
  939. UnicodeString __fastcall TConfiguration::GetReleaseType()
  940. {
  941. return GetFileInfoString(L"ReleaseType");
  942. }
  943. //---------------------------------------------------------------------------
  944. bool __fastcall TConfiguration::GetIsUnofficial()
  945. {
  946. #ifdef BUILD_OFFICIAL
  947. return false;
  948. #else
  949. return true;
  950. #endif
  951. }
  952. //---------------------------------------------------------------------------
  953. UnicodeString __fastcall TConfiguration::GetVersionStr()
  954. {
  955. TGuard Guard(FCriticalSection);
  956. try
  957. {
  958. UnicodeString BuildStr;
  959. if (!IsUnofficial)
  960. {
  961. BuildStr = LoadStr(VERSION_BUILD);
  962. }
  963. else
  964. {
  965. #ifdef _DEBUG
  966. BuildStr = LoadStr(VERSION_DEBUG_BUILD);
  967. #else
  968. BuildStr = LoadStr(VERSION_DEV_BUILD);
  969. #endif
  970. }
  971. int Build = LOWORD(FixedApplicationInfo->dwFileVersionLS);
  972. if (Build > 0)
  973. {
  974. BuildStr += L" " + IntToStr(Build);
  975. }
  976. UnicodeString BuildDate = __DATE__;
  977. UnicodeString MonthStr = CutToChar(BuildDate, L' ', true);
  978. int Month = ParseShortEngMonthName(MonthStr);
  979. int Day = StrToInt(CutToChar(BuildDate, L' ', true));
  980. int Year = StrToInt(Trim(BuildDate));
  981. UnicodeString DateStr = FORMAT(L"%d-%2.2d-%2.2d", (Year, Month, Day));
  982. AddToList(BuildStr, DateStr, L" ");
  983. UnicodeString FullVersion = Version;
  984. UnicodeString AReleaseType = GetReleaseType();
  985. if (DebugAlwaysTrue(!AReleaseType.IsEmpty()) &&
  986. !SameText(AReleaseType, L"stable") &&
  987. !SameText(AReleaseType, L"development"))
  988. {
  989. FullVersion += L" " + AReleaseType;
  990. }
  991. UnicodeString Result = FMTLOAD(VERSION2, (FullVersion, BuildStr));
  992. #ifndef BUILD_OFFICIAL
  993. Result += L" " + LoadStr(VERSION_DONT_DISTRIBUTE);
  994. #endif
  995. return Result;
  996. }
  997. catch (Exception &E)
  998. {
  999. throw ExtException(&E, L"Can't get application version");
  1000. }
  1001. }
  1002. //---------------------------------------------------------------------------
  1003. UnicodeString __fastcall TConfiguration::GetFileVersion(const UnicodeString & FileName)
  1004. {
  1005. UnicodeString Result;
  1006. void * FileInfo = CreateFileInfo(FileName);
  1007. try
  1008. {
  1009. Result = GetFileVersion(GetFixedFileInfo(FileInfo));
  1010. }
  1011. __finally
  1012. {
  1013. FreeFileInfo(FileInfo);
  1014. }
  1015. return Result;
  1016. }
  1017. //---------------------------------------------------------------------------
  1018. UnicodeString __fastcall TConfiguration::GetFileVersion(TVSFixedFileInfo * Info)
  1019. {
  1020. TGuard Guard(FCriticalSection);
  1021. try
  1022. {
  1023. UnicodeString Result =
  1024. FormatVersion(
  1025. HIWORD(Info->dwFileVersionMS),
  1026. LOWORD(Info->dwFileVersionMS),
  1027. HIWORD(Info->dwFileVersionLS));
  1028. return Result;
  1029. }
  1030. catch (Exception &E)
  1031. {
  1032. throw ExtException(&E, L"Can't get file version");
  1033. }
  1034. }
  1035. //---------------------------------------------------------------------------
  1036. UnicodeString __fastcall TConfiguration::GetVersion()
  1037. {
  1038. return GetFileVersion(FixedApplicationInfo);
  1039. }
  1040. //---------------------------------------------------------------------------
  1041. UnicodeString __fastcall TConfiguration::GetFileFileInfoString(const UnicodeString Key,
  1042. const UnicodeString FileName, bool AllowEmpty)
  1043. {
  1044. TGuard Guard(FCriticalSection);
  1045. UnicodeString Result;
  1046. void * Info = GetFileApplicationInfo(FileName);
  1047. try
  1048. {
  1049. if ((Info != NULL) && (GetTranslationCount(Info) > 0))
  1050. {
  1051. TTranslation Translation;
  1052. Translation = GetTranslation(Info, 0);
  1053. Result = ::GetFileInfoString(Info, Translation, Key, AllowEmpty);
  1054. }
  1055. else
  1056. {
  1057. DebugAssert(!FileName.IsEmpty());
  1058. }
  1059. }
  1060. __finally
  1061. {
  1062. if (!FileName.IsEmpty())
  1063. {
  1064. FreeFileInfo(Info);
  1065. }
  1066. }
  1067. return Result;
  1068. }
  1069. //---------------------------------------------------------------------------
  1070. UnicodeString __fastcall TConfiguration::GetFileInfoString(const UnicodeString Key)
  1071. {
  1072. return GetFileFileInfoString(Key, L"");
  1073. }
  1074. //---------------------------------------------------------------------------
  1075. UnicodeString __fastcall TConfiguration::GetFileMimeType(const UnicodeString & FileName)
  1076. {
  1077. UnicodeString Result;
  1078. bool Found = false;
  1079. if (!MimeTypes.IsEmpty())
  1080. {
  1081. UnicodeString FileNameOnly = ExtractFileName(FileName);
  1082. UnicodeString AMimeTypes = MimeTypes;
  1083. while (!Found && !AMimeTypes.IsEmpty())
  1084. {
  1085. UnicodeString Token = CutToChar(AMimeTypes, L',', true);
  1086. UnicodeString MaskStr = CutToChar(Token, L'=', true);
  1087. TFileMasks Mask(MaskStr);
  1088. if (Mask.MatchesFileName(FileNameOnly))
  1089. {
  1090. Result = Token.Trim();
  1091. Found = true;
  1092. }
  1093. }
  1094. }
  1095. if (!Found) // allow an override to "no" Content-Type
  1096. {
  1097. Result = ::GetFileMimeType(FileName);
  1098. }
  1099. return Result;
  1100. }
  1101. //---------------------------------------------------------------------------
  1102. UnicodeString __fastcall TConfiguration::GetRegistryStorageKey()
  1103. {
  1104. return GetRegistryKey();
  1105. }
  1106. //---------------------------------------------------------------------------
  1107. void __fastcall TConfiguration::SetNulStorage()
  1108. {
  1109. FStorage = stNul;
  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, OpensshFolderName);
  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 TConfiguration::SetCertificateStorage(const UnicodeString & value)
  1585. {
  1586. SET_CONFIG_PROPERTY(CertificateStorage);
  1587. }
  1588. //---------------------------------------------------------------------
  1589. UnicodeString TConfiguration::GetCertificateStorageExpanded()
  1590. {
  1591. UnicodeString Result = FCertificateStorage;
  1592. if (Result.IsEmpty())
  1593. {
  1594. UnicodeString DefaultCertificateStorage = TPath::Combine(ExtractFilePath(ModuleFileName()), L"cacert.pem");
  1595. if (FileExists(DefaultCertificateStorage))
  1596. {
  1597. Result = DefaultCertificateStorage;
  1598. }
  1599. }
  1600. return Result;
  1601. }
  1602. //---------------------------------------------------------------------
  1603. void __fastcall TConfiguration::SetTryFtpWhenSshFails(bool value)
  1604. {
  1605. SET_CONFIG_PROPERTY(TryFtpWhenSshFails);
  1606. }
  1607. //---------------------------------------------------------------------
  1608. void __fastcall TConfiguration::SetParallelDurationThreshold(int value)
  1609. {
  1610. SET_CONFIG_PROPERTY(ParallelDurationThreshold);
  1611. }
  1612. //---------------------------------------------------------------------
  1613. void __fastcall TConfiguration::SetPuttyRegistryStorageKey(UnicodeString value)
  1614. {
  1615. SET_CONFIG_PROPERTY(PuttyRegistryStorageKey);
  1616. }
  1617. //---------------------------------------------------------------------------
  1618. TEOLType __fastcall TConfiguration::GetLocalEOLType()
  1619. {
  1620. return eolCRLF;
  1621. }
  1622. //---------------------------------------------------------------------
  1623. bool __fastcall TConfiguration::GetCollectUsage()
  1624. {
  1625. return FUsage->Collect;
  1626. }
  1627. //---------------------------------------------------------------------
  1628. void __fastcall TConfiguration::SetCollectUsage(bool value)
  1629. {
  1630. FUsage->Collect = value;
  1631. }
  1632. //---------------------------------------------------------------------
  1633. void __fastcall TConfiguration::TemporaryLogging(const UnicodeString ALogFileName)
  1634. {
  1635. if (SameText(ExtractFileExt(ALogFileName), L".xml"))
  1636. {
  1637. TemporaryActionsLogging(ALogFileName);
  1638. }
  1639. else
  1640. {
  1641. FLogging = true;
  1642. FLogFileName = ALogFileName;
  1643. UpdateActualLogProtocol();
  1644. }
  1645. }
  1646. //---------------------------------------------------------------------
  1647. void __fastcall TConfiguration::TemporaryActionsLogging(const UnicodeString ALogFileName)
  1648. {
  1649. FLogActions = true;
  1650. FActionsLogFileName = ALogFileName;
  1651. }
  1652. //---------------------------------------------------------------------
  1653. void __fastcall TConfiguration::TemporaryLogProtocol(int ALogProtocol)
  1654. {
  1655. FLogProtocol = ALogProtocol;
  1656. UpdateActualLogProtocol();
  1657. }
  1658. //---------------------------------------------------------------------
  1659. void __fastcall TConfiguration::TemporaryLogSensitive(bool ALogSensitive)
  1660. {
  1661. FLogSensitive = ALogSensitive;
  1662. }
  1663. //---------------------------------------------------------------------
  1664. void __fastcall TConfiguration::TemporaryLogMaxSize(__int64 ALogMaxSize)
  1665. {
  1666. FLogMaxSize = ALogMaxSize;
  1667. }
  1668. //---------------------------------------------------------------------
  1669. void __fastcall TConfiguration::TemporaryLogMaxCount(int ALogMaxCount)
  1670. {
  1671. FLogMaxCount = ALogMaxCount;
  1672. }
  1673. //---------------------------------------------------------------------
  1674. void __fastcall TConfiguration::SetLogging(bool value)
  1675. {
  1676. TGuard Guard(FCriticalSection);
  1677. if (Logging != value)
  1678. {
  1679. FPermanentLogging = value;
  1680. FLogging = value;
  1681. UpdateActualLogProtocol();
  1682. Changed();
  1683. }
  1684. }
  1685. //---------------------------------------------------------------------
  1686. bool __fastcall TConfiguration::GetLogging()
  1687. {
  1688. TGuard Guard(FCriticalSection);
  1689. return FPermanentLogging;
  1690. }
  1691. //---------------------------------------------------------------------
  1692. void __fastcall TConfiguration::SetLogFileName(UnicodeString value)
  1693. {
  1694. TGuard Guard(FCriticalSection);
  1695. if (LogFileName != value)
  1696. {
  1697. FPermanentLogFileName = value;
  1698. FLogFileName = value;
  1699. Changed();
  1700. }
  1701. }
  1702. //---------------------------------------------------------------------
  1703. UnicodeString __fastcall TConfiguration::GetLogFileName()
  1704. {
  1705. TGuard Guard(FCriticalSection);
  1706. return FPermanentLogFileName;
  1707. }
  1708. //---------------------------------------------------------------------
  1709. void __fastcall TConfiguration::SetActionsLogFileName(UnicodeString value)
  1710. {
  1711. TGuard Guard(FCriticalSection);
  1712. if (ActionsLogFileName != value)
  1713. {
  1714. FPermanentActionsLogFileName = value;
  1715. FActionsLogFileName = value;
  1716. Changed();
  1717. }
  1718. }
  1719. //---------------------------------------------------------------------
  1720. UnicodeString __fastcall TConfiguration::GetPermanentActionsLogFileName()
  1721. {
  1722. TGuard Guard(FCriticalSection);
  1723. return FPermanentActionsLogFileName;
  1724. }
  1725. //---------------------------------------------------------------------
  1726. UnicodeString __fastcall TConfiguration::GetActionsLogFileName()
  1727. {
  1728. TGuard Guard(FCriticalSection);
  1729. return FActionsLogFileName;
  1730. }
  1731. //---------------------------------------------------------------------
  1732. bool __fastcall TConfiguration::GetLogToFile()
  1733. {
  1734. // guarded within GetLogFileName
  1735. return !LogFileName.IsEmpty();
  1736. }
  1737. //---------------------------------------------------------------------
  1738. void __fastcall TConfiguration::UpdateActualLogProtocol()
  1739. {
  1740. FActualLogProtocol = FLogging ? FLogProtocol : (-BelowNormalLogLevels - 1);
  1741. }
  1742. //---------------------------------------------------------------------
  1743. void __fastcall TConfiguration::SetLogProtocol(int value)
  1744. {
  1745. TGuard Guard(FCriticalSection);
  1746. if (LogProtocol != value)
  1747. {
  1748. FPermanentLogProtocol = value;
  1749. FLogProtocol = value;
  1750. Changed();
  1751. UpdateActualLogProtocol();
  1752. }
  1753. }
  1754. //---------------------------------------------------------------------
  1755. void __fastcall TConfiguration::SetLogActions(bool value)
  1756. {
  1757. TGuard Guard(FCriticalSection);
  1758. if (LogActions != value)
  1759. {
  1760. FPermanentLogActions = value;
  1761. FLogActions = value;
  1762. Changed();
  1763. }
  1764. }
  1765. //---------------------------------------------------------------------
  1766. bool __fastcall TConfiguration::GetLogActions()
  1767. {
  1768. TGuard Guard(FCriticalSection);
  1769. return FPermanentLogActions;
  1770. }
  1771. //---------------------------------------------------------------------
  1772. void __fastcall TConfiguration::SetLogFileAppend(bool value)
  1773. {
  1774. SET_CONFIG_PROPERTY(LogFileAppend);
  1775. }
  1776. //---------------------------------------------------------------------
  1777. void __fastcall TConfiguration::SetLogSensitive(bool value)
  1778. {
  1779. if (LogSensitive != value)
  1780. {
  1781. FPermanentLogSensitive = value;
  1782. FLogSensitive = value;
  1783. Changed();
  1784. }
  1785. }
  1786. //---------------------------------------------------------------------
  1787. void __fastcall TConfiguration::SetLogMaxSize(__int64 value)
  1788. {
  1789. TGuard Guard(FCriticalSection);
  1790. if (LogMaxSize != value)
  1791. {
  1792. FPermanentLogMaxSize = value;
  1793. FLogMaxSize = value;
  1794. Changed();
  1795. }
  1796. }
  1797. //---------------------------------------------------------------------
  1798. __int64 __fastcall TConfiguration::GetLogMaxSize()
  1799. {
  1800. TGuard Guard(FCriticalSection);
  1801. return FPermanentLogMaxSize;
  1802. }
  1803. //---------------------------------------------------------------------
  1804. void __fastcall TConfiguration::SetLogMaxCount(int value)
  1805. {
  1806. if (LogMaxCount != value)
  1807. {
  1808. FPermanentLogMaxCount = value;
  1809. FLogMaxCount = value;
  1810. Changed();
  1811. }
  1812. }
  1813. //---------------------------------------------------------------------
  1814. int __fastcall TConfiguration::GetLogMaxCount()
  1815. {
  1816. TGuard Guard(FCriticalSection);
  1817. return FPermanentLogMaxCount;
  1818. }
  1819. //---------------------------------------------------------------------
  1820. UnicodeString __fastcall TConfiguration::GetDefaultLogFileName()
  1821. {
  1822. return L"%TEMP%\\!S.log";
  1823. }
  1824. //---------------------------------------------------------------------------
  1825. void __fastcall TConfiguration::SetConfirmOverwriting(bool value)
  1826. {
  1827. TGuard Guard(FCriticalSection);
  1828. SET_CONFIG_PROPERTY(ConfirmOverwriting);
  1829. }
  1830. //---------------------------------------------------------------------------
  1831. bool __fastcall TConfiguration::GetConfirmOverwriting()
  1832. {
  1833. TGuard Guard(FCriticalSection);
  1834. return FConfirmOverwriting;
  1835. }
  1836. //---------------------------------------------------------------------------
  1837. void __fastcall TConfiguration::SetConfirmResume(bool value)
  1838. {
  1839. TGuard Guard(FCriticalSection);
  1840. SET_CONFIG_PROPERTY(ConfirmResume);
  1841. }
  1842. //---------------------------------------------------------------------------
  1843. bool __fastcall TConfiguration::GetConfirmResume()
  1844. {
  1845. TGuard Guard(FCriticalSection);
  1846. return FConfirmResume;
  1847. }
  1848. //---------------------------------------------------------------------------
  1849. void __fastcall TConfiguration::SetAutoReadDirectoryAfterOp(bool value)
  1850. {
  1851. TGuard Guard(FCriticalSection);
  1852. SET_CONFIG_PROPERTY(AutoReadDirectoryAfterOp);
  1853. }
  1854. //---------------------------------------------------------------------------
  1855. bool __fastcall TConfiguration::GetAutoReadDirectoryAfterOp()
  1856. {
  1857. TGuard Guard(FCriticalSection);
  1858. return FAutoReadDirectoryAfterOp;
  1859. }
  1860. //---------------------------------------------------------------------------
  1861. UnicodeString __fastcall TConfiguration::GetTimeFormat()
  1862. {
  1863. return L"h:nn:ss";
  1864. }
  1865. //---------------------------------------------------------------------------
  1866. UnicodeString __fastcall TConfiguration::GetPartialExt() const
  1867. {
  1868. return PARTIAL_EXT;
  1869. }
  1870. //---------------------------------------------------------------------------
  1871. UnicodeString __fastcall TConfiguration::GetDefaultKeyFile()
  1872. {
  1873. return L"";
  1874. }
  1875. //---------------------------------------------------------------------------
  1876. bool __fastcall TConfiguration::GetRememberPassword()
  1877. {
  1878. return false;
  1879. }
  1880. //---------------------------------------------------------------------------
  1881. void __fastcall TConfiguration::SetSessionReopenAuto(int value)
  1882. {
  1883. SET_CONFIG_PROPERTY(SessionReopenAuto);
  1884. }
  1885. //---------------------------------------------------------------------------
  1886. void __fastcall TConfiguration::SetSessionReopenBackground(int value)
  1887. {
  1888. SET_CONFIG_PROPERTY(SessionReopenBackground);
  1889. }
  1890. //---------------------------------------------------------------------------
  1891. void __fastcall TConfiguration::SetSessionReopenTimeout(int value)
  1892. {
  1893. SET_CONFIG_PROPERTY(SessionReopenTimeout);
  1894. }
  1895. //---------------------------------------------------------------------------
  1896. void __fastcall TConfiguration::SetSessionReopenAutoStall(int value)
  1897. {
  1898. SET_CONFIG_PROPERTY(SessionReopenAutoStall);
  1899. }
  1900. //---------------------------------------------------------------------------
  1901. void __fastcall TConfiguration::SetTunnelLocalPortNumberLow(int value)
  1902. {
  1903. SET_CONFIG_PROPERTY(TunnelLocalPortNumberLow);
  1904. }
  1905. //---------------------------------------------------------------------------
  1906. void __fastcall TConfiguration::SetTunnelLocalPortNumberHigh(int value)
  1907. {
  1908. SET_CONFIG_PROPERTY(TunnelLocalPortNumberHigh);
  1909. }
  1910. //---------------------------------------------------------------------------
  1911. void __fastcall TConfiguration::SetCacheDirectoryChangesMaxSize(int value)
  1912. {
  1913. SET_CONFIG_PROPERTY(CacheDirectoryChangesMaxSize);
  1914. }
  1915. //---------------------------------------------------------------------------
  1916. void __fastcall TConfiguration::SetShowFtpWelcomeMessage(bool value)
  1917. {
  1918. SET_CONFIG_PROPERTY(ShowFtpWelcomeMessage);
  1919. }
  1920. //---------------------------------------------------------------------------
  1921. bool __fastcall TConfiguration::GetPersistent()
  1922. {
  1923. return (Storage != stNul) && !FDontSave;
  1924. }
  1925. //---------------------------------------------------------------------------
  1926. //---------------------------------------------------------------------------
  1927. void __fastcall TShortCuts::Add(TShortCut ShortCut)
  1928. {
  1929. FShortCuts.insert(ShortCut);
  1930. }
  1931. //---------------------------------------------------------------------------
  1932. bool __fastcall TShortCuts::Has(TShortCut ShortCut) const
  1933. {
  1934. return (FShortCuts.count(ShortCut) != 0);
  1935. }