-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathfast_protocol.js
567 lines (506 loc) · 17 KB
/
fast_protocol.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
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
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
/*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*/
/*
* Copyright 2020 Joyent, Inc.
*/
/*
* lib/fast_protocol.js: fast protocol definitions
*/
var mod_assertplus = require('assert-plus');
var mod_crc = require('crc');
var mod_extsprintf = require('extsprintf');
var mod_old_crc = require('oldcrc');
var mod_stream = require('stream');
var mod_util = require('util');
var VError = require('verror');
/* Exported interface */
exports.fastMessageEncode = fastMessageEncode;
exports.FastMessageEncoder = FastMessageEncoder;
exports.FastMessageDecoder = FastMessageDecoder;
/* Protocol constants are exported below. */
/*
* Protocol definition
*
* All fast protocol messages look like the following:
*
* 0x00 +---------+--------+---------+---------+
* | VERSION | TYPE | STATUS | MSGID1 |
* 0x04 +---------+--------+---------+---------+
* | MSGID2 | MSGID3 | MSGID4 | CRC1 |
* 0x08 +---------+--------+---------+---------+
* | CRC2 | CRC3 | CRC4 | DLEN1 |
* 0x0c +---------+--------+---------+---------+
* | DLEN2 | DLEN3 | DLEN4 | DATA0 |
* 0x10 +---------+--------+---------+---------+
* | DATAN... |
* +---------+--------+---------+---------+
*
* VERSION 1-byte integer. The only supported values are "1" and "2".
*
* TYPE 1-byte integer. The only supported value is TYPE_JSON (0x1),
* indicating that the data payload is an encoded JSON object.
*
* STATUS 1-byte integer. The only supported values are:
*
* STATUS_DATA 0x1 indicates a "data" message
*
* STATUS_END 0x2 indicates an "end" message
*
* STATUS_ERROR 0x3 indicates an "error" message
*
* MSGID1...MSGID4 4-byte big-endian unsigned integer, a unique identifier
* for this message
*
* CRC1...CRC4 4-byte big-endian unsigned integer representing the CRC16
* value of the data payload
*
* DLEN0...DLEN4 4-byte big-endian unsigned integer representing the number
* of bytes of data payload that follow
*
* DATA0...DATAN Data payload. This is a JSON-encoded object (for TYPE =
* TYPE_JSON). The encoding length in bytes is given by the
* DLEN0...DLEN4 bytes.
*
* Due to historical bugs in node-crc, the CRC implementation used in version 1
* of the protocol is essentially incompatible with any CRC implementation other
* than the one provided by node-crc version 0.x. The changes to address this
* incompatibility (originally recorded on Github as joyent/node-fast#23) were
* done to create a migration path for clients and servers off of the buggy
* version with minimal operational impact. Clients and servers may select a
* mode of operation where only the buggy CRC calculation is used or where only
* a correct version of the calculation is used. Additionally, servers may elect
* to operate in a mode where messages whose CRC is calculated with either the
* buggy or correct implementation are accepted. In this mode the server will
* use the same CRC calculation method in response messages to a client that the
* client used when encoding the message to transmit to the server. This allows
* for clients to be updated in a gradual manner to support the correct CRC
* calculation. The FAST_CHECKSUM_* constants in this file control the mode of
* operation with respect to the CRC calculation of clients and servers. This
* mechanism can be reused in the event of other such library incompatibilities.
* This mechanism is not intended or required for normal version upgrades to the
* CRC library dependency where there is no change in the result produced by one
* of the CRC calculation methods used by node-fast (crc16 is currently the only
* one used).
*/
/*
* Message IDs: each Fast message has a message id, which is scoped to the Fast
* connection. We allocate these sequentially from a circular 31-bit space.
*/
var FP_MSGID_MAX = Math.pow(2, 31) - 1;
exports.FP_MSGID_MAX = FP_MSGID_MAX;
/*
* Field offsets
*/
var FP_OFF_VERSION = 0x0;
var FP_OFF_TYPE = FP_OFF_VERSION + 0x1; /* 0x1 */
var FP_OFF_STATUS = FP_OFF_TYPE + 0x1; /* 0x2 */
var FP_OFF_MSGID = FP_OFF_STATUS + 0x1; /* 0x3 */
var FP_OFF_CRC = FP_OFF_MSGID + 0x4; /* 0x7 */
var FP_OFF_DATALEN = FP_OFF_CRC + 0x4; /* 0xb */
var FP_OFF_DATA = FP_OFF_DATALEN + 0x4; /* 0xf */
exports.FP_OFF_VERSION = FP_OFF_VERSION;
exports.FP_OFF_TYPE = FP_OFF_TYPE;
exports.FP_OFF_STATUS = FP_OFF_STATUS;
exports.FP_OFF_MSGID = FP_OFF_MSGID;
exports.FP_OFF_CRC = FP_OFF_CRC;
exports.FP_OFF_DATALEN = FP_OFF_DATALEN;
exports.FP_OFF_DATA = FP_OFF_DATA;
/* size (in bytes) of each message header */
var FP_HEADER_SZ = FP_OFF_DATA; /* 0xf */
exports.FP_HEADER_SZ = FP_HEADER_SZ;
/* possible values for the "status" byte */
var FP_STATUS_DATA = 0x1;
var FP_STATUS_END = 0x2;
var FP_STATUS_ERROR = 0x3;
exports.FP_STATUS_DATA = FP_STATUS_DATA;
exports.FP_STATUS_END = FP_STATUS_END;
exports.FP_STATUS_ERROR = FP_STATUS_ERROR;
/* possible values for the "type" byte */
var FP_TYPE_JSON = 0x1;
exports.FP_TYPE_JSON = FP_TYPE_JSON;
/* possible values for the "version" byte */
var FP_VERSION_1 = 0x1;
var FP_VERSION_2 = 0x2;
var FP_VERSION_CURRENT = FP_VERSION_2;
exports.FP_VERSION_1 = FP_VERSION_1;
exports.FP_VERSION_2 = FP_VERSION_2;
exports.FP_VERSION_CURRENT = FP_VERSION_CURRENT;
// These constants are facilitate an upgrade path from buggy [email protected]
var FAST_CHECKSUM_V1 = 0x1;
var FAST_CHECKSUM_V1_V2 = 0x2;
var FAST_CHECKSUM_V2 = 0x3;
exports.FAST_CHECKSUM_V1 = FAST_CHECKSUM_V1;
exports.FAST_CHECKSUM_V1_V2 = FAST_CHECKSUM_V1_V2;
exports.FAST_CHECKSUM_V2 = FAST_CHECKSUM_V2;
/*
* Encode a logical message for sending over the wire. This requires the
* following named properties:
*
* msgid (number) message identifier -- see lib/fast.js
*
* data (object) represents message contents. At this level, this
* can be any plain-old JavaScript object.
*
* status (number) message "status" (one of FP_STATUS_DATA, FP_STATUS_END,
* or FP_STATUS_ERROR).
*
* Failure to match these requirements is a programmer error that may result in
* a synchronously thrown exception that should not be caught.
*/
function fastMessageEncode(msg)
{
var buffer, data_encoded, datalen, crc16;
mod_assertplus.object(msg, 'msg');
mod_assertplus.ok(typeof (msg.msgid) == 'number' &&
Math.floor(msg.msgid) == msg.msgid &&
msg.msgid >= 0 && msg.msgid <= FP_MSGID_MAX,
'msg.msgid is not an integer between 0 and FP_MSGID_MAX');
mod_assertplus.object(msg.data, 'msg.data');
mod_assertplus.number(msg.status, 'msg.status');
mod_assertplus.number(msg.version, 'msg.version');
switch (msg.status) {
case FP_STATUS_DATA:
case FP_STATUS_END:
case FP_STATUS_ERROR:
break;
default:
throw (new VError('unsupported fast message status'));
}
data_encoded = JSON.stringify(msg.data);
/*
* Fast version 1 used a buggy version of the node-crc library so we
* special case it here. All subsequent versions default to using a
* corrected version of the node-crc library.
*/
if (msg.version === FP_VERSION_1) {
crc16 = mod_old_crc.crc16(data_encoded);
} else {
crc16 = mod_crc.crc16(data_encoded);
}
datalen = Buffer.byteLength(data_encoded);
buffer = new Buffer(FP_HEADER_SZ + datalen);
buffer.writeUInt8(msg.version, FP_OFF_VERSION);
buffer.writeUInt8(FP_TYPE_JSON, FP_OFF_TYPE);
buffer.writeUInt8(msg.status, FP_OFF_STATUS);
buffer.writeUInt32BE(msg.msgid, FP_OFF_MSGID);
buffer.writeUInt32BE(crc16, FP_OFF_CRC);
buffer.writeUInt32BE(datalen, FP_OFF_DATALEN);
buffer.write(data_encoded, FP_OFF_DATA, datalen, 'utf8');
return (buffer);
}
/*
* Validate the message CRC based on the protocol version. Returns an
* object that contains the decoded CRC mode if the validation is successful
* or an error if the validation fails.
*
* version The protocol version in use. Used to transition off
* buggy node-crc version. See the comments at the top
* of this module for more details.
* headerCrc The CRC provided in the Fast message header.
* data The string representation of the Fast message data.
*/
function validateCrc(version, headerCrc, data) {
var valid = true;
var error;
switch (version) {
case FP_VERSION_1:
var v1CalculatedCrc = mod_old_crc.crc16(data);
if (v1CalculatedCrc !== headerCrc) {
valid = false;
error = crcValidationError(headerCrc, v1CalculatedCrc,
version);
}
break;
default:
var v2CalculatedCrc = mod_crc.crc16(data);
if (v2CalculatedCrc !== headerCrc) {
valid = false;
error = crcValidationError(headerCrc, v2CalculatedCrc,
version);
}
break;
}
return ({ valid: valid, error: error});
}
/*
* Return a Verror with details about a CRC validation failure.
*
* headerCrc The CRC provided in the Fast message header.
* calculatedCrc The calculated CRC for the received message.
* version The protocol version in use.
*/
function crcValidationError(headerCrc, calculatedCrc, version) {
var errorObj = {
'name': 'FastProtocolError',
'info': {
'fastReason': 'bad_crc',
'crcExpected': headerCrc,
'crcCalculated': calculatedCrc,
'version': version
}
};
return (new VError(errorObj, 'fast protocol: expected CRC %s, found %s',
headerCrc, calculatedCrc));
}
/*
* Decode a fast message from a buffer that's known to contain a single,
* well-formed message. All of the protocol fields are known to be valid (e.g.,
* version, type, status, and msgid) at this point, but the data has not been
* read, so the CRC has not been validated.
*/
function fastMessageDecode(header, buffer)
{
var datalen, datastr, json;
mod_assertplus.number(header.datalen, 'header.datalen');
datalen = header.datalen;
mod_assertplus.equal(buffer.length, FP_OFF_DATA + datalen);
datastr = buffer.toString('utf8', FP_OFF_DATA);
var crcValidationResult = validateCrc(header.version, header.crc,
datastr);
if (crcValidationResult && !crcValidationResult.valid) {
return (crcValidationResult.error);
}
try {
json = JSON.parse(datastr);
} catch (ex) {
return (new VError({
'name': 'FastProtocolError',
'cause': ex,
'info': {
'fastReason': 'invalid_json'
}
}, 'fast protocol: invalid JSON in "data"'));
}
if (typeof (json) != 'object' || json === null) {
return (new VError({
'name': 'FastProtocolError',
'info': {
'fastReason': 'bad_data'
}
}, 'fast protocol: message data must be a non-null object'));
}
if ((header.status == FP_STATUS_DATA ||
header.status == FP_STATUS_END) && !Array.isArray(json.d)) {
return (new VError({
'name': 'FastProtocolError',
'info': {
'fastReason': 'bad_data_d'
}
}, 'fast protocol: data.d for DATA and END messages must be ' +
'an array'));
}
if (header.status == FP_STATUS_ERROR &&
(typeof (json.d) != 'object' || json.d === null ||
typeof (json.d.name) != 'string' ||
typeof (json.d.message) != 'string')) {
return (new VError({
'name': 'FastProtocolError',
'info': {
'fastReason': 'bad_error'
}
}, 'fast protocol: data.d for ERROR messages must have name ' +
'and message'));
}
return ({
'status': header.status,
'msgid': header.msgid,
'data': json,
'version': header.version
});
}
/*
* Transform stream that takes logical messages and emits a buffer representing
* that message (for sending over the wire).
*/
function FastMessageEncoder()
{
mod_stream.Transform.call(this, {
'highWaterMark': 16,
'objectMode': true
});
}
mod_util.inherits(FastMessageEncoder, mod_stream.Transform);
FastMessageEncoder.prototype._transform = function (chunk, _, callback)
{
this.push(fastMessageEncode(chunk));
setImmediate(callback);
};
/*
* Transform stream that takes bytes (via Buffer objects) and emits an object
* representing the encoded Fast message.
*/
function FastMessageDecoder()
{
mod_stream.Transform.call(this, {
'objectMode': true
});
/* current state */
this.md_buffer = null; /* unparsed data */
this.md_havebytes = 0; /* bytes of unparsed data */
this.md_done = false; /* we've read end-of-stream */
this.md_error = null; /* fatal error */
this.md_pushing = false; /* currently calling push() */
/* current header */
this.md_version = null;
this.md_type = null;
this.md_status = null;
this.md_msgid = null;
this.md_crc = null;
this.md_datalen = null;
/* debug information */
this.md_nmessages = 0;
this.md_nbytes = 0;
}
mod_util.inherits(FastMessageDecoder, mod_stream.Transform);
FastMessageDecoder.prototype._transform = function (chunk, _, callback)
{
this.md_havebytes += chunk.length;
if (this.md_buffer === null) {
mod_assertplus.equal(this.md_havebytes, chunk.length);
this.md_buffer = chunk;
} else {
this.md_buffer = Buffer.concat(
[ this.md_buffer, chunk ], this.md_havebytes);
}
this.md_nbytes += chunk.length;
this.decode(callback);
};
FastMessageDecoder.prototype._flush = function (callback)
{
this.md_done = true;
this.decode(callback);
};
FastMessageDecoder.prototype.decode = function (callback)
{
var buf, msg;
if (this.md_pushing) {
return;
}
mod_assertplus.ok(this.md_error === null);
while (this.md_havebytes >= FP_HEADER_SZ) {
buf = this.md_buffer;
mod_assertplus.equal(buf.length, this.md_havebytes);
mod_assertplus.ok(buf !== null);
mod_assertplus.ok(this.md_error === null);
mod_assertplus.ok(this.md_version === null);
this.md_version = buf.readUInt8(FP_OFF_VERSION);
if (this.md_version != FP_VERSION_CURRENT &&
this.md_version != FP_VERSION_1) {
this.md_error = new VError({
'name': 'FastProtocolError',
'info': {
'fastReason': 'unsupported_version',
'foundVersion': this.md_version
}
}, 'fast protocol: unsupported version %d',
this.md_version);
break;
}
this.md_type = buf.readUInt8(FP_OFF_TYPE);
if (this.md_type != FP_TYPE_JSON) {
this.md_error = new VError({
'name': 'FastProtocolError',
'info': {
'fastReason': 'unsupported_type',
'foundType': this.md_type
}
}, 'fast protocol: unsupported type 0x%x',
this.md_type);
break;
}
this.md_status = buf.readUInt8(FP_OFF_STATUS);
switch (this.md_status) {
case FP_STATUS_DATA:
case FP_STATUS_END:
case FP_STATUS_ERROR:
break;
default:
this.md_error = new VError({
'name': 'FastProtocolError',
'info': {
'fastReason': 'unsupported_status',
'foundStatus': this.md_status
}
}, 'fast protocol: unsupported status 0x%x',
this.md_status);
break;
}
if (this.md_error !== null) {
break;
}
this.md_msgid = buf.readUInt32BE(FP_OFF_MSGID);
if (this.md_msgid < 0 || this.md_msgid > FP_MSGID_MAX) {
this.md_error = new VError({
'name': 'FastProtocolError',
'info': {
'fastReason': 'invalid_msgid',
'foundMsgid': this.md_msgid
}
}, 'fast protocol: invalid msgid %s', this.md_msgid);
break;
}
this.md_crc = buf.readUInt32BE(FP_OFF_CRC);
this.md_datalen = buf.readUInt32BE(FP_OFF_DATALEN);
if (this.md_havebytes < FP_HEADER_SZ + this.md_datalen) {
/*
* We don't have enough bytes to continue. Stop now.
* We'll end up re-parsing the header again when we have
* more data. If that turns out to be expensive, we can
* rework this code to keep track of where we were.
*/
this.md_version = null;
this.md_type = null;
this.md_status = null;
this.md_msgid = null;
this.md_crc = null;
this.md_datalen = null;
break;
}
/*
* We have a complete message. Consume it and update our buffer
* state.
*/
buf = this.md_buffer.slice(0, FP_HEADER_SZ + this.md_datalen);
this.md_buffer = this.md_buffer.slice(
FP_HEADER_SZ + this.md_datalen);
this.md_havebytes -= buf.length;
msg = fastMessageDecode({
'version': this.md_version,
'type': this.md_type,
'status': this.md_status,
'msgid': this.md_msgid,
'crc': this.md_crc,
'datalen': this.md_datalen
}, buf);
if (msg instanceof Error) {
this.md_error = msg;
break;
}
this.md_version = null;
this.md_type = null;
this.md_status = null;
this.md_msgid = null;
this.md_crc = null;
this.md_datalen = null;
this.md_pushing = true;
this.push(msg);
this.md_pushing = false;
this.md_nmessages++;
}
if (this.md_error === null && this.md_havebytes > 0 && this.md_done) {
this.md_error = new VError({
'name': 'FastProtocolError',
'info': {
'fastReason': 'incomplete_message'
}
}, 'fast protocol: incomplete message at end-of-stream');
}
if (this.md_error !== null) {
setImmediate(callback, this.md_error);
} else {
setImmediate(callback);
}
};