EnclaveMessageExchange.cpp 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462
  1. /*
  2. * Copyright (C) 2011-2017 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. #include "sgx_trts.h"
  32. #include "sgx_utils.h"
  33. #include "EnclaveMessageExchange.h"
  34. #include "sgx_eid.h"
  35. #include "error_codes.h"
  36. #include "sgx_ecp_types.h"
  37. #include "sgx_thread.h"
  38. #include <map>
  39. #include "dh_session_protocol.h"
  40. #include "sgx_dh.h"
  41. #include "sgx_tcrypto.h"
  42. #include "LocalAttestationCode_t.h"
  43. #include "sgx_tseal.h"
  44. #ifdef __cplusplus
  45. extern "C" {
  46. #endif
  47. uint32_t verify_peer_enclave_trust(sgx_dh_session_enclave_identity_t* peer_enclave_identity, sgx_measurement_t* measurement);
  48. #ifdef __cplusplus
  49. }
  50. #endif
  51. uint32_t create_ecdsa_key_pair(sgx_ec256_public_t* pub_key, sgx_ec256_private_t* priv_key);
  52. void serialize_key_pair_to_string( sgx_ec256_public_t* pub_key, sgx_ec256_private_t* signing_priv_key, uint8_t* private_public_key_string);
  53. void deserialize_string_to_key_pair(uint8_t* private_public_key_string, sgx_ec256_public_t* pub_key, sgx_ec256_private_t* priv_key);
  54. #define MAX_SESSION_COUNT 16
  55. //number of open sessions
  56. // uint32_t g_session_count = 0;
  57. ATTESTATION_STATUS generate_session_id(uint32_t *session_id);
  58. ATTESTATION_STATUS end_session();
  59. sgx_ec256_private_t signing_priv_key;
  60. sgx_ec256_private_t short_term_priv_key;
  61. sgx_ec256_public_t short_term_pub_key; // for testing only: to test verification of signature
  62. uint32_t one_la_done;
  63. sgx_measurement_t verifier_mr_enclave;
  64. sgx_measurement_t apache_mr_signer;
  65. sgx_ecc_state_handle_t ecc_state;
  66. uint32_t session_ids[MAX_SESSION_COUNT];
  67. // Our enclave will not be doing LA with more than 1 decryptor enclave at a time.
  68. // We should not need this.
  69. //std::map<int, dh_session_t>g_dest_session_info_map;
  70. dh_session_t global_session_info;
  71. // TODO: May be we need to store all previously assigned session IDs instead of just the counter; to prevent replay attacks -
  72. uint32_t global_session_id=0;
  73. //Handle the request from Source Enclave for a session
  74. ATTESTATION_STATUS session_request(sgx_dh_msg1_t *dh_msg1,
  75. uint32_t *session_id )
  76. {
  77. // dh_session_t session_info;
  78. sgx_dh_session_t sgx_dh_session;
  79. sgx_status_t status = SGX_SUCCESS;
  80. if(!session_id || !dh_msg1)
  81. {
  82. return INVALID_PARAMETER_ERROR;
  83. }
  84. //Intialize the session as a session responder
  85. status = sgx_dh_init_session(SGX_DH_SESSION_RESPONDER, &sgx_dh_session);
  86. if(SGX_SUCCESS != status)
  87. {
  88. return status;
  89. }
  90. *session_id=1;
  91. global_session_info.status = IN_PROGRESS;
  92. //Generate Message1 that will be returned to Source Enclave
  93. status = sgx_dh_responder_gen_msg1((sgx_dh_msg1_t*)dh_msg1, &sgx_dh_session);
  94. if(SGX_SUCCESS != status)
  95. {
  96. global_session_id--;
  97. // SAFE_FREE(g_session_id_tracker[*session_id]);
  98. return status;
  99. }
  100. memcpy(&global_session_info.in_progress.dh_session, &sgx_dh_session, sizeof(sgx_dh_session_t));
  101. //return sgx_seal_data(0, NULL, 0, NULL, 0, NULL);
  102. //Store the session information under the correspoding source enlave id key
  103. // g_dest_session_info_map.insert(std::pair<sgx_enclave_id_t, dh_session_t>(src_enclave_id, session_info));
  104. return status;
  105. }
  106. //Verify Message 2, generate Message3 and exchange Message 3 with Source Enclave
  107. ATTESTATION_STATUS exchange_report(
  108. sgx_dh_msg2_t *dh_msg2,
  109. sgx_dh_msg3_t *dh_msg3,
  110. uint32_t* session_id)
  111. {
  112. sgx_key_128bit_t dh_aek; // Session key
  113. // dh_session_t session_info;
  114. ATTESTATION_STATUS status = SUCCESS;
  115. sgx_dh_session_t sgx_dh_session;
  116. sgx_dh_session_enclave_identity_t initiator_identity;
  117. if(!dh_msg2 || !dh_msg3)
  118. {
  119. return INVALID_PARAMETER_ERROR;
  120. }
  121. memset(&dh_aek,0, sizeof(sgx_key_128bit_t));
  122. // Why is there a do-while loop anyway? It seems like there is no successful exit ...
  123. // do
  124. // {
  125. // TODO: Make sure that this works - pointers
  126. // session_info = global_session_info;
  127. if(global_session_info.status != IN_PROGRESS)
  128. {
  129. status = INVALID_SESSION;
  130. end_session();
  131. }
  132. memcpy(&sgx_dh_session, &global_session_info.in_progress.dh_session, sizeof(sgx_dh_session_t));
  133. dh_msg3->msg3_body.additional_prop_length = 0;
  134. //Process message 2 from source enclave and obtain message 3
  135. sgx_status_t se_ret = sgx_dh_responder_proc_msg2(dh_msg2,
  136. dh_msg3,
  137. &sgx_dh_session,
  138. &dh_aek,
  139. &initiator_identity);
  140. if(SGX_SUCCESS != se_ret)
  141. {
  142. status = se_ret;
  143. end_session();
  144. }
  145. uint32_t hash_count;
  146. // THIS IS WHERE THE DECRYPTOR VERIFIES THE APACHE'S MRSIGNER IS THE PUBLIC KEY GIVEN AFTER THE LOCAL ATTESTATION WITH THE VERIFIER.
  147. //Verify source enclave's trust
  148. if(one_la_done == 0)
  149. {
  150. one_la_done = 1;
  151. uint32_t ret = verify_peer_enclave_trust(&initiator_identity, NULL);
  152. if(ret != SUCCESS)
  153. {
  154. return ret; //INVALID_SESSION;
  155. }
  156. for(hash_count=0; hash_count<32; hash_count++)
  157. verifier_mr_enclave.m[hash_count] = initiator_identity.mr_signer.m[hash_count];
  158. }
  159. else
  160. {
  161. return 0xFFFFFFFF;
  162. /*
  163. uint32_t ret = verify_peer_enclave_trust(&initiator_identity, &apache_mrsigner);
  164. if(ret != SUCCESS)
  165. {
  166. return ret; //INVALID_SESSION;
  167. }
  168. */
  169. }
  170. // TODO: Verify that these changes will be lost on update.
  171. //save the session ID, status and initialize the session nonce
  172. global_session_info.session_id = *session_id;
  173. global_session_info.status = ACTIVE;
  174. global_session_info.active.counter = 0;
  175. memcpy(&global_session_info.active.AEK, &dh_aek, sizeof(sgx_key_128bit_t));
  176. memset(&dh_aek,0, sizeof(sgx_key_128bit_t));
  177. //g_session_count++;*/
  178. // }while(0);
  179. return status;
  180. }
  181. uint32_t create_ecdsa_key_pair(sgx_ec256_public_t* pub_key, sgx_ec256_private_t* priv_key)
  182. {
  183. sgx_status_t se_ret; sgx_status_t se_ret2;
  184. //create ECC context
  185. ecc_state = NULL;
  186. se_ret = sgx_ecc256_open_context(&ecc_state);
  187. if(SGX_SUCCESS != se_ret)
  188. return se_ret;
  189. // generate private key and public key
  190. se_ret = sgx_ecc256_create_key_pair(priv_key, pub_key, ecc_state);
  191. se_ret2 = sgx_ecc256_close_context(ecc_state);
  192. if(SGX_SUCCESS != se_ret || se_ret2!= SGX_SUCCESS) // something weird has happened - couldn't shut it down.
  193. return 0xFFFFFFFF;
  194. return SGX_SUCCESS;
  195. }
  196. // todo: set to private
  197. // todo: assumes that the length of the keystring is at least 3*SGX_ECP256_KEY_SIZE
  198. void serialize_key_pair_to_string(sgx_ec256_public_t* pub_key, sgx_ec256_private_t* signing_priv_key, uint8_t* private_public_key_string)
  199. {
  200. if(private_public_key_string != NULL) // nowhere to serialize to
  201. {
  202. uint32_t counter;
  203. if(pub_key != NULL) // public key to serialize
  204. {
  205. for(counter=0;counter<SGX_ECP256_KEY_SIZE; counter++)
  206. *(private_public_key_string+counter)=pub_key->gx[counter];
  207. for(counter=SGX_ECP256_KEY_SIZE;counter<2*SGX_ECP256_KEY_SIZE; counter++)
  208. *(private_public_key_string+counter)=pub_key->gy[counter-SGX_ECP256_KEY_SIZE];
  209. }
  210. if(signing_priv_key != NULL) // private key to serialize
  211. {
  212. for(counter=2*SGX_ECP256_KEY_SIZE;counter<3*SGX_ECP256_KEY_SIZE; counter++)
  213. *(private_public_key_string+counter)=signing_priv_key->r[counter - 2*SGX_ECP256_KEY_SIZE];
  214. }
  215. /*
  216. if(pub_key != NULL) // public key to serialize
  217. {
  218. for(counter=SGX_ECP256_KEY_SIZE;counter<2*SGX_ECP256_KEY_SIZE; counter++)
  219. *(private_public_key_string+counter)=pub_key->gx[counter-SGX_ECP256_KEY_SIZE];
  220. for(counter=2*SGX_ECP256_KEY_SIZE;counter<3*SGX_ECP256_KEY_SIZE; counter++)
  221. *(private_public_key_string+counter)=pub_key->gy[counter-2*SGX_ECP256_KEY_SIZE];
  222. }*/
  223. }
  224. }
  225. // todo: set to private
  226. void deserialize_string_to_key_pair(uint8_t* private_public_key_string, sgx_ec256_public_t* pub_key, sgx_ec256_private_t* signing_priv_key)
  227. {
  228. if(private_public_key_string != NULL) // nowhere to deserialize from
  229. {
  230. uint32_t counter;
  231. if(signing_priv_key != NULL)
  232. {
  233. for(counter=2*SGX_ECP256_KEY_SIZE;counter<3*SGX_ECP256_KEY_SIZE; counter++)
  234. signing_priv_key->r[counter-2*SGX_ECP256_KEY_SIZE]=*(private_public_key_string+counter);
  235. }
  236. if(pub_key != NULL)
  237. {
  238. for(counter=0;counter<SGX_ECP256_KEY_SIZE; counter++)
  239. pub_key->gx[counter]=*(private_public_key_string+counter);
  240. for(counter=SGX_ECP256_KEY_SIZE;counter<2*SGX_ECP256_KEY_SIZE; counter++)
  241. pub_key->gy[counter-SGX_ECP256_KEY_SIZE]=*(private_public_key_string+counter);
  242. }
  243. }
  244. }
  245. uint32_t create_and_seal_ecdsa_signing_key_pair(__attribute__((unused)) sgx_ec256_public_t* pub_key, __attribute__((unused)) uint32_t* sealed_data_length, __attribute__((unused)) uint8_t* sealed_data)
  246. {
  247. uint32_t ret_status; sgx_ec256_private_t private_key; uint32_t counter;
  248. ret_status=create_ecdsa_key_pair(pub_key, &private_key);
  249. if(ret_status!=SGX_SUCCESS)
  250. return ret_status;
  251. for(counter=0;counter<SGX_ECP256_KEY_SIZE; counter++)
  252. signing_priv_key.r[counter]=private_key.r[counter];
  253. // generating the entire string as there is no SGX function to generate the public key from the private one.
  254. uint8_t* private_public_key_string = (uint8_t*) malloc(3*SGX_ECP256_KEY_SIZE);
  255. uint8_t* sealed_data2 = (uint8_t*) malloc(*sealed_data_length);
  256. // serializing keypair to string
  257. serialize_key_pair_to_string(pub_key, &private_key, private_public_key_string);
  258. uint8_t* private_key_string = (uint8_t*) malloc(SGX_ECP256_KEY_SIZE);
  259. for(counter=0;counter<SGX_ECP256_KEY_SIZE;counter++)
  260. *(private_key_string+counter)=private_key.r[counter];
  261. // return *sealed_data_length;
  262. ret_status = sgx_seal_data(0, NULL, 3*SGX_ECP256_KEY_SIZE, private_public_key_string, *sealed_data_length, (sgx_sealed_data_t*) sealed_data2);
  263. for(counter=0;counter<*sealed_data_length;counter++)
  264. *(sealed_data+counter)=*(sealed_data2+counter);
  265. free(sealed_data2);
  266. free(private_key_string); //free(private_key);
  267. free(private_public_key_string);
  268. return ret_status; // SGX_SUCCESS;
  269. }
  270. /*
  271. uint32_t unseal_and_restore_sealed_signing_key_pair(__attribute__((unused)) sgx_ec256_public_t* pub_key, __attribute__((unused)) uint8_t* sealed_data, __attribute__((unused)) uint32_t* sgx_sealed_data_length)
  272. {
  273. return SGX_SUCCESS;
  274. }*/
  275. uint32_t unseal_and_restore_sealed_signing_key_pair(__attribute__((unused)) sgx_ec256_public_t* pub_key, uint8_t* sealed_data, size_t* sgx_sealed_data_length)
  276. {
  277. uint32_t expected_plaintext_msg_length; uint8_t* temp_plaintext; uint32_t counter; uint32_t ret_status;
  278. expected_plaintext_msg_length = sgx_get_encrypt_txt_len((sgx_sealed_data_t*)sealed_data);
  279. if(expected_plaintext_msg_length == 0xffffffff)
  280. return 0xFFFFFFFF;
  281. // uint32_t return_status;
  282. uint8_t* sealed_data2 = (uint8_t*) malloc(*sgx_sealed_data_length);
  283. for(counter=0;counter<*sgx_sealed_data_length;counter++)
  284. {
  285. *(sealed_data2+counter)=*(sealed_data+counter);
  286. }
  287. temp_plaintext = (uint8_t*)malloc( expected_plaintext_msg_length );
  288. ret_status = sgx_unseal_data((sgx_sealed_data_t*)sealed_data2, NULL, 0, temp_plaintext, &expected_plaintext_msg_length);
  289. if(ret_status != SGX_SUCCESS)
  290. {
  291. free(temp_plaintext);free(sealed_data2);
  292. switch(ret_status)
  293. {
  294. case SGX_ERROR_MAC_MISMATCH:
  295. // MAC of the sealed data is incorrect. The sealed data has been tampered.
  296. break;
  297. case SGX_ERROR_INVALID_ATTRIBUTE:
  298. // Indicates attribute field of the sealed data is incorrect.
  299. break;
  300. case SGX_ERROR_INVALID_ISVSVN:
  301. // Indicates isv_svn field of the sealed data is greater than the enclave�s ISVSVN. This is a downgraded enclave.
  302. break;
  303. case SGX_ERROR_INVALID_CPUSVN:
  304. // Indicates cpu_svn field of the sealed data is greater than the platform�s cpu_svn. enclave is on a downgraded platform.
  305. break;
  306. case SGX_ERROR_INVALID_KEYNAME:
  307. // Indicates key_name field of the sealed data is incorrect.
  308. break;
  309. default:
  310. // other errors
  311. break;
  312. }
  313. return ret_status;
  314. }
  315. deserialize_string_to_key_pair(temp_plaintext, pub_key, &signing_priv_key);
  316. free(temp_plaintext); free(sealed_data2);
  317. return SGX_SUCCESS;
  318. }
  319. uint32_t create_and_sign_client_side_pub_key(sgx_measurement_t* mr_enclave, sgx_ec256_public_t* generated_pub_key, sgx_ec256_signature_t* generated_signature)
  320. {
  321. // create key pair
  322. uint32_t ret_status = create_ecdsa_key_pair(&short_term_pub_key, &short_term_priv_key); uint32_t counter;
  323. uint32_t ret_status2;
  324. if(ret_status!=SGX_SUCCESS)
  325. return ret_status;
  326. // serialize public key, append mr_enclave
  327. uint8_t* public_key_string = (uint8_t*) malloc(3*SGX_ECP256_KEY_SIZE); // for .edl file - size parameter for serialize is 96 and this fits coz we need to append the mr_enclave to the pub key
  328. serialize_key_pair_to_string(&short_term_pub_key, NULL, public_key_string);
  329. for(counter=32*2; counter<32*3; counter++) // appending mr_enclave
  330. *(public_key_string+counter)=mr_enclave->m[counter];
  331. // retrieve long-term private key from global variable - apparently, need to create a local copy or it crashes
  332. sgx_ec256_private_t long_term_priv_key;
  333. for(counter=0; counter<SGX_ECP256_KEY_SIZE; counter++)
  334. long_term_priv_key.r[counter] = signing_priv_key.r[counter];
  335. // sign public key with long-term private key
  336. sgx_ec256_signature_t local_signature; sgx_ecc_state_handle_t ecc_handle;
  337. //// opening context for signature
  338. ret_status = sgx_ecc256_open_context(&ecc_handle);
  339. if(ret_status != SGX_SUCCESS)
  340. return ret_status;
  341. ret_status = sgx_ecdsa_sign(public_key_string,2*SGX_ECP256_KEY_SIZE, &long_term_priv_key, &local_signature, ecc_handle);
  342. ret_status2 = sgx_ecc256_close_context(ecc_handle);
  343. free(public_key_string);
  344. if(ret_status == SGX_SUCCESS)
  345. {
  346. for(counter=0; counter<SGX_ECP256_KEY_SIZE; counter++)
  347. generated_pub_key->gx[counter] = short_term_pub_key.gx[counter];
  348. for(counter=0;counter<SGX_NISTP_ECP256_KEY_SIZE ; counter++)
  349. {
  350. generated_signature->x[counter] = local_signature.x[counter];
  351. generated_signature->y[counter] = local_signature.y[counter];
  352. }
  353. }
  354. if(ret_status != SGX_SUCCESS || ret_status2 != SGX_SUCCESS)
  355. return 0xFFFFFFFF;
  356. return 0;
  357. }
  358. uint32_t calculate_sealed_data_size( uint32_t input_size)
  359. {
  360. // *op_size=sgx_calc_sealed_data_size(0, input_size);
  361. return sgx_calc_sealed_data_size(0, input_size);
  362. }
  363. // TODO: Fix this.
  364. //Respond to the request from the Source Enclave to close the session
  365. ATTESTATION_STATUS end_session(/**/)
  366. {
  367. return SUCCESS;
  368. }
  369. /*
  370. // Session_id is set to the first index of the pointer array that is non-null.(Not sure how it is ensured that all of them point to NULL at the start)
  371. // Why can't it just keep a counter that is incremented? What are the values of g_session_id_tracker array?
  372. //Returns a new sessionID for the source destination session
  373. ATTESTATION_STATUS generate_session_id(uint32_t *session_id)
  374. {
  375. ATTESTATION_STATUS status = SUCCESS;
  376. if(!session_id)
  377. {
  378. return INVALID_PARAMETER_ERROR;
  379. }
  380. //if the session structure is untintialized, set that as the next session ID
  381. for (int i = 0; i < MAX_SESSION_COUNT; i++)
  382. {
  383. if (g_session_id_tracker[i] == NULL)
  384. {
  385. *session_id = i;
  386. return status;
  387. }
  388. }
  389. status = NO_AVAILABLE_SESSION_ERROR;
  390. return status;
  391. */
  392. // *session_id=++global_session_id;
  393. //}