AESMLogicWrapper.h 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104
  1. /*
  2. * Copyright (C) 2011-2018 Intel Corporation. All rights reserved.
  3. *
  4. * Redistribution and use in source and binary forms, with or without
  5. * modification, are permitted provided that the following conditions
  6. * are met:
  7. *
  8. * * Redistributions of source code must retain the above copyright
  9. * notice, this list of conditions and the following disclaimer.
  10. * * Redistributions in binary form must reproduce the above copyright
  11. * notice, this list of conditions and the following disclaimer in
  12. * the documentation and/or other materials provided with the
  13. * distribution.
  14. * * Neither the name of Intel Corporation nor the names of its
  15. * contributors may be used to endorse or promote products derived
  16. * from this software without specific prior written permission.
  17. *
  18. * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
  19. * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
  20. * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
  21. * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
  22. * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  23. * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
  24. * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
  25. * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
  26. * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
  27. * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
  28. * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  29. *
  30. */
  31. #ifndef _AESM_LOGIC_H
  32. #define _AESM_LOGIC_H
  33. #include <stdlib.h>
  34. #include <stdint.h>
  35. #include "IAESMLogic.h"
  36. #include <aesm_logic.h>
  37. class AESMLogicWrapper :public IAESMLogic {
  38. public:
  39. AESMLogicWrapper() {
  40. }
  41. virtual ~AESMLogicWrapper() {
  42. }
  43. ae_error_t service_start(){
  44. return AESMLogic::service_start();
  45. }
  46. void service_stop();
  47. virtual aesm_error_t getLaunchToken(const uint8_t *measurement,
  48. uint32_t measurement_size,
  49. const uint8_t *public_key,
  50. uint32_t public_key_size,
  51. const uint8_t *se_attributes,
  52. uint32_t se_attributes_size,
  53. uint8_t **launch_token,
  54. uint32_t *launch_token_size);
  55. virtual aesm_error_t initQuote(uint8_t** target_info,
  56. uint32_t* target_info_length,
  57. uint8_t** gid,
  58. uint32_t* gid_length);
  59. virtual aesm_error_t getQuote(uint32_t reportLength, const uint8_t* report,
  60. uint32_t quoteType,
  61. uint32_t spidLength, const uint8_t* spid,
  62. uint32_t nonceLength, const uint8_t* nonce,
  63. uint32_t sig_rlLength, const uint8_t* sig_rl,
  64. uint32_t bufferSize, uint8_t** quote,
  65. bool b_qe_report, uint32_t* qe_reportSize, uint8_t** qe_report);
  66. virtual aesm_error_t closeSession(uint32_t sessionId);
  67. virtual aesm_error_t createSession(uint32_t *session_id,
  68. uint8_t **se_dh_msg1,
  69. uint32_t se_dh_msg1_size);
  70. virtual aesm_error_t exchangeReport(uint32_t session_id,
  71. const uint8_t* se_dh_msg2,
  72. uint32_t se_dh_msg2_size,
  73. uint8_t** se_dh_msg3,
  74. uint32_t se_dh_msg3_size);
  75. virtual aesm_error_t invokeService(const uint8_t *pse_message_req,
  76. uint32_t pse_message_req_size,
  77. uint8_t **pse_message_resp,
  78. uint32_t pse_message_resp_size);
  79. virtual aesm_error_t getPsCap(uint64_t* ps_cap);
  80. virtual aesm_error_t reportAttestationStatus(uint8_t* platform_info, uint32_t platform_info_size,
  81. uint32_t attestation_error_code,
  82. uint8_t** update_info, uint32_t update_info_size);
  83. virtual aesm_error_t getWhiteListSize(uint32_t* white_list_size);
  84. virtual aesm_error_t getWhiteList(uint8_t** white_list, uint32_t mWhiteListSize);
  85. virtual aesm_error_t sgxGetExtendedEpidGroupId(uint32_t* x_group_id);
  86. virtual aesm_error_t sgxSwitchExtendedEpidGroup(uint32_t x_group_id);
  87. typedef enum _sgx_register_type_t {SGX_REGISTER_WHITE_LIST_CERT} sgx_register_type_t;
  88. virtual aesm_error_t sgxRegister(uint8_t* buf, uint32_t buf_size, uint32_t data_type);
  89. };
  90. #endif