Add OnlineSource and MapfileSource

OnlineSource: the remote key-service client (moved out of autorip), posting the
disc's Unit_Key_RO.inf + MKB + Volume ID + encrypted content samples to the
service and returning the resolved unit key as a terminal Key::Unit candidate.
Kept out of libfreemkv so the library stays network-free. Source-internal
failures (unreachable / status / parse) are logged and surface as "no
candidate" so the next source is tried.

MapfileSource: reads a rip mapfile's persisted unit keys (the resume / deferred-
mux fast path) and offers them as a Key::Unit candidate. Keyed by mapfile path.

DiscInputs gained an app-populated `samples` field for sources that validate
against ciphertext server-side (OnlineSource); local sources ignore it.
This commit is contained in:
MattJackson
2026-06-04 14:42:02 -07:00
parent d2e0ecc2d4
commit 681e7a0295
5 changed files with 232 additions and 2 deletions
+6 -2
View File
@@ -5,8 +5,8 @@
//! implementations that do the lookup:
//!
//! - [`KeydbSource`] — a local `keydb.cfg` (source #1).
//! - `OnlineSource` — a remote key service (source #2). *(added with the app wiring)*
//! - `MapfileSource` — the persisted unit key from a rip mapfile (source #3).
//! - [`OnlineSource`] — a remote key service (source #2).
//! - [`MapfileSource`] — the persisted unit key from a rip mapfile (source #3).
//!
//! Applications (autorip, the `freemkv` CLI) choose and order the sources from
//! their own config — the local-vs-online policy is just which impls they plug
@@ -17,8 +17,12 @@
//! order and keeps the first that decrypts a sample ([`resolve_first`]).
mod keydb;
mod mapfile;
mod online;
pub use keydb::KeydbSource;
pub use mapfile::MapfileSource;
pub use online::OnlineSource;
// Re-exported for downstream convenience so apps need only depend on this crate
// for the source-side types.