Skip to main content

LockManager

Struct LockManager 

Source
pub struct LockManager {
    held: Mutex<HashMap<String, Vec<HeldLock>>>,
    released: Notify,
}
Expand description

Server-wide byte-range lock manager ([MS-SMB2] §2.2.26 / [MS-FSA] §2.1.4.10). Locks are keyed by the file’s on-disk path so opens from different connections contend correctly.

Fields§

§held: Mutex<HashMap<String, Vec<HeldLock>>>§released: Notify

Implementations§

Source§

impl LockManager

Source

pub fn new() -> Self

Create an empty lock manager.

Source

fn conflicts(existing: &HeldLock, off: u64, len: u64, excl: bool) -> bool

A new lock on [off, off+len) conflicts with existing when the ranges overlap and either lock is exclusive. An exclusive lock conflicts even with the same open’s overlapping lock ([MS-FSA] §2.1.5.9); two shared locks never conflict.

Source

pub fn try_acquire( &self, path: &str, ranges: &[(u64, u64, bool)], owner: LockOwner, ) -> bool

Atomically acquire every range, or acquire none. ranges are (offset, length, exclusive). Returns true on success.

Source

pub fn write_conflict( &self, path: &str, off: u64, len: u64, owner: LockOwner, ) -> bool

A write to [off, off+len) is blocked when it overlaps any shared lock (a read lock forbids writes by every open, [MS-FSA] §2.1.5.9) or an exclusive lock held by a different open.

Source

pub fn read_conflict( &self, path: &str, off: u64, len: u64, owner: LockOwner, ) -> bool

A read overlaps a conflicting lock only when another open holds an exclusive lock on the range.

Source

pub fn release(&self, path: &str, ranges: &[(u64, u64)], owner: LockOwner)

Release specific (offset, length) ranges held by owner.

Source

pub fn release_owner(&self, owner: LockOwner)

Drop every lock held by owner (on handle close or session teardown).

Source

pub fn release_session(&self, session_id: u64)

Drop every lock held by any open of session_id (logoff/disconnect).

Source

pub fn released(&self) -> &Notify

Notified when any lock is released, so blocked waiters can retry.

Trait Implementations§

Source§

impl Default for LockManager

Source§

fn default() -> Self

Returns the “default value” for a type. 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
§

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

§

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

Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

§

impl<T> Instrument for T

§

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

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

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.

§

impl<T> Pointable for T

§

const ALIGN: usize

The alignment of pointer.
§

type Init = T

The type for initializers.
§

unsafe fn init(init: <T as Pointable>::Init) -> usize

Initializes a with the given initializer. Read more
§

unsafe fn deref<'a>(ptr: usize) -> &'a T

Dereferences the given pointer. Read more
§

unsafe fn deref_mut<'a>(ptr: usize) -> &'a mut T

Mutably dereferences the given pointer. Read more
§

unsafe fn drop(ptr: usize)

Drops the object pointed to by the given pointer. Read more
§

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 = Infallible

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

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

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.
§

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

§

fn vzip(self) -> V

§

impl<T> WithSubscriber for T

§

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
§

fn with_current_subscriber(self) -> WithDispatch<Self>

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