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
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
|
/*
* raknet.c
*
* Copyright (C) 2011-22 - ntop.org
*
* nDPI is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* nDPI is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with nDPI. If not, see <http://www.gnu.org/licenses/>.
*
*/
#include "ndpi_protocol_ids.h"
#define NDPI_CURRENT_PROTO NDPI_PROTOCOL_RAKNET
#include "ndpi_api.h"
#include "ndpi_private.h"
static void ndpi_int_raknet_add_connection(struct ndpi_detection_module_struct * const ndpi_struct,
struct ndpi_flow_struct * const flow)
{
NDPI_LOG_INFO(ndpi_struct, "found RakNet\n");
ndpi_set_detected_protocol(ndpi_struct, flow,
NDPI_PROTOCOL_RAKNET,
NDPI_PROTOCOL_UNKNOWN,
NDPI_CONFIDENCE_DPI);
}
static size_t raknet_dissect_ip(struct ndpi_packet_struct * const packet, size_t offset)
{
if (offset + 1 >= packet->payload_packet_len ||
(packet->payload[offset] != 0x04 /* IPv4 */ &&
packet->payload[offset] != 0x06 /* IPv6 */))
{
return 0;
}
return (packet->payload[offset] == 0x04 ? 4 : 16);
}
static int is_custom_version(struct ndpi_detection_module_struct *ndpi_struct)
{
struct ndpi_packet_struct *packet = &ndpi_struct->packet;
unsigned char magic[] = { 0x00, 0xFF, 0xFF, 0x00, 0xFE, 0xFE, 0xFE, 0xFE,
0xFD, 0xFD, 0xFD, 0xFD, 0x12, 0x34, 0x56, 0x78 };
if (packet->payload_packet_len >= 1200) /* Full MTU packet */
{
/* Offset 32 has been found only in the traces; the other ones are present
also in the Raknet heuristic in Wireshark */
if (memcmp(magic, &packet->payload[1], sizeof(magic)) == 0 ||
memcmp(magic, &packet->payload[9], sizeof(magic)) == 0 ||
memcmp(magic, &packet->payload[17], sizeof(magic)) == 0 ||
memcmp(magic, &packet->payload[32], sizeof(magic)) == 0)
{
return 1;
}
}
return 0;
}
static void exclude_proto(struct ndpi_detection_module_struct *ndpi_struct,
struct ndpi_flow_struct *flow)
{
if (flow->l4.udp.raknet_custom == 1)
{
NDPI_LOG_INFO(ndpi_struct, "found RakNet (custom version)\n");
/* Classify as Raknet or as Roblox?
This pattern ha been observed with Roblox games but it might be used by
other protocols too. Keep the generic classification, for the time being */
ndpi_int_raknet_add_connection(ndpi_struct, flow);
} else {
NDPI_EXCLUDE_PROTO(ndpi_struct, flow);
}
}
/* Reference: https://wiki.vg/Raknet_Protocol */
static void ndpi_search_raknet(struct ndpi_detection_module_struct *ndpi_struct,
struct ndpi_flow_struct *flow)
{
struct ndpi_packet_struct * const packet = &ndpi_struct->packet;
u_int8_t op, ip_addr_offset, required_packets = 3;
NDPI_LOG_DBG(ndpi_struct, "search RakNet\n");
/* There are two "versions" of Raknet:
* plaintext one: we need multiple packets for classification and for extracting metadata
* custom/encrypted one: an extension used by Roblox games (and others?).
Only the first pkt is required.
The main issue is that these two versions "overlap", i.e. some plaintext flows might be wrongly
identified as encrypted one (losing their metadata).
Solution: check for the custoom/encrypted version, cache the result and use it only if/when the
standard detection ends.
*/
if (flow->packet_counter == 1)
{
flow->l4.udp.raknet_custom = is_custom_version(ndpi_struct);
}
if (packet->payload_packet_len < 7)
{
exclude_proto(ndpi_struct, flow);
return;
}
op = packet->payload[0];
switch (op)
{
case 0x00: /* Connected Ping */
if (packet->payload_packet_len != 8)
{
exclude_proto(ndpi_struct, flow);
return;
}
required_packets = 6;
break;
case 0x01: /* Unconnected Ping */
case 0x02: /* Unconnected Ping */
if (packet->payload_packet_len != 32)
{
exclude_proto(ndpi_struct, flow);
return;
}
required_packets = 6;
break;
case 0x03: /* Connected Pong */
if (packet->payload_packet_len != 16)
{
exclude_proto(ndpi_struct, flow);
return;
}
required_packets = 6;
break;
case 0x05: /* Open Connection Request 1 */
if (packet->payload_packet_len < 18 ||
packet->payload[17] > 10 /* maximum supported protocol version */)
{
exclude_proto(ndpi_struct, flow);
return;
}
required_packets = 6;
break;
case 0x06: /* Open Connection Reply 1 */
if (packet->payload_packet_len != 28 ||
packet->payload[25] > 0x01 /* connection uses encryption: bool -> 0x00 or 0x01 */)
{
exclude_proto(ndpi_struct, flow);
return;
}
{
u_int16_t mtu_size = ntohs(get_u_int16_t(packet->payload, 26));
if (mtu_size > 1500 /* Max. supported MTU, see: http://www.jenkinssoftware.com/raknet/manual/programmingtips.html */)
{
exclude_proto(ndpi_struct, flow);
return;
}
}
required_packets = 4;
break;
case 0x07: /* Open Connection Request 2 */
ip_addr_offset = raknet_dissect_ip(packet, 17);
if (ip_addr_offset == 0 ||
!((ip_addr_offset == 16 && packet->payload_packet_len == 46) ||
(ip_addr_offset == 4 && packet->payload_packet_len == 34)))
{
exclude_proto(ndpi_struct, flow);
return;
}
{
u_int16_t mtu_size = ntohs(get_u_int16_t(packet->payload, 20 + ip_addr_offset));
if (mtu_size > 1500 /* Max. supported MTU, see: http://www.jenkinssoftware.com/raknet/manual/programmingtips.html */)
{
exclude_proto(ndpi_struct, flow);
return;
}
}
break;
case 0x08: /* Open Connection Reply 2 */
ip_addr_offset = raknet_dissect_ip(packet, 25);
if (ip_addr_offset == 0 ||
!((ip_addr_offset == 16 && packet->payload_packet_len == 47) ||
(ip_addr_offset == 4 && packet->payload_packet_len == 35)))
{
exclude_proto(ndpi_struct, flow);
return;
}
{
u_int16_t mtu_size = ntohs(get_u_int16_t(packet->payload, 28 + ip_addr_offset));
if (mtu_size > 1500 /* Max. supported MTU, see: http://www.jenkinssoftware.com/raknet/manual/programmingtips.html */)
{
exclude_proto(ndpi_struct, flow);
return;
}
}
break;
case 0x10: /* Connection Request Accepted */
case 0x13: /* New Incoming Connection */
{
size_t i;
ip_addr_offset = 4 + raknet_dissect_ip(packet, 0);
if (op == 0x10)
{
ip_addr_offset += 2; // System Index
}
for (i = 0; i < 10; ++i)
{
ip_addr_offset += 3 + raknet_dissect_ip(packet, ip_addr_offset);
}
ip_addr_offset += 16;
if (ip_addr_offset != packet->payload_packet_len)
{
exclude_proto(ndpi_struct, flow);
return;
}
}
break;
/* Check for Frame Set Packet's */
case 0x80:
case 0x81:
case 0x82:
case 0x83:
case 0x84:
case 0x85:
case 0x86:
case 0x87:
case 0x88:
case 0x89:
case 0x8a:
case 0x8b:
case 0x8c:
case 0x8d:
{
size_t frame_offset = 4;
do {
u_int8_t msg_flags = get_u_int8_t(packet->payload, frame_offset);
if ((msg_flags & 0x0F) != 0)
{
exclude_proto(ndpi_struct, flow);
return;
}
u_int16_t msg_size = ntohs(get_u_int16_t(packet->payload, frame_offset + 1));
msg_size /= 8;
if (msg_size == 0)
{
exclude_proto(ndpi_struct, flow);
break;
}
u_int8_t reliability_type = (msg_flags & 0xE0) >> 5;
if (reliability_type >= 2 && reliability_type <= 4 /* is reliable? */)
{
frame_offset += 3;
}
if (reliability_type == 1 || reliability_type == 4 /* is sequenced? */)
{
frame_offset += 3;
}
if (reliability_type == 3 || reliability_type == 7 /* is ordered? */)
{
frame_offset += 4;
}
if ((msg_flags & 0x10) != 0 /* is fragmented? */)
{
frame_offset += 10;
}
frame_offset += msg_size + 3;
} while (frame_offset + 3 <= packet->payload_packet_len);
/* We've dissected enough to be sure. */
if (frame_offset == packet->payload_packet_len)
{
/* This packet might also be a RTP/RTCP one: give precedence to RTP/RTCP dissector */
if(flow->rtp_stage == 0 && flow->rtcp_stage == 0)
ndpi_int_raknet_add_connection(ndpi_struct, flow);
} else {
exclude_proto(ndpi_struct, flow);
}
return;
}
case 0x09: /* Connection Request */
if (packet->payload_packet_len != 16)
{
exclude_proto(ndpi_struct, flow);
return;
}
required_packets = 6;
break;
case 0x15: /* Disconnect */
required_packets = 8;
break;
case 0x19: /* Incompatible Protocol */
if (packet->payload_packet_len != 25 ||
packet->payload[17] > 10)
{
exclude_proto(ndpi_struct, flow);
return;
}
break;
case 0x1c: /* Unconnected Pong */
if (packet->payload_packet_len < 35)
{
exclude_proto(ndpi_struct, flow);
return;
}
{
u_int16_t motd_len = ntohs(get_u_int16_t(packet->payload, 33));
if (motd_len == 0 || motd_len + 35 != packet->payload_packet_len)
{
exclude_proto(ndpi_struct, flow);
return;
}
}
break;
case 0xa0: /* NACK */
case 0xc0: /* ACK */
{
u_int16_t record_count = ntohs(get_u_int16_t(packet->payload, 1));
size_t record_index = 0, record_offset = 3;
do {
if (packet->payload[record_offset] == 0x00 /* Range */)
{
record_offset += 7;
} else if (packet->payload[record_offset] == 0x01 /* No Range */)
{
record_offset += 4;
} else {
exclude_proto(ndpi_struct, flow);
return;
}
} while (++record_index < record_count &&
record_offset + 4 <= packet->payload_packet_len);
if (record_index == record_count && record_offset == packet->payload_packet_len)
{
/* This packet might also be a RTP/RTCP one: give precedence to RTP/RTCP dissector */
if(flow->rtp_stage == 0 && flow->rtcp_stage == 0)
ndpi_int_raknet_add_connection(ndpi_struct, flow);
} else {
exclude_proto(ndpi_struct, flow);
}
return;
}
case 0xfe: /* Game Packet */
required_packets = 8;
break;
default: /* Invalid RakNet packet */
exclude_proto(ndpi_struct, flow);
return;
}
if (flow->packet_counter < required_packets)
{
return;
}
ndpi_int_raknet_add_connection(ndpi_struct, flow);
}
void init_raknet_dissector(struct ndpi_detection_module_struct *ndpi_struct,
u_int32_t *id)
{
ndpi_set_bitmask_protocol_detection("RakNet", ndpi_struct, *id,
NDPI_PROTOCOL_RAKNET,
ndpi_search_raknet,
NDPI_SELECTION_BITMASK_PROTOCOL_V4_V6_UDP_WITH_PAYLOAD,
SAVE_DETECTION_BITMASK_AS_UNKNOWN,
ADD_TO_DETECTION_BITMASK);
*id += 1;
}
|