Decryptor.cpp 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279
  1. #include "Decryptor.h"
  2. #include "sgx_tseal.h"
  3. #include "sgx_tcrypto.h"
  4. #include "sgx_dh.h"
  5. #include "datatypes.h"
  6. #include "error_codes.h"
  7. ECDSASignatureBox Decryptor::signatureBox;
  8. HybridEncryptionBox Decryptor::hybridEncryptionBoxClient;
  9. SymmetricEncryptionBox Decryptor::symmetricEncryptionBoxApache;
  10. SymmetricEncryptionBox Decryptor::symmetricEncryptionBoxVerifier;
  11. uint8_t Decryptor::verifier_mr_enclave[32] = {0};
  12. uint8_t Decryptor::apache_mr_signer[32] = {0};
  13. unsigned int successful_la_count;
  14. uint8_t Decryptor::plaintext_mitigator_header_H[ECDH_PUBLIC_KEY_SIZE + 32 + 64] = {0};
  15. uint8_t Decryptor::first_decryption_output[1092] = {0};
  16. uint8_t Decryptor::plaintext_client_data[1000] = {0};
  17. // INTERNAL
  18. uint32_t Decryptor::create_mitigator_token_M(uint8_t* token)
  19. {
  20. uint32_t internal_return_status;
  21. uint32_t counter;
  22. // create short-term ECDH key pair
  23. internal_return_status = hybridEncryptionBoxClient.generate_keypair();
  24. if(internal_return_status != 0)
  25. return internal_return_status;
  26. hybridEncryptionBoxClient.get_public_key(token);
  27. // create token: concatenate short-term keypair with verifiers mrenclave.
  28. for(counter=0;counter<32;counter++)
  29. *(token + counter + ECDH_PUBLIC_KEY_SIZE) = verifier_mr_enclave[counter];
  30. return 0;
  31. }
  32. // INTERNAL
  33. uint32_t Decryptor::create_mitigator_header_H(uint8_t* signature_data_and_signature)
  34. {
  35. uint32_t internal_return_status;
  36. uint8_t local_signature_data_and_signature[ECDH_PUBLIC_KEY_SIZE + 32 + 64];
  37. uint32_t counter;
  38. internal_return_status = Decryptor::create_mitigator_token_M(local_signature_data_and_signature);
  39. if(internal_return_status != 0x0)
  40. return internal_return_status;
  41. internal_return_status = signatureBox.sign(local_signature_data_and_signature, ECDH_PUBLIC_KEY_SIZE + 32, local_signature_data_and_signature + ECDH_PUBLIC_KEY_SIZE + 32);
  42. if(internal_return_status != 0x0)
  43. return internal_return_status;
  44. for(counter=0;counter<ECDH_PUBLIC_KEY_SIZE + 32 + 64;counter++)
  45. signature_data_and_signature[counter] = local_signature_data_and_signature[counter];
  46. return 0;
  47. }
  48. // EXTERNAL ECALL.
  49. uint32_t Decryptor::create_and_encrypt_mitigator_header_H(uint8_t* ciphertext_token_H_plus_tag, uint32_t* op_length)
  50. {
  51. uint32_t temp_ciphertext_token_H_iv_tag_length;
  52. uint32_t internal_return_status;
  53. uint8_t plaintext_mitigator_header_H[ECDH_PUBLIC_KEY_SIZE + 32 + 64] = {0x42};
  54. if(successful_la_count != 2)
  55. return 0x33;
  56. internal_return_status = create_mitigator_header_H(plaintext_mitigator_header_H);
  57. if(internal_return_status != 0)
  58. return internal_return_status;
  59. internal_return_status = symmetricEncryptionBoxApache.encrypt_decrypt(1, plaintext_mitigator_header_H, ECDH_PUBLIC_KEY_SIZE + 32 + 64, ciphertext_token_H_plus_tag, &temp_ciphertext_token_H_iv_tag_length);
  60. *op_length = temp_ciphertext_token_H_iv_tag_length;
  61. return internal_return_status;
  62. }
  63. // INTERNAL. done. But there might be one more return statement for the case when get_keypair returns sth (it is non void).
  64. uint32_t Decryptor::create_long_term_signing_keypair(uint8_t* private_public_key_string)
  65. {
  66. uint32_t internal_return_status;
  67. internal_return_status = signatureBox.generate_keypair();
  68. if(internal_return_status != 0)
  69. return internal_return_status;
  70. signatureBox.get_keypair(private_public_key_string);
  71. return 0;
  72. }
  73. // INTERNAL.
  74. uint32_t Decryptor::initialize_symmetric_key_decrypt_client_data(uint8_t* plaintext_client_public_key_plus_encrypted_data_plus_tag, uint32_t total_length, uint8_t* plaintext_client_data, uint32_t* plaintext_client_data_length)
  75. {
  76. uint8_t* ciphertext_plus_tag;
  77. uint32_t ciphertext_plus_tag_length;
  78. uint32_t internal_return_status;
  79. // I will derive a shared key from the plaintext_client_public_key
  80. internal_return_status = hybridEncryptionBoxClient.initialize_symmetric_key(plaintext_client_public_key_plus_encrypted_data_plus_tag);
  81. if(internal_return_status != 0)
  82. return internal_return_status;
  83. // and then I will decrypt the rest of the client data with that key.
  84. ciphertext_plus_tag = plaintext_client_public_key_plus_encrypted_data_plus_tag + ECDH_PUBLIC_KEY_SIZE;
  85. ciphertext_plus_tag_length = total_length - ECDH_PUBLIC_KEY_SIZE;
  86. internal_return_status = hybridEncryptionBoxClient.encrypt_decrypt(0, ciphertext_plus_tag, ciphertext_plus_tag_length, plaintext_client_data, plaintext_client_data_length);
  87. return internal_return_status;
  88. }
  89. void Decryptor::testing_long_term_verification_key(uint8_t* output)
  90. {
  91. uint8_t keypair[ECDH_PUBLIC_KEY_SIZE + ECDH_PRIVATE_KEY_SIZE];
  92. uint32_t counter;
  93. signatureBox.get_keypair(keypair);
  94. for(counter=0;counter<ECDH_PUBLIC_KEY_SIZE; counter++)
  95. output[counter]=keypair[ECDH_PRIVATE_KEY_SIZE+counter];
  96. }
  97. // EXTERNAL. DONE.
  98. uint32_t Decryptor::create_and_seal_long_term_signing_key_pair(uint32_t* sealed_data_length, uint8_t* sealed_data)
  99. {
  100. uint32_t sgx_libcall_status;
  101. uint32_t internal_return_status;
  102. uint32_t temp_sealed_data_length;
  103. uint8_t* temp_sealed_data;
  104. uint8_t private_public_key_string[ECDH_PUBLIC_KEY_SIZE + ECDH_PRIVATE_KEY_SIZE];
  105. uint32_t counter;
  106. temp_sealed_data_length = sgx_calc_sealed_data_size(0, ECDH_PUBLIC_KEY_SIZE + ECDH_PRIVATE_KEY_SIZE);
  107. if(temp_sealed_data_length == 0xFFFFFFFF)
  108. return 0x01;
  109. temp_sealed_data = (uint8_t*) malloc(temp_sealed_data_length);
  110. internal_return_status = create_long_term_signing_keypair(private_public_key_string);
  111. if(internal_return_status != 0)
  112. {
  113. free(temp_sealed_data);
  114. return internal_return_status;
  115. }
  116. sgx_libcall_status = sgx_seal_data(0, NULL, 3*SGX_ECP256_KEY_SIZE, private_public_key_string, temp_sealed_data_length, (sgx_sealed_data_t*) temp_sealed_data);
  117. if(sgx_libcall_status != SGX_SUCCESS)
  118. {
  119. free(temp_sealed_data);
  120. return sgx_libcall_status;
  121. }
  122. for(counter=0;counter<temp_sealed_data_length;counter++)
  123. *(sealed_data + counter)= *(temp_sealed_data + counter);
  124. *sealed_data_length = temp_sealed_data_length;
  125. free(temp_sealed_data);
  126. return 0;
  127. }
  128. // EXTERNAL. DONE.
  129. uint32_t Decryptor::unseal_and_restore_long_term_signing_key_pair(uint8_t* sealed_data, uint32_t* sgx_sealed_data_length)
  130. {
  131. uint32_t temp_plaintext_length;
  132. uint8_t* temp_plaintext;
  133. uint32_t counter;
  134. uint32_t ret_status;
  135. uint8_t* temp_sealed_data ;
  136. temp_sealed_data = (uint8_t*) malloc(*sgx_sealed_data_length);
  137. for(counter=0;counter<*sgx_sealed_data_length;counter++)
  138. *(temp_sealed_data+counter)=*(sealed_data+counter);
  139. temp_plaintext_length = sgx_get_encrypt_txt_len((sgx_sealed_data_t*)sealed_data);
  140. if(temp_plaintext_length == 0xffffffff)
  141. return 0xFFFFFFFF;
  142. temp_plaintext = (uint8_t*)malloc( temp_plaintext_length );
  143. ret_status = sgx_unseal_data((sgx_sealed_data_t*)temp_sealed_data, NULL, 0, temp_plaintext, &temp_plaintext_length);
  144. free(temp_sealed_data);
  145. if(ret_status != SGX_SUCCESS)
  146. {
  147. free(temp_plaintext);
  148. return ret_status;
  149. }
  150. signatureBox.set_private_public_key(temp_plaintext, temp_plaintext + ECDH_PRIVATE_KEY_SIZE);
  151. free(temp_plaintext);
  152. return 0;
  153. }
  154. uint32_t Decryptor::process_verifiers_message(uint8_t* input_ciphertext_plus_tag, uint32_t length)
  155. {
  156. uint8_t first_decryption_output[150];
  157. uint32_t first_decryption_output_length;
  158. uint32_t internal_return_status;
  159. uint32_t counter;
  160. if(successful_la_count != 1) // else, the untrusted application can call this on the first message by apache and cause the verifier to set its mrsigner.
  161. return 0x23;
  162. internal_return_status = symmetricEncryptionBoxVerifier.encrypt_decrypt(0, input_ciphertext_plus_tag, length, first_decryption_output, &first_decryption_output_length);
  163. if(internal_return_status != 0)
  164. return internal_return_status;
  165. if(first_decryption_output_length != 32)
  166. return 0x33;
  167. for(counter=0; counter<32; counter++)
  168. apache_mr_signer[counter] = *(first_decryption_output + counter);
  169. return 0;
  170. }
  171. // EXTERNAL. DONE.
  172. uint32_t Decryptor::process_apache_message_generate_response(uint8_t* input_ciphertext, uint32_t input_ciphertext_plus_tag_length, uint8_t* output_ciphertext_plus_tag, uint32_t* output_ciphertext_plus_tag_length)
  173. {
  174. uint32_t first_decryption_output_length, plaintext_client_data_length;
  175. uint32_t internal_return_status;
  176. // TODO: May be have temporary variables for input ciphertext as they can't be passed directly to functions?
  177. // first, I decrypt the message from the target enclave, to get the client's public key and ciphertext data (and tag and IV)
  178. internal_return_status = symmetricEncryptionBoxApache.encrypt_decrypt(0, input_ciphertext, input_ciphertext_plus_tag_length, first_decryption_output, &first_decryption_output_length);
  179. if(internal_return_status != 0)
  180. return internal_return_status;
  181. // then I obtain the plaintext client data, using the client's public key and own key to ultimately decrypt the client's ciphertext data
  182. internal_return_status = initialize_symmetric_key_decrypt_client_data(first_decryption_output, first_decryption_output_length, plaintext_client_data, &plaintext_client_data_length);
  183. if(internal_return_status != 0)
  184. return internal_return_status;
  185. // then I will encrypt the plaintext data to the target enclave.
  186. internal_return_status = symmetricEncryptionBoxApache.encrypt_decrypt(1, plaintext_client_data, plaintext_client_data_length, output_ciphertext_plus_tag, output_ciphertext_plus_tag_length);
  187. return internal_return_status;
  188. }
  189. // INTERNAL.
  190. uint32_t Decryptor::verify_peer_enclave_trust(uint8_t* given_mr_enclave, uint8_t* given_mr_signer, uint8_t* dhaek)
  191. {
  192. uint32_t count;
  193. uint32_t internal_return_status;
  194. if(successful_la_count == 0) // verifier enclave
  195. {
  196. for(count=0; count<SGX_HASH_SIZE; count++)
  197. verifier_mr_enclave[count] = given_mr_enclave[count];
  198. symmetricEncryptionBoxVerifier.set_symmetric_key(dhaek);
  199. }
  200. else // apache enclave
  201. {
  202. for(count=0; count<SGX_HASH_SIZE; count++)
  203. {
  204. if( given_mr_signer[count] != apache_mr_signer[count] )
  205. return ENCLAVE_TRUST_ERROR;
  206. }
  207. symmetricEncryptionBoxApache.set_symmetric_key(dhaek);
  208. }
  209. successful_la_count ++;
  210. return SGX_SUCCESS;
  211. }
  212. void Decryptor::calculate_sealed_keypair_size(uint32_t* output_length)
  213. {
  214. *output_length = sgx_calc_sealed_data_size(0, ECDH_PUBLIC_KEY_SIZE + ECDH_PRIVATE_KEY_SIZE);
  215. }
  216. void Decryptor::testing_get_verifier_mrenclave_apache_mrsigner(uint8_t* output)
  217. {
  218. uint32_t counter;
  219. for(counter=0; counter<32;counter++)
  220. {
  221. output[counter]=verifier_mr_enclave[counter];
  222. output[counter+32]=apache_mr_signer[counter];
  223. }
  224. }
  225. void Decryptor::testing_get_short_term_public_key(uint8_t* output)
  226. {
  227. hybridEncryptionBoxClient.get_public_key(output);
  228. }
  229. void Decryptor::testing_get_apache_iv(uint8_t* op)
  230. {
  231. // symmetricEncryptionBoxApache.get_iv(op);
  232. }