12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082 |
- //---------------------------------------------------------------------------
- #include <vcl.h>
- #pragma hdrstop
- #define NE_LFS
- #define WINSCP
- #define NEED_LIBS3
- #include "S3FileSystem.h"
- #include "SessionData.h"
- #include "Interface.h"
- #include "Common.h"
- #include "Exceptions.h"
- #include "Terminal.h"
- #include "TextsCore.h"
- #include "HelpCore.h"
- #include "NeonIntf.h"
- #include <ne_request.h>
- //---------------------------------------------------------------------------
- #pragma package(smart_init)
- //---------------------------------------------------------------------------
- #define StrFromS3(S) StrFromNeon(S)
- #define StrToS3(S) StrToNeon(S)
- //---------------------------------------------------------------------------
- #define FILE_OPERATION_LOOP_TERMINAL FTerminal
- //---------------------------------------------------------------------------
- const int tfFirstLevel = 0x01;
- //---------------------------------------------------------------------------
- static std::unique_ptr<TCriticalSection> LibS3Section(TraceInitPtr(new TCriticalSection()));
- //---------------------------------------------------------------------------
- UTF8String LibS3Delimiter(L"/");
- //---------------------------------------------------------------------------
- UnicodeString __fastcall S3LibVersion()
- {
- return FORMAT(L"%s.%s", (LIBS3_VER_MAJOR, LIBS3_VER_MINOR));
- }
- //---------------------------------------------------------------------------
- UnicodeString __fastcall S3LibDefaultHostName()
- {
- return UnicodeString(S3_DEFAULT_HOSTNAME);
- }
- //---------------------------------------------------------------------------
- UnicodeString __fastcall S3LibDefaultRegion()
- {
- return StrFromS3(S3_DEFAULT_REGION);
- }
- //---------------------------------------------------------------------------
- //---------------------------------------------------------------------------
- TS3FileSystem::TS3FileSystem(TTerminal * ATerminal) :
- TCustomFileSystem(ATerminal),
- FActive(false)
- {
- FFileSystemInfo.ProtocolBaseName = L"S3";
- FFileSystemInfo.ProtocolName = FFileSystemInfo.ProtocolBaseName;
- S3_create_request_context(&FRequestContext);
- S3_set_request_context_session_callback(FRequestContext, LibS3SessionCallback, this);
- S3_set_request_context_ssl_callback(FRequestContext, LibS3SslCallback, this);
- S3_set_request_context_response_data_callback(FRequestContext, LibS3ResponseDataCallback, this);
- }
- //---------------------------------------------------------------------------
- __fastcall TS3FileSystem::~TS3FileSystem()
- {
- S3_destroy_request_context(FRequestContext);
- FRequestContext = NULL;
- UnregisterFromNeonDebug(FTerminal);
- }
- //---------------------------------------------------------------------------
- void __fastcall TS3FileSystem::Open()
- {
- FTlsVersionStr = L"";
- FNeonSession = NULL;
- FCurrentDirectory = L"";
- RequireNeon(FTerminal);
- FTerminal->Information(LoadStr(STATUS_CONNECT), true);
- TSessionData * Data = FTerminal->SessionData;
- FSessionInfo.LoginTime = Now();
- FLibS3Protocol = (Data->Ftps != ftpsNone) ? S3ProtocolHTTPS : S3ProtocolHTTP;
- UnicodeString AccessKeyId = Data->UserNameExpanded;
- if (AccessKeyId.IsEmpty())
- {
- if (!FTerminal->PromptUser(Data, pkUserName, LoadStr(S3_ACCESS_KEY_ID_TITLE), L"",
- LoadStr(S3_ACCESS_KEY_ID_PROMPT), true, 0, AccessKeyId))
- {
- // note that we never get here actually
- throw Exception(L"");
- }
- }
- FAccessKeyId = UTF8String(AccessKeyId);
- UnicodeString SecretAccessKey = UTF8String(Data->Password);
- if (SecretAccessKey.IsEmpty())
- {
- if (!FTerminal->PromptUser(Data, pkPassword, LoadStr(S3_SECRET_ACCESS_KEY_TITLE), L"",
- LoadStr(S3_SECRET_ACCESS_KEY_PROMPT), false, 0, SecretAccessKey))
- {
- // note that we never get here actually
- throw Exception(L"");
- }
- }
- FSecretAccessKey = UTF8String(SecretAccessKey);
- FHostName = UTF8String(Data->HostNameExpanded);
- FTimeout = Data->Timeout;
- RegisterForNeonDebug(FTerminal);
- UpdateNeonDebugMask();
- {
- TGuard Guard(LibS3Section.get());
- S3_initialize(NULL, S3_INIT_ALL, NULL);
- }
- FActive = false;
- try
- {
- TryOpenDirectory(ROOTDIRECTORY);
- }
- catch (Exception & E)
- {
- LibS3Deinitialize();
- FTerminal->Closed();
- FTerminal->FatalError(&E, LoadStr(CONNECTION_FAILED));
- }
- FActive = true;
- }
- //---------------------------------------------------------------------------
- struct TLibS3CallbackData
- {
- TLibS3CallbackData()
- {
- Status = (S3Status)-1;
- }
- TS3FileSystem * FileSystem;
- S3Status Status;
- UnicodeString RegionDetail;
- UnicodeString EndpointDetail;
- UnicodeString ErrorMessage;
- UnicodeString ErrorDetails;
- };
- //---------------------------------------------------------------------------
- TS3FileSystem * TS3FileSystem::GetFileSystem(void * CallbackData)
- {
- return static_cast<TLibS3CallbackData *>(CallbackData)->FileSystem;
- }
- //---------------------------------------------------------------------------
- void TS3FileSystem::LibS3SessionCallback(ne_session_s * Session, void * CallbackData)
- {
- TS3FileSystem * FileSystem = static_cast<TS3FileSystem *>(CallbackData);
- TSessionData * Data = FileSystem->FTerminal->SessionData;
- InitNeonSession(
- Session, Data->ProxyMethod, Data->ProxyHost, Data->ProxyPort,
- Data->ProxyUsername, Data->ProxyPassword, FileSystem->FTerminal);
- SetNeonTlsInit(Session, FileSystem->InitSslSession);
- // Data->Timeout is propagated via timeoutMs parameter of functions like S3_list_service
- FileSystem->FNeonSession = Session;
- }
- //------------------------------------------------------------------------------
- void TS3FileSystem::InitSslSession(ssl_st * Ssl, ne_session * /*Session*/)
- {
- // See also CAsyncSslSocketLayer::InitSSLConnection
- SetupSsl(Ssl, FTerminal->SessionData->MinTlsVersion, FTerminal->SessionData->MaxTlsVersion);
- }
- //---------------------------------------------------------------------------
- int TS3FileSystem::LibS3SslCallback(int Failures, const ne_ssl_certificate_s * Certificate, void * CallbackData)
- {
- TNeonCertificateData Data;
- RetrieveNeonCertificateData(Failures, Certificate, Data);
- TS3FileSystem * FileSystem = static_cast<TS3FileSystem *>(CallbackData);
- return FileSystem->VerifyCertificate(Data) ? NE_OK : NE_ERROR;
- }
- //---------------------------------------------------------------------------
- // Similar to TWebDAVFileSystem::VerifyCertificate
- bool TS3FileSystem::VerifyCertificate(TNeonCertificateData Data)
- {
- FSessionInfo.CertificateFingerprint = Data.Fingerprint;
- bool Result;
- if (FTerminal->SessionData->FingerprintScan)
- {
- Result = false;
- }
- else
- {
- FTerminal->LogEvent(CertificateVerificationMessage(Data));
- UnicodeString SiteKey = TSessionData::FormatSiteKey(FTerminal->SessionData->HostNameExpanded, FTerminal->SessionData->PortNumber);
- Result =
- FTerminal->VerifyCertificate(HttpsCertificateStorageKey, SiteKey, Data.Fingerprint, Data.Subject, Data.Failures);
- if (!Result)
- {
- UnicodeString Message;
- Result = NeonWindowsValidateCertificateWithMessage(Data, Message);
- FTerminal->LogEvent(Message);
- }
- FSessionInfo.Certificate = CertificateSummary(Data, FTerminal->SessionData->HostNameExpanded);
- if (!Result)
- {
- Result = FTerminal->ConfirmCertificate(FSessionInfo, Data.Failures, HttpsCertificateStorageKey, true);
- }
- if (Result)
- {
- CollectTLSSessionInfo();
- }
- }
- return Result;
- }
- //------------------------------------------------------------------------------
- void TS3FileSystem::CollectTLSSessionInfo()
- {
- // See also TFTPFileSystem::Open().
- // Have to cache the value as the connection (the neon HTTP session, not "our" session)
- // can be closed at the time we need it in CollectUsage().
- UnicodeString Message = NeonTlsSessionInfo(FNeonSession, FSessionInfo, FTlsVersionStr);
- FTerminal->LogEvent(Message);
- }
- //---------------------------------------------------------------------------
- S3Status TS3FileSystem::LibS3ResponsePropertiesCallback(const S3ResponseProperties * /*Properties*/, void * /*CallbackData*/)
- {
- // TODO
- return S3StatusOK;
- }
- //---------------------------------------------------------------------------
- void TS3FileSystem::LibS3ResponseDataCallback(const char * Data, size_t Size, void * CallbackData)
- {
- TS3FileSystem * FileSystem = static_cast<TS3FileSystem *>(CallbackData);
- if (FileSystem->FTerminal->Log->Logging)
- {
- UnicodeString Content = UnicodeString(UTF8String(Data, Size)).Trim();
- FileSystem->FResponse += Content;
- }
- }
- //---------------------------------------------------------------------------
- void TS3FileSystem::LibS3ResponseCompleteCallback(S3Status Status, const S3ErrorDetails * Error, void * CallbackData)
- {
- TLibS3CallbackData & Data = *static_cast<TLibS3CallbackData *>(CallbackData);
- TS3FileSystem * FileSystem = Data.FileSystem;
- Data.Status = Status;
- Data.RegionDetail = L"";
- Data.EndpointDetail = L"";
- Data.ErrorMessage = L"";
- Data.ErrorDetails = L"";
- if (Error != NULL)
- {
- if (Error->message != NULL)
- {
- Data.ErrorMessage = StrFromS3(Error->message);
- FileSystem->FTerminal->LogEvent(Data.ErrorMessage);
- }
- UnicodeString ErrorDetails;
- if (Error->resource != NULL)
- {
- AddToList(ErrorDetails, FMTLOAD(S3_ERROR_RESOURCE, (StrFromS3(Error->resource))), L"\n");
- }
- if (Error->furtherDetails != NULL)
- {
- AddToList(ErrorDetails, FMTLOAD(S3_ERROR_FURTHER_DETAILS, (StrFromS3(Error->furtherDetails))), L"\n");
- }
- if (Error->extraDetailsCount)
- {
- UnicodeString ExtraDetails;
- for (int I = 0; I < Error->extraDetailsCount; I++)
- {
- UnicodeString DetailName = StrFromS3(Error->extraDetails[I].name);
- UnicodeString DetailValue = StrFromS3(Error->extraDetails[I].value);
- if (SameText(DetailName, L"Region"))
- {
- Data.RegionDetail = DetailValue;
- }
- else if (SameText(DetailName, L"Endpoint"))
- {
- Data.EndpointDetail = DetailValue;
- }
- AddToList(ExtraDetails, FORMAT(L"%s: %s", (DetailName, DetailValue)), L", ");
- }
- AddToList(ErrorDetails, LoadStr(S3_ERROR_EXTRA_DETAILS) + ExtraDetails, L"\n");
- }
- if (!ErrorDetails.IsEmpty())
- {
- FileSystem->FTerminal->LogEvent(ErrorDetails);
- Data.ErrorDetails = ErrorDetails;
- }
- }
- if (!FileSystem->FResponse.IsEmpty())
- {
- FileSystem->FTerminal->Log->Add(llOutput, FileSystem->FResponse);
- }
- }
- //---------------------------------------------------------------------------
- void TS3FileSystem::RequestInit(TLibS3CallbackData & Data)
- {
- Data.FileSystem = this;
- FResponse = L"";
- }
- //---------------------------------------------------------------------------
- void TS3FileSystem::CheckLibS3Error(const TLibS3CallbackData & Data)
- {
- if (Data.Status != S3StatusOK)
- {
- UnicodeString Error, Details;
- switch (Data.Status)
- {
- case S3StatusErrorAccessDenied:
- Error = LoadStr(S3_STATUS_ACCESS_DENIED);
- break;
- case S3StatusErrorSignatureDoesNotMatch: // While it can mean an implementation fault, it will typically mean a wrong secure key.
- case S3StatusErrorInvalidAccessKeyId:
- Error = LoadStr(AUTHENTICATION_FAILED);
- break;
- }
- if (!Error.IsEmpty())
- {
- Details = Data.ErrorMessage;
- AddToList(Details, Data.ErrorDetails, L"\n");
- }
- else
- {
- if (!Data.ErrorMessage.IsEmpty())
- {
- Error = Data.ErrorMessage;
- }
- else
- {
- // only returns name of the S3 status code symbol, like S3StatusErrorAccountProblem,
- // not something we should really display to an user, but still better than an internal error code
- Error = S3_get_status_name(Data.Status);
- }
- Details = Data.ErrorDetails;
- }
- throw ExtException(MainInstructions(Error), Details);
- }
- }
- //---------------------------------------------------------------------------
- void TS3FileSystem::LibS3Deinitialize()
- {
- TGuard Guard(LibS3Section.get());
- S3_deinitialize();
- }
- //---------------------------------------------------------------------------
- UnicodeString TS3FileSystem::GetFolderKey(const UnicodeString & Key)
- {
- return Key + L"/";
- }
- //---------------------------------------------------------------------------
- void TS3FileSystem::ParsePath(UnicodeString Path, UnicodeString & BucketName, UnicodeString & Key)
- {
- if (DebugAlwaysTrue(Path.SubString(1, 1) == L"/"))
- {
- Path.Delete(1, 1);
- }
- int P = Path.Pos(L"/");
- UnicodeString Result;
- if (P == 0)
- {
- BucketName = Path;
- Key = L"";
- }
- else
- {
- BucketName = Path.SubString(0, P - 1);
- Key = Path.SubString(P + 1, Path.Length() - P);
- }
- }
- //---------------------------------------------------------------------------
- struct TLibS3BucketContext : S3BucketContext
- {
- // These keep data that that we point the native S3BucketContext fields to
- UTF8String HostNameBuf;
- UTF8String BucketNameBuf;
- UTF8String AuthRegionBuf;
- };
- //---------------------------------------------------------------------------
- struct TLibS3ListBucketCallbackData : TLibS3CallbackData
- {
- TRemoteFileList * FileList;
- int KeyCount;
- UTF8String NextMarker;
- bool IsTruncated;
- };
- //---------------------------------------------------------------------------
- TLibS3BucketContext TS3FileSystem::GetBucketContext(const UnicodeString & BucketName)
- {
- TLibS3BucketContext Result;
- bool First = true;
- bool Retry = false;
- do
- {
- TRegions::const_iterator I;
- I = FRegions.find(BucketName);
- UnicodeString Region;
- if (I != FRegions.end())
- {
- Region = I->second;
- }
- else
- {
- Region = FTerminal->SessionData->S3DefaultRegion;
- if (First)
- {
- FTerminal->LogEvent(FORMAT(L"Unknown bucket \"%s\", will detect its region (and service endpoint)", (BucketName)));
- First = false;
- }
- Retry = true;
- }
- I = FHostNames.find(BucketName);
- UnicodeString HostName;
- if (I != FHostNames.end())
- {
- HostName = I->second;
- }
- else
- {
- HostName = UnicodeString(FHostName);
- }
- Result.HostNameBuf = UTF8String(HostName);
- Result.hostName = Result.HostNameBuf.c_str();
- Result.BucketNameBuf = UTF8String(BucketName);
- Result.bucketName = Result.BucketNameBuf.c_str();
- Result.protocol = FLibS3Protocol;
- Result.uriStyle = S3UriStyleVirtualHost;
- Result.accessKeyId = FAccessKeyId.c_str();
- Result.secretAccessKey = FSecretAccessKey.c_str();
- Result.securityToken = NULL;
- Result.AuthRegionBuf = UTF8String(Region);
- Result.authRegion = Result.AuthRegionBuf.c_str();
- if (Retry)
- {
- std::unique_ptr<TRemoteFileList> FileList(new TRemoteFileList());
- TLibS3ListBucketCallbackData Data;
- DoListBucket(UnicodeString(), FileList.get(), 1, Result, Data);
- Retry = false;
- UnicodeString EndpointDetail = Data.EndpointDetail;
- if ((Data.Status == S3StatusErrorAuthorizationHeaderMalformed) &&
- (Region != Data.RegionDetail))
- {
- FTerminal->LogEvent(FORMAT("Will use region \"%s\" for bucket \"%s\" from now on.", (Data.RegionDetail, BucketName)));
- FRegions.insert(std::make_pair(BucketName, Data.RegionDetail));
- Result.AuthRegionBuf = UTF8String(Data.RegionDetail);
- Result.authRegion = Result.AuthRegionBuf.c_str();
- }
- // happens with newly created buckets (and happens before the region redirect)
- else if ((Data.Status == S3StatusErrorTemporaryRedirect) && !Data.EndpointDetail.IsEmpty())
- {
- UnicodeString Endpoint = Data.EndpointDetail;
- if (SameText(Endpoint.SubString(1, BucketName.Length() + 1), BucketName + L"."))
- {
- Endpoint.Delete(1, BucketName.Length() + 1);
- }
- if (HostName != Endpoint)
- {
- FTerminal->LogEvent(FORMAT("Will use endpoint \"%s\" for bucket \"%s\" from now on.", (Endpoint, BucketName)));
- FHostNames.insert(std::make_pair(BucketName, Endpoint));
- Retry = true;
- }
- }
- }
- }
- while (Retry);
- return Result;
- }
- //---------------------------------------------------------------------------
- #define CreateResponseHandler() { &LibS3ResponsePropertiesCallback, &LibS3ResponseCompleteCallback }
- //---------------------------------------------------------------------------
- void __fastcall TS3FileSystem::Close()
- {
- DebugAssert(FActive);
- LibS3Deinitialize();
- FTerminal->Closed();
- FActive = false;
- UnregisterFromNeonDebug(FTerminal);
- }
- //---------------------------------------------------------------------------
- bool __fastcall TS3FileSystem::GetActive()
- {
- return FActive;
- }
- //---------------------------------------------------------------------------
- void __fastcall TS3FileSystem::CollectUsage()
- {
- // noop
- }
- //---------------------------------------------------------------------------
- const TSessionInfo & __fastcall TS3FileSystem::GetSessionInfo()
- {
- return FSessionInfo;
- }
- //---------------------------------------------------------------------------
- const TFileSystemInfo & __fastcall TS3FileSystem::GetFileSystemInfo(bool /*Retrieve*/)
- {
- return FFileSystemInfo;
- }
- //---------------------------------------------------------------------------
- bool __fastcall TS3FileSystem::TemporaryTransferFile(const UnicodeString & /*FileName*/)
- {
- return false;
- }
- //---------------------------------------------------------------------------
- bool __fastcall TS3FileSystem::GetStoredCredentialsTried()
- {
- // if we have one, we always try it
- return !FTerminal->SessionData->Password.IsEmpty();
- }
- //---------------------------------------------------------------------------
- UnicodeString __fastcall TS3FileSystem::GetUserName()
- {
- return UnicodeString(FAccessKeyId);
- }
- //---------------------------------------------------------------------------
- void __fastcall TS3FileSystem::Idle()
- {
- // noop
- }
- //---------------------------------------------------------------------------
- UnicodeString __fastcall TS3FileSystem::AbsolutePath(const UnicodeString Path, bool /*Local*/)
- {
- if (UnixIsAbsolutePath(Path))
- {
- return Path;
- }
- else
- {
- return ::AbsolutePath(FCurrentDirectory, Path);
- }
- }
- //---------------------------------------------------------------------------
- bool __fastcall TS3FileSystem::IsCapable(int Capability) const
- {
- DebugAssert(FTerminal);
- switch (Capability)
- {
- // Only to make double-click on file edit/open the file,
- // instead of trying to open it as directory
- case fcResolveSymlink:
- case fcRemoteCopy:
- case fcRename:
- case fcRemoteMove:
- return true;
- case fcMoveToQueue:
- case fcPreservingTimestampUpload:
- case fcCheckingSpaceAvailable:
- case fsSkipTransfer:
- case fsParallelTransfers:
- case fcUserGroupListing:
- case fcModeChanging:
- case fcModeChangingUpload:
- case fcGroupChanging:
- case fcOwnerChanging:
- case fcAnyCommand:
- case fcShellAnyCommand:
- case fcHardLink:
- case fcSymbolicLink:
- case fcTextMode:
- case fcNativeTextMode:
- case fcNewerOnlyUpload:
- case fcTimestampChanging:
- case fcLoadingAdditionalProperties:
- case fcIgnorePermErrors:
- case fcCalculatingChecksum:
- case fcSecondaryShell:
- case fcGroupOwnerChangingByID:
- case fcRemoveCtrlZUpload:
- case fcRemoveBOMUpload:
- case fcPreservingTimestampDirs:
- case fcResumeSupport:
- case fcChangePassword:
- case fcLocking:
- return false;
- default:
- DebugFail();
- return false;
- }
- }
- //---------------------------------------------------------------------------
- UnicodeString __fastcall TS3FileSystem::GetCurrentDirectory()
- {
- return FCurrentDirectory;
- }
- //---------------------------------------------------------------------------
- void __fastcall TS3FileSystem::DoStartup()
- {
- FTerminal->SetExceptionOnFail(true);
- // retrieve initialize working directory to save it as home directory
- ReadCurrentDirectory();
- FTerminal->SetExceptionOnFail(false);
- }
- //---------------------------------------------------------------------------
- void __fastcall TS3FileSystem::LookupUsersGroups()
- {
- DebugFail();
- }
- //---------------------------------------------------------------------------
- void __fastcall TS3FileSystem::ReadCurrentDirectory()
- {
- if (FCachedDirectoryChange.IsEmpty())
- {
- FCurrentDirectory = FCurrentDirectory.IsEmpty() ? UnicodeString(L"/") : FCurrentDirectory;
- }
- else
- {
- FCurrentDirectory = FCachedDirectoryChange;
- FCachedDirectoryChange = L"";
- }
- }
- //---------------------------------------------------------------------------
- void __fastcall TS3FileSystem::HomeDirectory()
- {
- ChangeDirectory(L"/");
- }
- //---------------------------------------------------------------------------
- void __fastcall TS3FileSystem::AnnounceFileListOperation()
- {
- // noop
- }
- //---------------------------------------------------------------------------
- void TS3FileSystem::TryOpenDirectory(const UnicodeString & Directory)
- {
- FTerminal->LogEvent(FORMAT(L"Trying to open directory \"%s\".", (Directory)));
- std::unique_ptr<TRemoteFileList> FileList(new TRemoteFileList());
- ReadDirectoryInternal(Directory, FileList.get(), 1, UnicodeString());
- }
- //---------------------------------------------------------------------------
- void __fastcall TS3FileSystem::ChangeDirectory(const UnicodeString ADirectory)
- {
- UnicodeString Path = AbsolutePath(ADirectory, false);
- // to verify existence of directory try to open it
- TryOpenDirectory(Path);
- // if open dir did not fail, directory exists -> success.
- FCachedDirectoryChange = Path;
- }
- //---------------------------------------------------------------------------
- void __fastcall TS3FileSystem::CachedChangeDirectory(const UnicodeString Directory)
- {
- FCachedDirectoryChange = UnixExcludeTrailingBackslash(Directory);
- }
- //---------------------------------------------------------------------------
- TRemoteToken TS3FileSystem::MakeRemoteToken(const char * OwnerId, const char * OwnerDisplayName)
- {
- TRemoteToken Result;
- Result.Name = StrFromS3(OwnerDisplayName);
- if (Result.Name.IsEmpty())
- {
- Result.Name = StrFromS3(OwnerId);
- }
- return Result;
- }
- //---------------------------------------------------------------------------
- struct TLibS3ListServiceCallbackData : TLibS3CallbackData
- {
- TRemoteFileList * FileList;
- UnicodeString FileName; // filter for buckets
- };
- //---------------------------------------------------------------------------
- S3Status TS3FileSystem::LibS3ListServiceCallback(
- const char * OwnerId, const char * OwnerDisplayName, const char * BucketName,
- int64_t /*CreationDate*/, void * CallbackData)
- {
- TLibS3ListServiceCallbackData & Data = *static_cast<TLibS3ListServiceCallbackData *>(CallbackData);
- UnicodeString FileName = StrFromS3(BucketName);
- if (Data.FileName.IsEmpty() || (Data.FileName == FileName))
- {
- std::unique_ptr<TRemoteFile> File(new TRemoteFile(NULL));
- File->Terminal = Data.FileSystem->FTerminal;
- File->FileName = StrFromS3(BucketName);
- File->Type = FILETYPE_DIRECTORY;
- File->Owner = Data.FileSystem->MakeRemoteToken(OwnerId, OwnerDisplayName);
- File->ModificationFmt = mfNone;
- Data.FileList->AddFile(File.release());
- }
- return S3StatusOK;
- }
- //---------------------------------------------------------------------------
- S3Status TS3FileSystem::LibS3ListBucketCallback(
- int IsTruncated, const char * NextMarker, int ContentsCount, const S3ListBucketContent * Contents,
- int CommonPrefixesCount, const char ** CommonPrefixes, void * CallbackData)
- {
- TLibS3ListBucketCallbackData & Data = *static_cast<TLibS3ListBucketCallbackData *>(CallbackData);
- Data.IsTruncated = IsTruncated;
- // This is being called in chunks, not once for all data in a response.
- Data.KeyCount += ContentsCount;
- Data.NextMarker = StrFromS3(NextMarker);
- for (int Index = 0; Index < ContentsCount; Index++)
- {
- const S3ListBucketContent * Content = &Contents[Index];
- UnicodeString FileName = UnixExtractFileName(StrFromS3(Content->key));
- if (!FileName.IsEmpty())
- {
- std::unique_ptr<TRemoteFile> File(new TRemoteFile(NULL));
- File->Terminal = Data.FileSystem->FTerminal;
- File->FileName = FileName;
- File->Type = FILETYPE_DEFAULT;
- File->Modification = UnixToDateTime(Content->lastModified, dstmWin);
- File->Size = Content->size;
- File->Owner = Data.FileSystem->MakeRemoteToken(Content->ownerId, Content->ownerDisplayName);
- Data.FileList->AddFile(File.release());
- }
- else
- {
- // We needs this to distinguish empty and non-existing folders, see comments in ReadDirectoryInternal.
- Data.FileList->AddFile(new TRemoteParentDirectory(Data.FileSystem->FTerminal));
- }
- }
- for (int Index = 0; Index < CommonPrefixesCount; Index++)
- {
- std::unique_ptr<TRemoteFile> File(new TRemoteFile(NULL));
- File->Terminal = Data.FileSystem->FTerminal;
- File->FileName = UnixExtractFileName(UnixExcludeTrailingBackslash(StrFromS3(CommonPrefixes[Index])));
- File->Type = FILETYPE_DIRECTORY;
- File->ModificationFmt = mfNone;
- Data.FileList->AddFile(File.release());
- }
- return S3StatusOK;
- }
- //---------------------------------------------------------------------------
- void TS3FileSystem::DoListBucket(
- const UnicodeString & Prefix, TRemoteFileList * FileList, int MaxKeys, const TLibS3BucketContext & BucketContext,
- TLibS3ListBucketCallbackData & Data)
- {
- S3ListBucketHandler ListBucketHandler = { CreateResponseHandler(), &LibS3ListBucketCallback };
- RequestInit(Data);
- Data.KeyCount = 0;
- Data.FileList = FileList;
- Data.IsTruncated = false;
- S3_list_bucket(
- &BucketContext, StrToS3(Prefix), StrToS3(Data.NextMarker),
- LibS3Delimiter.c_str(), MaxKeys, FRequestContext, FTimeout, &ListBucketHandler, &Data);
- }
- //---------------------------------------------------------------------------
- void TS3FileSystem::ReadDirectoryInternal(
- const UnicodeString & APath, TRemoteFileList * FileList, int MaxKeys, const UnicodeString & FileName)
- {
- UnicodeString Path = AbsolutePath(APath, false);
- if (IsUnixRootPath(Path))
- {
- DebugAssert(FileList != NULL);
- S3ListServiceHandler ListServiceHandler = { CreateResponseHandler(), &LibS3ListServiceCallback };
- TLibS3ListServiceCallbackData Data;
- RequestInit(Data);
- Data.FileSystem = this;
- Data.FileList = FileList;
- Data.FileName = FileName;
- S3_list_service(
- FLibS3Protocol, FAccessKeyId.c_str(), FSecretAccessKey.c_str(), 0, FHostName.c_str(),
- NULL, MaxKeys, FRequestContext, FTimeout, &ListServiceHandler, &Data);
- CheckLibS3Error(Data);
- }
- else
- {
- UnicodeString BucketName, Prefix;
- ParsePath(Path, BucketName, Prefix);
- if (!Prefix.IsEmpty())
- {
- Prefix = GetFolderKey(Prefix);
- }
- Prefix += FileName;
- TLibS3BucketContext BucketContext = GetBucketContext(BucketName);
- TLibS3ListBucketCallbackData Data;
- bool Continue;
- do
- {
- DoListBucket(Prefix, FileList, MaxKeys, BucketContext, Data);
- CheckLibS3Error(Data);
- Continue = false;
- if (Data.IsTruncated && ((MaxKeys == 0) || (Data.KeyCount < MaxKeys)))
- {
- bool Cancel = false;
- FTerminal->DoReadDirectoryProgress(FileList->Count, false, Cancel);
- if (!Cancel)
- {
- Continue = true;
- }
- }
- } while (Continue);
- // Listing bucket root directory will report an error if the bucket does not exist.
- // But there won't be any prefix/ entry, so no ".." entry is created, so we have to add it explicitly
- if (Prefix.IsEmpty())
- {
- FileList->AddFile(new TRemoteParentDirectory(FTerminal));
- }
- else
- {
- // We do not get any error, when the "prefix" does not exist. But when prefix does exist, there's at least
- // prefix/ entry (translated to ..). If there's none, it means that the path does not exist.
- if (FileList->Count == 0)
- {
- throw Exception(FMTLOAD(FILE_NOT_EXISTS, (APath)));
- }
- }
- }
- }
- //---------------------------------------------------------------------------
- void __fastcall TS3FileSystem::ReadDirectory(TRemoteFileList * FileList)
- {
- TOperationVisualizer Visualizer(FTerminal->UseBusyCursor);
- ReadDirectoryInternal(FileList->Directory, FileList, 0, UnicodeString());
- }
- //---------------------------------------------------------------------------
- void __fastcall TS3FileSystem::ReadSymlink(TRemoteFile * /*SymlinkFile*/,
- TRemoteFile *& /*File*/)
- {
- // we never set SymLink flag, so we should never get here
- DebugFail();
- }
- //---------------------------------------------------------------------------
- void __fastcall TS3FileSystem::ReadFile(const UnicodeString FileName,
- TRemoteFile *& File)
- {
- TOperationVisualizer Visualizer(FTerminal->UseBusyCursor);
- UnicodeString FileNameOnly = UnixExtractFileName(FileName);
- std::unique_ptr<TRemoteFileList> FileList(new TRemoteFileList());
- ReadDirectoryInternal(UnixExtractFileDir(FileName), FileList.get(), 1, FileNameOnly);
- TRemoteFile * AFile = FileList->FindFile(FileNameOnly);
- if (AFile == NULL)
- {
- throw Exception(FMTLOAD(FILE_NOT_EXISTS, (FileName)));
- }
- File = AFile->Duplicate();
- }
- //---------------------------------------------------------------------------
- void __fastcall TS3FileSystem::DeleteFile(const UnicodeString AFileName,
- const TRemoteFile * File, int Params, TRmSessionAction & Action)
- {
- UnicodeString FileName = AbsolutePath(AFileName, false);
- bool Dir = FTerminal->DeleteContentsIfDirectory(FileName, File, Params, Action);
- UnicodeString BucketName, Key;
- ParsePath(FileName, BucketName, Key);
- TLibS3BucketContext BucketContext = GetBucketContext(BucketName);
- S3ResponseHandler ResponseHandler = CreateResponseHandler();
- TLibS3CallbackData Data;
- RequestInit(Data);
- if (Key.IsEmpty())
- {
- S3_delete_bucket(
- BucketContext.protocol, BucketContext.uriStyle, BucketContext.accessKeyId, BucketContext.secretAccessKey,
- BucketContext.securityToken, BucketContext.hostName, BucketContext.bucketName, BucketContext.authRegion,
- FRequestContext, FTimeout, &ResponseHandler, &Data);
- }
- else
- {
- if (Dir)
- {
- Key = GetFolderKey(Key);
- }
- S3_delete_object(&BucketContext, StrToS3(Key), FRequestContext, FTimeout, &ResponseHandler, &Data);
- }
- CheckLibS3Error(Data);
- }
- //---------------------------------------------------------------------------
- void __fastcall TS3FileSystem::RenameFile(const UnicodeString FileName, const TRemoteFile * File,
- const UnicodeString NewName)
- {
- CopyFile(FileName, File, NewName);
- TRmSessionAction DummyAction(FTerminal->ActionLog, FileName);
- DeleteFile(FileName, File, dfForceDelete, DummyAction);
- DummyAction.Cancel();
- }
- //---------------------------------------------------------------------------
- void __fastcall TS3FileSystem::CopyFile(const UnicodeString AFileName, const TRemoteFile * File,
- const UnicodeString ANewName)
- {
- if (DebugAlwaysTrue(File != NULL) && File->IsDirectory)
- {
- throw Exception(LoadStr(DUPLICATE_FOLDER_NOT_SUPPORTED));
- }
- UnicodeString FileName = AbsolutePath(AFileName, false);
- UnicodeString NewName = AbsolutePath(ANewName, false);
- UnicodeString SourceBucketName, SourceKey;
- ParsePath(FileName, SourceBucketName, SourceKey);
- DebugAssert(!SourceKey.IsEmpty()); // it's not a folder, so it cannot be a bucket or root
- UnicodeString DestBucketName, DestKey;
- ParsePath(NewName, DestBucketName, DestKey);
- if (DestKey.IsEmpty())
- {
- throw Exception(LoadStr(MISSING_TARGET_BUCKET));
- }
- TLibS3BucketContext BucketContext = GetBucketContext(DestBucketName);
- BucketContext.BucketNameBuf = SourceBucketName;
- BucketContext.bucketName = BucketContext.BucketNameBuf.c_str();
- S3ResponseHandler ResponseHandler = CreateResponseHandler();
- TLibS3CallbackData Data;
- RequestInit(Data);
- S3_copy_object(
- &BucketContext, StrToS3(SourceKey), StrToS3(DestBucketName), StrToS3(DestKey),
- NULL, NULL, 0, NULL, FRequestContext, FTimeout, &ResponseHandler, &Data);
- CheckLibS3Error(Data);
- }
- //---------------------------------------------------------------------------
- void __fastcall TS3FileSystem::CreateDirectory(const UnicodeString ADirName)
- {
- TOperationVisualizer Visualizer(FTerminal->UseBusyCursor);
- UnicodeString DirName = AbsolutePath(ADirName, false);
- UnicodeString BucketName, Key;
- ParsePath(DirName, BucketName, Key);
- TLibS3CallbackData Data;
- RequestInit(Data);
- if (Key.IsEmpty())
- {
- S3ResponseHandler ResponseHandler = CreateResponseHandler();
- // Not using GetBucketContext here, as the bucket does not exist, so we have to explicitly use S3DefaultRegion
- S3_create_bucket(
- FLibS3Protocol, FAccessKeyId.c_str(), FSecretAccessKey.c_str(), NULL, FHostName.c_str(), StrToS3(BucketName),
- StrToS3(FTerminal->SessionData->S3DefaultRegion), S3CannedAclPrivate, NULL, FRequestContext, FTimeout,
- &ResponseHandler, &Data);
- }
- else
- {
- Key = GetFolderKey(Key);
- TLibS3BucketContext BucketContext = GetBucketContext(BucketName);
- S3PutObjectHandler PutObjectHandler = { CreateResponseHandler(), NULL };
- S3_put_object(&BucketContext, StrToS3(Key), 0, NULL, FRequestContext, FTimeout, &PutObjectHandler, &Data);
- }
- CheckLibS3Error(Data);
- }
- //---------------------------------------------------------------------------
- void __fastcall TS3FileSystem::CreateLink(const UnicodeString FileName,
- const UnicodeString PointTo, bool /*Symbolic*/)
- {
- DebugFail();
- }
- //---------------------------------------------------------------------------
- void __fastcall TS3FileSystem::ChangeFileProperties(const UnicodeString FileName,
- const TRemoteFile * /*File*/, const TRemoteProperties * /*Properties*/,
- TChmodSessionAction & /*Action*/)
- {
- DebugFail();
- }
- //---------------------------------------------------------------------------
- bool __fastcall TS3FileSystem::LoadFilesProperties(TStrings * /*FileList*/)
- {
- DebugFail();
- return false;
- }
- //---------------------------------------------------------------------------
- void __fastcall TS3FileSystem::CalculateFilesChecksum(const UnicodeString & /*Alg*/,
- TStrings * /*FileList*/, TStrings * /*Checksums*/,
- TCalculatedChecksumEvent /*OnCalculatedChecksum*/)
- {
- DebugFail();
- }
- //---------------------------------------------------------------------------
- void __fastcall TS3FileSystem::CustomCommandOnFile(const UnicodeString FileName,
- const TRemoteFile * /*File*/, UnicodeString Command, int /*Params*/, TCaptureOutputEvent /*OutputEvent*/)
- {
- DebugFail();
- }
- //---------------------------------------------------------------------------
- void __fastcall TS3FileSystem::AnyCommand(const UnicodeString Command,
- TCaptureOutputEvent /*OutputEvent*/)
- {
- DebugFail();
- }
- //---------------------------------------------------------------------------
- TStrings * __fastcall TS3FileSystem::GetFixedPaths()
- {
- return NULL;
- }
- //---------------------------------------------------------------------------
- void __fastcall TS3FileSystem::SpaceAvailable(const UnicodeString Path,
- TSpaceAvailable & /*ASpaceAvailable*/)
- {
- DebugFail();
- }
- //---------------------------------------------------------------------------
- void __fastcall TS3FileSystem::CopyToRemote(TStrings * /*FilesToCopy*/,
- const UnicodeString ATargetDir, const TCopyParamType * /*CopyParam*/,
- int /*Params*/, TFileOperationProgressType * /*OperationProgress*/,
- TOnceDoneOperation & /*OnceDoneOperation*/)
- {
- throw Exception(L"Not implemented");
- }
- //---------------------------------------------------------------------------
- void __fastcall TS3FileSystem::CopyToLocal(TStrings * /*FilesToCopy*/,
- const UnicodeString TargetDir, const TCopyParamType * /*CopyParam*/,
- int /*Params*/, TFileOperationProgressType * /*OperationProgress*/,
- TOnceDoneOperation & /*OnceDoneOperation*/)
- {
- throw Exception(L"Not implemented");
- }
- //---------------------------------------------------------------------------
- void __fastcall TS3FileSystem::GetSupportedChecksumAlgs(TStrings * /*Algs*/)
- {
- // NOOP
- }
- //---------------------------------------------------------------------------
- void __fastcall TS3FileSystem::LockFile(const UnicodeString & /*FileName*/, const TRemoteFile * /*File*/)
- {
- DebugFail();
- }
- //---------------------------------------------------------------------------
- void __fastcall TS3FileSystem::UnlockFile(const UnicodeString & /*FileName*/, const TRemoteFile * /*File*/)
- {
- DebugFail();
- }
- //---------------------------------------------------------------------------
- void __fastcall TS3FileSystem::UpdateFromMain(TCustomFileSystem * /*AMainFileSystem*/)
- {
- // noop
- }
- //------------------------------------------------------------------------------
- void __fastcall TS3FileSystem::ClearCaches()
- {
- FRegions.clear();
- FHostNames.clear();
- }
- //------------------------------------------------------------------------------
|