123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146 |
- /*
- * Copyright (C) 2011-2016 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.
- *
- */
- #ifndef _UAE_OAL_H
- #define _UAE_OAL_H
- #include "sgx_quote.h"
- #include "sgx_error.h"
- #include "sgx_urts.h"
- #include <arch.h>
- #include <aesm_error.h>
- typedef enum{
- UAE_OAL_SUCCESS = 0,
- UAE_OAL_ERROR_UNEXPECTED ,
- UAE_OAL_ERROR_AESM_UNAVAILABLE ,
- UAE_OAL_ERROR_TIMEOUT ,
- } uae_oal_status_t;
- /*OAL methods from here forward */
- extern "C"
- {
- uae_oal_status_t SGXAPI oal_get_launch_token(
- const enclave_css_t* signature,
- const sgx_attributes_t* attribute,
- sgx_launch_token_t* launch_token,
- uint32_t timeout_usec,
- aesm_error_t *result);
- uae_oal_status_t SGXAPI oal_init_quote(
- sgx_target_info_t *p_target_info,
- sgx_epid_group_id_t *p_gid,
- uint32_t timeout_usec,
- aesm_error_t *result);
- uae_oal_status_t SGXAPI oal_get_quote(
- const sgx_report_t *p_report,
- sgx_quote_sign_type_t quote_type,
- const sgx_spid_t *p_spid,
- const sgx_quote_nonce_t *p_nonce,
- const uint8_t *p_sig_rl,
- uint32_t sig_rl_size,
- sgx_report_t *p_qe_report,
- sgx_quote_t *p_quote,
- uint32_t quote_size,
- uint32_t timeout_usec,
- aesm_error_t *result);
- uae_oal_status_t SGXAPI oal_get_ps_cap(
- uint64_t* p_ps_cap,
- uint32_t timeout_usec,
- aesm_error_t *result);
- uae_oal_status_t SGXAPI oal_report_attestation_status(
- const sgx_platform_info_t* p_platform_info,
- int attestation_status,
- sgx_update_info_bit_t* p_update_info,
- uint32_t timeout_usec,
- aesm_error_t *result);
- uae_oal_status_t oal_create_session(
- uint32_t *session_id,
- uint8_t *se_dh_msg1,
- uint32_t dh_msg1_size,
- uint32_t timeout_usec,
- aesm_error_t *result);
- uae_oal_status_t oal_exchange_report(
- uint32_t session_id,
- const uint8_t *se_dh_msg2,
- uint32_t dh_msg2_size,
- uint8_t *se_dh_msg3,
- uint32_t dh_msg3_size,
- uint32_t timeout_usec,
- aesm_error_t *result);
- uae_oal_status_t oal_close_session(
- uint32_t session_id,
- uint32_t timeout_usec,
- aesm_error_t *result);
- uae_oal_status_t oal_invoke_service(
- const uint8_t *pse_message_req,
- uint32_t pse_message_req_size,
- uint8_t *pse_message_resp,
- uint32_t pse_message_resp_size,
- uint32_t timeout_usec,
- aesm_error_t *response);
- uae_oal_status_t oal_get_whitelist_size(
- uint32_t* p_whitelist_size,
- uint32_t timeout_usec,
- aesm_error_t* result);
- uae_oal_status_t oal_get_whitelist(
- uint8_t* p_whitelist,
- uint32_t whitelist_size,
- uint32_t timeout_usec,
- aesm_error_t *result);
- uae_oal_status_t oal_get_extended_epid_group_id(
- uint32_t* extended_group_id,
- uint32_t timeout_usec,
- aesm_error_t *result);
- uae_oal_status_t oal_switch_extended_epid_group(
- uint32_t x_group_id,
- uint32_t timeout_usec,
- aesm_error_t *result);
- sgx_status_t oal_map_status(uae_oal_status_t status);
- sgx_status_t oal_map_result(aesm_error_t result);
- } /* end of extern "C" */
- #endif
|