X-Git-Url: https://code.wpia.club/?a=blobdiff_plain;f=src%2Fio%2Frecord.h;h=6c2df6590683d8f480fb286c95a715de90a63251;hb=HEAD;hp=92837bd0eec0d7206496b4b68e2cceed65cf6914;hpb=82849da8a9e36be282c13537fb7e14ad1f021d40;p=cassiopeia.git diff --git a/src/io/record.h b/src/io/record.h index 92837bd..6c2df65 100644 --- a/src/io/record.h +++ b/src/io/record.h @@ -4,8 +4,9 @@ #include #include - +#include #include "bios.h" +#include "io/opensslBIO.h" #define RECORD_HEADER_SIZE 17 @@ -16,6 +17,9 @@ public: SET_SPKAC = 0x02, SET_SIGNATURE_TYPE = 0x10, SET_PROFILE = 0x11, + SET_WISH_FROM = 0x12, + SET_WISH_TO = 0x13, + SET_OCSP_TARGET_CA = 0x14, ADD_SAN = 0x18, ADD_AVA = 0x19, ADD_PROOF_LINE = 0x40, @@ -23,6 +27,7 @@ public: LOG_SAVED = 0x81, REVOKE = 0x100, GET_FULL_CRL = 0x101, + ADD_SERIAL = 0x102, GET_TIMESTAMP = 0xC0, GET_STATUS_REPORT = 0xD0 }; @@ -31,7 +36,8 @@ public: REVOKED = 0x100, FULL_CRL = 0x101, SAVE_LOG = 0x80, - CERTIFICATE = 0x81 + CERTIFICATE = 0x81, + SIGNING_CA = 0x82, }; public: @@ -48,18 +54,26 @@ public: } template - void append( std::string& str, T val ) { - str.append( ( char* ) &val, sizeof( T ) ); + static void append( std::string& str, T val ) { + str.append( ( char * ) &val, sizeof( T ) ); } template - void read( std::string::iterator& it, T& val ) { - char* data = ( char* ) &val; + static void read( std::string::const_iterator& it, T& val ) { + union typeConversion { + char buf[sizeof( T )]; + T value; + + typeConversion( const T& v ) : value( v ) {} + }; + + typeConversion data( 0 ); for( size_t i = 0; i < sizeof( T ); i++ ) { - data[i] = *it; - it++; + data.buf[i] = *it++; } + + val = data.value; } std::string packToString() { @@ -75,12 +89,12 @@ public: return res; } - void unpackFromString( std::string str ) { + void unpackFromString( const std::string& str ) { if( str.size() != RECORD_HEADER_SIZE ) { - throw "Invalid string length"; + throw std::runtime_error( "Invalid string length" ); } - auto it = str.begin(); + auto it = str.cbegin(); read( it, command ); read( it, flags ); read( it, sessid ); @@ -89,9 +103,12 @@ public: read( it, offset ); read( it, payloadLength ); } - + bool isFollowupOf( const RecordHeader& head ) { + return head.command == command && head.flags == flags && head.sessid == sessid && head.command_count == command_count && head.totalLength == totalLength && head.offset + 1 == offset; + } }; -std::string parseCommand( RecordHeader& head, const std::string input, std::shared_ptr log ); +std::string parseCommand( RecordHeader& head, const std::string& input ); +std::string parseCommandChunked( RecordHeader& head, std::shared_ptr conn ); -void sendCommand( RecordHeader& head, const std::string& data, std::shared_ptr bio, std::shared_ptr log ); +void sendCommand( RecordHeader& head, const std::string& data, std::shared_ptr bio );