]> WPIA git - cassiopeia.git/blob - src/io/record.h
add: Incremental CRL transfer
[cassiopeia.git] / src / io / record.h
1 #pragma once
2
3 #include <inttypes.h>
4
5 #include <memory>
6 #include <string>
7
8 #include "bios.h"
9
10 #define RECORD_HEADER_SIZE 17
11
12 class RecordHeader {
13 public:
14     enum class SignerCommand : uint16_t {
15         SET_CSR = 0x01,
16         SET_SPKAC = 0x02,
17         SET_SIGNATURE_TYPE = 0x10,
18         SET_PROFILE = 0x11,
19         ADD_SAN = 0x18,
20         ADD_AVA = 0x19,
21         ADD_PROOF_LINE = 0x40,
22         SIGN = 0x80,
23         LOG_SAVED = 0x81,
24         REVOKE = 0x100,
25         GET_FULL_CRL = 0x101,
26         GET_TIMESTAMP = 0xC0,
27         GET_STATUS_REPORT = 0xD0
28     };
29
30     enum class SignerResult : uint16_t {
31         REVOKED = 0x100,
32         FULL_CRL = 0x101,
33         SAVE_LOG = 0x80,
34         CERTIFICATE = 0x81
35     };
36
37 public:
38     uint16_t command;
39     char flags;
40     uint32_t sessid;
41     uint16_t command_count;
42     uint32_t totalLength;
43     uint16_t offset;
44     uint16_t payloadLength;
45
46     RecordHeader() :
47         command( 0 ), flags( 0 ), sessid( 0 ), command_count( 0 ), totalLength( 0 ), offset( 0 ), payloadLength( 0 ) {
48     }
49
50     template <class T>
51     void append( std::string& str, T val ) {
52         str.append( ( char* ) &val, sizeof( T ) );
53     }
54
55     template <class T>
56     void read( std::string::iterator& it, T& val ) {
57         char* data = ( char* ) &val;
58
59         for( size_t i = 0; i < sizeof( T ); i++ ) {
60             data[i] = *it;
61             it++;
62         }
63     }
64
65     std::string packToString() {
66         std::string res;
67         res.reserve( RECORD_HEADER_SIZE );
68         append( res, command );
69         append( res, flags );
70         append( res, sessid );
71         append( res, command_count );
72         append( res, totalLength );
73         append( res, offset );
74         append( res, payloadLength );
75         return res;
76     }
77
78     void unpackFromString( std::string str ) {
79         if( str.size() != RECORD_HEADER_SIZE ) {
80             throw "Invalid string length";
81         }
82
83         auto it =  str.begin();
84         read( it, command );
85         read( it, flags );
86         read( it, sessid );
87         read( it, command_count );
88         read( it, totalLength );
89         read( it, offset );
90         read( it, payloadLength );
91     }
92
93 };
94
95 std::string parseCommand( RecordHeader& head, const std::string input, std::shared_ptr<std::ostream> log );
96
97 void sendCommand( RecordHeader& head, const std::string& data, std::shared_ptr<OpensslBIO> bio, std::shared_ptr<std::ostream> log );