-
Notifications
You must be signed in to change notification settings - Fork 6.5k
Expand file tree
/
Copy pathbuffer.c
More file actions
565 lines (440 loc) · 17.5 KB
/
Copy pathbuffer.c
File metadata and controls
565 lines (440 loc) · 17.5 KB
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
// SPDX-License-Identifier: GPL-3.0-or-later
#include "../libnetdata.h"
static ALWAYS_INLINE void buffer_overflow_init(BUFFER *b)
{
b->buffer[b->size] = '\0';
strcpy(&b->buffer[b->size + 1], BUFFER_OVERFLOW_EOF);
}
ALWAYS_INLINE void buffer_reset(BUFFER *wb) {
buffer_flush(wb);
wb->content_type = CT_TEXT_PLAIN;
wb->options = 0;
wb->date = 0;
wb->expires = 0;
buffer_no_cacheable(wb);
buffer_overflow_check(wb);
}
void buffer_char_replace(BUFFER *wb, char from, char to) {
char *s = wb->buffer, *end = &wb->buffer[wb->len];
while(s != end) {
if(*s == from) *s = to;
s++;
}
buffer_overflow_check(wb);
}
ALWAYS_INLINE void buffer_print_sn_flags(BUFFER *wb, SN_FLAGS flags, bool send_anomaly_bit) {
if(unlikely(flags == SN_EMPTY_SLOT)) {
buffer_fast_strcat(wb, "E", 1);
return;
}
size_t printed = 0;
if(likely(send_anomaly_bit && (flags & SN_FLAG_NOT_ANOMALOUS))) {
buffer_fast_strcat(wb, "A", 1);
printed++;
}
if(unlikely(flags & SN_FLAG_RESET)) {
buffer_fast_strcat(wb, "R", 1);
printed++;
}
if(!printed)
buffer_fast_strcat(wb, "''", 2);
}
void buffer_strcat_htmlescape(BUFFER *wb, const char *txt)
{
while(*txt) {
switch(*txt) {
case '&': buffer_strcat(wb, "&"); break;
case '<': buffer_strcat(wb, "<"); break;
case '>': buffer_strcat(wb, ">"); break;
case '"': buffer_strcat(wb, """); break;
case '/': buffer_strcat(wb, "/"); break;
case '\'': buffer_strcat(wb, "'"); break;
default: {
buffer_need_bytes(wb, 1);
wb->buffer[wb->len++] = *txt;
}
}
txt++;
}
wb->buffer[wb->len] = '\0';
buffer_overflow_check(wb);
}
void buffer_snprintf(BUFFER *wb, size_t len, const char *fmt, ...)
{
if(unlikely(!fmt || !*fmt)) return;
buffer_need_bytes(wb, len + 1);
va_list args;
va_start(args, fmt);
// vsnprintfz() returns the number of bytes actually written - after possible truncation
wb->len += vsnprintfz(&wb->buffer[wb->len], len, fmt, args);
va_end(args);
buffer_overflow_check(wb);
// the buffer is \0 terminated by vsnprintfz
}
void buffer_vsprintf(BUFFER *wb, const char *fmt, va_list args) {
if(unlikely(!fmt || !*fmt)) return;
size_t full_size_bytes = 0, need = 2, space_remaining = 0;
do {
need += full_size_bytes + 2;
buffer_need_bytes(wb, need);
space_remaining = wb->size - wb->len - 1;
// Use the copy of va_list for vsnprintf
va_list args_copy;
va_copy(args_copy, args);
// vsnprintf() returns the number of bytes required, even if bigger than the buffer provided
full_size_bytes = (size_t) vsnprintf(&wb->buffer[wb->len], space_remaining, fmt, args_copy);
va_end(args_copy);
} while(full_size_bytes >= space_remaining);
wb->len += full_size_bytes;
wb->buffer[wb->len] = '\0';
buffer_overflow_check(wb);
}
void buffer_sprintf(BUFFER *wb, const char *fmt, ...)
{
va_list args;
va_start(args, fmt);
buffer_vsprintf(wb, fmt, args);
va_end(args);
}
void buffer_json_member_add_sprintf(BUFFER *wb, const char *key, const char *fmt, ...)
{
va_list args;
// Create a temporary buffer for the formatted string
BUFFER *tmp = buffer_create(0, NULL);
va_start(args, fmt);
buffer_vsprintf(tmp, fmt, args);
va_end(args);
// Add as JSON member (which will handle escaping)
buffer_json_member_add_string(wb, key, buffer_tostring(tmp));
// Free the temporary buffer
buffer_free(tmp);
}
void buffer_json_add_array_item_sprintf(BUFFER *wb, const char *fmt, ...)
{
va_list args;
// Create a temporary buffer for the formatted string
BUFFER *tmp = buffer_create(0, NULL);
va_start(args, fmt);
buffer_vsprintf(tmp, fmt, args);
va_end(args);
// Add as array item (which will handle escaping)
buffer_json_add_array_item_string(wb, buffer_tostring(tmp));
// Free the temporary buffer
buffer_free(tmp);
}
// generate a javascript date, the fastest possible way...
void buffer_jsdate(BUFFER *wb, int year, int month, int day, int hours, int minutes, int seconds)
{
// 10 20 30 = 35
// 01234567890123456789012345678901234
// Date(2014,04,01,03,28,20)
buffer_need_bytes(wb, 30);
char *b = &wb->buffer[wb->len], *p;
#if __BYTE_ORDER__ == __ORDER_LITTLE_ENDIAN__
const uint32_t date = 0x65746144; // "Date" backwards.
#else
const uint32_t date = 0x44617465; // "Date"
#endif
memcpy(b, &date, sizeof(date));
p = b + sizeof(date);
*p++ = '(';
*p++ = '0' + year / 1000; year %= 1000;
*p++ = '0' + year / 100; year %= 100;
*p++ = '0' + year / 10;
*p++ = '0' + year % 10;
*p++ = ',';
*p = '0' + month / 10; if (*p != '0') p++;
*p++ = '0' + month % 10;
*p++ = ',';
*p = '0' + day / 10; if (*p != '0') p++;
*p++ = '0' + day % 10;
*p++ = ',';
*p = '0' + hours / 10; if (*p != '0') p++;
*p++ = '0' + hours % 10;
*p++ = ',';
*p = '0' + minutes / 10; if (*p != '0') p++;
*p++ = '0' + minutes % 10;
*p++ = ',';
*p = '0' + seconds / 10; if (*p != '0') p++;
*p++ = '0' + seconds % 10;
#if __BYTE_ORDER__ == __ORDER_LITTLE_ENDIAN__
const uint16_t terminator = 0x0029; // ")\0" backwards.
#else
const uint16_t terminator = 0x2900; // ")\0"
#endif
memcpy(p, &terminator, sizeof(terminator));
p += sizeof(terminator);
wb->len += (size_t)(p - b - 1);
// terminate it
wb->buffer[wb->len] = '\0';
buffer_overflow_check(wb);
}
// generate a date, the fastest possible way...
void buffer_date(BUFFER *wb, int year, int month, int day, int hours, int minutes, int seconds)
{
// 10 20 30 = 35
// 01234567890123456789012345678901234
// 2014-04-01 03:28:20
buffer_need_bytes(wb, 36);
char *b = &wb->buffer[wb->len];
char *p = b;
*p++ = '0' + year / 1000; year %= 1000;
*p++ = '0' + year / 100; year %= 100;
*p++ = '0' + year / 10;
*p++ = '0' + year % 10;
*p++ = '-';
*p++ = '0' + month / 10;
*p++ = '0' + month % 10;
*p++ = '-';
*p++ = '0' + day / 10;
*p++ = '0' + day % 10;
*p++ = ' ';
*p++ = '0' + hours / 10;
*p++ = '0' + hours % 10;
*p++ = ':';
*p++ = '0' + minutes / 10;
*p++ = '0' + minutes % 10;
*p++ = ':';
*p++ = '0' + seconds / 10;
*p++ = '0' + seconds % 10;
*p = '\0';
wb->len += (size_t)(p - b);
// terminate it
wb->buffer[wb->len] = '\0';
buffer_overflow_check(wb);
}
BUFFER *buffer_create(size_t size, size_t *statistics)
{
BUFFER *b;
if(!size)
size = 1024 - sizeof(BUFFER_OVERFLOW_EOF) - 2;
else
size++; // make room for the terminator
netdata_log_debug(D_WEB_BUFFER, "Creating new web buffer of size %zu.", size);
b = callocz(1, sizeof(BUFFER));
b->buffer = mallocz(size + sizeof(BUFFER_OVERFLOW_EOF) + 2);
b->buffer[0] = '\0';
b->size = size;
b->content_type = CT_TEXT_PLAIN;
b->statistics = statistics;
buffer_no_cacheable(b);
buffer_overflow_init(b);
buffer_overflow_check(b);
if(b->statistics)
__atomic_add_fetch(b->statistics, b->size + sizeof(BUFFER) + sizeof(BUFFER_OVERFLOW_EOF) + 2, __ATOMIC_RELAXED);
return(b);
}
void buffer_free(BUFFER *b) {
if(unlikely(!b)) return;
buffer_overflow_check(b);
netdata_log_debug(D_WEB_BUFFER, "Freeing web buffer of size %zu.", (size_t)b->size);
if(b->statistics)
__atomic_sub_fetch(b->statistics, b->size + sizeof(BUFFER) + sizeof(BUFFER_OVERFLOW_EOF) + 2, __ATOMIC_RELAXED);
freez(b->buffer);
freez(b);
}
void buffer_increase(BUFFER *b, size_t free_size_required) {
buffer_overflow_check(b);
size_t remaining = b->size - b->len;
if(remaining >= free_size_required) return;
size_t increase = free_size_required - remaining;
size_t minimum = 1024;
if(minimum > increase) increase = minimum;
size_t optimal = (b->size > 5 * 1024 * 1024) ? b->size / 2 : b->size;
if(optimal > increase) increase = optimal;
netdata_log_debug(D_WEB_BUFFER, "Increasing data buffer from size %zu to %zu.", (size_t)b->size, (size_t)(b->size + increase));
b->buffer = reallocz(b->buffer, b->size + increase + sizeof(BUFFER_OVERFLOW_EOF) + 2);
b->size += increase;
if(b->statistics)
__atomic_add_fetch(b->statistics, increase, __ATOMIC_RELAXED);
buffer_overflow_init(b);
buffer_overflow_check(b);
}
// ----------------------------------------------------------------------------
void buffer_json_initialize(BUFFER *wb, const char *key_quote, const char *value_quote, int depth,
bool add_anonymous_object, BUFFER_JSON_OPTIONS options) {
strncpyz(wb->json.key_quote, key_quote, BUFFER_QUOTE_MAX_SIZE);
strncpyz(wb->json.value_quote, value_quote, BUFFER_QUOTE_MAX_SIZE);
wb->json.depth = (int8_t)(depth - 1);
_buffer_json_depth_push(wb, BUFFER_JSON_OBJECT);
if(add_anonymous_object)
buffer_fast_strcat(wb, "{", 1);
else
options |= BUFFER_JSON_OPTIONS_NON_ANONYMOUS;
wb->json.options = options;
wb->content_type = CT_APPLICATION_JSON;
buffer_no_cacheable(wb);
}
void buffer_json_finalize(BUFFER *wb) {
while(wb->json.depth >= 0) {
switch(wb->json.stack[wb->json.depth].type) {
case BUFFER_JSON_OBJECT:
if (wb->json.depth == 0)
if (!(wb->json.options & BUFFER_JSON_OPTIONS_NON_ANONYMOUS))
buffer_json_object_close(wb);
else
_buffer_json_depth_pop(wb);
else
buffer_json_object_close(wb);
break;
case BUFFER_JSON_ARRAY:
buffer_json_array_close(wb);
break;
default:
internal_fatal(true, "BUFFER: unknown json member type in stack");
break;
}
}
if(!(wb->json.options & BUFFER_JSON_OPTIONS_MINIFY))
buffer_fast_strcat(wb, "\n", 1);
}
// ----------------------------------------------------------------------------
__attribute__((nonstring))
const char hex_digits[16] = "0123456789ABCDEF";
__attribute__((nonstring))
const char hex_digits_lower[16] = "0123456789abcdef";
__attribute__((nonstring))
const char base64_digits[64] = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/";
unsigned char hex_value_from_ascii[256];
unsigned char base64_value_from_ascii[256];
__attribute__((constructor)) void initialize_ascii_maps(void) {
for(size_t i = 0 ; i < 256 ; i++) {
hex_value_from_ascii[i] = 255;
base64_value_from_ascii[i] = 255;
}
for(size_t i = 0; i < 16 ; i++) {
hex_value_from_ascii[(int)toupper(hex_digits[i])] = i;
hex_value_from_ascii[(int)tolower(hex_digits[i])] = i;
}
for(size_t i = 0; i < 64 ; i++)
base64_value_from_ascii[(int)base64_digits[i]] = i;
}
// ----------------------------------------------------------------------------
void buffer_json_member_add_datetime_rfc3339(BUFFER *wb, const char *key, uint64_t datetime_ut, bool utc) {
char buf[RFC3339_MAX_LENGTH];
rfc3339_datetime_ut(buf, sizeof(buf), datetime_ut, 2, utc);
buffer_json_member_add_string(wb, key, buf);
}
void buffer_json_member_add_duration_ut(BUFFER *wb, const char *key, int64_t duration_ut) {
char buf[64];
duration_snprintf(buf, sizeof(buf), duration_ut, "us", true);
buffer_json_member_add_string(wb, key, buf);
}
void buffer_json_add_array_item_datetime_rfc3339(BUFFER *wb, uint64_t datetime_ut, bool utc) {
char buf[RFC3339_MAX_LENGTH];
rfc3339_datetime_ut(buf, sizeof(buf), datetime_ut, 2, utc);
buffer_json_add_array_item_string(wb, buf);
}
// ----------------------------------------------------------------------------
// unit test
static int buffer_expect(BUFFER *wb, const char *expected) {
const char *generated = buffer_tostring(wb);
if(strcmp(generated, expected) != 0) {
netdata_log_error("BUFFER: mismatch.\nGenerated:\n%s\nExpected:\n%s\n",
generated, expected);
return 1;
}
return 0;
}
static int buffer_uint64_roundtrip(BUFFER *wb, NUMBER_ENCODING encoding, uint64_t value, const char *expected) {
int errors = 0;
buffer_flush(wb);
buffer_print_uint64_encoded(wb, encoding, value);
if(expected)
errors += buffer_expect(wb, expected);
uint64_t v = str2ull_encoded(buffer_tostring(wb));
if(v != value) {
netdata_log_error("BUFFER: string '%s' does resolves to %llu, expected %llu",
buffer_tostring(wb), (unsigned long long)v, (unsigned long long)value);
errors++;
}
buffer_flush(wb);
return errors;
}
static int buffer_int64_roundtrip(BUFFER *wb, NUMBER_ENCODING encoding, int64_t value, const char *expected) {
int errors = 0;
buffer_flush(wb);
buffer_print_int64_encoded(wb, encoding, value);
if(expected)
errors += buffer_expect(wb, expected);
int64_t v = str2ll_encoded(buffer_tostring(wb));
if(v != value) {
netdata_log_error("BUFFER: string '%s' does resolves to %lld, expected %lld",
buffer_tostring(wb), (long long)v, (long long)value);
errors++;
}
buffer_flush(wb);
return errors;
}
static int buffer_double_roundtrip(BUFFER *wb, NUMBER_ENCODING encoding, NETDATA_DOUBLE value, const char *expected) {
int errors = 0;
buffer_flush(wb);
buffer_print_netdata_double_encoded(wb, encoding, value);
if(expected)
errors += buffer_expect(wb, expected);
NETDATA_DOUBLE v = str2ndd_encoded(buffer_tostring(wb), NULL);
if(v != value) {
netdata_log_error("BUFFER: string '%s' does resolves to %.12f, expected %.12f",
buffer_tostring(wb), v, value);
errors++;
}
buffer_flush(wb);
return errors;
}
int buffer_unittest(void) {
int errors = 0;
BUFFER *wb = buffer_create(0, NULL);
buffer_uint64_roundtrip(wb, NUMBER_ENCODING_DECIMAL, 0, "0");
buffer_uint64_roundtrip(wb, NUMBER_ENCODING_HEX, 0, "0x0");
buffer_uint64_roundtrip(wb, NUMBER_ENCODING_BASE64, 0, "#A");
buffer_uint64_roundtrip(wb, NUMBER_ENCODING_DECIMAL, 1676071986, "1676071986");
buffer_uint64_roundtrip(wb, NUMBER_ENCODING_HEX, 1676071986, "0x63E6D432");
buffer_uint64_roundtrip(wb, NUMBER_ENCODING_BASE64, 1676071986, "#Bj5tQy");
buffer_uint64_roundtrip(wb, NUMBER_ENCODING_DECIMAL, 18446744073709551615ULL, "18446744073709551615");
buffer_uint64_roundtrip(wb, NUMBER_ENCODING_HEX, 18446744073709551615ULL, "0xFFFFFFFFFFFFFFFF");
buffer_uint64_roundtrip(wb, NUMBER_ENCODING_BASE64, 18446744073709551615ULL, "#P//////////");
buffer_int64_roundtrip(wb, NUMBER_ENCODING_DECIMAL, 0, "0");
buffer_int64_roundtrip(wb, NUMBER_ENCODING_HEX, 0, "0x0");
buffer_int64_roundtrip(wb, NUMBER_ENCODING_BASE64, 0, "#A");
buffer_int64_roundtrip(wb, NUMBER_ENCODING_DECIMAL, -1676071986, "-1676071986");
buffer_int64_roundtrip(wb, NUMBER_ENCODING_HEX, -1676071986, "-0x63E6D432");
buffer_int64_roundtrip(wb, NUMBER_ENCODING_BASE64, -1676071986, "-#Bj5tQy");
buffer_int64_roundtrip(wb, NUMBER_ENCODING_DECIMAL, (int64_t)-9223372036854775807ULL, "-9223372036854775807");
buffer_int64_roundtrip(wb, NUMBER_ENCODING_HEX, (int64_t)-9223372036854775807ULL, "-0x7FFFFFFFFFFFFFFF");
buffer_int64_roundtrip(wb, NUMBER_ENCODING_BASE64, (int64_t)-9223372036854775807ULL, "-#H//////////");
buffer_double_roundtrip(wb, NUMBER_ENCODING_DECIMAL, 0, "0");
buffer_double_roundtrip(wb, NUMBER_ENCODING_HEX, 0, "%0");
buffer_double_roundtrip(wb, NUMBER_ENCODING_BASE64, 0, "@A");
buffer_double_roundtrip(wb, NUMBER_ENCODING_DECIMAL, 1.5, "1.5");
buffer_double_roundtrip(wb, NUMBER_ENCODING_HEX, 1.5, "%3FF8000000000000");
buffer_double_roundtrip(wb, NUMBER_ENCODING_BASE64, 1.5, "@D/4AAAAAAAA");
buffer_double_roundtrip(wb, NUMBER_ENCODING_DECIMAL, 1.23e+14, "123000000000000");
buffer_double_roundtrip(wb, NUMBER_ENCODING_HEX, 1.23e+14, "%42DBF78AD3AC0000");
buffer_double_roundtrip(wb, NUMBER_ENCODING_BASE64, 1.23e+14, "@ELb94rTrAAA");
buffer_double_roundtrip(wb, NUMBER_ENCODING_DECIMAL, 9.12345678901234567890123456789e+45, "9.123456789012346128e+45");
buffer_double_roundtrip(wb, NUMBER_ENCODING_HEX, 9.12345678901234567890123456789e+45, "%497991C25C9E4309");
buffer_double_roundtrip(wb, NUMBER_ENCODING_BASE64, 9.12345678901234567890123456789e+45, "@El5kcJcnkMJ");
buffer_flush(wb);
{
char buf[1024 + 1];
for(size_t i = 0; i < 1024 ;i++)
buf[i] = (char)(i % 26) + 'A';
buf[1024] = '\0';
buffer_strcat(wb, buf);
errors += buffer_expect(wb, buf);
}
buffer_flush(wb);
buffer_json_initialize(wb, "\"", "\"", 0, true, BUFFER_JSON_OPTIONS_DEFAULT);
buffer_json_finalize(wb);
errors += buffer_expect(wb, "{\n}\n");
buffer_flush(wb);
buffer_json_initialize(wb, "\"", "\"", 0, true, BUFFER_JSON_OPTIONS_DEFAULT);
buffer_json_member_add_string(wb, "hello", "world");
buffer_json_member_add_string(wb, "alpha", "this: \" is a double quote");
buffer_json_member_add_object(wb, "object1");
buffer_json_member_add_string(wb, "hello", "world");
buffer_json_finalize(wb);
errors += buffer_expect(wb, "{\n \"hello\":\"world\",\n \"alpha\":\"this: \\\" is a double quote\",\n \"object1\":{\n \"hello\":\"world\"\n }\n}\n");
buffer_free(wb);
return errors;
}