#include #include #include #include #include //#include //#include //#include #include //#include "crypto.h" #include "ProtobufLAInitiator.h" using namespace std; // #include // based off the example functionreturnvalue.cpp in PHP-CPP /** * Namespace to use */ //using namespace std; #define DECRYPTOR_PORT 3825 int local_attestation_successful=0; int __ImageBase=0; class Mitigator : public Php::Base { private: static std::string mitigator_pubkey_header_value; static std::string mitigator_pubkey_header; public: // adding to extension throws an error if this method is not public static void local_attestation_initiator_wrapper() { setbuf(stdout,NULL); uint32_t count; uint32_t return_sgx; unsigned char* base64_encoded_mitigator_header_and_value = (unsigned char*) malloc(mitigator_pubkey_header.length()+1+216); // unsigned char base64_encoded_mitigator_header[229] ; //216=(ceil(160/3) * 4) + 1 (for null character) + 21 for "Mitigator-Public-Key" memcpy(base64_encoded_mitigator_header_and_value, mitigator_pubkey_header.c_str(), mitigator_pubkey_header.length()); return_sgx = local_attestation_initiator(DECRYPTOR_PORT, base64_encoded_mitigator_header_and_value+mitigator_pubkey_header.length()); if(return_sgx != 0) { if(return_sgx== 0xFFFFFFFF) { perror("\nCould not set up the socket: had the following error: "); fflush(stderr); } else { printf("\nHad the following error in SGX local attestation: 0x%x", return_sgx); fflush(stdout); } } else { printf("\nSuccessful LA with port %d.\n", DECRYPTOR_PORT); fflush(stdout); local_attestation_successful=1; printf("length of string was %d\n", mitigator_pubkey_header.length()); fflush(stdout); // char* base64_encoding = (char*) malloc(); // char base64_encoding[229]; // for(count=0;count<229;count++) // base64_encoding[count]=base64_encoded_mitigator_header[count]; mitigator_pubkey_header_value=std::string((char*)base64_encoded_mitigator_header_and_value,mitigator_pubkey_header.length()+216); } } Mitigator() = default; // mitigator_pubkey_header("Mitigator-Public-Key:");//, mitigator_pubkey_header_value("!") ; virtual ~Mitigator() = default; // call this function in PHP async or call add_header here. static Php::Value get_mitigator_header() { return mitigator_pubkey_header_value; } // call this func onRequest static Php::Value php_decrypt_wrapper(Php::Parameters ¶ms ) { return params[0];//"miti"; } }; std::string Mitigator::mitigator_pubkey_header_value=std::string("!"); std::string Mitigator::mitigator_pubkey_header=std::string("Mitigator-Public-Key:"); extern "C" { // export the "get_module" function that will be called by the Zend engine PHPCPP_EXPORT void *get_module() { // create extension static Php::Extension extension("decryptor_la_setup_and_decryption","1.0"); Php::Class mitigator("Mitigator"); mitigator.method<&Mitigator::get_mitigator_header>("get_mitigator_header"); // mitigator.property("mitigator_header", &Mitigator::get_mitigator_header); mitigator.method<&Mitigator::local_attestation_initiator_wrapper>("local_attestation_initiator_wrapper"); mitigator.method<&Mitigator::php_decrypt_wrapper>("php_decrypt_wrapper", { Php::ByVal("string", Php::Type::String) } ); extension.onStartup(&Mitigator::local_attestation_initiator_wrapper); // extension.onRequest(&Mitigator::php_decrypt_wrapper); // return the extension module extension.add(mitigator); return extension.module(); } }