-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.js
395 lines (320 loc) · 9.78 KB
/
index.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
'use strict';
// Below is the deterministic finite automaton used for UTF-8 data validation,
// it is added here for easier understanding of the algorithm used in the
// exported function. The validation process should start in the state "a" and
// should end in the same state to have a valid UTF-8 sequence, in any other
// case an invalid bytes sequence is received.
//
// +---------+
// | |-----------+
// | | | 00..7F
// | |<----------+
// | | C2..DF +---------+
// | |------------------------------------------------------>| |
// | | | |
// | | +-------------------------------+ | |
// | | E0 | | A0..BF | |
// | |---------->| c |---------->| |
// | | | | | |
// | | +-------------------------------+ | |
// | | | |
// | | E1..EC, EE, EF +---------+ | |
// | |-------------------------------->| | | |
// | | | | | |
// | | +---------+ | | | |
// | | F0 | | 90..BF | | | |
// | |---------->| f |---------->| | | |
// | | | | | | | |
// | | +---------+ | | | |
// | | | | | |
// | | +---------+ | | | |
// | | F1..F3 | | 80..BF | | 80..BF | |
// | a |---------->| g |---------->| d |---------->| b |
// | | | | | | | |
// | | +---------+ | | | |
// | | | | | |
// | | +---------+ | | | |
// | | F4 | | 80..8F | | | |
// | |---------->| h |---------->| | | |
// | | | | | | | |
// | | +---------+ +---------+ | |
// | | | |
// | | +-------------------------------+ | |
// | | ED | | 80..9F | |
// | |---------->| e |---------->| |
// | | | | | |
// | | +-------------------------------+ | |
// | | | |
// | | 80..BF | |
// | |<------------------------------------------------------| |
// +---------+ +---------+
/**
* @typedef {Buffer | Uint8Array} BufferData
* @typedef {(byte: number) => boolean} SingleByteValidation
* @typedef {(buffer: BufferData, index: number) => boolean} MultiByteValidation
*/
/**
* Validate 00..7F bytes
* @type {SingleByteValidation}
*/
const aa = (byte) => (byte < 0x80);
/**
* Validate C2..DF bytes
* @type {SingleByteValidation}
*/
const ab = (byte) => (byte > 0xC1 && byte < 0xE0);
/**
* Validate E0 byte
* @type {SingleByteValidation}
*/
const ac = (byte) => (byte === 0xE0);
/**
* Validate E1..EC, EE, EF bytes
* @type {SingleByteValidation}
*/
const ad = (byte) => ((byte & 0xF0) === 0xE0 && !ac(byte) && !ae(byte));
/**
* Validate ED byte
* @type {SingleByteValidation}
*/
const ae = (byte) => (byte === 0xED);
/**
* Validate F0 byte
* @type {SingleByteValidation}
*/
const af = (byte) => (byte === 0xF0);
/**
* Validate F1..F3 bytes
* @type {SingleByteValidation}
*/
const ag = (byte) => (byte > 0xF0 && byte < 0xF4);
/**
* Validate F4 byte
* @type {SingleByteValidation}
*/
const ah = (byte) => (byte === 0xF4);
/**
* Validate 80..BF bytes
* @type {SingleByteValidation}
*/
const ba = (byte) => ((byte & 0xC0) === 0x80);
/**
* Validate A0..BF bytes
* @type {SingleByteValidation}
*/
const cb = (byte) => ((byte & 0xE0) === 0xA0);
/**
* Validate 80..9F bytes
* @type {SingleByteValidation}
*/
const eb = (byte) => ((byte & 0xE0) === 0x80);
/**
* Validate 90..BF bytes
* @type {SingleByteValidation}
*/
const fd = (byte) => (byte > 0x8F && byte < 0xC0);
/**
* Validate 80..8F bytes
* @type {SingleByteValidation}
*/
const hd = (byte) => ((byte & 0xF0) === 0x80);
/**
* Validate A0..BF -> 80..BF byte sequence
* @type {MultiByteValidation}
*/
const ca = (b, i) => (cb(b[i]) && ba(b[i + 1]));
/**
* Validate 80..BF -> 80..BF byte sequence
* @type {MultiByteValidation}
*/
const da = (b, i) => (ba(b[i]) && ba(b[i + 1]));
/**
* Validate 80..9F -> 80..BF byte sequence
* @type {MultiByteValidation}
*/
const ea = (b, i) => (eb(b[i]) && ba(b[i + 1]));
/**
* Validate 90..BF -> 80..BF -> 80..BF byte sequence
* @type {MultiByteValidation}
*/
const fa = (b, i) => (fd(b[i]) && da(b, i + 1));
/**
* Validate 80..BF -> 80..BF -> 80..BF byte sequence
* @type {MultiByteValidation}
*/
const ga = (b, i) => (ba(b[i]) && da(b, i + 1));
/**
* Validate 80..8F -> 80..BF -> 80..BF byte sequence
* @type {MultiByteValidation}
*/
const ha = (b, i) => (hd(b[i]) && da(b, i + 1));
/**
* Validate C2..DF -> 80..BF byte sequence
* @type {MultiByteValidation}
*/
const aba = (b, i) => (ab(b[i]) && ba(b[i + 1]));
/**
* Validate E0 -> A0..BF -> 80..BF byte sequence
* @type {MultiByteValidation}
*/
const aca = (b, i) => (ac(b[i]) && ca(b, i + 1));
/**
* Validate E1..EC, EE, EF -> 80..BF -> 80..BF byte sequence
* @type {MultiByteValidation}
*/
const ada = (b, i) => (ad(b[i]) && da(b, i + 1));
/**
* Validate a 00..7F sequence of 4 bytes
* @type {MultiByteValidation}
*/
const aam = (b, i) => aa(b[i] | b[i + 1] | b[i + 2] | b[i + 3]);
/**
* Validate two C2..DF -> 80..BF sequences
* @type {MultiByteValidation}
*/
const abm = (b, i) => (aba(b, i) && aba(b, i + 2));
/**
* Validate trailing bytes in buffer
* @param {BufferData} buffer
* @param {number} index
* @param {number} length
* @returns {boolean}
*/
const vt = (buffer, index, length) => {
// Check for one byte to validate
if (length === 1) {
// a -> a
return aa(buffer[index]);
}
// Check for two bytes to validate
if (length === 2) {
// a -> a -> a
if (aa(buffer[index] | buffer[index + 1])) {
return true;
}
// a -> b -> a
return aba(buffer, index);
}
// a -> a
if (aa(buffer[index])) {
// a -> a -> a -> a
if (aa(buffer[index + 1] | buffer[index + 2])) {
return true;
}
// a -> a -> b -> a
return aba(buffer, index + 1);
}
// a -> b
if (ab(buffer[index])) {
// a -> b -> a -> a
return ba(buffer[index + 1]) && aa(buffer[index + 2]);
}
// a -> c
if (ac(buffer[index])) {
// a -> c -> b -> a
return ca(buffer, index + 1);
}
// a -> d
if (ad(buffer[index])) {
// a -> d -> b -> a
return da(buffer, index + 1);
}
// a -> e -> b -> a
return ae(buffer[index]) && ea(buffer, index + 1);
};
/**
* Validate UTF-8 data in the buffer
* @param {BufferData} buffer
* @param {number} [start]
* @param {number} [end]
* @returns {boolean}
*/
module.exports = (buffer, start = 0, end = buffer.length) => {
const stop = end - 3;
let index = start;
// Loop through all buffer bytes
while (index < stop) {
// Cache first byte value
const byte = buffer[index];
// a -> a
if (aa(byte)) {
index++;
// Optimize for 4 consecutive ASCII bytes
while (index < stop && aam(buffer, index)) {
index += 4;
}
// a -> b
} else if (ab(byte)) {
// a -> b -> x
if (!ba(buffer[index + 1])) {
return false;
}
// a -> b -> a
index += 2;
// Optimize for repeated 2 bytes sequence
while (index < stop && abm(buffer, index)) {
index += 4;
}
// a -> c
} else if (ac(byte)) {
// a -> c -> x
if (!ca(buffer, index + 1)) {
return false;
}
// a -> c -> b -> a
index += 3;
// Optimize for repeated 3 bytes sequence (a -> c -> ...)
while (index < stop && aca(buffer, index)) {
index += 3;
}
// a -> d
} else if (ad(byte)) {
// a -> d -> x
if (!da(buffer, index + 1)) {
return false;
}
// a -> d -> b -> a
index += 3;
// Optimize for repeated 3 bytes sequence (a -> d -> ...)
while (index < stop && ada(buffer, index)) {
index += 3;
}
// a -> e
} else if (ae(byte)) {
// a -> e -> x
if (!ea(buffer, index + 1)) {
return false;
}
// a -> e -> b -> a
index += 3;
// a -> f
} else if (af(byte)) {
// a -> f -> x
if (!fa(buffer, index + 1)) {
return false;
}
// a -> f -> d -> b -> a
index += 4;
// a -> g
} else if (ag(byte)) {
// a -> g -> x
if (!ga(buffer, index + 1)) {
return false;
}
// a -> g -> d -> b -> a
index += 4;
// a -> h
} else if (ah(buffer[index]) && ha(buffer, index + 1)) {
// a -> h -> d -> b -> a
index += 4;
// x
} else {
return false;
}
}
// Check for trailing bytes that were not covered in the previous loop
if (index < end) {
return vt(buffer, index, end - index);
}
return true;
};