blob: d57579a3c60d56b38ecb9a5674989cad14ef517b [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
1506yin_parse_list(struct yin_parser_ctx *ctx, struct yin_arg_record *attrs, const char **data, struct tree_node_meta *node_meta)
1507{
1508 struct lysp_node *iter;
1509 struct lysp_node_list *list;
1510
1511 /* create structure */
1512 list = calloc(1, sizeof *list);
1513 LY_CHECK_ERR_RET(!list, LOGMEM(ctx->xml_ctx.ctx), LY_EMEM);
1514 list->nodetype = LYS_LIST;
1515 list->parent = node_meta->parent;
1516
1517 /* insert into siblings */
1518 if (!*(node_meta->siblings)) {
1519 *node_meta->siblings = (struct lysp_node *)list;
1520 } else {
1521 for (iter = *node_meta->siblings; iter->next; iter = iter->next);
1522 iter->next = (struct lysp_node *)list;
1523 }
1524
1525 /* parse argument */
1526 LY_CHECK_RET(yin_parse_attribute(ctx, attrs, YIN_ARG_NAME, &list->name, Y_IDENTIF_ARG, YANG_LIST));
1527
1528 /* parse list content */
1529 struct tree_node_meta new_node_meta = {(struct lysp_node *)list, &list->child};
1530 struct typedef_meta typedef_meta = {(struct lysp_node *)list, &list->typedefs};
1531 struct yin_subelement subelems[25] = {
1532 /* TODO action */
1533 {YANG_ACTION, NULL, 0},
1534 {YANG_ANYDATA, &new_node_meta, 0},
1535 {YANG_ANYXML, &new_node_meta, 0},
1536 /* TODO choice */
1537 {YANG_CHOICE, NULL, 0},
1538 {YANG_CONFIG, &list->flags, YIN_SUBELEM_UNIQUE},
1539 /* TODO container */
1540 {YANG_CONTAINER, NULL, 0},
1541 {YANG_DESCRIPTION, &list->dsc, YIN_SUBELEM_UNIQUE},
1542 /* TODO grouping */
1543 {YANG_GROUPING, NULL, 0},
1544 {YANG_IF_FEATURE, &list->iffeatures, 0},
1545 {YANG_KEY, &list->key, YIN_SUBELEM_UNIQUE},
1546 {YANG_LEAF, &new_node_meta, 0},
1547 {YANG_LEAF_LIST, &new_node_meta, 0},
1548 {YANG_LIST, &new_node_meta, 0},
1549 {YANG_MAX_ELEMENTS, list, YIN_SUBELEM_UNIQUE},
1550 {YANG_MIN_ELEMENTS, list, YIN_SUBELEM_UNIQUE},
1551 {YANG_MUST, &list->musts, 0},
1552 /* TODO notification */
1553 {YANG_NOTIFICATION, NULL, 0},
1554 {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ákb4e44562019-07-04 15:42:12 +02001579 * @brief Map keyword type to substatement info.
1580 *
1581 * @param[in] kw Keyword type.
1582 *
1583 * @return correct LYEXT_SUBSTMT information.
1584 */
1585static LYEXT_SUBSTMT
1586kw2lyext_substmt(enum yang_keyword kw)
1587{
1588 switch (kw) {
1589 case YANG_ARGUMENT:
1590 return LYEXT_SUBSTMT_ARGUMENT;
1591 case YANG_BASE:
1592 return LYEXT_SUBSTMT_BASE;
1593 case YANG_BELONGS_TO:
1594 return LYEXT_SUBSTMT_BELONGSTO;
1595 case YANG_CONTACT:
1596 return LYEXT_SUBSTMT_CONTACT;
1597 case YANG_DEFAULT:
1598 return LYEXT_SUBSTMT_DEFAULT;
1599 case YANG_DESCRIPTION:
1600 return LYEXT_SUBSTMT_DESCRIPTION;
1601 case YANG_ERROR_APP_TAG:
1602 return LYEXT_SUBSTMT_ERRTAG;
1603 case YANG_ERROR_MESSAGE:
1604 return LYEXT_SUBSTMT_ERRMSG;
1605 case YANG_KEY:
1606 return LYEXT_SUBSTMT_KEY;
1607 case YANG_NAMESPACE:
1608 return LYEXT_SUBSTMT_NAMESPACE;
1609 case YANG_ORGANIZATION:
1610 return LYEXT_SUBSTMT_ORGANIZATION;
1611 case YANG_PATH:
1612 return LYEXT_SUBSTMT_PATH;
1613 case YANG_PREFIX:
1614 return LYEXT_SUBSTMT_PREFIX;
1615 case YANG_PRESENCE:
1616 return LYEXT_SUBSTMT_PRESENCE;
1617 case YANG_REFERENCE:
1618 return LYEXT_SUBSTMT_REFERENCE;
1619 case YANG_REVISION_DATE:
1620 return LYEXT_SUBSTMT_REVISIONDATE;
1621 case YANG_UNITS:
1622 return LYEXT_SUBSTMT_UNITS;
1623 case YANG_VALUE:
1624 return LYEXT_SUBSTMT_VALUE;
1625 case YANG_YANG_VERSION:
1626 return LYEXT_SUBSTMT_VERSION;
1627 case YANG_MODIFIER:
1628 return LYEXT_SUBSTMT_MODIFIER;
1629 case YANG_REQUIRE_INSTANCE:
1630 return LYEXT_SUBSTMT_REQINSTANCE;
1631 case YANG_YIN_ELEMENT:
1632 return LYEXT_SUBSTMT_YINELEM;
1633 case YANG_CONFIG:
1634 return LYEXT_SUBSTMT_CONFIG;
1635 case YANG_MANDATORY:
1636 return LYEXT_SUBSTMT_MANDATORY;
1637 case YANG_ORDERED_BY:
1638 return LYEXT_SUBSTMT_ORDEREDBY;
1639 case YANG_STATUS:
1640 return LYEXT_SUBSTMT_STATUS;
1641 case YANG_FRACTION_DIGITS:
1642 return LYEXT_SUBSTMT_FRACDIGITS;
1643 case YANG_MAX_ELEMENTS:
1644 return LYEXT_SUBSTMT_MAX;
1645 case YANG_MIN_ELEMENTS:
1646 return LYEXT_SUBSTMT_MIN;
1647 case YANG_POSITION:
1648 return LYEXT_SUBSTMT_POSITION;
1649 case YANG_UNIQUE:
1650 return LYEXT_SUBSTMT_UNIQUE;
1651 case YANG_IF_FEATURE:
1652 return LYEXT_SUBSTMT_IFFEATURE;
1653 default:
1654 return LYEXT_SUBSTMT_SELF;
1655 }
1656}
1657
David Sedlák9c40a922019-07-08 17:04:43 +02001658/**
1659 * @brief Parse belongs-to element.
1660 *
1661 * @param[in] ctx Yin parser context for logging and to store current state.
David Sedlákbba38e52019-07-09 15:20:01 +02001662 * @param[in] attrs [Sized array](@ref sizedarrays) of attributes of current element.
David Sedlák9c40a922019-07-08 17:04:43 +02001663 * @param[in,out] data Data to read from, always moved to currently handled character.
1664 * @param[out] submod Structure of submodule that is being parsed.
1665 * @param[in,out] exts Extension instances to add to.
1666 *
1667 * @return LY_ERR values
1668 */
1669static LY_ERR
1670yin_parse_belongs_to(struct yin_parser_ctx *ctx, struct yin_arg_record *attrs, const char **data,
1671 struct lysp_submodule *submod, struct lysp_ext_instance **exts)
1672{
David Sedlák968ac342019-07-11 15:17:59 +02001673 struct yin_subelement subelems[2] = {
1674 {YANG_PREFIX, &submod->prefix, YIN_SUBELEM_MANDATORY | YIN_SUBELEM_UNIQUE},
1675 {YANG_CUSTOM, NULL, 0}
1676 };
David Sedlák1f90d252019-07-10 17:09:32 +02001677 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 +02001678
1679 return yin_parse_content(ctx, subelems, 2, data, YANG_BELONGS_TO, NULL, exts);
1680}
1681
David Sedlákd6e56892019-07-01 15:40:24 +02001682LY_ERR
David Sedlákda8ffa32019-07-08 14:17:10 +02001683yin_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 +02001684 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 +02001685{
1686 LY_ERR ret = LY_SUCCESS;
1687 struct sized_string prefix, name;
David Sedlák8e7bda82019-07-16 17:57:50 +02001688 char *out = NULL;
1689 size_t out_len = 0;
1690 int dynamic = 0;
David Sedlák1af868e2019-07-17 17:03:14 +02001691 struct yin_arg_record *attrs = NULL;
David Sedlákd6e56892019-07-01 15:40:24 +02001692 enum yang_keyword kw = YANG_NONE;
David Sedlák1af868e2019-07-17 17:03:14 +02001693 struct yin_subelement *subelem = NULL;
David Sedlák374d2b32019-07-17 15:06:55 +02001694 struct lysp_type *type, *nested_type;
David Sedlák09e18c92019-07-18 11:17:11 +02001695
David Sedlákb0faad82019-07-04 14:28:59 +02001696 assert(is_ordered(subelem_info, subelem_info_size));
David Sedlákd6e56892019-07-01 15:40:24 +02001697
David Sedlákda8ffa32019-07-08 14:17:10 +02001698 if (ctx->xml_ctx.status == LYXML_ELEM_CONTENT) {
1699 ret = lyxml_get_string(&ctx->xml_ctx, data, &out, &out_len, &out, &out_len, &dynamic);
David Sedlákd6e56892019-07-01 15:40:24 +02001700 /* current element has subelements as content */
1701 if (ret == LY_EINVAL) {
David Sedlákda8ffa32019-07-08 14:17:10 +02001702 while (ctx->xml_ctx.status == LYXML_ELEMENT) {
1703 ret = lyxml_get_element(&ctx->xml_ctx, data, &prefix.value, &prefix.len, &name.value, &name.len);
David Sedlákd6e56892019-07-01 15:40:24 +02001704 LY_CHECK_GOTO(ret, cleanup);
1705 if (!name.value) {
1706 /* end of current element reached */
1707 break;
1708 }
David Sedlák1af868e2019-07-17 17:03:14 +02001709 ret = yin_load_attributes(ctx, data, &attrs);
David Sedlákd6e56892019-07-01 15:40:24 +02001710 LY_CHECK_GOTO(ret, cleanup);
David Sedlákc1771b12019-07-10 15:55:46 +02001711 kw = yin_match_keyword(ctx, name.value, name.len, prefix.value, prefix.len, current_element);
David Sedlákd6e56892019-07-01 15:40:24 +02001712
1713 /* check if this element can be child of current element */
David Sedlák1af868e2019-07-17 17:03:14 +02001714 subelem = get_record(kw, subelem_info_size, subelem_info);
1715 if (!subelem) {
David Sedlákda8ffa32019-07-08 14:17:10 +02001716 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 +02001717 ret = LY_EVALID;
1718 goto cleanup;
1719 }
1720
David Sedlák5f8191e2019-07-08 16:35:52 +02001721 /* TODO check relative order */
1722
David Sedlák0c2bab92019-07-22 15:33:19 +02001723 /* check flags */
David Sedlák21f87cd2019-07-03 16:53:23 +02001724 /* if element is unique and already defined log error */
David Sedlák1af868e2019-07-17 17:03:14 +02001725 if ((subelem->flags & YIN_SUBELEM_UNIQUE) && (subelem->flags & YIN_SUBELEM_PARSED)) {
David Sedlákda8ffa32019-07-08 14:17:10 +02001726 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 +02001727 return LY_EVALID;
1728 }
David Sedlák1af868e2019-07-17 17:03:14 +02001729 if (subelem->flags & YIN_SUBELEM_FIRST) {
1730 ret = yin_check_subelem_first_constraint(ctx, subelem_info, subelem_info_size, current_element, subelem);
David Sedlák66d7c842019-07-11 15:06:04 +02001731 LY_CHECK_GOTO(ret, cleanup);
David Sedlák21f87cd2019-07-03 16:53:23 +02001732 }
David Sedlák0c2bab92019-07-22 15:33:19 +02001733 if (subelem->flags & YIN_SUBELEM_VER2) {
1734 if (ctx->mod_version < 2) {
1735 LOGVAL_PARSER((struct lys_parser_ctx *)ctx, LYVCODE_INSUBELEM2, ly_stmt2str(kw), ly_stmt2str(current_element));
David Sedlák9bb1c042019-07-22 16:45:37 +02001736 ret = LY_EVALID;
1737 goto cleanup;
David Sedlák0c2bab92019-07-22 15:33:19 +02001738 }
1739 }
David Sedlák1af868e2019-07-17 17:03:14 +02001740 subelem->flags |= YIN_SUBELEM_PARSED;
David Sedlák21f87cd2019-07-03 16:53:23 +02001741
David Sedlákd6e56892019-07-01 15:40:24 +02001742 switch (kw) {
1743 case YANG_CUSTOM:
David Sedlák1af868e2019-07-17 17:03:14 +02001744 ret = yin_parse_extension_instance(ctx, attrs, data, name2fullname(name.value, prefix.len),
David Sedlák3ffbc522019-07-02 17:49:28 +02001745 namelen2fulllen(name.len, prefix.len),
David Sedlák1af868e2019-07-17 17:03:14 +02001746 kw2lyext_substmt(current_element),
1747 (subelem->dest) ? *((uint32_t*)subelem->dest) : 0, exts);
David Sedlákd6e56892019-07-01 15:40:24 +02001748 break;
1749 case YANG_ACTION:
1750 break;
1751 case YANG_ANYDATA:
David Sedlákd6e56892019-07-01 15:40:24 +02001752 case YANG_ANYXML:
David Sedlák8a83bbb2019-07-18 14:46:00 +02001753 ret = yin_parse_any(ctx, attrs, data, kw, (struct tree_node_meta *)subelem->dest);
David Sedlákd6e56892019-07-01 15:40:24 +02001754 break;
1755 case YANG_ARGUMENT:
David Sedlák1af868e2019-07-17 17:03:14 +02001756 ret = yin_parse_argument_element(ctx, attrs, data, (struct yin_argument_meta *)subelem->dest, exts);
David Sedlákd6e56892019-07-01 15:40:24 +02001757 break;
1758 case YANG_AUGMENT:
1759 break;
1760 case YANG_BASE:
David Sedláka62750b2019-07-16 11:21:31 +02001761 if (current_element == YANG_TYPE) {
David Sedlák1af868e2019-07-17 17:03:14 +02001762 type = (struct lysp_type *)subelem->dest;
1763 ret = yin_parse_simple_elements(ctx, attrs, data, kw, &type->bases, YIN_ARG_NAME,
David Sedlák292763b2019-07-09 11:10:53 +02001764 Y_PREF_IDENTIF_ARG, exts);
1765 type->flags |= LYS_SET_BASE;
David Sedláka62750b2019-07-16 11:21:31 +02001766 } else if (current_element == YANG_IDENTITY) {
David Sedlák1af868e2019-07-17 17:03:14 +02001767 ret = yin_parse_simple_elements(ctx, attrs, data, kw, (const char ***)subelem->dest,
David Sedlák292763b2019-07-09 11:10:53 +02001768 YIN_ARG_NAME, Y_PREF_IDENTIF_ARG, exts);
1769 } else {
1770 LOGINT(ctx->xml_ctx.ctx);
1771 ret = LY_EINT;
1772 }
David Sedlákd6e56892019-07-01 15:40:24 +02001773 break;
1774 case YANG_BELONGS_TO:
David Sedlák1af868e2019-07-17 17:03:14 +02001775 ret = yin_parse_belongs_to(ctx, attrs, data, (struct lysp_submodule *)subelem->dest, exts);
David Sedlákd6e56892019-07-01 15:40:24 +02001776 break;
1777 case YANG_BIT:
David Sedlák07869a52019-07-12 14:28:19 +02001778 case YANG_ENUM:
David Sedlák1af868e2019-07-17 17:03:14 +02001779 ret = yin_parse_enum_bit(ctx, attrs, data, kw, (struct lysp_type *)subelem->dest);
David Sedlákd6e56892019-07-01 15:40:24 +02001780 break;
1781 case YANG_CASE:
1782 break;
1783 case YANG_CHOICE:
1784 break;
1785 case YANG_CONFIG:
David Sedlák1af868e2019-07-17 17:03:14 +02001786 ret = yin_parse_config(ctx, attrs, data, (uint16_t *)subelem->dest, exts);
David Sedlákd6e56892019-07-01 15:40:24 +02001787 break;
1788 case YANG_CONTACT:
David Sedlák619db942019-07-03 14:47:30 +02001789 case YANG_DESCRIPTION:
1790 case YANG_ORGANIZATION:
1791 case YANG_REFERENCE:
David Sedlák1af868e2019-07-17 17:03:14 +02001792 ret = yin_parse_meta_element(ctx, data, kw, (const char **)subelem->dest, exts);
David Sedlákd6e56892019-07-01 15:40:24 +02001793 break;
1794 case YANG_CONTAINER:
1795 break;
1796 case YANG_DEFAULT:
David Sedlákc3da3ef2019-07-19 12:56:08 +02001797 if (subelem->flags & YIN_SUBELEM_UNIQUE) {
1798 ret = yin_parse_simple_element(ctx, attrs, data, kw, (const char **)subelem->dest,
1799 YIN_ARG_VALUE, Y_STR_ARG, exts);
1800 } else {
1801 ret = yin_parse_simple_elements(ctx, attrs, data, kw, (const char ***)subelem->dest,
1802 YIN_ARG_VALUE, Y_STR_ARG, exts);
1803 }
David Sedlákd6e56892019-07-01 15:40:24 +02001804 break;
David Sedlákd6e56892019-07-01 15:40:24 +02001805 case YANG_DEVIATE:
1806 break;
1807 case YANG_DEVIATION:
1808 break;
David Sedlákd6e56892019-07-01 15:40:24 +02001809 case YANG_ERROR_APP_TAG:
David Sedlák1af868e2019-07-17 17:03:14 +02001810 ret = yin_parse_simple_element(ctx, attrs, data, kw, (const char **)subelem->dest,
David Sedlák2ce1be62019-07-10 16:15:09 +02001811 YIN_ARG_VALUE, Y_STR_ARG, exts);
David Sedlákd6e56892019-07-01 15:40:24 +02001812 break;
1813 case YANG_ERROR_MESSAGE:
David Sedlák1af868e2019-07-17 17:03:14 +02001814 ret = yin_parse_err_msg_element(ctx, data, (const char **)subelem->dest, exts);
David Sedlákd6e56892019-07-01 15:40:24 +02001815 break;
1816 case YANG_EXTENSION:
David Sedlák1af868e2019-07-17 17:03:14 +02001817 ret = yin_parse_extension(ctx, attrs, data, (struct lysp_ext **)subelem->dest);
David Sedlákd6e56892019-07-01 15:40:24 +02001818 break;
1819 case YANG_FEATURE:
David Sedlák5e13dea2019-07-22 16:06:45 +02001820 ret = yin_parse_feature(ctx, attrs, data, (struct lysp_feature **)subelem->dest);
David Sedlákd6e56892019-07-01 15:40:24 +02001821 break;
1822 case YANG_FRACTION_DIGITS:
David Sedlák1af868e2019-07-17 17:03:14 +02001823 ret = yin_parse_fracdigits(ctx, attrs, data, (struct lysp_type *)subelem->dest);
David Sedlákd6e56892019-07-01 15:40:24 +02001824 break;
1825 case YANG_GROUPING:
1826 break;
1827 case YANG_IDENTITY:
David Sedlák28794f22019-07-22 16:45:00 +02001828 ret = yin_parse_identity(ctx, attrs, data, (struct lysp_ident **)subelem->dest);
David Sedlákd6e56892019-07-01 15:40:24 +02001829 break;
1830 case YANG_IF_FEATURE:
David Sedlák1af868e2019-07-17 17:03:14 +02001831 ret = yin_parse_simple_elements(ctx, attrs, data, kw,
1832 (const char ***)subelem->dest, YIN_ARG_NAME, Y_STR_ARG, exts);
David Sedlákd6e56892019-07-01 15:40:24 +02001833 break;
1834 case YANG_IMPORT:
David Sedlák1af868e2019-07-17 17:03:14 +02001835 ret = yin_parse_import(ctx, attrs, data, (struct lysp_module *)subelem->dest);
David Sedlákd6e56892019-07-01 15:40:24 +02001836 break;
1837 case YANG_INCLUDE:
David Sedlák0c2bab92019-07-22 15:33:19 +02001838 ret = yin_parse_include(ctx, attrs, data, (struct include_meta *)subelem->dest);
David Sedlákd6e56892019-07-01 15:40:24 +02001839 break;
1840 case YANG_INPUT:
1841 break;
1842 case YANG_KEY:
David Sedlák12470a82019-07-19 13:44:36 +02001843 ret = yin_parse_simple_element(ctx, attrs, data, kw, (const char **)subelem->dest, YIN_ARG_VALUE,
1844 Y_STR_ARG, exts);
David Sedlákd6e56892019-07-01 15:40:24 +02001845 break;
1846 case YANG_LEAF:
David Sedlák203ca3a2019-07-18 15:26:25 +02001847 ret = yin_parse_leaf(ctx, attrs, data, (struct tree_node_meta *)subelem->dest);
David Sedlákd6e56892019-07-01 15:40:24 +02001848 break;
1849 case YANG_LEAF_LIST:
David Sedlákc3da3ef2019-07-19 12:56:08 +02001850 ret = yin_parse_leaflist(ctx, attrs, data, (struct tree_node_meta *)subelem->dest);
David Sedlákd6e56892019-07-01 15:40:24 +02001851 break;
1852 case YANG_LENGTH:
David Sedlák1af868e2019-07-17 17:03:14 +02001853 type = (struct lysp_type *)subelem->dest;
David Sedlák438ae432019-07-11 15:36:54 +02001854 type->length = calloc(1, sizeof *type->length);
1855 LY_CHECK_ERR_GOTO(!type->length, LOGMEM(ctx->xml_ctx.ctx); ret = LY_EMEM, cleanup);
David Sedlák1af868e2019-07-17 17:03:14 +02001856 ret = yin_parse_restriction(ctx, attrs, data, kw, type->length);
David Sedlák438ae432019-07-11 15:36:54 +02001857 type->flags |= LYS_SET_LENGTH;
David Sedlákd6e56892019-07-01 15:40:24 +02001858 break;
1859 case YANG_LIST:
David Sedlákaf536aa2019-07-23 13:42:23 +02001860 ret = yin_parse_list(ctx, attrs, data, (struct tree_node_meta *)subelem->dest);
David Sedlákd6e56892019-07-01 15:40:24 +02001861 break;
1862 case YANG_MANDATORY:
David Sedlák1af868e2019-07-17 17:03:14 +02001863 ret = yin_parse_mandatory(ctx, attrs, data, (uint16_t *)subelem->dest, exts);
David Sedlákd6e56892019-07-01 15:40:24 +02001864 break;
1865 case YANG_MAX_ELEMENTS:
David Sedlákd6e56892019-07-01 15:40:24 +02001866 case YANG_MIN_ELEMENTS:
David Sedlák09e18c92019-07-18 11:17:11 +02001867 ret = yin_parse_minmax(ctx, attrs, data, current_element, kw, subelem->dest);
David Sedlákd6e56892019-07-01 15:40:24 +02001868 break;
1869 case YANG_MODIFIER:
David Sedlák1af868e2019-07-17 17:03:14 +02001870 ret = yin_parse_modifier(ctx, attrs, data, (const char **)subelem->dest, exts);
David Sedlákd6e56892019-07-01 15:40:24 +02001871 break;
1872 case YANG_MODULE:
1873 break;
1874 case YANG_MUST:
David Sedlák1af868e2019-07-17 17:03:14 +02001875 ret = yin_parse_must(ctx, attrs, data, (struct lysp_restr **)subelem->dest);
David Sedlákd6e56892019-07-01 15:40:24 +02001876 break;
1877 case YANG_NAMESPACE:
David Sedlák1af868e2019-07-17 17:03:14 +02001878 ret = yin_parse_simple_element(ctx, attrs, data, kw, (const char **)subelem->dest,
David Sedlák2ce1be62019-07-10 16:15:09 +02001879 YIN_ARG_URI, Y_STR_ARG, exts);
David Sedlákd6e56892019-07-01 15:40:24 +02001880 break;
1881 case YANG_NOTIFICATION:
1882 break;
1883 case YANG_ORDERED_BY:
David Sedláka2dad212019-07-18 12:45:19 +02001884 ret = yin_parse_orderedby(ctx, attrs, data, (uint16_t *)subelem->dest, exts);
David Sedlákd6e56892019-07-01 15:40:24 +02001885 break;
David Sedlákd6e56892019-07-01 15:40:24 +02001886 case YANG_OUTPUT:
1887 break;
1888 case YANG_PATH:
David Sedlák1af868e2019-07-17 17:03:14 +02001889 type = (struct lysp_type *)subelem->dest;
1890 ret = yin_parse_simple_element(ctx, attrs, data, kw, &type->path,
David Sedlák58979872019-07-12 11:42:43 +02001891 YIN_ARG_VALUE, Y_STR_ARG, exts);
1892 type->flags |= LYS_SET_PATH;
David Sedlákd6e56892019-07-01 15:40:24 +02001893 break;
1894 case YANG_PATTERN:
David Sedlák1af868e2019-07-17 17:03:14 +02001895 ret = yin_parse_pattern(ctx, attrs, data, (struct lysp_type *)subelem->dest);
David Sedlákd6e56892019-07-01 15:40:24 +02001896 break;
David Sedlák5545f5d2019-07-11 11:55:16 +02001897 case YANG_VALUE:
David Sedlákd6e56892019-07-01 15:40:24 +02001898 case YANG_POSITION:
David Sedlák1af868e2019-07-17 17:03:14 +02001899 ret = yin_parse_value_pos_element(ctx, attrs, data, kw,
1900 (struct lysp_type_enum *)subelem->dest);
David Sedlákd6e56892019-07-01 15:40:24 +02001901 break;
1902 case YANG_PREFIX:
David Sedlák1af868e2019-07-17 17:03:14 +02001903 ret = yin_parse_simple_element(ctx, attrs, data, kw,
1904 (const char **)subelem->dest, YIN_ARG_VALUE, Y_IDENTIF_ARG, exts);
David Sedlákd6e56892019-07-01 15:40:24 +02001905 break;
1906 case YANG_PRESENCE:
David Sedlákcb39f642019-07-19 13:19:55 +02001907 ret = yin_parse_simple_element(ctx, attrs, data, kw, (const char **)subelem->dest, YIN_ARG_VALUE,
1908 Y_STR_ARG, exts);
David Sedlákd6e56892019-07-01 15:40:24 +02001909 break;
1910 case YANG_RANGE:
David Sedlák1af868e2019-07-17 17:03:14 +02001911 type = (struct lysp_type *)subelem->dest;
David Sedlákb7296dd2019-07-11 14:58:38 +02001912 type->range = calloc(1, sizeof *type->range);
David Sedlák66d7c842019-07-11 15:06:04 +02001913 LY_CHECK_ERR_GOTO(!type->range, LOGMEM(ctx->xml_ctx.ctx); ret = LY_EMEM, cleanup);
David Sedlák1af868e2019-07-17 17:03:14 +02001914 ret = yin_parse_restriction(ctx, attrs, data, kw, type->range);
David Sedlák438ae432019-07-11 15:36:54 +02001915 type->flags |= LYS_SET_RANGE;
David Sedlákd6e56892019-07-01 15:40:24 +02001916 break;
David Sedlákd6e56892019-07-01 15:40:24 +02001917 case YANG_REFINE:
David Sedlákd2d676a2019-07-22 11:28:19 +02001918 ret = yin_parse_refine(ctx, attrs, data, (struct lysp_refine **)subelem->dest);
David Sedlákd6e56892019-07-01 15:40:24 +02001919 break;
1920 case YANG_REQUIRE_INSTANCE:
David Sedlák1af868e2019-07-17 17:03:14 +02001921 ret = yin_pasrse_reqinstance(ctx, attrs, data, (struct lysp_type *)subelem->dest);
David Sedlákd6e56892019-07-01 15:40:24 +02001922 break;
1923 case YANG_REVISION:
David Sedlákaa854b02019-07-22 14:17:10 +02001924 ret = yin_parse_revision(ctx, attrs, data, (struct lysp_revision **)subelem->dest);
David Sedlákd6e56892019-07-01 15:40:24 +02001925 break;
1926 case YANG_REVISION_DATE:
David Sedlák1af868e2019-07-17 17:03:14 +02001927 ret = yin_parse_revision_date(ctx, attrs, data, (char *)subelem->dest, exts);
David Sedlákd6e56892019-07-01 15:40:24 +02001928 break;
1929 case YANG_RPC:
1930 break;
1931 case YANG_STATUS:
David Sedlák1af868e2019-07-17 17:03:14 +02001932 ret = yin_parse_status(ctx, attrs, data, (uint16_t *)subelem->dest, exts);
David Sedlákd6e56892019-07-01 15:40:24 +02001933 break;
1934 case YANG_SUBMODULE:
1935 break;
1936 case YANG_TYPE:
David Sedlák374d2b32019-07-17 15:06:55 +02001937 /* type as child of another type */
David Sedlák1af868e2019-07-17 17:03:14 +02001938 type = (struct lysp_type *)subelem->dest;
David Sedlák374d2b32019-07-17 15:06:55 +02001939 if (current_element == YANG_TYPE) {
1940 LY_ARRAY_NEW_GOTO(ctx->xml_ctx.ctx, type->types, nested_type, ret, cleanup);
David Sedlákc3da3ef2019-07-19 12:56:08 +02001941 type->flags |= LYS_SET_TYPE;
David Sedlák374d2b32019-07-17 15:06:55 +02001942 type = nested_type;
1943 }
David Sedlák1af868e2019-07-17 17:03:14 +02001944 ret = yin_parse_type(ctx, attrs, data, type);
David Sedlákd6e56892019-07-01 15:40:24 +02001945 break;
1946 case YANG_TYPEDEF:
David Sedlák04e17b22019-07-19 15:29:48 +02001947 ret = yin_parse_typedef(ctx, attrs, data, (struct typedef_meta *)subelem->dest);
David Sedlákd6e56892019-07-01 15:40:24 +02001948 break;
1949 case YANG_UNIQUE:
David Sedlák1af868e2019-07-17 17:03:14 +02001950 ret = yin_parse_simple_elements(ctx, attrs, data, kw, (const char ***)subelem->dest,
David Sedláka5b1d382019-07-10 16:31:09 +02001951 YIN_ARG_TAG, Y_STR_ARG, exts);
David Sedlákd6e56892019-07-01 15:40:24 +02001952 break;
1953 case YANG_UNITS:
David Sedlák1af868e2019-07-17 17:03:14 +02001954 ret = yin_parse_simple_element(ctx, attrs, data, kw, (const char **)subelem->dest,
David Sedláka5b1d382019-07-10 16:31:09 +02001955 YIN_ARG_NAME, Y_STR_ARG, exts);
David Sedlákd6e56892019-07-01 15:40:24 +02001956 break;
1957 case YANG_USES:
David Sedlák0d6de5a2019-07-22 13:25:44 +02001958 ret = yin_parse_uses(ctx, attrs, data, (struct tree_node_meta *)subelem->dest);
David Sedlákd6e56892019-07-01 15:40:24 +02001959 break;
David Sedlákd6e56892019-07-01 15:40:24 +02001960 case YANG_WHEN:
David Sedlák1af868e2019-07-17 17:03:14 +02001961 ret = yin_parse_when(ctx, attrs, data, (struct lysp_when **)subelem->dest);
David Sedlákd6e56892019-07-01 15:40:24 +02001962 break;
1963 case YANG_YANG_VERSION:
David Sedlák1af868e2019-07-17 17:03:14 +02001964 ret = yin_parse_yangversion(ctx, attrs, data, (uint8_t *)subelem->dest, exts);
David Sedlákd6e56892019-07-01 15:40:24 +02001965 break;
1966 case YANG_YIN_ELEMENT:
David Sedlák1af868e2019-07-17 17:03:14 +02001967 ret = yin_parse_yin_element_element(ctx, attrs, data, (uint16_t *)subelem->dest, exts);
David Sedlák3ffbc522019-07-02 17:49:28 +02001968 break;
1969 case YIN_TEXT:
David Sedlák3ffbc522019-07-02 17:49:28 +02001970 case YIN_VALUE:
David Sedlák1af868e2019-07-17 17:03:14 +02001971 ret = yin_parse_content(ctx, NULL, 0, data, kw, (const char **)subelem->dest, NULL);
David Sedlákd6e56892019-07-01 15:40:24 +02001972 break;
1973 default:
David Sedlákda8ffa32019-07-08 14:17:10 +02001974 LOGINT(ctx->xml_ctx.ctx);
David Sedlák21f87cd2019-07-03 16:53:23 +02001975 return LY_EINT;
David Sedlákd6e56892019-07-01 15:40:24 +02001976 }
David Sedlák3ffbc522019-07-02 17:49:28 +02001977 LY_CHECK_GOTO(ret, cleanup);
David Sedlák1af868e2019-07-17 17:03:14 +02001978 FREE_ARRAY(ctx, attrs, free_arg_rec);
1979 attrs = NULL;
1980 subelem = NULL;
David Sedlákd6e56892019-07-01 15:40:24 +02001981 }
1982 } else {
1983 /* elements with text or none content */
David Sedlák3ffbc522019-07-02 17:49:28 +02001984 /* save text content, if text_content isn't set, it's just ignored */
David Sedlák3b4df842019-07-17 11:39:46 +02001985 LY_CHECK_RET(yin_validate_value(ctx, Y_STR_ARG, out, out_len));
David Sedlák3ffbc522019-07-02 17:49:28 +02001986 if (text_content) {
1987 if (dynamic) {
David Sedlákda8ffa32019-07-08 14:17:10 +02001988 *text_content = lydict_insert_zc(ctx->xml_ctx.ctx, out);
David Sedlák3ffbc522019-07-02 17:49:28 +02001989 if (!*text_content) {
1990 free(out);
1991 return LY_EMEM;
1992 }
1993 } else {
1994 if (out_len == 0) {
David Sedlák99295322019-07-17 11:34:18 +02001995 *text_content = lydict_insert(ctx->xml_ctx.ctx, "", 0);
David Sedlák3ffbc522019-07-02 17:49:28 +02001996 } else {
David Sedlákda8ffa32019-07-08 14:17:10 +02001997 *text_content = lydict_insert(ctx->xml_ctx.ctx, out, out_len);
David Sedlák3ffbc522019-07-02 17:49:28 +02001998 }
1999 }
2000 }
David Sedlákd6e56892019-07-01 15:40:24 +02002001 /* load closing element */
David Sedlákda8ffa32019-07-08 14:17:10 +02002002 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 +02002003 }
David Sedlák555c7202019-07-04 12:14:12 +02002004
David Sedlákda8ffa32019-07-08 14:17:10 +02002005 LY_CHECK_RET(yin_check_subelem_mandatory_constraint(ctx, subelem_info, subelem_info_size, current_element));
David Sedlákd6e56892019-07-01 15:40:24 +02002006 }
2007
2008cleanup:
David Sedlák1af868e2019-07-17 17:03:14 +02002009 FREE_ARRAY(ctx, attrs, free_arg_rec);
David Sedlákd6e56892019-07-01 15:40:24 +02002010 return ret;
2011}
2012
David Sedlák619db942019-07-03 14:47:30 +02002013LY_ERR
David Sedlák1f90d252019-07-10 17:09:32 +02002014yin_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 +02002015 struct lysp_ext_instance **exts)
David Sedlák81e04022019-04-05 15:05:46 +02002016{
David Sedlák3ffbc522019-07-02 17:49:28 +02002017 const char *temp_rev;
David Sedlák968ac342019-07-11 15:17:59 +02002018 struct yin_subelement subelems[1] = {
2019 {YANG_CUSTOM, NULL, 0}
2020 };
David Sedlák81e04022019-04-05 15:05:46 +02002021
David Sedlák292763b2019-07-09 11:10:53 +02002022 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 +02002023 LY_CHECK_ERR_RET(lysp_check_date((struct lys_parser_ctx *)ctx, temp_rev, strlen(temp_rev), "revision-date") != LY_SUCCESS,
2024 FREE_STRING(ctx->xml_ctx.ctx, temp_rev), LY_EVALID);
David Sedlákda63c082019-06-04 13:52:23 +02002025
2026 strcpy(rev, temp_rev);
David Sedlákda8ffa32019-07-08 14:17:10 +02002027 FREE_STRING(ctx->xml_ctx.ctx, temp_rev);
David Sedlák81e04022019-04-05 15:05:46 +02002028
David Sedlákda8ffa32019-07-08 14:17:10 +02002029 return yin_parse_content(ctx, subelems, 1, data, YANG_REVISION_DATE, NULL, exts);
David Sedlák3ffbc522019-07-02 17:49:28 +02002030}
David Sedlák00250342019-06-21 14:19:39 +02002031
David Sedláke1a30302019-07-10 13:49:38 +02002032/**
2033 * @brief Parse config element.
2034 *
2035 * @param[in] ctx Yin parser context for logging and to store current state.
2036 * @param[in] attrs [Sized array](@ref sizedarrays) of attributes of import element.
2037 * @param[in,out] data Data to read from, always moved to currently handled character.
2038 * @param[in,out] flags Flags to add to.
2039 * @param[in,out] exts Extension instances to add to.
2040 *
2041 * @return LY_ERR values.
2042 */
2043static LY_ERR
2044yin_parse_config(struct yin_parser_ctx *ctx, struct yin_arg_record *attrs, const char **data, uint16_t *flags,
2045 struct lysp_ext_instance **exts)
2046{
2047 const char *temp_val = NULL;
David Sedlák968ac342019-07-11 15:17:59 +02002048 struct yin_subelement subelems[1] = {
2049 {YANG_CUSTOM, NULL, 0}
2050 };
David Sedláke1a30302019-07-10 13:49:38 +02002051
David Sedlák1f90d252019-07-10 17:09:32 +02002052 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 +02002053 if (strcmp(temp_val, "true") == 0) {
2054 *flags |= LYS_CONFIG_W;
2055 } else if (strcmp(temp_val, "false") == 0) {
2056 *flags |= LYS_CONFIG_R;
2057 } else {
2058 LOGVAL_PARSER((struct lys_parser_ctx *)ctx, LY_VCODE_INVAL_YIN, temp_val, "config");
2059 FREE_STRING(ctx->xml_ctx.ctx, temp_val);
2060 return LY_EVALID;
2061 }
2062 FREE_STRING(ctx->xml_ctx.ctx, temp_val);
2063
2064 return yin_parse_content(ctx, subelems, 1, data, YANG_CONFIG, NULL, exts);
2065}
2066
David Sedlák3ffbc522019-07-02 17:49:28 +02002067LY_ERR
David Sedlák92147b02019-07-09 14:01:01 +02002068yin_parse_yangversion(struct yin_parser_ctx *ctx, struct yin_arg_record *attrs, const char **data, uint8_t *version,
2069 struct lysp_ext_instance **exts)
2070{
2071 const char *temp_version = NULL;
David Sedlák968ac342019-07-11 15:17:59 +02002072 struct yin_subelement subelems[1] = {
2073 {YANG_CUSTOM, NULL, 0}
2074 };
David Sedlák92147b02019-07-09 14:01:01 +02002075
David Sedlák1f90d252019-07-10 17:09:32 +02002076 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 +02002077 if (strcmp(temp_version, "1.0") == 0) {
2078 *version = LYS_VERSION_1_0;
2079 } else if (strcmp(temp_version, "1.1") == 0) {
2080 *version = LYS_VERSION_1_1;
2081 } else {
2082 LOGVAL_PARSER((struct lys_parser_ctx *)ctx, LY_VCODE_INVAL_YIN, temp_version, "yang-version");
2083 FREE_STRING(ctx->xml_ctx.ctx, temp_version);
2084 return LY_EVALID;
2085 }
2086 FREE_STRING(ctx->xml_ctx.ctx, temp_version);
2087 ctx->mod_version = *version;
2088
2089 return yin_parse_content(ctx, subelems, 1, data, YANG_YANG_VERSION, NULL, exts);
2090}
2091
2092LY_ERR
David Sedlák1f90d252019-07-10 17:09:32 +02002093yin_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 +01002094{
David Sedlák736fd0d2019-02-15 16:06:31 +01002095 struct lysp_import *imp;
David Sedlák00250342019-06-21 14:19:39 +02002096 /* allocate new element in sized array for import */
David Sedlákda8ffa32019-07-08 14:17:10 +02002097 LY_ARRAY_NEW_RET(ctx->xml_ctx.ctx, mod->imports, imp, LY_EMEM);
David Sedlák3ffbc522019-07-02 17:49:28 +02002098
David Sedlák968ac342019-07-11 15:17:59 +02002099 struct yin_subelement subelems[5] = {
2100 {YANG_DESCRIPTION, &imp->dsc, YIN_SUBELEM_UNIQUE},
2101 {YANG_PREFIX, &imp->prefix, YIN_SUBELEM_MANDATORY | YIN_SUBELEM_UNIQUE},
2102 {YANG_REFERENCE, &imp->ref, YIN_SUBELEM_UNIQUE},
2103 {YANG_REVISION_DATE, imp->rev, YIN_SUBELEM_UNIQUE},
2104 {YANG_CUSTOM, NULL, 0}
2105 };
David Sedlák736fd0d2019-02-15 16:06:31 +01002106
David Sedlák92147b02019-07-09 14:01:01 +02002107 /* parse import attributes */
David Sedlák292763b2019-07-09 11:10:53 +02002108 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 +02002109 LY_CHECK_RET(yin_parse_content(ctx, subelems, 5, data, YANG_IMPORT, NULL, &imp->exts));
David Sedlák619db942019-07-03 14:47:30 +02002110 /* check prefix validity */
David Sedlákda8ffa32019-07-08 14:17:10 +02002111 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 +02002112
David Sedlákda8ffa32019-07-08 14:17:10 +02002113 return yin_parse_content(ctx, subelems, 5, data, YANG_IMPORT, NULL, &imp->exts);
David Sedlák736fd0d2019-02-15 16:06:31 +01002114}
2115
David Sedlák11900c82019-06-18 16:29:12 +02002116LY_ERR
David Sedlák1fdb2522019-07-09 16:22:57 +02002117yin_parse_mandatory(struct yin_parser_ctx *ctx, struct yin_arg_record *attrs, const char **data, uint16_t *flags,
2118 struct lysp_ext_instance **exts)
2119{
2120 const char *temp_val = NULL;
David Sedlák968ac342019-07-11 15:17:59 +02002121 struct yin_subelement subelems[1] = {
2122 {YANG_CUSTOM, NULL, 0}
2123 };
David Sedlák1fdb2522019-07-09 16:22:57 +02002124
David Sedlák1f90d252019-07-10 17:09:32 +02002125 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 +02002126 if (strcmp(temp_val, "true") == 0) {
2127 *flags |= LYS_MAND_TRUE;
2128 } else if (strcmp(temp_val, "false") == 0) {
2129 *flags |= LYS_MAND_FALSE;
2130 } else {
2131 LOGVAL_PARSER((struct lys_parser_ctx *)ctx, LY_VCODE_INVAL_YIN, temp_val, "mandatory");
2132 FREE_STRING(ctx->xml_ctx.ctx, temp_val);
2133 return LY_EVALID;
2134 }
2135 FREE_STRING(ctx->xml_ctx.ctx, temp_val);
2136
2137 return yin_parse_content(ctx, subelems, 1, data, YANG_MANDATORY, NULL, exts);
2138}
2139
2140LY_ERR
David Sedlák1f90d252019-07-10 17:09:32 +02002141yin_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 +02002142 struct lysp_ext_instance **exts)
David Sedlák11900c82019-06-18 16:29:12 +02002143{
David Sedlák3ffbc522019-07-02 17:49:28 +02002144 const char *value = NULL;
David Sedlák968ac342019-07-11 15:17:59 +02002145 struct yin_subelement subelems[1] = {
2146 {YANG_CUSTOM, NULL, 0}
2147 };
David Sedlák3ffbc522019-07-02 17:49:28 +02002148
David Sedlák292763b2019-07-09 11:10:53 +02002149 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 +02002150 if (strcmp(value, "current") == 0) {
2151 *flags |= LYS_STATUS_CURR;
2152 } else if (strcmp(value, "deprecated") == 0) {
2153 *flags |= LYS_STATUS_DEPRC;
2154 } else if (strcmp(value, "obsolete") == 0) {
2155 *flags |= LYS_STATUS_OBSLT;
2156 } else {
David Sedlákda8ffa32019-07-08 14:17:10 +02002157 LOGVAL_PARSER((struct lys_parser_ctx *)ctx, LY_VCODE_INVAL_YIN, value, "status");
2158 FREE_STRING(ctx->xml_ctx.ctx, value);
David Sedlák11900c82019-06-18 16:29:12 +02002159 return LY_EVALID;
2160 }
David Sedlákda8ffa32019-07-08 14:17:10 +02002161 FREE_STRING(ctx->xml_ctx.ctx, value);
David Sedlák11900c82019-06-18 16:29:12 +02002162
David Sedlákda8ffa32019-07-08 14:17:10 +02002163 return yin_parse_content(ctx, subelems, 1, data, YANG_STATUS, NULL, exts);
David Sedlák11900c82019-06-18 16:29:12 +02002164}
2165
David Sedlák11900c82019-06-18 16:29:12 +02002166LY_ERR
David Sedlák32eee7b2019-07-09 12:38:44 +02002167yin_parse_when(struct yin_parser_ctx *ctx, struct yin_arg_record *attrs, const char **data, struct lysp_when **when_p)
2168{
2169 struct lysp_when *when;
2170 when = calloc(1, sizeof *when);
2171 LY_CHECK_ERR_RET(!when, LOGMEM(ctx->xml_ctx.ctx), LY_EMEM);
David Sedlák1f90d252019-07-10 17:09:32 +02002172 yin_parse_attribute(ctx, attrs, YIN_ARG_CONDITION, &when->cond, Y_STR_ARG, YANG_WHEN);
David Sedlák32eee7b2019-07-09 12:38:44 +02002173 *when_p = when;
David Sedlák968ac342019-07-11 15:17:59 +02002174 struct yin_subelement subelems[3] = {
2175 {YANG_DESCRIPTION, &when->dsc, YIN_SUBELEM_UNIQUE},
2176 {YANG_REFERENCE, &when->ref, YIN_SUBELEM_UNIQUE},
2177 {YANG_CUSTOM, NULL, 0}
2178 };
David Sedlák32eee7b2019-07-09 12:38:44 +02002179
2180 return yin_parse_content(ctx, subelems, 3, data, YANG_WHEN, NULL, &when->exts);
2181}
2182
2183LY_ERR
David Sedlákda8ffa32019-07-08 14:17:10 +02002184yin_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 +02002185 uint16_t *flags, struct lysp_ext_instance **exts)
David Sedlák2721d3d2019-06-21 15:37:41 +02002186{
David Sedlák3ffbc522019-07-02 17:49:28 +02002187 const char *temp_val = NULL;
David Sedlák968ac342019-07-11 15:17:59 +02002188 struct yin_subelement subelems[1] = {
2189 {YANG_CUSTOM, NULL, 0}
2190 };
David Sedlák2721d3d2019-06-21 15:37:41 +02002191
David Sedlák1f90d252019-07-10 17:09:32 +02002192 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 +02002193 if (strcmp(temp_val, "true") == 0) {
2194 *flags |= LYS_YINELEM_TRUE;
2195 } else if (strcmp(temp_val, "false") == 0) {
2196 *flags |= LYS_YINELEM_FALSE;
2197 } else {
David Sedlákda8ffa32019-07-08 14:17:10 +02002198 LOGVAL_PARSER((struct lys_parser_ctx *)ctx, LY_VCODE_INVAL_YIN, temp_val, "yin-element");
2199 FREE_STRING(ctx->xml_ctx.ctx, temp_val);
David Sedlák2721d3d2019-06-21 15:37:41 +02002200 return LY_EVALID;
2201 }
David Sedlákda8ffa32019-07-08 14:17:10 +02002202 FREE_STRING(ctx->xml_ctx.ctx, temp_val);
David Sedlák2721d3d2019-06-21 15:37:41 +02002203
David Sedlákda8ffa32019-07-08 14:17:10 +02002204 return yin_parse_content(ctx, subelems, 1, data, YANG_YIN_ELEMENT, NULL, exts);
David Sedlák2721d3d2019-06-21 15:37:41 +02002205}
2206
2207LY_ERR
David Sedlák1f90d252019-07-10 17:09:32 +02002208yin_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 +02002209 int ext_name_len, LYEXT_SUBSTMT subelem, uint32_t subelem_index, struct lysp_ext_instance **exts)
David Sedlák1e2cdd02019-06-27 14:17:43 +02002210{
2211 LY_ERR ret = LY_SUCCESS;
David Sedlákb1a78352019-06-28 16:16:29 +02002212 char *out;
2213 const char *name, *prefix;
2214 size_t out_len, prefix_len, name_len;
2215 int dynamic;
David Sedlák1e2cdd02019-06-27 14:17:43 +02002216 struct lysp_ext_instance *e;
David Sedlákb1a78352019-06-28 16:16:29 +02002217 struct lysp_stmt *last_subelem = NULL, *new_subelem = NULL;
2218 struct yin_arg_record *iter;
David Sedlák1e2cdd02019-06-27 14:17:43 +02002219
David Sedlákda8ffa32019-07-08 14:17:10 +02002220 LY_ARRAY_NEW_RET(ctx->xml_ctx.ctx, *exts, e, LY_EMEM);
David Sedlák1e2cdd02019-06-27 14:17:43 +02002221
2222 e->yin = 0;
2223 /* store name and insubstmt info */
David Sedlákda8ffa32019-07-08 14:17:10 +02002224 e->name = lydict_insert(ctx->xml_ctx.ctx, ext_name, ext_name_len);
David Sedlák619db942019-07-03 14:47:30 +02002225 e->insubstmt = subelem;
2226 e->insubstmt_index = subelem_index;
David Sedlák1e2cdd02019-06-27 14:17:43 +02002227 e->yin |= LYS_YIN;
2228
David Sedlákb1a78352019-06-28 16:16:29 +02002229 /* store attributes as subelements */
David Sedlák1f90d252019-07-10 17:09:32 +02002230 LY_ARRAY_FOR_ITER(attrs, struct yin_arg_record, iter) {
David Sedlákb1a78352019-06-28 16:16:29 +02002231 if (!iter->prefix) {
2232 new_subelem = calloc(1, sizeof(*new_subelem));
2233 if (!e->child) {
2234 e->child = new_subelem;
David Sedlák1e2cdd02019-06-27 14:17:43 +02002235 } else {
David Sedlákb1a78352019-06-28 16:16:29 +02002236 last_subelem->next = new_subelem;
2237 }
2238 last_subelem = new_subelem;
2239
2240 last_subelem->flags |= LYS_YIN_ATTR;
David Sedlákda8ffa32019-07-08 14:17:10 +02002241 last_subelem->stmt = lydict_insert(ctx->xml_ctx.ctx, iter->name, iter->name_len);
2242 LY_CHECK_ERR_RET(!last_subelem->stmt, LOGMEM(ctx->xml_ctx.ctx), LY_EMEM);
David Sedlákb1a78352019-06-28 16:16:29 +02002243 if (iter->dynamic_content) {
David Sedlákda8ffa32019-07-08 14:17:10 +02002244 last_subelem->arg = lydict_insert_zc(ctx->xml_ctx.ctx, iter->content);
2245 LY_CHECK_ERR_RET(!last_subelem->arg, LOGMEM(ctx->xml_ctx.ctx), LY_EMEM);
David Sedlákb1a78352019-06-28 16:16:29 +02002246 } else {
David Sedlákda8ffa32019-07-08 14:17:10 +02002247 last_subelem->arg = lydict_insert(ctx->xml_ctx.ctx, iter->content, iter->content_len);
2248 LY_CHECK_ERR_RET(!last_subelem->arg, LOGMEM(ctx->xml_ctx.ctx), LY_EMEM);
David Sedlák1e2cdd02019-06-27 14:17:43 +02002249 }
2250 }
2251 }
David Sedlák1e2cdd02019-06-27 14:17:43 +02002252
David Sedlákf250ecf2019-07-01 11:02:05 +02002253 /* parse subelements */
David Sedlákda8ffa32019-07-08 14:17:10 +02002254 if (ctx->xml_ctx.status == LYXML_ELEM_CONTENT) {
2255 ret = lyxml_get_string(&ctx->xml_ctx, data, &out, &out_len, &out, &out_len, &dynamic);
David Sedlákb1a78352019-06-28 16:16:29 +02002256 if (ret == LY_EINVAL) {
David Sedlákda8ffa32019-07-08 14:17:10 +02002257 while (ctx->xml_ctx.status == LYXML_ELEMENT) {
2258 LY_CHECK_RET(lyxml_get_element(&ctx->xml_ctx, data, &prefix, &prefix_len, &name, &name_len));
David Sedlákb1a78352019-06-28 16:16:29 +02002259 if (!name) {
2260 /* end of extension instance reached */
2261 break;
2262 }
David Sedlákda8ffa32019-07-08 14:17:10 +02002263 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 +02002264 if (!e->child) {
2265 e->child = new_subelem;
2266 } else {
2267 last_subelem->next = new_subelem;
2268 }
2269 last_subelem = new_subelem;
2270 }
David Sedlák555c7202019-07-04 12:14:12 +02002271 } else {
2272 /* save text content */
2273 if (dynamic) {
David Sedlákda8ffa32019-07-08 14:17:10 +02002274 e->argument = lydict_insert_zc(ctx->xml_ctx.ctx, out);
David Sedlák555c7202019-07-04 12:14:12 +02002275 if (!e->argument) {
2276 free(out);
2277 return LY_EMEM;
2278 }
2279 } else {
David Sedlákda8ffa32019-07-08 14:17:10 +02002280 e->argument = lydict_insert(ctx->xml_ctx.ctx, out, out_len);
David Sedlák555c7202019-07-04 12:14:12 +02002281 LY_CHECK_RET(!e->argument, LY_EMEM);
2282 }
David Sedlákda8ffa32019-07-08 14:17:10 +02002283 LY_CHECK_RET(lyxml_get_element(&ctx->xml_ctx, data, &prefix, &prefix_len, &name, &name_len));
David Sedlák555c7202019-07-04 12:14:12 +02002284 LY_CHECK_RET(name, LY_EINT);
David Sedlákb1a78352019-06-28 16:16:29 +02002285 }
David Sedlákb1a78352019-06-28 16:16:29 +02002286 }
2287
2288 return LY_SUCCESS;
2289}
2290
2291LY_ERR
David Sedlákda8ffa32019-07-08 14:17:10 +02002292yin_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 +02002293 size_t prefix_len, const char **data, struct lysp_stmt **element)
David Sedlákb1a78352019-06-28 16:16:29 +02002294{
2295 LY_ERR ret = LY_SUCCESS;
2296 const char *temp_prefix, *temp_name;
2297 char *out = NULL;
David Sedlákf250ecf2019-07-01 11:02:05 +02002298 size_t out_len, temp_name_len, temp_prefix_len;
David Sedlákb1a78352019-06-28 16:16:29 +02002299 int dynamic;
2300 struct yin_arg_record *subelem_args = NULL;
2301 struct lysp_stmt *last = NULL, *new = NULL;
2302
2303 /* allocate new structure for element */
2304 *element = calloc(1, sizeof(**element));
David Sedlákda8ffa32019-07-08 14:17:10 +02002305 (*element)->stmt = lydict_insert(ctx->xml_ctx.ctx, name, name_len);
2306 LY_CHECK_ERR_RET(!(*element)->stmt, LOGMEM(ctx->xml_ctx.ctx), LY_EMEM);
David Sedlákb1a78352019-06-28 16:16:29 +02002307
2308 last = (*element)->child;
David Sedlákf250ecf2019-07-01 11:02:05 +02002309 /* load attributes */
David Sedlákda8ffa32019-07-08 14:17:10 +02002310 while(ctx->xml_ctx.status == LYXML_ATTRIBUTE) {
David Sedlákb1a78352019-06-28 16:16:29 +02002311 /* add new element to linked-list */
2312 new = calloc(1, sizeof(*last));
David Sedlákda8ffa32019-07-08 14:17:10 +02002313 LY_CHECK_ERR_GOTO(ret, LOGMEM(ctx->xml_ctx.ctx), err);
David Sedlákb1a78352019-06-28 16:16:29 +02002314 if (!(*element)->child) {
2315 /* save first */
2316 (*element)->child = new;
2317 } else {
2318 last->next = new;
2319 }
2320 last = new;
2321
2322 last->flags |= LYS_YIN_ATTR;
David Sedlákda8ffa32019-07-08 14:17:10 +02002323 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 +02002324 LY_CHECK_GOTO(ret, err);
David Sedlákda8ffa32019-07-08 14:17:10 +02002325 ret = lyxml_get_string(&ctx->xml_ctx, data, &out, &out_len, &out, &out_len, &dynamic);
David Sedlákb1a78352019-06-28 16:16:29 +02002326 LY_CHECK_GOTO(ret, err);
David Sedlákda8ffa32019-07-08 14:17:10 +02002327 last->stmt = lydict_insert(ctx->xml_ctx.ctx, temp_name, temp_name_len);
2328 LY_CHECK_ERR_GOTO(!last->stmt, LOGMEM(ctx->xml_ctx.ctx); ret = LY_EMEM, err);
David Sedlákb1a78352019-06-28 16:16:29 +02002329 /* attributes with prefix are ignored */
2330 if (!temp_prefix) {
2331 if (dynamic) {
David Sedlákda8ffa32019-07-08 14:17:10 +02002332 last->arg = lydict_insert_zc(ctx->xml_ctx.ctx, out);
David Sedlákb1a78352019-06-28 16:16:29 +02002333 if (!last->arg) {
2334 free(out);
David Sedlákda8ffa32019-07-08 14:17:10 +02002335 LOGMEM(ctx->xml_ctx.ctx);
David Sedlákb1a78352019-06-28 16:16:29 +02002336 ret = LY_EMEM;
2337 goto err;
2338 }
2339 } else {
David Sedlákda8ffa32019-07-08 14:17:10 +02002340 last->arg = lydict_insert(ctx->xml_ctx.ctx, out, out_len);
2341 LY_CHECK_ERR_GOTO(!last->arg, LOGMEM(ctx->xml_ctx.ctx); ret = LY_EMEM, err);
David Sedlákb1a78352019-06-28 16:16:29 +02002342 }
2343 }
2344 }
2345
2346 /* parse content of element */
David Sedlákda8ffa32019-07-08 14:17:10 +02002347 ret = lyxml_get_string(&ctx->xml_ctx, data, &out, &out_len, &out, &out_len, &dynamic);
David Sedlákb1a78352019-06-28 16:16:29 +02002348 if (ret == LY_EINVAL) {
David Sedlákda8ffa32019-07-08 14:17:10 +02002349 while (ctx->xml_ctx.status == LYXML_ELEMENT) {
David Sedlákb1a78352019-06-28 16:16:29 +02002350 /* parse subelements */
David Sedlákda8ffa32019-07-08 14:17:10 +02002351 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 +02002352 LY_CHECK_GOTO(ret, err);
2353 if (!name) {
2354 /* end of element reached */
2355 break;
2356 }
David Sedlákda8ffa32019-07-08 14:17:10 +02002357 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 +02002358 LY_CHECK_GOTO(ret, err);
2359 last = last->next;
2360 }
2361 } else {
2362 /* save element content */
David Sedlák5392a212019-07-01 09:19:10 +02002363 if (out_len != 0) {
2364 if (dynamic) {
David Sedlákda8ffa32019-07-08 14:17:10 +02002365 (*element)->arg = lydict_insert_zc(ctx->xml_ctx.ctx, out);
David Sedlák5392a212019-07-01 09:19:10 +02002366 if (!(*element)->arg) {
2367 free(out);
David Sedlákda8ffa32019-07-08 14:17:10 +02002368 LOGMEM(ctx->xml_ctx.ctx);
David Sedlák5392a212019-07-01 09:19:10 +02002369 ret = LY_EMEM;
2370 goto err;
2371 }
2372 } else {
David Sedlákda8ffa32019-07-08 14:17:10 +02002373 (*element)->arg = lydict_insert(ctx->xml_ctx.ctx, out, out_len);
2374 LY_CHECK_ERR_GOTO(!(*element)->arg, LOGMEM(ctx->xml_ctx.ctx); ret = LY_EMEM, err);
David Sedlákb1a78352019-06-28 16:16:29 +02002375 }
David Sedlákb1a78352019-06-28 16:16:29 +02002376 }
2377 /* read closing tag */
David Sedlákda8ffa32019-07-08 14:17:10 +02002378 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 +02002379 LY_CHECK_GOTO(ret, err);
2380 }
2381
David Sedlákda8ffa32019-07-08 14:17:10 +02002382 FREE_ARRAY(ctx, subelem_args, free_arg_rec);
David Sedlákb1a78352019-06-28 16:16:29 +02002383 return LY_SUCCESS;
2384
2385err:
David Sedlákda8ffa32019-07-08 14:17:10 +02002386 FREE_ARRAY(ctx, subelem_args, free_arg_rec);
David Sedlák1e2cdd02019-06-27 14:17:43 +02002387 return ret;
2388}
2389
2390LY_ERR
David Sedlák1f90d252019-07-10 17:09:32 +02002391yin_parse_argument_element(struct yin_parser_ctx *ctx, struct yin_arg_record *attrs, const char **data,
David Sedlák3ffbc522019-07-02 17:49:28 +02002392 struct yin_argument_meta *arg_meta, struct lysp_ext_instance **exts)
David Sedlák9494eb22019-06-21 16:06:53 +02002393{
David Sedlák968ac342019-07-11 15:17:59 +02002394 struct yin_subelement subelems[2] = {
2395 {YANG_YIN_ELEMENT, arg_meta->flags, YIN_SUBELEM_UNIQUE},
2396 {YANG_CUSTOM, NULL, 0}
2397 };
David Sedlák9494eb22019-06-21 16:06:53 +02002398
David Sedlák292763b2019-07-09 11:10:53 +02002399 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 +02002400
David Sedlákda8ffa32019-07-08 14:17:10 +02002401 return yin_parse_content(ctx, subelems, 2, data, YANG_ARGUMENT, NULL, exts);
David Sedlák9494eb22019-06-21 16:06:53 +02002402}
2403
2404LY_ERR
David Sedlák1f90d252019-07-10 17:09:32 +02002405yin_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 +02002406{
David Sedlák11900c82019-06-18 16:29:12 +02002407 struct lysp_ext *ex;
David Sedlákda8ffa32019-07-08 14:17:10 +02002408 LY_ARRAY_NEW_RET(ctx->xml_ctx.ctx, *extensions, ex, LY_EMEM);
David Sedlák292763b2019-07-09 11:10:53 +02002409 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 +02002410
David Sedlák3ffbc522019-07-02 17:49:28 +02002411 struct yin_argument_meta arg_info = {&ex->flags, &ex->argument};
David Sedlák968ac342019-07-11 15:17:59 +02002412 struct yin_subelement subelems[5] = {
2413 {YANG_ARGUMENT, &arg_info, YIN_SUBELEM_UNIQUE},
2414 {YANG_DESCRIPTION, &ex->dsc, YIN_SUBELEM_UNIQUE},
2415 {YANG_REFERENCE, &ex->ref, YIN_SUBELEM_UNIQUE},
2416 {YANG_STATUS, &ex->flags, YIN_SUBELEM_UNIQUE},
2417 {YANG_CUSTOM, NULL, 0}
2418 };
David Sedlák11900c82019-06-18 16:29:12 +02002419
David Sedlákda8ffa32019-07-08 14:17:10 +02002420 return yin_parse_content(ctx, subelems, 5, data, YANG_EXTENSION, NULL, &ex->exts);
David Sedlák11900c82019-06-18 16:29:12 +02002421}
2422
David Sedlák00250342019-06-21 14:19:39 +02002423/**
2424 * @brief Parse module substatements.
2425 *
David Sedlákda8ffa32019-07-08 14:17:10 +02002426 * @param[in,out] ctx Yin parser context for logging and to store current state.
David Sedlákb4e44562019-07-04 15:42:12 +02002427 * @param[in] mod_attrs Attributes of module element.
David Sedlák00250342019-06-21 14:19:39 +02002428 * @param[in,out] data Data to read from.
2429 * @param[out] mod Parsed module structure.
2430 *
2431 * @return LY_ERR values.
2432 */
David Sedlákda8ffa32019-07-08 14:17:10 +02002433static LY_ERR
David Sedlák1f90d252019-07-10 17:09:32 +02002434yin_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 +02002435{
David Sedlák968ac342019-07-11 15:17:59 +02002436 struct yin_subelement subelems[9] = {
2437 {YANG_CONTACT, &(*mod)->mod->contact, YIN_SUBELEM_UNIQUE},
2438 {YANG_DESCRIPTION, &(*mod)->mod->dsc, YIN_SUBELEM_UNIQUE},
2439 {YANG_EXTENSION, &(*mod)->exts, 0},
2440 {YANG_IMPORT, *mod, 0},
2441 {YANG_NAMESPACE, &(*mod)->mod->ns, YIN_SUBELEM_MANDATORY | YIN_SUBELEM_UNIQUE},
2442 {YANG_ORGANIZATION, &(*mod)->mod->org, YIN_SUBELEM_UNIQUE},
2443 {YANG_PREFIX, &(*mod)->mod->prefix, YIN_SUBELEM_MANDATORY | YIN_SUBELEM_UNIQUE},
2444 {YANG_REFERENCE, &(*mod)->mod->ref, YIN_SUBELEM_UNIQUE},
2445 {YANG_CUSTOM, NULL, 0}
2446 };
David Sedlák3b4db242018-10-19 16:11:01 +02002447
David Sedlák292763b2019-07-09 11:10:53 +02002448 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 +01002449
David Sedlákda8ffa32019-07-08 14:17:10 +02002450 return yin_parse_content(ctx, subelems, 9, data, YANG_MODULE, NULL, &(*mod)->exts);
David Sedlák3b4db242018-10-19 16:11:01 +02002451}
2452
2453LY_ERR
David Sedlák3017da42019-02-15 09:48:04 +01002454yin_parse_module(struct ly_ctx *ctx, const char *data, struct lys_module *mod)
David Sedlák3b4db242018-10-19 16:11:01 +02002455{
David Sedláke4889912018-11-02 09:52:40 +01002456 LY_ERR ret = LY_SUCCESS;
2457 enum yang_keyword kw = YANG_NONE;
David Sedlák3017da42019-02-15 09:48:04 +01002458 struct lysp_module *mod_p = NULL;
2459 const char *prefix, *name;
2460 size_t prefix_len, name_len;
David Sedlákda8ffa32019-07-08 14:17:10 +02002461
David Sedlák1f90d252019-07-10 17:09:32 +02002462 struct yin_arg_record *attrs = NULL;
David Sedlák3b4db242018-10-19 16:11:01 +02002463
David Sedlákda8ffa32019-07-08 14:17:10 +02002464 struct yin_parser_ctx yin_ctx;
2465
2466 /* initialize context */
2467 memset(&yin_ctx, 0, sizeof yin_ctx);
2468 yin_ctx.xml_ctx.ctx = ctx;
2469 yin_ctx.xml_ctx.line = 1;
2470
David Sedláke4889912018-11-02 09:52:40 +01002471
David Sedlák3017da42019-02-15 09:48:04 +01002472 /* check submodule */
David Sedlákda8ffa32019-07-08 14:17:10 +02002473 ret = lyxml_get_element(&yin_ctx.xml_ctx, &data, &prefix, &prefix_len, &name, &name_len);
David Sedlák00250342019-06-21 14:19:39 +02002474 LY_CHECK_GOTO(ret, cleanup);
David Sedlák1f90d252019-07-10 17:09:32 +02002475 ret = yin_load_attributes(&yin_ctx, &data, &attrs);
David Sedlák00250342019-06-21 14:19:39 +02002476 LY_CHECK_GOTO(ret, cleanup);
David Sedlákc1771b12019-07-10 15:55:46 +02002477 kw = yin_match_keyword(&yin_ctx, name, name_len, prefix, prefix_len, YANG_NONE);
David Sedláke4889912018-11-02 09:52:40 +01002478 if (kw == YANG_SUBMODULE) {
David Sedlák3017da42019-02-15 09:48:04 +01002479 LOGERR(ctx, LY_EDENIED, "Input data contains submodule which cannot be parsed directly without its main module.");
2480 ret = LY_EINVAL;
2481 goto cleanup;
2482 } else if (kw != YANG_MODULE) {
David Sedlákda8ffa32019-07-08 14:17:10 +02002483 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 +02002484 ly_stmt2str(kw));
David Sedlák3017da42019-02-15 09:48:04 +01002485 ret = LY_EVALID;
2486 goto cleanup;
David Sedláke4889912018-11-02 09:52:40 +01002487 }
2488
David Sedlák3017da42019-02-15 09:48:04 +01002489 /* allocate module */
2490 mod_p = calloc(1, sizeof *mod_p);
2491 LY_CHECK_ERR_GOTO(!mod_p, LOGMEM(ctx), cleanup);
2492 mod_p->mod = mod;
2493 mod_p->parsing = 1;
David Sedláke4889912018-11-02 09:52:40 +01002494
David Sedlák00250342019-06-21 14:19:39 +02002495 /* parse module substatements */
David Sedlák1f90d252019-07-10 17:09:32 +02002496 ret = yin_parse_mod(&yin_ctx, attrs, &data, &mod_p);
David Sedlák3017da42019-02-15 09:48:04 +01002497 LY_CHECK_GOTO(ret, cleanup);
David Sedlák2e411422018-12-17 02:35:39 +01002498
David Sedlák3017da42019-02-15 09:48:04 +01002499 mod_p->parsing = 0;
2500 mod->parsed = mod_p;
2501
2502cleanup:
David Sedlák8f7a1172019-06-20 14:42:18 +02002503 if (ret != LY_SUCCESS) {
David Sedlák3017da42019-02-15 09:48:04 +01002504 lysp_module_free(mod_p);
2505 }
David Sedlák1f90d252019-07-10 17:09:32 +02002506 FREE_ARRAY(&yin_ctx, attrs, free_arg_rec);
David Sedlákda8ffa32019-07-08 14:17:10 +02002507 lyxml_context_clear(&yin_ctx.xml_ctx);
David Sedlák2e411422018-12-17 02:35:39 +01002508 return ret;
David Sedlák3b4db242018-10-19 16:11:01 +02002509}