SgxProtobufLAInitiator.cpp 5.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177
  1. #include "sgx_eid.h"
  2. #define __STDC_FORMAT_MACROS
  3. #include <inttypes.h>
  4. #include "ProtobufLAMessages.h"
  5. #include <stdio.h>
  6. #include "sgx_trts.h"
  7. #include "sgx_utils.h"
  8. #include "error_codes.h"
  9. #include "sgx_ecp_types.h"
  10. #include "sgx_thread.h"
  11. #include <map>
  12. #include "sgx_dh.h"
  13. #include "dh_session_protocol.h"
  14. #include "sgx_tcrypto.h"
  15. #include "datatypes.h"
  16. #include "SgxProtobufLAInitiator_Transforms.h"
  17. #define MAX_SESSION_COUNT 16
  18. #define SGX_CAST(type, item) ((type)(item))
  19. #include <string.h>
  20. #include "crypto.h"
  21. #include "stdio.h"
  22. dh_session_t global_session_info;
  23. sgx_dh_session_t sgx_dh_session;
  24. // sgx_key_128bit_t dh_aek; // Session Key
  25. uint8_t iv[12];
  26. // memset(iv, 0, 12);
  27. uint32_t verify_peer_enclave_trust(sgx_dh_session_enclave_identity_t* peer_enclave_identity, uint8_t* expected_mr_enclave, uint8_t* expected_mr_signer);
  28. uint32_t process_protobuf_dh_msg1_generate_protobuf_dh_msg2(protobuf_sgx_dh_msg1_t& protobuf_msg1, protobuf_sgx_dh_msg2_t& protobuf_msg2, uint32_t* session_id)
  29. {
  30. sgx_dh_msg1_t dh_msg1; //Diffie-Hellman Message 1
  31. sgx_dh_msg2_t dh_msg2;
  32. memset(&dh_msg1, 0, sizeof(sgx_dh_msg1_t));
  33. uint32_t ret_status;
  34. if(decode_msg1_from_protobuf(protobuf_msg1, &dh_msg1)!=0)
  35. return -1;
  36. //Intialize the session as a session initiator
  37. ret_status = sgx_dh_init_session(SGX_DH_SESSION_INITIATOR, &sgx_dh_session);
  38. if(ret_status != SGX_SUCCESS)
  39. return ret_status;
  40. //Process the message 1 obtained from desination enclave and generate message 2
  41. ret_status = sgx_dh_initiator_proc_msg1(&dh_msg1, &dh_msg2, &sgx_dh_session);
  42. if(SGX_SUCCESS != ret_status)
  43. return ret_status;
  44. encode_msg2_to_protobuf(protobuf_msg2, &dh_msg2);
  45. return 0;
  46. }
  47. uint32_t process_protobuf_dh_msg3(protobuf_sgx_dh_msg3_t& protobuf_msg3, uint32_t* session_id) {
  48. uint32_t ret_status;
  49. sgx_dh_msg3_t dh_msg3;
  50. sgx_key_128bit_t dh_aek; // Session Key
  51. sgx_dh_session_enclave_identity_t responder_identity;
  52. memset(&dh_aek,0, sizeof(sgx_key_128bit_t));
  53. if(decode_msg3_from_protobuf(protobuf_msg3, &dh_msg3)!=0)
  54. return -1;
  55. //Process Message 3 obtained from the destination enclave
  56. ret_status = sgx_dh_initiator_proc_msg3(&dh_msg3, &sgx_dh_session, &dh_aek, &responder_identity);
  57. if(SGX_SUCCESS != ret_status)
  58. return ret_status;
  59. // Verify the identity of the destination enclave
  60. ret_status = verify_peer_enclave_trust(&responder_identity, NULL, NULL);
  61. if(ret_status != 0)
  62. return ret_status;
  63. memset(iv, 0, 12);
  64. memcpy(global_session_info.active.AEK, &dh_aek, sizeof(sgx_key_128bit_t));
  65. global_session_info.session_id = 1; // TODO: session_id;
  66. global_session_info.active.counter = 0;
  67. global_session_info.status = ACTIVE;
  68. memset(&dh_aek,0, sizeof(sgx_key_128bit_t));
  69. return 0;
  70. }
  71. /*
  72. uint32_t generate_encrypted_rsa_keypair_hash(uint8_t* op_ciphertext, uint8_t* op_encrypted_tag)
  73. {
  74. uint8_t hash[32]; uint32_t return_status;
  75. unsigned char key[16]; uint32_t count;
  76. for(count=0;count<16;count++)
  77. key[count]=global_session_info.active.AEK[count];
  78. return_status=generate_rsa_keypair_hash(hash);
  79. if(return_status!=0)
  80. return return_status;
  81. uint8_t ciphertext[32];// uint8_t expected_plaintext[48];
  82. uint8_t encryption_tag[16];
  83. int ciphertext_len=32;// int plaintext_len=32;
  84. uint8_t iv[12];
  85. memset(iv, 0, 12);
  86. return_status=aes_cipher(1, key, iv, hash, 32, op_ciphertext, &ciphertext_len, op_encrypted_tag);
  87. for(count=0;count<32;count++)
  88. {
  89. printf("0x%02x ", op_ciphertext[count]);
  90. }
  91. printf("\n");
  92. fflush(stdout);
  93. for(count=0;count<16;count++)
  94. {
  95. printf("0x%02x ", op_encrypted_tag[count]);
  96. }
  97. printf("\n"); fflush(stdout);
  98. return return_status;
  99. }
  100. */
  101. uint32_t decrypt_wrapper(uint8_t* ciphertext, int ciphertext_len, uint8_t* op_plaintext, int* op_plaintext_len, uint8_t* ip_encrypted_tag)
  102. {
  103. uint8_t hash[32]; uint32_t return_status;
  104. unsigned char key[16]; uint32_t count;
  105. for(count=0;count<16;count++)
  106. key[count]=global_session_info.active.AEK[count];
  107. printf("Doing decryption\n"); fflush(stdout);
  108. //uint8_t iv[12];
  109. //memset(iv, 0, 12);
  110. return_status=aes_cipher(0, key, iv, ciphertext, ciphertext_len, op_plaintext, op_plaintext_len, ip_encrypted_tag);
  111. /* printf("Helloworld \n"); fflush(stdout);
  112. for(count=0;count<*op_plaintext_len;count++)
  113. {
  114. printf("0x%02x ", op_plaintext[count]);
  115. }
  116. printf("\n");
  117. fflush(stdout);
  118. for(count=0;count<16;count++)
  119. {
  120. printf("0x%02x ", ip_encrypted_tag[count]);
  121. }
  122. printf("\n"); fflush(stdout);
  123. */ return return_status;
  124. }
  125. // TODO: Private function
  126. uint32_t verify_peer_enclave_trust(sgx_dh_session_enclave_identity_t* peer_enclave_identity, uint8_t* expected_mr_enclave, uint8_t* expected_mr_signer)
  127. {
  128. int count=0;
  129. if(!peer_enclave_identity)
  130. return INVALID_PARAMETER_ERROR;
  131. sgx_measurement_t actual_mr_enclave = peer_enclave_identity->mr_enclave;
  132. sgx_measurement_t actual_mr_signer = peer_enclave_identity->mr_signer;
  133. if(expected_mr_enclave != NULL)
  134. {
  135. for(count=0; count<SGX_HASH_SIZE; count++)
  136. {
  137. if( actual_mr_enclave.m[count] != expected_mr_enclave[count] )
  138. return ENCLAVE_TRUST_ERROR;
  139. }
  140. }
  141. if(expected_mr_signer !=NULL)
  142. {
  143. for(count=0; count<SGX_HASH_SIZE; count++)
  144. {
  145. if( actual_mr_signer.m[count] != expected_mr_signer[count] )
  146. return ENCLAVE_TRUST_ERROR; // TODO: Different error here.
  147. }
  148. }
  149. return SUCCESS;
  150. }