Skip to main content

SkillTrustStore

Struct SkillTrustStore 

Source
pub struct SkillTrustStore {
    pub schema: u32,
    pub entries: BTreeMap<String, TrustEntry>,
    pub revoked: Vec<String>,
}

Fields§

§schema: u32

On-disk schema version. Absent in stores written before the field existed, which are exactly the v1 stores — hence default = 1.

§entries: BTreeMap<String, TrustEntry>§revoked: Vec<String>

Kill-switch — content hashes that may NEVER load, regardless of the per-entry trust level.

Implementations§

Source§

impl SkillTrustStore

Source

pub fn path(mur_home: &Path) -> PathBuf

Source

pub fn load(mur_home: &Path) -> Result<Self, TrustStoreError>

Source

pub fn save(&self, mur_home: &Path) -> Result<(), TrustStoreError>

Source

pub fn insert(&mut self, hash: String, entry: TrustEntry)

Source

pub fn lookup(&self, hash: &str) -> Option<&TrustEntry>

Source

pub fn migrate_to_trust_hash<F>(&mut self, load_manifest: F) -> Option<usize>
where F: Fn(&str) -> Option<SkillManifest>,

Re-key v1 hash-keyed entries into the trust hash domain (schema 1 → 2).

v1 keyed by content_sha256; the loader now looks up content_hash_for_trust. Without this every already-installed skill misses its entry and silently drops to Sandboxed — fail-closed, so no privilege is gained, but every recorded trust level would be lost.

Re-keying needs the manifest, which the store does not hold, so each entry is recomputed from the skill still on disk. What that implies:

  • Name-keyed entries are left alone. registry-add keys by skill name on purpose (the drift baseline). Only 64-hex keys are candidates.
  • An entry whose skill is no longer installed is kept as-is. It cannot be recomputed, and dropping it would silently discard a Trusted decision the user made. A stale key is inert; a deleted one is not recoverable.
  • Already-correct keys are cheap no-ops — the recomputed hash equals the existing key and the entry is reinserted unchanged.

Returns None if the store was already current, or Some(n) with the number of entries re-keyed. Some(0) still means the schema was bumped and the store must be saved — otherwise a store with nothing to move never records that it migrated and repeats the work on every start.

Source

pub fn is_revoked(&self, hash: &str) -> bool

Source

pub fn revoke(&mut self, hash: &str)

Trait Implementations§

Source§

impl Debug for SkillTrustStore

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Default for SkillTrustStore

Source§

fn default() -> Self

A store created in memory is already current — only a store read from disk can be older, and serde supplies 1 for those.

Source§

impl<'de> Deserialize<'de> for SkillTrustStore

Source§

fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>
where __D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
Source§

impl Serialize for SkillTrustStore

Source§

fn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error>
where __S: Serializer,

Serialize this value into the given Serde serializer. Read more

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
where ST: ?Sized, DT: ?Sized,

Source§

impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
where ST: ?Sized, DT: ?Sized,

Source§

impl<T> DeserializeOwned for T
where T: for<'de> Deserialize<'de>,

Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T> Instrument for T

Source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
Source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> Read<Exclusive, BecauseExclusive> for T
where T: ?Sized,

Source§

impl<T> Same for T

Source§

type Output = T

Should always be Self
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = !

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, !>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
Source§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

Source§

fn vzip(self) -> V

Source§

impl<T> WithSubscriber for T

Source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
Source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more