-
Notifications
You must be signed in to change notification settings - Fork 11
/
parseutils.c
491 lines (434 loc) · 10.8 KB
/
parseutils.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
/*
* parseutils.c
*
* Functions specific to parsing various common string formats
*
* Joe Conway <joe@crunchydata.com>
*
* This code is released under the PostgreSQL license.
*
* Copyright 2020-2024 Crunchy Data Solutions, Inc.
*
* Permission to use, copy, modify, and distribute this software and its
* documentation for any purpose, without fee, and without a written
* agreement is hereby granted, provided that the above copyright notice
* and this paragraph and the following two paragraphs appear in all copies.
*
* IN NO EVENT SHALL CRUNCHY DATA SOLUTIONS, INC. BE LIABLE TO ANY PARTY
* FOR DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES,
* INCLUDING LOST PROFITS, ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS
* DOCUMENTATION, EVEN IF THE CRUNCHY DATA SOLUTIONS, INC. HAS BEEN ADVISED
* OF THE POSSIBILITY OF SUCH DAMAGE.
*
* THE CRUNCHY DATA SOLUTIONS, INC. SPECIFICALLY DISCLAIMS ANY WARRANTIES,
* INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY
* AND FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS
* ON AN "AS IS" BASIS, AND THE CRUNCHY DATA SOLUTIONS, INC. HAS NO
* OBLIGATIONS TO PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR
* MODIFICATIONS.
*/
#include "postgres.h"
#include <float.h>
#if PG_VERSION_NUM < 150000
#include "utils/int8.h"
#endif
#if PG_VERSION_NUM >= 120000
#include "utils/float.h"
#else
#include "utils/builtins.h"
#endif
#include "mb/pg_wchar.h"
#include "fileutils.h"
#include "kdapi.h"
#include "parseutils.h"
#define is_hex_digit(ch) ((ch >= '0' && ch <= '9') || (ch >= 'a' && ch <= 'f') || (ch >= 'A' && ch <= 'F'))
#define hex_value(ch) ((ch >= '0' && ch <= '9') ? (ch & 0x0F) : (ch & 0x0F) + 9) /* assumes ascii */
/*
* Funtions to parse the various virtual file output formats.
* See https://www.kernel.org/doc/Documentation/cgroup-v2.txt
* for examples of the types of output formats to be parsed.
*/
/*
* Read lines from a "new-line separated values" virtual file. Returns
* the lines as an array of strings (char *), and populates nlines
* with the line count.
*/
char **
read_nlsv(char *ftr, int *nlines)
{
char *rawstr = read_vfs(ftr);
char *token;
char **lines = (char **) palloc(0);
*nlines = 0;
for (token = strtok(rawstr, "\n"); token; token = strtok(NULL, "\n"))
{
lines = repalloc(lines, (*nlines + 1) * sizeof(char *));
lines[*nlines] = pstrdup(token);
*nlines += 1;
}
return lines;
}
/*
* Read one value from a "new-line separated values" virtual file
*/
char *
read_one_nlsv(char *ftr)
{
int nlines;
char **lines = read_nlsv(ftr, &nlines);
if (nlines != 1)
ereport(ERROR,
(errcode(ERRCODE_OBJECT_NOT_IN_PREREQUISITE_STATE),
errmsg("pgnodemx: expected 1, got %d, lines from file %s", nlines, ftr)));
return lines[0];
}
/*
* Parse columns from a "nested keyed" virtual file line
*/
kvpairs *
parse_nested_keyed_line(char *line)
{
char *token;
char *lstate;
char *subtoken;
char *cstate;
kvpairs *nkl = (kvpairs *) palloc(sizeof(kvpairs));
nkl->nkvp = 0;
nkl->keys = (char **) palloc(0);
nkl->values = (char **) palloc(0);
for (token = strtok_r(line, " ", &lstate); token; token = strtok_r(NULL, " ", &lstate))
{
nkl->keys = repalloc(nkl->keys, (nkl->nkvp + 1) * sizeof(char *));
nkl->values = repalloc(nkl->values, (nkl->nkvp + 1) * sizeof(char *));
if (nkl->nkvp > 0)
{
subtoken = strtok_r(token, "=", &cstate);
if (subtoken)
nkl->keys[nkl->nkvp] = pstrdup(subtoken);
else
ereport(ERROR,
(errcode(ERRCODE_OBJECT_NOT_IN_PREREQUISITE_STATE),
errmsg("pgnodemx: missing key in nested keyed line")));
subtoken = strtok_r(NULL, "=", &cstate);
if (subtoken)
nkl->values[nkl->nkvp] = pstrdup(subtoken);
else
ereport(ERROR,
(errcode(ERRCODE_OBJECT_NOT_IN_PREREQUISITE_STATE),
errmsg("pgnodemx: missing value in nested keyed line")));
}
else
{
/* first column has value only (not in form key=value) */
nkl->keys[nkl->nkvp] = pstrdup("key");
nkl->values[nkl->nkvp] = pstrdup(token);
}
nkl->nkvp += 1;
}
return nkl;
}
/*
* Parse tokens from a space separated line.
* Return tokens and set ntok to number found.
*/
char **
parse_ss_line(char *line, int *ntok)
{
char *token;
char *lstate;
char **values = (char **) palloc(0);
*ntok = 0;
for (token = strtok_r(line, " ", &lstate); token; token = strtok_r(NULL, " ", &lstate))
{
values = (char **) repalloc(values, (*ntok + 1) * sizeof(char *));
values[*ntok] = pstrdup(token);
*ntok += 1;
}
return values;
}
/*
* parse_quoted_string
*
* Remove quotes and escapes from the string at **source. Returns a new palloc() string with the contents.
*
*/
char*
parse_quoted_string(char **source)
{
char *src;
char *dst;
char *ret;
bool lastSlash = false;
Assert(source != NULL);
Assert(*source != NULL);
src = *source;
ret = dst = palloc0(strlen(src));
if (*src && *src == '"')
src++; /* skip leading quote */
while (*src)
{
char c = *src;
pg_wchar cp = 0;
int i;
if (lastSlash)
{
switch (c) {
case '\\':
*dst++ = '\\';
src++;
break;
case 'a':
*dst++ = '\a';
src++;
break;
case 'b':
*dst++ = '\b';
src++;
break;
case 'f':
*dst++ = '\f';
src++;
break;
case 'n':
*dst++ = '\n';
src++;
break;
case 'r':
*dst++ = '\r';
src++;
break;
case 't':
*dst++ = '\t';
src++;
break;
case 'v':
*dst++ = '\v';
src++;
break;
case '"':
*dst++ = '"';
src++;
break;
case 'x':
/* next 2 chars are hex bytes */
if (is_hex_digit(src[1]) && is_hex_digit(src[2]))
{
*dst++ = (hex_value(src[1])<<4) + hex_value(src[2]);
src+=3;
}
else
ereport(ERROR,
(errcode(ERRCODE_INVALID_TEXT_REPRESENTATION),
errmsg("malformed \\x literal")));
break;
case 'u':
case 'U':
/* unicode code point handling */
for (i = 1; i <= (c == 'u' ? 4 : 8); i++)
{
if (is_hex_digit(src[i]))
{
cp <<= 4;
cp += hex_value(src[i]);
}
else
ereport(ERROR,
(errcode(ERRCODE_INVALID_TEXT_REPRESENTATION),
errmsg("malformed unicode literal")));
}
src += (c == 'u' ? 5 : 9);
/* append our multibyte encoded codepoint */
dst += pg_wchar2mb_with_len(&cp, dst, 1);
break;
default: /* unrecognized escape just pass through */
*dst++ = '\\';
*dst++ = *src++;
break;
}
lastSlash = false;
}
else
{
lastSlash = (c == '\\');
if (c == '"' && src[1] == '\0')
{
src++;
break; /* skip trailing quote without copying */
}
if (lastSlash)
src++;
else
*dst++ = *src++;
}
}
*dst = '\0';
*source = src;
return ret;
}
/*
* Parse tokens from a "key equals quoted value" line.
* Examples (from Kubernetes Downward API):
*
* cluster="test-cluster1"
* rack="rack-22"
* zone="us-est-coast"
* var="abc=123"
* multiline="multi\nline"
* quoted="{\"quoted\":\"json\"}"
*
* Return two tokens; strip the quotes around the second one.
* If exactly two tokens are not found, throw an error.
*/
char **
parse_keqv_line(char *line)
{
int ntok = 0;
char *token;
char *lstate;
char **values = (char **) palloc(2 * sizeof(char *));
/* find the initial key portion of the code */
token = strtok_r(line, "=", &lstate);
/* invalid will fall through */
if (token)
{
values[ntok++] = pstrdup(token);
/* punt the hard work to this routine */
token = parse_quoted_string(&lstate);
if (token)
{
values[ntok++] = pstrdup(token);
/* if we have any extra chars, then it's actually a parse error */
if (strlen(lstate))
{
ntok++;
}
}
}
/* line should have exactly two tokens */
if (ntok != 2)
ereport(ERROR,
(errcode(ERRCODE_OBJECT_NOT_IN_PREREQUISITE_STATE),
errmsg("pgnodemx: incorrect format for key equals quoted value line"),
errdetail("pgnodemx: expected 2 tokens, found %d", ntok)));
return values;
}
/*
* Read provided file to obtain one int64 value
*/
int64
get_int64_from_file(char *ftr)
{
char *rawstr;
bool success = false;
int64 result;
#if PG_VERSION_NUM >= 150000
char *endptr = NULL;
#endif
rawstr = read_one_nlsv(ftr);
/* cgroup v2 reports literal "max" instead of largest possible value */
if (strcasecmp(rawstr, "max") == 0)
result = PG_INT64_MAX;
else
{
#if PG_VERSION_NUM < 150000
success = scanint8(rawstr, true, &result);
#else
errno = 0;
result = strtoi64(rawstr, &endptr, 10);
if (errno == 0 && *endptr == '\0')
success = true;
#endif
if (!success)
ereport(ERROR,
(errcode_for_file_access(),
errmsg("contents not an integer, file \"%s\"",
ftr)));
}
return result;
}
/*
* Read provided file to obtain one double precision value
*/
double
get_double_from_file(char *ftr)
{
char *rawstr = read_one_nlsv(ftr);
double result;
/* cgroup v2 reports literal "max" instead of largest possible value */
if (strcmp(rawstr, "max") == 0)
result = DBL_MAX;
else
#if PG_VERSION_NUM < 160000
result = float8in_internal(rawstr, NULL, "double precision", rawstr);
#else
result = float8in_internal(rawstr, NULL, "double precision", rawstr, NULL);
#endif
return result;
}
/*
* Read provided file to obtain one string value
*/
char *
get_string_from_file(char *ftr)
{
return read_one_nlsv(ftr);
}
/*
* Parse a "space separated values" virtual file.
* Must be exactly one line with tokens separated by a space.
* Returns tokens as array of strings, and number of tokens
* found in nvals.
*/
char **
parse_space_sep_val_file(char *ftr, int *nvals)
{
char *line;
char *token;
char *lstate;
char **values = (char **) palloc(0);
line = read_one_nlsv(ftr);
*nvals = 0;
for (token = strtok_r(line, " ", &lstate); token; token = strtok_r(NULL, " ", &lstate))
{
values = repalloc(values, (*nvals + 1) * sizeof(char *));
values[*nvals] = pstrdup(token);
*nvals += 1;
}
return values;
}
/*
* Parse a "key value" virtual file.
*
* Must be one or more lines with 2 tokens separated by a space.
* Returns tokens as array of strings, and number of tokens
* found in nlines.
*
* Currently makes no attempt to strip a trailing character from
* the "key". Possibly that should be added later.
*/
char ***
read_kv_file(char *fname, int *nlines)
{
char **lines = read_nlsv(fname, nlines);
if (nlines > 0)
{
char ***values;
int nrow = *nlines;
int ncol = 2;
int i;
values = (char ***) palloc(nrow * sizeof(char **));
for (i = 0; i < nrow; ++i)
{
int ntok;
values[i] = parse_ss_line(lines[i], &ntok);
/* line should have exactly ncol tokens */
if (ntok != ncol)
ereport(ERROR,
(errcode(ERRCODE_OBJECT_NOT_IN_PREREQUISITE_STATE),
errmsg("pgnodemx: incorrect format for key value line"),
errdetail("pgnodemx: expected 2 tokens, found %d, file %s", ntok, fname)));
}
return values;
}
return NULL;
}