Struct optee_teec::Context

source ·
pub struct Context { /* private fields */ }
Expand description

An abstraction of the logical connection between a client application and a TEE.

Implementations§

source§

impl Context

source

pub fn new() -> Result<Context>

Creates a TEE client context object.

§Examples
let ctx = Context::new().unwrap();
source

pub fn new_raw( fd: c_int, reg_mem: bool, memref_null: bool ) -> Result<TEEC_Context>

Creates a raw TEE client context with implementation defined parameters.

§Examples
let raw_ctx: optee_teec_sys::TEEC_Context = Context::new_raw(0, true).unwrap();
source

pub fn as_mut_raw_ptr(&mut self) -> *mut TEEC_Context

Converts a TEE client context to a raw pointer.

§Examples
let mut ctx = Context::new().unwrap();
let mut raw_ptr: *mut optee_teec_sys::TEEC_Context = ctx.as_mut_raw_ptr();
source

pub fn open_session(&mut self, uuid: Uuid) -> Result<Session<'_>>

Opens a new session with the specified trusted application.

The target trusted application is specified by uuid.

§Examples
let mut ctx = Context::new().unwrap();
let uuid = Uuid::parse_str("8abcf200-2450-11e4-abe2-0002a5d5c51b").unwrap();
let session = ctx.open_session(uuid).unwrap();
source

pub fn open_session_with_operation<A: Param, B: Param, C: Param, D: Param>( &mut self, uuid: Uuid, operation: &mut Operation<A, B, C, D> ) -> Result<Session<'_>>

Opens a new session with the specified trusted application, pass some parameters to TA by an operation.

The target trusted application is specified by uuid.

§Examples
let mut ctx = Context::new().unwrap();
let uuid = Uuid::parse_str("8abcf200-2450-11e4-abe2-0002a5d5c51b").unwrap();
let p0 = ParamValue(42, 0, ParamType::ValueInout);
let mut operation = Operation::new(0, p0, ParamNone, ParamNone, ParamNone);
let session = ctx.open_session_with_operation(uuid, operation).unwrap();

Trait Implementations§

source§

impl Drop for Context

source§

fn drop(&mut self)

Executes the destructor for this 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
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

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, U> TryFrom<U> for T
where U: Into<T>,

§

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>,

§

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.