| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685 |
- //---------------------------------------------------------------------------
- #include <vcl.h>
- #pragma hdrstop
- #ifndef NO_FILEZILLA
- //---------------------------------------------------------------------------
- #include <list>
- #include "FtpFileSystem.h"
- #include "FileZillaIntf.h"
- #include "Common.h"
- #include "Exceptions.h"
- #include "Terminal.h"
- #include "TextsCore.h"
- //---------------------------------------------------------------------------
- #pragma package(smart_init)
- //---------------------------------------------------------------------------
- #define FILE_OPERATION_LOOP_EX(ALLOW_SKIP, MESSAGE, OPERATION) \
- FILE_OPERATION_LOOP_CUSTOM(FTerminal, ALLOW_SKIP, MESSAGE, OPERATION)
- //---------------------------------------------------------------------------
- class TFileZillaImpl : public TFileZillaIntf
- {
- public:
- __fastcall TFileZillaImpl(TFTPFileSystem * FileSystem);
- virtual const char * __fastcall Option(int OptionID) const;
- virtual int __fastcall OptionVal(int OptionID) const;
- protected:
- virtual bool __fastcall DoPostMessage(WPARAM wParam, LPARAM lParam);
- virtual bool __fastcall HandleStatus(const char * Status, int Type);
- virtual bool __fastcall HandleAsynchRequestOverwrite(
- char * FileName1, size_t FileName1Len, const char * FileName2,
- const char * Path1, const char * Path2,
- __int64 Size1, __int64 Size2, time_t Time1, time_t Time2,
- bool HasTime1, bool HasTime2, void * UserData, int & RequestResult);
- virtual bool __fastcall HandleListData(const char * Path, const TListDataEntry * Entries,
- unsigned int Count);
- virtual bool __fastcall HandleTransferStatus(bool Valid, __int64 TransferSize,
- __int64 Bytes, int Percent, int TimeElapsed, int TimeLeft, int TransferRate,
- bool FileTransfer);
- virtual bool __fastcall HandleReply(int Command, unsigned int Reply);
- virtual bool __fastcall CheckError(int ReturnCode, const char * Context);
- private:
- TFTPFileSystem * FFileSystem;
- };
- //---------------------------------------------------------------------------
- __fastcall TFileZillaImpl::TFileZillaImpl(TFTPFileSystem * FileSystem) :
- TFileZillaIntf(),
- FFileSystem(FileSystem)
- {
- }
- //---------------------------------------------------------------------------
- const char * __fastcall TFileZillaImpl::Option(int OptionID) const
- {
- return FFileSystem->GetOption(OptionID);
- }
- //---------------------------------------------------------------------------
- int __fastcall TFileZillaImpl::OptionVal(int OptionID) const
- {
- return FFileSystem->GetOptionVal(OptionID);
- }
- //---------------------------------------------------------------------------
- bool __fastcall TFileZillaImpl::DoPostMessage(WPARAM wParam, LPARAM lParam)
- {
- return FFileSystem->PostMessage(wParam, lParam);
- }
- //---------------------------------------------------------------------------
- bool __fastcall TFileZillaImpl::HandleStatus(const char * Status, int Type)
- {
- return FFileSystem->HandleStatus(Status, Type);
- }
- //---------------------------------------------------------------------------
- bool __fastcall TFileZillaImpl::HandleAsynchRequestOverwrite(
- char * FileName1, size_t FileName1Len, const char * FileName2,
- const char * Path1, const char * Path2,
- __int64 Size1, __int64 Size2, time_t Time1, time_t Time2,
- bool HasTime1, bool HasTime2, void * UserData, int & RequestResult)
- {
- return FFileSystem->HandleAsynchRequestOverwrite(
- FileName1, FileName1Len, FileName2, Path1, Path2, Size1, Size2, Time1, Time2,
- HasTime1, HasTime2, UserData, RequestResult);
- }
- //---------------------------------------------------------------------------
- bool __fastcall TFileZillaImpl::HandleListData(const char * Path,
- const TListDataEntry * Entries, unsigned int Count)
- {
- return FFileSystem->HandleListData(Path, Entries, Count);
- }
- //---------------------------------------------------------------------------
- bool __fastcall TFileZillaImpl::HandleTransferStatus(bool Valid, __int64 TransferSize,
- __int64 Bytes, int Percent, int TimeElapsed, int TimeLeft, int TransferRate,
- bool FileTransfer)
- {
- return FFileSystem->HandleTransferStatus(Valid, TransferSize, Bytes, Percent,
- TimeElapsed, TimeLeft, TransferRate, FileTransfer);
- }
- //---------------------------------------------------------------------------
- bool __fastcall TFileZillaImpl::HandleReply(int Command, unsigned int Reply)
- {
- return FFileSystem->HandleReply(Command, Reply);
- }
- //---------------------------------------------------------------------------
- bool __fastcall TFileZillaImpl::CheckError(int ReturnCode, const char * Context)
- {
- return FFileSystem->CheckError(ReturnCode, Context);
- }
- //---------------------------------------------------------------------------
- //---------------------------------------------------------------------------
- class TMessageQueue : public std::list<std::pair<WPARAM, LPARAM> >
- {
- };
- //---------------------------------------------------------------------------
- //---------------------------------------------------------------------------
- struct TFileTransferData
- {
- TFileTransferData()
- {
- Params = 0;
- AutoResume = false;
- OverwriteResult = -1;
- }
- AnsiString FileName;
- int Params;
- bool AutoResume;
- int OverwriteResult;
- };
- //---------------------------------------------------------------------------
- const int tfFirstLevel = 0x01;
- const int tfAutoResume = 0x02;
- //---------------------------------------------------------------------------
- struct TSinkFileParams
- {
- AnsiString TargetDir;
- const TCopyParamType * CopyParam;
- int Params;
- TFileOperationProgressType * OperationProgress;
- bool Skipped;
- unsigned int Flags;
- };
- //---------------------------------------------------------------------------
- __fastcall TFTPFileSystem::TFTPFileSystem(TTerminal * ATerminal):
- TCustomFileSystem(ATerminal),
- FFileZillaIntf(NULL),
- FQueueCriticalSection(new TCriticalSection),
- FQueueEvent(CreateEvent(NULL, true, false, NULL)),
- FQueue(new TMessageQueue),
- FReply(0),
- FCommandReply(0),
- FLastCommand(CMD_UNKNOWN),
- FLastResponse(new TStringList()),
- FLastError(new TStringList()),
- FFeatures(new TStringList()),
- FFileList(NULL),
- FFileListCache(NULL),
- FActive(false),
- FWaitingForReply(false),
- FIgnoreFileList(false),
- FOnCaptureOutput(NULL),
- FFileSystemInfoValid(false),
- FListAll(-1)
- {
- ResetReply();
- FFileSystemInfo.ProtocolBaseName = "FTP";
- FFileSystemInfo.ProtocolName = FFileSystemInfo.ProtocolBaseName;
- // capabilities of FTP protocol are fixed
- for (int Index = 0; Index < fcCount; Index++)
- {
- FFileSystemInfo.IsCapable[Index] = IsCapable((TFSCapability)Index);
- }
- }
- //---------------------------------------------------------------------------
- __fastcall TFTPFileSystem::~TFTPFileSystem()
- {
- assert(FFileList == NULL);
- FFileZillaIntf->Destroying();
- // to release memory associated with the messages
- DiscardMessages();
- delete FFileZillaIntf;
- FFileZillaIntf = NULL;
- delete FQueue;
- FQueue = NULL;
- CloseHandle(FQueueEvent);
- delete FQueueCriticalSection;
- FQueueCriticalSection = NULL;
- delete FLastResponse;
- FLastResponse = NULL;
- delete FLastError;
- FLastError = NULL;
- delete FFeatures;
- FFeatures = NULL;
- ResetCaches();
- }
- //---------------------------------------------------------------------------
- void __fastcall TFTPFileSystem::Open()
- {
- // on reconnect, typically there may be pending status messages from previous session
- DiscardMessages();
- FSessionInfo.LoginTime = Now();
- FSessionInfo.ProtocolBaseName = "FTP";
- FSessionInfo.ProtocolName = FSessionInfo.ProtocolBaseName;
- FMultineResponse = false;
- // initialize FZAPI on the first connect only
- if (FFileZillaIntf == NULL)
- {
- FFileZillaIntf = new TFileZillaImpl(this);
- try
- {
- TFileZillaIntf::TLogLevel LogLevel;
- switch (FTerminal->Configuration->LogProtocol)
- {
- default:
- case 0:
- LogLevel = TFileZillaIntf::LOG_LIST;
- break;
- case 1:
- LogLevel = TFileZillaIntf::LOG_WARNING;
- break;
- case 2:
- LogLevel = TFileZillaIntf::LOG_DEBUG;
- break;
- }
- FFileZillaIntf->SetDebugLevel(LogLevel);
- FFileZillaIntf->Init();
- }
- catch(...)
- {
- delete FFileZillaIntf;
- FFileZillaIntf = NULL;
- throw;
- }
- }
- TSessionData * Data = FTerminal->SessionData;
- AnsiString HostName = Data->HostName;
- AnsiString UserName = Data->UserName;
- AnsiString Password = Data->Password;
- AnsiString Account = Data->FtpAccount;
- AnsiString Path = Data->RemoteDirectory;
- int ServerType = 0x1000; // FZ_SERVERTYPE_FTP
- int Pasv = (Data->FtpPasvMode ? 1 : 2);
- int TimeZoneOffset = int(double(Data->TimeDifference) * 24 * 60);
- int UTF8 = 0;
- switch (Data->SFTPBug[sbUtf])
- {
- case asOn:
- UTF8 = 1;
- break;
- case asOff:
- UTF8 = 2;
- break;
- case asAuto:
- UTF8 = 0;
- break;
- };
- FPasswordFailed = false;
- bool PromptedForCredentials = false;
- do
- {
- FSystem = "";
- FFeatures->Clear();
- FFileSystemInfoValid = false;
- // !!! the same for account? it ever used?
- // ask for username if it was not specified in advance, even on retry,
- // but keep previous one as default,
- if (Data->UserName.IsEmpty())
- {
- FTerminal->LogEvent("Username prompt (no username provided)");
- if (!FPasswordFailed && !PromptedForCredentials)
- {
- FTerminal->Information(LoadStr(FTP_CREDENTIAL_PROMPT), false);
- PromptedForCredentials = true;
- }
- if (!FTerminal->PromptUser(Data,
- FMTLOAD(USERNAME_PROMPT, (Data->SessionName)),
- pkPrompt, UserName))
- {
- FTerminal->FatalError(NULL, LoadStr(AUTHENTICATION_FAILED));
- }
- else
- {
- FUserName = UserName;
- }
- }
- // ask for password if it was not specified in advance,
- // on retry ask always
- if (Data->Password.IsEmpty() || FPasswordFailed)
- {
- FTerminal->LogEvent("Password prompt (no password provided or last login attempt failed)");
- if (!FPasswordFailed && !PromptedForCredentials)
- {
- FTerminal->Information(LoadStr(FTP_CREDENTIAL_PROMPT), false);
- PromptedForCredentials = true;
- }
- // on retry ask for new password
- Password = "";
- if (!FTerminal->PromptUser(Data,
- FMTLOAD(PROMPT_SESSION_PASSWORD, (Data->SessionName)),
- pkPassword, Password))
- {
- FTerminal->FatalError(NULL, LoadStr(AUTHENTICATION_FAILED));
- }
- }
- FActive = FFileZillaIntf->Connect(
- HostName.c_str(), Data->PortNumber, UserName.c_str(),
- Password.c_str(), Account.c_str(), false, Path.c_str(),
- ServerType, Pasv, TimeZoneOffset, UTF8);
- assert(FActive);
- FPasswordFailed = false;
- try
- {
- GotReply(WaitForReply(), REPLY_CONNECT, LoadStr(CONNECTION_FAILED));
- // we have passed, even if we got 530 on the way (if it is possible at all),
- // ignore it
- assert(!FPasswordFailed);
- FPasswordFailed = false;
- }
- catch(...)
- {
- if (FPasswordFailed)
- {
- FTerminal->Information(LoadStr(FTP_ACCESS_DENIED), false);
- }
- else
- {
- throw;
- }
- }
- }
- while (FPasswordFailed);
- }
- //---------------------------------------------------------------------------
- void __fastcall TFTPFileSystem::Close()
- {
- assert(FActive);
- if (FFileZillaIntf->Close())
- {
- CHECK(FLAGSET(WaitForReply(), TFileZillaIntf::REPLY_DISCONNECTED));
- assert(FActive);
- Discard();
- }
- else
- {
- assert(false);
- }
- }
- //---------------------------------------------------------------------------
- bool __fastcall TFTPFileSystem::GetActive()
- {
- return FActive;
- }
- //---------------------------------------------------------------------------
- void __fastcall TFTPFileSystem::Idle()
- {
- if (FActive && !FWaitingForReply)
- {
- unsigned int Reply = PoolForReply();
- if (Reply != 0)
- {
- assert(FLAGSET(Reply, TFileZillaIntf::REPLY_DISCONNECTED));
- GotReply(Reply);
- }
- }
- }
- //---------------------------------------------------------------------------
- void __fastcall TFTPFileSystem::Discard()
- {
- // remove all pending messages, to get complete log
- // note that we need to retry discard on reconnect, as there still may be another
- // "disconnect/timeout/..." status messages coming
- DiscardMessages();
- assert(FActive);
- FActive = false;
- FTerminal->Closed();
- }
- //---------------------------------------------------------------------------
- AnsiString __fastcall TFTPFileSystem::AbsolutePath(AnsiString Path)
- {
- // TODO: improve (handle .. etc.)
- if (TTerminal::IsAbsolutePath(Path))
- {
- return Path;
- }
- else
- {
- return ::AbsolutePath(FCurrentDirectory, Path);
- }
- }
- //---------------------------------------------------------------------------
- AnsiString __fastcall TFTPFileSystem::ActualCurrentDirectory()
- {
- char CurrentPath[1024];
- FFileZillaIntf->GetCurrentPath(CurrentPath, sizeof(CurrentPath));
- return AnsiString(CurrentPath);
- }
- //---------------------------------------------------------------------------
- void __fastcall TFTPFileSystem::EnsureLocation()
- {
- // if we do not know what's the current directory, do nothing
- if (!FCurrentDirectory.IsEmpty())
- {
- // Make sure that the FZAPI current working directory,
- // is actually our working directory.
- // It may not be because:
- // 1) We did cached directory change
- // 2) Listing was requested for non-current directory, which
- // makes FAPI change its current directory (and not restoring it back afterwards)
- if (!UnixComparePaths(ActualCurrentDirectory(), FCurrentDirectory))
- {
- FTerminal->LogEvent(FORMAT("Synchronizing current directory \"%s\".",
- (FCurrentDirectory)));
- DoChangeDirectory(FCurrentDirectory);
- }
- }
- }
- //---------------------------------------------------------------------------
- void __fastcall TFTPFileSystem::AnyCommand(const AnsiString Command,
- TCaptureOutputEvent OutputEvent)
- {
- // end-user has right to expect that client current directory is really
- // current directory for the server
- EnsureLocation();
- assert(FOnCaptureOutput == NULL);
- FOnCaptureOutput = OutputEvent;
- try
- {
- FFileZillaIntf->CustomCommand(Command.c_str());
- GotReply(WaitForReply(), REPLY_2XX_CODE);
- }
- __finally
- {
- FOnCaptureOutput = NULL;
- }
- }
- //---------------------------------------------------------------------------
- void __fastcall TFTPFileSystem::ResetCaches()
- {
- delete FFileListCache;
- FFileListCache = NULL;
- }
- //---------------------------------------------------------------------------
- void __fastcall TFTPFileSystem::AnnounceFileListOperation()
- {
- ResetCaches();
- }
- //---------------------------------------------------------------------------
- void __fastcall TFTPFileSystem::DoChangeDirectory(const AnsiString & Directory)
- {
- AnsiString Command = FORMAT("CWD %s", (Directory));
- FFileZillaIntf->CustomCommand(Command.c_str());
- GotReply(WaitForReply(), REPLY_2XX_CODE);
- }
- //---------------------------------------------------------------------------
- void __fastcall TFTPFileSystem::ChangeDirectory(const AnsiString ADirectory)
- {
- AnsiString Directory = ADirectory;
- try
- {
- // For changing directory, we do not make paths absolute, instead we
- // delegate this to the server, hence we sychronize current working
- // directory with the server and only then we ask for the change with
- // relative path.
- // But if synchronization fails, typically because current working directory
- // no longer exists, we fall back to out own resolution, to give
- // user chance to leave the non-existing directory.
- EnsureLocation();
- }
- catch(...)
- {
- if (FTerminal->Active)
- {
- Directory = AbsolutePath(Directory);
- }
- else
- {
- throw;
- }
- }
- DoChangeDirectory(Directory);
- // make next ReadCurrentDirectory retrieve actual server-side current directory
- FCurrentDirectory = "";
- }
- //---------------------------------------------------------------------------
- void __fastcall TFTPFileSystem::CachedChangeDirectory(const AnsiString Directory)
- {
- FCurrentDirectory = Directory;
- }
- //---------------------------------------------------------------------------
- void __fastcall TFTPFileSystem::ChangeFileProperties(const AnsiString AFileName,
- const TRemoteFile * File, const TRemoteProperties * Properties)
- {
- assert(!Properties->Valid.Contains(vpGroup));
- assert(!Properties->Valid.Contains(vpOwner));
- assert(!Properties->Valid.Contains(vpLastAccess));
- assert(!Properties->Valid.Contains(vpModification));
- if (Properties->Valid.Contains(vpRights))
- {
- assert(Properties);
- TRemoteFile * OwnedFile = NULL;
- try
- {
- AnsiString FileName = AbsolutePath(AFileName);
- if (File == NULL)
- {
- ReadFile(FileName, OwnedFile);
- File = OwnedFile;
- }
- if ((File != NULL) && File->IsDirectory && !File->IsSymLink && Properties->Recursive)
- {
- FTerminal->ProcessDirectory(AFileName, FTerminal->ChangeFileProperties,
- (void*)Properties);
- }
- TRights Rights;
- if (File != NULL)
- {
- Rights = *File->Rights;
- }
- Rights |= Properties->Rights.NumberSet;
- Rights &= (unsigned short)~Properties->Rights.NumberUnset;
- if ((File != NULL) && File->IsDirectory && Properties->AddXToDirectories)
- {
- Rights.AddExecute();
- }
- AnsiString FileNameOnly = UnixExtractFileName(FileName);
- AnsiString FilePath = UnixExtractFilePath(FileName);
- // FZAPI wants octal number represented as decadic
- FFileZillaIntf->Chmod(Rights.NumberDecadic, FileNameOnly.c_str(), FilePath.c_str());
- GotReply(WaitForReply(), REPLY_2XX_CODE);
- }
- __finally
- {
- delete OwnedFile;
- }
- }
- }
- //---------------------------------------------------------------------------
- bool __fastcall TFTPFileSystem::LoadFilesProperties(TStrings * /*FileList*/)
- {
- assert(false);
- return false;
- }
- //---------------------------------------------------------------------------
- void __fastcall TFTPFileSystem::CalculateFilesChecksum(const AnsiString & /*Alg*/,
- TStrings * /*FileList*/, TStrings * /*Checksums*/,
- TCalculatedChecksumEvent /*OnCalculatedChecksum*/)
- {
- assert(false);
- }
- //---------------------------------------------------------------------------
- bool __fastcall TFTPFileSystem::ConfirmOverwrite(AnsiString & FileName,
- TOverwriteMode & OverwriteMode, TFileOperationProgressType * OperationProgress,
- const TOverwriteFileParams * FileParams, int Params, bool AutoResume)
- {
- bool Result;
- if (OperationProgress->YesToAll)
- {
- OverwriteMode = omOverwrite;
- Result = true;
- }
- else if (OperationProgress->NoToAll)
- {
- FFileTransferAbort = ftaSkip;
- Result = false;
- }
- else
- {
- bool CanResume = (FileParams->DestSize < FileParams->SourceSize);
- int Answer;
- if (FLAGSET(Params, cpNoConfirmation))
- {
- Answer = (CanResume && AutoResume ? qaRetry : qaYes);
- }
- else
- {
- // retry = "resume"
- // all = "yes to newer"
- // ignore = "rename"
- int Answers = qaYes | qaNo | qaCancel | qaYesToAll | qaNoToAll | qaAll | qaIgnore;
- if (CanResume)
- {
- Answers |= qaRetry;
- }
- TQueryButtonAlias Aliases[3];
- Aliases[0].Button = qaRetry;
- Aliases[0].Alias = LoadStr(RESUME_BUTTON);
- Aliases[1].Button = qaAll;
- Aliases[1].Alias = LoadStr(YES_TO_NEWER_BUTTON);
- Aliases[2].Button = qaIgnore;
- Aliases[2].Alias = LoadStr(RENAME_BUTTON);
- TQueryParams Params(qpNeverAskAgainCheck);
- Params.Aliases = Aliases;
- Params.AliasesCount = LENOF(Aliases);
- SUSPEND_OPERATION
- (
- Answer = FTerminal->ConfirmFileOverwrite(FileName, FileParams,
- Answers, &Params,
- OperationProgress->Side == osLocal ? osRemote : osLocal,
- OperationProgress);
- )
- }
- Result = true;
- switch (Answer)
- {
- // resume
- case qaRetry:
- OverwriteMode = omResume;
- FFileTransferResumed = FileParams->DestSize;
- break;
- // rename
- case qaIgnore:
- if (FTerminal->PromptUser(FTerminal->SessionData, LoadStr(RENAME_PROMPT),
- pkPrompt, FileName))
- {
- OverwriteMode = omOverwrite;
- }
- else
- {
- if (!OperationProgress->Cancel)
- {
- OperationProgress->Cancel = csCancel;
- }
- FFileTransferAbort = ftaCancel;
- Result = false;
- }
- break;
- case qaYes:
- OverwriteMode = omOverwrite;
- break;
- case qaCancel:
- if (!OperationProgress->Cancel)
- {
- OperationProgress->Cancel = csCancel;
- }
- FFileTransferAbort = ftaCancel;
- Result = false;
- break;
- case qaNo:
- FFileTransferAbort = ftaSkip;
- Result = false;
- break;
- default:
- assert(false);
- Result = false;
- break;
- }
- }
- return Result;
- }
- //---------------------------------------------------------------------------
- void __fastcall TFTPFileSystem::ResetFileTransfer()
- {
- FFileTransferAbort = ftaNone;
- FFileTransferCancelled = false;
- FFileTransferResumed = 0;
- }
- //---------------------------------------------------------------------------
- void __fastcall TFTPFileSystem::CheckFileTransferAbort()
- {
- switch (FFileTransferAbort)
- {
- case ftaSkip:
- THROW_SKIP_FILE_NULL;
- case ftaCancel:
- Abort();
- break;
- }
- }
- //---------------------------------------------------------------------------
- void __fastcall TFTPFileSystem::ReadDirectoryProgress(__int64 Bytes)
- {
- // with FTP we do not know exactly how many entries we have received,
- // instead we know number of bytes received only.
- // so we report approximation based on average size of entry.
- int Progress = int(Bytes / 80);
- if (Progress - FLastReadDirectoryProgress >= 10)
- {
- bool Cancel = false;
- FLastReadDirectoryProgress = Progress;
- FTerminal->DoReadDirectoryProgress(Progress, Cancel);
- if (Cancel)
- {
- FTerminal->DoReadDirectoryProgress(-2, Cancel);
- FFileZillaIntf->Cancel();
- }
- }
- }
- //---------------------------------------------------------------------------
- void __fastcall TFTPFileSystem::FileTransferProgress(__int64 TransferSize,
- __int64 Bytes, int /*Percent*/)
- {
- TFileOperationProgressType * OperationProgress = FTerminal->OperationProgress;
- OperationProgress->SetTransferSize(TransferSize);
- if (FFileTransferResumed > 0)
- {
- OperationProgress->AddResumed(FFileTransferResumed);
- FFileTransferResumed = 0;
- }
- assert(OperationProgress->TransferedSize <= Bytes);
- OperationProgress->AddTransfered(Bytes - OperationProgress->TransferedSize);
- if (OperationProgress->Cancel == csCancel)
- {
- FFileTransferCancelled = true;
- FFileTransferAbort = ftaCancel;
- FFileZillaIntf->Cancel();
- }
- }
- //---------------------------------------------------------------------------
- void __fastcall TFTPFileSystem::FileTransfer(const AnsiString & FileName,
- const AnsiString & LocalFile, const AnsiString & RemoteFile,
- const AnsiString & RemotePath, bool Get, __int64 Size, int Type,
- TFileTransferData & UserData, TFileOperationProgressType * OperationProgress)
- {
- FILE_OPERATION_LOOP(FMTLOAD(TRANSFER_ERROR, (FileName)),
- FFileZillaIntf->FileTransfer(LocalFile.c_str(), RemoteFile.c_str(),
- RemotePath.c_str(), Get, Size, Type, &UserData);
- unsigned int Reply = WaitForReply();
- GotReply(Reply, FLAGMASK(FFileTransferCancelled, REPLY_ALLOW_CANCEL));
- );
- }
- //---------------------------------------------------------------------------
- void __fastcall TFTPFileSystem::CopyToLocal(TStrings * FilesToCopy,
- const AnsiString TargetDir, const TCopyParamType * CopyParam,
- int Params, TFileOperationProgressType * OperationProgress,
- bool & DisconnectWhenComplete)
- {
- AnsiString FullTargetDir = IncludeTrailingBackslash(TargetDir);
- int Index = 0;
- while (Index < FilesToCopy->Count && !OperationProgress->Cancel)
- {
- AnsiString FileName = FilesToCopy->Strings[Index];
- const TRemoteFile * File = dynamic_cast<const TRemoteFile *>(FilesToCopy->Objects[Index]);
- bool Success = false;
- try
- {
- try
- {
- SinkRobust(AbsolutePath(FileName), File, FullTargetDir, CopyParam, Params,
- OperationProgress, tfFirstLevel);
- Success = true;
- }
- catch(EScpSkipFile & E)
- {
- SUSPEND_OPERATION (
- if (!FTerminal->HandleException(&E)) throw;
- );
- }
- }
- __finally
- {
- OperationProgress->Finish(FileName, Success, DisconnectWhenComplete);
- }
- Index++;
- }
- }
- //---------------------------------------------------------------------------
- void __fastcall TFTPFileSystem::SinkRobust(const AnsiString FileName,
- const TRemoteFile * File, const AnsiString TargetDir,
- const TCopyParamType * CopyParam, int Params,
- TFileOperationProgressType * OperationProgress, unsigned int Flags)
- {
- // the same in TSFTPFileSystem
- bool Retry;
- do
- {
- Retry = false;
- try
- {
- Sink(FileName, File, TargetDir, CopyParam, Params, OperationProgress, Flags);
- }
- catch(Exception & E)
- {
- Retry = true;
- if (FTerminal->Active ||
- !FTerminal->QueryReopen(&E, ropNoReadDirectory, OperationProgress))
- {
- throw;
- }
- }
- if (Retry)
- {
- OperationProgress->RollbackTransfer();
- assert(File != NULL);
- if (!File->IsDirectory)
- {
- // prevent overwrite confirmations
- Params |= cpNoConfirmation;
- Flags |= tfAutoResume;
- }
- }
- }
- while (Retry);
- }
- //---------------------------------------------------------------------------
- void __fastcall TFTPFileSystem::Sink(const AnsiString FileName,
- const TRemoteFile * File, const AnsiString TargetDir,
- const TCopyParamType * CopyParam, int Params,
- TFileOperationProgressType * OperationProgress, unsigned int Flags)
- {
- AnsiString OnlyFileName = UnixExtractFileName(FileName);
- TFileMasks::TParams MaskParams;
- MaskParams.Size = File->Size;
- if (FLAGCLEAR(Params, cpDelete) &&
- !CopyParam->AllowTransfer(FileName, osRemote, File->IsDirectory, MaskParams))
- {
- FTerminal->LogEvent(FORMAT("File \"%s\" excluded from transfer", (FileName)));
- THROW_SKIP_FILE_NULL;
- }
- assert(File);
- FTerminal->LogEvent(FORMAT("File: \"%s\"", (FileName)));
- OperationProgress->SetFile(OnlyFileName);
- AnsiString DestFileName = CopyParam->ChangeFileName(OnlyFileName,
- osRemote, FLAGSET(Flags, tfFirstLevel));
- AnsiString DestFullName = TargetDir + DestFileName;
- if (File->IsDirectory)
- {
- if (!File->IsSymLink)
- {
- FILE_OPERATION_LOOP (FMTLOAD(NOT_DIRECTORY_ERROR, (DestFullName)),
- int Attrs = FileGetAttr(DestFullName);
- if (FLAGCLEAR(Attrs, faDirectory))
- {
- EXCEPTION;
- }
- );
- FILE_OPERATION_LOOP (FMTLOAD(CREATE_DIR_ERROR, (DestFullName)),
- if (!ForceDirectories(DestFullName))
- {
- EXCEPTION;
- }
- );
- TSinkFileParams SinkFileParams;
- SinkFileParams.TargetDir = IncludeTrailingBackslash(DestFullName);
- SinkFileParams.CopyParam = CopyParam;
- SinkFileParams.Params = Params;
- SinkFileParams.OperationProgress = OperationProgress;
- SinkFileParams.Skipped = false;
- SinkFileParams.Flags = Flags & ~(tfFirstLevel | tfAutoResume);
- FTerminal->ProcessDirectory(FileName, SinkFile, &SinkFileParams);
- // Do not delete directory if some of its files were skip.
- // Throw "skip file" for the directory to avoid attempt to deletion
- // of any parent directory
- if (FLAGSET(Params, cpDelete) && SinkFileParams.Skipped)
- {
- THROW_SKIP_FILE_NULL;
- }
- }
- else
- {
- // file is symlink to directory, currently do nothing, but it should be
- // reported to user
- }
- }
- else
- {
- FTerminal->LogEvent(FORMAT("Copying \"%s\" to local directory started.", (FileName)));
- // Will we use ASCII of BINARY file tranfer?
- OperationProgress->SetAsciiTransfer(
- CopyParam->UseAsciiTransfer(FileName, osRemote, MaskParams));
- FTerminal->LogEvent(AnsiString((OperationProgress->AsciiTransfer ? "Ascii" : "Binary")) +
- " transfer mode selected.");
- // Suppose same data size to transfer as to write
- OperationProgress->SetTransferSize(File->Size);
- OperationProgress->SetLocalSize(OperationProgress->TransferSize);
- int Attrs;
- FILE_OPERATION_LOOP (FMTLOAD(NOT_FILE_ERROR, (DestFullName)),
- Attrs = FileGetAttr(DestFullName);
- if ((Attrs >= 0) && FLAGSET(Attrs, faDirectory))
- {
- EXCEPTION;
- }
- );
- OperationProgress->TransferingFile = false; // not set with FTP protocol
- ResetFileTransfer();
- TFileTransferData UserData;
- AnsiString FilePath = UnixExtractFilePath(FileName);
- unsigned int TransferType = (OperationProgress->AsciiTransfer ? 1 : 2);
- assert(!FIgnoreFileList);
- FIgnoreFileList = true;
- try
- {
- FFileTransferPreserveTime = CopyParam->PreserveTime;
- UserData.FileName = DestFileName;
- UserData.Params = Params;
- UserData.AutoResume = FLAGSET(Flags, tfAutoResume);
- FileTransfer(FileName, DestFullName, OnlyFileName,
- FilePath, true, File->Size, TransferType, UserData, OperationProgress);
- }
- __finally
- {
- FIgnoreFileList = false;
- }
- CheckFileTransferAbort();
- // in case dest filename is changed from overwrite dialog
- if (DestFileName != UserData.FileName)
- {
- DestFullName = TargetDir + UserData.FileName;
- Attrs = FileGetAttr(DestFullName);
- }
- if (Attrs == -1)
- {
- Attrs = faArchive;
- }
- int NewAttrs = CopyParam->LocalFileAttrs(*File->Rights);
- if ((NewAttrs & Attrs) != NewAttrs)
- {
- FILE_OPERATION_LOOP (FMTLOAD(CANT_SET_ATTRS, (DestFullName)),
- THROWIFFALSE(FileSetAttr(DestFullName, Attrs | NewAttrs) == 0);
- );
- }
- }
- if (FLAGSET(Params, cpDelete))
- {
- // If file is directory, do not delete it recursively, because it should be
- // empty already. If not, it should not be deleted (some files were
- // skipped or some new files were copied to it, while we were downloading)
- bool Recursive = false;
- FTerminal->DeleteFile(FileName, File, &Recursive);
- }
- }
- //---------------------------------------------------------------------------
- void __fastcall TFTPFileSystem::SinkFile(AnsiString FileName,
- const TRemoteFile * File, void * Param)
- {
- TSinkFileParams * Params = (TSinkFileParams *)Param;
- assert(Params->OperationProgress);
- try
- {
- SinkRobust(FileName, File, Params->TargetDir, Params->CopyParam,
- Params->Params, Params->OperationProgress, Params->Flags);
- }
- catch(EScpSkipFile & E)
- {
- TFileOperationProgressType * OperationProgress = Params->OperationProgress;
- Params->Skipped = true;
- SUSPEND_OPERATION (
- if (!FTerminal->HandleException(&E))
- {
- throw;
- }
- );
- if (OperationProgress->Cancel)
- {
- Abort();
- }
- }
- }
- //---------------------------------------------------------------------------
- void __fastcall TFTPFileSystem::CopyToRemote(TStrings * FilesToCopy,
- const AnsiString ATargetDir, const TCopyParamType * CopyParam,
- int Params, TFileOperationProgressType * OperationProgress,
- bool & DisconnectWhenComplete)
- {
- assert((FilesToCopy != NULL) && (OperationProgress != NULL));
- AnsiString FileName, FileNameOnly;
- AnsiString TargetDir = AbsolutePath(ATargetDir);
- AnsiString FullTargetDir = UnixIncludeTrailingBackslash(TargetDir);
- int Index = 0;
- while ((Index < FilesToCopy->Count) && !OperationProgress->Cancel)
- {
- bool Success = false;
- FileName = FilesToCopy->Strings[Index];
- FileNameOnly = ExtractFileName(FileName);
- try
- {
- try
- {
- if (FTerminal->SessionData->CacheDirectories)
- {
- FTerminal->DirectoryModified(TargetDir, false);
- if (DirectoryExists(FileName))
- {
- FTerminal->DirectoryModified(FullTargetDir + FileNameOnly, true);
- }
- }
- SourceRobust(FileName, FullTargetDir, CopyParam, Params, OperationProgress,
- tfFirstLevel);
- Success = true;
- }
- catch(EScpSkipFile & E)
- {
- SUSPEND_OPERATION (
- if (!FTerminal->HandleException(&E)) throw;
- );
- }
- }
- __finally
- {
- OperationProgress->Finish(FileName, Success, DisconnectWhenComplete);
- }
- Index++;
- }
- }
- //---------------------------------------------------------------------------
- void __fastcall TFTPFileSystem::SourceRobust(const AnsiString FileName,
- const AnsiString TargetDir, const TCopyParamType * CopyParam, int Params,
- TFileOperationProgressType * OperationProgress, unsigned int Flags)
- {
- // the same in TSFTPFileSystem
- bool Retry;
- do
- {
- Retry = false;
- try
- {
- Source(FileName, TargetDir, CopyParam, Params, OperationProgress, Flags);
- }
- catch(Exception & E)
- {
- Retry = true;
- if (FTerminal->Active ||
- !FTerminal->QueryReopen(&E, ropNoReadDirectory, OperationProgress))
- {
- throw;
- }
- }
- if (Retry)
- {
- OperationProgress->RollbackTransfer();
- // prevent overwrite confirmations
- // (should not be set for directories!)
- Params |= cpNoConfirmation;
- Flags |= tfAutoResume;
- }
- }
- while (Retry);
- }
- //---------------------------------------------------------------------------
- void __fastcall TFTPFileSystem::Source(const AnsiString FileName,
- const AnsiString TargetDir, const TCopyParamType * CopyParam, int Params,
- TFileOperationProgressType * OperationProgress, unsigned int Flags)
- {
- FTerminal->LogEvent(FORMAT("File: \"%s\"", (FileName)));
- OperationProgress->SetFile(FileName);
- __int64 Size;
- int Attrs;
- FTerminal->OpenLocalFile(FileName, GENERIC_READ, &Attrs,
- NULL, NULL, NULL, NULL, &Size);
- bool Dir = FLAGSET(Attrs, faDirectory);
- TFileMasks::TParams MaskParams;
- MaskParams.Size = Size;
- if (FLAGCLEAR(Params, cpDelete) &&
- !CopyParam->AllowTransfer(FileName, osLocal, Dir, MaskParams))
- {
- FTerminal->LogEvent(FORMAT("File \"%s\" excluded from transfer", (FileName)));
- THROW_SKIP_FILE_NULL;
- }
- if (Dir)
- {
- DirectorySource(IncludeTrailingBackslash(FileName), TargetDir,
- Attrs, CopyParam, Params, OperationProgress, Flags);
- }
- else
- {
- AnsiString DestFileName = CopyParam->ChangeFileName(ExtractFileName(FileName),
- osLocal, FLAGSET(Flags, tfFirstLevel));
- AnsiString DestFullName = TargetDir + DestFileName;
- FTerminal->LogEvent(FORMAT("Copying \"%s\" to remote directory started.", (FileName)));
- OperationProgress->SetLocalSize(Size);
- // Suppose same data size to transfer as to read
- // (not true with ASCII transfer)
- OperationProgress->SetTransferSize(OperationProgress->LocalSize);
- OperationProgress->TransferingFile = false;
- // Will we use ASCII of BINARY file tranfer?
- OperationProgress->SetAsciiTransfer(
- CopyParam->UseAsciiTransfer(FileName, osLocal, MaskParams));
- FTerminal->LogEvent(
- AnsiString((OperationProgress->AsciiTransfer ? "Ascii" : "Binary")) +
- " transfer mode selected.");
- ResetFileTransfer();
- TFileTransferData UserData;
- unsigned int TransferType = (OperationProgress->AsciiTransfer ? 1 : 2);
- assert(!FIgnoreFileList);
- FIgnoreFileList = true;
- try
- {
- // not supports for uploads anyway
- FFileTransferPreserveTime = CopyParam->PreserveTime;
- // not used for uploads
- UserData.FileName = DestFileName;
- UserData.Params = Params;
- UserData.AutoResume = FLAGSET(Flags, tfAutoResume);
- FileTransfer(FileName, FileName, DestFileName,
- TargetDir, false, Size, TransferType, UserData, OperationProgress);
- }
- __finally
- {
- FIgnoreFileList = false;
- }
- CheckFileTransferAbort();
- }
- /* TODO : Delete also read-only files. */
- /* TODO : Show error message on failure. */
- if (FLAGSET(Params, cpDelete))
- {
- Sysutils::DeleteFile(FileName);
- }
- else if (CopyParam->ClearArchive && FLAGSET(Attrs, faArchive))
- {
- FILE_OPERATION_LOOP (FMTLOAD(CANT_SET_ATTRS, (FileName)),
- THROWIFFALSE(FileSetAttr(FileName, Attrs & ~faArchive) == 0);
- )
- }
- }
- //---------------------------------------------------------------------------
- void __fastcall TFTPFileSystem::DirectorySource(const AnsiString DirectoryName,
- const AnsiString TargetDir, int Attrs, const TCopyParamType * CopyParam,
- int Params, TFileOperationProgressType * OperationProgress, unsigned int Flags)
- {
- AnsiString DestDirectoryName = CopyParam->ChangeFileName(
- ExtractFileName(ExcludeTrailingBackslash(DirectoryName)), osLocal,
- FLAGSET(Flags, tfFirstLevel));
- AnsiString DestFullName = UnixIncludeTrailingBackslash(TargetDir + DestDirectoryName);
- OperationProgress->SetFile(DirectoryName);
- int FindAttrs = faReadOnly | faHidden | faSysFile | faDirectory | faArchive;
- TSearchRec SearchRec;
- bool FindOK;
- FILE_OPERATION_LOOP (FMTLOAD(LIST_DIR_ERROR, (DirectoryName)),
- FindOK = (bool)(FindFirst(DirectoryName + "*.*",
- FindAttrs, SearchRec) == 0);
- );
- bool CreateDir = true;
- while (FindOK && !OperationProgress->Cancel)
- {
- AnsiString FileName = DirectoryName + SearchRec.Name;
- try
- {
- if ((SearchRec.Name != ".") && (SearchRec.Name != ".."))
- {
- // if any file will get uploaded (at least attempted),
- // do not try to create directory, as it should be already created
- // by FZAPI during upload
- CreateDir = false;
- SourceRobust(FileName, DestFullName, CopyParam, Params, OperationProgress,
- Flags & ~(tfFirstLevel | tfAutoResume));
- }
- }
- catch (EScpSkipFile &E)
- {
- // If ESkipFile occurs, just log it and continue with next file
- SUSPEND_OPERATION (
- // here a message to user was displayed, which was not appropriate
- // when user refused to overwrite the file in subdirectory.
- // hopefuly it won't be missing in other situations.
- if (!FTerminal->HandleException(&E)) throw;
- );
- }
- FILE_OPERATION_LOOP (FMTLOAD(LIST_DIR_ERROR, (DirectoryName)),
- FindOK = (FindNext(SearchRec) == 0);
- );
- };
- FindClose(SearchRec);
- if (CreateDir)
- {
- TRemoteProperties Properties;
- if (CopyParam->PreserveRights)
- {
- Properties.Valid = TValidProperties() << vpRights;
- Properties.Rights = CopyParam->RemoteFileRights(Attrs);
- }
- FTerminal->CreateDirectory(DestFullName, &Properties);
- }
- /* TODO : Delete also read-only directories. */
- /* TODO : Show error message on failure. */
- if (!OperationProgress->Cancel)
- {
- if (FLAGSET(Params, cpDelete))
- {
- RemoveDir(DirectoryName);
- }
- else if (CopyParam->ClearArchive && FLAGSET(Attrs, faArchive))
- {
- FILE_OPERATION_LOOP (FMTLOAD(CANT_SET_ATTRS, (DirectoryName)),
- THROWIFFALSE(FileSetAttr(DirectoryName, Attrs & ~faArchive) == 0);
- )
- }
- }
- }
- //---------------------------------------------------------------------------
- void __fastcall TFTPFileSystem::CreateDirectory(const AnsiString ADirName,
- const TRemoteProperties * Properties)
- {
- AnsiString DirName = AbsolutePath(ADirName);
- FIgnoreFileList = true;
- try
- {
- FFileZillaIntf->MakeDir(DirName.c_str());
- GotReply(WaitForReply(), REPLY_2XX_CODE);
- }
- __finally
- {
- FIgnoreFileList = false;
- }
- if (Properties != NULL)
- {
- ChangeFileProperties(DirName, NULL, Properties);
- }
- }
- //---------------------------------------------------------------------------
- void __fastcall TFTPFileSystem::CreateLink(const AnsiString /*FileName*/,
- const AnsiString /*PointTo*/, bool /*Symbolic*/)
- {
- assert(false);
- }
- //---------------------------------------------------------------------------
- void __fastcall TFTPFileSystem::DeleteFile(const AnsiString AFileName,
- const TRemoteFile * File, bool Recursive)
- {
- AnsiString FileName = AbsolutePath(AFileName);
- AnsiString FileNameOnly = UnixExtractFileName(FileName);
- AnsiString FilePath = UnixExtractFilePath(FileName);
- bool Dir = (File != NULL) && File->IsDirectory && !File->IsSymLink;
- if (Dir && Recursive)
- {
- FTerminal->ProcessDirectory(FileName, FTerminal->DeleteFile, &Recursive);
- }
- assert(!FIgnoreFileList);
- FIgnoreFileList = true;
- try
- {
- if (Dir)
- {
- // Is current remote directory is in the directory being removed,
- // some servers may refuse to delete it
- // This is common as ProcessDirectory above would CWD to
- // the directory to LIST it.
- // EnsureLocation should reset actual current directory to user's working directory.
- // If user's working directory is still below deleted directory, it is
- // perfectly correct to report an error.
- if (UnixIsChildPath(ActualCurrentDirectory(), FileName))
- {
- EnsureLocation();
- }
- FFileZillaIntf->RemoveDir(FileNameOnly.c_str(), FilePath.c_str());
- }
- else
- {
- FFileZillaIntf->Delete(FileNameOnly.c_str(), FilePath.c_str());
- }
- GotReply(WaitForReply(), REPLY_2XX_CODE);
- }
- __finally
- {
- FIgnoreFileList = false;
- }
- }
- //---------------------------------------------------------------------------
- void __fastcall TFTPFileSystem::CustomCommandOnFile(const AnsiString /*FileName*/,
- const TRemoteFile * /*File*/, AnsiString /*Command*/, int /*Params*/,
- TCaptureOutputEvent /*OutputEvent*/)
- {
- // if ever implemeneted, do not forget to add EnsureLocation,
- // see AnyCommand for a reason why
- assert(false);
- }
- //---------------------------------------------------------------------------
- void __fastcall TFTPFileSystem::DoStartup()
- {
- // retrieve initialize working directory to save it as home directory
- ReadCurrentDirectory();
- FHomeDirectory = FCurrentDirectory;
- }
- //---------------------------------------------------------------------------
- void __fastcall TFTPFileSystem::HomeDirectory()
- {
- // FHomeDirectory is an absolute path, so avoid unnecessary overhead
- // of ChangeDirectory, such as EnsureLocation
- DoChangeDirectory(FHomeDirectory);
- FCurrentDirectory = FHomeDirectory;
- }
- //---------------------------------------------------------------------------
- bool __fastcall TFTPFileSystem::IsCapable(int Capability) const
- {
- assert(FTerminal);
- switch (Capability)
- {
- case fcResolveSymlink: // sic
- case fcTextMode:
- case fcModeChanging: // but not fcModeChangingUpload
- case fcNewerOnlyUpload:
- case fcAnyCommand: // but not fcShellAnyCommand
- case fcRename:
- case fcRemoteMove:
- return true;
- case fcModeChangingUpload:
- case fcPreservingTimestampUpload:
- case fcLoadingAdditionalProperties:
- case fcShellAnyCommand:
- case fcCalculatingChecksum:
- case fcHardLink:
- case fcSymbolicLink:
- case fcCheckingSpaceAvailable:
- case fcUserGroupListing:
- case fcGroupChanging:
- case fcOwnerChanging:
- case fcSecondaryShell:
- case fcRemoteCopy:
- case fcNativeTextMode:
- case fcTimestampChanging:
- case fcIgnorePermErrors:
- return false;
- default:
- assert(false);
- return false;
- }
- }
- //---------------------------------------------------------------------------
- void __fastcall TFTPFileSystem::LookupUsersGroups()
- {
- assert(false);
- }
- //---------------------------------------------------------------------------
- void __fastcall TFTPFileSystem::ReadCurrentDirectory()
- {
- // ask the server for current directory on startup only
- // and immediatelly after call to CWD,
- // later our current directory may be not synchronized with FZAPI current
- // directory anyway, see comments in EnsureLocation
- if (FCurrentDirectory.IsEmpty())
- {
- FFileZillaIntf->CustomCommand("PWD");
- unsigned int Code;
- TStrings * Response = NULL;
- GotReply(WaitForReply(), REPLY_2XX_CODE, "", &Code, &Response);
- try
- {
- assert(Response != NULL);
- bool Result = false;
- // the only allowed 2XX code to "PWD"
- if ((Code == 257) &&
- (Response->Count == 1))
- {
- AnsiString Path = Response->Text;
- int P = Path.Pos("\"");
- if (P != 0)
- {
- Path.Delete(1, P - 1);
- if (Unquote(Path))
- {
- FCurrentDirectory = Path;
- Result = true;
- }
- }
- }
- if (Result)
- {
- FFileZillaIntf->SetCurrentPath(FCurrentDirectory.c_str());
- }
- else
- {
- throw Exception(FMTLOAD(FTP_PWD_RESPONSE_ERROR, (Response->Text)));
- }
- }
- __finally
- {
- delete Response;
- }
- }
- }
- //---------------------------------------------------------------------------
- void __fastcall TFTPFileSystem::DoReadDirectory(TRemoteFileList * FileList)
- {
- FileList->Clear();
- // FZAPI does not list parent directory, add it
- FileList->Add(new TRemoteParentDirectory());
- FLastReadDirectoryProgress = 0;
- assert(FFileList == NULL);
- FFileList = FileList;
- try
- {
- // always specify path to list, do not attempt to list "current" dir as:
- // 1) List() lists again the last listed directory, not the current working directory
- // 2) we handle this way the cached directory change
- AnsiString Directory = AbsolutePath(FileList->Directory);
- FFileZillaIntf->List(Directory.c_str());
- GotReply(WaitForReply(), REPLY_2XX_CODE | REPLY_ALLOW_CANCEL);
- }
- __finally
- {
- FFileList = NULL;
- }
- }
- //---------------------------------------------------------------------------
- void __fastcall TFTPFileSystem::ReadDirectory(TRemoteFileList * FileList)
- {
- bool Repeat = false;
- do
- {
- try
- {
- DoReadDirectory(FileList);
- if (FListAll < 0)
- {
- // reading first directory has succeeded, always use "-a"
- FListAll = 1;
- }
- }
- catch(...)
- {
- // reading the first directory has failed,
- // further try without "-a" only as the server may not support it
- if ((FListAll < 0) && FTerminal->Active)
- {
- FListAll = 0;
- Repeat = true;
- }
- else
- {
- throw;
- }
- }
- }
- while (Repeat);
- }
- //---------------------------------------------------------------------------
- void __fastcall TFTPFileSystem::ReadFile(const AnsiString FileName,
- TRemoteFile *& File)
- {
- AnsiString Path = UnixExtractFilePath(FileName);
- AnsiString NameOnly = UnixExtractFileName(FileName);
- // FZAPI does not have efficient way to read properties of one file.
- // If case we need properties of set of files from the same directory,
- // cache the file list for future
- if ((FFileListCache == NULL) ||
- !UnixComparePaths(Path, FFileListCache->Directory))
- {
- delete FFileListCache;
- FFileListCache = NULL;
- FFileListCache = new TRemoteFileList();
- FFileListCache->Directory = Path;
- ReadDirectory(FFileListCache);
- }
- TRemoteFile * AFile = FFileListCache->FindFile(NameOnly);
- if (AFile != NULL)
- {
- File = AFile->Duplicate();
- }
- else
- {
- File = NULL;
- }
- }
- //---------------------------------------------------------------------------
- void __fastcall TFTPFileSystem::ReadSymlink(TRemoteFile * SymlinkFile,
- TRemoteFile *& File)
- {
- // Resolving symlinks over FTP is big overhead
- // (involves opening TCPIP connection for retrieving "directory listing").
- // Moreover FZAPI does not support that anyway.
- File = new TRemoteFile(SymlinkFile);
- try
- {
- File->Terminal = FTerminal;
- File->FileName = UnixExtractFileName(SymlinkFile->LinkTo);
- // FZAPI treats all symlink target as directories
- File->Type = FILETYPE_DIRECTORY;
- }
- catch(...)
- {
- delete File;
- File = NULL;
- throw;
- }
- }
- //---------------------------------------------------------------------------
- void __fastcall TFTPFileSystem::RenameFile(const AnsiString AFileName,
- const AnsiString ANewName)
- {
- AnsiString FileName = AbsolutePath(AFileName);
- AnsiString NewName = AbsolutePath(ANewName);
- AnsiString FileNameOnly = UnixExtractFileName(FileName);
- AnsiString FilePathOnly = UnixExtractFilePath(FileName);
- AnsiString NewNameOnly = UnixExtractFileName(NewName);
- AnsiString NewPathOnly = UnixExtractFilePath(NewName);
- FIgnoreFileList = true;
- try
- {
- FFileZillaIntf->Rename(FileNameOnly.c_str(), NewNameOnly.c_str(),
- FilePathOnly.c_str(), NewPathOnly.c_str());
- GotReply(WaitForReply(), REPLY_2XX_CODE);
- }
- __finally
- {
- FIgnoreFileList = false;
- }
- }
- //---------------------------------------------------------------------------
- void __fastcall TFTPFileSystem::CopyFile(const AnsiString FileName,
- const AnsiString NewName)
- {
- assert(false);
- }
- //---------------------------------------------------------------------------
- AnsiString __fastcall TFTPFileSystem::FileUrl(const AnsiString FileName)
- {
- return FTerminal->FileUrl("ftp", FileName);
- }
- //---------------------------------------------------------------------------
- TStrings * __fastcall TFTPFileSystem::GetFixedPaths()
- {
- return NULL;
- }
- //---------------------------------------------------------------------------
- void __fastcall TFTPFileSystem::SpaceAvailable(const AnsiString /*Path*/,
- TSpaceAvailable & /*ASpaceAvailable*/)
- {
- assert(false);
- }
- //---------------------------------------------------------------------------
- const TSessionInfo & __fastcall TFTPFileSystem::GetSessionInfo()
- {
- return FSessionInfo;
- }
- //---------------------------------------------------------------------------
- const TFileSystemInfo & __fastcall TFTPFileSystem::GetFileSystemInfo(bool /*Retrieve*/)
- {
- if (!FFileSystemInfoValid)
- {
- FFileSystemInfo.RemoteSystem = FSystem;
- FFileSystemInfo.RemoteSystem.Unique();
- if (FFeatures->Count == 0)
- {
- FFileSystemInfo.AdditionalInfo = LoadStr(FTP_NO_FEATURE_INFO);
- }
- else
- {
- FFileSystemInfo.AdditionalInfo =
- FORMAT("%s\r\n", (LoadStr(FTP_FEATURE_INFO)));
- for (int Index = 0; Index < FFeatures->Count; Index++)
- {
- FFileSystemInfo.AdditionalInfo += FORMAT(" %s\r\n", (FFeatures->Strings[Index]));
- }
- }
- FFileSystemInfoValid = true;
- }
- return FFileSystemInfo;
- }
- //---------------------------------------------------------------------------
- bool __fastcall TFTPFileSystem::TemporaryTransferFile(const AnsiString & /*FileName*/)
- {
- return false;
- }
- //---------------------------------------------------------------------------
- bool __fastcall TFTPFileSystem::GetStoredCredentialsTried()
- {
- return !FTerminal->SessionData->Password.IsEmpty();
- }
- //---------------------------------------------------------------------------
- AnsiString __fastcall TFTPFileSystem::GetUserName()
- {
- return FUserName;
- }
- //---------------------------------------------------------------------------
- AnsiString __fastcall TFTPFileSystem::GetCurrentDirectory()
- {
- return FCurrentDirectory;
- }
- //---------------------------------------------------------------------------
- const char * __fastcall TFTPFileSystem::GetOption(int OptionID) const
- {
- TSessionData * Data = FTerminal->SessionData;
- switch (OptionID)
- {
- case OPTION_PROXYHOST:
- FOptionScratch = Data->ProxyHost;
- break;
- case OPTION_PROXYUSER:
- FOptionScratch = Data->ProxyUsername;
- break;
- case OPTION_PROXYPASS:
- FOptionScratch = Data->ProxyPassword;
- break;
- case OPTION_ANONPWD:
- case OPTION_TRANSFERIP:
- case OPTION_TRANSFERIP6:
- FOptionScratch = "";
- break;
- case OPTION_FWHOST:
- case OPTION_FWUSER:
- case OPTION_FWPASS:
- // should never get here OPTION_LOGONTYPE being 0
- assert(false);
- FOptionScratch = "";
- break;
- default:
- assert(false);
- FOptionScratch = "";
- }
- return FOptionScratch.c_str();
- }
- //---------------------------------------------------------------------------
- int __fastcall TFTPFileSystem::GetOptionVal(int OptionID) const
- {
- TSessionData * Data = FTerminal->SessionData;
- int Result;
- switch (OptionID)
- {
- case OPTION_PROXYTYPE:
- switch (Data->ProxyMethod)
- {
- case pmNone:
- Result = 0; // PROXYTYPE_NOPROXY;
- break;
- case pmSocks4:
- Result = 2; // PROXYTYPE_SOCKS4A
- break;
- case pmSocks5:
- Result = 3; // PROXYTYPE_SOCKS5
- break;
- case pmHTTP:
- Result = 4; // PROXYTYPE_HTTP11
- break;
- case pmTelnet:
- default:
- assert(false);
- Result = 0; // PROXYTYPE_NOPROXY;
- break;
- }
- break;
- case OPTION_PROXYPORT:
- Result = Data->ProxyPort;
- break;
- case OPTION_PROXYUSELOGON:
- Result = !Data->ProxyUsername.IsEmpty();
- break;
- case OPTION_LOGONTYPE:
- Result = 0; // no FTP proxy
- break;
- case OPTION_FWPORT:
- // should never get here OPTION_LOGONTYPE being 0
- assert(false);
- Result = 0;
- break;
- case OPTION_TIMEOUTLENGTH:
- Result = Data->Timeout;
- break;
- case OPTION_DEBUGSHOWLISTING:
- // Listing is logged on FZAPI level 5 (what is strangely LOG_APIERROR)
- Result = (FTerminal->Configuration->LogProtocol >= 1);
- break;
- case OPTION_PASV:
- // should never get here t_server.nPasv being nonzero
- assert(false);
- Result = FALSE;
- break;
- case OPTION_PRESERVEDOWNLOADFILETIME:
- Result = FFileTransferPreserveTime ? TRUE : FALSE;
- break;
- case OPTION_LIMITPORTRANGE:
- Result = FALSE;
- break;
- case OPTION_PORTRANGELOW:
- case OPTION_PORTRANGEHIGH:
- // should never get here OPTION_LIMITPORTRANGE being zero
- assert(false);
- Result = 0;
- break;
- case OPTION_ENABLE_IPV6:
- Result = ((Data->AddressFamily == afIPv6) ? TRUE : FALSE);
- break;
- case OPTION_KEEPALIVE:
- Result = ((Data->FtpPingType != ptOff) ? TRUE : FALSE);
- break;
- case OPTION_INTERVALLOW:
- case OPTION_INTERVALHIGH:
- Result = Data->FtpPingInterval;
- break;
- case OPTION_VMSALLREVISIONS:
- Result = FALSE;
- break;
- case OPTION_MPEXT_SHOWHIDDEN:
- Result = ((FListAll != 0) ? TRUE : FALSE);
- break;
- default:
- assert(false);
- Result = FALSE;
- break;
- }
- return Result;
- }
- //---------------------------------------------------------------------------
- bool __fastcall TFTPFileSystem::PostMessage(WPARAM wParam, LPARAM lParam)
- {
- TGuard Guard(FQueueCriticalSection);
- FQueue->push_back(TMessageQueue::value_type(wParam, lParam));
- SetEvent(FQueueEvent);
- return true;
- }
- //---------------------------------------------------------------------------
- bool __fastcall TFTPFileSystem::ProcessMessage()
- {
- bool Result;
- TMessageQueue::value_type Message;
- {
- TGuard Guard(FQueueCriticalSection);
- Result = !FQueue->empty();
- if (Result)
- {
- Message = FQueue->front();
- FQueue->pop_front();
- }
- else
- {
- // now we are perfecly sure that the queue is empty as it is locked,
- // so reset the event
- ResetEvent(FQueueEvent);
- }
- }
- if (Result)
- {
- FFileZillaIntf->HandleMessage(Message.first, Message.second);
- }
- return Result;
- }
- //---------------------------------------------------------------------------
- void __fastcall TFTPFileSystem::DiscardMessages()
- {
- while (ProcessMessage());
- }
- //---------------------------------------------------------------------------
- void __fastcall TFTPFileSystem::WaitForMessages()
- {
- unsigned int Result = WaitForSingleObject(FQueueEvent, INFINITE);
- if (Result != WAIT_OBJECT_0)
- {
- FTerminal->FatalError(NULL, FMTLOAD(INTERNAL_ERROR, ("ftp#1", IntToStr(Result))));
- }
- }
- //---------------------------------------------------------------------------
- unsigned int __fastcall TFTPFileSystem::PoolForReply()
- {
- assert(FReply == 0);
- assert(FCommandReply == 0);
- assert(!FWaitingForReply);
- FWaitingForReply = true;
- unsigned int Reply;
- try
- {
- // discard up to one reply
- // (it should not happen here that two replies are posted anyway)
- while (ProcessMessage() && (FReply == 0));
- Reply = FReply;
- }
- __finally
- {
- FReply = 0;
- assert(FCommandReply == 0);
- FCommandReply = 0;
- assert(FWaitingForReply);
- FWaitingForReply = false;
- }
- return Reply;
- }
- //---------------------------------------------------------------------------
- void __fastcall TFTPFileSystem::DoWaitForReply(unsigned int& ReplyToAwait)
- {
- try
- {
- while (ReplyToAwait == 0)
- {
- WaitForMessages();
- // wait for the first reply only,
- // i.e. in case two replies are posted get the first only.
- // e.g. when server closes the connection, but posts error message before,
- // sometime it happens that command (like download) fails because of the error
- // and does not catch the disconnection. then asynchronous "disconnect reply"
- // is posted immediately afterwards. leave detection of that to Idle()
- while (ProcessMessage() && (ReplyToAwait == 0));
- }
- }
- catch(...)
- {
- // even if non-fatal error happens, we must process pending message,
- // so that we "eat" the reply message, so that it gets not mistakenly
- // associated with future connect
- if (FTerminal->Active)
- {
- DoWaitForReply(ReplyToAwait);
- }
- throw;
- }
- }
- //---------------------------------------------------------------------------
- unsigned int __fastcall TFTPFileSystem::WaitForReply(bool Command)
- {
- assert(FReply == 0);
- assert(FCommandReply == 0);
- assert(!FWaitingForReply);
- ResetReply();
- FWaitingForReply = true;
- unsigned int Reply;
- try
- {
- unsigned int& ReplyToAwait = (Command ? FCommandReply : FReply);
- DoWaitForReply(ReplyToAwait);
- Reply = ReplyToAwait;
- }
- __finally
- {
- FReply = 0;
- FCommandReply = 0;
- assert(FWaitingForReply);
- FWaitingForReply = false;
- }
- return Reply;
- }
- //---------------------------------------------------------------------------
- void __fastcall TFTPFileSystem::ResetReply()
- {
- FLastCode = 0;
- FLastCodeClass = 0;
- assert(FLastResponse != NULL);
- FLastResponse->Clear();
- assert(FLastError != NULL);
- FLastError->Clear();
- }
- //---------------------------------------------------------------------------
- void __fastcall TFTPFileSystem::GotReply(unsigned int Reply, unsigned int Flags,
- AnsiString Error, unsigned int * Code, TStrings ** Response)
- {
- try
- {
- if (FLAGSET(Reply, TFileZillaIntf::REPLY_OK))
- {
- assert(Reply == TFileZillaIntf::REPLY_OK);
- // With REPLY_2XX_CODE treat "OK" non-2xx code like an error
- if (FLAGSET(Flags, REPLY_2XX_CODE) && (FLastCodeClass != 2))
- {
- GotReply(TFileZillaIntf::REPLY_ERROR, Flags, Error);
- }
- }
- else if (FLAGSET(Reply, TFileZillaIntf::REPLY_CANCEL) &&
- FLAGSET(Flags, REPLY_ALLOW_CANCEL))
- {
- assert(
- (Reply == (TFileZillaIntf::REPLY_CANCEL | TFileZillaIntf::REPLY_ERROR)) ||
- (Reply == (TFileZillaIntf::REPLY_ABORTED | TFileZillaIntf::REPLY_CANCEL | TFileZillaIntf::REPLY_ERROR)));
- // noop
- }
- // we do not expect these with our usage of FZ
- else if (Reply &
- (TFileZillaIntf::REPLY_WOULDBLOCK | TFileZillaIntf::REPLY_OWNERNOTSET |
- TFileZillaIntf::REPLY_INVALIDPARAM | TFileZillaIntf::REPLY_ALREADYCONNECTED |
- TFileZillaIntf::REPLY_IDLE | TFileZillaIntf::REPLY_NOTINITIALIZED |
- TFileZillaIntf::REPLY_ALREADYINIZIALIZED))
- {
- FTerminal->FatalError(NULL, FMTLOAD(INTERNAL_ERROR, ("ftp#2", FORMAT("0x%x", (int(Reply))))));
- }
- else
- {
- // everything else must be an error or disconnect notification
- assert(
- FLAGSET(Reply, TFileZillaIntf::REPLY_ERROR) ||
- FLAGSET(Reply, TFileZillaIntf::REPLY_DISCONNECTED));
- // TODO: REPLY_CRITICALERROR ignored
- // REPLY_NOTCONNECTED happens if connection is closed between moment
- // when FZAPI interface method dispatches the command to FZAPI thread
- // and moment when FZAPI thread receives the command
- bool Disconnected =
- FLAGSET(Reply, TFileZillaIntf::REPLY_DISCONNECTED) ||
- FLAGSET(Reply, TFileZillaIntf::REPLY_NOTCONNECTED);
- TStrings * MoreMessages = new TStringList();
- try
- {
- if (Disconnected)
- {
- // for connection failure, do not report that connection was lost, its obvious
- if (FLAGCLEAR(Flags, REPLY_CONNECT))
- {
- MoreMessages->Add(LoadStr(LOST_CONNECTION));
- }
- Discard();
- }
- if (FLAGSET(Reply, TFileZillaIntf::REPLY_ABORTED))
- {
- MoreMessages->Add(LoadStr(USER_TERMINATED));
- }
- if (FLAGSET(Reply, TFileZillaIntf::REPLY_NOTSUPPORTED))
- {
- MoreMessages->Add(LoadStr(FZ_NOTSUPPORTED));
- }
- if (FLastCode == 530)
- {
- MoreMessages->Add(LoadStr(AUTHENTICATION_FAILED));
- }
- MoreMessages->AddStrings(FLastError);
- // already cleared from WaitForReply, but GotReply can be also called
- // from Closed. then make sure that error from previous command not
- // associated with session closure is not reused
- FLastError->Clear();
- MoreMessages->AddStrings(FLastResponse);
- // see comment for FLastError
- FLastResponse->Clear();
- if (MoreMessages->Count == 0)
- {
- delete MoreMessages;
- MoreMessages = NULL;
- }
- }
- catch(...)
- {
- delete MoreMessages;
- throw;
- }
- if (Error.IsEmpty() && (MoreMessages != NULL))
- {
- assert(MoreMessages->Count > 0);
- Error = MoreMessages->Strings[0];
- MoreMessages->Delete(0);
- }
- if (Disconnected)
- {
- // for fatal error, it is essential that there is some message
- assert(!Error.IsEmpty());
- ExtException * E = new ExtException(Error, MoreMessages, true);
- try
- {
- FTerminal->FatalError(E, "");
- }
- __finally
- {
- delete E;
- }
- }
- else
- {
- throw ExtException(Error, MoreMessages, true);
- }
- }
- if (Code != NULL)
- {
- *Code = FLastCode;
- }
- if (Response != NULL)
- {
- *Response = FLastResponse;
- FLastResponse = new TStringList();
- }
- }
- __finally
- {
- ResetReply();
- }
- }
- //---------------------------------------------------------------------------
- void __fastcall TFTPFileSystem::HandleReplyStatus(const char * AStatus)
- {
- int Code;
- AnsiString Response(AStatus);
- if (FOnCaptureOutput != NULL)
- {
- FOnCaptureOutput(Response, false);
- }
- // Two forms of multiline responses were observed
- // (the first is according to the RFC 959):
- // 211-Features:
- // MDTM
- // REST STREAM
- // SIZE
- // 211 End
- // 211-Features:
- // 211-MDTM
- // 211-REST STREAM
- // 211-SIZE
- // 211-AUTH TLS
- // 211-PBSZ
- // 211-PROT
- // 211 End
- bool HasCodePrefix =
- (Response.Length() >= 3) &&
- TryStrToInt(Response.SubString(1, 3), Code) &&
- (Code >= 100) && (Code <= 599) &&
- ((Response.Length() == 3) || (Response[4] == ' ') || (Response[4] == '-'));
- if (HasCodePrefix && !FMultineResponse)
- {
- FMultineResponse = (Response.Length() >= 4) && (Response[4] == '-');
- FLastResponse->Clear();
- if (Response.Length() >= 5)
- {
- FLastResponse->Add(Response.SubString(5, Response.Length() - 4));
- }
- FLastCode = Code;
- FLastCodeClass = (Code / 100);
- }
- else
- {
- int Start;
- // response with code prefix
- if (HasCodePrefix && (FLastCode == Code))
- {
- // End of multiline response?
- if ((Response.Length() <= 3) || (Response[4] == ' '))
- {
- FMultineResponse = false;
- }
- Start = 5;
- }
- else
- {
- Start = (((Response.Length() >= 1) && (Response[1] == ' ')) ? 2 : 1);
- }
- // Intermediate empty lines are being added
- if (FMultineResponse || (Response.Length() >= Start))
- {
- FLastResponse->Add(Response.SubString(Start, Response.Length() - Start + 1));
- }
- }
- if (!FMultineResponse)
- {
- if (FLastCode == 220)
- {
- if (FTerminal->Configuration->ShowFtpWelcomeMessage)
- {
- FTerminal->DisplayBanner(FLastResponse->Text);
- }
- }
- else if (FLastCommand == PASS)
- {
- // 530 = "Not logged in."
- if (FLastCode == 530)
- {
- FPasswordFailed = true;
- };
- }
- else if (FLastCommand == SYST)
- {
- assert(FSystem.IsEmpty());
- // Possitive reply to "SYST" must be 215, see RFC 959
- if (FLastCode == 215)
- {
- FSystem = FLastResponse->Text.TrimRight();
- }
- else
- {
- FSystem = "";
- }
- }
- else if (FLastCommand == FEAT)
- {
- // Response to FEAT must be multiline, where leading and trailing line
- // is "meaningless". See RFC 2389.
- if ((FLastCode == 211) && (FLastResponse->Count > 2))
- {
- FLastResponse->Delete(0);
- FLastResponse->Delete(FLastResponse->Count - 1);
- FFeatures->Assign(FLastResponse);
- }
- else
- {
- FFeatures->Clear();
- }
- }
- }
- }
- //---------------------------------------------------------------------------
- bool __fastcall TFTPFileSystem::HandleStatus(const char * Status, int Type)
- {
- assert(
- (Type <= TFileZillaIntf::LOG_LIST) ||
- ((Type <= TFileZillaIntf::LOG_WARNING) && (FTerminal->Configuration->LogProtocol >= 1)) ||
- (FTerminal->Configuration->LogProtocol >= 2));
- TLogLineType LogType;
- switch (Type)
- {
- case TFileZillaIntf::LOG_STATUS:
- FTerminal->Information(Status, true);
- LogType = llMessage;
- break;
- case TFileZillaIntf::LOG_COMMAND:
- if (strcmp(Status, "SYST") == 0)
- {
- FLastCommand = SYST;
- }
- else if (strcmp(Status, "FEAT") == 0)
- {
- FLastCommand = FEAT;
- }
- else if (strncmp(Status, "PASS ", 5) == 0)
- {
- FLastCommand = PASS;
- }
- else
- {
- FLastCommand = CMD_UNKNOWN;
- }
- LogType = llInput;
- break;
- case TFileZillaIntf::LOG_ERROR:
- // there can be multiple error messages associated with single failure
- // (such as "cannot open local file..." followed by "download failed"
- FLastError->Add(Status);
- LogType = llMessage;
- break;
- case TFileZillaIntf::LOG_REPLY:
- HandleReplyStatus(Status);
- LogType = llOutput;
- break;
- default:
- LogType = llMessage;
- break;
- }
- if (FTerminal->Log->Logging)
- {
- FTerminal->Log->Add(LogType, Status);
- }
- return true;
- }
- //---------------------------------------------------------------------------
- bool __fastcall TFTPFileSystem::HandleAsynchRequestOverwrite(
- char * FileName1, size_t FileName1Len, const char * /*FileName2*/,
- const char * /*Path1*/, const char * /*Path2*/,
- __int64 Size1, __int64 Size2, time_t Time1, time_t Time2,
- bool HasTime1, bool HasTime2, void * AUserData, int & RequestResult)
- {
- if (!FActive)
- {
- return false;
- }
- else
- {
- TFileTransferData & UserData = *((TFileTransferData *)AUserData);
- if (UserData.OverwriteResult >= 0)
- {
- // on retry, use the same answer as on the first attempt
- RequestResult = UserData.OverwriteResult;
- }
- else if (!FTerminal->Configuration->ConfirmOverwriting)
- {
- RequestResult = TFileZillaIntf::FILEEXISTS_OVERWRITE;
- }
- else
- {
- TFileOperationProgressType * OperationProgress = FTerminal->OperationProgress;
- AnsiString FileName = FileName1;
- assert(UserData.FileName == FileName);
- TOverwriteMode OverwriteMode = omOverwrite;
- TOverwriteFileParams FileParams;
- FileParams.SourceSize = Size2;
- FileParams.DestSize = Size1;
- // !!! TODO DST
- FileParams.SourceTimestamp = UnixToDateTime(Time2, dstmUnix);
- FileParams.DestTimestamp = UnixToDateTime(Time1, dstmUnix);
- if ((OperationProgress->Side == osLocal) && !HasTime1)
- {
- FileParams.DestPrecision = mfMDY;
- }
- if ((OperationProgress->Side == osRemote) && !HasTime2)
- {
- FileParams.SourcePrecision = mfMDY;
- }
- if (ConfirmOverwrite(FileName, OverwriteMode, OperationProgress,
- &FileParams, UserData.Params, UserData.AutoResume))
- {
- switch (OverwriteMode)
- {
- case omOverwrite:
- if (FileName != FileName1)
- {
- strncpy(FileName1, FileName.c_str(), FileName1Len);
- FileName1[FileName1Len - 1] = '\0';
- UserData.FileName = FileName1;
- RequestResult = TFileZillaIntf::FILEEXISTS_RENAME;
- }
- else
- {
- RequestResult = TFileZillaIntf::FILEEXISTS_OVERWRITE;
- }
- break;
- case omResume:
- RequestResult = TFileZillaIntf::FILEEXISTS_RESUME;
- break;
- default:
- assert(false);
- RequestResult = TFileZillaIntf::FILEEXISTS_OVERWRITE;
- break;
- }
- }
- else
- {
- RequestResult = TFileZillaIntf::FILEEXISTS_SKIP;
- }
- }
- // remember the answer for the retries
- UserData.OverwriteResult = RequestResult;
- return true;
- }
- }
- //---------------------------------------------------------------------------
- bool __fastcall TFTPFileSystem::HandleListData(const char * Path,
- const TListDataEntry * Entries, unsigned int Count)
- {
- if (!FActive)
- {
- return false;
- }
- else if (FIgnoreFileList)
- {
- // directory listing provided implicitly by FZAPI during certain operations is ignored
- assert(FFileList == NULL);
- return false;
- }
- else
- {
- assert(FFileList != NULL);
- assert(UnixComparePaths(AbsolutePath(FFileList->Directory), Path));
- USEDPARAM(Path);
- for (unsigned int Index = 0; Index < Count; Index++)
- {
- const TListDataEntry * Entry = &Entries[Index];
- TRemoteFile * File = new TRemoteFile();
- try
- {
- File->Terminal = FTerminal;
- File->FileName = Entry->Name;
- if (strlen(Entry->Permissions) >= 10)
- {
- try
- {
- File->Rights->Text = Entry->Permissions + 1;
- }
- catch(...)
- {
- // ignore permissions errors with FTP
- }
- }
- const char * Space = strchr(Entry->OwnerGroup, ' ');
- if (Space != NULL)
- {
- File->Owner = AnsiString(Entry->OwnerGroup, Space - Entry->OwnerGroup);
- File->Group = Space + 1;
- }
- else
- {
- File->Owner = Entry->OwnerGroup;
- }
- File->Size = Entry->Size;
- if (Entry->Link)
- {
- File->Type = FILETYPE_SYMLINK;
- }
- else if (Entry->Dir)
- {
- File->Type = FILETYPE_DIRECTORY;
- }
- else
- {
- File->Type = '-';
- }
- // ModificationFmt must be set after Modification
- if (Entry->HasDate)
- {
- TDateTime Modification =
- EncodeDate((unsigned short)Entry->Year, (unsigned short)Entry->Month,
- (unsigned short)Entry->Day);
- if (Entry->HasTime)
- {
- File->Modification = Modification +
- EncodeTime((unsigned short)Entry->Hour, (unsigned short)Entry->Minute, 0, 0);
- // not exact as we got year as well, but it is most probably
- // guessed by FZAPI anyway
- File->ModificationFmt = mfMDHM;
- }
- else
- {
- File->Modification = Modification;
- File->ModificationFmt = mfMDY;
- }
- }
- else
- {
- // With SCP we estimate date to be today, if we have at least time
- File->Modification = double(0);
- File->ModificationFmt = mfNone;
- }
- File->LastAccess = File->Modification;
- File->LinkTo = Entry->LinkTarget;
- File->Complete();
- }
- catch (Exception & E)
- {
- delete File;
- AnsiString EntryData =
- FORMAT("%s/%s/%s/%s/%d/%d/%d/%d/%d/%d/%d/%d/%d",
- (Entry->Name, Entry->Permissions, Entry->OwnerGroup, IntToStr(Entry->Size),
- int(Entry->Dir), int(Entry->Link), Entry->Year, Entry->Month, Entry->Day,
- Entry->Hour, Entry->Minute, int(Entry->HasTime), int(Entry->HasDate)));
- throw ETerminal(&E, FMTLOAD(LIST_LINE_ERROR, (EntryData)));
- }
- FFileList->AddFile(File);
- }
- return true;
- }
- }
- //---------------------------------------------------------------------------
- bool __fastcall TFTPFileSystem::HandleTransferStatus(bool Valid, __int64 TransferSize,
- __int64 Bytes, int Percent, int /*TimeElapsed*/, int /*TimeLeft*/, int /*TransferRate*/,
- bool FileTransfer)
- {
- if (!FActive)
- {
- return false;
- }
- else if (!Valid)
- {
- }
- else if (FileTransfer)
- {
- FileTransferProgress(TransferSize, Bytes, Percent);
- }
- else
- {
- assert(Percent == -1);
- ReadDirectoryProgress(Bytes);
- }
- return true;
- }
- //---------------------------------------------------------------------------
- bool __fastcall TFTPFileSystem::HandleReply(int Command, unsigned int Reply)
- {
- if (!FActive)
- {
- return false;
- }
- else
- {
- if (FTerminal->Configuration->LogProtocol >= 1)
- {
- FTerminal->LogEvent(FORMAT("Got reply %x to the command %d", (int(Reply), Command)));
- }
- // reply with Command 0 is not associated with current operation
- // so do not treat is as a reply
- // (it is typically used asynchronously to notify about disconnects,
- // this is handled in TFileZillaIntf::PostMessage already)
- if (Command != 0)
- {
- assert(FCommandReply == 0);
- FCommandReply = Reply;
- }
- else
- {
- assert(FReply == 0);
- FReply = Reply;
- }
- return true;
- }
- }
- //---------------------------------------------------------------------------
- bool __fastcall TFTPFileSystem::CheckError(int ReturnCode, const char * Context)
- {
- // we do not expect any FZAPI call to fail as it generally can fail only due to:
- // - invalid paramerers
- // - busy FZAPI core
- // the only exception is REPLY_NOTCONNECTED that can happen if
- // connection is closed just between the last call to Idle()
- // and call to any FZAPI command
- // in such case reply without associated command is posted,
- // which we are going to wait for unless we are already waiting
- // on higher level (this typically happens if connection is lost while
- // waiting for user interaction and is detected with call to
- // SetAsyncRequestResult)
- if (FLAGSET(ReturnCode, TFileZillaIntf::REPLY_NOTCONNECTED))
- {
- if (!FWaitingForReply)
- {
- unsigned int Reply = WaitForReply(false);
- assert(FLAGSET(Reply, TFileZillaIntf::REPLY_DISCONNECTED));
- GotReply(Reply);
- // should never get here as GotReply should raise fatal exception
- assert(false);
- }
- }
- else
- {
- FTerminal->FatalError(NULL,
- FMTLOAD(INTERNAL_ERROR, (FORMAT("fz#%s", (Context)), IntToHex(ReturnCode, 4))));
- assert(false);
- }
- return false;
- }
- //---------------------------------------------------------------------------
- bool __fastcall TFTPFileSystem::Unquote(AnsiString & Str)
- {
- enum
- {
- INIT,
- QUOTE,
- QUOTED,
- DONE
- } State;
- State = INIT;
- assert((Str.Length() > 0) && (Str[1] == '"'));
- int Index = 1;
- while (Index <= Str.Length())
- {
- switch (State)
- {
- case INIT:
- switch (Str[Index])
- {
- case '"':
- State = QUOTED;
- Str.Delete(Index, 1);
- break;
- default:
- assert(false);
- // no quoted string
- Str.SetLength(0);
- break;
- }
- break;
- case QUOTED:
- switch (Str[Index])
- {
- case '"':
- State = QUOTE;
- Str.Delete(Index, 1);
- break;
- default:
- Index++;
- break;
- }
- break;
- case QUOTE:
- switch (Str[Index])
- {
- case '"':
- Index++;
- break;
- default:
- // end of quoted string, trim the rest
- Str.SetLength(Index - 1);
- State = DONE;
- break;
- }
- break;
- }
- }
- return (State == DONE);
- }
- //---------------------------------------------------------------------------
- #endif NO_FILEZILLA
|