blob: 7e4760976548c0f9b3956ec8d1dcfdfc061f51a0 [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 Vasko1b4d4ea2020-11-18 11:32:57 +0100243 if (iter->content && iter->content[0] && copy_ns) {
Michal Vaskoc86327a2020-06-30 11:21:57 +0200244 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 */
Michal Vaskoa690d912020-08-31 15:09:43 +0200870 if (prefix) {
871 LOGVAL(ctx, LYE_XML_INVAL, LY_VLOG_NONE, NULL, "prefix start, \":\" already parsed");
872 goto error;
873 }
aweast069a6c02018-05-30 16:44:18 -0500874 prefix = malloc((c - data + 1) * sizeof *prefix);
875 LY_CHECK_ERR_GOTO(!prefix, LOGMEM(ctx), error);
Michal Vasko62d5a6b2018-01-03 14:31:39 +0100876 memcpy(prefix, data, c - data);
877 prefix[c - data] = '\0';
878 attr->ns = lyxml_get_ns(parent, prefix);
Michal Vasko36b72992020-02-25 12:12:47 +0100879 if (!attr->ns) {
880 /* remember the prefix for later resolution */
881 attr->type = LYXML_ATTR_STD_UNRES;
882 attr->ns = (struct lyxml_ns *)prefix;
883 prefix = NULL;
884 }
Michal Vasko62d5a6b2018-01-03 14:31:39 +0100885 } else if (((*c == 'm') && (xml_flag == 1)) ||
886 ((*c == 'l') && (xml_flag == 2))) {
887 ++xml_flag;
888 } else {
889 xml_flag = 4;
890 }
Radek Krejci6e4ffbb2015-06-16 10:34:41 +0200891 }
892 c += size;
Michal Vasko53b7da02018-02-13 15:28:42 +0100893 uc = lyxml_getutf8(ctx, c, &size);
Radek Krejci6e4ffbb2015-06-16 10:34:41 +0200894 }
Radek Krejci674e1f82015-04-21 14:12:19 +0200895
Radek Krejci6e4ffbb2015-06-16 10:34:41 +0200896 /* store the name */
897 size = c - start;
898 attr->name = lydict_insert(ctx, start, size);
Radek Krejci674e1f82015-04-21 14:12:19 +0200899
900equal:
Radek Krejci6e4ffbb2015-06-16 10:34:41 +0200901 /* check Eq mark that can be surrounded by whitespaces */
902 ign_xmlws(c);
903 if (*c != '=') {
Michal Vasko53b7da02018-02-13 15:28:42 +0100904 LOGVAL(ctx, LYE_XML_INVAL, LY_VLOG_NONE, NULL, "attribute definition, \"=\" expected");
Radek Krejci6e4ffbb2015-06-16 10:34:41 +0200905 goto error;
906 }
907 c++;
908 ign_xmlws(c);
Radek Krejci02117302015-04-13 16:32:44 +0200909
Radek Krejci6e4ffbb2015-06-16 10:34:41 +0200910 /* process value part of the attribute */
911 if (!*c || (*c != '"' && *c != '\'')) {
Michal Vasko53b7da02018-02-13 15:28:42 +0100912 LOGVAL(ctx, LYE_XML_INVAL, LY_VLOG_NONE, NULL, "attribute value, \" or \' expected");
Radek Krejci6e4ffbb2015-06-16 10:34:41 +0200913 goto error;
914 }
915 delim = c;
Michal Vasko53b7da02018-02-13 15:28:42 +0100916 str = parse_text(ctx, ++c, *delim, &size);
917 if (!str && !size) {
Radek Krejci6e4ffbb2015-06-16 10:34:41 +0200918 goto error;
919 }
Michal Vasko53b7da02018-02-13 15:28:42 +0100920 attr->value = lydict_insert_zc(ctx, str);
Radek Krejci02117302015-04-13 16:32:44 +0200921
Radek Krejci6e4ffbb2015-06-16 10:34:41 +0200922 *len = c + size + 1 - data; /* +1 is delimiter size */
Radek Krejci00249f22015-07-07 13:43:28 +0200923
924 /* put attribute into the parent's attributes list */
925 if (parent->attr) {
926 /* go to the end of the list */
927 for (a = parent->attr; a->next; a = a->next);
928 /* and append new attribute */
929 a->next = attr;
930 } else {
931 /* add the first attribute in the list */
932 parent->attr = attr;
933 }
934
aweast069a6c02018-05-30 16:44:18 -0500935 free(prefix);
Radek Krejci6e4ffbb2015-06-16 10:34:41 +0200936 return attr;
Radek Krejci02117302015-04-13 16:32:44 +0200937
938error:
Radek Krejci00249f22015-07-07 13:43:28 +0200939 lyxml_free_attr(ctx, NULL, attr);
aweast069a6c02018-05-30 16:44:18 -0500940 free(prefix);
Radek Krejci6e4ffbb2015-06-16 10:34:41 +0200941 return NULL;
Radek Krejci54ea8de2015-04-09 18:02:56 +0200942}
943
Michal Vasko0d343d12015-08-24 14:57:36 +0200944/* logs directly */
Radek Krejci9a5daea2016-03-02 16:49:40 +0100945struct lyxml_elem *
Michal Vasko298b30e2021-03-08 14:32:58 +0100946lyxml_parse_elem(struct ly_ctx *ctx, const char *data, unsigned int *len, struct lyxml_elem *parent, int options,
947 int bt_count)
Radek Krejci54ea8de2015-04-09 18:02:56 +0200948{
Radek Krejci6e4ffbb2015-06-16 10:34:41 +0200949 const char *c = data, *start, *e;
950 const char *lws; /* leading white space for handling mixed content */
951 int uc;
952 char *str;
aweast069a6c02018-05-30 16:44:18 -0500953 char *prefix = NULL;
Radek Krejci6e4ffbb2015-06-16 10:34:41 +0200954 unsigned int prefix_len = 0;
955 struct lyxml_elem *elem = NULL, *child;
956 struct lyxml_attr *attr;
957 unsigned int size;
958 int nons_flag = 0, closed_flag = 0;
Radek Krejci02117302015-04-13 16:32:44 +0200959
Radek Krejci6e4ffbb2015-06-16 10:34:41 +0200960 *len = 0;
Radek Krejci02117302015-04-13 16:32:44 +0200961
Michal Vasko298b30e2021-03-08 14:32:58 +0100962 if (bt_count > LY_RECURSION_LIMIT) {
963 LOGVAL(ctx, LYE_XML_INVAL, LY_VLOG_NONE, NULL, "Recursion limit %d reached", LY_RECURSION_LIMIT);
964 return NULL;
965 }
966
Radek Krejci6e4ffbb2015-06-16 10:34:41 +0200967 if (*c != '<') {
968 return NULL;
969 }
Radek Krejci02117302015-04-13 16:32:44 +0200970
Radek Krejci6e4ffbb2015-06-16 10:34:41 +0200971 /* locate element name */
972 c++;
973 e = c;
Radek Krejci02117302015-04-13 16:32:44 +0200974
Michal Vasko53b7da02018-02-13 15:28:42 +0100975 uc = lyxml_getutf8(ctx, e, &size);
Radek Krejci6e4ffbb2015-06-16 10:34:41 +0200976 if (!is_xmlnamestartchar(uc)) {
Michal Vasko53b7da02018-02-13 15:28:42 +0100977 LOGVAL(ctx, LYE_XML_INVAL, LY_VLOG_NONE, NULL, "NameStartChar of the element");
Radek Krejci6e4ffbb2015-06-16 10:34:41 +0200978 return NULL;
979 }
980 e += size;
Michal Vasko53b7da02018-02-13 15:28:42 +0100981 uc = lyxml_getutf8(ctx, e, &size);
Radek Krejci6e4ffbb2015-06-16 10:34:41 +0200982 while (is_xmlnamechar(uc)) {
983 if (*e == ':') {
984 if (prefix_len) {
Michal Vasko53b7da02018-02-13 15:28:42 +0100985 LOGVAL(ctx, LYE_XML_INVAL, LY_VLOG_NONE, NULL, "element name, multiple colons found");
Radek Krejci6e4ffbb2015-06-16 10:34:41 +0200986 goto error;
987 }
988 /* element in a namespace */
989 start = e + 1;
Radek Krejci674e1f82015-04-21 14:12:19 +0200990
Radek Krejci6e4ffbb2015-06-16 10:34:41 +0200991 /* look for the prefix in namespaces */
aweast069a6c02018-05-30 16:44:18 -0500992 prefix_len = e - c;
Michal Vasko5f5096b2018-08-17 10:56:48 +0200993 LY_CHECK_ERR_GOTO(prefix, LOGVAL(ctx, LYE_XML_INCHAR, LY_VLOG_NONE, NULL, e), error);
aweast069a6c02018-05-30 16:44:18 -0500994 prefix = malloc((prefix_len + 1) * sizeof *prefix);
995 LY_CHECK_ERR_GOTO(!prefix, LOGMEM(ctx), error);
996 memcpy(prefix, c, prefix_len);
Radek Krejci6e4ffbb2015-06-16 10:34:41 +0200997 prefix[prefix_len] = '\0';
998 c = start;
999 }
1000 e += size;
Michal Vasko53b7da02018-02-13 15:28:42 +01001001 uc = lyxml_getutf8(ctx, e, &size);
Radek Krejci6e4ffbb2015-06-16 10:34:41 +02001002 }
1003 if (!*e) {
Michal Vasko53b7da02018-02-13 15:28:42 +01001004 LOGVAL(ctx, LYE_EOF, LY_VLOG_NONE, NULL);
aweast069a6c02018-05-30 16:44:18 -05001005 free(prefix);
Radek Krejci6e4ffbb2015-06-16 10:34:41 +02001006 return NULL;
1007 }
Radek Krejci02117302015-04-13 16:32:44 +02001008
Radek Krejci6e4ffbb2015-06-16 10:34:41 +02001009 /* allocate element structure */
1010 elem = calloc(1, sizeof *elem);
Michal Vasko64e6cf82018-08-17 10:32:23 +02001011 LY_CHECK_ERR_RETURN(!elem, free(prefix); LOGMEM(ctx), NULL);
Radek Krejcia8d111f2017-05-31 13:57:37 +02001012
Radek Krejci6e4ffbb2015-06-16 10:34:41 +02001013 elem->next = NULL;
1014 elem->prev = elem;
1015 if (parent) {
Michal Vaskof8879c22015-08-21 09:07:36 +02001016 lyxml_add_child(ctx, parent, elem);
Radek Krejci6e4ffbb2015-06-16 10:34:41 +02001017 }
Radek Krejci02117302015-04-13 16:32:44 +02001018
Radek Krejci6e4ffbb2015-06-16 10:34:41 +02001019 /* store the name into the element structure */
1020 elem->name = lydict_insert(ctx, c, e - c);
1021 c = e;
Radek Krejci02117302015-04-13 16:32:44 +02001022
1023process:
Radek Krejci6e4ffbb2015-06-16 10:34:41 +02001024 ign_xmlws(c);
Radek Krejcifb783942016-10-06 09:49:33 +02001025 if (!strncmp("/>", c, 2)) {
Radek Krejci6e4ffbb2015-06-16 10:34:41 +02001026 /* we are done, it was EmptyElemTag */
1027 c += 2;
Michal Vasko44913842016-04-13 14:20:41 +02001028 elem->content = lydict_insert(ctx, "", 0);
Radek Krejci6e4ffbb2015-06-16 10:34:41 +02001029 closed_flag = 1;
1030 } else if (*c == '>') {
1031 /* process element content */
1032 c++;
1033 lws = NULL;
Radek Krejci02117302015-04-13 16:32:44 +02001034
Radek Krejci6e4ffbb2015-06-16 10:34:41 +02001035 while (*c) {
Radek Krejcifb783942016-10-06 09:49:33 +02001036 if (!strncmp(c, "</", 2)) {
Radek Krejci6e4ffbb2015-06-16 10:34:41 +02001037 if (lws && !elem->child) {
1038 /* leading white spaces were actually content */
1039 goto store_content;
1040 }
Radek Krejci02117302015-04-13 16:32:44 +02001041
Radek Krejci6e4ffbb2015-06-16 10:34:41 +02001042 /* Etag */
1043 c += 2;
1044 /* get name and check it */
1045 e = c;
Michal Vasko53b7da02018-02-13 15:28:42 +01001046 uc = lyxml_getutf8(ctx, e, &size);
Radek Krejci6e4ffbb2015-06-16 10:34:41 +02001047 if (!is_xmlnamestartchar(uc)) {
Michal Vasko53b7da02018-02-13 15:28:42 +01001048 LOGVAL(ctx, LYE_XML_INVAL, LY_VLOG_XML, elem, "NameStartChar of the element");
Radek Krejci6e4ffbb2015-06-16 10:34:41 +02001049 goto error;
1050 }
1051 e += size;
Michal Vasko53b7da02018-02-13 15:28:42 +01001052 uc = lyxml_getutf8(ctx, e, &size);
Radek Krejci6e4ffbb2015-06-16 10:34:41 +02001053 while (is_xmlnamechar(uc)) {
1054 if (*e == ':') {
1055 /* element in a namespace */
1056 start = e + 1;
Radek Krejci674e1f82015-04-21 14:12:19 +02001057
Radek Krejci6e4ffbb2015-06-16 10:34:41 +02001058 /* look for the prefix in namespaces */
aweast069a6c02018-05-30 16:44:18 -05001059 if (!prefix || memcmp(prefix, c, e - c)) {
Michal Vasko53b7da02018-02-13 15:28:42 +01001060 LOGVAL(ctx, LYE_SPEC, LY_VLOG_XML, elem,
Michal Vaskoff9336a2016-05-10 10:48:48 +02001061 "Invalid (different namespaces) opening (%s) and closing element tags.", elem->name);
Radek Krejci6e4ffbb2015-06-16 10:34:41 +02001062 goto error;
1063 }
1064 c = start;
1065 }
1066 e += size;
Michal Vasko53b7da02018-02-13 15:28:42 +01001067 uc = lyxml_getutf8(ctx, e, &size);
Radek Krejci6e4ffbb2015-06-16 10:34:41 +02001068 }
1069 if (!*e) {
Michal Vasko53b7da02018-02-13 15:28:42 +01001070 LOGVAL(ctx, LYE_EOF, LY_VLOG_NONE, NULL);
Radek Krejci6e4ffbb2015-06-16 10:34:41 +02001071 goto error;
1072 }
Radek Krejci02117302015-04-13 16:32:44 +02001073
Radek Krejci6e4ffbb2015-06-16 10:34:41 +02001074 /* check that it corresponds to opening tag */
1075 size = e - c;
1076 str = malloc((size + 1) * sizeof *str);
Michal Vasko53b7da02018-02-13 15:28:42 +01001077 LY_CHECK_ERR_GOTO(!str, LOGMEM(ctx), error);
Radek Krejci6e4ffbb2015-06-16 10:34:41 +02001078 memcpy(str, c, e - c);
1079 str[e - c] = '\0';
1080 if (size != strlen(elem->name) || memcmp(str, elem->name, size)) {
Michal Vasko53b7da02018-02-13 15:28:42 +01001081 LOGVAL(ctx, LYE_SPEC, LY_VLOG_XML, elem,
Michal Vaskoff9336a2016-05-10 10:48:48 +02001082 "Invalid (mixed names) opening (%s) and closing (%s) element tags.", elem->name, str);
Radek Krejci6e4ffbb2015-06-16 10:34:41 +02001083 free(str);
1084 goto error;
1085 }
1086 free(str);
1087 c = e;
Radek Krejci02117302015-04-13 16:32:44 +02001088
Radek Krejci6e4ffbb2015-06-16 10:34:41 +02001089 ign_xmlws(c);
1090 if (*c != '>') {
Michal Vasko53b7da02018-02-13 15:28:42 +01001091 LOGVAL(ctx, LYE_SPEC, LY_VLOG_XML, elem, "Data after closing element tag \"%s\".", elem->name);
Radek Krejci6e4ffbb2015-06-16 10:34:41 +02001092 goto error;
1093 }
1094 c++;
Michal Vaskoe00b7892016-04-14 10:12:18 +02001095 if (!(elem->flags & LYXML_ELEM_MIXED) && !elem->content) {
1096 /* there was no content, but we don't want NULL (only if mixed content) */
1097 elem->content = lydict_insert(ctx, "", 0);
1098 }
Radek Krejci6e4ffbb2015-06-16 10:34:41 +02001099 closed_flag = 1;
1100 break;
Radek Krejci02117302015-04-13 16:32:44 +02001101
Radek Krejcifb783942016-10-06 09:49:33 +02001102 } else if (!strncmp(c, "<?", 2)) {
Radek Krejci6e4ffbb2015-06-16 10:34:41 +02001103 if (lws) {
1104 /* leading white spaces were only formatting */
1105 lws = NULL;
1106 }
1107 /* PI - ignore it */
1108 c += 2;
Michal Vasko53b7da02018-02-13 15:28:42 +01001109 if (parse_ignore(ctx, c, "?>", &size)) {
Radek Krejci6e4ffbb2015-06-16 10:34:41 +02001110 goto error;
1111 }
1112 c += size;
Radek Krejcifb783942016-10-06 09:49:33 +02001113 } else if (!strncmp(c, "<!--", 4)) {
Radek Krejci6e4ffbb2015-06-16 10:34:41 +02001114 if (lws) {
1115 /* leading white spaces were only formatting */
1116 lws = NULL;
1117 }
1118 /* Comment - ignore it */
1119 c += 4;
Michal Vasko53b7da02018-02-13 15:28:42 +01001120 if (parse_ignore(ctx, c, "-->", &size)) {
Radek Krejci6e4ffbb2015-06-16 10:34:41 +02001121 goto error;
1122 }
1123 c += size;
Radek Krejcifb783942016-10-06 09:49:33 +02001124 } else if (!strncmp(c, "<![CDATA[", 9)) {
Radek Krejci6e4ffbb2015-06-16 10:34:41 +02001125 /* CDSect */
1126 goto store_content;
1127 } else if (*c == '<') {
1128 if (lws) {
1129 if (elem->flags & LYXML_ELEM_MIXED) {
1130 /* we have a mixed content */
1131 goto store_content;
1132 } else {
1133 /* leading white spaces were only formatting */
1134 lws = NULL;
1135 }
1136 }
1137 if (elem->content) {
1138 /* we have a mixed content */
Radek Krejcie1bacd72017-03-01 13:18:46 +01001139 if (options & LYXML_PARSE_NOMIXEDCONTENT) {
Michal Vasko53b7da02018-02-13 15:28:42 +01001140 LOGVAL(ctx, LYE_XML_INVAL, LY_VLOG_XML, elem, "XML element with mixed content");
Radek Krejcie1bacd72017-03-01 13:18:46 +01001141 goto error;
1142 }
Radek Krejci6e4ffbb2015-06-16 10:34:41 +02001143 child = calloc(1, sizeof *child);
Michal Vasko53b7da02018-02-13 15:28:42 +01001144 LY_CHECK_ERR_GOTO(!child, LOGMEM(ctx), error);
Radek Krejci6e4ffbb2015-06-16 10:34:41 +02001145 child->content = elem->content;
1146 elem->content = NULL;
Michal Vaskof8879c22015-08-21 09:07:36 +02001147 lyxml_add_child(ctx, elem, child);
Radek Krejci6e4ffbb2015-06-16 10:34:41 +02001148 elem->flags |= LYXML_ELEM_MIXED;
1149 }
Michal Vasko298b30e2021-03-08 14:32:58 +01001150 child = lyxml_parse_elem(ctx, c, &size, elem, options, bt_count + 1);
Radek Krejci6e4ffbb2015-06-16 10:34:41 +02001151 if (!child) {
1152 goto error;
1153 }
1154 c += size; /* move after processed child element */
1155 } else if (is_xmlws(*c)) {
1156 lws = c;
Radek Krejci6e4ffbb2015-06-16 10:34:41 +02001157 ign_xmlws(c);
1158 } else {
Radek Krejci02117302015-04-13 16:32:44 +02001159store_content:
Radek Krejci6e4ffbb2015-06-16 10:34:41 +02001160 /* store text content */
1161 if (lws) {
1162 /* process content including the leading white spaces */
1163 c = lws;
Radek Krejci6e4ffbb2015-06-16 10:34:41 +02001164 lws = NULL;
1165 }
Michal Vasko53b7da02018-02-13 15:28:42 +01001166 str = parse_text(ctx, c, '<', &size);
1167 if (!str && !size) {
Radek Krejci6e4ffbb2015-06-16 10:34:41 +02001168 goto error;
1169 }
Michal Vasko53b7da02018-02-13 15:28:42 +01001170 elem->content = lydict_insert_zc(ctx, str);
Radek Krejci6e4ffbb2015-06-16 10:34:41 +02001171 c += size; /* move after processed text content */
Radek Krejci02117302015-04-13 16:32:44 +02001172
Radek Krejci6e4ffbb2015-06-16 10:34:41 +02001173 if (elem->child) {
1174 /* we have a mixed content */
Radek Krejcie1bacd72017-03-01 13:18:46 +01001175 if (options & LYXML_PARSE_NOMIXEDCONTENT) {
Michal Vasko53b7da02018-02-13 15:28:42 +01001176 LOGVAL(ctx, LYE_XML_INVAL, LY_VLOG_XML, elem, "XML element with mixed content");
Radek Krejcie1bacd72017-03-01 13:18:46 +01001177 goto error;
1178 }
Radek Krejci6e4ffbb2015-06-16 10:34:41 +02001179 child = calloc(1, sizeof *child);
Michal Vasko53b7da02018-02-13 15:28:42 +01001180 LY_CHECK_ERR_GOTO(!child, LOGMEM(ctx), error);
Radek Krejci6e4ffbb2015-06-16 10:34:41 +02001181 child->content = elem->content;
1182 elem->content = NULL;
Michal Vaskof8879c22015-08-21 09:07:36 +02001183 lyxml_add_child(ctx, elem, child);
Radek Krejci6e4ffbb2015-06-16 10:34:41 +02001184 elem->flags |= LYXML_ELEM_MIXED;
1185 }
1186 }
1187 }
1188 } else {
1189 /* process attribute */
1190 attr = parse_attr(ctx, c, &size, elem);
1191 if (!attr) {
1192 goto error;
1193 }
Radek Krejci6e4ffbb2015-06-16 10:34:41 +02001194 c += size; /* move after processed attribute */
Radek Krejci02117302015-04-13 16:32:44 +02001195
Radek Krejci6e4ffbb2015-06-16 10:34:41 +02001196 /* check namespace */
1197 if (attr->type == LYXML_ATTR_NS) {
aweast069a6c02018-05-30 16:44:18 -05001198 if ((!prefix || !prefix[0]) && !attr->name) {
Radek Krejci6e4ffbb2015-06-16 10:34:41 +02001199 if (attr->value) {
1200 /* default prefix */
1201 elem->ns = (struct lyxml_ns *)attr;
1202 } else {
1203 /* xmlns="" -> no namespace */
1204 nons_flag = 1;
1205 }
aweast069a6c02018-05-30 16:44:18 -05001206 } else if (prefix && prefix[0] && attr->name && !strncmp(attr->name, prefix, prefix_len + 1)) {
Radek Krejci6e4ffbb2015-06-16 10:34:41 +02001207 /* matching namespace with prefix */
1208 elem->ns = (struct lyxml_ns *)attr;
1209 }
1210 }
Radek Krejci674e1f82015-04-21 14:12:19 +02001211
Radek Krejci6e4ffbb2015-06-16 10:34:41 +02001212 /* go back to finish element processing */
1213 goto process;
1214 }
Radek Krejci02117302015-04-13 16:32:44 +02001215
Radek Krejci6e4ffbb2015-06-16 10:34:41 +02001216 *len = c - data;
Radek Krejci02117302015-04-13 16:32:44 +02001217
Radek Krejci6e4ffbb2015-06-16 10:34:41 +02001218 if (!closed_flag) {
Michal Vasko53b7da02018-02-13 15:28:42 +01001219 LOGVAL(ctx, LYE_XML_MISS, LY_VLOG_XML, elem, "closing element tag", elem->name);
Radek Krejci6e4ffbb2015-06-16 10:34:41 +02001220 goto error;
1221 }
Radek Krejci674e1f82015-04-21 14:12:19 +02001222
Michal Vasko36b72992020-02-25 12:12:47 +01001223 /* resolve all attribute prefixes */
1224 LY_TREE_FOR(elem->attr, attr) {
1225 if (attr->type == LYXML_ATTR_STD_UNRES) {
1226 str = (char *)attr->ns;
1227 attr->ns = lyxml_get_ns(elem, str);
1228 free(str);
1229 attr->type = LYXML_ATTR_STD;
1230 }
1231 }
1232
Radek Krejci78a230a2015-07-07 17:04:40 +02001233 if (!elem->ns && !nons_flag && parent) {
Radek Krejci4476d412015-07-10 15:35:01 +02001234 elem->ns = lyxml_get_ns(parent, prefix_len ? prefix : NULL);
Radek Krejci6e4ffbb2015-06-16 10:34:41 +02001235 }
aweast069a6c02018-05-30 16:44:18 -05001236 free(prefix);
Radek Krejci6e4ffbb2015-06-16 10:34:41 +02001237 return elem;
Radek Krejci02117302015-04-13 16:32:44 +02001238
1239error:
Michal Vasko345da0a2015-12-02 10:35:55 +01001240 lyxml_free(ctx, elem);
aweast069a6c02018-05-30 16:44:18 -05001241 free(prefix);
Radek Krejci6e4ffbb2015-06-16 10:34:41 +02001242 return NULL;
Radek Krejci54ea8de2015-04-09 18:02:56 +02001243}
1244
Michal Vasko0d343d12015-08-24 14:57:36 +02001245/* logs directly */
Radek Krejcic6704c82015-10-06 11:12:45 +02001246API struct lyxml_elem *
Radek Krejci722b0072016-02-01 17:09:45 +01001247lyxml_parse_mem(struct ly_ctx *ctx, const char *data, int options)
Radek Krejci54ea8de2015-04-09 18:02:56 +02001248{
GalaxyGorillac7777422019-10-07 16:01:23 +02001249 FUN_IN;
1250
Radek Krejci6e4ffbb2015-06-16 10:34:41 +02001251 const char *c = data;
1252 unsigned int len;
Radek Krejci851ea662016-01-08 09:30:53 +01001253 struct lyxml_elem *root, *first = NULL, *next;
Radek Krejci2342cf62016-01-29 16:48:23 +01001254
Radek Krejci19b9b252017-03-17 16:14:09 +01001255 if (!ctx) {
Michal Vasko53b7da02018-02-13 15:28:42 +01001256 LOGARG;
Radek Krejci19b9b252017-03-17 16:14:09 +01001257 return NULL;
1258 }
1259
Michal Vasko78c7cbf2021-01-25 17:15:59 +01001260 if (!data) {
1261 /* nothing to parse */
1262 return NULL;
1263 }
1264
Radek Krejci120f6242015-12-17 12:32:56 +01001265repeat:
Radek Krejci6e4ffbb2015-06-16 10:34:41 +02001266 /* process document */
Radek Krejcif8ae23e2016-07-26 17:11:17 +02001267 while (1) {
1268 if (!*c) {
1269 /* eof */
Michal Vasko53b7da02018-02-13 15:28:42 +01001270 return first;
Radek Krejcif8ae23e2016-07-26 17:11:17 +02001271 } else if (is_xmlws(*c)) {
Radek Krejci6e4ffbb2015-06-16 10:34:41 +02001272 /* skip whitespaces */
1273 ign_xmlws(c);
Radek Krejcifb783942016-10-06 09:49:33 +02001274 } else if (!strncmp(c, "<?", 2)) {
Radek Krejci6e4ffbb2015-06-16 10:34:41 +02001275 /* XMLDecl or PI - ignore it */
1276 c += 2;
Michal Vasko53b7da02018-02-13 15:28:42 +01001277 if (parse_ignore(ctx, c, "?>", &len)) {
Radek Krejcicf748252017-09-04 11:11:14 +02001278 goto error;
Radek Krejci6e4ffbb2015-06-16 10:34:41 +02001279 }
1280 c += len;
Radek Krejcifb783942016-10-06 09:49:33 +02001281 } else if (!strncmp(c, "<!--", 4)) {
Radek Krejci6e4ffbb2015-06-16 10:34:41 +02001282 /* Comment - ignore it */
1283 c += 2;
Michal Vasko53b7da02018-02-13 15:28:42 +01001284 if (parse_ignore(ctx, c, "-->", &len)) {
Radek Krejcicf748252017-09-04 11:11:14 +02001285 goto error;
Radek Krejci6e4ffbb2015-06-16 10:34:41 +02001286 }
1287 c += len;
Radek Krejcifb783942016-10-06 09:49:33 +02001288 } else if (!strncmp(c, "<!", 2)) {
Radek Krejci6e4ffbb2015-06-16 10:34:41 +02001289 /* DOCTYPE */
1290 /* TODO - standalone ignore counting < and > */
Michal Vasko53b7da02018-02-13 15:28:42 +01001291 LOGERR(ctx, LY_EINVAL, "DOCTYPE not supported in XML documents.");
Radek Krejcicf748252017-09-04 11:11:14 +02001292 goto error;
Radek Krejci6e4ffbb2015-06-16 10:34:41 +02001293 } else if (*c == '<') {
1294 /* element - process it in next loop to strictly follow XML
1295 * format
1296 */
1297 break;
Michal Vaskoc2e80562015-07-27 11:31:41 +02001298 } else {
Michal Vasko53b7da02018-02-13 15:28:42 +01001299 LOGVAL(ctx, LYE_XML_INCHAR, LY_VLOG_NONE, NULL, c);
Radek Krejcicf748252017-09-04 11:11:14 +02001300 goto error;
Radek Krejci6e4ffbb2015-06-16 10:34:41 +02001301 }
1302 }
Radek Krejci02117302015-04-13 16:32:44 +02001303
Michal Vasko298b30e2021-03-08 14:32:58 +01001304 root = lyxml_parse_elem(ctx, c, &len, NULL, options, 0);
Radek Krejci6e4ffbb2015-06-16 10:34:41 +02001305 if (!root) {
Radek Krejcicf748252017-09-04 11:11:14 +02001306 goto error;
Radek Krejci120f6242015-12-17 12:32:56 +01001307 } else if (!first) {
1308 first = root;
1309 } else {
1310 first->prev->next = root;
1311 root->prev = first->prev;
1312 first->prev = root;
Radek Krejci6e4ffbb2015-06-16 10:34:41 +02001313 }
1314 c += len;
Radek Krejci02117302015-04-13 16:32:44 +02001315
Radek Krejci6e4ffbb2015-06-16 10:34:41 +02001316 /* ignore the rest of document where can be comments, PIs and whitespaces,
1317 * note that we are not detecting syntax errors in these parts
1318 */
1319 ign_xmlws(c);
1320 if (*c) {
Radek Krejci722b0072016-02-01 17:09:45 +01001321 if (options & LYXML_PARSE_MULTIROOT) {
Radek Krejci120f6242015-12-17 12:32:56 +01001322 goto repeat;
1323 } else {
Michal Vasko53b7da02018-02-13 15:28:42 +01001324 LOGWRN(ctx, "There are some not parsed data:\n%s", c);
Radek Krejci120f6242015-12-17 12:32:56 +01001325 }
Radek Krejci6e4ffbb2015-06-16 10:34:41 +02001326 }
Radek Krejci02117302015-04-13 16:32:44 +02001327
Radek Krejci120f6242015-12-17 12:32:56 +01001328 return first;
Radek Krejcicf748252017-09-04 11:11:14 +02001329
1330error:
1331 LY_TREE_FOR_SAFE(first, next, root) {
1332 lyxml_free(ctx, root);
1333 }
Radek Krejcicf748252017-09-04 11:11:14 +02001334 return NULL;
Radek Krejci02117302015-04-13 16:32:44 +02001335}
1336
Radek Krejcic6704c82015-10-06 11:12:45 +02001337API struct lyxml_elem *
Radek Krejci722b0072016-02-01 17:09:45 +01001338lyxml_parse_path(struct ly_ctx *ctx, const char *filename, int options)
Radek Krejci54ea8de2015-04-09 18:02:56 +02001339{
GalaxyGorillac7777422019-10-07 16:01:23 +02001340 FUN_IN;
1341
Radek Krejci6b3d9262015-12-03 13:45:27 +01001342 struct lyxml_elem *elem = NULL;
Radek Krejci0fb11502017-01-31 16:45:42 +01001343 size_t length;
Pavol Vicanb2570c12015-11-12 13:50:20 +01001344 int fd;
1345 char *addr;
1346
Radek Krejci6e4ffbb2015-06-16 10:34:41 +02001347 if (!filename || !ctx) {
Michal Vasko53b7da02018-02-13 15:28:42 +01001348 LOGARG;
Radek Krejci6e4ffbb2015-06-16 10:34:41 +02001349 return NULL;
1350 }
Radek Krejci54ea8de2015-04-09 18:02:56 +02001351
Pavol Vicanb2570c12015-11-12 13:50:20 +01001352 fd = open(filename, O_RDONLY);
1353 if (fd == -1) {
Michal Vasko53b7da02018-02-13 15:28:42 +01001354 LOGERR(ctx, LY_EINVAL,"Opening file \"%s\" failed.", filename);
Pavol Vicanb2570c12015-11-12 13:50:20 +01001355 return NULL;
1356 }
Michal Vasko53b7da02018-02-13 15:28:42 +01001357 if (lyp_mmap(ctx, fd, 0, &length, (void **)&addr)) {
1358 LOGERR(ctx, LY_ESYS, "Mapping file descriptor into memory failed (%s()).", __func__);
Pavol Vicanb2570c12015-11-12 13:50:20 +01001359 goto error;
Radek Krejci10c216a2017-02-01 10:36:00 +01001360 } else if (!addr) {
1361 /* empty XML file */
1362 goto error;
Pavol Vicanb2570c12015-11-12 13:50:20 +01001363 }
Radek Krejci6b3d9262015-12-03 13:45:27 +01001364
Radek Krejci722b0072016-02-01 17:09:45 +01001365 elem = lyxml_parse_mem(ctx, addr, options);
Radek Krejci0fb11502017-01-31 16:45:42 +01001366 lyp_munmap(addr, length);
Radek Krejci30793ab2015-12-03 13:45:45 +01001367 close(fd);
Radek Krejci6b3d9262015-12-03 13:45:27 +01001368
Pavol Vicanb2570c12015-11-12 13:50:20 +01001369 return elem;
1370
1371error:
Radek Krejci6b3d9262015-12-03 13:45:27 +01001372 if (fd != -1) {
1373 close(fd);
1374 }
1375
Radek Krejci6e4ffbb2015-06-16 10:34:41 +02001376 return NULL;
Radek Krejci54ea8de2015-04-09 18:02:56 +02001377}
Radek Krejci02117302015-04-13 16:32:44 +02001378
Michal Vasko5db027d2015-10-09 14:38:50 +02001379int
Radek Krejcieb827b72018-02-23 10:05:02 +01001380lyxml_dump_text(struct lyout *out, const char *text, LYXML_DATA_TYPE type)
Radek Krejcif0023a92015-04-20 20:51:39 +02001381{
Radek Krejci6e4ffbb2015-06-16 10:34:41 +02001382 unsigned int i, n;
Radek Krejcif0023a92015-04-20 20:51:39 +02001383
Michal Vasko5db027d2015-10-09 14:38:50 +02001384 if (!text) {
1385 return 0;
1386 }
1387
Radek Krejci6e4ffbb2015-06-16 10:34:41 +02001388 for (i = n = 0; text[i]; i++) {
1389 switch (text[i]) {
1390 case '&':
Radek Krejci5248f132015-10-09 10:34:25 +02001391 n += ly_print(out, "&amp;");
Radek Krejci6e4ffbb2015-06-16 10:34:41 +02001392 break;
1393 case '<':
Radek Krejci5248f132015-10-09 10:34:25 +02001394 n += ly_print(out, "&lt;");
Radek Krejci6e4ffbb2015-06-16 10:34:41 +02001395 break;
1396 case '>':
1397 /* not needed, just for readability */
Radek Krejci5248f132015-10-09 10:34:25 +02001398 n += ly_print(out, "&gt;");
Radek Krejci6e4ffbb2015-06-16 10:34:41 +02001399 break;
Radek Krejci952a7252016-07-16 20:52:43 +02001400 case '"':
Radek Krejcieb827b72018-02-23 10:05:02 +01001401 if (type == LYXML_DATA_ATTR) {
1402 n += ly_print(out, "&quot;");
1403 break;
1404 }
1405 /* falls through */
Radek Krejci6e4ffbb2015-06-16 10:34:41 +02001406 default:
Radek Krejci5248f132015-10-09 10:34:25 +02001407 ly_write(out, &text[i], 1);
Radek Krejci6e4ffbb2015-06-16 10:34:41 +02001408 n++;
1409 }
1410 }
Radek Krejcif0023a92015-04-20 20:51:39 +02001411
Radek Krejci6e4ffbb2015-06-16 10:34:41 +02001412 return n;
Radek Krejcif0023a92015-04-20 20:51:39 +02001413}
1414
Radek Krejci6e4ffbb2015-06-16 10:34:41 +02001415static int
Michal Vaskob2f1db72016-11-16 13:57:35 +01001416dump_elem(struct lyout *out, const struct lyxml_elem *e, int level, int options, int last_elem)
Radek Krejcif0023a92015-04-20 20:51:39 +02001417{
Radek Krejci6e4ffbb2015-06-16 10:34:41 +02001418 int size = 0;
1419 struct lyxml_attr *a;
1420 struct lyxml_elem *child;
1421 const char *delim, *delim_outer;
1422 int indent;
Radek Krejcif0023a92015-04-20 20:51:39 +02001423
Radek Krejci6e4ffbb2015-06-16 10:34:41 +02001424 if (!e->name) {
1425 /* mixed content */
1426 if (e->content) {
Radek Krejcieb827b72018-02-23 10:05:02 +01001427 return lyxml_dump_text(out, e->content, LYXML_DATA_ELEM);
Radek Krejci6e4ffbb2015-06-16 10:34:41 +02001428 } else {
1429 return 0;
1430 }
1431 }
Radek Krejcif0023a92015-04-20 20:51:39 +02001432
Radek Krejci722b0072016-02-01 17:09:45 +01001433 delim = delim_outer = (options & LYXML_PRINT_FORMAT) ? "\n" : "";
Radek Krejci6e4ffbb2015-06-16 10:34:41 +02001434 indent = 2 * level;
1435 if ((e->flags & LYXML_ELEM_MIXED) || (e->parent && (e->parent->flags & LYXML_ELEM_MIXED))) {
1436 delim = "";
1437 }
1438 if (e->parent && (e->parent->flags & LYXML_ELEM_MIXED)) {
1439 delim_outer = "";
1440 indent = 0;
1441 }
Michal Vaskob2f1db72016-11-16 13:57:35 +01001442 if (last_elem && (options & LYXML_PRINT_NO_LAST_NEWLINE)) {
1443 delim_outer = "";
1444 }
Radek Krejcif0023a92015-04-20 20:51:39 +02001445
Radek Krejci722b0072016-02-01 17:09:45 +01001446 if (!(options & (LYXML_PRINT_OPEN | LYXML_PRINT_CLOSE | LYXML_PRINT_ATTRS)) || (options & LYXML_PRINT_OPEN)) {
Radek Krejcic6704c82015-10-06 11:12:45 +02001447 /* opening tag */
1448 if (e->ns && e->ns->prefix) {
Radek Krejci5248f132015-10-09 10:34:25 +02001449 size += ly_print(out, "%*s<%s:%s", indent, "", e->ns->prefix, e->name);
Radek Krejcic6704c82015-10-06 11:12:45 +02001450 } else {
Radek Krejci5248f132015-10-09 10:34:25 +02001451 size += ly_print(out, "%*s<%s", indent, "", e->name);
Radek Krejcic6704c82015-10-06 11:12:45 +02001452 }
Radek Krejci722b0072016-02-01 17:09:45 +01001453 } else if (options & LYXML_PRINT_CLOSE) {
Radek Krejcic6704c82015-10-06 11:12:45 +02001454 indent = 0;
1455 goto close;
Radek Krejci6e4ffbb2015-06-16 10:34:41 +02001456 }
Radek Krejci674e1f82015-04-21 14:12:19 +02001457
Radek Krejci6e4ffbb2015-06-16 10:34:41 +02001458 /* attributes */
1459 for (a = e->attr; a; a = a->next) {
1460 if (a->type == LYXML_ATTR_NS) {
1461 if (a->name) {
oldermae80b74e2020-09-22 19:46:55 +08001462 size += ly_print(out, " xmlns:%s=\"", a->name);
Radek Krejci6e4ffbb2015-06-16 10:34:41 +02001463 } else {
oldermae80b74e2020-09-22 19:46:55 +08001464 size += ly_print(out, " xmlns=\"");
Radek Krejci6e4ffbb2015-06-16 10:34:41 +02001465 }
1466 } else if (a->ns && a->ns->prefix) {
oldermae80b74e2020-09-22 19:46:55 +08001467 size += ly_print(out, " %s:%s=\"", a->ns->prefix, a->name);
Radek Krejci6e4ffbb2015-06-16 10:34:41 +02001468 } else {
oldermae80b74e2020-09-22 19:46:55 +08001469 size += ly_print(out, " %s=\"", a->name);
Radek Krejci6e4ffbb2015-06-16 10:34:41 +02001470 }
oldermae80b74e2020-09-22 19:46:55 +08001471
1472 if (a->value) {
1473 size += lyxml_dump_text(out, a->value, LYXML_DATA_ATTR);
1474 } else {
1475 size += ly_print(out, "&quot;&quot;");
1476 }
1477 size += ly_print(out, "\"");
Radek Krejci6e4ffbb2015-06-16 10:34:41 +02001478 }
Radek Krejci674e1f82015-04-21 14:12:19 +02001479
Radek Krejcic6704c82015-10-06 11:12:45 +02001480 /* apply options */
Radek Krejci722b0072016-02-01 17:09:45 +01001481 if ((options & LYXML_PRINT_CLOSE) && (options & LYXML_PRINT_OPEN)) {
Radek Krejci5248f132015-10-09 10:34:25 +02001482 size += ly_print(out, "/>%s", delim);
Radek Krejcic6704c82015-10-06 11:12:45 +02001483 return size;
Radek Krejci722b0072016-02-01 17:09:45 +01001484 } else if (options & LYXML_PRINT_OPEN) {
Radek Krejci5248f132015-10-09 10:34:25 +02001485 ly_print(out, ">");
Radek Krejcic6704c82015-10-06 11:12:45 +02001486 return ++size;
Radek Krejci722b0072016-02-01 17:09:45 +01001487 } else if (options & LYXML_PRINT_ATTRS) {
Radek Krejcic6704c82015-10-06 11:12:45 +02001488 return size;
1489 }
1490
Michal Vasko3a611612016-04-14 10:12:56 +02001491 if (!e->child && (!e->content || !e->content[0])) {
Radek Krejci5248f132015-10-09 10:34:25 +02001492 size += ly_print(out, "/>%s", delim);
Radek Krejci6e4ffbb2015-06-16 10:34:41 +02001493 return size;
Michal Vasko3a611612016-04-14 10:12:56 +02001494 } else if (e->content && e->content[0]) {
Radek Krejci5248f132015-10-09 10:34:25 +02001495 ly_print(out, ">");
Radek Krejci6e4ffbb2015-06-16 10:34:41 +02001496 size++;
Radek Krejcif0023a92015-04-20 20:51:39 +02001497
Radek Krejcieb827b72018-02-23 10:05:02 +01001498 size += lyxml_dump_text(out, e->content, LYXML_DATA_ELEM);
Radek Krejcif0023a92015-04-20 20:51:39 +02001499
Radek Krejci6e4ffbb2015-06-16 10:34:41 +02001500 if (e->ns && e->ns->prefix) {
Radek Krejci5248f132015-10-09 10:34:25 +02001501 size += ly_print(out, "</%s:%s>%s", e->ns->prefix, e->name, delim);
Radek Krejci6e4ffbb2015-06-16 10:34:41 +02001502 } else {
Radek Krejci5248f132015-10-09 10:34:25 +02001503 size += ly_print(out, "</%s>%s", e->name, delim);
Radek Krejci6e4ffbb2015-06-16 10:34:41 +02001504 }
1505 return size;
1506 } else {
Radek Krejci5248f132015-10-09 10:34:25 +02001507 size += ly_print(out, ">%s", delim);
Radek Krejci6e4ffbb2015-06-16 10:34:41 +02001508 }
Radek Krejci674e1f82015-04-21 14:12:19 +02001509
Radek Krejci6e4ffbb2015-06-16 10:34:41 +02001510 /* go recursively */
1511 LY_TREE_FOR(e->child, child) {
Radek Krejci722b0072016-02-01 17:09:45 +01001512 if (options & LYXML_PRINT_FORMAT) {
Michal Vaskob2f1db72016-11-16 13:57:35 +01001513 size += dump_elem(out, child, level + 1, LYXML_PRINT_FORMAT, 0);
Pavol Vicanbe7eef52015-10-22 14:07:48 +02001514 } else {
Michal Vaskob2f1db72016-11-16 13:57:35 +01001515 size += dump_elem(out, child, level, 0, 0);
Pavol Vicanbe7eef52015-10-22 14:07:48 +02001516 }
Radek Krejci6e4ffbb2015-06-16 10:34:41 +02001517 }
Radek Krejcif0023a92015-04-20 20:51:39 +02001518
Radek Krejcic6704c82015-10-06 11:12:45 +02001519close:
Radek Krejci6e4ffbb2015-06-16 10:34:41 +02001520 /* closing tag */
1521 if (e->ns && e->ns->prefix) {
Radek Krejci5248f132015-10-09 10:34:25 +02001522 size += ly_print(out, "%*s</%s:%s>%s", indent, "", e->ns->prefix, e->name, delim_outer);
Radek Krejci6e4ffbb2015-06-16 10:34:41 +02001523 } else {
Radek Krejci5248f132015-10-09 10:34:25 +02001524 size += ly_print(out, "%*s</%s>%s", indent, "", e->name, delim_outer);
Radek Krejci6e4ffbb2015-06-16 10:34:41 +02001525 }
Radek Krejcif0023a92015-04-20 20:51:39 +02001526
Radek Krejci6e4ffbb2015-06-16 10:34:41 +02001527 return size;
Radek Krejcif0023a92015-04-20 20:51:39 +02001528}
1529
Radek Krejci8c56a5a2015-12-16 15:10:28 +01001530static int
1531dump_siblings(struct lyout *out, const struct lyxml_elem *e, int options)
1532{
Michal Vaskob2f1db72016-11-16 13:57:35 +01001533 const struct lyxml_elem *start, *iter, *next;
Radek Krejci8c56a5a2015-12-16 15:10:28 +01001534 int ret = 0;
1535
1536 if (e->parent) {
1537 start = e->parent->child;
1538 } else {
1539 start = e;
1540 while(start->prev && start->prev->next) {
1541 start = start->prev;
1542 }
1543 }
1544
Michal Vaskob2f1db72016-11-16 13:57:35 +01001545 LY_TREE_FOR_SAFE(start, next, iter) {
1546 ret += dump_elem(out, iter, 0, options, (next ? 0 : 1));
Radek Krejci8c56a5a2015-12-16 15:10:28 +01001547 }
1548
1549 return ret;
1550}
1551
Radek Krejcic6704c82015-10-06 11:12:45 +02001552API int
Radek Krejci722b0072016-02-01 17:09:45 +01001553lyxml_print_file(FILE *stream, const struct lyxml_elem *elem, int options)
Radek Krejcif0023a92015-04-20 20:51:39 +02001554{
GalaxyGorillac7777422019-10-07 16:01:23 +02001555 FUN_IN;
1556
Radek Krejci5248f132015-10-09 10:34:25 +02001557 struct lyout out;
1558
1559 if (!stream || !elem) {
Radek Krejci6e4ffbb2015-06-16 10:34:41 +02001560 return 0;
1561 }
Radek Krejcif0023a92015-04-20 20:51:39 +02001562
Michal Vasko002db142018-07-03 13:52:59 +02001563 memset(&out, 0, sizeof out);
1564
Radek Krejci5248f132015-10-09 10:34:25 +02001565 out.type = LYOUT_STREAM;
1566 out.method.f = stream;
1567
Radek Krejci722b0072016-02-01 17:09:45 +01001568 if (options & LYXML_PRINT_SIBLINGS) {
Radek Krejci8c56a5a2015-12-16 15:10:28 +01001569 return dump_siblings(&out, elem, options);
1570 } else {
Michal Vaskob2f1db72016-11-16 13:57:35 +01001571 return dump_elem(&out, elem, 0, options, 1);
Radek Krejci8c56a5a2015-12-16 15:10:28 +01001572 }
Radek Krejci5248f132015-10-09 10:34:25 +02001573}
1574
1575API int
Radek Krejci722b0072016-02-01 17:09:45 +01001576lyxml_print_fd(int fd, const struct lyxml_elem *elem, int options)
Radek Krejci5248f132015-10-09 10:34:25 +02001577{
GalaxyGorillac7777422019-10-07 16:01:23 +02001578 FUN_IN;
1579
Radek Krejci5248f132015-10-09 10:34:25 +02001580 struct lyout out;
1581
1582 if (fd < 0 || !elem) {
1583 return 0;
1584 }
1585
Michal Vasko002db142018-07-03 13:52:59 +02001586 memset(&out, 0, sizeof out);
1587
Radek Krejci5248f132015-10-09 10:34:25 +02001588 out.type = LYOUT_FD;
1589 out.method.fd = fd;
1590
Radek Krejci722b0072016-02-01 17:09:45 +01001591 if (options & LYXML_PRINT_SIBLINGS) {
Radek Krejci8c56a5a2015-12-16 15:10:28 +01001592 return dump_siblings(&out, elem, options);
1593 } else {
Michal Vaskob2f1db72016-11-16 13:57:35 +01001594 return dump_elem(&out, elem, 0, options, 1);
Radek Krejci8c56a5a2015-12-16 15:10:28 +01001595 }
Radek Krejcif0023a92015-04-20 20:51:39 +02001596}
Radek Krejci6140e4e2015-10-09 15:50:55 +02001597
1598API int
Radek Krejci722b0072016-02-01 17:09:45 +01001599lyxml_print_mem(char **strp, const struct lyxml_elem *elem, int options)
Radek Krejci2fa0fc12015-10-14 18:14:29 +02001600{
GalaxyGorillac7777422019-10-07 16:01:23 +02001601 FUN_IN;
1602
Radek Krejci2fa0fc12015-10-14 18:14:29 +02001603 struct lyout out;
1604 int r;
1605
1606 if (!strp || !elem) {
1607 return 0;
1608 }
1609
Michal Vasko002db142018-07-03 13:52:59 +02001610 memset(&out, 0, sizeof out);
1611
Radek Krejci2fa0fc12015-10-14 18:14:29 +02001612 out.type = LYOUT_MEMORY;
Radek Krejci2fa0fc12015-10-14 18:14:29 +02001613
Radek Krejci722b0072016-02-01 17:09:45 +01001614 if (options & LYXML_PRINT_SIBLINGS) {
Radek Krejci8c56a5a2015-12-16 15:10:28 +01001615 r = dump_siblings(&out, elem, options);
1616 } else {
Michal Vaskob2f1db72016-11-16 13:57:35 +01001617 r = dump_elem(&out, elem, 0, options, 1);
Radek Krejci8c56a5a2015-12-16 15:10:28 +01001618 }
Radek Krejci2fa0fc12015-10-14 18:14:29 +02001619
1620 *strp = out.method.mem.buf;
1621 return r;
1622}
1623
1624API int
Radek Krejci722b0072016-02-01 17:09:45 +01001625lyxml_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 +02001626{
GalaxyGorillac7777422019-10-07 16:01:23 +02001627 FUN_IN;
1628
Radek Krejci6140e4e2015-10-09 15:50:55 +02001629 struct lyout out;
1630
1631 if (!writeclb || !elem) {
1632 return 0;
1633 }
1634
Michal Vasko002db142018-07-03 13:52:59 +02001635 memset(&out, 0, sizeof out);
1636
Radek Krejci6140e4e2015-10-09 15:50:55 +02001637 out.type = LYOUT_CALLBACK;
Radek Krejci50929eb2015-10-09 18:14:15 +02001638 out.method.clb.f = writeclb;
1639 out.method.clb.arg = arg;
Radek Krejci6140e4e2015-10-09 15:50:55 +02001640
Radek Krejci722b0072016-02-01 17:09:45 +01001641 if (options & LYXML_PRINT_SIBLINGS) {
Radek Krejci8c56a5a2015-12-16 15:10:28 +01001642 return dump_siblings(&out, elem, options);
1643 } else {
Michal Vaskob2f1db72016-11-16 13:57:35 +01001644 return dump_elem(&out, elem, 0, options, 1);
Radek Krejci8c56a5a2015-12-16 15:10:28 +01001645 }
Radek Krejci6140e4e2015-10-09 15:50:55 +02001646}