2016-05-04 15:16:48 +00:00
|
|
|
#if ENABLE_S3
|
|
|
|
|
2017-02-14 13:20:00 +00:00
|
|
|
#include "s3.hh"
|
2016-04-21 14:02:48 +00:00
|
|
|
#include "s3-binary-cache-store.hh"
|
|
|
|
#include "nar-info.hh"
|
|
|
|
#include "nar-info-disk-cache.hh"
|
|
|
|
#include "globals.hh"
|
2017-03-14 14:03:53 +00:00
|
|
|
#include "compression.hh"
|
2020-04-06 21:57:28 +00:00
|
|
|
#include "filetransfer.hh"
|
2016-04-21 14:02:48 +00:00
|
|
|
|
2016-12-22 16:39:05 +00:00
|
|
|
#include <aws/core/Aws.h>
|
2017-12-22 11:05:13 +00:00
|
|
|
#include <aws/core/VersionConfig.h>
|
2017-11-15 13:16:04 +00:00
|
|
|
#include <aws/core/auth/AWSCredentialsProvider.h>
|
|
|
|
#include <aws/core/auth/AWSCredentialsProviderChain.h>
|
2016-04-21 14:02:48 +00:00
|
|
|
#include <aws/core/client/ClientConfiguration.h>
|
2017-02-21 10:42:38 +00:00
|
|
|
#include <aws/core/client/DefaultRetryStrategy.h>
|
2017-06-19 15:01:01 +00:00
|
|
|
#include <aws/core/utils/logging/FormattedLogSystem.h>
|
|
|
|
#include <aws/core/utils/logging/LogMacros.h>
|
2018-05-07 13:23:51 +00:00
|
|
|
#include <aws/core/utils/threading/Executor.h>
|
2016-04-21 14:02:48 +00:00
|
|
|
#include <aws/s3/S3Client.h>
|
|
|
|
#include <aws/s3/model/GetObjectRequest.h>
|
|
|
|
#include <aws/s3/model/HeadObjectRequest.h>
|
2016-04-21 15:53:47 +00:00
|
|
|
#include <aws/s3/model/ListObjectsRequest.h>
|
2016-12-22 16:39:05 +00:00
|
|
|
#include <aws/s3/model/PutObjectRequest.h>
|
2018-05-07 13:23:51 +00:00
|
|
|
#include <aws/transfer/TransferManager.h>
|
|
|
|
|
|
|
|
using namespace Aws::Transfer;
|
2016-04-21 14:02:48 +00:00
|
|
|
|
|
|
|
namespace nix {
|
|
|
|
|
|
|
|
struct S3Error : public Error
|
|
|
|
{
|
|
|
|
Aws::S3::S3Errors err;
|
2020-04-21 23:07:07 +00:00
|
|
|
|
|
|
|
template<typename... Args>
|
|
|
|
S3Error(Aws::S3::S3Errors err, const Args & ... args)
|
|
|
|
: Error(args...), err(err) { };
|
2016-04-21 14:02:48 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
/* Helper: given an Outcome<R, E>, return R in case of success, or
|
|
|
|
throw an exception in case of an error. */
|
|
|
|
template<typename R, typename E>
|
2023-03-02 14:44:19 +00:00
|
|
|
R && checkAws(std::string_view s, Aws::Utils::Outcome<R, E> && outcome)
|
2016-04-21 14:02:48 +00:00
|
|
|
{
|
|
|
|
if (!outcome.IsSuccess())
|
|
|
|
throw S3Error(
|
|
|
|
outcome.GetError().GetErrorType(),
|
2023-03-02 14:44:19 +00:00
|
|
|
s + ": " + outcome.GetError().GetMessage());
|
2016-04-21 14:02:48 +00:00
|
|
|
return outcome.GetResultWithOwnership();
|
|
|
|
}
|
|
|
|
|
2017-06-19 15:01:01 +00:00
|
|
|
class AwsLogger : public Aws::Utils::Logging::FormattedLogSystem
|
|
|
|
{
|
|
|
|
using Aws::Utils::Logging::FormattedLogSystem::FormattedLogSystem;
|
|
|
|
|
|
|
|
void ProcessFormattedStatement(Aws::String && statement) override
|
|
|
|
{
|
|
|
|
debug("AWS: %s", chomp(statement));
|
|
|
|
}
|
2020-12-04 18:32:35 +00:00
|
|
|
|
|
|
|
#if !(AWS_VERSION_MAJOR <= 1 && AWS_VERSION_MINOR <= 7 && AWS_VERSION_PATCH <= 115)
|
|
|
|
void Flush() override {}
|
|
|
|
#endif
|
2017-06-19 15:01:01 +00:00
|
|
|
};
|
|
|
|
|
2016-12-22 16:39:05 +00:00
|
|
|
static void initAWS()
|
|
|
|
{
|
|
|
|
static std::once_flag flag;
|
|
|
|
std::call_once(flag, []() {
|
|
|
|
Aws::SDKOptions options;
|
|
|
|
|
|
|
|
/* We install our own OpenSSL locking function (see
|
|
|
|
shared.cc), so don't let aws-sdk-cpp override it. */
|
|
|
|
options.cryptoOptions.initAndCleanupOpenSSL = false;
|
|
|
|
|
2017-06-19 15:01:01 +00:00
|
|
|
if (verbosity >= lvlDebug) {
|
|
|
|
options.loggingOptions.logLevel =
|
|
|
|
verbosity == lvlDebug
|
|
|
|
? Aws::Utils::Logging::LogLevel::Debug
|
|
|
|
: Aws::Utils::Logging::LogLevel::Trace;
|
|
|
|
options.loggingOptions.logger_create_fn = [options]() {
|
|
|
|
return std::make_shared<AwsLogger>(options.loggingOptions.logLevel);
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2016-12-22 16:39:05 +00:00
|
|
|
Aws::InitAPI(options);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2022-02-25 15:00:00 +00:00
|
|
|
S3Helper::S3Helper(
|
|
|
|
const std::string & profile,
|
|
|
|
const std::string & region,
|
|
|
|
const std::string & scheme,
|
|
|
|
const std::string & endpoint)
|
2018-12-07 22:38:24 +00:00
|
|
|
: config(makeConfig(region, scheme, endpoint))
|
2017-11-15 13:16:04 +00:00
|
|
|
, client(make_ref<Aws::S3::S3Client>(
|
|
|
|
profile == ""
|
|
|
|
? std::dynamic_pointer_cast<Aws::Auth::AWSCredentialsProvider>(
|
|
|
|
std::make_shared<Aws::Auth::DefaultAWSCredentialsProviderChain>())
|
|
|
|
: std::dynamic_pointer_cast<Aws::Auth::AWSCredentialsProvider>(
|
|
|
|
std::make_shared<Aws::Auth::ProfileConfigFileAWSCredentialsProvider>(profile.c_str())),
|
2017-12-22 11:05:13 +00:00
|
|
|
*config,
|
|
|
|
// FIXME: https://github.com/aws/aws-sdk-cpp/issues/759
|
|
|
|
#if AWS_VERSION_MAJOR == 1 && AWS_VERSION_MINOR < 3
|
|
|
|
false,
|
|
|
|
#else
|
|
|
|
Aws::Client::AWSAuthV4Signer::PayloadSigningPolicy::Never,
|
|
|
|
#endif
|
2018-07-31 20:45:49 +00:00
|
|
|
endpoint.empty()))
|
2017-02-14 13:20:00 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2017-02-21 10:42:38 +00:00
|
|
|
/* Log AWS retries. */
|
|
|
|
class RetryStrategy : public Aws::Client::DefaultRetryStrategy
|
|
|
|
{
|
2017-06-19 16:13:32 +00:00
|
|
|
bool ShouldRetry(const Aws::Client::AWSError<Aws::Client::CoreErrors>& error, long attemptedRetries) const override
|
2017-02-21 10:42:38 +00:00
|
|
|
{
|
2017-06-19 16:13:32 +00:00
|
|
|
auto retry = Aws::Client::DefaultRetryStrategy::ShouldRetry(error, attemptedRetries);
|
|
|
|
if (retry)
|
|
|
|
printError("AWS error '%s' (%s), will retry in %d ms",
|
2020-05-03 14:01:25 +00:00
|
|
|
error.GetExceptionName(),
|
|
|
|
error.GetMessage(),
|
|
|
|
CalculateDelayBeforeNextRetry(error, attemptedRetries));
|
2017-06-19 16:13:32 +00:00
|
|
|
return retry;
|
2017-02-21 10:42:38 +00:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2022-02-25 15:00:00 +00:00
|
|
|
ref<Aws::Client::ClientConfiguration> S3Helper::makeConfig(
|
|
|
|
const std::string & region,
|
|
|
|
const std::string & scheme,
|
|
|
|
const std::string & endpoint)
|
2017-02-14 13:20:00 +00:00
|
|
|
{
|
|
|
|
initAWS();
|
|
|
|
auto res = make_ref<Aws::Client::ClientConfiguration>();
|
2017-03-03 21:12:17 +00:00
|
|
|
res->region = region;
|
2018-12-07 22:38:24 +00:00
|
|
|
if (!scheme.empty()) {
|
|
|
|
res->scheme = Aws::Http::SchemeMapper::FromString(scheme.c_str());
|
|
|
|
}
|
2018-07-31 20:45:49 +00:00
|
|
|
if (!endpoint.empty()) {
|
|
|
|
res->endpointOverride = endpoint;
|
|
|
|
}
|
2017-02-14 13:20:00 +00:00
|
|
|
res->requestTimeoutMs = 600 * 1000;
|
2019-03-15 12:16:20 +00:00
|
|
|
res->connectTimeoutMs = 5 * 1000;
|
2017-02-21 10:42:38 +00:00
|
|
|
res->retryStrategy = std::make_shared<RetryStrategy>();
|
2017-03-06 19:30:35 +00:00
|
|
|
res->caFile = settings.caFile;
|
2017-02-14 13:20:00 +00:00
|
|
|
return res;
|
|
|
|
}
|
|
|
|
|
2020-04-06 21:43:43 +00:00
|
|
|
S3Helper::FileTransferResult S3Helper::getObject(
|
2017-02-14 13:20:00 +00:00
|
|
|
const std::string & bucketName, const std::string & key)
|
|
|
|
{
|
2017-07-30 11:27:57 +00:00
|
|
|
debug("fetching 's3://%s/%s'...", bucketName, key);
|
2017-02-14 13:20:00 +00:00
|
|
|
|
|
|
|
auto request =
|
|
|
|
Aws::S3::Model::GetObjectRequest()
|
|
|
|
.WithBucket(bucketName)
|
|
|
|
.WithKey(key);
|
|
|
|
|
|
|
|
request.SetResponseStreamFactory([&]() {
|
|
|
|
return Aws::New<std::stringstream>("STRINGSTREAM");
|
|
|
|
});
|
|
|
|
|
2020-04-06 21:43:43 +00:00
|
|
|
FileTransferResult res;
|
2017-02-14 13:20:00 +00:00
|
|
|
|
|
|
|
auto now1 = std::chrono::steady_clock::now();
|
|
|
|
|
|
|
|
try {
|
|
|
|
|
2017-07-30 11:27:57 +00:00
|
|
|
auto result = checkAws(fmt("AWS error fetching '%s'", key),
|
2017-02-14 13:20:00 +00:00
|
|
|
client->GetObject(request));
|
|
|
|
|
2018-08-06 13:40:29 +00:00
|
|
|
res.data = decompress(result.GetContentEncoding(),
|
|
|
|
dynamic_cast<std::stringstream &>(result.GetBody()).str());
|
2017-02-14 13:20:00 +00:00
|
|
|
|
|
|
|
} catch (S3Error & e) {
|
2020-08-28 13:28:35 +00:00
|
|
|
if ((e.err != Aws::S3::S3Errors::NO_SUCH_KEY) &&
|
|
|
|
(e.err != Aws::S3::S3Errors::ACCESS_DENIED)) throw;
|
2017-02-14 13:20:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
auto now2 = std::chrono::steady_clock::now();
|
|
|
|
|
|
|
|
res.durationMs = std::chrono::duration_cast<std::chrono::milliseconds>(now2 - now1).count();
|
|
|
|
|
|
|
|
return res;
|
|
|
|
}
|
|
|
|
|
2020-12-20 15:33:12 +00:00
|
|
|
S3BinaryCacheStore::S3BinaryCacheStore(const Params & params)
|
|
|
|
: BinaryCacheStoreConfig(params)
|
|
|
|
, BinaryCacheStore(params)
|
|
|
|
{ }
|
|
|
|
|
2020-09-10 08:55:51 +00:00
|
|
|
struct S3BinaryCacheStoreConfig : virtual BinaryCacheStoreConfig
|
2016-04-21 14:02:48 +00:00
|
|
|
{
|
2020-09-10 08:55:51 +00:00
|
|
|
using BinaryCacheStoreConfig::BinaryCacheStoreConfig;
|
2020-09-16 11:51:53 +00:00
|
|
|
const Setting<std::string> profile{(StoreConfig*) this, "", "profile", "The name of the AWS configuration profile to use."};
|
|
|
|
const Setting<std::string> region{(StoreConfig*) this, Aws::Region::US_EAST_1, "region", {"aws-region"}};
|
|
|
|
const Setting<std::string> scheme{(StoreConfig*) this, "", "scheme", "The scheme to use for S3 requests, https by default."};
|
|
|
|
const Setting<std::string> endpoint{(StoreConfig*) this, "", "endpoint", "An optional override of the endpoint to use when talking to S3."};
|
|
|
|
const Setting<std::string> narinfoCompression{(StoreConfig*) this, "", "narinfo-compression", "compression method for .narinfo files"};
|
|
|
|
const Setting<std::string> lsCompression{(StoreConfig*) this, "", "ls-compression", "compression method for .ls files"};
|
|
|
|
const Setting<std::string> logCompression{(StoreConfig*) this, "", "log-compression", "compression method for log/* files"};
|
2018-10-30 13:25:00 +00:00
|
|
|
const Setting<bool> multipartUpload{
|
2020-09-16 11:51:53 +00:00
|
|
|
(StoreConfig*) this, false, "multipart-upload", "whether to use multi-part uploads"};
|
2018-05-07 13:23:51 +00:00
|
|
|
const Setting<uint64_t> bufferSize{
|
2020-09-16 11:51:53 +00:00
|
|
|
(StoreConfig*) this, 5 * 1024 * 1024, "buffer-size", "size (in bytes) of each part in multi-part uploads"};
|
2020-09-14 12:04:02 +00:00
|
|
|
|
|
|
|
const std::string name() override { return "S3 Binary Cache Store"; }
|
2023-03-21 13:03:05 +00:00
|
|
|
|
|
|
|
std::string doc() override
|
|
|
|
{
|
|
|
|
return
|
|
|
|
#include "s3-binary-cache-store.md"
|
|
|
|
;
|
|
|
|
}
|
2020-09-10 08:55:51 +00:00
|
|
|
};
|
2017-04-13 13:55:38 +00:00
|
|
|
|
2020-12-20 15:33:12 +00:00
|
|
|
struct S3BinaryCacheStoreImpl : virtual S3BinaryCacheStoreConfig, public virtual S3BinaryCacheStore
|
2020-09-10 08:55:51 +00:00
|
|
|
{
|
2016-04-21 14:02:48 +00:00
|
|
|
std::string bucketName;
|
|
|
|
|
|
|
|
Stats stats;
|
|
|
|
|
2017-02-14 13:20:00 +00:00
|
|
|
S3Helper s3Helper;
|
|
|
|
|
2016-05-04 18:15:41 +00:00
|
|
|
S3BinaryCacheStoreImpl(
|
2021-09-17 08:45:19 +00:00
|
|
|
const std::string & uriScheme,
|
2020-09-08 12:50:23 +00:00
|
|
|
const std::string & bucketName,
|
|
|
|
const Params & params)
|
2020-09-11 09:06:18 +00:00
|
|
|
: StoreConfig(params)
|
2020-12-20 15:33:12 +00:00
|
|
|
, BinaryCacheStoreConfig(params)
|
|
|
|
, S3BinaryCacheStoreConfig(params)
|
|
|
|
, Store(params)
|
|
|
|
, BinaryCacheStore(params)
|
2020-09-10 08:55:51 +00:00
|
|
|
, S3BinaryCacheStore(params)
|
2016-04-21 14:02:48 +00:00
|
|
|
, bucketName(bucketName)
|
2018-12-07 22:38:24 +00:00
|
|
|
, s3Helper(profile, region, scheme, endpoint)
|
2016-04-21 14:02:48 +00:00
|
|
|
{
|
|
|
|
diskCache = getNarInfoDiskCache();
|
|
|
|
}
|
|
|
|
|
2016-05-31 11:31:04 +00:00
|
|
|
std::string getUri() override
|
2016-04-21 14:02:48 +00:00
|
|
|
{
|
|
|
|
return "s3://" + bucketName;
|
|
|
|
}
|
|
|
|
|
2016-05-31 11:31:04 +00:00
|
|
|
void init() override
|
2016-04-21 14:02:48 +00:00
|
|
|
{
|
2023-01-17 18:54:47 +00:00
|
|
|
if (auto cacheInfo = diskCache->upToDateCacheExists(getUri())) {
|
2021-09-22 12:15:35 +00:00
|
|
|
wantMassQuery.setDefault(cacheInfo->wantMassQuery);
|
|
|
|
priority.setDefault(cacheInfo->priority);
|
2019-12-17 16:17:53 +00:00
|
|
|
} else {
|
2016-04-21 14:02:48 +00:00
|
|
|
BinaryCacheStore::init();
|
2019-12-17 16:17:53 +00:00
|
|
|
diskCache->createCache(getUri(), storeDir, wantMassQuery, priority);
|
2016-04-21 14:02:48 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-10-06 14:34:14 +00:00
|
|
|
const Stats & getS3Stats() override
|
2016-04-21 14:02:48 +00:00
|
|
|
{
|
|
|
|
return stats;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* This is a specialisation of isValidPath() that optimistically
|
|
|
|
fetches the .narinfo file, rather than first checking for its
|
|
|
|
existence via a HEAD request. Since .narinfos are small, doing
|
|
|
|
a GET is unlikely to be slower than HEAD. */
|
2019-12-05 18:11:09 +00:00
|
|
|
bool isValidPathUncached(const StorePath & storePath) override
|
2016-04-21 14:02:48 +00:00
|
|
|
{
|
|
|
|
try {
|
|
|
|
queryPathInfo(storePath);
|
|
|
|
return true;
|
|
|
|
} catch (InvalidPath & e) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-05-31 11:31:04 +00:00
|
|
|
bool fileExists(const std::string & path) override
|
2016-04-21 14:02:48 +00:00
|
|
|
{
|
|
|
|
stats.head++;
|
|
|
|
|
2017-02-14 13:20:00 +00:00
|
|
|
auto res = s3Helper.client->HeadObject(
|
2016-04-21 14:02:48 +00:00
|
|
|
Aws::S3::Model::HeadObjectRequest()
|
|
|
|
.WithBucket(bucketName)
|
|
|
|
.WithKey(path));
|
|
|
|
|
|
|
|
if (!res.IsSuccess()) {
|
|
|
|
auto & error = res.GetError();
|
2017-06-19 16:15:23 +00:00
|
|
|
if (error.GetErrorType() == Aws::S3::S3Errors::RESOURCE_NOT_FOUND
|
|
|
|
|| error.GetErrorType() == Aws::S3::S3Errors::NO_SUCH_KEY
|
2017-11-01 17:33:31 +00:00
|
|
|
// If bucket listing is disabled, 404s turn into 403s
|
|
|
|
|| error.GetErrorType() == Aws::S3::S3Errors::ACCESS_DENIED)
|
2016-04-21 14:02:48 +00:00
|
|
|
return false;
|
2020-04-21 23:07:07 +00:00
|
|
|
throw Error("AWS error fetching '%s': %s", path, error.GetMessage());
|
2016-04-21 14:02:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2018-08-09 18:44:18 +00:00
|
|
|
std::shared_ptr<TransferManager> transferManager;
|
|
|
|
std::once_flag transferManagerCreated;
|
|
|
|
|
2020-07-13 18:07:19 +00:00
|
|
|
void uploadFile(const std::string & path,
|
|
|
|
std::shared_ptr<std::basic_iostream<char>> istream,
|
2017-03-14 14:26:01 +00:00
|
|
|
const std::string & mimeType,
|
2017-03-14 14:03:53 +00:00
|
|
|
const std::string & contentEncoding)
|
2016-04-21 14:02:48 +00:00
|
|
|
{
|
2020-08-04 14:00:59 +00:00
|
|
|
istream->seekg(0, istream->end);
|
|
|
|
auto size = istream->tellg();
|
|
|
|
istream->seekg(0, istream->beg);
|
|
|
|
|
2018-05-07 13:23:51 +00:00
|
|
|
auto maxThreads = std::thread::hardware_concurrency();
|
2017-03-14 14:26:01 +00:00
|
|
|
|
2018-05-07 14:07:00 +00:00
|
|
|
static std::shared_ptr<Aws::Utils::Threading::PooledThreadExecutor>
|
|
|
|
executor = std::make_shared<Aws::Utils::Threading::PooledThreadExecutor>(maxThreads);
|
2017-03-14 14:03:53 +00:00
|
|
|
|
2018-10-30 13:25:00 +00:00
|
|
|
std::call_once(transferManagerCreated, [&]()
|
|
|
|
{
|
|
|
|
if (multipartUpload) {
|
|
|
|
TransferManagerConfiguration transferConfig(executor.get());
|
|
|
|
|
|
|
|
transferConfig.s3Client = s3Helper.client;
|
|
|
|
transferConfig.bufferSize = bufferSize;
|
|
|
|
|
|
|
|
transferConfig.uploadProgressCallback =
|
|
|
|
[](const TransferManager *transferManager,
|
|
|
|
const std::shared_ptr<const TransferHandle>
|
|
|
|
&transferHandle)
|
|
|
|
{
|
|
|
|
//FIXME: find a way to properly abort the multipart upload.
|
|
|
|
//checkInterrupt();
|
|
|
|
debug("upload progress ('%s'): '%d' of '%d' bytes",
|
|
|
|
transferHandle->GetKey(),
|
|
|
|
transferHandle->GetBytesTransferred(),
|
|
|
|
transferHandle->GetBytesTotalSize());
|
|
|
|
};
|
|
|
|
|
|
|
|
transferManager = TransferManager::Create(transferConfig);
|
|
|
|
}
|
|
|
|
});
|
2018-08-09 18:44:18 +00:00
|
|
|
|
2018-10-30 13:25:00 +00:00
|
|
|
auto now1 = std::chrono::steady_clock::now();
|
2018-08-09 18:44:18 +00:00
|
|
|
|
2018-10-30 13:25:00 +00:00
|
|
|
if (transferManager) {
|
2018-08-09 18:44:18 +00:00
|
|
|
|
2018-11-01 14:17:35 +00:00
|
|
|
if (contentEncoding != "")
|
|
|
|
throw Error("setting a content encoding is not supported with S3 multi-part uploads");
|
|
|
|
|
2018-10-30 13:25:00 +00:00
|
|
|
std::shared_ptr<TransferHandle> transferHandle =
|
|
|
|
transferManager->UploadFile(
|
2020-07-13 18:07:19 +00:00
|
|
|
istream, bucketName, path, mimeType,
|
2018-10-30 13:25:00 +00:00
|
|
|
Aws::Map<Aws::String, Aws::String>(),
|
2018-11-01 14:17:35 +00:00
|
|
|
nullptr /*, contentEncoding */);
|
2018-05-07 13:23:51 +00:00
|
|
|
|
2018-10-30 13:25:00 +00:00
|
|
|
transferHandle->WaitUntilFinished();
|
2016-04-21 14:02:48 +00:00
|
|
|
|
2018-10-30 13:25:00 +00:00
|
|
|
if (transferHandle->GetStatus() == TransferStatus::FAILED)
|
|
|
|
throw Error("AWS error: failed to upload 's3://%s/%s': %s",
|
|
|
|
bucketName, path, transferHandle->GetLastError().GetMessage());
|
|
|
|
|
|
|
|
if (transferHandle->GetStatus() != TransferStatus::COMPLETED)
|
|
|
|
throw Error("AWS error: transfer status of 's3://%s/%s' in unexpected state",
|
|
|
|
bucketName, path);
|
2016-04-21 14:02:48 +00:00
|
|
|
|
2018-10-30 13:25:00 +00:00
|
|
|
} else {
|
2018-05-07 13:23:51 +00:00
|
|
|
|
2018-10-30 13:25:00 +00:00
|
|
|
auto request =
|
|
|
|
Aws::S3::Model::PutObjectRequest()
|
|
|
|
.WithBucket(bucketName)
|
|
|
|
.WithKey(path);
|
2016-04-21 14:02:48 +00:00
|
|
|
|
2018-10-30 13:25:00 +00:00
|
|
|
request.SetContentType(mimeType);
|
2018-08-08 19:39:11 +00:00
|
|
|
|
2018-10-30 13:25:00 +00:00
|
|
|
if (contentEncoding != "")
|
|
|
|
request.SetContentEncoding(contentEncoding);
|
|
|
|
|
2020-07-13 18:07:19 +00:00
|
|
|
request.SetBody(istream);
|
2018-10-30 13:25:00 +00:00
|
|
|
|
|
|
|
auto result = checkAws(fmt("AWS error uploading '%s'", path),
|
|
|
|
s3Helper.client->PutObject(request));
|
|
|
|
}
|
2018-08-08 19:39:11 +00:00
|
|
|
|
2016-04-21 14:02:48 +00:00
|
|
|
auto now2 = std::chrono::steady_clock::now();
|
|
|
|
|
2018-05-07 13:23:51 +00:00
|
|
|
auto duration =
|
|
|
|
std::chrono::duration_cast<std::chrono::milliseconds>(now2 - now1)
|
|
|
|
.count();
|
2016-04-21 14:02:48 +00:00
|
|
|
|
2020-08-04 13:56:10 +00:00
|
|
|
printInfo("uploaded 's3://%s/%s' (%d bytes) in %d ms",
|
|
|
|
bucketName, path, size, duration);
|
2016-04-21 14:02:48 +00:00
|
|
|
|
|
|
|
stats.putTimeMs += duration;
|
2020-08-04 14:00:59 +00:00
|
|
|
stats.putBytes += std::max(size, (decltype(size)) 0);
|
2018-08-08 19:39:11 +00:00
|
|
|
stats.put++;
|
2016-04-21 14:02:48 +00:00
|
|
|
}
|
|
|
|
|
2020-07-13 18:07:19 +00:00
|
|
|
void upsertFile(const std::string & path,
|
|
|
|
std::shared_ptr<std::basic_iostream<char>> istream,
|
2017-03-14 14:26:01 +00:00
|
|
|
const std::string & mimeType) override
|
2017-03-14 14:03:53 +00:00
|
|
|
{
|
2020-07-13 18:07:19 +00:00
|
|
|
auto compress = [&](std::string compression)
|
|
|
|
{
|
|
|
|
auto compressed = nix::compress(compression, StreamToSourceAdapter(istream).drain());
|
2022-01-17 21:20:05 +00:00
|
|
|
return std::make_shared<std::stringstream>(std::move(compressed));
|
2020-07-13 18:07:19 +00:00
|
|
|
};
|
|
|
|
|
2017-03-15 16:20:19 +00:00
|
|
|
if (narinfoCompression != "" && hasSuffix(path, ".narinfo"))
|
2020-07-13 18:07:19 +00:00
|
|
|
uploadFile(path, compress(narinfoCompression), mimeType, narinfoCompression);
|
2017-03-15 16:20:19 +00:00
|
|
|
else if (lsCompression != "" && hasSuffix(path, ".ls"))
|
2020-07-13 18:07:19 +00:00
|
|
|
uploadFile(path, compress(lsCompression), mimeType, lsCompression);
|
2017-03-14 14:55:02 +00:00
|
|
|
else if (logCompression != "" && hasPrefix(path, "log/"))
|
2020-07-13 18:07:19 +00:00
|
|
|
uploadFile(path, compress(logCompression), mimeType, logCompression);
|
2017-03-14 14:03:53 +00:00
|
|
|
else
|
2020-07-13 18:07:19 +00:00
|
|
|
uploadFile(path, istream, mimeType, "");
|
2017-03-14 14:03:53 +00:00
|
|
|
}
|
|
|
|
|
2018-03-27 21:12:31 +00:00
|
|
|
void getFile(const std::string & path, Sink & sink) override
|
2016-04-21 14:02:48 +00:00
|
|
|
{
|
2018-03-27 21:12:31 +00:00
|
|
|
stats.get++;
|
2016-04-21 14:02:48 +00:00
|
|
|
|
2018-03-27 21:12:31 +00:00
|
|
|
// FIXME: stream output to sink.
|
|
|
|
auto res = s3Helper.getObject(bucketName, path);
|
2016-04-21 14:02:48 +00:00
|
|
|
|
2018-03-27 21:12:31 +00:00
|
|
|
stats.getBytes += res.data ? res.data->size() : 0;
|
|
|
|
stats.getTimeMs += res.durationMs;
|
2016-04-21 14:02:48 +00:00
|
|
|
|
2018-03-27 21:12:31 +00:00
|
|
|
if (res.data) {
|
|
|
|
printTalkative("downloaded 's3://%s/%s' (%d bytes) in %d ms",
|
|
|
|
bucketName, path, res.data->size(), res.durationMs);
|
2016-04-21 14:02:48 +00:00
|
|
|
|
2020-12-02 13:00:43 +00:00
|
|
|
sink(*res.data);
|
2018-03-27 21:12:31 +00:00
|
|
|
} else
|
|
|
|
throw NoSuchBinaryCacheFile("file '%s' does not exist in binary cache '%s'", path, getUri());
|
2016-04-21 14:02:48 +00:00
|
|
|
}
|
|
|
|
|
2019-12-05 18:11:09 +00:00
|
|
|
StorePathSet queryAllValidPaths() override
|
2016-04-21 15:53:47 +00:00
|
|
|
{
|
2019-12-05 18:11:09 +00:00
|
|
|
StorePathSet paths;
|
2016-04-21 15:53:47 +00:00
|
|
|
std::string marker;
|
|
|
|
|
|
|
|
do {
|
2023-03-02 14:44:19 +00:00
|
|
|
debug("listing bucket 's3://%s' from key '%s'...", bucketName, marker);
|
2016-04-21 15:53:47 +00:00
|
|
|
|
2023-03-02 14:44:19 +00:00
|
|
|
auto res = checkAws(fmt("AWS error listing bucket '%s'", bucketName),
|
2017-02-14 13:20:00 +00:00
|
|
|
s3Helper.client->ListObjects(
|
2016-04-21 15:53:47 +00:00
|
|
|
Aws::S3::Model::ListObjectsRequest()
|
|
|
|
.WithBucket(bucketName)
|
|
|
|
.WithDelimiter("/")
|
|
|
|
.WithMarker(marker)));
|
|
|
|
|
|
|
|
auto & contents = res.GetContents();
|
|
|
|
|
2023-03-02 14:44:19 +00:00
|
|
|
debug("got %d keys, next marker '%s'",
|
|
|
|
contents.size(), res.GetNextMarker());
|
2016-04-21 15:53:47 +00:00
|
|
|
|
|
|
|
for (auto object : contents) {
|
|
|
|
auto & key = object.GetKey();
|
2016-04-29 15:34:31 +00:00
|
|
|
if (key.size() != 40 || !hasSuffix(key, ".narinfo")) continue;
|
2020-07-13 12:35:01 +00:00
|
|
|
paths.insert(parseStorePath(storeDir + "/" + key.substr(0, key.size() - 8) + "-" + MissingName));
|
2016-04-21 15:53:47 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
marker = res.GetNextMarker();
|
|
|
|
} while (!marker.empty());
|
|
|
|
|
|
|
|
return paths;
|
|
|
|
}
|
|
|
|
|
2020-09-11 09:11:05 +00:00
|
|
|
static std::set<std::string> uriSchemes() { return {"s3"}; }
|
2020-09-08 12:50:23 +00:00
|
|
|
|
2016-04-21 14:02:48 +00:00
|
|
|
};
|
|
|
|
|
2020-10-06 11:36:55 +00:00
|
|
|
static RegisterStoreImplementation<S3BinaryCacheStoreImpl, S3BinaryCacheStoreConfig> regS3BinaryCacheStore;
|
2016-04-21 14:02:48 +00:00
|
|
|
|
|
|
|
}
|
2016-05-04 15:16:48 +00:00
|
|
|
|
|
|
|
#endif
|