forked from mas-bandwidth/yojimbo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathyojimbo_packet_processor.cpp
267 lines (208 loc) · 9.95 KB
/
yojimbo_packet_processor.cpp
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
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
/*
Yojimbo Client/Server Network Protocol Library.
Copyright © 2016, The Network Protocol Company, Inc.
Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer
in the documentation and/or other materials provided with the distribution.
3. Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote products derived
from this software without specific prior written permission.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES,
INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE
USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#include "yojimbo_config.h"
#include "yojimbo_packet_processor.h"
#include "yojimbo_replay_protection.h"
#include "yojimbo_encryption.h"
#include "yojimbo_allocator.h"
#include "yojimbo_packet.h"
#include "yojimbo_common.h"
#include <stdio.h>
#include <stdint.h>
#include <inttypes.h>
namespace yojimbo
{
const int MaxPrefixBytes = 9;
PacketProcessor::PacketProcessor( Allocator & allocator, uint64_t protocolId, int maxPacketSize )
{
m_allocator = &allocator;
m_protocolId = protocolId;
m_error = PACKET_PROCESSOR_ERROR_NONE;
m_maxPacketSize = maxPacketSize + ( ( maxPacketSize % 4 ) ? ( 4 - ( maxPacketSize % 4 ) ) : 0 );
assert( m_maxPacketSize % 4 == 0 );
assert( m_maxPacketSize >= maxPacketSize );
m_absoluteMaxPacketSize = maxPacketSize + MaxPrefixBytes + MacBytes;
m_context = NULL;
m_userContext = NULL;
m_packetBuffer = (uint8_t*) YOJIMBO_ALLOCATE( allocator, m_absoluteMaxPacketSize );
m_scratchBuffer = (uint8_t*) YOJIMBO_ALLOCATE( allocator, m_absoluteMaxPacketSize );
}
PacketProcessor::~PacketProcessor()
{
assert( m_allocator );
YOJIMBO_FREE( *m_allocator, m_packetBuffer );
YOJIMBO_FREE( *m_allocator, m_scratchBuffer );
m_allocator = NULL;
}
void PacketProcessor::SetContext( void * context )
{
m_context = context;
}
void PacketProcessor::SetUserContext( void * context )
{
m_userContext = context;
}
static const int ENCRYPTED_PACKET_FLAG = (1<<7);
const uint8_t * PacketProcessor::WritePacket( Packet * packet, uint64_t sequence, int & packetBytes, bool encrypt, const uint8_t * key, Allocator & streamAllocator, PacketFactory & packetFactory )
{
m_error = PACKET_PROCESSOR_ERROR_NONE;
if ( encrypt )
{
if ( !key )
{
debug_printf( "packet processor (write packet): key is null\n" );
m_error = PACKET_PROCESSOR_ERROR_KEY_IS_NULL;
return NULL;
}
int prefixBytes;
compress_packet_sequence( sequence, m_scratchBuffer[0], prefixBytes, m_scratchBuffer+1 );
m_scratchBuffer[0] |= ENCRYPTED_PACKET_FLAG;
prefixBytes++;
PacketReadWriteInfo info;
info.context = m_context;
info.userContext = m_userContext;
info.protocolId = m_protocolId;
info.packetFactory = &packetFactory;
info.streamAllocator = &streamAllocator;
info.rawFormat = 1;
packetBytes = yojimbo::WritePacket( info, packet, m_packetBuffer, m_maxPacketSize );
if ( packetBytes <= 0 )
{
debug_printf( "packet processor (write packet): write packet failed\n" );
m_error = PACKET_PROCESSOR_ERROR_WRITE_PACKET_FAILED;
return NULL;
}
assert( packetBytes <= m_maxPacketSize );
int encryptedPacketSize;
if ( !Encrypt( m_packetBuffer,
packetBytes,
m_scratchBuffer + prefixBytes,
encryptedPacketSize,
(uint8_t*) &sequence, key ) )
{
debug_printf( "packet processor (write packet): encrypt packet failed\n" );
m_error = PACKET_PROCESSOR_ERROR_ENCRYPT_FAILED;
return NULL;
}
packetBytes = prefixBytes + encryptedPacketSize;
assert( packetBytes <= m_absoluteMaxPacketSize );
return m_scratchBuffer;
}
else
{
PacketReadWriteInfo info;
info.context = m_context;
info.userContext = m_userContext;
info.protocolId = m_protocolId;
info.packetFactory = &packetFactory;
info.streamAllocator = &streamAllocator;
info.prefixBytes = 1;
packetBytes = yojimbo::WritePacket( info, packet, m_packetBuffer, m_maxPacketSize );
if ( packetBytes <= 0 )
{
debug_printf( "packet processor (write packet): write packet failed (unencrypted)\n" );
m_error = PACKET_PROCESSOR_ERROR_WRITE_PACKET_FAILED;
return NULL;
}
assert( packetBytes <= m_maxPacketSize );
return m_packetBuffer;
}
}
Packet * PacketProcessor::ReadPacket( const uint8_t * packetData,
uint64_t & sequence,
int packetBytes,
bool & encrypted,
const uint8_t * key,
const uint8_t * encryptedPacketTypes,
const uint8_t * unencryptedPacketTypes,
Allocator & streamAllocator,
PacketFactory & packetFactory,
ReplayProtection * replayProtection )
{
m_error = PACKET_PROCESSOR_ERROR_NONE;
const uint8_t prefixByte = packetData[0];
encrypted = ( prefixByte & ENCRYPTED_PACKET_FLAG ) != 0;
if ( encrypted )
{
if ( !key )
{
debug_printf( "packet processor (read packet): key is null\n" );
m_error = PACKET_PROCESSOR_ERROR_KEY_IS_NULL;
return NULL;
}
const int sequenceBytes = get_packet_sequence_bytes( prefixByte );
const int prefixBytes = 1 + sequenceBytes;
if ( packetBytes <= prefixBytes + MacBytes )
{
debug_printf( "packet processor (read packet): packet is too small\n" );
m_error = PACKET_PROCESSOR_ERROR_PACKET_TOO_SMALL;
return NULL;
}
sequence = decompress_packet_sequence( prefixByte, packetData + 1 );
if ( replayProtection && replayProtection->PacketAlreadyReceived( sequence ) )
{
debug_printf( "packet processor (read packet): packet already received - replay protection\n" );
m_error = PACKET_PROCESSOR_ERROR_PACKET_ALREADY_RECEIVED;
return NULL;
}
int decryptedPacketBytes;
if ( !Decrypt( packetData + prefixBytes, packetBytes - prefixBytes, m_scratchBuffer, decryptedPacketBytes, (uint8_t*)&sequence, key ) )
{
debug_printf( "packet processor (read packet): decrypt failed\n" );
m_error = PACKET_PROCESSOR_ERROR_DECRYPT_FAILED;
return NULL;
}
PacketReadWriteInfo info;
info.context = m_context;
info.protocolId = m_protocolId;
info.packetFactory = &packetFactory;
info.streamAllocator = &streamAllocator;
info.allowedPacketTypes = encryptedPacketTypes;
info.rawFormat = 1;
ReadPacketError readPacketError;
Packet * packet = yojimbo::ReadPacket( info, m_scratchBuffer, decryptedPacketBytes, &readPacketError );
if ( !packet )
{
debug_printf( "packet processor (read packet): read packet failed - error code %d (encrypted)\n", readPacketError );
m_error = PACKET_PROCESSOR_ERROR_READ_PACKET_FAILED;
return NULL;
}
return packet;
}
else
{
PacketReadWriteInfo info;
info.context = m_context;
info.protocolId = m_protocolId;
info.packetFactory = &packetFactory;
info.streamAllocator = &streamAllocator;
info.allowedPacketTypes = unencryptedPacketTypes;
info.prefixBytes = 1;
sequence = 0;
ReadPacketError readPacketError;
Packet * packet = yojimbo::ReadPacket( info, packetData, packetBytes, &readPacketError );
if ( !packet )
{
debug_printf( "packet processor (read packet): read packet failed - error code = %d (unencrypted)\n", readPacketError );
m_error = PACKET_PROCESSOR_ERROR_READ_PACKET_FAILED;
return NULL;
}
return packet;
}
}
}