aboutsummaryrefslogtreecommitdiff
path: root/src/message.cpp
blob: 18dbe0ea1475cfb28f7e83e6f88759893f22a35b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
#include "axolotl/message.hh"

namespace {

template<typename T>
std::size_t varint_length(
    T value
) {
    std::size_t result = 1;
    while (value > 128U) {
        ++result;
        value >>= 7;
    }
    return result;
}


template<typename T>
std::uint8_t * varint_encode(
    std::uint8_t * output,
    T value
) {
    while (value > 128U) {
        *(output++) = (0x7F & value) | 0x80;
    }
    (*output++) = value;
    return output;
}


template<typename T>
T varint_decode(
    std::uint8_t const * varint_start,
    std::uint8_t const * varint_end
) {
    T value = 0;
    do {
        value <<= 7;
        value |= 0x7F & *(--varint_end);
    } while (varint_end != varint_start);
    return value;
}


std::uint8_t const * varint_skip(
    std::uint8_t const * input,
    std::uint8_t const * input_end
) {
    while (input != input_end) {
        std::uint8_t tmp = *(input++);
        if ((tmp & 0x80) == 0) {
            return input;
        }
    }
    return input;
}


std::size_t varstring_length(
    std::size_t string_length
) {
    return varint_length(string_length) + string_length;
}

static std::size_t const VERSION_LENGTH = 1;
static std::uint8_t const RATCHET_KEY_TAG = 012;
static std::uint8_t const COUNTER_TAG = 020;
static std::uint8_t const CIPHERTEXT_TAG = 042;

} // namespace


std::size_t axolotl::encode_message_length(
    std::uint32_t counter,
    std::size_t ratchet_key_length,
    std::size_t ciphertext_length,
    std::size_t mac_length
) {
    std::size_t length = VERSION_LENGTH;
    length += 1 + varstring_length(ratchet_key_length);
    length += 1 + varint_length(counter);
    length += 1 + varstring_length(ciphertext_length);
    return length + mac_length;
}


axolotl::MessageWriter axolotl::encode_message(
    std::uint8_t version,
    std::uint32_t counter,
    std::size_t ratchet_key_length,
    std::size_t ciphertext_length,
    std::uint8_t * output
) {
    axolotl::MessageWriter result;
    std::uint8_t * pos = output;
    *(pos++) = version;
    *(pos++) = COUNTER_TAG;
    pos = varint_encode(pos, counter);
    *(pos++) = RATCHET_KEY_TAG;
    pos = varint_encode(pos, ratchet_key_length);
    result.ratchet_key = pos;
    pos += ratchet_key_length;
    *(pos++) = CIPHERTEXT_TAG;
    pos = varint_encode(pos, ciphertext_length);
    result.ciphertext = pos;
    pos += ciphertext_length;
    result.body_length = pos - output;
    result.mac = pos;
    return result;
}


axolotl::MessageReader axolotl::decode_message(
    std::uint8_t const * input, std::size_t input_length,
    std::size_t mac_length
) {
    axolotl::MessageReader result;
    result.body_length = 0;
    std::uint8_t const * pos = input;
    std::uint8_t const * end = input + input_length - mac_length;
    std::uint8_t flags = 0;
    result.mac = end;
    if (pos == end) return result;
    result.version = *(pos++);
    while (pos != end) {
        uint8_t tag = *(pos);
        if (tag == COUNTER_TAG) {
            ++pos;
            std::uint8_t const * counter_start = pos;
            pos = varint_skip(pos, end);
            result.counter = varint_decode<std::uint32_t>(counter_start, pos);
            flags |= 1;
        } else if (tag == RATCHET_KEY_TAG) {
            ++pos;
            std::uint8_t const * len_start = pos;
            pos = varint_skip(pos, end);
            std::size_t len = varint_decode<std::size_t>(len_start, pos);
            if (len > end - pos) return result;
            result.ratchet_key_length = len;
            result.ratchet_key = pos;
            pos += len;
            flags |= 2;
        } else if (tag == CIPHERTEXT_TAG) {
            ++pos;
            std::uint8_t const * len_start = pos;
            pos = varint_skip(pos, end);
            std::size_t len = varint_decode<std::size_t>(len_start, pos);
            if (len > end - pos) return result;
            result.ciphertext_length = len;
            result.ciphertext = pos;
            pos += len;
            flags |= 4;
        } else if (tag & 0x7 == 0) {
            pos = varint_skip(pos, end);
            pos = varint_skip(pos, end);
        } else if (tag & 0x7 == 2) {
            std::uint8_t const * len_start = pos;
            pos = varint_skip(pos, end);
            std::size_t len = varint_decode<std::size_t>(len_start, pos);
            if (len > end - pos) return result;
            pos += len;
        } else {
            return result;
        }
    }
    if (flags == 0x7) {
        result.body_length = end - input;
    }
    return result;
}