1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
#![allow(clippy::nonstandard_macro_braces)]
use std::fmt;
use serde::{Deserialize, Serialize};
use thiserror::Error;
pub use sgx_types::error::SgxStatus;
pub const ES_OK: u32 = 0;
pub const ES_ERR_GENERAL: u32 = 0x0000_0001;
pub const ES_ERR_INVALID_PARAMETER: u32 = 0x0000_0002;
pub const ES_ERR_FFI_INSUFFICIENT_OUTBUF_SIZE: u32 = 0x0000_000c;
#[repr(C)]
#[derive(Debug, Serialize, Deserialize, Default)]
pub struct ECallStatus(pub u32);
impl ECallStatus {
pub fn is_err(&self) -> bool {
self.0 != ES_OK
}
pub fn is_ok(&self) -> bool {
self.0 == ES_OK
}
pub fn is_err_ffi_outbuf(&self) -> bool {
self.0 == ES_ERR_FFI_INSUFFICIENT_OUTBUF_SIZE
}
}
impl fmt::Display for ECallStatus {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
write!(f, "{}", self.0)
}
}
#[derive(Error, Debug, Serialize, Deserialize)]
pub enum TeeServiceError {
#[error("SgxError")]
SgxError,
#[error("ServiceError")]
ServiceError,
#[error("CommandNotRegistered")]
CommandNotRegistered,
#[error("EnclaveForceTermination")]
EnclaveForceTermination,
}
pub type TeeServiceResult<T> = std::result::Result<T, TeeServiceError>;
pub type TeaclaveServiceResponseResult<T> = std::result::Result<tonic::Response<T>, tonic::Status>;
pub fn tonic_error<T: std::fmt::Debug>(err: T) -> tonic::Status {
tonic::Status::internal(format!("{:?}", err))
}