Radek Krejci | f0e1ba5 | 2020-05-22 15:14:35 +0200 | [diff] [blame] | 1 | /** |
| 2 | * @file printer.c |
| 3 | * @author Radek Krejci <rkrejci@cesnet.cz> |
| 4 | * @brief Generic libyang printers functions. |
| 5 | * |
| 6 | * Copyright (c) 2015 - 2019 CESNET, z.s.p.o. |
| 7 | * |
| 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 |
| 13 | */ |
| 14 | |
| 15 | #define _GNU_SOURCE |
| 16 | |
Radek Krejci | ca376bd | 2020-06-11 16:04:06 +0200 | [diff] [blame] | 17 | #include "parser.h" |
| 18 | |
Radek Krejci | f0e1ba5 | 2020-05-22 15:14:35 +0200 | [diff] [blame] | 19 | #include <errno.h> |
| 20 | #include <fcntl.h> |
| 21 | #include <limits.h> |
| 22 | #include <stdio.h> |
Radek Krejci | ca376bd | 2020-06-11 16:04:06 +0200 | [diff] [blame] | 23 | #include <stdlib.h> |
Radek Krejci | f0e1ba5 | 2020-05-22 15:14:35 +0200 | [diff] [blame] | 24 | #include <string.h> |
Radek Krejci | ca376bd | 2020-06-11 16:04:06 +0200 | [diff] [blame] | 25 | #include <unistd.h> |
Radek Krejci | f0e1ba5 | 2020-05-22 15:14:35 +0200 | [diff] [blame] | 26 | |
Radek Krejci | ca376bd | 2020-06-11 16:04:06 +0200 | [diff] [blame] | 27 | #include "common.h" |
Michal Vasko | 5aa44c0 | 2020-06-29 11:47:02 +0200 | [diff] [blame] | 28 | #include "compat.h" |
Radek Krejci | ca376bd | 2020-06-11 16:04:06 +0200 | [diff] [blame] | 29 | #include "dict.h" |
| 30 | #include "log.h" |
Radek Krejci | 1798aae | 2020-07-14 13:26:06 +0200 | [diff] [blame] | 31 | #include "parser_data.h" |
Radek Krejci | f0e1ba5 | 2020-05-22 15:14:35 +0200 | [diff] [blame] | 32 | #include "parser_internal.h" |
Radek Krejci | 1798aae | 2020-07-14 13:26:06 +0200 | [diff] [blame] | 33 | #include "tree_data_internal.h" |
Radek Krejci | ca376bd | 2020-06-11 16:04:06 +0200 | [diff] [blame] | 34 | #include "tree_schema_internal.h" |
Radek Krejci | f0e1ba5 | 2020-05-22 15:14:35 +0200 | [diff] [blame] | 35 | |
| 36 | API LY_IN_TYPE |
| 37 | ly_in_type(const struct ly_in *in) |
| 38 | { |
| 39 | LY_CHECK_ARG_RET(NULL, in, LY_IN_ERROR); |
| 40 | return in->type; |
| 41 | } |
| 42 | |
| 43 | API LY_ERR |
| 44 | ly_in_new_fd(int fd, struct ly_in **in) |
| 45 | { |
| 46 | size_t length; |
| 47 | char *addr; |
| 48 | |
| 49 | LY_CHECK_ARG_RET(NULL, fd >= 0, in, LY_EINVAL); |
| 50 | |
| 51 | LY_CHECK_RET(ly_mmap(NULL, fd, &length, (void **)&addr)); |
| 52 | if (!addr) { |
| 53 | LOGERR(NULL, LY_EINVAL, "Empty input file."); |
| 54 | return LY_EINVAL; |
| 55 | } |
| 56 | |
| 57 | *in = calloc(1, sizeof **in); |
| 58 | LY_CHECK_ERR_RET(!*in, LOGMEM(NULL); ly_munmap(addr, length), LY_EMEM); |
| 59 | |
| 60 | (*in)->type = LY_IN_FD; |
| 61 | (*in)->method.fd = fd; |
Michal Vasko | 63f3d84 | 2020-07-08 10:10:14 +0200 | [diff] [blame] | 62 | (*in)->current = (*in)->start = (*in)->func_start = addr; |
Radek Krejci | f0e1ba5 | 2020-05-22 15:14:35 +0200 | [diff] [blame] | 63 | (*in)->length = length; |
| 64 | |
| 65 | return LY_SUCCESS; |
| 66 | } |
| 67 | |
| 68 | API int |
| 69 | ly_in_fd(struct ly_in *in, int fd) |
| 70 | { |
| 71 | int prev_fd; |
| 72 | size_t length; |
| 73 | const char *addr; |
| 74 | |
| 75 | LY_CHECK_ARG_RET(NULL, in, in->type == LY_IN_FD, -1); |
| 76 | |
| 77 | prev_fd = in->method.fd; |
| 78 | |
| 79 | if (fd != -1) { |
| 80 | LY_CHECK_RET(ly_mmap(NULL, fd, &length, (void **)&addr), -1); |
| 81 | if (!addr) { |
| 82 | LOGERR(NULL, LY_EINVAL, "Empty input file."); |
| 83 | return -1; |
| 84 | } |
| 85 | |
Michal Vasko | 22df3f0 | 2020-08-24 13:29:22 +0200 | [diff] [blame] | 86 | ly_munmap((char *)in->start, in->length); |
Radek Krejci | f0e1ba5 | 2020-05-22 15:14:35 +0200 | [diff] [blame] | 87 | |
| 88 | in->method.fd = fd; |
| 89 | in->current = in->start = addr; |
| 90 | in->length = length; |
| 91 | } |
| 92 | |
| 93 | return prev_fd; |
| 94 | } |
| 95 | |
| 96 | API LY_ERR |
| 97 | ly_in_new_file(FILE *f, struct ly_in **in) |
| 98 | { |
| 99 | LY_CHECK_ARG_RET(NULL, f, in, LY_EINVAL); |
| 100 | |
| 101 | LY_CHECK_RET(ly_in_new_fd(fileno(f), in)); |
| 102 | |
| 103 | /* convert the LY_IN_FD input handler into the LY_IN_FILE */ |
| 104 | (*in)->type = LY_IN_FILE; |
| 105 | (*in)->method.f = f; |
| 106 | |
| 107 | return LY_SUCCESS; |
| 108 | } |
| 109 | |
| 110 | API FILE * |
| 111 | ly_in_file(struct ly_in *in, FILE *f) |
| 112 | { |
| 113 | FILE *prev_f; |
| 114 | |
| 115 | LY_CHECK_ARG_RET(NULL, in, in->type == LY_IN_FILE, NULL); |
| 116 | |
| 117 | prev_f = in->method.f; |
| 118 | |
| 119 | if (f) { |
| 120 | /* convert LY_IN_FILE handler into LY_IN_FD to be able to update it via ly_in_fd() */ |
| 121 | in->type = LY_IN_FD; |
| 122 | in->method.fd = fileno(prev_f); |
| 123 | if (ly_in_fd(in, fileno(f)) == -1) { |
| 124 | in->type = LY_IN_FILE; |
| 125 | in->method.f = prev_f; |
| 126 | return NULL; |
| 127 | } |
| 128 | |
| 129 | /* if success, convert the result back */ |
| 130 | in->type = LY_IN_FILE; |
| 131 | in->method.f = f; |
| 132 | } |
| 133 | |
| 134 | return prev_f; |
| 135 | } |
| 136 | |
| 137 | API LY_ERR |
| 138 | ly_in_new_memory(const char *str, struct ly_in **in) |
| 139 | { |
| 140 | LY_CHECK_ARG_RET(NULL, str, in, LY_EINVAL); |
| 141 | |
| 142 | *in = calloc(1, sizeof **in); |
| 143 | LY_CHECK_ERR_RET(!*in, LOGMEM(NULL), LY_EMEM); |
| 144 | |
| 145 | (*in)->type = LY_IN_MEMORY; |
Michal Vasko | 63f3d84 | 2020-07-08 10:10:14 +0200 | [diff] [blame] | 146 | (*in)->start = (*in)->current = (*in)->func_start = str; |
Radek Krejci | f0e1ba5 | 2020-05-22 15:14:35 +0200 | [diff] [blame] | 147 | |
| 148 | return LY_SUCCESS; |
| 149 | } |
| 150 | |
Michal Vasko | 63f3d84 | 2020-07-08 10:10:14 +0200 | [diff] [blame] | 151 | API const char * |
Radek Krejci | f0e1ba5 | 2020-05-22 15:14:35 +0200 | [diff] [blame] | 152 | ly_in_memory(struct ly_in *in, const char *str) |
| 153 | { |
| 154 | const char *data; |
| 155 | |
| 156 | LY_CHECK_ARG_RET(NULL, in, in->type == LY_IN_MEMORY, NULL); |
| 157 | |
| 158 | data = in->current; |
| 159 | |
| 160 | if (str) { |
| 161 | in->start = in->current = str; |
| 162 | } |
| 163 | |
| 164 | return data; |
| 165 | } |
| 166 | |
| 167 | API LY_ERR |
| 168 | ly_in_reset(struct ly_in *in) |
| 169 | { |
| 170 | LY_CHECK_ARG_RET(NULL, in, LY_EINVAL); |
| 171 | |
Michal Vasko | 63f3d84 | 2020-07-08 10:10:14 +0200 | [diff] [blame] | 172 | in->current = in->func_start = in->start; |
Radek Krejci | f0e1ba5 | 2020-05-22 15:14:35 +0200 | [diff] [blame] | 173 | return LY_SUCCESS; |
| 174 | } |
| 175 | |
| 176 | API LY_ERR |
| 177 | ly_in_new_filepath(const char *filepath, size_t len, struct ly_in **in) |
| 178 | { |
Radek Krejci | 0f96988 | 2020-08-21 16:56:47 +0200 | [diff] [blame] | 179 | LY_ERR ret; |
Radek Krejci | f0e1ba5 | 2020-05-22 15:14:35 +0200 | [diff] [blame] | 180 | char *fp; |
| 181 | int fd; |
| 182 | |
| 183 | LY_CHECK_ARG_RET(NULL, filepath, in, LY_EINVAL); |
| 184 | |
| 185 | if (len) { |
| 186 | fp = strndup(filepath, len); |
| 187 | } else { |
| 188 | fp = strdup(filepath); |
| 189 | } |
| 190 | |
| 191 | fd = open(fp, O_RDONLY); |
Michal Vasko | f2eb8af | 2020-07-14 12:22:40 +0200 | [diff] [blame] | 192 | LY_CHECK_ERR_RET(fd == -1, LOGERR(NULL, LY_ESYS, "Failed to open file \"%s\" (%s).", fp, strerror(errno)); free(fp), |
| 193 | LY_ESYS); |
Radek Krejci | f0e1ba5 | 2020-05-22 15:14:35 +0200 | [diff] [blame] | 194 | |
| 195 | LY_CHECK_ERR_RET(ret = ly_in_new_fd(fd, in), free(fp), ret); |
| 196 | |
| 197 | /* convert the LY_IN_FD input handler into the LY_IN_FILE */ |
| 198 | (*in)->type = LY_IN_FILEPATH; |
| 199 | (*in)->method.fpath.fd = fd; |
| 200 | (*in)->method.fpath.filepath = fp; |
| 201 | |
| 202 | return LY_SUCCESS; |
| 203 | } |
| 204 | |
| 205 | API const char * |
| 206 | ly_in_filepath(struct ly_in *in, const char *filepath, size_t len) |
| 207 | { |
| 208 | int fd, prev_fd; |
| 209 | char *fp = NULL; |
| 210 | |
| 211 | LY_CHECK_ARG_RET(NULL, in, in->type == LY_IN_FILEPATH, filepath ? NULL : ((void *)-1)); |
| 212 | |
| 213 | if (!filepath) { |
| 214 | return in->method.fpath.filepath; |
| 215 | } |
| 216 | |
| 217 | if (len) { |
| 218 | fp = strndup(filepath, len); |
| 219 | } else { |
| 220 | fp = strdup(filepath); |
| 221 | } |
| 222 | |
| 223 | /* replace filepath */ |
| 224 | fd = open(fp, O_RDONLY); |
| 225 | LY_CHECK_ERR_RET(!fd, LOGERR(NULL, LY_ESYS, "Failed to open file \"%s\" (%s).", fp, strerror(errno)); free(fp), NULL); |
| 226 | |
| 227 | /* convert LY_IN_FILEPATH handler into LY_IN_FD to be able to update it via ly_in_fd() */ |
| 228 | in->type = LY_IN_FD; |
| 229 | prev_fd = ly_in_fd(in, fd); |
| 230 | LY_CHECK_ERR_RET(prev_fd == -1, in->type = LY_IN_FILEPATH; free(fp), NULL); |
| 231 | |
| 232 | /* and convert the result back */ |
| 233 | in->type = LY_IN_FILEPATH; |
| 234 | close(prev_fd); |
| 235 | free(in->method.fpath.filepath); |
| 236 | in->method.fpath.fd = fd; |
| 237 | in->method.fpath.filepath = fp; |
| 238 | |
| 239 | return NULL; |
| 240 | } |
| 241 | |
| 242 | void |
| 243 | lys_parser_fill_filepath(struct ly_ctx *ctx, struct ly_in *in, const char **filepath) |
| 244 | { |
| 245 | char path[PATH_MAX]; |
Michal Vasko | 5aa44c0 | 2020-06-29 11:47:02 +0200 | [diff] [blame] | 246 | #ifndef __APPLE__ |
Radek Krejci | f0e1ba5 | 2020-05-22 15:14:35 +0200 | [diff] [blame] | 247 | char proc_path[32]; |
| 248 | int len; |
Michal Vasko | 5aa44c0 | 2020-06-29 11:47:02 +0200 | [diff] [blame] | 249 | #endif |
Radek Krejci | f0e1ba5 | 2020-05-22 15:14:35 +0200 | [diff] [blame] | 250 | |
| 251 | LY_CHECK_ARG_RET(NULL, ctx, in, filepath, ); |
| 252 | if (*filepath) { |
| 253 | /* filepath already set */ |
| 254 | return; |
| 255 | } |
| 256 | |
| 257 | switch (in->type) { |
| 258 | case LY_IN_FILEPATH: |
| 259 | if (realpath(in->method.fpath.filepath, path) != NULL) { |
| 260 | *filepath = lydict_insert(ctx, path, 0); |
| 261 | } else { |
| 262 | *filepath = lydict_insert(ctx, in->method.fpath.filepath, 0); |
| 263 | } |
| 264 | |
| 265 | break; |
| 266 | case LY_IN_FD: |
| 267 | #ifdef __APPLE__ |
| 268 | if (fcntl(in->method.fd, F_GETPATH, path) != -1) { |
| 269 | *filepath = lydict_insert(ctx, path, 0); |
| 270 | } |
| 271 | #else |
| 272 | /* get URI if there is /proc */ |
| 273 | sprintf(proc_path, "/proc/self/fd/%d", in->method.fd); |
| 274 | if ((len = readlink(proc_path, path, PATH_MAX - 1)) > 0) { |
| 275 | *filepath = lydict_insert(ctx, path, len); |
| 276 | } |
| 277 | #endif |
| 278 | break; |
| 279 | case LY_IN_MEMORY: |
| 280 | case LY_IN_FILE: |
| 281 | /* nothing to do */ |
| 282 | break; |
| 283 | default: |
| 284 | LOGINT(ctx); |
| 285 | break; |
| 286 | } |
| 287 | |
| 288 | } |
| 289 | |
| 290 | API void |
Radek Krejci | 1deb5be | 2020-08-26 16:43:36 +0200 | [diff] [blame] | 291 | ly_in_free(struct ly_in *in, uint8_t destroy) |
Radek Krejci | f0e1ba5 | 2020-05-22 15:14:35 +0200 | [diff] [blame] | 292 | { |
| 293 | if (!in) { |
| 294 | return; |
| 295 | } else if (in->type == LY_IN_ERROR) { |
| 296 | LOGINT(NULL); |
| 297 | return; |
| 298 | } |
| 299 | |
| 300 | if (destroy) { |
| 301 | if (in->type == LY_IN_MEMORY) { |
Michal Vasko | 22df3f0 | 2020-08-24 13:29:22 +0200 | [diff] [blame] | 302 | free((char *)in->start); |
Radek Krejci | f0e1ba5 | 2020-05-22 15:14:35 +0200 | [diff] [blame] | 303 | } else { |
Michal Vasko | 22df3f0 | 2020-08-24 13:29:22 +0200 | [diff] [blame] | 304 | ly_munmap((char *)in->start, in->length); |
Radek Krejci | f0e1ba5 | 2020-05-22 15:14:35 +0200 | [diff] [blame] | 305 | |
| 306 | if (in->type == LY_IN_FILE) { |
| 307 | fclose(in->method.f); |
| 308 | } else { |
| 309 | close(in->method.fd); |
| 310 | |
| 311 | if (in->type == LY_IN_FILEPATH) { |
| 312 | free(in->method.fpath.filepath); |
| 313 | } |
| 314 | } |
| 315 | } |
| 316 | } else if (in->type != LY_IN_MEMORY) { |
Michal Vasko | 22df3f0 | 2020-08-24 13:29:22 +0200 | [diff] [blame] | 317 | ly_munmap((char *)in->start, in->length); |
Radek Krejci | f0e1ba5 | 2020-05-22 15:14:35 +0200 | [diff] [blame] | 318 | |
| 319 | if (in->type == LY_IN_FILEPATH) { |
| 320 | close(in->method.fpath.fd); |
| 321 | free(in->method.fpath.filepath); |
| 322 | } |
| 323 | } |
| 324 | |
| 325 | free(in); |
| 326 | } |
Michal Vasko | 63f3d84 | 2020-07-08 10:10:14 +0200 | [diff] [blame] | 327 | |
| 328 | LY_ERR |
| 329 | ly_in_read(struct ly_in *in, void *buf, size_t count) |
| 330 | { |
| 331 | if (in->length && (in->length - (in->current - in->start) < count)) { |
| 332 | /* EOF */ |
| 333 | return LY_EDENIED; |
| 334 | } |
| 335 | |
| 336 | memcpy(buf, in->current, count); |
| 337 | in->current += count; |
| 338 | return LY_SUCCESS; |
| 339 | } |
| 340 | |
| 341 | API size_t |
| 342 | ly_in_parsed(const struct ly_in *in) |
| 343 | { |
| 344 | return in->current - in->func_start; |
| 345 | } |
| 346 | |
| 347 | LY_ERR |
| 348 | ly_in_skip(struct ly_in *in, size_t count) |
| 349 | { |
| 350 | if (in->length && (in->length - (in->current - in->start) < count)) { |
| 351 | /* EOF */ |
| 352 | return LY_EDENIED; |
| 353 | } |
| 354 | |
| 355 | in->current += count; |
| 356 | return LY_SUCCESS; |
| 357 | } |
Radek Krejci | 1798aae | 2020-07-14 13:26:06 +0200 | [diff] [blame] | 358 | |
| 359 | void |
| 360 | lyd_ctx_free(struct lyd_ctx *lydctx) |
| 361 | { |
| 362 | ly_set_erase(&lydctx->unres_node_type, NULL); |
| 363 | ly_set_erase(&lydctx->unres_meta_type, NULL); |
| 364 | ly_set_erase(&lydctx->when_check, NULL); |
| 365 | } |
| 366 | |
| 367 | LY_ERR |
| 368 | lyd_parser_check_schema(struct lyd_ctx *lydctx, const struct lysc_node *snode) |
| 369 | { |
| 370 | /* alternatively, we could provide line for the error messages, but it doesn't work for the LYB format */ |
| 371 | |
| 372 | if ((lydctx->parse_options & LYD_PARSE_NO_STATE) && (snode->flags & LYS_CONFIG_R)) { |
| 373 | LOGVAL(lydctx->data_ctx->ctx, LY_VLOG_LYSC, snode, LY_VCODE_INNODE, "state", snode->name); |
| 374 | return LY_EVALID; |
| 375 | } |
| 376 | |
| 377 | if (snode->nodetype & (LYS_RPC | LYS_ACTION)) { |
| 378 | if (lydctx->int_opts & LYD_INTOPT_RPC) { |
| 379 | if (lydctx->op_node) { |
| 380 | LOGVAL(lydctx->data_ctx->ctx, LY_VLOG_LYSC, snode, LYVE_DATA, "Unexpected %s element \"%s\", %s \"%s\" already parsed.", |
| 381 | lys_nodetype2str(snode->nodetype), snode->name, |
| 382 | lys_nodetype2str(lydctx->op_node->schema->nodetype), lydctx->op_node->schema->name); |
| 383 | return LY_EVALID; |
| 384 | } |
| 385 | } else { |
| 386 | LOGVAL(lydctx->data_ctx->ctx, LY_VLOG_LYSC, snode, LYVE_DATA, "Unexpected %s element \"%s\".", |
| 387 | lys_nodetype2str(snode->nodetype), snode->name); |
| 388 | return LY_EVALID; |
| 389 | } |
| 390 | } else if (snode->nodetype == LYS_NOTIF) { |
| 391 | if (lydctx->int_opts & LYD_INTOPT_NOTIF) { |
| 392 | if (lydctx->op_node) { |
| 393 | LOGVAL(lydctx->data_ctx->ctx, LY_VLOG_LYSC, snode, LYVE_DATA, "Unexpected %s element \"%s\", %s \"%s\" already parsed.", |
| 394 | lys_nodetype2str(snode->nodetype), snode->name, |
| 395 | lys_nodetype2str(lydctx->op_node->schema->nodetype), lydctx->op_node->schema->name); |
| 396 | return LY_EVALID; |
| 397 | } |
| 398 | } else { |
| 399 | LOGVAL(lydctx->data_ctx->ctx, LY_VLOG_LYSC, snode, LYVE_DATA, "Unexpected %s element \"%s\".", |
| 400 | lys_nodetype2str(snode->nodetype), snode->name); |
| 401 | return LY_EVALID; |
| 402 | } |
| 403 | } |
| 404 | |
| 405 | return LY_SUCCESS; |
| 406 | } |
| 407 | |
| 408 | LY_ERR |
| 409 | lyd_parser_create_term(struct lyd_ctx *lydctx, const struct lysc_node *schema, const char *value, size_t value_len, |
Radek Krejci | 1deb5be | 2020-08-26 16:43:36 +0200 | [diff] [blame] | 410 | uint8_t *dynamic, uint32_t value_hints, LY_PREFIX_FORMAT format, void *prefix_data, struct lyd_node **node) |
Radek Krejci | 1798aae | 2020-07-14 13:26:06 +0200 | [diff] [blame] | 411 | { |
| 412 | LY_ERR ret; |
| 413 | |
Michal Vasko | c8a230d | 2020-08-14 12:17:10 +0200 | [diff] [blame] | 414 | ret = lyd_create_term(schema, value, value_len, dynamic, value_hints, format, prefix_data, node); |
Radek Krejci | 1798aae | 2020-07-14 13:26:06 +0200 | [diff] [blame] | 415 | if (ret == LY_EINCOMPLETE) { |
| 416 | if (!(lydctx->parse_options & LYD_PARSE_ONLY)) { |
Radek Krejci | ba03a5a | 2020-08-27 14:40:41 +0200 | [diff] [blame] | 417 | LY_CHECK_RET(ly_set_add(&lydctx->unres_node_type, *node, LY_SET_OPT_USEASLIST, NULL)); |
Radek Krejci | 1798aae | 2020-07-14 13:26:06 +0200 | [diff] [blame] | 418 | } |
| 419 | ret = LY_SUCCESS; |
| 420 | } |
| 421 | return ret; |
| 422 | } |
| 423 | |
| 424 | LY_ERR |
| 425 | lyd_parser_create_meta(struct lyd_ctx *lydctx, struct lyd_node *parent, struct lyd_meta **meta, const struct lys_module *mod, |
Radek Krejci | 1deb5be | 2020-08-26 16:43:36 +0200 | [diff] [blame] | 426 | const char *name, size_t name_len, const char *value, size_t value_len, uint8_t *dynamic, uint32_t value_hints, |
Radek Krejci | 0f96988 | 2020-08-21 16:56:47 +0200 | [diff] [blame] | 427 | LY_PREFIX_FORMAT format, void *prefix_data, const struct lysc_node *ctx_snode) |
Radek Krejci | 1798aae | 2020-07-14 13:26:06 +0200 | [diff] [blame] | 428 | { |
| 429 | LY_ERR ret; |
Michal Vasko | c8a230d | 2020-08-14 12:17:10 +0200 | [diff] [blame] | 430 | ret = lyd_create_meta(parent, meta, mod, name, name_len, value, value_len, dynamic, value_hints, format, prefix_data, |
| 431 | ctx_snode); |
Radek Krejci | 1798aae | 2020-07-14 13:26:06 +0200 | [diff] [blame] | 432 | if (ret == LY_EINCOMPLETE) { |
Radek Krejci | ba03a5a | 2020-08-27 14:40:41 +0200 | [diff] [blame] | 433 | LY_CHECK_RET(ly_set_add(&lydctx->unres_meta_type, *meta, LY_SET_OPT_USEASLIST, NULL)); |
Radek Krejci | 1798aae | 2020-07-14 13:26:06 +0200 | [diff] [blame] | 434 | ret = LY_SUCCESS; |
| 435 | } |
| 436 | return ret; |
| 437 | } |