1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145
|
// Copyright 2023 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "chrome/browser/ash/bruschetta/bruschetta_download.h"
#include "base/files/scoped_temp_dir.h"
#include "base/memory/ptr_util.h"
#include "base/strings/string_number_conversions.h"
#include "base/task/task_traits.h"
#include "base/task/thread_pool.h"
#include "chrome/browser/ash/bruschetta/bruschetta_network_context.h"
#include "chrome/browser/extensions/cws_info_service.h"
#include "chrome/browser/profiles/profile.h"
#include "components/prefs/pref_service.h"
#include "content/public/browser/storage_partition.h"
#include "crypto/hash.h"
#include "net/base/net_errors.h"
#include "services/network/public/cpp/resource_request.h"
#include "services/network/public/cpp/simple_url_loader.h"
namespace bruschetta {
const net::NetworkTrafficAnnotationTag kBruschettaTrafficAnnotation =
net::DefineNetworkTrafficAnnotation("bruschetta_installer_download",
R"(
semantics {
sender: "Bruschetta VM Installer",
description: "Request sent to download firmware and VM image for "
"a Bruschetta VM, which allows the user to run the VM."
trigger: "User installing a Bruschetta VM"
internal {
contacts {
email: "clumptini+oncall@google.com"
}
}
user_data: {
type: ACCESS_TOKEN
}
data: "Request to download Bruschetta firmware and VM image. "
"Sends cookies associated with the source to authenticate the user."
destination: WEBSITE
last_reviewed: "2023-01-09"
}
policy {
cookies_allowed: YES
cookies_store: "user"
chrome_policy {
BruschettaVMConfiguration {
BruschettaVMConfiguration: "{}"
}
}
}
)");
namespace {
std::unique_ptr<base::ScopedTempDir> MakeTempDir() {
auto dir = std::make_unique<base::ScopedTempDir>();
CHECK(dir->CreateUniqueTempDir());
return dir;
}
// Calculates the sha256 hash of the file at `path` incrementally i.e. without
// loading the entire thing into memory at once. Blocking.
std::string Sha256File(const base::FilePath& path) {
base::File file(path, base::File::FLAG_OPEN | base::File::FLAG_READ);
if (!file.IsValid()) {
return "";
}
std::array<uint8_t, crypto::hash::kSha256Size> hash;
if (!crypto::hash::HashFile(crypto::hash::kSha256, &file, hash)) {
return "";
}
return base::HexEncode(hash);
}
} // namespace
std::string Sha256FileForTesting(const base::FilePath& path) {
return Sha256File(path);
}
SimpleURLLoaderDownload::SimpleURLLoaderDownload(PrefService& local_state)
: local_state_(local_state) {}
SimpleURLLoaderDownload::~SimpleURLLoaderDownload() {
auto seq = base::ThreadPool::CreateSequencedTaskRunner({base::MayBlock()});
seq->DeleteSoon(FROM_HERE, std::move(scoped_temp_dir_));
if (post_deletion_closure_for_testing_) {
seq->PostTask(FROM_HERE, std::move(post_deletion_closure_for_testing_));
}
}
void SimpleURLLoaderDownload::StartDownload(
Profile* profile,
GURL url,
base::OnceCallback<void(base::FilePath path, std::string sha256)>
callback) {
DCHECK(url_.is_empty()) << " each instance is single use";
url_ = std::move(url);
callback_ = std::move(callback);
// We're owned (through a few levels of owning class) by the installer view
// which won't outlive the profile, so it's safe to pass around the raw
// pointer.
base::ThreadPool::PostTaskAndReplyWithResult(
FROM_HERE, {base::MayBlock()}, base::BindOnce(&MakeTempDir),
base::BindOnce(&SimpleURLLoaderDownload::Download,
weak_ptr_factory_.GetWeakPtr(), profile));
}
void SimpleURLLoaderDownload::Download(
Profile* profile,
std::unique_ptr<base::ScopedTempDir> dir) {
scoped_temp_dir_ = std::move(dir);
auto path = scoped_temp_dir_->GetPath().Append("download");
auto req = std::make_unique<network::ResourceRequest>();
req->url = url_;
req->site_for_cookies = net::SiteForCookies::FromUrl(url_);
loader_ = network::SimpleURLLoader::Create(std::move(req),
kBruschettaTrafficAnnotation);
network_context_ =
std::make_unique<BruschettaNetworkContext>(profile, local_state_.get());
loader_->DownloadToFile(network_context_->GetURLLoaderFactory(),
base::BindOnce(&SimpleURLLoaderDownload::Finished,
weak_ptr_factory_.GetWeakPtr()),
std::move(path));
}
void SimpleURLLoaderDownload::Finished(base::FilePath path) {
if (path.empty()) {
LOG(ERROR) << "Download failed: " << net::ErrorToString(loader_->NetError())
<< " (" << loader_->NetError() << ")";
std::move(callback_).Run(path, "");
return;
}
base::ThreadPool::PostTaskAndReplyWithResult(
FROM_HERE, {base::MayBlock()}, base::BindOnce(&Sha256File, path),
base::BindOnce(std::move(callback_), path));
}
} // namespace bruschetta
|