This repository has been archived by the owner on Sep 20, 2022. It is now read-only.
forked from wiedmann/zwift-packet-monitor
-
Notifications
You must be signed in to change notification settings - Fork 10
/
ZwiftPacketMonitorSource.js
372 lines (331 loc) · 13.5 KB
/
ZwiftPacketMonitorSource.js
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
const { time } = require('console');
const EventEmitter = require('events')
try {
var Cap = require('cap').Cap;
var decoders=require('cap').decoders, PROTOCOL=decoders.PROTOCOL
} catch (e) {
throw new Error('Probably missing Npcap/libpcap')
}
const fs = require('fs')
const protobuf = require('protobufjs')
const zwiftProtoRoot = protobuf.parse(fs.readFileSync(`${__dirname}/zwiftMessages.proto`), { keepCase: true }).root
const buffer = new Buffer.alloc(65535)
const clientToServerPacket = zwiftProtoRoot.lookup('ClientToServer')
const serverToClientPacket = zwiftProtoRoot.lookup('ServerToClient')
const payload105Packet = zwiftProtoRoot.lookup('Payload105')
const payload5Packet = zwiftProtoRoot.lookup('Payload5')
const payload4Packet = zwiftProtoRoot.lookup('Payload4')
const payload3Packet = zwiftProtoRoot.lookup('Payload3')
const payload2Packet = zwiftProtoRoot.lookup('Payload2')
class ZwiftPacketMonitor extends EventEmitter {
constructor (interfaceName, options = { }) {
// #ifdef DEBUG
console.log('ZwiftPacketMonitor: constructor()', interfaceName, options)
// #endif
super()
this._options = {
emitDecodeOutgoingError: false,
emitDecodeIncomingError: false,
...options
}
this._cap = new Cap()
this._linkType = null
this._sequence = 0
// this._tcpSeqNo = 0
this._tcpAssembledLen = 0
this._tcpBuffer = null
if (interfaceName.match(/[0-9]+\.[0-9]+\.[0-9]+\.[0-9]+/)) {
this._interfaceName = Cap.findDevice(interfaceName)
} else {
this._interfaceName = interfaceName
}
}
start () {
try {
this._linkType = this._cap.open(this._interfaceName, 'udp port 3022 or tcp port 3023', 10 * 1024 * 1024, buffer)
this._cap.setMinBytes && this._cap.setMinBytes(0)
this._cap.on('packet', this.processPacket.bind(this))
} catch (e) {
throw new Error('Error in cap.open - probably insufficient access rights')
}
}
stop () {
this._cap.close()
}
static deviceList () {
return Cap.deviceList()
}
_decodeIncoming(buffer) {
try {
let packet = serverToClientPacket.decode(buffer)
return packet
} catch (err) {
if (this._options.emitDecodeIncomingError) {
this.emit('decodeIncomingError', buffer)
}
}
}
_decodeOutgoing(buffer) {
try {
let packet = clientToServerPacket.decode(buffer)
return packet
} catch (err) {
if (this._options.emitDecodeOutgoingError) {
this.emit('decodeOutgoingError', buffer)
}
}
}
_incomingPacketEmit(packet, info) {
if (!packet || !info) return;
for (let player_state of packet.player_states) {
this.emit('incomingPlayerState', player_state, packet.world_time, info.dstport, info.dstaddr)
}
for (let player_update of packet.player_updates) {
// #ifdef DEBUG
console.log('incomingPlayerUpdate', player_update, packet.world_time)
// #endif
let payload = {};
try {
switch (player_update.tag3) {
case 105: // player entered world
payload = payload105Packet.decode(new Uint8Array(player_update.payload))
this.emit('incomingPlayerEnteredWorld', player_update, payload, packet.world_time, info.dstport, info.dstaddr)
break
case 5: // chat message
payload = payload5Packet.decode(new Uint8Array(player_update.payload))
this.emit('incomingPlayerSentMessage', player_update, payload, packet.world_time, info.dstport, info.dstaddr)
break
case 4: // ride on
payload = payload4Packet.decode(new Uint8Array(player_update.payload))
this.emit('incomingPlayerGaveRideOn', player_update, payload, packet.world_time, info.dstport, info.dstaddr)
break
case 2:
// payload = payload2Packet.decode(new Uint8Array(player_update.payload))
// this.emit('incomingPayload2', player_update, payload, packet.world_time, info.dstport, info.dstaddr)
break
case 3:
// payload = payload3Packet.decode(new Uint8Array(player_update.payload))
// this.emit('incomingPayload3', player_update, payload, packet.world_time, info.dstport, info.dstaddr)
break
case 109:
// nothing
break
case 110:
// nothing
break
default:
//
// #ifdef DEBUG
// console.log(`unknown type ${player_update.tag3}`)
// console.log(player_update)
// a bit of code to pick up data for analysis of unknown payload types:
// fs.writeFileSync(`/temp/playerupdate_${player_update.tag1}_${player_update.tag3}.raw`, new Uint8Array(player_update.payload))
// #endif
}
} catch (ex) {
// most likely an exception during decoding of payload
// #ifdef DEBUG
// fs.writeFileSync(`c:/temp/proto-payload-error.raw`, new Uint8Array(player_update.payload))
console.log(ex)
// #endif
}
this.emit('incomingPlayerUpdate', player_update, payload, packet.world_time, info.dstport, info.dstaddr)
}
if (packet.num_msgs === packet.msgnum) {
this.emit('endOfBatch')
}
}
processPacket () {
// #ifdef DEBUG
// console.log('ZwiftPacketMonitor: processPacket()')
// #endif
if (this._linkType === 'ETHERNET') {
let ret = decoders.Ethernet(buffer)
if (ret.info.type === PROTOCOL.ETHERNET.IPV4) {
ret = decoders.IPV4(buffer, ret.offset)
if (ret.info.protocol === PROTOCOL.IP.UDP) {
// #ifdef DEBUG
console.log('Decoding UDP ...');
// #endif
ret = decoders.UDP(buffer, ret.offset)
try {
if (ret.info.srcport === 3022) {
// let packet = serverToClientPacket.decode(buffer.slice(ret.offset, ret.offset + ret.info.length))
let packet = this._decodeIncoming(buffer.slice(ret.offset, ret.offset + ret.info.length))
/*
if (this._sequence) {
if (packet.seqno > this._sequence + 1) {
console.warn(`Missing packets - expecting ${this._sequence + 1}, got ${packet.seqno}`)
} else if (packet.seqno < this._squence) {
console.warn(`Delayed packet - expecting ${this._sequence + 1}, got ${packet.seqno}`)
return
}
}
this._sequence = packet.seqno
*/
this._incomingPacketEmit(packet, ret.info)
} else if (ret.info.dstport === 3022) {
// #ifdef DEBUG
console.log('Decoding outgoing UDP package ...');
// #endif
try {
// 2020-11-14 extra handling added to handle what seems to be extra information preceeding the protobuf
let skip = 5; // uncertain if this number should be fixed or
// ...if the first byte(so far only seen with value 0x06)
// really is the offset where protobuf starts, so add some extra checks just in case:
if (buffer.slice(ret.offset + skip, ret.offset + skip + 1).equals(Buffer.from([0x08]))) {
// protobuf does seem to start after skip bytes
} else if (buffer.slice(ret.offset, ret.offset + 1).equals(Buffer.from([0x08]))) {
// old format apparently, starting directly with protobuf instead of new header
skip = 0
} else {
// use the first byte to determine how many bytes to skip
skip = buffer.slice(ret.offset, ret.offset + 1).readUIntBE(0, 1) - 1
}
let packet = this._decodeOutgoing(buffer.slice(ret.offset + skip, ret.offset + ret.info.length - 4))
if (packet && packet.state) {
this.emit('outgoingPlayerState', packet.state, packet.world_time, ret.info.srcport, ret.info.srcaddr)
}
} catch (ex) {
// #ifdef DEBUG
// console.log(ret.offset, ret.info.length, ex)
// #endif
}
}
} catch (ex) {
// #ifdef DEBUG
console.log(ex)
// #endif
}
} else if (ret.info.protocol === PROTOCOL.IP.TCP) {
var datalen = ret.info.totallen - ret.hdrlen;
// #ifdef DEBUG
console.log('Decoding TCP ...');
// #endif
ret = decoders.TCP(buffer, ret.offset);
datalen -= ret.hdrlen;
try {
if (ret.info.srcport === 3023 && datalen > 0) {
let packet = null
let flagPSH = ((ret.info.flags & 0x08) !== 0)
let flagACK = ((ret.info.flags & 0x10) !== 0)
let flagsPshAck = (ret.info.flags == 0x18)
let flagsAck = (ret.info.flags == 0x10)
let tcpPayloadComplete = false
if (flagsPshAck && !this._tcpBuffer) {
// this TCP packet does not require assembling
this._tcpBuffer = buffer.slice(ret.offset, ret.offset + datalen)
this._tcpAssembledLen = datalen
tcpPayloadComplete = true
} else if (flagsPshAck) {
// This is the last TCP packet in a sequence
this._tcpBuffer = Buffer.concat([this._tcpBuffer, buffer.slice(ret.offset, ret.offset + datalen)])
this._tcpAssembledLen += datalen
tcpPayloadComplete = true
} else if (flagsAck && !this._tcpBuffer) {
// This is the first TCP packet in a sequence
this._tcpBuffer = Buffer.concat([buffer.slice(ret.offset, ret.offset + datalen)])
this._tcpAssembledLen = datalen
} else if (flagsAck) {
// This is an intermediate TCP packet in a sequence
this._tcpBuffer = Buffer.concat([this._tcpBuffer, buffer.slice(ret.offset, ret.offset + datalen)])
this._tcpAssembledLen += datalen
}
if (tcpPayloadComplete) {
// all payloads were assembled, now extract and process all messages in this._tcpBuffer
// The assembled TCP payload contains one or more messages
// <msg len> <msg> [<msg len> <msg>]*
let offset = 0
let l = 0
while (offset + l < this._tcpAssembledLen) {
let b = this._tcpBuffer.slice(offset, offset + 2)
if (b) {
l = b.readUInt16BE() // total length of the message is stored in first two bytes
}
try {
packet = this._decodeIncoming(this._tcpBuffer.slice(offset + 2, offset + 2 + l))
} catch (ex) {
// #ifdef DEBUG
// #endif
}
if (packet) {
// #ifdef DEBUG
console.log('has packet');
// #endif
this._incomingPacketEmit(packet, ret.info)
}
offset = offset + 2 + l
l = 0
} // end while
// all packets in assembled _tcpBuffer are processed now
// reset _tcpAssembledLen and _tcpBuffer for next sequence to assemble
this._tcpBuffer = null
this._tcpAssembledLen = 0
}
// #ifdef DEBUG
// primarily for tracking activity during debug:
console.log(`ACK ${((ret.info.flags & 0x10) !== 0)} PSH ${((ret.info.flags & 0x08) !== 0)} datalen ${datalen}`)
// #endif
}
} catch (ex) {
// #ifdef DEBUG
console.log(ex)
// #endif
// reset _tcpAssembledLen and _tcpBuffer for next sequence to assemble in case of an exception
this._tcpAssembledLen = 0
this._tcpBuffer = null
}
}
}
}
}
}
// #ifdef LOGGER
class ZwiftPacketMonitorLogger extends ZwiftPacketMonitor {
constructor(interfaceName, options = {}) {
super(interfaceName)
this._options = {
dir: '/temp',
incoming: true,
outgoing: true,
payload: true,
...options
}
this._packetSeqNo = 0
this._payloadSeqNo = 0
if (this._options.dir) {
try {
fs.mkdirSync(this._options.dir)
} catch (e) {
if (e.code != 'EEXIST') throw e
}
}
}
_decodeOutgoing(buffer) {
if (buffer && this._options.outgoing) {
fs.writeFile(`${this._options.dir}/packet_${(this._packetSeqNo += 1)}_${Date.now()}_type_outgoing.raw`, new Uint8Array(buffer), (err) => { })
}
return super._decodeOutgoing(buffer)
}
_decodeIncoming(buffer) {
if (buffer && this._options.incoming) {
fs.writeFile(`${this._options.dir}/packet_${(this._packetSeqNo += 1)}_${Date.now()}_type_incoming.raw`, new Uint8Array(buffer), (err) => { })
}
return super._decodeIncoming(buffer)
}
_incomingPacketEmit(packet, info) {
var result = super._incomingPacketEmit(packet, info)
if (packet && this._options.payload) {
for (let player_update of packet.player_updates) {
fs.writeFile(`${this._options.dir}/playerupdate_payload_${(this._payloadSeqNo += 1)}_${Date.now()}_type_${player_update.tag3}.raw`, new Uint8Array(player_update.payload), (err) => { })
}
}
return result
}
}
// #endif
// #ifdef LOGGER
module.exports = ZwiftPacketMonitorLogger
// #else
module.exports = ZwiftPacketMonitor
// #endif