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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
// Licensed to the Apache Software Foundation (ASF) under one
// or more contributor license agreements.  See the NOTICE file
// distributed with this work for additional information
// regarding copyright ownership.  The ASF licenses this file
// to you under the Apache License, Version 2.0 (the
// "License"); you may not use this file except in compliance
// with the License.  You may obtain a copy of the License at
//
//   http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing,
// software distributed under the License is distributed on an
// "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
// KIND, either express or implied.  See the License for the
// specific language governing permissions and limitations
// under the License..

use super::*;
use core::mem;
use core::slice;

impl_struct! {
    #[repr(C)]
    #[derive(Debug)]
    pub struct CDcapRaMsg1 {
        pub g_a: Ec256PublicKey,
    }

    #[repr(C)]
    #[derive(Debug)]
    pub struct CDcapURaMsg2 {
        pub g_b: Ec256PublicKey,
        pub kdf_id: u32,
        pub sign_gb_ga: Ec256Signature,
        pub mac: Mac,
    }

    #[repr(C)]
    #[derive(Debug)]
    pub struct CDcapMRaMsg2 {
        pub mac: Mac,
        pub g_b: Ec256PublicKey,
        pub kdf_id: u32,
        pub quote_size: u32,
        pub quote: [u8; 0],
    }

    #[repr(C)]
    #[derive(Debug)]
    pub struct CDcapRaMsg3 {
        pub mac: Mac,
        pub g_a: Ec256PublicKey,
        pub quote_size: u32,
        pub quote: [u8; 0],
    }
}

impl_asref_array! {
    CDcapRaMsg1;
    CDcapURaMsg2;
}

impl CDcapMRaMsg2 {
    /// # Safety
    pub unsafe fn as_slice_unchecked(&self) -> &[u8] {
        slice::from_raw_parts(
            self as *const _ as *const u8,
            mem::size_of::<CDcapMRaMsg2>() + self.quote_size as usize,
        )
    }
}

impl CDcapRaMsg3 {
    /// # Safety
    pub unsafe fn as_slice_unchecked(&self) -> &[u8] {
        slice::from_raw_parts(
            self as *const _ as *const u8,
            mem::size_of::<CDcapRaMsg3>() + self.quote_size as usize,
        )
    }
}

impl_struct! {
    #[derive(Debug, Eq, PartialEq)]
    pub struct EnclaveIdentity {
        pub cpu_svn: CpuSvn,
        pub attributes: Attributes,
        pub mr_enclave: Measurement,
        pub mr_signer: Measurement,
        pub misc_select: MiscSelect,
        pub isv_prod_id: u16,
        pub isv_svn: u16,
    }
}

impl_asref_array! {
    EnclaveIdentity;
}

impl From<Report> for EnclaveIdentity {
    fn from(report: Report) -> EnclaveIdentity {
        report.body.into()
    }
}

impl From<&Report> for EnclaveIdentity {
    fn from(report: &Report) -> EnclaveIdentity {
        report.body.into()
    }
}

impl From<ReportBody> for EnclaveIdentity {
    fn from(body: ReportBody) -> EnclaveIdentity {
        EnclaveIdentity {
            cpu_svn: body.cpu_svn,
            attributes: body.attributes,
            mr_enclave: body.mr_enclave,
            mr_signer: body.mr_signer,
            misc_select: body.misc_select,
            isv_prod_id: body.isv_prod_id,
            isv_svn: body.isv_svn,
        }
    }
}

impl From<&ReportBody> for EnclaveIdentity {
    fn from(body: &ReportBody) -> EnclaveIdentity {
        EnclaveIdentity {
            cpu_svn: body.cpu_svn,
            attributes: body.attributes,
            mr_enclave: body.mr_enclave,
            mr_signer: body.mr_signer,
            misc_select: body.misc_select,
            isv_prod_id: body.isv_prod_id,
            isv_svn: body.isv_svn,
        }
    }
}

impl From<EnclaveIdentity> for CEnclaveIdentity {
    fn from(identity: EnclaveIdentity) -> CEnclaveIdentity {
        CEnclaveIdentity {
            cpu_svn: identity.cpu_svn,
            misc_select: identity.misc_select,
            reserved1: [0_u8; 28],
            attributes: identity.attributes,
            mr_enclave: identity.mr_enclave,
            reserved2: [0_u8; 32],
            mr_signer: identity.mr_signer,
            reserved3: [0_u8; 96],
            isv_prod_id: identity.isv_prod_id,
            isv_svn: identity.isv_svn,
        }
    }
}

impl From<&EnclaveIdentity> for CEnclaveIdentity {
    fn from(identity: &EnclaveIdentity) -> CEnclaveIdentity {
        CEnclaveIdentity {
            cpu_svn: identity.cpu_svn,
            misc_select: identity.misc_select,
            reserved1: [0_u8; 28],
            attributes: identity.attributes,
            mr_enclave: identity.mr_enclave,
            reserved2: [0_u8; 32],
            mr_signer: identity.mr_signer,
            reserved3: [0_u8; 96],
            isv_prod_id: identity.isv_prod_id,
            isv_svn: identity.isv_svn,
        }
    }
}

impl From<CEnclaveIdentity> for EnclaveIdentity {
    fn from(identity: CEnclaveIdentity) -> EnclaveIdentity {
        EnclaveIdentity {
            cpu_svn: identity.cpu_svn,
            attributes: identity.attributes,
            mr_enclave: identity.mr_enclave,
            mr_signer: identity.mr_signer,
            misc_select: identity.misc_select,
            isv_prod_id: identity.isv_prod_id,
            isv_svn: identity.isv_svn,
        }
    }
}

impl From<&CEnclaveIdentity> for EnclaveIdentity {
    fn from(identity: &CEnclaveIdentity) -> EnclaveIdentity {
        EnclaveIdentity {
            cpu_svn: identity.cpu_svn,
            attributes: identity.attributes,
            mr_enclave: identity.mr_enclave,
            mr_signer: identity.mr_signer,
            misc_select: identity.misc_select,
            isv_prod_id: identity.isv_prod_id,
            isv_svn: identity.isv_svn,
        }
    }
}