123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376 |
- #include "Transforms.h"
- int Transforms::fit_32_into_uint8_t(google::protobuf::uint32 temp32, uint8_t* temp8)
- {
- if(temp32 > UINT8_MAX)
- return -1;
- else
- {
- // *temp8 = *(uint8_t*)&temp32; // Probably works irrespective of endianness but not sure.
- *temp8 = (uint8_t)temp32;
- return 0;
- }
- }
- int Transforms::fit_32_into_uint16_t(google::protobuf::uint32 temp32, uint16_t* temp16)
- {
- if(temp32 > UINT16_MAX)
- return -1;
- else
- {
- // *temp8 = *(uint8_t*)&temp32; // Probably works irrespective of endianness but not sure.
- *temp16 = (uint16_t)temp32;
- return 0;
- }
- }
- void Transforms::encode_ec256_public_key_to_protobuf(protobuf_sgx_ec256_public_t* protobuf_g_a , sgx_ec256_public_t* g_a)
- {
- printf("\n ec256 public key gx and gy \n");
- int counter; google::protobuf::uint32 temp32;
- for(counter=0;counter<SGX_ECP256_KEY_SIZE;counter++)
- {
- temp32 = g_a->gx[counter];
- protobuf_g_a->add_gx(temp32);
- printf("%d ", temp32);
- temp32 = g_a->gy[counter];
- protobuf_g_a->add_gy(temp32);
- printf("%d ", temp32);
- }
- printf("\n");
- }
- void Transforms::encode_attributes_to_protobuf(protobuf_sgx_attributes_t* protobuf_attributes, sgx_attributes_t* attributes)
- {
- protobuf_attributes->set_flags(attributes->flags); // 64 bit
- protobuf_attributes->set_xfrm(attributes->xfrm); // 64 bit
- }
- void Transforms::encode_report_to_protobuf(protobuf_sgx_report_t* protobuf_report, sgx_report_t* report)
- {
- printf("\n report \n key id \n");
- int counter; google::protobuf::uint32 temp32;
- for(counter=0;counter<SGX_KEYID_SIZE;counter++)
- {
- temp32=report->key_id.id[counter];
- protobuf_report->add_key_id(temp32);
- printf("%d ",temp32);
- }
- printf("\n mac \n");
- for(counter=0;counter<SGX_MAC_SIZE;counter++)
- {
- temp32=report->mac[counter];
- protobuf_report->add_mac(temp32);
- printf("%d ", temp32);
- }
- protobuf_report->mutable_body()->set_misc_select(report->body.misc_select); // 32 bit
- protobuf_report->mutable_body()->set_isv_svn(report->body.isv_svn); // 16 bit
- protobuf_report->mutable_body()->set_isv_prod_id(report->body.isv_prod_id); // 16 bit
- encode_attributes_to_protobuf(protobuf_report->mutable_body()->mutable_attributes(), &(report->body.attributes));
- for(counter=0;counter<SGX_CPUSVN_SIZE;counter++)
- {
- temp32=report->body.cpu_svn.svn[counter];
- protobuf_report->mutable_body()->add_cpu_svn(temp32);
- }
- for(counter=0;counter<SGX_REPORT_BODY_RESERVED1;counter++)
- {
- temp32=report->body.reserved1[counter]; // TODO: Could be optimized out - if these are determined to be 0s.
- protobuf_report->mutable_body()->add_reserved1(temp32);
- }
- for(counter=0;counter<SGX_REPORT_BODY_RESERVED2;counter++)
- {
- temp32=report->body.reserved2[counter]; // TODO: Could be optimized out - if these are determined to be 0s.
- protobuf_report->mutable_body()->add_reserved2(temp32);
- }
- for(counter=0;counter<SGX_REPORT_BODY_RESERVED3;counter++)
- {
- temp32=report->body.reserved3[counter]; // TODO: Could be optimized out - if these are determined to be 0s.
- protobuf_report->mutable_body()->add_reserved3(temp32);
- }
- for(counter=0;counter<SGX_REPORT_BODY_RESERVED4;counter++)
- {
- temp32=report->body.reserved4[counter]; // TODO: Could be optimized out - if these are determined to be 0s.
- protobuf_report->mutable_body()->add_reserved4(temp32);
- }
- printf("\nmr enclave\n");
- fflush(stdout);
- for(counter=0;counter<SGX_HASH_SIZE;counter++)
- {
- temp32=report->body.mr_enclave.m[counter];
- protobuf_report->mutable_body()->add_mr_enclave(temp32);
- printf("%x ", temp32);
- }
- printf("\n mr signer\n"); fflush(stdout);
- for(counter=0;counter<SGX_HASH_SIZE;counter++)
- {
- temp32=report->body.mr_signer.m[counter];
- protobuf_report->mutable_body()->add_mr_signer(temp32);
- printf("%x ", temp32);
- }
- for(counter=0;counter<SGX_REPORT_DATA_SIZE;counter++)
- {
- temp32=report->body.report_data.d[counter];
- protobuf_report->mutable_body()->add_report_data(temp32);
- }
- }
- int Transforms::decode_attributes_from_protobuf(protobuf_sgx_attributes_t* protobuf_attributes, sgx_attributes_t* attributes)
- {
- attributes->flags = protobuf_attributes->flags();
- printf("\n flags %" PRIu64 " \n", attributes->flags);
- attributes->xfrm = protobuf_attributes->xfrm();
- printf("\n xfrm %" PRIu64 " \n", attributes->xfrm);
- return 0;
- }
- int Transforms::decode_report_from_protobuf(protobuf_sgx_report_t* protobuf_report, sgx_report_t* report)
- {
- int counter; google::protobuf::uint32 temp32;
- printf("\n----------------------Decoding received msg3 ------------------------\n");
- printf("\nreport body keyid\n");
- for(counter=0;counter<SGX_KEYID_SIZE;counter++)
- {
- temp32=protobuf_report->key_id(counter);
- if(fit_32_into_uint8_t(temp32, &(report->key_id.id[counter]))!=0)
- return -1;
- printf("%d ", report->key_id.id[counter]);
- }
- printf("\nreport mac\n");
- for(counter=0;counter<SGX_MAC_SIZE;counter++)
- {
- temp32=protobuf_report->mac(counter);
- if(fit_32_into_uint8_t(temp32, &(report->mac[counter]))!=0)
- return -1;
- printf("%d ", report->mac[counter]);
- }
- report->body.misc_select=protobuf_report->mutable_body()->misc_select(); // 32 bit
- temp32=protobuf_report->mutable_body()->isv_svn();
- if(fit_32_into_uint16_t(temp32, &(report->body.isv_svn))!=0)
- return -1;
- printf("\nmisc select %d \n", report->body.misc_select);
- temp32=protobuf_report->mutable_body()->isv_prod_id();
- if(fit_32_into_uint16_t(temp32, &(report->body.isv_prod_id))!=0)
- return -1;
- printf("\nprod id %d \n", report->body.isv_prod_id);
- decode_attributes_from_protobuf(protobuf_report->mutable_body()->mutable_attributes(), &(report->body.attributes));
- printf("\n cpu svn\n");
- for(counter=0;counter<SGX_CPUSVN_SIZE;counter++)
- {
- temp32=protobuf_report->mutable_body()->cpu_svn(counter);
- if(fit_32_into_uint8_t(temp32, &(report->body.cpu_svn.svn[counter]))!=0)
- return -1;
- printf("%d ", report->body.cpu_svn.svn[counter]);
- }
- printf("\n reserved1 \n");
- for(counter=0;counter<SGX_REPORT_BODY_RESERVED1;counter++)
- {
- temp32=protobuf_report->mutable_body()->reserved1(counter);
- if(fit_32_into_uint8_t(temp32, &(report->body.reserved1[counter]))!=0)
- return -1;
- printf("%d ", report->body.reserved1[counter]);
- }
- printf("\n reserved2 \n");
- for(counter=0;counter<SGX_REPORT_BODY_RESERVED2;counter++)
- {
- temp32=protobuf_report->mutable_body()->reserved2(counter);
- if(fit_32_into_uint8_t(temp32, &(report->body.reserved2[counter]))!=0)
- return -1;
- printf("%d ", report->body.reserved2[counter]);
- }
- printf("\n reserved3 \n");
- for(counter=0;counter<SGX_REPORT_BODY_RESERVED3;counter++)
- {
- temp32=protobuf_report->mutable_body()->reserved3(counter);
- if(fit_32_into_uint8_t(temp32, &(report->body.reserved3[counter]))!=0)
- return -1;
- printf("%d ", report->body.reserved3[counter]);
- }
- printf("\n reserved4 \n");
- for(counter=0;counter<SGX_REPORT_BODY_RESERVED4;counter++)
- {
- temp32=protobuf_report->mutable_body()->reserved4(counter);
- if(fit_32_into_uint8_t(temp32, &(report->body.reserved4[counter]))!=0)
- return -1;
- printf("%d ", report->body.reserved4[counter]);
- }
- printf("\n mrenclave \n");
- for(counter=0;counter<SGX_HASH_SIZE;counter++)
- {
- temp32=protobuf_report->mutable_body()->mr_enclave(counter);
- if(fit_32_into_uint8_t(temp32, &(report->body.mr_enclave.m[counter]))!=0)
- return -1;
- printf("%x ", report->body.mr_enclave.m[counter]);
- }
- printf("\n mrsigner \n");
- for(counter=0;counter<SGX_HASH_SIZE;counter++)
- {
- temp32=protobuf_report->mutable_body()->mr_signer(counter);
- if(fit_32_into_uint8_t(temp32, &(report->body.mr_signer.m[counter]))!=0)
- return -1;
- printf("%x ", report->body.mr_signer.m[counter]);
- }
- printf("\n report data\n");
- for(counter=0;counter<SGX_REPORT_DATA_SIZE;counter++)
- {
- temp32=protobuf_report->mutable_body()->report_data(counter);
- if(fit_32_into_uint8_t(temp32, &(report->body.report_data.d[counter]))!=0)
- return -1;
- printf("%d ", report->body.report_data.d[counter]);
- }
- printf("\n------------------------ end of msg3 --------------------------\n");
- return 0;
- }
- int Transforms::print_initialized_msg1( protobuf_sgx_dh_msg1_t& protobuf_dhmsg1)
- {
- int counter;
- printf("gx\n");
- for(counter=0;counter<SGX_ECP256_KEY_SIZE;counter++)
- {
- printf("%d ", protobuf_dhmsg1.g_a().gx(counter));
- }
- printf("\ngy\n");
- for(counter=0;counter<SGX_ECP256_KEY_SIZE;counter++)
- {
- printf("%d ", protobuf_dhmsg1.g_a().gy(counter));
- }
- printf("\nmrenclave in target\n");
- for(counter=0;counter<SGX_HASH_SIZE;counter++)
- {
- printf("%" PRIu32 " ", protobuf_dhmsg1.target().mr_enclave(counter));
- }
- printf("\nreserved1 in target\n");
- for(counter=0;counter<SGX_TARGET_INFO_RESERVED1_BYTES;counter++)
- {
- printf("%" PRIu32 " ", protobuf_dhmsg1.target().reserved1(counter));
- }
- printf("\nreserved2 in target\n");
- for(counter=0;counter<SGX_TARGET_INFO_RESERVED2_BYTES;counter++)
- {
- printf("%" PRIu32 " ", protobuf_dhmsg1.target().reserved2(counter));
- }
- printf("\n %" PRIu64 "\n", protobuf_dhmsg1.target().attributes().flags());
- printf("\n %" PRIu64 "\n", protobuf_dhmsg1.target().attributes().xfrm());
- printf("\n %" PRIu32 "\n", protobuf_dhmsg1.target().misc_select());
- return 0;
- }
- int Transforms::decode_ec256_public_key_from_protobuf(protobuf_sgx_ec256_public_t* protobuf_g_a , sgx_ec256_public_t* g_a)
- {
- printf("\n ec256 pub key\n");
- int counter; google::protobuf::uint32 temp32;
- for(counter=0;counter<SGX_ECP256_KEY_SIZE;counter++)
- {
- temp32 = protobuf_g_a->gx(counter);
- if(fit_32_into_uint8_t(temp32, &(g_a->gx[counter]))!=0)
- return -1;
- printf("%02x ",g_a->gx[counter]);
- temp32 = protobuf_g_a->gy(counter);
- if(fit_32_into_uint8_t(temp32, &(g_a->gy[counter]))!=0)
- return -1;
- printf("%02x ",g_a->gy[counter]);
- }
- return 0;
- }
- int Transforms::decode_msg1_from_protobuf( protobuf_sgx_dh_msg1_t& protobuf_dhmsg1, sgx_dh_msg1_t* native_dhmsg1)
- {
- int counter; google::protobuf::uint32 temp32;// google::protobuf::uint64 temp64;
- if(decode_ec256_public_key_from_protobuf(protobuf_dhmsg1.mutable_g_a(), &(native_dhmsg1->g_a)) != 0)
- return 0x1;
- for(counter=0;counter<SGX_HASH_SIZE;counter++)
- {
- temp32 = protobuf_dhmsg1.mutable_target()->mr_enclave(counter);
- if(fit_32_into_uint8_t(temp32, &(native_dhmsg1->target.mr_enclave.m[counter]))!=0)
- return -1;
- }
- for(counter=0;counter<SGX_TARGET_INFO_RESERVED1_BYTES;counter++)
- {
- temp32 = protobuf_dhmsg1.mutable_target()->reserved1(counter);
- if(fit_32_into_uint8_t(temp32, &(native_dhmsg1->target.reserved1[counter]))!=0)
- return -1;
- }
- for(counter=0;counter<SGX_TARGET_INFO_RESERVED2_BYTES;counter++)
- {
- temp32 = protobuf_dhmsg1.mutable_target()->reserved2(counter);
- if(fit_32_into_uint8_t(temp32, &(native_dhmsg1->target.reserved2[counter]))!=0)
- return -1;
- }
- native_dhmsg1->target.attributes.flags = protobuf_dhmsg1.mutable_target()->mutable_attributes()->flags();
- native_dhmsg1->target.attributes.xfrm = protobuf_dhmsg1.mutable_target()->mutable_attributes()->xfrm();
- native_dhmsg1->target.misc_select = protobuf_dhmsg1.mutable_target()->misc_select();
- return 0;
- }
- int Transforms::decode_msg3_from_protobuf(protobuf_sgx_dh_msg3_t& protobuf_dhmsg3, sgx_dh_msg3_t* native_dhmsg3)
- {
- int counter; google::protobuf::uint32 temp32;
- for(counter=0;counter<SGX_DH_MAC_SIZE;counter++)
- {
- temp32=protobuf_dhmsg3.cmac(counter);
- if(fit_32_into_uint8_t(temp32, &(native_dhmsg3->cmac[counter]))!=0)
- return -1;
- }
- if(decode_report_from_protobuf(protobuf_dhmsg3.mutable_msg3_body()->mutable_report(), &(native_dhmsg3->msg3_body.report))==-1)
- return -1;
- int max_counter=protobuf_dhmsg3.mutable_msg3_body()->additional_prop_size();
- native_dhmsg3->msg3_body.additional_prop_length=max_counter;
- // TODO: Need to assign a variable on the heap and then pass it as an argument to this function - set it to null if protobuf_dhmsg3.mutable_msg3_body()->additional_prop_size() is 0
- // TODO: And then free it in that function (create_session) when it is done. It is likely that it is 0 in the SGX SDK sample code. And SDK people probably didn't deserialize it - as it may contain a pointer in the general case - to the array of additional_properties.
- if(max_counter!=0)
- return -1;
- return 0;
- }
- void Transforms::encode_msg2_to_protobuf( protobuf_sgx_dh_msg2_t& protobuf_dhmsg2, sgx_dh_msg2_t* native_dhmsg2)
- {
- int counter; google::protobuf::uint32 temp32; //google::protobuf::uint64 temp64;
- printf("\n msg2 cmac \n");
- for(counter=0;counter<SGX_DH_MAC_SIZE;counter++)
- {
- temp32=native_dhmsg2->cmac[counter];
- protobuf_dhmsg2.add_cmac(temp32);
- printf("%d ", temp32);
- }
- encode_ec256_public_key_to_protobuf(protobuf_dhmsg2.mutable_g_b(), &(native_dhmsg2->g_b));
- encode_report_to_protobuf(protobuf_dhmsg2.mutable_report(), &(native_dhmsg2->report));
- }
|