blob: 805f5a6eb7d128a28bb4d4c0c90b229a2f314f68 [file] [log] [blame]
David Sedlákf824ad52018-10-14 23:58:15 +02001/**
2 * @file parser_yin.c
3 * @author David Sedlák <xsedla1d@stud.fit.vutbr.cz>
David Sedlák3b4db242018-10-19 16:11:01 +02004 * @brief YIN parser.
5 *
David Sedlákb1ce3f82019-06-05 14:37:26 +02006 * Copyright (c) 2015 - 2019 CESNET, z.s.p.o.
David Sedlák3b4db242018-10-19 16:11:01 +02007 *
8 * This source code is licensed under BSD 3-Clause License (the "License").
9 * You may not use this file except in compliance with the License.
10 * You may obtain a copy of the License at
11 *
12 * https://opensource.org/licenses/BSD-3-Clause
David Sedlákf824ad52018-10-14 23:58:15 +020013 */
David Sedlákecf5eb82019-06-03 14:12:44 +020014#include "common.h"
15
David Sedlák3ffbc522019-07-02 17:49:28 +020016#include <assert.h>
David Sedlák3b4db242018-10-19 16:11:01 +020017#include <stdio.h>
18#include <stdlib.h>
19#include <unistd.h>
David Sedlák872c7b42018-10-26 13:15:20 +020020#include <string.h>
David Sedlákd6e56892019-07-01 15:40:24 +020021#include <stdbool.h>
David Sedlák5545f5d2019-07-11 11:55:16 +020022#include <errno.h>
David Sedlákf75d55e2019-07-12 16:52:50 +020023#include <ctype.h>
David Sedlákf824ad52018-10-14 23:58:15 +020024
David Sedlákf824ad52018-10-14 23:58:15 +020025#include "context.h"
David Sedlákecf5eb82019-06-03 14:12:44 +020026#include "dict.h"
David Sedlák3b4db242018-10-19 16:11:01 +020027#include "xml.h"
David Sedlákecf5eb82019-06-03 14:12:44 +020028#include "tree.h"
29#include "tree_schema.h"
David Sedlák3b4db242018-10-19 16:11:01 +020030#include "tree_schema_internal.h"
David Sedlákecf5eb82019-06-03 14:12:44 +020031#include "parser_yin.h"
David Sedlák00250342019-06-21 14:19:39 +020032
David Sedlák2b214ac2019-06-06 16:11:03 +020033/**
34 * @brief check if given string is URI of yin namespace.
35 * @param ns Namespace URI to check.
36 *
37 * @return true if ns equals YIN_NS_URI false otherwise.
38 */
39#define IS_YIN_NS(ns) (strcmp(ns, YIN_NS_URI) == 0)
40
David Sedláke1a30302019-07-10 13:49:38 +020041static LY_ERR
42yin_parse_config(struct yin_parser_ctx *ctx, struct yin_arg_record *attrs, const char **data, uint16_t *flags,
43 struct lysp_ext_instance **exts);
44
David Sedlákf6251182019-06-06 10:22:13 +020045const char *const yin_attr_list[] = {
46 [YIN_ARG_NAME] = "name",
47 [YIN_ARG_TARGET_NODE] = "target-node",
48 [YIN_ARG_MODULE] = "module",
49 [YIN_ARG_VALUE] = "value",
50 [YIN_ARG_TEXT] = "text",
51 [YIN_ARG_CONDITION] = "condition",
52 [YIN_ARG_URI] = "uri",
53 [YIN_ARG_DATE] = "date",
54 [YIN_ARG_TAG] = "tag",
David Sedlákf6251182019-06-06 10:22:13 +020055};
56
David Sedlák1bccdfa2019-06-17 15:55:27 +020057enum yang_keyword
David Sedlákc1771b12019-07-10 15:55:46 +020058yin_match_keyword(struct yin_parser_ctx *ctx, const char *name, size_t name_len,
59 const char *prefix, size_t prefix_len, enum yang_keyword parrent)
David Sedlák1bccdfa2019-06-17 15:55:27 +020060{
David Sedlák8f7a1172019-06-20 14:42:18 +020061 const char *start = NULL;
62 enum yang_keyword kw = YANG_NONE;
63 const struct lyxml_ns *ns = NULL;
64
65 if (!name || name_len == 0) {
David Sedlák1bccdfa2019-06-17 15:55:27 +020066 return YANG_NONE;
67 }
68
David Sedlákda8ffa32019-07-08 14:17:10 +020069 ns = lyxml_ns_get(&ctx->xml_ctx, prefix, prefix_len);
David Sedlák8f7a1172019-06-20 14:42:18 +020070 if (ns) {
71 if (!IS_YIN_NS(ns->uri)) {
72 return YANG_CUSTOM;
73 }
74 } else {
75 /* elements without namespace are automatically unknown */
76 return YANG_NONE;
77 }
David Sedlák1bccdfa2019-06-17 15:55:27 +020078
David Sedlák8f7a1172019-06-20 14:42:18 +020079 start = name;
80 kw = lysp_match_kw(NULL, &name);
81
82 if (name - start == (long int)name_len) {
David Sedlákc1771b12019-07-10 15:55:46 +020083 /* this is done because of collision in yang statement value and yang argument mapped to yin element value */
84 if (kw == YANG_VALUE && parrent == YANG_ERROR_MESSAGE) {
85 return YIN_VALUE;
86 }
David Sedlák1bccdfa2019-06-17 15:55:27 +020087 return kw;
88 } else {
David Sedlák3ffbc522019-07-02 17:49:28 +020089 if (strncmp(start, "text", name_len) == 0) {
90 return YIN_TEXT;
91 } else if (strncmp(start, "value", name_len) == 0) {
92 return YIN_VALUE;
93 } else {
94 return YANG_NONE;
95 }
David Sedlák1bccdfa2019-06-17 15:55:27 +020096 }
97}
98
David Sedlák872c7b42018-10-26 13:15:20 +020099enum YIN_ARGUMENT
David Sedlák060b00e2019-06-19 11:12:06 +0200100yin_match_argument_name(const char *name, size_t len)
David Sedlák3b4db242018-10-19 16:11:01 +0200101{
David Sedláka7406952019-04-05 10:33:07 +0200102 enum YIN_ARGUMENT arg = YIN_ARG_UNKNOWN;
David Sedlák872c7b42018-10-26 13:15:20 +0200103 size_t already_read = 0;
David Sedlák7ff55a92019-06-17 11:11:41 +0200104 LY_CHECK_RET(len == 0, YIN_ARG_NONE);
David Sedlák3b4db242018-10-19 16:11:01 +0200105
David Sedlák94de2aa2019-02-15 12:42:11 +0100106#define IF_ARG(STR, LEN, STMT) if (!strncmp((name) + already_read, STR, LEN)) {already_read+=LEN;arg=STMT;}
107#define IF_ARG_PREFIX(STR, LEN) if (!strncmp((name) + already_read, STR, LEN)) {already_read+=LEN;
David Sedlákc10e7902018-12-17 02:17:59 +0100108#define IF_ARG_PREFIX_END }
109
David Sedlák1c8b2702019-02-22 11:03:02 +0100110 switch (*name) {
David Sedlák94de2aa2019-02-15 12:42:11 +0100111 case 'c':
112 already_read += 1;
113 IF_ARG("ondition", 8, YIN_ARG_CONDITION);
David Sedlák3b4db242018-10-19 16:11:01 +0200114 break;
David Sedlák872c7b42018-10-26 13:15:20 +0200115
David Sedlák94de2aa2019-02-15 12:42:11 +0100116 case 'd':
117 already_read += 1;
118 IF_ARG("ate", 3, YIN_ARG_DATE);
David Sedlák3b4db242018-10-19 16:11:01 +0200119 break;
David Sedlák872c7b42018-10-26 13:15:20 +0200120
David Sedlák94de2aa2019-02-15 12:42:11 +0100121 case 'm':
122 already_read += 1;
123 IF_ARG("odule", 5, YIN_ARG_MODULE);
David Sedlák872c7b42018-10-26 13:15:20 +0200124 break;
125
David Sedlák94de2aa2019-02-15 12:42:11 +0100126 case 'n':
127 already_read += 1;
128 IF_ARG("ame", 3, YIN_ARG_NAME);
David Sedlák872c7b42018-10-26 13:15:20 +0200129 break;
130
David Sedlák94de2aa2019-02-15 12:42:11 +0100131 case 't':
132 already_read += 1;
133 IF_ARG_PREFIX("a", 1)
134 IF_ARG("g", 1, YIN_ARG_TAG)
135 else IF_ARG("rget-node", 9, YIN_ARG_TARGET_NODE)
136 IF_ARG_PREFIX_END
137 else IF_ARG("ext", 3, YIN_ARG_TEXT)
David Sedlák3b4db242018-10-19 16:11:01 +0200138 break;
David Sedlák872c7b42018-10-26 13:15:20 +0200139
David Sedlák94de2aa2019-02-15 12:42:11 +0100140 case 'u':
141 already_read += 1;
142 IF_ARG("ri", 2, YIN_ARG_URI)
David Sedlák3b4db242018-10-19 16:11:01 +0200143 break;
David Sedlák872c7b42018-10-26 13:15:20 +0200144
David Sedlák94de2aa2019-02-15 12:42:11 +0100145 case 'v':
146 already_read += 1;
147 IF_ARG("alue", 4, YIN_ARG_VALUE);
David Sedlák3b4db242018-10-19 16:11:01 +0200148 break;
149 }
150
David Sedlákc10e7902018-12-17 02:17:59 +0100151 /* whole argument must be matched */
David Sedlák872c7b42018-10-26 13:15:20 +0200152 if (already_read != len) {
David Sedláka7406952019-04-05 10:33:07 +0200153 arg = YIN_ARG_UNKNOWN;
David Sedlák872c7b42018-10-26 13:15:20 +0200154 }
155
David Sedlák18730132019-03-15 15:51:34 +0100156#undef IF_ARG
157#undef IF_ARG_PREFIX
158#undef IF_ARG_PREFIX_END
159
David Sedlák872c7b42018-10-26 13:15:20 +0200160 return arg;
David Sedlák3b4db242018-10-19 16:11:01 +0200161}
162
David Sedlákb4e44562019-07-04 15:42:12 +0200163/**
164 * @brief free argument record, content loaded from lyxml_get_string() can be
165 * dynamically allocated in some cases so it must be also freed.
166 */
David Sedlákda8ffa32019-07-08 14:17:10 +0200167static void free_arg_rec(struct yin_parser_ctx *ctx, struct yin_arg_record *record) {
168 (void)ctx; /* unused */
David Sedlákd2d676a2019-07-22 11:28:19 +0200169 if (record && record->dynamic_content) {
David Sedlák00250342019-06-21 14:19:39 +0200170 free(record->content);
171 }
172}
173
David Sedlák8f7a1172019-06-20 14:42:18 +0200174LY_ERR
David Sedlákda8ffa32019-07-08 14:17:10 +0200175yin_load_attributes(struct yin_parser_ctx *ctx, const char **data, struct yin_arg_record **attrs)
David Sedláka7406952019-04-05 10:33:07 +0200176{
177 LY_ERR ret = LY_SUCCESS;
David Sedlák8f7a1172019-06-20 14:42:18 +0200178 struct yin_arg_record *argument_record = NULL;
David Sedlák555c7202019-07-04 12:14:12 +0200179 struct sized_string prefix, name;
David Sedláka7406952019-04-05 10:33:07 +0200180
David Sedlák555c7202019-07-04 12:14:12 +0200181 /* load all attributes */
David Sedlákda8ffa32019-07-08 14:17:10 +0200182 while (ctx->xml_ctx.status == LYXML_ATTRIBUTE) {
183 ret = lyxml_get_attribute(&ctx->xml_ctx, data, &prefix.value, &prefix.len, &name.value, &name.len);
David Sedlák00250342019-06-21 14:19:39 +0200184 LY_CHECK_GOTO(ret != LY_SUCCESS, cleanup);
David Sedláka7406952019-04-05 10:33:07 +0200185
David Sedlákda8ffa32019-07-08 14:17:10 +0200186 if (ctx->xml_ctx.status == LYXML_ATTR_CONTENT) {
187 LY_ARRAY_NEW_GOTO(ctx->xml_ctx.ctx, *attrs, argument_record, ret, cleanup);
David Sedlák555c7202019-07-04 12:14:12 +0200188 argument_record->name = name.value;
189 argument_record->name_len = name.len;
190 argument_record->prefix = prefix.value;
191 argument_record->prefix_len = prefix.len;
David Sedlákda8ffa32019-07-08 14:17:10 +0200192 ret = lyxml_get_string(&ctx->xml_ctx, data, &argument_record->content, &argument_record->content_len,
David Sedlák57715b12019-06-17 13:05:22 +0200193 &argument_record->content, &argument_record->content_len, &argument_record->dynamic_content);
David Sedlák00250342019-06-21 14:19:39 +0200194 LY_CHECK_GOTO(ret != LY_SUCCESS, cleanup);
David Sedlák7ff55a92019-06-17 11:11:41 +0200195 }
196 }
197
David Sedlák8f7a1172019-06-20 14:42:18 +0200198cleanup:
199 if (ret != LY_SUCCESS) {
David Sedlákda8ffa32019-07-08 14:17:10 +0200200 FREE_ARRAY(ctx, *attrs, free_arg_rec);
David Sedlákb4e44562019-07-04 15:42:12 +0200201 *attrs = NULL;
David Sedlák8f7a1172019-06-20 14:42:18 +0200202 }
203 return ret;
204}
205
David Sedlák4a650532019-07-10 11:55:18 +0200206LY_ERR
207yin_validate_value(struct yin_parser_ctx *ctx, enum yang_arg val_type, char *val, size_t len)
208{
209 int prefix = 0;
210 unsigned int c;
211 size_t utf8_char_len;
212 size_t already_read = 0;
213 while (already_read < len) {
214 LY_CHECK_ERR_RET(ly_getutf8((const char **)&val, &c, &utf8_char_len),
215 LOGVAL_PARSER((struct lys_parser_ctx *)ctx, LY_VCODE_INCHAR, (val)[-utf8_char_len]), LY_EVALID);
216 already_read += utf8_char_len;
217 LY_CHECK_ERR_RET(already_read > len, LOGINT(ctx->xml_ctx.ctx), LY_EINT);
218
219 switch (val_type) {
220 case Y_IDENTIF_ARG:
221 LY_CHECK_RET(lysp_check_identifierchar((struct lys_parser_ctx *)ctx, c, !already_read, NULL));
222 break;
223 case Y_PREF_IDENTIF_ARG:
224 LY_CHECK_RET(lysp_check_identifierchar((struct lys_parser_ctx *)ctx, c, !already_read, &prefix));
225 break;
226 case Y_STR_ARG:
227 case Y_MAYBE_STR_ARG:
228 LY_CHECK_RET(lysp_check_stringchar((struct lys_parser_ctx *)ctx, c));
229 break;
230 }
231 }
232
233 return LY_SUCCESS;
234}
235
David Sedlákb4e44562019-07-04 15:42:12 +0200236/**
237 * @brief Parse yin argument.
238 *
David Sedlákda8ffa32019-07-08 14:17:10 +0200239 * @param[in,out] ctx Yin parser context for logging and to store current state.
David Sedlákbba38e52019-07-09 15:20:01 +0200240 * @param[in] attrs ([Sized array](@ref sizedarrays)) of attributes.
David Sedlákb4e44562019-07-04 15:42:12 +0200241 * @param[in,out] data Data to read from.
David Sedlák4a650532019-07-10 11:55:18 +0200242 * @param[in] arg_type Type of argument that is expected in parsed element (use YIN_ARG_NONE for elements without
243 * special argument).
David Sedlákb4e44562019-07-04 15:42:12 +0200244 * @param[out] arg_val Where value of argument should be stored. Can be NULL if arg_type is specified as YIN_ARG_NONE.
David Sedlák292763b2019-07-09 11:10:53 +0200245 * @param[in] val_type Type of expected value of attribute.
David Sedlákb4e44562019-07-04 15:42:12 +0200246 * @param[in] current_element Identification of current element, used for logging.
247 *
248 * @return LY_ERR values.
249 */
250static LY_ERR
David Sedlák1f90d252019-07-10 17:09:32 +0200251yin_parse_attribute(struct yin_parser_ctx *ctx, struct yin_arg_record *attrs, enum YIN_ARGUMENT arg_type,
David Sedlák292763b2019-07-09 11:10:53 +0200252 const char **arg_val, enum yang_arg val_type, enum yang_keyword current_element)
David Sedlák8f7a1172019-06-20 14:42:18 +0200253{
David Sedlák8f7a1172019-06-20 14:42:18 +0200254 enum YIN_ARGUMENT arg = YIN_ARG_UNKNOWN;
255 struct yin_arg_record *iter = NULL;
David Sedlák619db942019-07-03 14:47:30 +0200256 bool found = false;
David Sedlák8f7a1172019-06-20 14:42:18 +0200257
David Sedlák1bccdfa2019-06-17 15:55:27 +0200258 /* validation of attributes */
David Sedlák1f90d252019-07-10 17:09:32 +0200259 LY_ARRAY_FOR(attrs, struct yin_arg_record, iter) {
David Sedlák00250342019-06-21 14:19:39 +0200260 /* yin arguments represented as attributes have no namespace, which in this case means no prefix */
261 if (!iter->prefix) {
David Sedlák060b00e2019-06-19 11:12:06 +0200262 arg = yin_match_argument_name(iter->name, iter->name_len);
David Sedlák7ff55a92019-06-17 11:11:41 +0200263 if (arg == YIN_ARG_NONE) {
David Sedlák2b214ac2019-06-06 16:11:03 +0200264 continue;
David Sedlák7ff55a92019-06-17 11:11:41 +0200265 } else if (arg == arg_type) {
David Sedlák292763b2019-07-09 11:10:53 +0200266 LY_CHECK_ERR_RET(found, LOGVAL_PARSER((struct lys_parser_ctx *)ctx, LYVE_SYNTAX_YIN, "Duplicit definition of %s attribute in %s element",
267 yin_attr2str(arg), ly_stmt2str(current_element)), LY_EVALID);
David Sedlák619db942019-07-03 14:47:30 +0200268 found = true;
David Sedlák4a650532019-07-10 11:55:18 +0200269 LY_CHECK_RET(yin_validate_value(ctx, val_type, iter->content, iter->content_len));
David Sedlák57715b12019-06-17 13:05:22 +0200270 if (iter->dynamic_content) {
David Sedlákda8ffa32019-07-08 14:17:10 +0200271 *arg_val = lydict_insert_zc(ctx->xml_ctx.ctx, iter->content);
David Sedlák619db942019-07-03 14:47:30 +0200272 LY_CHECK_RET(!(*arg_val), LY_EMEM);
David Sedlák00250342019-06-21 14:19:39 +0200273 /* string is no longer supposed to be freed when the sized array is freed */
274 iter->dynamic_content = 0;
David Sedlák57715b12019-06-17 13:05:22 +0200275 } else {
David Sedlák99295322019-07-17 11:34:18 +0200276 if (iter->content_len == 0) {
277 *arg_val = lydict_insert(ctx->xml_ctx.ctx, "", 0);
278 } else {
279 *arg_val = lydict_insert(ctx->xml_ctx.ctx, iter->content, iter->content_len);
280 LY_CHECK_RET(!(*arg_val), LY_EMEM);
281 }
David Sedlák57715b12019-06-17 13:05:22 +0200282 }
David Sedlák2b214ac2019-06-06 16:11:03 +0200283 } else {
David Sedlákda8ffa32019-07-08 14:17:10 +0200284 LOGVAL_PARSER((struct lys_parser_ctx *)ctx, LYVE_SYNTAX_YIN, "Unexpected attribute \"%.*s\" of %s element.", iter->name_len, iter->name, ly_stmt2str(current_element));
David Sedlák619db942019-07-03 14:47:30 +0200285 return LY_EVALID;
David Sedláka7406952019-04-05 10:33:07 +0200286 }
287 }
288 }
289
David Sedlák292763b2019-07-09 11:10:53 +0200290 /* anything else than Y_MAYBE_STR_ARG is mandatory */
291 if (val_type != Y_MAYBE_STR_ARG && !found) {
David Sedlák9c40a922019-07-08 17:04:43 +0200292 LOGVAL_PARSER((struct lys_parser_ctx *)ctx, LYVE_SYNTAX_YIN, "Missing mandatory attribute %s of %s element.", yin_attr2str(arg_type), ly_stmt2str(current_element));
David Sedlák619db942019-07-03 14:47:30 +0200293 return LY_EVALID;
294 }
295
296 return LY_SUCCESS;
David Sedláka7406952019-04-05 10:33:07 +0200297}
298
David Sedlákd6e56892019-07-01 15:40:24 +0200299/**
David Sedlákda8ffa32019-07-08 14:17:10 +0200300 * @brief Get record with given type. Array must be sorted in ascending order by array[n].type.
David Sedlákd6e56892019-07-01 15:40:24 +0200301 *
302 * @param[in] type Type of wanted record.
303 * @param[in] array_size Size of array.
304 * @param[in] array Searched array.
305 *
306 * @return Pointer to desired record on success, NULL if element is not in the array.
307 */
David Sedlákb4e44562019-07-04 15:42:12 +0200308static struct yin_subelement *
David Sedlákb0faad82019-07-04 14:28:59 +0200309get_record(enum yang_keyword type, signed char array_size, struct yin_subelement *array)
David Sedlákd6e56892019-07-01 15:40:24 +0200310{
David Sedlákb0faad82019-07-04 14:28:59 +0200311 signed char left = 0, right = array_size - 1, middle;
312
313 while (left <= right) {
314 middle = left + (right - left) / 2;
315
316 if (array[middle].type == type) {
317 return &array[middle];
318 }
319
320 if (array[middle].type < type) {
321 left = middle + 1;
322 } else {
323 right = middle - 1;
David Sedlákd6e56892019-07-01 15:40:24 +0200324 }
325 }
326
327 return NULL;
328}
329
David Sedlákbba38e52019-07-09 15:20:01 +0200330/**
331 * @brief Helper function to check mandatory constraint of subelement.
332 *
333 * @param[in,out] ctx Yin parser context for logging and to store current state.
334 * @param[in] subelem_info Array of information about subelements.
335 * @param[in] subelem_info_size Size of subelem_info array.
336 * @param[in] current_element Identification of element that is currently being parsed, used for logging.
337 *
338 * @return LY_ERR values.
339 */
340static LY_ERR
David Sedlákda8ffa32019-07-08 14:17:10 +0200341yin_check_subelem_mandatory_constraint(struct yin_parser_ctx *ctx, struct yin_subelement *subelem_info,
David Sedlákb0faad82019-07-04 14:28:59 +0200342 signed char subelem_info_size, enum yang_keyword current_element)
David Sedlák21f87cd2019-07-03 16:53:23 +0200343{
David Sedlákb0faad82019-07-04 14:28:59 +0200344 for (signed char i = 0; i < subelem_info_size; ++i) {
David Sedlák5545f5d2019-07-11 11:55:16 +0200345 /* if there is element that is mandatory and isn't parsed log error and return LY_EVALID */
David Sedlák21f87cd2019-07-03 16:53:23 +0200346 if (subelem_info[i].flags & YIN_SUBELEM_MANDATORY && !(subelem_info[i].flags & YIN_SUBELEM_PARSED)) {
David Sedlákda8ffa32019-07-08 14:17:10 +0200347 LOGVAL_PARSER((struct lys_parser_ctx *)ctx, LYVE_SYNTAX_YIN, "Missing mandatory subelement %s of %s element.",
David Sedlák555c7202019-07-04 12:14:12 +0200348 ly_stmt2str(subelem_info[i].type), ly_stmt2str(current_element));
David Sedlák21f87cd2019-07-03 16:53:23 +0200349 return LY_EVALID;
350 }
351 }
352
353 return LY_SUCCESS;
354}
355
David Sedlákbba38e52019-07-09 15:20:01 +0200356/**
357 * @brief Helper function to check "first" constraint of subelement.
358 *
359 * @param[in,out] ctx Yin parser context for logging and to store current state.
360 * @param[in] subelem_info Array of information about subelements.
361 * @param[in] subelem_info_size Size of subelem_info array.
362 * @param[in] current_element Identification of element that is currently being parsed, used for logging.
363 * @param[in] exp_first Record in subelem_info array that is expected to be defined as first subelement.
364 *
365 * @return LY_ERR values.
366 */
367static LY_ERR
David Sedlákda8ffa32019-07-08 14:17:10 +0200368yin_check_subelem_first_constraint(struct yin_parser_ctx *ctx, struct yin_subelement *subelem_info,
David Sedláke1a30302019-07-10 13:49:38 +0200369 signed char subelem_info_size, enum yang_keyword current_element,
370 struct yin_subelement *exp_first)
David Sedlák21f87cd2019-07-03 16:53:23 +0200371{
David Sedlákb0faad82019-07-04 14:28:59 +0200372 for (signed char i = 0; i < subelem_info_size; ++i) {
David Sedlák21f87cd2019-07-03 16:53:23 +0200373 if (subelem_info[i].flags & YIN_SUBELEM_PARSED) {
David Sedlákda8ffa32019-07-08 14:17:10 +0200374 LOGVAL_PARSER((struct lys_parser_ctx *)ctx, LYVE_SYNTAX_YIN, "Subelement %s of %s element must be defined as first subelement.",
David Sedlák555c7202019-07-04 12:14:12 +0200375 ly_stmt2str(exp_first->type), ly_stmt2str(current_element));
David Sedlák21f87cd2019-07-03 16:53:23 +0200376 return LY_EVALID;
377 }
378 }
379
380 return LY_SUCCESS;
381}
382
David Sedlákbba38e52019-07-09 15:20:01 +0200383/**
384 * @brief Helper function to check if array of information about subelements is in ascending order.
385 *
386 * @param[in] subelem_info Array of information about subelements.
387 * @param[in] subelem_info_size Size of subelem_info array.
388 *
389 * @return True iff subelem_info array is in ascending order, False otherwise.
390 */
David Sedlák5545f5d2019-07-11 11:55:16 +0200391#ifndef NDEBUG
David Sedlákbba38e52019-07-09 15:20:01 +0200392static bool
David Sedlákb0faad82019-07-04 14:28:59 +0200393is_ordered(struct yin_subelement *subelem_info, signed char subelem_info_size)
394{
David Sedlák292763b2019-07-09 11:10:53 +0200395 enum yang_keyword current = YANG_NONE; /* 0 (minimal value) */
David Sedlákb0faad82019-07-04 14:28:59 +0200396
397 for (signed char i = 0; i < subelem_info_size; ++i) {
398 if (subelem_info[i].type <= current) {
399 return false;
400 }
401 current = subelem_info[i].type;
402 }
403
404 return true;
405}
David Sedlák5545f5d2019-07-11 11:55:16 +0200406#endif
David Sedlákb0faad82019-07-04 14:28:59 +0200407
David Sedlákd6e56892019-07-01 15:40:24 +0200408/**
David Sedlákb4e44562019-07-04 15:42:12 +0200409 * @brief Parse simple element without any special constraints and argument mapped to yin attribute,
410 * for example prefix or namespace element.
David Sedlákd6e56892019-07-01 15:40:24 +0200411 *
David Sedlákda8ffa32019-07-08 14:17:10 +0200412 * @param[in,out] ctx Yin parser context for logging and to store current state.
David Sedlákbba38e52019-07-09 15:20:01 +0200413 * @param[in] attrs [Sized array](@ref sizedarrays) of attributes of current element.
David Sedlákd6e56892019-07-01 15:40:24 +0200414 * @param[in,out] data Data to read from, always moved to currently handled character.
David Sedlákb4e44562019-07-04 15:42:12 +0200415 * @param[in] kw Type of current element.
416 * @param[out] value Where value of attribute should be stored.
417 * @param[in] arg_type Expected type of attribute.
David Sedlák292763b2019-07-09 11:10:53 +0200418 * @param[in] arg_val_type Type of expected value of attribute.
David Sedlákda8ffa32019-07-08 14:17:10 +0200419 * @param[in,out] exts Extension instance to add to.
David Sedlákb4e44562019-07-04 15:42:12 +0200420 *
David Sedlákd6e56892019-07-01 15:40:24 +0200421 * @return LY_ERR values.
422 */
David Sedlákb4e44562019-07-04 15:42:12 +0200423static LY_ERR
David Sedlákda8ffa32019-07-08 14:17:10 +0200424yin_parse_simple_element(struct yin_parser_ctx *ctx, struct yin_arg_record *attrs, const char **data, enum yang_keyword kw,
David Sedlák292763b2019-07-09 11:10:53 +0200425 const char **value, enum YIN_ARGUMENT arg_type, enum yang_arg arg_val_type, struct lysp_ext_instance **exts)
David Sedlákb4e44562019-07-04 15:42:12 +0200426{
David Sedlák1f90d252019-07-10 17:09:32 +0200427 LY_CHECK_RET(yin_parse_attribute(ctx, attrs, arg_type, value, arg_val_type, kw));
David Sedlák968ac342019-07-11 15:17:59 +0200428 struct yin_subelement subelems[1] = {
429 {YANG_CUSTOM, NULL, 0}
430 };
David Sedlákb4e44562019-07-04 15:42:12 +0200431
David Sedlákda8ffa32019-07-08 14:17:10 +0200432 return yin_parse_content(ctx, subelems, 1, data, kw, NULL, exts);
David Sedlákb4e44562019-07-04 15:42:12 +0200433}
434
435/**
David Sedlákd3983112019-07-12 11:20:56 +0200436 * @brief Parse pattern element.
437 *
438 * @param[in,out] ctx Yin parser context for logging and to store current state.
439 * @param[in] attrs [Sized array](@ref sizedarrays) of attributes of current element.
440 * @param[in,out] data Data to read from, always moved to currently handled character.
441 * @param[in,out] patterns Restrictions to add to.
442 *
443 * @return LY_ERR values.
444 */
445static LY_ERR
446yin_parse_pattern(struct yin_parser_ctx *ctx, struct yin_arg_record *attrs, const char **data,
447 struct lysp_type *type)
448{
449 const char *real_value = NULL;
450 char *saved_value = NULL;
451 struct lysp_restr *restr;
452
453 LY_ARRAY_NEW_RET(ctx->xml_ctx.ctx, type->patterns, restr, LY_EMEM);
454 LY_CHECK_RET(yin_parse_attribute(ctx, attrs, YIN_ARG_VALUE, &real_value, Y_STR_ARG, YANG_PATTERN));
455 size_t len = strlen(real_value);
456
457 saved_value = malloc(len + 2);
458 LY_CHECK_ERR_RET(!saved_value, LOGMEM(ctx->xml_ctx.ctx), LY_EMEM);
459 memmove(saved_value + 1, real_value, len);
460 FREE_STRING(ctx->xml_ctx.ctx, real_value);
461 saved_value[0] = 0x06;
462 saved_value[len + 1] = '\0';
463 restr->arg = lydict_insert_zc(ctx->xml_ctx.ctx, saved_value);
464 LY_CHECK_ERR_RET(!restr->arg, LOGMEM(ctx->xml_ctx.ctx), LY_EMEM);
465 type->flags |= LYS_SET_PATTERN;
466
467 struct yin_subelement subelems[6] = {
468 {YANG_DESCRIPTION, &restr->dsc, YIN_SUBELEM_UNIQUE},
469 {YANG_ERROR_APP_TAG, &restr->eapptag, YIN_SUBELEM_UNIQUE},
470 {YANG_ERROR_MESSAGE, &restr->emsg, YIN_SUBELEM_UNIQUE},
471 {YANG_MODIFIER, &restr->arg, YIN_SUBELEM_UNIQUE},
472 {YANG_REFERENCE, &restr->ref, YIN_SUBELEM_UNIQUE},
473 {YANG_CUSTOM, NULL, 0}
474 };
475 return yin_parse_content(ctx, subelems, 6, data, YANG_PATTERN, NULL, &restr->exts);
476}
477
David Sedlákf75d55e2019-07-12 16:52:50 +0200478static LY_ERR
479yin_parse_fracdigits(struct yin_parser_ctx *ctx, struct yin_arg_record *attrs, const char **data,
480 struct lysp_type *type)
481{
482 const char *temp_val = NULL;
483 char *ptr;
484 unsigned long int num;
485
486 LY_CHECK_RET(yin_parse_attribute(ctx, attrs, YIN_ARG_VALUE, &temp_val, Y_STR_ARG, YANG_FRACTION_DIGITS));
487
488 if (temp_val[0] == '\0' || (temp_val[0] == '0') || !isdigit(temp_val[0])) {
489 LOGVAL_PARSER((struct lys_parser_ctx *)ctx, LY_VCODE_INVAL, strlen(temp_val), temp_val, "fraction-digits");
490 FREE_STRING(ctx->xml_ctx.ctx, temp_val);
491 return LY_EVALID;
492 }
493
494 errno = 0;
495 num = strtoul(temp_val, &ptr, 10);
496 if (*ptr != '\0') {
497 LOGVAL_PARSER((struct lys_parser_ctx *)ctx, LY_VCODE_INVAL, strlen(temp_val), temp_val, "fraction-digits");
498 FREE_STRING(ctx->xml_ctx.ctx, temp_val);
499 return LY_EVALID;
500 }
501 if ((errno == ERANGE) || (num > 18)) {
502 LOGVAL_PARSER((struct lys_parser_ctx *)ctx, LY_VCODE_INVAL, strlen(temp_val), temp_val, "fraction-digits");
503 FREE_STRING(ctx->xml_ctx.ctx, temp_val);
504 return LY_EVALID;
505 }
David Sedlák2ab5d8e2019-07-16 11:19:41 +0200506 FREE_STRING(ctx->xml_ctx.ctx, temp_val);
David Sedlákf75d55e2019-07-12 16:52:50 +0200507 type->fraction_digits = num;
508 type->flags |= LYS_SET_FRDIGITS;
509 struct yin_subelement subelems[1] = {
510 {YANG_CUSTOM, &index, 0}
511 };
512 return yin_parse_content(ctx, subelems, 1, data, YANG_FRACTION_DIGITS, NULL, &type->exts);
513}
514
David Sedlák07869a52019-07-12 14:28:19 +0200515/**
516 * @brief Parse enum or bit element.
517 *
518 * @param[in,out] ctx YIN parser context for logging and to store current state.
519 * @param[in] attrs [Sized array](@ref sizedarrays) of attributes of current element.
520 * @param[in,out] data Data to read from, always moved to currently handled character.
521 * @param[in] enum_kw Identification of actual keyword, can be set to YANG_BIT or YANG_ENUM.
522 * @param[in,out] enums Enums or bits to add to.
523 *
524 * @return LY_ERR values.
525 */
David Sedlákca36c422019-07-12 12:47:55 +0200526static LY_ERR
David Sedlák07869a52019-07-12 14:28:19 +0200527yin_parse_enum_bit(struct yin_parser_ctx *ctx, struct yin_arg_record *attrs, const char **data,
528 enum yang_keyword enum_kw, struct lysp_type *type)
David Sedlákca36c422019-07-12 12:47:55 +0200529{
David Sedlák07869a52019-07-12 14:28:19 +0200530 assert(enum_kw == YANG_BIT || enum_kw == YANG_ENUM);
531 struct lysp_type_enum *en;
David Sedlák1e696782019-07-17 15:06:07 +0200532 struct lysp_type_enum **enums;
533
534 if (enum_kw == YANG_BIT) {
535 enums = &type->bits;
536 } else {
537 enums = &type->enums;
538 }
539
540 LY_ARRAY_NEW_RET(ctx->xml_ctx.ctx, *enums, en, LY_EMEM);
David Sedlák07869a52019-07-12 14:28:19 +0200541 type->flags |= (enum_kw == YANG_ENUM) ? LYS_SET_ENUM : LYS_SET_BIT;
David Sedlák1e696782019-07-17 15:06:07 +0200542 LY_CHECK_RET(yin_parse_attribute(ctx, attrs, YIN_ARG_NAME, &en->name, Y_IDENTIF_ARG, enum_kw));
David Sedlák07869a52019-07-12 14:28:19 +0200543 if (enum_kw == YANG_ENUM) {
544 LY_CHECK_RET(lysp_check_enum_name((struct lys_parser_ctx *)ctx, en->name, strlen(en->name)));
David Sedlákb9b892c2019-07-12 14:44:02 +0200545 YANG_CHECK_NONEMPTY((struct lys_parser_ctx *)ctx, strlen(en->name), "enum");
David Sedlák07869a52019-07-12 14:28:19 +0200546 }
David Sedlák1e696782019-07-17 15:06:07 +0200547 CHECK_UNIQUENESS((struct lys_parser_ctx *)ctx, *enums, name, ly_stmt2str(enum_kw), en->name);
David Sedlákca36c422019-07-12 12:47:55 +0200548
549 struct yin_subelement subelems[6] = {
David Sedlák07869a52019-07-12 14:28:19 +0200550 {YANG_DESCRIPTION, &en->dsc, YIN_SUBELEM_UNIQUE},
551 {YANG_IF_FEATURE, &en->iffeatures, 0},
David Sedlák07869a52019-07-12 14:28:19 +0200552 {YANG_REFERENCE, &en->ref, YIN_SUBELEM_UNIQUE},
553 {YANG_STATUS, &en->flags, YIN_SUBELEM_UNIQUE},
David Sedlák32488102019-07-15 17:44:10 +0200554 {(enum_kw == YANG_ENUM) ? YANG_VALUE : YANG_POSITION, en, YIN_SUBELEM_UNIQUE},
David Sedlákca36c422019-07-12 12:47:55 +0200555 {YANG_CUSTOM, NULL, 0}
556 };
David Sedlák07869a52019-07-12 14:28:19 +0200557 return yin_parse_content(ctx, subelems, 6, data, enum_kw, NULL, &en->exts);
David Sedlákca36c422019-07-12 12:47:55 +0200558}
559
David Sedlákd3983112019-07-12 11:20:56 +0200560/**
David Sedlák5f8191e2019-07-08 16:35:52 +0200561 * @brief Parse simple element without any special constraints and argument mapped to yin attribute, that can have
562 * more instances, such as base or if-feature.
563 *
564 * @param[in,out] ctx YIN parser context for logging and to store current state.
David Sedlákbba38e52019-07-09 15:20:01 +0200565 * @param[in] attrs [Sized array](@ref sizedarrays) of attributes of current element.
David Sedlák5f8191e2019-07-08 16:35:52 +0200566 * @param[in,out] data Data to read from, always moved to currently handled character.
567 * @param[in] kw Type of current element.
568 * @param[out] values Parsed values to add to.
569 * @param[in] arg_type Expected type of attribute.
David Sedlák292763b2019-07-09 11:10:53 +0200570 * @param[in] arg_val_type Type of expected value of attribute.
David Sedlák5f8191e2019-07-08 16:35:52 +0200571 * @param[in,out] exts Extension instance to add to.
572 *
573 * @return LY_ERR values.
574 */
575static LY_ERR
576yin_parse_simple_elements(struct yin_parser_ctx *ctx, struct yin_arg_record *attrs, const char **data, enum yang_keyword kw,
David Sedlák292763b2019-07-09 11:10:53 +0200577 const char ***values, enum YIN_ARGUMENT arg_type, enum yang_arg arg_val_type, struct lysp_ext_instance **exts)
David Sedlák5f8191e2019-07-08 16:35:52 +0200578{
579 const char **value;
David Sedlák5f8191e2019-07-08 16:35:52 +0200580 LY_ARRAY_NEW_RET(ctx->xml_ctx.ctx, *values, value, LY_EMEM);
David Sedlákcb5d83f2019-07-09 09:32:53 +0200581 uint32_t index = LY_ARRAY_SIZE(*values) - 1;
David Sedlák968ac342019-07-11 15:17:59 +0200582 struct yin_subelement subelems[1] = {
583 {YANG_CUSTOM, &index, 0}
584 };
585
David Sedlák1f90d252019-07-10 17:09:32 +0200586 LY_CHECK_RET(yin_parse_attribute(ctx, attrs, arg_type, value, arg_val_type, kw));
David Sedlák5f8191e2019-07-08 16:35:52 +0200587
588 return yin_parse_content(ctx, subelems, 1, data, kw, NULL, exts);
589}
590
591/**
David Sedlákcf5569a2019-07-11 13:31:34 +0200592 * @brief Parse require instance element.
593 *
594 * @param[in,out] ctx Yin parser context for logging and to store current state.
595 * @param[in] attrs [Sized array](@ref sizedarrays) of attributes of current element.
596 * @param[in,out] data Data to read from, always moved to currently handled character.
597 * @prama[out] type Type structure to store value, flag and extensions.
598 *
599 * @return LY_ERR values.
600 */
601static LY_ERR
602yin_pasrse_reqinstance(struct yin_parser_ctx *ctx, struct yin_arg_record *attrs,
603 const char **data, struct lysp_type *type)
604{
605 const char *temp_val = NULL;
David Sedlák968ac342019-07-11 15:17:59 +0200606 struct yin_subelement subelems[1] = {
607 {YANG_CUSTOM, NULL, 0}
608 };
David Sedlákcf5569a2019-07-11 13:31:34 +0200609
610 type->flags |= LYS_SET_REQINST;
611 LY_CHECK_RET(yin_parse_attribute(ctx, attrs, YIN_ARG_VALUE, &temp_val, Y_STR_ARG, YANG_REQUIRE_INSTANCE));
612 if (strcmp(temp_val, "true") == 0) {
613 type->require_instance = 1;
614 } else if (strcmp(temp_val, "false") != 0) {
615 LOGVAL_PARSER((struct lys_parser_ctx *)ctx, LY_VCODE_INVAL_YIN, temp_val, "require-instance");
616 FREE_STRING(ctx->xml_ctx.ctx, temp_val);
617 return LY_EVALID;
618 }
619 FREE_STRING(ctx->xml_ctx.ctx, temp_val);
620
621 return yin_parse_content(ctx, subelems, 1, data, YANG_REQUIRE_INSTANCE, NULL, &type->exts);
622}
623
624/**
David Sedlákce77bf52019-07-11 16:59:31 +0200625 * @brief Parse modifier element.
626 *
627 * @param[in,out] ctx Yin parser context for logging and to store current state.
628 * @param[in] attrs [Sized array](@ref sizedarrays) of attributes of current element.
629 * @param[in,out] data Data to read from, always moved to currently handled character.
630 * @param[in,out] pat Value to write to.
631 * @param[in,out] exts Extension instances to add to.
632 *
633 * @return LY_ERR values.
634 */
635static LY_ERR
636yin_parse_modifier(struct yin_parser_ctx *ctx, struct yin_arg_record *attrs, const char **data,
637 const char **pat, struct lysp_ext_instance **exts)
638{
David Sedlákd3983112019-07-12 11:20:56 +0200639 assert(**pat == 0x06);
David Sedlákce77bf52019-07-11 16:59:31 +0200640 const char *temp_val;
641 char *modified_val;
642 struct yin_subelement subelems[1] = {
643 {YANG_CUSTOM, NULL, 0}
644 };
645
646 LY_CHECK_RET(yin_parse_attribute(ctx, attrs, YIN_ARG_VALUE, &temp_val, Y_STR_ARG, YANG_MODIFIER));
647 if (strcmp(temp_val, "invert-match") != 0) {
648 LOGVAL_PARSER((struct lys_parser_ctx *)ctx, LY_VCODE_INVAL_YIN, temp_val, "modifier");
649 FREE_STRING(ctx->xml_ctx.ctx, temp_val);
650 return LY_EVALID;
651 }
David Sedlákd3983112019-07-12 11:20:56 +0200652 lydict_remove(ctx->xml_ctx.ctx, temp_val);
David Sedlákce77bf52019-07-11 16:59:31 +0200653
654 /* allocate new value */
David Sedlákd3983112019-07-12 11:20:56 +0200655 modified_val = malloc(strlen(*pat) + 1);
David Sedlákce77bf52019-07-11 16:59:31 +0200656 LY_CHECK_ERR_RET(!modified_val, LOGMEM(ctx->xml_ctx.ctx), LY_EMEM);
David Sedlákd3983112019-07-12 11:20:56 +0200657 strcpy(modified_val, *pat);
658 lydict_remove(ctx->xml_ctx.ctx, *pat);
David Sedlákce77bf52019-07-11 16:59:31 +0200659
660 /* modify the new value */
661 modified_val[0] = 0x15;
662 *pat = lydict_insert_zc(ctx->xml_ctx.ctx, modified_val);
663
664 return yin_parse_content(ctx, subelems, 1, data, YANG_MODIFIER, NULL, exts);
665}
666
667/**
David Sedlákb7296dd2019-07-11 14:58:38 +0200668 * @brief Parse a restriction element (length, range or one instance of must).
669 *
670 * @param[in,out] ctx Yin parser context for logging and to store current state.
671 * @param[in] attrs [Sized array](@ref sizedarrays) of attributes of current element.
672 * @param[in,out] data Data to read from, always moved to currently handled character.
673 * @param[in] restr_kw Identificaton of element that is being parsed, can be set to YANG_MUST, YANG_LENGTH or YANG_RANGE.
674 * @param[in]
675 */
676static LY_ERR
677yin_parse_restriction(struct yin_parser_ctx *ctx, struct yin_arg_record *attrs, const char **data,
678 enum yang_keyword restr_kw, struct lysp_restr *restr)
679{
680 assert(restr_kw == YANG_MUST || restr_kw == YANG_LENGTH || restr_kw == YANG_RANGE);
681 struct yin_subelement subelems[5] = {
David Sedlák968ac342019-07-11 15:17:59 +0200682 {YANG_DESCRIPTION, &restr->dsc, YIN_SUBELEM_UNIQUE},
683 {YANG_ERROR_APP_TAG, &restr->eapptag, YIN_SUBELEM_UNIQUE},
684 {YANG_ERROR_MESSAGE, &restr->emsg, YIN_SUBELEM_UNIQUE},
685 {YANG_REFERENCE, &restr->ref, YIN_SUBELEM_UNIQUE},
686 {YANG_CUSTOM, NULL, 0}
687 };
David Sedlákb7296dd2019-07-11 14:58:38 +0200688 /* argument of must is called condition, but argument of length and range is called value */
689 enum YIN_ARGUMENT arg_type = (restr_kw == YANG_MUST) ? YIN_ARG_CONDITION : YIN_ARG_VALUE;
690 LY_CHECK_RET(yin_parse_attribute(ctx, attrs, arg_type, &restr->arg, Y_STR_ARG, restr_kw));
691
692 return yin_parse_content(ctx, subelems, 5, data, restr_kw, NULL, &restr->exts);
693}
694
695/**
David Sedlákbc9ec9c2019-07-11 15:53:55 +0200696 * @brief Parse must element.
697 *
698 * @param[in,out] ctx YIN parser context for logging and to store current state.
699 * @param[in] attrs [Sized array](@ref sizedarrays) of attributes of current element.
700 * @param[in,out] data Data to read from, always moved to currently handled character.
701 * @param[in,out] restrs Restrictions to add to.
702 *
703 * @return LY_ERR values.
704 */
705static LY_ERR
706yin_parse_must(struct yin_parser_ctx *ctx, struct yin_arg_record *attrs, const char **data, struct lysp_restr **restrs)
707{
708 struct lysp_restr *restr;
709
710 LY_ARRAY_NEW_RET(ctx->xml_ctx.ctx, *restrs, restr, LY_EMEM);
711 return yin_parse_restriction(ctx, attrs, data, YANG_MUST, restr);
712}
713
714/**
David Sedlák5545f5d2019-07-11 11:55:16 +0200715 * @brief Parse position or value element.
716 *
717 * @param[in,out] ctx YIN parser context for logging and to store current state.
718 * @param[in] attrs [Sized array](@ref sizedarrays) of attributes of current element.
719 * @param[in,out] data Data to read from, always moved to currently handled character.
720 * @param[in] kw Type of current element, can be set to YANG_POSITION or YANG_VALUE.
721 * @param[out] enm Enum structure to save value, flags and extensions.
722 *
723 * @return LY_ERR values.
724 */
725static LY_ERR
726yin_parse_value_pos_element(struct yin_parser_ctx *ctx, struct yin_arg_record *attrs, const char **data,
727 enum yang_keyword kw, struct lysp_type_enum *enm)
728{
729 assert(kw == YANG_POSITION || kw == YANG_VALUE);
730 const char *temp_val = NULL;
731 char *ptr;
732 long int num;
733 unsigned long int unum;
734
735 /* set value flag */
736 enm->flags |= LYS_SET_VALUE;
737
738 /* get attribute value */
David Sedlákcf5569a2019-07-11 13:31:34 +0200739 LY_CHECK_RET(yin_parse_attribute(ctx, attrs, YIN_ARG_VALUE, &temp_val, Y_STR_ARG, kw));
David Sedlákae5378f2019-07-17 11:37:59 +0200740 if (!temp_val || temp_val[0] == '\0' || (temp_val[0] == '+') ||
741 ((temp_val[0] == '0') && (temp_val[1] != '\0')) || ((kw == YANG_POSITION) && !strcmp(temp_val, "-0"))) {
David Sedlák5545f5d2019-07-11 11:55:16 +0200742 LOGVAL_PARSER((struct lys_parser_ctx *)ctx, LY_VCODE_INVAL, strlen(temp_val), temp_val, ly_stmt2str(kw));
743 goto error;
744 }
745
746 /* convert value */
747 errno = 0;
748 if (kw == YANG_VALUE) {
749 num = strtol(temp_val, &ptr, 10);
750 if (num < INT64_C(-2147483648) || num > INT64_C(2147483647)) {
751 LOGVAL_PARSER((struct lys_parser_ctx *)ctx, LY_VCODE_INVAL, strlen(temp_val), temp_val, ly_stmt2str(kw));
752 goto error;
753 }
754 } else {
755 unum = strtoul(temp_val, &ptr, 10);
756 if (unum > UINT64_C(4294967295)) {
757 LOGVAL_PARSER((struct lys_parser_ctx *)ctx, LY_VCODE_INVAL, strlen(temp_val), temp_val, ly_stmt2str(kw));
758 goto error;
759 }
760 }
761 /* check if whole argument value was converted */
762 if (*ptr != '\0') {
763 LOGVAL_PARSER((struct lys_parser_ctx *)ctx, LY_VCODE_INVAL, strlen(temp_val), temp_val, ly_stmt2str(kw));
David Sedlákebcd0eb2019-07-16 17:55:12 +0200764 goto error;
David Sedlák5545f5d2019-07-11 11:55:16 +0200765 }
766 if (errno == ERANGE) {
767 LOGVAL_PARSER((struct lys_parser_ctx *)ctx, LY_VCODE_OOB, strlen(temp_val), temp_val, ly_stmt2str(kw));
768 goto error;
769 }
770 /* save correctly ternary operator can't be used because num and unum have different signes */
771 if (kw == YANG_VALUE) {
772 enm->value = num;
773 } else {
774 enm->value = unum;
775 }
776 FREE_STRING(ctx->xml_ctx.ctx, temp_val);
777
778 /* parse subelements */
David Sedlák968ac342019-07-11 15:17:59 +0200779 struct yin_subelement subelems[1] = {
780 {YANG_CUSTOM, NULL, 0}
781 };
David Sedlák5545f5d2019-07-11 11:55:16 +0200782 return yin_parse_content(ctx, subelems, 1, data, kw, NULL, &enm->exts);
783
784 error:
785 FREE_STRING(ctx->xml_ctx.ctx, temp_val);
786 return LY_EVALID;
787}
788
David Sedlák05404f62019-07-24 14:11:53 +0200789
790/**
791 * @brief Parse belongs-to element.
792 *
793 * @param[in] ctx Yin parser context for logging and to store current state.
794 * @param[in] attrs [Sized array](@ref sizedarrays) of attributes of current element.
795 * @param[in,out] data Data to read from, always moved to currently handled character.
796 * @param[out] submod Structure of submodule that is being parsed.
797 * @param[in,out] exts Extension instances to add to.
798 *
799 * @return LY_ERR values
800 */
801static LY_ERR
802yin_parse_belongs_to(struct yin_parser_ctx *ctx, struct yin_arg_record *attrs, const char **data,
803 struct lysp_submodule *submod, struct lysp_ext_instance **exts)
804{
805 struct yin_subelement subelems[2] = {
806 {YANG_PREFIX, &submod->prefix, YIN_SUBELEM_MANDATORY | YIN_SUBELEM_UNIQUE},
807 {YANG_CUSTOM, NULL, 0}
808 };
809 LY_CHECK_RET(yin_parse_attribute(ctx, attrs, YIN_ARG_MODULE, &submod->belongsto, Y_IDENTIF_ARG, YANG_BELONGS_TO));
810
811 return yin_parse_content(ctx, subelems, 2, data, YANG_BELONGS_TO, NULL, exts);
812}
813
David Sedlák5545f5d2019-07-11 11:55:16 +0200814/**
David Sedlákc1771b12019-07-10 15:55:46 +0200815 * @brief Function to parse meta tags (description, contact, ...) eg. elements with
David Sedlákb4e44562019-07-04 15:42:12 +0200816 * text element as child
817 *
David Sedlákda8ffa32019-07-08 14:17:10 +0200818 * @param[in,out] ctx Yin parser context for logging and to store current state.
David Sedlákcf5569a2019-07-11 13:31:34 +0200819 * @param[in,out] data Data to read from, always moved to currently handled character.
David Sedlákc1771b12019-07-10 15:55:46 +0200820 * @param[in] Type of element can be set to YANG_ORGANIZATION or YANG_CONTACT or YANG_DESCRIPTION or YANG_REFERENCE.
David Sedlákb4e44562019-07-04 15:42:12 +0200821 * @param[out] value Where the content of meta element should be stored.
David Sedlákbba38e52019-07-09 15:20:01 +0200822 * @param[in,out] exts Extension instance to add to.
David Sedlákb4e44562019-07-04 15:42:12 +0200823 *
824 * @return LY_ERR values.
825 */
826static LY_ERR
David Sedlákda8ffa32019-07-08 14:17:10 +0200827yin_parse_meta_element(struct yin_parser_ctx *ctx, const char **data, enum yang_keyword elem_type,
David Sedlákb4e44562019-07-04 15:42:12 +0200828 const char **value, struct lysp_ext_instance **exts)
829{
830 assert(elem_type == YANG_ORGANIZATION || elem_type == YANG_CONTACT || elem_type == YANG_DESCRIPTION || elem_type == YANG_REFERENCE);
831
David Sedlák968ac342019-07-11 15:17:59 +0200832 struct yin_subelement subelems[2] = {
833 {YANG_CUSTOM, NULL, 0},
834 {YIN_TEXT, value, YIN_SUBELEM_MANDATORY | YIN_SUBELEM_UNIQUE | YIN_SUBELEM_FIRST}
835 };
David Sedlákb4e44562019-07-04 15:42:12 +0200836
David Sedlákda8ffa32019-07-08 14:17:10 +0200837 return yin_parse_content(ctx, subelems, 2, data, elem_type, NULL, exts);
David Sedlákb4e44562019-07-04 15:42:12 +0200838}
839
840/**
David Sedlákc1771b12019-07-10 15:55:46 +0200841 * @brief Parse error-message element.
842 *
843 * @param[in,out] ctx Yin parser context for logging and to store current state.
844 * @param[in,out] data Data to read from.
845 * @param[out] value Where the content of error-message element should be stored.
846 * @param[in,out] exts Extension instance to add to.
847 *
848 * @return LY_ERR values.
849 */
850static LY_ERR
851yin_parse_err_msg_element(struct yin_parser_ctx *ctx, const char **data, const char **value,
852 struct lysp_ext_instance **exts)
853{
David Sedlák968ac342019-07-11 15:17:59 +0200854 struct yin_subelement subelems[2] = {
855 {YANG_CUSTOM, NULL, 0},
856 {YIN_VALUE, value, YIN_SUBELEM_MANDATORY | YIN_SUBELEM_UNIQUE | YIN_SUBELEM_FIRST}
857 };
David Sedlákc1771b12019-07-10 15:55:46 +0200858
859 return yin_parse_content(ctx, subelems, 2, data, YANG_ERROR_MESSAGE, NULL, exts);
860}
861
862/**
David Sedlák374d2b32019-07-17 15:06:55 +0200863 * @brief parse type element.
864 *
865 * @brief Parse position or value element.
866 *
867 * @param[in,out] ctx YIN parser context for logging and to store current state.
868 * @param[in] attrs [Sized array](@ref sizedarrays) of attributes of current element.
869 * @param[in,out] data Data to read from, always moved to currently handled character.
870 * @param[in,out] type Type to wrote to.
871 * @param[in,out] exts Extension instance to add to.
872 *
873 * @return LY_ERR values.
874 */
875static LY_ERR
876yin_parse_type(struct yin_parser_ctx *ctx, struct yin_arg_record *attrs, const char **data, struct lysp_type *type)
877{
878 struct yin_subelement subelems[11] = {
879 {YANG_BASE, type, 0},
880 {YANG_BIT, type, 0},
881 {YANG_ENUM, type, 0},
882 {YANG_FRACTION_DIGITS, type, YIN_SUBELEM_UNIQUE},
883 {YANG_LENGTH, type, YIN_SUBELEM_UNIQUE},
884 {YANG_PATH, type, YIN_SUBELEM_UNIQUE},
885 {YANG_PATTERN, type, 0},
886 {YANG_RANGE, type, YIN_SUBELEM_UNIQUE},
887 {YANG_REQUIRE_INSTANCE, type, YIN_SUBELEM_UNIQUE},
888 {YANG_TYPE, type},
889 {YANG_CUSTOM, NULL, 0},
890 };
891 LY_CHECK_RET(yin_parse_attribute(ctx, attrs, YIN_ARG_NAME, &type->name, Y_PREF_IDENTIF_ARG, YANG_TYPE));
892 return yin_parse_content(ctx, subelems, 11, data, YANG_TYPE, NULL, &type->exts);
893}
894
David Sedlák1af868e2019-07-17 17:03:14 +0200895/**
896 * @brief Parse max-elements element.
897 *
898 * @param[in,out] ctx YIN parser context for logging and to store current state.
899 * @param[in] attrs [Sized array](@ref sizedarrays) of attributes of current element.
900 * @param[in,out] data Data to read from, always moved to currently handled character.
901 * @param[in,out] max Value to write to.
David Sedláka2dad212019-07-18 12:45:19 +0200902 * @param[in] flags Flags to write to.
David Sedlák1af868e2019-07-17 17:03:14 +0200903 * @param[in,out] exts Extension instances to add to.
904 *
905 * @return LY_ERR values.
906 */
907static LY_ERR
908yin_parse_maxelements(struct yin_parser_ctx *ctx, struct yin_arg_record *attrs, const char **data, uint32_t *max,
909 uint16_t *flags, struct lysp_ext_instance **exts)
910{
911 const char *temp_val = NULL;
912 char *ptr;
913 unsigned long int num;
914 struct yin_subelement subelems[1] = {
915 {YANG_CUSTOM, NULL, 0},
916 };
David Sedlák374d2b32019-07-17 15:06:55 +0200917
David Sedlák1af868e2019-07-17 17:03:14 +0200918 *flags |= LYS_SET_MAX;
919 LY_CHECK_RET(yin_parse_attribute(ctx, attrs, YIN_ARG_VALUE, &temp_val, Y_STR_ARG, YANG_MAX_ELEMENTS));
920 if (!temp_val || temp_val[0] == '\0' || temp_val[0] == '0' || (temp_val[0] != 'u' && !isdigit(temp_val[0]))) {
921 LOGVAL_PARSER((struct lys_parser_ctx *)ctx, LY_VCODE_INVAL, strlen(temp_val), temp_val, "max-elements");
922 FREE_STRING(ctx->xml_ctx.ctx, temp_val);
923 return LY_EVALID;
924 }
925
926 if (strcmp(temp_val, "unbounded")) {
927 errno = 0;
928 num = strtoul(temp_val, &ptr, 10);
929 if (*ptr != '\0') {
930 LOGVAL_PARSER((struct lys_parser_ctx *)ctx, LY_VCODE_INVAL, strlen(temp_val), temp_val, "max-elements");
931 FREE_STRING(ctx->xml_ctx.ctx, temp_val);
932 return LY_EVALID;
933 }
934 if ((errno == ERANGE) || (num > UINT32_MAX)) {
935 LOGVAL_PARSER((struct lys_parser_ctx *)ctx, LY_VCODE_OOB, strlen(temp_val), temp_val, "max-elements");
936 FREE_STRING(ctx->xml_ctx.ctx, temp_val);
937 return LY_EVALID;
938 }
939 *max = num;
940 }
941 FREE_STRING(ctx->xml_ctx.ctx, temp_val);
942 return yin_parse_content(ctx, subelems, 1, data, YANG_MAX_ELEMENTS, NULL, exts);
943}
David Sedlák374d2b32019-07-17 15:06:55 +0200944
945/**
David Sedlák09e18c92019-07-18 11:17:11 +0200946 * @brief Parse max-elements element.
947 *
948 * @param[in,out] ctx YIN parser context for logging and to store current state.
949 * @param[in] attrs [Sized array](@ref sizedarrays) of attributes of current element.
950 * @param[in,out] data Data to read from, always moved to currently handled character.
951 * @param[in,out] min Value to write to.
David Sedláka2dad212019-07-18 12:45:19 +0200952 * @param[in] flags Flags to write to.
David Sedlák09e18c92019-07-18 11:17:11 +0200953 * @param[in,out] exts Extension instances to add to.
954 *
955 * @return LY_ERR values.
956 */
957static LY_ERR
958yin_parse_minelements(struct yin_parser_ctx *ctx, struct yin_arg_record *attrs, const char **data, uint32_t *min,
959 uint16_t *flags, struct lysp_ext_instance **exts)
960{
961 const char *temp_val = NULL;
962 char *ptr;
963 unsigned long int num;
964 struct yin_subelement subelems[1] = {
965 {YANG_CUSTOM, NULL, 0},
966 };
967
968 *flags |= LYS_SET_MIN;
David Sedláka2dad212019-07-18 12:45:19 +0200969 LY_CHECK_RET(yin_parse_attribute(ctx, attrs, YIN_ARG_VALUE, &temp_val, Y_STR_ARG, YANG_MIN_ELEMENTS));
David Sedlák09e18c92019-07-18 11:17:11 +0200970
971 if (!temp_val || temp_val[0] == '\0' || (temp_val[0] == '0' && temp_val[1] != '\0')) {
972 LOGVAL_PARSER((struct lys_parser_ctx *)ctx, LY_VCODE_INVAL, strlen(temp_val), temp_val, "min-elements");
973 FREE_STRING(ctx->xml_ctx.ctx, temp_val);
974 return LY_EVALID;
975 }
976
977 errno = 0;
978 num = strtoul(temp_val, &ptr, 10);
979 if (ptr[0] != 0) {
980 LOGVAL_PARSER((struct lys_parser_ctx *)ctx, LY_VCODE_INVAL, strlen(temp_val), temp_val, "min-elements");
981 FREE_STRING(ctx->xml_ctx.ctx, temp_val);
982 return LY_EVALID;
983 }
984 if (errno == ERANGE || num > UINT32_MAX) {
985 LOGVAL_PARSER((struct lys_parser_ctx *)ctx, LY_VCODE_OOB, strlen(temp_val), temp_val, "min-elements");
986 FREE_STRING(ctx->xml_ctx.ctx, temp_val);
987 return LY_EVALID;
988 }
989 *min = num;
990 FREE_STRING(ctx->xml_ctx.ctx, temp_val);
David Sedláka2dad212019-07-18 12:45:19 +0200991 return yin_parse_content(ctx, subelems, 1, data, YANG_MIN_ELEMENTS, NULL, exts);
David Sedlák09e18c92019-07-18 11:17:11 +0200992}
993
David Sedláka2dad212019-07-18 12:45:19 +0200994/**
995 * @brief Parse min-elements or max-elements element.
996 *
997 * @param[in,out] ctx YIN parser context for logging and to store current state.
998 * @param[in] attrs [Sized array](@ref sizedarrays) of attributes of current element.
999 * @param[in,out] data Data to read from, always moved to currently handled character.
1000 * @param[in] parent Identification of parent element.
1001 * @param[in] current Identification of current element.
1002 * @param[in] dest Where the parsed value and flags should be stored.
1003 *
1004 * @return LY_ERR values.
1005 */
David Sedlák09e18c92019-07-18 11:17:11 +02001006static LY_ERR
1007yin_parse_minmax(struct yin_parser_ctx *ctx, struct yin_arg_record *attrs, const char **data,
1008 enum yang_keyword parent, enum yang_keyword current, void *dest)
1009{
1010 assert(current == YANG_MAX_ELEMENTS || current == YANG_MIN_ELEMENTS);
David Sedlák4ffcec82019-07-25 15:10:21 +02001011 assert(parent == YANG_LEAF_LIST || parent == YANG_REFINE || parent == YANG_LIST || parent == YANG_DEVIATE);
David Sedlák09e18c92019-07-18 11:17:11 +02001012 uint32_t *lim;
1013 uint16_t *flags;
1014 struct lysp_ext_instance **exts;
1015
1016 if (parent == YANG_LEAF_LIST) {
1017 lim = (current == YANG_MAX_ELEMENTS) ? &((struct lysp_node_leaflist *)dest)->max : &((struct lysp_node_leaflist *)dest)->min;
1018 flags = &((struct lysp_node_leaflist *)dest)->flags;
1019 exts = &((struct lysp_node_leaflist *)dest)->exts;
1020 } else if (parent == YANG_REFINE) {
1021 lim = (current == YANG_MAX_ELEMENTS) ? &((struct lysp_refine *)dest)->max : &((struct lysp_refine *)dest)->min;
1022 flags = &((struct lysp_refine *)dest)->flags;
1023 exts = &((struct lysp_refine *)dest)->exts;
David Sedlák4ffcec82019-07-25 15:10:21 +02001024 } else if (parent == YANG_LIST) {
David Sedlák09e18c92019-07-18 11:17:11 +02001025 lim = (current == YANG_MAX_ELEMENTS) ? &((struct lysp_node_list *)dest)->max : &((struct lysp_node_list *)dest)->min;
1026 flags = &((struct lysp_node_list *)dest)->flags;
1027 exts = &((struct lysp_node_list *)dest)->exts;
David Sedlák4ffcec82019-07-25 15:10:21 +02001028 } else {
1029 lim = ((struct minmax_dev_meta *)dest)->lim;
1030 flags = ((struct minmax_dev_meta *)dest)->flags;
1031 exts = ((struct minmax_dev_meta *)dest)->exts;
David Sedlák09e18c92019-07-18 11:17:11 +02001032 }
1033
1034 if (current == YANG_MAX_ELEMENTS) {
1035 LY_CHECK_RET(yin_parse_maxelements(ctx, attrs, data, lim, flags, exts));
1036 } else {
1037 LY_CHECK_RET(yin_parse_minelements(ctx, attrs, data, lim, flags, exts));
1038 }
1039
1040 return LY_SUCCESS;
1041}
1042
1043/**
David Sedláka2dad212019-07-18 12:45:19 +02001044 * @brief Parser ordered-by element.
1045 *
1046 * @param[in,out] ctx YIN parser context for logging and to store current state.
1047 * @param[in] attrs [Sized array](@ref sizedarrays) of attributes of current element.
1048 * @param[in,out] data Data to read from, always moved to currently handled character.
1049 * @param[out] flags Flags to write to.
1050 * @param[in,out] exts Extension instance to add to.
1051 *
1052 * @return LY_ERR values.
1053 */
1054static LY_ERR
1055yin_parse_orderedby(struct yin_parser_ctx *ctx, struct yin_arg_record *attrs, const char **data,
1056 uint16_t *flags, struct lysp_ext_instance **exts)
1057{
1058 const char *temp_val;
1059 struct yin_subelement subelems[1] = {
1060 {YANG_CUSTOM, NULL, 0},
1061 };
1062
1063 LY_CHECK_RET(yin_parse_attribute(ctx, attrs, YIN_ARG_VALUE, &temp_val, Y_STR_ARG, YANG_ORDERED_BY));
1064 if (strcmp(temp_val, "system") == 0) {
1065 *flags |= LYS_ORDBY_SYSTEM;
1066 } else if (strcmp(temp_val, "user") == 0) {
1067 *flags |= LYS_ORDBY_USER;
1068 } else {
1069 LOGVAL_PARSER((struct lys_parser_ctx *)ctx, LY_VCODE_INVAL, strlen(temp_val), temp_val, "ordered-by");
1070 FREE_STRING(ctx->xml_ctx.ctx, temp_val);
1071 return LY_EVALID;
1072 }
1073 FREE_STRING(ctx->xml_ctx.ctx, temp_val);
1074
1075 return yin_parse_content(ctx, subelems, 1, data, YANG_ORDERED_BY, NULL, exts);
1076}
1077
1078/**
David Sedlák8a83bbb2019-07-18 14:46:00 +02001079 * @brief parse any-data or any-xml element.
1080 *
1081 * @param[in,out] ctx YIN parser context for logging and to store current state.
1082 * @param[in] attrs [Sized array](@ref sizedarrays) of attributes of current element.
1083 * @param[in,out] data Data to read from, always moved to currently handled character.
1084 * @param[in] any_kw Identification of current element, can be set to YANG_ANY_DATA or YANG_ANY_XML
David Sedlák05404f62019-07-24 14:11:53 +02001085 * @param[in] node_meta Meta information about parent node and siblings.
David Sedlák8a83bbb2019-07-18 14:46:00 +02001086 *
1087 * @return LY_ERR values.
1088 */
1089static LY_ERR
1090yin_parse_any(struct yin_parser_ctx *ctx, struct yin_arg_record *attrs, const char **data,
1091 enum yang_keyword any_kw, struct tree_node_meta *node_meta)
1092{
1093 struct lysp_node *iter;
1094 struct lysp_node_anydata *any;
1095
1096 /* create structure */
1097 any = calloc(1, sizeof *any);
1098 LY_CHECK_ERR_RET(!any, LOGMEM(ctx->xml_ctx.ctx), LY_EMEM);
1099 any->nodetype = (any_kw == YANG_ANYDATA) ? LYS_ANYDATA : LYS_ANYXML;
1100 any->parent = node_meta->parent;
1101
1102 /* insert into siblings */
1103 if (!*(node_meta->siblings)) {
1104 *(node_meta->siblings) = (struct lysp_node *)any;
1105 } else {
1106 for (iter = *(node_meta->siblings); iter->next; iter = iter->next);
1107 iter->next = (struct lysp_node *)any;
1108 }
1109
1110 /* parser argument */
David Sedlák203ca3a2019-07-18 15:26:25 +02001111 LY_CHECK_RET(yin_parse_attribute(ctx, attrs, YIN_ARG_NAME, &any->name, Y_IDENTIF_ARG, any_kw));
David Sedlák8a83bbb2019-07-18 14:46:00 +02001112
1113 struct yin_subelement subelems[9] = {
1114 {YANG_CONFIG, &any->flags, YIN_SUBELEM_UNIQUE},
1115 {YANG_DESCRIPTION, &any->dsc, YIN_SUBELEM_UNIQUE},
1116 {YANG_IF_FEATURE, &any->iffeatures, 0},
1117 {YANG_MANDATORY, &any->flags, YIN_SUBELEM_UNIQUE},
1118 {YANG_MUST, &any->musts, 0},
1119 {YANG_REFERENCE, &any->ref, YIN_SUBELEM_UNIQUE},
1120 {YANG_STATUS, &any->flags, YIN_SUBELEM_UNIQUE},
1121 {YANG_WHEN, &any->when, YIN_SUBELEM_UNIQUE},
1122 {YANG_CUSTOM, NULL, 0},
1123 };
1124 return yin_parse_content(ctx, subelems, 9, data, any_kw, NULL, &any->exts);
1125}
1126
1127/**
David Sedlák203ca3a2019-07-18 15:26:25 +02001128 * @brief parse leaf element.
1129 *
1130 * @param[in,out] ctx YIN parser context for logging and to store current state.
1131 * @param[in] attrs [Sized array](@ref sizedarrays) of attributes of current element.
1132 * @param[in,out] data Data to read from, always moved to currently handled character.
David Sedlák05404f62019-07-24 14:11:53 +02001133 * @param[in] node_meta Meta information about parent node and siblings.
David Sedlák203ca3a2019-07-18 15:26:25 +02001134 *
1135 * @return LY_ERR values.
1136 */
1137static LY_ERR
1138yin_parse_leaf(struct yin_parser_ctx *ctx, struct yin_arg_record *attrs, const char **data,
1139 struct tree_node_meta *node_meta)
1140{
1141 struct lysp_node *iter;
1142 struct lysp_node_leaf *leaf;
1143
1144 /* create structure */
1145 leaf = calloc(1, sizeof *leaf);
1146 LY_CHECK_ERR_RET(!leaf, LOGMEM(ctx->xml_ctx.ctx), LY_EMEM);
1147 leaf->nodetype = LYS_LEAF;
1148 leaf->parent = node_meta->parent;
1149
1150 /* insert into siblings */
1151 if (!*(node_meta->siblings)) {
1152 *node_meta->siblings = (struct lysp_node *)leaf;
1153 } else {
1154 for (iter = *node_meta->siblings; iter->next; iter = iter->next);
1155 iter->next = (struct lysp_node *)leaf;
1156 }
1157
1158 /* parser argument */
1159 LY_CHECK_RET(yin_parse_attribute(ctx, attrs, YIN_ARG_NAME, &leaf->name, Y_IDENTIF_ARG, YANG_LEAF));
1160
1161 /* parse content */
1162 struct yin_subelement subelems[12] = {
1163 {YANG_CONFIG, &leaf->flags, YIN_SUBELEM_UNIQUE},
1164 {YANG_DEFAULT, &leaf->dflt, YIN_SUBELEM_UNIQUE},
1165 {YANG_DESCRIPTION, &leaf->dsc, YIN_SUBELEM_UNIQUE},
1166 {YANG_IF_FEATURE, &leaf->iffeatures, 0},
1167 {YANG_MANDATORY, &leaf->flags, YIN_SUBELEM_UNIQUE},
1168 {YANG_MUST, &leaf->musts, 0},
1169 {YANG_REFERENCE, &leaf->ref, YIN_SUBELEM_UNIQUE},
1170 {YANG_STATUS, &leaf->flags, YIN_SUBELEM_UNIQUE},
1171 {YANG_TYPE, &leaf->type, YIN_SUBELEM_UNIQUE | YIN_SUBELEM_MANDATORY},
1172 {YANG_UNITS, &leaf->units, YIN_SUBELEM_UNIQUE},
1173 {YANG_WHEN, &leaf->when, YIN_SUBELEM_UNIQUE},
1174 {YANG_CUSTOM, NULL, 0},
David Sedlák05404f62019-07-24 14:11:53 +02001175 };
David Sedlák203ca3a2019-07-18 15:26:25 +02001176 return yin_parse_content(ctx, subelems, 12, data, YANG_LEAF, NULL, &leaf->exts);
1177}
1178
1179/**
David Sedlákc3da3ef2019-07-19 12:56:08 +02001180 * @brief Parse leaf-list element.
1181 *
1182 * @param[in,out] ctx YIN parser context for logging and to store current state.
1183 * @param[in] attrs [Sized array](@ref sizedarrays) of attributes of current element.
1184 * @param[in,out] data Data to read from, always moved to currently handled character.
David Sedlák05404f62019-07-24 14:11:53 +02001185 * @param[in] node_meta Meta information about parent node and siblings.
David Sedlákc3da3ef2019-07-19 12:56:08 +02001186 *
1187 * @return LY_ERR values.
1188 */
1189static LY_ERR
1190yin_parse_leaflist(struct yin_parser_ctx *ctx, struct yin_arg_record *attrs, const char **data,
1191 struct tree_node_meta *node_meta)
1192{
1193 struct lysp_node *iter;
1194 struct lysp_node_leaflist *llist;
David Sedlákc3da3ef2019-07-19 12:56:08 +02001195
1196 llist = calloc(1, sizeof *llist);
1197 LY_CHECK_ERR_RET(!llist, LOGMEM(ctx->xml_ctx.ctx), LY_EMEM);
1198 llist->nodetype = LYS_LEAFLIST;
1199 llist->parent = node_meta->parent;
1200
1201 /* insert into siblings */
1202 if (!*(node_meta->siblings)) {
1203 *node_meta->siblings = (struct lysp_node *)llist;
1204 } else {
1205 for (iter = *node_meta->siblings; iter->next; iter = iter->next);
1206 iter->next = (struct lysp_node *)llist;
1207 }
1208
1209 /* parse argument */
1210 yin_parse_attribute(ctx, attrs, YIN_ARG_NAME, &llist->name, Y_IDENTIF_ARG, YANG_LEAF_LIST);
1211
1212 /* parse content */
1213 struct yin_subelement subelems[14] = {
1214 {YANG_CONFIG, &llist->flags, YIN_SUBELEM_UNIQUE},
1215 {YANG_DEFAULT, &llist->dflts, 0},
1216 {YANG_DESCRIPTION, &llist->dsc, YIN_SUBELEM_UNIQUE},
1217 {YANG_IF_FEATURE, &llist->iffeatures, 0},
1218 {YANG_MAX_ELEMENTS, llist, YIN_SUBELEM_UNIQUE},
1219 {YANG_MIN_ELEMENTS, llist, YIN_SUBELEM_UNIQUE},
1220 {YANG_MUST, &llist->musts, 0},
1221 {YANG_ORDERED_BY, &llist->flags, YIN_SUBELEM_UNIQUE},
1222 {YANG_REFERENCE, &llist->ref, YIN_SUBELEM_UNIQUE},
1223 {YANG_STATUS, &llist->flags, YIN_SUBELEM_UNIQUE},
1224 {YANG_TYPE, &llist->type, YIN_SUBELEM_UNIQUE | YIN_SUBELEM_MANDATORY},
1225 {YANG_UNITS, &llist->units, YIN_SUBELEM_UNIQUE},
1226 {YANG_WHEN, &llist->when, YIN_SUBELEM_UNIQUE},
1227 {YANG_CUSTOM, NULL, 0},
David Sedlákaa854b02019-07-22 14:17:10 +02001228 };
David Sedlákc3da3ef2019-07-19 12:56:08 +02001229 LY_CHECK_RET(yin_parse_content(ctx, subelems, 14, data, YANG_LEAF_LIST, NULL, &llist->exts));
1230
1231 /* invalid combination of subelements */
1232 if ((llist->min) && (llist->dflts)) {
1233 LOGVAL_PARSER((struct lys_parser_ctx *)ctx, LY_VCODE_INCHILDSTMSCOMB, "min-elements", "default", "leaf-list");
1234 return LY_EVALID;
1235 }
1236 if (llist->max && llist->min > llist->max) {
1237 LOGVAL_PARSER((struct lys_parser_ctx *)ctx, LYVE_SEMANTICS,
1238 "Invalid combination of min-elements and max-elements: min value %u is bigger than the max value %u.",
1239 llist->min, llist->max);
1240 return LY_EVALID;
1241 }
1242
1243 return LY_SUCCESS;
1244}
1245
1246/**
David Sedlák04e17b22019-07-19 15:29:48 +02001247 * @brief Parse typedef element.
1248 *
1249 * @param[in,out] ctx YIN parser context for logging and to store current state.
1250 * @param[in] attrs [Sized array](@ref sizedarrays) of attributes of current element.
1251 * @param[in,out] data Data to read from, always moved to currently handled character.
David Sedlák05404f62019-07-24 14:11:53 +02001252 * @param[in] typedef_meta Meta information about parent node and typedefs to add to.
David Sedlák04e17b22019-07-19 15:29:48 +02001253 *
1254 * @return LY_ERR values.
1255 */
1256static LY_ERR
1257yin_parse_typedef(struct yin_parser_ctx *ctx, struct yin_arg_record *attrs, const char **data,
1258 struct typedef_meta *typedef_meta)
1259{
1260 struct lysp_tpdf *tpdf;
1261 LY_ARRAY_NEW_RET(ctx->xml_ctx.ctx, *typedef_meta->typedefs, tpdf, LY_EMEM);
1262
1263 /* parse argument */
1264 LY_CHECK_RET(yin_parse_attribute(ctx, attrs, YIN_ARG_NAME, &tpdf->name, Y_IDENTIF_ARG, YANG_TYPEDEF));
1265
1266 /* parse content */
1267 struct yin_subelement subelems[7] = {
1268 {YANG_DEFAULT, &tpdf->dflt, YIN_SUBELEM_UNIQUE},
1269 {YANG_DESCRIPTION, &tpdf->dsc, YIN_SUBELEM_UNIQUE},
1270 {YANG_REFERENCE, &tpdf->ref, YIN_SUBELEM_UNIQUE},
1271 {YANG_STATUS, &tpdf->flags, YIN_SUBELEM_UNIQUE},
1272 {YANG_TYPE, &tpdf->type, YIN_SUBELEM_UNIQUE | YIN_SUBELEM_MANDATORY},
1273 {YANG_UNITS, &tpdf->units, YIN_SUBELEM_UNIQUE},
1274 {YANG_CUSTOM, NULL, 0},
David Sedlákaa854b02019-07-22 14:17:10 +02001275 };
David Sedlák04e17b22019-07-19 15:29:48 +02001276 LY_CHECK_RET(yin_parse_content(ctx, subelems, 7, data, YANG_TYPEDEF, NULL, &tpdf->exts));
1277
1278 /* store data for collision check */
1279 if (typedef_meta->parent && !(typedef_meta->parent->nodetype & (LYS_GROUPING | LYS_ACTION | LYS_INOUT | LYS_NOTIF))) {
1280 ly_set_add(&ctx->tpdfs_nodes, typedef_meta->parent, 0);
1281 }
1282
1283 return LY_SUCCESS;
1284}
1285
1286/**
David Sedlákd2d676a2019-07-22 11:28:19 +02001287 * @brief Parse refine element.
1288 *
1289 * @param[in,out] ctx YIN parser context for logging and to store current state.
1290 * @param[in] attrs [Sized array](@ref sizedarrays) of attributes of current element.
1291 * @param[in,out] data Data to read from, always moved to currently handled character.
1292 * @param[in,out] refines Refines to add to.
1293 *
1294 * @return LY_ERR values.
1295 */
1296static LY_ERR
1297yin_parse_refine(struct yin_parser_ctx *ctx, struct yin_arg_record *attrs, const char **data,
1298 struct lysp_refine **refines)
1299{
1300 struct lysp_refine *rf;
1301
1302 /* allocate new refine */
1303 LY_ARRAY_NEW_RET(ctx->xml_ctx.ctx, *refines, rf, LY_EMEM);
1304
1305 /* parse attribute */
1306 LY_CHECK_RET(yin_parse_attribute(ctx, attrs, YIN_ARG_TARGET_NODE, &rf->nodeid, Y_STR_ARG, YANG_REFINE));
1307 YANG_CHECK_NONEMPTY((struct lys_parser_ctx *)ctx, strlen(rf->nodeid), "refine");
1308
1309 /* parse content */
1310 struct yin_subelement subelems[11] = {
1311 {YANG_CONFIG, &rf->flags, YIN_SUBELEM_UNIQUE},
1312 {YANG_DEFAULT, &rf->dflts, 0},
1313 {YANG_DESCRIPTION, &rf->dsc, YIN_SUBELEM_UNIQUE},
1314 {YANG_IF_FEATURE, &rf->iffeatures, 0},
1315 {YANG_MANDATORY, &rf->flags, YIN_SUBELEM_UNIQUE},
1316 {YANG_MAX_ELEMENTS, rf, YIN_SUBELEM_UNIQUE},
1317 {YANG_MIN_ELEMENTS, rf, YIN_SUBELEM_UNIQUE},
1318 {YANG_MUST, &rf->musts, 0},
1319 {YANG_PRESENCE, &rf->presence, YIN_SUBELEM_UNIQUE},
1320 {YANG_REFERENCE, &rf->ref, YIN_SUBELEM_UNIQUE},
1321 {YANG_CUSTOM, NULL, 0},
David Sedlákaa854b02019-07-22 14:17:10 +02001322 };
David Sedlákd2d676a2019-07-22 11:28:19 +02001323 return yin_parse_content(ctx, subelems, 11, data, YANG_REFINE, NULL, &rf->exts);
1324}
1325
1326/**
David Sedlák0d6de5a2019-07-22 13:25:44 +02001327 * @brief Parse uses element.
1328 *
1329 * @param[in,out] ctx YIN parser context for logging and to store current state.
1330 * @param[in] attrs [Sized array](@ref sizedarrays) of attributes of current element.
1331 * @param[in,out] data Data to read from, always moved to currently handled character.
David Sedlák05404f62019-07-24 14:11:53 +02001332 * @param[in] node_meta Meta information about parent node and siblings.
David Sedlák0d6de5a2019-07-22 13:25:44 +02001333 *
1334 * @return LY_ERR values.
1335 */
1336static LY_ERR
1337yin_parse_uses(struct yin_parser_ctx *ctx, struct yin_arg_record *attrs, const char **data,
1338 struct tree_node_meta *node_meta)
1339{
1340 struct lysp_node *iter;
1341 struct lysp_node_uses *uses;
1342
1343 /* create structure */
1344 uses = calloc(1, sizeof *uses);
1345 LY_CHECK_ERR_RET(!uses, LOGMEM(ctx->xml_ctx.ctx), LY_EMEM);
1346 uses->nodetype = LYS_USES;
1347 uses->parent = node_meta->parent;
1348
1349 /* insert into siblings */
1350 if (!*(node_meta->siblings)) {
1351 *node_meta->siblings = (struct lysp_node *)uses;
1352 } else {
1353 for (iter = *node_meta->siblings; iter->next; iter = iter->next);
1354 iter->next = (struct lysp_node *)uses;
1355 }
1356
1357 /* parse argument */
1358 LY_CHECK_RET(yin_parse_attribute(ctx, attrs, YIN_ARG_NAME, &uses->name, Y_PREF_IDENTIF_ARG, YANG_USES));
1359
1360 /* parse content */
1361 struct augment_meta augments = {(struct lysp_node *)uses, &uses->augments};
1362 struct yin_subelement subelems[8] = {
1363 {YANG_AUGMENT, &augments, 0},
1364 {YANG_DESCRIPTION, &uses->dsc, YIN_SUBELEM_UNIQUE},
1365 {YANG_IF_FEATURE, &uses->iffeatures, 0},
1366 {YANG_REFERENCE, &uses->ref, YIN_SUBELEM_UNIQUE},
1367 {YANG_REFINE, &uses->refines, 0},
1368 {YANG_STATUS, &uses->flags, YIN_SUBELEM_UNIQUE},
1369 {YANG_WHEN, &uses->when, YIN_SUBELEM_UNIQUE},
1370 {YANG_CUSTOM, NULL, 0},
David Sedlákaa854b02019-07-22 14:17:10 +02001371 };
David Sedlák0d6de5a2019-07-22 13:25:44 +02001372 LY_CHECK_RET(yin_parse_content(ctx, subelems, 8, data, YANG_USES, NULL, &uses->exts));
1373 LY_CHECK_RET(lysp_parse_finalize_reallocated((struct lys_parser_ctx *)ctx, NULL, uses->augments, NULL, NULL));
1374
1375 return LY_SUCCESS;
1376}
1377
1378/**
David Sedlákaa854b02019-07-22 14:17:10 +02001379 * @brief Parse revision element.
1380 *
1381 * @param[in,out] ctx YIN parser context for logging and to store current state.
1382 * @param[in] attrs [Sized array](@ref sizedarrays) of attributes of current element.
1383 * @param[in,out] data Data to read from, always moved to currently handled character.
1384 * @param[in,out] revs Parsed revisions to add to.
1385 *
1386 * @return LY_ERR values.
1387 */
1388static LY_ERR
1389yin_parse_revision(struct yin_parser_ctx *ctx, struct yin_arg_record *attrs, const char **data,
1390 struct lysp_revision **revs)
1391{
1392 struct lysp_revision *rev;
1393 const char *temp_date = NULL;
1394
1395 /* allocate new reivison */
1396 LY_ARRAY_NEW_RET(ctx->xml_ctx.ctx, *revs, rev, LY_EMEM);
1397
1398 /* parse argument */
1399 LY_CHECK_RET(yin_parse_attribute(ctx, attrs, YIN_ARG_DATE, &temp_date, Y_STR_ARG, YANG_REVISION));
1400 /* check value */
1401 if (lysp_check_date((struct lys_parser_ctx *)ctx, temp_date, strlen(temp_date), "revision")) {
1402 FREE_STRING(ctx->xml_ctx.ctx, temp_date);
1403 return LY_EVALID;
1404 }
1405 strcpy(rev->date, temp_date);
1406 FREE_STRING(ctx->xml_ctx.ctx, temp_date);
1407
1408 /* parse content */
1409 struct yin_subelement subelems[3] = {
1410 {YANG_DESCRIPTION, &rev->dsc, YIN_SUBELEM_UNIQUE},
1411 {YANG_REFERENCE, &rev->ref, YIN_SUBELEM_UNIQUE},
1412 {YANG_CUSTOM, NULL, 0},
1413 };
1414 return yin_parse_content(ctx, subelems, 3, data, YANG_REVISION, NULL, &rev->exts);
1415}
1416
David Sedlák5e13dea2019-07-22 16:06:45 +02001417/**
1418 * @brief Parse include element.
1419 *
1420 * @param[in,out] ctx YIN parser context for logging and to store current state.
1421 * @param[in] attrs [Sized array](@ref sizedarrays) of attributes of current element.
1422 * @param[in,out] data Data to read from, always moved to currently handled character.
1423 * @param[in,out] inc_meta Meta informatinou about module/submodule name and includes to add to.
1424 *
1425 * @return LY_ERR values.
1426 */
David Sedlák0c2bab92019-07-22 15:33:19 +02001427static LY_ERR
1428yin_parse_include(struct yin_parser_ctx *ctx, struct yin_arg_record *attrs, const char **data,
1429 struct include_meta *inc_meta)
1430{
1431 struct lysp_include *inc;
1432
1433 /* allocate new include */
1434 LY_ARRAY_NEW_RET(ctx->xml_ctx.ctx, *inc_meta->includes, inc, LY_EMEM);
1435
1436 /* parse argument */
1437 LY_CHECK_RET(yin_parse_attribute(ctx, attrs, YIN_ARG_MODULE, &inc->name, Y_IDENTIF_ARG, YANG_INCLUDE));
1438
1439 /* submodules share the namespace with the module names, so there must not be
1440 * a module of the same name in the context, no need for revision matching */
1441 if (!strcmp(inc_meta->name, inc->name) || ly_ctx_get_module_latest(ctx->xml_ctx.ctx, inc->name)) {
1442 LOGVAL_PARSER((struct lys_parser_ctx *)ctx, LYVE_SYNTAX_YANG,
1443 "Name collision between module and submodule of name \"%s\".", inc->name);
1444 return LY_EVALID;
1445 }
1446
1447 /* parse content */
1448 struct yin_subelement subelems[4] = {
1449 {YANG_DESCRIPTION, &inc->dsc, YIN_SUBELEM_UNIQUE | YIN_SUBELEM_VER2},
1450 {YANG_REFERENCE, &inc->ref, YIN_SUBELEM_UNIQUE | YIN_SUBELEM_VER2},
1451 {YANG_REVISION_DATE, &inc->rev, YIN_SUBELEM_UNIQUE},
1452 {YANG_CUSTOM, NULL, 0},
1453 };
1454 return yin_parse_content(ctx, subelems, 4, data, YANG_INCLUDE, NULL, &inc->exts);
1455}
1456
David Sedlákaa854b02019-07-22 14:17:10 +02001457/**
David Sedlák5e13dea2019-07-22 16:06:45 +02001458 * @brief Parse feature element.
1459 *
1460 * @param[in,out] ctx YIN parser context for logging and to store current state.
1461 * @param[in] attrs [Sized array](@ref sizedarrays) of attributes of current element.
1462 * @param[in,out] data Data to read from, always moved to currently handled character.
1463 * @param[in,out] features Features to add to.
1464 *
1465 * @return LY_ERR values.
1466 */
1467static LY_ERR
1468yin_parse_feature(struct yin_parser_ctx *ctx, struct yin_arg_record *attrs, const char **data,
1469 struct lysp_feature **features)
1470{
1471 struct lysp_feature *feat;
1472
1473 /* allocate new feature */
1474 LY_ARRAY_NEW_RET(ctx->xml_ctx.ctx, *features, feat, LY_EMEM);
1475
1476 /* parse argument */
1477 LY_CHECK_RET(yin_parse_attribute(ctx, attrs, YIN_ARG_NAME, &feat->name, Y_IDENTIF_ARG, YANG_FEATURE));
1478
1479 /* parse content */
1480 struct yin_subelement subelems[5] = {
1481 {YANG_DESCRIPTION, &feat->dsc, YIN_SUBELEM_UNIQUE},
1482 {YANG_IF_FEATURE, &feat->iffeatures, 0},
1483 {YANG_REFERENCE, &feat->ref, YIN_SUBELEM_UNIQUE},
1484 {YANG_STATUS, &feat->flags, YIN_SUBELEM_UNIQUE},
1485 {YANG_CUSTOM, NULL, 0},
1486 };
1487 return yin_parse_content(ctx, subelems, 5, data, YANG_FEATURE, NULL, &feat->exts);
1488}
1489
1490/**
David Sedlák28794f22019-07-22 16:45:00 +02001491 * @brief Parse identity element.
1492 *
1493 * @param[in,out] ctx YIN parser context for logging and to store current state.
1494 * @param[in] attrs [Sized array](@ref sizedarrays) of attributes of current element.
1495 * @param[in,out] data Data to read from, always moved to currently handled character.
1496 * @param[in,out] identities Identities to add to.
1497 *
1498 * @return LY_ERR values.
1499 */
1500static LY_ERR
1501yin_parse_identity(struct yin_parser_ctx *ctx, struct yin_arg_record *attrs, const char **data,
1502 struct lysp_ident **identities)
1503{
1504 struct lysp_ident *ident;
1505
1506 /* allocate new identity */
1507 LY_ARRAY_NEW_RET(ctx->xml_ctx.ctx, *identities, ident, LY_EMEM);
1508
1509 /* parse argument */
1510 LY_CHECK_RET(yin_parse_attribute(ctx, attrs, YIN_ARG_NAME, &ident->name, Y_IDENTIF_ARG, YANG_IDENTITY));
1511
1512 /* parse content */
1513 struct yin_subelement subelems[6] = {
1514 {YANG_BASE, &ident->bases, 0},
1515 {YANG_DESCRIPTION, &ident->dsc, YIN_SUBELEM_UNIQUE},
1516 {YANG_IF_FEATURE, &ident->iffeatures, YIN_SUBELEM_VER2},
1517 {YANG_REFERENCE, &ident->ref, YIN_SUBELEM_UNIQUE},
1518 {YANG_STATUS, &ident->flags, YIN_SUBELEM_UNIQUE},
1519 {YANG_CUSTOM, NULL, 0},
1520 };
1521 return yin_parse_content(ctx, subelems, 6, data, YANG_IDENTITY, NULL, &ident->exts);
1522}
1523
1524/**
David Sedlákaf536aa2019-07-23 13:42:23 +02001525 * @brief Parse list element.
1526 *
1527 * @param[in,out] ctx YIN parser context for logging and to store current state.
1528 * @param[in] attrs [Sized array](@ref sizedarrays) of attributes of current element.
1529 * @param[in,out] data Data to read from, always moved to currently handled character.
David Sedlák05404f62019-07-24 14:11:53 +02001530 * @param[in] node_meta Meta information about parent node and siblings.
David Sedlákaf536aa2019-07-23 13:42:23 +02001531 *
1532 * @return LY_ERR values.
1533 */
1534static LY_ERR
David Sedlákf111bcb2019-07-23 17:15:51 +02001535yin_parse_list(struct yin_parser_ctx *ctx, struct yin_arg_record *attrs, const char **data,
1536 struct tree_node_meta *node_meta)
David Sedlákaf536aa2019-07-23 13:42:23 +02001537{
1538 struct lysp_node *iter;
1539 struct lysp_node_list *list;
1540
1541 /* create structure */
1542 list = calloc(1, sizeof *list);
1543 LY_CHECK_ERR_RET(!list, LOGMEM(ctx->xml_ctx.ctx), LY_EMEM);
1544 list->nodetype = LYS_LIST;
1545 list->parent = node_meta->parent;
1546
1547 /* insert into siblings */
1548 if (!*(node_meta->siblings)) {
1549 *node_meta->siblings = (struct lysp_node *)list;
1550 } else {
1551 for (iter = *node_meta->siblings; iter->next; iter = iter->next);
1552 iter->next = (struct lysp_node *)list;
1553 }
1554
1555 /* parse argument */
1556 LY_CHECK_RET(yin_parse_attribute(ctx, attrs, YIN_ARG_NAME, &list->name, Y_IDENTIF_ARG, YANG_LIST));
1557
1558 /* parse list content */
David Sedlák85d0eca2019-07-24 15:15:21 +02001559 struct action_meta act_meta = {(struct lysp_node *)list, &list->actions};
David Sedlákaf536aa2019-07-23 13:42:23 +02001560 struct tree_node_meta new_node_meta = {(struct lysp_node *)list, &list->child};
1561 struct typedef_meta typedef_meta = {(struct lysp_node *)list, &list->typedefs};
David Sedlák031b9e72019-07-23 15:19:37 +02001562 struct notif_meta notif_meta = {(struct lysp_node *)list, &list->notifs};
David Sedláke3ce9ef2019-07-23 16:34:30 +02001563 struct grouping_meta gr_meta = {(struct lysp_node *)list, &list->groupings};
David Sedlákaf536aa2019-07-23 13:42:23 +02001564 struct yin_subelement subelems[25] = {
David Sedlák85d0eca2019-07-24 15:15:21 +02001565 {YANG_ACTION, &act_meta, 0},
David Sedlákaf536aa2019-07-23 13:42:23 +02001566 {YANG_ANYDATA, &new_node_meta, 0},
1567 {YANG_ANYXML, &new_node_meta, 0},
David Sedlákb7abcfa2019-07-24 12:33:35 +02001568 {YANG_CHOICE, &new_node_meta, 0},
David Sedlákaf536aa2019-07-23 13:42:23 +02001569 {YANG_CONFIG, &list->flags, YIN_SUBELEM_UNIQUE},
David Sedlákf111bcb2019-07-23 17:15:51 +02001570 {YANG_CONTAINER, &new_node_meta, 0},
David Sedlákaf536aa2019-07-23 13:42:23 +02001571 {YANG_DESCRIPTION, &list->dsc, YIN_SUBELEM_UNIQUE},
David Sedláke3ce9ef2019-07-23 16:34:30 +02001572 {YANG_GROUPING, &gr_meta, 0},
David Sedlákaf536aa2019-07-23 13:42:23 +02001573 {YANG_IF_FEATURE, &list->iffeatures, 0},
1574 {YANG_KEY, &list->key, YIN_SUBELEM_UNIQUE},
1575 {YANG_LEAF, &new_node_meta, 0},
1576 {YANG_LEAF_LIST, &new_node_meta, 0},
1577 {YANG_LIST, &new_node_meta, 0},
1578 {YANG_MAX_ELEMENTS, list, YIN_SUBELEM_UNIQUE},
1579 {YANG_MIN_ELEMENTS, list, YIN_SUBELEM_UNIQUE},
1580 {YANG_MUST, &list->musts, 0},
David Sedlák031b9e72019-07-23 15:19:37 +02001581 {YANG_NOTIFICATION, &notif_meta, 0},
David Sedlákaf536aa2019-07-23 13:42:23 +02001582 {YANG_ORDERED_BY, &list->flags, YIN_SUBELEM_UNIQUE},
1583 {YANG_REFERENCE, &list->ref, YIN_SUBELEM_UNIQUE},
1584 {YANG_STATUS, &list->flags, YIN_SUBELEM_UNIQUE},
1585 {YANG_TYPEDEF, &typedef_meta, 0},
1586 {YANG_UNIQUE, &list->uniques, 0},
1587 {YANG_USES, &new_node_meta, 0},
1588 {YANG_WHEN, &list->when, YIN_SUBELEM_UNIQUE},
1589 {YANG_CUSTOM, NULL, 0},
1590 };
1591 LY_CHECK_RET(yin_parse_content(ctx, subelems, 25, data, YANG_LIST, NULL, &list->exts));
1592
1593 /* finalize parent pointers to the reallocated items */
1594 LY_CHECK_RET(lysp_parse_finalize_reallocated((struct lys_parser_ctx *)ctx, list->groupings, NULL, list->actions, list->notifs));
1595
1596 if (list->max && list->min > list->max) {
1597 LOGVAL_PARSER((struct lys_parser_ctx *)ctx, LYVE_SEMANTICS,
1598 "Invalid combination of min-elements and max-elements: min value %u is bigger than the max value %u.",
1599 list->min, list->max);
1600 return LY_EVALID;
1601 }
1602
1603 return LY_SUCCESS;
1604}
1605
1606/**
David Sedlák031b9e72019-07-23 15:19:37 +02001607 * @brief Parse notification element.
1608 *
1609 * @param[in,out] ctx YIN parser context for logging and to store current state.
1610 * @param[in] attrs [Sized array](@ref sizedarrays) of attributes of current element.
1611 * @param[in,out] data Data to read from, always moved to currently handled character.
David Sedlák05404f62019-07-24 14:11:53 +02001612 * @param[in,out] notif_meta Meta information about parent node and notifications to add to.
David Sedlák031b9e72019-07-23 15:19:37 +02001613 *
1614 * @return LY_ERR values.
1615 */
1616static LY_ERR
1617yin_parse_notification(struct yin_parser_ctx *ctx, struct yin_arg_record *attrs, const char **data,
1618 struct notif_meta *notif_meta)
1619{
1620 struct lysp_notif *notif;
1621
1622 /* allocate new notification */
1623 LY_ARRAY_NEW_RET(ctx->xml_ctx.ctx, *notif_meta->notifs, notif, LY_EMEM);
1624 notif->nodetype = LYS_NOTIF;
1625 notif->parent = notif_meta->parent;
1626
1627 /* parse argument */
1628 LY_CHECK_RET(yin_parse_attribute(ctx, attrs, YIN_ARG_NAME, &notif->name, Y_IDENTIF_ARG, YANG_NOTIFICATION));
1629
1630 /* parse notification content */
1631 struct tree_node_meta node_meta = {(struct lysp_node *)notif, &notif->data};
1632 struct typedef_meta typedef_meta = {(struct lysp_node *)notif, &notif->typedefs};
David Sedláke3ce9ef2019-07-23 16:34:30 +02001633 struct grouping_meta gr_meta = {(struct lysp_node *)notif, &notif->groupings};
David Sedlák031b9e72019-07-23 15:19:37 +02001634 struct yin_subelement subelems[16] = {
1635 {YANG_ANYDATA, &node_meta, 0},
1636 {YANG_ANYXML, &node_meta, 0},
David Sedlákb7abcfa2019-07-24 12:33:35 +02001637 {YANG_CHOICE, &node_meta, 0},
David Sedlákf111bcb2019-07-23 17:15:51 +02001638 {YANG_CONTAINER, &node_meta, 0},
David Sedlák031b9e72019-07-23 15:19:37 +02001639 {YANG_DESCRIPTION, &notif->dsc, YIN_SUBELEM_UNIQUE},
David Sedláke3ce9ef2019-07-23 16:34:30 +02001640 {YANG_GROUPING, &gr_meta, 0},
David Sedlák031b9e72019-07-23 15:19:37 +02001641 {YANG_IF_FEATURE, &notif->iffeatures, 0},
1642 {YANG_LEAF, &node_meta, 0},
1643 {YANG_LEAF_LIST, &node_meta, 0},
1644 {YANG_LIST, &node_meta, 0},
1645 {YANG_MUST, &notif->musts, YIN_SUBELEM_VER2},
1646 {YANG_REFERENCE, &notif->ref, YIN_SUBELEM_UNIQUE},
1647 {YANG_STATUS, &notif->flags, YIN_SUBELEM_UNIQUE},
1648 {YANG_TYPEDEF, &typedef_meta, 0},
1649 {YANG_USES, &node_meta, 0},
1650 {YANG_CUSTOM, NULL, 0},
1651 };
1652 LY_CHECK_RET(yin_parse_content(ctx, subelems, 16, data, YANG_NOTIFICATION, NULL, &notif->exts));
1653
1654 /* finalize parent pointers to the reallocated items */
1655 LY_CHECK_RET(lysp_parse_finalize_reallocated((struct lys_parser_ctx *)ctx, notif->groupings, NULL, NULL, NULL));
1656
1657 return LY_SUCCESS;
1658}
1659
1660/**
David Sedláke3ce9ef2019-07-23 16:34:30 +02001661 * @brief Parse notification element.
1662 *
1663 * @param[in,out] ctx YIN parser context for logging and to store current state.
1664 * @param[in] attrs [Sized array](@ref sizedarrays) of attributes of current element.
1665 * @param[in,out] data Data to read from, always moved to currently handled character.
David Sedlák05404f62019-07-24 14:11:53 +02001666 * @param[in,out] notif_meta Meta information about parent node and notifications to add to.
David Sedláke3ce9ef2019-07-23 16:34:30 +02001667 *
1668 * @return LY_ERR values.
1669 */
1670static LY_ERR
1671yin_parse_grouping(struct yin_parser_ctx *ctx, struct yin_arg_record *attrs, const char **data,
1672 struct grouping_meta *gr_meta)
1673{
1674 struct lysp_grp *grp;
1675
1676 /* create new grouping */
1677 LY_ARRAY_NEW_RET(ctx->xml_ctx.ctx, *gr_meta->groupings, grp, LY_EMEM);
1678 grp->nodetype = LYS_GROUPING;
1679 grp->parent = gr_meta->parent;
1680
1681 /* parse argument */
1682 LY_CHECK_RET(yin_parse_attribute(ctx, attrs, YIN_ARG_NAME, &grp->name, Y_IDENTIF_ARG, YANG_GROUPING));
1683
1684 /* parse grouping content */
David Sedlák85d0eca2019-07-24 15:15:21 +02001685 struct action_meta act_meta = {(struct lysp_node *)grp, &grp->actions};
David Sedláke3ce9ef2019-07-23 16:34:30 +02001686 struct tree_node_meta node_meta = {(struct lysp_node *)grp, &grp->data};
1687 struct typedef_meta typedef_meta = {(struct lysp_node *)grp, &grp->typedefs};
1688 struct grouping_meta sub_grouping = {(struct lysp_node *)grp, &grp->groupings};
1689 struct notif_meta notif_meta = {(struct lysp_node *)grp, &grp->notifs};
1690 struct yin_subelement subelems[16] = {
David Sedlák85d0eca2019-07-24 15:15:21 +02001691 {YANG_ACTION, &act_meta, 0},
David Sedláke3ce9ef2019-07-23 16:34:30 +02001692 {YANG_ANYDATA, &node_meta, 0},
1693 {YANG_ANYXML, &node_meta, 0},
David Sedlákb7abcfa2019-07-24 12:33:35 +02001694 {YANG_CHOICE, &node_meta, 0},
David Sedláke3ce9ef2019-07-23 16:34:30 +02001695 {YANG_CONTAINER, &node_meta, 0},
1696 {YANG_DESCRIPTION, &grp->dsc, YIN_SUBELEM_UNIQUE},
1697 {YANG_GROUPING, &sub_grouping, 0},
1698 {YANG_LEAF, &node_meta, 0},
1699 {YANG_LEAF_LIST, &node_meta, 0},
1700 {YANG_LIST, &node_meta, 0},
1701 {YANG_NOTIFICATION, &notif_meta, 0},
1702 {YANG_REFERENCE, &grp->ref, YIN_SUBELEM_UNIQUE},
1703 {YANG_STATUS, &grp->flags, YIN_SUBELEM_UNIQUE},
1704 {YANG_TYPEDEF, &typedef_meta, 0},
1705 {YANG_USES, &node_meta, 0},
1706 {YANG_CUSTOM, NULL, 0},
1707 };
1708 LY_CHECK_RET(yin_parse_content(ctx, subelems, 16, data, YANG_GROUPING, NULL, &grp->exts));
1709 /* finalize parent pointers to the reallocated items */
1710 LY_CHECK_RET(lysp_parse_finalize_reallocated((struct lys_parser_ctx *)ctx, grp->groupings, NULL, grp->actions, grp->notifs));
1711
1712 return LY_SUCCESS;
1713}
1714
1715/**
David Sedlákf111bcb2019-07-23 17:15:51 +02001716 * @brief Parse list element.
1717 *
1718 * @param[in,out] ctx YIN parser context for logging and to store current state.
1719 * @param[in] attrs [Sized array](@ref sizedarrays) of attributes of current element.
1720 * @param[in,out] data Data to read from, always moved to currently handled character.
David Sedlák05404f62019-07-24 14:11:53 +02001721 * @param[in] node_meta Meta information about parent node and siblings.
David Sedlákf111bcb2019-07-23 17:15:51 +02001722 *
1723 * @return LY_ERR values.
1724 */
1725static LY_ERR
1726yin_parse_container(struct yin_parser_ctx *ctx, struct yin_arg_record *attrs, const char **data,
1727 struct tree_node_meta *node_meta)
1728{
1729 struct lysp_node *iter;
1730 struct lysp_node_container *cont;
1731
1732 /* create new container */
1733 cont = calloc(1, sizeof *cont);
1734 LY_CHECK_ERR_RET(!cont, LOGMEM(ctx->xml_ctx.ctx), LY_EMEM);
1735 cont->nodetype = LYS_CONTAINER;
1736 cont->parent = node_meta->parent;
1737
1738 /* insert into siblings */
1739 if (!*(node_meta->siblings)) {
1740 *node_meta->siblings = (struct lysp_node *)cont;
1741 } else {
1742 for (iter = *node_meta->siblings; iter->next; iter = iter->next);
1743 iter->next = (struct lysp_node *)cont;
1744 }
1745
1746 /* parse aegument */
1747 LY_CHECK_RET(yin_parse_attribute(ctx, attrs, YIN_ARG_NAME, &cont->name, Y_IDENTIF_ARG, YANG_CONTAINER));
1748
1749 /* parse container content */
David Sedlák85d0eca2019-07-24 15:15:21 +02001750 struct action_meta act_meta = {(struct lysp_node *)cont, &cont->actions};
David Sedlákf111bcb2019-07-23 17:15:51 +02001751 struct tree_node_meta new_node_meta = {(struct lysp_node *)cont, &cont->child};
1752 struct grouping_meta grp_meta = {(struct lysp_node *)cont, &cont->groupings};
1753 struct typedef_meta typedef_meta = {(struct lysp_node *)cont, &cont->typedefs};
1754 struct notif_meta notif_meta = {(struct lysp_node *)cont, &cont->notifs};
1755 struct yin_subelement subelems[21] = {
David Sedlák85d0eca2019-07-24 15:15:21 +02001756 {YANG_ACTION, &act_meta, YIN_SUBELEM_VER2},
David Sedlákf111bcb2019-07-23 17:15:51 +02001757 {YANG_ANYDATA, &new_node_meta, YIN_SUBELEM_VER2},
1758 {YANG_ANYXML, &new_node_meta, 0},
David Sedlákb7abcfa2019-07-24 12:33:35 +02001759 {YANG_CHOICE, &new_node_meta, 0},
David Sedlákf111bcb2019-07-23 17:15:51 +02001760 {YANG_CONFIG, &cont->flags, YIN_SUBELEM_UNIQUE},
1761 {YANG_CONTAINER, &new_node_meta, 0},
1762 {YANG_DESCRIPTION, &cont->dsc, YIN_SUBELEM_UNIQUE},
1763 {YANG_GROUPING, &grp_meta, 0},
1764 {YANG_IF_FEATURE, &cont->iffeatures, 0},
1765 {YANG_LEAF, &new_node_meta, 0},
1766 {YANG_LEAF_LIST, &new_node_meta, 0},
1767 {YANG_LIST, &new_node_meta, 0},
1768 {YANG_MUST, &cont->musts, 0},
1769 {YANG_NOTIFICATION, &notif_meta, YIN_SUBELEM_VER2},
1770 {YANG_PRESENCE, &cont->presence, YIN_SUBELEM_UNIQUE},
1771 {YANG_REFERENCE, &cont->ref, YIN_SUBELEM_UNIQUE},
1772 {YANG_STATUS, &cont->flags, YIN_SUBELEM_UNIQUE},
1773 {YANG_TYPEDEF, &typedef_meta, 0},
1774 {YANG_USES, &new_node_meta, 0},
1775 {YANG_WHEN, &cont->when, YIN_SUBELEM_UNIQUE},
1776 {YANG_CUSTOM, NULL, 0},
1777 };
1778 LY_CHECK_RET(yin_parse_content(ctx, subelems, 21, data, YANG_CONTAINER, NULL, &cont->exts));
1779 LY_CHECK_RET(lysp_parse_finalize_reallocated((struct lys_parser_ctx *)ctx, cont->groupings, NULL, cont->actions, cont->notifs));
1780
1781 return LY_SUCCESS;
1782}
1783
1784/**
David Sedlák5379d392019-07-24 10:42:03 +02001785 * @brief Parse case element.
1786 *
1787 * @param[in,out] ctx YIN parser context for logging and to store current state.
1788 * @param[in] attrs [Sized array](@ref sizedarrays) of attributes of current element.
1789 * @param[in,out] data Data to read from, always moved to currently handled character.
David Sedlák05404f62019-07-24 14:11:53 +02001790 * @param[in] node_meta Meta information about parent node and siblings.
David Sedlák5379d392019-07-24 10:42:03 +02001791 *
1792 * @return LY_ERR values.
1793 */
1794static LY_ERR
1795yin_parse_case(struct yin_parser_ctx *ctx, struct yin_arg_record *attrs, const char **data,
1796 struct tree_node_meta *node_meta)
1797{
1798 struct lysp_node *iter;
1799 struct lysp_node_case *cas;
1800
1801 /* create new case */
1802 cas = calloc(1, sizeof *cas);
1803 LY_CHECK_ERR_RET(!cas, LOGMEM(ctx->xml_ctx.ctx), LY_EMEM);
1804 cas->nodetype = LYS_CASE;
1805 cas->parent = node_meta->parent;
1806
1807 /* insert into siblings */
1808 if (!*(node_meta->siblings)) {
1809 *node_meta->siblings = (struct lysp_node *)cas;
1810 } else {
1811 for (iter = *node_meta->siblings; iter->next; iter = iter->next);
1812 iter->next = (struct lysp_node *)cas;
1813 }
1814
1815 /* parse argument */
1816 LY_CHECK_RET(yin_parse_attribute(ctx, attrs, YIN_ARG_NAME, &cas->name, Y_IDENTIF_ARG, YANG_CASE));
1817
1818 /* parse case content */
1819 struct tree_node_meta new_node_meta = {(struct lysp_node *)cas, &cas->child};
1820 struct yin_subelement subelems[14] = {
1821 {YANG_ANYDATA, &new_node_meta, YIN_SUBELEM_VER2},
1822 {YANG_ANYXML, &new_node_meta, 0},
David Sedlákb7abcfa2019-07-24 12:33:35 +02001823 {YANG_CHOICE, &new_node_meta, 0},
David Sedlák5379d392019-07-24 10:42:03 +02001824 {YANG_CONTAINER, &new_node_meta, 0},
1825 {YANG_DESCRIPTION, &cas->dsc, YIN_SUBELEM_UNIQUE},
1826 {YANG_IF_FEATURE, &cas->iffeatures, 0},
1827 {YANG_LEAF, &new_node_meta, 0},
1828 {YANG_LEAF_LIST, &new_node_meta, 0},
1829 {YANG_LIST, &new_node_meta, 0},
1830 {YANG_REFERENCE, &cas->ref, YIN_SUBELEM_UNIQUE},
1831 {YANG_STATUS, &cas->flags, YIN_SUBELEM_UNIQUE},
1832 {YANG_USES, &new_node_meta, 0},
1833 {YANG_WHEN, &cas->when, YIN_SUBELEM_UNIQUE},
1834 {YANG_CUSTOM, NULL, 0},
1835 };
1836 return yin_parse_content(ctx, subelems, 14, data, YANG_CASE, NULL, &cas->exts);
1837}
1838
1839/**
David Sedlák05404f62019-07-24 14:11:53 +02001840 * @brief Parse choice element.
David Sedlákb7abcfa2019-07-24 12:33:35 +02001841 *
1842 * @param[in,out] ctx YIN parser context for logging and to store current state.
1843 * @param[in] attrs [Sized array](@ref sizedarrays) of attributes of current element.
1844 * @param[in,out] data Data to read from, always moved to currently handled character.
David Sedlák05404f62019-07-24 14:11:53 +02001845 * @param[in] node_meta Meta information about parent node and siblings.
David Sedlákb7abcfa2019-07-24 12:33:35 +02001846 *
1847 * @return LY_ERR values.
1848 */
1849LY_ERR
1850yin_parse_choice(struct yin_parser_ctx *ctx, struct yin_arg_record *attrs, const char **data,
1851 struct tree_node_meta *node_meta)
1852{
1853 struct lysp_node *iter;
1854 struct lysp_node_choice *choice;
1855
1856 /* create new choice */
1857 choice = calloc(1, sizeof *choice);
1858 LY_CHECK_ERR_RET(!choice, LOGMEM(ctx->xml_ctx.ctx), LY_EMEM);
1859 choice->nodetype = LYS_CHOICE;
1860 choice->parent = node_meta->parent;
1861
1862 /* insert into siblings */
1863 if (!*(node_meta->siblings)) {
1864 *node_meta->siblings = (struct lysp_node *)choice;
1865 } else {
1866 for (iter = *node_meta->siblings; iter->next; iter = iter->next);
1867 iter->next = (struct lysp_node *)choice;
1868 }
1869
1870 /* parse argument */
1871 LY_CHECK_RET(yin_parse_attribute(ctx, attrs, YIN_ARG_NAME, &choice->name, Y_IDENTIF_ARG, YANG_CHOICE));
1872
1873 /* parse choice content */
1874 struct tree_node_meta new_node_meta = {(struct lysp_node *)choice, &choice->child};
1875 struct yin_subelement subelems[17] = {
1876 {YANG_ANYDATA, &new_node_meta, YIN_SUBELEM_VER2},
1877 {YANG_ANYXML, &new_node_meta, 0},
1878 {YANG_CASE, &new_node_meta, 0},
1879 {YANG_CHOICE, &new_node_meta, YIN_SUBELEM_VER2},
1880 {YANG_CONFIG, &choice->flags, YIN_SUBELEM_UNIQUE},
1881 {YANG_CONTAINER, &new_node_meta, 0},
1882 {YANG_DEFAULT, &choice->dflt, YIN_SUBELEM_UNIQUE},
1883 {YANG_DESCRIPTION, &choice->dsc, YIN_SUBELEM_UNIQUE},
1884 {YANG_IF_FEATURE, &choice->iffeatures, 0},
1885 {YANG_LEAF, &new_node_meta, 0},
1886 {YANG_LEAF_LIST, &new_node_meta, 0},
1887 {YANG_LIST, &new_node_meta, 0},
1888 {YANG_MANDATORY, &choice->flags, YIN_SUBELEM_UNIQUE},
1889 {YANG_REFERENCE, &choice->ref, YIN_SUBELEM_UNIQUE},
1890 {YANG_STATUS, &choice->flags, YIN_SUBELEM_UNIQUE},
1891 {YANG_WHEN, &choice->when, YIN_SUBELEM_UNIQUE},
1892 {YANG_CUSTOM, NULL, 0},
1893 };
1894 return yin_parse_content(ctx, subelems, 17, data, YANG_CHOICE, NULL, &choice->exts);
1895}
1896
1897/**
David Sedlák05404f62019-07-24 14:11:53 +02001898 * @brief Parse input or output element.
1899 *
1900 * @param[in,out] ctx YIN parser context for logging and to store current state.
1901 * @param[in] attrs [Sized array](@ref sizedarrays) of attributes of current element.
1902 * @param[in,out] data Data to read from, always moved to currently handled character.
1903 * @param[in] inout_meta Meta information about parent node and siblings and input/output pointer to write to.
1904 *
1905 * @return LY_ERR values.
1906 */
1907static LY_ERR
1908yin_parse_inout(struct yin_parser_ctx *ctx, struct yin_arg_record *attrs, const char **data, enum yang_keyword inout_kw,
1909 struct inout_meta *inout_meta)
1910{
1911 /* initiate structure */
1912 inout_meta->inout_p->nodetype = (inout_kw == YANG_INPUT) ? LYS_INPUT : LYS_OUTPUT;
1913 inout_meta->inout_p->parent = inout_meta->parent;
1914
1915 /* check attributes */
1916 LY_CHECK_RET(yin_parse_attribute(ctx, attrs, YIN_ARG_NONE, NULL, Y_MAYBE_STR_ARG, inout_kw));
1917
1918 /* parser input/output content */
1919 struct tree_node_meta node_meta = {(struct lysp_node *)inout_meta->inout_p, &inout_meta->inout_p->data};
1920 struct grouping_meta grp_meta = {(struct lysp_node *)inout_meta->inout_p, &inout_meta->inout_p->groupings};
1921 struct typedef_meta typedef_meta = {(struct lysp_node *)inout_meta->inout_p, &inout_meta->inout_p->typedefs};
1922 struct yin_subelement subelems[12] = {
1923 {YANG_ANYDATA, &node_meta, YIN_SUBELEM_VER2},
1924 {YANG_ANYXML, &node_meta, 0},
1925 {YANG_CHOICE, &node_meta, 0},
1926 {YANG_CONTAINER, &node_meta, 0},
1927 {YANG_GROUPING, &grp_meta, 0},
1928 {YANG_LEAF, &node_meta, 0},
1929 {YANG_LEAF_LIST, &node_meta, 0},
1930 {YANG_LIST, &node_meta, 0},
1931 {YANG_MUST, &inout_meta->inout_p->musts, YIN_SUBELEM_VER2},
1932 {YANG_TYPEDEF, &typedef_meta, 0},
1933 {YANG_USES, &node_meta, 0},
1934 {YANG_CUSTOM, NULL, 0},
1935 };
1936 LY_CHECK_RET(yin_parse_content(ctx, subelems, 12, data, inout_kw, NULL, &inout_meta->inout_p->exts));
1937
1938 /* finalize parent pointers to the reallocated items */
1939 LY_CHECK_RET(lysp_parse_finalize_reallocated((struct lys_parser_ctx *)ctx, inout_meta->inout_p->groupings,
1940 NULL, NULL, NULL));
1941
1942 return LY_SUCCESS;
1943}
1944
David Sedlák992fb7c2019-07-24 16:51:01 +02001945/**
1946 * @brief Parse action element.
1947 *
1948 * @param[in,out] ctx YIN parser context for logging and to store current state.
1949 * @param[in] attrs [Sized array](@ref sizedarrays) of attributes of current element.
1950 * @param[in,out] data Data to read from, always moved to currently handled character.
1951 * @param[in] act_meta Meta information about parent node and actions to add to.
1952 *
1953 * @return LY_ERR values.
1954 */
David Sedlák85d0eca2019-07-24 15:15:21 +02001955static LY_ERR
1956yin_parse_action(struct yin_parser_ctx *ctx, struct yin_arg_record *attrs, const char **data,
1957 struct action_meta *act_meta)
1958{
1959 struct lysp_action *act;
1960
1961 /* create new action */
1962 LY_ARRAY_NEW_RET(ctx->xml_ctx.ctx, *act_meta->actions, act, LY_EMEM);
1963 act->nodetype = LYS_ACTION;
1964 act->parent = act_meta->parent;
1965
1966 /* parse argument */
1967 LY_CHECK_RET(yin_parse_attribute(ctx, attrs, YIN_ARG_NAME, &act->name, Y_IDENTIF_ARG, YANG_ACTION));
1968
1969 /* parse content */
1970 struct grouping_meta grp_meta = {(struct lysp_node *)act, &act->groupings};
1971 struct typedef_meta typedef_meta = {(struct lysp_node *)act, &act->typedefs};
1972 struct inout_meta input = {(struct lysp_node *)act, &act->input};
1973 struct inout_meta output = {(struct lysp_node *)act, &act->output};
1974 struct yin_subelement subelems[9] = {
1975 {YANG_DESCRIPTION, &act->dsc, YIN_SUBELEM_UNIQUE},
1976 {YANG_GROUPING, &grp_meta, 0},
1977 {YANG_IF_FEATURE, &act->iffeatures, 0},
1978 {YANG_INPUT, &input, YIN_SUBELEM_UNIQUE},
1979 {YANG_OUTPUT, &output, YIN_SUBELEM_UNIQUE},
1980 {YANG_REFERENCE, &act->ref, YIN_SUBELEM_UNIQUE},
1981 {YANG_STATUS, &act->flags, YIN_SUBELEM_UNIQUE},
1982 {YANG_TYPEDEF, &typedef_meta, 0},
1983 {YANG_CUSTOM, NULL, 0},
1984 };
1985 LY_CHECK_RET(yin_parse_content(ctx, subelems, 9, data, YANG_ACTION, NULL, &act->exts));
1986 LY_CHECK_RET(lysp_parse_finalize_reallocated((struct lys_parser_ctx *)ctx, act->groupings, NULL, NULL, NULL));
1987
1988 return LY_SUCCESS;
1989}
1990
David Sedlák05404f62019-07-24 14:11:53 +02001991/**
David Sedlák992fb7c2019-07-24 16:51:01 +02001992 * @brief Parse augment element.
1993 *
1994 * @param[in,out] ctx YIN parser context for logging and to store current state.
1995 * @param[in] attrs [Sized array](@ref sizedarrays) of attributes of current element.
1996 * @param[in,out] data Data to read from, always moved to currently handled character.
1997 * @param[in] aug_meta Meta information about parent node and augments to add to.
1998 *
1999 * @return LY_ERR values.
2000 */
2001static LY_ERR
2002yin_parse_augment(struct yin_parser_ctx *ctx, struct yin_arg_record *attrs, const char **data,
2003 struct augment_meta *aug_meta)
2004{
2005 struct lysp_augment *aug;
2006
2007 /* create new augment */
2008 LY_ARRAY_NEW_RET(ctx->xml_ctx.ctx, *aug_meta->augments, aug, LY_EMEM);
2009 aug->nodetype = LYS_AUGMENT;
2010 aug->parent = aug_meta->parent;
2011
2012 /* parse argument */
2013 LY_CHECK_RET(yin_parse_attribute(ctx, attrs, YIN_ARG_TARGET_NODE, &aug->nodeid, Y_STR_ARG, YANG_AUGMENT));
2014 YANG_CHECK_NONEMPTY((struct lys_parser_ctx *)ctx, strlen(aug->nodeid), "augment");
2015
2016 /* parser augment content */
2017 struct action_meta act_meta = {(struct lysp_node *)aug, &aug->actions};
2018 struct tree_node_meta node_meta = {(struct lysp_node *)aug, &aug->child};
2019 struct notif_meta notif_meta = {(struct lysp_node *)aug, &aug->notifs};
2020 struct yin_subelement subelems[17] = {
2021 {YANG_ACTION, &act_meta, YIN_SUBELEM_VER2},
2022 {YANG_ANYDATA, &node_meta, YIN_SUBELEM_VER2},
2023 {YANG_ANYXML, &node_meta, 0},
2024 {YANG_CASE, &node_meta, 0},
2025 {YANG_CHOICE, &node_meta, 0},
2026 {YANG_CONTAINER, &node_meta, 0},
2027 {YANG_DESCRIPTION, &aug->dsc, YIN_SUBELEM_UNIQUE},
2028 {YANG_IF_FEATURE, &aug->iffeatures, 0},
2029 {YANG_LEAF, &node_meta, 0},
2030 {YANG_LEAF_LIST, &node_meta, 0},
2031 {YANG_LIST, &node_meta, 0},
2032 {YANG_NOTIFICATION, &notif_meta, YIN_SUBELEM_VER2},
2033 {YANG_REFERENCE, &aug->ref, YIN_SUBELEM_UNIQUE},
2034 {YANG_STATUS, &aug->flags, YIN_SUBELEM_UNIQUE},
2035 {YANG_USES, &node_meta, 0},
2036 {YANG_WHEN, &aug->when, YIN_SUBELEM_UNIQUE},
2037 {YANG_CUSTOM, NULL, 0},
2038 };
2039 LY_CHECK_RET(yin_parse_content(ctx, subelems, 17, data, YANG_AUGMENT, NULL, &aug->exts));
2040
2041 LY_CHECK_RET(lysp_parse_finalize_reallocated((struct lys_parser_ctx *)ctx, NULL, NULL, aug->actions, aug->notifs));
2042
2043 return LY_SUCCESS;
2044}
2045
David Sedlák4ffcec82019-07-25 15:10:21 +02002046static LY_ERR
2047yin_parse_deviate(struct yin_parser_ctx *ctx, struct yin_arg_record *attrs, const char **data,
2048 struct lysp_deviate **deviates)
2049{
2050 LY_ERR ret = LY_SUCCESS;
2051 uint8_t dev_mod;
2052 const char *temp_val;
2053 struct lysp_deviate *iter, *d;
2054 struct lysp_deviate_add *d_add = NULL;
2055 struct lysp_deviate_rpl *d_rpl = NULL;
2056 struct lysp_deviate_del *d_del = NULL;
2057
2058 /* parse argument */
2059 LY_CHECK_RET(yin_parse_attribute(ctx, attrs, YIN_ARG_VALUE, &temp_val, Y_STR_ARG, YANG_DEVIATE));
2060
2061 if (strcmp(temp_val, "not-supported") == 0) {
2062 dev_mod = LYS_DEV_NOT_SUPPORTED;
2063 } else if (strcmp(temp_val, "add") == 0) {
2064 dev_mod = LYS_DEV_ADD;
2065 } else if (strcmp(temp_val, "replace") == 0) {
2066 dev_mod = LYS_DEV_REPLACE;
2067 } else if (strcmp(temp_val, "delete") == 0) {
2068 dev_mod = LYS_DEV_DELETE;
2069 } else {
2070 LOGVAL_PARSER((struct lys_parser_ctx *)ctx, LY_VCODE_INVAL, strlen(temp_val), temp_val, "deviate");
2071 FREE_STRING(ctx->xml_ctx.ctx, temp_val);
2072 return LY_EVALID;
2073 }
2074 FREE_STRING(ctx->xml_ctx.ctx, temp_val);
2075
2076 if (dev_mod == LYS_DEV_NOT_SUPPORTED) {
2077 d = calloc(1, sizeof *d);
2078 LY_CHECK_ERR_RET(!d, LOGMEM(ctx->xml_ctx.ctx), LY_EMEM);
2079 struct yin_subelement subelems[1] = {
2080 {YANG_CUSTOM, NULL, 0}
2081 };
2082 ret = yin_parse_content(ctx, subelems, 1, data, YANG_DEVIATE, NULL, &d->exts);
2083
2084 } else if (dev_mod == LYS_DEV_ADD) {
2085 d_add = calloc(1, sizeof *d_add);
2086 LY_CHECK_ERR_RET(!d_add, LOGMEM(ctx->xml_ctx.ctx), LY_EMEM);
2087 d = (struct lysp_deviate *)d_add;
2088 struct minmax_dev_meta min = {&d_add->min, &d_add->flags, &d_add->exts};
2089 struct minmax_dev_meta max = {&d_add->max, &d_add->flags, &d_add->exts};
2090 struct yin_subelement subelems[9] = {
2091 {YANG_CONFIG, &d_add->flags, YIN_SUBELEM_UNIQUE},
2092 {YANG_DEFAULT, &d_add->dflts, 0},
2093 {YANG_MANDATORY, &d_add->flags, YIN_SUBELEM_UNIQUE},
2094 {YANG_MAX_ELEMENTS, &max, YIN_SUBELEM_UNIQUE},
2095 {YANG_MIN_ELEMENTS, &min, YIN_SUBELEM_UNIQUE},
2096 {YANG_MUST, &d_add->musts, 0},
2097 {YANG_UNIQUE, &d_add->uniques, 0},
2098 {YANG_UNITS, &d_add->units, YIN_SUBELEM_UNIQUE},
2099 {YANG_CUSTOM, NULL, 0},
2100 };
2101 ret = yin_parse_content(ctx, subelems, 9, data, YANG_DEVIATE, NULL, &d_add->exts);
2102
2103 } else if (dev_mod == LYS_DEV_REPLACE) {
2104 d_rpl = calloc(1, sizeof *d_rpl);
2105 LY_CHECK_ERR_RET(!d_rpl, LOGMEM(ctx->xml_ctx.ctx), LY_EMEM);
2106 d = (struct lysp_deviate *)d_rpl;
2107 struct minmax_dev_meta min = {&d_rpl->min, &d_rpl->flags, &d_rpl->exts};
2108 struct minmax_dev_meta max = {&d_rpl->max, &d_rpl->flags, &d_rpl->exts};
2109 struct yin_subelement subelems[8] = {
2110 {YANG_CONFIG, &d_rpl->flags, YIN_SUBELEM_UNIQUE},
2111 {YANG_DEFAULT, &d_rpl->dflt, YIN_SUBELEM_UNIQUE},
2112 {YANG_MANDATORY, &d_rpl->flags, YIN_SUBELEM_UNIQUE},
2113 {YANG_MAX_ELEMENTS, &max, YIN_SUBELEM_UNIQUE},
2114 {YANG_MIN_ELEMENTS, &min, YIN_SUBELEM_UNIQUE},
2115 {YANG_TYPE, &d_rpl->type, YIN_SUBELEM_UNIQUE},
2116 {YANG_UNITS, &d_rpl->units, YIN_SUBELEM_UNIQUE},
2117 {YANG_CUSTOM, NULL, 0},
2118 };
2119 ret = yin_parse_content(ctx, subelems, 8, data, YANG_DEVIATE, NULL, &d_rpl->exts);
2120
2121 } else {
2122 d_del = calloc(1, sizeof *d_del);
2123 LY_CHECK_ERR_RET(!d_del, LOGMEM(ctx->xml_ctx.ctx), LY_EMEM);
2124 d = (struct lysp_deviate *)d_del;
2125 struct yin_subelement subelems[5] = {
2126 {YANG_DEFAULT, &d_del->dflts, 0},
2127 {YANG_MUST, &d_del->musts, 0},
2128 {YANG_UNIQUE, &d_del->uniques, 0},
2129 {YANG_UNITS, &d_del->units, YIN_SUBELEM_UNIQUE},
2130 {YANG_CUSTOM, NULL, 0},
2131 };
2132 ret = yin_parse_content(ctx, subelems, 5, data, YANG_DEVIATE, NULL, &d_del->exts);
2133 }
2134 LY_CHECK_GOTO(ret, cleanup);
2135
2136 d->mod = dev_mod;
2137 /* insert into siblings */
2138 if (!*deviates) {
2139 *deviates = d;
2140 } else {
2141 for (iter = *deviates; iter->next; iter = iter->next);
2142 iter->next = d;
2143 }
2144
2145 return ret;
2146
2147cleanup:
2148 free(d);
2149 /* TODO log deviate error */
2150 return ret;
2151}
2152
David Sedlák992fb7c2019-07-24 16:51:01 +02002153/**
David Sedlákb4e44562019-07-04 15:42:12 +02002154 * @brief Map keyword type to substatement info.
2155 *
2156 * @param[in] kw Keyword type.
2157 *
2158 * @return correct LYEXT_SUBSTMT information.
2159 */
2160static LYEXT_SUBSTMT
2161kw2lyext_substmt(enum yang_keyword kw)
2162{
2163 switch (kw) {
2164 case YANG_ARGUMENT:
2165 return LYEXT_SUBSTMT_ARGUMENT;
2166 case YANG_BASE:
2167 return LYEXT_SUBSTMT_BASE;
2168 case YANG_BELONGS_TO:
2169 return LYEXT_SUBSTMT_BELONGSTO;
2170 case YANG_CONTACT:
2171 return LYEXT_SUBSTMT_CONTACT;
2172 case YANG_DEFAULT:
2173 return LYEXT_SUBSTMT_DEFAULT;
2174 case YANG_DESCRIPTION:
2175 return LYEXT_SUBSTMT_DESCRIPTION;
2176 case YANG_ERROR_APP_TAG:
2177 return LYEXT_SUBSTMT_ERRTAG;
2178 case YANG_ERROR_MESSAGE:
2179 return LYEXT_SUBSTMT_ERRMSG;
2180 case YANG_KEY:
2181 return LYEXT_SUBSTMT_KEY;
2182 case YANG_NAMESPACE:
2183 return LYEXT_SUBSTMT_NAMESPACE;
2184 case YANG_ORGANIZATION:
2185 return LYEXT_SUBSTMT_ORGANIZATION;
2186 case YANG_PATH:
2187 return LYEXT_SUBSTMT_PATH;
2188 case YANG_PREFIX:
2189 return LYEXT_SUBSTMT_PREFIX;
2190 case YANG_PRESENCE:
2191 return LYEXT_SUBSTMT_PRESENCE;
2192 case YANG_REFERENCE:
2193 return LYEXT_SUBSTMT_REFERENCE;
2194 case YANG_REVISION_DATE:
2195 return LYEXT_SUBSTMT_REVISIONDATE;
2196 case YANG_UNITS:
2197 return LYEXT_SUBSTMT_UNITS;
2198 case YANG_VALUE:
2199 return LYEXT_SUBSTMT_VALUE;
2200 case YANG_YANG_VERSION:
2201 return LYEXT_SUBSTMT_VERSION;
2202 case YANG_MODIFIER:
2203 return LYEXT_SUBSTMT_MODIFIER;
2204 case YANG_REQUIRE_INSTANCE:
2205 return LYEXT_SUBSTMT_REQINSTANCE;
2206 case YANG_YIN_ELEMENT:
2207 return LYEXT_SUBSTMT_YINELEM;
2208 case YANG_CONFIG:
2209 return LYEXT_SUBSTMT_CONFIG;
2210 case YANG_MANDATORY:
2211 return LYEXT_SUBSTMT_MANDATORY;
2212 case YANG_ORDERED_BY:
2213 return LYEXT_SUBSTMT_ORDEREDBY;
2214 case YANG_STATUS:
2215 return LYEXT_SUBSTMT_STATUS;
2216 case YANG_FRACTION_DIGITS:
2217 return LYEXT_SUBSTMT_FRACDIGITS;
2218 case YANG_MAX_ELEMENTS:
2219 return LYEXT_SUBSTMT_MAX;
2220 case YANG_MIN_ELEMENTS:
2221 return LYEXT_SUBSTMT_MIN;
2222 case YANG_POSITION:
2223 return LYEXT_SUBSTMT_POSITION;
2224 case YANG_UNIQUE:
2225 return LYEXT_SUBSTMT_UNIQUE;
2226 case YANG_IF_FEATURE:
2227 return LYEXT_SUBSTMT_IFFEATURE;
2228 default:
2229 return LYEXT_SUBSTMT_SELF;
2230 }
2231}
2232
David Sedlákd6e56892019-07-01 15:40:24 +02002233LY_ERR
David Sedlákda8ffa32019-07-08 14:17:10 +02002234yin_parse_content(struct yin_parser_ctx *ctx, struct yin_subelement *subelem_info, signed char subelem_info_size,
David Sedlák3ffbc522019-07-02 17:49:28 +02002235 const char **data, enum yang_keyword current_element, const char **text_content, struct lysp_ext_instance **exts)
David Sedlákd6e56892019-07-01 15:40:24 +02002236{
2237 LY_ERR ret = LY_SUCCESS;
2238 struct sized_string prefix, name;
David Sedlák8e7bda82019-07-16 17:57:50 +02002239 char *out = NULL;
2240 size_t out_len = 0;
2241 int dynamic = 0;
David Sedlák1af868e2019-07-17 17:03:14 +02002242 struct yin_arg_record *attrs = NULL;
David Sedlákd6e56892019-07-01 15:40:24 +02002243 enum yang_keyword kw = YANG_NONE;
David Sedlák1af868e2019-07-17 17:03:14 +02002244 struct yin_subelement *subelem = NULL;
David Sedlák374d2b32019-07-17 15:06:55 +02002245 struct lysp_type *type, *nested_type;
David Sedlák09e18c92019-07-18 11:17:11 +02002246
David Sedlákb0faad82019-07-04 14:28:59 +02002247 assert(is_ordered(subelem_info, subelem_info_size));
David Sedlákd6e56892019-07-01 15:40:24 +02002248
David Sedlákda8ffa32019-07-08 14:17:10 +02002249 if (ctx->xml_ctx.status == LYXML_ELEM_CONTENT) {
2250 ret = lyxml_get_string(&ctx->xml_ctx, data, &out, &out_len, &out, &out_len, &dynamic);
David Sedlákd6e56892019-07-01 15:40:24 +02002251 /* current element has subelements as content */
2252 if (ret == LY_EINVAL) {
David Sedlákda8ffa32019-07-08 14:17:10 +02002253 while (ctx->xml_ctx.status == LYXML_ELEMENT) {
2254 ret = lyxml_get_element(&ctx->xml_ctx, data, &prefix.value, &prefix.len, &name.value, &name.len);
David Sedlákd6e56892019-07-01 15:40:24 +02002255 LY_CHECK_GOTO(ret, cleanup);
2256 if (!name.value) {
2257 /* end of current element reached */
2258 break;
2259 }
David Sedlák1af868e2019-07-17 17:03:14 +02002260 ret = yin_load_attributes(ctx, data, &attrs);
David Sedlákd6e56892019-07-01 15:40:24 +02002261 LY_CHECK_GOTO(ret, cleanup);
David Sedlákc1771b12019-07-10 15:55:46 +02002262 kw = yin_match_keyword(ctx, name.value, name.len, prefix.value, prefix.len, current_element);
David Sedlákd6e56892019-07-01 15:40:24 +02002263
2264 /* check if this element can be child of current element */
David Sedlák1af868e2019-07-17 17:03:14 +02002265 subelem = get_record(kw, subelem_info_size, subelem_info);
2266 if (!subelem) {
David Sedlák4ffcec82019-07-25 15:10:21 +02002267 if (current_element == YANG_DEVIATE && isdevsub(kw)) {
2268 LOGVAL_PARSER((struct lys_parser_ctx *)ctx, LY_VCODE_INDEV_YIN, ly_stmt2str(kw));
2269 } else {
2270 LOGVAL_PARSER((struct lys_parser_ctx *)ctx, LY_VCODE_UNEXP_SUBELEM, name.len, name.value, ly_stmt2str(current_element));
2271 }
David Sedlákd6e56892019-07-01 15:40:24 +02002272 ret = LY_EVALID;
2273 goto cleanup;
2274 }
2275
David Sedlák5f8191e2019-07-08 16:35:52 +02002276 /* TODO check relative order */
2277
David Sedlák4ffcec82019-07-25 15:10:21 +02002278 /* flag check */
David Sedlák1af868e2019-07-17 17:03:14 +02002279 if ((subelem->flags & YIN_SUBELEM_UNIQUE) && (subelem->flags & YIN_SUBELEM_PARSED)) {
David Sedlák4ffcec82019-07-25 15:10:21 +02002280 /* subelement uniquenes */
David Sedlákda8ffa32019-07-08 14:17:10 +02002281 LOGVAL_PARSER((struct lys_parser_ctx *)ctx, LYVE_SYNTAX_YIN, "Redefinition of %s element in %s element.", ly_stmt2str(kw), ly_stmt2str(current_element));
David Sedlák21f87cd2019-07-03 16:53:23 +02002282 return LY_EVALID;
2283 }
David Sedlák1af868e2019-07-17 17:03:14 +02002284 if (subelem->flags & YIN_SUBELEM_FIRST) {
David Sedlák4ffcec82019-07-25 15:10:21 +02002285 /* subelement is supposed to be defined as first subelement */
David Sedlák1af868e2019-07-17 17:03:14 +02002286 ret = yin_check_subelem_first_constraint(ctx, subelem_info, subelem_info_size, current_element, subelem);
David Sedlák66d7c842019-07-11 15:06:04 +02002287 LY_CHECK_GOTO(ret, cleanup);
David Sedlák21f87cd2019-07-03 16:53:23 +02002288 }
David Sedlák0c2bab92019-07-22 15:33:19 +02002289 if (subelem->flags & YIN_SUBELEM_VER2) {
David Sedlák4ffcec82019-07-25 15:10:21 +02002290 /* subelement is supported only in version 1.1 or higher */
David Sedlák0c2bab92019-07-22 15:33:19 +02002291 if (ctx->mod_version < 2) {
2292 LOGVAL_PARSER((struct lys_parser_ctx *)ctx, LYVCODE_INSUBELEM2, ly_stmt2str(kw), ly_stmt2str(current_element));
David Sedlák9bb1c042019-07-22 16:45:37 +02002293 ret = LY_EVALID;
2294 goto cleanup;
David Sedlák0c2bab92019-07-22 15:33:19 +02002295 }
2296 }
David Sedlák4ffcec82019-07-25 15:10:21 +02002297 /* note that element was parsed for easy uniqueness check in next iterations */
David Sedlák1af868e2019-07-17 17:03:14 +02002298 subelem->flags |= YIN_SUBELEM_PARSED;
David Sedlák21f87cd2019-07-03 16:53:23 +02002299
David Sedlákd6e56892019-07-01 15:40:24 +02002300 switch (kw) {
David Sedlák4ffcec82019-07-25 15:10:21 +02002301 /* call responsible function */
David Sedlákd6e56892019-07-01 15:40:24 +02002302 case YANG_CUSTOM:
David Sedlák1af868e2019-07-17 17:03:14 +02002303 ret = yin_parse_extension_instance(ctx, attrs, data, name2fullname(name.value, prefix.len),
David Sedlák3ffbc522019-07-02 17:49:28 +02002304 namelen2fulllen(name.len, prefix.len),
David Sedlák1af868e2019-07-17 17:03:14 +02002305 kw2lyext_substmt(current_element),
2306 (subelem->dest) ? *((uint32_t*)subelem->dest) : 0, exts);
David Sedlákd6e56892019-07-01 15:40:24 +02002307 break;
2308 case YANG_ACTION:
David Sedlákeaa45792019-07-24 15:25:01 +02002309 case YANG_RPC:
David Sedlák85d0eca2019-07-24 15:15:21 +02002310 ret = yin_parse_action(ctx, attrs, data, (struct action_meta *)subelem->dest);
David Sedlákd6e56892019-07-01 15:40:24 +02002311 break;
2312 case YANG_ANYDATA:
David Sedlákd6e56892019-07-01 15:40:24 +02002313 case YANG_ANYXML:
David Sedlák8a83bbb2019-07-18 14:46:00 +02002314 ret = yin_parse_any(ctx, attrs, data, kw, (struct tree_node_meta *)subelem->dest);
David Sedlákd6e56892019-07-01 15:40:24 +02002315 break;
2316 case YANG_ARGUMENT:
David Sedlák1af868e2019-07-17 17:03:14 +02002317 ret = yin_parse_argument_element(ctx, attrs, data, (struct yin_argument_meta *)subelem->dest, exts);
David Sedlákd6e56892019-07-01 15:40:24 +02002318 break;
2319 case YANG_AUGMENT:
David Sedlák992fb7c2019-07-24 16:51:01 +02002320 ret = yin_parse_augment(ctx, attrs, data, (struct augment_meta *)subelem->dest);
David Sedlákd6e56892019-07-01 15:40:24 +02002321 break;
2322 case YANG_BASE:
David Sedláka62750b2019-07-16 11:21:31 +02002323 if (current_element == YANG_TYPE) {
David Sedlák1af868e2019-07-17 17:03:14 +02002324 type = (struct lysp_type *)subelem->dest;
2325 ret = yin_parse_simple_elements(ctx, attrs, data, kw, &type->bases, YIN_ARG_NAME,
David Sedlák292763b2019-07-09 11:10:53 +02002326 Y_PREF_IDENTIF_ARG, exts);
2327 type->flags |= LYS_SET_BASE;
David Sedláka62750b2019-07-16 11:21:31 +02002328 } else if (current_element == YANG_IDENTITY) {
David Sedlák1af868e2019-07-17 17:03:14 +02002329 ret = yin_parse_simple_elements(ctx, attrs, data, kw, (const char ***)subelem->dest,
David Sedlák292763b2019-07-09 11:10:53 +02002330 YIN_ARG_NAME, Y_PREF_IDENTIF_ARG, exts);
2331 } else {
2332 LOGINT(ctx->xml_ctx.ctx);
2333 ret = LY_EINT;
2334 }
David Sedlákd6e56892019-07-01 15:40:24 +02002335 break;
2336 case YANG_BELONGS_TO:
David Sedlák1af868e2019-07-17 17:03:14 +02002337 ret = yin_parse_belongs_to(ctx, attrs, data, (struct lysp_submodule *)subelem->dest, exts);
David Sedlákd6e56892019-07-01 15:40:24 +02002338 break;
2339 case YANG_BIT:
David Sedlák07869a52019-07-12 14:28:19 +02002340 case YANG_ENUM:
David Sedlák1af868e2019-07-17 17:03:14 +02002341 ret = yin_parse_enum_bit(ctx, attrs, data, kw, (struct lysp_type *)subelem->dest);
David Sedlákd6e56892019-07-01 15:40:24 +02002342 break;
2343 case YANG_CASE:
David Sedlák5379d392019-07-24 10:42:03 +02002344 ret = yin_parse_case(ctx, attrs, data, (struct tree_node_meta *)subelem->dest);
David Sedlákd6e56892019-07-01 15:40:24 +02002345 break;
2346 case YANG_CHOICE:
David Sedlákb7abcfa2019-07-24 12:33:35 +02002347 ret = yin_parse_choice(ctx, attrs, data, (struct tree_node_meta *)subelem->dest);
David Sedlákd6e56892019-07-01 15:40:24 +02002348 break;
2349 case YANG_CONFIG:
David Sedlák1af868e2019-07-17 17:03:14 +02002350 ret = yin_parse_config(ctx, attrs, data, (uint16_t *)subelem->dest, exts);
David Sedlákd6e56892019-07-01 15:40:24 +02002351 break;
2352 case YANG_CONTACT:
David Sedlák619db942019-07-03 14:47:30 +02002353 case YANG_DESCRIPTION:
2354 case YANG_ORGANIZATION:
2355 case YANG_REFERENCE:
David Sedlák1af868e2019-07-17 17:03:14 +02002356 ret = yin_parse_meta_element(ctx, data, kw, (const char **)subelem->dest, exts);
David Sedlákd6e56892019-07-01 15:40:24 +02002357 break;
2358 case YANG_CONTAINER:
David Sedlákf111bcb2019-07-23 17:15:51 +02002359 ret = yin_parse_container(ctx, attrs, data, (struct tree_node_meta *)subelem->dest);
David Sedlákd6e56892019-07-01 15:40:24 +02002360 break;
2361 case YANG_DEFAULT:
David Sedlákc3da3ef2019-07-19 12:56:08 +02002362 if (subelem->flags & YIN_SUBELEM_UNIQUE) {
2363 ret = yin_parse_simple_element(ctx, attrs, data, kw, (const char **)subelem->dest,
2364 YIN_ARG_VALUE, Y_STR_ARG, exts);
2365 } else {
2366 ret = yin_parse_simple_elements(ctx, attrs, data, kw, (const char ***)subelem->dest,
2367 YIN_ARG_VALUE, Y_STR_ARG, exts);
2368 }
David Sedlákd6e56892019-07-01 15:40:24 +02002369 break;
David Sedlákd6e56892019-07-01 15:40:24 +02002370 case YANG_DEVIATE:
David Sedlák4ffcec82019-07-25 15:10:21 +02002371 ret = yin_parse_deviate(ctx, attrs, data, (struct lysp_deviate **)subelem->dest);
David Sedlákd6e56892019-07-01 15:40:24 +02002372 break;
2373 case YANG_DEVIATION:
2374 break;
David Sedlákd6e56892019-07-01 15:40:24 +02002375 case YANG_ERROR_APP_TAG:
David Sedlák1af868e2019-07-17 17:03:14 +02002376 ret = yin_parse_simple_element(ctx, attrs, data, kw, (const char **)subelem->dest,
David Sedlák2ce1be62019-07-10 16:15:09 +02002377 YIN_ARG_VALUE, Y_STR_ARG, exts);
David Sedlákd6e56892019-07-01 15:40:24 +02002378 break;
2379 case YANG_ERROR_MESSAGE:
David Sedlák1af868e2019-07-17 17:03:14 +02002380 ret = yin_parse_err_msg_element(ctx, data, (const char **)subelem->dest, exts);
David Sedlákd6e56892019-07-01 15:40:24 +02002381 break;
2382 case YANG_EXTENSION:
David Sedlák1af868e2019-07-17 17:03:14 +02002383 ret = yin_parse_extension(ctx, attrs, data, (struct lysp_ext **)subelem->dest);
David Sedlákd6e56892019-07-01 15:40:24 +02002384 break;
2385 case YANG_FEATURE:
David Sedlák5e13dea2019-07-22 16:06:45 +02002386 ret = yin_parse_feature(ctx, attrs, data, (struct lysp_feature **)subelem->dest);
David Sedlákd6e56892019-07-01 15:40:24 +02002387 break;
2388 case YANG_FRACTION_DIGITS:
David Sedlák1af868e2019-07-17 17:03:14 +02002389 ret = yin_parse_fracdigits(ctx, attrs, data, (struct lysp_type *)subelem->dest);
David Sedlákd6e56892019-07-01 15:40:24 +02002390 break;
2391 case YANG_GROUPING:
David Sedláke3ce9ef2019-07-23 16:34:30 +02002392 ret = yin_parse_grouping(ctx, attrs, data, (struct grouping_meta *)subelem->dest);
David Sedlákd6e56892019-07-01 15:40:24 +02002393 break;
2394 case YANG_IDENTITY:
David Sedlák28794f22019-07-22 16:45:00 +02002395 ret = yin_parse_identity(ctx, attrs, data, (struct lysp_ident **)subelem->dest);
David Sedlákd6e56892019-07-01 15:40:24 +02002396 break;
2397 case YANG_IF_FEATURE:
David Sedlák1af868e2019-07-17 17:03:14 +02002398 ret = yin_parse_simple_elements(ctx, attrs, data, kw,
2399 (const char ***)subelem->dest, YIN_ARG_NAME, Y_STR_ARG, exts);
David Sedlákd6e56892019-07-01 15:40:24 +02002400 break;
2401 case YANG_IMPORT:
David Sedlák1af868e2019-07-17 17:03:14 +02002402 ret = yin_parse_import(ctx, attrs, data, (struct lysp_module *)subelem->dest);
David Sedlákd6e56892019-07-01 15:40:24 +02002403 break;
2404 case YANG_INCLUDE:
David Sedlák0c2bab92019-07-22 15:33:19 +02002405 ret = yin_parse_include(ctx, attrs, data, (struct include_meta *)subelem->dest);
David Sedlákd6e56892019-07-01 15:40:24 +02002406 break;
2407 case YANG_INPUT:
David Sedlák05404f62019-07-24 14:11:53 +02002408 case YANG_OUTPUT:
2409 ret = yin_parse_inout(ctx, attrs, data, kw, (struct inout_meta *)subelem->dest);
David Sedlákd6e56892019-07-01 15:40:24 +02002410 break;
2411 case YANG_KEY:
David Sedlák12470a82019-07-19 13:44:36 +02002412 ret = yin_parse_simple_element(ctx, attrs, data, kw, (const char **)subelem->dest, YIN_ARG_VALUE,
2413 Y_STR_ARG, exts);
David Sedlákd6e56892019-07-01 15:40:24 +02002414 break;
2415 case YANG_LEAF:
David Sedlák203ca3a2019-07-18 15:26:25 +02002416 ret = yin_parse_leaf(ctx, attrs, data, (struct tree_node_meta *)subelem->dest);
David Sedlákd6e56892019-07-01 15:40:24 +02002417 break;
2418 case YANG_LEAF_LIST:
David Sedlákc3da3ef2019-07-19 12:56:08 +02002419 ret = yin_parse_leaflist(ctx, attrs, data, (struct tree_node_meta *)subelem->dest);
David Sedlákd6e56892019-07-01 15:40:24 +02002420 break;
2421 case YANG_LENGTH:
David Sedlák1af868e2019-07-17 17:03:14 +02002422 type = (struct lysp_type *)subelem->dest;
David Sedlák438ae432019-07-11 15:36:54 +02002423 type->length = calloc(1, sizeof *type->length);
2424 LY_CHECK_ERR_GOTO(!type->length, LOGMEM(ctx->xml_ctx.ctx); ret = LY_EMEM, cleanup);
David Sedlák1af868e2019-07-17 17:03:14 +02002425 ret = yin_parse_restriction(ctx, attrs, data, kw, type->length);
David Sedlák438ae432019-07-11 15:36:54 +02002426 type->flags |= LYS_SET_LENGTH;
David Sedlákd6e56892019-07-01 15:40:24 +02002427 break;
2428 case YANG_LIST:
David Sedlákaf536aa2019-07-23 13:42:23 +02002429 ret = yin_parse_list(ctx, attrs, data, (struct tree_node_meta *)subelem->dest);
David Sedlákd6e56892019-07-01 15:40:24 +02002430 break;
2431 case YANG_MANDATORY:
David Sedlák1af868e2019-07-17 17:03:14 +02002432 ret = yin_parse_mandatory(ctx, attrs, data, (uint16_t *)subelem->dest, exts);
David Sedlákd6e56892019-07-01 15:40:24 +02002433 break;
2434 case YANG_MAX_ELEMENTS:
David Sedlákd6e56892019-07-01 15:40:24 +02002435 case YANG_MIN_ELEMENTS:
David Sedlák09e18c92019-07-18 11:17:11 +02002436 ret = yin_parse_minmax(ctx, attrs, data, current_element, kw, subelem->dest);
David Sedlákd6e56892019-07-01 15:40:24 +02002437 break;
2438 case YANG_MODIFIER:
David Sedlák1af868e2019-07-17 17:03:14 +02002439 ret = yin_parse_modifier(ctx, attrs, data, (const char **)subelem->dest, exts);
David Sedlákd6e56892019-07-01 15:40:24 +02002440 break;
2441 case YANG_MODULE:
2442 break;
2443 case YANG_MUST:
David Sedlák1af868e2019-07-17 17:03:14 +02002444 ret = yin_parse_must(ctx, attrs, data, (struct lysp_restr **)subelem->dest);
David Sedlákd6e56892019-07-01 15:40:24 +02002445 break;
2446 case YANG_NAMESPACE:
David Sedlák1af868e2019-07-17 17:03:14 +02002447 ret = yin_parse_simple_element(ctx, attrs, data, kw, (const char **)subelem->dest,
David Sedlák2ce1be62019-07-10 16:15:09 +02002448 YIN_ARG_URI, Y_STR_ARG, exts);
David Sedlákd6e56892019-07-01 15:40:24 +02002449 break;
2450 case YANG_NOTIFICATION:
David Sedlák031b9e72019-07-23 15:19:37 +02002451 ret = yin_parse_notification(ctx, attrs, data, (struct notif_meta *)subelem->dest);
David Sedlákd6e56892019-07-01 15:40:24 +02002452 break;
2453 case YANG_ORDERED_BY:
David Sedláka2dad212019-07-18 12:45:19 +02002454 ret = yin_parse_orderedby(ctx, attrs, data, (uint16_t *)subelem->dest, exts);
David Sedlákd6e56892019-07-01 15:40:24 +02002455 break;
David Sedlákd6e56892019-07-01 15:40:24 +02002456 case YANG_PATH:
David Sedlák1af868e2019-07-17 17:03:14 +02002457 type = (struct lysp_type *)subelem->dest;
2458 ret = yin_parse_simple_element(ctx, attrs, data, kw, &type->path,
David Sedlák58979872019-07-12 11:42:43 +02002459 YIN_ARG_VALUE, Y_STR_ARG, exts);
2460 type->flags |= LYS_SET_PATH;
David Sedlákd6e56892019-07-01 15:40:24 +02002461 break;
2462 case YANG_PATTERN:
David Sedlák1af868e2019-07-17 17:03:14 +02002463 ret = yin_parse_pattern(ctx, attrs, data, (struct lysp_type *)subelem->dest);
David Sedlákd6e56892019-07-01 15:40:24 +02002464 break;
David Sedlák5545f5d2019-07-11 11:55:16 +02002465 case YANG_VALUE:
David Sedlákd6e56892019-07-01 15:40:24 +02002466 case YANG_POSITION:
David Sedlák1af868e2019-07-17 17:03:14 +02002467 ret = yin_parse_value_pos_element(ctx, attrs, data, kw,
2468 (struct lysp_type_enum *)subelem->dest);
David Sedlákd6e56892019-07-01 15:40:24 +02002469 break;
2470 case YANG_PREFIX:
David Sedlák1af868e2019-07-17 17:03:14 +02002471 ret = yin_parse_simple_element(ctx, attrs, data, kw,
2472 (const char **)subelem->dest, YIN_ARG_VALUE, Y_IDENTIF_ARG, exts);
David Sedlákd6e56892019-07-01 15:40:24 +02002473 break;
2474 case YANG_PRESENCE:
David Sedlákcb39f642019-07-19 13:19:55 +02002475 ret = yin_parse_simple_element(ctx, attrs, data, kw, (const char **)subelem->dest, YIN_ARG_VALUE,
2476 Y_STR_ARG, exts);
David Sedlákd6e56892019-07-01 15:40:24 +02002477 break;
2478 case YANG_RANGE:
David Sedlák1af868e2019-07-17 17:03:14 +02002479 type = (struct lysp_type *)subelem->dest;
David Sedlákb7296dd2019-07-11 14:58:38 +02002480 type->range = calloc(1, sizeof *type->range);
David Sedlák66d7c842019-07-11 15:06:04 +02002481 LY_CHECK_ERR_GOTO(!type->range, LOGMEM(ctx->xml_ctx.ctx); ret = LY_EMEM, cleanup);
David Sedlák1af868e2019-07-17 17:03:14 +02002482 ret = yin_parse_restriction(ctx, attrs, data, kw, type->range);
David Sedlák438ae432019-07-11 15:36:54 +02002483 type->flags |= LYS_SET_RANGE;
David Sedlákd6e56892019-07-01 15:40:24 +02002484 break;
David Sedlákd6e56892019-07-01 15:40:24 +02002485 case YANG_REFINE:
David Sedlákd2d676a2019-07-22 11:28:19 +02002486 ret = yin_parse_refine(ctx, attrs, data, (struct lysp_refine **)subelem->dest);
David Sedlákd6e56892019-07-01 15:40:24 +02002487 break;
2488 case YANG_REQUIRE_INSTANCE:
David Sedlák1af868e2019-07-17 17:03:14 +02002489 ret = yin_pasrse_reqinstance(ctx, attrs, data, (struct lysp_type *)subelem->dest);
David Sedlákd6e56892019-07-01 15:40:24 +02002490 break;
2491 case YANG_REVISION:
David Sedlákaa854b02019-07-22 14:17:10 +02002492 ret = yin_parse_revision(ctx, attrs, data, (struct lysp_revision **)subelem->dest);
David Sedlákd6e56892019-07-01 15:40:24 +02002493 break;
2494 case YANG_REVISION_DATE:
David Sedlák1af868e2019-07-17 17:03:14 +02002495 ret = yin_parse_revision_date(ctx, attrs, data, (char *)subelem->dest, exts);
David Sedlákd6e56892019-07-01 15:40:24 +02002496 break;
David Sedlákd6e56892019-07-01 15:40:24 +02002497 case YANG_STATUS:
David Sedlák1af868e2019-07-17 17:03:14 +02002498 ret = yin_parse_status(ctx, attrs, data, (uint16_t *)subelem->dest, exts);
David Sedlákd6e56892019-07-01 15:40:24 +02002499 break;
2500 case YANG_SUBMODULE:
2501 break;
2502 case YANG_TYPE:
David Sedlák4ffcec82019-07-25 15:10:21 +02002503 if (current_element == YANG_DEVIATE) {
2504 *(struct lysp_type **)subelem->dest = calloc(1, sizeof **(struct lysp_type **)subelem->dest);
2505 LY_CHECK_ERR_GOTO(!(*(struct lysp_type **)subelem->dest), LOGMEM(ctx->xml_ctx.ctx); ret = LY_EMEM, cleanup);
2506 type = *((struct lysp_type **)subelem->dest);
2507 } else {
2508 type = (struct lysp_type *)subelem->dest;
2509 }
David Sedlák374d2b32019-07-17 15:06:55 +02002510 /* type as child of another type */
David Sedlák374d2b32019-07-17 15:06:55 +02002511 if (current_element == YANG_TYPE) {
2512 LY_ARRAY_NEW_GOTO(ctx->xml_ctx.ctx, type->types, nested_type, ret, cleanup);
David Sedlákc3da3ef2019-07-19 12:56:08 +02002513 type->flags |= LYS_SET_TYPE;
David Sedlák374d2b32019-07-17 15:06:55 +02002514 type = nested_type;
2515 }
David Sedlák1af868e2019-07-17 17:03:14 +02002516 ret = yin_parse_type(ctx, attrs, data, type);
David Sedlákd6e56892019-07-01 15:40:24 +02002517 break;
2518 case YANG_TYPEDEF:
David Sedlák04e17b22019-07-19 15:29:48 +02002519 ret = yin_parse_typedef(ctx, attrs, data, (struct typedef_meta *)subelem->dest);
David Sedlákd6e56892019-07-01 15:40:24 +02002520 break;
2521 case YANG_UNIQUE:
David Sedlák1af868e2019-07-17 17:03:14 +02002522 ret = yin_parse_simple_elements(ctx, attrs, data, kw, (const char ***)subelem->dest,
David Sedláka5b1d382019-07-10 16:31:09 +02002523 YIN_ARG_TAG, Y_STR_ARG, exts);
David Sedlákd6e56892019-07-01 15:40:24 +02002524 break;
2525 case YANG_UNITS:
David Sedlák1af868e2019-07-17 17:03:14 +02002526 ret = yin_parse_simple_element(ctx, attrs, data, kw, (const char **)subelem->dest,
David Sedláka5b1d382019-07-10 16:31:09 +02002527 YIN_ARG_NAME, Y_STR_ARG, exts);
David Sedlákd6e56892019-07-01 15:40:24 +02002528 break;
2529 case YANG_USES:
David Sedlák0d6de5a2019-07-22 13:25:44 +02002530 ret = yin_parse_uses(ctx, attrs, data, (struct tree_node_meta *)subelem->dest);
David Sedlákd6e56892019-07-01 15:40:24 +02002531 break;
David Sedlákd6e56892019-07-01 15:40:24 +02002532 case YANG_WHEN:
David Sedlák1af868e2019-07-17 17:03:14 +02002533 ret = yin_parse_when(ctx, attrs, data, (struct lysp_when **)subelem->dest);
David Sedlákd6e56892019-07-01 15:40:24 +02002534 break;
2535 case YANG_YANG_VERSION:
David Sedlák1af868e2019-07-17 17:03:14 +02002536 ret = yin_parse_yangversion(ctx, attrs, data, (uint8_t *)subelem->dest, exts);
David Sedlákd6e56892019-07-01 15:40:24 +02002537 break;
2538 case YANG_YIN_ELEMENT:
David Sedlák1af868e2019-07-17 17:03:14 +02002539 ret = yin_parse_yin_element_element(ctx, attrs, data, (uint16_t *)subelem->dest, exts);
David Sedlák3ffbc522019-07-02 17:49:28 +02002540 break;
2541 case YIN_TEXT:
David Sedlák3ffbc522019-07-02 17:49:28 +02002542 case YIN_VALUE:
David Sedlák1af868e2019-07-17 17:03:14 +02002543 ret = yin_parse_content(ctx, NULL, 0, data, kw, (const char **)subelem->dest, NULL);
David Sedlákd6e56892019-07-01 15:40:24 +02002544 break;
2545 default:
David Sedlákda8ffa32019-07-08 14:17:10 +02002546 LOGINT(ctx->xml_ctx.ctx);
David Sedlák21f87cd2019-07-03 16:53:23 +02002547 return LY_EINT;
David Sedlákd6e56892019-07-01 15:40:24 +02002548 }
David Sedlák3ffbc522019-07-02 17:49:28 +02002549 LY_CHECK_GOTO(ret, cleanup);
David Sedlák1af868e2019-07-17 17:03:14 +02002550 FREE_ARRAY(ctx, attrs, free_arg_rec);
2551 attrs = NULL;
2552 subelem = NULL;
David Sedlákd6e56892019-07-01 15:40:24 +02002553 }
2554 } else {
2555 /* elements with text or none content */
David Sedlák3ffbc522019-07-02 17:49:28 +02002556 /* save text content, if text_content isn't set, it's just ignored */
David Sedlák4ffcec82019-07-25 15:10:21 +02002557 /* no resources are allocated in this branch so no need to use cleanup label */
David Sedlák3b4df842019-07-17 11:39:46 +02002558 LY_CHECK_RET(yin_validate_value(ctx, Y_STR_ARG, out, out_len));
David Sedlák3ffbc522019-07-02 17:49:28 +02002559 if (text_content) {
2560 if (dynamic) {
David Sedlákda8ffa32019-07-08 14:17:10 +02002561 *text_content = lydict_insert_zc(ctx->xml_ctx.ctx, out);
David Sedlák3ffbc522019-07-02 17:49:28 +02002562 if (!*text_content) {
2563 free(out);
2564 return LY_EMEM;
2565 }
2566 } else {
2567 if (out_len == 0) {
David Sedlák99295322019-07-17 11:34:18 +02002568 *text_content = lydict_insert(ctx->xml_ctx.ctx, "", 0);
David Sedlák3ffbc522019-07-02 17:49:28 +02002569 } else {
David Sedlákda8ffa32019-07-08 14:17:10 +02002570 *text_content = lydict_insert(ctx->xml_ctx.ctx, out, out_len);
David Sedlák3ffbc522019-07-02 17:49:28 +02002571 }
2572 }
2573 }
David Sedlákd6e56892019-07-01 15:40:24 +02002574 /* load closing element */
David Sedlákda8ffa32019-07-08 14:17:10 +02002575 LY_CHECK_RET(lyxml_get_element(&ctx->xml_ctx, data, &prefix.value, &prefix.len, &name.value, &name.len));
David Sedlákd6e56892019-07-01 15:40:24 +02002576 }
David Sedlák555c7202019-07-04 12:14:12 +02002577
David Sedlák4ffcec82019-07-25 15:10:21 +02002578 /* mandatory subelemnts are checked only after whole element was succesfully parsed */
David Sedlákda8ffa32019-07-08 14:17:10 +02002579 LY_CHECK_RET(yin_check_subelem_mandatory_constraint(ctx, subelem_info, subelem_info_size, current_element));
David Sedlákd6e56892019-07-01 15:40:24 +02002580 }
2581
2582cleanup:
David Sedlák1af868e2019-07-17 17:03:14 +02002583 FREE_ARRAY(ctx, attrs, free_arg_rec);
David Sedlákd6e56892019-07-01 15:40:24 +02002584 return ret;
2585}
2586
David Sedlák619db942019-07-03 14:47:30 +02002587LY_ERR
David Sedlák1f90d252019-07-10 17:09:32 +02002588yin_parse_revision_date(struct yin_parser_ctx *ctx, struct yin_arg_record *attrs, const char **data, char *rev,
David Sedlák619db942019-07-03 14:47:30 +02002589 struct lysp_ext_instance **exts)
David Sedlák81e04022019-04-05 15:05:46 +02002590{
David Sedlák3ffbc522019-07-02 17:49:28 +02002591 const char *temp_rev;
David Sedlák968ac342019-07-11 15:17:59 +02002592 struct yin_subelement subelems[1] = {
2593 {YANG_CUSTOM, NULL, 0}
2594 };
David Sedlák81e04022019-04-05 15:05:46 +02002595
David Sedlák292763b2019-07-09 11:10:53 +02002596 LY_CHECK_RET(yin_parse_attribute(ctx, attrs, YIN_ARG_DATE, &temp_rev, Y_STR_ARG, YANG_REVISION_DATE));
David Sedláka304bc62019-07-17 10:17:58 +02002597 LY_CHECK_ERR_RET(lysp_check_date((struct lys_parser_ctx *)ctx, temp_rev, strlen(temp_rev), "revision-date") != LY_SUCCESS,
2598 FREE_STRING(ctx->xml_ctx.ctx, temp_rev), LY_EVALID);
David Sedlákda63c082019-06-04 13:52:23 +02002599
2600 strcpy(rev, temp_rev);
David Sedlákda8ffa32019-07-08 14:17:10 +02002601 FREE_STRING(ctx->xml_ctx.ctx, temp_rev);
David Sedlák81e04022019-04-05 15:05:46 +02002602
David Sedlákda8ffa32019-07-08 14:17:10 +02002603 return yin_parse_content(ctx, subelems, 1, data, YANG_REVISION_DATE, NULL, exts);
David Sedlák3ffbc522019-07-02 17:49:28 +02002604}
David Sedlák00250342019-06-21 14:19:39 +02002605
David Sedláke1a30302019-07-10 13:49:38 +02002606/**
2607 * @brief Parse config element.
2608 *
2609 * @param[in] ctx Yin parser context for logging and to store current state.
2610 * @param[in] attrs [Sized array](@ref sizedarrays) of attributes of import element.
2611 * @param[in,out] data Data to read from, always moved to currently handled character.
2612 * @param[in,out] flags Flags to add to.
2613 * @param[in,out] exts Extension instances to add to.
2614 *
2615 * @return LY_ERR values.
2616 */
2617static LY_ERR
2618yin_parse_config(struct yin_parser_ctx *ctx, struct yin_arg_record *attrs, const char **data, uint16_t *flags,
2619 struct lysp_ext_instance **exts)
2620{
2621 const char *temp_val = NULL;
David Sedlák968ac342019-07-11 15:17:59 +02002622 struct yin_subelement subelems[1] = {
2623 {YANG_CUSTOM, NULL, 0}
2624 };
David Sedláke1a30302019-07-10 13:49:38 +02002625
David Sedlák1f90d252019-07-10 17:09:32 +02002626 LY_CHECK_RET(yin_parse_attribute(ctx, attrs, YIN_ARG_VALUE, &temp_val, Y_STR_ARG, YANG_CONFIG));
David Sedláke1a30302019-07-10 13:49:38 +02002627 if (strcmp(temp_val, "true") == 0) {
2628 *flags |= LYS_CONFIG_W;
2629 } else if (strcmp(temp_val, "false") == 0) {
2630 *flags |= LYS_CONFIG_R;
2631 } else {
2632 LOGVAL_PARSER((struct lys_parser_ctx *)ctx, LY_VCODE_INVAL_YIN, temp_val, "config");
2633 FREE_STRING(ctx->xml_ctx.ctx, temp_val);
2634 return LY_EVALID;
2635 }
2636 FREE_STRING(ctx->xml_ctx.ctx, temp_val);
2637
2638 return yin_parse_content(ctx, subelems, 1, data, YANG_CONFIG, NULL, exts);
2639}
2640
David Sedlák3ffbc522019-07-02 17:49:28 +02002641LY_ERR
David Sedlák92147b02019-07-09 14:01:01 +02002642yin_parse_yangversion(struct yin_parser_ctx *ctx, struct yin_arg_record *attrs, const char **data, uint8_t *version,
2643 struct lysp_ext_instance **exts)
2644{
2645 const char *temp_version = NULL;
David Sedlák968ac342019-07-11 15:17:59 +02002646 struct yin_subelement subelems[1] = {
2647 {YANG_CUSTOM, NULL, 0}
2648 };
David Sedlák92147b02019-07-09 14:01:01 +02002649
David Sedlák1f90d252019-07-10 17:09:32 +02002650 LY_CHECK_RET(yin_parse_attribute(ctx, attrs, YIN_ARG_VALUE, &temp_version, Y_STR_ARG, YANG_YANG_VERSION));
David Sedlák92147b02019-07-09 14:01:01 +02002651 if (strcmp(temp_version, "1.0") == 0) {
2652 *version = LYS_VERSION_1_0;
2653 } else if (strcmp(temp_version, "1.1") == 0) {
2654 *version = LYS_VERSION_1_1;
2655 } else {
2656 LOGVAL_PARSER((struct lys_parser_ctx *)ctx, LY_VCODE_INVAL_YIN, temp_version, "yang-version");
2657 FREE_STRING(ctx->xml_ctx.ctx, temp_version);
2658 return LY_EVALID;
2659 }
2660 FREE_STRING(ctx->xml_ctx.ctx, temp_version);
2661 ctx->mod_version = *version;
2662
2663 return yin_parse_content(ctx, subelems, 1, data, YANG_YANG_VERSION, NULL, exts);
2664}
2665
2666LY_ERR
David Sedlák1f90d252019-07-10 17:09:32 +02002667yin_parse_import(struct yin_parser_ctx *ctx, struct yin_arg_record *attrs, const char **data, struct lysp_module *mod)
David Sedlák736fd0d2019-02-15 16:06:31 +01002668{
David Sedlák736fd0d2019-02-15 16:06:31 +01002669 struct lysp_import *imp;
David Sedlák00250342019-06-21 14:19:39 +02002670 /* allocate new element in sized array for import */
David Sedlákda8ffa32019-07-08 14:17:10 +02002671 LY_ARRAY_NEW_RET(ctx->xml_ctx.ctx, mod->imports, imp, LY_EMEM);
David Sedlák3ffbc522019-07-02 17:49:28 +02002672
David Sedlák968ac342019-07-11 15:17:59 +02002673 struct yin_subelement subelems[5] = {
2674 {YANG_DESCRIPTION, &imp->dsc, YIN_SUBELEM_UNIQUE},
2675 {YANG_PREFIX, &imp->prefix, YIN_SUBELEM_MANDATORY | YIN_SUBELEM_UNIQUE},
2676 {YANG_REFERENCE, &imp->ref, YIN_SUBELEM_UNIQUE},
2677 {YANG_REVISION_DATE, imp->rev, YIN_SUBELEM_UNIQUE},
2678 {YANG_CUSTOM, NULL, 0}
2679 };
David Sedlák736fd0d2019-02-15 16:06:31 +01002680
David Sedlák92147b02019-07-09 14:01:01 +02002681 /* parse import attributes */
David Sedlák292763b2019-07-09 11:10:53 +02002682 LY_CHECK_RET(yin_parse_attribute(ctx, attrs, YIN_ARG_MODULE, &imp->name, Y_IDENTIF_ARG, YANG_IMPORT));
David Sedlákda8ffa32019-07-08 14:17:10 +02002683 LY_CHECK_RET(yin_parse_content(ctx, subelems, 5, data, YANG_IMPORT, NULL, &imp->exts));
David Sedlák619db942019-07-03 14:47:30 +02002684 /* check prefix validity */
David Sedlákda8ffa32019-07-08 14:17:10 +02002685 LY_CHECK_RET(lysp_check_prefix((struct lys_parser_ctx *)ctx, mod->imports, mod->mod->prefix, &imp->prefix), LY_EVALID);
David Sedlák00250342019-06-21 14:19:39 +02002686
David Sedlákda8ffa32019-07-08 14:17:10 +02002687 return yin_parse_content(ctx, subelems, 5, data, YANG_IMPORT, NULL, &imp->exts);
David Sedlák736fd0d2019-02-15 16:06:31 +01002688}
2689
David Sedlák11900c82019-06-18 16:29:12 +02002690LY_ERR
David Sedlák1fdb2522019-07-09 16:22:57 +02002691yin_parse_mandatory(struct yin_parser_ctx *ctx, struct yin_arg_record *attrs, const char **data, uint16_t *flags,
2692 struct lysp_ext_instance **exts)
2693{
2694 const char *temp_val = NULL;
David Sedlák968ac342019-07-11 15:17:59 +02002695 struct yin_subelement subelems[1] = {
2696 {YANG_CUSTOM, NULL, 0}
2697 };
David Sedlák1fdb2522019-07-09 16:22:57 +02002698
David Sedlák1f90d252019-07-10 17:09:32 +02002699 LY_CHECK_RET(yin_parse_attribute(ctx, attrs, YIN_ARG_VALUE, &temp_val, Y_STR_ARG, YANG_MANDATORY));
David Sedlák1fdb2522019-07-09 16:22:57 +02002700 if (strcmp(temp_val, "true") == 0) {
2701 *flags |= LYS_MAND_TRUE;
2702 } else if (strcmp(temp_val, "false") == 0) {
2703 *flags |= LYS_MAND_FALSE;
2704 } else {
2705 LOGVAL_PARSER((struct lys_parser_ctx *)ctx, LY_VCODE_INVAL_YIN, temp_val, "mandatory");
2706 FREE_STRING(ctx->xml_ctx.ctx, temp_val);
2707 return LY_EVALID;
2708 }
2709 FREE_STRING(ctx->xml_ctx.ctx, temp_val);
2710
2711 return yin_parse_content(ctx, subelems, 1, data, YANG_MANDATORY, NULL, exts);
2712}
2713
2714LY_ERR
David Sedlák1f90d252019-07-10 17:09:32 +02002715yin_parse_status(struct yin_parser_ctx *ctx, struct yin_arg_record *attrs, const char **data, uint16_t *flags,
David Sedlák1fdb2522019-07-09 16:22:57 +02002716 struct lysp_ext_instance **exts)
David Sedlák11900c82019-06-18 16:29:12 +02002717{
David Sedlák3ffbc522019-07-02 17:49:28 +02002718 const char *value = NULL;
David Sedlák968ac342019-07-11 15:17:59 +02002719 struct yin_subelement subelems[1] = {
2720 {YANG_CUSTOM, NULL, 0}
2721 };
David Sedlák3ffbc522019-07-02 17:49:28 +02002722
David Sedlák292763b2019-07-09 11:10:53 +02002723 LY_CHECK_RET(yin_parse_attribute(ctx, attrs, YIN_ARG_VALUE, &value, Y_STR_ARG, YANG_STATUS));
David Sedlák11900c82019-06-18 16:29:12 +02002724 if (strcmp(value, "current") == 0) {
2725 *flags |= LYS_STATUS_CURR;
2726 } else if (strcmp(value, "deprecated") == 0) {
2727 *flags |= LYS_STATUS_DEPRC;
2728 } else if (strcmp(value, "obsolete") == 0) {
2729 *flags |= LYS_STATUS_OBSLT;
2730 } else {
David Sedlákda8ffa32019-07-08 14:17:10 +02002731 LOGVAL_PARSER((struct lys_parser_ctx *)ctx, LY_VCODE_INVAL_YIN, value, "status");
2732 FREE_STRING(ctx->xml_ctx.ctx, value);
David Sedlák11900c82019-06-18 16:29:12 +02002733 return LY_EVALID;
2734 }
David Sedlákda8ffa32019-07-08 14:17:10 +02002735 FREE_STRING(ctx->xml_ctx.ctx, value);
David Sedlák11900c82019-06-18 16:29:12 +02002736
David Sedlákda8ffa32019-07-08 14:17:10 +02002737 return yin_parse_content(ctx, subelems, 1, data, YANG_STATUS, NULL, exts);
David Sedlák11900c82019-06-18 16:29:12 +02002738}
2739
David Sedlák11900c82019-06-18 16:29:12 +02002740LY_ERR
David Sedlák32eee7b2019-07-09 12:38:44 +02002741yin_parse_when(struct yin_parser_ctx *ctx, struct yin_arg_record *attrs, const char **data, struct lysp_when **when_p)
2742{
2743 struct lysp_when *when;
2744 when = calloc(1, sizeof *when);
2745 LY_CHECK_ERR_RET(!when, LOGMEM(ctx->xml_ctx.ctx), LY_EMEM);
David Sedlák1f90d252019-07-10 17:09:32 +02002746 yin_parse_attribute(ctx, attrs, YIN_ARG_CONDITION, &when->cond, Y_STR_ARG, YANG_WHEN);
David Sedlák32eee7b2019-07-09 12:38:44 +02002747 *when_p = when;
David Sedlák968ac342019-07-11 15:17:59 +02002748 struct yin_subelement subelems[3] = {
2749 {YANG_DESCRIPTION, &when->dsc, YIN_SUBELEM_UNIQUE},
2750 {YANG_REFERENCE, &when->ref, YIN_SUBELEM_UNIQUE},
2751 {YANG_CUSTOM, NULL, 0}
2752 };
David Sedlák32eee7b2019-07-09 12:38:44 +02002753
2754 return yin_parse_content(ctx, subelems, 3, data, YANG_WHEN, NULL, &when->exts);
2755}
2756
2757LY_ERR
David Sedlákda8ffa32019-07-08 14:17:10 +02002758yin_parse_yin_element_element(struct yin_parser_ctx *ctx, struct yin_arg_record *attrs, const char **data,
David Sedlák3ffbc522019-07-02 17:49:28 +02002759 uint16_t *flags, struct lysp_ext_instance **exts)
David Sedlák2721d3d2019-06-21 15:37:41 +02002760{
David Sedlák3ffbc522019-07-02 17:49:28 +02002761 const char *temp_val = NULL;
David Sedlák968ac342019-07-11 15:17:59 +02002762 struct yin_subelement subelems[1] = {
2763 {YANG_CUSTOM, NULL, 0}
2764 };
David Sedlák2721d3d2019-06-21 15:37:41 +02002765
David Sedlák1f90d252019-07-10 17:09:32 +02002766 LY_CHECK_RET(yin_parse_attribute(ctx, attrs, YIN_ARG_VALUE, &temp_val, Y_STR_ARG, YANG_YIN_ELEMENT));
David Sedlák2721d3d2019-06-21 15:37:41 +02002767 if (strcmp(temp_val, "true") == 0) {
2768 *flags |= LYS_YINELEM_TRUE;
2769 } else if (strcmp(temp_val, "false") == 0) {
2770 *flags |= LYS_YINELEM_FALSE;
2771 } else {
David Sedlákda8ffa32019-07-08 14:17:10 +02002772 LOGVAL_PARSER((struct lys_parser_ctx *)ctx, LY_VCODE_INVAL_YIN, temp_val, "yin-element");
2773 FREE_STRING(ctx->xml_ctx.ctx, temp_val);
David Sedlák2721d3d2019-06-21 15:37:41 +02002774 return LY_EVALID;
2775 }
David Sedlákda8ffa32019-07-08 14:17:10 +02002776 FREE_STRING(ctx->xml_ctx.ctx, temp_val);
David Sedlák2721d3d2019-06-21 15:37:41 +02002777
David Sedlákda8ffa32019-07-08 14:17:10 +02002778 return yin_parse_content(ctx, subelems, 1, data, YANG_YIN_ELEMENT, NULL, exts);
David Sedlák2721d3d2019-06-21 15:37:41 +02002779}
2780
2781LY_ERR
David Sedlák1f90d252019-07-10 17:09:32 +02002782yin_parse_extension_instance(struct yin_parser_ctx *ctx, struct yin_arg_record *attrs, const char **data, const char *ext_name,
David Sedlák619db942019-07-03 14:47:30 +02002783 int ext_name_len, LYEXT_SUBSTMT subelem, uint32_t subelem_index, struct lysp_ext_instance **exts)
David Sedlák1e2cdd02019-06-27 14:17:43 +02002784{
2785 LY_ERR ret = LY_SUCCESS;
David Sedlákb1a78352019-06-28 16:16:29 +02002786 char *out;
2787 const char *name, *prefix;
2788 size_t out_len, prefix_len, name_len;
2789 int dynamic;
David Sedlák1e2cdd02019-06-27 14:17:43 +02002790 struct lysp_ext_instance *e;
David Sedlákb1a78352019-06-28 16:16:29 +02002791 struct lysp_stmt *last_subelem = NULL, *new_subelem = NULL;
2792 struct yin_arg_record *iter;
David Sedlák1e2cdd02019-06-27 14:17:43 +02002793
David Sedlákda8ffa32019-07-08 14:17:10 +02002794 LY_ARRAY_NEW_RET(ctx->xml_ctx.ctx, *exts, e, LY_EMEM);
David Sedlák1e2cdd02019-06-27 14:17:43 +02002795
2796 e->yin = 0;
2797 /* store name and insubstmt info */
David Sedlákda8ffa32019-07-08 14:17:10 +02002798 e->name = lydict_insert(ctx->xml_ctx.ctx, ext_name, ext_name_len);
David Sedlák619db942019-07-03 14:47:30 +02002799 e->insubstmt = subelem;
2800 e->insubstmt_index = subelem_index;
David Sedlák1e2cdd02019-06-27 14:17:43 +02002801 e->yin |= LYS_YIN;
2802
David Sedlákb1a78352019-06-28 16:16:29 +02002803 /* store attributes as subelements */
David Sedlák1f90d252019-07-10 17:09:32 +02002804 LY_ARRAY_FOR_ITER(attrs, struct yin_arg_record, iter) {
David Sedlákb1a78352019-06-28 16:16:29 +02002805 if (!iter->prefix) {
2806 new_subelem = calloc(1, sizeof(*new_subelem));
2807 if (!e->child) {
2808 e->child = new_subelem;
David Sedlák1e2cdd02019-06-27 14:17:43 +02002809 } else {
David Sedlákb1a78352019-06-28 16:16:29 +02002810 last_subelem->next = new_subelem;
2811 }
2812 last_subelem = new_subelem;
2813
2814 last_subelem->flags |= LYS_YIN_ATTR;
David Sedlákda8ffa32019-07-08 14:17:10 +02002815 last_subelem->stmt = lydict_insert(ctx->xml_ctx.ctx, iter->name, iter->name_len);
2816 LY_CHECK_ERR_RET(!last_subelem->stmt, LOGMEM(ctx->xml_ctx.ctx), LY_EMEM);
David Sedlákb1a78352019-06-28 16:16:29 +02002817 if (iter->dynamic_content) {
David Sedlákda8ffa32019-07-08 14:17:10 +02002818 last_subelem->arg = lydict_insert_zc(ctx->xml_ctx.ctx, iter->content);
2819 LY_CHECK_ERR_RET(!last_subelem->arg, LOGMEM(ctx->xml_ctx.ctx), LY_EMEM);
David Sedlákb1a78352019-06-28 16:16:29 +02002820 } else {
David Sedlákda8ffa32019-07-08 14:17:10 +02002821 last_subelem->arg = lydict_insert(ctx->xml_ctx.ctx, iter->content, iter->content_len);
2822 LY_CHECK_ERR_RET(!last_subelem->arg, LOGMEM(ctx->xml_ctx.ctx), LY_EMEM);
David Sedlák1e2cdd02019-06-27 14:17:43 +02002823 }
2824 }
2825 }
David Sedlák1e2cdd02019-06-27 14:17:43 +02002826
David Sedlákf250ecf2019-07-01 11:02:05 +02002827 /* parse subelements */
David Sedlákda8ffa32019-07-08 14:17:10 +02002828 if (ctx->xml_ctx.status == LYXML_ELEM_CONTENT) {
2829 ret = lyxml_get_string(&ctx->xml_ctx, data, &out, &out_len, &out, &out_len, &dynamic);
David Sedlákb1a78352019-06-28 16:16:29 +02002830 if (ret == LY_EINVAL) {
David Sedlákda8ffa32019-07-08 14:17:10 +02002831 while (ctx->xml_ctx.status == LYXML_ELEMENT) {
2832 LY_CHECK_RET(lyxml_get_element(&ctx->xml_ctx, data, &prefix, &prefix_len, &name, &name_len));
David Sedlákb1a78352019-06-28 16:16:29 +02002833 if (!name) {
2834 /* end of extension instance reached */
2835 break;
2836 }
David Sedlák4ffcec82019-07-25 15:10:21 +02002837 LY_CHECK_RET(yin_parse_element_generic(ctx, name, name_len, data, &new_subelem));
David Sedlákb1a78352019-06-28 16:16:29 +02002838 if (!e->child) {
2839 e->child = new_subelem;
2840 } else {
2841 last_subelem->next = new_subelem;
2842 }
2843 last_subelem = new_subelem;
2844 }
David Sedlák555c7202019-07-04 12:14:12 +02002845 } else {
2846 /* save text content */
2847 if (dynamic) {
David Sedlákda8ffa32019-07-08 14:17:10 +02002848 e->argument = lydict_insert_zc(ctx->xml_ctx.ctx, out);
David Sedlák555c7202019-07-04 12:14:12 +02002849 if (!e->argument) {
2850 free(out);
2851 return LY_EMEM;
2852 }
2853 } else {
David Sedlákda8ffa32019-07-08 14:17:10 +02002854 e->argument = lydict_insert(ctx->xml_ctx.ctx, out, out_len);
David Sedlák555c7202019-07-04 12:14:12 +02002855 LY_CHECK_RET(!e->argument, LY_EMEM);
2856 }
David Sedlákda8ffa32019-07-08 14:17:10 +02002857 LY_CHECK_RET(lyxml_get_element(&ctx->xml_ctx, data, &prefix, &prefix_len, &name, &name_len));
David Sedlák555c7202019-07-04 12:14:12 +02002858 LY_CHECK_RET(name, LY_EINT);
David Sedlákb1a78352019-06-28 16:16:29 +02002859 }
David Sedlákb1a78352019-06-28 16:16:29 +02002860 }
2861
2862 return LY_SUCCESS;
2863}
2864
2865LY_ERR
David Sedlák4ffcec82019-07-25 15:10:21 +02002866yin_parse_element_generic(struct yin_parser_ctx *ctx, const char *name, size_t name_len, const char **data,
2867 struct lysp_stmt **element)
David Sedlákb1a78352019-06-28 16:16:29 +02002868{
2869 LY_ERR ret = LY_SUCCESS;
2870 const char *temp_prefix, *temp_name;
2871 char *out = NULL;
David Sedlák4ffcec82019-07-25 15:10:21 +02002872 size_t out_len, temp_name_len, temp_prefix_len, prefix_len;
David Sedlákb1a78352019-06-28 16:16:29 +02002873 int dynamic;
2874 struct yin_arg_record *subelem_args = NULL;
2875 struct lysp_stmt *last = NULL, *new = NULL;
2876
2877 /* allocate new structure for element */
2878 *element = calloc(1, sizeof(**element));
David Sedlákda8ffa32019-07-08 14:17:10 +02002879 (*element)->stmt = lydict_insert(ctx->xml_ctx.ctx, name, name_len);
2880 LY_CHECK_ERR_RET(!(*element)->stmt, LOGMEM(ctx->xml_ctx.ctx), LY_EMEM);
David Sedlákb1a78352019-06-28 16:16:29 +02002881
2882 last = (*element)->child;
David Sedlákf250ecf2019-07-01 11:02:05 +02002883 /* load attributes */
David Sedlákda8ffa32019-07-08 14:17:10 +02002884 while(ctx->xml_ctx.status == LYXML_ATTRIBUTE) {
David Sedlákb1a78352019-06-28 16:16:29 +02002885 /* add new element to linked-list */
2886 new = calloc(1, sizeof(*last));
David Sedlákda8ffa32019-07-08 14:17:10 +02002887 LY_CHECK_ERR_GOTO(ret, LOGMEM(ctx->xml_ctx.ctx), err);
David Sedlákb1a78352019-06-28 16:16:29 +02002888 if (!(*element)->child) {
2889 /* save first */
2890 (*element)->child = new;
2891 } else {
2892 last->next = new;
2893 }
2894 last = new;
2895
2896 last->flags |= LYS_YIN_ATTR;
David Sedlákda8ffa32019-07-08 14:17:10 +02002897 ret = lyxml_get_attribute(&ctx->xml_ctx, data, &temp_prefix, &prefix_len, &temp_name, &temp_name_len);
David Sedlákb1a78352019-06-28 16:16:29 +02002898 LY_CHECK_GOTO(ret, err);
David Sedlákda8ffa32019-07-08 14:17:10 +02002899 ret = lyxml_get_string(&ctx->xml_ctx, data, &out, &out_len, &out, &out_len, &dynamic);
David Sedlákb1a78352019-06-28 16:16:29 +02002900 LY_CHECK_GOTO(ret, err);
David Sedlákda8ffa32019-07-08 14:17:10 +02002901 last->stmt = lydict_insert(ctx->xml_ctx.ctx, temp_name, temp_name_len);
2902 LY_CHECK_ERR_GOTO(!last->stmt, LOGMEM(ctx->xml_ctx.ctx); ret = LY_EMEM, err);
David Sedlákb1a78352019-06-28 16:16:29 +02002903 /* attributes with prefix are ignored */
2904 if (!temp_prefix) {
2905 if (dynamic) {
David Sedlákda8ffa32019-07-08 14:17:10 +02002906 last->arg = lydict_insert_zc(ctx->xml_ctx.ctx, out);
David Sedlákb1a78352019-06-28 16:16:29 +02002907 if (!last->arg) {
2908 free(out);
David Sedlákda8ffa32019-07-08 14:17:10 +02002909 LOGMEM(ctx->xml_ctx.ctx);
David Sedlákb1a78352019-06-28 16:16:29 +02002910 ret = LY_EMEM;
2911 goto err;
2912 }
2913 } else {
David Sedlákda8ffa32019-07-08 14:17:10 +02002914 last->arg = lydict_insert(ctx->xml_ctx.ctx, out, out_len);
2915 LY_CHECK_ERR_GOTO(!last->arg, LOGMEM(ctx->xml_ctx.ctx); ret = LY_EMEM, err);
David Sedlákb1a78352019-06-28 16:16:29 +02002916 }
2917 }
2918 }
2919
2920 /* parse content of element */
David Sedlákda8ffa32019-07-08 14:17:10 +02002921 ret = lyxml_get_string(&ctx->xml_ctx, data, &out, &out_len, &out, &out_len, &dynamic);
David Sedlákb1a78352019-06-28 16:16:29 +02002922 if (ret == LY_EINVAL) {
David Sedlákda8ffa32019-07-08 14:17:10 +02002923 while (ctx->xml_ctx.status == LYXML_ELEMENT) {
David Sedlákb1a78352019-06-28 16:16:29 +02002924 /* parse subelements */
David Sedlákda8ffa32019-07-08 14:17:10 +02002925 ret = lyxml_get_element(&ctx->xml_ctx, data, &temp_prefix, &temp_prefix_len, &temp_name, &temp_name_len);
David Sedlákb1a78352019-06-28 16:16:29 +02002926 LY_CHECK_GOTO(ret, err);
2927 if (!name) {
2928 /* end of element reached */
2929 break;
2930 }
David Sedlák4ffcec82019-07-25 15:10:21 +02002931 ret = yin_parse_element_generic(ctx, temp_name, temp_name_len, data, &last->next);
David Sedlákb1a78352019-06-28 16:16:29 +02002932 LY_CHECK_GOTO(ret, err);
2933 last = last->next;
2934 }
2935 } else {
2936 /* save element content */
David Sedlák5392a212019-07-01 09:19:10 +02002937 if (out_len != 0) {
2938 if (dynamic) {
David Sedlákda8ffa32019-07-08 14:17:10 +02002939 (*element)->arg = lydict_insert_zc(ctx->xml_ctx.ctx, out);
David Sedlák5392a212019-07-01 09:19:10 +02002940 if (!(*element)->arg) {
2941 free(out);
David Sedlákda8ffa32019-07-08 14:17:10 +02002942 LOGMEM(ctx->xml_ctx.ctx);
David Sedlák5392a212019-07-01 09:19:10 +02002943 ret = LY_EMEM;
2944 goto err;
2945 }
2946 } else {
David Sedlákda8ffa32019-07-08 14:17:10 +02002947 (*element)->arg = lydict_insert(ctx->xml_ctx.ctx, out, out_len);
2948 LY_CHECK_ERR_GOTO(!(*element)->arg, LOGMEM(ctx->xml_ctx.ctx); ret = LY_EMEM, err);
David Sedlákb1a78352019-06-28 16:16:29 +02002949 }
David Sedlákb1a78352019-06-28 16:16:29 +02002950 }
2951 /* read closing tag */
David Sedlákda8ffa32019-07-08 14:17:10 +02002952 ret = lyxml_get_element(&ctx->xml_ctx, data, &temp_prefix, &prefix_len, &temp_name, &temp_name_len);
David Sedlákb1a78352019-06-28 16:16:29 +02002953 LY_CHECK_GOTO(ret, err);
2954 }
2955
David Sedlákda8ffa32019-07-08 14:17:10 +02002956 FREE_ARRAY(ctx, subelem_args, free_arg_rec);
David Sedlákb1a78352019-06-28 16:16:29 +02002957 return LY_SUCCESS;
2958
2959err:
David Sedlákda8ffa32019-07-08 14:17:10 +02002960 FREE_ARRAY(ctx, subelem_args, free_arg_rec);
David Sedlák1e2cdd02019-06-27 14:17:43 +02002961 return ret;
2962}
2963
2964LY_ERR
David Sedlák1f90d252019-07-10 17:09:32 +02002965yin_parse_argument_element(struct yin_parser_ctx *ctx, struct yin_arg_record *attrs, const char **data,
David Sedlák3ffbc522019-07-02 17:49:28 +02002966 struct yin_argument_meta *arg_meta, struct lysp_ext_instance **exts)
David Sedlák9494eb22019-06-21 16:06:53 +02002967{
David Sedlák968ac342019-07-11 15:17:59 +02002968 struct yin_subelement subelems[2] = {
2969 {YANG_YIN_ELEMENT, arg_meta->flags, YIN_SUBELEM_UNIQUE},
2970 {YANG_CUSTOM, NULL, 0}
2971 };
David Sedlák9494eb22019-06-21 16:06:53 +02002972
David Sedlák292763b2019-07-09 11:10:53 +02002973 LY_CHECK_RET(yin_parse_attribute(ctx, attrs, YIN_ARG_NAME, arg_meta->argument, Y_IDENTIF_ARG, YANG_ARGUMENT));
David Sedlák9494eb22019-06-21 16:06:53 +02002974
David Sedlákda8ffa32019-07-08 14:17:10 +02002975 return yin_parse_content(ctx, subelems, 2, data, YANG_ARGUMENT, NULL, exts);
David Sedlák9494eb22019-06-21 16:06:53 +02002976}
2977
2978LY_ERR
David Sedlák1f90d252019-07-10 17:09:32 +02002979yin_parse_extension(struct yin_parser_ctx *ctx, struct yin_arg_record *attrs, const char **data, struct lysp_ext **extensions)
David Sedlák11900c82019-06-18 16:29:12 +02002980{
David Sedlák11900c82019-06-18 16:29:12 +02002981 struct lysp_ext *ex;
David Sedlákda8ffa32019-07-08 14:17:10 +02002982 LY_ARRAY_NEW_RET(ctx->xml_ctx.ctx, *extensions, ex, LY_EMEM);
David Sedlák292763b2019-07-09 11:10:53 +02002983 LY_CHECK_RET(yin_parse_attribute(ctx, attrs, YIN_ARG_NAME, &ex->name, Y_IDENTIF_ARG, YANG_EXTENSION));
David Sedlák619db942019-07-03 14:47:30 +02002984
David Sedlák3ffbc522019-07-02 17:49:28 +02002985 struct yin_argument_meta arg_info = {&ex->flags, &ex->argument};
David Sedlák968ac342019-07-11 15:17:59 +02002986 struct yin_subelement subelems[5] = {
2987 {YANG_ARGUMENT, &arg_info, YIN_SUBELEM_UNIQUE},
2988 {YANG_DESCRIPTION, &ex->dsc, YIN_SUBELEM_UNIQUE},
2989 {YANG_REFERENCE, &ex->ref, YIN_SUBELEM_UNIQUE},
2990 {YANG_STATUS, &ex->flags, YIN_SUBELEM_UNIQUE},
2991 {YANG_CUSTOM, NULL, 0}
2992 };
David Sedlák11900c82019-06-18 16:29:12 +02002993
David Sedlákda8ffa32019-07-08 14:17:10 +02002994 return yin_parse_content(ctx, subelems, 5, data, YANG_EXTENSION, NULL, &ex->exts);
David Sedlák11900c82019-06-18 16:29:12 +02002995}
2996
David Sedlák00250342019-06-21 14:19:39 +02002997/**
2998 * @brief Parse module substatements.
2999 *
David Sedlákda8ffa32019-07-08 14:17:10 +02003000 * @param[in,out] ctx Yin parser context for logging and to store current state.
David Sedlákb4e44562019-07-04 15:42:12 +02003001 * @param[in] mod_attrs Attributes of module element.
David Sedlák00250342019-06-21 14:19:39 +02003002 * @param[in,out] data Data to read from.
3003 * @param[out] mod Parsed module structure.
3004 *
3005 * @return LY_ERR values.
3006 */
David Sedlákda8ffa32019-07-08 14:17:10 +02003007static LY_ERR
David Sedlák1f90d252019-07-10 17:09:32 +02003008yin_parse_mod(struct yin_parser_ctx *ctx, struct yin_arg_record *mod_attrs, const char **data, struct lysp_module **mod)
David Sedlák3b4db242018-10-19 16:11:01 +02003009{
David Sedlák968ac342019-07-11 15:17:59 +02003010 struct yin_subelement subelems[9] = {
3011 {YANG_CONTACT, &(*mod)->mod->contact, YIN_SUBELEM_UNIQUE},
3012 {YANG_DESCRIPTION, &(*mod)->mod->dsc, YIN_SUBELEM_UNIQUE},
3013 {YANG_EXTENSION, &(*mod)->exts, 0},
3014 {YANG_IMPORT, *mod, 0},
3015 {YANG_NAMESPACE, &(*mod)->mod->ns, YIN_SUBELEM_MANDATORY | YIN_SUBELEM_UNIQUE},
3016 {YANG_ORGANIZATION, &(*mod)->mod->org, YIN_SUBELEM_UNIQUE},
3017 {YANG_PREFIX, &(*mod)->mod->prefix, YIN_SUBELEM_MANDATORY | YIN_SUBELEM_UNIQUE},
3018 {YANG_REFERENCE, &(*mod)->mod->ref, YIN_SUBELEM_UNIQUE},
3019 {YANG_CUSTOM, NULL, 0}
3020 };
David Sedlák3b4db242018-10-19 16:11:01 +02003021
David Sedlák292763b2019-07-09 11:10:53 +02003022 LY_CHECK_RET(yin_parse_attribute(ctx, mod_attrs, YIN_ARG_NAME, &(*mod)->mod->name, Y_IDENTIF_ARG, YANG_MODULE));
David Sedlák4a4c0722018-11-26 17:03:10 +01003023
David Sedlákda8ffa32019-07-08 14:17:10 +02003024 return yin_parse_content(ctx, subelems, 9, data, YANG_MODULE, NULL, &(*mod)->exts);
David Sedlák3b4db242018-10-19 16:11:01 +02003025}
3026
3027LY_ERR
David Sedlák3017da42019-02-15 09:48:04 +01003028yin_parse_module(struct ly_ctx *ctx, const char *data, struct lys_module *mod)
David Sedlák3b4db242018-10-19 16:11:01 +02003029{
David Sedláke4889912018-11-02 09:52:40 +01003030 LY_ERR ret = LY_SUCCESS;
3031 enum yang_keyword kw = YANG_NONE;
David Sedlák3017da42019-02-15 09:48:04 +01003032 struct lysp_module *mod_p = NULL;
3033 const char *prefix, *name;
3034 size_t prefix_len, name_len;
David Sedlákda8ffa32019-07-08 14:17:10 +02003035
David Sedlák1f90d252019-07-10 17:09:32 +02003036 struct yin_arg_record *attrs = NULL;
David Sedlák3b4db242018-10-19 16:11:01 +02003037
David Sedlákda8ffa32019-07-08 14:17:10 +02003038 struct yin_parser_ctx yin_ctx;
3039
3040 /* initialize context */
3041 memset(&yin_ctx, 0, sizeof yin_ctx);
3042 yin_ctx.xml_ctx.ctx = ctx;
3043 yin_ctx.xml_ctx.line = 1;
3044
David Sedláke4889912018-11-02 09:52:40 +01003045
David Sedlák3017da42019-02-15 09:48:04 +01003046 /* check submodule */
David Sedlákda8ffa32019-07-08 14:17:10 +02003047 ret = lyxml_get_element(&yin_ctx.xml_ctx, &data, &prefix, &prefix_len, &name, &name_len);
David Sedlák00250342019-06-21 14:19:39 +02003048 LY_CHECK_GOTO(ret, cleanup);
David Sedlák1f90d252019-07-10 17:09:32 +02003049 ret = yin_load_attributes(&yin_ctx, &data, &attrs);
David Sedlák00250342019-06-21 14:19:39 +02003050 LY_CHECK_GOTO(ret, cleanup);
David Sedlákc1771b12019-07-10 15:55:46 +02003051 kw = yin_match_keyword(&yin_ctx, name, name_len, prefix, prefix_len, YANG_NONE);
David Sedláke4889912018-11-02 09:52:40 +01003052 if (kw == YANG_SUBMODULE) {
David Sedlák3017da42019-02-15 09:48:04 +01003053 LOGERR(ctx, LY_EDENIED, "Input data contains submodule which cannot be parsed directly without its main module.");
3054 ret = LY_EINVAL;
3055 goto cleanup;
3056 } else if (kw != YANG_MODULE) {
David Sedlákda8ffa32019-07-08 14:17:10 +02003057 LOGVAL_PARSER((struct lys_parser_ctx *)&yin_ctx, LYVE_SYNTAX, "Invalid keyword \"%s\", expected \"module\" or \"submodule\".",
David Sedlák79e50cb2019-06-05 16:33:09 +02003058 ly_stmt2str(kw));
David Sedlák3017da42019-02-15 09:48:04 +01003059 ret = LY_EVALID;
3060 goto cleanup;
David Sedláke4889912018-11-02 09:52:40 +01003061 }
3062
David Sedlák3017da42019-02-15 09:48:04 +01003063 /* allocate module */
3064 mod_p = calloc(1, sizeof *mod_p);
3065 LY_CHECK_ERR_GOTO(!mod_p, LOGMEM(ctx), cleanup);
3066 mod_p->mod = mod;
3067 mod_p->parsing = 1;
David Sedláke4889912018-11-02 09:52:40 +01003068
David Sedlák00250342019-06-21 14:19:39 +02003069 /* parse module substatements */
David Sedlák1f90d252019-07-10 17:09:32 +02003070 ret = yin_parse_mod(&yin_ctx, attrs, &data, &mod_p);
David Sedlák3017da42019-02-15 09:48:04 +01003071 LY_CHECK_GOTO(ret, cleanup);
David Sedlák2e411422018-12-17 02:35:39 +01003072
David Sedlák3017da42019-02-15 09:48:04 +01003073 mod_p->parsing = 0;
3074 mod->parsed = mod_p;
3075
3076cleanup:
David Sedlák8f7a1172019-06-20 14:42:18 +02003077 if (ret != LY_SUCCESS) {
David Sedlák3017da42019-02-15 09:48:04 +01003078 lysp_module_free(mod_p);
3079 }
David Sedlák1f90d252019-07-10 17:09:32 +02003080 FREE_ARRAY(&yin_ctx, attrs, free_arg_rec);
David Sedlákda8ffa32019-07-08 14:17:10 +02003081 lyxml_context_clear(&yin_ctx.xml_ctx);
David Sedlák2e411422018-12-17 02:35:39 +01003082 return ret;
David Sedlák3b4db242018-10-19 16:11:01 +02003083}