blob: 61ebd11715526bca3b8c431455fd731ec0de8eb5 [file] [log] [blame]
Radek Krejci54ea8de2015-04-09 18:02:56 +02001/**
2 * @file xml.c
3 * @author Radek Krejci <rkrejci@cesnet.cz>
4 * @brief XML parser implementation for libyang
5 *
6 * Copyright (c) 2015 CESNET, z.s.p.o.
7 *
Radek Krejci54f6fb32016-02-24 12:56:39 +01008 * 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
Michal Vasko8de098c2016-02-26 10:00:25 +010011 *
Radek Krejci54f6fb32016-02-24 12:56:39 +010012 * https://opensource.org/licenses/BSD-3-Clause
Radek Krejci54ea8de2015-04-09 18:02:56 +020013 */
14
Radek Krejci812b10a2015-05-28 16:48:25 +020015#include <assert.h>
Radek Krejci563427e2016-02-08 16:26:34 +010016#include <errno.h>
Radek Krejci709fee62015-04-15 13:56:19 +020017#include <ctype.h>
18#include <stdint.h>
Radek Krejcif0023a92015-04-20 20:51:39 +020019#include <stdio.h>
Radek Krejci02117302015-04-13 16:32:44 +020020#include <stdlib.h>
21#include <string.h>
Radek Krejci54ea8de2015-04-09 18:02:56 +020022#include <unistd.h>
Radek Krejci563427e2016-02-08 16:26:34 +010023#include <pthread.h>
Pavol Vicanb2570c12015-11-12 13:50:20 +010024#include <sys/stat.h>
25#include <sys/mman.h>
26#include <fcntl.h>
Radek Krejci54ea8de2015-04-09 18:02:56 +020027
Radek Krejci06a704e2015-04-22 14:50:49 +020028#include "common.h"
Michal Vasko6c810702018-03-14 16:23:21 +010029#include "hash_table.h"
Radek Krejci5248f132015-10-09 10:34:25 +020030#include "printer.h"
Radek Krejci5449d472015-10-26 14:35:56 +010031#include "parser.h"
Michal Vasko2d162e12015-09-24 14:33:29 +020032#include "tree_schema.h"
Michal Vaskofc5744d2015-10-22 12:09:34 +020033#include "xml_internal.h"
Michal Vaskoc86327a2020-06-30 11:21:57 +020034#include "xpath.h"
Radek Krejci54ea8de2015-04-09 18:02:56 +020035
Radek Krejci3045cf32015-05-28 10:58:52 +020036#define ign_xmlws(p) \
Radek Krejci563427e2016-02-08 16:26:34 +010037 while (is_xmlws(*p)) { \
Radek Krejci563427e2016-02-08 16:26:34 +010038 p++; \
39 }
Radek Krejci02117302015-04-13 16:32:44 +020040
Michal Vasko88c29542015-11-27 14:57:53 +010041static struct lyxml_attr *lyxml_dup_attr(struct ly_ctx *ctx, struct lyxml_elem *parent, struct lyxml_attr *attr);
42
Michal Vasko1e62a092015-12-01 12:27:20 +010043API const struct lyxml_ns *
44lyxml_get_ns(const struct lyxml_elem *elem, const char *prefix)
Michal Vaskof8879c22015-08-21 09:07:36 +020045{
GalaxyGorillac7777422019-10-07 16:01:23 +020046 FUN_IN;
47
Michal Vaskof8879c22015-08-21 09:07:36 +020048 struct lyxml_attr *attr;
Michal Vaskof8879c22015-08-21 09:07:36 +020049
50 if (!elem) {
51 return NULL;
52 }
53
Michal Vaskof8879c22015-08-21 09:07:36 +020054 for (attr = elem->attr; attr; attr = attr->next) {
55 if (attr->type != LYXML_ATTR_NS) {
56 continue;
57 }
58 if (!attr->name) {
Radek Krejci13f3f152016-10-03 11:40:13 +020059 if (!prefix) {
Michal Vaskof8879c22015-08-21 09:07:36 +020060 /* default namespace found */
61 if (!attr->value) {
62 /* empty default namespace -> no default namespace */
63 return NULL;
64 }
65 return (struct lyxml_ns *)attr;
66 }
Radek Krejci7d39dae2016-10-03 17:33:01 +020067 } else if (prefix && !strcmp(attr->name, prefix)) {
Michal Vaskof8879c22015-08-21 09:07:36 +020068 /* prefix found */
69 return (struct lyxml_ns *)attr;
70 }
71 }
72
73 /* go recursively */
74 return lyxml_get_ns(elem->parent, prefix);
75}
76
Michal Vasko88c29542015-11-27 14:57:53 +010077static void
78lyxml_correct_attr_ns(struct ly_ctx *ctx, struct lyxml_attr *attr, struct lyxml_elem *attr_parent, int copy_ns)
79{
80 const struct lyxml_ns *tmp_ns;
Michal Vaskof6109112015-12-03 14:00:42 +010081 struct lyxml_elem *ns_root, *attr_root;
Michal Vasko88c29542015-11-27 14:57:53 +010082
83 if ((attr->type != LYXML_ATTR_NS) && attr->ns) {
Michal Vaskof6109112015-12-03 14:00:42 +010084 /* find the root of attr */
85 for (attr_root = attr_parent; attr_root->parent; attr_root = attr_root->parent);
Michal Vasko88c29542015-11-27 14:57:53 +010086
87 /* find the root of attr NS */
88 for (ns_root = attr->ns->parent; ns_root->parent; ns_root = ns_root->parent);
89
Michal Vaskof6109112015-12-03 14:00:42 +010090 /* attr NS is defined outside attr parent subtree */
91 if (ns_root != attr_root) {
Michal Vasko88c29542015-11-27 14:57:53 +010092 if (copy_ns) {
93 tmp_ns = attr->ns;
94 /* we may have already copied the NS over? */
Radek Krejci66aca402016-05-24 15:23:02 +020095 attr->ns = lyxml_get_ns(attr_parent, tmp_ns->prefix);
Michal Vasko88c29542015-11-27 14:57:53 +010096
97 /* we haven't copied it over, copy it now */
98 if (!attr->ns) {
Michal Vaskof6109112015-12-03 14:00:42 +010099 attr->ns = (struct lyxml_ns *)lyxml_dup_attr(ctx, attr_parent, (struct lyxml_attr *)tmp_ns);
Michal Vasko88c29542015-11-27 14:57:53 +0100100 }
101 } else {
102 attr->ns = NULL;
103 }
104 }
105 }
106}
107
108static struct lyxml_attr *
Michal Vaskof8879c22015-08-21 09:07:36 +0200109lyxml_dup_attr(struct ly_ctx *ctx, struct lyxml_elem *parent, struct lyxml_attr *attr)
110{
111 struct lyxml_attr *result, *a;
112
113 if (!attr || !parent) {
114 return NULL;
115 }
116
117 if (attr->type == LYXML_ATTR_NS) {
118 /* this is correct, despite that all attributes seems like a standard
119 * attributes (struct lyxml_attr), some of them can be namespace
120 * definitions (and in that case they are struct lyxml_ns).
121 */
122 result = (struct lyxml_attr *)calloc(1, sizeof (struct lyxml_ns));
123 } else {
124 result = calloc(1, sizeof (struct lyxml_attr));
125 }
Michal Vasko53b7da02018-02-13 15:28:42 +0100126 LY_CHECK_ERR_RETURN(!result, LOGMEM(ctx), NULL);
Radek Krejcia8d111f2017-05-31 13:57:37 +0200127
Michal Vaskof8879c22015-08-21 09:07:36 +0200128 result->value = lydict_insert(ctx, attr->value, 0);
129 result->name = lydict_insert(ctx, attr->name, 0);
130 result->type = attr->type;
131
132 /* set namespace in case of standard attributes */
133 if (result->type == LYXML_ATTR_STD && attr->ns) {
Michal Vasko88c29542015-11-27 14:57:53 +0100134 result->ns = attr->ns;
135 lyxml_correct_attr_ns(ctx, result, parent, 1);
Michal Vaskof8879c22015-08-21 09:07:36 +0200136 }
137
138 /* set parent pointer in case of namespace attribute */
139 if (result->type == LYXML_ATTR_NS) {
140 ((struct lyxml_ns *)result)->parent = parent;
141 }
142
143 /* put attribute into the parent's attributes list */
144 if (parent->attr) {
145 /* go to the end of the list */
146 for (a = parent->attr; a->next; a = a->next);
147 /* and append new attribute */
148 a->next = result;
149 } else {
150 /* add the first attribute in the list */
151 parent->attr = result;
152 }
153
154 return result;
155}
156
Michal Vaskoc86327a2020-06-30 11:21:57 +0200157static void
158lyxml_correct_content_ns(struct ly_ctx *ctx, struct lyxml_elem *elem, struct lyxml_elem *orig)
159{
160 const char *end, *cur_expr;
161 char *prefix;
162 uint16_t i;
163 size_t pref_len;
164 const struct lyxml_ns *ns;
165 struct lyxp_expr *exp;
166 enum int_log_opts prev_ilo;
167
168 /* it may not be a valid XPath expression */
169 ly_ilo_change(NULL, ILO_IGNORE, &prev_ilo, NULL);
170 exp = lyxp_parse_expr(ctx, elem->content);
171 ly_ilo_restore(NULL, prev_ilo, NULL, 0);
172 if (!exp) {
173 goto cleanup;
174 }
175
176 for (i = 0; i < exp->used; ++i) {
177 cur_expr = &exp->expr[exp->expr_pos[i]];
178
179 if ((exp->tokens[i] == LYXP_TOKEN_NAMETEST) && (end = strnchr(cur_expr, ':', exp->tok_len[i]))) {
180 /* get the prefix */
181 pref_len = end - cur_expr;
182 prefix = strndup(cur_expr, pref_len);
183 if (!prefix) {
184 LOGMEM(ctx);
185 goto cleanup;
186 }
187 ns = lyxml_get_ns(elem, prefix);
188
189 /* we already have the namespace */
190 if (ns) {
191 free(prefix);
192 continue;
193 }
194
195 /* find the namespace in the original XML */
196 ns = lyxml_get_ns(orig, prefix);
197 free(prefix);
198
199 /* copy the namespace over, if any */
200 if (ns && !lyxml_dup_attr(ctx, elem, (struct lyxml_attr *)ns)) {
201 LOGINT(ctx);
202 goto cleanup;
203 }
204 }
205 }
206
207cleanup:
208 lyxp_expr_free(exp);
209}
210
Michal Vaskof748dbc2016-04-05 11:27:47 +0200211void
Michal Vaskoc86327a2020-06-30 11:21:57 +0200212lyxml_correct_elem_ns(struct ly_ctx *ctx, struct lyxml_elem *elem, struct lyxml_elem *orig, int copy_ns,
213 int correct_attrs)
Michal Vasko88c29542015-11-27 14:57:53 +0100214{
215 const struct lyxml_ns *tmp_ns;
Radek Krejcid5be5682016-01-14 16:23:22 +0100216 struct lyxml_elem *elem_root, *ns_root, *tmp, *iter;
Michal Vasko88c29542015-11-27 14:57:53 +0100217 struct lyxml_attr *attr;
218
219 /* find the root of elem */
220 for (elem_root = elem; elem_root->parent; elem_root = elem_root->parent);
221
Radek Krejcid5be5682016-01-14 16:23:22 +0100222 LY_TREE_DFS_BEGIN(elem, tmp, iter) {
223 if (iter->ns) {
Michal Vasko88c29542015-11-27 14:57:53 +0100224 /* find the root of elem NS */
Radek Krejcic071c542016-01-27 14:57:51 +0100225 for (ns_root = iter->ns->parent; ns_root; ns_root = ns_root->parent);
Michal Vasko88c29542015-11-27 14:57:53 +0100226
227 /* elem NS is defined outside elem subtree */
228 if (ns_root != elem_root) {
229 if (copy_ns) {
Radek Krejcid5be5682016-01-14 16:23:22 +0100230 tmp_ns = iter->ns;
Michal Vasko88c29542015-11-27 14:57:53 +0100231 /* we may have already copied the NS over? */
Radek Krejcid5be5682016-01-14 16:23:22 +0100232 iter->ns = lyxml_get_ns(iter, tmp_ns->prefix);
Michal Vasko88c29542015-11-27 14:57:53 +0100233
234 /* we haven't copied it over, copy it now */
Radek Krejcid5be5682016-01-14 16:23:22 +0100235 if (!iter->ns) {
236 iter->ns = (struct lyxml_ns *)lyxml_dup_attr(ctx, iter, (struct lyxml_attr *)tmp_ns);
Michal Vasko88c29542015-11-27 14:57:53 +0100237 }
238 } else {
Radek Krejcid5be5682016-01-14 16:23:22 +0100239 iter->ns = NULL;
Michal Vasko88c29542015-11-27 14:57:53 +0100240 }
241 }
242 }
Michal Vaskoc86327a2020-06-30 11:21:57 +0200243 if (iter->content[0] && copy_ns) {
244 lyxml_correct_content_ns(ctx, iter, orig);
245 }
Michal Vasko88c29542015-11-27 14:57:53 +0100246 if (correct_attrs) {
Radek Krejcid5be5682016-01-14 16:23:22 +0100247 LY_TREE_FOR(iter->attr, attr) {
Michal Vasko88c29542015-11-27 14:57:53 +0100248 lyxml_correct_attr_ns(ctx, attr, elem_root, copy_ns);
249 }
250 }
Radek Krejcid5be5682016-01-14 16:23:22 +0100251 LY_TREE_DFS_END(elem, tmp, iter);
Michal Vasko88c29542015-11-27 14:57:53 +0100252 }
253}
254
Michal Vaskof8879c22015-08-21 09:07:36 +0200255struct lyxml_elem *
Michal Vaskodbc40582019-03-12 10:54:24 +0100256lyxml_dup_elem(struct ly_ctx *ctx, struct lyxml_elem *elem, struct lyxml_elem *parent, int recursive, int with_siblings)
Michal Vaskof8879c22015-08-21 09:07:36 +0200257{
Michal Vaskodbc40582019-03-12 10:54:24 +0100258 struct lyxml_elem *dup, *result = NULL;
Michal Vaskof8879c22015-08-21 09:07:36 +0200259 struct lyxml_attr *attr;
260
261 if (!elem) {
262 return NULL;
263 }
264
Michal Vaskodbc40582019-03-12 10:54:24 +0100265 LY_TREE_FOR(elem, elem) {
266 dup = calloc(1, sizeof *dup);
267 LY_CHECK_ERR_RETURN(!dup, LOGMEM(ctx), NULL);
268 dup->content = lydict_insert(ctx, elem->content, 0);
269 dup->name = lydict_insert(ctx, elem->name, 0);
270 dup->flags = elem->flags;
271 dup->prev = dup;
Michal Vaskof8879c22015-08-21 09:07:36 +0200272
Michal Vaskodbc40582019-03-12 10:54:24 +0100273 if (parent) {
274 lyxml_add_child(ctx, parent, dup);
Amandeep Singh Sethi3f661302019-11-09 09:08:11 -0500275 } else if (result) {
276 dup->prev = result->prev;
277 dup->prev->next = dup;
278 result->prev = dup;
Michal Vaskodbc40582019-03-12 10:54:24 +0100279 }
Michal Vaskof8879c22015-08-21 09:07:36 +0200280
Michal Vaskodbc40582019-03-12 10:54:24 +0100281 /* keep old namespace for now */
282 dup->ns = elem->ns;
Michal Vasko88c29542015-11-27 14:57:53 +0100283
Michal Vaskodbc40582019-03-12 10:54:24 +0100284 /* duplicate attributes */
285 for (attr = elem->attr; attr; attr = attr->next) {
286 lyxml_dup_attr(ctx, dup, attr);
287 }
Michal Vaskof8879c22015-08-21 09:07:36 +0200288
Michal Vaskodbc40582019-03-12 10:54:24 +0100289 /* correct namespaces */
Michal Vaskoc86327a2020-06-30 11:21:57 +0200290 lyxml_correct_elem_ns(ctx, dup, elem, 1, 0);
Michal Vaskoa5c958f2018-12-11 08:31:42 +0100291
Michal Vaskodbc40582019-03-12 10:54:24 +0100292 if (recursive) {
293 /* duplicate children */
294 lyxml_dup_elem(ctx, elem->child, dup, 1, 1);
295 }
Michal Vaskof8879c22015-08-21 09:07:36 +0200296
Michal Vasko85f218c2019-03-13 11:29:50 +0100297 /* set result (first sibling) */
Michal Vaskodbc40582019-03-12 10:54:24 +0100298 if (!result) {
299 result = dup;
Michal Vaskodbc40582019-03-12 10:54:24 +0100300 }
301
302 if (!with_siblings) {
303 break;
304 }
Michal Vaskof8879c22015-08-21 09:07:36 +0200305 }
306
307 return result;
308}
309
Radek Krejci6879d952017-01-09 12:49:19 +0100310API struct lyxml_elem *
311lyxml_dup(struct ly_ctx *ctx, struct lyxml_elem *root)
312{
GalaxyGorillac7777422019-10-07 16:01:23 +0200313 FUN_IN;
314
Michal Vaskodbc40582019-03-12 10:54:24 +0100315 return lyxml_dup_elem(ctx, root, NULL, 1, 0);
Radek Krejci6879d952017-01-09 12:49:19 +0100316}
317
Radek Krejci6e4ffbb2015-06-16 10:34:41 +0200318void
Michal Vaskof8879c22015-08-21 09:07:36 +0200319lyxml_unlink_elem(struct ly_ctx *ctx, struct lyxml_elem *elem, int copy_ns)
Radek Krejci02117302015-04-13 16:32:44 +0200320{
Radek Krejci6e4ffbb2015-06-16 10:34:41 +0200321 struct lyxml_elem *parent, *first;
Radek Krejci02117302015-04-13 16:32:44 +0200322
Radek Krejci6e4ffbb2015-06-16 10:34:41 +0200323 if (!elem) {
324 return;
325 }
Radek Krejci02117302015-04-13 16:32:44 +0200326
Radek Krejci6e4ffbb2015-06-16 10:34:41 +0200327 /* store pointers to important nodes */
328 parent = elem->parent;
Radek Krejcie1f13912015-05-26 15:17:38 +0200329
Radek Krejci6e4ffbb2015-06-16 10:34:41 +0200330 /* unlink from parent */
331 if (parent) {
332 if (parent->child == elem) {
333 /* we unlink the first child */
334 /* update the parent's link */
335 parent->child = elem->next;
336 }
337 /* forget about the parent */
338 elem->parent = NULL;
339 }
Radek Krejci02117302015-04-13 16:32:44 +0200340
Michal Vasko88c29542015-11-27 14:57:53 +0100341 if (copy_ns < 2) {
Michal Vaskoc86327a2020-06-30 11:21:57 +0200342 lyxml_correct_elem_ns(ctx, elem, parent, copy_ns, 1);
Michal Vasko88c29542015-11-27 14:57:53 +0100343 }
344
Radek Krejci6e4ffbb2015-06-16 10:34:41 +0200345 /* unlink from siblings */
346 if (elem->prev == elem) {
347 /* there are no more siblings */
348 return;
349 }
350 if (elem->next) {
351 elem->next->prev = elem->prev;
352 } else {
353 /* unlinking the last element */
354 if (parent) {
355 first = parent->child;
356 } else {
357 first = elem;
Radek Krejcie4fffcf2016-02-23 16:06:25 +0100358 while (first->prev->next) {
359 first = first->prev;
Radek Krejci6e4ffbb2015-06-16 10:34:41 +0200360 }
361 }
362 first->prev = elem->prev;
363 }
364 if (elem->prev->next) {
365 elem->prev->next = elem->next;
366 }
Radek Krejcida04f4a2015-05-21 12:54:09 +0200367
Radek Krejci6e4ffbb2015-06-16 10:34:41 +0200368 /* clean up the unlinked element */
369 elem->next = NULL;
370 elem->prev = elem;
Radek Krejci02117302015-04-13 16:32:44 +0200371}
372
Michal Vasko345da0a2015-12-02 10:35:55 +0100373API void
374lyxml_unlink(struct ly_ctx *ctx, struct lyxml_elem *elem)
375{
GalaxyGorillac7777422019-10-07 16:01:23 +0200376 FUN_IN;
377
Michal Vasko345da0a2015-12-02 10:35:55 +0100378 if (!elem) {
379 return;
380 }
381
382 lyxml_unlink_elem(ctx, elem, 1);
383}
384
Radek Krejci6e4ffbb2015-06-16 10:34:41 +0200385void
Radek Krejci00249f22015-07-07 13:43:28 +0200386lyxml_free_attr(struct ly_ctx *ctx, struct lyxml_elem *parent, struct lyxml_attr *attr)
Radek Krejci02117302015-04-13 16:32:44 +0200387{
Radek Krejci00249f22015-07-07 13:43:28 +0200388 struct lyxml_attr *aiter, *aprev;
389
Radek Krejci6e4ffbb2015-06-16 10:34:41 +0200390 if (!attr) {
391 return;
392 }
Radek Krejci02117302015-04-13 16:32:44 +0200393
Radek Krejci00249f22015-07-07 13:43:28 +0200394 if (parent) {
395 /* unlink attribute from the parent's list of attributes */
396 aprev = NULL;
397 for (aiter = parent->attr; aiter; aiter = aiter->next) {
398 if (aiter == attr) {
399 break;
400 }
401 aprev = aiter;
402 }
403 if (!aiter) {
404 /* attribute to remove not found */
405 return;
406 }
407
408 if (!aprev) {
409 /* attribute is first in parent's list of attributes */
410 parent->attr = attr->next;
411 } else {
412 /* reconnect previous attribute to the next */
413 aprev->next = attr->next;
414 }
415 }
Radek Krejci6e4ffbb2015-06-16 10:34:41 +0200416 lydict_remove(ctx, attr->name);
417 lydict_remove(ctx, attr->value);
Michal Vasko36b72992020-02-25 12:12:47 +0100418 if (attr->type == LYXML_ATTR_STD_UNRES) {
419 free((char *)attr->ns);
420 }
Radek Krejci6e4ffbb2015-06-16 10:34:41 +0200421 free(attr);
Radek Krejci02117302015-04-13 16:32:44 +0200422}
423
Radek Krejci6e4ffbb2015-06-16 10:34:41 +0200424void
425lyxml_free_attrs(struct ly_ctx *ctx, struct lyxml_elem *elem)
Radek Krejci02117302015-04-13 16:32:44 +0200426{
Radek Krejci6e4ffbb2015-06-16 10:34:41 +0200427 struct lyxml_attr *a, *next;
428 if (!elem || !elem->attr) {
429 return;
430 }
Radek Krejci02117302015-04-13 16:32:44 +0200431
Radek Krejci6e4ffbb2015-06-16 10:34:41 +0200432 a = elem->attr;
433 do {
434 next = a->next;
Radek Krejci02117302015-04-13 16:32:44 +0200435
Radek Krejci6e4ffbb2015-06-16 10:34:41 +0200436 lydict_remove(ctx, a->name);
437 lydict_remove(ctx, a->value);
Michal Vasko36b72992020-02-25 12:12:47 +0100438 if (a->type == LYXML_ATTR_STD_UNRES) {
439 free((char *)a->ns);
440 }
Radek Krejci6e4ffbb2015-06-16 10:34:41 +0200441 free(a);
Radek Krejci02117302015-04-13 16:32:44 +0200442
Radek Krejci6e4ffbb2015-06-16 10:34:41 +0200443 a = next;
444 } while (a);
Radek Krejci02117302015-04-13 16:32:44 +0200445}
446
Radek Krejci6e4ffbb2015-06-16 10:34:41 +0200447static void
Michal Vasko272e42f2015-12-02 12:20:37 +0100448lyxml_free_elem(struct ly_ctx *ctx, struct lyxml_elem *elem)
Radek Krejci02117302015-04-13 16:32:44 +0200449{
Radek Krejci6e4ffbb2015-06-16 10:34:41 +0200450 struct lyxml_elem *e, *next;
Radek Krejci02117302015-04-13 16:32:44 +0200451
Radek Krejci6e4ffbb2015-06-16 10:34:41 +0200452 if (!elem) {
453 return;
454 }
Radek Krejci02117302015-04-13 16:32:44 +0200455
Radek Krejci6e4ffbb2015-06-16 10:34:41 +0200456 lyxml_free_attrs(ctx, elem);
457 LY_TREE_FOR_SAFE(elem->child, next, e) {
Michal Vasko272e42f2015-12-02 12:20:37 +0100458 lyxml_free_elem(ctx, e);
Radek Krejci6e4ffbb2015-06-16 10:34:41 +0200459 }
460 lydict_remove(ctx, elem->name);
461 lydict_remove(ctx, elem->content);
462 free(elem);
Radek Krejci02117302015-04-13 16:32:44 +0200463}
464
Radek Krejcic6704c82015-10-06 11:12:45 +0200465API void
Michal Vasko345da0a2015-12-02 10:35:55 +0100466lyxml_free(struct ly_ctx *ctx, struct lyxml_elem *elem)
Radek Krejci02117302015-04-13 16:32:44 +0200467{
GalaxyGorillac7777422019-10-07 16:01:23 +0200468 FUN_IN;
469
Radek Krejci6e4ffbb2015-06-16 10:34:41 +0200470 if (!elem) {
471 return;
472 }
Radek Krejci02117302015-04-13 16:32:44 +0200473
Michal Vasko61f7ccb2015-10-23 10:15:08 +0200474 lyxml_unlink_elem(ctx, elem, 2);
Michal Vasko272e42f2015-12-02 12:20:37 +0100475 lyxml_free_elem(ctx, elem);
Radek Krejci02117302015-04-13 16:32:44 +0200476}
477
Radek Krejci8f8db232016-05-23 16:48:21 +0200478API void
479lyxml_free_withsiblings(struct ly_ctx *ctx, struct lyxml_elem *elem)
480{
GalaxyGorillac7777422019-10-07 16:01:23 +0200481 FUN_IN;
482
Radek Krejci8f8db232016-05-23 16:48:21 +0200483 struct lyxml_elem *iter, *aux;
484
485 if (!elem) {
486 return;
487 }
488
489 /* optimization - avoid freeing (unlinking) the last node of the siblings list */
490 /* so, first, free the node's predecessors to the beginning of the list ... */
491 for(iter = elem->prev; iter->next; iter = aux) {
492 aux = iter->prev;
493 lyxml_free(ctx, iter);
494 }
495 /* ... then, the node is the first in the siblings list, so free them all */
496 LY_TREE_FOR_SAFE(elem, aux, iter) {
497 lyxml_free(ctx, iter);
498 }
499}
500
Michal Vasko88c29542015-11-27 14:57:53 +0100501API const char *
Michal Vasko1e62a092015-12-01 12:27:20 +0100502lyxml_get_attr(const struct lyxml_elem *elem, const char *name, const char *ns)
Radek Krejcida04f4a2015-05-21 12:54:09 +0200503{
GalaxyGorillac7777422019-10-07 16:01:23 +0200504 FUN_IN;
505
Radek Krejci6e4ffbb2015-06-16 10:34:41 +0200506 struct lyxml_attr *a;
Radek Krejcida04f4a2015-05-21 12:54:09 +0200507
Radek Krejci6e4ffbb2015-06-16 10:34:41 +0200508 assert(elem);
509 assert(name);
Radek Krejcida04f4a2015-05-21 12:54:09 +0200510
Radek Krejci6e4ffbb2015-06-16 10:34:41 +0200511 for (a = elem->attr; a; a = a->next) {
512 if (a->type != LYXML_ATTR_STD) {
513 continue;
514 }
Radek Krejcida04f4a2015-05-21 12:54:09 +0200515
Radek Krejci6e4ffbb2015-06-16 10:34:41 +0200516 if (!strcmp(name, a->name)) {
517 if ((!ns && !a->ns) || (ns && a->ns && !strcmp(ns, a->ns->value))) {
518 return a->value;
519 }
520 }
521 }
Radek Krejcida04f4a2015-05-21 12:54:09 +0200522
Radek Krejci6e4ffbb2015-06-16 10:34:41 +0200523 return NULL;
Radek Krejcida04f4a2015-05-21 12:54:09 +0200524}
525
Radek Krejci6e4ffbb2015-06-16 10:34:41 +0200526int
Michal Vaskof8879c22015-08-21 09:07:36 +0200527lyxml_add_child(struct ly_ctx *ctx, struct lyxml_elem *parent, struct lyxml_elem *elem)
Radek Krejci02117302015-04-13 16:32:44 +0200528{
Radek Krejci6e4ffbb2015-06-16 10:34:41 +0200529 struct lyxml_elem *e;
Radek Krejci02117302015-04-13 16:32:44 +0200530
Radek Krejci6e4ffbb2015-06-16 10:34:41 +0200531 assert(parent);
532 assert(elem);
Radek Krejci02117302015-04-13 16:32:44 +0200533
Radek Krejci6e4ffbb2015-06-16 10:34:41 +0200534 /* (re)link element to parent */
535 if (elem->parent) {
Michal Vaskof8879c22015-08-21 09:07:36 +0200536 lyxml_unlink_elem(ctx, elem, 1);
Radek Krejci6e4ffbb2015-06-16 10:34:41 +0200537 }
538 elem->parent = parent;
Radek Krejci02117302015-04-13 16:32:44 +0200539
Radek Krejci6e4ffbb2015-06-16 10:34:41 +0200540 /* link parent to element */
541 if (parent->child) {
542 e = parent->child;
543 elem->prev = e->prev;
544 elem->next = NULL;
545 elem->prev->next = elem;
546 e->prev = elem;
547 } else {
548 parent->child = elem;
549 elem->prev = elem;
550 elem->next = NULL;
551 }
Radek Krejci02117302015-04-13 16:32:44 +0200552
Radek Krejci6e4ffbb2015-06-16 10:34:41 +0200553 return EXIT_SUCCESS;
Radek Krejci02117302015-04-13 16:32:44 +0200554}
555
Michal Vasko3b855722015-08-28 16:01:18 +0200556int
Michal Vasko53b7da02018-02-13 15:28:42 +0100557lyxml_getutf8(struct ly_ctx *ctx, const char *buf, unsigned int *read)
Radek Krejci02117302015-04-13 16:32:44 +0200558{
Radek Krejci6e4ffbb2015-06-16 10:34:41 +0200559 int c, aux;
560 int i;
Radek Krejci02117302015-04-13 16:32:44 +0200561
Radek Krejci6e4ffbb2015-06-16 10:34:41 +0200562 c = buf[0];
563 *read = 0;
Radek Krejci02117302015-04-13 16:32:44 +0200564
Radek Krejci6e4ffbb2015-06-16 10:34:41 +0200565 /* buf is NULL terminated string, so 0 means EOF */
566 if (!c) {
Michal Vasko53b7da02018-02-13 15:28:42 +0100567 LOGVAL(ctx, LYE_EOF, LY_VLOG_NONE, NULL);
Radek Krejci6e4ffbb2015-06-16 10:34:41 +0200568 return 0;
569 }
570 *read = 1;
Radek Krejci02117302015-04-13 16:32:44 +0200571
Radek Krejci6e4ffbb2015-06-16 10:34:41 +0200572 /* process character byte(s) */
573 if ((c & 0xf8) == 0xf0) {
574 /* four bytes character */
575 *read = 4;
Radek Krejci02117302015-04-13 16:32:44 +0200576
Radek Krejci6e4ffbb2015-06-16 10:34:41 +0200577 c &= 0x07;
578 for (i = 1; i <= 3; i++) {
579 aux = buf[i];
580 if ((aux & 0xc0) != 0x80) {
Michal Vasko53b7da02018-02-13 15:28:42 +0100581 LOGVAL(ctx, LYE_XML_INVAL, LY_VLOG_NONE, NULL, "input character");
Radek Krejci6e4ffbb2015-06-16 10:34:41 +0200582 return 0;
583 }
Radek Krejci02117302015-04-13 16:32:44 +0200584
Radek Krejci6e4ffbb2015-06-16 10:34:41 +0200585 c = (c << 6) | (aux & 0x3f);
586 }
Radek Krejci02117302015-04-13 16:32:44 +0200587
Radek Krejci6e4ffbb2015-06-16 10:34:41 +0200588 if (c < 0x1000 || c > 0x10ffff) {
Michal Vasko53b7da02018-02-13 15:28:42 +0100589 LOGVAL(ctx, LYE_XML_INVAL, LY_VLOG_NONE, NULL, "input character");
Radek Krejci6e4ffbb2015-06-16 10:34:41 +0200590 return 0;
591 }
592 } else if ((c & 0xf0) == 0xe0) {
593 /* three bytes character */
594 *read = 3;
Radek Krejci02117302015-04-13 16:32:44 +0200595
Radek Krejci6e4ffbb2015-06-16 10:34:41 +0200596 c &= 0x0f;
597 for (i = 1; i <= 2; i++) {
598 aux = buf[i];
599 if ((aux & 0xc0) != 0x80) {
Michal Vasko53b7da02018-02-13 15:28:42 +0100600 LOGVAL(ctx, LYE_XML_INVAL, LY_VLOG_NONE, NULL, "input character");
Radek Krejci6e4ffbb2015-06-16 10:34:41 +0200601 return 0;
602 }
Radek Krejci02117302015-04-13 16:32:44 +0200603
Radek Krejci6e4ffbb2015-06-16 10:34:41 +0200604 c = (c << 6) | (aux & 0x3f);
605 }
Radek Krejci02117302015-04-13 16:32:44 +0200606
Radek Krejci6e4ffbb2015-06-16 10:34:41 +0200607 if (c < 0x800 || (c > 0xd7ff && c < 0xe000) || c > 0xfffd) {
Michal Vasko53b7da02018-02-13 15:28:42 +0100608 LOGVAL(ctx, LYE_XML_INVAL, LY_VLOG_NONE, NULL, "input character");
Radek Krejci6e4ffbb2015-06-16 10:34:41 +0200609 return 0;
610 }
611 } else if ((c & 0xe0) == 0xc0) {
612 /* two bytes character */
613 *read = 2;
Radek Krejci02117302015-04-13 16:32:44 +0200614
Radek Krejci6e4ffbb2015-06-16 10:34:41 +0200615 aux = buf[1];
616 if ((aux & 0xc0) != 0x80) {
Michal Vasko53b7da02018-02-13 15:28:42 +0100617 LOGVAL(ctx, LYE_XML_INVAL, LY_VLOG_NONE, NULL, "input character");
Radek Krejci6e4ffbb2015-06-16 10:34:41 +0200618 return 0;
619 }
620 c = ((c & 0x1f) << 6) | (aux & 0x3f);
Radek Krejci02117302015-04-13 16:32:44 +0200621
Radek Krejci6e4ffbb2015-06-16 10:34:41 +0200622 if (c < 0x80) {
Michal Vasko53b7da02018-02-13 15:28:42 +0100623 LOGVAL(ctx, LYE_XML_INVAL, LY_VLOG_NONE, NULL, "input character");
Radek Krejci6e4ffbb2015-06-16 10:34:41 +0200624 return 0;
625 }
626 } else if (!(c & 0x80)) {
627 /* one byte character */
628 if (c < 0x20 && c != 0x9 && c != 0xa && c != 0xd) {
629 /* invalid character */
Michal Vasko53b7da02018-02-13 15:28:42 +0100630 LOGVAL(ctx, LYE_XML_INVAL, LY_VLOG_NONE, NULL, "input character");
Radek Krejci6e4ffbb2015-06-16 10:34:41 +0200631 return 0;
632 }
633 } else {
634 /* invalid character */
Michal Vasko53b7da02018-02-13 15:28:42 +0100635 LOGVAL(ctx, LYE_XML_INVAL, LY_VLOG_NONE, NULL, "input character");
Radek Krejci6e4ffbb2015-06-16 10:34:41 +0200636 return 0;
637 }
Radek Krejci02117302015-04-13 16:32:44 +0200638
Radek Krejci6e4ffbb2015-06-16 10:34:41 +0200639 return c;
Radek Krejci02117302015-04-13 16:32:44 +0200640}
641
Michal Vasko0d343d12015-08-24 14:57:36 +0200642/* logs directly */
Radek Krejci6e4ffbb2015-06-16 10:34:41 +0200643static int
Michal Vasko53b7da02018-02-13 15:28:42 +0100644parse_ignore(struct ly_ctx *ctx, const char *data, const char *endstr, unsigned int *len)
Radek Krejci02117302015-04-13 16:32:44 +0200645{
Radek Krejci6e4ffbb2015-06-16 10:34:41 +0200646 unsigned int slen;
647 const char *c = data;
Radek Krejci02117302015-04-13 16:32:44 +0200648
Radek Krejci6e4ffbb2015-06-16 10:34:41 +0200649 slen = strlen(endstr);
Radek Krejci02117302015-04-13 16:32:44 +0200650
Radek Krejcifb783942016-10-06 09:49:33 +0200651 while (*c && strncmp(c, endstr, slen)) {
Radek Krejci6e4ffbb2015-06-16 10:34:41 +0200652 c++;
653 }
654 if (!*c) {
Michal Vasko53b7da02018-02-13 15:28:42 +0100655 LOGVAL(ctx, LYE_XML_MISS, LY_VLOG_NONE, NULL, "closing sequence", endstr);
Radek Krejci6e4ffbb2015-06-16 10:34:41 +0200656 return EXIT_FAILURE;
657 }
658 c += slen;
Radek Krejci02117302015-04-13 16:32:44 +0200659
Radek Krejci6e4ffbb2015-06-16 10:34:41 +0200660 *len = c - data;
661 return EXIT_SUCCESS;
Radek Krejci02117302015-04-13 16:32:44 +0200662}
663
Michal Vasko53b7da02018-02-13 15:28:42 +0100664/* logs directly, fails when return == NULL and *len == 0 */
Radek Krejci6e4ffbb2015-06-16 10:34:41 +0200665static char *
Michal Vasko53b7da02018-02-13 15:28:42 +0100666parse_text(struct ly_ctx *ctx, const char *data, char delim, unsigned int *len)
Radek Krejci02117302015-04-13 16:32:44 +0200667{
Radek Krejci709fee62015-04-15 13:56:19 +0200668#define BUFSIZE 1024
Radek Krejci02117302015-04-13 16:32:44 +0200669
Radek Krejci6e4ffbb2015-06-16 10:34:41 +0200670 char buf[BUFSIZE];
Michal Vaskobddd3d72020-08-27 08:39:50 +0200671 char *result = NULL;
Radek Krejci6e4ffbb2015-06-16 10:34:41 +0200672 unsigned int r;
673 int o, size = 0;
674 int cdsect = 0;
675 int32_t n;
Radek Krejci709fee62015-04-15 13:56:19 +0200676
Radek Krejci6e4ffbb2015-06-16 10:34:41 +0200677 for (*len = o = 0; cdsect || data[*len] != delim; o++) {
Radek Krejcifb783942016-10-06 09:49:33 +0200678 if (!data[*len] || (!cdsect && !strncmp(&data[*len], "]]>", 3))) {
Michal Vasko53b7da02018-02-13 15:28:42 +0100679 LOGVAL(ctx, LYE_XML_INVAL, LY_VLOG_NONE, NULL, "element content, \"]]>\" found");
Radek Krejci6e4ffbb2015-06-16 10:34:41 +0200680 goto error;
681 }
Radek Krejci709fee62015-04-15 13:56:19 +0200682
Radek Krejcia4a84062015-04-16 13:00:10 +0200683loop:
684
Radek Krejcia0802a82017-02-08 12:41:05 +0100685 if (o > BUFSIZE - 4) {
Radek Krejci6e4ffbb2015-06-16 10:34:41 +0200686 /* add buffer into the result */
687 if (result) {
688 size = size + o;
Radek Krejcia8d111f2017-05-31 13:57:37 +0200689 result = ly_realloc(result, size + 1);
Radek Krejci6e4ffbb2015-06-16 10:34:41 +0200690 } else {
691 size = o;
692 result = malloc((size + 1) * sizeof *result);
693 }
Michal Vasko53b7da02018-02-13 15:28:42 +0100694 LY_CHECK_ERR_RETURN(!result, LOGMEM(ctx), NULL);
Radek Krejci6e4ffbb2015-06-16 10:34:41 +0200695 memcpy(&result[size - o], buf, o);
Radek Krejci709fee62015-04-15 13:56:19 +0200696
Radek Krejci6e4ffbb2015-06-16 10:34:41 +0200697 /* write again into the beginning of the buffer */
698 o = 0;
699 }
Radek Krejci709fee62015-04-15 13:56:19 +0200700
Radek Krejcifb783942016-10-06 09:49:33 +0200701 if (cdsect || !strncmp(&data[*len], "<![CDATA[", 9)) {
Radek Krejci6e4ffbb2015-06-16 10:34:41 +0200702 /* CDSect */
703 if (!cdsect) {
704 cdsect = 1;
705 *len += 9;
706 }
Radek Krejcifb783942016-10-06 09:49:33 +0200707 if (data[*len] && !strncmp(&data[*len], "]]>", 3)) {
Radek Krejci6e4ffbb2015-06-16 10:34:41 +0200708 *len += 3;
709 cdsect = 0;
710 o--; /* we don't write any data in this iteration */
711 } else {
712 buf[o] = data[*len];
713 (*len)++;
714 }
715 } else if (data[*len] == '&') {
716 (*len)++;
717 if (data[*len] != '#') {
718 /* entity reference - only predefined refs are supported */
Radek Krejcifb783942016-10-06 09:49:33 +0200719 if (!strncmp(&data[*len], "lt;", 3)) {
Radek Krejci6e4ffbb2015-06-16 10:34:41 +0200720 buf[o] = '<';
721 *len += 3;
Radek Krejcifb783942016-10-06 09:49:33 +0200722 } else if (!strncmp(&data[*len], "gt;", 3)) {
Radek Krejci6e4ffbb2015-06-16 10:34:41 +0200723 buf[o] = '>';
724 *len += 3;
Radek Krejcifb783942016-10-06 09:49:33 +0200725 } else if (!strncmp(&data[*len], "amp;", 4)) {
Radek Krejci6e4ffbb2015-06-16 10:34:41 +0200726 buf[o] = '&';
727 *len += 4;
Radek Krejcifb783942016-10-06 09:49:33 +0200728 } else if (!strncmp(&data[*len], "apos;", 5)) {
Radek Krejci6e4ffbb2015-06-16 10:34:41 +0200729 buf[o] = '\'';
730 *len += 5;
Radek Krejcifb783942016-10-06 09:49:33 +0200731 } else if (!strncmp(&data[*len], "quot;", 5)) {
Radek Krejci6e4ffbb2015-06-16 10:34:41 +0200732 buf[o] = '\"';
733 *len += 5;
734 } else {
Michal Vasko53b7da02018-02-13 15:28:42 +0100735 LOGVAL(ctx, LYE_XML_INVAL, LY_VLOG_NONE, NULL, "entity reference (only predefined references are supported)");
Radek Krejci6e4ffbb2015-06-16 10:34:41 +0200736 goto error;
737 }
738 } else {
739 /* character reference */
740 (*len)++;
741 if (isdigit(data[*len])) {
742 for (n = 0; isdigit(data[*len]); (*len)++) {
743 n = (10 * n) + (data[*len] - '0');
744 }
745 if (data[*len] != ';') {
Michal Vasko53b7da02018-02-13 15:28:42 +0100746 LOGVAL(ctx, LYE_XML_INVAL, LY_VLOG_NONE, NULL, "character reference, missing semicolon");
Radek Krejci6e4ffbb2015-06-16 10:34:41 +0200747 goto error;
748 }
749 } else if (data[(*len)++] == 'x' && isxdigit(data[*len])) {
750 for (n = 0; isxdigit(data[*len]); (*len)++) {
751 if (isdigit(data[*len])) {
752 r = (data[*len] - '0');
753 } else if (data[*len] > 'F') {
754 r = 10 + (data[*len] - 'a');
755 } else {
756 r = 10 + (data[*len] - 'A');
757 }
758 n = (16 * n) + r;
759 }
760 } else {
Michal Vasko53b7da02018-02-13 15:28:42 +0100761 LOGVAL(ctx, LYE_XML_INVAL, LY_VLOG_NONE, NULL, "character reference");
Radek Krejci6e4ffbb2015-06-16 10:34:41 +0200762 goto error;
Radek Krejci709fee62015-04-15 13:56:19 +0200763
Radek Krejci6e4ffbb2015-06-16 10:34:41 +0200764 }
Michal Vasko53b7da02018-02-13 15:28:42 +0100765 r = pututf8(ctx, &buf[o], n);
Radek Krejci6e4ffbb2015-06-16 10:34:41 +0200766 if (!r) {
Michal Vasko53b7da02018-02-13 15:28:42 +0100767 LOGVAL(ctx, LYE_XML_INVAL, LY_VLOG_NONE, NULL, "character reference value");
Radek Krejci6e4ffbb2015-06-16 10:34:41 +0200768 goto error;
769 }
770 o += r - 1; /* o is ++ in for loop */
771 (*len)++;
772 }
773 } else {
Michal Vasko53b7da02018-02-13 15:28:42 +0100774 r = copyutf8(ctx, &buf[o], &data[*len]);
Radek Krejcideee60e2016-09-23 15:21:14 +0200775 if (!r) {
776 goto error;
777 }
778
779 o += r - 1; /* o is ++ in for loop */
780 (*len) = (*len) + r;
Radek Krejci6e4ffbb2015-06-16 10:34:41 +0200781 }
782 }
Radek Krejci02117302015-04-13 16:32:44 +0200783
Radek Krejcifb783942016-10-06 09:49:33 +0200784 if (delim == '<' && !strncmp(&data[*len], "<![CDATA[", 9)) {
Radek Krejci6e4ffbb2015-06-16 10:34:41 +0200785 /* ignore loop's end condition on beginning of CDSect */
786 goto loop;
787 }
Radek Krejci709fee62015-04-15 13:56:19 +0200788#undef BUFSIZE
789
Radek Krejci6e4ffbb2015-06-16 10:34:41 +0200790 if (o) {
791 if (result) {
792 size = size + o;
Michal Vaskobddd3d72020-08-27 08:39:50 +0200793 result = ly_realloc(result, size + 1);
Radek Krejci6e4ffbb2015-06-16 10:34:41 +0200794 } else {
795 size = o;
796 result = malloc((size + 1) * sizeof *result);
797 }
Michal Vasko53b7da02018-02-13 15:28:42 +0100798 LY_CHECK_ERR_RETURN(!result, LOGMEM(ctx), NULL);
Radek Krejci6e4ffbb2015-06-16 10:34:41 +0200799 memcpy(&result[size - o], buf, o);
800 }
801 if (result) {
802 result[size] = '\0';
Radek Krejcia5269642015-07-20 19:04:11 +0200803 } else {
804 size = 0;
805 result = strdup("");
Michal Vasko53b7da02018-02-13 15:28:42 +0100806 LY_CHECK_ERR_RETURN(!result, LOGMEM(ctx), NULL)
Radek Krejci6e4ffbb2015-06-16 10:34:41 +0200807 }
Radek Krejci02117302015-04-13 16:32:44 +0200808
Radek Krejci6e4ffbb2015-06-16 10:34:41 +0200809 return result;
Radek Krejci709fee62015-04-15 13:56:19 +0200810
811error:
Michal Vasko53b7da02018-02-13 15:28:42 +0100812 *len = 0;
Radek Krejci6e4ffbb2015-06-16 10:34:41 +0200813 free(result);
814 return NULL;
Radek Krejci02117302015-04-13 16:32:44 +0200815}
816
Michal Vasko0d343d12015-08-24 14:57:36 +0200817/* logs directly */
Radek Krejci6e4ffbb2015-06-16 10:34:41 +0200818static struct lyxml_attr *
Radek Krejci00249f22015-07-07 13:43:28 +0200819parse_attr(struct ly_ctx *ctx, const char *data, unsigned int *len, struct lyxml_elem *parent)
Radek Krejci674e1f82015-04-21 14:12:19 +0200820{
Radek Krejci6e4ffbb2015-06-16 10:34:41 +0200821 const char *c = data, *start, *delim;
aweast069a6c02018-05-30 16:44:18 -0500822 char *prefix = NULL, xml_flag, *str;
Radek Krejci6e4ffbb2015-06-16 10:34:41 +0200823 int uc;
Radek Krejci00249f22015-07-07 13:43:28 +0200824 struct lyxml_attr *attr = NULL, *a;
Radek Krejci6e4ffbb2015-06-16 10:34:41 +0200825 unsigned int size;
Radek Krejci02117302015-04-13 16:32:44 +0200826
Radek Krejci6e4ffbb2015-06-16 10:34:41 +0200827 /* check if it is attribute or namespace */
Radek Krejcifb783942016-10-06 09:49:33 +0200828 if (!strncmp(c, "xmlns", 5)) {
Radek Krejci6e4ffbb2015-06-16 10:34:41 +0200829 /* namespace */
830 attr = calloc(1, sizeof (struct lyxml_ns));
Michal Vasko53b7da02018-02-13 15:28:42 +0100831 LY_CHECK_ERR_RETURN(!attr, LOGMEM(ctx), NULL);
Radek Krejcia8d111f2017-05-31 13:57:37 +0200832
Radek Krejci6e4ffbb2015-06-16 10:34:41 +0200833 attr->type = LYXML_ATTR_NS;
Radek Krejci00249f22015-07-07 13:43:28 +0200834 ((struct lyxml_ns *)attr)->parent = parent;
Radek Krejci6e4ffbb2015-06-16 10:34:41 +0200835 c += 5;
836 if (*c != ':') {
837 /* default namespace, prefix will be empty */
838 goto equal;
839 }
840 c++; /* go after ':' to the prefix value */
841 } else {
842 /* attribute */
843 attr = calloc(1, sizeof *attr);
Michal Vasko53b7da02018-02-13 15:28:42 +0100844 LY_CHECK_ERR_RETURN(!attr, LOGMEM(ctx), NULL);
Radek Krejcia8d111f2017-05-31 13:57:37 +0200845
Radek Krejci6e4ffbb2015-06-16 10:34:41 +0200846 attr->type = LYXML_ATTR_STD;
847 }
Radek Krejci4ea08382015-04-21 09:41:40 +0200848
Radek Krejci6e4ffbb2015-06-16 10:34:41 +0200849 /* process name part of the attribute */
850 start = c;
Michal Vasko53b7da02018-02-13 15:28:42 +0100851 uc = lyxml_getutf8(ctx, c, &size);
Radek Krejci6e4ffbb2015-06-16 10:34:41 +0200852 if (!is_xmlnamestartchar(uc)) {
Michal Vasko53b7da02018-02-13 15:28:42 +0100853 LOGVAL(ctx, LYE_XML_INVAL, LY_VLOG_NONE, NULL, "NameStartChar of the attribute");
Radek Krejci6e4ffbb2015-06-16 10:34:41 +0200854 free(attr);
855 return NULL;
856 }
Michal Vasko62d5a6b2018-01-03 14:31:39 +0100857 xml_flag = 4;
858 if (*c == 'x') {
859 xml_flag = 1;
860 }
Radek Krejci6e4ffbb2015-06-16 10:34:41 +0200861 c += size;
Michal Vasko53b7da02018-02-13 15:28:42 +0100862 uc = lyxml_getutf8(ctx, c, &size);
Radek Krejci6e4ffbb2015-06-16 10:34:41 +0200863 while (is_xmlnamechar(uc)) {
Michal Vasko62d5a6b2018-01-03 14:31:39 +0100864 if (attr->type == LYXML_ATTR_STD) {
865 if ((*c == ':') && (xml_flag != 3)) {
866 /* attribute in a namespace (but disregard the special "xml" namespace) */
867 start = c + 1;
Radek Krejci4ea08382015-04-21 09:41:40 +0200868
Michal Vasko62d5a6b2018-01-03 14:31:39 +0100869 /* look for the prefix in namespaces */
aweast069a6c02018-05-30 16:44:18 -0500870 prefix = malloc((c - data + 1) * sizeof *prefix);
871 LY_CHECK_ERR_GOTO(!prefix, LOGMEM(ctx), error);
Michal Vasko62d5a6b2018-01-03 14:31:39 +0100872 memcpy(prefix, data, c - data);
873 prefix[c - data] = '\0';
874 attr->ns = lyxml_get_ns(parent, prefix);
Michal Vasko36b72992020-02-25 12:12:47 +0100875 if (!attr->ns) {
876 /* remember the prefix for later resolution */
877 attr->type = LYXML_ATTR_STD_UNRES;
878 attr->ns = (struct lyxml_ns *)prefix;
879 prefix = NULL;
880 }
Michal Vasko62d5a6b2018-01-03 14:31:39 +0100881 } else if (((*c == 'm') && (xml_flag == 1)) ||
882 ((*c == 'l') && (xml_flag == 2))) {
883 ++xml_flag;
884 } else {
885 xml_flag = 4;
886 }
Radek Krejci6e4ffbb2015-06-16 10:34:41 +0200887 }
888 c += size;
Michal Vasko53b7da02018-02-13 15:28:42 +0100889 uc = lyxml_getutf8(ctx, c, &size);
Radek Krejci6e4ffbb2015-06-16 10:34:41 +0200890 }
Radek Krejci674e1f82015-04-21 14:12:19 +0200891
Radek Krejci6e4ffbb2015-06-16 10:34:41 +0200892 /* store the name */
893 size = c - start;
894 attr->name = lydict_insert(ctx, start, size);
Radek Krejci674e1f82015-04-21 14:12:19 +0200895
896equal:
Radek Krejci6e4ffbb2015-06-16 10:34:41 +0200897 /* check Eq mark that can be surrounded by whitespaces */
898 ign_xmlws(c);
899 if (*c != '=') {
Michal Vasko53b7da02018-02-13 15:28:42 +0100900 LOGVAL(ctx, LYE_XML_INVAL, LY_VLOG_NONE, NULL, "attribute definition, \"=\" expected");
Radek Krejci6e4ffbb2015-06-16 10:34:41 +0200901 goto error;
902 }
903 c++;
904 ign_xmlws(c);
Radek Krejci02117302015-04-13 16:32:44 +0200905
Radek Krejci6e4ffbb2015-06-16 10:34:41 +0200906 /* process value part of the attribute */
907 if (!*c || (*c != '"' && *c != '\'')) {
Michal Vasko53b7da02018-02-13 15:28:42 +0100908 LOGVAL(ctx, LYE_XML_INVAL, LY_VLOG_NONE, NULL, "attribute value, \" or \' expected");
Radek Krejci6e4ffbb2015-06-16 10:34:41 +0200909 goto error;
910 }
911 delim = c;
Michal Vasko53b7da02018-02-13 15:28:42 +0100912 str = parse_text(ctx, ++c, *delim, &size);
913 if (!str && !size) {
Radek Krejci6e4ffbb2015-06-16 10:34:41 +0200914 goto error;
915 }
Michal Vasko53b7da02018-02-13 15:28:42 +0100916 attr->value = lydict_insert_zc(ctx, str);
Radek Krejci02117302015-04-13 16:32:44 +0200917
Radek Krejci6e4ffbb2015-06-16 10:34:41 +0200918 *len = c + size + 1 - data; /* +1 is delimiter size */
Radek Krejci00249f22015-07-07 13:43:28 +0200919
920 /* put attribute into the parent's attributes list */
921 if (parent->attr) {
922 /* go to the end of the list */
923 for (a = parent->attr; a->next; a = a->next);
924 /* and append new attribute */
925 a->next = attr;
926 } else {
927 /* add the first attribute in the list */
928 parent->attr = attr;
929 }
930
aweast069a6c02018-05-30 16:44:18 -0500931 free(prefix);
Radek Krejci6e4ffbb2015-06-16 10:34:41 +0200932 return attr;
Radek Krejci02117302015-04-13 16:32:44 +0200933
934error:
Radek Krejci00249f22015-07-07 13:43:28 +0200935 lyxml_free_attr(ctx, NULL, attr);
aweast069a6c02018-05-30 16:44:18 -0500936 free(prefix);
Radek Krejci6e4ffbb2015-06-16 10:34:41 +0200937 return NULL;
Radek Krejci54ea8de2015-04-09 18:02:56 +0200938}
939
Michal Vasko0d343d12015-08-24 14:57:36 +0200940/* logs directly */
Radek Krejci9a5daea2016-03-02 16:49:40 +0100941struct lyxml_elem *
Radek Krejcie1bacd72017-03-01 13:18:46 +0100942lyxml_parse_elem(struct ly_ctx *ctx, const char *data, unsigned int *len, struct lyxml_elem *parent, int options)
Radek Krejci54ea8de2015-04-09 18:02:56 +0200943{
Radek Krejci6e4ffbb2015-06-16 10:34:41 +0200944 const char *c = data, *start, *e;
945 const char *lws; /* leading white space for handling mixed content */
946 int uc;
947 char *str;
aweast069a6c02018-05-30 16:44:18 -0500948 char *prefix = NULL;
Radek Krejci6e4ffbb2015-06-16 10:34:41 +0200949 unsigned int prefix_len = 0;
950 struct lyxml_elem *elem = NULL, *child;
951 struct lyxml_attr *attr;
952 unsigned int size;
953 int nons_flag = 0, closed_flag = 0;
Radek Krejci02117302015-04-13 16:32:44 +0200954
Radek Krejci6e4ffbb2015-06-16 10:34:41 +0200955 *len = 0;
Radek Krejci02117302015-04-13 16:32:44 +0200956
Radek Krejci6e4ffbb2015-06-16 10:34:41 +0200957 if (*c != '<') {
958 return NULL;
959 }
Radek Krejci02117302015-04-13 16:32:44 +0200960
Radek Krejci6e4ffbb2015-06-16 10:34:41 +0200961 /* locate element name */
962 c++;
963 e = c;
Radek Krejci02117302015-04-13 16:32:44 +0200964
Michal Vasko53b7da02018-02-13 15:28:42 +0100965 uc = lyxml_getutf8(ctx, e, &size);
Radek Krejci6e4ffbb2015-06-16 10:34:41 +0200966 if (!is_xmlnamestartchar(uc)) {
Michal Vasko53b7da02018-02-13 15:28:42 +0100967 LOGVAL(ctx, LYE_XML_INVAL, LY_VLOG_NONE, NULL, "NameStartChar of the element");
Radek Krejci6e4ffbb2015-06-16 10:34:41 +0200968 return NULL;
969 }
970 e += size;
Michal Vasko53b7da02018-02-13 15:28:42 +0100971 uc = lyxml_getutf8(ctx, e, &size);
Radek Krejci6e4ffbb2015-06-16 10:34:41 +0200972 while (is_xmlnamechar(uc)) {
973 if (*e == ':') {
974 if (prefix_len) {
Michal Vasko53b7da02018-02-13 15:28:42 +0100975 LOGVAL(ctx, LYE_XML_INVAL, LY_VLOG_NONE, NULL, "element name, multiple colons found");
Radek Krejci6e4ffbb2015-06-16 10:34:41 +0200976 goto error;
977 }
978 /* element in a namespace */
979 start = e + 1;
Radek Krejci674e1f82015-04-21 14:12:19 +0200980
Radek Krejci6e4ffbb2015-06-16 10:34:41 +0200981 /* look for the prefix in namespaces */
aweast069a6c02018-05-30 16:44:18 -0500982 prefix_len = e - c;
Michal Vasko5f5096b2018-08-17 10:56:48 +0200983 LY_CHECK_ERR_GOTO(prefix, LOGVAL(ctx, LYE_XML_INCHAR, LY_VLOG_NONE, NULL, e), error);
aweast069a6c02018-05-30 16:44:18 -0500984 prefix = malloc((prefix_len + 1) * sizeof *prefix);
985 LY_CHECK_ERR_GOTO(!prefix, LOGMEM(ctx), error);
986 memcpy(prefix, c, prefix_len);
Radek Krejci6e4ffbb2015-06-16 10:34:41 +0200987 prefix[prefix_len] = '\0';
988 c = start;
989 }
990 e += size;
Michal Vasko53b7da02018-02-13 15:28:42 +0100991 uc = lyxml_getutf8(ctx, e, &size);
Radek Krejci6e4ffbb2015-06-16 10:34:41 +0200992 }
993 if (!*e) {
Michal Vasko53b7da02018-02-13 15:28:42 +0100994 LOGVAL(ctx, LYE_EOF, LY_VLOG_NONE, NULL);
aweast069a6c02018-05-30 16:44:18 -0500995 free(prefix);
Radek Krejci6e4ffbb2015-06-16 10:34:41 +0200996 return NULL;
997 }
Radek Krejci02117302015-04-13 16:32:44 +0200998
Radek Krejci6e4ffbb2015-06-16 10:34:41 +0200999 /* allocate element structure */
1000 elem = calloc(1, sizeof *elem);
Michal Vasko64e6cf82018-08-17 10:32:23 +02001001 LY_CHECK_ERR_RETURN(!elem, free(prefix); LOGMEM(ctx), NULL);
Radek Krejcia8d111f2017-05-31 13:57:37 +02001002
Radek Krejci6e4ffbb2015-06-16 10:34:41 +02001003 elem->next = NULL;
1004 elem->prev = elem;
1005 if (parent) {
Michal Vaskof8879c22015-08-21 09:07:36 +02001006 lyxml_add_child(ctx, parent, elem);
Radek Krejci6e4ffbb2015-06-16 10:34:41 +02001007 }
Radek Krejci02117302015-04-13 16:32:44 +02001008
Radek Krejci6e4ffbb2015-06-16 10:34:41 +02001009 /* store the name into the element structure */
1010 elem->name = lydict_insert(ctx, c, e - c);
1011 c = e;
Radek Krejci02117302015-04-13 16:32:44 +02001012
1013process:
Radek Krejci6e4ffbb2015-06-16 10:34:41 +02001014 ign_xmlws(c);
Radek Krejcifb783942016-10-06 09:49:33 +02001015 if (!strncmp("/>", c, 2)) {
Radek Krejci6e4ffbb2015-06-16 10:34:41 +02001016 /* we are done, it was EmptyElemTag */
1017 c += 2;
Michal Vasko44913842016-04-13 14:20:41 +02001018 elem->content = lydict_insert(ctx, "", 0);
Radek Krejci6e4ffbb2015-06-16 10:34:41 +02001019 closed_flag = 1;
1020 } else if (*c == '>') {
1021 /* process element content */
1022 c++;
1023 lws = NULL;
Radek Krejci02117302015-04-13 16:32:44 +02001024
Radek Krejci6e4ffbb2015-06-16 10:34:41 +02001025 while (*c) {
Radek Krejcifb783942016-10-06 09:49:33 +02001026 if (!strncmp(c, "</", 2)) {
Radek Krejci6e4ffbb2015-06-16 10:34:41 +02001027 if (lws && !elem->child) {
1028 /* leading white spaces were actually content */
1029 goto store_content;
1030 }
Radek Krejci02117302015-04-13 16:32:44 +02001031
Radek Krejci6e4ffbb2015-06-16 10:34:41 +02001032 /* Etag */
1033 c += 2;
1034 /* get name and check it */
1035 e = c;
Michal Vasko53b7da02018-02-13 15:28:42 +01001036 uc = lyxml_getutf8(ctx, e, &size);
Radek Krejci6e4ffbb2015-06-16 10:34:41 +02001037 if (!is_xmlnamestartchar(uc)) {
Michal Vasko53b7da02018-02-13 15:28:42 +01001038 LOGVAL(ctx, LYE_XML_INVAL, LY_VLOG_XML, elem, "NameStartChar of the element");
Radek Krejci6e4ffbb2015-06-16 10:34:41 +02001039 goto error;
1040 }
1041 e += size;
Michal Vasko53b7da02018-02-13 15:28:42 +01001042 uc = lyxml_getutf8(ctx, e, &size);
Radek Krejci6e4ffbb2015-06-16 10:34:41 +02001043 while (is_xmlnamechar(uc)) {
1044 if (*e == ':') {
1045 /* element in a namespace */
1046 start = e + 1;
Radek Krejci674e1f82015-04-21 14:12:19 +02001047
Radek Krejci6e4ffbb2015-06-16 10:34:41 +02001048 /* look for the prefix in namespaces */
aweast069a6c02018-05-30 16:44:18 -05001049 if (!prefix || memcmp(prefix, c, e - c)) {
Michal Vasko53b7da02018-02-13 15:28:42 +01001050 LOGVAL(ctx, LYE_SPEC, LY_VLOG_XML, elem,
Michal Vaskoff9336a2016-05-10 10:48:48 +02001051 "Invalid (different namespaces) opening (%s) and closing element tags.", elem->name);
Radek Krejci6e4ffbb2015-06-16 10:34:41 +02001052 goto error;
1053 }
1054 c = start;
1055 }
1056 e += size;
Michal Vasko53b7da02018-02-13 15:28:42 +01001057 uc = lyxml_getutf8(ctx, e, &size);
Radek Krejci6e4ffbb2015-06-16 10:34:41 +02001058 }
1059 if (!*e) {
Michal Vasko53b7da02018-02-13 15:28:42 +01001060 LOGVAL(ctx, LYE_EOF, LY_VLOG_NONE, NULL);
Radek Krejci6e4ffbb2015-06-16 10:34:41 +02001061 goto error;
1062 }
Radek Krejci02117302015-04-13 16:32:44 +02001063
Radek Krejci6e4ffbb2015-06-16 10:34:41 +02001064 /* check that it corresponds to opening tag */
1065 size = e - c;
1066 str = malloc((size + 1) * sizeof *str);
Michal Vasko53b7da02018-02-13 15:28:42 +01001067 LY_CHECK_ERR_GOTO(!str, LOGMEM(ctx), error);
Radek Krejci6e4ffbb2015-06-16 10:34:41 +02001068 memcpy(str, c, e - c);
1069 str[e - c] = '\0';
1070 if (size != strlen(elem->name) || memcmp(str, elem->name, size)) {
Michal Vasko53b7da02018-02-13 15:28:42 +01001071 LOGVAL(ctx, LYE_SPEC, LY_VLOG_XML, elem,
Michal Vaskoff9336a2016-05-10 10:48:48 +02001072 "Invalid (mixed names) opening (%s) and closing (%s) element tags.", elem->name, str);
Radek Krejci6e4ffbb2015-06-16 10:34:41 +02001073 free(str);
1074 goto error;
1075 }
1076 free(str);
1077 c = e;
Radek Krejci02117302015-04-13 16:32:44 +02001078
Radek Krejci6e4ffbb2015-06-16 10:34:41 +02001079 ign_xmlws(c);
1080 if (*c != '>') {
Michal Vasko53b7da02018-02-13 15:28:42 +01001081 LOGVAL(ctx, LYE_SPEC, LY_VLOG_XML, elem, "Data after closing element tag \"%s\".", elem->name);
Radek Krejci6e4ffbb2015-06-16 10:34:41 +02001082 goto error;
1083 }
1084 c++;
Michal Vaskoe00b7892016-04-14 10:12:18 +02001085 if (!(elem->flags & LYXML_ELEM_MIXED) && !elem->content) {
1086 /* there was no content, but we don't want NULL (only if mixed content) */
1087 elem->content = lydict_insert(ctx, "", 0);
1088 }
Radek Krejci6e4ffbb2015-06-16 10:34:41 +02001089 closed_flag = 1;
1090 break;
Radek Krejci02117302015-04-13 16:32:44 +02001091
Radek Krejcifb783942016-10-06 09:49:33 +02001092 } else if (!strncmp(c, "<?", 2)) {
Radek Krejci6e4ffbb2015-06-16 10:34:41 +02001093 if (lws) {
1094 /* leading white spaces were only formatting */
1095 lws = NULL;
1096 }
1097 /* PI - ignore it */
1098 c += 2;
Michal Vasko53b7da02018-02-13 15:28:42 +01001099 if (parse_ignore(ctx, c, "?>", &size)) {
Radek Krejci6e4ffbb2015-06-16 10:34:41 +02001100 goto error;
1101 }
1102 c += size;
Radek Krejcifb783942016-10-06 09:49:33 +02001103 } else if (!strncmp(c, "<!--", 4)) {
Radek Krejci6e4ffbb2015-06-16 10:34:41 +02001104 if (lws) {
1105 /* leading white spaces were only formatting */
1106 lws = NULL;
1107 }
1108 /* Comment - ignore it */
1109 c += 4;
Michal Vasko53b7da02018-02-13 15:28:42 +01001110 if (parse_ignore(ctx, c, "-->", &size)) {
Radek Krejci6e4ffbb2015-06-16 10:34:41 +02001111 goto error;
1112 }
1113 c += size;
Radek Krejcifb783942016-10-06 09:49:33 +02001114 } else if (!strncmp(c, "<![CDATA[", 9)) {
Radek Krejci6e4ffbb2015-06-16 10:34:41 +02001115 /* CDSect */
1116 goto store_content;
1117 } else if (*c == '<') {
1118 if (lws) {
1119 if (elem->flags & LYXML_ELEM_MIXED) {
1120 /* we have a mixed content */
1121 goto store_content;
1122 } else {
1123 /* leading white spaces were only formatting */
1124 lws = NULL;
1125 }
1126 }
1127 if (elem->content) {
1128 /* we have a mixed content */
Radek Krejcie1bacd72017-03-01 13:18:46 +01001129 if (options & LYXML_PARSE_NOMIXEDCONTENT) {
Michal Vasko53b7da02018-02-13 15:28:42 +01001130 LOGVAL(ctx, LYE_XML_INVAL, LY_VLOG_XML, elem, "XML element with mixed content");
Radek Krejcie1bacd72017-03-01 13:18:46 +01001131 goto error;
1132 }
Radek Krejci6e4ffbb2015-06-16 10:34:41 +02001133 child = calloc(1, sizeof *child);
Michal Vasko53b7da02018-02-13 15:28:42 +01001134 LY_CHECK_ERR_GOTO(!child, LOGMEM(ctx), error);
Radek Krejci6e4ffbb2015-06-16 10:34:41 +02001135 child->content = elem->content;
1136 elem->content = NULL;
Michal Vaskof8879c22015-08-21 09:07:36 +02001137 lyxml_add_child(ctx, elem, child);
Radek Krejci6e4ffbb2015-06-16 10:34:41 +02001138 elem->flags |= LYXML_ELEM_MIXED;
1139 }
Radek Krejcie1bacd72017-03-01 13:18:46 +01001140 child = lyxml_parse_elem(ctx, c, &size, elem, options);
Radek Krejci6e4ffbb2015-06-16 10:34:41 +02001141 if (!child) {
1142 goto error;
1143 }
1144 c += size; /* move after processed child element */
1145 } else if (is_xmlws(*c)) {
1146 lws = c;
Radek Krejci6e4ffbb2015-06-16 10:34:41 +02001147 ign_xmlws(c);
1148 } else {
Radek Krejci02117302015-04-13 16:32:44 +02001149store_content:
Radek Krejci6e4ffbb2015-06-16 10:34:41 +02001150 /* store text content */
1151 if (lws) {
1152 /* process content including the leading white spaces */
1153 c = lws;
Radek Krejci6e4ffbb2015-06-16 10:34:41 +02001154 lws = NULL;
1155 }
Michal Vasko53b7da02018-02-13 15:28:42 +01001156 str = parse_text(ctx, c, '<', &size);
1157 if (!str && !size) {
Radek Krejci6e4ffbb2015-06-16 10:34:41 +02001158 goto error;
1159 }
Michal Vasko53b7da02018-02-13 15:28:42 +01001160 elem->content = lydict_insert_zc(ctx, str);
Radek Krejci6e4ffbb2015-06-16 10:34:41 +02001161 c += size; /* move after processed text content */
Radek Krejci02117302015-04-13 16:32:44 +02001162
Radek Krejci6e4ffbb2015-06-16 10:34:41 +02001163 if (elem->child) {
1164 /* we have a mixed content */
Radek Krejcie1bacd72017-03-01 13:18:46 +01001165 if (options & LYXML_PARSE_NOMIXEDCONTENT) {
Michal Vasko53b7da02018-02-13 15:28:42 +01001166 LOGVAL(ctx, LYE_XML_INVAL, LY_VLOG_XML, elem, "XML element with mixed content");
Radek Krejcie1bacd72017-03-01 13:18:46 +01001167 goto error;
1168 }
Radek Krejci6e4ffbb2015-06-16 10:34:41 +02001169 child = calloc(1, sizeof *child);
Michal Vasko53b7da02018-02-13 15:28:42 +01001170 LY_CHECK_ERR_GOTO(!child, LOGMEM(ctx), error);
Radek Krejci6e4ffbb2015-06-16 10:34:41 +02001171 child->content = elem->content;
1172 elem->content = NULL;
Michal Vaskof8879c22015-08-21 09:07:36 +02001173 lyxml_add_child(ctx, elem, child);
Radek Krejci6e4ffbb2015-06-16 10:34:41 +02001174 elem->flags |= LYXML_ELEM_MIXED;
1175 }
1176 }
1177 }
1178 } else {
1179 /* process attribute */
1180 attr = parse_attr(ctx, c, &size, elem);
1181 if (!attr) {
1182 goto error;
1183 }
Radek Krejci6e4ffbb2015-06-16 10:34:41 +02001184 c += size; /* move after processed attribute */
Radek Krejci02117302015-04-13 16:32:44 +02001185
Radek Krejci6e4ffbb2015-06-16 10:34:41 +02001186 /* check namespace */
1187 if (attr->type == LYXML_ATTR_NS) {
aweast069a6c02018-05-30 16:44:18 -05001188 if ((!prefix || !prefix[0]) && !attr->name) {
Radek Krejci6e4ffbb2015-06-16 10:34:41 +02001189 if (attr->value) {
1190 /* default prefix */
1191 elem->ns = (struct lyxml_ns *)attr;
1192 } else {
1193 /* xmlns="" -> no namespace */
1194 nons_flag = 1;
1195 }
aweast069a6c02018-05-30 16:44:18 -05001196 } else if (prefix && prefix[0] && attr->name && !strncmp(attr->name, prefix, prefix_len + 1)) {
Radek Krejci6e4ffbb2015-06-16 10:34:41 +02001197 /* matching namespace with prefix */
1198 elem->ns = (struct lyxml_ns *)attr;
1199 }
1200 }
Radek Krejci674e1f82015-04-21 14:12:19 +02001201
Radek Krejci6e4ffbb2015-06-16 10:34:41 +02001202 /* go back to finish element processing */
1203 goto process;
1204 }
Radek Krejci02117302015-04-13 16:32:44 +02001205
Radek Krejci6e4ffbb2015-06-16 10:34:41 +02001206 *len = c - data;
Radek Krejci02117302015-04-13 16:32:44 +02001207
Radek Krejci6e4ffbb2015-06-16 10:34:41 +02001208 if (!closed_flag) {
Michal Vasko53b7da02018-02-13 15:28:42 +01001209 LOGVAL(ctx, LYE_XML_MISS, LY_VLOG_XML, elem, "closing element tag", elem->name);
Radek Krejci6e4ffbb2015-06-16 10:34:41 +02001210 goto error;
1211 }
Radek Krejci674e1f82015-04-21 14:12:19 +02001212
Michal Vasko36b72992020-02-25 12:12:47 +01001213 /* resolve all attribute prefixes */
1214 LY_TREE_FOR(elem->attr, attr) {
1215 if (attr->type == LYXML_ATTR_STD_UNRES) {
1216 str = (char *)attr->ns;
1217 attr->ns = lyxml_get_ns(elem, str);
1218 free(str);
1219 attr->type = LYXML_ATTR_STD;
1220 }
1221 }
1222
Radek Krejci78a230a2015-07-07 17:04:40 +02001223 if (!elem->ns && !nons_flag && parent) {
Radek Krejci4476d412015-07-10 15:35:01 +02001224 elem->ns = lyxml_get_ns(parent, prefix_len ? prefix : NULL);
Radek Krejci6e4ffbb2015-06-16 10:34:41 +02001225 }
aweast069a6c02018-05-30 16:44:18 -05001226 free(prefix);
Radek Krejci6e4ffbb2015-06-16 10:34:41 +02001227 return elem;
Radek Krejci02117302015-04-13 16:32:44 +02001228
1229error:
Michal Vasko345da0a2015-12-02 10:35:55 +01001230 lyxml_free(ctx, elem);
aweast069a6c02018-05-30 16:44:18 -05001231 free(prefix);
Radek Krejci6e4ffbb2015-06-16 10:34:41 +02001232 return NULL;
Radek Krejci54ea8de2015-04-09 18:02:56 +02001233}
1234
Michal Vasko0d343d12015-08-24 14:57:36 +02001235/* logs directly */
Radek Krejcic6704c82015-10-06 11:12:45 +02001236API struct lyxml_elem *
Radek Krejci722b0072016-02-01 17:09:45 +01001237lyxml_parse_mem(struct ly_ctx *ctx, const char *data, int options)
Radek Krejci54ea8de2015-04-09 18:02:56 +02001238{
GalaxyGorillac7777422019-10-07 16:01:23 +02001239 FUN_IN;
1240
Radek Krejci6e4ffbb2015-06-16 10:34:41 +02001241 const char *c = data;
1242 unsigned int len;
Radek Krejci851ea662016-01-08 09:30:53 +01001243 struct lyxml_elem *root, *first = NULL, *next;
Radek Krejci2342cf62016-01-29 16:48:23 +01001244
Radek Krejci19b9b252017-03-17 16:14:09 +01001245 if (!ctx) {
Michal Vasko53b7da02018-02-13 15:28:42 +01001246 LOGARG;
Radek Krejci19b9b252017-03-17 16:14:09 +01001247 return NULL;
1248 }
1249
Radek Krejci120f6242015-12-17 12:32:56 +01001250repeat:
Radek Krejci6e4ffbb2015-06-16 10:34:41 +02001251 /* process document */
Radek Krejcif8ae23e2016-07-26 17:11:17 +02001252 while (1) {
1253 if (!*c) {
1254 /* eof */
Michal Vasko53b7da02018-02-13 15:28:42 +01001255 return first;
Radek Krejcif8ae23e2016-07-26 17:11:17 +02001256 } else if (is_xmlws(*c)) {
Radek Krejci6e4ffbb2015-06-16 10:34:41 +02001257 /* skip whitespaces */
1258 ign_xmlws(c);
Radek Krejcifb783942016-10-06 09:49:33 +02001259 } else if (!strncmp(c, "<?", 2)) {
Radek Krejci6e4ffbb2015-06-16 10:34:41 +02001260 /* XMLDecl or PI - ignore it */
1261 c += 2;
Michal Vasko53b7da02018-02-13 15:28:42 +01001262 if (parse_ignore(ctx, c, "?>", &len)) {
Radek Krejcicf748252017-09-04 11:11:14 +02001263 goto error;
Radek Krejci6e4ffbb2015-06-16 10:34:41 +02001264 }
1265 c += len;
Radek Krejcifb783942016-10-06 09:49:33 +02001266 } else if (!strncmp(c, "<!--", 4)) {
Radek Krejci6e4ffbb2015-06-16 10:34:41 +02001267 /* Comment - ignore it */
1268 c += 2;
Michal Vasko53b7da02018-02-13 15:28:42 +01001269 if (parse_ignore(ctx, c, "-->", &len)) {
Radek Krejcicf748252017-09-04 11:11:14 +02001270 goto error;
Radek Krejci6e4ffbb2015-06-16 10:34:41 +02001271 }
1272 c += len;
Radek Krejcifb783942016-10-06 09:49:33 +02001273 } else if (!strncmp(c, "<!", 2)) {
Radek Krejci6e4ffbb2015-06-16 10:34:41 +02001274 /* DOCTYPE */
1275 /* TODO - standalone ignore counting < and > */
Michal Vasko53b7da02018-02-13 15:28:42 +01001276 LOGERR(ctx, LY_EINVAL, "DOCTYPE not supported in XML documents.");
Radek Krejcicf748252017-09-04 11:11:14 +02001277 goto error;
Radek Krejci6e4ffbb2015-06-16 10:34:41 +02001278 } else if (*c == '<') {
1279 /* element - process it in next loop to strictly follow XML
1280 * format
1281 */
1282 break;
Michal Vaskoc2e80562015-07-27 11:31:41 +02001283 } else {
Michal Vasko53b7da02018-02-13 15:28:42 +01001284 LOGVAL(ctx, LYE_XML_INCHAR, LY_VLOG_NONE, NULL, c);
Radek Krejcicf748252017-09-04 11:11:14 +02001285 goto error;
Radek Krejci6e4ffbb2015-06-16 10:34:41 +02001286 }
1287 }
Radek Krejci02117302015-04-13 16:32:44 +02001288
Radek Krejcie1bacd72017-03-01 13:18:46 +01001289 root = lyxml_parse_elem(ctx, c, &len, NULL, options);
Radek Krejci6e4ffbb2015-06-16 10:34:41 +02001290 if (!root) {
Radek Krejcicf748252017-09-04 11:11:14 +02001291 goto error;
Radek Krejci120f6242015-12-17 12:32:56 +01001292 } else if (!first) {
1293 first = root;
1294 } else {
1295 first->prev->next = root;
1296 root->prev = first->prev;
1297 first->prev = root;
Radek Krejci6e4ffbb2015-06-16 10:34:41 +02001298 }
1299 c += len;
Radek Krejci02117302015-04-13 16:32:44 +02001300
Radek Krejci6e4ffbb2015-06-16 10:34:41 +02001301 /* ignore the rest of document where can be comments, PIs and whitespaces,
1302 * note that we are not detecting syntax errors in these parts
1303 */
1304 ign_xmlws(c);
1305 if (*c) {
Radek Krejci722b0072016-02-01 17:09:45 +01001306 if (options & LYXML_PARSE_MULTIROOT) {
Radek Krejci120f6242015-12-17 12:32:56 +01001307 goto repeat;
1308 } else {
Michal Vasko53b7da02018-02-13 15:28:42 +01001309 LOGWRN(ctx, "There are some not parsed data:\n%s", c);
Radek Krejci120f6242015-12-17 12:32:56 +01001310 }
Radek Krejci6e4ffbb2015-06-16 10:34:41 +02001311 }
Radek Krejci02117302015-04-13 16:32:44 +02001312
Radek Krejci120f6242015-12-17 12:32:56 +01001313 return first;
Radek Krejcicf748252017-09-04 11:11:14 +02001314
1315error:
1316 LY_TREE_FOR_SAFE(first, next, root) {
1317 lyxml_free(ctx, root);
1318 }
Radek Krejcicf748252017-09-04 11:11:14 +02001319 return NULL;
Radek Krejci02117302015-04-13 16:32:44 +02001320}
1321
Radek Krejcic6704c82015-10-06 11:12:45 +02001322API struct lyxml_elem *
Radek Krejci722b0072016-02-01 17:09:45 +01001323lyxml_parse_path(struct ly_ctx *ctx, const char *filename, int options)
Radek Krejci54ea8de2015-04-09 18:02:56 +02001324{
GalaxyGorillac7777422019-10-07 16:01:23 +02001325 FUN_IN;
1326
Radek Krejci6b3d9262015-12-03 13:45:27 +01001327 struct lyxml_elem *elem = NULL;
Radek Krejci0fb11502017-01-31 16:45:42 +01001328 size_t length;
Pavol Vicanb2570c12015-11-12 13:50:20 +01001329 int fd;
1330 char *addr;
1331
Radek Krejci6e4ffbb2015-06-16 10:34:41 +02001332 if (!filename || !ctx) {
Michal Vasko53b7da02018-02-13 15:28:42 +01001333 LOGARG;
Radek Krejci6e4ffbb2015-06-16 10:34:41 +02001334 return NULL;
1335 }
Radek Krejci54ea8de2015-04-09 18:02:56 +02001336
Pavol Vicanb2570c12015-11-12 13:50:20 +01001337 fd = open(filename, O_RDONLY);
1338 if (fd == -1) {
Michal Vasko53b7da02018-02-13 15:28:42 +01001339 LOGERR(ctx, LY_EINVAL,"Opening file \"%s\" failed.", filename);
Pavol Vicanb2570c12015-11-12 13:50:20 +01001340 return NULL;
1341 }
Michal Vasko53b7da02018-02-13 15:28:42 +01001342 if (lyp_mmap(ctx, fd, 0, &length, (void **)&addr)) {
1343 LOGERR(ctx, LY_ESYS, "Mapping file descriptor into memory failed (%s()).", __func__);
Pavol Vicanb2570c12015-11-12 13:50:20 +01001344 goto error;
Radek Krejci10c216a2017-02-01 10:36:00 +01001345 } else if (!addr) {
1346 /* empty XML file */
1347 goto error;
Pavol Vicanb2570c12015-11-12 13:50:20 +01001348 }
Radek Krejci6b3d9262015-12-03 13:45:27 +01001349
Radek Krejci722b0072016-02-01 17:09:45 +01001350 elem = lyxml_parse_mem(ctx, addr, options);
Radek Krejci0fb11502017-01-31 16:45:42 +01001351 lyp_munmap(addr, length);
Radek Krejci30793ab2015-12-03 13:45:45 +01001352 close(fd);
Radek Krejci6b3d9262015-12-03 13:45:27 +01001353
Pavol Vicanb2570c12015-11-12 13:50:20 +01001354 return elem;
1355
1356error:
Radek Krejci6b3d9262015-12-03 13:45:27 +01001357 if (fd != -1) {
1358 close(fd);
1359 }
1360
Radek Krejci6e4ffbb2015-06-16 10:34:41 +02001361 return NULL;
Radek Krejci54ea8de2015-04-09 18:02:56 +02001362}
Radek Krejci02117302015-04-13 16:32:44 +02001363
Michal Vasko5db027d2015-10-09 14:38:50 +02001364int
Radek Krejcieb827b72018-02-23 10:05:02 +01001365lyxml_dump_text(struct lyout *out, const char *text, LYXML_DATA_TYPE type)
Radek Krejcif0023a92015-04-20 20:51:39 +02001366{
Radek Krejci6e4ffbb2015-06-16 10:34:41 +02001367 unsigned int i, n;
Radek Krejcif0023a92015-04-20 20:51:39 +02001368
Michal Vasko5db027d2015-10-09 14:38:50 +02001369 if (!text) {
1370 return 0;
1371 }
1372
Radek Krejci6e4ffbb2015-06-16 10:34:41 +02001373 for (i = n = 0; text[i]; i++) {
1374 switch (text[i]) {
1375 case '&':
Radek Krejci5248f132015-10-09 10:34:25 +02001376 n += ly_print(out, "&amp;");
Radek Krejci6e4ffbb2015-06-16 10:34:41 +02001377 break;
1378 case '<':
Radek Krejci5248f132015-10-09 10:34:25 +02001379 n += ly_print(out, "&lt;");
Radek Krejci6e4ffbb2015-06-16 10:34:41 +02001380 break;
1381 case '>':
1382 /* not needed, just for readability */
Radek Krejci5248f132015-10-09 10:34:25 +02001383 n += ly_print(out, "&gt;");
Radek Krejci6e4ffbb2015-06-16 10:34:41 +02001384 break;
Radek Krejci952a7252016-07-16 20:52:43 +02001385 case '"':
Radek Krejcieb827b72018-02-23 10:05:02 +01001386 if (type == LYXML_DATA_ATTR) {
1387 n += ly_print(out, "&quot;");
1388 break;
1389 }
1390 /* falls through */
Radek Krejci6e4ffbb2015-06-16 10:34:41 +02001391 default:
Radek Krejci5248f132015-10-09 10:34:25 +02001392 ly_write(out, &text[i], 1);
Radek Krejci6e4ffbb2015-06-16 10:34:41 +02001393 n++;
1394 }
1395 }
Radek Krejcif0023a92015-04-20 20:51:39 +02001396
Radek Krejci6e4ffbb2015-06-16 10:34:41 +02001397 return n;
Radek Krejcif0023a92015-04-20 20:51:39 +02001398}
1399
Radek Krejci6e4ffbb2015-06-16 10:34:41 +02001400static int
Michal Vaskob2f1db72016-11-16 13:57:35 +01001401dump_elem(struct lyout *out, const struct lyxml_elem *e, int level, int options, int last_elem)
Radek Krejcif0023a92015-04-20 20:51:39 +02001402{
Radek Krejci6e4ffbb2015-06-16 10:34:41 +02001403 int size = 0;
1404 struct lyxml_attr *a;
1405 struct lyxml_elem *child;
1406 const char *delim, *delim_outer;
1407 int indent;
Radek Krejcif0023a92015-04-20 20:51:39 +02001408
Radek Krejci6e4ffbb2015-06-16 10:34:41 +02001409 if (!e->name) {
1410 /* mixed content */
1411 if (e->content) {
Radek Krejcieb827b72018-02-23 10:05:02 +01001412 return lyxml_dump_text(out, e->content, LYXML_DATA_ELEM);
Radek Krejci6e4ffbb2015-06-16 10:34:41 +02001413 } else {
1414 return 0;
1415 }
1416 }
Radek Krejcif0023a92015-04-20 20:51:39 +02001417
Radek Krejci722b0072016-02-01 17:09:45 +01001418 delim = delim_outer = (options & LYXML_PRINT_FORMAT) ? "\n" : "";
Radek Krejci6e4ffbb2015-06-16 10:34:41 +02001419 indent = 2 * level;
1420 if ((e->flags & LYXML_ELEM_MIXED) || (e->parent && (e->parent->flags & LYXML_ELEM_MIXED))) {
1421 delim = "";
1422 }
1423 if (e->parent && (e->parent->flags & LYXML_ELEM_MIXED)) {
1424 delim_outer = "";
1425 indent = 0;
1426 }
Michal Vaskob2f1db72016-11-16 13:57:35 +01001427 if (last_elem && (options & LYXML_PRINT_NO_LAST_NEWLINE)) {
1428 delim_outer = "";
1429 }
Radek Krejcif0023a92015-04-20 20:51:39 +02001430
Radek Krejci722b0072016-02-01 17:09:45 +01001431 if (!(options & (LYXML_PRINT_OPEN | LYXML_PRINT_CLOSE | LYXML_PRINT_ATTRS)) || (options & LYXML_PRINT_OPEN)) {
Radek Krejcic6704c82015-10-06 11:12:45 +02001432 /* opening tag */
1433 if (e->ns && e->ns->prefix) {
Radek Krejci5248f132015-10-09 10:34:25 +02001434 size += ly_print(out, "%*s<%s:%s", indent, "", e->ns->prefix, e->name);
Radek Krejcic6704c82015-10-06 11:12:45 +02001435 } else {
Radek Krejci5248f132015-10-09 10:34:25 +02001436 size += ly_print(out, "%*s<%s", indent, "", e->name);
Radek Krejcic6704c82015-10-06 11:12:45 +02001437 }
Radek Krejci722b0072016-02-01 17:09:45 +01001438 } else if (options & LYXML_PRINT_CLOSE) {
Radek Krejcic6704c82015-10-06 11:12:45 +02001439 indent = 0;
1440 goto close;
Radek Krejci6e4ffbb2015-06-16 10:34:41 +02001441 }
Radek Krejci674e1f82015-04-21 14:12:19 +02001442
Radek Krejci6e4ffbb2015-06-16 10:34:41 +02001443 /* attributes */
1444 for (a = e->attr; a; a = a->next) {
1445 if (a->type == LYXML_ATTR_NS) {
1446 if (a->name) {
Radek Krejci5248f132015-10-09 10:34:25 +02001447 size += ly_print(out, " xmlns:%s=\"%s\"", a->name, a->value ? a->value : "");
Radek Krejci6e4ffbb2015-06-16 10:34:41 +02001448 } else {
Radek Krejci5248f132015-10-09 10:34:25 +02001449 size += ly_print(out, " xmlns=\"%s\"", a->value ? a->value : "");
Radek Krejci6e4ffbb2015-06-16 10:34:41 +02001450 }
1451 } else if (a->ns && a->ns->prefix) {
Radek Krejci5248f132015-10-09 10:34:25 +02001452 size += ly_print(out, " %s:%s=\"%s\"", a->ns->prefix, a->name, a->value);
Radek Krejci6e4ffbb2015-06-16 10:34:41 +02001453 } else {
Radek Krejci5248f132015-10-09 10:34:25 +02001454 size += ly_print(out, " %s=\"%s\"", a->name, a->value);
Radek Krejci6e4ffbb2015-06-16 10:34:41 +02001455 }
1456 }
Radek Krejci674e1f82015-04-21 14:12:19 +02001457
Radek Krejcic6704c82015-10-06 11:12:45 +02001458 /* apply options */
Radek Krejci722b0072016-02-01 17:09:45 +01001459 if ((options & LYXML_PRINT_CLOSE) && (options & LYXML_PRINT_OPEN)) {
Radek Krejci5248f132015-10-09 10:34:25 +02001460 size += ly_print(out, "/>%s", delim);
Radek Krejcic6704c82015-10-06 11:12:45 +02001461 return size;
Radek Krejci722b0072016-02-01 17:09:45 +01001462 } else if (options & LYXML_PRINT_OPEN) {
Radek Krejci5248f132015-10-09 10:34:25 +02001463 ly_print(out, ">");
Radek Krejcic6704c82015-10-06 11:12:45 +02001464 return ++size;
Radek Krejci722b0072016-02-01 17:09:45 +01001465 } else if (options & LYXML_PRINT_ATTRS) {
Radek Krejcic6704c82015-10-06 11:12:45 +02001466 return size;
1467 }
1468
Michal Vasko3a611612016-04-14 10:12:56 +02001469 if (!e->child && (!e->content || !e->content[0])) {
Radek Krejci5248f132015-10-09 10:34:25 +02001470 size += ly_print(out, "/>%s", delim);
Radek Krejci6e4ffbb2015-06-16 10:34:41 +02001471 return size;
Michal Vasko3a611612016-04-14 10:12:56 +02001472 } else if (e->content && e->content[0]) {
Radek Krejci5248f132015-10-09 10:34:25 +02001473 ly_print(out, ">");
Radek Krejci6e4ffbb2015-06-16 10:34:41 +02001474 size++;
Radek Krejcif0023a92015-04-20 20:51:39 +02001475
Radek Krejcieb827b72018-02-23 10:05:02 +01001476 size += lyxml_dump_text(out, e->content, LYXML_DATA_ELEM);
Radek Krejcif0023a92015-04-20 20:51:39 +02001477
Radek Krejci6e4ffbb2015-06-16 10:34:41 +02001478 if (e->ns && e->ns->prefix) {
Radek Krejci5248f132015-10-09 10:34:25 +02001479 size += ly_print(out, "</%s:%s>%s", e->ns->prefix, e->name, delim);
Radek Krejci6e4ffbb2015-06-16 10:34:41 +02001480 } else {
Radek Krejci5248f132015-10-09 10:34:25 +02001481 size += ly_print(out, "</%s>%s", e->name, delim);
Radek Krejci6e4ffbb2015-06-16 10:34:41 +02001482 }
1483 return size;
1484 } else {
Radek Krejci5248f132015-10-09 10:34:25 +02001485 size += ly_print(out, ">%s", delim);
Radek Krejci6e4ffbb2015-06-16 10:34:41 +02001486 }
Radek Krejci674e1f82015-04-21 14:12:19 +02001487
Radek Krejci6e4ffbb2015-06-16 10:34:41 +02001488 /* go recursively */
1489 LY_TREE_FOR(e->child, child) {
Radek Krejci722b0072016-02-01 17:09:45 +01001490 if (options & LYXML_PRINT_FORMAT) {
Michal Vaskob2f1db72016-11-16 13:57:35 +01001491 size += dump_elem(out, child, level + 1, LYXML_PRINT_FORMAT, 0);
Pavol Vicanbe7eef52015-10-22 14:07:48 +02001492 } else {
Michal Vaskob2f1db72016-11-16 13:57:35 +01001493 size += dump_elem(out, child, level, 0, 0);
Pavol Vicanbe7eef52015-10-22 14:07:48 +02001494 }
Radek Krejci6e4ffbb2015-06-16 10:34:41 +02001495 }
Radek Krejcif0023a92015-04-20 20:51:39 +02001496
Radek Krejcic6704c82015-10-06 11:12:45 +02001497close:
Radek Krejci6e4ffbb2015-06-16 10:34:41 +02001498 /* closing tag */
1499 if (e->ns && e->ns->prefix) {
Radek Krejci5248f132015-10-09 10:34:25 +02001500 size += ly_print(out, "%*s</%s:%s>%s", indent, "", e->ns->prefix, e->name, delim_outer);
Radek Krejci6e4ffbb2015-06-16 10:34:41 +02001501 } else {
Radek Krejci5248f132015-10-09 10:34:25 +02001502 size += ly_print(out, "%*s</%s>%s", indent, "", e->name, delim_outer);
Radek Krejci6e4ffbb2015-06-16 10:34:41 +02001503 }
Radek Krejcif0023a92015-04-20 20:51:39 +02001504
Radek Krejci6e4ffbb2015-06-16 10:34:41 +02001505 return size;
Radek Krejcif0023a92015-04-20 20:51:39 +02001506}
1507
Radek Krejci8c56a5a2015-12-16 15:10:28 +01001508static int
1509dump_siblings(struct lyout *out, const struct lyxml_elem *e, int options)
1510{
Michal Vaskob2f1db72016-11-16 13:57:35 +01001511 const struct lyxml_elem *start, *iter, *next;
Radek Krejci8c56a5a2015-12-16 15:10:28 +01001512 int ret = 0;
1513
1514 if (e->parent) {
1515 start = e->parent->child;
1516 } else {
1517 start = e;
1518 while(start->prev && start->prev->next) {
1519 start = start->prev;
1520 }
1521 }
1522
Michal Vaskob2f1db72016-11-16 13:57:35 +01001523 LY_TREE_FOR_SAFE(start, next, iter) {
1524 ret += dump_elem(out, iter, 0, options, (next ? 0 : 1));
Radek Krejci8c56a5a2015-12-16 15:10:28 +01001525 }
1526
1527 return ret;
1528}
1529
Radek Krejcic6704c82015-10-06 11:12:45 +02001530API int
Radek Krejci722b0072016-02-01 17:09:45 +01001531lyxml_print_file(FILE *stream, const struct lyxml_elem *elem, int options)
Radek Krejcif0023a92015-04-20 20:51:39 +02001532{
GalaxyGorillac7777422019-10-07 16:01:23 +02001533 FUN_IN;
1534
Radek Krejci5248f132015-10-09 10:34:25 +02001535 struct lyout out;
1536
1537 if (!stream || !elem) {
Radek Krejci6e4ffbb2015-06-16 10:34:41 +02001538 return 0;
1539 }
Radek Krejcif0023a92015-04-20 20:51:39 +02001540
Michal Vasko002db142018-07-03 13:52:59 +02001541 memset(&out, 0, sizeof out);
1542
Radek Krejci5248f132015-10-09 10:34:25 +02001543 out.type = LYOUT_STREAM;
1544 out.method.f = stream;
1545
Radek Krejci722b0072016-02-01 17:09:45 +01001546 if (options & LYXML_PRINT_SIBLINGS) {
Radek Krejci8c56a5a2015-12-16 15:10:28 +01001547 return dump_siblings(&out, elem, options);
1548 } else {
Michal Vaskob2f1db72016-11-16 13:57:35 +01001549 return dump_elem(&out, elem, 0, options, 1);
Radek Krejci8c56a5a2015-12-16 15:10:28 +01001550 }
Radek Krejci5248f132015-10-09 10:34:25 +02001551}
1552
1553API int
Radek Krejci722b0072016-02-01 17:09:45 +01001554lyxml_print_fd(int fd, const struct lyxml_elem *elem, int options)
Radek Krejci5248f132015-10-09 10:34:25 +02001555{
GalaxyGorillac7777422019-10-07 16:01:23 +02001556 FUN_IN;
1557
Radek Krejci5248f132015-10-09 10:34:25 +02001558 struct lyout out;
1559
1560 if (fd < 0 || !elem) {
1561 return 0;
1562 }
1563
Michal Vasko002db142018-07-03 13:52:59 +02001564 memset(&out, 0, sizeof out);
1565
Radek Krejci5248f132015-10-09 10:34:25 +02001566 out.type = LYOUT_FD;
1567 out.method.fd = fd;
1568
Radek Krejci722b0072016-02-01 17:09:45 +01001569 if (options & LYXML_PRINT_SIBLINGS) {
Radek Krejci8c56a5a2015-12-16 15:10:28 +01001570 return dump_siblings(&out, elem, options);
1571 } else {
Michal Vaskob2f1db72016-11-16 13:57:35 +01001572 return dump_elem(&out, elem, 0, options, 1);
Radek Krejci8c56a5a2015-12-16 15:10:28 +01001573 }
Radek Krejcif0023a92015-04-20 20:51:39 +02001574}
Radek Krejci6140e4e2015-10-09 15:50:55 +02001575
1576API int
Radek Krejci722b0072016-02-01 17:09:45 +01001577lyxml_print_mem(char **strp, const struct lyxml_elem *elem, int options)
Radek Krejci2fa0fc12015-10-14 18:14:29 +02001578{
GalaxyGorillac7777422019-10-07 16:01:23 +02001579 FUN_IN;
1580
Radek Krejci2fa0fc12015-10-14 18:14:29 +02001581 struct lyout out;
1582 int r;
1583
1584 if (!strp || !elem) {
1585 return 0;
1586 }
1587
Michal Vasko002db142018-07-03 13:52:59 +02001588 memset(&out, 0, sizeof out);
1589
Radek Krejci2fa0fc12015-10-14 18:14:29 +02001590 out.type = LYOUT_MEMORY;
Radek Krejci2fa0fc12015-10-14 18:14:29 +02001591
Radek Krejci722b0072016-02-01 17:09:45 +01001592 if (options & LYXML_PRINT_SIBLINGS) {
Radek Krejci8c56a5a2015-12-16 15:10:28 +01001593 r = dump_siblings(&out, elem, options);
1594 } else {
Michal Vaskob2f1db72016-11-16 13:57:35 +01001595 r = dump_elem(&out, elem, 0, options, 1);
Radek Krejci8c56a5a2015-12-16 15:10:28 +01001596 }
Radek Krejci2fa0fc12015-10-14 18:14:29 +02001597
1598 *strp = out.method.mem.buf;
1599 return r;
1600}
1601
1602API int
Radek Krejci722b0072016-02-01 17:09:45 +01001603lyxml_print_clb(ssize_t (*writeclb)(void *arg, const void *buf, size_t count), void *arg, const struct lyxml_elem *elem, int options)
Radek Krejci6140e4e2015-10-09 15:50:55 +02001604{
GalaxyGorillac7777422019-10-07 16:01:23 +02001605 FUN_IN;
1606
Radek Krejci6140e4e2015-10-09 15:50:55 +02001607 struct lyout out;
1608
1609 if (!writeclb || !elem) {
1610 return 0;
1611 }
1612
Michal Vasko002db142018-07-03 13:52:59 +02001613 memset(&out, 0, sizeof out);
1614
Radek Krejci6140e4e2015-10-09 15:50:55 +02001615 out.type = LYOUT_CALLBACK;
Radek Krejci50929eb2015-10-09 18:14:15 +02001616 out.method.clb.f = writeclb;
1617 out.method.clb.arg = arg;
Radek Krejci6140e4e2015-10-09 15:50:55 +02001618
Radek Krejci722b0072016-02-01 17:09:45 +01001619 if (options & LYXML_PRINT_SIBLINGS) {
Radek Krejci8c56a5a2015-12-16 15:10:28 +01001620 return dump_siblings(&out, elem, options);
1621 } else {
Michal Vaskob2f1db72016-11-16 13:57:35 +01001622 return dump_elem(&out, elem, 0, options, 1);
Radek Krejci8c56a5a2015-12-16 15:10:28 +01001623 }
Radek Krejci6140e4e2015-10-09 15:50:55 +02001624}