| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620 |
- //---------------------------------------------------------------------------
- #include <vcl.h>
- #pragma hdrstop
- #define PUTTY_DO_GLOBALS
- #include "PuttyIntf.h"
- #include "Interface.h"
- #include "SecureShell.h"
- #include "Exceptions.h"
- #include "CoreMain.h"
- #include "TextsCore.h"
- //---------------------------------------------------------------------------
- char sshver[50];
- CRITICAL_SECTION noise_section;
- bool SaveRandomSeed;
- //---------------------------------------------------------------------------
- void __fastcall PuttyInitialize()
- {
- SaveRandomSeed = true;
- InitializeCriticalSection(&noise_section);
- // make sure random generator is initialised, so random_save_seed()
- // in destructor can proceed
- random_ref();
- flags = FLAG_VERBOSE | FLAG_SYNCAGENT; // verbose log
- sk_init();
- sspi_init();
- AnsiString VersionString = SshVersionString();
- assert(!VersionString.IsEmpty() && (VersionString.Length() < sizeof(sshver)));
- strcpy(sshver, VersionString.c_str());
- }
- //---------------------------------------------------------------------------
- void __fastcall PuttyFinalize()
- {
- if (SaveRandomSeed)
- {
- random_save_seed();
- }
- random_unref();
- sspi_cleanup();
- sk_cleanup();
- DeleteCriticalSection(&noise_section);
- }
- //---------------------------------------------------------------------------
- void __fastcall DontSaveRandomSeed()
- {
- SaveRandomSeed = false;
- }
- //---------------------------------------------------------------------------
- bool __fastcall IsListenerFree(unsigned int PortNumber)
- {
- Socket socket =
- sk_newlistener(NULL, PortNumber, NULL, true, ADDRTYPE_IPV4);
- bool Result = (sk_socket_error(socket) == NULL);
- sk_close(socket);
- return Result;
- }
- //---------------------------------------------------------------------------
- int __fastcall ProtocolByName(const AnsiString & Name)
- {
- int Protocol = 0; // raw
- for (int Index = 0; backends[Index].name != NULL; Index++)
- {
- if (!Name.AnsiCompareIC(backends[Index].name))
- {
- Protocol = (TProtocol)backends[Index].protocol;
- break;
- }
- }
- return Protocol;
- }
- //---------------------------------------------------------------------------
- AnsiString __fastcall ProtocolName(int Protocol)
- {
- for (int Index = 0; backends[Index].name != NULL; Index++)
- {
- if ((TProtocol)backends[Index].protocol == Protocol)
- {
- return backends[Index].name;
- }
- }
- return "raw";
- }
- //---------------------------------------------------------------------------
- extern "C" char * do_select(Plug plug, SOCKET skt, int startup)
- {
- // is NULL, when sk_newlistener is used to check for free port from
- // TTerminal::OpenTunnel()
- if (plug != NULL)
- {
- void * frontend;
- if (!is_ssh(plug) && !is_pfwd(plug))
- {
- // If it is not SSH/PFwd plug, them it must be Proxy plug.
- // Get SSH/PFwd plug which it wraps.
- Proxy_Socket ProxySocket = ((Proxy_Plug)plug)->proxy_socket;
- plug = ProxySocket->plug;
- }
- bool pfwd = is_pfwd(plug);
- if (pfwd)
- {
- plug = (Plug)get_pfwd_backend(plug);
- }
- frontend = get_ssh_frontend(plug);
- assert(frontend);
- TSecureShell * SecureShell = reinterpret_cast<TSecureShell*>(frontend);
- if (!pfwd)
- {
- SecureShell->UpdateSocket(skt, startup);
- }
- else
- {
- SecureShell->UpdatePortFwdSocket(skt, startup);
- }
- }
- return NULL;
- }
- //---------------------------------------------------------------------------
- int from_backend(void * frontend, int is_stderr, const char * data, int datalen)
- {
- assert(frontend);
- if (is_stderr >= 0)
- {
- assert((is_stderr == 0) || (is_stderr == 1));
- ((TSecureShell *)frontend)->FromBackend((is_stderr == 1), data, datalen);
- }
- else
- {
- assert(is_stderr == -1);
- ((TSecureShell *)frontend)->CWrite(data, datalen);
- }
- return 0;
- }
- //---------------------------------------------------------------------------
- int from_backend_untrusted(void * /*frontend*/, const char * /*data*/, int /*len*/)
- {
- // currently used with authentication banner only,
- // for which we have own interface display_banner
- return 0;
- }
- //---------------------------------------------------------------------------
- int get_userpass_input(prompts_t * p, unsigned char * /*in*/, int /*inlen*/)
- {
- assert(p != NULL);
- TSecureShell * SecureShell = reinterpret_cast<TSecureShell *>(p->frontend);
- assert(SecureShell != NULL);
- int Result;
- TStrings * Prompts = new TStringList();
- TStrings * Results = new TStringList();
- try
- {
- for (int Index = 0; Index < int(p->n_prompts); Index++)
- {
- prompt_t * Prompt = p->prompts[Index];
- Prompts->AddObject(Prompt->prompt, (TObject *)Prompt->echo);
- Results->AddObject("", (TObject *)Prompt->result_len);
- }
- if (SecureShell->PromptUser(p->to_server, p->name, p->name_reqd,
- p->instruction, p->instr_reqd, Prompts, Results))
- {
- for (int Index = 0; Index < int(p->n_prompts); Index++)
- {
- prompt_t * Prompt = p->prompts[Index];
- strncpy(Prompt->result, Results->Strings[Index].c_str(), Prompt->result_len);
- Prompt->result[Prompt->result_len - 1] = '\0';
- }
- Result = 1;
- }
- else
- {
- Result = 0;
- }
- }
- __finally
- {
- delete Prompts;
- delete Results;
- }
- return Result;
- }
- //---------------------------------------------------------------------------
- char * get_ttymode(void * /*frontend*/, const char * /*mode*/)
- {
- // should never happen when Config.nopty == TRUE
- assert(false);
- return NULL;
- }
- //---------------------------------------------------------------------------
- void logevent(void * frontend, const char * string)
- {
- // Frontend maybe NULL here
- if (frontend != NULL)
- {
- ((TSecureShell *)frontend)->PuttyLogEvent(string);
- }
- }
- //---------------------------------------------------------------------------
- void connection_fatal(void * frontend, char * fmt, ...)
- {
- va_list Param;
- char Buf[200];
- va_start(Param, fmt);
- vsnprintf(Buf, sizeof(Buf), fmt, Param); \
- Buf[sizeof(Buf) - 1] = '\0'; \
- va_end(Param);
- assert(frontend != NULL);
- ((TSecureShell *)frontend)->PuttyFatalError(Buf);
- }
- //---------------------------------------------------------------------------
- int verify_ssh_host_key(void * frontend, char * host, int port, char * keytype,
- char * keystr, char * fingerprint, void (*/*callback*/)(void * ctx, int result),
- void * /*ctx*/)
- {
- assert(frontend != NULL);
- ((TSecureShell *)frontend)->VerifyHostKey(host, port, keytype, keystr, fingerprint);
- // We should return 0 when key was not confirmed, we throw exception instead.
- return 1;
- }
- //---------------------------------------------------------------------------
- int askalg(void * frontend, const char * algtype, const char * algname,
- void (*/*callback*/)(void * ctx, int result), void * /*ctx*/)
- {
- assert(frontend != NULL);
- ((TSecureShell *)frontend)->AskAlg(algtype, algname);
- // We should return 0 when alg was not confirmed, we throw exception instead.
- return 1;
- }
- //---------------------------------------------------------------------------
- void old_keyfile_warning(void)
- {
- // no reference to TSecureShell instace available
- }
- //---------------------------------------------------------------------------
- void display_banner(void * frontend, const char * banner, int size)
- {
- assert(frontend);
- AnsiString Banner(banner, size);
- ((TSecureShell *)frontend)->DisplayBanner(Banner);
- }
- //---------------------------------------------------------------------------
- static void SSHFatalError(const char * Format, va_list Param)
- {
- char Buf[200];
- vsnprintf(Buf, sizeof(Buf), Format, Param);
- Buf[sizeof(Buf) - 1] = '\0';
- // Only few calls from putty\winnet.c might be connected with specific
- // TSecureShell. Otherwise called only for really fatal errors
- // like 'out of memory' from putty\ssh.c.
- throw ESshFatal(NULL, Buf);
- }
- //---------------------------------------------------------------------------
- void fatalbox(char * fmt, ...)
- {
- va_list Param;
- va_start(Param, fmt);
- SSHFatalError(fmt, Param);
- va_end(Param);
- }
- //---------------------------------------------------------------------------
- void modalfatalbox(char * fmt, ...)
- {
- va_list Param;
- va_start(Param, fmt);
- SSHFatalError(fmt, Param);
- va_end(Param);
- }
- //---------------------------------------------------------------------------
- void cleanup_exit(int /*code*/)
- {
- throw ESshFatal(NULL, "");
- }
- //---------------------------------------------------------------------------
- int askappend(void * /*frontend*/, Filename /*filename*/,
- void (*/*callback*/)(void * ctx, int result), void * /*ctx*/)
- {
- // this is called from logging.c of putty, which is never used with WinSCP
- assert(false);
- return 0;
- }
- //---------------------------------------------------------------------------
- void ldisc_send(void * /*handle*/, char * /*buf*/, int len, int /*interactive*/)
- {
- // This is only here because of the calls to ldisc_send(NULL,
- // 0) in ssh.c. Nothing in PSCP actually needs to use the ldisc
- // as an ldisc. So if we get called with any real data, I want
- // to know about it.
- assert(len == 0);
- USEDPARAM(len);
- }
- //---------------------------------------------------------------------------
- void agent_schedule_callback(void (* /*callback*/)(void *, void *, int),
- void * /*callback_ctx*/, void * /*data*/, int /*len*/)
- {
- assert(false);
- }
- //---------------------------------------------------------------------------
- void notify_remote_exit(void * /*frontend*/)
- {
- // nothing
- }
- //---------------------------------------------------------------------------
- void update_specials_menu(void * /*frontend*/)
- {
- // nothing
- }
- //---------------------------------------------------------------------------
- typedef void (*timer_fn_t)(void *ctx, long now);
- long schedule_timer(int ticks, timer_fn_t /*fn*/, void * /*ctx*/)
- {
- return ticks + GetTickCount();
- }
- //---------------------------------------------------------------------------
- void expire_timer_context(void * /*ctx*/)
- {
- // nothing
- }
- //---------------------------------------------------------------------------
- Pinger pinger_new(Config * /*cfg*/, Backend * /*back*/, void * /*backhandle*/)
- {
- return NULL;
- }
- //---------------------------------------------------------------------------
- void pinger_reconfig(Pinger /*pinger*/, Config * /*oldcfg*/, Config * /*newcfg*/)
- {
- // nothing
- }
- //---------------------------------------------------------------------------
- void pinger_free(Pinger /*pinger*/)
- {
- // nothing
- }
- //---------------------------------------------------------------------------
- void set_busy_status(void * /*frontend*/, int /*status*/)
- {
- // nothing
- }
- //---------------------------------------------------------------------------
- static long OpenWinSCPKey(HKEY Key, const char * SubKey, HKEY * Result, bool CanCreate)
- {
- long R;
- assert(Configuration != NULL);
- assert(Key == HKEY_CURRENT_USER);
- USEDPARAM(Key);
- AnsiString RegKey = SubKey;
- int PuttyKeyLen = Configuration->PuttyRegistryStorageKey.Length();
- assert(RegKey.SubString(1, PuttyKeyLen) == Configuration->PuttyRegistryStorageKey);
- RegKey = RegKey.SubString(PuttyKeyLen + 1, RegKey.Length() - PuttyKeyLen);
- if (!RegKey.IsEmpty())
- {
- assert(RegKey[1] == '\\');
- RegKey.Delete(1, 1);
- }
- if (RegKey.IsEmpty())
- {
- *Result = static_cast<HKEY>(NULL);
- R = ERROR_SUCCESS;
- }
- else
- {
- // we expect this to be called only from verify_host_key() or store_host_key()
- assert(RegKey == "SshHostKeys");
- THierarchicalStorage * Storage = Configuration->CreateScpStorage(false);
- Storage->AccessMode = (CanCreate ? smReadWrite : smRead);
- if (Storage->OpenSubKey(RegKey, CanCreate))
- {
- *Result = static_cast<HKEY>(Storage);
- R = ERROR_SUCCESS;
- }
- else
- {
- delete Storage;
- R = ERROR_CANTOPEN;
- }
- }
- return R;
- }
- //---------------------------------------------------------------------------
- long reg_open_winscp_key(HKEY Key, const char * SubKey, HKEY * Result)
- {
- return OpenWinSCPKey(Key, SubKey, Result, false);
- }
- //---------------------------------------------------------------------------
- long reg_create_winscp_key(HKEY Key, const char * SubKey, HKEY * Result)
- {
- return OpenWinSCPKey(Key, SubKey, Result, true);
- }
- //---------------------------------------------------------------------------
- long reg_query_winscp_value_ex(HKEY Key, const char * ValueName, unsigned long * /*Reserved*/,
- unsigned long * Type, unsigned char * Data, unsigned long * DataSize)
- {
- long R;
- assert(Configuration != NULL);
- THierarchicalStorage * Storage = static_cast<THierarchicalStorage *>(Key);
- AnsiString Value;
- if (Storage == NULL)
- {
- if (AnsiString(ValueName) == "RandSeedFile")
- {
- Value = Configuration->RandomSeedFileName;
- R = ERROR_SUCCESS;
- }
- else
- {
- assert(false);
- R = ERROR_READ_FAULT;
- }
- }
- else
- {
- if (Storage->ValueExists(ValueName))
- {
- Value = Storage->ReadStringRaw(ValueName, "");
- R = ERROR_SUCCESS;
- }
- else
- {
- R = ERROR_READ_FAULT;
- }
- }
- if (R == ERROR_SUCCESS)
- {
- assert(Type != NULL);
- *Type = REG_SZ;
- char * DataStr = reinterpret_cast<char *>(Data);
- strncpy(DataStr, Value.c_str(), *DataSize);
- DataStr[*DataSize - 1] = '\0';
- *DataSize = strlen(DataStr);
- }
- return R;
- }
- //---------------------------------------------------------------------------
- long reg_set_winscp_value_ex(HKEY Key, const char * ValueName, unsigned long /*Reserved*/,
- unsigned long Type, const unsigned char * Data, unsigned long DataSize)
- {
- assert(Configuration != NULL);
- assert(Type == REG_SZ);
- USEDPARAM(Type);
- THierarchicalStorage * Storage = static_cast<THierarchicalStorage *>(Key);
- assert(Storage != NULL);
- if (Storage != NULL)
- {
- AnsiString Value(reinterpret_cast<const char*>(Data), DataSize - 1);
- Storage->WriteStringRaw(ValueName, Value);
- }
- return ERROR_SUCCESS;
- }
- //---------------------------------------------------------------------------
- long reg_close_winscp_key(HKEY Key)
- {
- assert(Configuration != NULL);
- THierarchicalStorage * Storage = static_cast<THierarchicalStorage *>(Key);
- if (Storage != NULL)
- {
- delete Storage;
- }
- return ERROR_SUCCESS;
- }
- //---------------------------------------------------------------------------
- TKeyType KeyType(AnsiString FileName)
- {
- assert(ktUnopenable == SSH_KEYTYPE_UNOPENABLE);
- assert(ktSSHCom == SSH_KEYTYPE_SSHCOM);
- Filename KeyFile;
- ASCOPY(KeyFile.path, FileName);
- return (TKeyType)key_type(&KeyFile);
- }
- //---------------------------------------------------------------------------
- AnsiString KeyTypeName(TKeyType KeyType)
- {
- return key_type_to_str(KeyType);
- }
- //---------------------------------------------------------------------------
- //---------------------------------------------------------------------------
- struct TUnicodeEmitParams
- {
- WideString Buffer;
- int Pos;
- int Len;
- };
- //---------------------------------------------------------------------------
- extern "C" void UnicodeEmit(void * AParams, long int Output)
- {
- if (Output == 0xFFFFL) // see Putty's charset\internal.h
- {
- throw Exception(LoadStr(DECODE_UTF_ERROR));
- }
- TUnicodeEmitParams * Params = (TUnicodeEmitParams *)AParams;
- if (Params->Pos >= Params->Len)
- {
- Params->Len += 50;
- Params->Buffer.SetLength(Params->Len);
- }
- Params->Pos++;
- Params->Buffer[Params->Pos] = (wchar_t)Output;
- }
- //---------------------------------------------------------------------------
- AnsiString __fastcall DecodeUTF(const AnsiString UTF)
- {
- charset_state State;
- char * Str;
- TUnicodeEmitParams Params;
- AnsiString Result;
- State.s0 = 0;
- Str = UTF.c_str();
- Params.Pos = 0;
- Params.Len = UTF.Length();
- Params.Buffer.SetLength(Params.Len);
- while (*Str)
- {
- read_utf8(NULL, (unsigned char)*Str, &State, UnicodeEmit, &Params);
- Str++;
- }
- Params.Buffer.SetLength(Params.Pos);
- return Params.Buffer;
- }
- //---------------------------------------------------------------------------
- struct TUnicodeEmitParams2
- {
- AnsiString Buffer;
- int Pos;
- int Len;
- };
- //---------------------------------------------------------------------------
- extern "C" void UnicodeEmit2(void * AParams, long int Output)
- {
- if (Output == 0xFFFFL) // see Putty's charset\internal.h
- {
- throw Exception(LoadStr(DECODE_UTF_ERROR));
- }
- TUnicodeEmitParams2 * Params = (TUnicodeEmitParams2 *)AParams;
- if (Params->Pos >= Params->Len)
- {
- Params->Len += 50;
- Params->Buffer.SetLength(Params->Len);
- }
- Params->Pos++;
- Params->Buffer[Params->Pos] = (unsigned char)Output;
- }
- //---------------------------------------------------------------------------
- AnsiString __fastcall EncodeUTF(const WideString Source)
- {
- // WideString::c_bstr() returns NULL for empty strings
- // (as opposite to AnsiString::c_str() which returns "")
- if (Source.IsEmpty())
- {
- return "";
- }
- else
- {
- charset_state State;
- wchar_t * Str;
- TUnicodeEmitParams2 Params;
- AnsiString Result;
- State.s0 = 0;
- Str = Source.c_bstr();
- Params.Pos = 0;
- Params.Len = Source.Length();
- Params.Buffer.SetLength(Params.Len);
- while (*Str)
- {
- write_utf8(NULL, (wchar_t)*Str, &State, UnicodeEmit2, &Params);
- Str++;
- }
- Params.Buffer.SetLength(Params.Pos);
- return Params.Buffer;
- }
- }
- //---------------------------------------------------------------------------
- __int64 __fastcall ParseSize(AnsiString SizeStr)
- {
- return parse_blocksize(SizeStr.c_str());
- }
- //---------------------------------------------------------------------------
- bool __fastcall HasGSSAPI()
- {
- static int has = -1;
- if (has < 0)
- {
- has = (has_gssapi_ssh() ? 1 : 0);
- }
- return (has > 0);
- }
- //---------------------------------------------------------------------------
|