-
Notifications
You must be signed in to change notification settings - Fork 170
/
Copy pathsgx_dcap_quoteverify.h
330 lines (300 loc) · 15 KB
/
sgx_dcap_quoteverify.h
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
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
/*
* Copyright (C) 2011-2021 Intel Corporation. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
*
* * Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* * Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in
* the documentation and/or other materials provided with the
* distribution.
* * Neither the name of Intel Corporation nor the names of its
* contributors may be used to endorse or promote products derived
* from this software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
* OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*
*/
/**
* File: sgx_dcap_quoteverify.h
*
* Description: Definitions and prototypes for Intel(R) SGX/TDX DCAP Quote Verification Library
*
*/
#ifndef _SGX_DCAP_QV_H_
#define _SGX_DCAP_QV_H_
#include "sgx_qve_header.h"
#include "sgx_ql_quote.h"
#if defined(__cplusplus)
extern "C" {
#endif
/**
* When the Quoting Verification Library is linked to a process, it needs to know the proper enclave loading policy.
* The library may be linked with a long lived process, such as a service, where it can load the enclaves and leave
* them loaded (persistent). This better ensures that the enclaves will be available upon quote requests and not subject
* to EPC limitations if loaded on demand. However, if the Quoting library is linked with an application process, there
* may be many applications with the Quoting library and a better utilization of EPC is to load and unloaded the quoting
* enclaves on demand (ephemeral). The library will be shipped with a default policy of loading enclaves and leaving
* them loaded until the library is unloaded (PERSISTENT). If the policy is set to EPHEMERAL, then the QE and PCE will
* be loaded and unloaded on-demand. If either enclave is already loaded when the policy is change to EPHEMERAL, the
* enclaves will be unloaded before returning.
*
* @param policy Sets the requested enclave loading policy to either SGX_QL_PERSISTENT, SGX_QL_EPHEMERAL or SGX_QL_DEFAULT.
*
* @return SGX_QL_SUCCESS Successfully set the enclave loading policy for the quoting library's enclaves.
* @return SGX_QL_UNSUPPORTED_LOADING_POLICY The selected policy is not support by the quoting library.
* @return SGX_QL_ERROR_UNEXPECTED Unexpected internal error.
*
**/
quote3_error_t sgx_qv_set_enclave_load_policy(sgx_ql_request_policy_t policy);
/**
* Get supplemental data required size.
* @param p_data_size[OUT] - Pointer to hold the size of the buffer in bytes required to contain all of the supplemental data.
*
* @return Status code of the operation, one of:
* - SGX_QL_SUCCESS
* - SGX_QL_ERROR_INVALID_PARAMETER
* - SGX_QL_ERROR_QVL_QVE_MISMATCH
* - SGX_QL_ENCLAVE_LOAD_ERROR
**/
quote3_error_t sgx_qv_get_quote_supplemental_data_size(uint32_t *p_data_size);
/**
* Perform ECDSA quote verification.
*
* @param p_quote[IN] - Pointer to SGX Quote.
* @param quote_size[IN] - Size of the buffer pointed to by p_quote (in bytes).
* @param p_quote_collateral[IN] - This is a pointer to the Quote Certification Collateral provided by the caller.
* @param expiration_check_date[IN] - This is the date that the QvE will use to determine if any of the inputted collateral have expired.
* @param p_collateral_expiration_status[OUT] - Address of the outputted expiration status. This input must not be NULL.
* @param p_quote_verification_result[OUT] - Address of the outputted quote verification result.
* @param p_qve_report_info[IN/OUT] - This parameter can be used in 2 ways.
* If p_qve_report_info is NOT NULL, the API will use Intel QvE to perform quote verification, and QvE will generate a report using the target_info in sgx_ql_qe_report_info_t structure.
* if p_qve_report_info is NULL, the API will use QVL library to perform quote verification, note that the results can not be cryptographically authenticated in this mode.
* @param supplemental_data_size[IN] - Size of the buffer pointed to by p_quote (in bytes).
* @param p_supplemental_data[OUT] - The parameter is optional. If it is NULL, supplemental_data_size must be 0.
*
* @return Status code of the operation, one of:
* - SGX_QL_SUCCESS
* - SGX_QL_ERROR_INVALID_PARAMETER
* - SGX_QL_QUOTE_FORMAT_UNSUPPORTED
* - SGX_QL_QUOTE_CERTIFICATION_DATA_UNSUPPORTED
* - SGX_QL_UNABLE_TO_GENERATE_REPORT
* - SGX_QL_CRL_UNSUPPORTED_FORMAT
* - SGX_QL_ERROR_UNEXPECTED
**/
quote3_error_t sgx_qv_verify_quote(
const uint8_t *p_quote,
uint32_t quote_size,
const sgx_ql_qve_collateral_t *p_quote_collateral,
const time_t expiration_check_date,
uint32_t *p_collateral_expiration_status,
sgx_ql_qv_result_t *p_quote_verification_result,
sgx_ql_qe_report_info_t *p_qve_report_info,
uint32_t supplemental_data_size,
uint8_t *p_supplemental_data);
/**
* Call quote provider library to get QvE identity.
*
* @param pp_qveid[OUT] - Pointer to the pointer of QvE identity
* @param p_qveid_size[OUT] - Pointer to the size of QvE identity
* @param pp_qveid_issue_chain[OUT] - Pointer to the pointer QvE identity certificate chain
* @param p_qveid_issue_chain_size[OUT] - Pointer to the QvE identity certificate chain size
* @param pp_root_ca_crl[OUT] - Pointer to the pointer of Intel Root CA CRL
* @param p_root_ca_crl_size[OUT] - Pointer to the Intel Root CA CRL size
*
* @return Status code of the operation, one of:
* - SGX_QL_SUCCESS
* - SGX_QL_ERROR_INVALID_PARAMETER
* - SGX_QL_NO_QVE_IDENTITY_DATA
* - SGX_QL_ERROR_OUT_OF_MEMORY
* - SGX_QL_NETWORK_ERROR
* - SGX_QL_MESSAGE_ERROR
* - SGX_QL_ERROR_UNEXPECTED
**/
quote3_error_t sgx_qv_get_qve_identity(
uint8_t **pp_qveid,
uint32_t *p_qveid_size,
uint8_t **pp_qveid_issue_chain,
uint32_t *p_qveid_issue_chain_size,
uint8_t **pp_root_ca_crl,
uint16_t *p_root_ca_crl_size);
/**
* Call quote provider library to free the p_qve_id, p_qveid_issuer_chain buffer and p_root_ca_crl allocated by sgx_qv_get_qve_identity
**/
quote3_error_t sgx_qv_free_qve_identity(uint8_t *p_qveid,
uint8_t *p_qveid_issue_chain,
uint8_t *p_root_ca_crl);
#ifndef _MSC_VER
typedef enum
{
SGX_QV_QVE_PATH,
SGX_QV_QPL_PATH
} sgx_qv_path_type_t;
quote3_error_t sgx_qv_set_path(sgx_qv_path_type_t path_type,
const char *p_path);
#endif
/**
* Get TDX supplemental data required size.
* @param p_data_size[OUT] - Pointer to hold the size of the buffer in bytes required to contain all of the supplemental data.
*
* @return Status code of the operation, one of:
* - SGX_QL_SUCCESS
* - SGX_QL_ERROR_INVALID_PARAMETER
* - SGX_QL_ERROR_QVL_QVE_MISMATCH
* - SGX_QL_ENCLAVE_LOAD_ERROR
**/
quote3_error_t tdx_qv_get_quote_supplemental_data_size(uint32_t *p_data_size);
/**
* Perform TDX ECDSA quote verification.
*
* @param p_quote[IN] - Pointer to TDX Quote.
* @param quote_size[IN] - Size of the buffer pointed to by p_quote (in bytes).
* @param p_quote_collateral[IN] - This is a pointer to the Quote Certification Collateral provided by the caller.
* @param expiration_check_date[IN] - This is the date that the QvE will use to determine if any of the inputted collateral have expired.
* @param p_collateral_expiration_status[OUT] - Address of the outputted expiration status. This input must not be NULL.
* @param p_quote_verification_result[OUT] - Address of the outputted quote verification result.
* @param p_qve_report_info[IN/OUT] - This parameter can be used in 2 ways.
* If p_qve_report_info is NOT NULL, the API will use Intel QvE to perform quote verification, and QvE will generate a report using the target_info in sgx_ql_qe_report_info_t structure.
* if p_qve_report_info is NULL, the API will use QVL library to perform quote verification, not that the results can not be cryptographically authenticated in this mode.
* @param supplemental_data_size[IN] - Size of the buffer pointed to by p_quote (in bytes).
* @param p_supplemental_data[OUT] - The parameter is optional. If it is NULL, supplemental_data_size must be 0.
*
* @return Status code of the operation, one of:
* - SGX_QL_SUCCESS
* - SGX_QL_ERROR_INVALID_PARAMETER
* - SGX_QL_QUOTE_FORMAT_UNSUPPORTED
* - SGX_QL_QUOTE_CERTIFICATION_DATA_UNSUPPORTED
* - SGX_QL_UNABLE_TO_GENERATE_REPORT
* - SGX_QL_CRL_UNSUPPORTED_FORMAT
* - SGX_QL_ERROR_UNEXPECTED
**/
quote3_error_t tdx_qv_verify_quote(
const uint8_t *p_quote,
uint32_t quote_size,
const tdx_ql_qve_collateral_t *p_quote_collateral,
const time_t expiration_check_date,
uint32_t *p_collateral_expiration_status,
sgx_ql_qv_result_t *p_quote_verification_result,
sgx_ql_qe_report_info_t *p_qve_report_info,
uint32_t supplemental_data_size,
uint8_t *p_supplemental_data);
/**
* Get quote verification collateral.
*
* @param p_quote[IN] - Pointer to TDX/SGX Quote.
* @param quote_size[IN] - Size of the buffer pointed to by p_quote (in bytes).
* @param p_quote_collateral[OUT] - This is a pointer to the Quote Certification Collateral retrieved based on Quote
* @param p_collateral_size[OUT] - This is the sizeof collateral including the size of nested fileds
*
* @return Status code of the operation, one of:
* - SGX_QL_SUCCESS
* - SGX_QL_ERROR_INVALID_PARAMETER
* - SGX_QL_PLATFORM_LIB_UNAVAILABLE
* - SGX_QL_PCK_CERT_CHAIN_ERROR
* - SGX_QL_PCK_CERT_UNSUPPORTED_FORMAT
* - SGX_QL_QUOTE_FORMAT_UNSUPPORTED
* - SGX_QL_OUT_OF_MEMORY
* - SGX_QL_NO_QUOTE_COLLATERAL_DATA
* - SGX_QL_ERROR_UNEXPECTED
**/
quote3_error_t tee_qv_get_collateral(
const uint8_t *p_quote,
uint32_t quote_size,
uint8_t **pp_quote_collateral,
uint32_t *p_collateral_size);
/**
* Free quote verification collateral buffer, which returned by `tee_qv_get_collateral`
*
* @param p_quote_collateral[IN] - Pointer to collateral
*
* @return Status code of the operation, one of:
* - SGX_QL_SUCCESS
* - SGX_QL_ERROR_INVALID_PARAMETER
* - SGX_QL_QUOTE_FORMAT_UNSUPPORTED
**/
quote3_error_t tee_qv_free_collateral(uint8_t *p_quote_collateral);
/**
* Get supplemental data latest version and required size, support both SGX and TDX
*
* @param p_quote[IN] - Pointer to SGX or TDX Quote.
* @param quote_size[IN] - Size of the buffer pointed to by p_quote (in bytes).
* @param p_version[OUT] - Optional. Pointer to hold latest version of the supplemental data.
* @param p_data_size[OUT] - Optional. Pointer to hold the size of the buffer in bytes required to contain all of the supplemental data.
**/
quote3_error_t tee_get_supplemental_data_version_and_size(
const uint8_t *p_quote,
uint32_t quote_size,
uint32_t *p_version,
uint32_t *p_data_size);
/**
* Perform quote verification for SGX and TDX
* This API works the same as the old one, but takes a new parameter to describe the supplemental data (p_supp_data_descriptor)
*
* @param p_quote[IN] - Pointer to SGX or TDX Quote.
* @param quote_size[IN] - Size of the buffer pointed to by p_quote (in bytes).
* @param p_quote_collateral[IN] - This is a pointer to the Quote Certification Collateral provided by the caller.
* @param expiration_check_date[IN] - This is the date that the QvE will use to determine if any of the inputted collateral have expired.
* @param p_collateral_expiration_status[OUT] - Address of the outputted expiration status. This input must not be NULL.
* @param p_quote_verification_result[OUT] - Address of the outputted quote verification result.
* @param p_qve_report_info[IN/OUT] - This parameter can be used in 2 ways.
* If p_qve_report_info is NOT NULL, the API will use Intel QvE to perform quote verification, and QvE will generate a report using the target_info in sgx_ql_qe_report_info_t structure.
* if p_qve_report_info is NULL, the API will use QVL library to perform quote verification, note that the results can not be cryptographically authenticated in this mode.
* @param p_supp_datal_descriptor[IN/OUT] - Pointer to tee_supp_data_descriptor_t structure
* You can specify the major version of supplemental data by setting p_supp_datal_descriptor->major_version
* If p_supp_datal_descriptor == NULL, no supplemental data is returned
* If p_supp_datal_descriptor->major_version == 0, then return the latest version of the sgx_ql_qv_supplemental_t structure
* If p_supp_datal_descriptor <= latest supported version, return the latest minor version associated with that major version
* If p_supp_datal_descriptor > latest supported version, return an error SGX_QL_SUPPLEMENTAL_DATA_VERSION_NOT_SUPPORTED
*
* @return Status code of the operation, one of:
* - SGX_QL_SUCCESS
* - SGX_QL_ERROR_INVALID_PARAMETER
* - SGX_QL_QUOTE_FORMAT_UNSUPPORTED
* - SGX_QL_QUOTE_CERTIFICATION_DATA_UNSUPPORTED
* - SGX_QL_UNABLE_TO_GENERATE_REPORT
* - SGX_QL_CRL_UNSUPPORTED_FORMAT
* - SGX_QL_SUPPLEMENTAL_DATA_VERSION_NOT_SUPPORTED
* - SGX_QL_ERROR_UNEXPECTED
**/
quote3_error_t tee_verify_quote(
const uint8_t *p_quote,
uint32_t quote_size,
const uint8_t *p_quote_collateral,
const time_t expiration_check_date,
uint32_t *p_collateral_expiration_status,
sgx_ql_qv_result_t *p_quote_verification_result,
sgx_ql_qe_report_info_t *p_qve_report_info,
tee_supp_data_descriptor_t *p_supp_data_descriptor);
/**
* Extrace FMSPC from a given quote
* @param p_quote[IN] - Pointer to a quote buffer.
* @param quote_size[IN] - Size of input quote buffer.
* @param p_fmspc_from_quote[IN/OUT] - Pointer to a buffer to write fmspc to.
* @param fmspc_from_quote_size[IN] - Size of fmspc buffer.
*
* @return Status code of the operation, one of:
* - SGX_QL_SUCCESS
* - SGX_QL_ERROR_INVALID_PARAMETER
* - SGX_QL_ERROR_UNEXPECTED
* - SGX_QL_PCK_CERT_CHAIN_ERROR
* - SGX_QL_QUOTE_CERTIFICATION_DATA_UNSUPPORTED
*/
quote3_error_t tee_get_fmspc_from_quote(const uint8_t* p_quote, uint32_t quote_size,
uint8_t* p_fmspc_from_quote, uint32_t fmspc_from_quote_size);
#if defined(__cplusplus)
}
#endif
#endif /* !_SGX_DCAP_QV_H_*/