EnclaveMessageExchange.cpp 29 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858
  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 enclave_to_enclave_call_dispatcher(char* decrypted_data, size_t decrypted_data_length, char** resp_buffer, size_t* resp_length);
  48. uint32_t message_exchange_response_generator(char* decrypted_data, char** resp_buffer, size_t* resp_length);
  49. uint32_t verify_peer_enclave_trust(sgx_dh_session_enclave_identity_t* peer_enclave_identity);
  50. #ifdef __cplusplus
  51. }
  52. #endif
  53. #define MAX_SESSION_COUNT 16
  54. //number of open sessions
  55. // uint32_t g_session_count = 0;
  56. ATTESTATION_STATUS generate_session_id(uint32_t *session_id);
  57. ATTESTATION_STATUS end_session();
  58. sgx_ec256_private_t signing_priv_key;
  59. sgx_ecc_state_handle_t ecc_state;
  60. uint32_t session_ids[MAX_SESSION_COUNT];
  61. // Our enclave will not be doing LA with more than 1 decryptor enclave at a time.
  62. // We should not need this.
  63. //std::map<int, dh_session_t>g_dest_session_info_map;
  64. dh_session_t global_session_info;
  65. // TODO: May be we need to store all previously assigned session IDs instead of just the counter; to prevent replay attacks -
  66. uint32_t global_session_id=0;
  67. //Handle the request from Source Enclave for a session
  68. ATTESTATION_STATUS session_request(sgx_dh_msg1_t *dh_msg1,
  69. uint32_t *session_id )
  70. {
  71. // dh_session_t session_info;
  72. sgx_dh_session_t sgx_dh_session;
  73. sgx_status_t status = SGX_SUCCESS;
  74. if(!session_id || !dh_msg1)
  75. {
  76. return INVALID_PARAMETER_ERROR;
  77. }
  78. //Intialize the session as a session responder
  79. status = sgx_dh_init_session(SGX_DH_SESSION_RESPONDER, &sgx_dh_session);
  80. if(SGX_SUCCESS != status)
  81. {
  82. return status;
  83. }
  84. *session_id=1;
  85. global_session_info.status = IN_PROGRESS;
  86. //Generate Message1 that will be returned to Source Enclave
  87. status = sgx_dh_responder_gen_msg1((sgx_dh_msg1_t*)dh_msg1, &sgx_dh_session);
  88. if(SGX_SUCCESS != status)
  89. {
  90. global_session_id--;
  91. // SAFE_FREE(g_session_id_tracker[*session_id]);
  92. return status;
  93. }
  94. memcpy(&global_session_info.in_progress.dh_session, &sgx_dh_session, sizeof(sgx_dh_session_t));
  95. //return sgx_seal_data(0, NULL, 0, NULL, 0, NULL);
  96. //Store the session information under the correspoding source enlave id key
  97. // g_dest_session_info_map.insert(std::pair<sgx_enclave_id_t, dh_session_t>(src_enclave_id, session_info));
  98. return status;
  99. }
  100. //Verify Message 2, generate Message3 and exchange Message 3 with Source Enclave
  101. ATTESTATION_STATUS exchange_report(
  102. sgx_dh_msg2_t *dh_msg2,
  103. sgx_dh_msg3_t *dh_msg3,
  104. uint32_t* session_id)
  105. {
  106. sgx_key_128bit_t dh_aek; // Session key
  107. // dh_session_t session_info;
  108. ATTESTATION_STATUS status = SUCCESS;
  109. sgx_dh_session_t sgx_dh_session;
  110. sgx_dh_session_enclave_identity_t initiator_identity;
  111. if(!dh_msg2 || !dh_msg3)
  112. {
  113. return INVALID_PARAMETER_ERROR;
  114. }
  115. memset(&dh_aek,0, sizeof(sgx_key_128bit_t));
  116. // Why is there a do-while loop anyway? It seems like there is no successful exit ...
  117. // do
  118. // {
  119. // TODO: Make sure that this works - pointers
  120. // session_info = global_session_info;
  121. if(global_session_info.status != IN_PROGRESS)
  122. {
  123. status = INVALID_SESSION;
  124. end_session();
  125. }
  126. memcpy(&sgx_dh_session, &global_session_info.in_progress.dh_session, sizeof(sgx_dh_session_t));
  127. dh_msg3->msg3_body.additional_prop_length = 0;
  128. //Process message 2 from source enclave and obtain message 3
  129. sgx_status_t se_ret = sgx_dh_responder_proc_msg2(dh_msg2,
  130. dh_msg3,
  131. &sgx_dh_session,
  132. &dh_aek,
  133. &initiator_identity);
  134. if(SGX_SUCCESS != se_ret)
  135. {
  136. status = se_ret;
  137. end_session();
  138. }
  139. // THIS IS WHERE THE DECRYPTOR VERIFIES THE APACHE'S MRSIGNER IS THE PUBLIC KEY GIVEN AFTER THE LOCAL ATTESTATION WITH THE VERIFIER.
  140. //Verify source enclave's trust
  141. uint32_t ret = verify_peer_enclave_trust(&initiator_identity);
  142. if(ret != SUCCESS)
  143. {
  144. return ret; //INVALID_SESSION;
  145. }
  146. // TODO: Verify that these changes will be lost on update.
  147. //save the session ID, status and initialize the session nonce
  148. global_session_info.session_id = *session_id;
  149. global_session_info.status = ACTIVE;
  150. global_session_info.active.counter = 0;
  151. memcpy(&global_session_info.active.AEK, &dh_aek, sizeof(sgx_key_128bit_t));
  152. memset(&dh_aek,0, sizeof(sgx_key_128bit_t));
  153. //g_session_count++;*/
  154. // }while(0);
  155. return status;
  156. }
  157. uint32_t create_ecdsa_key_pair(sgx_ec256_public_t* pub_key, sgx_ec256_private_t* priv_key)
  158. {
  159. sgx_status_t se_ret; sgx_status_t se_ret2;
  160. //create ECC context
  161. ecc_state = NULL;
  162. se_ret = sgx_ecc256_open_context(&ecc_state);
  163. if(SGX_SUCCESS != se_ret)
  164. return se_ret;
  165. // generate private key and public key
  166. se_ret = sgx_ecc256_create_key_pair(priv_key, pub_key, ecc_state);
  167. se_ret2 = sgx_ecc256_close_context(ecc_state);
  168. if(SGX_SUCCESS != se_ret && se_ret2!= SGX_SUCCESS) // something weird has happened - couldn't shut it down.
  169. return 0xFFFFFFFF;
  170. return SGX_SUCCESS;
  171. }
  172. // todo: set to private
  173. // todo: assumes that the length of the keystring is at least 3*SGX_ECP256_KEY_SIZE
  174. void serialize_signing_key_pair_to_string(sgx_ec256_public_t* pub_key, sgx_ec256_private_t* signing_priv_key, uint8_t* private_public_key_string)
  175. {
  176. if(private_public_key_string != NULL) // nowhere to serialize to
  177. {
  178. uint32_t counter;
  179. if(pub_key != NULL) // public key to serialize
  180. {
  181. for(counter=0;counter<SGX_ECP256_KEY_SIZE; counter++)
  182. *(private_public_key_string+counter)=pub_key->gx[counter];
  183. for(counter=SGX_ECP256_KEY_SIZE;counter<2*SGX_ECP256_KEY_SIZE; counter++)
  184. *(private_public_key_string+counter)=pub_key->gy[counter-SGX_ECP256_KEY_SIZE];
  185. }
  186. if(signing_priv_key != NULL) // private key to serialize
  187. {
  188. for(counter=2*SGX_ECP256_KEY_SIZE;counter<3*SGX_ECP256_KEY_SIZE; counter++)
  189. *(private_public_key_string+counter)=signing_priv_key->r[counter - 2*SGX_ECP256_KEY_SIZE];
  190. }
  191. /*
  192. if(pub_key != NULL) // public key to serialize
  193. {
  194. for(counter=SGX_ECP256_KEY_SIZE;counter<2*SGX_ECP256_KEY_SIZE; counter++)
  195. *(private_public_key_string+counter)=pub_key->gx[counter-SGX_ECP256_KEY_SIZE];
  196. for(counter=2*SGX_ECP256_KEY_SIZE;counter<3*SGX_ECP256_KEY_SIZE; counter++)
  197. *(private_public_key_string+counter)=pub_key->gy[counter-2*SGX_ECP256_KEY_SIZE];
  198. }*/
  199. }
  200. }
  201. // todo: set to private
  202. void deserialize_string_to_public_private_key_pair(uint8_t* private_public_key_string, sgx_ec256_public_t* pub_key, sgx_ec256_private_t* signing_priv_key)
  203. {
  204. if(private_public_key_string != NULL) // nowhere to deserialize from
  205. {
  206. uint32_t counter;
  207. if(signing_priv_key != NULL)
  208. {
  209. for(counter=2*SGX_ECP256_KEY_SIZE;counter<3*SGX_ECP256_KEY_SIZE; counter++)
  210. signing_priv_key->r[counter-2*SGX_ECP256_KEY_SIZE]=*(private_public_key_string+counter);
  211. }
  212. if(pub_key != NULL)
  213. {
  214. for(counter=0;counter<SGX_ECP256_KEY_SIZE; counter++)
  215. pub_key->gx[counter]=*(private_public_key_string+counter);
  216. for(counter=SGX_ECP256_KEY_SIZE;counter<2*SGX_ECP256_KEY_SIZE; counter++)
  217. pub_key->gy[counter-SGX_ECP256_KEY_SIZE]=*(private_public_key_string+counter);
  218. }
  219. }
  220. }
  221. 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)
  222. {
  223. uint32_t ret_status; sgx_ec256_private_t private_key; uint32_t counter;
  224. ret_status=create_ecdsa_key_pair(pub_key, &private_key);
  225. if(ret_status!=SGX_SUCCESS)
  226. return ret_status;
  227. for(counter=0;counter<SGX_ECP256_KEY_SIZE; counter++)
  228. signing_priv_key.r[counter]=private_key.r[counter];
  229. // generating the entire string as there is no SGX function to generate the public key from the private one.
  230. uint8_t* private_public_key_string = (uint8_t*) malloc(3*SGX_ECP256_KEY_SIZE);
  231. uint8_t* sealed_data2 = (uint8_t*) malloc(*sealed_data_length);
  232. // serializing keypair to string
  233. serialize_signing_key_pair_to_string(pub_key, &private_key, private_public_key_string);
  234. uint8_t* private_key_string = (uint8_t*) malloc(SGX_ECP256_KEY_SIZE);
  235. for(counter=0;counter<SGX_ECP256_KEY_SIZE;counter++)
  236. *(private_key_string+counter)=private_key.r[counter];
  237. // return *sealed_data_length;
  238. 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);
  239. for(counter=0;counter<*sealed_data_length;counter++)
  240. *(sealed_data+counter)=*(sealed_data2+counter);
  241. free(sealed_data2);
  242. free(private_key_string); //free(private_key);
  243. free(private_public_key_string);
  244. return ret_status; // SGX_SUCCESS;
  245. }
  246. /*
  247. 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)
  248. {
  249. return SGX_SUCCESS;
  250. }*/
  251. 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)
  252. {
  253. uint32_t expected_plaintext_msg_length; uint8_t* temp_plaintext; uint32_t counter; uint32_t ret_status;
  254. expected_plaintext_msg_length = sgx_get_encrypt_txt_len((sgx_sealed_data_t*)sealed_data);
  255. if(expected_plaintext_msg_length == 0xffffffff)
  256. return 0xFFFFFFFF;
  257. // uint32_t return_status;
  258. uint8_t* sealed_data2 = (uint8_t*) malloc(*sgx_sealed_data_length);
  259. for(counter=0;counter<*sgx_sealed_data_length;counter++)
  260. {
  261. *(sealed_data2+counter)=*(sealed_data+counter);
  262. }
  263. temp_plaintext = (uint8_t*)malloc( expected_plaintext_msg_length );
  264. ret_status = sgx_unseal_data((sgx_sealed_data_t*)sealed_data2, NULL, 0, temp_plaintext, &expected_plaintext_msg_length);
  265. if(ret_status != SGX_SUCCESS)
  266. {
  267. free(temp_plaintext);free(sealed_data2);
  268. switch(ret_status)
  269. {
  270. case SGX_ERROR_MAC_MISMATCH:
  271. // MAC of the sealed data is incorrect. The sealed data has been tampered.
  272. break;
  273. case SGX_ERROR_INVALID_ATTRIBUTE:
  274. // Indicates attribute field of the sealed data is incorrect.
  275. break;
  276. case SGX_ERROR_INVALID_ISVSVN:
  277. // Indicates isv_svn field of the sealed data is greater than the enclave�s ISVSVN. This is a downgraded enclave.
  278. break;
  279. case SGX_ERROR_INVALID_CPUSVN:
  280. // Indicates cpu_svn field of the sealed data is greater than the platform�s cpu_svn. enclave is on a downgraded platform.
  281. break;
  282. case SGX_ERROR_INVALID_KEYNAME:
  283. // Indicates key_name field of the sealed data is incorrect.
  284. break;
  285. default:
  286. // other errors
  287. break;
  288. }
  289. return ret_status;
  290. }
  291. deserialize_string_to_public_private_key_pair(temp_plaintext, pub_key, &signing_priv_key);
  292. free(temp_plaintext); free(sealed_data2);
  293. return SGX_SUCCESS;
  294. }
  295. uint32_t calculate_sealed_data_size( uint32_t input_size)
  296. {
  297. // *op_size=sgx_calc_sealed_data_size(0, input_size);
  298. return sgx_calc_sealed_data_size(0, input_size);
  299. }
  300. /*
  301. uint32_t create_ecdsa_key_pair( sgx_ec256_public_t* pub_key )
  302. {
  303. //sgx_ec256_public_t pub_key;
  304. sgx_status_t se_ret;
  305. //create ECC context
  306. ecc_state = NULL;
  307. se_ret = sgx_ecc256_open_context(&ecc_state);
  308. if(SGX_SUCCESS != se_ret)
  309. {
  310. return se_ret;
  311. }
  312. // generate private key and public key
  313. se_ret = sgx_ecc256_create_key_pair(&signing_priv_key, pub_key, ecc_state);
  314. if(SGX_SUCCESS != se_ret)
  315. return se_ret;
  316. se_ret = sgx_ecc256_close_context(ecc_state);
  317. // if(SGX_SUCCESS != se_ret)
  318. // return se_ret;
  319. return se_ret;
  320. }
  321. */
  322. /*
  323. uint32_t generate_and_seal_signing_private_key(uint8_t* pub_key, )
  324. {
  325. uint32_t ret_status;
  326. ret_status=create_ecdsa_key_pair(pub_key);
  327. if(ret_status!=SGX_SUCCESS)
  328. return ret_status;
  329. uint8_t* public_key_string = (uint8_t*) malloc(2*SGX_ECP256_KEY_SIZE);
  330. uint32_t counter;
  331. for(counter=0;counter<SGX_ECP256_KEY_SIZE; counter++)
  332. {
  333. *(public_key_string+counter)=pub_key->gx[counter];
  334. }
  335. for(counter=SGX_ECP256_KEY_SIZE;counter<2*SGX_ECP256_KEY_SIZE; counter++)
  336. {
  337. *(public_key_string+counter)=pub_key->gy[counter];
  338. }
  339. // sgx_seal_data() call
  340. uint32_t expected_sealed_data_length=sgx_calc_sealed_data_size(0,2*ECP256_KEY_SIZE);
  341. if(expected_sealed_data_length == 0xFFFFFFFF)
  342. return 0xFFFFFFFF;
  343. uint8_t* sealed_data=(uint8_t*) malloc(expected_sealed_data_length);
  344. sgx_sealed_data_t sealed_data;
  345. sgx_seal_data(0, NULL, public_key_string, 2*ECP256_KEY_SIZE, );
  346. free(public_key_string);
  347. }
  348. */
  349. /*
  350. uint32_t sign_with_signing_private_key(uint8_t* data, uint8_t* length)
  351. {
  352. }
  353. */
  354. // uint32_t create_
  355. /*
  356. //Request for the response size, send the request message to the destination enclave and receive the response message back
  357. ATTESTATION_STATUS send_request_receive_response(
  358. sgx_enclave_id_t dest_enclave_id,
  359. dh_session_t *session_info,
  360. char *inp_buff,
  361. size_t inp_buff_len,
  362. size_t max_out_buff_size,
  363. char **out_buff,
  364. size_t* out_buff_len)
  365. {
  366. const uint8_t* plaintext;
  367. uint32_t plaintext_length;
  368. sgx_status_t status;
  369. uint32_t retstatus;
  370. secure_message_t* req_message;
  371. secure_message_t* resp_message;
  372. uint8_t *decrypted_data;
  373. uint32_t decrypted_data_length;
  374. uint32_t plain_text_offset;
  375. uint8_t l_tag[TAG_SIZE];
  376. size_t max_resp_message_length;
  377. plaintext = (const uint8_t*)(" ");
  378. plaintext_length = 0;
  379. if(!session_info || !inp_buff)
  380. {
  381. return INVALID_PARAMETER_ERROR;
  382. }
  383. // TODO: Figure out what this was supposed to be for.
  384. //Check if the nonce for the session has not exceeded 2^32-2 if so end session and start a new session
  385. if(session_info->active.counter == ((uint32_t) - 2))
  386. {
  387. close_session(src_enclave_id, dest_enclave_id);
  388. create_session(src_enclave_id, dest_enclave_id, session_info);
  389. }
  390. //Allocate memory for the AES-GCM request message
  391. req_message = (secure_message_t*)malloc(sizeof(secure_message_t)+ inp_buff_len);
  392. if(!req_message)
  393. {
  394. return MALLOC_ERROR;
  395. }
  396. memset(req_message,0,sizeof(secure_message_t)+ inp_buff_len);
  397. const uint32_t data2encrypt_length = (uint32_t)inp_buff_len;
  398. //Set the payload size to data to encrypt length
  399. req_message->message_aes_gcm_data.payload_size = data2encrypt_length;
  400. //Use the session nonce as the payload IV
  401. memcpy(req_message->message_aes_gcm_data.reserved,&session_info->active.counter,sizeof(session_info->active.counter));
  402. //Set the session ID of the message to the current session id
  403. req_message->session_id = session_info->session_id;
  404. //Prepare the request message with the encrypted payload
  405. status = sgx_rijndael128GCM_encrypt(&session_info->active.AEK, (uint8_t*)inp_buff, data2encrypt_length,
  406. reinterpret_cast<uint8_t *>(&(req_message->message_aes_gcm_data.payload)),
  407. reinterpret_cast<uint8_t *>(&(req_message->message_aes_gcm_data.reserved)),
  408. sizeof(req_message->message_aes_gcm_data.reserved), plaintext, plaintext_length,
  409. &(req_message->message_aes_gcm_data.payload_tag));
  410. if(SGX_SUCCESS != status)
  411. {
  412. SAFE_FREE(req_message);
  413. return status;
  414. }
  415. //Allocate memory for the response payload to be copied
  416. *out_buff = (char*)malloc(max_out_buff_size);
  417. if(!*out_buff)
  418. {
  419. SAFE_FREE(req_message);
  420. return MALLOC_ERROR;
  421. }
  422. memset(*out_buff, 0, max_out_buff_size);
  423. //Allocate memory for the response message
  424. resp_message = (secure_message_t*)malloc(sizeof(secure_message_t)+ max_out_buff_size);
  425. if(!resp_message)
  426. {
  427. SAFE_FREE(req_message);
  428. return MALLOC_ERROR;
  429. }
  430. memset(resp_message, 0, sizeof(secure_message_t)+ max_out_buff_size);
  431. // TODO: This should not exist.
  432. //Ocall to send the request to the Destination Enclave and get the response message back
  433. status = send_request_ocall(&retstatus, src_enclave_id, dest_enclave_id, req_message,
  434. (sizeof(secure_message_t)+ inp_buff_len), max_out_buff_size,
  435. resp_message, (sizeof(secure_message_t)+ max_out_buff_size));
  436. if (status == SGX_SUCCESS)
  437. {
  438. if ((ATTESTATION_STATUS)retstatus != SUCCESS)
  439. {
  440. SAFE_FREE(req_message);
  441. SAFE_FREE(resp_message);
  442. return ((ATTESTATION_STATUS)retstatus);
  443. }
  444. }
  445. else
  446. {
  447. SAFE_FREE(req_message);
  448. SAFE_FREE(resp_message);
  449. return ATTESTATION_SE_ERROR;
  450. }
  451. max_resp_message_length = sizeof(secure_message_t)+ max_out_buff_size;
  452. if(sizeof(resp_message) > max_resp_message_length)
  453. {
  454. SAFE_FREE(req_message);
  455. SAFE_FREE(resp_message);
  456. return INVALID_PARAMETER_ERROR;
  457. }
  458. //Code to process the response message from the Destination Enclave
  459. decrypted_data_length = resp_message->message_aes_gcm_data.payload_size;
  460. plain_text_offset = decrypted_data_length;
  461. decrypted_data = (uint8_t*)malloc(decrypted_data_length);
  462. if(!decrypted_data)
  463. {
  464. SAFE_FREE(req_message);
  465. SAFE_FREE(resp_message);
  466. return MALLOC_ERROR;
  467. }
  468. memset(&l_tag, 0, 16);
  469. memset(decrypted_data, 0, decrypted_data_length);
  470. //Decrypt the response message payload
  471. status = sgx_rijndael128GCM_decrypt(&session_info->active.AEK, resp_message->message_aes_gcm_data.payload,
  472. decrypted_data_length, decrypted_data,
  473. reinterpret_cast<uint8_t *>(&(resp_message->message_aes_gcm_data.reserved)),
  474. sizeof(resp_message->message_aes_gcm_data.reserved), &(resp_message->message_aes_gcm_data.payload[plain_text_offset]), plaintext_length,
  475. &resp_message->message_aes_gcm_data.payload_tag);
  476. if(SGX_SUCCESS != status)
  477. {
  478. SAFE_FREE(req_message);
  479. SAFE_FREE(decrypted_data);
  480. SAFE_FREE(resp_message);
  481. return status;
  482. }
  483. // Verify if the nonce obtained in the response is equal to the session nonce + 1 (Prevents replay attacks)
  484. if(*(resp_message->message_aes_gcm_data.reserved) != (session_info->active.counter + 1 ))
  485. {
  486. SAFE_FREE(req_message);
  487. SAFE_FREE(resp_message);
  488. SAFE_FREE(decrypted_data);
  489. return INVALID_PARAMETER_ERROR;
  490. }
  491. //Update the value of the session nonce in the source enclave
  492. session_info->active.counter = session_info->active.counter + 1;
  493. memcpy(out_buff_len, &decrypted_data_length, sizeof(decrypted_data_length));
  494. memcpy(*out_buff, decrypted_data, decrypted_data_length);
  495. SAFE_FREE(decrypted_data);
  496. SAFE_FREE(req_message);
  497. SAFE_FREE(resp_message);
  498. return SUCCESS;
  499. }
  500. */
  501. /*
  502. //Process the request from the Source enclave and send the response message back to the Source enclave
  503. ATTESTATION_STATUS generate_response(sgx_enclave_id_t src_enclave_id,
  504. secure_message_t* req_message,
  505. size_t req_message_size,
  506. size_t max_payload_size,
  507. secure_message_t* resp_message,
  508. size_t resp_message_size)
  509. {
  510. const uint8_t* plaintext;
  511. uint32_t plaintext_length;
  512. uint8_t *decrypted_data;
  513. uint32_t decrypted_data_length;
  514. uint32_t plain_text_offset;
  515. ms_in_msg_exchange_t * ms;
  516. size_t resp_data_length;
  517. size_t resp_message_calc_size;
  518. char* resp_data;
  519. uint8_t l_tag[TAG_SIZE];
  520. size_t header_size, expected_payload_size;
  521. dh_session_t *session_info;
  522. secure_message_t* temp_resp_message;
  523. uint32_t ret;
  524. sgx_status_t status;
  525. plaintext = (const uint8_t*)(" ");
  526. plaintext_length = 0;
  527. if(!req_message || !resp_message)
  528. {
  529. return INVALID_PARAMETER_ERROR;
  530. }
  531. // TODO: Set session_info from somewhere.
  532. //Get the session information from the map corresponding to the source enclave id
  533. std::map<sgx_enclave_id_t, dh_session_t>::iterator it = g_dest_session_info_map.find(src_enclave_id);
  534. if(it != g_dest_session_info_map.end())
  535. {
  536. session_info = &it->second;
  537. }
  538. else
  539. {
  540. return INVALID_SESSION;
  541. }
  542. if(session_info->status != ACTIVE)
  543. {
  544. return INVALID_SESSION;
  545. }
  546. //Set the decrypted data length to the payload size obtained from the message
  547. decrypted_data_length = req_message->message_aes_gcm_data.payload_size;
  548. header_size = sizeof(secure_message_t);
  549. expected_payload_size = req_message_size - header_size;
  550. //Verify the size of the payload
  551. if(expected_payload_size != decrypted_data_length)
  552. return INVALID_PARAMETER_ERROR;
  553. memset(&l_tag, 0, 16);
  554. plain_text_offset = decrypted_data_length;
  555. decrypted_data = (uint8_t*)malloc(decrypted_data_length);
  556. if(!decrypted_data)
  557. {
  558. return MALLOC_ERROR;
  559. }
  560. memset(decrypted_data, 0, decrypted_data_length);
  561. //Decrypt the request message payload from source enclave
  562. status = sgx_rijndael128GCM_decrypt(&session_info->active.AEK, req_message->message_aes_gcm_data.payload,
  563. decrypted_data_length, decrypted_data,
  564. reinterpret_cast<uint8_t *>(&(req_message->message_aes_gcm_data.reserved)),
  565. sizeof(req_message->message_aes_gcm_data.reserved), &(req_message->message_aes_gcm_data.payload[plain_text_offset]), plaintext_length,
  566. &req_message->message_aes_gcm_data.payload_tag);
  567. if(SGX_SUCCESS != status)
  568. {
  569. SAFE_FREE(decrypted_data);
  570. return status;
  571. }
  572. //Casting the decrypted data to the marshaling structure type to obtain type of request (generic message exchange/enclave to enclave call)
  573. ms = (ms_in_msg_exchange_t *)decrypted_data;
  574. // Verify if the nonce obtained in the request is equal to the session nonce
  575. if((uint32_t)*(req_message->message_aes_gcm_data.reserved) != session_info->active.counter || *(req_message->message_aes_gcm_data.reserved) > ((2^32)-2))
  576. {
  577. SAFE_FREE(decrypted_data);
  578. return INVALID_PARAMETER_ERROR;
  579. }
  580. if(ms->msg_type == MESSAGE_EXCHANGE)
  581. {
  582. //Call the generic secret response generator for message exchange
  583. ret = message_exchange_response_generator((char*)decrypted_data, &resp_data, &resp_data_length);
  584. if(ret !=0)
  585. {
  586. SAFE_FREE(decrypted_data);
  587. SAFE_FREE(resp_data);
  588. return INVALID_SESSION;
  589. }
  590. }
  591. else if(ms->msg_type == ENCLAVE_TO_ENCLAVE_CALL)
  592. {
  593. //Call the destination enclave's dispatcher to call the appropriate function in the destination enclave
  594. ret = enclave_to_enclave_call_dispatcher((char*)decrypted_data, decrypted_data_length, &resp_data, &resp_data_length);
  595. if(ret !=0)
  596. {
  597. SAFE_FREE(decrypted_data);
  598. SAFE_FREE(resp_data);
  599. return INVALID_SESSION;
  600. }
  601. }
  602. else
  603. {
  604. SAFE_FREE(decrypted_data);
  605. return INVALID_REQUEST_TYPE_ERROR;
  606. }
  607. if(resp_data_length > max_payload_size)
  608. {
  609. SAFE_FREE(resp_data);
  610. SAFE_FREE(decrypted_data);
  611. return OUT_BUFFER_LENGTH_ERROR;
  612. }
  613. resp_message_calc_size = sizeof(secure_message_t)+ resp_data_length;
  614. if(resp_message_calc_size > resp_message_size)
  615. {
  616. SAFE_FREE(resp_data);
  617. SAFE_FREE(decrypted_data);
  618. return OUT_BUFFER_LENGTH_ERROR;
  619. }
  620. //Code to build the response back to the Source Enclave
  621. temp_resp_message = (secure_message_t*)malloc(resp_message_calc_size);
  622. if(!temp_resp_message)
  623. {
  624. SAFE_FREE(resp_data);
  625. SAFE_FREE(decrypted_data);
  626. return MALLOC_ERROR;
  627. }
  628. memset(temp_resp_message,0,sizeof(secure_message_t)+ resp_data_length);
  629. const uint32_t data2encrypt_length = (uint32_t)resp_data_length;
  630. temp_resp_message->session_id = session_info->session_id;
  631. temp_resp_message->message_aes_gcm_data.payload_size = data2encrypt_length;
  632. //Increment the Session Nonce (Replay Protection)
  633. session_info->active.counter = session_info->active.counter + 1;
  634. //Set the response nonce as the session nonce
  635. memcpy(&temp_resp_message->message_aes_gcm_data.reserved,&session_info->active.counter,sizeof(session_info->active.counter));
  636. //Prepare the response message with the encrypted payload
  637. status = sgx_rijndael128GCM_encrypt(&session_info->active.AEK, (uint8_t*)resp_data, data2encrypt_length,
  638. reinterpret_cast<uint8_t *>(&(temp_resp_message->message_aes_gcm_data.payload)),
  639. reinterpret_cast<uint8_t *>(&(temp_resp_message->message_aes_gcm_data.reserved)),
  640. sizeof(temp_resp_message->message_aes_gcm_data.reserved), plaintext, plaintext_length,
  641. &(temp_resp_message->message_aes_gcm_data.payload_tag));
  642. if(SGX_SUCCESS != status)
  643. {
  644. SAFE_FREE(resp_data);
  645. SAFE_FREE(decrypted_data);
  646. SAFE_FREE(temp_resp_message);
  647. return status;
  648. }
  649. memset(resp_message, 0, sizeof(secure_message_t)+ resp_data_length);
  650. memcpy(resp_message, temp_resp_message, sizeof(secure_message_t)+ resp_data_length);
  651. SAFE_FREE(decrypted_data);
  652. SAFE_FREE(resp_data);
  653. SAFE_FREE(temp_resp_message);
  654. return SUCCESS;
  655. }
  656. */
  657. /*
  658. //Close a current session
  659. ATTESTATION_STATUS close_session(sgx_enclave_id_t src_enclave_id,
  660. sgx_enclave_id_t dest_enclave_id)
  661. {
  662. sgx_status_t status;
  663. uint32_t retstatus;
  664. //Ocall to ask the destination enclave to end the session
  665. status = end_session_ocall(&retstatus, src_enclave_id, dest_enclave_id);
  666. if (status == SGX_SUCCESS)
  667. {
  668. if ((ATTESTATION_STATUS)retstatus != SUCCESS)
  669. return ((ATTESTATION_STATUS)retstatus);
  670. }
  671. else
  672. {
  673. return ATTESTATION_SE_ERROR;
  674. }
  675. return SUCCESS;
  676. }
  677. */
  678. // TODO: Fix this.
  679. //Respond to the request from the Source Enclave to close the session
  680. ATTESTATION_STATUS end_session(/**/)
  681. {
  682. return SUCCESS;
  683. }
  684. /*
  685. // 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)
  686. // Why can't it just keep a counter that is incremented? What are the values of g_session_id_tracker array?
  687. //Returns a new sessionID for the source destination session
  688. ATTESTATION_STATUS generate_session_id(uint32_t *session_id)
  689. {
  690. ATTESTATION_STATUS status = SUCCESS;
  691. if(!session_id)
  692. {
  693. return INVALID_PARAMETER_ERROR;
  694. }
  695. //if the session structure is untintialized, set that as the next session ID
  696. for (int i = 0; i < MAX_SESSION_COUNT; i++)
  697. {
  698. if (g_session_id_tracker[i] == NULL)
  699. {
  700. *session_id = i;
  701. return status;
  702. }
  703. }
  704. status = NO_AVAILABLE_SESSION_ERROR;
  705. return status;
  706. */
  707. // *session_id=++global_session_id;
  708. //}