SecureShell.cpp 82 KB

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