blob: 7387f383bb598f8903b50ed642a7a37336856eab [file] [log] [blame]
Radek Krejcid91dbaf2018-09-21 15:51:39 +02001/**
2 * @file xml.c
3 * @author Radek Krejci <rkrejci@cesnet.cz>
4 * @brief Generic XML parser implementation for libyang
5 *
6 * Copyright (c) 2015 - 2018 CESNET, z.s.p.o.
7 *
8 * This source code is licensed under BSD 3-Clause License (the "License").
9 * You may not use this file except in compliance with the License.
10 * You may obtain a copy of the License at
11 *
12 * https://opensource.org/licenses/BSD-3-Clause
13 */
14
Radek Krejcic1c03d62018-11-27 10:52:43 +010015#include "common.h"
Radek Krejci4b74d5e2018-09-26 14:30:55 +020016
Radek Krejcib1890642018-10-03 14:05:40 +020017#include <assert.h>
Radek Krejci7a7fa902018-09-25 17:08:21 +020018#include <ctype.h>
Radek Krejcid91dbaf2018-09-21 15:51:39 +020019#include <stdbool.h>
20#include <stdint.h>
Radek Krejcie7b95092019-05-15 11:03:07 +020021#include <stdlib.h>
Radek Krejci4b74d5e2018-09-26 14:30:55 +020022#include <string.h>
Radek Krejcid91dbaf2018-09-21 15:51:39 +020023
Radek Krejcid91dbaf2018-09-21 15:51:39 +020024#include "xml.h"
Radek Krejcie7b95092019-05-15 11:03:07 +020025#include "printer_internal.h"
Radek Krejcid91dbaf2018-09-21 15:51:39 +020026
Radek Krejcid91dbaf2018-09-21 15:51:39 +020027/* Move input p by s characters, if EOF log with lyxml_context c */
28#define move_input(c,p,s) p += s; LY_CHECK_ERR_RET(!p[0], LOGVAL(c->ctx, LY_VLOG_LINE, &c->line, LY_VCODE_EOF), LY_EVALID)
29
Radek Krejcib1890642018-10-03 14:05:40 +020030/* Ignore whitespaces in the input string p */
Radek Krejcid91dbaf2018-09-21 15:51:39 +020031#define ign_xmlws(c,p) while (is_xmlws(*(p))) {if (*(p) == '\n') {++c->line;} ++p;}
32
Radek Krejci4b74d5e2018-09-26 14:30:55 +020033/**
34 * @brief Ignore any characters until the delim of the size delim_len is read
35 *
36 * Detects number of read new lines.
37 * Returns the pointer to the beginning of the detected delim, or NULL in case the delim not found in
38 * NULL-terminated input string.
39 * */
Radek Krejcid91dbaf2018-09-21 15:51:39 +020040static const char *
41ign_todelim(register const char *input, const char *delim, size_t delim_len, size_t *newlines)
42{
43 size_t i;
44 register const char *a, *b;
45
46 (*newlines) = 0;
47 for ( ; *input; ++input) {
48 if (*input != *delim) {
49 if (*input == '\n') {
50 ++(*newlines);
51 }
52 continue;
53 }
54 a = input;
55 b = delim;
56 for (i = 0; i < delim_len; ++i) {
57 if (*a++ != *b++) {
58 break;
59 }
60 }
61 if (i == delim_len) {
62 return input;
63 }
64 }
65 return NULL;
66}
67
Radek Krejci4b74d5e2018-09-26 14:30:55 +020068/**
Radek Krejci7a7fa902018-09-25 17:08:21 +020069 * Store UTF-8 character specified as 4byte integer into the dst buffer.
70 * Returns number of written bytes (4 max), expects that dst has enough space.
71 *
72 * UTF-8 mapping:
73 * 00000000 -- 0000007F: 0xxxxxxx
74 * 00000080 -- 000007FF: 110xxxxx 10xxxxxx
75 * 00000800 -- 0000FFFF: 1110xxxx 10xxxxxx 10xxxxxx
76 * 00010000 -- 001FFFFF: 11110xxx 10xxxxxx 10xxxxxx 10xxxxxx
77 *
78 * Includes checking for valid characters (following RFC 7950, sec 9.4)
79 */
80static LY_ERR
Radek Krejci117d2082018-09-26 10:05:14 +020081lyxml_pututf8(char *dst, uint32_t value, size_t *bytes_written)
Radek Krejci7a7fa902018-09-25 17:08:21 +020082{
83 if (value < 0x80) {
84 /* one byte character */
85 if (value < 0x20 &&
86 value != 0x09 &&
87 value != 0x0a &&
88 value != 0x0d) {
89 return LY_EINVAL;
90 }
91
92 dst[0] = value;
93 (*bytes_written) = 1;
94 } else if (value < 0x800) {
95 /* two bytes character */
96 dst[0] = 0xc0 | (value >> 6);
97 dst[1] = 0x80 | (value & 0x3f);
98 (*bytes_written) = 2;
99 } else if (value < 0xfffe) {
100 /* three bytes character */
101 if (((value & 0xf800) == 0xd800) ||
102 (value >= 0xfdd0 && value <= 0xfdef)) {
103 /* exclude surrogate blocks %xD800-DFFF */
104 /* exclude noncharacters %xFDD0-FDEF */
105 return LY_EINVAL;
106 }
107
108 dst[0] = 0xe0 | (value >> 12);
109 dst[1] = 0x80 | ((value >> 6) & 0x3f);
110 dst[2] = 0x80 | (value & 0x3f);
111
112 (*bytes_written) = 3;
113 } else if (value < 0x10fffe) {
114 if ((value & 0xffe) == 0xffe) {
115 /* exclude noncharacters %xFFFE-FFFF, %x1FFFE-1FFFF, %x2FFFE-2FFFF, %x3FFFE-3FFFF, %x4FFFE-4FFFF,
116 * %x5FFFE-5FFFF, %x6FFFE-6FFFF, %x7FFFE-7FFFF, %x8FFFE-8FFFF, %x9FFFE-9FFFF, %xAFFFE-AFFFF,
117 * %xBFFFE-BFFFF, %xCFFFE-CFFFF, %xDFFFE-DFFFF, %xEFFFE-EFFFF, %xFFFFE-FFFFF, %x10FFFE-10FFFF */
118 return LY_EINVAL;
119 }
120 /* four bytes character */
121 dst[0] = 0xf0 | (value >> 18);
122 dst[1] = 0x80 | ((value >> 12) & 0x3f);
123 dst[2] = 0x80 | ((value >> 6) & 0x3f);
124 dst[3] = 0x80 | (value & 0x3f);
125
126 (*bytes_written) = 4;
127 }
128 return LY_SUCCESS;
129}
130
Radek Krejci4b74d5e2018-09-26 14:30:55 +0200131/**
132 * @brief Check/Get an XML qualified name from the input string.
133 *
134 * The identifier must have at least one valid character complying the name start character constraints.
135 * The identifier is terminated by the first character, which does not comply to the name character constraints.
136 *
137 * See https://www.w3.org/TR/xml-names/#NT-NCName
138 *
139 * @param[in] context XML context to track lines or store errors into libyang context.
140 * @param[in,out] input Input string to process, updated according to the processed/read data.
141 * Note that the term_char is also read, so input points after the term_char at the end.
142 * @param[out] term_char The first character in the input string which does not compy to the name constraints.
143 * @param[out] term_char_len Number of bytes used to encode UTF8 term_char. Serves to be able to go back in input string.
144 * @return LY_ERR value.
145 */
146static LY_ERR
Radek Krejcid91dbaf2018-09-21 15:51:39 +0200147lyxml_check_qname(struct lyxml_context *context, const char **input, unsigned int *term_char, size_t *term_char_len)
148{
149 unsigned int c;
150 const char *id = (*input);
151 LY_ERR rc;
152
153 /* check NameStartChar (minus colon) */
Radek Krejcib416be62018-10-01 14:51:45 +0200154 LY_CHECK_ERR_RET(ly_getutf8(input, &c, NULL) != LY_SUCCESS,
Radek Krejcid91dbaf2018-09-21 15:51:39 +0200155 LOGVAL(context->ctx, LY_VLOG_LINE, &context->line, LY_VCODE_INCHAR, (*input)[0]), LY_EVALID);
156 LY_CHECK_ERR_RET(!is_xmlqnamestartchar(c),
157 LOGVAL(context->ctx, LY_VLOG_LINE, &context->line, LYVE_SYNTAX,
158 "Identifier \"%s\" starts with invalid character.", id),
159 LY_EVALID);
160
161 /* check rest of the identifier */
Radek Krejcib416be62018-10-01 14:51:45 +0200162 for (rc = ly_getutf8(input, &c, term_char_len);
Radek Krejcid91dbaf2018-09-21 15:51:39 +0200163 rc == LY_SUCCESS && is_xmlqnamechar(c);
Radek Krejcib416be62018-10-01 14:51:45 +0200164 rc = ly_getutf8(input, &c, term_char_len));
Radek Krejcid91dbaf2018-09-21 15:51:39 +0200165 LY_CHECK_ERR_RET(rc != LY_SUCCESS, LOGVAL(context->ctx, LY_VLOG_LINE, &context->line, LY_VCODE_INCHAR, (*input)[0]), LY_EVALID);
166
167 (*term_char) = c;
168 return LY_SUCCESS;
169}
170
Radek Krejci17a78d82019-05-15 15:49:55 +0200171/**
172 * @brief Add namespace definition into XML context.
173 *
174 * Namespaces from a single element are supposed to be added sequentially together (not interleaved by a namespace from other
175 * element). This mimic namespace visibility, since the namespace defined in element E is not visible from its parents or
176 * siblings. On the other hand, namespace from a parent element can be redefined in a child element. This is also reflected
177 * by lyxml_ns_get() which returns the most recent namespace definition for the given prefix.
178 *
179 * When leaving processing of a subtree of some element (after it is removed from context->elements), caller is supposed to call
180 * lyxml_ns_rm() to remove all the namespaces defined in such an element from the context.
181 *
182 * @param[in] context XML context to work with.
183 * @param[in] prefix Pointer to the namespace prefix as taken from lyxml_get_attribute(). Can be NULL for default namespace.
184 * @param[in] prefix_len Length of the prefix string (since it is not NULL-terminated when returned from lyxml_get_attribute()).
185 * @param[in] uri Namespace URI (value) to store. Value can be obtained via lyxml_get_string() and caller is not supposed to
186 * work with the pointer when the function succeeds. In case of error the value is freed.
187 * @return LY_ERR values.
188 */
Radek Krejci2d7a47b2019-05-16 13:34:10 +0200189LY_ERR
Radek Krejci17a78d82019-05-15 15:49:55 +0200190lyxml_ns_add(struct lyxml_context *context, const char *prefix, size_t prefix_len, char *uri)
191{
192 struct lyxml_ns *ns;
193
194 ns = malloc(sizeof *ns);
195 LY_CHECK_ERR_RET(!ns, LOGMEM(context->ctx), LY_EMEM);
196
197 /* we need to connect the depth of the element where the namespace is defined with the
198 * namespace record to be able to maintain (remove) the record when the parser leaves
199 * (to its sibling or back to the parent) the element where the namespace was defined */
200 ns->depth = context->elements.count;
201
202 ns->uri = uri;
203 if (prefix) {
204 ns->prefix = strndup(prefix, prefix_len);
205 LY_CHECK_ERR_RET(!ns->prefix, LOGMEM(context->ctx); free(ns->uri); free(ns), LY_EMEM);
206 } else {
207 ns->prefix = NULL;
208 }
209
210 LY_CHECK_ERR_RET(ly_set_add(&context->ns, ns, LY_SET_OPT_USEASLIST) == -1,
211 free(ns->prefix); free(ns->uri); free(ns), LY_EMEM);
212 return LY_SUCCESS;
213}
214
215/**
216 * @brief Remove all the namespaces defined in the element recently closed (removed from the context->elements).
217 *
218 * @param[in] context XML context to work with.
Radek Krejci17a78d82019-05-15 15:49:55 +0200219 */
Radek Krejci17dca992019-05-17 10:53:27 +0200220void
Radek Krejci17a78d82019-05-15 15:49:55 +0200221lyxml_ns_rm(struct lyxml_context *context)
222{
223 unsigned int u;
224
225 for (u = context->ns.count - 1; u + 1 > 0; --u) {
226 if (((struct lyxml_ns *)context->ns.objs[u])->depth != context->elements.count + 1) {
227 /* we are done, the namespaces from a single element are supposed to be together */
228 break;
229 }
230 /* remove the ns structure */
231 free(((struct lyxml_ns *)context->ns.objs[u])->prefix);
232 free(((struct lyxml_ns *)context->ns.objs[u])->uri);
233 free(context->ns.objs[u]);
234 --context->ns.count;
235 }
236
237 if (!context->ns.count) {
238 /* cleanup the context's namespaces storage */
239 ly_set_erase(&context->ns, NULL);
240 }
Radek Krejci17a78d82019-05-15 15:49:55 +0200241}
242
243const struct lyxml_ns *
244lyxml_ns_get(struct lyxml_context *context, const char *prefix, size_t prefix_len)
245{
246 unsigned int u;
247 struct lyxml_ns *ns;
248
249 for (u = context->ns.count - 1; u + 1 > 0; --u) {
250 ns = (struct lyxml_ns *)context->ns.objs[u];
Radek Krejcif2c721d2019-06-03 16:37:58 +0200251 if (prefix && prefix_len) {
Radek Krejci17a78d82019-05-15 15:49:55 +0200252 if (!strncmp(prefix, ns->prefix, prefix_len) && ns->prefix[prefix_len] == '\0') {
253 return ns;
254 }
255 } else if (!ns->prefix) {
256 /* default namespace */
257 return ns;
258 }
259 }
260
261 return NULL;
262}
263
Radek Krejcif2c721d2019-06-03 16:37:58 +0200264static LY_ERR
265lyxml_parse_element_start(struct lyxml_context *context, const char **input, int *closing)
266{
267 struct ly_ctx *ctx = context->ctx; /* shortcut */
268 const char *in = (*input);
269 const char *endtag;
270 const char *sectname;
271 size_t endtag_len, newlines;
272
273 while (1) {
274 ign_xmlws(context, in);
275
276 if (in[0] == '\0') {
277 /* EOF */
Radek Krejcifad79c92019-06-04 11:43:30 +0200278 if (context->elements.count) {
279 LOGVAL(ctx, LY_VLOG_LINE, &context->line, LY_VCODE_EOF);
280 return LY_EVALID;
281 }
Radek Krejcif2c721d2019-06-03 16:37:58 +0200282 context->status = LYXML_END;
283 (*input) = in;
284 return LY_SUCCESS;
285 } else if (in[0] != '<') {
286 return LY_EINVAL;
287 }
288 move_input(context, in, 1);
289
290 if (in[0] == '!') {
291 move_input(context, in, 1);
292 /* sections to ignore */
293 if (!strncmp(in, "--", 2)) {
294 /* comment */
295 move_input(context, in, 2);
296 sectname = "Comment";
297 endtag = "-->";
298 endtag_len = 3;
299 } else if (!strncmp(in, "[CDATA[", 7)) {
300 /* CDATA section */
301 move_input(context, in, 7);
302 sectname = "CData";
303 endtag = "]]>";
304 endtag_len = 3;
305 } else if (!strncmp(in, "DOCTYPE", 7)) {
306 /* Document type declaration - not supported */
307 LOGVAL(ctx, LY_VLOG_LINE, &context->line, LY_VCODE_NSUPP, "Document Type Declaration");
308 return LY_EVALID;
309 } else {
310 LOGVAL(ctx, LY_VLOG_LINE, &context->line, LYVE_SYNTAX, "Unknown XML section \"%.20s\".", &in[-2]);
311 return LY_EVALID;
312 }
313 in = ign_todelim(in, endtag, endtag_len, &newlines);
314 LY_CHECK_ERR_RET(!in, LOGVAL(ctx, LY_VLOG_LINE, &context->line, LY_VCODE_NTERM, sectname), LY_EVALID);
315 context->line += newlines;
316 in += endtag_len;
317 } else if (in[0] == '?') {
318 in = ign_todelim(in, "?>", 2, &newlines);
319 LY_CHECK_ERR_RET(!in, LOGVAL(ctx, LY_VLOG_LINE, &context->line, LY_VCODE_NTERM, "Declaration"), LY_EVALID);
320 context->line += newlines;
321 in += 2;
322 } else if (in[0] == '/') {
323 /* closing element tag */
324 *closing = 1;
325 ++in;
326 goto element;
327 } else {
328 /* opening element tag */
329 *closing = 0;
330element:
331 ign_xmlws(context, in);
332 LY_CHECK_ERR_RET(!in[0], LOGVAL(ctx, LY_VLOG_LINE, &context->line, LY_VCODE_EOF), LY_EVALID);
333
334 (*input) = in;
335 return LY_SUCCESS;
336 }
337 }
338}
339
340static LY_ERR
341lyxml_parse_element_name(struct lyxml_context *context, const char **input, size_t *endtag_len, unsigned int *term_char,
342 const char **prefix, size_t *prefix_len, const char **name, size_t *name_len)
343{
344 LY_ERR rc;
345 const char *in = (*input);
346 const char *id;
347 const char *endtag;
348
349 id = in;
350 rc = lyxml_check_qname(context, &in, term_char, endtag_len);
351 LY_CHECK_RET(rc);
352 if (*term_char == ':') {
353 /* we have prefixed identifier */
354 endtag = in - *endtag_len;
355
356 rc = lyxml_check_qname(context, &in, term_char, endtag_len);
357 LY_CHECK_RET(rc);
358
359 (*prefix) = id;
360 (*prefix_len) = endtag - id;
361 id = endtag + 1;
362 }
363 if (!is_xmlws(*term_char) && *term_char != '/' && *term_char != '>') {
364 (*input) = in - *endtag_len;
365 LOGVAL(context->ctx, LY_VLOG_LINE, &context->line, LY_VCODE_INSTREXP, LY_VCODE_INSTREXP_len(*input), *input,
366 "whitespace or element tag termination ('>' or '/>'");
367 return LY_EVALID;
368 }
369 (*name) = id;
370 (*name_len) = in - *endtag_len - id;
371
372 if (is_xmlws(*term_char)) {
373 /* go to the next meaningful input */
374 ign_xmlws(context, in);
375 LY_CHECK_ERR_RET(!in[0], LOGVAL(context->ctx, LY_VLOG_LINE, &context->line, LY_VCODE_EOF), LY_EVALID);
376 *term_char = in[0];
377 ++in;
378 *endtag_len = 1;
379 }
380
381 (*input) = in;
382 return LY_SUCCESS;
383}
384
385LY_ERR
386lyxml_get_element(struct lyxml_context *context, const char **input,
387 const char **prefix, size_t *prefix_len, const char **name, size_t *name_len)
388{
389 struct ly_ctx *ctx = context->ctx; /* shortcut */
390 const char *in = (*input);
391 size_t endtag_len;
392 bool loop = true;
393 int closing = 0;
394 unsigned int c;
395 LY_ERR rc;
396 struct lyxml_elem *e;
397
398 /* initialize output variables */
399 (*prefix) = (*name) = NULL;
400 (*prefix_len) = (*name_len) = 0;
401
402 while (loop) {
403 rc = lyxml_parse_element_start(context, &in, &closing);
404 if (rc) {
405 return rc;
406 } else if (context->status == LYXML_END) {
407 goto success;
408 }
409 /* we are at the begining of the element name, remember the identifier start before checking its format */
410 LY_CHECK_RET(rc = lyxml_parse_element_name(context, &in, &endtag_len, &c, prefix, prefix_len, name, name_len));
411
412 if (closing) {
413 /* match opening and closing element tags */
414 LY_CHECK_ERR_RET(
415 !context->elements.count,
416 LOGVAL(ctx, LY_VLOG_LINE, &context->line, LYVE_SYNTAX, "Opening and closing elements tag missmatch (\"%.*s\").", *name_len, *name),
417 LY_EVALID);
418 e = (struct lyxml_elem*)context->elements.objs[context->elements.count - 1];
419 LY_CHECK_ERR_RET(e->prefix_len != *prefix_len || e->name_len != *name_len
420 || (*prefix_len && strncmp(*prefix, e->prefix, e->prefix_len)) || strncmp(*name, e->name, e->name_len),
421 LOGVAL(ctx, LY_VLOG_LINE, &context->line, LYVE_SYNTAX, "Opening and closing elements tag missmatch (\"%.*s\").", *name_len, *name),
422 LY_EVALID);
423 /* opening and closing element tags matches, remove record from the opening tags list */
424 free(e);
425 --context->elements.count;
426
427 /* remove also the namespaces conneted with the element */
428 lyxml_ns_rm(context);
429
430 /* do not return element information to announce closing element being currently processed */
431 *name = *prefix = NULL;
432 *name_len = *prefix_len = 0;
433
434 if (c == '>') {
435 /* end of closing element */
436 context->status = LYXML_ELEMENT;
437 } else {
438 in -= endtag_len;
439 LOGVAL(ctx, LY_VLOG_LINE, &context->line, LYVE_SYNTAX, "Unexpected data \"%.*s\" in closing element tag.",
440 LY_VCODE_INSTREXP_len(in), in);
441 return LY_EVALID;
442 }
443 } else {
444 if (c == '>') {
445 /* end of opening element */
446 context->status = LYXML_ELEM_CONTENT;
447 } else if (c == '/' && in[0] == '>') {
448 /* empty element closing */
449 context->status = LYXML_ELEMENT;
450 ++in;
451 } else {
452 /* attribute */
453 context->status = LYXML_ATTRIBUTE;
454 in -= endtag_len;
455 }
456
457 if (context->status != LYXML_ELEMENT) {
458 /* store element opening tag information */
459 e = malloc(sizeof *e);
460 LY_CHECK_ERR_RET(!e, LOGMEM(ctx), LY_EMEM);
461 e->name = *name;
462 e->prefix = *prefix;
463 e->name_len = *name_len;
464 e->prefix_len = *prefix_len;
465 ly_set_add(&context->elements, e, LY_SET_OPT_USEASLIST);
466 }
467 }
468 loop = false;
469 }
470
471success:
Radek Krejcifad79c92019-06-04 11:43:30 +0200472 /* check for end of input */
473 if (in[0] == '\0') {
474 /* EOF */
475 if (context->elements.count) {
476 LOGVAL(ctx, LY_VLOG_LINE, &context->line, LY_VCODE_EOF);
477 return LY_EVALID;
478 }
479 context->status = LYXML_END;
480 }
Radek Krejcif2c721d2019-06-03 16:37:58 +0200481 /* move caller's input */
482 (*input) = in;
483 return LY_SUCCESS;
484}
485
Radek Krejci7a7fa902018-09-25 17:08:21 +0200486LY_ERR
Radek Krejcid70d1072018-10-09 14:20:47 +0200487lyxml_get_string(struct lyxml_context *context, const char **input, char **buffer, size_t *buffer_size, char **output, size_t *length, int *dynamic)
Radek Krejci7a7fa902018-09-25 17:08:21 +0200488{
489#define BUFSIZE 4096
490#define BUFSIZE_STEP 4096
491#define BUFSIZE_CHECK(CTX, BUF, SIZE, CURR, NEED) \
492 if (CURR+NEED >= SIZE) { \
493 BUF = ly_realloc(BUF, SIZE + BUFSIZE_STEP); \
494 LY_CHECK_ERR_RET(!BUF, LOGMEM(CTX), LY_EMEM); \
495 SIZE += BUFSIZE_STEP; \
496 }
497
498 struct ly_ctx *ctx = context->ctx; /* shortcut */
Radek Krejcid70d1072018-10-09 14:20:47 +0200499 const char *in = (*input), *start;
500 char *buf = NULL, delim;
Radek Krejci7a7fa902018-09-25 17:08:21 +0200501 size_t offset; /* read offset in input buffer */
Radek Krejcid70d1072018-10-09 14:20:47 +0200502 size_t len; /* length of the output string (write offset in output buffer) */
Radek Krejci7a7fa902018-09-25 17:08:21 +0200503 size_t size; /* size of the output buffer */
504 void *p;
Radek Krejci117d2082018-09-26 10:05:14 +0200505 uint32_t n;
506 size_t u, newlines;
Radek Krejci7a7fa902018-09-25 17:08:21 +0200507 bool empty_content = false;
Radek Krejci17a78d82019-05-15 15:49:55 +0200508 LY_ERR rc = LY_SUCCESS;
Radek Krejci7a7fa902018-09-25 17:08:21 +0200509
Radek Krejcib1890642018-10-03 14:05:40 +0200510 assert(context);
511 assert(context->status == LYXML_ELEM_CONTENT || context->status == LYXML_ATTR_CONTENT);
512
Radek Krejci7a7fa902018-09-25 17:08:21 +0200513 if (in[0] == '\'') {
514 delim = '\'';
515 ++in;
516 } else if (in[0] == '"') {
517 delim = '"';
518 ++in;
519 } else {
520 delim = '<';
521 empty_content = true;
522 }
Radek Krejcid70d1072018-10-09 14:20:47 +0200523 start = in;
Radek Krejci7a7fa902018-09-25 17:08:21 +0200524
525 if (empty_content) {
526 /* only when processing element's content - try to ignore whitespaces used to format XML data
527 * before element's child or closing tag */
Radek Krejci117d2082018-09-26 10:05:14 +0200528 for (offset = newlines = 0; in[offset] && is_xmlws(in[offset]); ++offset) {
529 if (in[offset] == '\n') {
530 ++newlines;
531 }
532 }
Radek Krejci7a7fa902018-09-25 17:08:21 +0200533 LY_CHECK_ERR_RET(!in[offset], LOGVAL(ctx, LY_VLOG_LINE, &context->line, LY_VCODE_EOF), LY_EVALID);
Radek Krejci117d2082018-09-26 10:05:14 +0200534 context->line += newlines;
Radek Krejci7a7fa902018-09-25 17:08:21 +0200535 if (in[offset] == '<') {
Radek Krejci339e2de2019-05-17 14:28:24 +0200536 const char *name, *prefix;
537 size_t name_len, prefix_len;
538
Radek Krejcied6c6ad2018-09-26 09:10:18 +0200539 (*input) = in + offset;
Radek Krejci339e2de2019-05-17 14:28:24 +0200540
541 /* get know if it is child element (indentation) or closing element (whitespace-only content) */
542 in = *input;
543 rc = lyxml_get_element(context, &in, &prefix, &prefix_len, &name, &name_len);
544 if (name) {
545 /* the element here is not closing element, so we have the just indentation formatting before the child */
546 free(context->elements.objs[--context->elements.count]);
547 context->status -= 1; /* LYXML_ELEMENT */
548 return LY_EINVAL;
549 } else if (rc) {
550 /* some parsing error, so pass it */
551 (*input) = in;
Radek Krejci8ced2f72019-05-20 12:33:49 +0200552 goto error;
Radek Krejci339e2de2019-05-17 14:28:24 +0200553 } else {
554 /* whitespace-only content */
Radek Krejcie92210c2019-05-17 15:53:35 +0200555 len = offset;
556 context->status++;
Radek Krejci339e2de2019-05-17 14:28:24 +0200557 goto success;
558 }
Radek Krejci7a7fa902018-09-25 17:08:21 +0200559 }
Radek Krejci7a7fa902018-09-25 17:08:21 +0200560 }
Radek Krejcid70d1072018-10-09 14:20:47 +0200561 /* init */
562 offset = len = 0;
Radek Krejci7a7fa902018-09-25 17:08:21 +0200563
Radek Krejcid70d1072018-10-09 14:20:47 +0200564 if (0) {
565getbuffer:
566 /* prepare output buffer */
567 if (*buffer) {
568 buf = *buffer;
569 size = *buffer_size;
570 } else {
571 buf = malloc(BUFSIZE);
572 size = BUFSIZE;
573 LY_CHECK_ERR_RET(!buf, LOGMEM(ctx), LY_EMEM);
574 }
Radek Krejci7a7fa902018-09-25 17:08:21 +0200575 }
Radek Krejci7a7fa902018-09-25 17:08:21 +0200576
577 /* parse */
578 while (in[offset]) {
579 if (in[offset] == '&') {
Radek Krejcid70d1072018-10-09 14:20:47 +0200580 if (!buf) {
581 /* it is necessary to modify the input, so we will need a dynamically allocated buffer */
582 goto getbuffer;
583 }
584
Radek Krejci7a7fa902018-09-25 17:08:21 +0200585 if (offset) {
586 /* store what we have so far */
587 BUFSIZE_CHECK(ctx, buf, size, len, offset);
588 memcpy(&buf[len], in, offset);
589 len += offset;
590 in += offset;
591 offset = 0;
592 }
593 /* process reference */
594 /* we will need 4 bytes at most since we support only the predefined
595 * (one-char) entities and character references */
596 BUFSIZE_CHECK(ctx, buf, size, len, 4);
597 ++offset;
598 if (in[offset] != '#') {
599 /* entity reference - only predefined references are supported */
600 if (!strncmp(&in[offset], "lt;", 3)) {
601 buf[len++] = '<';
602 in += 4; /* &lt; */
603 } else if (!strncmp(&in[offset], "gt;", 3)) {
604 buf[len++] = '>';
605 in += 4; /* &gt; */
606 } else if (!strncmp(&in[offset], "amp;", 4)) {
607 buf[len++] = '&';
608 in += 5; /* &amp; */
609 } else if (!strncmp(&in[offset], "apos;", 5)) {
610 buf[len++] = '\'';
611 in += 6; /* &apos; */
612 } else if (!strncmp(&in[offset], "quot;", 5)) {
613 buf[len++] = '\"';
614 in += 6; /* &quot; */
615 } else {
Radek Krejcied6c6ad2018-09-26 09:10:18 +0200616 LOGVAL(ctx, LY_VLOG_LINE, &context->line, LYVE_SYNTAX,
617 "Entity reference \"%.*s\" not supported, only predefined references allowed.", 10, &in[offset-1]);
Radek Krejci7a7fa902018-09-25 17:08:21 +0200618 goto error;
619 }
620 offset = 0;
621 } else {
622 p = (void*)&in[offset - 1];
623 /* character reference */
624 ++offset;
625 if (isdigit(in[offset])) {
626 for (n = 0; isdigit(in[offset]); offset++) {
627 n = (10 * n) + (in[offset] - '0');
628 }
629 } else if (in[offset] == 'x' && isxdigit(in[offset + 1])) {
630 for (n = 0, ++offset; isxdigit(in[offset]); offset++) {
631 if (isdigit(in[offset])) {
632 u = (in[offset] - '0');
633 } else if (in[offset] > 'F') {
634 u = 10 + (in[offset] - 'a');
635 } else {
636 u = 10 + (in[offset] - 'A');
637 }
638 n = (16 * n) + u;
639 }
640 } else {
Radek Krejcied6c6ad2018-09-26 09:10:18 +0200641 LOGVAL(ctx, LY_VLOG_LINE, &context->line, LYVE_SYNTAX, "Invalid character reference \"%.*s\".", 12, p);
Radek Krejci7a7fa902018-09-25 17:08:21 +0200642 goto error;
643
644 }
645 LY_CHECK_ERR_GOTO(in[offset] != ';',
646 LOGVAL(ctx, LY_VLOG_LINE, &context->line, LY_VCODE_INSTREXP,
647 LY_VCODE_INSTREXP_len(&in[offset]), &in[offset], ";"),
648 error);
649 ++offset;
650 rc = lyxml_pututf8(&buf[len], n, &u);
651 LY_CHECK_ERR_GOTO(rc, LOGVAL(ctx, LY_VLOG_LINE, &context->line, LYVE_SYNTAX,
Radek Krejci117d2082018-09-26 10:05:14 +0200652 "Invalid character reference \"%.*s\" (0x%08x).", 12, p, n),
Radek Krejci7a7fa902018-09-25 17:08:21 +0200653 error);
654 len += u;
655 in += offset;
656 offset = 0;
657 }
658 } else if (in[offset] == delim) {
659 /* end of string */
Radek Krejcid70d1072018-10-09 14:20:47 +0200660 if (buf) {
661 if (len + offset >= size) {
662 buf = ly_realloc(buf, len + offset + 1);
663 LY_CHECK_ERR_RET(!buf, LOGMEM(ctx), LY_EMEM);
664 size = len + offset + 1;
665 }
666 memcpy(&buf[len], in, offset);
Radek Krejci7a7fa902018-09-25 17:08:21 +0200667 }
Radek Krejci7a7fa902018-09-25 17:08:21 +0200668 len += offset;
669 /* in case of element content, keep the leading <,
Radek Krejcib1890642018-10-03 14:05:40 +0200670 * for attribute's value move after the terminating quotation mark */
671 if (context->status == LYXML_ELEM_CONTENT) {
Radek Krejcif2c721d2019-06-03 16:37:58 +0200672 const char *name = NULL, *prefix = NULL;
673 size_t name_len = 0, prefix_len = 0;
674 int closing = 0;
675 /* use fake context to preserve real context (lines, status) since we don't want really parse the element tag here */
676 struct lyxml_context fakecontext = {.ctx = context->ctx, .line = context->line, .status = context->status};
Radek Krejci339e2de2019-05-17 14:28:24 +0200677
Radek Krejci7a7fa902018-09-25 17:08:21 +0200678 in += offset;
Radek Krejci339e2de2019-05-17 14:28:24 +0200679
680 /* get know if it is child element (mixed content) or closing element (regular content) */
Radek Krejcif2c721d2019-06-03 16:37:58 +0200681 /* We don't want actually to parse the closing element, we just need to check mixed content.
682 * The closing element tag is preserved to keep the context for the data (returned string),
683 * since it can contain data using XML prefixes defined in this element and the caller can
684 * want to work with it */
Radek Krejci339e2de2019-05-17 14:28:24 +0200685 (*input) = in;
Radek Krejcif2c721d2019-06-03 16:37:58 +0200686 rc = lyxml_parse_element_start(&fakecontext, &in, &closing);
687 if (rc) {
Radek Krejci8ced2f72019-05-20 12:33:49 +0200688 /* some parsing error */
689 goto error;
Radek Krejci339e2de2019-05-17 14:28:24 +0200690 } else {
Radek Krejcif2c721d2019-06-03 16:37:58 +0200691 size_t endtag_len;
692 unsigned int c;
693 struct lyxml_elem *e;
694
695 LY_CHECK_GOTO(lyxml_parse_element_name(&fakecontext, &in, &endtag_len, &c, &prefix, &prefix_len, &name, &name_len), error);
696
697 if (!closing) {
698 /* the element here is not closing element, so we have not allowed mixed content */
699 struct lyxml_elem *e = (struct lyxml_elem*)context->elements.objs[--context->elements.count];
700 LOGVAL(ctx, LY_VLOG_LINE, &context->line, LYVE_SYNTAX, "Mixed XML content is not allowed (%.*s).",
701 offset + (in - (*input)), &(*input)[-offset]);
702 free(e);
703 goto error;
704 }
705
706 /* closing element start - check the name if it matches the opening element tag */
707 LY_CHECK_ERR_GOTO(!context->elements.count,
708 LOGVAL(ctx, LY_VLOG_LINE, &fakecontext.line, LYVE_SYNTAX, "Opening and closing elements tag missmatch (\"%.*s\").",
709 name_len, name),
710 error);
711 e = (struct lyxml_elem*)context->elements.objs[context->elements.count - 1];
712 LY_CHECK_ERR_GOTO(e->prefix_len != prefix_len || e->name_len != name_len
713 || (prefix_len && strncmp(prefix, e->prefix, e->prefix_len)) || strncmp(name, e->name, e->name_len),
714 free(e); LOGVAL(ctx, LY_VLOG_LINE, &fakecontext.line, LYVE_SYNTAX,
715 "Opening and closing elements tag missmatch (\"%.*s\").", name_len, name),
716 error);
717 /* opening and closing element tags matches */
718 /* return input back */
719 in = (*input);
Radek Krejci339e2de2019-05-17 14:28:24 +0200720 }
Radek Krejci7a7fa902018-09-25 17:08:21 +0200721 } else {
722 in += offset + 1;
723 }
724 goto success;
725 } else {
726 /* log lines */
727 if (in[offset] == '\n') {
728 ++context->line;
729 }
730
731 /* continue */
732 ++offset;
733 }
734 }
735 LOGVAL(ctx, LY_VLOG_LINE, &context->line, LY_VCODE_EOF);
736error:
737 if (!(*buffer)) {
Radek Krejcibb9b1982019-04-08 14:24:59 +0200738 /* buffer not provided, buf is local */
Radek Krejci7a7fa902018-09-25 17:08:21 +0200739 free(buf);
Radek Krejcibb9b1982019-04-08 14:24:59 +0200740 } else if (buf) {
741 /* buf is shared with caller via buffer, but buf could be reallocated, so update the provided buffer */
742 (*buffer) = buf;
743 (*buffer_size) = size;
Radek Krejci7a7fa902018-09-25 17:08:21 +0200744 }
745 return LY_EVALID;
746
747success:
Radek Krejcid70d1072018-10-09 14:20:47 +0200748 if (buf) {
749 if (!(*buffer) && size != len + 1) {
750 /* not using provided buffer, so fit the allocated buffer to what we really have inside */
751 p = realloc(buf, len + 1);
752 /* ignore realloc fail because we are reducing the buffer,
753 * so just return bigger buffer than needed */
754 if (p) {
755 size = len + 1;
756 buf = p;
757 }
Radek Krejci7a7fa902018-09-25 17:08:21 +0200758 }
Radek Krejcid70d1072018-10-09 14:20:47 +0200759 /* set terminating NULL byte */
760 buf[len] = '\0';
Radek Krejci7a7fa902018-09-25 17:08:21 +0200761 }
Radek Krejci7a7fa902018-09-25 17:08:21 +0200762
Radek Krejcib1890642018-10-03 14:05:40 +0200763 context->status -= 1;
Radek Krejcid70d1072018-10-09 14:20:47 +0200764 if (buf) {
765 (*buffer) = buf;
766 (*buffer_size) = size;
767 (*output) = buf;
768 (*dynamic) = 1;
769 } else {
770 (*output) = (char*)start;
771 (*dynamic) = 0;
772 }
773 (*length) = len;
774
Radek Krejci28e8cb52019-03-08 11:31:31 +0100775 if (context->status == LYXML_ATTRIBUTE) {
Radek Krejcifad79c92019-06-04 11:43:30 +0200776 /* skip whitespaces after the value */
777 ign_xmlws(context, in);
778
Radek Krejci28e8cb52019-03-08 11:31:31 +0100779 if (in[0] == '>') {
780 /* element terminated by > - termination of the opening tag */
781 context->status = LYXML_ELEM_CONTENT;
782 ++in;
783 } else if (in[0] == '/' && in[1] == '>') {
784 /* element terminated by /> - termination of an empty element */
785 context->status = LYXML_ELEMENT;
786 in += 2;
787
788 /* remove the closed element record from the tags list */
789 free(context->elements.objs[context->elements.count - 1]);
790 --context->elements.count;
Radek Krejci17a78d82019-05-15 15:49:55 +0200791
792 /* remove also the namespaces conneted with the element */
Radek Krejci17dca992019-05-17 10:53:27 +0200793 lyxml_ns_rm(context);
Radek Krejcifad79c92019-06-04 11:43:30 +0200794
795 if (!context->elements.count && in[0] == '\0') {
796 /* EOF */
797 context->status = LYXML_END;
798 }
799 } /* else another attribute */
Radek Krejci28e8cb52019-03-08 11:31:31 +0100800 }
801
802 (*input) = in;
Radek Krejci17a78d82019-05-15 15:49:55 +0200803 return rc;
Radek Krejci7a7fa902018-09-25 17:08:21 +0200804
805#undef BUFSIZE
806#undef BUFSIZE_STEP
807#undef BUFSIZE_CHECK
808}
809
Radek Krejcid972c252018-09-25 13:23:39 +0200810LY_ERR
Radek Krejci7a7fa902018-09-25 17:08:21 +0200811lyxml_get_attribute(struct lyxml_context *context, const char **input,
Radek Krejcid972c252018-09-25 13:23:39 +0200812 const char **prefix, size_t *prefix_len, const char **name, size_t *name_len)
813{
814 struct ly_ctx *ctx = context->ctx; /* shortcut */
815 const char *in = (*input);
816 const char *id;
817 const char *endtag;
818 LY_ERR rc;
819 unsigned int c;
820 size_t endtag_len;
Radek Krejci17a78d82019-05-15 15:49:55 +0200821 int is_ns = 0;
822 const char *ns_prefix = NULL;
823 size_t ns_prefix_len = 0;
Radek Krejcid972c252018-09-25 13:23:39 +0200824
Radek Krejci17a78d82019-05-15 15:49:55 +0200825start:
Radek Krejcid972c252018-09-25 13:23:39 +0200826 /* initialize output variables */
827 (*prefix) = (*name) = NULL;
828 (*prefix_len) = (*name_len) = 0;
829
830 /* skip initial whitespaces */
831 ign_xmlws(context, in);
832
833 if (in[0] == '\0') {
834 /* EOF - not expected at this place */
Radek Krejcifad79c92019-06-04 11:43:30 +0200835 LOGVAL(ctx, LY_VLOG_LINE, &context->line, LY_VCODE_EOF);
836 return LY_EVALID;
Radek Krejcid972c252018-09-25 13:23:39 +0200837 }
838
839 /* remember the identifier start before checking its format */
840 id = in;
841 rc = lyxml_check_qname(context, &in, &c, &endtag_len);
842 LY_CHECK_RET(rc);
843 if (c == ':') {
844 /* we have prefixed identifier */
845 endtag = in - endtag_len;
846
847 rc = lyxml_check_qname(context, &in, &c, &endtag_len);
848 LY_CHECK_RET(rc);
849
850 (*prefix) = id;
851 (*prefix_len) = endtag - id;
852 id = endtag + 1;
853 }
854 if (!is_xmlws(c) && c != '=') {
855 in = in - endtag_len;
856 LOGVAL(ctx, LY_VLOG_LINE, &context->line, LY_VCODE_INSTREXP, LY_VCODE_INSTREXP_len(in), in, "whitespace or '='");
857 return LY_EVALID;
858 }
859 in = in - endtag_len;
860 (*name) = id;
861 (*name_len) = in - id;
862
863 /* eat '=' and stop at the value beginning */
864 ign_xmlws(context, in);
865 if (in[0] != '=') {
866 LOGVAL(ctx, LY_VLOG_LINE, &context->line, LY_VCODE_INSTREXP, LY_VCODE_INSTREXP_len(in), in, "'='");
867 return LY_EVALID;
868 }
869 ++in;
870 ign_xmlws(context, in);
871 if (in[0] != '\'' && in[0] != '"') {
Radek Krejcib1890642018-10-03 14:05:40 +0200872 LOGVAL(ctx, LY_VLOG_LINE, &context->line, LY_VCODE_INSTREXP,
873 LY_VCODE_INSTREXP_len(in), in, "either single or double quotation mark");
Radek Krejcid972c252018-09-25 13:23:39 +0200874 return LY_EVALID;
875 }
Radek Krejcib1890642018-10-03 14:05:40 +0200876 context->status = LYXML_ATTR_CONTENT;
Radek Krejcid972c252018-09-25 13:23:39 +0200877
Radek Krejci17a78d82019-05-15 15:49:55 +0200878 is_ns = 0;
879 if (*prefix && *prefix_len == 5 && !strncmp(*prefix, "xmlns", 5)) {
880 is_ns = 1;
881 ns_prefix = *name;
882 ns_prefix_len = *name_len;
883 } else if (*name_len == 5 && !strncmp(*name, "xmlns", 5)) {
884 is_ns = 1;
885 }
886 if (is_ns) {
887 /* instead of attribute, we have namespace specification,
888 * so process it automatically and then move to another attribute (if any) */
889 char *value = NULL;
890 size_t value_len = 0;
891 int dynamic = 0;
892
893 LY_CHECK_RET(lyxml_get_string(context, &in, &value, &value_len, &value, &value_len, &dynamic));
894 if ((rc = lyxml_ns_add(context, ns_prefix, ns_prefix_len, dynamic ? value : strndup(value, value_len)))) {
895 if (dynamic) {
896 free(value);
897 return rc;
898 }
899 }
900 if (context->status == LYXML_ATTRIBUTE) {
901 goto start;
902 } else {
903 (*prefix) = (*name) = NULL;
904 (*prefix_len) = (*name_len) = 0;
905 }
906 }
907
Radek Krejcid972c252018-09-25 13:23:39 +0200908 /* move caller's input */
909 (*input) = in;
910 return LY_SUCCESS;
911}
912
Radek Krejcib1890642018-10-03 14:05:40 +0200913void
914lyxml_context_clear(struct lyxml_context *context)
915{
916 unsigned int u;
917
918 ly_set_erase(&context->elements, free);
919 for (u = context->ns.count - 1; u + 1 > 0; --u) {
920 /* remove the ns structure */
921 free(((struct lyxml_ns *)context->ns.objs[u])->prefix);
922 free(((struct lyxml_ns *)context->ns.objs[u])->uri);
923 free(context->ns.objs[u]);
924 }
925 ly_set_erase(&context->ns, NULL);
Radek Krejcifad79c92019-06-04 11:43:30 +0200926 context->status = 0;
Radek Krejcib1890642018-10-03 14:05:40 +0200927}
Radek Krejcie7b95092019-05-15 11:03:07 +0200928
929LY_ERR
930lyxml_dump_text(struct lyout *out, const char *text, int attribute)
931{
932 LY_ERR ret = LY_SUCCESS;
933 unsigned int u;
934
935 if (!text) {
936 return 0;
937 }
938
939 for (u = 0; text[u]; u++) {
940 switch (text[u]) {
941 case '&':
942 ret = ly_print(out, "&amp;");
943 break;
944 case '<':
945 ret = ly_print(out, "&lt;");
946 break;
947 case '>':
948 /* not needed, just for readability */
949 ret = ly_print(out, "&gt;");
950 break;
951 case '"':
952 if (attribute) {
953 ret = ly_print(out, "&quot;");
954 break;
955 }
956 /* falls through */
957 default:
958 ly_write(out, &text[u], 1);
959 }
960 }
961
962 return ret;
963}
964