SecureShell.cpp 89 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835
  1. //---------------------------------------------------------------------------
  2. #include <vcl.h>
  3. #pragma hdrstop
  4. #include "Common.h"
  5. #include "PuttyIntf.h"
  6. #include "Exceptions.h"
  7. #include "Interface.h"
  8. #include "SecureShell.h"
  9. #include "TextsCore.h"
  10. #include "HelpCore.h"
  11. #include "CoreMain.h"
  12. #include <StrUtils.hpp>
  13. #ifndef AUTO_WINSOCK
  14. #include <winsock2.h>
  15. #endif
  16. #include <ws2ipdef.h>
  17. //---------------------------------------------------------------------------
  18. #pragma package(smart_init)
  19. //---------------------------------------------------------------------------
  20. #define MAX_BUFSIZE 32768
  21. //---------------------------------------------------------------------------
  22. const wchar_t HostKeyDelimiter = L';';
  23. static std::unique_ptr<TCriticalSection> PuttyStorageSection(TraceInitPtr(new TCriticalSection()));
  24. //---------------------------------------------------------------------------
  25. struct TPuttyTranslation
  26. {
  27. const wchar_t * Original;
  28. int Translation;
  29. UnicodeString HelpKeyword;
  30. };
  31. //---------------------------------------------------------------------------
  32. struct ScpLogPolicy : public LogPolicy
  33. {
  34. TSecureShell * SecureShell;
  35. struct Seat * Seat;
  36. };
  37. //---------------------------------------------------------------------------
  38. Seat * get_log_seat(LogContext * logctx)
  39. {
  40. ScpLogPolicy * ALogPolicy = static_cast<ScpLogPolicy *>(log_get_logpolicy(logctx));
  41. return ALogPolicy->Seat;
  42. }
  43. //---------------------------------------------------------------------------
  44. struct callback_set * get_log_callback_set(LogContext * logctx)
  45. {
  46. ScpLogPolicy * ALogPolicy = static_cast<ScpLogPolicy *>(log_get_logpolicy(logctx));
  47. return ALogPolicy->SecureShell->GetCallbackSet();
  48. }
  49. //---------------------------------------------------------------------------
  50. __fastcall TSecureShell::TSecureShell(TSessionUI* UI,
  51. TSessionData * SessionData, TSessionLog * Log, TConfiguration * Configuration)
  52. {
  53. FUI = UI;
  54. FSessionData = SessionData;
  55. FLog = Log;
  56. FConfiguration = Configuration;
  57. FActive = false;
  58. FWaiting = 0;
  59. FOpened = false;
  60. FSshImplementation = sshiUnknown;
  61. OutPtr = NULL;
  62. Pending = NULL;
  63. FBackendHandle = NULL;
  64. FLogPolicy = NULL;
  65. FSeat = NULL;
  66. FLogCtx = NULL;
  67. ResetConnection();
  68. FOnCaptureOutput = NULL;
  69. FOnReceive = NULL;
  70. FSocket = INVALID_SOCKET;
  71. FSocketEvent = CreateEvent(NULL, false, false, NULL);
  72. FFrozen = false;
  73. FSimple = false;
  74. FCollectPrivateKeyUsage = false;
  75. FWaitingForData = 0;
  76. FCallbackSet.reset(new callback_set());
  77. memset(FCallbackSet.get(), 0, sizeof(callback_set));
  78. FCallbackSet->ready_event = INVALID_HANDLE_VALUE;
  79. }
  80. //---------------------------------------------------------------------------
  81. __fastcall TSecureShell::~TSecureShell()
  82. {
  83. DebugAssert(FWaiting == 0);
  84. if (Active)
  85. {
  86. Close();
  87. }
  88. ResetConnection();
  89. CloseHandle(FSocketEvent);
  90. }
  91. //---------------------------------------------------------------------------
  92. void __fastcall TSecureShell::ResetConnection()
  93. {
  94. FreeBackend();
  95. ClearStdError();
  96. PendLen = 0;
  97. PendSize = 0;
  98. sfree(Pending);
  99. Pending = NULL;
  100. FCWriteTemp = L"";
  101. ResetSessionInfo();
  102. FAuthenticating = false;
  103. FAuthenticated = false;
  104. FStoredPasswordTried = false;
  105. FStoredPasswordTriedForKI = false;
  106. FStoredPassphraseTried = false;
  107. delete FLogPolicy;
  108. FLogPolicy = NULL;
  109. delete FSeat;
  110. FSeat = NULL;
  111. if (FLogCtx != NULL)
  112. {
  113. log_free(FLogCtx);
  114. }
  115. FLogCtx = NULL;
  116. FClosed = false;
  117. FLoggedKnownHostKeys.clear();
  118. }
  119. //---------------------------------------------------------------------------
  120. void __fastcall TSecureShell::ResetSessionInfo()
  121. {
  122. FSessionInfoValid = false;
  123. }
  124. //---------------------------------------------------------------------------
  125. inline void __fastcall TSecureShell::UpdateSessionInfo()
  126. {
  127. if (!FSessionInfoValid)
  128. {
  129. DebugAssert(get_ssh_version(FBackendHandle) == 2);
  130. FSessionInfo.ProtocolBaseName = L"SSH";
  131. FSessionInfo.ProtocolName =
  132. FORMAT(L"%s-%d", (FSessionInfo.ProtocolBaseName, get_ssh_version(FBackendHandle)));
  133. FSessionInfo.SecurityProtocolName = FSessionInfo.ProtocolName;
  134. FSessionInfo.CSCipher = GetCipherName(get_cscipher(FBackendHandle));
  135. FSessionInfo.SCCipher = GetCipherName(get_sccipher(FBackendHandle));
  136. FSessionInfo.CSCompression = GetCompressorName(get_cscomp(FBackendHandle));
  137. FSessionInfo.SCCompression = GetDecompressorName(get_sccomp(FBackendHandle));
  138. FSessionInfoValid = true;
  139. }
  140. }
  141. //---------------------------------------------------------------------------
  142. const TSessionInfo & __fastcall TSecureShell::GetSessionInfo()
  143. {
  144. if (!FSessionInfoValid)
  145. {
  146. UpdateSessionInfo();
  147. }
  148. return FSessionInfo;
  149. }
  150. //---------------------------------------------------------------------
  151. void __fastcall TSecureShell::GetHostKeyFingerprint(UnicodeString & SHA256, UnicodeString & MD5)
  152. {
  153. SHA256 = FSessionInfo.HostKeyFingerprintSHA256;
  154. MD5 = FSessionInfo.HostKeyFingerprintMD5;
  155. }
  156. //---------------------------------------------------------------------
  157. Conf * __fastcall TSecureShell::StoreToConfig(TSessionData * Data, bool Simple)
  158. {
  159. Conf * conf = conf_new();
  160. PuttyDefaults(conf);
  161. // user-configurable settings
  162. conf_set_str(conf, CONF_host, AnsiString(Data->HostNameExpanded).c_str());
  163. conf_set_str(conf, CONF_username, UTF8String(Data->UserNameExpanded).c_str());
  164. conf_set_int(conf, CONF_port, Data->PortNumber);
  165. conf_set_int(conf, CONF_protocol, PROT_SSH);
  166. conf_set_bool(conf, CONF_change_password, Data->ChangePassword);
  167. // always set 0, as we will handle keepalives ourselves to avoid
  168. // multi-threaded issues in putty timer list
  169. conf_set_int(conf, CONF_ping_interval, 0);
  170. conf_set_bool(conf, CONF_compression, Data->Compression);
  171. conf_set_bool(conf, CONF_tryagent, Data->TryAgent);
  172. conf_set_bool(conf, CONF_agentfwd, Data->AgentFwd);
  173. conf_set_int(conf, CONF_addressfamily, Data->AddressFamily);
  174. conf_set_str(conf, CONF_ssh_rekey_data, AnsiString(Data->RekeyData).c_str());
  175. conf_set_int(conf, CONF_ssh_rekey_time, Data->RekeyTime);
  176. DebugAssert(CIPHER_MAX == CIPHER_COUNT);
  177. for (int c = 0; c < CIPHER_COUNT; c++)
  178. {
  179. int pcipher;
  180. switch (Data->Cipher[c]) {
  181. case cipWarn: pcipher = CIPHER_WARN; break;
  182. case cip3DES: pcipher = CIPHER_3DES; break;
  183. case cipBlowfish: pcipher = CIPHER_BLOWFISH; break;
  184. case cipAES: pcipher = CIPHER_AES; break;
  185. case cipDES: pcipher = CIPHER_DES; break;
  186. case cipArcfour: pcipher = CIPHER_ARCFOUR; break;
  187. case cipChaCha20: pcipher = CIPHER_CHACHA20; break;
  188. default: DebugFail();
  189. }
  190. conf_set_int_int(conf, CONF_ssh_cipherlist, c, pcipher);
  191. }
  192. DebugAssert(KEX_MAX == KEX_COUNT);
  193. for (int k = 0; k < KEX_COUNT; k++)
  194. {
  195. int pkex;
  196. switch (Data->Kex[k]) {
  197. case kexWarn: pkex = KEX_WARN; break;
  198. case kexDHGroup1: pkex = KEX_DHGROUP1; break;
  199. case kexDHGroup14: pkex = KEX_DHGROUP14; break;
  200. case kexDHGEx: pkex = KEX_DHGEX; break;
  201. case kexRSA: pkex = KEX_RSA; break;
  202. case kexECDH: pkex = KEX_ECDH; break;
  203. default: DebugFail();
  204. }
  205. conf_set_int_int(conf, CONF_ssh_kexlist, k, pkex);
  206. }
  207. DebugAssert(HK_MAX == HOSTKEY_COUNT);
  208. for (int h = 0; h < HOSTKEY_COUNT; h++)
  209. {
  210. int phk;
  211. switch (Data->HostKeys[h]) {
  212. case hkWarn: phk = HK_WARN; break;
  213. case hkRSA: phk = HK_RSA; break;
  214. case hkDSA: phk = hkDSA; break;
  215. case hkECDSA: phk = HK_ECDSA; break;
  216. case hkED25519: phk = HK_ED25519; break;
  217. case hkED448: phk = HK_ED448; break;
  218. default: DebugFail();
  219. }
  220. conf_set_int_int(conf, CONF_ssh_hklist, h, phk);
  221. }
  222. DebugAssert(ngsslibs == GSSLIB_COUNT);
  223. for (int g = 0; g < GSSLIB_COUNT; g++)
  224. {
  225. int pgsslib;
  226. switch (Data->GssLib[g]) {
  227. case gssGssApi32: pgsslib = 0; break;
  228. case gssSspi: pgsslib = 1; break;
  229. case gssCustom: pgsslib = 2; break;
  230. default: DebugFail();
  231. }
  232. conf_set_int_int(conf, CONF_ssh_gsslist, g, pgsslib);
  233. }
  234. Filename * GssLibCustomFileName = filename_from_str(UTF8String(Data->GssLibCustom).c_str());
  235. conf_set_filename(conf, CONF_ssh_gss_custom, GssLibCustomFileName);
  236. filename_free(GssLibCustomFileName);
  237. Filename * KeyFileFileName = filename_from_str(UTF8String(Data->ResolvePublicKeyFile()).c_str());
  238. conf_set_filename(conf, CONF_keyfile, KeyFileFileName);
  239. filename_free(KeyFileFileName);
  240. conf_set_bool(conf, CONF_ssh2_des_cbc, Data->Ssh2DES);
  241. conf_set_bool(conf, CONF_ssh_no_userauth, Data->SshNoUserAuth);
  242. conf_set_bool(conf, CONF_try_ki_auth, Data->AuthKI);
  243. conf_set_bool(conf, CONF_try_gssapi_auth, Data->AuthGSSAPI);
  244. conf_set_bool(conf, CONF_try_gssapi_kex, Data->AuthGSSAPIKEX);
  245. conf_set_bool(conf, CONF_gssapifwd, Data->GSSAPIFwdTGT);
  246. conf_set_bool(conf, CONF_change_username, Data->ChangeUsername);
  247. conf_set_int(conf, CONF_proxy_type, Data->ProxyMethod);
  248. conf_set_str(conf, CONF_proxy_host, AnsiString(Data->ProxyHost).c_str());
  249. conf_set_int(conf, CONF_proxy_port, Data->ProxyPort);
  250. conf_set_str(conf, CONF_proxy_username, UTF8String(Data->ProxyUsername).c_str());
  251. conf_set_str(conf, CONF_proxy_password, UTF8String(Data->ProxyPassword).c_str());
  252. if (Data->ProxyMethod == pmCmd)
  253. {
  254. conf_set_str(conf, CONF_proxy_telnet_command, AnsiString(Data->ProxyLocalCommand).c_str());
  255. }
  256. else
  257. {
  258. conf_set_str(conf, CONF_proxy_telnet_command, AnsiString(Data->ProxyTelnetCommand).c_str());
  259. }
  260. conf_set_int(conf, CONF_proxy_dns, Data->ProxyDNS);
  261. conf_set_bool(conf, CONF_even_proxy_localhost, Data->ProxyLocalhost);
  262. conf_set_int(conf, CONF_sshbug_hmac2, Data->Bug[sbHMAC2]);
  263. conf_set_int(conf, CONF_sshbug_derivekey2, Data->Bug[sbDeriveKey2]);
  264. conf_set_int(conf, CONF_sshbug_rsapad2, Data->Bug[sbRSAPad2]);
  265. conf_set_int(conf, CONF_sshbug_rekey2, Data->Bug[sbRekey2]);
  266. conf_set_int(conf, CONF_sshbug_pksessid2, Data->Bug[sbPKSessID2]);
  267. conf_set_int(conf, CONF_sshbug_maxpkt2, Data->Bug[sbMaxPkt2]);
  268. conf_set_int(conf, CONF_sshbug_ignore2, Data->Bug[sbIgnore2]);
  269. conf_set_int(conf, CONF_sshbug_winadj, Data->Bug[sbWinAdj]);
  270. conf_set_int(conf, CONF_sshbug_oldgex2, Data->Bug[sbOldGex2]);
  271. conf_set_int(conf, CONF_sshbug_chanreq, Data->Bug[sbChanReq]);
  272. if (!Data->TunnelPortFwd.IsEmpty())
  273. {
  274. DebugAssert(!Simple);
  275. UnicodeString TunnelPortFwd = Data->TunnelPortFwd;
  276. while (!TunnelPortFwd.IsEmpty())
  277. {
  278. UnicodeString Buf = CutToChar(TunnelPortFwd, L',', true);
  279. AnsiString Key = AnsiString(CutToChar(Buf, L'\t', true));
  280. AnsiString Value = AnsiString(Buf);
  281. conf_set_str_str(conf, CONF_portfwd, Key.c_str(), Value.c_str());
  282. }
  283. // when setting up a tunnel, do not open shell/sftp
  284. conf_set_bool(conf, CONF_ssh_no_shell, TRUE);
  285. }
  286. else
  287. {
  288. DebugAssert(Simple);
  289. conf_set_bool(conf, CONF_ssh_simple, Data->SshSimple && Simple);
  290. if (Data->FSProtocol == fsSCPonly)
  291. {
  292. conf_set_bool(conf, CONF_ssh_subsys, FALSE);
  293. if (Data->Shell.IsEmpty())
  294. {
  295. // Following forces Putty to open default shell
  296. // see ssh.c: do_ssh2_authconn() and ssh1_protocol()
  297. conf_set_str(conf, CONF_remote_cmd, "");
  298. }
  299. else
  300. {
  301. conf_set_str(conf, CONF_remote_cmd, AnsiString(Data->Shell).c_str());
  302. }
  303. conf_set_bool(conf, CONF_force_remote_cmd2, 0);
  304. }
  305. else
  306. {
  307. if (Data->SftpServer.IsEmpty())
  308. {
  309. conf_set_bool(conf, CONF_ssh_subsys, TRUE);
  310. conf_set_str(conf, CONF_remote_cmd, "sftp");
  311. }
  312. else
  313. {
  314. conf_set_bool(conf, CONF_ssh_subsys, FALSE);
  315. conf_set_str(conf, CONF_remote_cmd, AnsiString(Data->SftpServer).c_str());
  316. }
  317. if (Data->FSProtocol != fsSFTPonly)
  318. {
  319. conf_set_bool(conf, CONF_ssh_subsys2, FALSE);
  320. if (Data->Shell.IsEmpty())
  321. {
  322. // Following forces Putty to open default shell
  323. // see ssh.c: do_ssh2_authconn() and ssh1_protocol()
  324. conf_set_str(conf, CONF_remote_cmd2, "");
  325. // PuTTY ignores CONF_remote_cmd2 set to "",
  326. // so we have to enforce it
  327. // (CONF_force_remote_cmd2 is our config option)
  328. conf_set_bool(conf, CONF_force_remote_cmd2, 1);
  329. }
  330. else
  331. {
  332. conf_set_str(conf, CONF_remote_cmd2, AnsiString(Data->Shell).c_str());
  333. }
  334. }
  335. else
  336. {
  337. if (Data->SftpServer.IsEmpty())
  338. {
  339. // see psftp_connect() from psftp.c
  340. conf_set_bool(conf, CONF_ssh_subsys2, FALSE);
  341. conf_set_str(conf, CONF_remote_cmd2,
  342. "test -x /usr/lib/sftp-server && exec /usr/lib/sftp-server\n"
  343. "test -x /usr/local/lib/sftp-server && exec /usr/local/lib/sftp-server\n"
  344. "exec sftp-server");
  345. }
  346. else
  347. {
  348. conf_set_bool(conf, CONF_force_remote_cmd2, 0);
  349. }
  350. }
  351. }
  352. }
  353. conf_set_int(conf, CONF_connect_timeout, Data->Timeout * MSecsPerSec);
  354. conf_set_int(conf, CONF_sndbuf, Data->SendBuf);
  355. conf_set_str(conf, CONF_srcaddr, AnsiString(Data->SourceAddress).c_str());
  356. // permanent settings
  357. conf_set_bool(conf, CONF_nopty, TRUE);
  358. conf_set_bool(conf, CONF_tcp_keepalives, 0);
  359. conf_set_bool(conf, CONF_ssh_show_banner, TRUE);
  360. conf_set_int(conf, CONF_proxy_log_to_term, FORCE_OFF);
  361. conf_set_str(conf, CONF_loghost, AnsiString(Data->LogicalHostName).c_str());
  362. return conf;
  363. }
  364. //---------------------------------------------------------------------------
  365. static void eventlog(LogPolicy * ALogPolicy, const char * string)
  366. {
  367. static_cast<ScpLogPolicy *>(ALogPolicy)->SecureShell->PuttyLogEvent(string);
  368. }
  369. //---------------------------------------------------------------------------
  370. static const LogPolicyVtable ScpLogPolicyVTable =
  371. {
  372. eventlog,
  373. NULL, // Should never be called
  374. NULL, // Should never be called
  375. null_lp_verbose_no, // Should never be called
  376. };
  377. //---------------------------------------------------------------------------
  378. void __fastcall TSecureShell::Open()
  379. {
  380. ResetConnection();
  381. FAuthenticating = false;
  382. FAuthenticated = false;
  383. FLastSendBufferUpdate = 0;
  384. // do not use UTF-8 until decided otherwise (see TSCPFileSystem::DetectUtf())
  385. FUtfStrings = false;
  386. FActive = false;
  387. FAuthenticationLog = L"";
  388. FNoConnectionResponse = false;
  389. FUI->Information(LoadStr(STATUS_LOOKUPHOST), true);
  390. try
  391. {
  392. char * RealHost;
  393. FreeBackend(); // in case we are reconnecting
  394. const char * InitError;
  395. Conf * conf = StoreToConfig(FSessionData, Simple);
  396. FSendBuf = FSessionData->SendBuf;
  397. FSeat = new ScpSeat(this);
  398. FLogPolicy = new ScpLogPolicy();
  399. FLogPolicy->vt = &ScpLogPolicyVTable;
  400. FLogPolicy->SecureShell = this;
  401. FLogPolicy->Seat = FSeat;
  402. try
  403. {
  404. FLogCtx = log_init(FLogPolicy, conf);
  405. InitError = backend_init(&ssh_backend, FSeat, &FBackendHandle, FLogCtx, conf,
  406. AnsiString(FSessionData->HostNameExpanded).c_str(), FSessionData->PortNumber, &RealHost,
  407. (FSessionData->TcpNoDelay ? 1 : 0),
  408. conf_get_bool(conf, CONF_tcp_keepalives));
  409. }
  410. __finally
  411. {
  412. conf_free(conf);
  413. }
  414. sfree(RealHost);
  415. if (InitError)
  416. {
  417. PuttyFatalError(InitError);
  418. }
  419. FUI->Information(LoadStr(STATUS_CONNECT), true);
  420. if (!Active && DebugAlwaysTrue(HasLocalProxy()))
  421. {
  422. FActive = true;
  423. }
  424. Init();
  425. CheckConnection(CONNECTION_FAILED);
  426. }
  427. catch (Exception & E)
  428. {
  429. if (FNoConnectionResponse && TryFtp())
  430. {
  431. Configuration->Usage->Inc(L"ProtocolSuggestions");
  432. // HELP_FTP_SUGGESTION won't be used as all errors that set
  433. // FNoConnectionResponse have already their own help keyword
  434. FUI->FatalError(&E, LoadStr(FTP_SUGGESTION), HELP_FTP_SUGGESTION);
  435. }
  436. else
  437. {
  438. throw;
  439. }
  440. }
  441. FLastDataSent = Now();
  442. FSessionInfo.LoginTime = Now();
  443. FAuthenticating = false;
  444. FAuthenticated = true;
  445. FUI->Information(LoadStr(STATUS_AUTHENTICATED), true);
  446. ResetSessionInfo();
  447. DebugAssert(!FSessionInfo.SshImplementation.IsEmpty());
  448. FOpened = true;
  449. UnicodeString SshImplementation = GetSessionInfo().SshImplementation;
  450. if (IsOpenSSH(SshImplementation))
  451. {
  452. FSshImplementation = sshiOpenSSH;
  453. }
  454. // e.g. "mod_sftp/0.9.8"
  455. else if (SshImplementation.Pos(L"mod_sftp") == 1)
  456. {
  457. FSshImplementation = sshiProFTPD;
  458. }
  459. // e.g. "5.25 FlowSsh: Bitvise SSH Server (WinSSHD) 6.07: free only for personal non-commercial use"
  460. else if (SshImplementation.Pos(L"FlowSsh") > 0)
  461. {
  462. FSshImplementation = sshiBitvise;
  463. }
  464. // e.g. "srtSSHServer_10.00"
  465. else if (ContainsText(SshImplementation, L"srtSSHServer"))
  466. {
  467. FSshImplementation = sshiTitan;
  468. }
  469. else if (ContainsText(FSessionInfo.SshImplementation, L"OpenVMS"))
  470. {
  471. FSshImplementation = sshiOpenVMS;
  472. }
  473. else if (ContainsText(FSessionInfo.SshImplementation, L"CerberusFTPServer"))
  474. {
  475. FSshImplementation = sshiCerberus;
  476. }
  477. else
  478. {
  479. FSshImplementation = sshiUnknown;
  480. }
  481. }
  482. //---------------------------------------------------------------------------
  483. bool __fastcall TSecureShell::TryFtp()
  484. {
  485. bool Result;
  486. if (!FConfiguration->TryFtpWhenSshFails)
  487. {
  488. Result = false;
  489. }
  490. else
  491. {
  492. if (((FSessionData->FSProtocol != fsSFTP) && (FSessionData->FSProtocol != fsSFTPonly)) ||
  493. (FSessionData->PortNumber != SshPortNumber) ||
  494. FSessionData->Tunnel || (FSessionData->ProxyMethod != ::pmNone))
  495. {
  496. LogEvent(L"Using non-standard protocol or port, tunnel or proxy, will not knock FTP port.");
  497. Result = false;
  498. }
  499. else
  500. {
  501. LogEvent(L"Knocking FTP port.");
  502. SOCKET Socket = socket(AF_INET, SOCK_STREAM, 0);
  503. Result = (Socket != INVALID_SOCKET);
  504. if (Result)
  505. {
  506. LPHOSTENT HostEntry = gethostbyname(AnsiString(FSessionData->HostNameExpanded).c_str());
  507. Result = (HostEntry != NULL);
  508. if (Result)
  509. {
  510. SOCKADDR_IN Address;
  511. memset(&Address, 0, sizeof(Address));
  512. Address.sin_family = AF_INET;
  513. int Port = FtpPortNumber;
  514. Address.sin_port = htons(static_cast<short>(Port));
  515. Address.sin_addr.s_addr = *((unsigned long *)*HostEntry->h_addr_list);
  516. HANDLE Event = CreateEvent(NULL, false, false, NULL);
  517. Result = (WSAEventSelect(Socket, (WSAEVENT)Event, FD_CONNECT | FD_CLOSE) != SOCKET_ERROR);
  518. if (Result)
  519. {
  520. Result =
  521. (connect(Socket, reinterpret_cast<sockaddr *>(&Address), sizeof(Address)) != SOCKET_ERROR) ||
  522. (WSAGetLastError() == WSAEWOULDBLOCK);
  523. if (Result)
  524. {
  525. Result = (WaitForSingleObject(Event, 2000) == WAIT_OBJECT_0);
  526. }
  527. }
  528. CloseHandle(Event);
  529. }
  530. closesocket(Socket);
  531. }
  532. if (Result)
  533. {
  534. LogEvent(L"FTP port opened, will suggest using FTP protocol.");
  535. }
  536. else
  537. {
  538. LogEvent(L"FTP port did not open.");
  539. }
  540. }
  541. }
  542. return Result;
  543. }
  544. //---------------------------------------------------------------------------
  545. void __fastcall TSecureShell::Init()
  546. {
  547. try
  548. {
  549. try
  550. {
  551. // Recent pscp checks backend_exitcode(FBackendHandle) in the loop
  552. // (see comment in putty revision 8110)
  553. // It seems that we do not need to do it.
  554. while (!winscp_query(FBackendHandle, WINSCP_QUERY_MAIN_CHANNEL))
  555. {
  556. if (Configuration->ActualLogProtocol >= 1)
  557. {
  558. LogEvent(L"Waiting for the server to continue with the initialization");
  559. }
  560. WaitForData();
  561. }
  562. }
  563. catch(Exception & E)
  564. {
  565. if (FAuthenticating && !FAuthenticationLog.IsEmpty())
  566. {
  567. FUI->FatalError(&E, FMTLOAD(AUTHENTICATION_LOG, (FAuthenticationLog)));
  568. }
  569. else
  570. {
  571. throw;
  572. }
  573. }
  574. }
  575. catch(Exception & E)
  576. {
  577. if (FAuthenticating)
  578. {
  579. FUI->FatalError(&E, LoadStr(AUTHENTICATION_FAILED));
  580. }
  581. else
  582. {
  583. throw;
  584. }
  585. }
  586. }
  587. //---------------------------------------------------------------------------
  588. struct callback_set * TSecureShell::GetCallbackSet()
  589. {
  590. return FCallbackSet.get();
  591. }
  592. //---------------------------------------------------------------------------
  593. UnicodeString __fastcall TSecureShell::ConvertFromPutty(const char * Str, int Length)
  594. {
  595. int BomLength = strlen(WINSCP_BOM);
  596. if ((Length >= BomLength) &&
  597. (strncmp(Str, WINSCP_BOM, BomLength) == 0))
  598. {
  599. return UTF8ToString(Str + BomLength, Length - BomLength);
  600. }
  601. else
  602. {
  603. return AnsiToString(Str, Length);
  604. }
  605. }
  606. //---------------------------------------------------------------------------
  607. const UnicodeString ServerVersionMsg(L"Remote version: ");
  608. const UnicodeString ForwardingFailureMsg(L"Forwarded connection refused by remote");
  609. const UnicodeString LocalPortMsg(L"Local port ");
  610. const UnicodeString ForwadingToMsg(L" forwarding to ");
  611. const UnicodeString FailedMsg(L" failed:");
  612. //---------------------------------------------------------------------------
  613. void __fastcall TSecureShell::PuttyLogEvent(const char * AStr)
  614. {
  615. UnicodeString Str = ConvertFromPutty(AStr, strlen(AStr));
  616. // Gross hack
  617. if (StartsStr(ServerVersionMsg, Str))
  618. {
  619. FSessionInfo.SshVersionString = RightStr(Str, Str.Length() - ServerVersionMsg.Length());
  620. const wchar_t * Ptr = wcschr(FSessionInfo.SshVersionString.c_str(), L'-');
  621. if (Ptr != NULL)
  622. {
  623. Ptr = wcschr(Ptr + 1, L'-');
  624. }
  625. FSessionInfo.SshImplementation = (Ptr != NULL) ? Ptr + 1 : L"";
  626. }
  627. else if (StartsStr(ForwardingFailureMsg, Str))
  628. {
  629. if (ForwardingFailureMsg == Str)
  630. {
  631. FLastTunnelError = Str;
  632. }
  633. else
  634. {
  635. FLastTunnelError = RightStr(Str, Str.Length() - ForwardingFailureMsg.Length());
  636. UnicodeString Prefix(L": ");
  637. if (StartsStr(Prefix, FLastTunnelError))
  638. {
  639. FLastTunnelError.Delete(1, Prefix.Length());
  640. }
  641. static const TPuttyTranslation Translation[] = {
  642. { L"Administratively prohibited [%]", PFWD_TRANSL_ADMIN },
  643. { L"Connect failed [%]", PFWD_TRANSL_CONNECT },
  644. };
  645. TranslatePuttyMessage(Translation, LENOF(Translation), FLastTunnelError);
  646. }
  647. }
  648. else if (StartsStr(LocalPortMsg, Str) && ContainsStr(Str, ForwadingToMsg) && ContainsStr(Str, FailedMsg))
  649. {
  650. FLastTunnelError = Str;
  651. }
  652. LogEvent(Str);
  653. }
  654. //---------------------------------------------------------------------------
  655. TPromptKind __fastcall TSecureShell::IdentifyPromptKind(UnicodeString & Name)
  656. {
  657. // beware of changing order
  658. static const TPuttyTranslation NameTranslation[] = {
  659. { L"SSH login name", USERNAME_TITLE },
  660. { L"SSH key passphrase", PASSPHRASE_TITLE },
  661. { L"SSH TIS authentication", SERVER_PROMPT_TITLE },
  662. { L"SSH CryptoCard authentication", SERVER_PROMPT_TITLE },
  663. { L"SSH server: %", SERVER_PROMPT_TITLE2 },
  664. { L"SSH server authentication", SERVER_PROMPT_TITLE },
  665. { L"SSH password", PASSWORD_TITLE },
  666. { L"New SSH password", NEW_PASSWORD_TITLE },
  667. { L"SOCKS proxy authentication", PROXY_AUTH_TITLE },
  668. };
  669. int Index = TranslatePuttyMessage(NameTranslation, LENOF(NameTranslation), Name);
  670. TPromptKind PromptKind;
  671. if (Index == 0) // username
  672. {
  673. PromptKind = pkUserName;
  674. }
  675. else if (Index == 1) // passphrase
  676. {
  677. PromptKind = pkPassphrase;
  678. }
  679. else if (Index == 2) // TIS
  680. {
  681. PromptKind = pkTIS;
  682. }
  683. else if (Index == 3) // CryptoCard
  684. {
  685. PromptKind = pkCryptoCard;
  686. }
  687. else if ((Index == 4) || (Index == 5))
  688. {
  689. PromptKind = pkKeybInteractive;
  690. }
  691. else if (Index == 6)
  692. {
  693. PromptKind = pkPassword;
  694. }
  695. else if (Index == 7)
  696. {
  697. PromptKind = pkNewPassword;
  698. }
  699. else if (Index == 8)
  700. {
  701. PromptKind = pkProxyAuth;
  702. }
  703. else
  704. {
  705. PromptKind = pkPrompt;
  706. DebugFail();
  707. }
  708. return PromptKind;
  709. }
  710. //---------------------------------------------------------------------------
  711. bool __fastcall TSecureShell::PromptUser(bool /*ToServer*/,
  712. UnicodeString AName, bool /*NameRequired*/,
  713. UnicodeString Instructions, bool InstructionsRequired,
  714. TStrings * Prompts, TStrings * Results)
  715. {
  716. // there can be zero prompts!
  717. DebugAssert(Results->Count == Prompts->Count);
  718. UnicodeString Name = AName;
  719. TPromptKind PromptKind = IdentifyPromptKind(Name);
  720. const TPuttyTranslation * InstructionTranslation = NULL;
  721. const TPuttyTranslation * PromptTranslation = NULL;
  722. size_t PromptTranslationCount = 1;
  723. UnicodeString PromptDesc;
  724. if (PromptKind == pkUserName)
  725. {
  726. static const TPuttyTranslation UsernamePromptTranslation[] = {
  727. { L"login as: ", USERNAME_PROMPT2 },
  728. };
  729. PromptTranslation = UsernamePromptTranslation;
  730. PromptDesc = L"username";
  731. }
  732. else if (PromptKind == pkPassphrase)
  733. {
  734. static const TPuttyTranslation PassphrasePromptTranslation[] = {
  735. { L"Passphrase for key \"%\": ", PROMPT_KEY_PASSPHRASE },
  736. };
  737. PromptTranslation = PassphrasePromptTranslation;
  738. PromptDesc = L"passphrase";
  739. }
  740. else if (PromptKind == pkTIS)
  741. {
  742. static const TPuttyTranslation TISInstructionTranslation[] = {
  743. { L"Using TIS authentication.%", TIS_INSTRUCTION },
  744. };
  745. static const TPuttyTranslation TISPromptTranslation[] = {
  746. { L"Response: ", PROMPT_PROMPT },
  747. };
  748. InstructionTranslation = TISInstructionTranslation;
  749. PromptTranslation = TISPromptTranslation;
  750. PromptDesc = L"tis";
  751. }
  752. else if (PromptKind == pkCryptoCard)
  753. {
  754. static const TPuttyTranslation CryptoCardInstructionTranslation[] = {
  755. { L"Using CryptoCard authentication.%", CRYPTOCARD_INSTRUCTION },
  756. };
  757. static const TPuttyTranslation CryptoCardPromptTranslation[] = {
  758. { L"Response: ", PROMPT_PROMPT },
  759. };
  760. InstructionTranslation = CryptoCardInstructionTranslation;
  761. PromptTranslation = CryptoCardPromptTranslation;
  762. PromptDesc = L"cryptocard";
  763. }
  764. else if (PromptKind == pkKeybInteractive)
  765. {
  766. static const TPuttyTranslation KeybInteractiveInstructionTranslation[] = {
  767. { L"Using keyboard-interactive authentication.%", KEYBINTER_INSTRUCTION },
  768. };
  769. static const TPuttyTranslation KeybInteractivePromptTranslation[] = {
  770. // as used by Linux-PAM (pam_exec/pam_exec.c, libpam/pam_get_authtok.c,
  771. // pam_unix/pam_unix_auth.c, pam_userdb/pam_userdb.c)
  772. { L"Password: ", PASSWORD_PROMPT },
  773. };
  774. InstructionTranslation = KeybInteractiveInstructionTranslation;
  775. PromptTranslation = KeybInteractivePromptTranslation;
  776. PromptDesc = L"keyboard interactive";
  777. }
  778. else if (PromptKind == pkPassword)
  779. {
  780. DebugAssert(Prompts->Count == 1);
  781. Prompts->Strings[0] = LoadStr(PASSWORD_PROMPT);
  782. PromptDesc = L"password";
  783. }
  784. else if (PromptKind == pkNewPassword)
  785. {
  786. // Can be tested with WS_FTP server
  787. static const TPuttyTranslation NewPasswordPromptTranslation[] = {
  788. { L"Current password (blank for previously entered password): ", NEW_PASSWORD_CURRENT_PROMPT },
  789. { L"Enter new password: ", NEW_PASSWORD_NEW_PROMPT },
  790. { L"Confirm new password: ", NEW_PASSWORD_CONFIRM_PROMPT },
  791. };
  792. PromptTranslation = NewPasswordPromptTranslation;
  793. PromptTranslationCount = LENOF(NewPasswordPromptTranslation);
  794. PromptDesc = L"new password";
  795. }
  796. else if (PromptKind == pkProxyAuth)
  797. {
  798. static const TPuttyTranslation ProxyAuthPromptTranslation[] = {
  799. { L"Proxy username: ", PROXY_AUTH_USERNAME_PROMPT },
  800. { L"Proxy password: ", PROXY_AUTH_PASSWORD_PROMPT },
  801. };
  802. PromptTranslation = ProxyAuthPromptTranslation;
  803. PromptTranslationCount = LENOF(ProxyAuthPromptTranslation);
  804. PromptDesc = L"proxy authentication";
  805. }
  806. else
  807. {
  808. PromptDesc = L"unknown";
  809. DebugFail();
  810. }
  811. UnicodeString InstructionsLog =
  812. (Instructions.IsEmpty() ? UnicodeString(L"<no instructions>") : FORMAT(L"\"%s\"", (Instructions)));
  813. UnicodeString PromptsLog =
  814. (Prompts->Count > 0 ? FORMAT(L"\"%s\"", (Prompts->Strings[0])) : UnicodeString(L"<no prompt>")) +
  815. (Prompts->Count > 1 ? FORMAT(L" + %d more", (Prompts->Count - 1)) : UnicodeString());
  816. LogEvent(FORMAT(L"Prompt (%s, \"%s\", %s, %s)", (PromptDesc, AName, InstructionsLog, PromptsLog)));
  817. Name = Name.Trim();
  818. if (InstructionTranslation != NULL)
  819. {
  820. TranslatePuttyMessage(InstructionTranslation, 1, Instructions);
  821. }
  822. // some servers add leading or trailing blank line to make the prompt look prettier
  823. // on terminal console
  824. Instructions = Instructions.Trim();
  825. for (int Index = 0; Index < Prompts->Count; Index++)
  826. {
  827. UnicodeString Prompt = Prompts->Strings[Index];
  828. if (PromptTranslation != NULL)
  829. {
  830. TranslatePuttyMessage(PromptTranslation, PromptTranslationCount, Prompt);
  831. }
  832. // some servers add leading blank line to make the prompt look prettier
  833. // on terminal console
  834. Prompts->Strings[Index] = Prompt.Trim();
  835. }
  836. bool Result = false;
  837. if ((PromptKind == pkTIS) || (PromptKind == pkCryptoCard) ||
  838. (PromptKind == pkKeybInteractive))
  839. {
  840. if (FSessionData->AuthKIPassword && !FSessionData->Password.IsEmpty() &&
  841. !FStoredPasswordTriedForKI && (Prompts->Count == 1) &&
  842. FLAGCLEAR(int(Prompts->Objects[0]), pupEcho))
  843. {
  844. LogEvent(L"Using stored password.");
  845. FUI->Information(LoadStr(AUTH_PASSWORD), false);
  846. Result = true;
  847. Results->Strings[0] = NormalizeString(FSessionData->Password);
  848. FStoredPasswordTriedForKI = true;
  849. }
  850. else if (Instructions.IsEmpty() && !InstructionsRequired && (Prompts->Count == 0))
  851. {
  852. LogEvent(L"Ignoring empty SSH server authentication request");
  853. Result = true;
  854. }
  855. }
  856. else if (PromptKind == pkPassword)
  857. {
  858. if (!FSessionData->Password.IsEmpty() && !FStoredPasswordTried)
  859. {
  860. LogEvent(L"Using stored password.");
  861. FUI->Information(LoadStr(AUTH_PASSWORD), false);
  862. Result = true;
  863. Results->Strings[0] = NormalizeString(FSessionData->Password);
  864. FStoredPasswordTried = true;
  865. }
  866. }
  867. else if (PromptKind == pkPassphrase)
  868. {
  869. if (!FSessionData->Passphrase.IsEmpty() && !FStoredPassphraseTried)
  870. {
  871. LogEvent(L"Using configured passphrase.");
  872. Result = true;
  873. Results->Strings[0] = FSessionData->Passphrase;
  874. FStoredPassphraseTried = true;
  875. }
  876. }
  877. else if (PromptKind == pkNewPassword)
  878. {
  879. if (FSessionData->ChangePassword)
  880. {
  881. FUI->Information(LoadStr(AUTH_CHANGING_PASSWORD), false);
  882. if (!FSessionData->Password.IsEmpty() && !FSessionData->NewPassword.IsEmpty() && !FStoredPasswordTried)
  883. {
  884. LogEvent(L"Using stored password and new password.");
  885. Result = true;
  886. DebugAssert(Results->Count == 3);
  887. Results->Strings[0] = NormalizeString(FSessionData->Password);
  888. Results->Strings[1] = NormalizeString(FSessionData->NewPassword);
  889. Results->Strings[2] = NormalizeString(FSessionData->NewPassword);
  890. FStoredPasswordTried = true;
  891. }
  892. }
  893. }
  894. if (!Result)
  895. {
  896. LogEvent(L"Prompting user for the credentials.");
  897. Result = FUI->PromptUser(FSessionData,
  898. PromptKind, Name, Instructions, Prompts, Results);
  899. if (!Result)
  900. {
  901. LogEvent(L"Prompt cancelled.");
  902. }
  903. else
  904. {
  905. if ((Prompts->Count >= 1) &&
  906. (FLAGSET(int(Prompts->Objects[0]), pupEcho) || Configuration->LogSensitive))
  907. {
  908. LogEvent(FORMAT(L"Response: \"%s\"", (Results->Strings[0])));
  909. }
  910. else
  911. {
  912. LogEvent("Prompt responded.");
  913. }
  914. if ((PromptKind == pkUserName) && (Prompts->Count == 1))
  915. {
  916. FUserName = Results->Strings[0];
  917. }
  918. }
  919. }
  920. return Result;
  921. }
  922. //---------------------------------------------------------------------------
  923. void __fastcall TSecureShell::GotHostKey()
  924. {
  925. // due to re-key GotHostKey() may be called again later during session
  926. if (!FAuthenticating && !FAuthenticated)
  927. {
  928. FAuthenticating = true;
  929. if (!FSessionData->ChangePassword)
  930. {
  931. FUI->Information(LoadStr(STATUS_AUTHENTICATE), true);
  932. }
  933. }
  934. }
  935. //---------------------------------------------------------------------------
  936. void __fastcall TSecureShell::CWrite(const char * Data, size_t Length)
  937. {
  938. // some messages to stderr may indicate that something has changed with the
  939. // session, so reset the session info
  940. ResetSessionInfo();
  941. // We send only whole line at once, so we have to cache incoming data
  942. FCWriteTemp += DeleteChar(ConvertFromPutty(Data, Length), L'\r');
  943. UnicodeString Line;
  944. // Do we have at least one complete line in std error cache?
  945. while (FCWriteTemp.Pos(L"\n") > 0)
  946. {
  947. UnicodeString Line = CutToChar(FCWriteTemp, L'\n', false);
  948. FLog->Add(llStdError, Line);
  949. if (FAuthenticating)
  950. {
  951. TranslateAuthenticationMessage(Line);
  952. FAuthenticationLog += (FAuthenticationLog.IsEmpty() ? L"" : L"\n") + Line;
  953. }
  954. FUI->Information(Line, false);
  955. }
  956. }
  957. //---------------------------------------------------------------------------
  958. void __fastcall TSecureShell::RegisterReceiveHandler(TNotifyEvent Handler)
  959. {
  960. DebugAssert(FOnReceive == NULL);
  961. FOnReceive = Handler;
  962. }
  963. //---------------------------------------------------------------------------
  964. void __fastcall TSecureShell::UnregisterReceiveHandler(TNotifyEvent Handler)
  965. {
  966. DebugAssert(FOnReceive == Handler);
  967. DebugUsedParam(Handler);
  968. FOnReceive = NULL;
  969. }
  970. //---------------------------------------------------------------------------
  971. void __fastcall TSecureShell::FromBackend(const unsigned char * Data, size_t Length)
  972. {
  973. // Note that we do not apply ConvertFromPutty to Data yet (as opposite to CWrite).
  974. // as there's no use for this atm.
  975. CheckConnection();
  976. if (Configuration->ActualLogProtocol >= 1)
  977. {
  978. LogEvent(FORMAT(L"Received %u bytes", (static_cast<int>(Length))));
  979. }
  980. // Following is taken from scp.c from_backend() and modified
  981. const unsigned char *p = Data;
  982. unsigned Len = Length;
  983. // with event-select mechanism we can now receive data even before we
  984. // actually expect them (OutPtr can be NULL)
  985. if ((OutPtr != NULL) && (OutLen > 0) && (Len > 0))
  986. {
  987. unsigned Used = OutLen;
  988. if (Used > Len) Used = Len;
  989. memmove(OutPtr, p, Used);
  990. OutPtr += Used; OutLen -= Used;
  991. p += Used; Len -= Used;
  992. }
  993. if (Len > 0)
  994. {
  995. if (PendSize < PendLen + Len)
  996. {
  997. PendSize = PendLen + Len + 4096;
  998. Pending = (unsigned char *)
  999. (Pending ? srealloc(Pending, PendSize) : smalloc(PendSize));
  1000. if (!Pending) FatalError(L"Out of memory");
  1001. }
  1002. memmove(Pending + PendLen, p, Len);
  1003. PendLen += Len;
  1004. }
  1005. if (FOnReceive != NULL)
  1006. {
  1007. if (!FFrozen)
  1008. {
  1009. FFrozen = true;
  1010. try
  1011. {
  1012. do
  1013. {
  1014. FDataWhileFrozen = false;
  1015. FOnReceive(NULL);
  1016. }
  1017. while (FDataWhileFrozen);
  1018. }
  1019. __finally
  1020. {
  1021. FFrozen = false;
  1022. }
  1023. }
  1024. else
  1025. {
  1026. FDataWhileFrozen = true;
  1027. }
  1028. }
  1029. }
  1030. //---------------------------------------------------------------------------
  1031. bool __fastcall TSecureShell::Peek(unsigned char *& Buf, int Len)
  1032. {
  1033. bool Result = (int(PendLen) >= Len);
  1034. if (Result)
  1035. {
  1036. Buf = Pending;
  1037. }
  1038. return Result;
  1039. }
  1040. //---------------------------------------------------------------------------
  1041. Integer __fastcall TSecureShell::Receive(unsigned char * Buf, Integer Len)
  1042. {
  1043. CheckConnection();
  1044. if (Len > 0)
  1045. {
  1046. // Following is taken from scp.c ssh_scp_recv() and modified
  1047. OutPtr = Buf;
  1048. OutLen = Len;
  1049. try
  1050. {
  1051. /*
  1052. * See if the pending-input block contains some of what we
  1053. * need.
  1054. */
  1055. if (PendLen > 0)
  1056. {
  1057. unsigned PendUsed = PendLen;
  1058. if (PendUsed > OutLen)
  1059. {
  1060. PendUsed = OutLen;
  1061. }
  1062. memmove(OutPtr, Pending, PendUsed);
  1063. memmove(Pending, Pending + PendUsed, PendLen - PendUsed);
  1064. OutPtr += PendUsed;
  1065. OutLen -= PendUsed;
  1066. PendLen -= PendUsed;
  1067. if (PendLen == 0)
  1068. {
  1069. PendSize = 0;
  1070. sfree(Pending);
  1071. Pending = NULL;
  1072. }
  1073. }
  1074. while (OutLen > 0)
  1075. {
  1076. if (Configuration->ActualLogProtocol >= 1)
  1077. {
  1078. LogEvent(FORMAT(L"Waiting for another %u bytes", (static_cast<int>(OutLen))));
  1079. }
  1080. WaitForData();
  1081. }
  1082. // This seems ambiguous
  1083. if (Len <= 0) FatalError(LoadStr(LOST_CONNECTION));
  1084. }
  1085. __finally
  1086. {
  1087. OutPtr = NULL;
  1088. }
  1089. }
  1090. if (Configuration->ActualLogProtocol >= 1)
  1091. {
  1092. LogEvent(FORMAT(L"Read %u bytes (%d pending)",
  1093. (static_cast<int>(Len), static_cast<int>(PendLen))));
  1094. }
  1095. return Len;
  1096. }
  1097. //---------------------------------------------------------------------------
  1098. UnicodeString __fastcall TSecureShell::ReceiveLine()
  1099. {
  1100. unsigned Index;
  1101. RawByteString Line;
  1102. Boolean EOL = False;
  1103. do
  1104. {
  1105. // If there is any buffer of received chars
  1106. if (PendLen > 0)
  1107. {
  1108. Index = 0;
  1109. // Repeat until we walk thru whole buffer or reach end-of-line
  1110. while ((Index < PendLen) && (!Index || (Pending[Index-1] != '\n')))
  1111. {
  1112. Index++;
  1113. }
  1114. EOL = (Boolean)(Index && (Pending[Index-1] == '\n'));
  1115. Integer PrevLen = Line.Length();
  1116. Line.SetLength(PrevLen + Index);
  1117. Receive(reinterpret_cast<unsigned char *>(Line.c_str()) + PrevLen, Index);
  1118. }
  1119. // If buffer don't contain end-of-line character
  1120. // we read one more which causes receiving new buffer of chars
  1121. if (!EOL)
  1122. {
  1123. unsigned char Ch;
  1124. Receive(&Ch, 1);
  1125. Line += static_cast<char>(Ch);
  1126. EOL = (static_cast<char>(Ch) == '\n');
  1127. }
  1128. }
  1129. while (!EOL);
  1130. // We don't want end-of-line character
  1131. Line.SetLength(Line.Length()-1);
  1132. UnicodeString Result = ConvertInput(Line);
  1133. CaptureOutput(llOutput, Result);
  1134. return Result;
  1135. }
  1136. //---------------------------------------------------------------------------
  1137. UnicodeString __fastcall TSecureShell::ConvertInput(const RawByteString & Input)
  1138. {
  1139. UnicodeString Result;
  1140. if (UtfStrings)
  1141. {
  1142. Result = UTF8ToString(Input);
  1143. }
  1144. else
  1145. {
  1146. Result = AnsiToString(Input);
  1147. }
  1148. return Result;
  1149. }
  1150. //---------------------------------------------------------------------------
  1151. void __fastcall TSecureShell::SendSpecial(int Code)
  1152. {
  1153. if (Configuration->ActualLogProtocol >= 0)
  1154. {
  1155. LogEvent(FORMAT(L"Sending special code: %d", (Code)));
  1156. }
  1157. CheckConnection();
  1158. backend_special(FBackendHandle, (SessionSpecialCode)Code, 0);
  1159. CheckConnection();
  1160. FLastDataSent = Now();
  1161. }
  1162. //---------------------------------------------------------------------------
  1163. unsigned int __fastcall TSecureShell::TimeoutPrompt(TQueryParamsTimerEvent PoolEvent)
  1164. {
  1165. FWaiting++;
  1166. unsigned int Answer;
  1167. try
  1168. {
  1169. TQueryParams Params(qpFatalAbort | qpAllowContinueOnError | qpIgnoreAbort);
  1170. Params.HelpKeyword = HELP_MESSAGE_HOST_IS_NOT_COMMUNICATING;
  1171. Params.Timer = 500;
  1172. Params.TimerEvent = PoolEvent;
  1173. Params.TimerMessage = MainInstructionsFirstParagraph(FMTLOAD(TIMEOUT_STILL_WAITING3, (FSessionData->Timeout)));
  1174. Params.TimerAnswers = qaAbort;
  1175. Params.TimerQueryType = qtInformation;
  1176. if (FConfiguration->SessionReopenAutoStall > 0)
  1177. {
  1178. Params.Timeout = FConfiguration->SessionReopenAutoStall;
  1179. Params.TimeoutAnswer = qaAbort;
  1180. Params.TimeoutResponse = qaNo;
  1181. }
  1182. Answer = FUI->QueryUser(MainInstructions(FMTLOAD(CONFIRM_PROLONG_TIMEOUT3, (FSessionData->Timeout))),
  1183. NULL, qaRetry | qaAbort, &Params);
  1184. }
  1185. __finally
  1186. {
  1187. FWaiting--;
  1188. }
  1189. return Answer;
  1190. }
  1191. //---------------------------------------------------------------------------
  1192. void __fastcall TSecureShell::SendBuffer(unsigned int & Result)
  1193. {
  1194. // for comments see PoolForData
  1195. if (!Active)
  1196. {
  1197. Result = qaRetry;
  1198. }
  1199. else
  1200. {
  1201. try
  1202. {
  1203. if (backend_sendbuffer(FBackendHandle) <= MAX_BUFSIZE)
  1204. {
  1205. Result = qaOK;
  1206. }
  1207. }
  1208. catch(...)
  1209. {
  1210. Result = qaRetry;
  1211. }
  1212. }
  1213. }
  1214. //---------------------------------------------------------------------------
  1215. void TSecureShell::TimeoutAbort(unsigned int Answer)
  1216. {
  1217. FatalError(MainInstructions(LoadStr(Answer == qaAbort ? USER_TERMINATED : TIMEOUT_ERROR)));
  1218. }
  1219. //---------------------------------------------------------------------------
  1220. void __fastcall TSecureShell::DispatchSendBuffer(int BufSize)
  1221. {
  1222. TDateTime Start = Now();
  1223. do
  1224. {
  1225. CheckConnection();
  1226. if (Configuration->ActualLogProtocol >= 1)
  1227. {
  1228. LogEvent(FORMAT(L"There are %u bytes remaining in the send buffer, "
  1229. "need to send at least another %u bytes",
  1230. (BufSize, BufSize - MAX_BUFSIZE)));
  1231. }
  1232. EventSelectLoop(100, false, NULL);
  1233. BufSize = backend_sendbuffer(FBackendHandle);
  1234. if (Configuration->ActualLogProtocol >= 1)
  1235. {
  1236. LogEvent(FORMAT(L"There are %u bytes remaining in the send buffer", (BufSize)));
  1237. }
  1238. if (Now() - Start > FSessionData->TimeoutDT)
  1239. {
  1240. LogEvent(L"Waiting for dispatching send buffer timed out, asking user what to do.");
  1241. unsigned int Answer = TimeoutPrompt(SendBuffer);
  1242. switch (Answer)
  1243. {
  1244. case qaRetry:
  1245. Start = Now();
  1246. break;
  1247. case qaOK:
  1248. BufSize = 0;
  1249. break;
  1250. default:
  1251. DebugFail();
  1252. // fallthru
  1253. case qaAbort:
  1254. case qaNo:
  1255. TimeoutAbort(Answer);
  1256. break;
  1257. }
  1258. }
  1259. }
  1260. while (BufSize > MAX_BUFSIZE);
  1261. }
  1262. //---------------------------------------------------------------------------
  1263. void __fastcall TSecureShell::Send(const unsigned char * Buf, Integer Len)
  1264. {
  1265. CheckConnection();
  1266. backend_send(FBackendHandle, const_cast<char *>(reinterpret_cast<const char *>(Buf)), Len);
  1267. int BufSize = backend_sendbuffer(FBackendHandle);
  1268. if (Configuration->ActualLogProtocol >= 1)
  1269. {
  1270. LogEvent(FORMAT(L"Sent %u bytes", (static_cast<int>(Len))));
  1271. LogEvent(FORMAT(L"There are %u bytes remaining in the send buffer", (BufSize)));
  1272. }
  1273. FLastDataSent = Now();
  1274. // among other forces receive of pending data to free the servers's send buffer
  1275. EventSelectLoop(0, false, NULL);
  1276. if (BufSize > MAX_BUFSIZE)
  1277. {
  1278. DispatchSendBuffer(BufSize);
  1279. }
  1280. CheckConnection();
  1281. }
  1282. //---------------------------------------------------------------------------
  1283. void __fastcall TSecureShell::SendNull()
  1284. {
  1285. LogEvent(L"Sending NULL.");
  1286. unsigned char Null = 0;
  1287. Send(&Null, 1);
  1288. }
  1289. //---------------------------------------------------------------------------
  1290. void __fastcall TSecureShell::SendLine(const UnicodeString & Line)
  1291. {
  1292. CheckConnection();
  1293. RawByteString Buf;
  1294. if (UtfStrings)
  1295. {
  1296. Buf = RawByteString(UTF8String(Line));
  1297. }
  1298. else
  1299. {
  1300. Buf = RawByteString(AnsiString(Line));
  1301. }
  1302. Buf += "\n";
  1303. FLog->Add(llInput, Line);
  1304. Send(reinterpret_cast<const unsigned char *>(Buf.c_str()), Buf.Length());
  1305. }
  1306. //---------------------------------------------------------------------------
  1307. int __fastcall TSecureShell::TranslatePuttyMessage(
  1308. const TPuttyTranslation * Translation, size_t Count, UnicodeString & Message,
  1309. UnicodeString * HelpKeyword)
  1310. {
  1311. int Result = -1;
  1312. for (unsigned int Index = 0; Index < Count; Index++)
  1313. {
  1314. const wchar_t * Original = Translation[Index].Original;
  1315. const wchar_t * Div = wcschr(Original, L'%');
  1316. if (Div == NULL)
  1317. {
  1318. if (wcscmp(Message.c_str(), Original) == 0)
  1319. {
  1320. Message = LoadStr(Translation[Index].Translation);
  1321. Result = int(Index);
  1322. break;
  1323. }
  1324. }
  1325. else
  1326. {
  1327. size_t OriginalLen = wcslen(Original);
  1328. size_t PrefixLen = Div - Original;
  1329. size_t SuffixLen = OriginalLen - PrefixLen - 1;
  1330. if (((size_t)Message.Length() >= OriginalLen - 1) &&
  1331. (wcsncmp(Message.c_str(), Original, PrefixLen) == 0) &&
  1332. (wcsncmp(Message.c_str() + Message.Length() - SuffixLen, Div + 1, SuffixLen) == 0))
  1333. {
  1334. Message = FMTLOAD(Translation[Index].Translation,
  1335. (Message.SubString(PrefixLen + 1, Message.Length() - PrefixLen - SuffixLen).TrimRight()));
  1336. Result = int(Index);
  1337. break;
  1338. }
  1339. }
  1340. }
  1341. if ((HelpKeyword != NULL) && (Result >= 0))
  1342. {
  1343. *HelpKeyword = Translation[Result].HelpKeyword;
  1344. }
  1345. return Result;
  1346. }
  1347. //---------------------------------------------------------------------------
  1348. int __fastcall TSecureShell::TranslateAuthenticationMessage(
  1349. UnicodeString & Message, UnicodeString * HelpKeyword)
  1350. {
  1351. static const TPuttyTranslation Translation[] = {
  1352. { L"Using username \"%\".", AUTH_TRANSL_USERNAME },
  1353. { L"Using keyboard-interactive authentication.", AUTH_TRANSL_KEYB_INTER }, // not used anymore
  1354. { L"Authenticating with public key \"%\" from agent", AUTH_TRANSL_PUBLIC_KEY_AGENT },
  1355. { L"Authenticating with public key \"%\"", AUTH_TRANSL_PUBLIC_KEY },
  1356. { L"Authenticated using RSA key \"%\" from agent", AUTH_TRANSL_PUBLIC_KEY_AGENT },
  1357. { L"Wrong passphrase", AUTH_TRANSL_WRONG_PASSPHRASE },
  1358. { L"Wrong passphrase.", AUTH_TRANSL_WRONG_PASSPHRASE },
  1359. { L"Access denied", AUTH_TRANSL_ACCESS_DENIED },
  1360. { L"Trying public key authentication.", AUTH_TRANSL_TRY_PUBLIC_KEY },
  1361. { L"Server refused our public key.", AUTH_TRANSL_KEY_REFUSED, HELP_AUTH_TRANSL_KEY_REFUSED }, // help mapping probably never used
  1362. { L"Server refused our key", AUTH_TRANSL_KEY_REFUSED, HELP_AUTH_TRANSL_KEY_REFUSED }
  1363. };
  1364. int Result = TranslatePuttyMessage(Translation, LENOF(Translation), Message, HelpKeyword);
  1365. if ((Result == 2) || (Result == 3) || (Result == 4))
  1366. {
  1367. FCollectPrivateKeyUsage = true;
  1368. }
  1369. return Result;
  1370. }
  1371. //---------------------------------------------------------------------------
  1372. void __fastcall TSecureShell::AddStdError(const char * Data, size_t Length)
  1373. {
  1374. UnicodeString Str = ConvertInput(RawByteString(Data, Length));
  1375. FStdError += Str;
  1376. Integer P;
  1377. Str = DeleteChar(Str, L'\r');
  1378. // We send only whole line at once to log, so we have to cache
  1379. // incoming std error data
  1380. FStdErrorTemp += Str;
  1381. UnicodeString Line;
  1382. // Do we have at least one complete line in std error cache?
  1383. while ((P = FStdErrorTemp.Pos(L"\n")) > 0)
  1384. {
  1385. Line = FStdErrorTemp.SubString(1, P-1);
  1386. FStdErrorTemp.Delete(1, P);
  1387. AddStdErrorLine(Line);
  1388. }
  1389. }
  1390. //---------------------------------------------------------------------------
  1391. void __fastcall TSecureShell::AddStdErrorLine(const UnicodeString & Str)
  1392. {
  1393. if (FAuthenticating)
  1394. {
  1395. FAuthenticationLog += (FAuthenticationLog.IsEmpty() ? L"" : L"\n") + Str;
  1396. }
  1397. CaptureOutput(llStdError, Str);
  1398. }
  1399. //---------------------------------------------------------------------------
  1400. const UnicodeString & __fastcall TSecureShell::GetStdError()
  1401. {
  1402. return FStdError;
  1403. }
  1404. //---------------------------------------------------------------------------
  1405. void __fastcall TSecureShell::ClearStdError()
  1406. {
  1407. // Flush std error cache
  1408. if (!FStdErrorTemp.IsEmpty())
  1409. {
  1410. if (FAuthenticating)
  1411. {
  1412. FAuthenticationLog +=
  1413. (FAuthenticationLog.IsEmpty() ? L"" : L"\n") + FStdErrorTemp;
  1414. }
  1415. CaptureOutput(llStdError, FStdErrorTemp);
  1416. FStdErrorTemp = L"";
  1417. }
  1418. FStdError = L"";
  1419. }
  1420. //---------------------------------------------------------------------------
  1421. void __fastcall TSecureShell::CaptureOutput(TLogLineType Type,
  1422. const UnicodeString & Line)
  1423. {
  1424. if (FOnCaptureOutput != NULL)
  1425. {
  1426. FOnCaptureOutput(Line, (Type == llStdError) ? cotError : cotOutput);
  1427. }
  1428. FLog->Add(Type, Line);
  1429. }
  1430. //---------------------------------------------------------------------------
  1431. int __fastcall TSecureShell::TranslateErrorMessage(
  1432. UnicodeString & Message, UnicodeString * HelpKeyword)
  1433. {
  1434. static const TPuttyTranslation Translation[] = {
  1435. { L"Remote side unexpectedly closed network connection", UNEXPECTED_CLOSE_ERROR, HELP_UNEXPECTED_CLOSE_ERROR },
  1436. { L"Network error: Connection refused", NET_TRANSL_REFUSED2, HELP_NET_TRANSL_REFUSED },
  1437. { L"Network error: Connection reset by peer", NET_TRANSL_RESET, HELP_NET_TRANSL_RESET },
  1438. { L"Network error: Connection timed out", NET_TRANSL_TIMEOUT2, HELP_NET_TRANSL_TIMEOUT },
  1439. { L"Network error: No route to host", NET_TRANSL_NO_ROUTE2, HELP_NET_TRANSL_NO_ROUTE },
  1440. { L"Network error: Software caused connection abort", NET_TRANSL_CONN_ABORTED, HELP_NET_TRANSL_CONN_ABORTED },
  1441. { L"Host does not exist", NET_TRANSL_HOST_NOT_EXIST2, HELP_NET_TRANSL_HOST_NOT_EXIST },
  1442. { L"Incoming packet was garbled on decryption", NET_TRANSL_PACKET_GARBLED, HELP_NET_TRANSL_PACKET_GARBLED },
  1443. };
  1444. int Index = TranslatePuttyMessage(Translation, LENOF(Translation), Message, HelpKeyword);
  1445. if ((Index == 0) || (Index == 1) || (Index == 2) || (Index == 3))
  1446. {
  1447. FNoConnectionResponse = true;
  1448. }
  1449. Message = ReplaceStr(Message, L"%HOST%", FSessionData->HostNameExpanded);
  1450. return Index;
  1451. }
  1452. //---------------------------------------------------------------------------
  1453. void __fastcall TSecureShell::PuttyFatalError(UnicodeString Error)
  1454. {
  1455. UnicodeString HelpKeyword;
  1456. TranslateErrorMessage(Error, &HelpKeyword);
  1457. if (!FClosed)
  1458. {
  1459. FatalError(Error, HelpKeyword);
  1460. }
  1461. else
  1462. {
  1463. LogEvent(FORMAT(L"Ignoring an error from the server while closing: %s", (Error)));
  1464. }
  1465. }
  1466. //---------------------------------------------------------------------------
  1467. void __fastcall TSecureShell::FatalError(UnicodeString Error, UnicodeString HelpKeyword)
  1468. {
  1469. FUI->FatalError(NULL, Error, HelpKeyword);
  1470. }
  1471. //---------------------------------------------------------------------------
  1472. void __fastcall inline TSecureShell::LogEvent(const UnicodeString & Str)
  1473. {
  1474. if (FLog->Logging)
  1475. {
  1476. FLog->Add(llMessage, Str);
  1477. }
  1478. }
  1479. //---------------------------------------------------------------------------
  1480. void __fastcall TSecureShell::SocketEventSelect(SOCKET Socket, HANDLE Event, bool Enable)
  1481. {
  1482. int Events;
  1483. if (Enable)
  1484. {
  1485. Events = (FD_CONNECT | FD_READ | FD_WRITE | FD_OOB | FD_CLOSE | FD_ACCEPT);
  1486. }
  1487. else
  1488. {
  1489. Events = 0;
  1490. }
  1491. if (Configuration->ActualLogProtocol >= 2)
  1492. {
  1493. LogEvent(FORMAT(L"Selecting events %d for socket %d", (int(Events), int(Socket))));
  1494. }
  1495. if (WSAEventSelect(Socket, (WSAEVENT)Event, Events) == SOCKET_ERROR)
  1496. {
  1497. if (Configuration->ActualLogProtocol >= 2)
  1498. {
  1499. LogEvent(FORMAT(L"Error selecting events %d for socket %d", (int(Events), int(Socket))));
  1500. }
  1501. if (Enable)
  1502. {
  1503. FatalError(FMTLOAD(EVENT_SELECT_ERROR, (WSAGetLastError())));
  1504. }
  1505. }
  1506. }
  1507. //---------------------------------------------------------------------------
  1508. bool TSecureShell::HasLocalProxy()
  1509. {
  1510. return (FSessionData->ProxyMethod == pmCmd);
  1511. }
  1512. //---------------------------------------------------------------------------
  1513. void __fastcall TSecureShell::UpdateSocket(SOCKET value, bool Enable)
  1514. {
  1515. if (!FActive && !Enable)
  1516. {
  1517. // no-op
  1518. // Remove the branch eventually:
  1519. // When TCP connection fails, PuTTY does not release the memory allocated for
  1520. // socket. As a simple hack we call sk_tcp_close() in ssh.c to release the memory,
  1521. // until they fix it better. Unfortunately sk_tcp_close calls do_select,
  1522. // so we must filter that out.
  1523. }
  1524. else
  1525. {
  1526. DebugAssert(value);
  1527. DebugAssert((FActive && (FSocket == value)) || (!FActive && Enable));
  1528. // filter our "local proxy" connection, which have no socket
  1529. if (value != INVALID_SOCKET)
  1530. {
  1531. SocketEventSelect(value, FSocketEvent, Enable);
  1532. }
  1533. else
  1534. {
  1535. DebugAssert(HasLocalProxy());
  1536. }
  1537. if (Enable)
  1538. {
  1539. FSocket = value;
  1540. FActive = true;
  1541. }
  1542. else
  1543. {
  1544. FSocket = INVALID_SOCKET;
  1545. Discard();
  1546. }
  1547. }
  1548. }
  1549. //---------------------------------------------------------------------------
  1550. void __fastcall TSecureShell::UpdatePortFwdSocket(SOCKET value, bool Enable)
  1551. {
  1552. if (Configuration->ActualLogProtocol >= 2)
  1553. {
  1554. LogEvent(FORMAT(L"Updating forwarding socket %d (%d)", (int(value), int(Enable))));
  1555. }
  1556. SocketEventSelect(value, FSocketEvent, Enable);
  1557. if (Enable)
  1558. {
  1559. FPortFwdSockets.insert(value);
  1560. }
  1561. else
  1562. {
  1563. FPortFwdSockets.erase(value);
  1564. }
  1565. }
  1566. //---------------------------------------------------------------------------
  1567. void __fastcall TSecureShell::FreeBackend()
  1568. {
  1569. if (FBackendHandle != NULL)
  1570. {
  1571. backend_free(FBackendHandle);
  1572. FBackendHandle = NULL;
  1573. // After destroying backend, ic_pktin_free should be the only remaining callback.
  1574. if (is_idempotent_callback_pending(FCallbackSet.get(), FCallbackSet->ic_pktin_free))
  1575. {
  1576. // This releases the callback and should be noop otherwise.
  1577. run_toplevel_callbacks(FCallbackSet.get());
  1578. }
  1579. sfree(FCallbackSet->ic_pktin_free);
  1580. FCallbackSet->ic_pktin_free = NULL;
  1581. // Not checking that cbcurr is NULL. It may be non-null, when (fatal?) exception occurs, while the callback is called.
  1582. FCallbackSet->cbcurr = NULL;
  1583. DebugAssert(FCallbackSet->cbhead == NULL);
  1584. DebugAssert(FCallbackSet->cbtail == NULL);
  1585. if (FCallbackSet->pktin_freeq_head != NULL)
  1586. {
  1587. DebugAssert(FCallbackSet->pktin_freeq_head->next == FCallbackSet->pktin_freeq_head);
  1588. sfree(FCallbackSet->pktin_freeq_head);
  1589. FCallbackSet->pktin_freeq_head = NULL;
  1590. }
  1591. if (FCallbackSet->handlewaits_tree_real != NULL)
  1592. {
  1593. DebugAssert(count234(FCallbackSet->handlewaits_tree_real) <= 1);
  1594. while (count234(FCallbackSet->handlewaits_tree_real) > 0)
  1595. {
  1596. HandleWait * AHandleWait = static_cast<HandleWait *>(index234(FCallbackSet->handlewaits_tree_real, 0));
  1597. delete_handle_wait(FCallbackSet.get(), AHandleWait);
  1598. }
  1599. freetree234(FCallbackSet->handlewaits_tree_real);
  1600. FCallbackSet->handlewaits_tree_real = NULL;
  1601. }
  1602. if (FCallbackSet->ready_event != INVALID_HANDLE_VALUE)
  1603. {
  1604. CloseHandle(FCallbackSet->ready_event);
  1605. FCallbackSet->ready_event = INVALID_HANDLE_VALUE;
  1606. }
  1607. }
  1608. }
  1609. //---------------------------------------------------------------------------
  1610. void __fastcall TSecureShell::Discard()
  1611. {
  1612. bool WasActive = FActive;
  1613. FActive = false;
  1614. FOpened = false;
  1615. if (WasActive)
  1616. {
  1617. FUI->Closed();
  1618. }
  1619. }
  1620. //---------------------------------------------------------------------------
  1621. void __fastcall TSecureShell::Close()
  1622. {
  1623. LogEvent(L"Closing connection.");
  1624. DebugAssert(FActive);
  1625. FClosed = true;
  1626. // Without main channel SS_EOF is ignored and would get stuck waiting for exit code.
  1627. if ((backend_exitcode(FBackendHandle) < 0) && winscp_query(FBackendHandle, WINSCP_QUERY_MAIN_CHANNEL))
  1628. {
  1629. // this is particularly necessary when using local proxy command
  1630. // (e.g. plink), otherwise it hangs in sk_localproxy_close
  1631. SendSpecial(SS_EOF);
  1632. // Try waiting for the EOF exchange to complete (among other to avoid packet queue memory leaks)
  1633. int Timeout = 500;
  1634. while ((backend_exitcode(FBackendHandle) < 0) && (Timeout > 0))
  1635. {
  1636. const int Step = 100;
  1637. if (!EventSelectLoop(Step, false, NULL))
  1638. {
  1639. Timeout -= Step;
  1640. }
  1641. }
  1642. }
  1643. FreeBackend();
  1644. Discard();
  1645. }
  1646. //---------------------------------------------------------------------------
  1647. void inline __fastcall TSecureShell::CheckConnection(int Message)
  1648. {
  1649. if (!FActive || (backend_exitcode(FBackendHandle) >= 0))
  1650. {
  1651. UnicodeString Str;
  1652. UnicodeString HelpKeyword;
  1653. if (Message >= 0)
  1654. {
  1655. Str = LoadStr(Message);
  1656. }
  1657. else
  1658. {
  1659. Str = LoadStr(NOT_CONNECTED);
  1660. HelpKeyword = HELP_NOT_CONNECTED;
  1661. }
  1662. Str = MainInstructions(Str);
  1663. int ExitCode = backend_exitcode(FBackendHandle);
  1664. if (ExitCode >= 0)
  1665. {
  1666. Str += L" " + FMTLOAD(SSH_EXITCODE, (ExitCode));
  1667. }
  1668. FatalError(Str, HelpKeyword);
  1669. }
  1670. }
  1671. //---------------------------------------------------------------------------
  1672. void __fastcall TSecureShell::PoolForData(WSANETWORKEVENTS & Events, unsigned int & Result)
  1673. {
  1674. if (!Active)
  1675. {
  1676. // see comment below
  1677. Result = qaRetry;
  1678. }
  1679. else
  1680. {
  1681. try
  1682. {
  1683. if (Configuration->ActualLogProtocol >= 2)
  1684. {
  1685. LogEvent(L"Pooling for data in case they finally arrives");
  1686. }
  1687. // in extreme condition it may happen that send buffer is full, but there
  1688. // will be no data coming and we may not empty the send buffer because we
  1689. // do not process FD_WRITE until we receive any FD_READ
  1690. if (EventSelectLoop(0, false, &Events))
  1691. {
  1692. LogEvent(L"Data has arrived, closing query to user.");
  1693. Result = qaOK;
  1694. }
  1695. }
  1696. catch(...)
  1697. {
  1698. // if we let the exception out, it may popup another message dialog
  1699. // in whole event loop, another call to PoolForData from original dialog
  1700. // would be invoked, leading to an infinite loop.
  1701. // by retrying we hope (that probably fatal) error would repeat in WaitForData.
  1702. // anyway now once no actual work is done in EventSelectLoop,
  1703. // hardly any exception can occur actually
  1704. Result = qaRetry;
  1705. }
  1706. }
  1707. }
  1708. //---------------------------------------------------------------------------
  1709. class TPoolForDataEvent
  1710. {
  1711. public:
  1712. __fastcall TPoolForDataEvent(TSecureShell * SecureShell, WSANETWORKEVENTS & Events) :
  1713. FSecureShell(SecureShell),
  1714. FEvents(Events)
  1715. {
  1716. }
  1717. void __fastcall PoolForData(unsigned int & Result)
  1718. {
  1719. FSecureShell->PoolForData(FEvents, Result);
  1720. }
  1721. private:
  1722. TSecureShell * FSecureShell;
  1723. WSANETWORKEVENTS & FEvents;
  1724. };
  1725. //---------------------------------------------------------------------------
  1726. void __fastcall TSecureShell::WaitForData()
  1727. {
  1728. // see winsftp.c
  1729. bool IncomingData;
  1730. do
  1731. {
  1732. if (Configuration->ActualLogProtocol >= 2)
  1733. {
  1734. LogEvent(L"Looking for incoming data");
  1735. }
  1736. IncomingData = EventSelectLoop(FSessionData->Timeout * MSecsPerSec, true, NULL);
  1737. if (!IncomingData)
  1738. {
  1739. DebugAssert(FWaitingForData == 0);
  1740. TAutoNestingCounter NestingCounter(FWaitingForData);
  1741. WSANETWORKEVENTS Events;
  1742. memset(&Events, 0, sizeof(Events));
  1743. TPoolForDataEvent Event(this, Events);
  1744. LogEvent(L"Waiting for data timed out, asking user what to do.");
  1745. unsigned int Answer = TimeoutPrompt(Event.PoolForData);
  1746. switch (Answer)
  1747. {
  1748. case qaRetry:
  1749. // noop
  1750. break;
  1751. case qaOK:
  1752. // read event was already captured in PoolForData(),
  1753. // make sure we do not try to select it again as it would timeout
  1754. // unless another read event occurs
  1755. IncomingData = true;
  1756. HandleNetworkEvents(FSocket, Events);
  1757. break;
  1758. default:
  1759. DebugFail();
  1760. // fallthru
  1761. case qaAbort:
  1762. case qaNo:
  1763. TimeoutAbort(Answer);
  1764. break;
  1765. }
  1766. }
  1767. }
  1768. while (!IncomingData);
  1769. }
  1770. //---------------------------------------------------------------------------
  1771. bool __fastcall TSecureShell::SshFallbackCmd() const
  1772. {
  1773. return ssh_fallback_cmd(FBackendHandle);
  1774. }
  1775. //---------------------------------------------------------------------------
  1776. bool __fastcall TSecureShell::EnumNetworkEvents(SOCKET Socket, WSANETWORKEVENTS & Events)
  1777. {
  1778. if (Configuration->ActualLogProtocol >= 2)
  1779. {
  1780. LogEvent(FORMAT(L"Enumerating network events for socket %d", (int(Socket))));
  1781. }
  1782. // see winplink.c
  1783. WSANETWORKEVENTS AEvents;
  1784. if (WSAEnumNetworkEvents(Socket, NULL, &AEvents) == 0)
  1785. {
  1786. noise_ultralight(NOISE_SOURCE_IOID, Socket);
  1787. noise_ultralight(NOISE_SOURCE_IOID, AEvents.lNetworkEvents);
  1788. Events.lNetworkEvents |= AEvents.lNetworkEvents;
  1789. for (int Index = 0; Index < FD_MAX_EVENTS; Index++)
  1790. {
  1791. if (AEvents.iErrorCode[Index] != 0)
  1792. {
  1793. Events.iErrorCode[Index] = AEvents.iErrorCode[Index];
  1794. }
  1795. }
  1796. if (Configuration->ActualLogProtocol >= 2)
  1797. {
  1798. LogEvent(FORMAT(L"Enumerated %d network events making %d cumulative events for socket %d",
  1799. (int(AEvents.lNetworkEvents), int(Events.lNetworkEvents), int(Socket))));
  1800. }
  1801. }
  1802. else
  1803. {
  1804. if (Configuration->ActualLogProtocol >= 2)
  1805. {
  1806. LogEvent(FORMAT(L"Error enumerating network events for socket %d", (int(Socket))));
  1807. }
  1808. }
  1809. bool Result =
  1810. FLAGSET(Events.lNetworkEvents, FD_READ) ||
  1811. FLAGSET(Events.lNetworkEvents, FD_CLOSE);
  1812. return Result;
  1813. }
  1814. //---------------------------------------------------------------------------
  1815. void __fastcall TSecureShell::HandleNetworkEvents(SOCKET Socket, WSANETWORKEVENTS & Events)
  1816. {
  1817. static const struct { int Bit, Mask; const wchar_t * Desc; } EventTypes[] =
  1818. {
  1819. { FD_WRITE_BIT, FD_WRITE, L"write" },
  1820. { FD_OOB_BIT, FD_OOB, L"oob" },
  1821. { FD_ACCEPT_BIT, FD_ACCEPT, L"accept" },
  1822. { FD_CONNECT_BIT, FD_CONNECT, L"connect" },
  1823. { FD_CLOSE_BIT, FD_CLOSE, L"close" },
  1824. // Read goes last, as it can cause an exception.
  1825. // Though a correct solution would be to process all events, even if one causes exception
  1826. { FD_READ_BIT, FD_READ, L"read" },
  1827. };
  1828. for (unsigned int Event = 0; Event < LENOF(EventTypes); Event++)
  1829. {
  1830. if (FLAGSET(Events.lNetworkEvents, EventTypes[Event].Mask))
  1831. {
  1832. int Err = Events.iErrorCode[EventTypes[Event].Bit];
  1833. if (Configuration->ActualLogProtocol >= 2)
  1834. {
  1835. LogEvent(FORMAT(L"Handling network %s event on socket %d with error %d",
  1836. (EventTypes[Event].Desc, int(Socket), Err)));
  1837. }
  1838. #pragma option push -w-prc
  1839. LPARAM SelectEvent = WSAMAKESELECTREPLY(EventTypes[Event].Mask, Err);
  1840. #pragma option pop
  1841. select_result((WPARAM)Socket, SelectEvent);
  1842. CheckConnection();
  1843. }
  1844. }
  1845. }
  1846. //---------------------------------------------------------------------------
  1847. bool __fastcall TSecureShell::ProcessNetworkEvents(SOCKET Socket)
  1848. {
  1849. WSANETWORKEVENTS Events;
  1850. memset(&Events, 0, sizeof(Events));
  1851. bool Result = EnumNetworkEvents(Socket, Events);
  1852. HandleNetworkEvents(Socket, Events);
  1853. return Result;
  1854. }
  1855. //---------------------------------------------------------------------------
  1856. bool __fastcall TSecureShell::EventSelectLoop(unsigned int MSec, bool ReadEventRequired,
  1857. WSANETWORKEVENTS * Events)
  1858. {
  1859. bool Result = false;
  1860. do
  1861. {
  1862. if (Configuration->ActualLogProtocol >= 2)
  1863. {
  1864. LogEvent(L"Looking for network events");
  1865. }
  1866. unsigned int TicksBefore = GetTickCount();
  1867. HandleWaitList * WaitList = NULL;
  1868. try
  1869. {
  1870. unsigned int Timeout = MSec;
  1871. unsigned int WaitResult;
  1872. do
  1873. {
  1874. CheckConnection();
  1875. unsigned int TimeoutStep = std::min(GUIUpdateInterval, Timeout);
  1876. if (toplevel_callback_pending(GetCallbackSet()))
  1877. {
  1878. TimeoutStep = 0;
  1879. }
  1880. Timeout -= TimeoutStep;
  1881. if (WaitList != NULL)
  1882. {
  1883. handle_wait_list_free(WaitList);
  1884. }
  1885. // It returns only busy handles, so the set can change with every call to run_toplevel_callbacks.
  1886. WaitList = get_handle_wait_list(FCallbackSet.get());
  1887. DebugAssert(WaitList->nhandles < MAXIMUM_WAIT_OBJECTS);
  1888. WaitList->handles[WaitList->nhandles] = FSocketEvent;
  1889. WaitResult = WaitForMultipleObjects(WaitList->nhandles + 1, WaitList->handles, FALSE, TimeoutStep);
  1890. FUI->ProcessGUI();
  1891. // run_toplevel_callbacks can cause processing of pending raw data, so:
  1892. // 1) Check for changes in our pending buffer - wait criteria in Receive()
  1893. int PrevDataLen = (-static_cast<int>(OutLen) + static_cast<int>(PendLen));
  1894. // 2) Changes in session state - wait criteria in Init()
  1895. unsigned int HadMainChannel = winscp_query(FBackendHandle, WINSCP_QUERY_MAIN_CHANNEL);
  1896. if (run_toplevel_callbacks(GetCallbackSet()) &&
  1897. (((-static_cast<int>(OutLen) + static_cast<int>(PendLen)) > PrevDataLen) ||
  1898. (HadMainChannel != winscp_query(FBackendHandle, WINSCP_QUERY_MAIN_CHANNEL))))
  1899. {
  1900. // Note that we still may process new network event now
  1901. Result = true;
  1902. }
  1903. } while ((WaitResult == WAIT_TIMEOUT) && (Timeout > 0) && !Result);
  1904. if (WaitResult < WAIT_OBJECT_0 + WaitList->nhandles)
  1905. {
  1906. if (handle_wait_activate(FCallbackSet.get(), WaitList, WaitResult - WAIT_OBJECT_0))
  1907. {
  1908. Result = true;
  1909. }
  1910. }
  1911. else if (WaitResult == WAIT_OBJECT_0 + WaitList->nhandles)
  1912. {
  1913. if (Configuration->ActualLogProtocol >= 1)
  1914. {
  1915. LogEvent(L"Detected network event");
  1916. }
  1917. DebugAssert(FSocket != INVALID_SOCKET);
  1918. if (Events == NULL)
  1919. {
  1920. if (ProcessNetworkEvents(FSocket))
  1921. {
  1922. Result = true;
  1923. }
  1924. }
  1925. else
  1926. {
  1927. if (EnumNetworkEvents(FSocket, *Events))
  1928. {
  1929. Result = true;
  1930. }
  1931. }
  1932. {
  1933. TSockets::iterator i = FPortFwdSockets.begin();
  1934. while (i != FPortFwdSockets.end())
  1935. {
  1936. ProcessNetworkEvents(*i);
  1937. i++;
  1938. }
  1939. }
  1940. }
  1941. else if (WaitResult == WAIT_TIMEOUT)
  1942. {
  1943. if (Configuration->ActualLogProtocol >= 2)
  1944. {
  1945. LogEvent(L"Timeout waiting for network events");
  1946. }
  1947. MSec = 0;
  1948. }
  1949. else
  1950. {
  1951. if (Configuration->ActualLogProtocol >= 2)
  1952. {
  1953. LogEvent(FORMAT(L"Unknown waiting result %d", (int(WaitResult))));
  1954. }
  1955. MSec = 0;
  1956. }
  1957. }
  1958. __finally
  1959. {
  1960. if (WaitList != NULL)
  1961. {
  1962. handle_wait_list_free(WaitList);
  1963. }
  1964. }
  1965. unsigned int TicksAfter = GetTickCount();
  1966. // ticks wraps once in 49.7 days
  1967. if (TicksBefore < TicksAfter)
  1968. {
  1969. unsigned int Ticks = TicksAfter - TicksBefore;
  1970. if (Ticks > MSec)
  1971. {
  1972. MSec = 0;
  1973. }
  1974. else
  1975. {
  1976. MSec -= Ticks;
  1977. }
  1978. }
  1979. if ((FSocket != INVALID_SOCKET) &&
  1980. (FSendBuf > 0) && (TicksAfter - FLastSendBufferUpdate >= 1000))
  1981. {
  1982. DWORD BufferLen = 0;
  1983. DWORD OutLen = 0;
  1984. if (WSAIoctl(FSocket, SIO_IDEAL_SEND_BACKLOG_QUERY, NULL, 0, &BufferLen, sizeof(BufferLen), &OutLen, 0, 0) == 0)
  1985. {
  1986. DebugAssert(OutLen == sizeof(BufferLen));
  1987. if (FSendBuf < static_cast<int>(BufferLen))
  1988. {
  1989. LogEvent(FORMAT(L"Increasing send buffer from %d to %d", (FSendBuf, static_cast<int>(BufferLen))));
  1990. FSendBuf = BufferLen;
  1991. setsockopt(FSocket, SOL_SOCKET, SO_SNDBUF, reinterpret_cast<const char *>(&BufferLen), sizeof(BufferLen));
  1992. }
  1993. }
  1994. FLastSendBufferUpdate = TicksAfter;
  1995. }
  1996. }
  1997. while (ReadEventRequired && (MSec > 0) && !Result);
  1998. return Result;
  1999. }
  2000. //---------------------------------------------------------------------------
  2001. void __fastcall TSecureShell::Idle(unsigned int MSec)
  2002. {
  2003. noise_regular();
  2004. winscp_query(FBackendHandle, WINSCP_QUERY_TIMER);
  2005. // if we are actively waiting for data in WaitForData,
  2006. // do not read here, otherwise we swallow read event and never wake
  2007. if (FWaitingForData <= 0)
  2008. {
  2009. EventSelectLoop(MSec, false, NULL);
  2010. }
  2011. }
  2012. //---------------------------------------------------------------------------
  2013. void __fastcall TSecureShell::KeepAlive()
  2014. {
  2015. if (FActive && (FWaiting == 0))
  2016. {
  2017. LogEvent(L"Sending null packet to keep session alive.");
  2018. SendSpecial(SS_PING);
  2019. }
  2020. else
  2021. {
  2022. // defer next keepalive attempt
  2023. FLastDataSent = Now();
  2024. }
  2025. }
  2026. //---------------------------------------------------------------------------
  2027. unsigned long __fastcall TSecureShell::MaxPacketSize()
  2028. {
  2029. if (!FSessionInfoValid)
  2030. {
  2031. UpdateSessionInfo();
  2032. }
  2033. return winscp_query(FBackendHandle, WINSCP_QUERY_REMMAXPKT);
  2034. }
  2035. //---------------------------------------------------------------------------
  2036. UnicodeString __fastcall TSecureShell::FormatKeyStr(UnicodeString KeyStr)
  2037. {
  2038. int Index = 1;
  2039. int Digits = 0;
  2040. while (Index <= KeyStr.Length())
  2041. {
  2042. if (IsHex(KeyStr[Index]))
  2043. {
  2044. Digits++;
  2045. if (Digits >= 16)
  2046. {
  2047. KeyStr.Insert(L" ", Index + 1);
  2048. Index++;
  2049. Digits = 0;
  2050. }
  2051. }
  2052. else
  2053. {
  2054. Digits = 0;
  2055. }
  2056. Index++;
  2057. }
  2058. return KeyStr;
  2059. }
  2060. //---------------------------------------------------------------------------
  2061. void __fastcall TSecureShell::GetRealHost(UnicodeString & Host, int & Port)
  2062. {
  2063. if (FSessionData->Tunnel)
  2064. {
  2065. // Now that we set the CONF_loghost, the hostname is correct already
  2066. Host = FSessionData->OrigHostName;
  2067. Port = FSessionData->OrigPortNumber;
  2068. }
  2069. }
  2070. //---------------------------------------------------------------------------
  2071. bool TSecureShell::HaveAcceptNewHostKeyPolicy()
  2072. {
  2073. return SameText(FSessionData->HostKey.Trim(), L"acceptnew");
  2074. }
  2075. //---------------------------------------------------------------------------
  2076. THierarchicalStorage * TSecureShell::GetHostKeyStorage()
  2077. {
  2078. if (!Configuration->Persistent && HaveAcceptNewHostKeyPolicy())
  2079. {
  2080. return Configuration->CreateConfigRegistryStorage();
  2081. }
  2082. else
  2083. {
  2084. return Configuration->CreateConfigStorage();
  2085. }
  2086. }
  2087. //---------------------------------------------------------------------------
  2088. UnicodeString __fastcall TSecureShell::RetrieveHostKey(const UnicodeString & Host, int Port, const UnicodeString & KeyType)
  2089. {
  2090. std::unique_ptr<THierarchicalStorage> Storage(GetHostKeyStorage());
  2091. Storage->AccessMode = smRead;
  2092. TGuard Guard(PuttyStorageSection.get());
  2093. DebugAssert(PuttyStorage == NULL);
  2094. TValueRestorer<THierarchicalStorage *> StorageRestorer(PuttyStorage);
  2095. PuttyStorage = Storage.get();
  2096. AnsiString AnsiStoredKeys;
  2097. AnsiStoredKeys.SetLength(10240);
  2098. UnicodeString Result;
  2099. if (retrieve_host_key(AnsiString(Host).c_str(), Port, AnsiString(KeyType).c_str(),
  2100. AnsiStoredKeys.c_str(), AnsiStoredKeys.Length()) == 0)
  2101. {
  2102. PackStr(AnsiStoredKeys);
  2103. Result = UnicodeString(AnsiStoredKeys);
  2104. }
  2105. return Result;
  2106. }
  2107. //---------------------------------------------------------------------------
  2108. static bool DoVerifyFingerprint(const UnicodeString & AFingerprintFromUser, const UnicodeString & AFingerprintFromHost, bool Base64)
  2109. {
  2110. UnicodeString FingerprintFromUser = AFingerprintFromUser;
  2111. UnicodeString FingerprintFromHost = AFingerprintFromHost;
  2112. UnicodeString FingerprintFromUserName, FingerprintFromHostName;
  2113. NormalizeFingerprint(FingerprintFromUser, FingerprintFromUserName);
  2114. NormalizeFingerprint(FingerprintFromHost, FingerprintFromHostName);
  2115. bool Result;
  2116. if (DebugAlwaysFalse(FingerprintFromHostName.IsEmpty()))
  2117. {
  2118. Result = false;
  2119. }
  2120. else
  2121. {
  2122. // In all below three formats, the checksum can be any of these formats:
  2123. // MD5 (case insensitive):
  2124. // xx:xx:xx
  2125. // xx-xx-xx
  2126. // SHA-256 (case sensitive):
  2127. // xxxx+xx/xxx=
  2128. // xxxx+xx/xxx
  2129. // xxxx-xx_xxx=
  2130. // xxxx-xx_xxx
  2131. // Full fingerprint format "type bits checksum"
  2132. if (!FingerprintFromUserName.IsEmpty())
  2133. {
  2134. Result =
  2135. SameText(FingerprintFromUserName, FingerprintFromHostName) &&
  2136. SameChecksum(FingerprintFromUser, FingerprintFromHost, Base64);
  2137. }
  2138. else
  2139. {
  2140. // normalized format "type-checksum"
  2141. UnicodeString NormalizedPrefix = FingerprintFromHost + NormalizedFingerprintSeparator;
  2142. if (StartsText(NormalizedPrefix, FingerprintFromUser))
  2143. {
  2144. FingerprintFromUser.Delete(1, NormalizedPrefix.Length());
  2145. Result = SameChecksum(FingerprintFromUser, FingerprintFromHost, Base64);
  2146. }
  2147. else
  2148. {
  2149. // last resort: "checksum" only
  2150. Result = SameChecksum(FingerprintFromUser, FingerprintFromHost, Base64);
  2151. }
  2152. }
  2153. }
  2154. return Result;
  2155. }
  2156. //---------------------------------------------------------------------------
  2157. static bool VerifyFingerprint(
  2158. const UnicodeString & FingerprintFromUser, const UnicodeString & FingerprintFromHostMD5, const UnicodeString & FingerprintFromHostSHA256)
  2159. {
  2160. return
  2161. DoVerifyFingerprint(FingerprintFromUser, FingerprintFromHostMD5, false) ||
  2162. DoVerifyFingerprint(FingerprintFromUser, FingerprintFromHostSHA256, true);
  2163. }
  2164. //---------------------------------------------------------------------------
  2165. struct TPasteKeyHandler
  2166. {
  2167. UnicodeString KeyStr;
  2168. UnicodeString FingerprintMD5;
  2169. UnicodeString FingerprintSHA256;
  2170. TSessionUI * UI;
  2171. void __fastcall Paste(TObject * Sender, unsigned int & Answer);
  2172. };
  2173. //---------------------------------------------------------------------------
  2174. void __fastcall TPasteKeyHandler::Paste(TObject * /*Sender*/, unsigned int & Answer)
  2175. {
  2176. UnicodeString ClipboardText;
  2177. if (TextFromClipboard(ClipboardText, true))
  2178. {
  2179. if (VerifyFingerprint(ClipboardText, FingerprintMD5, FingerprintSHA256) ||
  2180. SameText(ClipboardText, KeyStr))
  2181. {
  2182. Answer = qaYes;
  2183. }
  2184. else
  2185. {
  2186. const struct ssh_keyalg * Algorithm;
  2187. try
  2188. {
  2189. UnicodeString Key = ParseOpenSshPubLine(ClipboardText, Algorithm);
  2190. if (Key == KeyStr)
  2191. {
  2192. Answer = qaYes;
  2193. }
  2194. }
  2195. catch (...)
  2196. {
  2197. // swallow
  2198. }
  2199. }
  2200. }
  2201. if (Answer == 0)
  2202. {
  2203. UI->QueryUser(LoadStr(HOSTKEY_NOT_MATCH_CLIPBOARD), NULL, qaOK, NULL, qtError);
  2204. }
  2205. }
  2206. //---------------------------------------------------------------------------
  2207. bool TSecureShell::VerifyCachedHostKey(
  2208. const UnicodeString & StoredKeys, const UnicodeString & KeyStr, const UnicodeString & FingerprintMD5, const UnicodeString & FingerprintSHA256)
  2209. {
  2210. bool Result = false;
  2211. UnicodeString Buf = StoredKeys;
  2212. while (!Result && !Buf.IsEmpty())
  2213. {
  2214. UnicodeString StoredKey = CutToChar(Buf, HostKeyDelimiter, false);
  2215. // skip leading ECDH subtype identification
  2216. int P = StoredKey.Pos(L",");
  2217. // Start from beginning or after the comma, if there's any.
  2218. // If it does not start with 0x, it's probably a fingerprint (stored by TSessionData::CacheHostKey).
  2219. bool Fingerprint = (StoredKey.SubString(P + 1, 2) != L"0x");
  2220. if (!Fingerprint && (StoredKey == KeyStr))
  2221. {
  2222. LogEvent(L"Host key matches cached key");
  2223. Result = true;
  2224. }
  2225. else if (Fingerprint && VerifyFingerprint(StoredKey, FingerprintMD5, FingerprintSHA256))
  2226. {
  2227. LogEvent(L"Host key matches cached key fingerprint");
  2228. Result = true;
  2229. }
  2230. else
  2231. {
  2232. if (Configuration->ActualLogProtocol >= 1)
  2233. {
  2234. UnicodeString FormattedKey = Fingerprint ? StoredKey : FormatKeyStr(StoredKey);
  2235. LogEvent(FORMAT(L"Host key does not match cached key %s", (FormattedKey)));
  2236. }
  2237. else
  2238. {
  2239. LogEvent(L"Host key does not match cached key");
  2240. }
  2241. }
  2242. }
  2243. return Result;
  2244. }
  2245. //---------------------------------------------------------------------------
  2246. UnicodeString TSecureShell::StoreHostKey(
  2247. const UnicodeString & Host, int Port, const UnicodeString & KeyType, const UnicodeString & KeyStr)
  2248. {
  2249. TGuard Guard(PuttyStorageSection.get());
  2250. DebugAssert(PuttyStorage == NULL);
  2251. TValueRestorer<THierarchicalStorage *> StorageRestorer(PuttyStorage);
  2252. std::unique_ptr<THierarchicalStorage> Storage(GetHostKeyStorage());
  2253. Storage->AccessMode = smReadWrite;
  2254. PuttyStorage = Storage.get();
  2255. store_host_key(AnsiString(Host).c_str(), Port, AnsiString(KeyType).c_str(), AnsiString(KeyStr).c_str());
  2256. return Storage->Source;
  2257. }
  2258. //---------------------------------------------------------------------------
  2259. void TSecureShell::ParseFingerprint(const UnicodeString & Fingerprint, UnicodeString & SignKeyType, UnicodeString & Hash)
  2260. {
  2261. UnicodeString Buf = Fingerprint;
  2262. UnicodeString SignKeyAlg = CutToChar(Buf, L' ', false);
  2263. UnicodeString SignKeySize = CutToChar(Buf, L' ', false);
  2264. SignKeyType = SignKeyAlg + L' ' + SignKeySize;
  2265. Hash = Buf;
  2266. }
  2267. //---------------------------------------------------------------------------
  2268. void __fastcall TSecureShell::VerifyHostKey(
  2269. const UnicodeString & AHost, int Port, const UnicodeString & KeyType, const UnicodeString & KeyStr,
  2270. const UnicodeString & AFingerprintSHA256, const UnicodeString & AFingerprintMD5)
  2271. {
  2272. if (Configuration->ActualLogProtocol >= 1)
  2273. {
  2274. LogEvent(FORMAT(L"Verifying host key %s %s with fingerprints %s, %s", (KeyType, FormatKeyStr(KeyStr), AFingerprintSHA256, AFingerprintMD5)));
  2275. }
  2276. GotHostKey();
  2277. DebugAssert(KeyStr.Pos(HostKeyDelimiter) == 0);
  2278. UnicodeString Host = AHost;
  2279. GetRealHost(Host, Port);
  2280. UnicodeString SignKeyType, MD5, SHA256;
  2281. ParseFingerprint(AFingerprintMD5, SignKeyType, MD5);
  2282. DebugAssert(get_ssh_version(FBackendHandle) == 2);
  2283. UnicodeString SignKeyTypeSHA256;
  2284. ParseFingerprint(AFingerprintSHA256, SignKeyTypeSHA256, SHA256);
  2285. DebugAssert(SignKeyTypeSHA256 == SignKeyType);
  2286. if (DebugAlwaysTrue(StartsText(L"SHA256:", SHA256)))
  2287. {
  2288. CutToChar(SHA256, L':', false);
  2289. }
  2290. UnicodeString FingerprintMD5 = SignKeyType + L' ' + MD5;
  2291. DebugAssert(AFingerprintMD5 == FingerprintMD5);
  2292. UnicodeString FingerprintSHA256 = SignKeyType + L' ' + SHA256;
  2293. DebugAssert(ReplaceStr(AFingerprintSHA256, L"SHA256:", EmptyStr) == FingerprintSHA256);
  2294. FSessionInfo.HostKeyFingerprintSHA256 = FingerprintSHA256;
  2295. FSessionInfo.HostKeyFingerprintMD5 = FingerprintMD5;
  2296. if (FSessionData->FingerprintScan)
  2297. {
  2298. Abort();
  2299. }
  2300. bool AcceptNew = HaveAcceptNewHostKeyPolicy();
  2301. UnicodeString ConfigHostKey;
  2302. if (!AcceptNew)
  2303. {
  2304. ConfigHostKey = FSessionData->HostKey;
  2305. }
  2306. UnicodeString StoredKeys = RetrieveHostKey(Host, Port, KeyType);
  2307. bool Result = VerifyCachedHostKey(StoredKeys, KeyStr, FingerprintMD5, FingerprintSHA256);
  2308. if (!Result && AcceptNew)
  2309. {
  2310. if (!StoredKeys.IsEmpty()) // optimization + avoiding the log message
  2311. {
  2312. AcceptNew = false;
  2313. }
  2314. else if (have_any_ssh2_hostkey(FSeat, AnsiString(Host).c_str(), Port))
  2315. {
  2316. LogEvent(L"Host key not found in the cache, but other key types found, cannot accept new key");
  2317. AcceptNew = false;
  2318. }
  2319. }
  2320. bool ConfiguredKeyNotMatch = false;
  2321. if (!Result && !ConfigHostKey.IsEmpty() &&
  2322. // Should test have_any_ssh2_hostkey + No need to bother with AcceptNew, as we never get here
  2323. (StoredKeys.IsEmpty() || FSessionData->OverrideCachedHostKey))
  2324. {
  2325. UnicodeString Buf = ConfigHostKey;
  2326. while (!Result && !Buf.IsEmpty())
  2327. {
  2328. UnicodeString ExpectedKey = CutToChar(Buf, HostKeyDelimiter, false);
  2329. if (ExpectedKey == L"*")
  2330. {
  2331. UnicodeString Message = LoadStr(ANY_HOSTKEY);
  2332. FUI->Information(Message, true);
  2333. FLog->Add(llException, Message);
  2334. Result = true;
  2335. }
  2336. else if (VerifyFingerprint(ExpectedKey, FingerprintMD5, FingerprintSHA256))
  2337. {
  2338. LogEvent(L"Host key matches configured key fingerprint");
  2339. Result = true;
  2340. }
  2341. else
  2342. {
  2343. LogEvent(FORMAT(L"Host key does not match configured key fingerprint %s", (ExpectedKey)));
  2344. }
  2345. }
  2346. if (!Result)
  2347. {
  2348. ConfiguredKeyNotMatch = true;
  2349. }
  2350. }
  2351. if (!Result && AcceptNew && DebugAlwaysTrue(ConfigHostKey.IsEmpty()))
  2352. {
  2353. try
  2354. {
  2355. UnicodeString StorageSource = StoreHostKey(Host, Port, KeyType, KeyStr);
  2356. UnicodeString StoredKeys = RetrieveHostKey(Host, Port, KeyType);
  2357. if (StoredKeys != KeyStr)
  2358. {
  2359. throw Exception(UnicodeString());
  2360. }
  2361. Configuration->Usage->Inc(L"HostKeyNewAccepted");
  2362. LogEvent(FORMAT(L"Warning: Stored new host key to %s - This should occur only on the first connection", (StorageSource)));
  2363. Result = true;
  2364. }
  2365. catch (Exception & E)
  2366. {
  2367. FUI->FatalError(&E, LoadStr(STORE_NEW_HOSTKEY_ERROR));
  2368. }
  2369. }
  2370. if (!Result)
  2371. {
  2372. bool Verified;
  2373. if (ConfiguredKeyNotMatch || Configuration->DisableAcceptingHostKeys)
  2374. {
  2375. Verified = false;
  2376. }
  2377. // no point offering manual verification, if we cannot persist the verified key
  2378. else if (!Configuration->Persistent && Configuration->Scripting)
  2379. {
  2380. Verified = false;
  2381. }
  2382. else
  2383. {
  2384. // We should not offer caching if !Configuration->Persistent,
  2385. // but as scripting mode is handled earlier and in GUI it hardly happens,
  2386. // it's a small issue.
  2387. TClipboardHandler ClipboardHandler;
  2388. ClipboardHandler.Text = FingerprintSHA256 + L"\n" + FingerprintMD5;
  2389. TPasteKeyHandler PasteKeyHandler;
  2390. PasteKeyHandler.KeyStr = KeyStr;
  2391. PasteKeyHandler.FingerprintMD5 = FingerprintMD5;
  2392. PasteKeyHandler.FingerprintSHA256 = FingerprintSHA256;
  2393. PasteKeyHandler.UI = FUI;
  2394. bool Unknown = StoredKeys.IsEmpty();
  2395. int Answers;
  2396. int AliasesCount;
  2397. TQueryButtonAlias Aliases[4];
  2398. Aliases[0].Button = qaRetry;
  2399. Aliases[0].Alias = LoadStr(COPY_KEY_BUTTON);
  2400. Aliases[0].ActionAlias = LoadStr(COPY_KEY_ACTION);
  2401. Aliases[0].OnSubmit = &ClipboardHandler.Copy;
  2402. Aliases[1].Button = qaIgnore;
  2403. Aliases[1].Alias = LoadStr(PASTE_KEY_BUTTON);
  2404. Aliases[1].OnSubmit = &PasteKeyHandler.Paste;
  2405. Aliases[1].GroupWith = qaYes;
  2406. Answers = qaYes | qaCancel | qaRetry | qaIgnore;
  2407. AliasesCount = 2;
  2408. if (!Unknown)
  2409. {
  2410. Aliases[2].Button = qaYes;
  2411. Aliases[2].Alias = LoadStr(UPDATE_KEY_BUTTON);
  2412. Aliases[3].Button = qaOK;
  2413. Aliases[3].Alias = LoadStr(ADD_KEY_BUTTON);
  2414. AliasesCount += 2;
  2415. Answers |= qaSkip | qaOK;
  2416. }
  2417. else
  2418. {
  2419. Answers |= qaNo;
  2420. }
  2421. TQueryParams Params(qpWaitInBatch);
  2422. Params.NoBatchAnswers = qaYes | qaRetry | qaSkip | qaOK;
  2423. Params.HelpKeyword = (Unknown ? HELP_UNKNOWN_KEY : HELP_DIFFERENT_KEY);
  2424. Params.Aliases = Aliases;
  2425. Params.AliasesCount = AliasesCount;
  2426. UnicodeString KeyTypeHuman = GetKeyTypeHuman(KeyType);
  2427. UnicodeString KeyDetails = FMTLOAD(KEY_DETAILS, (SignKeyType, SHA256, MD5));
  2428. UnicodeString Message = FMTLOAD((Unknown ? UNKNOWN_KEY4 : DIFFERENT_KEY5), (KeyTypeHuman, KeyDetails));
  2429. if (Configuration->Scripting)
  2430. {
  2431. AddToList(Message, LoadStr(SCRIPTING_USE_HOSTKEY), L"\n");
  2432. }
  2433. unsigned int R =
  2434. FUI->QueryUser(Message, NULL, Answers, &Params, qtWarning);
  2435. UnicodeString StoreKeyStr = KeyStr;
  2436. switch (R) {
  2437. case qaOK:
  2438. DebugAssert(!Unknown);
  2439. StoreKeyStr = (StoredKeys + HostKeyDelimiter + StoreKeyStr);
  2440. // fall thru
  2441. case qaYes:
  2442. StoreHostKey(Host, Port, KeyType, StoreKeyStr);
  2443. Verified = true;
  2444. break;
  2445. case qaCancel:
  2446. Verified = false;
  2447. break;
  2448. default:
  2449. Verified = true;
  2450. break;
  2451. }
  2452. }
  2453. if (!Verified)
  2454. {
  2455. Configuration->Usage->Inc(L"HostNotVerified");
  2456. UnicodeString Message;
  2457. if (ConfiguredKeyNotMatch)
  2458. {
  2459. Message = FMTLOAD(CONFIGURED_KEY_NOT_MATCH, (ConfigHostKey));
  2460. }
  2461. else if (!Configuration->Persistent && Configuration->Scripting)
  2462. {
  2463. Message = LoadStr(HOSTKEY_NOT_CONFIGURED);
  2464. }
  2465. else
  2466. {
  2467. Message = LoadStr(KEY_NOT_VERIFIED);
  2468. }
  2469. Exception * E = new Exception(MainInstructions(Message));
  2470. try
  2471. {
  2472. FUI->FatalError(E, FMTLOAD(HOSTKEY, (FingerprintSHA256)));
  2473. }
  2474. __finally
  2475. {
  2476. delete E;
  2477. }
  2478. }
  2479. }
  2480. Configuration->RememberLastFingerprint(FSessionData->SiteKey, SshFingerprintType, FingerprintSHA256);
  2481. }
  2482. //---------------------------------------------------------------------------
  2483. bool __fastcall TSecureShell::HaveHostKey(UnicodeString Host, int Port, const UnicodeString KeyType)
  2484. {
  2485. // Return true, if we have any host key fingerprint of a particular type
  2486. GetRealHost(Host, Port);
  2487. UnicodeString StoredKeys = RetrieveHostKey(Host, Port, KeyType);
  2488. bool Result = !StoredKeys.IsEmpty();
  2489. if (!FSessionData->HostKey.IsEmpty())
  2490. {
  2491. UnicodeString Buf = FSessionData->HostKey;
  2492. while (!Result && !Buf.IsEmpty())
  2493. {
  2494. UnicodeString ExpectedKey = CutToChar(Buf, HostKeyDelimiter, false);
  2495. UnicodeString ExpectedKeyType = KeyTypeFromFingerprint(ExpectedKey);
  2496. Result = SameText(ExpectedKeyType, KeyType);
  2497. }
  2498. }
  2499. if (Result &&
  2500. (FLoggedKnownHostKeys.find(KeyType) == FLoggedKnownHostKeys.end()))
  2501. {
  2502. LogEvent(FORMAT(L"Have a known host key of type %s", (KeyType)));
  2503. // This is called multiple times for the same cached key since PuTTY 0.76 (support for rsa-sha2*?).
  2504. // Avoid repeated log entries.
  2505. FLoggedKnownHostKeys.insert(KeyType);
  2506. }
  2507. return Result;
  2508. }
  2509. //---------------------------------------------------------------------------
  2510. void __fastcall TSecureShell::AskAlg(UnicodeString AlgType, UnicodeString AlgName)
  2511. {
  2512. // beware of changing order
  2513. static const TPuttyTranslation AlgTranslation[] = {
  2514. { L"cipher", CIPHER_TYPE_BOTH2 },
  2515. { L"client-to-server cipher", CIPHER_TYPE_CS2 },
  2516. { L"server-to-client cipher", CIPHER_TYPE_SC2 },
  2517. { L"key-exchange algorithm", KEY_EXCHANGE_ALG },
  2518. { L"hostkey type", KEYKEY_TYPE },
  2519. };
  2520. TranslatePuttyMessage(AlgTranslation, LENOF(AlgTranslation), AlgType);
  2521. UnicodeString Msg = FMTLOAD(ALG_BELOW_TRESHOLD, (AlgType, AlgName));
  2522. if (FUI->QueryUser(Msg, NULL, qaYes | qaNo, NULL, qtWarning) == qaNo)
  2523. {
  2524. UnicodeString Error = FMTLOAD(ALG_NOT_VERIFIED, (AlgType, AlgName));
  2525. FUI->FatalError(NULL, Error);
  2526. }
  2527. }
  2528. //---------------------------------------------------------------------------
  2529. void __fastcall TSecureShell::DisplayBanner(const UnicodeString & Banner)
  2530. {
  2531. // Since 0.77 PuTTY calls this again with CRLF if the actual banner does not end with one.
  2532. if (!Banner.Trim().IsEmpty())
  2533. {
  2534. FUI->DisplayBanner(Banner);
  2535. }
  2536. }
  2537. //---------------------------------------------------------------------------
  2538. void __fastcall TSecureShell::OldKeyfileWarning()
  2539. {
  2540. // actually never called, see Net.cpp
  2541. FUI->QueryUser(LoadStr(OLD_KEY), NULL, qaOK, NULL, qtWarning);
  2542. }
  2543. //---------------------------------------------------------------------------
  2544. bool __fastcall TSecureShell::GetStoredCredentialsTried()
  2545. {
  2546. return FStoredPasswordTried || FStoredPasswordTriedForKI || FStoredPassphraseTried;
  2547. }
  2548. //---------------------------------------------------------------------------
  2549. bool __fastcall TSecureShell::GetReady()
  2550. {
  2551. return FOpened && (FWaiting == 0);
  2552. }
  2553. //---------------------------------------------------------------------------
  2554. void __fastcall TSecureShell::CollectUsage()
  2555. {
  2556. if (FCollectPrivateKeyUsage)
  2557. {
  2558. Configuration->Usage->Inc(L"OpenedSessionsPrivateKey2");
  2559. }
  2560. Configuration->Usage->Inc(L"OpenedSessionsSSH2");
  2561. if (SshImplementation == sshiOpenSSH)
  2562. {
  2563. Configuration->Usage->Inc(L"OpenedSessionsSSHOpenSSH");
  2564. }
  2565. else if (SshImplementation == sshiProFTPD)
  2566. {
  2567. Configuration->Usage->Inc(L"OpenedSessionsSSHProFTPD");
  2568. }
  2569. else if (SshImplementation == sshiBitvise)
  2570. {
  2571. Configuration->Usage->Inc(L"OpenedSessionsSSHBitvise");
  2572. }
  2573. else if (SshImplementation == sshiTitan)
  2574. {
  2575. Configuration->Usage->Inc(L"OpenedSessionsSSHTitan");
  2576. }
  2577. else if (SshImplementation == sshiOpenVMS)
  2578. {
  2579. Configuration->Usage->Inc(L"OpenedSessionsSSHOpenVMS");
  2580. }
  2581. else if (ContainsText(FSessionInfo.SshImplementation, L"Serv-U"))
  2582. {
  2583. Configuration->Usage->Inc(L"OpenedSessionsSSHServU");
  2584. }
  2585. else if (SshImplementation == sshiCerberus)
  2586. {
  2587. // Ntb, Cerberus can also be detected using vendor-id extension
  2588. // Cerberus FTP Server 7.0.5.3 (70005003) by Cerberus, LLC
  2589. Configuration->Usage->Inc(L"OpenedSessionsSSHCerberus");
  2590. }
  2591. else if (ContainsText(FSessionInfo.SshImplementation, L"WS_FTP"))
  2592. {
  2593. Configuration->Usage->Inc(L"OpenedSessionsSSHWSFTP");
  2594. }
  2595. // SSH-2.0-1.36_sshlib GlobalSCAPE
  2596. else if (ContainsText(FSessionInfo.SshImplementation, L"GlobalSCAPE"))
  2597. {
  2598. Configuration->Usage->Inc(L"OpenedSessionsSSHGlobalScape");
  2599. }
  2600. // SSH-2.0-CompleteFTP-8.1.3
  2601. else if (ContainsText(FSessionInfo.SshImplementation, L"CompleteFTP"))
  2602. {
  2603. Configuration->Usage->Inc(L"OpenedSessionsSSHComplete");
  2604. }
  2605. // SSH-2.0-CoreFTP-0.3.3
  2606. else if (ContainsText(FSessionInfo.SshImplementation, L"CoreFTP"))
  2607. {
  2608. Configuration->Usage->Inc(L"OpenedSessionsSSHCore");
  2609. }
  2610. // SSH-2.0-SSHD-CORE-0.11.0 (value is configurable, this is a default)
  2611. // (Apache Mina SSHD, e.g. on brickftp.com)
  2612. else if (ContainsText(FSessionInfo.SshImplementation, L"SSHD-CORE"))
  2613. {
  2614. Configuration->Usage->Inc(L"OpenedSessionsSSHApache");
  2615. }
  2616. // SSH-2.0-Syncplify_Me_Server
  2617. else if (ContainsText(FSessionInfo.SshImplementation, L"Syncplify"))
  2618. {
  2619. Configuration->Usage->Inc(L"OpenedSessionsSSHSyncplify");
  2620. }
  2621. else if (ContainsText(FSessionInfo.SshImplementation, L"zFTPServer"))
  2622. {
  2623. Configuration->Usage->Inc(L"OpenedSessionsSSHzFTP");
  2624. }
  2625. else
  2626. {
  2627. Configuration->Usage->Inc(L"OpenedSessionsSSHOther");
  2628. }
  2629. }
  2630. //---------------------------------------------------------------------------
  2631. bool __fastcall TSecureShell::CanChangePassword()
  2632. {
  2633. return
  2634. // These major SSH servers explicitly do not support password change.
  2635. (SshImplementation != sshiOpenSSH) && // See userauth_passwd
  2636. (SshImplementation != sshiProFTPD); // See sftp_auth_password
  2637. }