From 45df4d0d9b577fecee798d672695fe24ff57fb1b Mon Sep 17 00:00:00 2001 From: mo khan Date: Tue, 15 Jul 2025 16:37:08 -0600 Subject: feat: migrate from Cedar to SpiceDB authorization system This is a major architectural change that replaces the Cedar policy-based authorization system with SpiceDB's relation-based authorization. Key changes: - Migrate from Rust to Go implementation - Replace Cedar policies with SpiceDB schema and relationships - Switch from envoy `ext_authz` with Cedar to SpiceDB permission checks - Update build system and dependencies for Go ecosystem - Maintain Envoy integration for external authorization This change enables more flexible permission modeling through SpiceDB's Google Zanzibar inspired relation-based system, supporting complex hierarchical permissions that were difficult to express in Cedar. Breaking change: Existing Cedar policies and Rust-based configuration will no longer work and need to be migrated to SpiceDB schema. --- vendor/windows-core/src/inspectable.rs | 123 --------------------------------- 1 file changed, 123 deletions(-) delete mode 100644 vendor/windows-core/src/inspectable.rs (limited to 'vendor/windows-core/src/inspectable.rs') diff --git a/vendor/windows-core/src/inspectable.rs b/vendor/windows-core/src/inspectable.rs deleted file mode 100644 index adca8a3c..00000000 --- a/vendor/windows-core/src/inspectable.rs +++ /dev/null @@ -1,123 +0,0 @@ -use super::*; -use core::ffi::c_void; -use core::ptr::null_mut; - -/// Parent interface for all WinRT interfaces. -/// -/// A WinRT object that may be used as a polymorphic stand-in for any WinRT class, interface, or boxed value. -/// [`IInspectable`] represents the -/// [IInspectable](https://docs.microsoft.com/en-us/windows/win32/api/inspectable/nn-inspectable-iinspectable) -/// interface. -#[repr(transparent)] -#[derive(Clone, PartialEq, Eq, Debug)] -pub struct IInspectable(pub IUnknown); - -interface_hierarchy!(IInspectable, IUnknown); - -impl IInspectable { - /// Returns the canonical type name for the underlying object. - #[cfg(windows)] - pub fn GetRuntimeClassName(&self) -> Result { - unsafe { - let mut abi = null_mut(); - (self.vtable().GetRuntimeClassName)(core::mem::transmute_copy(self), &mut abi).ok()?; - Ok(core::mem::transmute::<*mut c_void, HSTRING>(abi)) - } - } - - /// Gets the trust level of the current object. - pub fn GetTrustLevel(&self) -> Result { - unsafe { - let mut value = 0; - (self.vtable().GetTrustLevel)(core::mem::transmute_copy(self), &mut value).ok()?; - Ok(value) - } - } -} - -#[doc(hidden)] -#[repr(C)] -pub struct IInspectable_Vtbl { - pub base: IUnknown_Vtbl, - pub GetIids: unsafe extern "system" fn( - this: *mut c_void, - count: *mut u32, - values: *mut *mut GUID, - ) -> HRESULT, - pub GetRuntimeClassName: - unsafe extern "system" fn(this: *mut c_void, value: *mut *mut c_void) -> HRESULT, - pub GetTrustLevel: unsafe extern "system" fn(this: *mut c_void, value: *mut i32) -> HRESULT, -} - -unsafe impl Interface for IInspectable { - type Vtable = IInspectable_Vtbl; - const IID: GUID = GUID::from_u128(0xaf86e2e0_b12d_4c6a_9c5a_d7aa65101e90); -} - -impl RuntimeType for IInspectable { - const SIGNATURE: imp::ConstBuffer = imp::ConstBuffer::from_slice(b"cinterface(IInspectable)"); -} - -impl RuntimeName for IInspectable {} - -impl IInspectable_Vtbl { - pub const fn new() -> Self { - unsafe extern "system" fn GetIids( - _: *mut c_void, - count: *mut u32, - values: *mut *mut GUID, - ) -> HRESULT { - unsafe { - if count.is_null() || values.is_null() { - return imp::E_POINTER; - } - // Note: even if we end up implementing this in future, it still doesn't need a this pointer - // since the data to be returned is type- not instance-specific so can be shared for all - // interfaces. - *count = 0; - *values = null_mut(); - HRESULT(0) - } - } - unsafe extern "system" fn GetRuntimeClassName( - _: *mut c_void, - value: *mut *mut c_void, - ) -> HRESULT { - unsafe { - if value.is_null() { - return imp::E_POINTER; - } - - #[cfg(windows)] - { - *value = core::mem::transmute::(T::NAME.into()); - } - - #[cfg(not(windows))] - { - *value = core::ptr::null_mut(); - } - - HRESULT(0) - } - } - unsafe extern "system" fn GetTrustLevel( - this: *mut c_void, - value: *mut i32, - ) -> HRESULT { - unsafe { - if value.is_null() { - return imp::E_POINTER; - } - let this = (this as *mut *mut c_void).offset(OFFSET) as *mut T; - (*this).GetTrustLevel(value) - } - } - Self { - base: IUnknown_Vtbl::new::(), - GetIids, - GetRuntimeClassName: GetRuntimeClassName::, - GetTrustLevel: GetTrustLevel::, - } - } -} -- cgit v1.2.3