blob: 7a3126be3b5b4bf151d4d44a9c8bdcfffee079d0 [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
789/**
David Sedlákc1771b12019-07-10 15:55:46 +0200790 * @brief Function to parse meta tags (description, contact, ...) eg. elements with
David Sedlákb4e44562019-07-04 15:42:12 +0200791 * text element as child
792 *
David Sedlákda8ffa32019-07-08 14:17:10 +0200793 * @param[in,out] ctx Yin parser context for logging and to store current state.
David Sedlákcf5569a2019-07-11 13:31:34 +0200794 * @param[in,out] data Data to read from, always moved to currently handled character.
David Sedlákc1771b12019-07-10 15:55:46 +0200795 * @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 +0200796 * @param[out] value Where the content of meta element should be stored.
David Sedlákbba38e52019-07-09 15:20:01 +0200797 * @param[in,out] exts Extension instance to add to.
David Sedlákb4e44562019-07-04 15:42:12 +0200798 *
799 * @return LY_ERR values.
800 */
801static LY_ERR
David Sedlákda8ffa32019-07-08 14:17:10 +0200802yin_parse_meta_element(struct yin_parser_ctx *ctx, const char **data, enum yang_keyword elem_type,
David Sedlákb4e44562019-07-04 15:42:12 +0200803 const char **value, struct lysp_ext_instance **exts)
804{
805 assert(elem_type == YANG_ORGANIZATION || elem_type == YANG_CONTACT || elem_type == YANG_DESCRIPTION || elem_type == YANG_REFERENCE);
806
David Sedlák968ac342019-07-11 15:17:59 +0200807 struct yin_subelement subelems[2] = {
808 {YANG_CUSTOM, NULL, 0},
809 {YIN_TEXT, value, YIN_SUBELEM_MANDATORY | YIN_SUBELEM_UNIQUE | YIN_SUBELEM_FIRST}
810 };
David Sedlákb4e44562019-07-04 15:42:12 +0200811
David Sedlákda8ffa32019-07-08 14:17:10 +0200812 return yin_parse_content(ctx, subelems, 2, data, elem_type, NULL, exts);
David Sedlákb4e44562019-07-04 15:42:12 +0200813}
814
815/**
David Sedlákc1771b12019-07-10 15:55:46 +0200816 * @brief Parse error-message element.
817 *
818 * @param[in,out] ctx Yin parser context for logging and to store current state.
819 * @param[in,out] data Data to read from.
820 * @param[out] value Where the content of error-message element should be stored.
821 * @param[in,out] exts Extension instance to add to.
822 *
823 * @return LY_ERR values.
824 */
825static LY_ERR
826yin_parse_err_msg_element(struct yin_parser_ctx *ctx, const char **data, const char **value,
827 struct lysp_ext_instance **exts)
828{
David Sedlák968ac342019-07-11 15:17:59 +0200829 struct yin_subelement subelems[2] = {
830 {YANG_CUSTOM, NULL, 0},
831 {YIN_VALUE, value, YIN_SUBELEM_MANDATORY | YIN_SUBELEM_UNIQUE | YIN_SUBELEM_FIRST}
832 };
David Sedlákc1771b12019-07-10 15:55:46 +0200833
834 return yin_parse_content(ctx, subelems, 2, data, YANG_ERROR_MESSAGE, NULL, exts);
835}
836
837/**
David Sedlák374d2b32019-07-17 15:06:55 +0200838 * @brief parse type element.
839 *
840 * @brief Parse position or value element.
841 *
842 * @param[in,out] ctx YIN parser context for logging and to store current state.
843 * @param[in] attrs [Sized array](@ref sizedarrays) of attributes of current element.
844 * @param[in,out] data Data to read from, always moved to currently handled character.
845 * @param[in,out] type Type to wrote to.
846 * @param[in,out] exts Extension instance to add to.
847 *
848 * @return LY_ERR values.
849 */
850static LY_ERR
851yin_parse_type(struct yin_parser_ctx *ctx, struct yin_arg_record *attrs, const char **data, struct lysp_type *type)
852{
853 struct yin_subelement subelems[11] = {
854 {YANG_BASE, type, 0},
855 {YANG_BIT, type, 0},
856 {YANG_ENUM, type, 0},
857 {YANG_FRACTION_DIGITS, type, YIN_SUBELEM_UNIQUE},
858 {YANG_LENGTH, type, YIN_SUBELEM_UNIQUE},
859 {YANG_PATH, type, YIN_SUBELEM_UNIQUE},
860 {YANG_PATTERN, type, 0},
861 {YANG_RANGE, type, YIN_SUBELEM_UNIQUE},
862 {YANG_REQUIRE_INSTANCE, type, YIN_SUBELEM_UNIQUE},
863 {YANG_TYPE, type},
864 {YANG_CUSTOM, NULL, 0},
865 };
866 LY_CHECK_RET(yin_parse_attribute(ctx, attrs, YIN_ARG_NAME, &type->name, Y_PREF_IDENTIF_ARG, YANG_TYPE));
867 return yin_parse_content(ctx, subelems, 11, data, YANG_TYPE, NULL, &type->exts);
868}
869
David Sedlák1af868e2019-07-17 17:03:14 +0200870/**
871 * @brief Parse max-elements element.
872 *
873 * @param[in,out] ctx YIN parser context for logging and to store current state.
874 * @param[in] attrs [Sized array](@ref sizedarrays) of attributes of current element.
875 * @param[in,out] data Data to read from, always moved to currently handled character.
876 * @param[in,out] max Value to write to.
David Sedláka2dad212019-07-18 12:45:19 +0200877 * @param[in] flags Flags to write to.
David Sedlák1af868e2019-07-17 17:03:14 +0200878 * @param[in,out] exts Extension instances to add to.
879 *
880 * @return LY_ERR values.
881 */
882static LY_ERR
883yin_parse_maxelements(struct yin_parser_ctx *ctx, struct yin_arg_record *attrs, const char **data, uint32_t *max,
884 uint16_t *flags, struct lysp_ext_instance **exts)
885{
886 const char *temp_val = NULL;
887 char *ptr;
888 unsigned long int num;
889 struct yin_subelement subelems[1] = {
890 {YANG_CUSTOM, NULL, 0},
891 };
David Sedlák374d2b32019-07-17 15:06:55 +0200892
David Sedlák1af868e2019-07-17 17:03:14 +0200893 *flags |= LYS_SET_MAX;
894 LY_CHECK_RET(yin_parse_attribute(ctx, attrs, YIN_ARG_VALUE, &temp_val, Y_STR_ARG, YANG_MAX_ELEMENTS));
895 if (!temp_val || temp_val[0] == '\0' || temp_val[0] == '0' || (temp_val[0] != 'u' && !isdigit(temp_val[0]))) {
896 LOGVAL_PARSER((struct lys_parser_ctx *)ctx, LY_VCODE_INVAL, strlen(temp_val), temp_val, "max-elements");
897 FREE_STRING(ctx->xml_ctx.ctx, temp_val);
898 return LY_EVALID;
899 }
900
901 if (strcmp(temp_val, "unbounded")) {
902 errno = 0;
903 num = strtoul(temp_val, &ptr, 10);
904 if (*ptr != '\0') {
905 LOGVAL_PARSER((struct lys_parser_ctx *)ctx, LY_VCODE_INVAL, strlen(temp_val), temp_val, "max-elements");
906 FREE_STRING(ctx->xml_ctx.ctx, temp_val);
907 return LY_EVALID;
908 }
909 if ((errno == ERANGE) || (num > UINT32_MAX)) {
910 LOGVAL_PARSER((struct lys_parser_ctx *)ctx, LY_VCODE_OOB, strlen(temp_val), temp_val, "max-elements");
911 FREE_STRING(ctx->xml_ctx.ctx, temp_val);
912 return LY_EVALID;
913 }
914 *max = num;
915 }
916 FREE_STRING(ctx->xml_ctx.ctx, temp_val);
917 return yin_parse_content(ctx, subelems, 1, data, YANG_MAX_ELEMENTS, NULL, exts);
918}
David Sedlák374d2b32019-07-17 15:06:55 +0200919
920/**
David Sedlák09e18c92019-07-18 11:17:11 +0200921 * @brief Parse max-elements element.
922 *
923 * @param[in,out] ctx YIN parser context for logging and to store current state.
924 * @param[in] attrs [Sized array](@ref sizedarrays) of attributes of current element.
925 * @param[in,out] data Data to read from, always moved to currently handled character.
926 * @param[in,out] min Value to write to.
David Sedláka2dad212019-07-18 12:45:19 +0200927 * @param[in] flags Flags to write to.
David Sedlák09e18c92019-07-18 11:17:11 +0200928 * @param[in,out] exts Extension instances to add to.
929 *
930 * @return LY_ERR values.
931 */
932static LY_ERR
933yin_parse_minelements(struct yin_parser_ctx *ctx, struct yin_arg_record *attrs, const char **data, uint32_t *min,
934 uint16_t *flags, struct lysp_ext_instance **exts)
935{
936 const char *temp_val = NULL;
937 char *ptr;
938 unsigned long int num;
939 struct yin_subelement subelems[1] = {
940 {YANG_CUSTOM, NULL, 0},
941 };
942
943 *flags |= LYS_SET_MIN;
David Sedláka2dad212019-07-18 12:45:19 +0200944 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 +0200945
946 if (!temp_val || temp_val[0] == '\0' || (temp_val[0] == '0' && temp_val[1] != '\0')) {
947 LOGVAL_PARSER((struct lys_parser_ctx *)ctx, LY_VCODE_INVAL, strlen(temp_val), temp_val, "min-elements");
948 FREE_STRING(ctx->xml_ctx.ctx, temp_val);
949 return LY_EVALID;
950 }
951
952 errno = 0;
953 num = strtoul(temp_val, &ptr, 10);
954 if (ptr[0] != 0) {
955 LOGVAL_PARSER((struct lys_parser_ctx *)ctx, LY_VCODE_INVAL, strlen(temp_val), temp_val, "min-elements");
956 FREE_STRING(ctx->xml_ctx.ctx, temp_val);
957 return LY_EVALID;
958 }
959 if (errno == ERANGE || num > UINT32_MAX) {
960 LOGVAL_PARSER((struct lys_parser_ctx *)ctx, LY_VCODE_OOB, strlen(temp_val), temp_val, "min-elements");
961 FREE_STRING(ctx->xml_ctx.ctx, temp_val);
962 return LY_EVALID;
963 }
964 *min = num;
965 FREE_STRING(ctx->xml_ctx.ctx, temp_val);
David Sedláka2dad212019-07-18 12:45:19 +0200966 return yin_parse_content(ctx, subelems, 1, data, YANG_MIN_ELEMENTS, NULL, exts);
David Sedlák09e18c92019-07-18 11:17:11 +0200967}
968
David Sedláka2dad212019-07-18 12:45:19 +0200969/**
970 * @brief Parse min-elements or max-elements element.
971 *
972 * @param[in,out] ctx YIN parser context for logging and to store current state.
973 * @param[in] attrs [Sized array](@ref sizedarrays) of attributes of current element.
974 * @param[in,out] data Data to read from, always moved to currently handled character.
975 * @param[in] parent Identification of parent element.
976 * @param[in] current Identification of current element.
977 * @param[in] dest Where the parsed value and flags should be stored.
978 *
979 * @return LY_ERR values.
980 */
David Sedlák09e18c92019-07-18 11:17:11 +0200981static LY_ERR
982yin_parse_minmax(struct yin_parser_ctx *ctx, struct yin_arg_record *attrs, const char **data,
983 enum yang_keyword parent, enum yang_keyword current, void *dest)
984{
985 assert(current == YANG_MAX_ELEMENTS || current == YANG_MIN_ELEMENTS);
986 assert(parent == YANG_LEAF_LIST || parent == YANG_REFINE || parent == YANG_LIST);
987 uint32_t *lim;
988 uint16_t *flags;
989 struct lysp_ext_instance **exts;
990
991 if (parent == YANG_LEAF_LIST) {
992 lim = (current == YANG_MAX_ELEMENTS) ? &((struct lysp_node_leaflist *)dest)->max : &((struct lysp_node_leaflist *)dest)->min;
993 flags = &((struct lysp_node_leaflist *)dest)->flags;
994 exts = &((struct lysp_node_leaflist *)dest)->exts;
995 } else if (parent == YANG_REFINE) {
996 lim = (current == YANG_MAX_ELEMENTS) ? &((struct lysp_refine *)dest)->max : &((struct lysp_refine *)dest)->min;
997 flags = &((struct lysp_refine *)dest)->flags;
998 exts = &((struct lysp_refine *)dest)->exts;
999 } else {
1000 lim = (current == YANG_MAX_ELEMENTS) ? &((struct lysp_node_list *)dest)->max : &((struct lysp_node_list *)dest)->min;
1001 flags = &((struct lysp_node_list *)dest)->flags;
1002 exts = &((struct lysp_node_list *)dest)->exts;
1003 }
1004
1005 if (current == YANG_MAX_ELEMENTS) {
1006 LY_CHECK_RET(yin_parse_maxelements(ctx, attrs, data, lim, flags, exts));
1007 } else {
1008 LY_CHECK_RET(yin_parse_minelements(ctx, attrs, data, lim, flags, exts));
1009 }
1010
1011 return LY_SUCCESS;
1012}
1013
1014/**
David Sedláka2dad212019-07-18 12:45:19 +02001015 * @brief Parser ordered-by element.
1016 *
1017 * @param[in,out] ctx YIN parser context for logging and to store current state.
1018 * @param[in] attrs [Sized array](@ref sizedarrays) of attributes of current element.
1019 * @param[in,out] data Data to read from, always moved to currently handled character.
1020 * @param[out] flags Flags to write to.
1021 * @param[in,out] exts Extension instance to add to.
1022 *
1023 * @return LY_ERR values.
1024 */
1025static LY_ERR
1026yin_parse_orderedby(struct yin_parser_ctx *ctx, struct yin_arg_record *attrs, const char **data,
1027 uint16_t *flags, struct lysp_ext_instance **exts)
1028{
1029 const char *temp_val;
1030 struct yin_subelement subelems[1] = {
1031 {YANG_CUSTOM, NULL, 0},
1032 };
1033
1034 LY_CHECK_RET(yin_parse_attribute(ctx, attrs, YIN_ARG_VALUE, &temp_val, Y_STR_ARG, YANG_ORDERED_BY));
1035 if (strcmp(temp_val, "system") == 0) {
1036 *flags |= LYS_ORDBY_SYSTEM;
1037 } else if (strcmp(temp_val, "user") == 0) {
1038 *flags |= LYS_ORDBY_USER;
1039 } else {
1040 LOGVAL_PARSER((struct lys_parser_ctx *)ctx, LY_VCODE_INVAL, strlen(temp_val), temp_val, "ordered-by");
1041 FREE_STRING(ctx->xml_ctx.ctx, temp_val);
1042 return LY_EVALID;
1043 }
1044 FREE_STRING(ctx->xml_ctx.ctx, temp_val);
1045
1046 return yin_parse_content(ctx, subelems, 1, data, YANG_ORDERED_BY, NULL, exts);
1047}
1048
1049/**
David Sedlák8a83bbb2019-07-18 14:46:00 +02001050 * @brief parse any-data or any-xml element.
1051 *
1052 * @param[in,out] ctx YIN parser context for logging and to store current state.
1053 * @param[in] attrs [Sized array](@ref sizedarrays) of attributes of current element.
1054 * @param[in,out] data Data to read from, always moved to currently handled character.
1055 * @param[in] any_kw Identification of current element, can be set to YANG_ANY_DATA or YANG_ANY_XML
1056 * @param[in] node_meta Meta information about node parent and siblings.
1057 *
1058 * @return LY_ERR values.
1059 */
1060static LY_ERR
1061yin_parse_any(struct yin_parser_ctx *ctx, struct yin_arg_record *attrs, const char **data,
1062 enum yang_keyword any_kw, struct tree_node_meta *node_meta)
1063{
1064 struct lysp_node *iter;
1065 struct lysp_node_anydata *any;
1066
1067 /* create structure */
1068 any = calloc(1, sizeof *any);
1069 LY_CHECK_ERR_RET(!any, LOGMEM(ctx->xml_ctx.ctx), LY_EMEM);
1070 any->nodetype = (any_kw == YANG_ANYDATA) ? LYS_ANYDATA : LYS_ANYXML;
1071 any->parent = node_meta->parent;
1072
1073 /* insert into siblings */
1074 if (!*(node_meta->siblings)) {
1075 *(node_meta->siblings) = (struct lysp_node *)any;
1076 } else {
1077 for (iter = *(node_meta->siblings); iter->next; iter = iter->next);
1078 iter->next = (struct lysp_node *)any;
1079 }
1080
1081 /* parser argument */
David Sedlák203ca3a2019-07-18 15:26:25 +02001082 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 +02001083
1084 struct yin_subelement subelems[9] = {
1085 {YANG_CONFIG, &any->flags, YIN_SUBELEM_UNIQUE},
1086 {YANG_DESCRIPTION, &any->dsc, YIN_SUBELEM_UNIQUE},
1087 {YANG_IF_FEATURE, &any->iffeatures, 0},
1088 {YANG_MANDATORY, &any->flags, YIN_SUBELEM_UNIQUE},
1089 {YANG_MUST, &any->musts, 0},
1090 {YANG_REFERENCE, &any->ref, YIN_SUBELEM_UNIQUE},
1091 {YANG_STATUS, &any->flags, YIN_SUBELEM_UNIQUE},
1092 {YANG_WHEN, &any->when, YIN_SUBELEM_UNIQUE},
1093 {YANG_CUSTOM, NULL, 0},
1094 };
1095 return yin_parse_content(ctx, subelems, 9, data, any_kw, NULL, &any->exts);
1096}
1097
1098/**
David Sedlák203ca3a2019-07-18 15:26:25 +02001099 * @brief parse leaf element.
1100 *
1101 * @param[in,out] ctx YIN parser context for logging and to store current state.
1102 * @param[in] attrs [Sized array](@ref sizedarrays) of attributes of current element.
1103 * @param[in,out] data Data to read from, always moved to currently handled character.
1104 * @param[in] node_meta Meta information about node parent and siblings.
1105 *
1106 * @return LY_ERR values.
1107 */
1108static LY_ERR
1109yin_parse_leaf(struct yin_parser_ctx *ctx, struct yin_arg_record *attrs, const char **data,
1110 struct tree_node_meta *node_meta)
1111{
1112 struct lysp_node *iter;
1113 struct lysp_node_leaf *leaf;
1114
1115 /* create structure */
1116 leaf = calloc(1, sizeof *leaf);
1117 LY_CHECK_ERR_RET(!leaf, LOGMEM(ctx->xml_ctx.ctx), LY_EMEM);
1118 leaf->nodetype = LYS_LEAF;
1119 leaf->parent = node_meta->parent;
1120
1121 /* insert into siblings */
1122 if (!*(node_meta->siblings)) {
1123 *node_meta->siblings = (struct lysp_node *)leaf;
1124 } else {
1125 for (iter = *node_meta->siblings; iter->next; iter = iter->next);
1126 iter->next = (struct lysp_node *)leaf;
1127 }
1128
1129 /* parser argument */
1130 LY_CHECK_RET(yin_parse_attribute(ctx, attrs, YIN_ARG_NAME, &leaf->name, Y_IDENTIF_ARG, YANG_LEAF));
1131
1132 /* parse content */
1133 struct yin_subelement subelems[12] = {
1134 {YANG_CONFIG, &leaf->flags, YIN_SUBELEM_UNIQUE},
1135 {YANG_DEFAULT, &leaf->dflt, YIN_SUBELEM_UNIQUE},
1136 {YANG_DESCRIPTION, &leaf->dsc, YIN_SUBELEM_UNIQUE},
1137 {YANG_IF_FEATURE, &leaf->iffeatures, 0},
1138 {YANG_MANDATORY, &leaf->flags, YIN_SUBELEM_UNIQUE},
1139 {YANG_MUST, &leaf->musts, 0},
1140 {YANG_REFERENCE, &leaf->ref, YIN_SUBELEM_UNIQUE},
1141 {YANG_STATUS, &leaf->flags, YIN_SUBELEM_UNIQUE},
1142 {YANG_TYPE, &leaf->type, YIN_SUBELEM_UNIQUE | YIN_SUBELEM_MANDATORY},
1143 {YANG_UNITS, &leaf->units, YIN_SUBELEM_UNIQUE},
1144 {YANG_WHEN, &leaf->when, YIN_SUBELEM_UNIQUE},
1145 {YANG_CUSTOM, NULL, 0},
1146 };
1147 return yin_parse_content(ctx, subelems, 12, data, YANG_LEAF, NULL, &leaf->exts);
1148}
1149
1150/**
David Sedlákc3da3ef2019-07-19 12:56:08 +02001151 * @brief Parse leaf-list element.
1152 *
1153 * @param[in,out] ctx YIN parser context for logging and to store current state.
1154 * @param[in] attrs [Sized array](@ref sizedarrays) of attributes of current element.
1155 * @param[in,out] data Data to read from, always moved to currently handled character.
1156 * @param[in] node_meta Meta information about node parent and siblings.
1157 *
1158 * @return LY_ERR values.
1159 */
1160static LY_ERR
1161yin_parse_leaflist(struct yin_parser_ctx *ctx, struct yin_arg_record *attrs, const char **data,
1162 struct tree_node_meta *node_meta)
1163{
1164 struct lysp_node *iter;
1165 struct lysp_node_leaflist *llist;
David Sedlákc3da3ef2019-07-19 12:56:08 +02001166
1167 llist = calloc(1, sizeof *llist);
1168 LY_CHECK_ERR_RET(!llist, LOGMEM(ctx->xml_ctx.ctx), LY_EMEM);
1169 llist->nodetype = LYS_LEAFLIST;
1170 llist->parent = node_meta->parent;
1171
1172 /* insert into siblings */
1173 if (!*(node_meta->siblings)) {
1174 *node_meta->siblings = (struct lysp_node *)llist;
1175 } else {
1176 for (iter = *node_meta->siblings; iter->next; iter = iter->next);
1177 iter->next = (struct lysp_node *)llist;
1178 }
1179
1180 /* parse argument */
1181 yin_parse_attribute(ctx, attrs, YIN_ARG_NAME, &llist->name, Y_IDENTIF_ARG, YANG_LEAF_LIST);
1182
1183 /* parse content */
1184 struct yin_subelement subelems[14] = {
1185 {YANG_CONFIG, &llist->flags, YIN_SUBELEM_UNIQUE},
1186 {YANG_DEFAULT, &llist->dflts, 0},
1187 {YANG_DESCRIPTION, &llist->dsc, YIN_SUBELEM_UNIQUE},
1188 {YANG_IF_FEATURE, &llist->iffeatures, 0},
1189 {YANG_MAX_ELEMENTS, llist, YIN_SUBELEM_UNIQUE},
1190 {YANG_MIN_ELEMENTS, llist, YIN_SUBELEM_UNIQUE},
1191 {YANG_MUST, &llist->musts, 0},
1192 {YANG_ORDERED_BY, &llist->flags, YIN_SUBELEM_UNIQUE},
1193 {YANG_REFERENCE, &llist->ref, YIN_SUBELEM_UNIQUE},
1194 {YANG_STATUS, &llist->flags, YIN_SUBELEM_UNIQUE},
1195 {YANG_TYPE, &llist->type, YIN_SUBELEM_UNIQUE | YIN_SUBELEM_MANDATORY},
1196 {YANG_UNITS, &llist->units, YIN_SUBELEM_UNIQUE},
1197 {YANG_WHEN, &llist->when, YIN_SUBELEM_UNIQUE},
1198 {YANG_CUSTOM, NULL, 0},
David Sedlákaa854b02019-07-22 14:17:10 +02001199 };
David Sedlákc3da3ef2019-07-19 12:56:08 +02001200 LY_CHECK_RET(yin_parse_content(ctx, subelems, 14, data, YANG_LEAF_LIST, NULL, &llist->exts));
1201
1202 /* invalid combination of subelements */
1203 if ((llist->min) && (llist->dflts)) {
1204 LOGVAL_PARSER((struct lys_parser_ctx *)ctx, LY_VCODE_INCHILDSTMSCOMB, "min-elements", "default", "leaf-list");
1205 return LY_EVALID;
1206 }
1207 if (llist->max && llist->min > llist->max) {
1208 LOGVAL_PARSER((struct lys_parser_ctx *)ctx, LYVE_SEMANTICS,
1209 "Invalid combination of min-elements and max-elements: min value %u is bigger than the max value %u.",
1210 llist->min, llist->max);
1211 return LY_EVALID;
1212 }
1213
1214 return LY_SUCCESS;
1215}
1216
1217/**
David Sedlák04e17b22019-07-19 15:29:48 +02001218 * @brief Parse typedef element.
1219 *
1220 * @param[in,out] ctx YIN parser context for logging and to store current state.
1221 * @param[in] attrs [Sized array](@ref sizedarrays) of attributes of current element.
1222 * @param[in,out] data Data to read from, always moved to currently handled character.
1223 * @param[in] typedef_meta Meta information about node parent and typedefs to add to.
1224 *
1225 * @return LY_ERR values.
1226 */
1227static LY_ERR
1228yin_parse_typedef(struct yin_parser_ctx *ctx, struct yin_arg_record *attrs, const char **data,
1229 struct typedef_meta *typedef_meta)
1230{
1231 struct lysp_tpdf *tpdf;
1232 LY_ARRAY_NEW_RET(ctx->xml_ctx.ctx, *typedef_meta->typedefs, tpdf, LY_EMEM);
1233
1234 /* parse argument */
1235 LY_CHECK_RET(yin_parse_attribute(ctx, attrs, YIN_ARG_NAME, &tpdf->name, Y_IDENTIF_ARG, YANG_TYPEDEF));
1236
1237 /* parse content */
1238 struct yin_subelement subelems[7] = {
1239 {YANG_DEFAULT, &tpdf->dflt, YIN_SUBELEM_UNIQUE},
1240 {YANG_DESCRIPTION, &tpdf->dsc, YIN_SUBELEM_UNIQUE},
1241 {YANG_REFERENCE, &tpdf->ref, YIN_SUBELEM_UNIQUE},
1242 {YANG_STATUS, &tpdf->flags, YIN_SUBELEM_UNIQUE},
1243 {YANG_TYPE, &tpdf->type, YIN_SUBELEM_UNIQUE | YIN_SUBELEM_MANDATORY},
1244 {YANG_UNITS, &tpdf->units, YIN_SUBELEM_UNIQUE},
1245 {YANG_CUSTOM, NULL, 0},
David Sedlákaa854b02019-07-22 14:17:10 +02001246 };
David Sedlák04e17b22019-07-19 15:29:48 +02001247 LY_CHECK_RET(yin_parse_content(ctx, subelems, 7, data, YANG_TYPEDEF, NULL, &tpdf->exts));
1248
1249 /* store data for collision check */
1250 if (typedef_meta->parent && !(typedef_meta->parent->nodetype & (LYS_GROUPING | LYS_ACTION | LYS_INOUT | LYS_NOTIF))) {
1251 ly_set_add(&ctx->tpdfs_nodes, typedef_meta->parent, 0);
1252 }
1253
1254 return LY_SUCCESS;
1255}
1256
1257/**
David Sedlákd2d676a2019-07-22 11:28:19 +02001258 * @brief Parse refine element.
1259 *
1260 * @param[in,out] ctx YIN parser context for logging and to store current state.
1261 * @param[in] attrs [Sized array](@ref sizedarrays) of attributes of current element.
1262 * @param[in,out] data Data to read from, always moved to currently handled character.
1263 * @param[in,out] refines Refines to add to.
1264 *
1265 * @return LY_ERR values.
1266 */
1267static LY_ERR
1268yin_parse_refine(struct yin_parser_ctx *ctx, struct yin_arg_record *attrs, const char **data,
1269 struct lysp_refine **refines)
1270{
1271 struct lysp_refine *rf;
1272
1273 /* allocate new refine */
1274 LY_ARRAY_NEW_RET(ctx->xml_ctx.ctx, *refines, rf, LY_EMEM);
1275
1276 /* parse attribute */
1277 LY_CHECK_RET(yin_parse_attribute(ctx, attrs, YIN_ARG_TARGET_NODE, &rf->nodeid, Y_STR_ARG, YANG_REFINE));
1278 YANG_CHECK_NONEMPTY((struct lys_parser_ctx *)ctx, strlen(rf->nodeid), "refine");
1279
1280 /* parse content */
1281 struct yin_subelement subelems[11] = {
1282 {YANG_CONFIG, &rf->flags, YIN_SUBELEM_UNIQUE},
1283 {YANG_DEFAULT, &rf->dflts, 0},
1284 {YANG_DESCRIPTION, &rf->dsc, YIN_SUBELEM_UNIQUE},
1285 {YANG_IF_FEATURE, &rf->iffeatures, 0},
1286 {YANG_MANDATORY, &rf->flags, YIN_SUBELEM_UNIQUE},
1287 {YANG_MAX_ELEMENTS, rf, YIN_SUBELEM_UNIQUE},
1288 {YANG_MIN_ELEMENTS, rf, YIN_SUBELEM_UNIQUE},
1289 {YANG_MUST, &rf->musts, 0},
1290 {YANG_PRESENCE, &rf->presence, YIN_SUBELEM_UNIQUE},
1291 {YANG_REFERENCE, &rf->ref, YIN_SUBELEM_UNIQUE},
1292 {YANG_CUSTOM, NULL, 0},
David Sedlákaa854b02019-07-22 14:17:10 +02001293 };
David Sedlákd2d676a2019-07-22 11:28:19 +02001294 return yin_parse_content(ctx, subelems, 11, data, YANG_REFINE, NULL, &rf->exts);
1295}
1296
1297/**
David Sedlák0d6de5a2019-07-22 13:25:44 +02001298 * @brief Parse uses element.
1299 *
1300 * @param[in,out] ctx YIN parser context for logging and to store current state.
1301 * @param[in] attrs [Sized array](@ref sizedarrays) of attributes of current element.
1302 * @param[in,out] data Data to read from, always moved to currently handled character.
1303 * @param[in] node_meta Meta information about node parent and siblings.
1304 *
1305 * @return LY_ERR values.
1306 */
1307static LY_ERR
1308yin_parse_uses(struct yin_parser_ctx *ctx, struct yin_arg_record *attrs, const char **data,
1309 struct tree_node_meta *node_meta)
1310{
1311 struct lysp_node *iter;
1312 struct lysp_node_uses *uses;
1313
1314 /* create structure */
1315 uses = calloc(1, sizeof *uses);
1316 LY_CHECK_ERR_RET(!uses, LOGMEM(ctx->xml_ctx.ctx), LY_EMEM);
1317 uses->nodetype = LYS_USES;
1318 uses->parent = node_meta->parent;
1319
1320 /* insert into siblings */
1321 if (!*(node_meta->siblings)) {
1322 *node_meta->siblings = (struct lysp_node *)uses;
1323 } else {
1324 for (iter = *node_meta->siblings; iter->next; iter = iter->next);
1325 iter->next = (struct lysp_node *)uses;
1326 }
1327
1328 /* parse argument */
1329 LY_CHECK_RET(yin_parse_attribute(ctx, attrs, YIN_ARG_NAME, &uses->name, Y_PREF_IDENTIF_ARG, YANG_USES));
1330
1331 /* parse content */
1332 struct augment_meta augments = {(struct lysp_node *)uses, &uses->augments};
1333 struct yin_subelement subelems[8] = {
1334 {YANG_AUGMENT, &augments, 0},
1335 {YANG_DESCRIPTION, &uses->dsc, YIN_SUBELEM_UNIQUE},
1336 {YANG_IF_FEATURE, &uses->iffeatures, 0},
1337 {YANG_REFERENCE, &uses->ref, YIN_SUBELEM_UNIQUE},
1338 {YANG_REFINE, &uses->refines, 0},
1339 {YANG_STATUS, &uses->flags, YIN_SUBELEM_UNIQUE},
1340 {YANG_WHEN, &uses->when, YIN_SUBELEM_UNIQUE},
1341 {YANG_CUSTOM, NULL, 0},
David Sedlákaa854b02019-07-22 14:17:10 +02001342 };
David Sedlák0d6de5a2019-07-22 13:25:44 +02001343 LY_CHECK_RET(yin_parse_content(ctx, subelems, 8, data, YANG_USES, NULL, &uses->exts));
1344 LY_CHECK_RET(lysp_parse_finalize_reallocated((struct lys_parser_ctx *)ctx, NULL, uses->augments, NULL, NULL));
1345
1346 return LY_SUCCESS;
1347}
1348
1349/**
David Sedlákaa854b02019-07-22 14:17:10 +02001350 * @brief Parse revision element.
1351 *
1352 * @param[in,out] ctx YIN parser context for logging and to store current state.
1353 * @param[in] attrs [Sized array](@ref sizedarrays) of attributes of current element.
1354 * @param[in,out] data Data to read from, always moved to currently handled character.
1355 * @param[in,out] revs Parsed revisions to add to.
1356 *
1357 * @return LY_ERR values.
1358 */
1359static LY_ERR
1360yin_parse_revision(struct yin_parser_ctx *ctx, struct yin_arg_record *attrs, const char **data,
1361 struct lysp_revision **revs)
1362{
1363 struct lysp_revision *rev;
1364 const char *temp_date = NULL;
1365
1366 /* allocate new reivison */
1367 LY_ARRAY_NEW_RET(ctx->xml_ctx.ctx, *revs, rev, LY_EMEM);
1368
1369 /* parse argument */
1370 LY_CHECK_RET(yin_parse_attribute(ctx, attrs, YIN_ARG_DATE, &temp_date, Y_STR_ARG, YANG_REVISION));
1371 /* check value */
1372 if (lysp_check_date((struct lys_parser_ctx *)ctx, temp_date, strlen(temp_date), "revision")) {
1373 FREE_STRING(ctx->xml_ctx.ctx, temp_date);
1374 return LY_EVALID;
1375 }
1376 strcpy(rev->date, temp_date);
1377 FREE_STRING(ctx->xml_ctx.ctx, temp_date);
1378
1379 /* parse content */
1380 struct yin_subelement subelems[3] = {
1381 {YANG_DESCRIPTION, &rev->dsc, YIN_SUBELEM_UNIQUE},
1382 {YANG_REFERENCE, &rev->ref, YIN_SUBELEM_UNIQUE},
1383 {YANG_CUSTOM, NULL, 0},
1384 };
1385 return yin_parse_content(ctx, subelems, 3, data, YANG_REVISION, NULL, &rev->exts);
1386}
1387
David Sedlák5e13dea2019-07-22 16:06:45 +02001388/**
1389 * @brief Parse include element.
1390 *
1391 * @param[in,out] ctx YIN parser context for logging and to store current state.
1392 * @param[in] attrs [Sized array](@ref sizedarrays) of attributes of current element.
1393 * @param[in,out] data Data to read from, always moved to currently handled character.
1394 * @param[in,out] inc_meta Meta informatinou about module/submodule name and includes to add to.
1395 *
1396 * @return LY_ERR values.
1397 */
David Sedlák0c2bab92019-07-22 15:33:19 +02001398static LY_ERR
1399yin_parse_include(struct yin_parser_ctx *ctx, struct yin_arg_record *attrs, const char **data,
1400 struct include_meta *inc_meta)
1401{
1402 struct lysp_include *inc;
1403
1404 /* allocate new include */
1405 LY_ARRAY_NEW_RET(ctx->xml_ctx.ctx, *inc_meta->includes, inc, LY_EMEM);
1406
1407 /* parse argument */
1408 LY_CHECK_RET(yin_parse_attribute(ctx, attrs, YIN_ARG_MODULE, &inc->name, Y_IDENTIF_ARG, YANG_INCLUDE));
1409
1410 /* submodules share the namespace with the module names, so there must not be
1411 * a module of the same name in the context, no need for revision matching */
1412 if (!strcmp(inc_meta->name, inc->name) || ly_ctx_get_module_latest(ctx->xml_ctx.ctx, inc->name)) {
1413 LOGVAL_PARSER((struct lys_parser_ctx *)ctx, LYVE_SYNTAX_YANG,
1414 "Name collision between module and submodule of name \"%s\".", inc->name);
1415 return LY_EVALID;
1416 }
1417
1418 /* parse content */
1419 struct yin_subelement subelems[4] = {
1420 {YANG_DESCRIPTION, &inc->dsc, YIN_SUBELEM_UNIQUE | YIN_SUBELEM_VER2},
1421 {YANG_REFERENCE, &inc->ref, YIN_SUBELEM_UNIQUE | YIN_SUBELEM_VER2},
1422 {YANG_REVISION_DATE, &inc->rev, YIN_SUBELEM_UNIQUE},
1423 {YANG_CUSTOM, NULL, 0},
1424 };
1425 return yin_parse_content(ctx, subelems, 4, data, YANG_INCLUDE, NULL, &inc->exts);
1426}
1427
David Sedlákaa854b02019-07-22 14:17:10 +02001428/**
David Sedlák5e13dea2019-07-22 16:06:45 +02001429 * @brief Parse feature element.
1430 *
1431 * @param[in,out] ctx YIN parser context for logging and to store current state.
1432 * @param[in] attrs [Sized array](@ref sizedarrays) of attributes of current element.
1433 * @param[in,out] data Data to read from, always moved to currently handled character.
1434 * @param[in,out] features Features to add to.
1435 *
1436 * @return LY_ERR values.
1437 */
1438static LY_ERR
1439yin_parse_feature(struct yin_parser_ctx *ctx, struct yin_arg_record *attrs, const char **data,
1440 struct lysp_feature **features)
1441{
1442 struct lysp_feature *feat;
1443
1444 /* allocate new feature */
1445 LY_ARRAY_NEW_RET(ctx->xml_ctx.ctx, *features, feat, LY_EMEM);
1446
1447 /* parse argument */
1448 LY_CHECK_RET(yin_parse_attribute(ctx, attrs, YIN_ARG_NAME, &feat->name, Y_IDENTIF_ARG, YANG_FEATURE));
1449
1450 /* parse content */
1451 struct yin_subelement subelems[5] = {
1452 {YANG_DESCRIPTION, &feat->dsc, YIN_SUBELEM_UNIQUE},
1453 {YANG_IF_FEATURE, &feat->iffeatures, 0},
1454 {YANG_REFERENCE, &feat->ref, YIN_SUBELEM_UNIQUE},
1455 {YANG_STATUS, &feat->flags, YIN_SUBELEM_UNIQUE},
1456 {YANG_CUSTOM, NULL, 0},
1457 };
1458 return yin_parse_content(ctx, subelems, 5, data, YANG_FEATURE, NULL, &feat->exts);
1459}
1460
1461/**
David Sedlák28794f22019-07-22 16:45:00 +02001462 * @brief Parse identity element.
1463 *
1464 * @param[in,out] ctx YIN parser context for logging and to store current state.
1465 * @param[in] attrs [Sized array](@ref sizedarrays) of attributes of current element.
1466 * @param[in,out] data Data to read from, always moved to currently handled character.
1467 * @param[in,out] identities Identities to add to.
1468 *
1469 * @return LY_ERR values.
1470 */
1471static LY_ERR
1472yin_parse_identity(struct yin_parser_ctx *ctx, struct yin_arg_record *attrs, const char **data,
1473 struct lysp_ident **identities)
1474{
1475 struct lysp_ident *ident;
1476
1477 /* allocate new identity */
1478 LY_ARRAY_NEW_RET(ctx->xml_ctx.ctx, *identities, ident, LY_EMEM);
1479
1480 /* parse argument */
1481 LY_CHECK_RET(yin_parse_attribute(ctx, attrs, YIN_ARG_NAME, &ident->name, Y_IDENTIF_ARG, YANG_IDENTITY));
1482
1483 /* parse content */
1484 struct yin_subelement subelems[6] = {
1485 {YANG_BASE, &ident->bases, 0},
1486 {YANG_DESCRIPTION, &ident->dsc, YIN_SUBELEM_UNIQUE},
1487 {YANG_IF_FEATURE, &ident->iffeatures, YIN_SUBELEM_VER2},
1488 {YANG_REFERENCE, &ident->ref, YIN_SUBELEM_UNIQUE},
1489 {YANG_STATUS, &ident->flags, YIN_SUBELEM_UNIQUE},
1490 {YANG_CUSTOM, NULL, 0},
1491 };
1492 return yin_parse_content(ctx, subelems, 6, data, YANG_IDENTITY, NULL, &ident->exts);
1493}
1494
1495/**
David Sedlákaf536aa2019-07-23 13:42:23 +02001496 * @brief Parse list element.
1497 *
1498 * @param[in,out] ctx YIN parser context for logging and to store current state.
1499 * @param[in] attrs [Sized array](@ref sizedarrays) of attributes of current element.
1500 * @param[in,out] data Data to read from, always moved to currently handled character.
1501 * @param[in] node_meta Meta information about node parent and siblings.
1502 *
1503 * @return LY_ERR values.
1504 */
1505static LY_ERR
David Sedlákf111bcb2019-07-23 17:15:51 +02001506yin_parse_list(struct yin_parser_ctx *ctx, struct yin_arg_record *attrs, const char **data,
1507 struct tree_node_meta *node_meta)
David Sedlákaf536aa2019-07-23 13:42:23 +02001508{
1509 struct lysp_node *iter;
1510 struct lysp_node_list *list;
1511
1512 /* create structure */
1513 list = calloc(1, sizeof *list);
1514 LY_CHECK_ERR_RET(!list, LOGMEM(ctx->xml_ctx.ctx), LY_EMEM);
1515 list->nodetype = LYS_LIST;
1516 list->parent = node_meta->parent;
1517
1518 /* insert into siblings */
1519 if (!*(node_meta->siblings)) {
1520 *node_meta->siblings = (struct lysp_node *)list;
1521 } else {
1522 for (iter = *node_meta->siblings; iter->next; iter = iter->next);
1523 iter->next = (struct lysp_node *)list;
1524 }
1525
1526 /* parse argument */
1527 LY_CHECK_RET(yin_parse_attribute(ctx, attrs, YIN_ARG_NAME, &list->name, Y_IDENTIF_ARG, YANG_LIST));
1528
1529 /* parse list content */
1530 struct tree_node_meta new_node_meta = {(struct lysp_node *)list, &list->child};
1531 struct typedef_meta typedef_meta = {(struct lysp_node *)list, &list->typedefs};
David Sedlák031b9e72019-07-23 15:19:37 +02001532 struct notif_meta notif_meta = {(struct lysp_node *)list, &list->notifs};
David Sedláke3ce9ef2019-07-23 16:34:30 +02001533 struct grouping_meta gr_meta = {(struct lysp_node *)list, &list->groupings};
David Sedlákaf536aa2019-07-23 13:42:23 +02001534 struct yin_subelement subelems[25] = {
1535 /* TODO action */
1536 {YANG_ACTION, NULL, 0},
1537 {YANG_ANYDATA, &new_node_meta, 0},
1538 {YANG_ANYXML, &new_node_meta, 0},
1539 /* TODO choice */
1540 {YANG_CHOICE, NULL, 0},
1541 {YANG_CONFIG, &list->flags, YIN_SUBELEM_UNIQUE},
David Sedlákf111bcb2019-07-23 17:15:51 +02001542 {YANG_CONTAINER, &new_node_meta, 0},
David Sedlákaf536aa2019-07-23 13:42:23 +02001543 {YANG_DESCRIPTION, &list->dsc, YIN_SUBELEM_UNIQUE},
David Sedláke3ce9ef2019-07-23 16:34:30 +02001544 {YANG_GROUPING, &gr_meta, 0},
David Sedlákaf536aa2019-07-23 13:42:23 +02001545 {YANG_IF_FEATURE, &list->iffeatures, 0},
1546 {YANG_KEY, &list->key, YIN_SUBELEM_UNIQUE},
1547 {YANG_LEAF, &new_node_meta, 0},
1548 {YANG_LEAF_LIST, &new_node_meta, 0},
1549 {YANG_LIST, &new_node_meta, 0},
1550 {YANG_MAX_ELEMENTS, list, YIN_SUBELEM_UNIQUE},
1551 {YANG_MIN_ELEMENTS, list, YIN_SUBELEM_UNIQUE},
1552 {YANG_MUST, &list->musts, 0},
David Sedlák031b9e72019-07-23 15:19:37 +02001553 {YANG_NOTIFICATION, &notif_meta, 0},
David Sedlákaf536aa2019-07-23 13:42:23 +02001554 {YANG_ORDERED_BY, &list->flags, YIN_SUBELEM_UNIQUE},
1555 {YANG_REFERENCE, &list->ref, YIN_SUBELEM_UNIQUE},
1556 {YANG_STATUS, &list->flags, YIN_SUBELEM_UNIQUE},
1557 {YANG_TYPEDEF, &typedef_meta, 0},
1558 {YANG_UNIQUE, &list->uniques, 0},
1559 {YANG_USES, &new_node_meta, 0},
1560 {YANG_WHEN, &list->when, YIN_SUBELEM_UNIQUE},
1561 {YANG_CUSTOM, NULL, 0},
1562 };
1563 LY_CHECK_RET(yin_parse_content(ctx, subelems, 25, data, YANG_LIST, NULL, &list->exts));
1564
1565 /* finalize parent pointers to the reallocated items */
1566 LY_CHECK_RET(lysp_parse_finalize_reallocated((struct lys_parser_ctx *)ctx, list->groupings, NULL, list->actions, list->notifs));
1567
1568 if (list->max && list->min > list->max) {
1569 LOGVAL_PARSER((struct lys_parser_ctx *)ctx, LYVE_SEMANTICS,
1570 "Invalid combination of min-elements and max-elements: min value %u is bigger than the max value %u.",
1571 list->min, list->max);
1572 return LY_EVALID;
1573 }
1574
1575 return LY_SUCCESS;
1576}
1577
1578/**
David Sedlák031b9e72019-07-23 15:19:37 +02001579 * @brief Parse notification element.
1580 *
1581 * @param[in,out] ctx YIN parser context for logging and to store current state.
1582 * @param[in] attrs [Sized array](@ref sizedarrays) of attributes of current element.
1583 * @param[in,out] data Data to read from, always moved to currently handled character.
1584 * @param[in,out] notif_meta Meta information about node parent and notifications to add to.
1585 *
1586 * @return LY_ERR values.
1587 */
1588static LY_ERR
1589yin_parse_notification(struct yin_parser_ctx *ctx, struct yin_arg_record *attrs, const char **data,
1590 struct notif_meta *notif_meta)
1591{
1592 struct lysp_notif *notif;
1593
1594 /* allocate new notification */
1595 LY_ARRAY_NEW_RET(ctx->xml_ctx.ctx, *notif_meta->notifs, notif, LY_EMEM);
1596 notif->nodetype = LYS_NOTIF;
1597 notif->parent = notif_meta->parent;
1598
1599 /* parse argument */
1600 LY_CHECK_RET(yin_parse_attribute(ctx, attrs, YIN_ARG_NAME, &notif->name, Y_IDENTIF_ARG, YANG_NOTIFICATION));
1601
1602 /* parse notification content */
1603 struct tree_node_meta node_meta = {(struct lysp_node *)notif, &notif->data};
1604 struct typedef_meta typedef_meta = {(struct lysp_node *)notif, &notif->typedefs};
David Sedláke3ce9ef2019-07-23 16:34:30 +02001605 struct grouping_meta gr_meta = {(struct lysp_node *)notif, &notif->groupings};
David Sedlák031b9e72019-07-23 15:19:37 +02001606 struct yin_subelement subelems[16] = {
1607 {YANG_ANYDATA, &node_meta, 0},
1608 {YANG_ANYXML, &node_meta, 0},
1609 /* TODO choice */
1610 {YANG_CHOICE, NULL, 0},
David Sedlákf111bcb2019-07-23 17:15:51 +02001611 {YANG_CONTAINER, &node_meta, 0},
David Sedlák031b9e72019-07-23 15:19:37 +02001612 {YANG_DESCRIPTION, &notif->dsc, YIN_SUBELEM_UNIQUE},
David Sedláke3ce9ef2019-07-23 16:34:30 +02001613 {YANG_GROUPING, &gr_meta, 0},
David Sedlák031b9e72019-07-23 15:19:37 +02001614 {YANG_IF_FEATURE, &notif->iffeatures, 0},
1615 {YANG_LEAF, &node_meta, 0},
1616 {YANG_LEAF_LIST, &node_meta, 0},
1617 {YANG_LIST, &node_meta, 0},
1618 {YANG_MUST, &notif->musts, YIN_SUBELEM_VER2},
1619 {YANG_REFERENCE, &notif->ref, YIN_SUBELEM_UNIQUE},
1620 {YANG_STATUS, &notif->flags, YIN_SUBELEM_UNIQUE},
1621 {YANG_TYPEDEF, &typedef_meta, 0},
1622 {YANG_USES, &node_meta, 0},
1623 {YANG_CUSTOM, NULL, 0},
1624 };
1625 LY_CHECK_RET(yin_parse_content(ctx, subelems, 16, data, YANG_NOTIFICATION, NULL, &notif->exts));
1626
1627 /* finalize parent pointers to the reallocated items */
1628 LY_CHECK_RET(lysp_parse_finalize_reallocated((struct lys_parser_ctx *)ctx, notif->groupings, NULL, NULL, NULL));
1629
1630 return LY_SUCCESS;
1631}
1632
1633/**
David Sedláke3ce9ef2019-07-23 16:34:30 +02001634 * @brief Parse notification element.
1635 *
1636 * @param[in,out] ctx YIN parser context for logging and to store current state.
1637 * @param[in] attrs [Sized array](@ref sizedarrays) of attributes of current element.
1638 * @param[in,out] data Data to read from, always moved to currently handled character.
1639 * @param[in,out] notif_meta Meta information about node parent and notifications to add to.
1640 *
1641 * @return LY_ERR values.
1642 */
1643static LY_ERR
1644yin_parse_grouping(struct yin_parser_ctx *ctx, struct yin_arg_record *attrs, const char **data,
1645 struct grouping_meta *gr_meta)
1646{
1647 struct lysp_grp *grp;
1648
1649 /* create new grouping */
1650 LY_ARRAY_NEW_RET(ctx->xml_ctx.ctx, *gr_meta->groupings, grp, LY_EMEM);
1651 grp->nodetype = LYS_GROUPING;
1652 grp->parent = gr_meta->parent;
1653
1654 /* parse argument */
1655 LY_CHECK_RET(yin_parse_attribute(ctx, attrs, YIN_ARG_NAME, &grp->name, Y_IDENTIF_ARG, YANG_GROUPING));
1656
1657 /* parse grouping content */
1658 struct tree_node_meta node_meta = {(struct lysp_node *)grp, &grp->data};
1659 struct typedef_meta typedef_meta = {(struct lysp_node *)grp, &grp->typedefs};
1660 struct grouping_meta sub_grouping = {(struct lysp_node *)grp, &grp->groupings};
1661 struct notif_meta notif_meta = {(struct lysp_node *)grp, &grp->notifs};
1662 struct yin_subelement subelems[16] = {
1663 /* TODO action */
1664 {YANG_ACTION, NULL, 0},
1665 {YANG_ANYDATA, &node_meta, 0},
1666 {YANG_ANYXML, &node_meta, 0},
1667 /* TODO choice */
1668 {YANG_CHOICE, NULL, 0},
David Sedláke3ce9ef2019-07-23 16:34:30 +02001669 {YANG_CONTAINER, &node_meta, 0},
1670 {YANG_DESCRIPTION, &grp->dsc, YIN_SUBELEM_UNIQUE},
1671 {YANG_GROUPING, &sub_grouping, 0},
1672 {YANG_LEAF, &node_meta, 0},
1673 {YANG_LEAF_LIST, &node_meta, 0},
1674 {YANG_LIST, &node_meta, 0},
1675 {YANG_NOTIFICATION, &notif_meta, 0},
1676 {YANG_REFERENCE, &grp->ref, YIN_SUBELEM_UNIQUE},
1677 {YANG_STATUS, &grp->flags, YIN_SUBELEM_UNIQUE},
1678 {YANG_TYPEDEF, &typedef_meta, 0},
1679 {YANG_USES, &node_meta, 0},
1680 {YANG_CUSTOM, NULL, 0},
1681 };
1682 LY_CHECK_RET(yin_parse_content(ctx, subelems, 16, data, YANG_GROUPING, NULL, &grp->exts));
1683 /* finalize parent pointers to the reallocated items */
1684 LY_CHECK_RET(lysp_parse_finalize_reallocated((struct lys_parser_ctx *)ctx, grp->groupings, NULL, grp->actions, grp->notifs));
1685
1686 return LY_SUCCESS;
1687}
1688
1689/**
David Sedlákf111bcb2019-07-23 17:15:51 +02001690 * @brief Parse list element.
1691 *
1692 * @param[in,out] ctx YIN parser context for logging and to store current state.
1693 * @param[in] attrs [Sized array](@ref sizedarrays) of attributes of current element.
1694 * @param[in,out] data Data to read from, always moved to currently handled character.
1695 * @param[in] node_meta Meta information about node parent and siblings.
1696 *
1697 * @return LY_ERR values.
1698 */
1699static LY_ERR
1700yin_parse_container(struct yin_parser_ctx *ctx, struct yin_arg_record *attrs, const char **data,
1701 struct tree_node_meta *node_meta)
1702{
1703 struct lysp_node *iter;
1704 struct lysp_node_container *cont;
1705
1706 /* create new container */
1707 cont = calloc(1, sizeof *cont);
1708 LY_CHECK_ERR_RET(!cont, LOGMEM(ctx->xml_ctx.ctx), LY_EMEM);
1709 cont->nodetype = LYS_CONTAINER;
1710 cont->parent = node_meta->parent;
1711
1712 /* insert into siblings */
1713 if (!*(node_meta->siblings)) {
1714 *node_meta->siblings = (struct lysp_node *)cont;
1715 } else {
1716 for (iter = *node_meta->siblings; iter->next; iter = iter->next);
1717 iter->next = (struct lysp_node *)cont;
1718 }
1719
1720 /* parse aegument */
1721 LY_CHECK_RET(yin_parse_attribute(ctx, attrs, YIN_ARG_NAME, &cont->name, Y_IDENTIF_ARG, YANG_CONTAINER));
1722
1723 /* parse container content */
1724 struct tree_node_meta new_node_meta = {(struct lysp_node *)cont, &cont->child};
1725 struct grouping_meta grp_meta = {(struct lysp_node *)cont, &cont->groupings};
1726 struct typedef_meta typedef_meta = {(struct lysp_node *)cont, &cont->typedefs};
1727 struct notif_meta notif_meta = {(struct lysp_node *)cont, &cont->notifs};
1728 struct yin_subelement subelems[21] = {
1729 /* TODO action */
1730 {YANG_ACTION, NULL, YIN_SUBELEM_VER2},
1731 {YANG_ANYDATA, &new_node_meta, YIN_SUBELEM_VER2},
1732 {YANG_ANYXML, &new_node_meta, 0},
1733 /* TODO choice */
1734 {YANG_CHOICE, NULL, 0},
1735 {YANG_CONFIG, &cont->flags, YIN_SUBELEM_UNIQUE},
1736 {YANG_CONTAINER, &new_node_meta, 0},
1737 {YANG_DESCRIPTION, &cont->dsc, YIN_SUBELEM_UNIQUE},
1738 {YANG_GROUPING, &grp_meta, 0},
1739 {YANG_IF_FEATURE, &cont->iffeatures, 0},
1740 {YANG_LEAF, &new_node_meta, 0},
1741 {YANG_LEAF_LIST, &new_node_meta, 0},
1742 {YANG_LIST, &new_node_meta, 0},
1743 {YANG_MUST, &cont->musts, 0},
1744 {YANG_NOTIFICATION, &notif_meta, YIN_SUBELEM_VER2},
1745 {YANG_PRESENCE, &cont->presence, YIN_SUBELEM_UNIQUE},
1746 {YANG_REFERENCE, &cont->ref, YIN_SUBELEM_UNIQUE},
1747 {YANG_STATUS, &cont->flags, YIN_SUBELEM_UNIQUE},
1748 {YANG_TYPEDEF, &typedef_meta, 0},
1749 {YANG_USES, &new_node_meta, 0},
1750 {YANG_WHEN, &cont->when, YIN_SUBELEM_UNIQUE},
1751 {YANG_CUSTOM, NULL, 0},
1752 };
1753 LY_CHECK_RET(yin_parse_content(ctx, subelems, 21, data, YANG_CONTAINER, NULL, &cont->exts));
1754 LY_CHECK_RET(lysp_parse_finalize_reallocated((struct lys_parser_ctx *)ctx, cont->groupings, NULL, cont->actions, cont->notifs));
1755
1756 return LY_SUCCESS;
1757}
1758
1759/**
David Sedlákb4e44562019-07-04 15:42:12 +02001760 * @brief Map keyword type to substatement info.
1761 *
1762 * @param[in] kw Keyword type.
1763 *
1764 * @return correct LYEXT_SUBSTMT information.
1765 */
1766static LYEXT_SUBSTMT
1767kw2lyext_substmt(enum yang_keyword kw)
1768{
1769 switch (kw) {
1770 case YANG_ARGUMENT:
1771 return LYEXT_SUBSTMT_ARGUMENT;
1772 case YANG_BASE:
1773 return LYEXT_SUBSTMT_BASE;
1774 case YANG_BELONGS_TO:
1775 return LYEXT_SUBSTMT_BELONGSTO;
1776 case YANG_CONTACT:
1777 return LYEXT_SUBSTMT_CONTACT;
1778 case YANG_DEFAULT:
1779 return LYEXT_SUBSTMT_DEFAULT;
1780 case YANG_DESCRIPTION:
1781 return LYEXT_SUBSTMT_DESCRIPTION;
1782 case YANG_ERROR_APP_TAG:
1783 return LYEXT_SUBSTMT_ERRTAG;
1784 case YANG_ERROR_MESSAGE:
1785 return LYEXT_SUBSTMT_ERRMSG;
1786 case YANG_KEY:
1787 return LYEXT_SUBSTMT_KEY;
1788 case YANG_NAMESPACE:
1789 return LYEXT_SUBSTMT_NAMESPACE;
1790 case YANG_ORGANIZATION:
1791 return LYEXT_SUBSTMT_ORGANIZATION;
1792 case YANG_PATH:
1793 return LYEXT_SUBSTMT_PATH;
1794 case YANG_PREFIX:
1795 return LYEXT_SUBSTMT_PREFIX;
1796 case YANG_PRESENCE:
1797 return LYEXT_SUBSTMT_PRESENCE;
1798 case YANG_REFERENCE:
1799 return LYEXT_SUBSTMT_REFERENCE;
1800 case YANG_REVISION_DATE:
1801 return LYEXT_SUBSTMT_REVISIONDATE;
1802 case YANG_UNITS:
1803 return LYEXT_SUBSTMT_UNITS;
1804 case YANG_VALUE:
1805 return LYEXT_SUBSTMT_VALUE;
1806 case YANG_YANG_VERSION:
1807 return LYEXT_SUBSTMT_VERSION;
1808 case YANG_MODIFIER:
1809 return LYEXT_SUBSTMT_MODIFIER;
1810 case YANG_REQUIRE_INSTANCE:
1811 return LYEXT_SUBSTMT_REQINSTANCE;
1812 case YANG_YIN_ELEMENT:
1813 return LYEXT_SUBSTMT_YINELEM;
1814 case YANG_CONFIG:
1815 return LYEXT_SUBSTMT_CONFIG;
1816 case YANG_MANDATORY:
1817 return LYEXT_SUBSTMT_MANDATORY;
1818 case YANG_ORDERED_BY:
1819 return LYEXT_SUBSTMT_ORDEREDBY;
1820 case YANG_STATUS:
1821 return LYEXT_SUBSTMT_STATUS;
1822 case YANG_FRACTION_DIGITS:
1823 return LYEXT_SUBSTMT_FRACDIGITS;
1824 case YANG_MAX_ELEMENTS:
1825 return LYEXT_SUBSTMT_MAX;
1826 case YANG_MIN_ELEMENTS:
1827 return LYEXT_SUBSTMT_MIN;
1828 case YANG_POSITION:
1829 return LYEXT_SUBSTMT_POSITION;
1830 case YANG_UNIQUE:
1831 return LYEXT_SUBSTMT_UNIQUE;
1832 case YANG_IF_FEATURE:
1833 return LYEXT_SUBSTMT_IFFEATURE;
1834 default:
1835 return LYEXT_SUBSTMT_SELF;
1836 }
1837}
1838
David Sedlák9c40a922019-07-08 17:04:43 +02001839/**
1840 * @brief Parse belongs-to element.
1841 *
1842 * @param[in] ctx Yin parser context for logging and to store current state.
David Sedlákbba38e52019-07-09 15:20:01 +02001843 * @param[in] attrs [Sized array](@ref sizedarrays) of attributes of current element.
David Sedlák9c40a922019-07-08 17:04:43 +02001844 * @param[in,out] data Data to read from, always moved to currently handled character.
1845 * @param[out] submod Structure of submodule that is being parsed.
1846 * @param[in,out] exts Extension instances to add to.
1847 *
1848 * @return LY_ERR values
1849 */
1850static LY_ERR
1851yin_parse_belongs_to(struct yin_parser_ctx *ctx, struct yin_arg_record *attrs, const char **data,
1852 struct lysp_submodule *submod, struct lysp_ext_instance **exts)
1853{
David Sedlák968ac342019-07-11 15:17:59 +02001854 struct yin_subelement subelems[2] = {
1855 {YANG_PREFIX, &submod->prefix, YIN_SUBELEM_MANDATORY | YIN_SUBELEM_UNIQUE},
1856 {YANG_CUSTOM, NULL, 0}
1857 };
David Sedlák1f90d252019-07-10 17:09:32 +02001858 LY_CHECK_RET(yin_parse_attribute(ctx, attrs, YIN_ARG_MODULE, &submod->belongsto, Y_IDENTIF_ARG, YANG_BELONGS_TO));
David Sedlák9c40a922019-07-08 17:04:43 +02001859
1860 return yin_parse_content(ctx, subelems, 2, data, YANG_BELONGS_TO, NULL, exts);
1861}
1862
David Sedlákd6e56892019-07-01 15:40:24 +02001863LY_ERR
David Sedlákda8ffa32019-07-08 14:17:10 +02001864yin_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 +02001865 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 +02001866{
1867 LY_ERR ret = LY_SUCCESS;
1868 struct sized_string prefix, name;
David Sedlák8e7bda82019-07-16 17:57:50 +02001869 char *out = NULL;
1870 size_t out_len = 0;
1871 int dynamic = 0;
David Sedlák1af868e2019-07-17 17:03:14 +02001872 struct yin_arg_record *attrs = NULL;
David Sedlákd6e56892019-07-01 15:40:24 +02001873 enum yang_keyword kw = YANG_NONE;
David Sedlák1af868e2019-07-17 17:03:14 +02001874 struct yin_subelement *subelem = NULL;
David Sedlák374d2b32019-07-17 15:06:55 +02001875 struct lysp_type *type, *nested_type;
David Sedlák09e18c92019-07-18 11:17:11 +02001876
David Sedlákb0faad82019-07-04 14:28:59 +02001877 assert(is_ordered(subelem_info, subelem_info_size));
David Sedlákd6e56892019-07-01 15:40:24 +02001878
David Sedlákda8ffa32019-07-08 14:17:10 +02001879 if (ctx->xml_ctx.status == LYXML_ELEM_CONTENT) {
1880 ret = lyxml_get_string(&ctx->xml_ctx, data, &out, &out_len, &out, &out_len, &dynamic);
David Sedlákd6e56892019-07-01 15:40:24 +02001881 /* current element has subelements as content */
1882 if (ret == LY_EINVAL) {
David Sedlákda8ffa32019-07-08 14:17:10 +02001883 while (ctx->xml_ctx.status == LYXML_ELEMENT) {
1884 ret = lyxml_get_element(&ctx->xml_ctx, data, &prefix.value, &prefix.len, &name.value, &name.len);
David Sedlákd6e56892019-07-01 15:40:24 +02001885 LY_CHECK_GOTO(ret, cleanup);
1886 if (!name.value) {
1887 /* end of current element reached */
1888 break;
1889 }
David Sedlák1af868e2019-07-17 17:03:14 +02001890 ret = yin_load_attributes(ctx, data, &attrs);
David Sedlákd6e56892019-07-01 15:40:24 +02001891 LY_CHECK_GOTO(ret, cleanup);
David Sedlákc1771b12019-07-10 15:55:46 +02001892 kw = yin_match_keyword(ctx, name.value, name.len, prefix.value, prefix.len, current_element);
David Sedlákd6e56892019-07-01 15:40:24 +02001893
1894 /* check if this element can be child of current element */
David Sedlák1af868e2019-07-17 17:03:14 +02001895 subelem = get_record(kw, subelem_info_size, subelem_info);
1896 if (!subelem) {
David Sedlákda8ffa32019-07-08 14:17:10 +02001897 LOGVAL_PARSER((struct lys_parser_ctx *)ctx, LY_VCODE_UNEXP_SUBELEM, name.len, name.value, ly_stmt2str(current_element));
David Sedlákd6e56892019-07-01 15:40:24 +02001898 ret = LY_EVALID;
1899 goto cleanup;
1900 }
1901
David Sedlák5f8191e2019-07-08 16:35:52 +02001902 /* TODO check relative order */
1903
David Sedlák0c2bab92019-07-22 15:33:19 +02001904 /* check flags */
David Sedlák21f87cd2019-07-03 16:53:23 +02001905 /* if element is unique and already defined log error */
David Sedlák1af868e2019-07-17 17:03:14 +02001906 if ((subelem->flags & YIN_SUBELEM_UNIQUE) && (subelem->flags & YIN_SUBELEM_PARSED)) {
David Sedlákda8ffa32019-07-08 14:17:10 +02001907 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 +02001908 return LY_EVALID;
1909 }
David Sedlák1af868e2019-07-17 17:03:14 +02001910 if (subelem->flags & YIN_SUBELEM_FIRST) {
1911 ret = yin_check_subelem_first_constraint(ctx, subelem_info, subelem_info_size, current_element, subelem);
David Sedlák66d7c842019-07-11 15:06:04 +02001912 LY_CHECK_GOTO(ret, cleanup);
David Sedlák21f87cd2019-07-03 16:53:23 +02001913 }
David Sedlák0c2bab92019-07-22 15:33:19 +02001914 if (subelem->flags & YIN_SUBELEM_VER2) {
1915 if (ctx->mod_version < 2) {
1916 LOGVAL_PARSER((struct lys_parser_ctx *)ctx, LYVCODE_INSUBELEM2, ly_stmt2str(kw), ly_stmt2str(current_element));
David Sedlák9bb1c042019-07-22 16:45:37 +02001917 ret = LY_EVALID;
1918 goto cleanup;
David Sedlák0c2bab92019-07-22 15:33:19 +02001919 }
1920 }
David Sedlák1af868e2019-07-17 17:03:14 +02001921 subelem->flags |= YIN_SUBELEM_PARSED;
David Sedlák21f87cd2019-07-03 16:53:23 +02001922
David Sedlákd6e56892019-07-01 15:40:24 +02001923 switch (kw) {
1924 case YANG_CUSTOM:
David Sedlák1af868e2019-07-17 17:03:14 +02001925 ret = yin_parse_extension_instance(ctx, attrs, data, name2fullname(name.value, prefix.len),
David Sedlák3ffbc522019-07-02 17:49:28 +02001926 namelen2fulllen(name.len, prefix.len),
David Sedlák1af868e2019-07-17 17:03:14 +02001927 kw2lyext_substmt(current_element),
1928 (subelem->dest) ? *((uint32_t*)subelem->dest) : 0, exts);
David Sedlákd6e56892019-07-01 15:40:24 +02001929 break;
1930 case YANG_ACTION:
1931 break;
1932 case YANG_ANYDATA:
David Sedlákd6e56892019-07-01 15:40:24 +02001933 case YANG_ANYXML:
David Sedlák8a83bbb2019-07-18 14:46:00 +02001934 ret = yin_parse_any(ctx, attrs, data, kw, (struct tree_node_meta *)subelem->dest);
David Sedlákd6e56892019-07-01 15:40:24 +02001935 break;
1936 case YANG_ARGUMENT:
David Sedlák1af868e2019-07-17 17:03:14 +02001937 ret = yin_parse_argument_element(ctx, attrs, data, (struct yin_argument_meta *)subelem->dest, exts);
David Sedlákd6e56892019-07-01 15:40:24 +02001938 break;
1939 case YANG_AUGMENT:
1940 break;
1941 case YANG_BASE:
David Sedláka62750b2019-07-16 11:21:31 +02001942 if (current_element == YANG_TYPE) {
David Sedlák1af868e2019-07-17 17:03:14 +02001943 type = (struct lysp_type *)subelem->dest;
1944 ret = yin_parse_simple_elements(ctx, attrs, data, kw, &type->bases, YIN_ARG_NAME,
David Sedlák292763b2019-07-09 11:10:53 +02001945 Y_PREF_IDENTIF_ARG, exts);
1946 type->flags |= LYS_SET_BASE;
David Sedláka62750b2019-07-16 11:21:31 +02001947 } else if (current_element == YANG_IDENTITY) {
David Sedlák1af868e2019-07-17 17:03:14 +02001948 ret = yin_parse_simple_elements(ctx, attrs, data, kw, (const char ***)subelem->dest,
David Sedlák292763b2019-07-09 11:10:53 +02001949 YIN_ARG_NAME, Y_PREF_IDENTIF_ARG, exts);
1950 } else {
1951 LOGINT(ctx->xml_ctx.ctx);
1952 ret = LY_EINT;
1953 }
David Sedlákd6e56892019-07-01 15:40:24 +02001954 break;
1955 case YANG_BELONGS_TO:
David Sedlák1af868e2019-07-17 17:03:14 +02001956 ret = yin_parse_belongs_to(ctx, attrs, data, (struct lysp_submodule *)subelem->dest, exts);
David Sedlákd6e56892019-07-01 15:40:24 +02001957 break;
1958 case YANG_BIT:
David Sedlák07869a52019-07-12 14:28:19 +02001959 case YANG_ENUM:
David Sedlák1af868e2019-07-17 17:03:14 +02001960 ret = yin_parse_enum_bit(ctx, attrs, data, kw, (struct lysp_type *)subelem->dest);
David Sedlákd6e56892019-07-01 15:40:24 +02001961 break;
1962 case YANG_CASE:
1963 break;
1964 case YANG_CHOICE:
1965 break;
1966 case YANG_CONFIG:
David Sedlák1af868e2019-07-17 17:03:14 +02001967 ret = yin_parse_config(ctx, attrs, data, (uint16_t *)subelem->dest, exts);
David Sedlákd6e56892019-07-01 15:40:24 +02001968 break;
1969 case YANG_CONTACT:
David Sedlák619db942019-07-03 14:47:30 +02001970 case YANG_DESCRIPTION:
1971 case YANG_ORGANIZATION:
1972 case YANG_REFERENCE:
David Sedlák1af868e2019-07-17 17:03:14 +02001973 ret = yin_parse_meta_element(ctx, data, kw, (const char **)subelem->dest, exts);
David Sedlákd6e56892019-07-01 15:40:24 +02001974 break;
1975 case YANG_CONTAINER:
David Sedlákf111bcb2019-07-23 17:15:51 +02001976 ret = yin_parse_container(ctx, attrs, data, (struct tree_node_meta *)subelem->dest);
David Sedlákd6e56892019-07-01 15:40:24 +02001977 break;
1978 case YANG_DEFAULT:
David Sedlákc3da3ef2019-07-19 12:56:08 +02001979 if (subelem->flags & YIN_SUBELEM_UNIQUE) {
1980 ret = yin_parse_simple_element(ctx, attrs, data, kw, (const char **)subelem->dest,
1981 YIN_ARG_VALUE, Y_STR_ARG, exts);
1982 } else {
1983 ret = yin_parse_simple_elements(ctx, attrs, data, kw, (const char ***)subelem->dest,
1984 YIN_ARG_VALUE, Y_STR_ARG, exts);
1985 }
David Sedlákd6e56892019-07-01 15:40:24 +02001986 break;
David Sedlákd6e56892019-07-01 15:40:24 +02001987 case YANG_DEVIATE:
1988 break;
1989 case YANG_DEVIATION:
1990 break;
David Sedlákd6e56892019-07-01 15:40:24 +02001991 case YANG_ERROR_APP_TAG:
David Sedlák1af868e2019-07-17 17:03:14 +02001992 ret = yin_parse_simple_element(ctx, attrs, data, kw, (const char **)subelem->dest,
David Sedlák2ce1be62019-07-10 16:15:09 +02001993 YIN_ARG_VALUE, Y_STR_ARG, exts);
David Sedlákd6e56892019-07-01 15:40:24 +02001994 break;
1995 case YANG_ERROR_MESSAGE:
David Sedlák1af868e2019-07-17 17:03:14 +02001996 ret = yin_parse_err_msg_element(ctx, data, (const char **)subelem->dest, exts);
David Sedlákd6e56892019-07-01 15:40:24 +02001997 break;
1998 case YANG_EXTENSION:
David Sedlák1af868e2019-07-17 17:03:14 +02001999 ret = yin_parse_extension(ctx, attrs, data, (struct lysp_ext **)subelem->dest);
David Sedlákd6e56892019-07-01 15:40:24 +02002000 break;
2001 case YANG_FEATURE:
David Sedlák5e13dea2019-07-22 16:06:45 +02002002 ret = yin_parse_feature(ctx, attrs, data, (struct lysp_feature **)subelem->dest);
David Sedlákd6e56892019-07-01 15:40:24 +02002003 break;
2004 case YANG_FRACTION_DIGITS:
David Sedlák1af868e2019-07-17 17:03:14 +02002005 ret = yin_parse_fracdigits(ctx, attrs, data, (struct lysp_type *)subelem->dest);
David Sedlákd6e56892019-07-01 15:40:24 +02002006 break;
2007 case YANG_GROUPING:
David Sedláke3ce9ef2019-07-23 16:34:30 +02002008 ret = yin_parse_grouping(ctx, attrs, data, (struct grouping_meta *)subelem->dest);
David Sedlákd6e56892019-07-01 15:40:24 +02002009 break;
2010 case YANG_IDENTITY:
David Sedlák28794f22019-07-22 16:45:00 +02002011 ret = yin_parse_identity(ctx, attrs, data, (struct lysp_ident **)subelem->dest);
David Sedlákd6e56892019-07-01 15:40:24 +02002012 break;
2013 case YANG_IF_FEATURE:
David Sedlák1af868e2019-07-17 17:03:14 +02002014 ret = yin_parse_simple_elements(ctx, attrs, data, kw,
2015 (const char ***)subelem->dest, YIN_ARG_NAME, Y_STR_ARG, exts);
David Sedlákd6e56892019-07-01 15:40:24 +02002016 break;
2017 case YANG_IMPORT:
David Sedlák1af868e2019-07-17 17:03:14 +02002018 ret = yin_parse_import(ctx, attrs, data, (struct lysp_module *)subelem->dest);
David Sedlákd6e56892019-07-01 15:40:24 +02002019 break;
2020 case YANG_INCLUDE:
David Sedlák0c2bab92019-07-22 15:33:19 +02002021 ret = yin_parse_include(ctx, attrs, data, (struct include_meta *)subelem->dest);
David Sedlákd6e56892019-07-01 15:40:24 +02002022 break;
2023 case YANG_INPUT:
2024 break;
2025 case YANG_KEY:
David Sedlák12470a82019-07-19 13:44:36 +02002026 ret = yin_parse_simple_element(ctx, attrs, data, kw, (const char **)subelem->dest, YIN_ARG_VALUE,
2027 Y_STR_ARG, exts);
David Sedlákd6e56892019-07-01 15:40:24 +02002028 break;
2029 case YANG_LEAF:
David Sedlák203ca3a2019-07-18 15:26:25 +02002030 ret = yin_parse_leaf(ctx, attrs, data, (struct tree_node_meta *)subelem->dest);
David Sedlákd6e56892019-07-01 15:40:24 +02002031 break;
2032 case YANG_LEAF_LIST:
David Sedlákc3da3ef2019-07-19 12:56:08 +02002033 ret = yin_parse_leaflist(ctx, attrs, data, (struct tree_node_meta *)subelem->dest);
David Sedlákd6e56892019-07-01 15:40:24 +02002034 break;
2035 case YANG_LENGTH:
David Sedlák1af868e2019-07-17 17:03:14 +02002036 type = (struct lysp_type *)subelem->dest;
David Sedlák438ae432019-07-11 15:36:54 +02002037 type->length = calloc(1, sizeof *type->length);
2038 LY_CHECK_ERR_GOTO(!type->length, LOGMEM(ctx->xml_ctx.ctx); ret = LY_EMEM, cleanup);
David Sedlák1af868e2019-07-17 17:03:14 +02002039 ret = yin_parse_restriction(ctx, attrs, data, kw, type->length);
David Sedlák438ae432019-07-11 15:36:54 +02002040 type->flags |= LYS_SET_LENGTH;
David Sedlákd6e56892019-07-01 15:40:24 +02002041 break;
2042 case YANG_LIST:
David Sedlákaf536aa2019-07-23 13:42:23 +02002043 ret = yin_parse_list(ctx, attrs, data, (struct tree_node_meta *)subelem->dest);
David Sedlákd6e56892019-07-01 15:40:24 +02002044 break;
2045 case YANG_MANDATORY:
David Sedlák1af868e2019-07-17 17:03:14 +02002046 ret = yin_parse_mandatory(ctx, attrs, data, (uint16_t *)subelem->dest, exts);
David Sedlákd6e56892019-07-01 15:40:24 +02002047 break;
2048 case YANG_MAX_ELEMENTS:
David Sedlákd6e56892019-07-01 15:40:24 +02002049 case YANG_MIN_ELEMENTS:
David Sedlák09e18c92019-07-18 11:17:11 +02002050 ret = yin_parse_minmax(ctx, attrs, data, current_element, kw, subelem->dest);
David Sedlákd6e56892019-07-01 15:40:24 +02002051 break;
2052 case YANG_MODIFIER:
David Sedlák1af868e2019-07-17 17:03:14 +02002053 ret = yin_parse_modifier(ctx, attrs, data, (const char **)subelem->dest, exts);
David Sedlákd6e56892019-07-01 15:40:24 +02002054 break;
2055 case YANG_MODULE:
2056 break;
2057 case YANG_MUST:
David Sedlák1af868e2019-07-17 17:03:14 +02002058 ret = yin_parse_must(ctx, attrs, data, (struct lysp_restr **)subelem->dest);
David Sedlákd6e56892019-07-01 15:40:24 +02002059 break;
2060 case YANG_NAMESPACE:
David Sedlák1af868e2019-07-17 17:03:14 +02002061 ret = yin_parse_simple_element(ctx, attrs, data, kw, (const char **)subelem->dest,
David Sedlák2ce1be62019-07-10 16:15:09 +02002062 YIN_ARG_URI, Y_STR_ARG, exts);
David Sedlákd6e56892019-07-01 15:40:24 +02002063 break;
2064 case YANG_NOTIFICATION:
David Sedlák031b9e72019-07-23 15:19:37 +02002065 ret = yin_parse_notification(ctx, attrs, data, (struct notif_meta *)subelem->dest);
David Sedlákd6e56892019-07-01 15:40:24 +02002066 break;
2067 case YANG_ORDERED_BY:
David Sedláka2dad212019-07-18 12:45:19 +02002068 ret = yin_parse_orderedby(ctx, attrs, data, (uint16_t *)subelem->dest, exts);
David Sedlákd6e56892019-07-01 15:40:24 +02002069 break;
David Sedlákd6e56892019-07-01 15:40:24 +02002070 case YANG_OUTPUT:
2071 break;
2072 case YANG_PATH:
David Sedlák1af868e2019-07-17 17:03:14 +02002073 type = (struct lysp_type *)subelem->dest;
2074 ret = yin_parse_simple_element(ctx, attrs, data, kw, &type->path,
David Sedlák58979872019-07-12 11:42:43 +02002075 YIN_ARG_VALUE, Y_STR_ARG, exts);
2076 type->flags |= LYS_SET_PATH;
David Sedlákd6e56892019-07-01 15:40:24 +02002077 break;
2078 case YANG_PATTERN:
David Sedlák1af868e2019-07-17 17:03:14 +02002079 ret = yin_parse_pattern(ctx, attrs, data, (struct lysp_type *)subelem->dest);
David Sedlákd6e56892019-07-01 15:40:24 +02002080 break;
David Sedlák5545f5d2019-07-11 11:55:16 +02002081 case YANG_VALUE:
David Sedlákd6e56892019-07-01 15:40:24 +02002082 case YANG_POSITION:
David Sedlák1af868e2019-07-17 17:03:14 +02002083 ret = yin_parse_value_pos_element(ctx, attrs, data, kw,
2084 (struct lysp_type_enum *)subelem->dest);
David Sedlákd6e56892019-07-01 15:40:24 +02002085 break;
2086 case YANG_PREFIX:
David Sedlák1af868e2019-07-17 17:03:14 +02002087 ret = yin_parse_simple_element(ctx, attrs, data, kw,
2088 (const char **)subelem->dest, YIN_ARG_VALUE, Y_IDENTIF_ARG, exts);
David Sedlákd6e56892019-07-01 15:40:24 +02002089 break;
2090 case YANG_PRESENCE:
David Sedlákcb39f642019-07-19 13:19:55 +02002091 ret = yin_parse_simple_element(ctx, attrs, data, kw, (const char **)subelem->dest, YIN_ARG_VALUE,
2092 Y_STR_ARG, exts);
David Sedlákd6e56892019-07-01 15:40:24 +02002093 break;
2094 case YANG_RANGE:
David Sedlák1af868e2019-07-17 17:03:14 +02002095 type = (struct lysp_type *)subelem->dest;
David Sedlákb7296dd2019-07-11 14:58:38 +02002096 type->range = calloc(1, sizeof *type->range);
David Sedlák66d7c842019-07-11 15:06:04 +02002097 LY_CHECK_ERR_GOTO(!type->range, LOGMEM(ctx->xml_ctx.ctx); ret = LY_EMEM, cleanup);
David Sedlák1af868e2019-07-17 17:03:14 +02002098 ret = yin_parse_restriction(ctx, attrs, data, kw, type->range);
David Sedlák438ae432019-07-11 15:36:54 +02002099 type->flags |= LYS_SET_RANGE;
David Sedlákd6e56892019-07-01 15:40:24 +02002100 break;
David Sedlákd6e56892019-07-01 15:40:24 +02002101 case YANG_REFINE:
David Sedlákd2d676a2019-07-22 11:28:19 +02002102 ret = yin_parse_refine(ctx, attrs, data, (struct lysp_refine **)subelem->dest);
David Sedlákd6e56892019-07-01 15:40:24 +02002103 break;
2104 case YANG_REQUIRE_INSTANCE:
David Sedlák1af868e2019-07-17 17:03:14 +02002105 ret = yin_pasrse_reqinstance(ctx, attrs, data, (struct lysp_type *)subelem->dest);
David Sedlákd6e56892019-07-01 15:40:24 +02002106 break;
2107 case YANG_REVISION:
David Sedlákaa854b02019-07-22 14:17:10 +02002108 ret = yin_parse_revision(ctx, attrs, data, (struct lysp_revision **)subelem->dest);
David Sedlákd6e56892019-07-01 15:40:24 +02002109 break;
2110 case YANG_REVISION_DATE:
David Sedlák1af868e2019-07-17 17:03:14 +02002111 ret = yin_parse_revision_date(ctx, attrs, data, (char *)subelem->dest, exts);
David Sedlákd6e56892019-07-01 15:40:24 +02002112 break;
2113 case YANG_RPC:
2114 break;
2115 case YANG_STATUS:
David Sedlák1af868e2019-07-17 17:03:14 +02002116 ret = yin_parse_status(ctx, attrs, data, (uint16_t *)subelem->dest, exts);
David Sedlákd6e56892019-07-01 15:40:24 +02002117 break;
2118 case YANG_SUBMODULE:
2119 break;
2120 case YANG_TYPE:
David Sedlák374d2b32019-07-17 15:06:55 +02002121 /* type as child of another type */
David Sedlák1af868e2019-07-17 17:03:14 +02002122 type = (struct lysp_type *)subelem->dest;
David Sedlák374d2b32019-07-17 15:06:55 +02002123 if (current_element == YANG_TYPE) {
2124 LY_ARRAY_NEW_GOTO(ctx->xml_ctx.ctx, type->types, nested_type, ret, cleanup);
David Sedlákc3da3ef2019-07-19 12:56:08 +02002125 type->flags |= LYS_SET_TYPE;
David Sedlák374d2b32019-07-17 15:06:55 +02002126 type = nested_type;
2127 }
David Sedlák1af868e2019-07-17 17:03:14 +02002128 ret = yin_parse_type(ctx, attrs, data, type);
David Sedlákd6e56892019-07-01 15:40:24 +02002129 break;
2130 case YANG_TYPEDEF:
David Sedlák04e17b22019-07-19 15:29:48 +02002131 ret = yin_parse_typedef(ctx, attrs, data, (struct typedef_meta *)subelem->dest);
David Sedlákd6e56892019-07-01 15:40:24 +02002132 break;
2133 case YANG_UNIQUE:
David Sedlák1af868e2019-07-17 17:03:14 +02002134 ret = yin_parse_simple_elements(ctx, attrs, data, kw, (const char ***)subelem->dest,
David Sedláka5b1d382019-07-10 16:31:09 +02002135 YIN_ARG_TAG, Y_STR_ARG, exts);
David Sedlákd6e56892019-07-01 15:40:24 +02002136 break;
2137 case YANG_UNITS:
David Sedlák1af868e2019-07-17 17:03:14 +02002138 ret = yin_parse_simple_element(ctx, attrs, data, kw, (const char **)subelem->dest,
David Sedláka5b1d382019-07-10 16:31:09 +02002139 YIN_ARG_NAME, Y_STR_ARG, exts);
David Sedlákd6e56892019-07-01 15:40:24 +02002140 break;
2141 case YANG_USES:
David Sedlák0d6de5a2019-07-22 13:25:44 +02002142 ret = yin_parse_uses(ctx, attrs, data, (struct tree_node_meta *)subelem->dest);
David Sedlákd6e56892019-07-01 15:40:24 +02002143 break;
David Sedlákd6e56892019-07-01 15:40:24 +02002144 case YANG_WHEN:
David Sedlák1af868e2019-07-17 17:03:14 +02002145 ret = yin_parse_when(ctx, attrs, data, (struct lysp_when **)subelem->dest);
David Sedlákd6e56892019-07-01 15:40:24 +02002146 break;
2147 case YANG_YANG_VERSION:
David Sedlák1af868e2019-07-17 17:03:14 +02002148 ret = yin_parse_yangversion(ctx, attrs, data, (uint8_t *)subelem->dest, exts);
David Sedlákd6e56892019-07-01 15:40:24 +02002149 break;
2150 case YANG_YIN_ELEMENT:
David Sedlák1af868e2019-07-17 17:03:14 +02002151 ret = yin_parse_yin_element_element(ctx, attrs, data, (uint16_t *)subelem->dest, exts);
David Sedlák3ffbc522019-07-02 17:49:28 +02002152 break;
2153 case YIN_TEXT:
David Sedlák3ffbc522019-07-02 17:49:28 +02002154 case YIN_VALUE:
David Sedlák1af868e2019-07-17 17:03:14 +02002155 ret = yin_parse_content(ctx, NULL, 0, data, kw, (const char **)subelem->dest, NULL);
David Sedlákd6e56892019-07-01 15:40:24 +02002156 break;
2157 default:
David Sedlákda8ffa32019-07-08 14:17:10 +02002158 LOGINT(ctx->xml_ctx.ctx);
David Sedlák21f87cd2019-07-03 16:53:23 +02002159 return LY_EINT;
David Sedlákd6e56892019-07-01 15:40:24 +02002160 }
David Sedlák3ffbc522019-07-02 17:49:28 +02002161 LY_CHECK_GOTO(ret, cleanup);
David Sedlák1af868e2019-07-17 17:03:14 +02002162 FREE_ARRAY(ctx, attrs, free_arg_rec);
2163 attrs = NULL;
2164 subelem = NULL;
David Sedlákd6e56892019-07-01 15:40:24 +02002165 }
2166 } else {
2167 /* elements with text or none content */
David Sedlák3ffbc522019-07-02 17:49:28 +02002168 /* save text content, if text_content isn't set, it's just ignored */
David Sedlák3b4df842019-07-17 11:39:46 +02002169 LY_CHECK_RET(yin_validate_value(ctx, Y_STR_ARG, out, out_len));
David Sedlák3ffbc522019-07-02 17:49:28 +02002170 if (text_content) {
2171 if (dynamic) {
David Sedlákda8ffa32019-07-08 14:17:10 +02002172 *text_content = lydict_insert_zc(ctx->xml_ctx.ctx, out);
David Sedlák3ffbc522019-07-02 17:49:28 +02002173 if (!*text_content) {
2174 free(out);
2175 return LY_EMEM;
2176 }
2177 } else {
2178 if (out_len == 0) {
David Sedlák99295322019-07-17 11:34:18 +02002179 *text_content = lydict_insert(ctx->xml_ctx.ctx, "", 0);
David Sedlák3ffbc522019-07-02 17:49:28 +02002180 } else {
David Sedlákda8ffa32019-07-08 14:17:10 +02002181 *text_content = lydict_insert(ctx->xml_ctx.ctx, out, out_len);
David Sedlák3ffbc522019-07-02 17:49:28 +02002182 }
2183 }
2184 }
David Sedlákd6e56892019-07-01 15:40:24 +02002185 /* load closing element */
David Sedlákda8ffa32019-07-08 14:17:10 +02002186 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 +02002187 }
David Sedlák555c7202019-07-04 12:14:12 +02002188
David Sedlákda8ffa32019-07-08 14:17:10 +02002189 LY_CHECK_RET(yin_check_subelem_mandatory_constraint(ctx, subelem_info, subelem_info_size, current_element));
David Sedlákd6e56892019-07-01 15:40:24 +02002190 }
2191
2192cleanup:
David Sedlák1af868e2019-07-17 17:03:14 +02002193 FREE_ARRAY(ctx, attrs, free_arg_rec);
David Sedlákd6e56892019-07-01 15:40:24 +02002194 return ret;
2195}
2196
David Sedlák619db942019-07-03 14:47:30 +02002197LY_ERR
David Sedlák1f90d252019-07-10 17:09:32 +02002198yin_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 +02002199 struct lysp_ext_instance **exts)
David Sedlák81e04022019-04-05 15:05:46 +02002200{
David Sedlák3ffbc522019-07-02 17:49:28 +02002201 const char *temp_rev;
David Sedlák968ac342019-07-11 15:17:59 +02002202 struct yin_subelement subelems[1] = {
2203 {YANG_CUSTOM, NULL, 0}
2204 };
David Sedlák81e04022019-04-05 15:05:46 +02002205
David Sedlák292763b2019-07-09 11:10:53 +02002206 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 +02002207 LY_CHECK_ERR_RET(lysp_check_date((struct lys_parser_ctx *)ctx, temp_rev, strlen(temp_rev), "revision-date") != LY_SUCCESS,
2208 FREE_STRING(ctx->xml_ctx.ctx, temp_rev), LY_EVALID);
David Sedlákda63c082019-06-04 13:52:23 +02002209
2210 strcpy(rev, temp_rev);
David Sedlákda8ffa32019-07-08 14:17:10 +02002211 FREE_STRING(ctx->xml_ctx.ctx, temp_rev);
David Sedlák81e04022019-04-05 15:05:46 +02002212
David Sedlákda8ffa32019-07-08 14:17:10 +02002213 return yin_parse_content(ctx, subelems, 1, data, YANG_REVISION_DATE, NULL, exts);
David Sedlák3ffbc522019-07-02 17:49:28 +02002214}
David Sedlák00250342019-06-21 14:19:39 +02002215
David Sedláke1a30302019-07-10 13:49:38 +02002216/**
2217 * @brief Parse config element.
2218 *
2219 * @param[in] ctx Yin parser context for logging and to store current state.
2220 * @param[in] attrs [Sized array](@ref sizedarrays) of attributes of import element.
2221 * @param[in,out] data Data to read from, always moved to currently handled character.
2222 * @param[in,out] flags Flags to add to.
2223 * @param[in,out] exts Extension instances to add to.
2224 *
2225 * @return LY_ERR values.
2226 */
2227static LY_ERR
2228yin_parse_config(struct yin_parser_ctx *ctx, struct yin_arg_record *attrs, const char **data, uint16_t *flags,
2229 struct lysp_ext_instance **exts)
2230{
2231 const char *temp_val = NULL;
David Sedlák968ac342019-07-11 15:17:59 +02002232 struct yin_subelement subelems[1] = {
2233 {YANG_CUSTOM, NULL, 0}
2234 };
David Sedláke1a30302019-07-10 13:49:38 +02002235
David Sedlák1f90d252019-07-10 17:09:32 +02002236 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 +02002237 if (strcmp(temp_val, "true") == 0) {
2238 *flags |= LYS_CONFIG_W;
2239 } else if (strcmp(temp_val, "false") == 0) {
2240 *flags |= LYS_CONFIG_R;
2241 } else {
2242 LOGVAL_PARSER((struct lys_parser_ctx *)ctx, LY_VCODE_INVAL_YIN, temp_val, "config");
2243 FREE_STRING(ctx->xml_ctx.ctx, temp_val);
2244 return LY_EVALID;
2245 }
2246 FREE_STRING(ctx->xml_ctx.ctx, temp_val);
2247
2248 return yin_parse_content(ctx, subelems, 1, data, YANG_CONFIG, NULL, exts);
2249}
2250
David Sedlák3ffbc522019-07-02 17:49:28 +02002251LY_ERR
David Sedlák92147b02019-07-09 14:01:01 +02002252yin_parse_yangversion(struct yin_parser_ctx *ctx, struct yin_arg_record *attrs, const char **data, uint8_t *version,
2253 struct lysp_ext_instance **exts)
2254{
2255 const char *temp_version = NULL;
David Sedlák968ac342019-07-11 15:17:59 +02002256 struct yin_subelement subelems[1] = {
2257 {YANG_CUSTOM, NULL, 0}
2258 };
David Sedlák92147b02019-07-09 14:01:01 +02002259
David Sedlák1f90d252019-07-10 17:09:32 +02002260 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 +02002261 if (strcmp(temp_version, "1.0") == 0) {
2262 *version = LYS_VERSION_1_0;
2263 } else if (strcmp(temp_version, "1.1") == 0) {
2264 *version = LYS_VERSION_1_1;
2265 } else {
2266 LOGVAL_PARSER((struct lys_parser_ctx *)ctx, LY_VCODE_INVAL_YIN, temp_version, "yang-version");
2267 FREE_STRING(ctx->xml_ctx.ctx, temp_version);
2268 return LY_EVALID;
2269 }
2270 FREE_STRING(ctx->xml_ctx.ctx, temp_version);
2271 ctx->mod_version = *version;
2272
2273 return yin_parse_content(ctx, subelems, 1, data, YANG_YANG_VERSION, NULL, exts);
2274}
2275
2276LY_ERR
David Sedlák1f90d252019-07-10 17:09:32 +02002277yin_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 +01002278{
David Sedlák736fd0d2019-02-15 16:06:31 +01002279 struct lysp_import *imp;
David Sedlák00250342019-06-21 14:19:39 +02002280 /* allocate new element in sized array for import */
David Sedlákda8ffa32019-07-08 14:17:10 +02002281 LY_ARRAY_NEW_RET(ctx->xml_ctx.ctx, mod->imports, imp, LY_EMEM);
David Sedlák3ffbc522019-07-02 17:49:28 +02002282
David Sedlák968ac342019-07-11 15:17:59 +02002283 struct yin_subelement subelems[5] = {
2284 {YANG_DESCRIPTION, &imp->dsc, YIN_SUBELEM_UNIQUE},
2285 {YANG_PREFIX, &imp->prefix, YIN_SUBELEM_MANDATORY | YIN_SUBELEM_UNIQUE},
2286 {YANG_REFERENCE, &imp->ref, YIN_SUBELEM_UNIQUE},
2287 {YANG_REVISION_DATE, imp->rev, YIN_SUBELEM_UNIQUE},
2288 {YANG_CUSTOM, NULL, 0}
2289 };
David Sedlák736fd0d2019-02-15 16:06:31 +01002290
David Sedlák92147b02019-07-09 14:01:01 +02002291 /* parse import attributes */
David Sedlák292763b2019-07-09 11:10:53 +02002292 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 +02002293 LY_CHECK_RET(yin_parse_content(ctx, subelems, 5, data, YANG_IMPORT, NULL, &imp->exts));
David Sedlák619db942019-07-03 14:47:30 +02002294 /* check prefix validity */
David Sedlákda8ffa32019-07-08 14:17:10 +02002295 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 +02002296
David Sedlákda8ffa32019-07-08 14:17:10 +02002297 return yin_parse_content(ctx, subelems, 5, data, YANG_IMPORT, NULL, &imp->exts);
David Sedlák736fd0d2019-02-15 16:06:31 +01002298}
2299
David Sedlák11900c82019-06-18 16:29:12 +02002300LY_ERR
David Sedlák1fdb2522019-07-09 16:22:57 +02002301yin_parse_mandatory(struct yin_parser_ctx *ctx, struct yin_arg_record *attrs, const char **data, uint16_t *flags,
2302 struct lysp_ext_instance **exts)
2303{
2304 const char *temp_val = NULL;
David Sedlák968ac342019-07-11 15:17:59 +02002305 struct yin_subelement subelems[1] = {
2306 {YANG_CUSTOM, NULL, 0}
2307 };
David Sedlák1fdb2522019-07-09 16:22:57 +02002308
David Sedlák1f90d252019-07-10 17:09:32 +02002309 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 +02002310 if (strcmp(temp_val, "true") == 0) {
2311 *flags |= LYS_MAND_TRUE;
2312 } else if (strcmp(temp_val, "false") == 0) {
2313 *flags |= LYS_MAND_FALSE;
2314 } else {
2315 LOGVAL_PARSER((struct lys_parser_ctx *)ctx, LY_VCODE_INVAL_YIN, temp_val, "mandatory");
2316 FREE_STRING(ctx->xml_ctx.ctx, temp_val);
2317 return LY_EVALID;
2318 }
2319 FREE_STRING(ctx->xml_ctx.ctx, temp_val);
2320
2321 return yin_parse_content(ctx, subelems, 1, data, YANG_MANDATORY, NULL, exts);
2322}
2323
2324LY_ERR
David Sedlák1f90d252019-07-10 17:09:32 +02002325yin_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 +02002326 struct lysp_ext_instance **exts)
David Sedlák11900c82019-06-18 16:29:12 +02002327{
David Sedlák3ffbc522019-07-02 17:49:28 +02002328 const char *value = NULL;
David Sedlák968ac342019-07-11 15:17:59 +02002329 struct yin_subelement subelems[1] = {
2330 {YANG_CUSTOM, NULL, 0}
2331 };
David Sedlák3ffbc522019-07-02 17:49:28 +02002332
David Sedlák292763b2019-07-09 11:10:53 +02002333 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 +02002334 if (strcmp(value, "current") == 0) {
2335 *flags |= LYS_STATUS_CURR;
2336 } else if (strcmp(value, "deprecated") == 0) {
2337 *flags |= LYS_STATUS_DEPRC;
2338 } else if (strcmp(value, "obsolete") == 0) {
2339 *flags |= LYS_STATUS_OBSLT;
2340 } else {
David Sedlákda8ffa32019-07-08 14:17:10 +02002341 LOGVAL_PARSER((struct lys_parser_ctx *)ctx, LY_VCODE_INVAL_YIN, value, "status");
2342 FREE_STRING(ctx->xml_ctx.ctx, value);
David Sedlák11900c82019-06-18 16:29:12 +02002343 return LY_EVALID;
2344 }
David Sedlákda8ffa32019-07-08 14:17:10 +02002345 FREE_STRING(ctx->xml_ctx.ctx, value);
David Sedlák11900c82019-06-18 16:29:12 +02002346
David Sedlákda8ffa32019-07-08 14:17:10 +02002347 return yin_parse_content(ctx, subelems, 1, data, YANG_STATUS, NULL, exts);
David Sedlák11900c82019-06-18 16:29:12 +02002348}
2349
David Sedlák11900c82019-06-18 16:29:12 +02002350LY_ERR
David Sedlák32eee7b2019-07-09 12:38:44 +02002351yin_parse_when(struct yin_parser_ctx *ctx, struct yin_arg_record *attrs, const char **data, struct lysp_when **when_p)
2352{
2353 struct lysp_when *when;
2354 when = calloc(1, sizeof *when);
2355 LY_CHECK_ERR_RET(!when, LOGMEM(ctx->xml_ctx.ctx), LY_EMEM);
David Sedlák1f90d252019-07-10 17:09:32 +02002356 yin_parse_attribute(ctx, attrs, YIN_ARG_CONDITION, &when->cond, Y_STR_ARG, YANG_WHEN);
David Sedlák32eee7b2019-07-09 12:38:44 +02002357 *when_p = when;
David Sedlák968ac342019-07-11 15:17:59 +02002358 struct yin_subelement subelems[3] = {
2359 {YANG_DESCRIPTION, &when->dsc, YIN_SUBELEM_UNIQUE},
2360 {YANG_REFERENCE, &when->ref, YIN_SUBELEM_UNIQUE},
2361 {YANG_CUSTOM, NULL, 0}
2362 };
David Sedlák32eee7b2019-07-09 12:38:44 +02002363
2364 return yin_parse_content(ctx, subelems, 3, data, YANG_WHEN, NULL, &when->exts);
2365}
2366
2367LY_ERR
David Sedlákda8ffa32019-07-08 14:17:10 +02002368yin_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 +02002369 uint16_t *flags, struct lysp_ext_instance **exts)
David Sedlák2721d3d2019-06-21 15:37:41 +02002370{
David Sedlák3ffbc522019-07-02 17:49:28 +02002371 const char *temp_val = NULL;
David Sedlák968ac342019-07-11 15:17:59 +02002372 struct yin_subelement subelems[1] = {
2373 {YANG_CUSTOM, NULL, 0}
2374 };
David Sedlák2721d3d2019-06-21 15:37:41 +02002375
David Sedlák1f90d252019-07-10 17:09:32 +02002376 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 +02002377 if (strcmp(temp_val, "true") == 0) {
2378 *flags |= LYS_YINELEM_TRUE;
2379 } else if (strcmp(temp_val, "false") == 0) {
2380 *flags |= LYS_YINELEM_FALSE;
2381 } else {
David Sedlákda8ffa32019-07-08 14:17:10 +02002382 LOGVAL_PARSER((struct lys_parser_ctx *)ctx, LY_VCODE_INVAL_YIN, temp_val, "yin-element");
2383 FREE_STRING(ctx->xml_ctx.ctx, temp_val);
David Sedlák2721d3d2019-06-21 15:37:41 +02002384 return LY_EVALID;
2385 }
David Sedlákda8ffa32019-07-08 14:17:10 +02002386 FREE_STRING(ctx->xml_ctx.ctx, temp_val);
David Sedlák2721d3d2019-06-21 15:37:41 +02002387
David Sedlákda8ffa32019-07-08 14:17:10 +02002388 return yin_parse_content(ctx, subelems, 1, data, YANG_YIN_ELEMENT, NULL, exts);
David Sedlák2721d3d2019-06-21 15:37:41 +02002389}
2390
2391LY_ERR
David Sedlák1f90d252019-07-10 17:09:32 +02002392yin_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 +02002393 int ext_name_len, LYEXT_SUBSTMT subelem, uint32_t subelem_index, struct lysp_ext_instance **exts)
David Sedlák1e2cdd02019-06-27 14:17:43 +02002394{
2395 LY_ERR ret = LY_SUCCESS;
David Sedlákb1a78352019-06-28 16:16:29 +02002396 char *out;
2397 const char *name, *prefix;
2398 size_t out_len, prefix_len, name_len;
2399 int dynamic;
David Sedlák1e2cdd02019-06-27 14:17:43 +02002400 struct lysp_ext_instance *e;
David Sedlákb1a78352019-06-28 16:16:29 +02002401 struct lysp_stmt *last_subelem = NULL, *new_subelem = NULL;
2402 struct yin_arg_record *iter;
David Sedlák1e2cdd02019-06-27 14:17:43 +02002403
David Sedlákda8ffa32019-07-08 14:17:10 +02002404 LY_ARRAY_NEW_RET(ctx->xml_ctx.ctx, *exts, e, LY_EMEM);
David Sedlák1e2cdd02019-06-27 14:17:43 +02002405
2406 e->yin = 0;
2407 /* store name and insubstmt info */
David Sedlákda8ffa32019-07-08 14:17:10 +02002408 e->name = lydict_insert(ctx->xml_ctx.ctx, ext_name, ext_name_len);
David Sedlák619db942019-07-03 14:47:30 +02002409 e->insubstmt = subelem;
2410 e->insubstmt_index = subelem_index;
David Sedlák1e2cdd02019-06-27 14:17:43 +02002411 e->yin |= LYS_YIN;
2412
David Sedlákb1a78352019-06-28 16:16:29 +02002413 /* store attributes as subelements */
David Sedlák1f90d252019-07-10 17:09:32 +02002414 LY_ARRAY_FOR_ITER(attrs, struct yin_arg_record, iter) {
David Sedlákb1a78352019-06-28 16:16:29 +02002415 if (!iter->prefix) {
2416 new_subelem = calloc(1, sizeof(*new_subelem));
2417 if (!e->child) {
2418 e->child = new_subelem;
David Sedlák1e2cdd02019-06-27 14:17:43 +02002419 } else {
David Sedlákb1a78352019-06-28 16:16:29 +02002420 last_subelem->next = new_subelem;
2421 }
2422 last_subelem = new_subelem;
2423
2424 last_subelem->flags |= LYS_YIN_ATTR;
David Sedlákda8ffa32019-07-08 14:17:10 +02002425 last_subelem->stmt = lydict_insert(ctx->xml_ctx.ctx, iter->name, iter->name_len);
2426 LY_CHECK_ERR_RET(!last_subelem->stmt, LOGMEM(ctx->xml_ctx.ctx), LY_EMEM);
David Sedlákb1a78352019-06-28 16:16:29 +02002427 if (iter->dynamic_content) {
David Sedlákda8ffa32019-07-08 14:17:10 +02002428 last_subelem->arg = lydict_insert_zc(ctx->xml_ctx.ctx, iter->content);
2429 LY_CHECK_ERR_RET(!last_subelem->arg, LOGMEM(ctx->xml_ctx.ctx), LY_EMEM);
David Sedlákb1a78352019-06-28 16:16:29 +02002430 } else {
David Sedlákda8ffa32019-07-08 14:17:10 +02002431 last_subelem->arg = lydict_insert(ctx->xml_ctx.ctx, iter->content, iter->content_len);
2432 LY_CHECK_ERR_RET(!last_subelem->arg, LOGMEM(ctx->xml_ctx.ctx), LY_EMEM);
David Sedlák1e2cdd02019-06-27 14:17:43 +02002433 }
2434 }
2435 }
David Sedlák1e2cdd02019-06-27 14:17:43 +02002436
David Sedlákf250ecf2019-07-01 11:02:05 +02002437 /* parse subelements */
David Sedlákda8ffa32019-07-08 14:17:10 +02002438 if (ctx->xml_ctx.status == LYXML_ELEM_CONTENT) {
2439 ret = lyxml_get_string(&ctx->xml_ctx, data, &out, &out_len, &out, &out_len, &dynamic);
David Sedlákb1a78352019-06-28 16:16:29 +02002440 if (ret == LY_EINVAL) {
David Sedlákda8ffa32019-07-08 14:17:10 +02002441 while (ctx->xml_ctx.status == LYXML_ELEMENT) {
2442 LY_CHECK_RET(lyxml_get_element(&ctx->xml_ctx, data, &prefix, &prefix_len, &name, &name_len));
David Sedlákb1a78352019-06-28 16:16:29 +02002443 if (!name) {
2444 /* end of extension instance reached */
2445 break;
2446 }
David Sedlákda8ffa32019-07-08 14:17:10 +02002447 LY_CHECK_RET(yin_parse_element_generic(ctx, name, name_len, prefix, prefix_len, data, &new_subelem));
David Sedlákb1a78352019-06-28 16:16:29 +02002448 if (!e->child) {
2449 e->child = new_subelem;
2450 } else {
2451 last_subelem->next = new_subelem;
2452 }
2453 last_subelem = new_subelem;
2454 }
David Sedlák555c7202019-07-04 12:14:12 +02002455 } else {
2456 /* save text content */
2457 if (dynamic) {
David Sedlákda8ffa32019-07-08 14:17:10 +02002458 e->argument = lydict_insert_zc(ctx->xml_ctx.ctx, out);
David Sedlák555c7202019-07-04 12:14:12 +02002459 if (!e->argument) {
2460 free(out);
2461 return LY_EMEM;
2462 }
2463 } else {
David Sedlákda8ffa32019-07-08 14:17:10 +02002464 e->argument = lydict_insert(ctx->xml_ctx.ctx, out, out_len);
David Sedlák555c7202019-07-04 12:14:12 +02002465 LY_CHECK_RET(!e->argument, LY_EMEM);
2466 }
David Sedlákda8ffa32019-07-08 14:17:10 +02002467 LY_CHECK_RET(lyxml_get_element(&ctx->xml_ctx, data, &prefix, &prefix_len, &name, &name_len));
David Sedlák555c7202019-07-04 12:14:12 +02002468 LY_CHECK_RET(name, LY_EINT);
David Sedlákb1a78352019-06-28 16:16:29 +02002469 }
David Sedlákb1a78352019-06-28 16:16:29 +02002470 }
2471
2472 return LY_SUCCESS;
2473}
2474
2475LY_ERR
David Sedlákda8ffa32019-07-08 14:17:10 +02002476yin_parse_element_generic(struct yin_parser_ctx *ctx, const char *name, size_t name_len, const char *prefix,
David Sedlákf250ecf2019-07-01 11:02:05 +02002477 size_t prefix_len, const char **data, struct lysp_stmt **element)
David Sedlákb1a78352019-06-28 16:16:29 +02002478{
2479 LY_ERR ret = LY_SUCCESS;
2480 const char *temp_prefix, *temp_name;
2481 char *out = NULL;
David Sedlákf250ecf2019-07-01 11:02:05 +02002482 size_t out_len, temp_name_len, temp_prefix_len;
David Sedlákb1a78352019-06-28 16:16:29 +02002483 int dynamic;
2484 struct yin_arg_record *subelem_args = NULL;
2485 struct lysp_stmt *last = NULL, *new = NULL;
2486
2487 /* allocate new structure for element */
2488 *element = calloc(1, sizeof(**element));
David Sedlákda8ffa32019-07-08 14:17:10 +02002489 (*element)->stmt = lydict_insert(ctx->xml_ctx.ctx, name, name_len);
2490 LY_CHECK_ERR_RET(!(*element)->stmt, LOGMEM(ctx->xml_ctx.ctx), LY_EMEM);
David Sedlákb1a78352019-06-28 16:16:29 +02002491
2492 last = (*element)->child;
David Sedlákf250ecf2019-07-01 11:02:05 +02002493 /* load attributes */
David Sedlákda8ffa32019-07-08 14:17:10 +02002494 while(ctx->xml_ctx.status == LYXML_ATTRIBUTE) {
David Sedlákb1a78352019-06-28 16:16:29 +02002495 /* add new element to linked-list */
2496 new = calloc(1, sizeof(*last));
David Sedlákda8ffa32019-07-08 14:17:10 +02002497 LY_CHECK_ERR_GOTO(ret, LOGMEM(ctx->xml_ctx.ctx), err);
David Sedlákb1a78352019-06-28 16:16:29 +02002498 if (!(*element)->child) {
2499 /* save first */
2500 (*element)->child = new;
2501 } else {
2502 last->next = new;
2503 }
2504 last = new;
2505
2506 last->flags |= LYS_YIN_ATTR;
David Sedlákda8ffa32019-07-08 14:17:10 +02002507 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 +02002508 LY_CHECK_GOTO(ret, err);
David Sedlákda8ffa32019-07-08 14:17:10 +02002509 ret = lyxml_get_string(&ctx->xml_ctx, data, &out, &out_len, &out, &out_len, &dynamic);
David Sedlákb1a78352019-06-28 16:16:29 +02002510 LY_CHECK_GOTO(ret, err);
David Sedlákda8ffa32019-07-08 14:17:10 +02002511 last->stmt = lydict_insert(ctx->xml_ctx.ctx, temp_name, temp_name_len);
2512 LY_CHECK_ERR_GOTO(!last->stmt, LOGMEM(ctx->xml_ctx.ctx); ret = LY_EMEM, err);
David Sedlákb1a78352019-06-28 16:16:29 +02002513 /* attributes with prefix are ignored */
2514 if (!temp_prefix) {
2515 if (dynamic) {
David Sedlákda8ffa32019-07-08 14:17:10 +02002516 last->arg = lydict_insert_zc(ctx->xml_ctx.ctx, out);
David Sedlákb1a78352019-06-28 16:16:29 +02002517 if (!last->arg) {
2518 free(out);
David Sedlákda8ffa32019-07-08 14:17:10 +02002519 LOGMEM(ctx->xml_ctx.ctx);
David Sedlákb1a78352019-06-28 16:16:29 +02002520 ret = LY_EMEM;
2521 goto err;
2522 }
2523 } else {
David Sedlákda8ffa32019-07-08 14:17:10 +02002524 last->arg = lydict_insert(ctx->xml_ctx.ctx, out, out_len);
2525 LY_CHECK_ERR_GOTO(!last->arg, LOGMEM(ctx->xml_ctx.ctx); ret = LY_EMEM, err);
David Sedlákb1a78352019-06-28 16:16:29 +02002526 }
2527 }
2528 }
2529
2530 /* parse content of element */
David Sedlákda8ffa32019-07-08 14:17:10 +02002531 ret = lyxml_get_string(&ctx->xml_ctx, data, &out, &out_len, &out, &out_len, &dynamic);
David Sedlákb1a78352019-06-28 16:16:29 +02002532 if (ret == LY_EINVAL) {
David Sedlákda8ffa32019-07-08 14:17:10 +02002533 while (ctx->xml_ctx.status == LYXML_ELEMENT) {
David Sedlákb1a78352019-06-28 16:16:29 +02002534 /* parse subelements */
David Sedlákda8ffa32019-07-08 14:17:10 +02002535 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 +02002536 LY_CHECK_GOTO(ret, err);
2537 if (!name) {
2538 /* end of element reached */
2539 break;
2540 }
David Sedlákda8ffa32019-07-08 14:17:10 +02002541 ret = yin_parse_element_generic(ctx, temp_name, temp_name_len, temp_prefix, temp_prefix_len, data, &last->next);
David Sedlákb1a78352019-06-28 16:16:29 +02002542 LY_CHECK_GOTO(ret, err);
2543 last = last->next;
2544 }
2545 } else {
2546 /* save element content */
David Sedlák5392a212019-07-01 09:19:10 +02002547 if (out_len != 0) {
2548 if (dynamic) {
David Sedlákda8ffa32019-07-08 14:17:10 +02002549 (*element)->arg = lydict_insert_zc(ctx->xml_ctx.ctx, out);
David Sedlák5392a212019-07-01 09:19:10 +02002550 if (!(*element)->arg) {
2551 free(out);
David Sedlákda8ffa32019-07-08 14:17:10 +02002552 LOGMEM(ctx->xml_ctx.ctx);
David Sedlák5392a212019-07-01 09:19:10 +02002553 ret = LY_EMEM;
2554 goto err;
2555 }
2556 } else {
David Sedlákda8ffa32019-07-08 14:17:10 +02002557 (*element)->arg = lydict_insert(ctx->xml_ctx.ctx, out, out_len);
2558 LY_CHECK_ERR_GOTO(!(*element)->arg, LOGMEM(ctx->xml_ctx.ctx); ret = LY_EMEM, err);
David Sedlákb1a78352019-06-28 16:16:29 +02002559 }
David Sedlákb1a78352019-06-28 16:16:29 +02002560 }
2561 /* read closing tag */
David Sedlákda8ffa32019-07-08 14:17:10 +02002562 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 +02002563 LY_CHECK_GOTO(ret, err);
2564 }
2565
David Sedlákda8ffa32019-07-08 14:17:10 +02002566 FREE_ARRAY(ctx, subelem_args, free_arg_rec);
David Sedlákb1a78352019-06-28 16:16:29 +02002567 return LY_SUCCESS;
2568
2569err:
David Sedlákda8ffa32019-07-08 14:17:10 +02002570 FREE_ARRAY(ctx, subelem_args, free_arg_rec);
David Sedlák1e2cdd02019-06-27 14:17:43 +02002571 return ret;
2572}
2573
2574LY_ERR
David Sedlák1f90d252019-07-10 17:09:32 +02002575yin_parse_argument_element(struct yin_parser_ctx *ctx, struct yin_arg_record *attrs, const char **data,
David Sedlák3ffbc522019-07-02 17:49:28 +02002576 struct yin_argument_meta *arg_meta, struct lysp_ext_instance **exts)
David Sedlák9494eb22019-06-21 16:06:53 +02002577{
David Sedlák968ac342019-07-11 15:17:59 +02002578 struct yin_subelement subelems[2] = {
2579 {YANG_YIN_ELEMENT, arg_meta->flags, YIN_SUBELEM_UNIQUE},
2580 {YANG_CUSTOM, NULL, 0}
2581 };
David Sedlák9494eb22019-06-21 16:06:53 +02002582
David Sedlák292763b2019-07-09 11:10:53 +02002583 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 +02002584
David Sedlákda8ffa32019-07-08 14:17:10 +02002585 return yin_parse_content(ctx, subelems, 2, data, YANG_ARGUMENT, NULL, exts);
David Sedlák9494eb22019-06-21 16:06:53 +02002586}
2587
2588LY_ERR
David Sedlák1f90d252019-07-10 17:09:32 +02002589yin_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 +02002590{
David Sedlák11900c82019-06-18 16:29:12 +02002591 struct lysp_ext *ex;
David Sedlákda8ffa32019-07-08 14:17:10 +02002592 LY_ARRAY_NEW_RET(ctx->xml_ctx.ctx, *extensions, ex, LY_EMEM);
David Sedlák292763b2019-07-09 11:10:53 +02002593 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 +02002594
David Sedlák3ffbc522019-07-02 17:49:28 +02002595 struct yin_argument_meta arg_info = {&ex->flags, &ex->argument};
David Sedlák968ac342019-07-11 15:17:59 +02002596 struct yin_subelement subelems[5] = {
2597 {YANG_ARGUMENT, &arg_info, YIN_SUBELEM_UNIQUE},
2598 {YANG_DESCRIPTION, &ex->dsc, YIN_SUBELEM_UNIQUE},
2599 {YANG_REFERENCE, &ex->ref, YIN_SUBELEM_UNIQUE},
2600 {YANG_STATUS, &ex->flags, YIN_SUBELEM_UNIQUE},
2601 {YANG_CUSTOM, NULL, 0}
2602 };
David Sedlák11900c82019-06-18 16:29:12 +02002603
David Sedlákda8ffa32019-07-08 14:17:10 +02002604 return yin_parse_content(ctx, subelems, 5, data, YANG_EXTENSION, NULL, &ex->exts);
David Sedlák11900c82019-06-18 16:29:12 +02002605}
2606
David Sedlák00250342019-06-21 14:19:39 +02002607/**
2608 * @brief Parse module substatements.
2609 *
David Sedlákda8ffa32019-07-08 14:17:10 +02002610 * @param[in,out] ctx Yin parser context for logging and to store current state.
David Sedlákb4e44562019-07-04 15:42:12 +02002611 * @param[in] mod_attrs Attributes of module element.
David Sedlák00250342019-06-21 14:19:39 +02002612 * @param[in,out] data Data to read from.
2613 * @param[out] mod Parsed module structure.
2614 *
2615 * @return LY_ERR values.
2616 */
David Sedlákda8ffa32019-07-08 14:17:10 +02002617static LY_ERR
David Sedlák1f90d252019-07-10 17:09:32 +02002618yin_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 +02002619{
David Sedlák968ac342019-07-11 15:17:59 +02002620 struct yin_subelement subelems[9] = {
2621 {YANG_CONTACT, &(*mod)->mod->contact, YIN_SUBELEM_UNIQUE},
2622 {YANG_DESCRIPTION, &(*mod)->mod->dsc, YIN_SUBELEM_UNIQUE},
2623 {YANG_EXTENSION, &(*mod)->exts, 0},
2624 {YANG_IMPORT, *mod, 0},
2625 {YANG_NAMESPACE, &(*mod)->mod->ns, YIN_SUBELEM_MANDATORY | YIN_SUBELEM_UNIQUE},
2626 {YANG_ORGANIZATION, &(*mod)->mod->org, YIN_SUBELEM_UNIQUE},
2627 {YANG_PREFIX, &(*mod)->mod->prefix, YIN_SUBELEM_MANDATORY | YIN_SUBELEM_UNIQUE},
2628 {YANG_REFERENCE, &(*mod)->mod->ref, YIN_SUBELEM_UNIQUE},
2629 {YANG_CUSTOM, NULL, 0}
2630 };
David Sedlák3b4db242018-10-19 16:11:01 +02002631
David Sedlák292763b2019-07-09 11:10:53 +02002632 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 +01002633
David Sedlákda8ffa32019-07-08 14:17:10 +02002634 return yin_parse_content(ctx, subelems, 9, data, YANG_MODULE, NULL, &(*mod)->exts);
David Sedlák3b4db242018-10-19 16:11:01 +02002635}
2636
2637LY_ERR
David Sedlák3017da42019-02-15 09:48:04 +01002638yin_parse_module(struct ly_ctx *ctx, const char *data, struct lys_module *mod)
David Sedlák3b4db242018-10-19 16:11:01 +02002639{
David Sedláke4889912018-11-02 09:52:40 +01002640 LY_ERR ret = LY_SUCCESS;
2641 enum yang_keyword kw = YANG_NONE;
David Sedlák3017da42019-02-15 09:48:04 +01002642 struct lysp_module *mod_p = NULL;
2643 const char *prefix, *name;
2644 size_t prefix_len, name_len;
David Sedlákda8ffa32019-07-08 14:17:10 +02002645
David Sedlák1f90d252019-07-10 17:09:32 +02002646 struct yin_arg_record *attrs = NULL;
David Sedlák3b4db242018-10-19 16:11:01 +02002647
David Sedlákda8ffa32019-07-08 14:17:10 +02002648 struct yin_parser_ctx yin_ctx;
2649
2650 /* initialize context */
2651 memset(&yin_ctx, 0, sizeof yin_ctx);
2652 yin_ctx.xml_ctx.ctx = ctx;
2653 yin_ctx.xml_ctx.line = 1;
2654
David Sedláke4889912018-11-02 09:52:40 +01002655
David Sedlák3017da42019-02-15 09:48:04 +01002656 /* check submodule */
David Sedlákda8ffa32019-07-08 14:17:10 +02002657 ret = lyxml_get_element(&yin_ctx.xml_ctx, &data, &prefix, &prefix_len, &name, &name_len);
David Sedlák00250342019-06-21 14:19:39 +02002658 LY_CHECK_GOTO(ret, cleanup);
David Sedlák1f90d252019-07-10 17:09:32 +02002659 ret = yin_load_attributes(&yin_ctx, &data, &attrs);
David Sedlák00250342019-06-21 14:19:39 +02002660 LY_CHECK_GOTO(ret, cleanup);
David Sedlákc1771b12019-07-10 15:55:46 +02002661 kw = yin_match_keyword(&yin_ctx, name, name_len, prefix, prefix_len, YANG_NONE);
David Sedláke4889912018-11-02 09:52:40 +01002662 if (kw == YANG_SUBMODULE) {
David Sedlák3017da42019-02-15 09:48:04 +01002663 LOGERR(ctx, LY_EDENIED, "Input data contains submodule which cannot be parsed directly without its main module.");
2664 ret = LY_EINVAL;
2665 goto cleanup;
2666 } else if (kw != YANG_MODULE) {
David Sedlákda8ffa32019-07-08 14:17:10 +02002667 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 +02002668 ly_stmt2str(kw));
David Sedlák3017da42019-02-15 09:48:04 +01002669 ret = LY_EVALID;
2670 goto cleanup;
David Sedláke4889912018-11-02 09:52:40 +01002671 }
2672
David Sedlák3017da42019-02-15 09:48:04 +01002673 /* allocate module */
2674 mod_p = calloc(1, sizeof *mod_p);
2675 LY_CHECK_ERR_GOTO(!mod_p, LOGMEM(ctx), cleanup);
2676 mod_p->mod = mod;
2677 mod_p->parsing = 1;
David Sedláke4889912018-11-02 09:52:40 +01002678
David Sedlák00250342019-06-21 14:19:39 +02002679 /* parse module substatements */
David Sedlák1f90d252019-07-10 17:09:32 +02002680 ret = yin_parse_mod(&yin_ctx, attrs, &data, &mod_p);
David Sedlák3017da42019-02-15 09:48:04 +01002681 LY_CHECK_GOTO(ret, cleanup);
David Sedlák2e411422018-12-17 02:35:39 +01002682
David Sedlák3017da42019-02-15 09:48:04 +01002683 mod_p->parsing = 0;
2684 mod->parsed = mod_p;
2685
2686cleanup:
David Sedlák8f7a1172019-06-20 14:42:18 +02002687 if (ret != LY_SUCCESS) {
David Sedlák3017da42019-02-15 09:48:04 +01002688 lysp_module_free(mod_p);
2689 }
David Sedlák1f90d252019-07-10 17:09:32 +02002690 FREE_ARRAY(&yin_ctx, attrs, free_arg_rec);
David Sedlákda8ffa32019-07-08 14:17:10 +02002691 lyxml_context_clear(&yin_ctx.xml_ctx);
David Sedlák2e411422018-12-17 02:35:39 +01002692 return ret;
David Sedlák3b4db242018-10-19 16:11:01 +02002693}