Skip to content

Commit

Permalink
feat(oci): manifest/config updates to support containerd
Browse files Browse the repository at this point in the history
Signed-off-by: Vaughn Dice <vaughn.dice@fermyon.com>
  • Loading branch information
vdice committed Oct 16, 2023
1 parent fd4854b commit 942a178
Show file tree
Hide file tree
Showing 3 changed files with 60 additions and 22 deletions.
5 changes: 2 additions & 3 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion crates/oci/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ dkregistry = { git = "https://github.com/camallo/dkregistry-rs", rev = "37acecb4
docker_credential = "1.0"
dirs = "4.0"
futures-util = "0.3"
oci-distribution = { git = "https://github.com/fermyon/oci-distribution", rev = "05022618d78feef9b99f20b5da8fd6def6bb80d2" }
oci-distribution = { git = "https://github.com/fermyon/oci-distribution", rev = "639c907b7c0c4e74716356585410d4abe4aebf4d" }
reqwest = "0.11"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
Expand Down
75 changes: 57 additions & 18 deletions crates/oci/src/client.rs
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,13 @@ use anyhow::{bail, Context, Result};
use docker_credential::DockerCredential;
use futures_util::future;
use futures_util::stream::{self, StreamExt, TryStreamExt};
use oci_distribution::errors::OciDistributionError;
use oci_distribution::token_cache::RegistryTokenType;
use oci_distribution::RegistryOperation;
use oci_distribution::{
client::{Config, ImageLayer},
manifest::OciImageManifest,
errors::OciDistributionError,
manifest::{OciImageManifest, OCI_IMAGE_MEDIA_TYPE},
secrets::RegistryAuth,
Reference,
token_cache::RegistryTokenType,
Reference, RegistryOperation,
};
use reqwest::Url;
use spin_app::locked::{ContentPath, ContentRef, LockedApp};
Expand All @@ -25,15 +24,19 @@ use walkdir::WalkDir;

use crate::auth::AuthConfig;

// TODO: the media types for application, wasm module, data and archive layer are not final.
// TODO: the media types for application, data and archive layer are not final
/// Media type for a layer representing a locked Spin application configuration
pub const SPIN_APPLICATION_MEDIA_TYPE: &str = "application/vnd.fermyon.spin.application.v1+config";
// Note: we hope to use a canonical value defined upstream for this media type
const WASM_LAYER_MEDIA_TYPE: &str = "application/vnd.wasm.content.layer.v1+wasm";
/// Media type for a layer representing a generic data file used by a Spin application
pub const DATA_MEDIATYPE: &str = "application/vnd.wasm.content.layer.v1+data";
/// Media type for a layer representing a compressed archive of one or more files used by a Spin application
pub const ARCHIVE_MEDIATYPE: &str = "application/vnd.wasm.content.bundle.v1.tar+gzip";
// Legacy wasm layer media type used by pre-2.0 versions of Spin
const WASM_LAYER_MEDIA_TYPE_LEGACY: &str = "application/vnd.wasm.content.layer.v1+wasm";

// TODO: use canonical types defined upstream; see https://github.com/bytecodealliance/registry/pull/146
const WASM_LAYER_MEDIA_TYPE: &str = "application/vnd.bytecodealliance.wasm.component.layer.v0+wasm";
const COMPONENT_ARTIFACT_TYPE: &str = "application/vnd.bytecodealliance.component.v1+wasm";

const CONFIG_FILE: &str = "config.json";
const LATEST_TAG: &str = "latest";
Expand Down Expand Up @@ -162,12 +165,24 @@ impl Client {
locked.components = components;
locked.metadata.remove("origin");

// Push layer for locked spin application config
let locked_config_layer = ImageLayer::new(
serde_json::to_vec(&locked).context("could not serialize locked config")?,
SPIN_APPLICATION_MEDIA_TYPE.to_string(),
None,
);
layers.push(locked_config_layer);

let oci_config = Config {
// TODO: now that the locked config bytes are pushed as a layer, what should data here be?
// Keeping as locked config bytes would make it feasible for older Spin clients to pull/run
// apps published by newer Spin clients
data: serde_json::to_vec(&locked)?,
media_type: SPIN_APPLICATION_MEDIA_TYPE.to_string(),
media_type: OCI_IMAGE_MEDIA_TYPE.to_string(),
annotations: None,
};
let manifest = OciImageManifest::build(&layers, &oci_config, None);
let mut manifest = OciImageManifest::build(&layers, &oci_config, None);
manifest.artifact_type = Some(COMPONENT_ARTIFACT_TYPE.to_string());
let response = self
.oci
.push(&reference, &layers, oci_config, &auth, Some(manifest))
Expand Down Expand Up @@ -273,16 +288,17 @@ impl Client {
let m = self.manifest_path(&reference.to_string()).await?;
fs::write(&m, &manifest_json).await?;

// Older published Spin apps feature the locked app config *as* the OCI manifest config layer,
// while newer versions publish the locked app config as a generic layer alongside others.
// Assume that these bytes may represent the locked app config and write it as such.
// TODO: update this assumption if we change the data we write to the OCI manifest config layer.
let mut cfg_bytes = Vec::new();
self.oci
.pull_blob(&reference, &manifest.config.digest, &mut cfg_bytes)
.await?;
let cfg = std::str::from_utf8(&cfg_bytes)?;
tracing::debug!("Pulled config: {}", cfg);

// Write the config object in `<cache_root>/registry/oci/manifests/repository:<tag_or_latest>/config.json`
let c = self.lockfile_path(&reference.to_string()).await?;
fs::write(&c, &cfg).await?;
self.write_locked_app_config(&reference.to_string(), &cfg_bytes)
.await
.context("unable to write locked app config to cache")?;

// If a layer is a Wasm module, write it in the Wasm directory.
// Otherwise, write it in the data directory (after unpacking if archive layer)
Expand All @@ -306,15 +322,25 @@ impl Client {
{
Err(e) => return Err(e),
_ => match layer.media_type.as_str() {
WASM_LAYER_MEDIA_TYPE => {
// If the locked app config is present as a separate layer, this should take precedence
SPIN_APPLICATION_MEDIA_TYPE => {
if let Err(e) = this.write_locked_app_config(&reference.to_string(), &bytes)
.await
{
return Err(OciDistributionError::GenericError(
Some(format!("unable to write locked app config to cache: {}", e))
));
}
}
WASM_LAYER_MEDIA_TYPE | WASM_LAYER_MEDIA_TYPE_LEGACY => {
let _ = this.cache.write_wasm(&bytes, &layer.digest).await;
}
ARCHIVE_MEDIATYPE => {
if let Err(e) =
this.unpack_archive_layer(&bytes, &layer.digest).await
{
return Err(OciDistributionError::GenericError(Some(
e.to_string(),
format!("unable to unpack archive layer with digest {}: {}", &layer.digest, e),
)));
}
}
Expand Down Expand Up @@ -380,6 +406,19 @@ impl Client {
Ok(p.join(CONFIG_FILE))
}

/// Write the config object in `<cache_root>/registry/oci/manifests/repository:<tag_or_latest>/config.json`
async fn write_locked_app_config(
&self,
reference: impl AsRef<str>,
bytes: impl AsRef<[u8]>,
) -> Result<()> {
let cfg = std::str::from_utf8(bytes.as_ref())?;
tracing::debug!("Pulled config: {}", cfg);

let c = self.lockfile_path(reference).await?;
fs::write(&c, &cfg).await.map_err(anyhow::Error::from)
}

/// Create a new wasm layer based on a file.
async fn wasm_layer(file: &Path) -> Result<ImageLayer> {
tracing::log::trace!("Reading wasm module from {:?}", file);
Expand Down

0 comments on commit 942a178

Please sign in to comment.