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 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307
// DOWNLOAD.rs
// by Lut99
//
// Created:
// 20 Feb 2023, 14:59:16
// Last edited:
// 26 Jun 2024, 16:41:31
// Auto updated?
// Yes
//
// Description:
//! Implements functions for dealing with the `download` subcommand.
//
use std::borrow::Cow;
use std::ffi::OsString;
use std::fs::{self, DirEntry, File, ReadDir};
use std::io::Write as _;
use std::path::{Component, Path, PathBuf};
use brane_shr::fs::{DownloadSecurity, download_file_async, move_path_async, unarchive_async};
use brane_tsk::docker::{Docker, DockerOptions, ImageSource, connect_local, ensure_image, save_image};
use console::{Style, style};
use enum_debug::EnumDebug as _;
use log::{debug, info, warn};
use specifications::arch::Arch;
use specifications::container::Image;
use specifications::version::Version;
use tempfile::TempDir;
pub use crate::errors::DownloadError as Error;
use crate::spec::DownloadServicesSubcommand;
/***** CONSTANTS *****/
/// Defines the auxillary images that we want to download from Docker.
const AUXILLARY_DOCKER_IMAGES: [(&str, &str); 3] =
[("aux-scylla", "scylladb/scylla:4.6.3"), ("aux-kafka", "ubuntu/kafka:3.1-22.04_beta"), ("aux-zookeeper", "ubuntu/zookeeper:3.1-22.04_beta")];
/***** HELPER FUNCTIONS *****/
/// Downloads either the central or the worker images (which depends solely on the tar name).
///
/// # Arguments
/// - `address`: The address of the file to download.
/// - `path`: The path to the directory where the image files will _eventually_ end up in.
/// - `tar_name`: The base name of the tarball file, which is also the name if the directory inside it etc.
/// - `force`: If given, overwrites images if they are already there.
///
/// # Errors
/// This function may error if we failed to reach GitHub, we failed to establish HTTPS or we failed to somehow write the file / create missing directories (if enabled).
async fn download_brane_services(address: impl AsRef<str>, path: impl AsRef<Path>, tar_name: impl AsRef<str>, force: bool) -> Result<(), Error> {
let address: &str = address.as_ref();
let path: &Path = path.as_ref();
let tar_name: &str = tar_name.as_ref();
// Create a temporary directory to download the tar file to.
debug!("Creating temporary directory...");
let temp: TempDir = match TempDir::new() {
Ok(temp) => temp,
Err(err) => {
return Err(Error::TempDirError { err });
},
};
let tar_path: PathBuf = temp.path().join(format!("{tar_name}.tar.gz"));
// Download it
if let Err(err) = download_file_async(address, &tar_path, DownloadSecurity::https(), Some(Style::new().green().bold())).await {
// Don't call the destructor of `TempDir`, since it's much easier to debug if it lives after creation
// SAFETY: This is OK because for our committed version, the destructor of `TempDir` only destroys the directory itself using a normal `std::fs::remove_dir_all()` call, and so nothing will explode if that does not happen.
// (see https://docs.rs/tempfile/3.3.0/src/tempfile/dir.rs.html#403-407)
std::mem::forget(temp);
return Err(Error::DownloadError { address: address.into(), path: tar_path, err: Box::new(err) });
}
// Extract the folder to the same temporary directory
println!("Unpacking {}...", style(format!("{tar_name}.tar.gz")).bold().green());
let dir_path: PathBuf = temp.path().join("services");
if let Err(err) = unarchive_async(&tar_path, &dir_path).await {
// Don't call the destructor of `TempDir`, since it's much easier to debug if it lives after creation
// SAFETY: This is OK because for our committed version, the destructor of `TempDir` only destroys the directory itself using a normal `std::fs::remove_dir_all()` call, and so nothing will explode if that does not happen.
// (see https://docs.rs/tempfile/3.3.0/src/tempfile/dir.rs.html#403-407)
std::mem::forget(temp);
return Err(Error::UnarchiveError { tar: tar_path, target: dir_path, err: Box::new(err) });
}
// Be sure to do the folder inside the archive
let dir_path: PathBuf = dir_path.join(tar_name);
// Now copy the images in that folder to the target directory
let entries: ReadDir = match fs::read_dir(&dir_path) {
Ok(entries) => entries,
Err(err) => {
// Don't call the destructor of `TempDir`, since it's much easier to debug if it lives after creation
// SAFETY: This is OK because for our committed version, the destructor of `TempDir` only destroys the directory itself using a normal `std::fs::remove_dir_all()` call, and so nothing will explode if that does not happen.
// (see https://docs.rs/tempfile/3.3.0/src/tempfile/dir.rs.html#403-407)
std::mem::forget(temp);
return Err(Error::ReadDirError { path: dir_path, err });
},
};
let mut i: usize = 0;
for entry in entries {
// Unwrap the entry
let entry: DirEntry = match entry {
Ok(entry) => entry,
Err(err) => {
// Don't call the destructor of `TempDir`, since it's much easier to debug if it lives after creation
// SAFETY: This is OK because for our committed version, the destructor of `TempDir` only destroys the directory itself using a normal `std::fs::remove_dir_all()` call, and so nothing will explode if that does not happen.
// (see https://docs.rs/tempfile/3.3.0/src/tempfile/dir.rs.html#403-407)
std::mem::forget(temp);
return Err(Error::ReadEntryError { path: dir_path, entry: i, err });
},
};
// Check if we like it based on its path
let entry_path: PathBuf = entry.path();
if !entry_path.exists() {
warn!("Not copying '{}' to output directory (does not exist)", entry_path.display());
continue;
}
if !entry_path.is_file() {
warn!("Not copying '{}' to output directory (not a file)", entry_path.display());
continue;
}
// Now make sure it's a tar file
let entry_name: OsString = entry.file_name();
let entry_name: Cow<str> = entry_name.to_string_lossy();
if !entry_name.ends_with(".tar") {
warn!("Not copying '{}' to output directory (not ending in '.tar')", entry_path.display());
continue;
}
// If we made it this far, we can copy
let out_path: PathBuf = path.join(entry_name.as_ref());
if force || !out_path.exists() {
debug!("Moving '{}' to '{}'...", entry_path.display(), out_path.display());
if let Err(err) = move_path_async(&entry_path, &out_path).await {
// Don't call the destructor of `TempDir`, since it's much easier to debug if it lives after creation
// SAFETY: This is OK because for our committed version, the destructor of `TempDir` only destroys the directory itself using a normal `std::fs::remove_dir_all()` call, and so nothing will explode if that does not happen.
// (see https://docs.rs/tempfile/3.3.0/src/tempfile/dir.rs.html#403-407)
std::mem::forget(temp);
return Err(Error::MoveError { source: entry_path, target: out_path, err: Box::new(err) });
}
}
// Don't forget to increment the index
i += 1;
}
// Done! If we haven't forgotten the temporary directory by now, moving out of scope will delete it for us
Ok(())
}
/***** LIBRARY *****/
/// Downloads the service images to the local machine from the GitHub repo.
///
/// # Arguments
/// - `fix_dirs`: Whether to fix missing directories or error instead.
/// - `path`: The path of the folder to download the service images to.
/// - `version`: The version of the images to download.
/// - `arch`: The architecture for which to download the images.
/// - `force`: If given, overwrites images if they are already there.
/// - `kind`: The kind of images to download (e.g., central, worker or auxillary).
///
/// # Errors
/// This function may error if we failed to reach GitHub, we failed to establish HTTPS or we failed to somehow write the file / create missing directories (if enabled).
pub async fn services(
fix_dirs: bool,
path: impl AsRef<Path>,
arch: Arch,
version: Version,
force: bool,
kind: DownloadServicesSubcommand,
) -> Result<(), Error> {
let path: &Path = path.as_ref();
info!("Downloading {} service images...", kind.variant());
// Fix the missing directories, if any.
if !path.exists() {
// We are paralyzed if the user told us not to do anything
if !fix_dirs {
return Err(Error::DirNotFound { what: "output", path: path.into() });
}
// Else, generate the directory tree one-by-one. We place a CACHEDIR.TAG in the highest one we create.
let mut first: bool = true;
let mut stack: PathBuf = PathBuf::new();
for comp in path.components() {
match comp {
Component::RootDir => {
stack = PathBuf::from("/");
continue;
},
Component::Prefix(comp) => {
stack = PathBuf::from(comp.as_os_str());
continue;
},
Component::CurDir => continue,
Component::ParentDir => {
stack.pop();
continue;
},
Component::Normal(comp) => {
stack.push(comp);
if !stack.exists() {
// Create the directory first
if let Err(err) = fs::create_dir(&stack) {
return Err(Error::DirCreateError { what: "output", path: stack, err });
}
// Then create the CACHEDIR.TAG if we haven't already
if first {
let tag_path: PathBuf = stack.join("CACHEDIR.TAG");
let mut handle: File = match File::create(&tag_path) {
Ok(handle) => handle,
Err(err) => return Err(Error::CachedirTagCreate { path: tag_path, err }),
};
if let Err(err) = handle.write(
b"Signature: 8a477f597d28d172789f06886806bc55\n# This file is a cache directory tag created by BRANE's `branectl`.\n# For information about cache directory tags, see:\n# https://www.brynosaurus.com/cachedir/\n",
) {
return Err(Error::CachedirTagWrite { path: tag_path, err })
}
first = false;
}
}
continue;
},
}
}
}
if !path.is_dir() {
return Err(Error::DirNotADir { what: "output", path: path.into() });
}
// Now match on what we are downloading
match &kind {
DownloadServicesSubcommand::Central => {
// Resolve the address to use
let address: String = if version.is_latest() {
format!("https://github.com/epi-project/brane/releases/latest/download/instance-{}.tar.gz", arch.brane())
} else {
format!("https://github.com/epi-project/brane/releases/download/v{}/instance-{}.tar.gz", version, arch.brane())
};
debug!("Will download from: {}", address);
// Hand it over the shared code
download_brane_services(address, path, format!("instance-{}", arch.brane()), force).await?;
},
DownloadServicesSubcommand::Worker => {
// Resolve the address to use
let address: String = if version.is_latest() {
format!("https://github.com/epi-project/brane/releases/latest/download/worker-instance-{}.tar.gz", arch.brane())
} else {
format!("https://github.com/epi-project/brane/releases/download/v{}/worker-instance-{}.tar.gz", version, arch.brane())
};
debug!("Will download from: {}", address);
// Hand it over the shared code
download_brane_services(address, path, format!("worker-instance-{}", arch.brane()), force).await?;
},
DownloadServicesSubcommand::Auxillary { socket, client_version } => {
// Attempt to connect to the local Docker daemon.
let docker: Docker = match connect_local(DockerOptions { socket: socket.clone(), version: *client_version }) {
Ok(docker) => docker,
Err(err) => {
return Err(Error::DockerConnectError { err });
},
};
// Download the pre-determined set of auxillary images
for (name, image) in AUXILLARY_DOCKER_IMAGES {
// We can skip it if it already exists
let image_path: PathBuf = path.join(format!("{name}.tar"));
if !force && image_path.exists() {
debug!("Image '{}' already exists (skipping)", image_path.display());
continue;
}
// Make sure the image is pulled
println!("Downloading auxillary image {}...", style(image).bold().green());
if let Err(err) = ensure_image(&docker, Image::new(name, None::<&str>, None::<&str>), ImageSource::Registry(image.into())).await {
return Err(Error::PullError { name: name.into(), image: image.into(), err });
}
// Save the image to the correct path
println!("Exporting auxillary image {}...", style(name).bold().green());
if let Err(err) = save_image(&docker, Image::from(image), &image_path).await {
return Err(Error::SaveError { name: name.into(), image: image.into(), path: image_path, err });
}
}
},
}
// Done!
println!("Successfully downloaded {} services to {}", kind.variant().to_string().to_lowercase(), style(path.display()).bold().green());
Ok(())
}