2016-03-03 17:03:34 +00:00
|
|
|
#include "binary-cache-store.hh"
|
|
|
|
#include "download.hh"
|
2016-03-04 16:23:42 +00:00
|
|
|
#include "globals.hh"
|
2016-04-20 12:12:38 +00:00
|
|
|
#include "nar-info-disk-cache.hh"
|
2016-03-03 17:03:34 +00:00
|
|
|
|
|
|
|
namespace nix {
|
|
|
|
|
2016-05-30 11:33:05 +00:00
|
|
|
MakeError(UploadToHTTP, Error);
|
|
|
|
|
2016-03-03 17:03:34 +00:00
|
|
|
class HttpBinaryCacheStore : public BinaryCacheStore
|
|
|
|
{
|
|
|
|
private:
|
|
|
|
|
|
|
|
Path cacheUri;
|
|
|
|
|
2018-09-07 15:08:43 +00:00
|
|
|
struct State
|
|
|
|
{
|
|
|
|
bool enabled = true;
|
|
|
|
std::chrono::steady_clock::time_point disabledUntil;
|
|
|
|
};
|
|
|
|
|
|
|
|
Sync<State> _state;
|
|
|
|
|
2016-03-03 17:03:34 +00:00
|
|
|
public:
|
|
|
|
|
2016-05-04 18:15:41 +00:00
|
|
|
HttpBinaryCacheStore(
|
2016-06-01 12:49:12 +00:00
|
|
|
const Params & params, const Path & _cacheUri)
|
2016-05-04 18:15:41 +00:00
|
|
|
: BinaryCacheStore(params)
|
2016-03-03 17:03:34 +00:00
|
|
|
, cacheUri(_cacheUri)
|
|
|
|
{
|
|
|
|
if (cacheUri.back() == '/')
|
|
|
|
cacheUri.pop_back();
|
2016-04-20 12:12:38 +00:00
|
|
|
|
|
|
|
diskCache = getNarInfoDiskCache();
|
|
|
|
}
|
|
|
|
|
|
|
|
std::string getUri() override
|
|
|
|
{
|
|
|
|
return cacheUri;
|
2016-03-03 17:03:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void init() override
|
|
|
|
{
|
|
|
|
// FIXME: do this lazily?
|
2016-06-01 13:15:21 +00:00
|
|
|
if (!diskCache->cacheExists(cacheUri, wantMassQuery_, priority)) {
|
2016-05-30 11:33:05 +00:00
|
|
|
try {
|
|
|
|
BinaryCacheStore::init();
|
|
|
|
} catch (UploadToHTTP &) {
|
2018-01-31 14:12:27 +00:00
|
|
|
throw Error("'%s' does not appear to be a binary cache", cacheUri);
|
2016-05-30 11:33:05 +00:00
|
|
|
}
|
2016-06-01 12:49:12 +00:00
|
|
|
diskCache->createCache(cacheUri, storeDir, wantMassQuery_, priority);
|
2016-04-20 12:12:38 +00:00
|
|
|
}
|
2016-03-03 17:03:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
protected:
|
|
|
|
|
2018-09-07 15:08:43 +00:00
|
|
|
void maybeDisable()
|
|
|
|
{
|
|
|
|
auto state(_state.lock());
|
|
|
|
if (state->enabled && settings.tryFallback) {
|
|
|
|
int t = 60;
|
|
|
|
printError("disabling binary cache '%s' for %s seconds", getUri(), t);
|
|
|
|
state->enabled = false;
|
|
|
|
state->disabledUntil = std::chrono::steady_clock::now() + std::chrono::seconds(t);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void checkEnabled()
|
|
|
|
{
|
|
|
|
auto state(_state.lock());
|
|
|
|
if (state->enabled) return;
|
|
|
|
if (std::chrono::steady_clock::now() > state->disabledUntil) {
|
|
|
|
state->enabled = true;
|
|
|
|
debug("re-enabling binary cache '%s'", getUri());
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
throw SubstituterDisabled("substituter '%s' is disabled", getUri());
|
|
|
|
}
|
|
|
|
|
2016-03-03 17:03:34 +00:00
|
|
|
bool fileExists(const std::string & path) override
|
|
|
|
{
|
2018-09-07 15:08:43 +00:00
|
|
|
checkEnabled();
|
|
|
|
|
2016-03-03 17:03:34 +00:00
|
|
|
try {
|
2016-09-14 14:00:40 +00:00
|
|
|
DownloadRequest request(cacheUri + "/" + path);
|
|
|
|
request.head = true;
|
|
|
|
getDownloader()->download(request);
|
2016-03-03 17:03:34 +00:00
|
|
|
return true;
|
|
|
|
} catch (DownloadError & e) {
|
2016-03-30 09:17:51 +00:00
|
|
|
/* S3 buckets return 403 if a file doesn't exist and the
|
|
|
|
bucket is unlistable, so treat 403 as 404. */
|
|
|
|
if (e.error == Downloader::NotFound || e.error == Downloader::Forbidden)
|
2016-03-03 17:03:34 +00:00
|
|
|
return false;
|
2018-09-07 15:08:43 +00:00
|
|
|
maybeDisable();
|
2016-03-03 17:03:34 +00:00
|
|
|
throw;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-03-14 14:26:01 +00:00
|
|
|
void upsertFile(const std::string & path,
|
|
|
|
const std::string & data,
|
|
|
|
const std::string & mimeType) override
|
2016-03-03 17:03:34 +00:00
|
|
|
{
|
2018-01-31 14:12:27 +00:00
|
|
|
auto req = DownloadRequest(cacheUri + "/" + path);
|
|
|
|
req.data = std::make_shared<string>(data); // FIXME: inefficient
|
|
|
|
req.mimeType = mimeType;
|
2018-01-26 19:12:30 +00:00
|
|
|
try {
|
|
|
|
getDownloader()->download(req);
|
|
|
|
} catch (DownloadError & e) {
|
2018-06-01 12:14:22 +00:00
|
|
|
throw UploadToHTTP("while uploading to HTTP binary cache at '%s': %s", cacheUri, e.msg());
|
2018-01-26 19:12:30 +00:00
|
|
|
}
|
2016-03-03 17:03:34 +00:00
|
|
|
}
|
|
|
|
|
2018-03-27 22:01:47 +00:00
|
|
|
DownloadRequest makeRequest(const std::string & path)
|
2016-03-03 17:03:34 +00:00
|
|
|
{
|
2016-09-14 14:00:40 +00:00
|
|
|
DownloadRequest request(cacheUri + "/" + path);
|
2018-03-27 22:01:47 +00:00
|
|
|
return request;
|
|
|
|
}
|
|
|
|
|
|
|
|
void getFile(const std::string & path, Sink & sink) override
|
|
|
|
{
|
2018-09-07 15:08:43 +00:00
|
|
|
checkEnabled();
|
2018-03-27 22:01:47 +00:00
|
|
|
auto request(makeRequest(path));
|
|
|
|
try {
|
|
|
|
getDownloader()->download(std::move(request), sink);
|
|
|
|
} catch (DownloadError & e) {
|
|
|
|
if (e.error == Downloader::NotFound || e.error == Downloader::Forbidden)
|
|
|
|
throw NoSuchBinaryCacheFile("file '%s' does not exist in binary cache '%s'", path, getUri());
|
2018-09-07 15:08:43 +00:00
|
|
|
maybeDisable();
|
2018-03-27 22:01:47 +00:00
|
|
|
throw;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void getFile(const std::string & path,
|
2019-09-03 11:00:55 +00:00
|
|
|
Callback<std::shared_ptr<std::string>> callback) noexcept override
|
2018-03-27 22:01:47 +00:00
|
|
|
{
|
2018-09-07 15:08:43 +00:00
|
|
|
checkEnabled();
|
|
|
|
|
2019-07-10 17:46:15 +00:00
|
|
|
auto request(makeRequest(path));
|
|
|
|
|
2019-09-03 10:51:35 +00:00
|
|
|
auto callbackPtr = std::make_shared<decltype(callback)>(std::move(callback));
|
|
|
|
|
2019-07-10 17:46:15 +00:00
|
|
|
getDownloader()->enqueueDownload(request,
|
2019-09-03 10:51:35 +00:00
|
|
|
{[callbackPtr, this](std::future<DownloadResult> result) {
|
2019-07-10 17:46:15 +00:00
|
|
|
try {
|
2019-09-03 10:51:35 +00:00
|
|
|
(*callbackPtr)(result.get().data);
|
2019-07-10 17:46:15 +00:00
|
|
|
} catch (DownloadError & e) {
|
|
|
|
if (e.error == Downloader::NotFound || e.error == Downloader::Forbidden)
|
2019-09-03 10:51:35 +00:00
|
|
|
return (*callbackPtr)(std::shared_ptr<std::string>());
|
2019-07-10 17:46:15 +00:00
|
|
|
maybeDisable();
|
2019-09-03 10:51:35 +00:00
|
|
|
callbackPtr->rethrow();
|
2019-07-10 17:46:15 +00:00
|
|
|
} catch (...) {
|
2019-09-03 10:51:35 +00:00
|
|
|
callbackPtr->rethrow();
|
2019-07-10 17:46:15 +00:00
|
|
|
}
|
|
|
|
}});
|
2016-03-03 17:03:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
};
|
|
|
|
|
2016-04-29 14:26:16 +00:00
|
|
|
static RegisterStoreImplementation regStore([](
|
2016-06-01 12:49:12 +00:00
|
|
|
const std::string & uri, const Store::Params & params)
|
2016-04-29 14:26:16 +00:00
|
|
|
-> std::shared_ptr<Store>
|
|
|
|
{
|
2016-03-03 17:03:34 +00:00
|
|
|
if (std::string(uri, 0, 7) != "http://" &&
|
2016-06-01 13:15:21 +00:00
|
|
|
std::string(uri, 0, 8) != "https://" &&
|
|
|
|
(getEnv("_NIX_FORCE_HTTP_BINARY_CACHE_STORE") != "1" || std::string(uri, 0, 7) != "file://")
|
|
|
|
) return 0;
|
2016-05-04 18:15:41 +00:00
|
|
|
auto store = std::make_shared<HttpBinaryCacheStore>(params, uri);
|
2016-03-03 17:03:34 +00:00
|
|
|
store->init();
|
|
|
|
return store;
|
|
|
|
});
|
|
|
|
|
|
|
|
}
|
|
|
|
|