forked from facebook/watchman
-
Notifications
You must be signed in to change notification settings - Fork 0
/
bser.c
645 lines (546 loc) · 13.8 KB
/
bser.c
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
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
/* Copyright 2013-present Facebook, Inc.
* Licensed under the Apache License, Version 2.0 */
#include "watchman.h"
/*
* This defines a binary serialization of the JSON data objects in this
* library. It is designed for use with watchman and is not intended to serve
* as a general binary JSON interchange format. In particular, all integers
* are signed integers and are stored in host byte order to minimize
* transformation overhead.
*/
/* Return the smallest size int that can store the value */
#define INT_SIZE(x) (((x) == ((int8_t)x)) ? 1 : \
((x) == ((int16_t)x)) ? 2 : \
((x) == ((int32_t)x)) ? 4 : 8)
#define BSER_ARRAY 0x00
#define BSER_OBJECT 0x01
#define BSER_STRING 0x02
#define BSER_INT8 0x03
#define BSER_INT16 0x04
#define BSER_INT32 0x05
#define BSER_INT64 0x06
#define BSER_REAL 0x07
#define BSER_TRUE 0x08
#define BSER_FALSE 0x09
#define BSER_NULL 0x0a
#define BSER_TEMPLATE 0x0b
#define BSER_SKIP 0x0c
static const char bser_true = BSER_TRUE;
static const char bser_false = BSER_FALSE;
static const char bser_null = BSER_NULL;
static const char bser_string_hdr = BSER_STRING;
static const char bser_array_hdr = BSER_ARRAY;
static const char bser_object_hdr = BSER_OBJECT;
static const char bser_template_hdr = BSER_TEMPLATE;
static const char bser_skip = BSER_SKIP;
static int bser_real(double val, json_dump_callback_t dump, void *data)
{
char sz = BSER_REAL;
if (dump(&sz, sizeof(sz), data)) {
return -1;
}
return dump((char*)&val, sizeof(val), data);
}
bool bunser_string(const char *buf, json_int_t avail, json_int_t *needed,
const char **start, json_int_t *len)
{
json_int_t ineed;
if (!bunser_int(buf + 1, avail - 1, &ineed, len)) {
*needed = ineed;
return false;
}
buf += ineed + 1;
avail -= ineed + 1;
*needed = ineed + 1 + *len;
if (*len > avail) {
return false;
}
*start = buf;
return true;
}
// Attempt to unserialize an integer value.
// Returns bool if successful, and populates *val with the value.
// Otherwise populates *needed with the size required to successfully
// decode the integer value
bool bunser_int(const char *buf, json_int_t avail,
json_int_t *needed, json_int_t *val)
{
int8_t i8;
int16_t i16;
int32_t i32;
int64_t i64;
switch (buf[0]) {
case BSER_INT8:
*needed = 2;
break;
case BSER_INT16:
*needed = 3;
break;
case BSER_INT32:
*needed = 5;
break;
case BSER_INT64:
*needed = 9;
break;
default:
*needed = -1;
return false;
}
if (avail < *needed) {
return false;
}
switch (buf[0]) {
case BSER_INT8:
memcpy(&i8, buf + 1, sizeof(i8));
*val = i8;
return true;
case BSER_INT16:
memcpy(&i16, buf + 1, sizeof(i16));
*val = i16;
return true;
case BSER_INT32:
memcpy(&i32, buf + 1, sizeof(i32));
*val = i32;
return true;
case BSER_INT64:
memcpy(&i64, buf + 1, sizeof(i64));
*val = i64;
return true;
default:
return false;
}
}
static int bser_int(json_int_t val, json_dump_callback_t dump, void *data)
{
int8_t i8;
int16_t i16;
int32_t i32;
int64_t i64;
char sz;
int size = INT_SIZE(val);
char *iptr;
switch (size) {
case 1:
sz = BSER_INT8;
i8 = (int8_t)val;
iptr = (char*)&i8;
break;
case 2:
sz = BSER_INT16;
i16 = (int16_t)val;
iptr = (char*)&i16;
break;
case 4:
sz = BSER_INT32;
i32 = (int32_t)val;
iptr = (char*)&i32;
break;
case 8:
sz = BSER_INT64;
i64 = (int64_t)val;
iptr = (char*)&i64;
break;
default:
return -1;
}
if (dump(&sz, sizeof(sz), data)) {
return -1;
}
return dump(iptr, size, data);
}
static int bser_string(const char *str, json_dump_callback_t dump, void *data)
{
size_t len = strlen(str);
if (dump(&bser_string_hdr, sizeof(bser_string_hdr), data)) {
return -1;
}
if (bser_int(len, dump, data)) {
return -1;
}
if (dump(str, len, data)) {
return -1;
}
return 0;
}
static int bser_array(const json_t *array,
json_dump_callback_t dump, void *data);
static int bser_template(const json_t *array,
const json_t *templ, json_dump_callback_t dump, void *data)
{
size_t n = json_array_size(array);
size_t i, pn;
if (dump(&bser_template_hdr, sizeof(bser_template_hdr), data)) {
return -1;
}
// The template goes next
if (bser_array(templ, dump, data)) {
return -1;
}
// Now the array of arrays of object values.
// How many objects
if (bser_int(n, dump, data)) {
return -1;
}
pn = json_array_size(templ);
// For each object
for (i = 0; i < n; i++) {
json_t *obj = json_array_get(array, i);
size_t pi;
// For each factored key
for (pi = 0; pi < pn; pi++) {
const char *key = json_string_value(json_array_get(templ, pi));
json_t *val;
// Look up the object property
val = json_object_get(obj, key);
if (!val) {
// property not set on this one; emit a skip
if (dump(&bser_skip, sizeof(bser_skip), data)) {
return -1;
}
continue;
}
// Emit value
if (w_bser_dump(val, dump, data)) {
return -1;
}
}
}
return 0;
}
static int bser_array(const json_t *array,
json_dump_callback_t dump, void *data)
{
size_t n = json_array_size(array);
size_t i;
json_t *templ;
templ = json_array_get_template(array);
if (templ) {
return bser_template(array, templ, dump, data);
}
if (dump(&bser_array_hdr, sizeof(bser_array_hdr), data)) {
return -1;
}
if (bser_int(n, dump, data)) {
return -1;
}
for (i = 0; i < n; i++) {
json_t *val = json_array_get(array, i);
if (w_bser_dump(val, dump, data)) {
return -1;
}
}
return 0;
}
static int bser_object(json_t *obj,
json_dump_callback_t dump, void *data)
{
size_t n;
json_t *val;
const char *key;
void *iter;
if (dump(&bser_object_hdr, sizeof(bser_object_hdr), data)) {
return -1;
}
n = json_object_size(obj);
if (bser_int(n, dump, data)) {
return -1;
}
iter = json_object_iter(obj);
while (iter) {
key = json_object_iter_key(iter);
val = json_object_iter_value(iter);
if (bser_string(key, dump, data)) {
return -1;
}
if (w_bser_dump(val, dump, data)) {
return -1;
}
iter = json_object_iter_next(obj, iter);
}
return 0;
}
int w_bser_dump(json_t *json, json_dump_callback_t dump, void *data)
{
int type = json_typeof(json);
switch (type) {
case JSON_NULL:
return dump(&bser_null, sizeof(bser_null), data);
case JSON_TRUE:
return dump(&bser_true, sizeof(bser_true), data);
case JSON_FALSE:
return dump(&bser_false, sizeof(bser_false), data);
case JSON_REAL:
return bser_real(json_real_value(json), dump, data);
case JSON_INTEGER:
return bser_int(json_integer_value(json), dump, data);
case JSON_STRING:
return bser_string(json_string_value(json), dump, data);
case JSON_ARRAY:
return bser_array(json, dump, data);
case JSON_OBJECT:
return bser_object(json, dump, data);
default:
return -1;
}
}
static int measure(const char *buffer, size_t size, void *ptr)
{
json_int_t *tot = ptr;
*tot += size;
unused_parameter(buffer);
return 0;
}
int w_bser_write_pdu(json_t *json, json_dump_callback_t dump, void *data)
{
json_int_t m_size = 0;
if (w_bser_dump(json, measure, &m_size)) {
return -1;
}
if (dump(BSER_MAGIC, 2, data)) {
return -1;
}
if (bser_int(m_size, dump, data)) {
return -1;
}
if (w_bser_dump(json, dump, data)) {
return -1;
}
return 0;
}
static json_t *bunser_array(const char *buf, const char *end,
json_int_t *used, json_error_t *jerr)
{
json_int_t needed;
json_int_t total = 0;
json_int_t i, nelems;
json_t *arrval;
buf++;
total++;
if (!bunser_int(buf, end - buf, &needed, &nelems)) {
if (needed == -1) {
snprintf(jerr->text, sizeof(jerr->text),
"invalid integer encoding 0x%02x for array length. buf=%p\n",
(int)buf[0], buf);
return NULL;
}
*used = needed + total;
snprintf(jerr->text, sizeof(jerr->text),
"invalid array length encoding 0x%02x (needed %d but have %d)",
(int)buf[0], (int)needed, (int)(end - buf));
return NULL;
}
total += needed;
buf += needed;
arrval = json_array();
for (i = 0; i < nelems; i++) {
json_t *item;
needed = 0;
item = bunser(buf, end, &needed, jerr);
total += needed;
buf += needed;
if (!item) {
json_decref(arrval);
*used = total;
return NULL;
}
if (json_array_append_new(arrval, item)) {
json_decref(arrval);
*used = total;
snprintf(jerr->text, sizeof(jerr->text),
"failed to append array item");
return NULL;
}
}
*used = total;
return arrval;
}
static json_t *bunser_template(const char *buf, const char *end,
json_int_t *used, json_error_t *jerr)
{
json_int_t needed = 0;
json_int_t total = 0;
json_int_t i, nelems;
json_int_t ip, np;
json_t *templ = NULL, *arrval, *ret = NULL;
buf++;
total++;
if (*buf != BSER_ARRAY) {
snprintf(jerr->text, sizeof(jerr->text),
"Expected array encoding, but found 0x%02x", *buf);
*used = total;
return NULL;
}
// Load in the property names template
templ = bunser_array(buf, end, &needed, jerr);
if (!templ) {
*used = needed + total;
goto bail;
}
total += needed;
buf += needed;
// And the number of objects
needed = 0;
if (!bunser_int(buf, end - buf, &needed, &nelems)) {
*used = needed + total;
snprintf(jerr->text, sizeof(jerr->text),
"invalid object number encoding (needed %d but have %d)",
(int)needed, (int)(end - buf));
goto bail;
}
total += needed;
buf += needed;
np = json_array_size(templ);
// Now load up the array with object values
arrval = json_array_of_size((size_t)nelems);
for (i = 0; i < nelems; i++) {
json_t *item, *val;
item = json_object_of_size((size_t)np);
for (ip = 0; ip < np; ip++) {
if (*buf == BSER_SKIP) {
buf++;
total++;
continue;
}
needed = 0;
val = bunser(buf, end, &needed, jerr);
if (!val) {
*used = needed + total;
goto bail;
}
buf += needed;
total += needed;
json_object_set_new_nocheck(item,
json_string_value(json_array_get(templ, (size_t)ip)),
val);
}
json_array_append_new(arrval, item);
}
*used = total;
ret = arrval;
bail:
json_decref(templ);
return ret;
}
static json_t *bunser_object(const char *buf, const char *end,
json_int_t *used, json_error_t *jerr)
{
json_int_t needed;
json_int_t total = 0;
json_int_t i, nelems;
json_t *objval;
char keybuf[128];
total = 1;
buf++;
if (!bunser_int(buf, end - buf, &needed, &nelems)) {
*used = needed + total;
snprintf(jerr->text, sizeof(jerr->text),
"invalid object property count encoding");
return NULL;
}
total += needed;
buf += needed;
objval = json_object();
for (i = 0; i < nelems; i++) {
const char *start;
json_int_t slen;
json_t *item;
// Read key
if (!bunser_string(buf, end - buf, &needed, &start, &slen)) {
*used = total + needed;
json_decref(objval);
snprintf(jerr->text, sizeof(jerr->text),
"invalid string for object key");
return NULL;
}
total += needed;
buf += needed;
// Saves us allocating a string when the library is going to
// do that anyway
if ((uint16_t)slen > sizeof(keybuf) - 1) {
json_decref(objval);
snprintf(jerr->text, sizeof(jerr->text),
"object key is too long");
return NULL;
}
memcpy(keybuf, start, (size_t)slen);
keybuf[slen] = '\0';
// Read value
item = bunser(buf, end, &needed, jerr);
total += needed;
buf += needed;
if (!item) {
json_decref(objval);
*used = total;
return NULL;
}
if (json_object_set_new_nocheck(objval, keybuf, item)) {
json_decref(item);
json_decref(objval);
*used = total;
snprintf(jerr->text, sizeof(jerr->text),
"failed to add object property");
return NULL;
}
}
*used = total;
return objval;
}
json_t *bunser(const char *buf, const char *end, json_int_t *needed,
json_error_t *jerr)
{
json_int_t ival;
switch (buf[0]) {
case BSER_INT8:
case BSER_INT16:
case BSER_INT32:
case BSER_INT64:
if (!bunser_int(buf, end - buf, needed, &ival)) {
snprintf(jerr->text, sizeof(jerr->text),
"invalid integer encoding");
return NULL;
}
return json_integer(ival);
case BSER_STRING:
{
const char *start;
json_int_t len;
if (!bunser_string(buf, end - buf, needed, &start, &len)) {
snprintf(jerr->text, sizeof(jerr->text),
"invalid string encoding");
return NULL;
}
return json_stringn_nocheck(start, len);
}
case BSER_REAL:
{
double dval;
*needed = sizeof(double) + 1;
memcpy(&dval, buf + 1, sizeof(dval));
return json_real(dval);
}
case BSER_TRUE:
*needed = 1;
return json_true();
case BSER_FALSE:
*needed = 1;
return json_false();
case BSER_NULL:
*needed = 1;
return json_null();
case BSER_ARRAY:
return bunser_array(buf, end, needed, jerr);
case BSER_TEMPLATE:
return bunser_template(buf, end, needed, jerr);
case BSER_OBJECT:
return bunser_object(buf, end, needed, jerr);
default:
snprintf(jerr->text, sizeof(jerr->text),
"invalid bser encoding type %02x", (int)buf[0]);
return NULL;
}
#ifndef _WIN32 // It knows this is unreachable
return NULL;
#endif
}
/* vim:ts=2:sw=2:et:
*/