SgxProtobufLAInitiator.cpp 4.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154
  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. 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);
  26. 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)
  27. {
  28. sgx_dh_msg1_t dh_msg1; //Diffie-Hellman Message 1
  29. sgx_dh_msg2_t dh_msg2;
  30. memset(&dh_msg1, 0, sizeof(sgx_dh_msg1_t));
  31. uint32_t ret_status;
  32. if(decode_msg1_from_protobuf(protobuf_msg1, &dh_msg1)!=0)
  33. return -1;
  34. //Intialize the session as a session initiator
  35. ret_status = sgx_dh_init_session(SGX_DH_SESSION_INITIATOR, &sgx_dh_session);
  36. if(ret_status != SGX_SUCCESS)
  37. return ret_status;
  38. //Process the message 1 obtained from desination enclave and generate message 2
  39. ret_status = sgx_dh_initiator_proc_msg1(&dh_msg1, &dh_msg2, &sgx_dh_session);
  40. if(SGX_SUCCESS != ret_status)
  41. return ret_status;
  42. encode_msg2_to_protobuf(protobuf_msg2, &dh_msg2);
  43. return 0;
  44. }
  45. uint32_t process_protobuf_dh_msg3(protobuf_sgx_dh_msg3_t& protobuf_msg3, uint32_t* session_id) {
  46. uint32_t ret_status;
  47. sgx_dh_msg3_t dh_msg3;
  48. sgx_key_128bit_t dh_aek; // Session Key
  49. sgx_dh_session_enclave_identity_t responder_identity;
  50. memset(&dh_aek,0, sizeof(sgx_key_128bit_t));
  51. if(decode_msg3_from_protobuf(protobuf_msg3, &dh_msg3)!=0)
  52. return -1;
  53. //Process Message 3 obtained from the destination enclave
  54. ret_status = sgx_dh_initiator_proc_msg3(&dh_msg3, &sgx_dh_session, &dh_aek, &responder_identity);
  55. if(SGX_SUCCESS != ret_status)
  56. return ret_status;
  57. // Verify the identity of the destination enclave
  58. ret_status = verify_peer_enclave_trust(&responder_identity, NULL, NULL);
  59. if(ret_status != 0)
  60. return ret_status;
  61. memcpy(global_session_info.active.AEK, &dh_aek, sizeof(sgx_key_128bit_t));
  62. global_session_info.session_id = 1; // TODO: session_id;
  63. global_session_info.active.counter = 0;
  64. global_session_info.status = ACTIVE;
  65. memset(&dh_aek,0, sizeof(sgx_key_128bit_t));
  66. return 0;
  67. }
  68. uint32_t generate_encrypted_rsa_keypair_hash()
  69. {
  70. uint8_t hash[32]; uint32_t return_status;
  71. unsigned char key[16]; uint32_t count;
  72. for(count=0;count<16;count++)
  73. key[count]=global_session_info.active.AEK[count];
  74. return_status=generate_rsa_keypair_hash(hash);
  75. if(return_status!=0)
  76. return return_status;
  77. uint8_t ciphertext[48]; uint8_t expected_plaintext[48];
  78. uint8_t encryption_tag[16]; uint8_t decryption_tag[16];
  79. int ciphertext_len=48; int plaintext_len=32;
  80. uint8_t iv[12];
  81. memset(ciphertext, 0, 48); memset(expected_plaintext, 0, 48);
  82. memset(iv, 0, 12); memset(expected_plaintext, 0, 32); memset(encryption_tag, 0, 16); memset(decryption_tag, 0, 16);
  83. return_status=aes_cipher(1, key, iv, hash, 32, ciphertext, &ciphertext_len, encryption_tag);
  84. printf("ciphertext len: %d\n", ciphertext_len); fflush(stdout);
  85. printf("Encryption return status: 0x%x", return_status); fflush(stdout);
  86. return_status=aes_cipher(0, key, iv, ciphertext, ciphertext_len, expected_plaintext, &plaintext_len, encryption_tag);
  87. // for(count=0;count<16;count++)
  88. // {
  89. // if(encryption_tag[count]!=decryption_tag[count])
  90. // return 0xFF;
  91. // printf("0x%x 0x%x ", encryption_tag[count], decryption_tag[count]);
  92. // }
  93. // printf("\n");
  94. // fflush(stdout);
  95. for(count=0;count<32;count++)
  96. {
  97. printf("0x%x 0x%x ", hash[count], expected_plaintext[count]);
  98. // if(hash[count]!=expected_plaintext[count])
  99. // return 0xFE;
  100. }
  101. fflush(stdout);
  102. return return_status;
  103. }
  104. // TODO: Private function
  105. 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)
  106. {
  107. int count=0;
  108. if(!peer_enclave_identity)
  109. return INVALID_PARAMETER_ERROR;
  110. sgx_measurement_t actual_mr_enclave = peer_enclave_identity->mr_enclave;
  111. sgx_measurement_t actual_mr_signer = peer_enclave_identity->mr_signer;
  112. if(expected_mr_enclave != NULL)
  113. {
  114. for(count=0; count<SGX_HASH_SIZE; count++)
  115. {
  116. if( actual_mr_enclave.m[count] != expected_mr_enclave[count] )
  117. return ENCLAVE_TRUST_ERROR;
  118. }
  119. }
  120. if(expected_mr_signer !=NULL)
  121. {
  122. for(count=0; count<SGX_HASH_SIZE; count++)
  123. {
  124. if( actual_mr_signer.m[count] != expected_mr_signer[count] )
  125. return ENCLAVE_TRUST_ERROR; // TODO: Different error here.
  126. }
  127. }
  128. return SUCCESS;
  129. }