Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 1 | /** |
| 2 | * @file tree_schema.c |
| 3 | * @author Radek Krejci <rkrejci@cesnet.cz> |
| 4 | * @brief Schema tree implementation |
| 5 | * |
| 6 | * Copyright (c) 2015 - 2018 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 | |
Radek Krejci | 535ea9f | 2020-05-29 16:01:05 +0200 | [diff] [blame] | 15 | #define _GNU_SOURCE |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 16 | |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 17 | #include <assert.h> |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 18 | #include <ctype.h> |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 19 | #include <stddef.h> |
| 20 | #include <stdint.h> |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 21 | #include <stdio.h> |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 22 | #include <stdlib.h> |
| 23 | #include <string.h> |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 24 | |
Radek Krejci | 535ea9f | 2020-05-29 16:01:05 +0200 | [diff] [blame] | 25 | #include "common.h" |
Michal Vasko | 5aa44c0 | 2020-06-29 11:47:02 +0200 | [diff] [blame] | 26 | #include "compat.h" |
Radek Krejci | 535ea9f | 2020-05-29 16:01:05 +0200 | [diff] [blame] | 27 | #include "context.h" |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 28 | #include "dict.h" |
| 29 | #include "log.h" |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 30 | #include "path.h" |
Radek Krejci | f0e1ba5 | 2020-05-22 15:14:35 +0200 | [diff] [blame] | 31 | #include "parser.h" |
Radek Krejci | ca376bd | 2020-06-11 16:04:06 +0200 | [diff] [blame] | 32 | #include "parser_schema.h" |
Radek Krejci | 0935f41 | 2019-08-20 16:15:18 +0200 | [diff] [blame] | 33 | #include "plugins_exts.h" |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 34 | #include "plugins_types.h" |
Radek Krejci | 0935f41 | 2019-08-20 16:15:18 +0200 | [diff] [blame] | 35 | #include "plugins_exts_internal.h" |
Radek Krejci | 535ea9f | 2020-05-29 16:01:05 +0200 | [diff] [blame] | 36 | #include "set.h" |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 37 | #include "tree.h" |
Radek Krejci | 535ea9f | 2020-05-29 16:01:05 +0200 | [diff] [blame] | 38 | #include "tree_data.h" |
Michal Vasko | 7c8439f | 2020-08-05 13:25:19 +0200 | [diff] [blame] | 39 | #include "tree_data_internal.h" |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 40 | #include "tree_schema.h" |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 41 | #include "tree_schema_internal.h" |
| 42 | #include "xpath.h" |
| 43 | |
Michal Vasko | 5fe75f1 | 2020-03-02 13:52:37 +0100 | [diff] [blame] | 44 | static LY_ERR lys_compile_ext(struct lysc_ctx *ctx, struct lysp_ext_instance *ext_p, struct lysc_ext_instance *ext, |
Radek Krejci | 0f96988 | 2020-08-21 16:56:47 +0200 | [diff] [blame] | 45 | void *parent, LYEXT_PARENT parent_type, const struct lys_module *ext_mod); |
Michal Vasko | 5fe75f1 | 2020-03-02 13:52:37 +0100 | [diff] [blame] | 46 | |
Michal Vasko | 7f45cf2 | 2020-10-01 12:49:44 +0200 | [diff] [blame] | 47 | static LY_ERR lysp_qname_dup(const struct ly_ctx *ctx, struct lysp_qname *qname, const struct lysp_qname *orig_qname); |
| 48 | |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 49 | /** |
| 50 | * @brief Duplicate string into dictionary |
| 51 | * @param[in] CTX libyang context of the dictionary. |
| 52 | * @param[in] ORIG String to duplicate. |
| 53 | * @param[out] DUP Where to store the result. |
| 54 | */ |
Radek Krejci | 011e4aa | 2020-09-04 15:22:31 +0200 | [diff] [blame] | 55 | #define DUP_STRING(CTX, ORIG, DUP, RET) if (ORIG) {RET = lydict_insert(CTX, ORIG, 0, &DUP);} |
| 56 | |
| 57 | #define DUP_STRING_GOTO(CTX, ORIG, DUP, RET, GOTO) if (ORIG) {LY_CHECK_GOTO(RET = lydict_insert(CTX, ORIG, 0, &DUP), GOTO);} |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 58 | |
Michal Vasko | 7f45cf2 | 2020-10-01 12:49:44 +0200 | [diff] [blame] | 59 | #define DUP_ARRAY(CTX, ORIG_ARRAY, NEW_ARRAY, DUP_FUNC) \ |
| 60 | if (ORIG_ARRAY) { \ |
| 61 | LY_ARRAY_COUNT_TYPE u; \ |
| 62 | LY_ARRAY_CREATE_RET(CTX, NEW_ARRAY, LY_ARRAY_COUNT(ORIG_ARRAY), LY_EMEM); \ |
| 63 | LY_ARRAY_FOR(ORIG_ARRAY, u) { \ |
| 64 | LY_ARRAY_INCREMENT(NEW_ARRAY); \ |
| 65 | LY_CHECK_RET(DUP_FUNC(CTX, &(NEW_ARRAY)[u], &(ORIG_ARRAY)[u])); \ |
| 66 | } \ |
| 67 | } |
| 68 | |
Radek Krejci | ec4da80 | 2019-05-02 13:02:41 +0200 | [diff] [blame] | 69 | #define COMPILE_ARRAY_GOTO(CTX, ARRAY_P, ARRAY_C, ITER, FUNC, RET, GOTO) \ |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 70 | if (ARRAY_P) { \ |
Michal Vasko | fd69e1d | 2020-07-03 11:57:17 +0200 | [diff] [blame] | 71 | LY_ARRAY_CREATE_GOTO((CTX)->ctx, ARRAY_C, LY_ARRAY_COUNT(ARRAY_P), RET, GOTO); \ |
| 72 | LY_ARRAY_COUNT_TYPE __array_offset = LY_ARRAY_COUNT(ARRAY_C); \ |
| 73 | for (ITER = 0; ITER < LY_ARRAY_COUNT(ARRAY_P); ++ITER) { \ |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 74 | LY_ARRAY_INCREMENT(ARRAY_C); \ |
Radek Krejci | ec4da80 | 2019-05-02 13:02:41 +0200 | [diff] [blame] | 75 | RET = FUNC(CTX, &(ARRAY_P)[ITER], &(ARRAY_C)[ITER + __array_offset]); \ |
Radek Krejci | d05cbd9 | 2018-12-05 14:26:40 +0100 | [diff] [blame] | 76 | LY_CHECK_GOTO(RET != LY_SUCCESS, GOTO); \ |
| 77 | } \ |
| 78 | } |
| 79 | |
Michal Vasko | 7f45cf2 | 2020-10-01 12:49:44 +0200 | [diff] [blame] | 80 | #define COMPILE_OP_ARRAY_GOTO(CTX, ARRAY_P, ARRAY_C, PARENT, ITER, FUNC, USES_STATUS, RET, GOTO) \ |
Radek Krejci | 6eeb58f | 2019-02-22 16:29:37 +0100 | [diff] [blame] | 81 | if (ARRAY_P) { \ |
Michal Vasko | fd69e1d | 2020-07-03 11:57:17 +0200 | [diff] [blame] | 82 | LY_ARRAY_CREATE_GOTO((CTX)->ctx, ARRAY_C, LY_ARRAY_COUNT(ARRAY_P), RET, GOTO); \ |
| 83 | LY_ARRAY_COUNT_TYPE __array_offset = LY_ARRAY_COUNT(ARRAY_C); \ |
| 84 | for (ITER = 0; ITER < LY_ARRAY_COUNT(ARRAY_P); ++ITER) { \ |
Radek Krejci | 6eeb58f | 2019-02-22 16:29:37 +0100 | [diff] [blame] | 85 | LY_ARRAY_INCREMENT(ARRAY_C); \ |
Radek Krejci | ec4da80 | 2019-05-02 13:02:41 +0200 | [diff] [blame] | 86 | RET = FUNC(CTX, &(ARRAY_P)[ITER], PARENT, &(ARRAY_C)[ITER + __array_offset], USES_STATUS); \ |
Michal Vasko | 7f45cf2 | 2020-10-01 12:49:44 +0200 | [diff] [blame] | 87 | if (RET == LY_EDENIED) { \ |
| 88 | LY_ARRAY_DECREMENT(ARRAY_C); \ |
| 89 | } else if (RET != LY_SUCCESS) { \ |
| 90 | goto GOTO; \ |
| 91 | } \ |
Radek Krejci | 6eeb58f | 2019-02-22 16:29:37 +0100 | [diff] [blame] | 92 | } \ |
| 93 | } |
| 94 | |
Radek Krejci | 0935f41 | 2019-08-20 16:15:18 +0200 | [diff] [blame] | 95 | #define COMPILE_EXTS_GOTO(CTX, EXTS_P, EXT_C, PARENT, PARENT_TYPE, RET, GOTO) \ |
| 96 | if (EXTS_P) { \ |
Michal Vasko | fd69e1d | 2020-07-03 11:57:17 +0200 | [diff] [blame] | 97 | LY_ARRAY_CREATE_GOTO((CTX)->ctx, EXT_C, LY_ARRAY_COUNT(EXTS_P), RET, GOTO); \ |
| 98 | for (LY_ARRAY_COUNT_TYPE __exts_iter = 0, __array_offset = LY_ARRAY_COUNT(EXT_C); __exts_iter < LY_ARRAY_COUNT(EXTS_P); ++__exts_iter) { \ |
Radek Krejci | 0935f41 | 2019-08-20 16:15:18 +0200 | [diff] [blame] | 99 | LY_ARRAY_INCREMENT(EXT_C); \ |
Michal Vasko | 8d54425 | 2020-03-02 10:19:52 +0100 | [diff] [blame] | 100 | RET = lys_compile_ext(CTX, &(EXTS_P)[__exts_iter], &(EXT_C)[__exts_iter + __array_offset], PARENT, PARENT_TYPE, NULL); \ |
Radek Krejci | 0935f41 | 2019-08-20 16:15:18 +0200 | [diff] [blame] | 101 | LY_CHECK_GOTO(RET != LY_SUCCESS, GOTO); \ |
| 102 | } \ |
| 103 | } |
| 104 | |
Radek Krejci | ec4da80 | 2019-05-02 13:02:41 +0200 | [diff] [blame] | 105 | #define COMPILE_ARRAY_UNIQUE_GOTO(CTX, ARRAY_P, ARRAY_C, ITER, FUNC, RET, GOTO) \ |
Radek Krejci | d05cbd9 | 2018-12-05 14:26:40 +0100 | [diff] [blame] | 106 | if (ARRAY_P) { \ |
Michal Vasko | fd69e1d | 2020-07-03 11:57:17 +0200 | [diff] [blame] | 107 | LY_ARRAY_CREATE_GOTO((CTX)->ctx, ARRAY_C, LY_ARRAY_COUNT(ARRAY_P), RET, GOTO); \ |
| 108 | LY_ARRAY_COUNT_TYPE __array_offset = LY_ARRAY_COUNT(ARRAY_C); \ |
| 109 | for (ITER = 0; ITER < LY_ARRAY_COUNT(ARRAY_P); ++ITER) { \ |
Radek Krejci | d05cbd9 | 2018-12-05 14:26:40 +0100 | [diff] [blame] | 110 | LY_ARRAY_INCREMENT(ARRAY_C); \ |
Radek Krejci | ec4da80 | 2019-05-02 13:02:41 +0200 | [diff] [blame] | 111 | RET = FUNC(CTX, &(ARRAY_P)[ITER], ARRAY_C, &(ARRAY_C)[ITER + __array_offset]); \ |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 112 | LY_CHECK_GOTO(RET != LY_SUCCESS, GOTO); \ |
| 113 | } \ |
| 114 | } |
| 115 | |
Radek Krejci | ec4da80 | 2019-05-02 13:02:41 +0200 | [diff] [blame] | 116 | #define COMPILE_MEMBER_GOTO(CTX, MEMBER_P, MEMBER_C, FUNC, RET, GOTO) \ |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 117 | if (MEMBER_P) { \ |
| 118 | MEMBER_C = calloc(1, sizeof *(MEMBER_C)); \ |
| 119 | LY_CHECK_ERR_GOTO(!(MEMBER_C), LOGMEM((CTX)->ctx); RET = LY_EMEM, GOTO); \ |
Radek Krejci | ec4da80 | 2019-05-02 13:02:41 +0200 | [diff] [blame] | 120 | RET = FUNC(CTX, MEMBER_P, MEMBER_C); \ |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 121 | LY_CHECK_GOTO(RET != LY_SUCCESS, GOTO); \ |
| 122 | } |
| 123 | |
Radek Krejci | ec4da80 | 2019-05-02 13:02:41 +0200 | [diff] [blame] | 124 | #define COMPILE_MEMBER_ARRAY_GOTO(CTX, MEMBER_P, ARRAY_C, FUNC, RET, GOTO) \ |
Radek Krejci | 00b874b | 2019-02-12 10:54:50 +0100 | [diff] [blame] | 125 | if (MEMBER_P) { \ |
| 126 | LY_ARRAY_CREATE_GOTO((CTX)->ctx, ARRAY_C, 1, RET, GOTO); \ |
Michal Vasko | fd69e1d | 2020-07-03 11:57:17 +0200 | [diff] [blame] | 127 | LY_ARRAY_COUNT_TYPE __array_offset = LY_ARRAY_COUNT(ARRAY_C); \ |
Radek Krejci | 00b874b | 2019-02-12 10:54:50 +0100 | [diff] [blame] | 128 | LY_ARRAY_INCREMENT(ARRAY_C); \ |
Radek Krejci | ec4da80 | 2019-05-02 13:02:41 +0200 | [diff] [blame] | 129 | RET = FUNC(CTX, MEMBER_P, &(ARRAY_C)[__array_offset]); \ |
Radek Krejci | 00b874b | 2019-02-12 10:54:50 +0100 | [diff] [blame] | 130 | LY_CHECK_GOTO(RET != LY_SUCCESS, GOTO); \ |
| 131 | } |
| 132 | |
Michal Vasko | 6f4cbb6 | 2020-02-28 11:15:47 +0100 | [diff] [blame] | 133 | #define COMPILE_CHECK_UNIQUENESS_ARRAY(CTX, ARRAY, MEMBER, EXCL, STMT, IDENT) \ |
Radek Krejci | d05cbd9 | 2018-12-05 14:26:40 +0100 | [diff] [blame] | 134 | if (ARRAY) { \ |
Michal Vasko | fd69e1d | 2020-07-03 11:57:17 +0200 | [diff] [blame] | 135 | for (LY_ARRAY_COUNT_TYPE u__ = 0; u__ < LY_ARRAY_COUNT(ARRAY); ++u__) { \ |
Radek Krejci | 0af4629 | 2019-01-11 16:02:31 +0100 | [diff] [blame] | 136 | if (&(ARRAY)[u__] != EXCL && (void*)((ARRAY)[u__].MEMBER) == (void*)(IDENT)) { \ |
Radek Krejci | d05cbd9 | 2018-12-05 14:26:40 +0100 | [diff] [blame] | 137 | LOGVAL((CTX)->ctx, LY_VLOG_STR, (CTX)->path, LY_VCODE_DUPIDENT, IDENT, STMT); \ |
| 138 | return LY_EVALID; \ |
| 139 | } \ |
| 140 | } \ |
| 141 | } |
| 142 | |
Michal Vasko | 6f4cbb6 | 2020-02-28 11:15:47 +0100 | [diff] [blame] | 143 | #define COMPILE_CHECK_UNIQUENESS_PARRAY(CTX, ARRAY, MEMBER, EXCL, STMT, IDENT) \ |
| 144 | if (ARRAY) { \ |
Michal Vasko | fd69e1d | 2020-07-03 11:57:17 +0200 | [diff] [blame] | 145 | for (LY_ARRAY_COUNT_TYPE u__ = 0; u__ < LY_ARRAY_COUNT(ARRAY); ++u__) { \ |
Michal Vasko | 6f4cbb6 | 2020-02-28 11:15:47 +0100 | [diff] [blame] | 146 | if (&(ARRAY)[u__] != EXCL && (void*)((ARRAY)[u__]->MEMBER) == (void*)(IDENT)) { \ |
| 147 | LOGVAL((CTX)->ctx, LY_VLOG_STR, (CTX)->path, LY_VCODE_DUPIDENT, IDENT, STMT); \ |
| 148 | return LY_EVALID; \ |
| 149 | } \ |
| 150 | } \ |
| 151 | } |
| 152 | |
| 153 | struct lysc_ext * |
| 154 | lysc_ext_dup(struct lysc_ext *orig) |
| 155 | { |
| 156 | ++orig->refcount; |
| 157 | return orig; |
| 158 | } |
| 159 | |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 160 | static struct lysc_ext_instance * |
| 161 | lysc_ext_instance_dup(struct ly_ctx *ctx, struct lysc_ext_instance *orig) |
| 162 | { |
Michal Vasko | 6f4cbb6 | 2020-02-28 11:15:47 +0100 | [diff] [blame] | 163 | /* TODO - extensions, increase refcount */ |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 164 | (void) ctx; |
| 165 | (void) orig; |
| 166 | return NULL; |
| 167 | } |
| 168 | |
Michal Vasko | 7f45cf2 | 2020-10-01 12:49:44 +0200 | [diff] [blame] | 169 | /** |
| 170 | * @brief Add/replace a leaf default value in unres. |
| 171 | * Can also be used for a single leaf-list default value. |
| 172 | * |
| 173 | * @param[in] ctx Compile context. |
| 174 | * @param[in] leaf Leaf with the default value. |
| 175 | * @param[in] dflt Default value to use. |
| 176 | * @return LY_ERR value. |
| 177 | */ |
Michal Vasko | ba99a3e | 2020-08-18 15:50:05 +0200 | [diff] [blame] | 178 | static LY_ERR |
Michal Vasko | 7f45cf2 | 2020-10-01 12:49:44 +0200 | [diff] [blame] | 179 | lysc_unres_leaf_dflt_add(struct lysc_ctx *ctx, struct lysc_node_leaf *leaf, struct lysp_qname *dflt) |
Michal Vasko | ba99a3e | 2020-08-18 15:50:05 +0200 | [diff] [blame] | 180 | { |
Michal Vasko | 7f45cf2 | 2020-10-01 12:49:44 +0200 | [diff] [blame] | 181 | struct lysc_unres_dflt *r = NULL; |
Michal Vasko | ba99a3e | 2020-08-18 15:50:05 +0200 | [diff] [blame] | 182 | uint32_t i; |
| 183 | |
| 184 | for (i = 0; i < ctx->dflts.count; ++i) { |
Michal Vasko | 7f45cf2 | 2020-10-01 12:49:44 +0200 | [diff] [blame] | 185 | if (((struct lysc_unres_dflt *)ctx->dflts.objs[i])->leaf == leaf) { |
Michal Vasko | ba99a3e | 2020-08-18 15:50:05 +0200 | [diff] [blame] | 186 | /* just replace the default */ |
Michal Vasko | 7f45cf2 | 2020-10-01 12:49:44 +0200 | [diff] [blame] | 187 | r = ctx->dflts.objs[i]; |
| 188 | lysp_qname_free(ctx->ctx, r->dflt); |
| 189 | free(r->dflt); |
| 190 | break; |
Michal Vasko | ba99a3e | 2020-08-18 15:50:05 +0200 | [diff] [blame] | 191 | } |
| 192 | } |
Michal Vasko | 7f45cf2 | 2020-10-01 12:49:44 +0200 | [diff] [blame] | 193 | if (!r) { |
| 194 | /* add new unres item */ |
| 195 | r = calloc(1, sizeof *r); |
| 196 | LY_CHECK_ERR_RET(!r, LOGMEM(ctx->ctx), LY_EMEM); |
| 197 | r->leaf = leaf; |
Michal Vasko | ba99a3e | 2020-08-18 15:50:05 +0200 | [diff] [blame] | 198 | |
Michal Vasko | 7f45cf2 | 2020-10-01 12:49:44 +0200 | [diff] [blame] | 199 | LY_CHECK_RET(ly_set_add(&ctx->dflts, r, LY_SET_OPT_USEASLIST, NULL)); |
| 200 | } |
| 201 | |
| 202 | r->dflt = malloc(sizeof *r->dflt); |
Michal Vasko | af70245 | 2020-10-02 09:02:55 +0200 | [diff] [blame^] | 203 | LY_CHECK_GOTO(!r->dflt, error); |
| 204 | LY_CHECK_GOTO(lysp_qname_dup(ctx->ctx, r->dflt, dflt), error); |
Michal Vasko | ba99a3e | 2020-08-18 15:50:05 +0200 | [diff] [blame] | 205 | |
| 206 | return LY_SUCCESS; |
Michal Vasko | af70245 | 2020-10-02 09:02:55 +0200 | [diff] [blame^] | 207 | |
| 208 | error: |
| 209 | free(r->dflt); |
| 210 | LOGMEM(ctx->ctx); |
| 211 | return LY_EMEM; |
Michal Vasko | ba99a3e | 2020-08-18 15:50:05 +0200 | [diff] [blame] | 212 | } |
| 213 | |
Radek Krejci | b56c750 | 2019-02-13 14:19:54 +0100 | [diff] [blame] | 214 | /** |
Michal Vasko | 7f45cf2 | 2020-10-01 12:49:44 +0200 | [diff] [blame] | 215 | * @brief Add/replace a leaf-list default value(s) in unres. |
| 216 | * |
| 217 | * @param[in] ctx Compile context. |
| 218 | * @param[in] llist Leaf-list with the default value. |
| 219 | * @param[in] dflts Sized array of the default values. |
| 220 | * @return LY_ERR value. |
Radek Krejci | 474f9b8 | 2019-07-24 11:36:37 +0200 | [diff] [blame] | 221 | */ |
| 222 | static LY_ERR |
Michal Vasko | 7f45cf2 | 2020-10-01 12:49:44 +0200 | [diff] [blame] | 223 | lysc_unres_llist_dflts_add(struct lysc_ctx *ctx, struct lysc_node_leaflist *llist, struct lysp_qname *dflts) |
Radek Krejci | 474f9b8 | 2019-07-24 11:36:37 +0200 | [diff] [blame] | 224 | { |
Michal Vasko | 7f45cf2 | 2020-10-01 12:49:44 +0200 | [diff] [blame] | 225 | struct lysc_unres_dflt *r = NULL; |
Michal Vasko | ba99a3e | 2020-08-18 15:50:05 +0200 | [diff] [blame] | 226 | uint32_t i; |
| 227 | |
| 228 | for (i = 0; i < ctx->dflts.count; ++i) { |
Michal Vasko | 7f45cf2 | 2020-10-01 12:49:44 +0200 | [diff] [blame] | 229 | if (((struct lysc_unres_dflt *)ctx->dflts.objs[i])->llist == llist) { |
Michal Vasko | ba99a3e | 2020-08-18 15:50:05 +0200 | [diff] [blame] | 230 | /* just replace the defaults */ |
Michal Vasko | 7f45cf2 | 2020-10-01 12:49:44 +0200 | [diff] [blame] | 231 | r = ctx->dflts.objs[i]; |
| 232 | lysp_qname_free(ctx->ctx, r->dflt); |
| 233 | free(r->dflt); |
| 234 | r->dflt = NULL; |
| 235 | FREE_ARRAY(ctx->ctx, r->dflts, lysp_qname_free); |
| 236 | r->dflts = NULL; |
| 237 | break; |
Michal Vasko | ba99a3e | 2020-08-18 15:50:05 +0200 | [diff] [blame] | 238 | } |
| 239 | } |
Michal Vasko | 7f45cf2 | 2020-10-01 12:49:44 +0200 | [diff] [blame] | 240 | if (!r) { |
| 241 | r = calloc(1, sizeof *r); |
| 242 | LY_CHECK_ERR_RET(!r, LOGMEM(ctx->ctx), LY_EMEM); |
| 243 | r->llist = llist; |
Michal Vasko | ba99a3e | 2020-08-18 15:50:05 +0200 | [diff] [blame] | 244 | |
Michal Vasko | 7f45cf2 | 2020-10-01 12:49:44 +0200 | [diff] [blame] | 245 | LY_CHECK_RET(ly_set_add(&ctx->dflts, r, LY_SET_OPT_USEASLIST, NULL)); |
| 246 | } |
| 247 | |
| 248 | DUP_ARRAY(ctx->ctx, dflts, r->dflts, lysp_qname_dup); |
Radek Krejci | 474f9b8 | 2019-07-24 11:36:37 +0200 | [diff] [blame] | 249 | |
| 250 | return LY_SUCCESS; |
| 251 | } |
| 252 | |
Radek Krejci | 474f9b8 | 2019-07-24 11:36:37 +0200 | [diff] [blame] | 253 | static void |
Michal Vasko | 7f45cf2 | 2020-10-01 12:49:44 +0200 | [diff] [blame] | 254 | lysc_unres_dflt_free(const struct ly_ctx *ctx, struct lysc_unres_dflt *r) |
Radek Krejci | 474f9b8 | 2019-07-24 11:36:37 +0200 | [diff] [blame] | 255 | { |
Michal Vasko | 7f45cf2 | 2020-10-01 12:49:44 +0200 | [diff] [blame] | 256 | assert(!r->dflt || !r->dflts); |
| 257 | if (r->dflt) { |
| 258 | lysp_qname_free((struct ly_ctx *)ctx, r->dflt); |
| 259 | free(r->dflt); |
| 260 | } else { |
| 261 | FREE_ARRAY((struct ly_ctx *)ctx, r->dflts, lysp_qname_free); |
Radek Krejci | 474f9b8 | 2019-07-24 11:36:37 +0200 | [diff] [blame] | 262 | } |
Michal Vasko | 7f45cf2 | 2020-10-01 12:49:44 +0200 | [diff] [blame] | 263 | free(r); |
Radek Krejci | 474f9b8 | 2019-07-24 11:36:37 +0200 | [diff] [blame] | 264 | } |
| 265 | |
Radek Krejci | 0e59c31 | 2019-08-15 15:34:15 +0200 | [diff] [blame] | 266 | void |
Radek Krejci | 327de16 | 2019-06-14 12:52:07 +0200 | [diff] [blame] | 267 | lysc_update_path(struct lysc_ctx *ctx, struct lysc_node *parent, const char *name) |
| 268 | { |
| 269 | int len; |
Radek Krejci | 1deb5be | 2020-08-26 16:43:36 +0200 | [diff] [blame] | 270 | uint8_t nextlevel = 0; /* 0 - no starttag, 1 - '/' starttag, 2 - '=' starttag + '}' endtag */ |
Radek Krejci | 327de16 | 2019-06-14 12:52:07 +0200 | [diff] [blame] | 271 | |
| 272 | if (!name) { |
| 273 | /* removing last path segment */ |
| 274 | if (ctx->path[ctx->path_len - 1] == '}') { |
Michal Vasko | d989ba0 | 2020-08-24 10:59:24 +0200 | [diff] [blame] | 275 | for ( ; ctx->path[ctx->path_len] != '=' && ctx->path[ctx->path_len] != '{'; --ctx->path_len) {} |
Radek Krejci | 327de16 | 2019-06-14 12:52:07 +0200 | [diff] [blame] | 276 | if (ctx->path[ctx->path_len] == '=') { |
| 277 | ctx->path[ctx->path_len++] = '}'; |
| 278 | } else { |
| 279 | /* not a top-level special tag, remove also preceiding '/' */ |
| 280 | goto remove_nodelevel; |
| 281 | } |
| 282 | } else { |
| 283 | remove_nodelevel: |
Michal Vasko | d989ba0 | 2020-08-24 10:59:24 +0200 | [diff] [blame] | 284 | for ( ; ctx->path[ctx->path_len] != '/'; --ctx->path_len) {} |
Radek Krejci | 327de16 | 2019-06-14 12:52:07 +0200 | [diff] [blame] | 285 | if (ctx->path_len == 0) { |
| 286 | /* top-level (last segment) */ |
Radek Krejci | acc7904 | 2019-07-25 14:14:57 +0200 | [diff] [blame] | 287 | ctx->path_len = 1; |
Radek Krejci | 327de16 | 2019-06-14 12:52:07 +0200 | [diff] [blame] | 288 | } |
| 289 | } |
| 290 | /* set new terminating NULL-byte */ |
| 291 | ctx->path[ctx->path_len] = '\0'; |
| 292 | } else { |
| 293 | if (ctx->path_len > 1) { |
| 294 | if (!parent && ctx->path[ctx->path_len - 1] == '}' && ctx->path[ctx->path_len - 2] != '\'') { |
| 295 | /* extension of the special tag */ |
| 296 | nextlevel = 2; |
| 297 | --ctx->path_len; |
| 298 | } else { |
| 299 | /* there is already some path, so add next level */ |
| 300 | nextlevel = 1; |
| 301 | } |
| 302 | } /* else the path is just initiated with '/', so do not add additional slash in case of top-level nodes */ |
| 303 | |
| 304 | if (nextlevel != 2) { |
| 305 | if ((parent && parent->module == ctx->mod) || (!parent && ctx->path_len > 1 && name[0] == '{')) { |
| 306 | /* module not changed, print the name unprefixed */ |
Radek Krejci | 70ee915 | 2019-07-25 11:27:27 +0200 | [diff] [blame] | 307 | len = snprintf(&ctx->path[ctx->path_len], LYSC_CTX_BUFSIZE - ctx->path_len, "%s%s", nextlevel ? "/" : "", name); |
Radek Krejci | 327de16 | 2019-06-14 12:52:07 +0200 | [diff] [blame] | 308 | } else { |
Radek Krejci | 70ee915 | 2019-07-25 11:27:27 +0200 | [diff] [blame] | 309 | len = snprintf(&ctx->path[ctx->path_len], LYSC_CTX_BUFSIZE - ctx->path_len, "%s%s:%s", nextlevel ? "/" : "", ctx->mod->name, name); |
Radek Krejci | 327de16 | 2019-06-14 12:52:07 +0200 | [diff] [blame] | 310 | } |
| 311 | } else { |
Radek Krejci | 70ee915 | 2019-07-25 11:27:27 +0200 | [diff] [blame] | 312 | len = snprintf(&ctx->path[ctx->path_len], LYSC_CTX_BUFSIZE - ctx->path_len, "='%s'}", name); |
Radek Krejci | 327de16 | 2019-06-14 12:52:07 +0200 | [diff] [blame] | 313 | } |
Radek Krejci | 1deb5be | 2020-08-26 16:43:36 +0200 | [diff] [blame] | 314 | if (len >= LYSC_CTX_BUFSIZE - (int)ctx->path_len) { |
Radek Krejci | acc7904 | 2019-07-25 14:14:57 +0200 | [diff] [blame] | 315 | /* output truncated */ |
| 316 | ctx->path_len = LYSC_CTX_BUFSIZE - 1; |
| 317 | } else { |
| 318 | ctx->path_len += len; |
| 319 | } |
Radek Krejci | 327de16 | 2019-06-14 12:52:07 +0200 | [diff] [blame] | 320 | } |
| 321 | } |
| 322 | |
| 323 | /** |
Radek Krejci | b56c750 | 2019-02-13 14:19:54 +0100 | [diff] [blame] | 324 | * @brief Duplicate the compiled pattern structure. |
| 325 | * |
| 326 | * Instead of duplicating memory, the reference counter in the @p orig is increased. |
| 327 | * |
| 328 | * @param[in] orig The pattern structure to duplicate. |
| 329 | * @return The duplicated structure to use. |
| 330 | */ |
Michal Vasko | 22df3f0 | 2020-08-24 13:29:22 +0200 | [diff] [blame] | 331 | static struct lysc_pattern * |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 332 | lysc_pattern_dup(struct lysc_pattern *orig) |
| 333 | { |
| 334 | ++orig->refcount; |
| 335 | return orig; |
| 336 | } |
| 337 | |
Radek Krejci | b56c750 | 2019-02-13 14:19:54 +0100 | [diff] [blame] | 338 | /** |
| 339 | * @brief Duplicate the array of compiled patterns. |
| 340 | * |
| 341 | * The sized array itself is duplicated, but the pattern structures are just shadowed by increasing their reference counter. |
| 342 | * |
| 343 | * @param[in] ctx Libyang context for logging. |
| 344 | * @param[in] orig The patterns sized array to duplicate. |
| 345 | * @return New sized array as a copy of @p orig. |
| 346 | * @return NULL in case of memory allocation error. |
| 347 | */ |
Michal Vasko | 22df3f0 | 2020-08-24 13:29:22 +0200 | [diff] [blame] | 348 | static struct lysc_pattern ** |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 349 | lysc_patterns_dup(struct ly_ctx *ctx, struct lysc_pattern **orig) |
| 350 | { |
Radek Krejci | d05cbd9 | 2018-12-05 14:26:40 +0100 | [diff] [blame] | 351 | struct lysc_pattern **dup = NULL; |
Michal Vasko | fd69e1d | 2020-07-03 11:57:17 +0200 | [diff] [blame] | 352 | LY_ARRAY_COUNT_TYPE u; |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 353 | |
Radek Krejci | b56c750 | 2019-02-13 14:19:54 +0100 | [diff] [blame] | 354 | assert(orig); |
| 355 | |
Michal Vasko | fd69e1d | 2020-07-03 11:57:17 +0200 | [diff] [blame] | 356 | LY_ARRAY_CREATE_RET(ctx, dup, LY_ARRAY_COUNT(orig), NULL); |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 357 | LY_ARRAY_FOR(orig, u) { |
| 358 | dup[u] = lysc_pattern_dup(orig[u]); |
| 359 | LY_ARRAY_INCREMENT(dup); |
| 360 | } |
| 361 | return dup; |
| 362 | } |
| 363 | |
Radek Krejci | b56c750 | 2019-02-13 14:19:54 +0100 | [diff] [blame] | 364 | /** |
| 365 | * @brief Duplicate compiled range structure. |
| 366 | * |
| 367 | * @param[in] ctx Libyang context for logging. |
| 368 | * @param[in] orig The range structure to be duplicated. |
| 369 | * @return New compiled range structure as a copy of @p orig. |
| 370 | * @return NULL in case of memory allocation error. |
| 371 | */ |
Michal Vasko | 22df3f0 | 2020-08-24 13:29:22 +0200 | [diff] [blame] | 372 | struct lysc_range * |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 373 | lysc_range_dup(struct ly_ctx *ctx, const struct lysc_range *orig) |
| 374 | { |
| 375 | struct lysc_range *dup; |
| 376 | LY_ERR ret; |
| 377 | |
Radek Krejci | b56c750 | 2019-02-13 14:19:54 +0100 | [diff] [blame] | 378 | assert(orig); |
| 379 | |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 380 | dup = calloc(1, sizeof *dup); |
| 381 | LY_CHECK_ERR_RET(!dup, LOGMEM(ctx), NULL); |
| 382 | if (orig->parts) { |
Michal Vasko | fd69e1d | 2020-07-03 11:57:17 +0200 | [diff] [blame] | 383 | LY_ARRAY_CREATE_GOTO(ctx, dup->parts, LY_ARRAY_COUNT(orig->parts), ret, cleanup); |
| 384 | LY_ARRAY_COUNT(dup->parts) = LY_ARRAY_COUNT(orig->parts); |
| 385 | memcpy(dup->parts, orig->parts, LY_ARRAY_COUNT(dup->parts) * sizeof *dup->parts); |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 386 | } |
Radek Krejci | 011e4aa | 2020-09-04 15:22:31 +0200 | [diff] [blame] | 387 | DUP_STRING_GOTO(ctx, orig->eapptag, dup->eapptag, ret, cleanup); |
| 388 | DUP_STRING_GOTO(ctx, orig->emsg, dup->emsg, ret, cleanup); |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 389 | dup->exts = lysc_ext_instance_dup(ctx, orig->exts); |
| 390 | |
| 391 | return dup; |
| 392 | cleanup: |
| 393 | free(dup); |
| 394 | (void) ret; /* set but not used due to the return type */ |
| 395 | return NULL; |
| 396 | } |
| 397 | |
Radek Krejci | b56c750 | 2019-02-13 14:19:54 +0100 | [diff] [blame] | 398 | /** |
| 399 | * @brief Stack for processing if-feature expressions. |
| 400 | */ |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 401 | struct iff_stack { |
Radek Krejci | 1deb5be | 2020-08-26 16:43:36 +0200 | [diff] [blame] | 402 | size_t size; /**< number of items in the stack */ |
| 403 | size_t index; /**< first empty item */ |
| 404 | uint8_t *stack; /**< stack - array of @ref ifftokens to create the if-feature expression in prefix format */ |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 405 | }; |
| 406 | |
Radek Krejci | b56c750 | 2019-02-13 14:19:54 +0100 | [diff] [blame] | 407 | /** |
| 408 | * @brief Add @ref ifftokens into the stack. |
| 409 | * @param[in] stack The if-feature stack to use. |
| 410 | * @param[in] value One of the @ref ifftokens to store in the stack. |
| 411 | * @return LY_EMEM in case of memory allocation error |
| 412 | * @return LY_ESUCCESS if the value successfully stored. |
| 413 | */ |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 414 | static LY_ERR |
| 415 | iff_stack_push(struct iff_stack *stack, uint8_t value) |
| 416 | { |
| 417 | if (stack->index == stack->size) { |
| 418 | stack->size += 4; |
| 419 | stack->stack = ly_realloc(stack->stack, stack->size * sizeof *stack->stack); |
| 420 | LY_CHECK_ERR_RET(!stack->stack, LOGMEM(NULL); stack->size = 0, LY_EMEM); |
| 421 | } |
| 422 | stack->stack[stack->index++] = value; |
| 423 | return LY_SUCCESS; |
| 424 | } |
| 425 | |
Radek Krejci | b56c750 | 2019-02-13 14:19:54 +0100 | [diff] [blame] | 426 | /** |
| 427 | * @brief Get (and remove) the last item form the stack. |
| 428 | * @param[in] stack The if-feature stack to use. |
| 429 | * @return The value from the top of the stack. |
| 430 | */ |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 431 | static uint8_t |
| 432 | iff_stack_pop(struct iff_stack *stack) |
| 433 | { |
Radek Krejci | b56c750 | 2019-02-13 14:19:54 +0100 | [diff] [blame] | 434 | assert(stack && stack->index); |
| 435 | |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 436 | stack->index--; |
| 437 | return stack->stack[stack->index]; |
| 438 | } |
| 439 | |
Radek Krejci | b56c750 | 2019-02-13 14:19:54 +0100 | [diff] [blame] | 440 | /** |
| 441 | * @brief Clean up the stack. |
| 442 | * @param[in] stack The if-feature stack to use. |
| 443 | */ |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 444 | static void |
| 445 | iff_stack_clean(struct iff_stack *stack) |
| 446 | { |
| 447 | stack->size = 0; |
| 448 | free(stack->stack); |
| 449 | } |
| 450 | |
Radek Krejci | b56c750 | 2019-02-13 14:19:54 +0100 | [diff] [blame] | 451 | /** |
| 452 | * @brief Store the @ref ifftokens (@p op) on the given position in the 2bits array |
| 453 | * (libyang format of the if-feature expression). |
| 454 | * @param[in,out] list The 2bits array to modify. |
| 455 | * @param[in] op The operand (@ref ifftokens) to store. |
| 456 | * @param[in] pos Position (0-based) where to store the given @p op. |
| 457 | */ |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 458 | static void |
Radek Krejci | 1deb5be | 2020-08-26 16:43:36 +0200 | [diff] [blame] | 459 | iff_setop(uint8_t *list, uint8_t op, size_t pos) |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 460 | { |
| 461 | uint8_t *item; |
| 462 | uint8_t mask = 3; |
| 463 | |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 464 | assert(op <= 3); /* max 2 bits */ |
| 465 | |
| 466 | item = &list[pos / 4]; |
| 467 | mask = mask << 2 * (pos % 4); |
| 468 | *item = (*item) & ~mask; |
| 469 | *item = (*item) | (op << 2 * (pos % 4)); |
| 470 | } |
| 471 | |
Radek Krejci | b56c750 | 2019-02-13 14:19:54 +0100 | [diff] [blame] | 472 | #define LYS_IFF_LP 0x04 /**< Additional, temporary, value of @ref ifftokens: ( */ |
| 473 | #define LYS_IFF_RP 0x08 /**< Additional, temporary, value of @ref ifftokens: ) */ |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 474 | |
Radek Krejci | 0af4629 | 2019-01-11 16:02:31 +0100 | [diff] [blame] | 475 | /** |
| 476 | * @brief Find a feature of the given name and referenced in the given module. |
| 477 | * |
| 478 | * If the compiled schema is available (the schema is implemented), the feature from the compiled schema is |
| 479 | * returned. Otherwise, the special array of pre-compiled features is used to search for the feature. Such |
| 480 | * features are always disabled (feature from not implemented schema cannot be enabled), but in case the schema |
| 481 | * will be made implemented in future (no matter if implicitly via augmenting/deviating it or explicitly via |
| 482 | * ly_ctx_module_implement()), the compilation of these feature structure is finished, but the pointers |
| 483 | * assigned till that time will be still valid. |
| 484 | * |
| 485 | * @param[in] mod Module where the feature was referenced (used to resolve prefix of the feature). |
| 486 | * @param[in] name Name of the feature including possible prefix. |
| 487 | * @param[in] len Length of the string representing the feature identifier in the name variable (mandatory!). |
| 488 | * @return Pointer to the feature structure if found, NULL otherwise. |
| 489 | */ |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 490 | static struct lysc_feature * |
Michal Vasko | 7f45cf2 | 2020-10-01 12:49:44 +0200 | [diff] [blame] | 491 | lys_feature_find(const struct lys_module *mod, const char *name, size_t len) |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 492 | { |
| 493 | size_t i; |
Michal Vasko | fd69e1d | 2020-07-03 11:57:17 +0200 | [diff] [blame] | 494 | LY_ARRAY_COUNT_TYPE u; |
Radek Krejci | 14915cc | 2020-09-14 17:28:13 +0200 | [diff] [blame] | 495 | struct lysc_feature *f; |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 496 | |
Radek Krejci | 120d854 | 2020-08-12 09:29:16 +0200 | [diff] [blame] | 497 | assert(mod); |
| 498 | |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 499 | for (i = 0; i < len; ++i) { |
| 500 | if (name[i] == ':') { |
| 501 | /* we have a prefixed feature */ |
Radek Krejci | 0af4629 | 2019-01-11 16:02:31 +0100 | [diff] [blame] | 502 | mod = lys_module_find_prefix(mod, name, i); |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 503 | LY_CHECK_RET(!mod, NULL); |
| 504 | |
| 505 | name = &name[i + 1]; |
| 506 | len = len - i - 1; |
| 507 | } |
| 508 | } |
| 509 | |
| 510 | /* we have the correct module, get the feature */ |
Radek Krejci | 14915cc | 2020-09-14 17:28:13 +0200 | [diff] [blame] | 511 | LY_ARRAY_FOR(mod->features, u) { |
| 512 | f = &mod->features[u]; |
Radek Krejci | 7f9b651 | 2019-09-18 13:11:09 +0200 | [diff] [blame] | 513 | if (!ly_strncmp(f->name, name, len)) { |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 514 | return f; |
| 515 | } |
| 516 | } |
| 517 | |
| 518 | return NULL; |
| 519 | } |
| 520 | |
Michal Vasko | 8d54425 | 2020-03-02 10:19:52 +0100 | [diff] [blame] | 521 | /** |
Michal Vasko | 5fe75f1 | 2020-03-02 13:52:37 +0100 | [diff] [blame] | 522 | * @brief Fill in the prepared compiled extensions definition structure according to the parsed extension definition. |
| 523 | */ |
| 524 | static LY_ERR |
| 525 | lys_compile_extension(struct lysc_ctx *ctx, const struct lys_module *ext_mod, struct lysp_ext *ext_p, struct lysc_ext **ext) |
| 526 | { |
| 527 | LY_ERR ret = LY_SUCCESS; |
| 528 | |
| 529 | if (!ext_p->compiled) { |
| 530 | lysc_update_path(ctx, NULL, "{extension}"); |
| 531 | lysc_update_path(ctx, NULL, ext_p->name); |
| 532 | |
| 533 | /* compile the extension definition */ |
| 534 | ext_p->compiled = calloc(1, sizeof **ext); |
| 535 | ext_p->compiled->refcount = 1; |
Radek Krejci | 011e4aa | 2020-09-04 15:22:31 +0200 | [diff] [blame] | 536 | DUP_STRING_GOTO(ctx->ctx, ext_p->name, ext_p->compiled->name, ret, done); |
| 537 | DUP_STRING_GOTO(ctx->ctx, ext_p->argument, ext_p->compiled->argument, ret, done); |
Michal Vasko | 5fe75f1 | 2020-03-02 13:52:37 +0100 | [diff] [blame] | 538 | ext_p->compiled->module = (struct lys_module *)ext_mod; |
| 539 | COMPILE_EXTS_GOTO(ctx, ext_p->exts, ext_p->compiled->exts, *ext, LYEXT_PAR_EXT, ret, done); |
| 540 | |
| 541 | lysc_update_path(ctx, NULL, NULL); |
| 542 | lysc_update_path(ctx, NULL, NULL); |
| 543 | |
| 544 | /* find extension definition plugin */ |
| 545 | ext_p->compiled->plugin = lyext_get_plugin(ext_p->compiled); |
| 546 | } |
| 547 | |
| 548 | *ext = lysc_ext_dup(ext_p->compiled); |
| 549 | |
| 550 | done: |
| 551 | return ret; |
| 552 | } |
| 553 | |
| 554 | /** |
Michal Vasko | 8d54425 | 2020-03-02 10:19:52 +0100 | [diff] [blame] | 555 | * @brief Fill in the prepared compiled extension instance structure according to the parsed extension instance. |
| 556 | * |
| 557 | * @param[in] ctx Compilation context. |
| 558 | * @param[in] ext_p Parsed extension instance. |
| 559 | * @param[in,out] ext Prepared compiled extension instance. |
| 560 | * @param[in] parent Extension instance parent. |
| 561 | * @param[in] parent_type Extension instance parent type. |
| 562 | * @param[in] ext_mod Optional module with the extension instance extension definition, set only for internal annotations. |
| 563 | */ |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 564 | static LY_ERR |
Michal Vasko | 8d54425 | 2020-03-02 10:19:52 +0100 | [diff] [blame] | 565 | lys_compile_ext(struct lysc_ctx *ctx, struct lysp_ext_instance *ext_p, struct lysc_ext_instance *ext, void *parent, |
Radek Krejci | 0f96988 | 2020-08-21 16:56:47 +0200 | [diff] [blame] | 566 | LYEXT_PARENT parent_type, const struct lys_module *ext_mod) |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 567 | { |
Radek Krejci | 011e4aa | 2020-09-04 15:22:31 +0200 | [diff] [blame] | 568 | LY_ERR ret = LY_SUCCESS; |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 569 | const char *name; |
Radek Krejci | 7eb54ba | 2020-05-18 16:30:04 +0200 | [diff] [blame] | 570 | size_t u; |
Michal Vasko | fd69e1d | 2020-07-03 11:57:17 +0200 | [diff] [blame] | 571 | LY_ARRAY_COUNT_TYPE v; |
Radek Krejci | 7c96016 | 2019-09-18 14:16:12 +0200 | [diff] [blame] | 572 | const char *prefixed_name = NULL; |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 573 | |
Radek Krejci | 011e4aa | 2020-09-04 15:22:31 +0200 | [diff] [blame] | 574 | DUP_STRING(ctx->ctx, ext_p->argument, ext->argument, ret); |
| 575 | LY_CHECK_RET(ret); |
| 576 | |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 577 | ext->insubstmt = ext_p->insubstmt; |
| 578 | ext->insubstmt_index = ext_p->insubstmt_index; |
Radek Krejci | 28681fa | 2019-09-06 13:08:45 +0200 | [diff] [blame] | 579 | ext->module = ctx->mod_def; |
Radek Krejci | 0935f41 | 2019-08-20 16:15:18 +0200 | [diff] [blame] | 580 | ext->parent = parent; |
| 581 | ext->parent_type = parent_type; |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 582 | |
Michal Vasko | 22df3f0 | 2020-08-24 13:29:22 +0200 | [diff] [blame] | 583 | lysc_update_path(ctx, ext->parent_type == LYEXT_PAR_NODE ? (struct lysc_node *)ext->parent : NULL, "{extension}"); |
Radek Krejci | f56e2a4 | 2019-09-09 14:15:25 +0200 | [diff] [blame] | 584 | |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 585 | /* get module where the extension definition should be placed */ |
Radek Krejci | 1e008d2 | 2020-08-17 11:37:37 +0200 | [diff] [blame] | 586 | for (u = strlen(ext_p->name); u && ext_p->name[u - 1] != ':'; --u) {} |
Radek Krejci | 7c96016 | 2019-09-18 14:16:12 +0200 | [diff] [blame] | 587 | if (ext_p->yin) { |
| 588 | /* YIN parser has to replace prefixes by the namespace - XML namespace/prefix pairs may differs form the YANG schema's |
| 589 | * namespace/prefix pair. YIN parser does not have the imports available, so mapping from XML namespace to the |
| 590 | * YANG (import) prefix must be done here. */ |
| 591 | if (!ly_strncmp(ctx->mod_def->ns, ext_p->name, u - 1)) { |
Radek Krejci | 011e4aa | 2020-09-04 15:22:31 +0200 | [diff] [blame] | 592 | LY_CHECK_GOTO(ret = lydict_insert(ctx->ctx, &ext_p->name[u], 0, &prefixed_name), cleanup); |
Radek Krejci | 7c96016 | 2019-09-18 14:16:12 +0200 | [diff] [blame] | 593 | u = 0; |
Michal Vasko | 7c8439f | 2020-08-05 13:25:19 +0200 | [diff] [blame] | 594 | } else { |
| 595 | assert(ctx->mod_def->parsed); |
| 596 | LY_ARRAY_FOR(ctx->mod_def->parsed->imports, v) { |
| 597 | if (!ly_strncmp(ctx->mod_def->parsed->imports[v].module->ns, ext_p->name, u - 1)) { |
Radek Krejci | 7c96016 | 2019-09-18 14:16:12 +0200 | [diff] [blame] | 598 | char *s; |
Michal Vasko | 7c8439f | 2020-08-05 13:25:19 +0200 | [diff] [blame] | 599 | LY_CHECK_ERR_GOTO(asprintf(&s, "%s:%s", ctx->mod_def->parsed->imports[v].prefix, &ext_p->name[u]) == -1, |
Radek Krejci | 200f106 | 2020-07-11 22:51:03 +0200 | [diff] [blame] | 600 | ret = LY_EMEM, cleanup); |
Radek Krejci | 011e4aa | 2020-09-04 15:22:31 +0200 | [diff] [blame] | 601 | LY_CHECK_GOTO(ret = lydict_insert_zc(ctx->ctx, s, &prefixed_name), cleanup); |
Michal Vasko | 7c8439f | 2020-08-05 13:25:19 +0200 | [diff] [blame] | 602 | u = strlen(ctx->mod_def->parsed->imports[v].prefix) + 1; /* add semicolon */ |
Radek Krejci | 7c96016 | 2019-09-18 14:16:12 +0200 | [diff] [blame] | 603 | break; |
| 604 | } |
| 605 | } |
| 606 | } |
| 607 | if (!prefixed_name) { |
| 608 | LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_REFERENCE, |
| 609 | "Invalid XML prefix of \"%.*s\" namespace used for extension instance identifier.", u, ext_p->name); |
Radek Krejci | 011e4aa | 2020-09-04 15:22:31 +0200 | [diff] [blame] | 610 | ret = LY_EVALID; |
Radek Krejci | 7c96016 | 2019-09-18 14:16:12 +0200 | [diff] [blame] | 611 | goto cleanup; |
| 612 | } |
| 613 | } else { |
| 614 | prefixed_name = ext_p->name; |
| 615 | } |
| 616 | lysc_update_path(ctx, NULL, prefixed_name); |
| 617 | |
Michal Vasko | 8d54425 | 2020-03-02 10:19:52 +0100 | [diff] [blame] | 618 | if (!ext_mod) { |
Radek Krejci | 63f5551 | 2020-05-20 14:37:18 +0200 | [diff] [blame] | 619 | ext_mod = u ? lys_module_find_prefix(ctx->mod_def, prefixed_name, u - 1) : ctx->mod_def; |
Michal Vasko | 8d54425 | 2020-03-02 10:19:52 +0100 | [diff] [blame] | 620 | if (!ext_mod) { |
| 621 | LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_REFERENCE, |
| 622 | "Invalid prefix \"%.*s\" used for extension instance identifier.", u, prefixed_name); |
Radek Krejci | 011e4aa | 2020-09-04 15:22:31 +0200 | [diff] [blame] | 623 | ret = LY_EVALID; |
Michal Vasko | 8d54425 | 2020-03-02 10:19:52 +0100 | [diff] [blame] | 624 | goto cleanup; |
| 625 | } else if (!ext_mod->parsed->extensions) { |
| 626 | LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_REFERENCE, |
| 627 | "Extension instance \"%s\" refers \"%s\" module that does not contain extension definitions.", |
| 628 | prefixed_name, ext_mod->name); |
Radek Krejci | 011e4aa | 2020-09-04 15:22:31 +0200 | [diff] [blame] | 629 | ret = LY_EVALID; |
Michal Vasko | 8d54425 | 2020-03-02 10:19:52 +0100 | [diff] [blame] | 630 | goto cleanup; |
| 631 | } |
Radek Krejci | 7c96016 | 2019-09-18 14:16:12 +0200 | [diff] [blame] | 632 | } |
| 633 | name = &prefixed_name[u]; |
Radek Krejci | 0935f41 | 2019-08-20 16:15:18 +0200 | [diff] [blame] | 634 | |
Michal Vasko | 5fe75f1 | 2020-03-02 13:52:37 +0100 | [diff] [blame] | 635 | /* find the parsed extension definition there */ |
Radek Krejci | 7eb54ba | 2020-05-18 16:30:04 +0200 | [diff] [blame] | 636 | LY_ARRAY_FOR(ext_mod->parsed->extensions, v) { |
| 637 | if (!strcmp(name, ext_mod->parsed->extensions[v].name)) { |
Michal Vasko | 5fe75f1 | 2020-03-02 13:52:37 +0100 | [diff] [blame] | 638 | /* compile extension definition and assign it */ |
Radek Krejci | 011e4aa | 2020-09-04 15:22:31 +0200 | [diff] [blame] | 639 | LY_CHECK_GOTO(ret = lys_compile_extension(ctx, ext_mod, &ext_mod->parsed->extensions[v], &ext->def), cleanup); |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 640 | break; |
| 641 | } |
| 642 | } |
Radek Krejci | 7c96016 | 2019-09-18 14:16:12 +0200 | [diff] [blame] | 643 | if (!ext->def) { |
| 644 | LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_REFERENCE, |
| 645 | "Extension definition of extension instance \"%s\" not found.", prefixed_name); |
Radek Krejci | 011e4aa | 2020-09-04 15:22:31 +0200 | [diff] [blame] | 646 | ret = LY_EVALID; |
Radek Krejci | 7c96016 | 2019-09-18 14:16:12 +0200 | [diff] [blame] | 647 | goto cleanup; |
| 648 | } |
Radek Krejci | 0935f41 | 2019-08-20 16:15:18 +0200 | [diff] [blame] | 649 | |
Radek Krejci | f56e2a4 | 2019-09-09 14:15:25 +0200 | [diff] [blame] | 650 | /* unify the parsed extension from YIN and YANG sources. Without extension definition, it is not possible |
| 651 | * to get extension's argument from YIN source, so it is stored as one of the substatements. Here we have |
| 652 | * to find it, mark it with LYS_YIN_ARGUMENT and store it in the compiled structure. */ |
Radek Krejci | 7c96016 | 2019-09-18 14:16:12 +0200 | [diff] [blame] | 653 | if (ext_p->yin && ext->def->argument && !ext->argument) { |
Radek Krejci | f56e2a4 | 2019-09-09 14:15:25 +0200 | [diff] [blame] | 654 | /* Schema was parsed from YIN and an argument is expected, ... */ |
| 655 | struct lysp_stmt *stmt = NULL; |
| 656 | |
| 657 | if (ext->def->flags & LYS_YINELEM_TRUE) { |
| 658 | /* ... argument was the first XML child element */ |
| 659 | if (ext_p->child && !(ext_p->child->flags & LYS_YIN_ATTR)) { |
| 660 | /* TODO check namespace of the statement */ |
| 661 | if (!strcmp(ext_p->child->stmt, ext->def->argument)) { |
| 662 | stmt = ext_p->child; |
| 663 | } |
| 664 | } |
| 665 | } else { |
| 666 | /* ... argument was one of the XML attributes which are represented as child stmt |
| 667 | * with LYS_YIN_ATTR flag */ |
| 668 | for (stmt = ext_p->child; stmt && (stmt->flags & LYS_YIN_ATTR); stmt = stmt->next) { |
| 669 | if (!strcmp(stmt->stmt, ext->def->argument)) { |
| 670 | /* this is the extension's argument */ |
Radek Krejci | f56e2a4 | 2019-09-09 14:15:25 +0200 | [diff] [blame] | 671 | break; |
| 672 | } |
| 673 | } |
| 674 | } |
| 675 | if (!stmt) { |
| 676 | /* missing extension's argument */ |
| 677 | LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_REFERENCE, |
Radek Krejci | 7c96016 | 2019-09-18 14:16:12 +0200 | [diff] [blame] | 678 | "Extension instance \"%s\" misses argument \"%s\".", prefixed_name, ext->def->argument); |
Radek Krejci | 011e4aa | 2020-09-04 15:22:31 +0200 | [diff] [blame] | 679 | ret = LY_EVALID; |
Radek Krejci | 7c96016 | 2019-09-18 14:16:12 +0200 | [diff] [blame] | 680 | goto cleanup; |
Radek Krejci | f56e2a4 | 2019-09-09 14:15:25 +0200 | [diff] [blame] | 681 | |
| 682 | } |
Radek Krejci | 011e4aa | 2020-09-04 15:22:31 +0200 | [diff] [blame] | 683 | LY_CHECK_GOTO(ret = lydict_insert(ctx->ctx, stmt->arg, 0, &ext->argument), cleanup); |
Radek Krejci | f56e2a4 | 2019-09-09 14:15:25 +0200 | [diff] [blame] | 684 | stmt->flags |= LYS_YIN_ARGUMENT; |
| 685 | } |
Radek Krejci | 7c96016 | 2019-09-18 14:16:12 +0200 | [diff] [blame] | 686 | if (prefixed_name != ext_p->name) { |
| 687 | lydict_remove(ctx->ctx, ext_p->name); |
| 688 | ext_p->name = prefixed_name; |
| 689 | if (!ext_p->argument && ext->argument) { |
Radek Krejci | 011e4aa | 2020-09-04 15:22:31 +0200 | [diff] [blame] | 690 | LY_CHECK_GOTO(ret = lydict_insert(ctx->ctx, ext->argument, 0, &ext_p->argument), cleanup); |
Radek Krejci | 7c96016 | 2019-09-18 14:16:12 +0200 | [diff] [blame] | 691 | } |
| 692 | } |
Radek Krejci | f56e2a4 | 2019-09-09 14:15:25 +0200 | [diff] [blame] | 693 | |
Radek Krejci | 0935f41 | 2019-08-20 16:15:18 +0200 | [diff] [blame] | 694 | if (ext->def->plugin && ext->def->plugin->compile) { |
Radek Krejci | ad5963b | 2019-09-06 16:03:05 +0200 | [diff] [blame] | 695 | if (ext->argument) { |
Michal Vasko | 22df3f0 | 2020-08-24 13:29:22 +0200 | [diff] [blame] | 696 | lysc_update_path(ctx, (struct lysc_node *)ext, ext->argument); |
Radek Krejci | ad5963b | 2019-09-06 16:03:05 +0200 | [diff] [blame] | 697 | } |
Radek Krejci | 011e4aa | 2020-09-04 15:22:31 +0200 | [diff] [blame] | 698 | LY_CHECK_GOTO(ret = ext->def->plugin->compile(ctx, ext_p, ext), cleanup); |
Radek Krejci | ad5963b | 2019-09-06 16:03:05 +0200 | [diff] [blame] | 699 | if (ext->argument) { |
| 700 | lysc_update_path(ctx, NULL, NULL); |
| 701 | } |
Radek Krejci | 0935f41 | 2019-08-20 16:15:18 +0200 | [diff] [blame] | 702 | } |
Radek Krejci | f56e2a4 | 2019-09-09 14:15:25 +0200 | [diff] [blame] | 703 | ext_p->compiled = ext; |
| 704 | |
Radek Krejci | 7c96016 | 2019-09-18 14:16:12 +0200 | [diff] [blame] | 705 | cleanup: |
| 706 | if (prefixed_name && prefixed_name != ext_p->name) { |
| 707 | lydict_remove(ctx->ctx, prefixed_name); |
| 708 | } |
| 709 | |
Radek Krejci | f56e2a4 | 2019-09-09 14:15:25 +0200 | [diff] [blame] | 710 | lysc_update_path(ctx, NULL, NULL); |
| 711 | lysc_update_path(ctx, NULL, NULL); |
Radek Krejci | 0935f41 | 2019-08-20 16:15:18 +0200 | [diff] [blame] | 712 | |
Radek Krejci | 7c96016 | 2019-09-18 14:16:12 +0200 | [diff] [blame] | 713 | return ret; |
Radek Krejci | 0935f41 | 2019-08-20 16:15:18 +0200 | [diff] [blame] | 714 | } |
| 715 | |
| 716 | /** |
Radek Krejci | b56c750 | 2019-02-13 14:19:54 +0100 | [diff] [blame] | 717 | * @brief Compile information from the if-feature statement |
| 718 | * @param[in] ctx Compile context. |
Michal Vasko | 7f45cf2 | 2020-10-01 12:49:44 +0200 | [diff] [blame] | 719 | * @param[in] qname The if-feature argument to process. It is pointer-to-qname just to unify the compile functions. |
Radek Krejci | b56c750 | 2019-02-13 14:19:54 +0100 | [diff] [blame] | 720 | * @param[in,out] iff Prepared (empty) compiled if-feature structure to fill. |
| 721 | * @return LY_ERR value. |
| 722 | */ |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 723 | static LY_ERR |
Michal Vasko | 7f45cf2 | 2020-10-01 12:49:44 +0200 | [diff] [blame] | 724 | lys_compile_iffeature(struct lysc_ctx *ctx, struct lysp_qname *qname, struct lysc_iffeature *iff) |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 725 | { |
Radek Krejci | 1deb5be | 2020-08-26 16:43:36 +0200 | [diff] [blame] | 726 | LY_ERR rc = LY_SUCCESS; |
Michal Vasko | 7f45cf2 | 2020-10-01 12:49:44 +0200 | [diff] [blame] | 727 | const char *c = qname->str; |
Radek Krejci | 1deb5be | 2020-08-26 16:43:36 +0200 | [diff] [blame] | 728 | int64_t i, j; |
| 729 | int8_t op_len, last_not = 0, checkversion = 0; |
| 730 | LY_ARRAY_COUNT_TYPE f_size = 0, expr_size = 0, f_exp = 1; |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 731 | uint8_t op; |
| 732 | struct iff_stack stack = {0, 0, NULL}; |
| 733 | struct lysc_feature *f; |
| 734 | |
| 735 | assert(c); |
| 736 | |
| 737 | /* pre-parse the expression to get sizes for arrays, also do some syntax checks of the expression */ |
Radek Krejci | 1deb5be | 2020-08-26 16:43:36 +0200 | [diff] [blame] | 738 | for (i = j = 0; c[i]; i++) { |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 739 | if (c[i] == '(') { |
| 740 | j++; |
| 741 | checkversion = 1; |
| 742 | continue; |
| 743 | } else if (c[i] == ')') { |
| 744 | j--; |
| 745 | continue; |
| 746 | } else if (isspace(c[i])) { |
| 747 | checkversion = 1; |
| 748 | continue; |
| 749 | } |
| 750 | |
Radek Krejci | 1deb5be | 2020-08-26 16:43:36 +0200 | [diff] [blame] | 751 | if (!strncmp(&c[i], "not", op_len = 3) || !strncmp(&c[i], "and", op_len = 3) || !strncmp(&c[i], "or", op_len = 2)) { |
| 752 | uint64_t spaces; |
| 753 | for (spaces = 0; c[i + op_len + spaces] && isspace(c[i + op_len + spaces]); spaces++); |
| 754 | if (c[i + op_len + spaces] == '\0') { |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 755 | LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SYNTAX_YANG, |
Michal Vasko | 7f45cf2 | 2020-10-01 12:49:44 +0200 | [diff] [blame] | 756 | "Invalid value \"%s\" of if-feature - unexpected end of expression.", qname->str); |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 757 | return LY_EVALID; |
Radek Krejci | 1deb5be | 2020-08-26 16:43:36 +0200 | [diff] [blame] | 758 | } else if (!isspace(c[i + op_len])) { |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 759 | /* feature name starting with the not/and/or */ |
| 760 | last_not = 0; |
| 761 | f_size++; |
| 762 | } else if (c[i] == 'n') { /* not operation */ |
| 763 | if (last_not) { |
| 764 | /* double not */ |
| 765 | expr_size = expr_size - 2; |
| 766 | last_not = 0; |
| 767 | } else { |
| 768 | last_not = 1; |
| 769 | } |
| 770 | } else { /* and, or */ |
Radek Krejci | 6788abc | 2019-06-14 13:56:49 +0200 | [diff] [blame] | 771 | if (f_exp != f_size) { |
| 772 | LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SYNTAX_YANG, |
Michal Vasko | 7f45cf2 | 2020-10-01 12:49:44 +0200 | [diff] [blame] | 773 | "Invalid value \"%s\" of if-feature - missing feature/expression before \"%.*s\" operation.", |
| 774 | qname->str, op_len, &c[i]); |
Radek Krejci | 6788abc | 2019-06-14 13:56:49 +0200 | [diff] [blame] | 775 | return LY_EVALID; |
| 776 | } |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 777 | f_exp++; |
Radek Krejci | 6788abc | 2019-06-14 13:56:49 +0200 | [diff] [blame] | 778 | |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 779 | /* not a not operation */ |
| 780 | last_not = 0; |
| 781 | } |
Radek Krejci | 1deb5be | 2020-08-26 16:43:36 +0200 | [diff] [blame] | 782 | i += op_len; |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 783 | } else { |
| 784 | f_size++; |
| 785 | last_not = 0; |
| 786 | } |
| 787 | expr_size++; |
| 788 | |
| 789 | while (!isspace(c[i])) { |
Radek Krejci | 6788abc | 2019-06-14 13:56:49 +0200 | [diff] [blame] | 790 | if (!c[i] || c[i] == ')' || c[i] == '(') { |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 791 | i--; |
| 792 | break; |
| 793 | } |
| 794 | i++; |
| 795 | } |
| 796 | } |
Radek Krejci | 6788abc | 2019-06-14 13:56:49 +0200 | [diff] [blame] | 797 | if (j) { |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 798 | /* not matching count of ( and ) */ |
| 799 | LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SYNTAX_YANG, |
Michal Vasko | 7f45cf2 | 2020-10-01 12:49:44 +0200 | [diff] [blame] | 800 | "Invalid value \"%s\" of if-feature - non-matching opening and closing parentheses.", qname->str); |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 801 | return LY_EVALID; |
| 802 | } |
Radek Krejci | 6788abc | 2019-06-14 13:56:49 +0200 | [diff] [blame] | 803 | if (f_exp != f_size) { |
| 804 | /* features do not match the needed arguments for the logical operations */ |
| 805 | LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SYNTAX_YANG, |
| 806 | "Invalid value \"%s\" of if-feature - number of features in expression does not match " |
Michal Vasko | 7f45cf2 | 2020-10-01 12:49:44 +0200 | [diff] [blame] | 807 | "the required number of operands for the operations.", qname->str); |
Radek Krejci | 6788abc | 2019-06-14 13:56:49 +0200 | [diff] [blame] | 808 | return LY_EVALID; |
| 809 | } |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 810 | |
| 811 | if (checkversion || expr_size > 1) { |
| 812 | /* check that we have 1.1 module */ |
Michal Vasko | 7f45cf2 | 2020-10-01 12:49:44 +0200 | [diff] [blame] | 813 | if (qname->mod->version != LYS_VERSION_1_1) { |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 814 | LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SYNTAX_YANG, |
Michal Vasko | 7f45cf2 | 2020-10-01 12:49:44 +0200 | [diff] [blame] | 815 | "Invalid value \"%s\" of if-feature - YANG 1.1 expression in YANG 1.0 module.", qname->str); |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 816 | return LY_EVALID; |
| 817 | } |
| 818 | } |
| 819 | |
| 820 | /* allocate the memory */ |
| 821 | LY_ARRAY_CREATE_RET(ctx->ctx, iff->features, f_size, LY_EMEM); |
| 822 | iff->expr = calloc((j = (expr_size / 4) + ((expr_size % 4) ? 1 : 0)), sizeof *iff->expr); |
| 823 | stack.stack = malloc(expr_size * sizeof *stack.stack); |
Radek Krejci | 1deb5be | 2020-08-26 16:43:36 +0200 | [diff] [blame] | 824 | LY_CHECK_ERR_GOTO(!stack.stack || !iff->expr, LOGMEM(ctx->ctx); rc = LY_EMEM, error); |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 825 | |
| 826 | stack.size = expr_size; |
| 827 | f_size--; expr_size--; /* used as indexes from now */ |
| 828 | |
| 829 | for (i--; i >= 0; i--) { |
| 830 | if (c[i] == ')') { |
| 831 | /* push it on stack */ |
| 832 | iff_stack_push(&stack, LYS_IFF_RP); |
| 833 | continue; |
| 834 | } else if (c[i] == '(') { |
| 835 | /* pop from the stack into result all operators until ) */ |
Michal Vasko | d989ba0 | 2020-08-24 10:59:24 +0200 | [diff] [blame] | 836 | while ((op = iff_stack_pop(&stack)) != LYS_IFF_RP) { |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 837 | iff_setop(iff->expr, op, expr_size--); |
| 838 | } |
| 839 | continue; |
| 840 | } else if (isspace(c[i])) { |
| 841 | continue; |
| 842 | } |
| 843 | |
| 844 | /* end of operator or operand -> find beginning and get what is it */ |
| 845 | j = i + 1; |
| 846 | while (i >= 0 && !isspace(c[i]) && c[i] != '(') { |
| 847 | i--; |
| 848 | } |
| 849 | i++; /* go back by one step */ |
| 850 | |
| 851 | if (!strncmp(&c[i], "not", 3) && isspace(c[i + 3])) { |
| 852 | if (stack.index && stack.stack[stack.index - 1] == LYS_IFF_NOT) { |
| 853 | /* double not */ |
| 854 | iff_stack_pop(&stack); |
| 855 | } else { |
| 856 | /* not has the highest priority, so do not pop from the stack |
| 857 | * as in case of AND and OR */ |
| 858 | iff_stack_push(&stack, LYS_IFF_NOT); |
| 859 | } |
| 860 | } else if (!strncmp(&c[i], "and", 3) && isspace(c[i + 3])) { |
| 861 | /* as for OR - pop from the stack all operators with the same or higher |
| 862 | * priority and store them to the result, then push the AND to the stack */ |
| 863 | while (stack.index && stack.stack[stack.index - 1] <= LYS_IFF_AND) { |
| 864 | op = iff_stack_pop(&stack); |
| 865 | iff_setop(iff->expr, op, expr_size--); |
| 866 | } |
| 867 | iff_stack_push(&stack, LYS_IFF_AND); |
| 868 | } else if (!strncmp(&c[i], "or", 2) && isspace(c[i + 2])) { |
| 869 | while (stack.index && stack.stack[stack.index - 1] <= LYS_IFF_OR) { |
| 870 | op = iff_stack_pop(&stack); |
| 871 | iff_setop(iff->expr, op, expr_size--); |
| 872 | } |
| 873 | iff_stack_push(&stack, LYS_IFF_OR); |
| 874 | } else { |
| 875 | /* feature name, length is j - i */ |
| 876 | |
| 877 | /* add it to the expression */ |
| 878 | iff_setop(iff->expr, LYS_IFF_F, expr_size--); |
| 879 | |
| 880 | /* now get the link to the feature definition */ |
Michal Vasko | 7f45cf2 | 2020-10-01 12:49:44 +0200 | [diff] [blame] | 881 | f = lys_feature_find(qname->mod, &c[i], j - i); |
Radek Krejci | 0af4629 | 2019-01-11 16:02:31 +0100 | [diff] [blame] | 882 | LY_CHECK_ERR_GOTO(!f, LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SYNTAX_YANG, |
Michal Vasko | 7f45cf2 | 2020-10-01 12:49:44 +0200 | [diff] [blame] | 883 | "Invalid value \"%s\" of if-feature - unable to find feature \"%.*s\".", qname->str, j - i, &c[i]); |
| 884 | rc = LY_EVALID, error) |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 885 | iff->features[f_size] = f; |
| 886 | LY_ARRAY_INCREMENT(iff->features); |
| 887 | f_size--; |
| 888 | } |
| 889 | } |
| 890 | while (stack.index) { |
| 891 | op = iff_stack_pop(&stack); |
| 892 | iff_setop(iff->expr, op, expr_size--); |
| 893 | } |
| 894 | |
| 895 | if (++expr_size || ++f_size) { |
| 896 | /* not all expected operators and operands found */ |
| 897 | LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SYNTAX_YANG, |
Michal Vasko | 7f45cf2 | 2020-10-01 12:49:44 +0200 | [diff] [blame] | 898 | "Invalid value \"%s\" of if-feature - processing error.", qname->str); |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 899 | rc = LY_EINT; |
| 900 | } else { |
| 901 | rc = LY_SUCCESS; |
| 902 | } |
| 903 | |
| 904 | error: |
| 905 | /* cleanup */ |
| 906 | iff_stack_clean(&stack); |
| 907 | |
| 908 | return rc; |
| 909 | } |
| 910 | |
Radek Krejci | b56c750 | 2019-02-13 14:19:54 +0100 | [diff] [blame] | 911 | /** |
Michal Vasko | 175012e | 2019-11-06 15:49:14 +0100 | [diff] [blame] | 912 | * @brief Get the XPath context node for the given schema node. |
| 913 | * @param[in] start The schema node where the XPath expression appears. |
| 914 | * @return The context node to evaluate XPath expression in given schema node. |
| 915 | * @return NULL in case the context node is the root node. |
| 916 | */ |
| 917 | static struct lysc_node * |
| 918 | lysc_xpath_context(struct lysc_node *start) |
| 919 | { |
Michal Vasko | 1bf0939 | 2020-03-27 12:38:10 +0100 | [diff] [blame] | 920 | for (; start && !(start->nodetype & (LYS_CONTAINER | LYS_LEAF | LYS_LEAFLIST | LYS_LIST | LYS_ANYDATA | LYS_RPC | LYS_ACTION | LYS_NOTIF)); |
Radek Krejci | 1e008d2 | 2020-08-17 11:37:37 +0200 | [diff] [blame] | 921 | start = start->parent) {} |
Michal Vasko | 175012e | 2019-11-06 15:49:14 +0100 | [diff] [blame] | 922 | return start; |
| 923 | } |
| 924 | |
| 925 | /** |
Radek Krejci | b56c750 | 2019-02-13 14:19:54 +0100 | [diff] [blame] | 926 | * @brief Compile information from the when statement |
| 927 | * @param[in] ctx Compile context. |
| 928 | * @param[in] when_p The parsed when statement structure. |
Michal Vasko | 175012e | 2019-11-06 15:49:14 +0100 | [diff] [blame] | 929 | * @param[in] flags Flags of the node with the "when" defiition. |
| 930 | * @param[in] node Node that inherited the "when" definition, must be connected to parents. |
Radek Krejci | b56c750 | 2019-02-13 14:19:54 +0100 | [diff] [blame] | 931 | * @param[out] when Pointer where to store pointer to the created compiled when structure. |
| 932 | * @return LY_ERR value. |
| 933 | */ |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 934 | static LY_ERR |
Michal Vasko | 175012e | 2019-11-06 15:49:14 +0100 | [diff] [blame] | 935 | lys_compile_when(struct lysc_ctx *ctx, struct lysp_when *when_p, uint16_t flags, struct lysc_node *node, struct lysc_when **when) |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 936 | { |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 937 | LY_ERR ret = LY_SUCCESS; |
| 938 | |
Radek Krejci | 00b874b | 2019-02-12 10:54:50 +0100 | [diff] [blame] | 939 | *when = calloc(1, sizeof **when); |
Radek Krejci | f03a9e2 | 2020-09-18 20:09:31 +0200 | [diff] [blame] | 940 | LY_CHECK_ERR_RET(!(*when), LOGMEM(ctx->ctx), LY_EMEM); |
Radek Krejci | 00b874b | 2019-02-12 10:54:50 +0100 | [diff] [blame] | 941 | (*when)->refcount = 1; |
Radek Krejci | f03a9e2 | 2020-09-18 20:09:31 +0200 | [diff] [blame] | 942 | LY_CHECK_RET(lyxp_expr_parse(ctx->ctx, when_p->cond, 0, 1, &(*when)->cond)); |
Radek Krejci | a0f704a | 2019-09-09 16:12:23 +0200 | [diff] [blame] | 943 | (*when)->module = ctx->mod_def; |
Michal Vasko | 175012e | 2019-11-06 15:49:14 +0100 | [diff] [blame] | 944 | (*when)->context = lysc_xpath_context(node); |
Radek Krejci | 011e4aa | 2020-09-04 15:22:31 +0200 | [diff] [blame] | 945 | DUP_STRING_GOTO(ctx->ctx, when_p->dsc, (*when)->dsc, ret, done); |
| 946 | DUP_STRING_GOTO(ctx->ctx, when_p->ref, (*when)->ref, ret, done); |
Radek Krejci | 0935f41 | 2019-08-20 16:15:18 +0200 | [diff] [blame] | 947 | COMPILE_EXTS_GOTO(ctx, when_p->exts, (*when)->exts, (*when), LYEXT_PAR_WHEN, ret, done); |
Michal Vasko | 175012e | 2019-11-06 15:49:14 +0100 | [diff] [blame] | 948 | (*when)->flags = flags & LYS_STATUS_MASK; |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 949 | |
| 950 | done: |
| 951 | return ret; |
| 952 | } |
| 953 | |
Radek Krejci | b56c750 | 2019-02-13 14:19:54 +0100 | [diff] [blame] | 954 | /** |
| 955 | * @brief Compile information from the must statement |
| 956 | * @param[in] ctx Compile context. |
| 957 | * @param[in] must_p The parsed must statement structure. |
Radek Krejci | b56c750 | 2019-02-13 14:19:54 +0100 | [diff] [blame] | 958 | * @param[in,out] must Prepared (empty) compiled must structure to fill. |
| 959 | * @return LY_ERR value. |
| 960 | */ |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 961 | static LY_ERR |
Radek Krejci | ec4da80 | 2019-05-02 13:02:41 +0200 | [diff] [blame] | 962 | lys_compile_must(struct lysc_ctx *ctx, struct lysp_restr *must_p, struct lysc_must *must) |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 963 | { |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 964 | LY_ERR ret = LY_SUCCESS; |
| 965 | |
Michal Vasko | 7f45cf2 | 2020-10-01 12:49:44 +0200 | [diff] [blame] | 966 | LY_CHECK_RET(lyxp_expr_parse(ctx->ctx, must_p->arg.str, 0, 1, &must->cond)); |
| 967 | must->module = (struct lys_module *)must_p->arg.mod; |
Radek Krejci | 011e4aa | 2020-09-04 15:22:31 +0200 | [diff] [blame] | 968 | DUP_STRING_GOTO(ctx->ctx, must_p->eapptag, must->eapptag, ret, done); |
| 969 | DUP_STRING_GOTO(ctx->ctx, must_p->emsg, must->emsg, ret, done); |
| 970 | DUP_STRING_GOTO(ctx->ctx, must_p->dsc, must->dsc, ret, done); |
| 971 | DUP_STRING_GOTO(ctx->ctx, must_p->ref, must->ref, ret, done); |
Radek Krejci | 0935f41 | 2019-08-20 16:15:18 +0200 | [diff] [blame] | 972 | COMPILE_EXTS_GOTO(ctx, must_p->exts, must->exts, must, LYEXT_PAR_MUST, ret, done); |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 973 | |
| 974 | done: |
| 975 | return ret; |
| 976 | } |
| 977 | |
Radek Krejci | b56c750 | 2019-02-13 14:19:54 +0100 | [diff] [blame] | 978 | /** |
Michal Vasko | 7c8439f | 2020-08-05 13:25:19 +0200 | [diff] [blame] | 979 | * @brief Compile information in the import statement - make sure there is the target module |
Radek Krejci | b56c750 | 2019-02-13 14:19:54 +0100 | [diff] [blame] | 980 | * @param[in] ctx Compile context. |
Michal Vasko | 7c8439f | 2020-08-05 13:25:19 +0200 | [diff] [blame] | 981 | * @param[in] imp_p The parsed import statement structure to fill the module to. |
Radek Krejci | b56c750 | 2019-02-13 14:19:54 +0100 | [diff] [blame] | 982 | * @return LY_ERR value. |
| 983 | */ |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 984 | static LY_ERR |
Michal Vasko | 7c8439f | 2020-08-05 13:25:19 +0200 | [diff] [blame] | 985 | lys_compile_import(struct lysc_ctx *ctx, struct lysp_import *imp_p) |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 986 | { |
Michal Vasko | 3a41dff | 2020-07-15 14:30:28 +0200 | [diff] [blame] | 987 | const struct lys_module *mod = NULL; |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 988 | LY_ERR ret = LY_SUCCESS; |
| 989 | |
Radek Krejci | 7f2a536 | 2018-11-28 13:05:37 +0100 | [diff] [blame] | 990 | /* make sure that we have the parsed version (lysp_) of the imported module to import groupings or typedefs. |
| 991 | * The compiled version is needed only for augments, deviates and leafrefs, so they are checked (and added, |
Radek Krejci | 0e5d838 | 2018-11-28 16:37:53 +0100 | [diff] [blame] | 992 | * if needed) when these nodes are finally being instantiated and validated at the end of schema compilation. */ |
Michal Vasko | 7c8439f | 2020-08-05 13:25:19 +0200 | [diff] [blame] | 993 | if (!imp_p->module->parsed) { |
Radek Krejci | 0bcdaed | 2019-01-10 10:21:34 +0100 | [diff] [blame] | 994 | /* try to use filepath if present */ |
Michal Vasko | 7c8439f | 2020-08-05 13:25:19 +0200 | [diff] [blame] | 995 | if (imp_p->module->filepath) { |
Radek Krejci | f0e1ba5 | 2020-05-22 15:14:35 +0200 | [diff] [blame] | 996 | struct ly_in *in; |
Michal Vasko | 7c8439f | 2020-08-05 13:25:19 +0200 | [diff] [blame] | 997 | if (ly_in_new_filepath(imp_p->module->filepath, 0, &in)) { |
Radek Krejci | f0e1ba5 | 2020-05-22 15:14:35 +0200 | [diff] [blame] | 998 | LOGINT(ctx->ctx); |
| 999 | } else { |
Michal Vasko | 7c8439f | 2020-08-05 13:25:19 +0200 | [diff] [blame] | 1000 | LY_CHECK_RET(lys_parse(ctx->ctx, in, !strcmp(&imp_p->module->filepath[strlen(imp_p->module->filepath - 4)], |
Michal Vasko | 3a41dff | 2020-07-15 14:30:28 +0200 | [diff] [blame] | 1001 | ".yin") ? LYS_IN_YIN : LYS_IN_YANG, &mod)); |
Michal Vasko | 7c8439f | 2020-08-05 13:25:19 +0200 | [diff] [blame] | 1002 | if (mod != imp_p->module) { |
Michal Vasko | 3a41dff | 2020-07-15 14:30:28 +0200 | [diff] [blame] | 1003 | LOGERR(ctx->ctx, LY_EINT, "Filepath \"%s\" of the module \"%s\" does not match.", |
Michal Vasko | 7c8439f | 2020-08-05 13:25:19 +0200 | [diff] [blame] | 1004 | imp_p->module->filepath, imp_p->module->name); |
Radek Krejci | f0e1ba5 | 2020-05-22 15:14:35 +0200 | [diff] [blame] | 1005 | mod = NULL; |
| 1006 | } |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 1007 | } |
Radek Krejci | f0e1ba5 | 2020-05-22 15:14:35 +0200 | [diff] [blame] | 1008 | ly_in_free(in, 1); |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 1009 | } |
| 1010 | if (!mod) { |
Michal Vasko | 7c8439f | 2020-08-05 13:25:19 +0200 | [diff] [blame] | 1011 | if (lysp_load_module(ctx->ctx, imp_p->module->name, imp_p->module->revision, 0, 1, (struct lys_module **)&mod)) { |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 1012 | LOGERR(ctx->ctx, LY_ENOTFOUND, "Unable to reload \"%s\" module to import it into \"%s\", source data not found.", |
Michal Vasko | 7c8439f | 2020-08-05 13:25:19 +0200 | [diff] [blame] | 1013 | imp_p->module->name, ctx->mod->name); |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 1014 | return LY_ENOTFOUND; |
| 1015 | } |
| 1016 | } |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 1017 | } |
| 1018 | |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 1019 | return ret; |
| 1020 | } |
| 1021 | |
Michal Vasko | 33ff942 | 2020-07-03 09:50:39 +0200 | [diff] [blame] | 1022 | LY_ERR |
| 1023 | lys_identity_precompile(struct lysc_ctx *ctx_sc, struct ly_ctx *ctx, struct lys_module *module, |
Radek Krejci | 0f96988 | 2020-08-21 16:56:47 +0200 | [diff] [blame] | 1024 | struct lysp_ident *identities_p, struct lysc_ident **identities) |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 1025 | { |
Michal Vasko | fd69e1d | 2020-07-03 11:57:17 +0200 | [diff] [blame] | 1026 | LY_ARRAY_COUNT_TYPE offset = 0, u, v; |
Michal Vasko | 33ff942 | 2020-07-03 09:50:39 +0200 | [diff] [blame] | 1027 | struct lysc_ctx context = {0}; |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 1028 | LY_ERR ret = LY_SUCCESS; |
| 1029 | |
Michal Vasko | 33ff942 | 2020-07-03 09:50:39 +0200 | [diff] [blame] | 1030 | assert(ctx_sc || ctx); |
Radek Krejci | 327de16 | 2019-06-14 12:52:07 +0200 | [diff] [blame] | 1031 | |
Michal Vasko | 33ff942 | 2020-07-03 09:50:39 +0200 | [diff] [blame] | 1032 | if (!ctx_sc) { |
| 1033 | context.ctx = ctx; |
| 1034 | context.mod = module; |
Radek Krejci | 120d854 | 2020-08-12 09:29:16 +0200 | [diff] [blame] | 1035 | context.mod_def = module; |
Michal Vasko | 33ff942 | 2020-07-03 09:50:39 +0200 | [diff] [blame] | 1036 | context.path_len = 1; |
| 1037 | context.path[0] = '/'; |
| 1038 | ctx_sc = &context; |
| 1039 | } |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 1040 | |
Michal Vasko | 33ff942 | 2020-07-03 09:50:39 +0200 | [diff] [blame] | 1041 | if (!identities_p) { |
| 1042 | return LY_SUCCESS; |
| 1043 | } |
| 1044 | if (*identities) { |
Michal Vasko | fd69e1d | 2020-07-03 11:57:17 +0200 | [diff] [blame] | 1045 | offset = LY_ARRAY_COUNT(*identities); |
Michal Vasko | 33ff942 | 2020-07-03 09:50:39 +0200 | [diff] [blame] | 1046 | } |
| 1047 | |
| 1048 | lysc_update_path(ctx_sc, NULL, "{identity}"); |
Michal Vasko | fd69e1d | 2020-07-03 11:57:17 +0200 | [diff] [blame] | 1049 | LY_ARRAY_CREATE_RET(ctx_sc->ctx, *identities, LY_ARRAY_COUNT(identities_p), LY_EMEM); |
Michal Vasko | 33ff942 | 2020-07-03 09:50:39 +0200 | [diff] [blame] | 1050 | LY_ARRAY_FOR(identities_p, u) { |
| 1051 | lysc_update_path(ctx_sc, NULL, identities_p[u].name); |
| 1052 | |
| 1053 | LY_ARRAY_INCREMENT(*identities); |
| 1054 | COMPILE_CHECK_UNIQUENESS_ARRAY(ctx_sc, *identities, name, &(*identities)[offset + u], "identity", identities_p[u].name); |
Radek Krejci | 011e4aa | 2020-09-04 15:22:31 +0200 | [diff] [blame] | 1055 | DUP_STRING_GOTO(ctx_sc->ctx, identities_p[u].name, (*identities)[offset + u].name, ret, done); |
| 1056 | DUP_STRING_GOTO(ctx_sc->ctx, identities_p[u].dsc, (*identities)[offset + u].dsc, ret, done); |
| 1057 | DUP_STRING_GOTO(ctx_sc->ctx, identities_p[u].ref, (*identities)[offset + u].ref, ret, done); |
Michal Vasko | 33ff942 | 2020-07-03 09:50:39 +0200 | [diff] [blame] | 1058 | (*identities)[offset + u].module = ctx_sc->mod; |
| 1059 | COMPILE_ARRAY_GOTO(ctx_sc, identities_p[u].iffeatures, (*identities)[offset + u].iffeatures, v, |
| 1060 | lys_compile_iffeature, ret, done); |
| 1061 | /* backlinks (derived) can be added no sooner than when all the identities in the current module are present */ |
| 1062 | COMPILE_EXTS_GOTO(ctx_sc, identities_p[u].exts, (*identities)[offset + u].exts, &(*identities)[offset + u], |
| 1063 | LYEXT_PAR_IDENT, ret, done); |
| 1064 | (*identities)[offset + u].flags = identities_p[u].flags; |
| 1065 | |
| 1066 | lysc_update_path(ctx_sc, NULL, NULL); |
| 1067 | } |
| 1068 | lysc_update_path(ctx_sc, NULL, NULL); |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 1069 | done: |
| 1070 | return ret; |
| 1071 | } |
| 1072 | |
Radek Krejci | b56c750 | 2019-02-13 14:19:54 +0100 | [diff] [blame] | 1073 | /** |
| 1074 | * @brief Check circular dependency of identities - identity MUST NOT reference itself (via their base statement). |
| 1075 | * |
| 1076 | * The function works in the same way as lys_compile_feature_circular_check() with different structures and error messages. |
| 1077 | * |
| 1078 | * @param[in] ctx Compile context for logging. |
| 1079 | * @param[in] ident The base identity (its derived list is being extended by the identity being currently processed). |
| 1080 | * @param[in] derived The list of derived identities of the identity being currently processed (not the one provided as @p ident) |
| 1081 | * @return LY_SUCCESS if everything is ok. |
| 1082 | * @return LY_EVALID if the identity is derived from itself. |
| 1083 | */ |
Radek Krejci | 3822263 | 2019-02-12 16:55:05 +0100 | [diff] [blame] | 1084 | static LY_ERR |
| 1085 | lys_compile_identity_circular_check(struct lysc_ctx *ctx, struct lysc_ident *ident, struct lysc_ident **derived) |
| 1086 | { |
Radek Krejci | ba03a5a | 2020-08-27 14:40:41 +0200 | [diff] [blame] | 1087 | LY_ERR ret = LY_SUCCESS; |
Michal Vasko | fd69e1d | 2020-07-03 11:57:17 +0200 | [diff] [blame] | 1088 | LY_ARRAY_COUNT_TYPE u, v; |
Radek Krejci | 3822263 | 2019-02-12 16:55:05 +0100 | [diff] [blame] | 1089 | struct ly_set recursion = {0}; |
| 1090 | struct lysc_ident *drv; |
| 1091 | |
| 1092 | if (!derived) { |
| 1093 | return LY_SUCCESS; |
| 1094 | } |
| 1095 | |
Michal Vasko | fd69e1d | 2020-07-03 11:57:17 +0200 | [diff] [blame] | 1096 | for (u = 0; u < LY_ARRAY_COUNT(derived); ++u) { |
Radek Krejci | 3822263 | 2019-02-12 16:55:05 +0100 | [diff] [blame] | 1097 | if (ident == derived[u]) { |
| 1098 | LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_REFERENCE, |
| 1099 | "Identity \"%s\" is indirectly derived from itself.", ident->name); |
Radek Krejci | ba03a5a | 2020-08-27 14:40:41 +0200 | [diff] [blame] | 1100 | ret = LY_EVALID; |
Radek Krejci | 3822263 | 2019-02-12 16:55:05 +0100 | [diff] [blame] | 1101 | goto cleanup; |
| 1102 | } |
Radek Krejci | ba03a5a | 2020-08-27 14:40:41 +0200 | [diff] [blame] | 1103 | ret = ly_set_add(&recursion, derived[u], 0, NULL); |
| 1104 | LY_CHECK_GOTO(ret, cleanup); |
Radek Krejci | 3822263 | 2019-02-12 16:55:05 +0100 | [diff] [blame] | 1105 | } |
| 1106 | |
| 1107 | for (v = 0; v < recursion.count; ++v) { |
| 1108 | drv = recursion.objs[v]; |
| 1109 | if (!drv->derived) { |
| 1110 | continue; |
| 1111 | } |
Michal Vasko | fd69e1d | 2020-07-03 11:57:17 +0200 | [diff] [blame] | 1112 | for (u = 0; u < LY_ARRAY_COUNT(drv->derived); ++u) { |
Radek Krejci | 3822263 | 2019-02-12 16:55:05 +0100 | [diff] [blame] | 1113 | if (ident == drv->derived[u]) { |
| 1114 | LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_REFERENCE, |
| 1115 | "Identity \"%s\" is indirectly derived from itself.", ident->name); |
Radek Krejci | ba03a5a | 2020-08-27 14:40:41 +0200 | [diff] [blame] | 1116 | ret = LY_EVALID; |
Radek Krejci | 3822263 | 2019-02-12 16:55:05 +0100 | [diff] [blame] | 1117 | goto cleanup; |
| 1118 | } |
Radek Krejci | ba03a5a | 2020-08-27 14:40:41 +0200 | [diff] [blame] | 1119 | ret = ly_set_add(&recursion, drv->derived[u], 0, NULL); |
| 1120 | LY_CHECK_GOTO(ret, cleanup); |
Radek Krejci | 3822263 | 2019-02-12 16:55:05 +0100 | [diff] [blame] | 1121 | } |
| 1122 | } |
Radek Krejci | 3822263 | 2019-02-12 16:55:05 +0100 | [diff] [blame] | 1123 | |
| 1124 | cleanup: |
| 1125 | ly_set_erase(&recursion, NULL); |
| 1126 | return ret; |
| 1127 | } |
| 1128 | |
Radek Krejci | a304538 | 2018-11-22 14:30:31 +0100 | [diff] [blame] | 1129 | /** |
| 1130 | * @brief Find and process the referenced base identities from another identity or identityref |
| 1131 | * |
Radek Krejci | aca7403 | 2019-06-04 08:53:06 +0200 | [diff] [blame] | 1132 | * For bases in identity set backlinks to them from the base identities. For identityref, store |
Radek Krejci | a304538 | 2018-11-22 14:30:31 +0100 | [diff] [blame] | 1133 | * the array of pointers to the base identities. So one of the ident or bases parameter must be set |
| 1134 | * to distinguish these two use cases. |
| 1135 | * |
| 1136 | * @param[in] ctx Compile context, not only for logging but also to get the current module to resolve prefixes. |
| 1137 | * @param[in] bases_p Array of names (including prefix if necessary) of base identities. |
Michal Vasko | 33ff942 | 2020-07-03 09:50:39 +0200 | [diff] [blame] | 1138 | * @param[in] ident Referencing identity to work with, NULL for identityref. |
Radek Krejci | a304538 | 2018-11-22 14:30:31 +0100 | [diff] [blame] | 1139 | * @param[in] bases Array of bases of identityref to fill in. |
| 1140 | * @return LY_ERR value. |
| 1141 | */ |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 1142 | static LY_ERR |
Michal Vasko | 33ff942 | 2020-07-03 09:50:39 +0200 | [diff] [blame] | 1143 | lys_compile_identity_bases(struct lysc_ctx *ctx, struct lys_module *context_module, const char **bases_p, |
Radek Krejci | 0f96988 | 2020-08-21 16:56:47 +0200 | [diff] [blame] | 1144 | struct lysc_ident *ident, struct lysc_ident ***bases) |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 1145 | { |
Michal Vasko | fd69e1d | 2020-07-03 11:57:17 +0200 | [diff] [blame] | 1146 | LY_ARRAY_COUNT_TYPE u, v; |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 1147 | const char *s, *name; |
Radek Krejci | e86bf77 | 2018-12-14 11:39:53 +0100 | [diff] [blame] | 1148 | struct lys_module *mod; |
Radek Krejci | 80d281e | 2020-09-14 17:42:54 +0200 | [diff] [blame] | 1149 | struct lysc_ident **idref; |
Radek Krejci | 555cb5b | 2018-11-16 14:54:33 +0100 | [diff] [blame] | 1150 | |
| 1151 | assert(ident || bases); |
| 1152 | |
Michal Vasko | fd69e1d | 2020-07-03 11:57:17 +0200 | [diff] [blame] | 1153 | if (LY_ARRAY_COUNT(bases_p) > 1 && ctx->mod_def->version < 2) { |
Radek Krejci | 555cb5b | 2018-11-16 14:54:33 +0100 | [diff] [blame] | 1154 | LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SYNTAX_YANG, |
| 1155 | "Multiple bases in %s are allowed only in YANG 1.1 modules.", ident ? "identity" : "identityref type"); |
| 1156 | return LY_EVALID; |
| 1157 | } |
| 1158 | |
Michal Vasko | 33ff942 | 2020-07-03 09:50:39 +0200 | [diff] [blame] | 1159 | LY_ARRAY_FOR(bases_p, u) { |
Radek Krejci | 555cb5b | 2018-11-16 14:54:33 +0100 | [diff] [blame] | 1160 | s = strchr(bases_p[u], ':'); |
| 1161 | if (s) { |
| 1162 | /* prefixed identity */ |
| 1163 | name = &s[1]; |
Radek Krejci | 0a33b04 | 2020-05-27 10:05:06 +0200 | [diff] [blame] | 1164 | mod = lys_module_find_prefix(context_module, bases_p[u], s - bases_p[u]); |
Radek Krejci | 555cb5b | 2018-11-16 14:54:33 +0100 | [diff] [blame] | 1165 | } else { |
| 1166 | name = bases_p[u]; |
Radek Krejci | 0a33b04 | 2020-05-27 10:05:06 +0200 | [diff] [blame] | 1167 | mod = context_module; |
Radek Krejci | 555cb5b | 2018-11-16 14:54:33 +0100 | [diff] [blame] | 1168 | } |
| 1169 | if (!mod) { |
| 1170 | if (ident) { |
| 1171 | LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SYNTAX_YANG, |
| 1172 | "Invalid prefix used for base (%s) of identity \"%s\".", bases_p[u], ident->name); |
| 1173 | } else { |
| 1174 | LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SYNTAX_YANG, |
| 1175 | "Invalid prefix used for base (%s) of identityref.", bases_p[u]); |
| 1176 | } |
| 1177 | return LY_EVALID; |
| 1178 | } |
Michal Vasko | 33ff942 | 2020-07-03 09:50:39 +0200 | [diff] [blame] | 1179 | |
Radek Krejci | 555cb5b | 2018-11-16 14:54:33 +0100 | [diff] [blame] | 1180 | idref = NULL; |
Radek Krejci | 80d281e | 2020-09-14 17:42:54 +0200 | [diff] [blame] | 1181 | LY_ARRAY_FOR(mod->identities, v) { |
| 1182 | if (!strcmp(name, mod->identities[v].name)) { |
Michal Vasko | 33ff942 | 2020-07-03 09:50:39 +0200 | [diff] [blame] | 1183 | if (ident) { |
Radek Krejci | 80d281e | 2020-09-14 17:42:54 +0200 | [diff] [blame] | 1184 | if (ident == &mod->identities[v]) { |
Michal Vasko | 33ff942 | 2020-07-03 09:50:39 +0200 | [diff] [blame] | 1185 | LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_REFERENCE, |
| 1186 | "Identity \"%s\" is derived from itself.", ident->name); |
| 1187 | return LY_EVALID; |
Radek Krejci | 555cb5b | 2018-11-16 14:54:33 +0100 | [diff] [blame] | 1188 | } |
Radek Krejci | 80d281e | 2020-09-14 17:42:54 +0200 | [diff] [blame] | 1189 | LY_CHECK_RET(lys_compile_identity_circular_check(ctx, &mod->identities[v], ident->derived)); |
Michal Vasko | 33ff942 | 2020-07-03 09:50:39 +0200 | [diff] [blame] | 1190 | /* we have match! store the backlink */ |
Radek Krejci | 80d281e | 2020-09-14 17:42:54 +0200 | [diff] [blame] | 1191 | LY_ARRAY_NEW_RET(ctx->ctx, mod->identities[v].derived, idref, LY_EMEM); |
Michal Vasko | 33ff942 | 2020-07-03 09:50:39 +0200 | [diff] [blame] | 1192 | *idref = ident; |
| 1193 | } else { |
| 1194 | /* we have match! store the found identity */ |
| 1195 | LY_ARRAY_NEW_RET(ctx->ctx, *bases, idref, LY_EMEM); |
Radek Krejci | 80d281e | 2020-09-14 17:42:54 +0200 | [diff] [blame] | 1196 | *idref = &mod->identities[v]; |
Radek Krejci | 555cb5b | 2018-11-16 14:54:33 +0100 | [diff] [blame] | 1197 | } |
Michal Vasko | 33ff942 | 2020-07-03 09:50:39 +0200 | [diff] [blame] | 1198 | break; |
Radek Krejci | 555cb5b | 2018-11-16 14:54:33 +0100 | [diff] [blame] | 1199 | } |
| 1200 | } |
| 1201 | if (!idref || !(*idref)) { |
| 1202 | if (ident) { |
| 1203 | LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SYNTAX_YANG, |
| 1204 | "Unable to find base (%s) of identity \"%s\".", bases_p[u], ident->name); |
| 1205 | } else { |
| 1206 | LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SYNTAX_YANG, |
| 1207 | "Unable to find base (%s) of identityref.", bases_p[u]); |
| 1208 | } |
| 1209 | return LY_EVALID; |
| 1210 | } |
| 1211 | } |
| 1212 | return LY_SUCCESS; |
| 1213 | } |
| 1214 | |
Radek Krejci | a304538 | 2018-11-22 14:30:31 +0100 | [diff] [blame] | 1215 | /** |
| 1216 | * @brief For the given array of identities, set the backlinks from all their base identities. |
| 1217 | * @param[in] ctx Compile context, not only for logging but also to get the current module to resolve prefixes. |
| 1218 | * @param[in] idents_p Array of identities definitions from the parsed schema structure. |
| 1219 | * @param[in] idents Array of referencing identities to which the backlinks are supposed to be set. |
| 1220 | * @return LY_ERR value - LY_SUCCESS or LY_EVALID. |
| 1221 | */ |
Radek Krejci | 555cb5b | 2018-11-16 14:54:33 +0100 | [diff] [blame] | 1222 | static LY_ERR |
| 1223 | lys_compile_identities_derived(struct lysc_ctx *ctx, struct lysp_ident *idents_p, struct lysc_ident *idents) |
| 1224 | { |
Michal Vasko | fd69e1d | 2020-07-03 11:57:17 +0200 | [diff] [blame] | 1225 | LY_ARRAY_COUNT_TYPE u; |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 1226 | |
Michal Vasko | 33ff942 | 2020-07-03 09:50:39 +0200 | [diff] [blame] | 1227 | lysc_update_path(ctx, NULL, "{identity}"); |
Michal Vasko | fd69e1d | 2020-07-03 11:57:17 +0200 | [diff] [blame] | 1228 | for (u = 0; u < LY_ARRAY_COUNT(idents_p); ++u) { |
Radek Krejci | 7eb54ba | 2020-05-18 16:30:04 +0200 | [diff] [blame] | 1229 | if (!idents_p[u].bases) { |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 1230 | continue; |
| 1231 | } |
Radek Krejci | 7eb54ba | 2020-05-18 16:30:04 +0200 | [diff] [blame] | 1232 | lysc_update_path(ctx, NULL, idents[u].name); |
Radek Krejci | 0a33b04 | 2020-05-27 10:05:06 +0200 | [diff] [blame] | 1233 | LY_CHECK_RET(lys_compile_identity_bases(ctx, idents[u].module, idents_p[u].bases, &idents[u], NULL)); |
Radek Krejci | 327de16 | 2019-06-14 12:52:07 +0200 | [diff] [blame] | 1234 | lysc_update_path(ctx, NULL, NULL); |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 1235 | } |
Michal Vasko | 33ff942 | 2020-07-03 09:50:39 +0200 | [diff] [blame] | 1236 | lysc_update_path(ctx, NULL, NULL); |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 1237 | return LY_SUCCESS; |
| 1238 | } |
| 1239 | |
Radek Krejci | 0af4629 | 2019-01-11 16:02:31 +0100 | [diff] [blame] | 1240 | LY_ERR |
Michal Vasko | 33ff942 | 2020-07-03 09:50:39 +0200 | [diff] [blame] | 1241 | lys_feature_precompile(struct lysc_ctx *ctx_sc, struct ly_ctx *ctx, struct lys_module *module, |
Radek Krejci | 0f96988 | 2020-08-21 16:56:47 +0200 | [diff] [blame] | 1242 | struct lysp_feature *features_p, struct lysc_feature **features) |
Radek Krejci | 0af4629 | 2019-01-11 16:02:31 +0100 | [diff] [blame] | 1243 | { |
Radek Krejci | 011e4aa | 2020-09-04 15:22:31 +0200 | [diff] [blame] | 1244 | LY_ERR ret = LY_SUCCESS; |
Michal Vasko | fd69e1d | 2020-07-03 11:57:17 +0200 | [diff] [blame] | 1245 | LY_ARRAY_COUNT_TYPE offset = 0, u; |
Radek Krejci | 0af4629 | 2019-01-11 16:02:31 +0100 | [diff] [blame] | 1246 | struct lysc_ctx context = {0}; |
| 1247 | |
Radek Krejci | 327de16 | 2019-06-14 12:52:07 +0200 | [diff] [blame] | 1248 | assert(ctx_sc || ctx); |
| 1249 | |
| 1250 | if (!ctx_sc) { |
| 1251 | context.ctx = ctx; |
| 1252 | context.mod = module; |
| 1253 | context.path_len = 1; |
| 1254 | context.path[0] = '/'; |
| 1255 | ctx_sc = &context; |
| 1256 | } |
Radek Krejci | 0af4629 | 2019-01-11 16:02:31 +0100 | [diff] [blame] | 1257 | |
| 1258 | if (!features_p) { |
| 1259 | return LY_SUCCESS; |
| 1260 | } |
| 1261 | if (*features) { |
Michal Vasko | fd69e1d | 2020-07-03 11:57:17 +0200 | [diff] [blame] | 1262 | offset = LY_ARRAY_COUNT(*features); |
Radek Krejci | 0af4629 | 2019-01-11 16:02:31 +0100 | [diff] [blame] | 1263 | } |
| 1264 | |
Radek Krejci | 327de16 | 2019-06-14 12:52:07 +0200 | [diff] [blame] | 1265 | lysc_update_path(ctx_sc, NULL, "{feature}"); |
Michal Vasko | fd69e1d | 2020-07-03 11:57:17 +0200 | [diff] [blame] | 1266 | LY_ARRAY_CREATE_RET(ctx_sc->ctx, *features, LY_ARRAY_COUNT(features_p), LY_EMEM); |
Radek Krejci | 0af4629 | 2019-01-11 16:02:31 +0100 | [diff] [blame] | 1267 | LY_ARRAY_FOR(features_p, u) { |
Radek Krejci | 327de16 | 2019-06-14 12:52:07 +0200 | [diff] [blame] | 1268 | lysc_update_path(ctx_sc, NULL, features_p[u].name); |
| 1269 | |
Radek Krejci | 0af4629 | 2019-01-11 16:02:31 +0100 | [diff] [blame] | 1270 | LY_ARRAY_INCREMENT(*features); |
Michal Vasko | 6f4cbb6 | 2020-02-28 11:15:47 +0100 | [diff] [blame] | 1271 | COMPILE_CHECK_UNIQUENESS_ARRAY(ctx_sc, *features, name, &(*features)[offset + u], "feature", features_p[u].name); |
Radek Krejci | 011e4aa | 2020-09-04 15:22:31 +0200 | [diff] [blame] | 1272 | DUP_STRING_GOTO(ctx_sc->ctx, features_p[u].name, (*features)[offset + u].name, ret, done); |
| 1273 | DUP_STRING_GOTO(ctx_sc->ctx, features_p[u].dsc, (*features)[offset + u].dsc, ret, done); |
| 1274 | DUP_STRING_GOTO(ctx_sc->ctx, features_p[u].ref, (*features)[offset + u].ref, ret, done); |
Radek Krejci | 0af4629 | 2019-01-11 16:02:31 +0100 | [diff] [blame] | 1275 | (*features)[offset + u].flags = features_p[u].flags; |
Radek Krejci | 327de16 | 2019-06-14 12:52:07 +0200 | [diff] [blame] | 1276 | (*features)[offset + u].module = ctx_sc->mod; |
| 1277 | |
| 1278 | lysc_update_path(ctx_sc, NULL, NULL); |
Radek Krejci | 0af4629 | 2019-01-11 16:02:31 +0100 | [diff] [blame] | 1279 | } |
Radek Krejci | 327de16 | 2019-06-14 12:52:07 +0200 | [diff] [blame] | 1280 | lysc_update_path(ctx_sc, NULL, NULL); |
Radek Krejci | 0af4629 | 2019-01-11 16:02:31 +0100 | [diff] [blame] | 1281 | |
Radek Krejci | 011e4aa | 2020-09-04 15:22:31 +0200 | [diff] [blame] | 1282 | done: |
| 1283 | return ret; |
Radek Krejci | 0af4629 | 2019-01-11 16:02:31 +0100 | [diff] [blame] | 1284 | } |
| 1285 | |
Radek Krejci | a304538 | 2018-11-22 14:30:31 +0100 | [diff] [blame] | 1286 | /** |
Radek Krejci | 09a1fc5 | 2019-02-13 10:55:17 +0100 | [diff] [blame] | 1287 | * @brief Check circular dependency of features - feature MUST NOT reference itself (via their if-feature statement). |
Radek Krejci | b56c750 | 2019-02-13 14:19:54 +0100 | [diff] [blame] | 1288 | * |
| 1289 | * The function works in the same way as lys_compile_identity_circular_check() with different structures and error messages. |
| 1290 | * |
Radek Krejci | 09a1fc5 | 2019-02-13 10:55:17 +0100 | [diff] [blame] | 1291 | * @param[in] ctx Compile context for logging. |
Radek Krejci | b56c750 | 2019-02-13 14:19:54 +0100 | [diff] [blame] | 1292 | * @param[in] feature The feature referenced in if-feature statement (its depfeatures list is being extended by the feature |
| 1293 | * being currently processed). |
| 1294 | * @param[in] depfeatures The list of depending features of the feature being currently processed (not the one provided as @p feature) |
Radek Krejci | 09a1fc5 | 2019-02-13 10:55:17 +0100 | [diff] [blame] | 1295 | * @return LY_SUCCESS if everything is ok. |
| 1296 | * @return LY_EVALID if the feature references indirectly itself. |
| 1297 | */ |
| 1298 | static LY_ERR |
| 1299 | lys_compile_feature_circular_check(struct lysc_ctx *ctx, struct lysc_feature *feature, struct lysc_feature **depfeatures) |
| 1300 | { |
Radek Krejci | ba03a5a | 2020-08-27 14:40:41 +0200 | [diff] [blame] | 1301 | LY_ERR ret = LY_SUCCESS; |
Michal Vasko | fd69e1d | 2020-07-03 11:57:17 +0200 | [diff] [blame] | 1302 | LY_ARRAY_COUNT_TYPE u, v; |
Radek Krejci | 09a1fc5 | 2019-02-13 10:55:17 +0100 | [diff] [blame] | 1303 | struct ly_set recursion = {0}; |
| 1304 | struct lysc_feature *drv; |
| 1305 | |
| 1306 | if (!depfeatures) { |
| 1307 | return LY_SUCCESS; |
| 1308 | } |
| 1309 | |
Michal Vasko | fd69e1d | 2020-07-03 11:57:17 +0200 | [diff] [blame] | 1310 | for (u = 0; u < LY_ARRAY_COUNT(depfeatures); ++u) { |
Radek Krejci | 09a1fc5 | 2019-02-13 10:55:17 +0100 | [diff] [blame] | 1311 | if (feature == depfeatures[u]) { |
| 1312 | LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_REFERENCE, |
| 1313 | "Feature \"%s\" is indirectly referenced from itself.", feature->name); |
Radek Krejci | ba03a5a | 2020-08-27 14:40:41 +0200 | [diff] [blame] | 1314 | ret = LY_EVALID; |
Radek Krejci | 09a1fc5 | 2019-02-13 10:55:17 +0100 | [diff] [blame] | 1315 | goto cleanup; |
| 1316 | } |
Radek Krejci | ba03a5a | 2020-08-27 14:40:41 +0200 | [diff] [blame] | 1317 | ret = ly_set_add(&recursion, depfeatures[u], 0, NULL); |
| 1318 | LY_CHECK_GOTO(ret, cleanup); |
Radek Krejci | 09a1fc5 | 2019-02-13 10:55:17 +0100 | [diff] [blame] | 1319 | } |
| 1320 | |
| 1321 | for (v = 0; v < recursion.count; ++v) { |
| 1322 | drv = recursion.objs[v]; |
| 1323 | if (!drv->depfeatures) { |
| 1324 | continue; |
| 1325 | } |
Michal Vasko | fd69e1d | 2020-07-03 11:57:17 +0200 | [diff] [blame] | 1326 | for (u = 0; u < LY_ARRAY_COUNT(drv->depfeatures); ++u) { |
Radek Krejci | 09a1fc5 | 2019-02-13 10:55:17 +0100 | [diff] [blame] | 1327 | if (feature == drv->depfeatures[u]) { |
| 1328 | LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_REFERENCE, |
| 1329 | "Feature \"%s\" is indirectly referenced from itself.", feature->name); |
Radek Krejci | ba03a5a | 2020-08-27 14:40:41 +0200 | [diff] [blame] | 1330 | ret = LY_EVALID; |
Radek Krejci | 09a1fc5 | 2019-02-13 10:55:17 +0100 | [diff] [blame] | 1331 | goto cleanup; |
| 1332 | } |
Radek Krejci | ba03a5a | 2020-08-27 14:40:41 +0200 | [diff] [blame] | 1333 | ly_set_add(&recursion, drv->depfeatures[u], 0, NULL); |
| 1334 | LY_CHECK_GOTO(ret, cleanup); |
Radek Krejci | 09a1fc5 | 2019-02-13 10:55:17 +0100 | [diff] [blame] | 1335 | } |
| 1336 | } |
Radek Krejci | 09a1fc5 | 2019-02-13 10:55:17 +0100 | [diff] [blame] | 1337 | |
| 1338 | cleanup: |
| 1339 | ly_set_erase(&recursion, NULL); |
| 1340 | return ret; |
| 1341 | } |
| 1342 | |
| 1343 | /** |
Radek Krejci | 0af4629 | 2019-01-11 16:02:31 +0100 | [diff] [blame] | 1344 | * @brief Create pre-compiled features array. |
| 1345 | * |
| 1346 | * See lys_feature_precompile() for more details. |
| 1347 | * |
Radek Krejci | a304538 | 2018-11-22 14:30:31 +0100 | [diff] [blame] | 1348 | * @param[in] ctx Compile context. |
| 1349 | * @param[in] feature_p Parsed feature definition to compile. |
Radek Krejci | 0af4629 | 2019-01-11 16:02:31 +0100 | [diff] [blame] | 1350 | * @param[in,out] features List of already (pre)compiled features to find the corresponding precompiled feature structure. |
Radek Krejci | a304538 | 2018-11-22 14:30:31 +0100 | [diff] [blame] | 1351 | * @return LY_ERR value. |
| 1352 | */ |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 1353 | static LY_ERR |
Radek Krejci | ec4da80 | 2019-05-02 13:02:41 +0200 | [diff] [blame] | 1354 | lys_feature_precompile_finish(struct lysc_ctx *ctx, struct lysp_feature *feature_p, struct lysc_feature *features) |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 1355 | { |
Michal Vasko | fd69e1d | 2020-07-03 11:57:17 +0200 | [diff] [blame] | 1356 | LY_ARRAY_COUNT_TYPE u, v, x; |
Radek Krejci | 0af4629 | 2019-01-11 16:02:31 +0100 | [diff] [blame] | 1357 | struct lysc_feature *feature, **df; |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 1358 | LY_ERR ret = LY_SUCCESS; |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 1359 | |
Radek Krejci | 0af4629 | 2019-01-11 16:02:31 +0100 | [diff] [blame] | 1360 | /* find the preprecompiled feature */ |
| 1361 | LY_ARRAY_FOR(features, x) { |
| 1362 | if (strcmp(features[x].name, feature_p->name)) { |
| 1363 | continue; |
| 1364 | } |
| 1365 | feature = &features[x]; |
Radek Krejci | 327de16 | 2019-06-14 12:52:07 +0200 | [diff] [blame] | 1366 | lysc_update_path(ctx, NULL, "{feature}"); |
| 1367 | lysc_update_path(ctx, NULL, feature_p->name); |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 1368 | |
Radek Krejci | 0af4629 | 2019-01-11 16:02:31 +0100 | [diff] [blame] | 1369 | /* finish compilation started in lys_feature_precompile() */ |
Radek Krejci | 0935f41 | 2019-08-20 16:15:18 +0200 | [diff] [blame] | 1370 | COMPILE_EXTS_GOTO(ctx, feature_p->exts, feature->exts, feature, LYEXT_PAR_FEATURE, ret, done); |
Radek Krejci | ec4da80 | 2019-05-02 13:02:41 +0200 | [diff] [blame] | 1371 | COMPILE_ARRAY_GOTO(ctx, feature_p->iffeatures, feature->iffeatures, u, lys_compile_iffeature, ret, done); |
Radek Krejci | 0af4629 | 2019-01-11 16:02:31 +0100 | [diff] [blame] | 1372 | if (feature->iffeatures) { |
Michal Vasko | fd69e1d | 2020-07-03 11:57:17 +0200 | [diff] [blame] | 1373 | for (u = 0; u < LY_ARRAY_COUNT(feature->iffeatures); ++u) { |
Radek Krejci | 0af4629 | 2019-01-11 16:02:31 +0100 | [diff] [blame] | 1374 | if (feature->iffeatures[u].features) { |
Michal Vasko | fd69e1d | 2020-07-03 11:57:17 +0200 | [diff] [blame] | 1375 | for (v = 0; v < LY_ARRAY_COUNT(feature->iffeatures[u].features); ++v) { |
Radek Krejci | 09a1fc5 | 2019-02-13 10:55:17 +0100 | [diff] [blame] | 1376 | /* check for circular dependency - direct reference first,... */ |
| 1377 | if (feature == feature->iffeatures[u].features[v]) { |
| 1378 | LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_REFERENCE, |
| 1379 | "Feature \"%s\" is referenced from itself.", feature->name); |
| 1380 | return LY_EVALID; |
| 1381 | } |
| 1382 | /* ... and indirect circular reference */ |
| 1383 | LY_CHECK_RET(lys_compile_feature_circular_check(ctx, feature->iffeatures[u].features[v], feature->depfeatures)); |
| 1384 | |
Radek Krejci | 0af4629 | 2019-01-11 16:02:31 +0100 | [diff] [blame] | 1385 | /* add itself into the dependants list */ |
| 1386 | LY_ARRAY_NEW_RET(ctx->ctx, feature->iffeatures[u].features[v]->depfeatures, df, LY_EMEM); |
| 1387 | *df = feature; |
| 1388 | } |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 1389 | } |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 1390 | } |
| 1391 | } |
Radek Krejci | 327de16 | 2019-06-14 12:52:07 +0200 | [diff] [blame] | 1392 | lysc_update_path(ctx, NULL, NULL); |
| 1393 | lysc_update_path(ctx, NULL, NULL); |
Radek Krejci | 0af4629 | 2019-01-11 16:02:31 +0100 | [diff] [blame] | 1394 | done: |
| 1395 | return ret; |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 1396 | } |
Radek Krejci | 0af4629 | 2019-01-11 16:02:31 +0100 | [diff] [blame] | 1397 | |
| 1398 | LOGINT(ctx->ctx); |
| 1399 | return LY_EINT; |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 1400 | } |
| 1401 | |
Radek Krejci | b56c750 | 2019-02-13 14:19:54 +0100 | [diff] [blame] | 1402 | /** |
| 1403 | * @brief Revert compiled list of features back to the precompiled state. |
| 1404 | * |
| 1405 | * Function is needed in case the compilation failed and the schema is expected to revert back to the non-compiled status. |
Radek Krejci | b56c750 | 2019-02-13 14:19:54 +0100 | [diff] [blame] | 1406 | * |
| 1407 | * @param[in] ctx Compilation context. |
Michal Vasko | 7f45cf2 | 2020-10-01 12:49:44 +0200 | [diff] [blame] | 1408 | * @param[in] mod The module structure with the features to decompile. |
Radek Krejci | b56c750 | 2019-02-13 14:19:54 +0100 | [diff] [blame] | 1409 | */ |
Radek Krejci | 95710c9 | 2019-02-11 15:49:55 +0100 | [diff] [blame] | 1410 | static void |
| 1411 | lys_feature_precompile_revert(struct lysc_ctx *ctx, struct lys_module *mod) |
| 1412 | { |
Michal Vasko | fd69e1d | 2020-07-03 11:57:17 +0200 | [diff] [blame] | 1413 | LY_ARRAY_COUNT_TYPE u, v; |
Radek Krejci | 95710c9 | 2019-02-11 15:49:55 +0100 | [diff] [blame] | 1414 | |
Michal Vasko | 33ff942 | 2020-07-03 09:50:39 +0200 | [diff] [blame] | 1415 | /* in the dis_features list, remove all the parts (from finished compiling process) |
Radek Krejci | 95710c9 | 2019-02-11 15:49:55 +0100 | [diff] [blame] | 1416 | * which may points into the data being freed here */ |
Radek Krejci | 14915cc | 2020-09-14 17:28:13 +0200 | [diff] [blame] | 1417 | LY_ARRAY_FOR(mod->features, u) { |
| 1418 | LY_ARRAY_FOR(mod->features[u].iffeatures, v) { |
| 1419 | lysc_iffeature_free(ctx->ctx, &mod->features[u].iffeatures[v]); |
Radek Krejci | 95710c9 | 2019-02-11 15:49:55 +0100 | [diff] [blame] | 1420 | } |
Radek Krejci | 14915cc | 2020-09-14 17:28:13 +0200 | [diff] [blame] | 1421 | LY_ARRAY_FREE(mod->features[u].iffeatures); |
| 1422 | mod->features[u].iffeatures = NULL; |
Radek Krejci | 95710c9 | 2019-02-11 15:49:55 +0100 | [diff] [blame] | 1423 | |
Radek Krejci | 14915cc | 2020-09-14 17:28:13 +0200 | [diff] [blame] | 1424 | LY_ARRAY_FOR(mod->features[u].exts, v) { |
| 1425 | lysc_ext_instance_free(ctx->ctx, &(mod->features[u].exts)[v]); |
Radek Krejci | 95710c9 | 2019-02-11 15:49:55 +0100 | [diff] [blame] | 1426 | } |
Radek Krejci | 14915cc | 2020-09-14 17:28:13 +0200 | [diff] [blame] | 1427 | LY_ARRAY_FREE(mod->features[u].exts); |
| 1428 | mod->features[u].exts = NULL; |
Radek Krejci | 95710c9 | 2019-02-11 15:49:55 +0100 | [diff] [blame] | 1429 | } |
| 1430 | } |
| 1431 | |
Radek Krejci | a304538 | 2018-11-22 14:30:31 +0100 | [diff] [blame] | 1432 | /** |
| 1433 | * @brief Validate and normalize numeric value from a range definition. |
| 1434 | * @param[in] ctx Compile context. |
| 1435 | * @param[in] basetype Base YANG built-in type of the node connected with the range restriction. Actually only LY_TYPE_DEC64 is important to |
| 1436 | * allow processing of the fractions. The fraction point is extracted from the value which is then normalize according to given frdigits into |
| 1437 | * valcopy to allow easy parsing and storing of the value. libyang stores decimal number without the decimal point which is always recovered from |
| 1438 | * the known fraction-digits value. So, with fraction-digits 2, number 3.14 is stored as 314 and number 1 is stored as 100. |
| 1439 | * @param[in] frdigits The fraction-digits of the type in case of LY_TYPE_DEC64. |
| 1440 | * @param[in] value String value of the range boundary. |
| 1441 | * @param[out] len Number of the processed bytes from the value. Processing stops on the first character which is not part of the number boundary. |
| 1442 | * @param[out] valcopy NULL-terminated string with the numeric value to parse and store. |
| 1443 | * @return LY_ERR value - LY_SUCCESS, LY_EMEM, LY_EVALID (no number) or LY_EINVAL (decimal64 not matching fraction-digits value). |
| 1444 | */ |
Radek Krejci | e88beef | 2019-05-30 15:47:19 +0200 | [diff] [blame] | 1445 | LY_ERR |
Radek Krejci | 6cba429 | 2018-11-15 17:33:29 +0100 | [diff] [blame] | 1446 | range_part_check_value_syntax(struct lysc_ctx *ctx, LY_DATA_TYPE basetype, uint8_t frdigits, const char *value, size_t *len, char **valcopy) |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 1447 | { |
Radek Krejci | 6cba429 | 2018-11-15 17:33:29 +0100 | [diff] [blame] | 1448 | size_t fraction = 0, size; |
| 1449 | |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 1450 | *len = 0; |
| 1451 | |
| 1452 | assert(value); |
| 1453 | /* parse value */ |
| 1454 | if (!isdigit(value[*len]) && (value[*len] != '-') && (value[*len] != '+')) { |
| 1455 | return LY_EVALID; |
| 1456 | } |
| 1457 | |
| 1458 | if ((value[*len] == '-') || (value[*len] == '+')) { |
| 1459 | ++(*len); |
| 1460 | } |
| 1461 | |
| 1462 | while (isdigit(value[*len])) { |
| 1463 | ++(*len); |
| 1464 | } |
| 1465 | |
| 1466 | if ((basetype != LY_TYPE_DEC64) || (value[*len] != '.') || !isdigit(value[*len + 1])) { |
Radek Krejci | 6cba429 | 2018-11-15 17:33:29 +0100 | [diff] [blame] | 1467 | if (basetype == LY_TYPE_DEC64) { |
| 1468 | goto decimal; |
| 1469 | } else { |
| 1470 | *valcopy = strndup(value, *len); |
| 1471 | return LY_SUCCESS; |
| 1472 | } |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 1473 | } |
| 1474 | fraction = *len; |
| 1475 | |
| 1476 | ++(*len); |
| 1477 | while (isdigit(value[*len])) { |
| 1478 | ++(*len); |
| 1479 | } |
| 1480 | |
Radek Krejci | 6cba429 | 2018-11-15 17:33:29 +0100 | [diff] [blame] | 1481 | if (basetype == LY_TYPE_DEC64) { |
| 1482 | decimal: |
| 1483 | assert(frdigits); |
Radek Krejci | 943177f | 2019-06-14 16:32:43 +0200 | [diff] [blame] | 1484 | if (fraction && (*len - 1 - fraction > frdigits)) { |
Radek Krejci | 6cba429 | 2018-11-15 17:33:29 +0100 | [diff] [blame] | 1485 | LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SYNTAX_YANG, |
| 1486 | "Range boundary \"%.*s\" of decimal64 type exceeds defined number (%u) of fraction digits.", |
| 1487 | *len, value, frdigits); |
| 1488 | return LY_EINVAL; |
| 1489 | } |
| 1490 | if (fraction) { |
| 1491 | size = (*len) + (frdigits - ((*len) - 1 - fraction)); |
| 1492 | } else { |
| 1493 | size = (*len) + frdigits + 1; |
| 1494 | } |
| 1495 | *valcopy = malloc(size * sizeof **valcopy); |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 1496 | LY_CHECK_ERR_RET(!(*valcopy), LOGMEM(ctx->ctx), LY_EMEM); |
| 1497 | |
Radek Krejci | 6cba429 | 2018-11-15 17:33:29 +0100 | [diff] [blame] | 1498 | (*valcopy)[size - 1] = '\0'; |
| 1499 | if (fraction) { |
| 1500 | memcpy(&(*valcopy)[0], &value[0], fraction); |
| 1501 | memcpy(&(*valcopy)[fraction], &value[fraction + 1], (*len) - 1 - (fraction)); |
| 1502 | memset(&(*valcopy)[(*len) - 1], '0', frdigits - ((*len) - 1 - fraction)); |
| 1503 | } else { |
| 1504 | memcpy(&(*valcopy)[0], &value[0], *len); |
| 1505 | memset(&(*valcopy)[*len], '0', frdigits); |
| 1506 | } |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 1507 | } |
| 1508 | return LY_SUCCESS; |
| 1509 | } |
| 1510 | |
Radek Krejci | a304538 | 2018-11-22 14:30:31 +0100 | [diff] [blame] | 1511 | /** |
| 1512 | * @brief Check that values in range are in ascendant order. |
| 1513 | * @param[in] unsigned_value Flag to note that we are working with unsigned values. |
Radek Krejci | 5969f27 | 2018-11-23 10:03:58 +0100 | [diff] [blame] | 1514 | * @param[in] max Flag to distinguish if checking min or max value. min value must be strictly higher than previous, |
| 1515 | * max can be also equal. |
Radek Krejci | a304538 | 2018-11-22 14:30:31 +0100 | [diff] [blame] | 1516 | * @param[in] value Current value to check. |
| 1517 | * @param[in] prev_value The last seen value. |
| 1518 | * @return LY_SUCCESS or LY_EEXIST for invalid order. |
| 1519 | */ |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 1520 | static LY_ERR |
Radek Krejci | 857189e | 2020-09-01 13:26:36 +0200 | [diff] [blame] | 1521 | range_part_check_ascendancy(ly_bool unsigned_value, ly_bool max, int64_t value, int64_t prev_value) |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 1522 | { |
| 1523 | if (unsigned_value) { |
Radek Krejci | 5969f27 | 2018-11-23 10:03:58 +0100 | [diff] [blame] | 1524 | if ((max && (uint64_t)prev_value > (uint64_t)value) || (!max && (uint64_t)prev_value >= (uint64_t)value)) { |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 1525 | return LY_EEXIST; |
| 1526 | } |
| 1527 | } else { |
Radek Krejci | 5969f27 | 2018-11-23 10:03:58 +0100 | [diff] [blame] | 1528 | if ((max && prev_value > value) || (!max && prev_value >= value)) { |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 1529 | return LY_EEXIST; |
| 1530 | } |
| 1531 | } |
| 1532 | return LY_SUCCESS; |
| 1533 | } |
| 1534 | |
Radek Krejci | a304538 | 2018-11-22 14:30:31 +0100 | [diff] [blame] | 1535 | /** |
| 1536 | * @brief Set min/max value of the range part. |
| 1537 | * @param[in] ctx Compile context. |
| 1538 | * @param[in] part Range part structure to fill. |
| 1539 | * @param[in] max Flag to distinguish if storing min or max value. |
| 1540 | * @param[in] prev The last seen value to check that all values in range are specified in ascendant order. |
| 1541 | * @param[in] basetype Type of the value to get know implicit min/max values and other checking rules. |
| 1542 | * @param[in] first Flag for the first value of the range to avoid ascendancy order. |
| 1543 | * @param[in] length_restr Flag to distinguish between range and length restrictions. Only for logging. |
| 1544 | * @param[in] frdigits The fraction-digits value in case of LY_TYPE_DEC64 basetype. |
Radek Krejci | 5969f27 | 2018-11-23 10:03:58 +0100 | [diff] [blame] | 1545 | * @param[in] base_range Range from the type from which the current type is derived (if not built-in) to get type's min and max values. |
Radek Krejci | a304538 | 2018-11-22 14:30:31 +0100 | [diff] [blame] | 1546 | * @param[in,out] value Numeric range value to be stored, if not provided the type's min/max value is set. |
| 1547 | * @return LY_ERR value - LY_SUCCESS, LY_EDENIED (value brokes type's boundaries), LY_EVALID (not a number), |
| 1548 | * LY_EEXIST (value is smaller than the previous one), LY_EINVAL (decimal64 value does not corresponds with the |
| 1549 | * frdigits value), LY_EMEM. |
| 1550 | */ |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 1551 | static LY_ERR |
Radek Krejci | 857189e | 2020-09-01 13:26:36 +0200 | [diff] [blame] | 1552 | range_part_minmax(struct lysc_ctx *ctx, struct lysc_range_part *part, ly_bool max, int64_t prev, LY_DATA_TYPE basetype, |
| 1553 | ly_bool first, ly_bool length_restr, uint8_t frdigits, struct lysc_range *base_range, const char **value) |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 1554 | { |
| 1555 | LY_ERR ret = LY_SUCCESS; |
| 1556 | char *valcopy = NULL; |
| 1557 | size_t len; |
| 1558 | |
| 1559 | if (value) { |
Radek Krejci | 6cba429 | 2018-11-15 17:33:29 +0100 | [diff] [blame] | 1560 | ret = range_part_check_value_syntax(ctx, basetype, frdigits, *value, &len, &valcopy); |
Radek Krejci | 5969f27 | 2018-11-23 10:03:58 +0100 | [diff] [blame] | 1561 | LY_CHECK_GOTO(ret, finalize); |
| 1562 | } |
| 1563 | if (!valcopy && base_range) { |
| 1564 | if (max) { |
Michal Vasko | fd69e1d | 2020-07-03 11:57:17 +0200 | [diff] [blame] | 1565 | part->max_64 = base_range->parts[LY_ARRAY_COUNT(base_range->parts) - 1].max_64; |
Radek Krejci | 5969f27 | 2018-11-23 10:03:58 +0100 | [diff] [blame] | 1566 | } else { |
| 1567 | part->min_64 = base_range->parts[0].min_64; |
| 1568 | } |
| 1569 | if (!first) { |
| 1570 | ret = range_part_check_ascendancy(basetype <= LY_TYPE_STRING ? 1 : 0, max, max ? part->max_64 : part->min_64, prev); |
| 1571 | } |
| 1572 | goto finalize; |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 1573 | } |
| 1574 | |
| 1575 | switch (basetype) { |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 1576 | case LY_TYPE_INT8: /* range */ |
| 1577 | if (valcopy) { |
Radek Krejci | 249973a | 2019-06-10 10:50:54 +0200 | [diff] [blame] | 1578 | ret = ly_parse_int(valcopy, strlen(valcopy), INT64_C(-128), INT64_C(127), 10, max ? &part->max_64 : &part->min_64); |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 1579 | } else if (max) { |
| 1580 | part->max_64 = INT64_C(127); |
| 1581 | } else { |
| 1582 | part->min_64 = INT64_C(-128); |
| 1583 | } |
Radek Krejci | 6cba429 | 2018-11-15 17:33:29 +0100 | [diff] [blame] | 1584 | if (!ret && !first) { |
Radek Krejci | 5969f27 | 2018-11-23 10:03:58 +0100 | [diff] [blame] | 1585 | ret = range_part_check_ascendancy(0, max, max ? part->max_64 : part->min_64, prev); |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 1586 | } |
| 1587 | break; |
| 1588 | case LY_TYPE_INT16: /* range */ |
| 1589 | if (valcopy) { |
Radek Krejci | 249973a | 2019-06-10 10:50:54 +0200 | [diff] [blame] | 1590 | ret = ly_parse_int(valcopy, strlen(valcopy), INT64_C(-32768), INT64_C(32767), 10, max ? &part->max_64 : &part->min_64); |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 1591 | } else if (max) { |
| 1592 | part->max_64 = INT64_C(32767); |
| 1593 | } else { |
| 1594 | part->min_64 = INT64_C(-32768); |
| 1595 | } |
Radek Krejci | 6cba429 | 2018-11-15 17:33:29 +0100 | [diff] [blame] | 1596 | if (!ret && !first) { |
Radek Krejci | 5969f27 | 2018-11-23 10:03:58 +0100 | [diff] [blame] | 1597 | ret = range_part_check_ascendancy(0, max, max ? part->max_64 : part->min_64, prev); |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 1598 | } |
| 1599 | break; |
| 1600 | case LY_TYPE_INT32: /* range */ |
| 1601 | if (valcopy) { |
Radek Krejci | 249973a | 2019-06-10 10:50:54 +0200 | [diff] [blame] | 1602 | ret = ly_parse_int(valcopy, strlen(valcopy), INT64_C(-2147483648), INT64_C(2147483647), 10, max ? &part->max_64 : &part->min_64); |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 1603 | } else if (max) { |
| 1604 | part->max_64 = INT64_C(2147483647); |
| 1605 | } else { |
| 1606 | part->min_64 = INT64_C(-2147483648); |
| 1607 | } |
Radek Krejci | 6cba429 | 2018-11-15 17:33:29 +0100 | [diff] [blame] | 1608 | if (!ret && !first) { |
Radek Krejci | 5969f27 | 2018-11-23 10:03:58 +0100 | [diff] [blame] | 1609 | ret = range_part_check_ascendancy(0, max, max ? part->max_64 : part->min_64, prev); |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 1610 | } |
| 1611 | break; |
| 1612 | case LY_TYPE_INT64: /* range */ |
Radek Krejci | 25cfef7 | 2018-11-23 14:15:52 +0100 | [diff] [blame] | 1613 | case LY_TYPE_DEC64: /* range */ |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 1614 | if (valcopy) { |
Radek Krejci | 249973a | 2019-06-10 10:50:54 +0200 | [diff] [blame] | 1615 | ret = ly_parse_int(valcopy, strlen(valcopy), INT64_C(-9223372036854775807) - INT64_C(1), INT64_C(9223372036854775807), 10, |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 1616 | max ? &part->max_64 : &part->min_64); |
| 1617 | } else if (max) { |
| 1618 | part->max_64 = INT64_C(9223372036854775807); |
| 1619 | } else { |
| 1620 | part->min_64 = INT64_C(-9223372036854775807) - INT64_C(1); |
| 1621 | } |
Radek Krejci | 6cba429 | 2018-11-15 17:33:29 +0100 | [diff] [blame] | 1622 | if (!ret && !first) { |
Radek Krejci | 5969f27 | 2018-11-23 10:03:58 +0100 | [diff] [blame] | 1623 | ret = range_part_check_ascendancy(0, max, max ? part->max_64 : part->min_64, prev); |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 1624 | } |
| 1625 | break; |
| 1626 | case LY_TYPE_UINT8: /* range */ |
| 1627 | if (valcopy) { |
Radek Krejci | 249973a | 2019-06-10 10:50:54 +0200 | [diff] [blame] | 1628 | ret = ly_parse_uint(valcopy, strlen(valcopy), UINT64_C(255), 10, max ? &part->max_u64 : &part->min_u64); |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 1629 | } else if (max) { |
| 1630 | part->max_u64 = UINT64_C(255); |
| 1631 | } else { |
| 1632 | part->min_u64 = UINT64_C(0); |
| 1633 | } |
Radek Krejci | 6cba429 | 2018-11-15 17:33:29 +0100 | [diff] [blame] | 1634 | if (!ret && !first) { |
Radek Krejci | 5969f27 | 2018-11-23 10:03:58 +0100 | [diff] [blame] | 1635 | ret = range_part_check_ascendancy(1, max, max ? part->max_64 : part->min_64, prev); |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 1636 | } |
| 1637 | break; |
| 1638 | case LY_TYPE_UINT16: /* range */ |
| 1639 | if (valcopy) { |
Radek Krejci | 249973a | 2019-06-10 10:50:54 +0200 | [diff] [blame] | 1640 | ret = ly_parse_uint(valcopy, strlen(valcopy), UINT64_C(65535), 10, max ? &part->max_u64 : &part->min_u64); |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 1641 | } else if (max) { |
| 1642 | part->max_u64 = UINT64_C(65535); |
| 1643 | } else { |
| 1644 | part->min_u64 = UINT64_C(0); |
| 1645 | } |
Radek Krejci | 6cba429 | 2018-11-15 17:33:29 +0100 | [diff] [blame] | 1646 | if (!ret && !first) { |
Radek Krejci | 5969f27 | 2018-11-23 10:03:58 +0100 | [diff] [blame] | 1647 | ret = range_part_check_ascendancy(1, max, max ? part->max_64 : part->min_64, prev); |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 1648 | } |
| 1649 | break; |
| 1650 | case LY_TYPE_UINT32: /* range */ |
| 1651 | if (valcopy) { |
Radek Krejci | 249973a | 2019-06-10 10:50:54 +0200 | [diff] [blame] | 1652 | ret = ly_parse_uint(valcopy, strlen(valcopy), UINT64_C(4294967295), 10, max ? &part->max_u64 : &part->min_u64); |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 1653 | } else if (max) { |
| 1654 | part->max_u64 = UINT64_C(4294967295); |
| 1655 | } else { |
| 1656 | part->min_u64 = UINT64_C(0); |
| 1657 | } |
Radek Krejci | 6cba429 | 2018-11-15 17:33:29 +0100 | [diff] [blame] | 1658 | if (!ret && !first) { |
Radek Krejci | 5969f27 | 2018-11-23 10:03:58 +0100 | [diff] [blame] | 1659 | ret = range_part_check_ascendancy(1, max, max ? part->max_64 : part->min_64, prev); |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 1660 | } |
| 1661 | break; |
| 1662 | case LY_TYPE_UINT64: /* range */ |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 1663 | case LY_TYPE_STRING: /* length */ |
Radek Krejci | 25cfef7 | 2018-11-23 14:15:52 +0100 | [diff] [blame] | 1664 | case LY_TYPE_BINARY: /* length */ |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 1665 | if (valcopy) { |
Radek Krejci | 249973a | 2019-06-10 10:50:54 +0200 | [diff] [blame] | 1666 | ret = ly_parse_uint(valcopy, strlen(valcopy), UINT64_C(18446744073709551615), 10, max ? &part->max_u64 : &part->min_u64); |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 1667 | } else if (max) { |
| 1668 | part->max_u64 = UINT64_C(18446744073709551615); |
| 1669 | } else { |
| 1670 | part->min_u64 = UINT64_C(0); |
| 1671 | } |
Radek Krejci | 6cba429 | 2018-11-15 17:33:29 +0100 | [diff] [blame] | 1672 | if (!ret && !first) { |
Radek Krejci | 5969f27 | 2018-11-23 10:03:58 +0100 | [diff] [blame] | 1673 | ret = range_part_check_ascendancy(1, max, max ? part->max_64 : part->min_64, prev); |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 1674 | } |
| 1675 | break; |
| 1676 | default: |
| 1677 | LOGINT(ctx->ctx); |
| 1678 | ret = LY_EINT; |
| 1679 | } |
| 1680 | |
Radek Krejci | 5969f27 | 2018-11-23 10:03:58 +0100 | [diff] [blame] | 1681 | finalize: |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 1682 | if (ret == LY_EDENIED) { |
| 1683 | LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SYNTAX_YANG, |
| 1684 | "Invalid %s restriction - value \"%s\" does not fit the type limitations.", |
| 1685 | length_restr ? "length" : "range", valcopy ? valcopy : *value); |
| 1686 | } else if (ret == LY_EVALID) { |
| 1687 | LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SYNTAX_YANG, |
| 1688 | "Invalid %s restriction - invalid value \"%s\".", |
| 1689 | length_restr ? "length" : "range", valcopy ? valcopy : *value); |
| 1690 | } else if (ret == LY_EEXIST) { |
| 1691 | LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SYNTAX_YANG, |
| 1692 | "Invalid %s restriction - values are not in ascending order (%s).", |
Radek Krejci | 6cba429 | 2018-11-15 17:33:29 +0100 | [diff] [blame] | 1693 | length_restr ? "length" : "range", |
Radek Krejci | 0f96988 | 2020-08-21 16:56:47 +0200 | [diff] [blame] | 1694 | (valcopy && basetype != LY_TYPE_DEC64) ? valcopy : value ? *value : max ? "max" : "min"); |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 1695 | } else if (!ret && value) { |
| 1696 | *value = *value + len; |
| 1697 | } |
| 1698 | free(valcopy); |
| 1699 | return ret; |
| 1700 | } |
| 1701 | |
Radek Krejci | a304538 | 2018-11-22 14:30:31 +0100 | [diff] [blame] | 1702 | /** |
| 1703 | * @brief Compile the parsed range restriction. |
| 1704 | * @param[in] ctx Compile context. |
| 1705 | * @param[in] range_p Parsed range structure to compile. |
| 1706 | * @param[in] basetype Base YANG built-in type of the node with the range restriction. |
| 1707 | * @param[in] length_restr Flag to distinguish between range and length restrictions. Only for logging. |
| 1708 | * @param[in] frdigits The fraction-digits value in case of LY_TYPE_DEC64 basetype. |
| 1709 | * @param[in] base_range Range restriction of the type from which the current type is derived. The current |
| 1710 | * range restriction must be more restrictive than the base_range. |
| 1711 | * @param[in,out] range Pointer to the created current range structure. |
| 1712 | * @return LY_ERR value. |
| 1713 | */ |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 1714 | static LY_ERR |
Radek Krejci | 857189e | 2020-09-01 13:26:36 +0200 | [diff] [blame] | 1715 | lys_compile_type_range(struct lysc_ctx *ctx, struct lysp_restr *range_p, LY_DATA_TYPE basetype, ly_bool length_restr, |
Radek Krejci | 0f96988 | 2020-08-21 16:56:47 +0200 | [diff] [blame] | 1716 | uint8_t frdigits, struct lysc_range *base_range, struct lysc_range **range) |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 1717 | { |
| 1718 | LY_ERR ret = LY_EVALID; |
| 1719 | const char *expr; |
| 1720 | struct lysc_range_part *parts = NULL, *part; |
Radek Krejci | 857189e | 2020-09-01 13:26:36 +0200 | [diff] [blame] | 1721 | ly_bool range_expected = 0, uns; |
Michal Vasko | fd69e1d | 2020-07-03 11:57:17 +0200 | [diff] [blame] | 1722 | LY_ARRAY_COUNT_TYPE parts_done = 0, u, v; |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 1723 | |
| 1724 | assert(range); |
| 1725 | assert(range_p); |
| 1726 | |
Michal Vasko | 7f45cf2 | 2020-10-01 12:49:44 +0200 | [diff] [blame] | 1727 | expr = range_p->arg.str; |
Michal Vasko | d989ba0 | 2020-08-24 10:59:24 +0200 | [diff] [blame] | 1728 | while (1) { |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 1729 | if (isspace(*expr)) { |
| 1730 | ++expr; |
| 1731 | } else if (*expr == '\0') { |
| 1732 | if (range_expected) { |
| 1733 | LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SYNTAX_YANG, |
| 1734 | "Invalid %s restriction - unexpected end of the expression after \"..\" (%s).", |
| 1735 | length_restr ? "length" : "range", range_p->arg); |
| 1736 | goto cleanup; |
Michal Vasko | fd69e1d | 2020-07-03 11:57:17 +0200 | [diff] [blame] | 1737 | } else if (!parts || parts_done == LY_ARRAY_COUNT(parts)) { |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 1738 | LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SYNTAX_YANG, |
| 1739 | "Invalid %s restriction - unexpected end of the expression (%s).", |
| 1740 | length_restr ? "length" : "range", range_p->arg); |
| 1741 | goto cleanup; |
| 1742 | } |
| 1743 | parts_done++; |
| 1744 | break; |
| 1745 | } else if (!strncmp(expr, "min", 3)) { |
| 1746 | if (parts) { |
| 1747 | /* min cannot be used elsewhere than in the first part */ |
| 1748 | LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SYNTAX_YANG, |
| 1749 | "Invalid %s restriction - unexpected data before min keyword (%.*s).", length_restr ? "length" : "range", |
Michal Vasko | 7f45cf2 | 2020-10-01 12:49:44 +0200 | [diff] [blame] | 1750 | expr - range_p->arg.str, range_p->arg.str); |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 1751 | goto cleanup; |
| 1752 | } |
| 1753 | expr += 3; |
| 1754 | |
| 1755 | LY_ARRAY_NEW_GOTO(ctx->ctx, parts, part, ret, cleanup); |
Radek Krejci | 5969f27 | 2018-11-23 10:03:58 +0100 | [diff] [blame] | 1756 | LY_CHECK_GOTO(range_part_minmax(ctx, part, 0, 0, basetype, 1, length_restr, frdigits, base_range, NULL), cleanup); |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 1757 | part->max_64 = part->min_64; |
| 1758 | } else if (*expr == '|') { |
| 1759 | if (!parts || range_expected) { |
| 1760 | LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SYNTAX_YANG, |
| 1761 | "Invalid %s restriction - unexpected beginning of the expression (%s).", length_restr ? "length" : "range", expr); |
| 1762 | goto cleanup; |
| 1763 | } |
| 1764 | expr++; |
| 1765 | parts_done++; |
| 1766 | /* process next part of the expression */ |
| 1767 | } else if (!strncmp(expr, "..", 2)) { |
| 1768 | expr += 2; |
| 1769 | while (isspace(*expr)) { |
| 1770 | expr++; |
| 1771 | } |
Michal Vasko | fd69e1d | 2020-07-03 11:57:17 +0200 | [diff] [blame] | 1772 | if (!parts || LY_ARRAY_COUNT(parts) == parts_done) { |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 1773 | LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SYNTAX_YANG, |
| 1774 | "Invalid %s restriction - unexpected \"..\" without a lower bound.", length_restr ? "length" : "range"); |
| 1775 | goto cleanup; |
| 1776 | } |
| 1777 | /* continue expecting the upper boundary */ |
| 1778 | range_expected = 1; |
| 1779 | } else if (isdigit(*expr) || (*expr == '-') || (*expr == '+')) { |
| 1780 | /* number */ |
| 1781 | if (range_expected) { |
Michal Vasko | fd69e1d | 2020-07-03 11:57:17 +0200 | [diff] [blame] | 1782 | part = &parts[LY_ARRAY_COUNT(parts) - 1]; |
Radek Krejci | 5969f27 | 2018-11-23 10:03:58 +0100 | [diff] [blame] | 1783 | LY_CHECK_GOTO(range_part_minmax(ctx, part, 1, part->min_64, basetype, 0, length_restr, frdigits, NULL, &expr), cleanup); |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 1784 | range_expected = 0; |
| 1785 | } else { |
| 1786 | LY_ARRAY_NEW_GOTO(ctx->ctx, parts, part, ret, cleanup); |
Michal Vasko | fd69e1d | 2020-07-03 11:57:17 +0200 | [diff] [blame] | 1787 | LY_CHECK_GOTO(range_part_minmax(ctx, part, 0, parts_done ? parts[LY_ARRAY_COUNT(parts) - 2].max_64 : 0, |
Radek Krejci | 5969f27 | 2018-11-23 10:03:58 +0100 | [diff] [blame] | 1788 | basetype, parts_done ? 0 : 1, length_restr, frdigits, NULL, &expr), cleanup); |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 1789 | part->max_64 = part->min_64; |
| 1790 | } |
| 1791 | |
| 1792 | /* continue with possible another expression part */ |
| 1793 | } else if (!strncmp(expr, "max", 3)) { |
| 1794 | expr += 3; |
| 1795 | while (isspace(*expr)) { |
| 1796 | expr++; |
| 1797 | } |
| 1798 | if (*expr != '\0') { |
| 1799 | LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SYNTAX_YANG, "Invalid %s restriction - unexpected data after max keyword (%s).", |
| 1800 | length_restr ? "length" : "range", expr); |
| 1801 | goto cleanup; |
| 1802 | } |
| 1803 | if (range_expected) { |
Michal Vasko | fd69e1d | 2020-07-03 11:57:17 +0200 | [diff] [blame] | 1804 | part = &parts[LY_ARRAY_COUNT(parts) - 1]; |
Radek Krejci | 5969f27 | 2018-11-23 10:03:58 +0100 | [diff] [blame] | 1805 | LY_CHECK_GOTO(range_part_minmax(ctx, part, 1, part->min_64, basetype, 0, length_restr, frdigits, base_range, NULL), cleanup); |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 1806 | range_expected = 0; |
| 1807 | } else { |
| 1808 | LY_ARRAY_NEW_GOTO(ctx->ctx, parts, part, ret, cleanup); |
Michal Vasko | fd69e1d | 2020-07-03 11:57:17 +0200 | [diff] [blame] | 1809 | LY_CHECK_GOTO(range_part_minmax(ctx, part, 1, parts_done ? parts[LY_ARRAY_COUNT(parts) - 2].max_64 : 0, |
Radek Krejci | 5969f27 | 2018-11-23 10:03:58 +0100 | [diff] [blame] | 1810 | basetype, parts_done ? 0 : 1, length_restr, frdigits, base_range, NULL), cleanup); |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 1811 | part->min_64 = part->max_64; |
| 1812 | } |
| 1813 | } else { |
| 1814 | LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SYNTAX_YANG, "Invalid %s restriction - unexpected data (%s).", |
| 1815 | length_restr ? "length" : "range", expr); |
| 1816 | goto cleanup; |
| 1817 | } |
| 1818 | } |
| 1819 | |
| 1820 | /* check with the previous range/length restriction */ |
| 1821 | if (base_range) { |
| 1822 | switch (basetype) { |
| 1823 | case LY_TYPE_BINARY: |
| 1824 | case LY_TYPE_UINT8: |
| 1825 | case LY_TYPE_UINT16: |
| 1826 | case LY_TYPE_UINT32: |
| 1827 | case LY_TYPE_UINT64: |
| 1828 | case LY_TYPE_STRING: |
| 1829 | uns = 1; |
| 1830 | break; |
| 1831 | case LY_TYPE_DEC64: |
| 1832 | case LY_TYPE_INT8: |
| 1833 | case LY_TYPE_INT16: |
| 1834 | case LY_TYPE_INT32: |
| 1835 | case LY_TYPE_INT64: |
| 1836 | uns = 0; |
| 1837 | break; |
| 1838 | default: |
| 1839 | LOGINT(ctx->ctx); |
| 1840 | ret = LY_EINT; |
| 1841 | goto cleanup; |
| 1842 | } |
Michal Vasko | fd69e1d | 2020-07-03 11:57:17 +0200 | [diff] [blame] | 1843 | for (u = v = 0; u < parts_done && v < LY_ARRAY_COUNT(base_range->parts); ++u) { |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 1844 | if ((uns && parts[u].min_u64 < base_range->parts[v].min_u64) || (!uns && parts[u].min_64 < base_range->parts[v].min_64)) { |
| 1845 | goto baseerror; |
| 1846 | } |
| 1847 | /* current lower bound is not lower than the base */ |
| 1848 | if (base_range->parts[v].min_64 == base_range->parts[v].max_64) { |
| 1849 | /* base has single value */ |
| 1850 | if (base_range->parts[v].min_64 == parts[u].min_64) { |
| 1851 | /* both lower bounds are the same */ |
| 1852 | if (parts[u].min_64 != parts[u].max_64) { |
| 1853 | /* current continues with a range */ |
| 1854 | goto baseerror; |
| 1855 | } else { |
| 1856 | /* equal single values, move both forward */ |
| 1857 | ++v; |
| 1858 | continue; |
| 1859 | } |
| 1860 | } else { |
| 1861 | /* base is single value lower than current range, so the |
| 1862 | * value from base range is removed in the current, |
| 1863 | * move only base and repeat checking */ |
| 1864 | ++v; |
| 1865 | --u; |
| 1866 | continue; |
| 1867 | } |
| 1868 | } else { |
| 1869 | /* base is the range */ |
| 1870 | if (parts[u].min_64 == parts[u].max_64) { |
| 1871 | /* current is a single value */ |
| 1872 | if ((uns && parts[u].max_u64 > base_range->parts[v].max_u64) || (!uns && parts[u].max_64 > base_range->parts[v].max_64)) { |
| 1873 | /* current is behind the base range, so base range is omitted, |
| 1874 | * move the base and keep the current for further check */ |
| 1875 | ++v; |
| 1876 | --u; |
| 1877 | } /* else it is within the base range, so move the current, but keep the base */ |
| 1878 | continue; |
| 1879 | } else { |
| 1880 | /* both are ranges - check the higher bound, the lower was already checked */ |
| 1881 | if ((uns && parts[u].max_u64 > base_range->parts[v].max_u64) || (!uns && parts[u].max_64 > base_range->parts[v].max_64)) { |
| 1882 | /* higher bound is higher than the current higher bound */ |
| 1883 | if ((uns && parts[u].min_u64 > base_range->parts[v].max_u64) || (!uns && parts[u].min_64 > base_range->parts[v].max_64)) { |
| 1884 | /* but the current lower bound is also higher, so the base range is omitted, |
| 1885 | * continue with the same current, but move the base */ |
| 1886 | --u; |
| 1887 | ++v; |
| 1888 | continue; |
| 1889 | } |
| 1890 | /* current range starts within the base range but end behind it */ |
| 1891 | goto baseerror; |
| 1892 | } else { |
| 1893 | /* current range is smaller than the base, |
| 1894 | * move current, but stay with the base */ |
| 1895 | continue; |
| 1896 | } |
| 1897 | } |
| 1898 | } |
| 1899 | } |
| 1900 | if (u != parts_done) { |
| 1901 | baseerror: |
| 1902 | LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SYNTAX_YANG, |
| 1903 | "Invalid %s restriction - the derived restriction (%s) is not equally or more limiting.", |
| 1904 | length_restr ? "length" : "range", range_p->arg); |
| 1905 | goto cleanup; |
| 1906 | } |
| 1907 | } |
| 1908 | |
| 1909 | if (!(*range)) { |
| 1910 | *range = calloc(1, sizeof **range); |
| 1911 | LY_CHECK_ERR_RET(!(*range), LOGMEM(ctx->ctx), LY_EMEM); |
| 1912 | } |
| 1913 | |
Radek Krejci | c8b3100 | 2019-01-08 10:24:45 +0100 | [diff] [blame] | 1914 | /* we rewrite the following values as the types chain is being processed */ |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 1915 | if (range_p->eapptag) { |
| 1916 | lydict_remove(ctx->ctx, (*range)->eapptag); |
Radek Krejci | 011e4aa | 2020-09-04 15:22:31 +0200 | [diff] [blame] | 1917 | LY_CHECK_GOTO(ret = lydict_insert(ctx->ctx, range_p->eapptag, 0, &(*range)->eapptag), cleanup); |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 1918 | } |
| 1919 | if (range_p->emsg) { |
| 1920 | lydict_remove(ctx->ctx, (*range)->emsg); |
Radek Krejci | 011e4aa | 2020-09-04 15:22:31 +0200 | [diff] [blame] | 1921 | LY_CHECK_GOTO(ret = lydict_insert(ctx->ctx, range_p->emsg, 0, &(*range)->emsg), cleanup); |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 1922 | } |
Radek Krejci | c8b3100 | 2019-01-08 10:24:45 +0100 | [diff] [blame] | 1923 | if (range_p->dsc) { |
| 1924 | lydict_remove(ctx->ctx, (*range)->dsc); |
Radek Krejci | 011e4aa | 2020-09-04 15:22:31 +0200 | [diff] [blame] | 1925 | LY_CHECK_GOTO(ret = lydict_insert(ctx->ctx, range_p->dsc, 0, &(*range)->dsc), cleanup); |
Radek Krejci | c8b3100 | 2019-01-08 10:24:45 +0100 | [diff] [blame] | 1926 | } |
| 1927 | if (range_p->ref) { |
| 1928 | lydict_remove(ctx->ctx, (*range)->ref); |
Radek Krejci | 011e4aa | 2020-09-04 15:22:31 +0200 | [diff] [blame] | 1929 | LY_CHECK_GOTO(ret = lydict_insert(ctx->ctx, range_p->ref, 0, &(*range)->ref), cleanup); |
Radek Krejci | c8b3100 | 2019-01-08 10:24:45 +0100 | [diff] [blame] | 1930 | } |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 1931 | /* extensions are taken only from the last range by the caller */ |
| 1932 | |
| 1933 | (*range)->parts = parts; |
| 1934 | parts = NULL; |
| 1935 | ret = LY_SUCCESS; |
| 1936 | cleanup: |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 1937 | LY_ARRAY_FREE(parts); |
| 1938 | |
| 1939 | return ret; |
| 1940 | } |
| 1941 | |
| 1942 | /** |
| 1943 | * @brief Checks pattern syntax. |
| 1944 | * |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 1945 | * @param[in] ctx Context. |
| 1946 | * @param[in] log_path Path for logging errors. |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 1947 | * @param[in] pattern Pattern to check. |
Radek Krejci | 5457946 | 2019-04-30 12:47:06 +0200 | [diff] [blame] | 1948 | * @param[in,out] pcre2_code Compiled PCRE2 pattern. If NULL, the compiled information used to validate pattern are freed. |
Radek Krejci | a304538 | 2018-11-22 14:30:31 +0100 | [diff] [blame] | 1949 | * @return LY_ERR value - LY_SUCCESS, LY_EMEM, LY_EVALID. |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 1950 | */ |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 1951 | LY_ERR |
| 1952 | lys_compile_type_pattern_check(struct ly_ctx *ctx, const char *log_path, const char *pattern, pcre2_code **code) |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 1953 | { |
Radek Krejci | 1deb5be | 2020-08-26 16:43:36 +0200 | [diff] [blame] | 1954 | size_t idx, idx2, start, end, size, brack; |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 1955 | char *perl_regex, *ptr; |
Radek Krejci | 5457946 | 2019-04-30 12:47:06 +0200 | [diff] [blame] | 1956 | int err_code; |
| 1957 | const char *orig_ptr; |
| 1958 | PCRE2_SIZE err_offset; |
| 1959 | pcre2_code *code_local; |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 1960 | #define URANGE_LEN 19 |
| 1961 | char *ublock2urange[][2] = { |
| 1962 | {"BasicLatin", "[\\x{0000}-\\x{007F}]"}, |
| 1963 | {"Latin-1Supplement", "[\\x{0080}-\\x{00FF}]"}, |
| 1964 | {"LatinExtended-A", "[\\x{0100}-\\x{017F}]"}, |
| 1965 | {"LatinExtended-B", "[\\x{0180}-\\x{024F}]"}, |
| 1966 | {"IPAExtensions", "[\\x{0250}-\\x{02AF}]"}, |
| 1967 | {"SpacingModifierLetters", "[\\x{02B0}-\\x{02FF}]"}, |
| 1968 | {"CombiningDiacriticalMarks", "[\\x{0300}-\\x{036F}]"}, |
| 1969 | {"Greek", "[\\x{0370}-\\x{03FF}]"}, |
| 1970 | {"Cyrillic", "[\\x{0400}-\\x{04FF}]"}, |
| 1971 | {"Armenian", "[\\x{0530}-\\x{058F}]"}, |
| 1972 | {"Hebrew", "[\\x{0590}-\\x{05FF}]"}, |
| 1973 | {"Arabic", "[\\x{0600}-\\x{06FF}]"}, |
| 1974 | {"Syriac", "[\\x{0700}-\\x{074F}]"}, |
| 1975 | {"Thaana", "[\\x{0780}-\\x{07BF}]"}, |
| 1976 | {"Devanagari", "[\\x{0900}-\\x{097F}]"}, |
| 1977 | {"Bengali", "[\\x{0980}-\\x{09FF}]"}, |
| 1978 | {"Gurmukhi", "[\\x{0A00}-\\x{0A7F}]"}, |
| 1979 | {"Gujarati", "[\\x{0A80}-\\x{0AFF}]"}, |
| 1980 | {"Oriya", "[\\x{0B00}-\\x{0B7F}]"}, |
| 1981 | {"Tamil", "[\\x{0B80}-\\x{0BFF}]"}, |
| 1982 | {"Telugu", "[\\x{0C00}-\\x{0C7F}]"}, |
| 1983 | {"Kannada", "[\\x{0C80}-\\x{0CFF}]"}, |
| 1984 | {"Malayalam", "[\\x{0D00}-\\x{0D7F}]"}, |
| 1985 | {"Sinhala", "[\\x{0D80}-\\x{0DFF}]"}, |
| 1986 | {"Thai", "[\\x{0E00}-\\x{0E7F}]"}, |
| 1987 | {"Lao", "[\\x{0E80}-\\x{0EFF}]"}, |
| 1988 | {"Tibetan", "[\\x{0F00}-\\x{0FFF}]"}, |
| 1989 | {"Myanmar", "[\\x{1000}-\\x{109F}]"}, |
| 1990 | {"Georgian", "[\\x{10A0}-\\x{10FF}]"}, |
| 1991 | {"HangulJamo", "[\\x{1100}-\\x{11FF}]"}, |
| 1992 | {"Ethiopic", "[\\x{1200}-\\x{137F}]"}, |
| 1993 | {"Cherokee", "[\\x{13A0}-\\x{13FF}]"}, |
| 1994 | {"UnifiedCanadianAboriginalSyllabics", "[\\x{1400}-\\x{167F}]"}, |
| 1995 | {"Ogham", "[\\x{1680}-\\x{169F}]"}, |
| 1996 | {"Runic", "[\\x{16A0}-\\x{16FF}]"}, |
| 1997 | {"Khmer", "[\\x{1780}-\\x{17FF}]"}, |
| 1998 | {"Mongolian", "[\\x{1800}-\\x{18AF}]"}, |
| 1999 | {"LatinExtendedAdditional", "[\\x{1E00}-\\x{1EFF}]"}, |
| 2000 | {"GreekExtended", "[\\x{1F00}-\\x{1FFF}]"}, |
| 2001 | {"GeneralPunctuation", "[\\x{2000}-\\x{206F}]"}, |
| 2002 | {"SuperscriptsandSubscripts", "[\\x{2070}-\\x{209F}]"}, |
| 2003 | {"CurrencySymbols", "[\\x{20A0}-\\x{20CF}]"}, |
| 2004 | {"CombiningMarksforSymbols", "[\\x{20D0}-\\x{20FF}]"}, |
| 2005 | {"LetterlikeSymbols", "[\\x{2100}-\\x{214F}]"}, |
| 2006 | {"NumberForms", "[\\x{2150}-\\x{218F}]"}, |
| 2007 | {"Arrows", "[\\x{2190}-\\x{21FF}]"}, |
| 2008 | {"MathematicalOperators", "[\\x{2200}-\\x{22FF}]"}, |
| 2009 | {"MiscellaneousTechnical", "[\\x{2300}-\\x{23FF}]"}, |
| 2010 | {"ControlPictures", "[\\x{2400}-\\x{243F}]"}, |
| 2011 | {"OpticalCharacterRecognition", "[\\x{2440}-\\x{245F}]"}, |
| 2012 | {"EnclosedAlphanumerics", "[\\x{2460}-\\x{24FF}]"}, |
| 2013 | {"BoxDrawing", "[\\x{2500}-\\x{257F}]"}, |
| 2014 | {"BlockElements", "[\\x{2580}-\\x{259F}]"}, |
| 2015 | {"GeometricShapes", "[\\x{25A0}-\\x{25FF}]"}, |
| 2016 | {"MiscellaneousSymbols", "[\\x{2600}-\\x{26FF}]"}, |
| 2017 | {"Dingbats", "[\\x{2700}-\\x{27BF}]"}, |
| 2018 | {"BraillePatterns", "[\\x{2800}-\\x{28FF}]"}, |
| 2019 | {"CJKRadicalsSupplement", "[\\x{2E80}-\\x{2EFF}]"}, |
| 2020 | {"KangxiRadicals", "[\\x{2F00}-\\x{2FDF}]"}, |
| 2021 | {"IdeographicDescriptionCharacters", "[\\x{2FF0}-\\x{2FFF}]"}, |
| 2022 | {"CJKSymbolsandPunctuation", "[\\x{3000}-\\x{303F}]"}, |
| 2023 | {"Hiragana", "[\\x{3040}-\\x{309F}]"}, |
| 2024 | {"Katakana", "[\\x{30A0}-\\x{30FF}]"}, |
| 2025 | {"Bopomofo", "[\\x{3100}-\\x{312F}]"}, |
| 2026 | {"HangulCompatibilityJamo", "[\\x{3130}-\\x{318F}]"}, |
| 2027 | {"Kanbun", "[\\x{3190}-\\x{319F}]"}, |
| 2028 | {"BopomofoExtended", "[\\x{31A0}-\\x{31BF}]"}, |
| 2029 | {"EnclosedCJKLettersandMonths", "[\\x{3200}-\\x{32FF}]"}, |
| 2030 | {"CJKCompatibility", "[\\x{3300}-\\x{33FF}]"}, |
| 2031 | {"CJKUnifiedIdeographsExtensionA", "[\\x{3400}-\\x{4DB5}]"}, |
| 2032 | {"CJKUnifiedIdeographs", "[\\x{4E00}-\\x{9FFF}]"}, |
| 2033 | {"YiSyllables", "[\\x{A000}-\\x{A48F}]"}, |
| 2034 | {"YiRadicals", "[\\x{A490}-\\x{A4CF}]"}, |
| 2035 | {"HangulSyllables", "[\\x{AC00}-\\x{D7A3}]"}, |
| 2036 | {"PrivateUse", "[\\x{E000}-\\x{F8FF}]"}, |
| 2037 | {"CJKCompatibilityIdeographs", "[\\x{F900}-\\x{FAFF}]"}, |
| 2038 | {"AlphabeticPresentationForms", "[\\x{FB00}-\\x{FB4F}]"}, |
| 2039 | {"ArabicPresentationForms-A", "[\\x{FB50}-\\x{FDFF}]"}, |
| 2040 | {"CombiningHalfMarks", "[\\x{FE20}-\\x{FE2F}]"}, |
| 2041 | {"CJKCompatibilityForms", "[\\x{FE30}-\\x{FE4F}]"}, |
| 2042 | {"SmallFormVariants", "[\\x{FE50}-\\x{FE6F}]"}, |
| 2043 | {"ArabicPresentationForms-B", "[\\x{FE70}-\\x{FEFE}]"}, |
| 2044 | {"HalfwidthandFullwidthForms", "[\\x{FF00}-\\x{FFEF}]"}, |
| 2045 | {NULL, NULL} |
| 2046 | }; |
| 2047 | |
| 2048 | /* adjust the expression to a Perl equivalent |
| 2049 | * http://www.w3.org/TR/2004/REC-xmlschema-2-20041028/#regexs */ |
| 2050 | |
Michal Vasko | 40a0008 | 2020-05-27 15:20:01 +0200 | [diff] [blame] | 2051 | /* allocate space for the transformed pattern */ |
| 2052 | size = strlen(pattern) + 1; |
| 2053 | perl_regex = malloc(size); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 2054 | LY_CHECK_ERR_RET(!perl_regex, LOGMEM(ctx), LY_EMEM); |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 2055 | perl_regex[0] = '\0'; |
| 2056 | |
Michal Vasko | 40a0008 | 2020-05-27 15:20:01 +0200 | [diff] [blame] | 2057 | /* we need to replace all "$" and "^" (that are not in "[]") with "\$" and "\^" */ |
| 2058 | brack = 0; |
| 2059 | idx = 0; |
| 2060 | orig_ptr = pattern; |
| 2061 | while (orig_ptr[0]) { |
| 2062 | switch (orig_ptr[0]) { |
| 2063 | case '$': |
| 2064 | case '^': |
| 2065 | if (!brack) { |
| 2066 | /* make space for the extra character */ |
| 2067 | ++size; |
| 2068 | perl_regex = ly_realloc(perl_regex, size); |
| 2069 | LY_CHECK_ERR_RET(!perl_regex, LOGMEM(ctx), LY_EMEM); |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 2070 | |
Michal Vasko | 40a0008 | 2020-05-27 15:20:01 +0200 | [diff] [blame] | 2071 | /* print escape slash */ |
| 2072 | perl_regex[idx] = '\\'; |
| 2073 | ++idx; |
| 2074 | } |
| 2075 | break; |
| 2076 | case '[': |
| 2077 | /* must not be escaped */ |
| 2078 | if ((orig_ptr == pattern) || (orig_ptr[-1] != '\\')) { |
| 2079 | ++brack; |
| 2080 | } |
| 2081 | break; |
| 2082 | case ']': |
| 2083 | if ((orig_ptr == pattern) || (orig_ptr[-1] != '\\')) { |
| 2084 | /* pattern was checked and compiled already */ |
| 2085 | assert(brack); |
| 2086 | --brack; |
| 2087 | } |
| 2088 | break; |
| 2089 | default: |
| 2090 | break; |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 2091 | } |
Michal Vasko | 40a0008 | 2020-05-27 15:20:01 +0200 | [diff] [blame] | 2092 | |
| 2093 | /* copy char */ |
| 2094 | perl_regex[idx] = orig_ptr[0]; |
| 2095 | |
| 2096 | ++idx; |
| 2097 | ++orig_ptr; |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 2098 | } |
Michal Vasko | 40a0008 | 2020-05-27 15:20:01 +0200 | [diff] [blame] | 2099 | perl_regex[idx] = '\0'; |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 2100 | |
| 2101 | /* substitute Unicode Character Blocks with exact Character Ranges */ |
| 2102 | while ((ptr = strstr(perl_regex, "\\p{Is"))) { |
| 2103 | start = ptr - perl_regex; |
| 2104 | |
| 2105 | ptr = strchr(ptr, '}'); |
| 2106 | if (!ptr) { |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 2107 | LOGVAL(ctx, LY_VLOG_STR, log_path, LY_VCODE_INREGEXP, |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 2108 | pattern, perl_regex + start + 2, "unterminated character property"); |
| 2109 | free(perl_regex); |
| 2110 | return LY_EVALID; |
| 2111 | } |
| 2112 | end = (ptr - perl_regex) + 1; |
| 2113 | |
| 2114 | /* need more space */ |
| 2115 | if (end - start < URANGE_LEN) { |
| 2116 | perl_regex = ly_realloc(perl_regex, strlen(perl_regex) + (URANGE_LEN - (end - start)) + 1); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 2117 | LY_CHECK_ERR_RET(!perl_regex, LOGMEM(ctx); free(perl_regex), LY_EMEM); |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 2118 | } |
| 2119 | |
| 2120 | /* find our range */ |
| 2121 | for (idx = 0; ublock2urange[idx][0]; ++idx) { |
| 2122 | if (!strncmp(perl_regex + start + 5, ublock2urange[idx][0], strlen(ublock2urange[idx][0]))) { |
| 2123 | break; |
| 2124 | } |
| 2125 | } |
| 2126 | if (!ublock2urange[idx][0]) { |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 2127 | LOGVAL(ctx, LY_VLOG_STR, log_path, LY_VCODE_INREGEXP, |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 2128 | pattern, perl_regex + start + 5, "unknown block name"); |
| 2129 | free(perl_regex); |
| 2130 | return LY_EVALID; |
| 2131 | } |
| 2132 | |
| 2133 | /* make the space in the string and replace the block (but we cannot include brackets if it was already enclosed in them) */ |
Michal Vasko | 40a0008 | 2020-05-27 15:20:01 +0200 | [diff] [blame] | 2134 | for (idx2 = 0, idx = 0; idx2 < start; ++idx2) { |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 2135 | if ((perl_regex[idx2] == '[') && (!idx2 || (perl_regex[idx2 - 1] != '\\'))) { |
Michal Vasko | 40a0008 | 2020-05-27 15:20:01 +0200 | [diff] [blame] | 2136 | ++idx; |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 2137 | } |
| 2138 | if ((perl_regex[idx2] == ']') && (!idx2 || (perl_regex[idx2 - 1] != '\\'))) { |
Michal Vasko | 40a0008 | 2020-05-27 15:20:01 +0200 | [diff] [blame] | 2139 | --idx; |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 2140 | } |
| 2141 | } |
Michal Vasko | 40a0008 | 2020-05-27 15:20:01 +0200 | [diff] [blame] | 2142 | if (idx) { |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 2143 | /* skip brackets */ |
| 2144 | memmove(perl_regex + start + (URANGE_LEN - 2), perl_regex + end, strlen(perl_regex + end) + 1); |
| 2145 | memcpy(perl_regex + start, ublock2urange[idx][1] + 1, URANGE_LEN - 2); |
| 2146 | } else { |
| 2147 | memmove(perl_regex + start + URANGE_LEN, perl_regex + end, strlen(perl_regex + end) + 1); |
| 2148 | memcpy(perl_regex + start, ublock2urange[idx][1], URANGE_LEN); |
| 2149 | } |
| 2150 | } |
| 2151 | |
| 2152 | /* must return 0, already checked during parsing */ |
Radek Krejci | 5819f7c | 2019-05-31 14:53:29 +0200 | [diff] [blame] | 2153 | code_local = pcre2_compile((PCRE2_SPTR)perl_regex, PCRE2_ZERO_TERMINATED, |
| 2154 | PCRE2_UTF | PCRE2_ANCHORED | PCRE2_ENDANCHORED | PCRE2_DOLLAR_ENDONLY | PCRE2_NO_AUTO_CAPTURE, |
Radek Krejci | 5457946 | 2019-04-30 12:47:06 +0200 | [diff] [blame] | 2155 | &err_code, &err_offset, NULL); |
| 2156 | if (!code_local) { |
| 2157 | PCRE2_UCHAR err_msg[256] = {0}; |
| 2158 | pcre2_get_error_message(err_code, err_msg, 256); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 2159 | LOGVAL(ctx, LY_VLOG_STR, log_path, LY_VCODE_INREGEXP, pattern, perl_regex + err_offset, err_msg); |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 2160 | free(perl_regex); |
| 2161 | return LY_EVALID; |
| 2162 | } |
| 2163 | free(perl_regex); |
| 2164 | |
Radek Krejci | 5457946 | 2019-04-30 12:47:06 +0200 | [diff] [blame] | 2165 | if (code) { |
| 2166 | *code = code_local; |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 2167 | } else { |
Radek Krejci | 5457946 | 2019-04-30 12:47:06 +0200 | [diff] [blame] | 2168 | free(code_local); |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 2169 | } |
| 2170 | |
| 2171 | return LY_SUCCESS; |
| 2172 | |
| 2173 | #undef URANGE_LEN |
| 2174 | } |
| 2175 | |
Radek Krejci | a304538 | 2018-11-22 14:30:31 +0100 | [diff] [blame] | 2176 | /** |
| 2177 | * @brief Compile parsed pattern restriction in conjunction with the patterns from base type. |
| 2178 | * @param[in] ctx Compile context. |
| 2179 | * @param[in] patterns_p Array of parsed patterns from the current type to compile. |
Radek Krejci | a304538 | 2018-11-22 14:30:31 +0100 | [diff] [blame] | 2180 | * @param[in] base_patterns Compiled patterns from the type from which the current type is derived. |
| 2181 | * Patterns from the base type are inherited to have all the patterns that have to match at one place. |
| 2182 | * @param[out] patterns Pointer to the storage for the patterns of the current type. |
| 2183 | * @return LY_ERR LY_SUCCESS, LY_EMEM, LY_EVALID. |
| 2184 | */ |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 2185 | static LY_ERR |
Radek Krejci | ec4da80 | 2019-05-02 13:02:41 +0200 | [diff] [blame] | 2186 | lys_compile_type_patterns(struct lysc_ctx *ctx, struct lysp_restr *patterns_p, |
Radek Krejci | 0f96988 | 2020-08-21 16:56:47 +0200 | [diff] [blame] | 2187 | struct lysc_pattern **base_patterns, struct lysc_pattern ***patterns) |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 2188 | { |
| 2189 | struct lysc_pattern **pattern; |
Michal Vasko | fd69e1d | 2020-07-03 11:57:17 +0200 | [diff] [blame] | 2190 | LY_ARRAY_COUNT_TYPE u; |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 2191 | LY_ERR ret = LY_SUCCESS; |
| 2192 | |
| 2193 | /* first, copy the patterns from the base type */ |
| 2194 | if (base_patterns) { |
| 2195 | *patterns = lysc_patterns_dup(ctx->ctx, base_patterns); |
| 2196 | LY_CHECK_ERR_RET(!(*patterns), LOGMEM(ctx->ctx), LY_EMEM); |
| 2197 | } |
| 2198 | |
| 2199 | LY_ARRAY_FOR(patterns_p, u) { |
| 2200 | LY_ARRAY_NEW_RET(ctx->ctx, (*patterns), pattern, LY_EMEM); |
| 2201 | *pattern = calloc(1, sizeof **pattern); |
| 2202 | ++(*pattern)->refcount; |
| 2203 | |
Michal Vasko | 7f45cf2 | 2020-10-01 12:49:44 +0200 | [diff] [blame] | 2204 | ret = lys_compile_type_pattern_check(ctx->ctx, ctx->path, &patterns_p[u].arg.str[1], &(*pattern)->code); |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 2205 | LY_CHECK_RET(ret); |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 2206 | |
Michal Vasko | 7f45cf2 | 2020-10-01 12:49:44 +0200 | [diff] [blame] | 2207 | if (patterns_p[u].arg.str[0] == 0x15) { |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 2208 | (*pattern)->inverted = 1; |
| 2209 | } |
Michal Vasko | 7f45cf2 | 2020-10-01 12:49:44 +0200 | [diff] [blame] | 2210 | DUP_STRING_GOTO(ctx->ctx, &patterns_p[u].arg.str[1], (*pattern)->expr, ret, done); |
Radek Krejci | 011e4aa | 2020-09-04 15:22:31 +0200 | [diff] [blame] | 2211 | DUP_STRING_GOTO(ctx->ctx, patterns_p[u].eapptag, (*pattern)->eapptag, ret, done); |
| 2212 | DUP_STRING_GOTO(ctx->ctx, patterns_p[u].emsg, (*pattern)->emsg, ret, done); |
| 2213 | DUP_STRING_GOTO(ctx->ctx, patterns_p[u].dsc, (*pattern)->dsc, ret, done); |
| 2214 | DUP_STRING_GOTO(ctx->ctx, patterns_p[u].ref, (*pattern)->ref, ret, done); |
Radek Krejci | 0935f41 | 2019-08-20 16:15:18 +0200 | [diff] [blame] | 2215 | COMPILE_EXTS_GOTO(ctx, patterns_p[u].exts, (*pattern)->exts, (*pattern), LYEXT_PAR_PATTERN, ret, done); |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 2216 | } |
| 2217 | done: |
| 2218 | return ret; |
| 2219 | } |
| 2220 | |
Radek Krejci | a304538 | 2018-11-22 14:30:31 +0100 | [diff] [blame] | 2221 | /** |
| 2222 | * @brief map of the possible restrictions combination for the specific built-in type. |
| 2223 | */ |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 2224 | static uint16_t type_substmt_map[LY_DATA_TYPE_COUNT] = { |
| 2225 | 0 /* LY_TYPE_UNKNOWN */, |
| 2226 | LYS_SET_LENGTH /* LY_TYPE_BINARY */, |
Radek Krejci | 5969f27 | 2018-11-23 10:03:58 +0100 | [diff] [blame] | 2227 | LYS_SET_RANGE /* LY_TYPE_UINT8 */, |
| 2228 | LYS_SET_RANGE /* LY_TYPE_UINT16 */, |
| 2229 | LYS_SET_RANGE /* LY_TYPE_UINT32 */, |
| 2230 | LYS_SET_RANGE /* LY_TYPE_UINT64 */, |
| 2231 | LYS_SET_LENGTH | LYS_SET_PATTERN /* LY_TYPE_STRING */, |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 2232 | LYS_SET_BIT /* LY_TYPE_BITS */, |
| 2233 | 0 /* LY_TYPE_BOOL */, |
| 2234 | LYS_SET_FRDIGITS | LYS_SET_RANGE /* LY_TYPE_DEC64 */, |
| 2235 | 0 /* LY_TYPE_EMPTY */, |
| 2236 | LYS_SET_ENUM /* LY_TYPE_ENUM */, |
| 2237 | LYS_SET_BASE /* LY_TYPE_IDENT */, |
| 2238 | LYS_SET_REQINST /* LY_TYPE_INST */, |
| 2239 | LYS_SET_REQINST | LYS_SET_PATH /* LY_TYPE_LEAFREF */, |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 2240 | LYS_SET_TYPE /* LY_TYPE_UNION */, |
| 2241 | LYS_SET_RANGE /* LY_TYPE_INT8 */, |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 2242 | LYS_SET_RANGE /* LY_TYPE_INT16 */, |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 2243 | LYS_SET_RANGE /* LY_TYPE_INT32 */, |
Radek Krejci | 5969f27 | 2018-11-23 10:03:58 +0100 | [diff] [blame] | 2244 | LYS_SET_RANGE /* LY_TYPE_INT64 */ |
| 2245 | }; |
| 2246 | |
| 2247 | /** |
| 2248 | * @brief stringification of the YANG built-in data types |
| 2249 | */ |
Michal Vasko | 22df3f0 | 2020-08-24 13:29:22 +0200 | [diff] [blame] | 2250 | const char *ly_data_type2str[LY_DATA_TYPE_COUNT] = {"unknown", "binary", "8bit unsigned integer", "16bit unsigned integer", |
Radek Krejci | 5969f27 | 2018-11-23 10:03:58 +0100 | [diff] [blame] | 2251 | "32bit unsigned integer", "64bit unsigned integer", "string", "bits", "boolean", "decimal64", "empty", "enumeration", |
Radek Krejci | 0f96988 | 2020-08-21 16:56:47 +0200 | [diff] [blame] | 2252 | "identityref", "instance-identifier", "leafref", "union", "8bit integer", "16bit integer", "32bit integer", "64bit integer"}; |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 2253 | |
Radek Krejci | a304538 | 2018-11-22 14:30:31 +0100 | [diff] [blame] | 2254 | /** |
| 2255 | * @brief Compile parsed type's enum structures (for enumeration and bits types). |
| 2256 | * @param[in] ctx Compile context. |
| 2257 | * @param[in] enums_p Array of the parsed enum structures to compile. |
| 2258 | * @param[in] basetype Base YANG built-in type from which the current type is derived. Only LY_TYPE_ENUM and LY_TYPE_BITS are expected. |
Radek Krejci | a304538 | 2018-11-22 14:30:31 +0100 | [diff] [blame] | 2259 | * @param[in] base_enums Array of the compiled enums information from the (latest) base type to check if the current enums are compatible. |
| 2260 | * @param[out] enums Newly created array of the compiled enums information for the current type. |
| 2261 | * @return LY_ERR value - LY_SUCCESS or LY_EVALID. |
| 2262 | */ |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 2263 | static LY_ERR |
Radek Krejci | ec4da80 | 2019-05-02 13:02:41 +0200 | [diff] [blame] | 2264 | lys_compile_type_enums(struct lysc_ctx *ctx, struct lysp_type_enum *enums_p, LY_DATA_TYPE basetype, |
Radek Krejci | 0f96988 | 2020-08-21 16:56:47 +0200 | [diff] [blame] | 2265 | struct lysc_type_bitenum_item *base_enums, struct lysc_type_bitenum_item **enums) |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 2266 | { |
| 2267 | LY_ERR ret = LY_SUCCESS; |
Michal Vasko | fd69e1d | 2020-07-03 11:57:17 +0200 | [diff] [blame] | 2268 | LY_ARRAY_COUNT_TYPE u, v, match = 0; |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 2269 | int32_t value = 0; |
| 2270 | uint32_t position = 0; |
Radek Krejci | 693262f | 2019-04-29 15:23:20 +0200 | [diff] [blame] | 2271 | struct lysc_type_bitenum_item *e, storage; |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 2272 | |
Radek Krejci | 0bcdaed | 2019-01-10 10:21:34 +0100 | [diff] [blame] | 2273 | if (base_enums && ctx->mod_def->version < 2) { |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 2274 | LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SYNTAX_YANG, "%s type can be subtyped only in YANG 1.1 modules.", |
| 2275 | basetype == LY_TYPE_ENUM ? "Enumeration" : "Bits"); |
| 2276 | return LY_EVALID; |
| 2277 | } |
| 2278 | |
| 2279 | LY_ARRAY_FOR(enums_p, u) { |
| 2280 | LY_ARRAY_NEW_RET(ctx->ctx, *enums, e, LY_EMEM); |
Radek Krejci | 011e4aa | 2020-09-04 15:22:31 +0200 | [diff] [blame] | 2281 | DUP_STRING_GOTO(ctx->ctx, enums_p[u].name, e->name, ret, done); |
| 2282 | DUP_STRING_GOTO(ctx->ctx, enums_p[u].ref, e->dsc, ret, done); |
| 2283 | DUP_STRING_GOTO(ctx->ctx, enums_p[u].ref, e->ref, ret, done); |
Radek Krejci | 693262f | 2019-04-29 15:23:20 +0200 | [diff] [blame] | 2284 | e->flags = enums_p[u].flags & LYS_FLAGS_COMPILED_MASK; |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 2285 | if (base_enums) { |
| 2286 | /* check the enum/bit presence in the base type - the set of enums/bits in the derived type must be a subset */ |
| 2287 | LY_ARRAY_FOR(base_enums, v) { |
| 2288 | if (!strcmp(e->name, base_enums[v].name)) { |
| 2289 | break; |
| 2290 | } |
| 2291 | } |
Michal Vasko | fd69e1d | 2020-07-03 11:57:17 +0200 | [diff] [blame] | 2292 | if (v == LY_ARRAY_COUNT(base_enums)) { |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 2293 | LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SYNTAX_YANG, |
| 2294 | "Invalid %s - derived type adds new item \"%s\".", |
| 2295 | basetype == LY_TYPE_ENUM ? "enumeration" : "bits", e->name); |
| 2296 | return LY_EVALID; |
| 2297 | } |
| 2298 | match = v; |
| 2299 | } |
| 2300 | |
| 2301 | if (basetype == LY_TYPE_ENUM) { |
Radek Krejci | 693262f | 2019-04-29 15:23:20 +0200 | [diff] [blame] | 2302 | e->flags |= LYS_ISENUM; |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 2303 | if (enums_p[u].flags & LYS_SET_VALUE) { |
| 2304 | e->value = (int32_t)enums_p[u].value; |
| 2305 | if (!u || e->value >= value) { |
| 2306 | value = e->value + 1; |
| 2307 | } |
| 2308 | /* check collision with other values */ |
Michal Vasko | fd69e1d | 2020-07-03 11:57:17 +0200 | [diff] [blame] | 2309 | for (v = 0; v < LY_ARRAY_COUNT(*enums) - 1; ++v) { |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 2310 | if (e->value == (*enums)[v].value) { |
| 2311 | LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SYNTAX_YANG, |
| 2312 | "Invalid enumeration - value %d collide in items \"%s\" and \"%s\".", |
| 2313 | e->value, e->name, (*enums)[v].name); |
| 2314 | return LY_EVALID; |
| 2315 | } |
| 2316 | } |
| 2317 | } else if (base_enums) { |
| 2318 | /* inherit the assigned value */ |
| 2319 | e->value = base_enums[match].value; |
| 2320 | if (!u || e->value >= value) { |
| 2321 | value = e->value + 1; |
| 2322 | } |
| 2323 | } else { |
| 2324 | /* assign value automatically */ |
| 2325 | if (u && value == INT32_MIN) { |
| 2326 | /* counter overflow */ |
| 2327 | LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SYNTAX_YANG, |
| 2328 | "Invalid enumeration - it is not possible to auto-assign enum value for " |
| 2329 | "\"%s\" since the highest value is already 2147483647.", e->name); |
| 2330 | return LY_EVALID; |
| 2331 | } |
| 2332 | e->value = value++; |
| 2333 | } |
| 2334 | } else { /* LY_TYPE_BITS */ |
| 2335 | if (enums_p[u].flags & LYS_SET_VALUE) { |
| 2336 | e->value = (int32_t)enums_p[u].value; |
| 2337 | if (!u || (uint32_t)e->value >= position) { |
| 2338 | position = (uint32_t)e->value + 1; |
| 2339 | } |
| 2340 | /* check collision with other values */ |
Michal Vasko | fd69e1d | 2020-07-03 11:57:17 +0200 | [diff] [blame] | 2341 | for (v = 0; v < LY_ARRAY_COUNT(*enums) - 1; ++v) { |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 2342 | if (e->value == (*enums)[v].value) { |
| 2343 | LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SYNTAX_YANG, |
| 2344 | "Invalid bits - position %u collide in items \"%s\" and \"%s\".", |
Radek Krejci | 0f96988 | 2020-08-21 16:56:47 +0200 | [diff] [blame] | 2345 | (uint32_t)e->value, e->name, (*enums)[v].name); |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 2346 | return LY_EVALID; |
| 2347 | } |
| 2348 | } |
| 2349 | } else if (base_enums) { |
| 2350 | /* inherit the assigned value */ |
| 2351 | e->value = base_enums[match].value; |
| 2352 | if (!u || (uint32_t)e->value >= position) { |
| 2353 | position = (uint32_t)e->value + 1; |
| 2354 | } |
| 2355 | } else { |
| 2356 | /* assign value automatically */ |
| 2357 | if (u && position == 0) { |
| 2358 | /* counter overflow */ |
| 2359 | LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SYNTAX_YANG, |
| 2360 | "Invalid bits - it is not possible to auto-assign bit position for " |
| 2361 | "\"%s\" since the highest value is already 4294967295.", e->name); |
| 2362 | return LY_EVALID; |
| 2363 | } |
| 2364 | e->value = position++; |
| 2365 | } |
| 2366 | } |
| 2367 | |
| 2368 | if (base_enums) { |
| 2369 | /* the assigned values must not change from the derived type */ |
| 2370 | if (e->value != base_enums[match].value) { |
| 2371 | if (basetype == LY_TYPE_ENUM) { |
| 2372 | LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SYNTAX_YANG, |
| 2373 | "Invalid enumeration - value of the item \"%s\" has changed from %d to %d in the derived type.", |
| 2374 | e->name, base_enums[match].value, e->value); |
| 2375 | } else { |
| 2376 | LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SYNTAX_YANG, |
| 2377 | "Invalid bits - position of the item \"%s\" has changed from %u to %u in the derived type.", |
| 2378 | e->name, (uint32_t)base_enums[match].value, (uint32_t)e->value); |
| 2379 | } |
| 2380 | return LY_EVALID; |
| 2381 | } |
| 2382 | } |
| 2383 | |
Radek Krejci | ec4da80 | 2019-05-02 13:02:41 +0200 | [diff] [blame] | 2384 | COMPILE_ARRAY_GOTO(ctx, enums_p[u].iffeatures, e->iffeatures, v, lys_compile_iffeature, ret, done); |
Radek Krejci | 0935f41 | 2019-08-20 16:15:18 +0200 | [diff] [blame] | 2385 | COMPILE_EXTS_GOTO(ctx, enums_p[u].exts, e->exts, e, basetype == LY_TYPE_ENUM ? LYEXT_PAR_TYPE_ENUM : LYEXT_PAR_TYPE_BIT, ret, done); |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 2386 | |
| 2387 | if (basetype == LY_TYPE_BITS) { |
| 2388 | /* keep bits ordered by position */ |
Radek Krejci | 1e008d2 | 2020-08-17 11:37:37 +0200 | [diff] [blame] | 2389 | for (v = u; v && (*enums)[v - 1].value > e->value; --v) {} |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 2390 | if (v != u) { |
| 2391 | memcpy(&storage, e, sizeof *e); |
| 2392 | memmove(&(*enums)[v + 1], &(*enums)[v], (u - v) * sizeof **enums); |
| 2393 | memcpy(&(*enums)[v], &storage, sizeof storage); |
| 2394 | } |
| 2395 | } |
| 2396 | } |
| 2397 | |
| 2398 | done: |
| 2399 | return ret; |
| 2400 | } |
| 2401 | |
Radek Krejci | a304538 | 2018-11-22 14:30:31 +0100 | [diff] [blame] | 2402 | /** |
| 2403 | * @brief Parse path-arg (leafref). Get tokens of the path by repetitive calls of the function. |
| 2404 | * |
| 2405 | * path-arg = absolute-path / relative-path |
| 2406 | * absolute-path = 1*("/" (node-identifier *path-predicate)) |
| 2407 | * relative-path = 1*(".." "/") descendant-path |
| 2408 | * |
| 2409 | * @param[in,out] path Path to parse. |
| 2410 | * @param[out] prefix Prefix of the token, NULL if there is not any. |
| 2411 | * @param[out] pref_len Length of the prefix, 0 if there is not any. |
| 2412 | * @param[out] name Name of the token. |
| 2413 | * @param[out] nam_len Length of the name. |
| 2414 | * @param[out] parent_times Number of leading ".." in the path. Must be 0 on the first call, |
| 2415 | * must not be changed between consecutive calls. -1 if the |
| 2416 | * path is absolute. |
| 2417 | * @param[out] has_predicate Flag to mark whether there is a predicate specified. |
| 2418 | * @return LY_ERR value: LY_SUCCESS or LY_EINVAL in case of invalid character in the path. |
| 2419 | */ |
Radek Krejci | 2d7a47b | 2019-05-16 13:34:10 +0200 | [diff] [blame] | 2420 | LY_ERR |
Radek Krejci | a304538 | 2018-11-22 14:30:31 +0100 | [diff] [blame] | 2421 | lys_path_token(const char **path, const char **prefix, size_t *prefix_len, const char **name, size_t *name_len, |
Radek Krejci | 857189e | 2020-09-01 13:26:36 +0200 | [diff] [blame] | 2422 | int32_t *parent_times, ly_bool *has_predicate) |
Radek Krejci | a304538 | 2018-11-22 14:30:31 +0100 | [diff] [blame] | 2423 | { |
Radek Krejci | 1deb5be | 2020-08-26 16:43:36 +0200 | [diff] [blame] | 2424 | int32_t par_times = 0; |
Radek Krejci | a304538 | 2018-11-22 14:30:31 +0100 | [diff] [blame] | 2425 | |
| 2426 | assert(path && *path); |
| 2427 | assert(parent_times); |
| 2428 | assert(prefix); |
| 2429 | assert(prefix_len); |
| 2430 | assert(name); |
| 2431 | assert(name_len); |
| 2432 | assert(has_predicate); |
| 2433 | |
| 2434 | *prefix = NULL; |
| 2435 | *prefix_len = 0; |
| 2436 | *name = NULL; |
| 2437 | *name_len = 0; |
| 2438 | *has_predicate = 0; |
| 2439 | |
| 2440 | if (!*parent_times) { |
| 2441 | if (!strncmp(*path, "..", 2)) { |
| 2442 | *path += 2; |
| 2443 | ++par_times; |
| 2444 | while (!strncmp(*path, "/..", 3)) { |
| 2445 | *path += 3; |
| 2446 | ++par_times; |
| 2447 | } |
| 2448 | } |
| 2449 | if (par_times) { |
| 2450 | *parent_times = par_times; |
| 2451 | } else { |
| 2452 | *parent_times = -1; |
| 2453 | } |
| 2454 | } |
| 2455 | |
| 2456 | if (**path != '/') { |
| 2457 | return LY_EINVAL; |
| 2458 | } |
| 2459 | /* skip '/' */ |
| 2460 | ++(*path); |
| 2461 | |
| 2462 | /* node-identifier ([prefix:]name) */ |
Radek Krejci | b4a4a27 | 2019-06-10 12:44:52 +0200 | [diff] [blame] | 2463 | LY_CHECK_RET(ly_parse_nodeid(path, prefix, prefix_len, name, name_len)); |
Radek Krejci | a304538 | 2018-11-22 14:30:31 +0100 | [diff] [blame] | 2464 | |
| 2465 | if ((**path == '/' && (*path)[1]) || !**path) { |
| 2466 | /* path continues by another token or this is the last token */ |
| 2467 | return LY_SUCCESS; |
| 2468 | } else if ((*path)[0] != '[') { |
| 2469 | /* unexpected character */ |
| 2470 | return LY_EINVAL; |
| 2471 | } else { |
| 2472 | /* predicate starting with [ */ |
| 2473 | *has_predicate = 1; |
| 2474 | return LY_SUCCESS; |
| 2475 | } |
| 2476 | } |
| 2477 | |
| 2478 | /** |
Radek Krejci | 58d171e | 2018-11-23 13:50:55 +0100 | [diff] [blame] | 2479 | * @brief Check the features used in if-feature statements applicable to the leafref and its target. |
| 2480 | * |
| 2481 | * The set of features used for target must be a subset of features used for the leafref. |
| 2482 | * This is not a perfect, we should compare the truth tables but it could require too much resources |
| 2483 | * and RFC 7950 does not require it explicitely, so we simplify that. |
| 2484 | * |
| 2485 | * @param[in] refnode The leafref node. |
| 2486 | * @param[in] target Tha target node of the leafref. |
| 2487 | * @return LY_SUCCESS or LY_EVALID; |
| 2488 | */ |
| 2489 | static LY_ERR |
| 2490 | lys_compile_leafref_features_validate(const struct lysc_node *refnode, const struct lysc_node *target) |
| 2491 | { |
| 2492 | LY_ERR ret = LY_EVALID; |
| 2493 | const struct lysc_node *iter; |
Radek Krejci | 1deb5be | 2020-08-26 16:43:36 +0200 | [diff] [blame] | 2494 | LY_ARRAY_COUNT_TYPE u, v; |
Radek Krejci | 58d171e | 2018-11-23 13:50:55 +0100 | [diff] [blame] | 2495 | struct ly_set features = {0}; |
| 2496 | |
| 2497 | for (iter = refnode; iter; iter = iter->parent) { |
Radek Krejci | 056d0a8 | 2018-12-06 16:57:25 +0100 | [diff] [blame] | 2498 | if (iter->iffeatures) { |
| 2499 | LY_ARRAY_FOR(iter->iffeatures, u) { |
| 2500 | LY_ARRAY_FOR(iter->iffeatures[u].features, v) { |
Radek Krejci | ba03a5a | 2020-08-27 14:40:41 +0200 | [diff] [blame] | 2501 | LY_CHECK_GOTO(ly_set_add(&features, iter->iffeatures[u].features[v], 0, NULL), cleanup); |
Radek Krejci | 58d171e | 2018-11-23 13:50:55 +0100 | [diff] [blame] | 2502 | } |
| 2503 | } |
| 2504 | } |
| 2505 | } |
| 2506 | |
| 2507 | /* we should have, in features set, a superset of features applicable to the target node. |
Radek Krejci | ba03a5a | 2020-08-27 14:40:41 +0200 | [diff] [blame] | 2508 | * If the feature is not present, we don;t have a subset of features applicable |
Radek Krejci | 58d171e | 2018-11-23 13:50:55 +0100 | [diff] [blame] | 2509 | * to the leafref itself. */ |
Radek Krejci | 58d171e | 2018-11-23 13:50:55 +0100 | [diff] [blame] | 2510 | for (iter = target; iter; iter = iter->parent) { |
Radek Krejci | 056d0a8 | 2018-12-06 16:57:25 +0100 | [diff] [blame] | 2511 | if (iter->iffeatures) { |
| 2512 | LY_ARRAY_FOR(iter->iffeatures, u) { |
| 2513 | LY_ARRAY_FOR(iter->iffeatures[u].features, v) { |
Radek Krejci | ba03a5a | 2020-08-27 14:40:41 +0200 | [diff] [blame] | 2514 | if (!ly_set_contains(&features, iter->iffeatures[u].features[v], NULL)) { |
| 2515 | /* feature not present */ |
Radek Krejci | 58d171e | 2018-11-23 13:50:55 +0100 | [diff] [blame] | 2516 | goto cleanup; |
| 2517 | } |
| 2518 | } |
| 2519 | } |
| 2520 | } |
| 2521 | } |
| 2522 | ret = LY_SUCCESS; |
| 2523 | |
| 2524 | cleanup: |
| 2525 | ly_set_erase(&features, NULL); |
| 2526 | return ret; |
| 2527 | } |
| 2528 | |
Michal Vasko | 7f45cf2 | 2020-10-01 12:49:44 +0200 | [diff] [blame] | 2529 | static LY_ERR lys_compile_type(struct lysc_ctx *ctx, struct lysp_node *context_pnode, uint16_t context_flags, |
Radek Krejci | 0f96988 | 2020-08-21 16:56:47 +0200 | [diff] [blame] | 2530 | struct lysp_module *context_mod, const char *context_name, struct lysp_type *type_p, |
Michal Vasko | 7f45cf2 | 2020-10-01 12:49:44 +0200 | [diff] [blame] | 2531 | struct lysc_type **type, const char **units, struct lysp_qname **dflt); |
Radek Krejci | a304538 | 2018-11-22 14:30:31 +0100 | [diff] [blame] | 2532 | |
Radek Krejci | a304538 | 2018-11-22 14:30:31 +0100 | [diff] [blame] | 2533 | /** |
| 2534 | * @brief The core of the lys_compile_type() - compile information about the given type (from typedef or leaf/leaf-list). |
| 2535 | * @param[in] ctx Compile context. |
Michal Vasko | 7f45cf2 | 2020-10-01 12:49:44 +0200 | [diff] [blame] | 2536 | * @param[in] context_pnode Schema node where the type/typedef is placed to correctly find the base types. |
Radek Krejci | cdfecd9 | 2018-11-26 11:27:32 +0100 | [diff] [blame] | 2537 | * @param[in] context_flags Flags of the context node or the referencing typedef to correctly check status of referencing and referenced objects. |
| 2538 | * @param[in] context_mod Module of the context node or the referencing typedef to correctly check status of referencing and referenced objects. |
| 2539 | * @param[in] context_name Name of the context node or referencing typedef for logging. |
Radek Krejci | a304538 | 2018-11-22 14:30:31 +0100 | [diff] [blame] | 2540 | * @param[in] type_p Parsed type to compile. |
Radek Krejci | 0a33b04 | 2020-05-27 10:05:06 +0200 | [diff] [blame] | 2541 | * @param[in] module Context module for the leafref path and identityref (to correctly resolve prefixes) |
Radek Krejci | a304538 | 2018-11-22 14:30:31 +0100 | [diff] [blame] | 2542 | * @param[in] basetype Base YANG built-in type of the type to compile. |
Radek Krejci | a304538 | 2018-11-22 14:30:31 +0100 | [diff] [blame] | 2543 | * @param[in] tpdfname Name of the type's typedef, serves as a flag - if it is leaf/leaf-list's type, it is NULL. |
| 2544 | * @param[in] base The latest base (compiled) type from which the current type is being derived. |
| 2545 | * @param[out] type Newly created type structure with the filled information about the type. |
| 2546 | * @return LY_ERR value. |
| 2547 | */ |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 2548 | static LY_ERR |
Michal Vasko | 7f45cf2 | 2020-10-01 12:49:44 +0200 | [diff] [blame] | 2549 | lys_compile_type_(struct lysc_ctx *ctx, struct lysp_node *context_pnode, uint16_t context_flags, |
Michal Vasko | 1734be9 | 2020-09-22 08:55:10 +0200 | [diff] [blame] | 2550 | struct lysp_module *context_mod, const char *context_name, struct lysp_type *type_p, struct lys_module *module, |
| 2551 | LY_DATA_TYPE basetype, const char *tpdfname, struct lysc_type *base, struct lysc_type **type) |
Radek Krejci | c5c27e5 | 2018-11-15 14:38:11 +0100 | [diff] [blame] | 2552 | { |
| 2553 | LY_ERR ret = LY_SUCCESS; |
Radek Krejci | c5c27e5 | 2018-11-15 14:38:11 +0100 | [diff] [blame] | 2554 | struct lysc_type_bin *bin; |
| 2555 | struct lysc_type_num *num; |
| 2556 | struct lysc_type_str *str; |
| 2557 | struct lysc_type_bits *bits; |
| 2558 | struct lysc_type_enum *enumeration; |
Radek Krejci | 6cba429 | 2018-11-15 17:33:29 +0100 | [diff] [blame] | 2559 | struct lysc_type_dec *dec; |
Radek Krejci | 555cb5b | 2018-11-16 14:54:33 +0100 | [diff] [blame] | 2560 | struct lysc_type_identityref *idref; |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 2561 | struct lysc_type_leafref *lref; |
Radek Krejci | cdfecd9 | 2018-11-26 11:27:32 +0100 | [diff] [blame] | 2562 | struct lysc_type_union *un, *un_aux; |
Radek Krejci | c5c27e5 | 2018-11-15 14:38:11 +0100 | [diff] [blame] | 2563 | |
| 2564 | switch (basetype) { |
| 2565 | case LY_TYPE_BINARY: |
Michal Vasko | 22df3f0 | 2020-08-24 13:29:22 +0200 | [diff] [blame] | 2566 | bin = (struct lysc_type_bin *)(*type); |
Radek Krejci | 555cb5b | 2018-11-16 14:54:33 +0100 | [diff] [blame] | 2567 | |
| 2568 | /* RFC 7950 9.8.1, 9.4.4 - length, number of octets it contains */ |
Radek Krejci | c5c27e5 | 2018-11-15 14:38:11 +0100 | [diff] [blame] | 2569 | if (type_p->length) { |
Radek Krejci | 99b5b2a | 2019-04-30 16:57:04 +0200 | [diff] [blame] | 2570 | LY_CHECK_RET(lys_compile_type_range(ctx, type_p->length, basetype, 1, 0, |
Michal Vasko | 22df3f0 | 2020-08-24 13:29:22 +0200 | [diff] [blame] | 2571 | base ? ((struct lysc_type_bin *)base)->length : NULL, &bin->length)); |
Radek Krejci | c5c27e5 | 2018-11-15 14:38:11 +0100 | [diff] [blame] | 2572 | if (!tpdfname) { |
Michal Vasko | 1734be9 | 2020-09-22 08:55:10 +0200 | [diff] [blame] | 2573 | COMPILE_EXTS_GOTO(ctx, type_p->length->exts, bin->length->exts, bin->length, LYEXT_PAR_LENGTH, ret, cleanup); |
Radek Krejci | c5c27e5 | 2018-11-15 14:38:11 +0100 | [diff] [blame] | 2574 | } |
| 2575 | } |
Radek Krejci | c5c27e5 | 2018-11-15 14:38:11 +0100 | [diff] [blame] | 2576 | break; |
| 2577 | case LY_TYPE_BITS: |
| 2578 | /* RFC 7950 9.7 - bits */ |
Michal Vasko | 22df3f0 | 2020-08-24 13:29:22 +0200 | [diff] [blame] | 2579 | bits = (struct lysc_type_bits *)(*type); |
Radek Krejci | c5c27e5 | 2018-11-15 14:38:11 +0100 | [diff] [blame] | 2580 | if (type_p->bits) { |
Radek Krejci | ec4da80 | 2019-05-02 13:02:41 +0200 | [diff] [blame] | 2581 | LY_CHECK_RET(lys_compile_type_enums(ctx, type_p->bits, basetype, |
Michal Vasko | 22df3f0 | 2020-08-24 13:29:22 +0200 | [diff] [blame] | 2582 | base ? (struct lysc_type_bitenum_item *)((struct lysc_type_bits *)base)->bits : NULL, |
| 2583 | (struct lysc_type_bitenum_item **)&bits->bits)); |
Radek Krejci | c5c27e5 | 2018-11-15 14:38:11 +0100 | [diff] [blame] | 2584 | } |
| 2585 | |
Radek Krejci | 555cb5b | 2018-11-16 14:54:33 +0100 | [diff] [blame] | 2586 | if (!base && !type_p->flags) { |
Radek Krejci | c5c27e5 | 2018-11-15 14:38:11 +0100 | [diff] [blame] | 2587 | /* type derived from bits built-in type must contain at least one bit */ |
Radek Krejci | 6cba429 | 2018-11-15 17:33:29 +0100 | [diff] [blame] | 2588 | if (tpdfname) { |
Radek Krejci | 555cb5b | 2018-11-16 14:54:33 +0100 | [diff] [blame] | 2589 | LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LY_VCODE_MISSCHILDSTMT, "bit", "bits type ", tpdfname); |
Radek Krejci | 6cba429 | 2018-11-15 17:33:29 +0100 | [diff] [blame] | 2590 | } else { |
Radek Krejci | 555cb5b | 2018-11-16 14:54:33 +0100 | [diff] [blame] | 2591 | LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LY_VCODE_MISSCHILDSTMT, "bit", "bits type", ""); |
Radek Krejci | c5c27e5 | 2018-11-15 14:38:11 +0100 | [diff] [blame] | 2592 | } |
Radek Krejci | 6cba429 | 2018-11-15 17:33:29 +0100 | [diff] [blame] | 2593 | return LY_EVALID; |
Radek Krejci | c5c27e5 | 2018-11-15 14:38:11 +0100 | [diff] [blame] | 2594 | } |
Radek Krejci | c5c27e5 | 2018-11-15 14:38:11 +0100 | [diff] [blame] | 2595 | break; |
Radek Krejci | 6cba429 | 2018-11-15 17:33:29 +0100 | [diff] [blame] | 2596 | case LY_TYPE_DEC64: |
Radek Krejci | 115a74d | 2020-08-14 22:18:12 +0200 | [diff] [blame] | 2597 | dec = (struct lysc_type_dec *)(*type); |
Radek Krejci | 6cba429 | 2018-11-15 17:33:29 +0100 | [diff] [blame] | 2598 | |
| 2599 | /* RFC 7950 9.3.4 - fraction-digits */ |
Radek Krejci | 555cb5b | 2018-11-16 14:54:33 +0100 | [diff] [blame] | 2600 | if (!base) { |
Radek Krejci | 643c824 | 2018-11-15 17:51:11 +0100 | [diff] [blame] | 2601 | if (!type_p->fraction_digits) { |
| 2602 | if (tpdfname) { |
Radek Krejci | 555cb5b | 2018-11-16 14:54:33 +0100 | [diff] [blame] | 2603 | LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LY_VCODE_MISSCHILDSTMT, "fraction-digits", "decimal64 type ", tpdfname); |
Radek Krejci | 643c824 | 2018-11-15 17:51:11 +0100 | [diff] [blame] | 2604 | } else { |
Radek Krejci | 555cb5b | 2018-11-16 14:54:33 +0100 | [diff] [blame] | 2605 | LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LY_VCODE_MISSCHILDSTMT, "fraction-digits", "decimal64 type", ""); |
Radek Krejci | 643c824 | 2018-11-15 17:51:11 +0100 | [diff] [blame] | 2606 | } |
| 2607 | return LY_EVALID; |
| 2608 | } |
Radek Krejci | 115a74d | 2020-08-14 22:18:12 +0200 | [diff] [blame] | 2609 | dec->fraction_digits = type_p->fraction_digits; |
| 2610 | } else { |
| 2611 | if (type_p->fraction_digits) { |
| 2612 | /* fraction digits is prohibited in types not directly derived from built-in decimal64 */ |
| 2613 | if (tpdfname) { |
| 2614 | LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SYNTAX_YANG, |
| 2615 | "Invalid fraction-digits substatement for type \"%s\" not directly derived from decimal64 built-in type.", |
| 2616 | tpdfname); |
| 2617 | } else { |
| 2618 | LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SYNTAX_YANG, |
| 2619 | "Invalid fraction-digits substatement for type not directly derived from decimal64 built-in type."); |
Radek Krejci | 115a74d | 2020-08-14 22:18:12 +0200 | [diff] [blame] | 2620 | } |
| 2621 | return LY_EVALID; |
Radek Krejci | 6cba429 | 2018-11-15 17:33:29 +0100 | [diff] [blame] | 2622 | } |
Radek Krejci | 115a74d | 2020-08-14 22:18:12 +0200 | [diff] [blame] | 2623 | dec->fraction_digits = ((struct lysc_type_dec *)base)->fraction_digits; |
Radek Krejci | 6cba429 | 2018-11-15 17:33:29 +0100 | [diff] [blame] | 2624 | } |
Radek Krejci | 6cba429 | 2018-11-15 17:33:29 +0100 | [diff] [blame] | 2625 | |
| 2626 | /* RFC 7950 9.2.4 - range */ |
| 2627 | if (type_p->range) { |
Radek Krejci | 99b5b2a | 2019-04-30 16:57:04 +0200 | [diff] [blame] | 2628 | LY_CHECK_RET(lys_compile_type_range(ctx, type_p->range, basetype, 0, dec->fraction_digits, |
Radek Krejci | 115a74d | 2020-08-14 22:18:12 +0200 | [diff] [blame] | 2629 | base ? ((struct lysc_type_dec *)base)->range : NULL, &dec->range)); |
Radek Krejci | 6cba429 | 2018-11-15 17:33:29 +0100 | [diff] [blame] | 2630 | if (!tpdfname) { |
Michal Vasko | 1734be9 | 2020-09-22 08:55:10 +0200 | [diff] [blame] | 2631 | COMPILE_EXTS_GOTO(ctx, type_p->range->exts, dec->range->exts, dec->range, LYEXT_PAR_RANGE, ret, cleanup); |
Radek Krejci | 6cba429 | 2018-11-15 17:33:29 +0100 | [diff] [blame] | 2632 | } |
Radek Krejci | 6cba429 | 2018-11-15 17:33:29 +0100 | [diff] [blame] | 2633 | } |
Radek Krejci | 6cba429 | 2018-11-15 17:33:29 +0100 | [diff] [blame] | 2634 | break; |
Radek Krejci | c5c27e5 | 2018-11-15 14:38:11 +0100 | [diff] [blame] | 2635 | case LY_TYPE_STRING: |
Michal Vasko | 22df3f0 | 2020-08-24 13:29:22 +0200 | [diff] [blame] | 2636 | str = (struct lysc_type_str *)(*type); |
Radek Krejci | 555cb5b | 2018-11-16 14:54:33 +0100 | [diff] [blame] | 2637 | |
| 2638 | /* RFC 7950 9.4.4 - length */ |
Radek Krejci | c5c27e5 | 2018-11-15 14:38:11 +0100 | [diff] [blame] | 2639 | if (type_p->length) { |
Radek Krejci | 99b5b2a | 2019-04-30 16:57:04 +0200 | [diff] [blame] | 2640 | LY_CHECK_RET(lys_compile_type_range(ctx, type_p->length, basetype, 1, 0, |
Michal Vasko | 22df3f0 | 2020-08-24 13:29:22 +0200 | [diff] [blame] | 2641 | base ? ((struct lysc_type_str *)base)->length : NULL, &str->length)); |
Radek Krejci | c5c27e5 | 2018-11-15 14:38:11 +0100 | [diff] [blame] | 2642 | if (!tpdfname) { |
Michal Vasko | 1734be9 | 2020-09-22 08:55:10 +0200 | [diff] [blame] | 2643 | COMPILE_EXTS_GOTO(ctx, type_p->length->exts, str->length->exts, str->length, LYEXT_PAR_LENGTH, ret, cleanup); |
Radek Krejci | c5c27e5 | 2018-11-15 14:38:11 +0100 | [diff] [blame] | 2644 | } |
Michal Vasko | 22df3f0 | 2020-08-24 13:29:22 +0200 | [diff] [blame] | 2645 | } else if (base && ((struct lysc_type_str *)base)->length) { |
| 2646 | str->length = lysc_range_dup(ctx->ctx, ((struct lysc_type_str *)base)->length); |
Radek Krejci | c5c27e5 | 2018-11-15 14:38:11 +0100 | [diff] [blame] | 2647 | } |
| 2648 | |
| 2649 | /* RFC 7950 9.4.5 - pattern */ |
| 2650 | if (type_p->patterns) { |
Radek Krejci | ec4da80 | 2019-05-02 13:02:41 +0200 | [diff] [blame] | 2651 | LY_CHECK_RET(lys_compile_type_patterns(ctx, type_p->patterns, |
Michal Vasko | 22df3f0 | 2020-08-24 13:29:22 +0200 | [diff] [blame] | 2652 | base ? ((struct lysc_type_str *)base)->patterns : NULL, &str->patterns)); |
| 2653 | } else if (base && ((struct lysc_type_str *)base)->patterns) { |
| 2654 | str->patterns = lysc_patterns_dup(ctx->ctx, ((struct lysc_type_str *)base)->patterns); |
Radek Krejci | c5c27e5 | 2018-11-15 14:38:11 +0100 | [diff] [blame] | 2655 | } |
Radek Krejci | c5c27e5 | 2018-11-15 14:38:11 +0100 | [diff] [blame] | 2656 | break; |
| 2657 | case LY_TYPE_ENUM: |
Michal Vasko | 22df3f0 | 2020-08-24 13:29:22 +0200 | [diff] [blame] | 2658 | enumeration = (struct lysc_type_enum *)(*type); |
Radek Krejci | 555cb5b | 2018-11-16 14:54:33 +0100 | [diff] [blame] | 2659 | |
| 2660 | /* RFC 7950 9.6 - enum */ |
Radek Krejci | c5c27e5 | 2018-11-15 14:38:11 +0100 | [diff] [blame] | 2661 | if (type_p->enums) { |
Radek Krejci | ec4da80 | 2019-05-02 13:02:41 +0200 | [diff] [blame] | 2662 | LY_CHECK_RET(lys_compile_type_enums(ctx, type_p->enums, basetype, |
Michal Vasko | 22df3f0 | 2020-08-24 13:29:22 +0200 | [diff] [blame] | 2663 | base ? ((struct lysc_type_enum *)base)->enums : NULL, &enumeration->enums)); |
Radek Krejci | c5c27e5 | 2018-11-15 14:38:11 +0100 | [diff] [blame] | 2664 | } |
| 2665 | |
Radek Krejci | 555cb5b | 2018-11-16 14:54:33 +0100 | [diff] [blame] | 2666 | if (!base && !type_p->flags) { |
Radek Krejci | c5c27e5 | 2018-11-15 14:38:11 +0100 | [diff] [blame] | 2667 | /* type derived from enumerations built-in type must contain at least one enum */ |
Radek Krejci | 6cba429 | 2018-11-15 17:33:29 +0100 | [diff] [blame] | 2668 | if (tpdfname) { |
Radek Krejci | 555cb5b | 2018-11-16 14:54:33 +0100 | [diff] [blame] | 2669 | LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LY_VCODE_MISSCHILDSTMT, "enum", "enumeration type ", tpdfname); |
Radek Krejci | 6cba429 | 2018-11-15 17:33:29 +0100 | [diff] [blame] | 2670 | } else { |
Radek Krejci | 555cb5b | 2018-11-16 14:54:33 +0100 | [diff] [blame] | 2671 | LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LY_VCODE_MISSCHILDSTMT, "enum", "enumeration type", ""); |
Radek Krejci | c5c27e5 | 2018-11-15 14:38:11 +0100 | [diff] [blame] | 2672 | } |
Radek Krejci | 6cba429 | 2018-11-15 17:33:29 +0100 | [diff] [blame] | 2673 | return LY_EVALID; |
Radek Krejci | c5c27e5 | 2018-11-15 14:38:11 +0100 | [diff] [blame] | 2674 | } |
Radek Krejci | c5c27e5 | 2018-11-15 14:38:11 +0100 | [diff] [blame] | 2675 | break; |
| 2676 | case LY_TYPE_INT8: |
| 2677 | case LY_TYPE_UINT8: |
| 2678 | case LY_TYPE_INT16: |
| 2679 | case LY_TYPE_UINT16: |
| 2680 | case LY_TYPE_INT32: |
| 2681 | case LY_TYPE_UINT32: |
| 2682 | case LY_TYPE_INT64: |
| 2683 | case LY_TYPE_UINT64: |
Michal Vasko | 22df3f0 | 2020-08-24 13:29:22 +0200 | [diff] [blame] | 2684 | num = (struct lysc_type_num *)(*type); |
Radek Krejci | 555cb5b | 2018-11-16 14:54:33 +0100 | [diff] [blame] | 2685 | |
| 2686 | /* RFC 6020 9.2.4 - range */ |
Radek Krejci | c5c27e5 | 2018-11-15 14:38:11 +0100 | [diff] [blame] | 2687 | if (type_p->range) { |
Radek Krejci | 99b5b2a | 2019-04-30 16:57:04 +0200 | [diff] [blame] | 2688 | LY_CHECK_RET(lys_compile_type_range(ctx, type_p->range, basetype, 0, 0, |
Michal Vasko | 22df3f0 | 2020-08-24 13:29:22 +0200 | [diff] [blame] | 2689 | base ? ((struct lysc_type_num *)base)->range : NULL, &num->range)); |
Radek Krejci | c5c27e5 | 2018-11-15 14:38:11 +0100 | [diff] [blame] | 2690 | if (!tpdfname) { |
Michal Vasko | 1734be9 | 2020-09-22 08:55:10 +0200 | [diff] [blame] | 2691 | COMPILE_EXTS_GOTO(ctx, type_p->range->exts, num->range->exts, num->range, LYEXT_PAR_RANGE, ret, cleanup); |
Radek Krejci | c5c27e5 | 2018-11-15 14:38:11 +0100 | [diff] [blame] | 2692 | } |
| 2693 | } |
Radek Krejci | c5c27e5 | 2018-11-15 14:38:11 +0100 | [diff] [blame] | 2694 | break; |
Radek Krejci | 555cb5b | 2018-11-16 14:54:33 +0100 | [diff] [blame] | 2695 | case LY_TYPE_IDENT: |
Michal Vasko | 22df3f0 | 2020-08-24 13:29:22 +0200 | [diff] [blame] | 2696 | idref = (struct lysc_type_identityref *)(*type); |
Radek Krejci | 555cb5b | 2018-11-16 14:54:33 +0100 | [diff] [blame] | 2697 | |
| 2698 | /* RFC 7950 9.10.2 - base */ |
| 2699 | if (type_p->bases) { |
| 2700 | if (base) { |
| 2701 | /* only the directly derived identityrefs can contain base specification */ |
| 2702 | if (tpdfname) { |
| 2703 | LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SYNTAX_YANG, |
Radek Krejci | cdfecd9 | 2018-11-26 11:27:32 +0100 | [diff] [blame] | 2704 | "Invalid base substatement for the type \"%s\" not directly derived from identityref built-in type.", |
Radek Krejci | 555cb5b | 2018-11-16 14:54:33 +0100 | [diff] [blame] | 2705 | tpdfname); |
| 2706 | } else { |
| 2707 | LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SYNTAX_YANG, |
Radek Krejci | cdfecd9 | 2018-11-26 11:27:32 +0100 | [diff] [blame] | 2708 | "Invalid base substatement for the type not directly derived from identityref built-in type."); |
Radek Krejci | 555cb5b | 2018-11-16 14:54:33 +0100 | [diff] [blame] | 2709 | } |
| 2710 | return LY_EVALID; |
| 2711 | } |
Radek Krejci | 0a33b04 | 2020-05-27 10:05:06 +0200 | [diff] [blame] | 2712 | LY_CHECK_RET(lys_compile_identity_bases(ctx, module, type_p->bases, NULL, &idref->bases)); |
Radek Krejci | 555cb5b | 2018-11-16 14:54:33 +0100 | [diff] [blame] | 2713 | } |
| 2714 | |
| 2715 | if (!base && !type_p->flags) { |
| 2716 | /* type derived from identityref built-in type must contain at least one base */ |
| 2717 | if (tpdfname) { |
| 2718 | LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LY_VCODE_MISSCHILDSTMT, "base", "identityref type ", tpdfname); |
| 2719 | } else { |
| 2720 | LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LY_VCODE_MISSCHILDSTMT, "base", "identityref type", ""); |
Radek Krejci | 555cb5b | 2018-11-16 14:54:33 +0100 | [diff] [blame] | 2721 | } |
| 2722 | return LY_EVALID; |
| 2723 | } |
Radek Krejci | 555cb5b | 2018-11-16 14:54:33 +0100 | [diff] [blame] | 2724 | break; |
Radek Krejci | a304538 | 2018-11-22 14:30:31 +0100 | [diff] [blame] | 2725 | case LY_TYPE_LEAFREF: |
Michal Vasko | 22df3f0 | 2020-08-24 13:29:22 +0200 | [diff] [blame] | 2726 | lref = (struct lysc_type_leafref *)*type; |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 2727 | |
Radek Krejci | a304538 | 2018-11-22 14:30:31 +0100 | [diff] [blame] | 2728 | /* RFC 7950 9.9.3 - require-instance */ |
| 2729 | if (type_p->flags & LYS_SET_REQINST) { |
Radek Krejci | 0bcdaed | 2019-01-10 10:21:34 +0100 | [diff] [blame] | 2730 | if (context_mod->mod->version < LYS_VERSION_1_1) { |
Radek Krejci | 9bb94eb | 2018-12-04 16:48:35 +0100 | [diff] [blame] | 2731 | if (tpdfname) { |
| 2732 | LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SEMANTICS, |
| 2733 | "Leafref type \"%s\" can be restricted by require-instance statement only in YANG 1.1 modules.", tpdfname); |
| 2734 | } else { |
| 2735 | LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SEMANTICS, |
| 2736 | "Leafref type can be restricted by require-instance statement only in YANG 1.1 modules."); |
Radek Krejci | 9bb94eb | 2018-12-04 16:48:35 +0100 | [diff] [blame] | 2737 | } |
| 2738 | return LY_EVALID; |
| 2739 | } |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 2740 | lref->require_instance = type_p->require_instance; |
Radek Krejci | 412ddfa | 2018-11-23 11:44:11 +0100 | [diff] [blame] | 2741 | } else if (base) { |
| 2742 | /* inherit */ |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 2743 | lref->require_instance = ((struct lysc_type_leafref *)base)->require_instance; |
Radek Krejci | a304538 | 2018-11-22 14:30:31 +0100 | [diff] [blame] | 2744 | } else { |
| 2745 | /* default is true */ |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 2746 | lref->require_instance = 1; |
Radek Krejci | a304538 | 2018-11-22 14:30:31 +0100 | [diff] [blame] | 2747 | } |
| 2748 | if (type_p->path) { |
Michal Vasko | 1734be9 | 2020-09-22 08:55:10 +0200 | [diff] [blame] | 2749 | LY_CHECK_RET(lyxp_expr_dup(ctx->ctx, type_p->path, &lref->path)); |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 2750 | lref->path_context = module; |
Radek Krejci | a304538 | 2018-11-22 14:30:31 +0100 | [diff] [blame] | 2751 | } else if (base) { |
Michal Vasko | 1734be9 | 2020-09-22 08:55:10 +0200 | [diff] [blame] | 2752 | LY_CHECK_RET(lyxp_expr_dup(ctx->ctx, ((struct lysc_type_leafref *)base)->path, &lref->path)); |
Michal Vasko | 22df3f0 | 2020-08-24 13:29:22 +0200 | [diff] [blame] | 2753 | lref->path_context = ((struct lysc_type_leafref *)base)->path_context; |
Radek Krejci | a304538 | 2018-11-22 14:30:31 +0100 | [diff] [blame] | 2754 | } else if (tpdfname) { |
| 2755 | LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LY_VCODE_MISSCHILDSTMT, "path", "leafref type ", tpdfname); |
| 2756 | return LY_EVALID; |
| 2757 | } else { |
| 2758 | LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LY_VCODE_MISSCHILDSTMT, "path", "leafref type", ""); |
Radek Krejci | a304538 | 2018-11-22 14:30:31 +0100 | [diff] [blame] | 2759 | return LY_EVALID; |
| 2760 | } |
Radek Krejci | a304538 | 2018-11-22 14:30:31 +0100 | [diff] [blame] | 2761 | break; |
Radek Krejci | 16c0f82 | 2018-11-16 10:46:10 +0100 | [diff] [blame] | 2762 | case LY_TYPE_INST: |
| 2763 | /* RFC 7950 9.9.3 - require-instance */ |
| 2764 | if (type_p->flags & LYS_SET_REQINST) { |
Michal Vasko | 22df3f0 | 2020-08-24 13:29:22 +0200 | [diff] [blame] | 2765 | ((struct lysc_type_instanceid *)(*type))->require_instance = type_p->require_instance; |
Radek Krejci | 16c0f82 | 2018-11-16 10:46:10 +0100 | [diff] [blame] | 2766 | } else { |
| 2767 | /* default is true */ |
Michal Vasko | 22df3f0 | 2020-08-24 13:29:22 +0200 | [diff] [blame] | 2768 | ((struct lysc_type_instanceid *)(*type))->require_instance = 1; |
Radek Krejci | 16c0f82 | 2018-11-16 10:46:10 +0100 | [diff] [blame] | 2769 | } |
Radek Krejci | 16c0f82 | 2018-11-16 10:46:10 +0100 | [diff] [blame] | 2770 | break; |
Radek Krejci | cdfecd9 | 2018-11-26 11:27:32 +0100 | [diff] [blame] | 2771 | case LY_TYPE_UNION: |
Michal Vasko | 22df3f0 | 2020-08-24 13:29:22 +0200 | [diff] [blame] | 2772 | un = (struct lysc_type_union *)(*type); |
Radek Krejci | cdfecd9 | 2018-11-26 11:27:32 +0100 | [diff] [blame] | 2773 | |
| 2774 | /* RFC 7950 7.4 - type */ |
| 2775 | if (type_p->types) { |
| 2776 | if (base) { |
| 2777 | /* only the directly derived union can contain types specification */ |
| 2778 | if (tpdfname) { |
| 2779 | LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SYNTAX_YANG, |
| 2780 | "Invalid type substatement for the type \"%s\" not directly derived from union built-in type.", |
| 2781 | tpdfname); |
| 2782 | } else { |
| 2783 | LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SYNTAX_YANG, |
| 2784 | "Invalid type substatement for the type not directly derived from union built-in type."); |
Radek Krejci | cdfecd9 | 2018-11-26 11:27:32 +0100 | [diff] [blame] | 2785 | } |
| 2786 | return LY_EVALID; |
| 2787 | } |
| 2788 | /* compile the type */ |
Michal Vasko | fd69e1d | 2020-07-03 11:57:17 +0200 | [diff] [blame] | 2789 | LY_ARRAY_CREATE_RET(ctx->ctx, un->types, LY_ARRAY_COUNT(type_p->types), LY_EVALID); |
| 2790 | for (LY_ARRAY_COUNT_TYPE u = 0, additional = 0; u < LY_ARRAY_COUNT(type_p->types); ++u) { |
Michal Vasko | 7f45cf2 | 2020-10-01 12:49:44 +0200 | [diff] [blame] | 2791 | LY_CHECK_RET(lys_compile_type(ctx, context_pnode, context_flags, context_mod, context_name, |
| 2792 | &type_p->types[u], &un->types[u + additional], NULL, NULL)); |
Radek Krejci | cdfecd9 | 2018-11-26 11:27:32 +0100 | [diff] [blame] | 2793 | if (un->types[u + additional]->basetype == LY_TYPE_UNION) { |
| 2794 | /* add space for additional types from the union subtype */ |
| 2795 | un_aux = (struct lysc_type_union *)un->types[u + additional]; |
Michal Vasko | 22df3f0 | 2020-08-24 13:29:22 +0200 | [diff] [blame] | 2796 | LY_ARRAY_RESIZE_ERR_RET(ctx->ctx, un->types, (*((uint64_t *)(type_p->types) - 1)) + additional + LY_ARRAY_COUNT(un_aux->types) - 1, |
| 2797 | lysc_type_free(ctx->ctx, (struct lysc_type *)un_aux), LY_EMEM); |
Radek Krejci | cdfecd9 | 2018-11-26 11:27:32 +0100 | [diff] [blame] | 2798 | |
| 2799 | /* copy subtypes of the subtype union */ |
Michal Vasko | fd69e1d | 2020-07-03 11:57:17 +0200 | [diff] [blame] | 2800 | for (LY_ARRAY_COUNT_TYPE v = 0; v < LY_ARRAY_COUNT(un_aux->types); ++v) { |
Radek Krejci | cdfecd9 | 2018-11-26 11:27:32 +0100 | [diff] [blame] | 2801 | if (un_aux->types[v]->basetype == LY_TYPE_LEAFREF) { |
| 2802 | /* duplicate the whole structure because of the instance-specific path resolving for realtype */ |
| 2803 | un->types[u + additional] = calloc(1, sizeof(struct lysc_type_leafref)); |
Michal Vasko | 22df3f0 | 2020-08-24 13:29:22 +0200 | [diff] [blame] | 2804 | LY_CHECK_ERR_RET(!un->types[u + additional], LOGMEM(ctx->ctx); lysc_type_free(ctx->ctx, (struct lysc_type *)un_aux), LY_EMEM); |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 2805 | lref = (struct lysc_type_leafref *)un->types[u + additional]; |
| 2806 | |
| 2807 | lref->basetype = LY_TYPE_LEAFREF; |
Michal Vasko | 1734be9 | 2020-09-22 08:55:10 +0200 | [diff] [blame] | 2808 | LY_CHECK_RET(lyxp_expr_dup(ctx->ctx, ((struct lysc_type_leafref *)un_aux->types[v])->path, &lref->path)); |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 2809 | lref->refcount = 1; |
Michal Vasko | 22df3f0 | 2020-08-24 13:29:22 +0200 | [diff] [blame] | 2810 | lref->require_instance = ((struct lysc_type_leafref *)un_aux->types[v])->require_instance; |
| 2811 | lref->path_context = ((struct lysc_type_leafref *)un_aux->types[v])->path_context; |
Radek Krejci | cdfecd9 | 2018-11-26 11:27:32 +0100 | [diff] [blame] | 2812 | /* TODO extensions */ |
| 2813 | |
| 2814 | } else { |
| 2815 | un->types[u + additional] = un_aux->types[v]; |
| 2816 | ++un_aux->types[v]->refcount; |
| 2817 | } |
| 2818 | ++additional; |
| 2819 | LY_ARRAY_INCREMENT(un->types); |
| 2820 | } |
| 2821 | /* compensate u increment in main loop */ |
| 2822 | --additional; |
| 2823 | |
| 2824 | /* free the replaced union subtype */ |
Michal Vasko | 22df3f0 | 2020-08-24 13:29:22 +0200 | [diff] [blame] | 2825 | lysc_type_free(ctx->ctx, (struct lysc_type *)un_aux); |
Radek Krejci | cdfecd9 | 2018-11-26 11:27:32 +0100 | [diff] [blame] | 2826 | } else { |
| 2827 | LY_ARRAY_INCREMENT(un->types); |
| 2828 | } |
Radek Krejci | cdfecd9 | 2018-11-26 11:27:32 +0100 | [diff] [blame] | 2829 | } |
| 2830 | } |
| 2831 | |
| 2832 | if (!base && !type_p->flags) { |
| 2833 | /* type derived from union built-in type must contain at least one type */ |
| 2834 | if (tpdfname) { |
| 2835 | LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LY_VCODE_MISSCHILDSTMT, "type", "union type ", tpdfname); |
| 2836 | } else { |
| 2837 | LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LY_VCODE_MISSCHILDSTMT, "type", "union type", ""); |
Radek Krejci | cdfecd9 | 2018-11-26 11:27:32 +0100 | [diff] [blame] | 2838 | } |
| 2839 | return LY_EVALID; |
| 2840 | } |
Radek Krejci | cdfecd9 | 2018-11-26 11:27:32 +0100 | [diff] [blame] | 2841 | break; |
Radek Krejci | c5c27e5 | 2018-11-15 14:38:11 +0100 | [diff] [blame] | 2842 | case LY_TYPE_BOOL: |
| 2843 | case LY_TYPE_EMPTY: |
| 2844 | case LY_TYPE_UNKNOWN: /* just to complete switch */ |
| 2845 | break; |
| 2846 | } |
Michal Vasko | 1734be9 | 2020-09-22 08:55:10 +0200 | [diff] [blame] | 2847 | |
| 2848 | if (tpdfname) { |
| 2849 | switch (basetype) { |
| 2850 | case LY_TYPE_BINARY: |
| 2851 | type_p->compiled = *type; |
| 2852 | *type = calloc(1, sizeof(struct lysc_type_bin)); |
| 2853 | break; |
| 2854 | case LY_TYPE_BITS: |
| 2855 | type_p->compiled = *type; |
| 2856 | *type = calloc(1, sizeof(struct lysc_type_bits)); |
| 2857 | break; |
| 2858 | case LY_TYPE_DEC64: |
| 2859 | type_p->compiled = *type; |
| 2860 | *type = calloc(1, sizeof(struct lysc_type_dec)); |
| 2861 | break; |
| 2862 | case LY_TYPE_STRING: |
| 2863 | type_p->compiled = *type; |
| 2864 | *type = calloc(1, sizeof(struct lysc_type_str)); |
| 2865 | break; |
| 2866 | case LY_TYPE_ENUM: |
| 2867 | type_p->compiled = *type; |
| 2868 | *type = calloc(1, sizeof(struct lysc_type_enum)); |
| 2869 | break; |
| 2870 | case LY_TYPE_INT8: |
| 2871 | case LY_TYPE_UINT8: |
| 2872 | case LY_TYPE_INT16: |
| 2873 | case LY_TYPE_UINT16: |
| 2874 | case LY_TYPE_INT32: |
| 2875 | case LY_TYPE_UINT32: |
| 2876 | case LY_TYPE_INT64: |
| 2877 | case LY_TYPE_UINT64: |
| 2878 | type_p->compiled = *type; |
| 2879 | *type = calloc(1, sizeof(struct lysc_type_num)); |
| 2880 | break; |
| 2881 | case LY_TYPE_IDENT: |
| 2882 | type_p->compiled = *type; |
| 2883 | *type = calloc(1, sizeof(struct lysc_type_identityref)); |
| 2884 | break; |
| 2885 | case LY_TYPE_LEAFREF: |
| 2886 | type_p->compiled = *type; |
| 2887 | *type = calloc(1, sizeof(struct lysc_type_leafref)); |
| 2888 | break; |
| 2889 | case LY_TYPE_INST: |
| 2890 | type_p->compiled = *type; |
| 2891 | *type = calloc(1, sizeof(struct lysc_type_instanceid)); |
| 2892 | break; |
| 2893 | case LY_TYPE_UNION: |
| 2894 | type_p->compiled = *type; |
| 2895 | *type = calloc(1, sizeof(struct lysc_type_union)); |
| 2896 | break; |
| 2897 | case LY_TYPE_BOOL: |
| 2898 | case LY_TYPE_EMPTY: |
| 2899 | case LY_TYPE_UNKNOWN: /* just to complete switch */ |
| 2900 | break; |
| 2901 | } |
| 2902 | } |
Radek Krejci | c5c27e5 | 2018-11-15 14:38:11 +0100 | [diff] [blame] | 2903 | LY_CHECK_ERR_RET(!(*type), LOGMEM(ctx->ctx), LY_EMEM); |
Michal Vasko | 1734be9 | 2020-09-22 08:55:10 +0200 | [diff] [blame] | 2904 | |
| 2905 | cleanup: |
Radek Krejci | c5c27e5 | 2018-11-15 14:38:11 +0100 | [diff] [blame] | 2906 | return ret; |
| 2907 | } |
| 2908 | |
Radek Krejci | a304538 | 2018-11-22 14:30:31 +0100 | [diff] [blame] | 2909 | /** |
| 2910 | * @brief Compile information about the leaf/leaf-list's type. |
| 2911 | * @param[in] ctx Compile context. |
Michal Vasko | 7f45cf2 | 2020-10-01 12:49:44 +0200 | [diff] [blame] | 2912 | * @param[in] context_pnode Schema node where the type/typedef is placed to correctly find the base types. |
Radek Krejci | cdfecd9 | 2018-11-26 11:27:32 +0100 | [diff] [blame] | 2913 | * @param[in] context_flags Flags of the context node or the referencing typedef to correctly check status of referencing and referenced objects. |
| 2914 | * @param[in] context_mod Module of the context node or the referencing typedef to correctly check status of referencing and referenced objects. |
| 2915 | * @param[in] context_name Name of the context node or referencing typedef for logging. |
| 2916 | * @param[in] type_p Parsed type to compile. |
Radek Krejci | a304538 | 2018-11-22 14:30:31 +0100 | [diff] [blame] | 2917 | * @param[out] type Newly created (or reused with increased refcount) type structure with the filled information about the type. |
Radek Krejci | cdfecd9 | 2018-11-26 11:27:32 +0100 | [diff] [blame] | 2918 | * @param[out] units Storage for inheriting units value from the typedefs the current type derives from. |
Michal Vasko | ba99a3e | 2020-08-18 15:50:05 +0200 | [diff] [blame] | 2919 | * @param[out] dflt Default value for the type. |
Radek Krejci | a304538 | 2018-11-22 14:30:31 +0100 | [diff] [blame] | 2920 | * @return LY_ERR value. |
| 2921 | */ |
Radek Krejci | c5c27e5 | 2018-11-15 14:38:11 +0100 | [diff] [blame] | 2922 | static LY_ERR |
Michal Vasko | 7f45cf2 | 2020-10-01 12:49:44 +0200 | [diff] [blame] | 2923 | lys_compile_type(struct lysc_ctx *ctx, struct lysp_node *context_pnode, uint16_t context_flags, |
Radek Krejci | 0f96988 | 2020-08-21 16:56:47 +0200 | [diff] [blame] | 2924 | struct lysp_module *context_mod, const char *context_name, struct lysp_type *type_p, |
Michal Vasko | 7f45cf2 | 2020-10-01 12:49:44 +0200 | [diff] [blame] | 2925 | struct lysc_type **type, const char **units, struct lysp_qname **dflt) |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 2926 | { |
| 2927 | LY_ERR ret = LY_SUCCESS; |
Radek Krejci | 857189e | 2020-09-01 13:26:36 +0200 | [diff] [blame] | 2928 | ly_bool dummyloops = 0; |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 2929 | struct type_context { |
| 2930 | const struct lysp_tpdf *tpdf; |
| 2931 | struct lysp_node *node; |
| 2932 | struct lysp_module *mod; |
Radek Krejci | 99b5b2a | 2019-04-30 16:57:04 +0200 | [diff] [blame] | 2933 | } *tctx, *tctx_prev = NULL, *tctx_iter; |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 2934 | LY_DATA_TYPE basetype = LY_TYPE_UNKNOWN; |
Radek Krejci | c5c27e5 | 2018-11-15 14:38:11 +0100 | [diff] [blame] | 2935 | struct lysc_type *base = NULL, *prev_type; |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 2936 | struct ly_set tpdf_chain = {0}; |
Michal Vasko | ba99a3e | 2020-08-18 15:50:05 +0200 | [diff] [blame] | 2937 | |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 2938 | (*type) = NULL; |
Michal Vasko | ba99a3e | 2020-08-18 15:50:05 +0200 | [diff] [blame] | 2939 | if (dflt) { |
| 2940 | *dflt = NULL; |
Michal Vasko | ba99a3e | 2020-08-18 15:50:05 +0200 | [diff] [blame] | 2941 | } |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 2942 | |
| 2943 | tctx = calloc(1, sizeof *tctx); |
| 2944 | LY_CHECK_ERR_RET(!tctx, LOGMEM(ctx->ctx), LY_EMEM); |
Michal Vasko | 7f45cf2 | 2020-10-01 12:49:44 +0200 | [diff] [blame] | 2945 | for (ret = lysp_type_find(type_p->name, context_pnode, ctx->mod_def->parsed, |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 2946 | &basetype, &tctx->tpdf, &tctx->node, &tctx->mod); |
| 2947 | ret == LY_SUCCESS; |
| 2948 | ret = lysp_type_find(tctx_prev->tpdf->type.name, tctx_prev->node, tctx_prev->mod, |
| 2949 | &basetype, &tctx->tpdf, &tctx->node, &tctx->mod)) { |
| 2950 | if (basetype) { |
| 2951 | break; |
| 2952 | } |
| 2953 | |
| 2954 | /* check status */ |
Radek Krejci | cdfecd9 | 2018-11-26 11:27:32 +0100 | [diff] [blame] | 2955 | ret = lysc_check_status(ctx, context_flags, context_mod, context_name, |
| 2956 | tctx->tpdf->flags, tctx->mod, tctx->node ? tctx->node->name : tctx->tpdf->name); |
Radek Krejci | 87e2525 | 2020-09-15 13:28:31 +0200 | [diff] [blame] | 2957 | LY_CHECK_ERR_GOTO(ret, free(tctx), cleanup); |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 2958 | |
Radek Krejci | cdfecd9 | 2018-11-26 11:27:32 +0100 | [diff] [blame] | 2959 | if (units && !*units) { |
| 2960 | /* inherit units */ |
Radek Krejci | 87e2525 | 2020-09-15 13:28:31 +0200 | [diff] [blame] | 2961 | DUP_STRING(ctx->ctx, tctx->tpdf->units, *units, ret); |
| 2962 | LY_CHECK_ERR_GOTO(ret, free(tctx), cleanup); |
Radek Krejci | cdfecd9 | 2018-11-26 11:27:32 +0100 | [diff] [blame] | 2963 | } |
Michal Vasko | 7f45cf2 | 2020-10-01 12:49:44 +0200 | [diff] [blame] | 2964 | if (dflt && !*dflt && tctx->tpdf->dflt.str) { |
Radek Krejci | cdfecd9 | 2018-11-26 11:27:32 +0100 | [diff] [blame] | 2965 | /* inherit default */ |
Michal Vasko | 7f45cf2 | 2020-10-01 12:49:44 +0200 | [diff] [blame] | 2966 | *dflt = (struct lysp_qname *)&tctx->tpdf->dflt; |
Radek Krejci | cdfecd9 | 2018-11-26 11:27:32 +0100 | [diff] [blame] | 2967 | } |
Michal Vasko | ba99a3e | 2020-08-18 15:50:05 +0200 | [diff] [blame] | 2968 | if (dummyloops && (!units || *units) && dflt && *dflt) { |
Michal Vasko | 22df3f0 | 2020-08-24 13:29:22 +0200 | [diff] [blame] | 2969 | basetype = ((struct type_context *)tpdf_chain.objs[tpdf_chain.count - 1])->tpdf->type.compiled->basetype; |
Radek Krejci | cdfecd9 | 2018-11-26 11:27:32 +0100 | [diff] [blame] | 2970 | break; |
| 2971 | } |
| 2972 | |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 2973 | if (tctx->tpdf->type.compiled) { |
Radek Krejci | cdfecd9 | 2018-11-26 11:27:32 +0100 | [diff] [blame] | 2974 | /* it is not necessary to continue, the rest of the chain was already compiled, |
| 2975 | * but we still may need to inherit default and units values, so start dummy loops */ |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 2976 | basetype = tctx->tpdf->type.compiled->basetype; |
Radek Krejci | ba03a5a | 2020-08-27 14:40:41 +0200 | [diff] [blame] | 2977 | ret = ly_set_add(&tpdf_chain, tctx, LY_SET_OPT_USEASLIST, NULL); |
Radek Krejci | 87e2525 | 2020-09-15 13:28:31 +0200 | [diff] [blame] | 2978 | LY_CHECK_ERR_GOTO(ret, free(tctx), cleanup); |
Radek Krejci | ba03a5a | 2020-08-27 14:40:41 +0200 | [diff] [blame] | 2979 | |
Michal Vasko | ba99a3e | 2020-08-18 15:50:05 +0200 | [diff] [blame] | 2980 | if ((units && !*units) || (dflt && !*dflt)) { |
Radek Krejci | cdfecd9 | 2018-11-26 11:27:32 +0100 | [diff] [blame] | 2981 | dummyloops = 1; |
| 2982 | goto preparenext; |
| 2983 | } else { |
| 2984 | tctx = NULL; |
| 2985 | break; |
| 2986 | } |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 2987 | } |
| 2988 | |
Radek Krejci | 99b5b2a | 2019-04-30 16:57:04 +0200 | [diff] [blame] | 2989 | /* circular typedef reference detection */ |
Radek Krejci | 1deb5be | 2020-08-26 16:43:36 +0200 | [diff] [blame] | 2990 | for (uint32_t u = 0; u < tpdf_chain.count; u++) { |
Radek Krejci | 99b5b2a | 2019-04-30 16:57:04 +0200 | [diff] [blame] | 2991 | /* local part */ |
Michal Vasko | 22df3f0 | 2020-08-24 13:29:22 +0200 | [diff] [blame] | 2992 | tctx_iter = (struct type_context *)tpdf_chain.objs[u]; |
Radek Krejci | 99b5b2a | 2019-04-30 16:57:04 +0200 | [diff] [blame] | 2993 | if (tctx_iter->mod == tctx->mod && tctx_iter->node == tctx->node && tctx_iter->tpdf == tctx->tpdf) { |
| 2994 | LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_REFERENCE, |
| 2995 | "Invalid \"%s\" type reference - circular chain of types detected.", tctx->tpdf->name); |
| 2996 | free(tctx); |
| 2997 | ret = LY_EVALID; |
| 2998 | goto cleanup; |
| 2999 | } |
| 3000 | } |
Radek Krejci | 1deb5be | 2020-08-26 16:43:36 +0200 | [diff] [blame] | 3001 | for (uint32_t u = 0; u < ctx->tpdf_chain.count; u++) { |
Radek Krejci | 99b5b2a | 2019-04-30 16:57:04 +0200 | [diff] [blame] | 3002 | /* global part for unions corner case */ |
Michal Vasko | 22df3f0 | 2020-08-24 13:29:22 +0200 | [diff] [blame] | 3003 | tctx_iter = (struct type_context *)ctx->tpdf_chain.objs[u]; |
Radek Krejci | 99b5b2a | 2019-04-30 16:57:04 +0200 | [diff] [blame] | 3004 | if (tctx_iter->mod == tctx->mod && tctx_iter->node == tctx->node && tctx_iter->tpdf == tctx->tpdf) { |
| 3005 | LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_REFERENCE, |
| 3006 | "Invalid \"%s\" type reference - circular chain of types detected.", tctx->tpdf->name); |
| 3007 | free(tctx); |
| 3008 | ret = LY_EVALID; |
| 3009 | goto cleanup; |
| 3010 | } |
| 3011 | } |
| 3012 | |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 3013 | /* store information for the following processing */ |
Radek Krejci | ba03a5a | 2020-08-27 14:40:41 +0200 | [diff] [blame] | 3014 | ret = ly_set_add(&tpdf_chain, tctx, LY_SET_OPT_USEASLIST, NULL); |
Radek Krejci | 87e2525 | 2020-09-15 13:28:31 +0200 | [diff] [blame] | 3015 | LY_CHECK_ERR_GOTO(ret, free(tctx), cleanup); |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 3016 | |
Radek Krejci | cdfecd9 | 2018-11-26 11:27:32 +0100 | [diff] [blame] | 3017 | preparenext: |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 3018 | /* prepare next loop */ |
| 3019 | tctx_prev = tctx; |
| 3020 | tctx = calloc(1, sizeof *tctx); |
| 3021 | LY_CHECK_ERR_RET(!tctx, LOGMEM(ctx->ctx), LY_EMEM); |
| 3022 | } |
| 3023 | free(tctx); |
| 3024 | |
| 3025 | /* allocate type according to the basetype */ |
| 3026 | switch (basetype) { |
| 3027 | case LY_TYPE_BINARY: |
| 3028 | *type = calloc(1, sizeof(struct lysc_type_bin)); |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 3029 | break; |
| 3030 | case LY_TYPE_BITS: |
| 3031 | *type = calloc(1, sizeof(struct lysc_type_bits)); |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 3032 | break; |
| 3033 | case LY_TYPE_BOOL: |
| 3034 | case LY_TYPE_EMPTY: |
| 3035 | *type = calloc(1, sizeof(struct lysc_type)); |
| 3036 | break; |
| 3037 | case LY_TYPE_DEC64: |
| 3038 | *type = calloc(1, sizeof(struct lysc_type_dec)); |
| 3039 | break; |
| 3040 | case LY_TYPE_ENUM: |
| 3041 | *type = calloc(1, sizeof(struct lysc_type_enum)); |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 3042 | break; |
| 3043 | case LY_TYPE_IDENT: |
| 3044 | *type = calloc(1, sizeof(struct lysc_type_identityref)); |
| 3045 | break; |
| 3046 | case LY_TYPE_INST: |
| 3047 | *type = calloc(1, sizeof(struct lysc_type_instanceid)); |
| 3048 | break; |
| 3049 | case LY_TYPE_LEAFREF: |
| 3050 | *type = calloc(1, sizeof(struct lysc_type_leafref)); |
| 3051 | break; |
| 3052 | case LY_TYPE_STRING: |
| 3053 | *type = calloc(1, sizeof(struct lysc_type_str)); |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 3054 | break; |
| 3055 | case LY_TYPE_UNION: |
| 3056 | *type = calloc(1, sizeof(struct lysc_type_union)); |
| 3057 | break; |
| 3058 | case LY_TYPE_INT8: |
| 3059 | case LY_TYPE_UINT8: |
| 3060 | case LY_TYPE_INT16: |
| 3061 | case LY_TYPE_UINT16: |
| 3062 | case LY_TYPE_INT32: |
| 3063 | case LY_TYPE_UINT32: |
| 3064 | case LY_TYPE_INT64: |
| 3065 | case LY_TYPE_UINT64: |
| 3066 | *type = calloc(1, sizeof(struct lysc_type_num)); |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 3067 | break; |
| 3068 | case LY_TYPE_UNKNOWN: |
| 3069 | LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_REFERENCE, |
| 3070 | "Referenced type \"%s\" not found.", tctx_prev ? tctx_prev->tpdf->type.name : type_p->name); |
| 3071 | ret = LY_EVALID; |
| 3072 | goto cleanup; |
| 3073 | } |
| 3074 | LY_CHECK_ERR_GOTO(!(*type), LOGMEM(ctx->ctx), cleanup); |
Radek Krejci | cdfecd9 | 2018-11-26 11:27:32 +0100 | [diff] [blame] | 3075 | if (~type_substmt_map[basetype] & type_p->flags) { |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 3076 | LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SYNTAX_YANG, "Invalid type restrictions for %s type.", |
| 3077 | ly_data_type2str[basetype]); |
| 3078 | free(*type); |
| 3079 | (*type) = NULL; |
| 3080 | ret = LY_EVALID; |
| 3081 | goto cleanup; |
| 3082 | } |
| 3083 | |
| 3084 | /* get restrictions from the referred typedefs */ |
Radek Krejci | 1deb5be | 2020-08-26 16:43:36 +0200 | [diff] [blame] | 3085 | for (uint32_t u = tpdf_chain.count - 1; u + 1 > 0; --u) { |
Michal Vasko | 22df3f0 | 2020-08-24 13:29:22 +0200 | [diff] [blame] | 3086 | tctx = (struct type_context *)tpdf_chain.objs[u]; |
Radek Krejci | 99b5b2a | 2019-04-30 16:57:04 +0200 | [diff] [blame] | 3087 | |
| 3088 | /* remember the typedef context for circular check */ |
Radek Krejci | ba03a5a | 2020-08-27 14:40:41 +0200 | [diff] [blame] | 3089 | ret = ly_set_add(&ctx->tpdf_chain, tctx, LY_SET_OPT_USEASLIST, NULL); |
| 3090 | LY_CHECK_GOTO(ret, cleanup); |
Radek Krejci | 99b5b2a | 2019-04-30 16:57:04 +0200 | [diff] [blame] | 3091 | |
Radek Krejci | 4369923 | 2018-11-23 14:59:46 +0100 | [diff] [blame] | 3092 | if (tctx->tpdf->type.compiled) { |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 3093 | base = tctx->tpdf->type.compiled; |
| 3094 | continue; |
Radek Krejci | 4369923 | 2018-11-23 14:59:46 +0100 | [diff] [blame] | 3095 | } else if (basetype != LY_TYPE_LEAFREF && (u != tpdf_chain.count - 1) && !(tctx->tpdf->type.flags)) { |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 3096 | /* no change, just use the type information from the base */ |
Michal Vasko | 22df3f0 | 2020-08-24 13:29:22 +0200 | [diff] [blame] | 3097 | base = ((struct lysp_tpdf *)tctx->tpdf)->type.compiled = ((struct type_context *)tpdf_chain.objs[u + 1])->tpdf->type.compiled; |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 3098 | ++base->refcount; |
| 3099 | continue; |
| 3100 | } |
| 3101 | |
| 3102 | ++(*type)->refcount; |
Radek Krejci | 4369923 | 2018-11-23 14:59:46 +0100 | [diff] [blame] | 3103 | if (~type_substmt_map[basetype] & tctx->tpdf->type.flags) { |
| 3104 | LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SYNTAX_YANG, "Invalid type \"%s\" restriction(s) for %s type.", |
| 3105 | tctx->tpdf->name, ly_data_type2str[basetype]); |
| 3106 | ret = LY_EVALID; |
| 3107 | goto cleanup; |
Michal Vasko | 7f45cf2 | 2020-10-01 12:49:44 +0200 | [diff] [blame] | 3108 | } else if (basetype == LY_TYPE_EMPTY && tctx->tpdf->dflt.str) { |
Radek Krejci | 4369923 | 2018-11-23 14:59:46 +0100 | [diff] [blame] | 3109 | LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SEMANTICS, |
| 3110 | "Invalid type \"%s\" - \"empty\" type must not have a default value (%s).", |
Michal Vasko | 7f45cf2 | 2020-10-01 12:49:44 +0200 | [diff] [blame] | 3111 | tctx->tpdf->name, tctx->tpdf->dflt.str); |
Radek Krejci | 4369923 | 2018-11-23 14:59:46 +0100 | [diff] [blame] | 3112 | ret = LY_EVALID; |
| 3113 | goto cleanup; |
| 3114 | } |
| 3115 | |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 3116 | (*type)->basetype = basetype; |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 3117 | /* TODO user type plugins */ |
| 3118 | (*type)->plugin = &ly_builtin_type_plugins[basetype]; |
Radek Krejci | c5c27e5 | 2018-11-15 14:38:11 +0100 | [diff] [blame] | 3119 | prev_type = *type; |
Michal Vasko | 22df3f0 | 2020-08-24 13:29:22 +0200 | [diff] [blame] | 3120 | ret = lys_compile_type_(ctx, tctx->node, tctx->tpdf->flags, tctx->mod, tctx->tpdf->name, &((struct lysp_tpdf *)tctx->tpdf)->type, |
Radek Krejci | 96a0bfd | 2018-11-22 15:25:06 +0100 | [diff] [blame] | 3121 | basetype & (LY_TYPE_LEAFREF | LY_TYPE_UNION) ? lysp_find_module(ctx->ctx, tctx->mod) : NULL, |
Radek Krejci | ec4da80 | 2019-05-02 13:02:41 +0200 | [diff] [blame] | 3122 | basetype, tctx->tpdf->name, base, type); |
Radek Krejci | c5c27e5 | 2018-11-15 14:38:11 +0100 | [diff] [blame] | 3123 | LY_CHECK_GOTO(ret, cleanup); |
| 3124 | base = prev_type; |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 3125 | } |
Radek Krejci | 99b5b2a | 2019-04-30 16:57:04 +0200 | [diff] [blame] | 3126 | /* remove the processed typedef contexts from the stack for circular check */ |
| 3127 | ctx->tpdf_chain.count = ctx->tpdf_chain.count - tpdf_chain.count; |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 3128 | |
Radek Krejci | c5c27e5 | 2018-11-15 14:38:11 +0100 | [diff] [blame] | 3129 | /* process the type definition in leaf */ |
Radek Krejci | cdfecd9 | 2018-11-26 11:27:32 +0100 | [diff] [blame] | 3130 | if (type_p->flags || !base || basetype == LY_TYPE_LEAFREF) { |
Radek Krejci | a304538 | 2018-11-22 14:30:31 +0100 | [diff] [blame] | 3131 | /* get restrictions from the node itself */ |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 3132 | (*type)->basetype = basetype; |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 3133 | /* TODO user type plugins */ |
| 3134 | (*type)->plugin = &ly_builtin_type_plugins[basetype]; |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 3135 | ++(*type)->refcount; |
Michal Vasko | 7f45cf2 | 2020-10-01 12:49:44 +0200 | [diff] [blame] | 3136 | ret = lys_compile_type_(ctx, context_pnode, context_flags, context_mod, context_name, type_p, ctx->mod_def, basetype, NULL, base, type); |
Radek Krejci | c5c27e5 | 2018-11-15 14:38:11 +0100 | [diff] [blame] | 3137 | LY_CHECK_GOTO(ret, cleanup); |
Radek Krejci | 90b148f | 2020-05-06 17:49:40 +0200 | [diff] [blame] | 3138 | } else if (basetype != LY_TYPE_BOOL && basetype != LY_TYPE_EMPTY) { |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 3139 | /* no specific restriction in leaf's type definition, copy from the base */ |
| 3140 | free(*type); |
| 3141 | (*type) = base; |
| 3142 | ++(*type)->refcount; |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 3143 | } |
| 3144 | |
Radek Krejci | 0935f41 | 2019-08-20 16:15:18 +0200 | [diff] [blame] | 3145 | COMPILE_EXTS_GOTO(ctx, type_p->exts, (*type)->exts, (*type), LYEXT_PAR_TYPE, ret, cleanup); |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 3146 | |
| 3147 | cleanup: |
| 3148 | ly_set_erase(&tpdf_chain, free); |
| 3149 | return ret; |
| 3150 | } |
| 3151 | |
Radek Krejci | 6eeb58f | 2019-02-22 16:29:37 +0100 | [diff] [blame] | 3152 | /** |
| 3153 | * @brief Compile status information of the given node. |
| 3154 | * |
| 3155 | * To simplify getting status of the node, the flags are set following inheritance rules, so all the nodes |
| 3156 | * has the status correctly set during the compilation. |
| 3157 | * |
| 3158 | * @param[in] ctx Compile context |
| 3159 | * @param[in,out] node_flags Flags of the compiled node which status is supposed to be resolved. |
| 3160 | * If the status was set explicitly on the node, it is already set in the flags value and we just check |
| 3161 | * the compatibility with the parent's status value. |
| 3162 | * @param[in] parent_flags Flags of the parent node to check/inherit the status value. |
| 3163 | * @return LY_ERR value. |
| 3164 | */ |
| 3165 | static LY_ERR |
| 3166 | lys_compile_status(struct lysc_ctx *ctx, uint16_t *node_flags, uint16_t parent_flags) |
| 3167 | { |
| 3168 | /* status - it is not inherited by specification, but it does not make sense to have |
| 3169 | * current in deprecated or deprecated in obsolete, so we do print warning and inherit status */ |
| 3170 | if (!((*node_flags) & LYS_STATUS_MASK)) { |
| 3171 | if (parent_flags & (LYS_STATUS_DEPRC | LYS_STATUS_OBSLT)) { |
| 3172 | if ((parent_flags & 0x3) != 0x3) { |
| 3173 | /* do not print the warning when inheriting status from uses - the uses_status value has a special |
| 3174 | * combination of bits (0x3) which marks the uses_status value */ |
| 3175 | LOGWRN(ctx->ctx, "Missing explicit \"%s\" status that was already specified in parent, inheriting.", |
Radek Krejci | 0f96988 | 2020-08-21 16:56:47 +0200 | [diff] [blame] | 3176 | (parent_flags & LYS_STATUS_DEPRC) ? "deprecated" : "obsolete"); |
Radek Krejci | 6eeb58f | 2019-02-22 16:29:37 +0100 | [diff] [blame] | 3177 | } |
| 3178 | (*node_flags) |= parent_flags & LYS_STATUS_MASK; |
| 3179 | } else { |
| 3180 | (*node_flags) |= LYS_STATUS_CURR; |
| 3181 | } |
| 3182 | } else if (parent_flags & LYS_STATUS_MASK) { |
| 3183 | /* check status compatibility with the parent */ |
| 3184 | if ((parent_flags & LYS_STATUS_MASK) > ((*node_flags) & LYS_STATUS_MASK)) { |
| 3185 | if ((*node_flags) & LYS_STATUS_CURR) { |
| 3186 | LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SEMANTICS, |
| 3187 | "A \"current\" status is in conflict with the parent's \"%s\" status.", |
Radek Krejci | 0f96988 | 2020-08-21 16:56:47 +0200 | [diff] [blame] | 3188 | (parent_flags & LYS_STATUS_DEPRC) ? "deprecated" : "obsolete"); |
Radek Krejci | 6eeb58f | 2019-02-22 16:29:37 +0100 | [diff] [blame] | 3189 | } else { /* LYS_STATUS_DEPRC */ |
| 3190 | LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SEMANTICS, |
| 3191 | "A \"deprecated\" status is in conflict with the parent's \"obsolete\" status."); |
| 3192 | } |
| 3193 | return LY_EVALID; |
| 3194 | } |
| 3195 | } |
| 3196 | return LY_SUCCESS; |
| 3197 | } |
| 3198 | |
Radek Krejci | 8cce853 | 2019-03-05 11:27:45 +0100 | [diff] [blame] | 3199 | /** |
| 3200 | * @brief Check uniqness of the node/action/notification name. |
| 3201 | * |
| 3202 | * Data nodes, actions/RPCs and Notifications are stored separately (in distinguish lists) in the schema |
| 3203 | * structures, but they share the namespace so we need to check their name collisions. |
| 3204 | * |
| 3205 | * @param[in] ctx Compile context. |
Michal Vasko | 20424b4 | 2020-08-31 12:29:38 +0200 | [diff] [blame] | 3206 | * @param[in] parent Parent of the nodes to check, can be NULL. |
Radek Krejci | 8cce853 | 2019-03-05 11:27:45 +0100 | [diff] [blame] | 3207 | * @param[in] name Name of the item to find in the given lists. |
Michal Vasko | 20424b4 | 2020-08-31 12:29:38 +0200 | [diff] [blame] | 3208 | * @param[in] exclude Node that was just added that should be excluded from the name checking. |
Radek Krejci | 8cce853 | 2019-03-05 11:27:45 +0100 | [diff] [blame] | 3209 | * @return LY_SUCCESS in case of unique name, LY_EEXIST otherwise. |
| 3210 | */ |
| 3211 | static LY_ERR |
Michal Vasko | 20424b4 | 2020-08-31 12:29:38 +0200 | [diff] [blame] | 3212 | lys_compile_node_uniqness(struct lysc_ctx *ctx, const struct lysc_node *parent, const char *name, |
| 3213 | const struct lysc_node *exclude) |
Radek Krejci | 8cce853 | 2019-03-05 11:27:45 +0100 | [diff] [blame] | 3214 | { |
Michal Vasko | 20424b4 | 2020-08-31 12:29:38 +0200 | [diff] [blame] | 3215 | const struct lysc_node *iter, *iter2; |
| 3216 | const struct lysc_action *actions; |
| 3217 | const struct lysc_notif *notifs; |
| 3218 | uint32_t getnext_flags; |
Michal Vasko | fd69e1d | 2020-07-03 11:57:17 +0200 | [diff] [blame] | 3219 | LY_ARRAY_COUNT_TYPE u; |
Radek Krejci | 8cce853 | 2019-03-05 11:27:45 +0100 | [diff] [blame] | 3220 | |
Michal Vasko | 20424b4 | 2020-08-31 12:29:38 +0200 | [diff] [blame] | 3221 | #define CHECK_NODE(iter, exclude, name) (iter != (void *)exclude && (iter)->module == exclude->module && !strcmp(name, (iter)->name)) |
| 3222 | |
| 3223 | if (exclude->nodetype == LYS_CASE) { |
| 3224 | /* check restricted only to all the cases */ |
| 3225 | assert(parent->nodetype == LYS_CHOICE); |
| 3226 | LY_LIST_FOR(lysc_node_children(parent, 0), iter) { |
| 3227 | if (CHECK_NODE(iter, exclude, name)) { |
| 3228 | LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LY_VCODE_DUPIDENT, name, "case"); |
| 3229 | return LY_EEXIST; |
| 3230 | } |
| 3231 | } |
| 3232 | |
| 3233 | return LY_SUCCESS; |
| 3234 | } |
| 3235 | |
| 3236 | /* no reason for our parent to be choice anymore */ |
| 3237 | assert(!parent || (parent->nodetype != LYS_CHOICE)); |
| 3238 | |
| 3239 | if (parent && (parent->nodetype == LYS_CASE)) { |
| 3240 | /* move to the first data definition parent */ |
| 3241 | parent = lysc_data_parent(parent); |
| 3242 | } |
| 3243 | |
| 3244 | getnext_flags = LYS_GETNEXT_NOSTATECHECK | LYS_GETNEXT_WITHCHOICE; |
| 3245 | if (parent && (parent->nodetype & (LYS_RPC | LYS_ACTION)) && (exclude->flags & LYS_CONFIG_R)) { |
| 3246 | getnext_flags |= LYS_GETNEXT_OUTPUT; |
| 3247 | } |
| 3248 | |
| 3249 | iter = NULL; |
| 3250 | while ((iter = lys_getnext(iter, parent, ctx->mod->compiled, getnext_flags))) { |
| 3251 | if (CHECK_NODE(iter, exclude, name)) { |
Radek Krejci | 8cce853 | 2019-03-05 11:27:45 +0100 | [diff] [blame] | 3252 | goto error; |
| 3253 | } |
Michal Vasko | 20424b4 | 2020-08-31 12:29:38 +0200 | [diff] [blame] | 3254 | |
| 3255 | /* we must compare with both the choice and all its nested data-definiition nodes (but not recursively) */ |
| 3256 | if (iter->nodetype == LYS_CHOICE) { |
| 3257 | iter2 = NULL; |
| 3258 | while ((iter2 = lys_getnext(iter2, iter, NULL, LYS_GETNEXT_NOSTATECHECK))) { |
| 3259 | if (CHECK_NODE(iter2, exclude, name)) { |
| 3260 | goto error; |
| 3261 | } |
| 3262 | } |
| 3263 | } |
Radek Krejci | 8cce853 | 2019-03-05 11:27:45 +0100 | [diff] [blame] | 3264 | } |
Michal Vasko | 20424b4 | 2020-08-31 12:29:38 +0200 | [diff] [blame] | 3265 | |
| 3266 | actions = parent ? lysc_node_actions(parent) : ctx->mod->compiled->rpcs; |
Radek Krejci | 8cce853 | 2019-03-05 11:27:45 +0100 | [diff] [blame] | 3267 | LY_ARRAY_FOR(actions, u) { |
Michal Vasko | 20424b4 | 2020-08-31 12:29:38 +0200 | [diff] [blame] | 3268 | if (CHECK_NODE(&actions[u], exclude, name)) { |
Radek Krejci | 8cce853 | 2019-03-05 11:27:45 +0100 | [diff] [blame] | 3269 | goto error; |
| 3270 | } |
| 3271 | } |
Michal Vasko | 20424b4 | 2020-08-31 12:29:38 +0200 | [diff] [blame] | 3272 | |
| 3273 | notifs = parent ? lysc_node_notifs(parent) : ctx->mod->compiled->notifs; |
Radek Krejci | 8cce853 | 2019-03-05 11:27:45 +0100 | [diff] [blame] | 3274 | LY_ARRAY_FOR(notifs, u) { |
Michal Vasko | 20424b4 | 2020-08-31 12:29:38 +0200 | [diff] [blame] | 3275 | if (CHECK_NODE(¬ifs[u], exclude, name)) { |
Radek Krejci | 8cce853 | 2019-03-05 11:27:45 +0100 | [diff] [blame] | 3276 | goto error; |
| 3277 | } |
| 3278 | } |
| 3279 | return LY_SUCCESS; |
Michal Vasko | 20424b4 | 2020-08-31 12:29:38 +0200 | [diff] [blame] | 3280 | |
Radek Krejci | 8cce853 | 2019-03-05 11:27:45 +0100 | [diff] [blame] | 3281 | error: |
Michal Vasko | a388136 | 2020-01-21 15:57:35 +0100 | [diff] [blame] | 3282 | LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LY_VCODE_DUPIDENT, name, "data definition/RPC/action/notification"); |
Radek Krejci | 8cce853 | 2019-03-05 11:27:45 +0100 | [diff] [blame] | 3283 | return LY_EEXIST; |
Michal Vasko | 20424b4 | 2020-08-31 12:29:38 +0200 | [diff] [blame] | 3284 | |
| 3285 | #undef CHECK_NODE |
Radek Krejci | 8cce853 | 2019-03-05 11:27:45 +0100 | [diff] [blame] | 3286 | } |
| 3287 | |
Michal Vasko | 7f45cf2 | 2020-10-01 12:49:44 +0200 | [diff] [blame] | 3288 | static LY_ERR lys_compile_node(struct lysc_ctx *ctx, struct lysp_node *pnode, struct lysc_node *parent, |
| 3289 | uint16_t uses_status, struct ly_set *child_set); |
| 3290 | |
| 3291 | static LY_ERR lys_compile_node_deviations_refines(struct lysc_ctx *ctx, const struct lysp_node *pnode, |
| 3292 | const struct lysc_node *parent, struct lysp_node **dev_pnode, ly_bool *not_supported); |
| 3293 | |
| 3294 | static LY_ERR lys_compile_node_augments(struct lysc_ctx *ctx, struct lysc_node *node); |
| 3295 | |
| 3296 | static void lysp_dev_node_free(const struct ly_ctx *ctx, struct lysp_node *dev_pnode); |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 3297 | |
Radek Krejci | a304538 | 2018-11-22 14:30:31 +0100 | [diff] [blame] | 3298 | /** |
Radek Krejci | 6eeb58f | 2019-02-22 16:29:37 +0100 | [diff] [blame] | 3299 | * @brief Compile parsed RPC/action schema node information. |
| 3300 | * @param[in] ctx Compile context |
Radek Krejci | 43981a3 | 2019-04-12 09:44:11 +0200 | [diff] [blame] | 3301 | * @param[in] action_p Parsed RPC/action schema node. |
Radek Krejci | 43981a3 | 2019-04-12 09:44:11 +0200 | [diff] [blame] | 3302 | * @param[in] parent Parent node of the action, NULL in case of RPC (top-level action) |
Radek Krejci | 6eeb58f | 2019-02-22 16:29:37 +0100 | [diff] [blame] | 3303 | * @param[in,out] action Prepared (empty) compiled action structure to fill. |
| 3304 | * @param[in] uses_status If the RPC/action is being placed instead of uses, here we have the uses's status value (as node's flags). |
| 3305 | * Zero means no uses, non-zero value with no status bit set mean the default status. |
Michal Vasko | 7f45cf2 | 2020-10-01 12:49:44 +0200 | [diff] [blame] | 3306 | * @return LY_SUCCESS on success, |
| 3307 | * @return LY_EVALID on validation error, |
| 3308 | * @return LY_EDENIED on not-supported deviation. |
Radek Krejci | 6eeb58f | 2019-02-22 16:29:37 +0100 | [diff] [blame] | 3309 | */ |
| 3310 | static LY_ERR |
Radek Krejci | ec4da80 | 2019-05-02 13:02:41 +0200 | [diff] [blame] | 3311 | lys_compile_action(struct lysc_ctx *ctx, struct lysp_action *action_p, |
Radek Krejci | 0f96988 | 2020-08-21 16:56:47 +0200 | [diff] [blame] | 3312 | struct lysc_node *parent, struct lysc_action *action, uint16_t uses_status) |
Radek Krejci | 6eeb58f | 2019-02-22 16:29:37 +0100 | [diff] [blame] | 3313 | { |
| 3314 | LY_ERR ret = LY_SUCCESS; |
Michal Vasko | 7f45cf2 | 2020-10-01 12:49:44 +0200 | [diff] [blame] | 3315 | struct lysp_node *child_p, *dev_pnode = NULL, *dev_input_p = NULL, *dev_output_p = NULL; |
| 3316 | struct lysp_action *orig_action_p = action_p; |
| 3317 | struct lysp_action_inout *inout_p; |
Radek Krejci | 1deb5be | 2020-08-26 16:43:36 +0200 | [diff] [blame] | 3318 | LY_ARRAY_COUNT_TYPE u; |
Michal Vasko | 7f45cf2 | 2020-10-01 12:49:44 +0200 | [diff] [blame] | 3319 | ly_bool not_supported; |
Radek Krejci | 1deb5be | 2020-08-26 16:43:36 +0200 | [diff] [blame] | 3320 | uint32_t opt_prev = ctx->options; |
Radek Krejci | 6eeb58f | 2019-02-22 16:29:37 +0100 | [diff] [blame] | 3321 | |
Radek Krejci | 327de16 | 2019-06-14 12:52:07 +0200 | [diff] [blame] | 3322 | lysc_update_path(ctx, parent, action_p->name); |
| 3323 | |
Michal Vasko | 7f45cf2 | 2020-10-01 12:49:44 +0200 | [diff] [blame] | 3324 | /* apply deviation on the action/RPC */ |
| 3325 | LY_CHECK_RET(lys_compile_node_deviations_refines(ctx, (struct lysp_node *)action_p, parent, &dev_pnode, ¬_supported)); |
| 3326 | if (not_supported) { |
| 3327 | lysc_update_path(ctx, NULL, NULL); |
| 3328 | return LY_EDENIED; |
| 3329 | } else if (dev_pnode) { |
| 3330 | action_p = (struct lysp_action *)dev_pnode; |
| 3331 | } |
| 3332 | |
Michal Vasko | 20424b4 | 2020-08-31 12:29:38 +0200 | [diff] [blame] | 3333 | /* member needed for uniqueness check lys_getnext() */ |
| 3334 | action->nodetype = parent ? LYS_ACTION : LYS_RPC; |
| 3335 | action->module = ctx->mod; |
| 3336 | action->parent = parent; |
| 3337 | |
| 3338 | LY_CHECK_RET(lys_compile_node_uniqness(ctx, parent, action_p->name, (struct lysc_node *)action)); |
Radek Krejci | 8cce853 | 2019-03-05 11:27:45 +0100 | [diff] [blame] | 3339 | |
Radek Krejci | ec4da80 | 2019-05-02 13:02:41 +0200 | [diff] [blame] | 3340 | if (ctx->options & (LYSC_OPT_RPC_MASK | LYSC_OPT_NOTIFICATION)) { |
Radek Krejci | 05b774b | 2019-02-25 13:26:18 +0100 | [diff] [blame] | 3341 | LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SEMANTICS, |
Radek Krejci | fc11bd7 | 2019-04-11 16:00:05 +0200 | [diff] [blame] | 3342 | "Action \"%s\" is placed inside %s.", action_p->name, |
Michal Vasko | a388136 | 2020-01-21 15:57:35 +0100 | [diff] [blame] | 3343 | ctx->options & LYSC_OPT_RPC_MASK ? "another RPC/action" : "notification"); |
Radek Krejci | 05b774b | 2019-02-25 13:26:18 +0100 | [diff] [blame] | 3344 | return LY_EVALID; |
| 3345 | } |
| 3346 | |
Radek Krejci | ec4da80 | 2019-05-02 13:02:41 +0200 | [diff] [blame] | 3347 | if (!(ctx->options & LYSC_OPT_FREE_SP)) { |
Michal Vasko | 7f45cf2 | 2020-10-01 12:49:44 +0200 | [diff] [blame] | 3348 | action->sp = orig_action_p; |
Radek Krejci | 6eeb58f | 2019-02-22 16:29:37 +0100 | [diff] [blame] | 3349 | } |
| 3350 | action->flags = action_p->flags & LYS_FLAGS_COMPILED_MASK; |
| 3351 | |
| 3352 | /* status - it is not inherited by specification, but it does not make sense to have |
| 3353 | * current in deprecated or deprecated in obsolete, so we do print warning and inherit status */ |
Michal Vasko | cc048b2 | 2020-03-27 15:52:38 +0100 | [diff] [blame] | 3354 | LY_CHECK_RET(lys_compile_status(ctx, &action->flags, uses_status ? uses_status : (parent ? parent->flags : 0))); |
Radek Krejci | 6eeb58f | 2019-02-22 16:29:37 +0100 | [diff] [blame] | 3355 | |
Radek Krejci | 011e4aa | 2020-09-04 15:22:31 +0200 | [diff] [blame] | 3356 | DUP_STRING_GOTO(ctx->ctx, action_p->name, action->name, ret, cleanup); |
| 3357 | DUP_STRING_GOTO(ctx->ctx, action_p->dsc, action->dsc, ret, cleanup); |
| 3358 | DUP_STRING_GOTO(ctx->ctx, action_p->ref, action->ref, ret, cleanup); |
Radek Krejci | ec4da80 | 2019-05-02 13:02:41 +0200 | [diff] [blame] | 3359 | COMPILE_ARRAY_GOTO(ctx, action_p->iffeatures, action->iffeatures, u, lys_compile_iffeature, ret, cleanup); |
Radek Krejci | 0935f41 | 2019-08-20 16:15:18 +0200 | [diff] [blame] | 3360 | COMPILE_EXTS_GOTO(ctx, action_p->exts, action->exts, action, LYEXT_PAR_NODE, ret, cleanup); |
Radek Krejci | 6eeb58f | 2019-02-22 16:29:37 +0100 | [diff] [blame] | 3361 | |
Michal Vasko | 7f45cf2 | 2020-10-01 12:49:44 +0200 | [diff] [blame] | 3362 | /* connect any action augments */ |
| 3363 | LY_CHECK_RET(lys_compile_node_augments(ctx, (struct lysc_node *)action)); |
| 3364 | |
Radek Krejci | 6eeb58f | 2019-02-22 16:29:37 +0100 | [diff] [blame] | 3365 | /* input */ |
Michal Vasko | 22df3f0 | 2020-08-24 13:29:22 +0200 | [diff] [blame] | 3366 | lysc_update_path(ctx, (struct lysc_node *)action, "input"); |
Michal Vasko | 7f45cf2 | 2020-10-01 12:49:44 +0200 | [diff] [blame] | 3367 | |
| 3368 | /* apply deviations on input */ |
| 3369 | LY_CHECK_RET(lys_compile_node_deviations_refines(ctx, (struct lysp_node *)&action_p->input, (struct lysc_node *)action, |
| 3370 | &dev_input_p, ¬_supported)); |
| 3371 | if (not_supported) { |
| 3372 | inout_p = NULL; |
| 3373 | } else if (dev_input_p) { |
| 3374 | inout_p = (struct lysp_action_inout *)dev_input_p; |
| 3375 | } else { |
| 3376 | inout_p = &action_p->input; |
Radek Krejci | 6eeb58f | 2019-02-22 16:29:37 +0100 | [diff] [blame] | 3377 | } |
Michal Vasko | 7f45cf2 | 2020-10-01 12:49:44 +0200 | [diff] [blame] | 3378 | |
| 3379 | if (inout_p) { |
| 3380 | action->input.nodetype = LYS_INPUT; |
| 3381 | COMPILE_ARRAY_GOTO(ctx, inout_p->musts, action->input.musts, u, lys_compile_must, ret, cleanup); |
| 3382 | COMPILE_EXTS_GOTO(ctx, inout_p->exts, action->input_exts, &action->input, LYEXT_PAR_INPUT, ret, cleanup); |
| 3383 | ctx->options |= LYSC_OPT_RPC_INPUT; |
| 3384 | |
| 3385 | /* connect any input augments */ |
| 3386 | LY_CHECK_RET(lys_compile_node_augments(ctx, (struct lysc_node *)&action->input)); |
| 3387 | |
| 3388 | LY_LIST_FOR(inout_p->data, child_p) { |
| 3389 | LY_CHECK_RET(lys_compile_node(ctx, child_p, (struct lysc_node *)action, uses_status, NULL)); |
| 3390 | } |
| 3391 | ctx->options = opt_prev; |
| 3392 | } |
| 3393 | |
Radek Krejci | 327de16 | 2019-06-14 12:52:07 +0200 | [diff] [blame] | 3394 | lysc_update_path(ctx, NULL, NULL); |
Radek Krejci | 6eeb58f | 2019-02-22 16:29:37 +0100 | [diff] [blame] | 3395 | |
| 3396 | /* output */ |
Michal Vasko | 22df3f0 | 2020-08-24 13:29:22 +0200 | [diff] [blame] | 3397 | lysc_update_path(ctx, (struct lysc_node *)action, "output"); |
Michal Vasko | 7f45cf2 | 2020-10-01 12:49:44 +0200 | [diff] [blame] | 3398 | |
| 3399 | /* apply deviations on output */ |
| 3400 | LY_CHECK_RET(lys_compile_node_deviations_refines(ctx, (struct lysp_node *)&action_p->output, (struct lysc_node *)action, |
| 3401 | &dev_output_p, ¬_supported)); |
| 3402 | if (not_supported) { |
| 3403 | inout_p = NULL; |
| 3404 | } else if (dev_output_p) { |
| 3405 | inout_p = (struct lysp_action_inout *)dev_output_p; |
| 3406 | } else { |
| 3407 | inout_p = &action_p->output; |
Radek Krejci | 6eeb58f | 2019-02-22 16:29:37 +0100 | [diff] [blame] | 3408 | } |
Michal Vasko | 7f45cf2 | 2020-10-01 12:49:44 +0200 | [diff] [blame] | 3409 | |
| 3410 | if (inout_p) { |
| 3411 | action->output.nodetype = LYS_OUTPUT; |
| 3412 | COMPILE_ARRAY_GOTO(ctx, inout_p->musts, action->output.musts, u, lys_compile_must, ret, cleanup); |
| 3413 | COMPILE_EXTS_GOTO(ctx, inout_p->exts, action->output_exts, &action->output, LYEXT_PAR_OUTPUT, ret, cleanup); |
| 3414 | ctx->options |= LYSC_OPT_RPC_OUTPUT; |
| 3415 | |
| 3416 | /* connect any output augments */ |
| 3417 | LY_CHECK_RET(lys_compile_node_augments(ctx, (struct lysc_node *)&action->output)); |
| 3418 | |
| 3419 | LY_LIST_FOR(inout_p->data, child_p) { |
| 3420 | LY_CHECK_RET(lys_compile_node(ctx, child_p, (struct lysc_node *)action, uses_status, NULL)); |
| 3421 | } |
| 3422 | ctx->options = opt_prev; |
| 3423 | } |
| 3424 | |
Radek Krejci | 327de16 | 2019-06-14 12:52:07 +0200 | [diff] [blame] | 3425 | lysc_update_path(ctx, NULL, NULL); |
Michal Vasko | 5d8756a | 2019-11-07 15:21:00 +0100 | [diff] [blame] | 3426 | |
Michal Vasko | 7f45cf2 | 2020-10-01 12:49:44 +0200 | [diff] [blame] | 3427 | if ((action->input.musts || action->output.musts) && !(ctx->options & LYSC_OPT_GROUPING)) { |
Michal Vasko | 5d8756a | 2019-11-07 15:21:00 +0100 | [diff] [blame] | 3428 | /* do not check "must" semantics in a grouping */ |
Radek Krejci | ba03a5a | 2020-08-27 14:40:41 +0200 | [diff] [blame] | 3429 | ret = ly_set_add(&ctx->xpath, action, 0, NULL); |
| 3430 | LY_CHECK_GOTO(ret, cleanup); |
Michal Vasko | 5d8756a | 2019-11-07 15:21:00 +0100 | [diff] [blame] | 3431 | } |
| 3432 | |
Michal Vasko | 7f45cf2 | 2020-10-01 12:49:44 +0200 | [diff] [blame] | 3433 | lysc_update_path(ctx, NULL, NULL); |
| 3434 | |
Radek Krejci | 6eeb58f | 2019-02-22 16:29:37 +0100 | [diff] [blame] | 3435 | cleanup: |
Michal Vasko | 7f45cf2 | 2020-10-01 12:49:44 +0200 | [diff] [blame] | 3436 | lysp_dev_node_free(ctx->ctx, dev_pnode); |
| 3437 | lysp_dev_node_free(ctx->ctx, dev_input_p); |
| 3438 | lysp_dev_node_free(ctx->ctx, dev_output_p); |
Radek Krejci | ec4da80 | 2019-05-02 13:02:41 +0200 | [diff] [blame] | 3439 | ctx->options = opt_prev; |
Radek Krejci | 6eeb58f | 2019-02-22 16:29:37 +0100 | [diff] [blame] | 3440 | return ret; |
| 3441 | } |
| 3442 | |
| 3443 | /** |
Radek Krejci | 43981a3 | 2019-04-12 09:44:11 +0200 | [diff] [blame] | 3444 | * @brief Compile parsed Notification schema node information. |
Radek Krejci | fc11bd7 | 2019-04-11 16:00:05 +0200 | [diff] [blame] | 3445 | * @param[in] ctx Compile context |
Radek Krejci | 43981a3 | 2019-04-12 09:44:11 +0200 | [diff] [blame] | 3446 | * @param[in] notif_p Parsed Notification schema node. |
Radek Krejci | 43981a3 | 2019-04-12 09:44:11 +0200 | [diff] [blame] | 3447 | * @param[in] parent Parent node of the Notification, NULL in case of top-level Notification |
| 3448 | * @param[in,out] notif Prepared (empty) compiled notification structure to fill. |
| 3449 | * @param[in] uses_status If the Notification is being placed instead of uses, here we have the uses's status value (as node's flags). |
Radek Krejci | fc11bd7 | 2019-04-11 16:00:05 +0200 | [diff] [blame] | 3450 | * Zero means no uses, non-zero value with no status bit set mean the default status. |
Michal Vasko | 7f45cf2 | 2020-10-01 12:49:44 +0200 | [diff] [blame] | 3451 | * @return LY_SUCCESS on success, |
| 3452 | * @return LY_EVALID on validation error, |
| 3453 | * @return LY_EDENIED on not-supported deviation. |
Radek Krejci | fc11bd7 | 2019-04-11 16:00:05 +0200 | [diff] [blame] | 3454 | */ |
| 3455 | static LY_ERR |
Radek Krejci | ec4da80 | 2019-05-02 13:02:41 +0200 | [diff] [blame] | 3456 | lys_compile_notif(struct lysc_ctx *ctx, struct lysp_notif *notif_p, |
Radek Krejci | 0f96988 | 2020-08-21 16:56:47 +0200 | [diff] [blame] | 3457 | struct lysc_node *parent, struct lysc_notif *notif, uint16_t uses_status) |
Radek Krejci | fc11bd7 | 2019-04-11 16:00:05 +0200 | [diff] [blame] | 3458 | { |
| 3459 | LY_ERR ret = LY_SUCCESS; |
Michal Vasko | 7f45cf2 | 2020-10-01 12:49:44 +0200 | [diff] [blame] | 3460 | struct lysp_node *child_p, *dev_pnode = NULL; |
| 3461 | struct lysp_notif *orig_notif_p = notif_p; |
Radek Krejci | 1deb5be | 2020-08-26 16:43:36 +0200 | [diff] [blame] | 3462 | LY_ARRAY_COUNT_TYPE u; |
Michal Vasko | 7f45cf2 | 2020-10-01 12:49:44 +0200 | [diff] [blame] | 3463 | ly_bool not_supported; |
Radek Krejci | 1deb5be | 2020-08-26 16:43:36 +0200 | [diff] [blame] | 3464 | uint32_t opt_prev = ctx->options; |
Radek Krejci | fc11bd7 | 2019-04-11 16:00:05 +0200 | [diff] [blame] | 3465 | |
Radek Krejci | 327de16 | 2019-06-14 12:52:07 +0200 | [diff] [blame] | 3466 | lysc_update_path(ctx, parent, notif_p->name); |
| 3467 | |
Michal Vasko | 7f45cf2 | 2020-10-01 12:49:44 +0200 | [diff] [blame] | 3468 | LY_CHECK_RET(lys_compile_node_deviations_refines(ctx, (struct lysp_node *)notif_p, parent, &dev_pnode, ¬_supported)); |
| 3469 | if (not_supported) { |
| 3470 | lysc_update_path(ctx, NULL, NULL); |
| 3471 | return LY_EDENIED; |
| 3472 | } else if (dev_pnode) { |
| 3473 | notif_p = (struct lysp_notif *)dev_pnode; |
| 3474 | } |
| 3475 | |
Michal Vasko | 20424b4 | 2020-08-31 12:29:38 +0200 | [diff] [blame] | 3476 | /* member needed for uniqueness check lys_getnext() */ |
| 3477 | notif->nodetype = LYS_NOTIF; |
| 3478 | notif->module = ctx->mod; |
| 3479 | notif->parent = parent; |
| 3480 | |
| 3481 | LY_CHECK_RET(lys_compile_node_uniqness(ctx, parent, notif_p->name, (struct lysc_node *)notif)); |
Radek Krejci | fc11bd7 | 2019-04-11 16:00:05 +0200 | [diff] [blame] | 3482 | |
Radek Krejci | ec4da80 | 2019-05-02 13:02:41 +0200 | [diff] [blame] | 3483 | if (ctx->options & (LYSC_OPT_RPC_MASK | LYSC_OPT_NOTIFICATION)) { |
Radek Krejci | fc11bd7 | 2019-04-11 16:00:05 +0200 | [diff] [blame] | 3484 | LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SEMANTICS, |
| 3485 | "Notification \"%s\" is placed inside %s.", notif_p->name, |
Michal Vasko | a388136 | 2020-01-21 15:57:35 +0100 | [diff] [blame] | 3486 | ctx->options & LYSC_OPT_RPC_MASK ? "RPC/action" : "another notification"); |
Radek Krejci | fc11bd7 | 2019-04-11 16:00:05 +0200 | [diff] [blame] | 3487 | return LY_EVALID; |
| 3488 | } |
| 3489 | |
Radek Krejci | ec4da80 | 2019-05-02 13:02:41 +0200 | [diff] [blame] | 3490 | if (!(ctx->options & LYSC_OPT_FREE_SP)) { |
Michal Vasko | 7f45cf2 | 2020-10-01 12:49:44 +0200 | [diff] [blame] | 3491 | notif->sp = orig_notif_p; |
Radek Krejci | fc11bd7 | 2019-04-11 16:00:05 +0200 | [diff] [blame] | 3492 | } |
| 3493 | notif->flags = notif_p->flags & LYS_FLAGS_COMPILED_MASK; |
| 3494 | |
| 3495 | /* status - it is not inherited by specification, but it does not make sense to have |
| 3496 | * current in deprecated or deprecated in obsolete, so we do print warning and inherit status */ |
Radek Krejci | ba03a5a | 2020-08-27 14:40:41 +0200 | [diff] [blame] | 3497 | ret = lys_compile_status(ctx, ¬if->flags, uses_status ? uses_status : (parent ? parent->flags : 0)); |
| 3498 | LY_CHECK_GOTO(ret, cleanup); |
Radek Krejci | fc11bd7 | 2019-04-11 16:00:05 +0200 | [diff] [blame] | 3499 | |
Radek Krejci | 011e4aa | 2020-09-04 15:22:31 +0200 | [diff] [blame] | 3500 | DUP_STRING_GOTO(ctx->ctx, notif_p->name, notif->name, ret, cleanup); |
| 3501 | DUP_STRING_GOTO(ctx->ctx, notif_p->dsc, notif->dsc, ret, cleanup); |
| 3502 | DUP_STRING_GOTO(ctx->ctx, notif_p->ref, notif->ref, ret, cleanup); |
Radek Krejci | ec4da80 | 2019-05-02 13:02:41 +0200 | [diff] [blame] | 3503 | COMPILE_ARRAY_GOTO(ctx, notif_p->iffeatures, notif->iffeatures, u, lys_compile_iffeature, ret, cleanup); |
Radek Krejci | c71ac5b | 2019-09-10 15:34:22 +0200 | [diff] [blame] | 3504 | COMPILE_ARRAY_GOTO(ctx, notif_p->musts, notif->musts, u, lys_compile_must, ret, cleanup); |
Michal Vasko | 5d8756a | 2019-11-07 15:21:00 +0100 | [diff] [blame] | 3505 | if (notif_p->musts && !(ctx->options & LYSC_OPT_GROUPING)) { |
| 3506 | /* do not check "must" semantics in a grouping */ |
Radek Krejci | ba03a5a | 2020-08-27 14:40:41 +0200 | [diff] [blame] | 3507 | ret = ly_set_add(&ctx->xpath, notif, 0, NULL); |
| 3508 | LY_CHECK_GOTO(ret, cleanup); |
Michal Vasko | 5d8756a | 2019-11-07 15:21:00 +0100 | [diff] [blame] | 3509 | } |
Radek Krejci | 0935f41 | 2019-08-20 16:15:18 +0200 | [diff] [blame] | 3510 | COMPILE_EXTS_GOTO(ctx, notif_p->exts, notif->exts, notif, LYEXT_PAR_NODE, ret, cleanup); |
Radek Krejci | fc11bd7 | 2019-04-11 16:00:05 +0200 | [diff] [blame] | 3511 | |
Radek Krejci | ec4da80 | 2019-05-02 13:02:41 +0200 | [diff] [blame] | 3512 | ctx->options |= LYSC_OPT_NOTIFICATION; |
Michal Vasko | 7f45cf2 | 2020-10-01 12:49:44 +0200 | [diff] [blame] | 3513 | |
| 3514 | /* connect any notification augments */ |
| 3515 | LY_CHECK_RET(lys_compile_node_augments(ctx, (struct lysc_node *)notif)); |
| 3516 | |
Radek Krejci | fc11bd7 | 2019-04-11 16:00:05 +0200 | [diff] [blame] | 3517 | LY_LIST_FOR(notif_p->data, child_p) { |
Michal Vasko | 7f45cf2 | 2020-10-01 12:49:44 +0200 | [diff] [blame] | 3518 | ret = lys_compile_node(ctx, child_p, (struct lysc_node *)notif, uses_status, NULL); |
Radek Krejci | ba03a5a | 2020-08-27 14:40:41 +0200 | [diff] [blame] | 3519 | LY_CHECK_GOTO(ret, cleanup); |
Radek Krejci | fc11bd7 | 2019-04-11 16:00:05 +0200 | [diff] [blame] | 3520 | } |
| 3521 | |
Radek Krejci | 327de16 | 2019-06-14 12:52:07 +0200 | [diff] [blame] | 3522 | lysc_update_path(ctx, NULL, NULL); |
Michal Vasko | 7f45cf2 | 2020-10-01 12:49:44 +0200 | [diff] [blame] | 3523 | |
Radek Krejci | fc11bd7 | 2019-04-11 16:00:05 +0200 | [diff] [blame] | 3524 | cleanup: |
Michal Vasko | 7f45cf2 | 2020-10-01 12:49:44 +0200 | [diff] [blame] | 3525 | lysp_dev_node_free(ctx->ctx, dev_pnode); |
Radek Krejci | ec4da80 | 2019-05-02 13:02:41 +0200 | [diff] [blame] | 3526 | ctx->options = opt_prev; |
Radek Krejci | fc11bd7 | 2019-04-11 16:00:05 +0200 | [diff] [blame] | 3527 | return ret; |
| 3528 | } |
| 3529 | |
| 3530 | /** |
Radek Krejci | a304538 | 2018-11-22 14:30:31 +0100 | [diff] [blame] | 3531 | * @brief Compile parsed container node information. |
| 3532 | * @param[in] ctx Compile context |
Michal Vasko | 7f45cf2 | 2020-10-01 12:49:44 +0200 | [diff] [blame] | 3533 | * @param[in] pnode Parsed container node. |
Radek Krejci | a304538 | 2018-11-22 14:30:31 +0100 | [diff] [blame] | 3534 | * @param[in,out] node Pre-prepared structure from lys_compile_node() with filled generic node information |
| 3535 | * is enriched with the container-specific information. |
| 3536 | * @return LY_ERR value - LY_SUCCESS or LY_EVALID. |
| 3537 | */ |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 3538 | static LY_ERR |
Michal Vasko | 7f45cf2 | 2020-10-01 12:49:44 +0200 | [diff] [blame] | 3539 | lys_compile_node_container(struct lysc_ctx *ctx, struct lysp_node *pnode, struct lysc_node *node) |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 3540 | { |
Michal Vasko | 7f45cf2 | 2020-10-01 12:49:44 +0200 | [diff] [blame] | 3541 | struct lysp_node_container *cont_p = (struct lysp_node_container *)pnode; |
Michal Vasko | 22df3f0 | 2020-08-24 13:29:22 +0200 | [diff] [blame] | 3542 | struct lysc_node_container *cont = (struct lysc_node_container *)node; |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 3543 | struct lysp_node *child_p; |
Michal Vasko | ba417ac | 2020-08-06 14:48:20 +0200 | [diff] [blame] | 3544 | LY_ARRAY_COUNT_TYPE u; |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 3545 | LY_ERR ret = LY_SUCCESS; |
| 3546 | |
Radek Krejci | fe90963 | 2019-02-12 15:34:42 +0100 | [diff] [blame] | 3547 | if (cont_p->presence) { |
Michal Vasko | ba417ac | 2020-08-06 14:48:20 +0200 | [diff] [blame] | 3548 | /* explicit presence */ |
Radek Krejci | fe90963 | 2019-02-12 15:34:42 +0100 | [diff] [blame] | 3549 | cont->flags |= LYS_PRESENCE; |
Michal Vasko | ba417ac | 2020-08-06 14:48:20 +0200 | [diff] [blame] | 3550 | } else if (cont_p->musts) { |
| 3551 | /* container with a must condition */ |
Radek Krejci | 175f25b | 2020-08-13 12:02:36 +0200 | [diff] [blame] | 3552 | LOGWRN(ctx->ctx, "Container \"%s\" changed to presence because it has a meaning from its \"must\" condition.", cont_p->name); |
| 3553 | cont->flags |= LYS_PRESENCE; |
| 3554 | } else if (cont_p->when) { |
| 3555 | /* container with a when condition */ |
| 3556 | LOGWRN(ctx->ctx, "Container \"%s\" changed to presence because it has a meaning from its \"when\" condition.", cont_p->name); |
Michal Vasko | ba417ac | 2020-08-06 14:48:20 +0200 | [diff] [blame] | 3557 | cont->flags |= LYS_PRESENCE; |
| 3558 | } else if (cont_p->parent) { |
| 3559 | if (cont_p->parent->nodetype == LYS_CHOICE) { |
| 3560 | /* container is an implicit case, so its existence decides the existence of the whole case */ |
Radek Krejci | 175f25b | 2020-08-13 12:02:36 +0200 | [diff] [blame] | 3561 | LOGWRN(ctx->ctx, "Container \"%s\" changed to presence because it has a meaning as a case of choice \"%s\".", |
Michal Vasko | ba417ac | 2020-08-06 14:48:20 +0200 | [diff] [blame] | 3562 | cont_p->name, cont_p->parent->name); |
| 3563 | cont->flags |= LYS_PRESENCE; |
| 3564 | } else if ((cont_p->parent->nodetype == LYS_CASE) |
Michal Vasko | 7f45cf2 | 2020-10-01 12:49:44 +0200 | [diff] [blame] | 3565 | && (((struct lysp_node_case *)cont_p->parent)->child == pnode) && !cont_p->next) { |
Michal Vasko | ba417ac | 2020-08-06 14:48:20 +0200 | [diff] [blame] | 3566 | /* container is the only node in a case, so its existence decides the existence of the whole case */ |
Radek Krejci | 175f25b | 2020-08-13 12:02:36 +0200 | [diff] [blame] | 3567 | LOGWRN(ctx->ctx, "Container \"%s\" changed to presence because it has a meaning as a case of choice \"%s\".", |
Michal Vasko | ba417ac | 2020-08-06 14:48:20 +0200 | [diff] [blame] | 3568 | cont_p->name, cont_p->parent->name); |
| 3569 | cont->flags |= LYS_PRESENCE; |
| 3570 | } |
Radek Krejci | fe90963 | 2019-02-12 15:34:42 +0100 | [diff] [blame] | 3571 | } |
| 3572 | |
Michal Vasko | ba417ac | 2020-08-06 14:48:20 +0200 | [diff] [blame] | 3573 | /* more cases when the container has meaning but is kept NP for convenience: |
| 3574 | * - when condition |
| 3575 | * - direct child action/notification |
| 3576 | */ |
| 3577 | |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 3578 | LY_LIST_FOR(cont_p->child, child_p) { |
Michal Vasko | 7f45cf2 | 2020-10-01 12:49:44 +0200 | [diff] [blame] | 3579 | ret = lys_compile_node(ctx, child_p, node, 0, NULL); |
Radek Krejci | ba03a5a | 2020-08-27 14:40:41 +0200 | [diff] [blame] | 3580 | LY_CHECK_GOTO(ret, done); |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 3581 | } |
| 3582 | |
Radek Krejci | c71ac5b | 2019-09-10 15:34:22 +0200 | [diff] [blame] | 3583 | COMPILE_ARRAY_GOTO(ctx, cont_p->musts, cont->musts, u, lys_compile_must, ret, done); |
Michal Vasko | 5d8756a | 2019-11-07 15:21:00 +0100 | [diff] [blame] | 3584 | if (cont_p->musts && !(ctx->options & LYSC_OPT_GROUPING)) { |
| 3585 | /* do not check "must" semantics in a grouping */ |
Radek Krejci | ba03a5a | 2020-08-27 14:40:41 +0200 | [diff] [blame] | 3586 | ret = ly_set_add(&ctx->xpath, cont, 0, NULL); |
| 3587 | LY_CHECK_GOTO(ret, done); |
Michal Vasko | 5d8756a | 2019-11-07 15:21:00 +0100 | [diff] [blame] | 3588 | } |
Michal Vasko | 7f45cf2 | 2020-10-01 12:49:44 +0200 | [diff] [blame] | 3589 | COMPILE_OP_ARRAY_GOTO(ctx, cont_p->actions, cont->actions, node, u, lys_compile_action, 0, ret, done); |
| 3590 | COMPILE_OP_ARRAY_GOTO(ctx, cont_p->notifs, cont->notifs, node, u, lys_compile_notif, 0, ret, done); |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 3591 | |
| 3592 | done: |
| 3593 | return ret; |
| 3594 | } |
| 3595 | |
Radek Krejci | 33f7289 | 2019-02-21 10:36:58 +0100 | [diff] [blame] | 3596 | /* |
| 3597 | * @brief Compile type in leaf/leaf-list node and do all the necessary checks. |
| 3598 | * @param[in] ctx Compile context. |
| 3599 | * @param[in] context_node Schema node where the type/typedef is placed to correctly find the base types. |
| 3600 | * @param[in] type_p Parsed type to compile. |
Radek Krejci | 33f7289 | 2019-02-21 10:36:58 +0100 | [diff] [blame] | 3601 | * @param[in,out] leaf Compiled leaf structure (possibly cast leaf-list) to provide node information and to store the compiled type information. |
| 3602 | * @return LY_ERR value. |
| 3603 | */ |
| 3604 | static LY_ERR |
Michal Vasko | ba99a3e | 2020-08-18 15:50:05 +0200 | [diff] [blame] | 3605 | lys_compile_node_type(struct lysc_ctx *ctx, struct lysp_node *context_node, struct lysp_type *type_p, |
Radek Krejci | 0f96988 | 2020-08-21 16:56:47 +0200 | [diff] [blame] | 3606 | struct lysc_node_leaf *leaf) |
Radek Krejci | 33f7289 | 2019-02-21 10:36:58 +0100 | [diff] [blame] | 3607 | { |
Michal Vasko | 7f45cf2 | 2020-10-01 12:49:44 +0200 | [diff] [blame] | 3608 | struct lysp_qname *dflt; |
Radek Krejci | 33f7289 | 2019-02-21 10:36:58 +0100 | [diff] [blame] | 3609 | |
Radek Krejci | ec4da80 | 2019-05-02 13:02:41 +0200 | [diff] [blame] | 3610 | LY_CHECK_RET(lys_compile_type(ctx, context_node, leaf->flags, ctx->mod_def->parsed, leaf->name, type_p, &leaf->type, |
Michal Vasko | 7f45cf2 | 2020-10-01 12:49:44 +0200 | [diff] [blame] | 3611 | leaf->units ? NULL : &leaf->units, &dflt)); |
Michal Vasko | ba99a3e | 2020-08-18 15:50:05 +0200 | [diff] [blame] | 3612 | |
| 3613 | /* store default value, if any */ |
| 3614 | if (dflt && !(leaf->flags & LYS_SET_DFLT)) { |
Michal Vasko | 7f45cf2 | 2020-10-01 12:49:44 +0200 | [diff] [blame] | 3615 | LY_CHECK_RET(lysc_unres_leaf_dflt_add(ctx, leaf, dflt)); |
Radek Krejci | 33f7289 | 2019-02-21 10:36:58 +0100 | [diff] [blame] | 3616 | } |
Michal Vasko | ba99a3e | 2020-08-18 15:50:05 +0200 | [diff] [blame] | 3617 | |
Radek Krejci | 33f7289 | 2019-02-21 10:36:58 +0100 | [diff] [blame] | 3618 | if (leaf->type->basetype == LY_TYPE_LEAFREF) { |
| 3619 | /* store to validate the path in the current context at the end of schema compiling when all the nodes are present */ |
Radek Krejci | ba03a5a | 2020-08-27 14:40:41 +0200 | [diff] [blame] | 3620 | LY_CHECK_RET(ly_set_add(&ctx->leafrefs, leaf, 0, NULL)); |
Radek Krejci | 33f7289 | 2019-02-21 10:36:58 +0100 | [diff] [blame] | 3621 | } else if (leaf->type->basetype == LY_TYPE_UNION) { |
Michal Vasko | fd69e1d | 2020-07-03 11:57:17 +0200 | [diff] [blame] | 3622 | LY_ARRAY_COUNT_TYPE u; |
Michal Vasko | ba99a3e | 2020-08-18 15:50:05 +0200 | [diff] [blame] | 3623 | LY_ARRAY_FOR(((struct lysc_type_union *)leaf->type)->types, u) { |
| 3624 | if (((struct lysc_type_union *)leaf->type)->types[u]->basetype == LY_TYPE_LEAFREF) { |
Radek Krejci | 33f7289 | 2019-02-21 10:36:58 +0100 | [diff] [blame] | 3625 | /* store to validate the path in the current context at the end of schema compiling when all the nodes are present */ |
Radek Krejci | ba03a5a | 2020-08-27 14:40:41 +0200 | [diff] [blame] | 3626 | LY_CHECK_RET(ly_set_add(&ctx->leafrefs, leaf, 0, NULL)); |
Radek Krejci | 33f7289 | 2019-02-21 10:36:58 +0100 | [diff] [blame] | 3627 | } |
| 3628 | } |
| 3629 | } else if (leaf->type->basetype == LY_TYPE_EMPTY) { |
Radek Krejci | 33f7289 | 2019-02-21 10:36:58 +0100 | [diff] [blame] | 3630 | if (leaf->nodetype == LYS_LEAFLIST && ctx->mod_def->version < LYS_VERSION_1_1) { |
| 3631 | LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SEMANTICS, |
| 3632 | "Leaf-list of type \"empty\" is allowed only in YANG 1.1 modules."); |
| 3633 | return LY_EVALID; |
| 3634 | } |
| 3635 | } |
| 3636 | |
Radek Krejci | 33f7289 | 2019-02-21 10:36:58 +0100 | [diff] [blame] | 3637 | return LY_SUCCESS; |
| 3638 | } |
| 3639 | |
Radek Krejci | a304538 | 2018-11-22 14:30:31 +0100 | [diff] [blame] | 3640 | /** |
| 3641 | * @brief Compile parsed leaf node information. |
| 3642 | * @param[in] ctx Compile context |
Michal Vasko | 7f45cf2 | 2020-10-01 12:49:44 +0200 | [diff] [blame] | 3643 | * @param[in] pnode Parsed leaf node. |
Radek Krejci | a304538 | 2018-11-22 14:30:31 +0100 | [diff] [blame] | 3644 | * @param[in,out] node Pre-prepared structure from lys_compile_node() with filled generic node information |
| 3645 | * is enriched with the leaf-specific information. |
| 3646 | * @return LY_ERR value - LY_SUCCESS or LY_EVALID. |
| 3647 | */ |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 3648 | static LY_ERR |
Michal Vasko | 7f45cf2 | 2020-10-01 12:49:44 +0200 | [diff] [blame] | 3649 | lys_compile_node_leaf(struct lysc_ctx *ctx, struct lysp_node *pnode, struct lysc_node *node) |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 3650 | { |
Michal Vasko | 7f45cf2 | 2020-10-01 12:49:44 +0200 | [diff] [blame] | 3651 | struct lysp_node_leaf *leaf_p = (struct lysp_node_leaf *)pnode; |
Michal Vasko | 22df3f0 | 2020-08-24 13:29:22 +0200 | [diff] [blame] | 3652 | struct lysc_node_leaf *leaf = (struct lysc_node_leaf *)node; |
Michal Vasko | 7c8439f | 2020-08-05 13:25:19 +0200 | [diff] [blame] | 3653 | LY_ARRAY_COUNT_TYPE u; |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 3654 | LY_ERR ret = LY_SUCCESS; |
| 3655 | |
Radek Krejci | c71ac5b | 2019-09-10 15:34:22 +0200 | [diff] [blame] | 3656 | COMPILE_ARRAY_GOTO(ctx, leaf_p->musts, leaf->musts, u, lys_compile_must, ret, done); |
Michal Vasko | 5d8756a | 2019-11-07 15:21:00 +0100 | [diff] [blame] | 3657 | if (leaf_p->musts && !(ctx->options & LYSC_OPT_GROUPING)) { |
| 3658 | /* do not check "must" semantics in a grouping */ |
Radek Krejci | ba03a5a | 2020-08-27 14:40:41 +0200 | [diff] [blame] | 3659 | ret = ly_set_add(&ctx->xpath, leaf, 0, NULL); |
| 3660 | LY_CHECK_GOTO(ret, done); |
Michal Vasko | 5d8756a | 2019-11-07 15:21:00 +0100 | [diff] [blame] | 3661 | } |
Radek Krejci | ccd20f1 | 2019-02-15 14:12:27 +0100 | [diff] [blame] | 3662 | if (leaf_p->units) { |
Radek Krejci | 011e4aa | 2020-09-04 15:22:31 +0200 | [diff] [blame] | 3663 | LY_CHECK_GOTO(ret = lydict_insert(ctx->ctx, leaf_p->units, 0, &leaf->units), done); |
Radek Krejci | ccd20f1 | 2019-02-15 14:12:27 +0100 | [diff] [blame] | 3664 | leaf->flags |= LYS_SET_UNITS; |
| 3665 | } |
Radek Krejci | a191122 | 2019-07-22 17:24:50 +0200 | [diff] [blame] | 3666 | |
Michal Vasko | ba99a3e | 2020-08-18 15:50:05 +0200 | [diff] [blame] | 3667 | /* compile type */ |
Michal Vasko | 7f45cf2 | 2020-10-01 12:49:44 +0200 | [diff] [blame] | 3668 | ret = lys_compile_node_type(ctx, pnode, &leaf_p->type, leaf); |
Radek Krejci | ba03a5a | 2020-08-27 14:40:41 +0200 | [diff] [blame] | 3669 | LY_CHECK_GOTO(ret, done); |
Radek Krejci | a191122 | 2019-07-22 17:24:50 +0200 | [diff] [blame] | 3670 | |
Michal Vasko | ba99a3e | 2020-08-18 15:50:05 +0200 | [diff] [blame] | 3671 | /* store/update default value */ |
Michal Vasko | 7f45cf2 | 2020-10-01 12:49:44 +0200 | [diff] [blame] | 3672 | if (leaf_p->dflt.str) { |
| 3673 | LY_CHECK_RET(lysc_unres_leaf_dflt_add(ctx, leaf, &leaf_p->dflt)); |
Radek Krejci | 76b3e96 | 2018-12-14 17:01:25 +0100 | [diff] [blame] | 3674 | leaf->flags |= LYS_SET_DFLT; |
| 3675 | } |
Radek Krejci | 4369923 | 2018-11-23 14:59:46 +0100 | [diff] [blame] | 3676 | |
Michal Vasko | 7f45cf2 | 2020-10-01 12:49:44 +0200 | [diff] [blame] | 3677 | /* checks */ |
| 3678 | if ((leaf->flags & LYS_SET_DFLT) && (leaf->flags & LYS_MAND_TRUE)) { |
| 3679 | LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SEMANTICS, |
| 3680 | "Invalid mandatory leaf with a default value."); |
| 3681 | return LY_EVALID; |
| 3682 | } |
| 3683 | |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 3684 | done: |
| 3685 | return ret; |
| 3686 | } |
| 3687 | |
Radek Krejci | a304538 | 2018-11-22 14:30:31 +0100 | [diff] [blame] | 3688 | /** |
Radek Krejci | 0e5d838 | 2018-11-28 16:37:53 +0100 | [diff] [blame] | 3689 | * @brief Compile parsed leaf-list node information. |
| 3690 | * @param[in] ctx Compile context |
Michal Vasko | 7f45cf2 | 2020-10-01 12:49:44 +0200 | [diff] [blame] | 3691 | * @param[in] pnode Parsed leaf-list node. |
Radek Krejci | 0e5d838 | 2018-11-28 16:37:53 +0100 | [diff] [blame] | 3692 | * @param[in,out] node Pre-prepared structure from lys_compile_node() with filled generic node information |
| 3693 | * is enriched with the leaf-list-specific information. |
| 3694 | * @return LY_ERR value - LY_SUCCESS or LY_EVALID. |
| 3695 | */ |
| 3696 | static LY_ERR |
Michal Vasko | 7f45cf2 | 2020-10-01 12:49:44 +0200 | [diff] [blame] | 3697 | lys_compile_node_leaflist(struct lysc_ctx *ctx, struct lysp_node *pnode, struct lysc_node *node) |
Radek Krejci | 0e5d838 | 2018-11-28 16:37:53 +0100 | [diff] [blame] | 3698 | { |
Michal Vasko | 7f45cf2 | 2020-10-01 12:49:44 +0200 | [diff] [blame] | 3699 | struct lysp_node_leaflist *llist_p = (struct lysp_node_leaflist *)pnode; |
Michal Vasko | 22df3f0 | 2020-08-24 13:29:22 +0200 | [diff] [blame] | 3700 | struct lysc_node_leaflist *llist = (struct lysc_node_leaflist *)node; |
Michal Vasko | ba99a3e | 2020-08-18 15:50:05 +0200 | [diff] [blame] | 3701 | LY_ARRAY_COUNT_TYPE u; |
Radek Krejci | 0e5d838 | 2018-11-28 16:37:53 +0100 | [diff] [blame] | 3702 | LY_ERR ret = LY_SUCCESS; |
| 3703 | |
Radek Krejci | c71ac5b | 2019-09-10 15:34:22 +0200 | [diff] [blame] | 3704 | COMPILE_ARRAY_GOTO(ctx, llist_p->musts, llist->musts, u, lys_compile_must, ret, done); |
Michal Vasko | 5d8756a | 2019-11-07 15:21:00 +0100 | [diff] [blame] | 3705 | if (llist_p->musts && !(ctx->options & LYSC_OPT_GROUPING)) { |
| 3706 | /* do not check "must" semantics in a grouping */ |
Radek Krejci | ba03a5a | 2020-08-27 14:40:41 +0200 | [diff] [blame] | 3707 | ret = ly_set_add(&ctx->xpath, llist, 0, NULL); |
| 3708 | LY_CHECK_GOTO(ret, done); |
Michal Vasko | 5d8756a | 2019-11-07 15:21:00 +0100 | [diff] [blame] | 3709 | } |
Radek Krejci | ccd20f1 | 2019-02-15 14:12:27 +0100 | [diff] [blame] | 3710 | if (llist_p->units) { |
Radek Krejci | 011e4aa | 2020-09-04 15:22:31 +0200 | [diff] [blame] | 3711 | LY_CHECK_GOTO(ret = lydict_insert(ctx->ctx, llist_p->units, 0, &llist->units), done); |
Radek Krejci | ccd20f1 | 2019-02-15 14:12:27 +0100 | [diff] [blame] | 3712 | llist->flags |= LYS_SET_UNITS; |
| 3713 | } |
Radek Krejci | 0e5d838 | 2018-11-28 16:37:53 +0100 | [diff] [blame] | 3714 | |
Michal Vasko | ba99a3e | 2020-08-18 15:50:05 +0200 | [diff] [blame] | 3715 | /* compile type */ |
Michal Vasko | 7f45cf2 | 2020-10-01 12:49:44 +0200 | [diff] [blame] | 3716 | ret = lys_compile_node_type(ctx, pnode, &llist_p->type, (struct lysc_node_leaf *)llist); |
Radek Krejci | ba03a5a | 2020-08-27 14:40:41 +0200 | [diff] [blame] | 3717 | LY_CHECK_GOTO(ret, done); |
Michal Vasko | 6a044b2 | 2020-01-15 12:25:39 +0100 | [diff] [blame] | 3718 | |
Michal Vasko | ba99a3e | 2020-08-18 15:50:05 +0200 | [diff] [blame] | 3719 | /* store/update default values */ |
Radek Krejci | 0e5d838 | 2018-11-28 16:37:53 +0100 | [diff] [blame] | 3720 | if (llist_p->dflts) { |
Michal Vasko | 7f45cf2 | 2020-10-01 12:49:44 +0200 | [diff] [blame] | 3721 | if (ctx->mod_def->version < LYS_VERSION_1_1) { |
| 3722 | LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SEMANTICS, |
| 3723 | "Leaf-list default values are allowed only in YANG 1.1 modules."); |
| 3724 | return LY_EVALID; |
| 3725 | } |
| 3726 | |
| 3727 | LY_CHECK_GOTO(lysc_unres_llist_dflts_add(ctx, llist, llist_p->dflts), done); |
Radek Krejci | ccd20f1 | 2019-02-15 14:12:27 +0100 | [diff] [blame] | 3728 | llist->flags |= LYS_SET_DFLT; |
Radek Krejci | 0e5d838 | 2018-11-28 16:37:53 +0100 | [diff] [blame] | 3729 | } |
| 3730 | |
| 3731 | llist->min = llist_p->min; |
Radek Krejci | fe90963 | 2019-02-12 15:34:42 +0100 | [diff] [blame] | 3732 | if (llist->min) { |
| 3733 | llist->flags |= LYS_MAND_TRUE; |
| 3734 | } |
Radek Krejci | b740863 | 2018-11-28 17:12:11 +0100 | [diff] [blame] | 3735 | llist->max = llist_p->max ? llist_p->max : (uint32_t)-1; |
Radek Krejci | 0e5d838 | 2018-11-28 16:37:53 +0100 | [diff] [blame] | 3736 | |
Michal Vasko | 7f45cf2 | 2020-10-01 12:49:44 +0200 | [diff] [blame] | 3737 | /* checks */ |
| 3738 | if ((llist->flags & LYS_SET_DFLT) && (llist->flags & LYS_MAND_TRUE)) { |
| 3739 | LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SEMANTICS, |
| 3740 | "Invalid mandatory leaf-list with default value(s)."); |
| 3741 | return LY_EVALID; |
| 3742 | } |
| 3743 | |
| 3744 | if (llist->min > llist->max) { |
| 3745 | LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SEMANTICS, "Leaf-list min-elements %u is bigger than max-elements %u.", |
| 3746 | llist->min, llist->max); |
| 3747 | return LY_EVALID; |
| 3748 | } |
| 3749 | |
Radek Krejci | 0e5d838 | 2018-11-28 16:37:53 +0100 | [diff] [blame] | 3750 | done: |
| 3751 | return ret; |
| 3752 | } |
| 3753 | |
| 3754 | /** |
Radek Krejci | 7af6424 | 2019-02-18 13:07:53 +0100 | [diff] [blame] | 3755 | * @brief Compile information about list's uniques. |
| 3756 | * @param[in] ctx Compile context. |
Radek Krejci | 7af6424 | 2019-02-18 13:07:53 +0100 | [diff] [blame] | 3757 | * @param[in] uniques Sized array list of unique statements. |
| 3758 | * @param[in] list Compiled list where the uniques are supposed to be resolved and stored. |
| 3759 | * @return LY_ERR value. |
| 3760 | */ |
| 3761 | static LY_ERR |
Michal Vasko | 7f45cf2 | 2020-10-01 12:49:44 +0200 | [diff] [blame] | 3762 | lys_compile_node_list_unique(struct lysc_ctx *ctx, struct lysp_qname *uniques, struct lysc_node_list *list) |
Radek Krejci | 7af6424 | 2019-02-18 13:07:53 +0100 | [diff] [blame] | 3763 | { |
| 3764 | LY_ERR ret = LY_SUCCESS; |
| 3765 | struct lysc_node_leaf **key, ***unique; |
Michal Vasko | 1465471 | 2020-02-06 08:35:21 +0100 | [diff] [blame] | 3766 | struct lysc_node *parent; |
Radek Krejci | 7af6424 | 2019-02-18 13:07:53 +0100 | [diff] [blame] | 3767 | const char *keystr, *delim; |
| 3768 | size_t len; |
Michal Vasko | fd69e1d | 2020-07-03 11:57:17 +0200 | [diff] [blame] | 3769 | LY_ARRAY_COUNT_TYPE v; |
Radek Krejci | 1deb5be | 2020-08-26 16:43:36 +0200 | [diff] [blame] | 3770 | int8_t config; /* -1 - not yet seen; 0 - LYS_CONFIG_R; 1 - LYS_CONFIG_W */ |
Radek Krejci | 6eeb58f | 2019-02-22 16:29:37 +0100 | [diff] [blame] | 3771 | uint16_t flags; |
Radek Krejci | 7af6424 | 2019-02-18 13:07:53 +0100 | [diff] [blame] | 3772 | |
Michal Vasko | 7f45cf2 | 2020-10-01 12:49:44 +0200 | [diff] [blame] | 3773 | LY_ARRAY_FOR(uniques, v) { |
Radek Krejci | 7af6424 | 2019-02-18 13:07:53 +0100 | [diff] [blame] | 3774 | config = -1; |
| 3775 | LY_ARRAY_NEW_RET(ctx->ctx, list->uniques, unique, LY_EMEM); |
Michal Vasko | 7f45cf2 | 2020-10-01 12:49:44 +0200 | [diff] [blame] | 3776 | keystr = uniques[v].str; |
Radek Krejci | 7af6424 | 2019-02-18 13:07:53 +0100 | [diff] [blame] | 3777 | while (keystr) { |
| 3778 | delim = strpbrk(keystr, " \t\n"); |
| 3779 | if (delim) { |
| 3780 | len = delim - keystr; |
| 3781 | while (isspace(*delim)) { |
| 3782 | ++delim; |
| 3783 | } |
| 3784 | } else { |
| 3785 | len = strlen(keystr); |
| 3786 | } |
| 3787 | |
| 3788 | /* unique node must be present */ |
| 3789 | LY_ARRAY_NEW_RET(ctx->ctx, *unique, key, LY_EMEM); |
Michal Vasko | 7f45cf2 | 2020-10-01 12:49:44 +0200 | [diff] [blame] | 3790 | ret = lysc_resolve_schema_nodeid(ctx, keystr, len, (struct lysc_node *)list, uniques[v].mod, LYS_LEAF, |
Michal Vasko | 22df3f0 | 2020-08-24 13:29:22 +0200 | [diff] [blame] | 3791 | (const struct lysc_node **)key, &flags); |
Radek Krejci | 7af6424 | 2019-02-18 13:07:53 +0100 | [diff] [blame] | 3792 | if (ret != LY_SUCCESS) { |
| 3793 | if (ret == LY_EDENIED) { |
| 3794 | LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_REFERENCE, |
Radek Krejci | 6eeb58f | 2019-02-22 16:29:37 +0100 | [diff] [blame] | 3795 | "Unique's descendant-schema-nodeid \"%.*s\" refers to %s node instead of a leaf.", |
Radek Krejci | 7af6424 | 2019-02-18 13:07:53 +0100 | [diff] [blame] | 3796 | len, keystr, lys_nodetype2str((*key)->nodetype)); |
| 3797 | } |
| 3798 | return LY_EVALID; |
Radek Krejci | 6eeb58f | 2019-02-22 16:29:37 +0100 | [diff] [blame] | 3799 | } else if (flags) { |
| 3800 | LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_REFERENCE, |
| 3801 | "Unique's descendant-schema-nodeid \"%.*s\" refers into %s node.", |
Michal Vasko | a388136 | 2020-01-21 15:57:35 +0100 | [diff] [blame] | 3802 | len, keystr, flags & LYSC_OPT_NOTIFICATION ? "notification" : "RPC/action"); |
Radek Krejci | 6eeb58f | 2019-02-22 16:29:37 +0100 | [diff] [blame] | 3803 | return LY_EVALID; |
Radek Krejci | 7af6424 | 2019-02-18 13:07:53 +0100 | [diff] [blame] | 3804 | } |
| 3805 | |
| 3806 | /* all referenced leafs must be of the same config type */ |
| 3807 | if (config != -1 && ((((*key)->flags & LYS_CONFIG_W) && config == 0) || (((*key)->flags & LYS_CONFIG_R) && config == 1))) { |
| 3808 | LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SEMANTICS, |
Michal Vasko | 7f45cf2 | 2020-10-01 12:49:44 +0200 | [diff] [blame] | 3809 | "Unique statement \"%s\" refers to leaves with different config type.", uniques[v].str); |
Radek Krejci | 7af6424 | 2019-02-18 13:07:53 +0100 | [diff] [blame] | 3810 | return LY_EVALID; |
| 3811 | } else if ((*key)->flags & LYS_CONFIG_W) { |
| 3812 | config = 1; |
| 3813 | } else { /* LYS_CONFIG_R */ |
| 3814 | config = 0; |
| 3815 | } |
| 3816 | |
Michal Vasko | 1465471 | 2020-02-06 08:35:21 +0100 | [diff] [blame] | 3817 | /* we forbid referencing nested lists because it is unspecified what instance of such a list to use */ |
| 3818 | for (parent = (*key)->parent; parent != (struct lysc_node *)list; parent = parent->parent) { |
| 3819 | if (parent->nodetype == LYS_LIST) { |
| 3820 | LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SEMANTICS, |
Michal Vasko | 7f45cf2 | 2020-10-01 12:49:44 +0200 | [diff] [blame] | 3821 | "Unique statement \"%s\" refers to a leaf in nested list \"%s\".", uniques[v].str, parent->name); |
Michal Vasko | 1465471 | 2020-02-06 08:35:21 +0100 | [diff] [blame] | 3822 | return LY_EVALID; |
| 3823 | } |
| 3824 | } |
| 3825 | |
Radek Krejci | 7af6424 | 2019-02-18 13:07:53 +0100 | [diff] [blame] | 3826 | /* check status */ |
| 3827 | LY_CHECK_RET(lysc_check_status(ctx, list->flags, list->module, list->name, |
Radek Krejci | 0f96988 | 2020-08-21 16:56:47 +0200 | [diff] [blame] | 3828 | (*key)->flags, (*key)->module, (*key)->name)); |
Radek Krejci | 7af6424 | 2019-02-18 13:07:53 +0100 | [diff] [blame] | 3829 | |
| 3830 | /* mark leaf as unique */ |
| 3831 | (*key)->flags |= LYS_UNIQUE; |
| 3832 | |
| 3833 | /* next unique value in line */ |
| 3834 | keystr = delim; |
| 3835 | } |
| 3836 | /* next unique definition */ |
| 3837 | } |
| 3838 | |
| 3839 | return LY_SUCCESS; |
| 3840 | } |
| 3841 | |
| 3842 | /** |
Radek Krejci | 9bb94eb | 2018-12-04 16:48:35 +0100 | [diff] [blame] | 3843 | * @brief Compile parsed list node information. |
| 3844 | * @param[in] ctx Compile context |
Michal Vasko | 7f45cf2 | 2020-10-01 12:49:44 +0200 | [diff] [blame] | 3845 | * @param[in] pnode Parsed list node. |
Radek Krejci | 9bb94eb | 2018-12-04 16:48:35 +0100 | [diff] [blame] | 3846 | * @param[in,out] node Pre-prepared structure from lys_compile_node() with filled generic node information |
| 3847 | * is enriched with the list-specific information. |
| 3848 | * @return LY_ERR value - LY_SUCCESS or LY_EVALID. |
| 3849 | */ |
| 3850 | static LY_ERR |
Michal Vasko | 7f45cf2 | 2020-10-01 12:49:44 +0200 | [diff] [blame] | 3851 | lys_compile_node_list(struct lysc_ctx *ctx, struct lysp_node *pnode, struct lysc_node *node) |
Radek Krejci | 9bb94eb | 2018-12-04 16:48:35 +0100 | [diff] [blame] | 3852 | { |
Michal Vasko | 7f45cf2 | 2020-10-01 12:49:44 +0200 | [diff] [blame] | 3853 | struct lysp_node_list *list_p = (struct lysp_node_list *)pnode; |
Michal Vasko | 22df3f0 | 2020-08-24 13:29:22 +0200 | [diff] [blame] | 3854 | struct lysc_node_list *list = (struct lysc_node_list *)node; |
Radek Krejci | 9bb94eb | 2018-12-04 16:48:35 +0100 | [diff] [blame] | 3855 | struct lysp_node *child_p; |
Radek Krejci | 0fe9b51 | 2019-07-26 17:51:05 +0200 | [diff] [blame] | 3856 | struct lysc_node_leaf *key, *prev_key = NULL; |
Radek Krejci | 9bb94eb | 2018-12-04 16:48:35 +0100 | [diff] [blame] | 3857 | size_t len; |
Radek Krejci | 1deb5be | 2020-08-26 16:43:36 +0200 | [diff] [blame] | 3858 | LY_ARRAY_COUNT_TYPE u; |
Radek Krejci | 9bb94eb | 2018-12-04 16:48:35 +0100 | [diff] [blame] | 3859 | const char *keystr, *delim; |
Radek Krejci | 9bb94eb | 2018-12-04 16:48:35 +0100 | [diff] [blame] | 3860 | LY_ERR ret = LY_SUCCESS; |
| 3861 | |
Radek Krejci | 9bb94eb | 2018-12-04 16:48:35 +0100 | [diff] [blame] | 3862 | list->min = list_p->min; |
Radek Krejci | fe90963 | 2019-02-12 15:34:42 +0100 | [diff] [blame] | 3863 | if (list->min) { |
| 3864 | list->flags |= LYS_MAND_TRUE; |
| 3865 | } |
Radek Krejci | 9bb94eb | 2018-12-04 16:48:35 +0100 | [diff] [blame] | 3866 | list->max = list_p->max ? list_p->max : (uint32_t)-1; |
| 3867 | |
| 3868 | LY_LIST_FOR(list_p->child, child_p) { |
Michal Vasko | 7f45cf2 | 2020-10-01 12:49:44 +0200 | [diff] [blame] | 3869 | LY_CHECK_RET(lys_compile_node(ctx, child_p, node, 0, NULL)); |
Radek Krejci | 9bb94eb | 2018-12-04 16:48:35 +0100 | [diff] [blame] | 3870 | } |
| 3871 | |
Radek Krejci | c71ac5b | 2019-09-10 15:34:22 +0200 | [diff] [blame] | 3872 | COMPILE_ARRAY_GOTO(ctx, list_p->musts, list->musts, u, lys_compile_must, ret, done); |
Michal Vasko | 5d8756a | 2019-11-07 15:21:00 +0100 | [diff] [blame] | 3873 | if (list_p->musts && !(ctx->options & LYSC_OPT_GROUPING)) { |
| 3874 | /* do not check "must" semantics in a grouping */ |
Radek Krejci | ba03a5a | 2020-08-27 14:40:41 +0200 | [diff] [blame] | 3875 | LY_CHECK_RET(ly_set_add(&ctx->xpath, list, 0, NULL)); |
Michal Vasko | 5d8756a | 2019-11-07 15:21:00 +0100 | [diff] [blame] | 3876 | } |
Radek Krejci | 9bb94eb | 2018-12-04 16:48:35 +0100 | [diff] [blame] | 3877 | |
| 3878 | /* keys */ |
| 3879 | if ((list->flags & LYS_CONFIG_W) && (!list_p->key || !list_p->key[0])) { |
| 3880 | LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SEMANTICS, "Missing key in list representing configuration data."); |
| 3881 | return LY_EVALID; |
| 3882 | } |
| 3883 | |
| 3884 | /* find all the keys (must be direct children) */ |
| 3885 | keystr = list_p->key; |
Radek Krejci | 0fe9b51 | 2019-07-26 17:51:05 +0200 | [diff] [blame] | 3886 | if (!keystr) { |
| 3887 | /* keyless list */ |
| 3888 | list->flags |= LYS_KEYLESS; |
| 3889 | } |
Radek Krejci | 9bb94eb | 2018-12-04 16:48:35 +0100 | [diff] [blame] | 3890 | while (keystr) { |
| 3891 | delim = strpbrk(keystr, " \t\n"); |
| 3892 | if (delim) { |
| 3893 | len = delim - keystr; |
| 3894 | while (isspace(*delim)) { |
| 3895 | ++delim; |
| 3896 | } |
| 3897 | } else { |
| 3898 | len = strlen(keystr); |
| 3899 | } |
| 3900 | |
| 3901 | /* key node must be present */ |
Michal Vasko | 22df3f0 | 2020-08-24 13:29:22 +0200 | [diff] [blame] | 3902 | key = (struct lysc_node_leaf *)lys_find_child(node, node->module, keystr, len, LYS_LEAF, LYS_GETNEXT_NOCHOICE | LYS_GETNEXT_NOSTATECHECK); |
Radek Krejci | 0fe9b51 | 2019-07-26 17:51:05 +0200 | [diff] [blame] | 3903 | if (!(key)) { |
Radek Krejci | 9bb94eb | 2018-12-04 16:48:35 +0100 | [diff] [blame] | 3904 | LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_REFERENCE, |
| 3905 | "The list's key \"%.*s\" not found.", len, keystr); |
| 3906 | return LY_EVALID; |
| 3907 | } |
| 3908 | /* keys must be unique */ |
Radek Krejci | 0fe9b51 | 2019-07-26 17:51:05 +0200 | [diff] [blame] | 3909 | if (key->flags & LYS_KEY) { |
| 3910 | /* the node was already marked as a key */ |
| 3911 | LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SEMANTICS, |
| 3912 | "Duplicated key identifier \"%.*s\".", len, keystr); |
| 3913 | return LY_EVALID; |
Radek Krejci | 9bb94eb | 2018-12-04 16:48:35 +0100 | [diff] [blame] | 3914 | } |
Radek Krejci | 0fe9b51 | 2019-07-26 17:51:05 +0200 | [diff] [blame] | 3915 | |
Michal Vasko | 22df3f0 | 2020-08-24 13:29:22 +0200 | [diff] [blame] | 3916 | lysc_update_path(ctx, (struct lysc_node *)list, key->name); |
Radek Krejci | 9bb94eb | 2018-12-04 16:48:35 +0100 | [diff] [blame] | 3917 | /* key must have the same config flag as the list itself */ |
Radek Krejci | 0fe9b51 | 2019-07-26 17:51:05 +0200 | [diff] [blame] | 3918 | if ((list->flags & LYS_CONFIG_MASK) != (key->flags & LYS_CONFIG_MASK)) { |
Radek Krejci | 9bb94eb | 2018-12-04 16:48:35 +0100 | [diff] [blame] | 3919 | LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SEMANTICS, "Key of the configuration list must not be status leaf."); |
| 3920 | return LY_EVALID; |
| 3921 | } |
Radek Krejci | 0bcdaed | 2019-01-10 10:21:34 +0100 | [diff] [blame] | 3922 | if (ctx->mod_def->version < LYS_VERSION_1_1) { |
Radek Krejci | 9bb94eb | 2018-12-04 16:48:35 +0100 | [diff] [blame] | 3923 | /* YANG 1.0 denies key to be of empty type */ |
Radek Krejci | 0fe9b51 | 2019-07-26 17:51:05 +0200 | [diff] [blame] | 3924 | if (key->type->basetype == LY_TYPE_EMPTY) { |
Radek Krejci | 9bb94eb | 2018-12-04 16:48:35 +0100 | [diff] [blame] | 3925 | LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SEMANTICS, |
Radek Krejci | 327de16 | 2019-06-14 12:52:07 +0200 | [diff] [blame] | 3926 | "List's key cannot be of \"empty\" type until it is in YANG 1.1 module."); |
Radek Krejci | 9bb94eb | 2018-12-04 16:48:35 +0100 | [diff] [blame] | 3927 | return LY_EVALID; |
| 3928 | } |
| 3929 | } else { |
| 3930 | /* when and if-feature are illegal on list keys */ |
Radek Krejci | 0fe9b51 | 2019-07-26 17:51:05 +0200 | [diff] [blame] | 3931 | if (key->when) { |
Radek Krejci | 9bb94eb | 2018-12-04 16:48:35 +0100 | [diff] [blame] | 3932 | LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SEMANTICS, |
Radek Krejci | 327de16 | 2019-06-14 12:52:07 +0200 | [diff] [blame] | 3933 | "List's key must not have any \"when\" statement."); |
Radek Krejci | 9bb94eb | 2018-12-04 16:48:35 +0100 | [diff] [blame] | 3934 | return LY_EVALID; |
| 3935 | } |
Radek Krejci | 0fe9b51 | 2019-07-26 17:51:05 +0200 | [diff] [blame] | 3936 | if (key->iffeatures) { |
Radek Krejci | 9bb94eb | 2018-12-04 16:48:35 +0100 | [diff] [blame] | 3937 | LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SEMANTICS, |
Radek Krejci | 327de16 | 2019-06-14 12:52:07 +0200 | [diff] [blame] | 3938 | "List's key must not have any \"if-feature\" statement."); |
Radek Krejci | 9bb94eb | 2018-12-04 16:48:35 +0100 | [diff] [blame] | 3939 | return LY_EVALID; |
| 3940 | } |
| 3941 | } |
Radek Krejci | 76b3e96 | 2018-12-14 17:01:25 +0100 | [diff] [blame] | 3942 | |
| 3943 | /* check status */ |
| 3944 | LY_CHECK_RET(lysc_check_status(ctx, list->flags, list->module, list->name, |
Radek Krejci | 0fe9b51 | 2019-07-26 17:51:05 +0200 | [diff] [blame] | 3945 | key->flags, key->module, key->name)); |
Radek Krejci | 76b3e96 | 2018-12-14 17:01:25 +0100 | [diff] [blame] | 3946 | |
Radek Krejci | 9bb94eb | 2018-12-04 16:48:35 +0100 | [diff] [blame] | 3947 | /* ignore default values of the key */ |
Radek Krejci | 0fe9b51 | 2019-07-26 17:51:05 +0200 | [diff] [blame] | 3948 | if (key->dflt) { |
| 3949 | key->dflt->realtype->plugin->free(ctx->ctx, key->dflt); |
| 3950 | lysc_type_free(ctx->ctx, key->dflt->realtype); |
| 3951 | free(key->dflt); |
| 3952 | key->dflt = NULL; |
Radek Krejci | 9bb94eb | 2018-12-04 16:48:35 +0100 | [diff] [blame] | 3953 | } |
| 3954 | /* mark leaf as key */ |
Radek Krejci | 0fe9b51 | 2019-07-26 17:51:05 +0200 | [diff] [blame] | 3955 | key->flags |= LYS_KEY; |
| 3956 | |
| 3957 | /* move it to the correct position */ |
Michal Vasko | 22df3f0 | 2020-08-24 13:29:22 +0200 | [diff] [blame] | 3958 | if ((prev_key && (struct lysc_node *)prev_key != key->prev) || (!prev_key && key->prev->next)) { |
Radek Krejci | 0fe9b51 | 2019-07-26 17:51:05 +0200 | [diff] [blame] | 3959 | /* fix links in closest previous siblings of the key */ |
| 3960 | if (key->next) { |
| 3961 | key->next->prev = key->prev; |
| 3962 | } else { |
| 3963 | /* last child */ |
| 3964 | list->child->prev = key->prev; |
| 3965 | } |
| 3966 | if (key->prev->next) { |
| 3967 | key->prev->next = key->next; |
| 3968 | } |
| 3969 | /* fix links in the key */ |
| 3970 | if (prev_key) { |
Michal Vasko | 22df3f0 | 2020-08-24 13:29:22 +0200 | [diff] [blame] | 3971 | key->prev = (struct lysc_node *)prev_key; |
Radek Krejci | 0fe9b51 | 2019-07-26 17:51:05 +0200 | [diff] [blame] | 3972 | key->next = prev_key->next; |
| 3973 | } else { |
| 3974 | key->prev = list->child->prev; |
| 3975 | key->next = list->child; |
| 3976 | } |
| 3977 | /* fix links in closes future siblings of the key */ |
| 3978 | if (prev_key) { |
| 3979 | if (prev_key->next) { |
Michal Vasko | 22df3f0 | 2020-08-24 13:29:22 +0200 | [diff] [blame] | 3980 | prev_key->next->prev = (struct lysc_node *)key; |
Radek Krejci | 0fe9b51 | 2019-07-26 17:51:05 +0200 | [diff] [blame] | 3981 | } else { |
Michal Vasko | 22df3f0 | 2020-08-24 13:29:22 +0200 | [diff] [blame] | 3982 | list->child->prev = (struct lysc_node *)key; |
Radek Krejci | 0fe9b51 | 2019-07-26 17:51:05 +0200 | [diff] [blame] | 3983 | } |
Michal Vasko | 22df3f0 | 2020-08-24 13:29:22 +0200 | [diff] [blame] | 3984 | prev_key->next = (struct lysc_node *)key; |
Radek Krejci | 0fe9b51 | 2019-07-26 17:51:05 +0200 | [diff] [blame] | 3985 | } else { |
Michal Vasko | 22df3f0 | 2020-08-24 13:29:22 +0200 | [diff] [blame] | 3986 | list->child->prev = (struct lysc_node *)key; |
Radek Krejci | 0fe9b51 | 2019-07-26 17:51:05 +0200 | [diff] [blame] | 3987 | } |
| 3988 | /* fix links in parent */ |
| 3989 | if (!key->prev->next) { |
Michal Vasko | 22df3f0 | 2020-08-24 13:29:22 +0200 | [diff] [blame] | 3990 | list->child = (struct lysc_node *)key; |
Radek Krejci | 0fe9b51 | 2019-07-26 17:51:05 +0200 | [diff] [blame] | 3991 | } |
| 3992 | } |
Radek Krejci | 9bb94eb | 2018-12-04 16:48:35 +0100 | [diff] [blame] | 3993 | |
| 3994 | /* next key value */ |
Radek Krejci | 0fe9b51 | 2019-07-26 17:51:05 +0200 | [diff] [blame] | 3995 | prev_key = key; |
Radek Krejci | 9bb94eb | 2018-12-04 16:48:35 +0100 | [diff] [blame] | 3996 | keystr = delim; |
Radek Krejci | 327de16 | 2019-06-14 12:52:07 +0200 | [diff] [blame] | 3997 | lysc_update_path(ctx, NULL, NULL); |
Radek Krejci | 9bb94eb | 2018-12-04 16:48:35 +0100 | [diff] [blame] | 3998 | } |
| 3999 | |
| 4000 | /* uniques */ |
| 4001 | if (list_p->uniques) { |
Michal Vasko | 7f45cf2 | 2020-10-01 12:49:44 +0200 | [diff] [blame] | 4002 | LY_CHECK_RET(lys_compile_node_list_unique(ctx, list_p->uniques, list)); |
Radek Krejci | 9bb94eb | 2018-12-04 16:48:35 +0100 | [diff] [blame] | 4003 | } |
| 4004 | |
Michal Vasko | 7f45cf2 | 2020-10-01 12:49:44 +0200 | [diff] [blame] | 4005 | COMPILE_OP_ARRAY_GOTO(ctx, list_p->actions, list->actions, node, u, lys_compile_action, 0, ret, done); |
| 4006 | COMPILE_OP_ARRAY_GOTO(ctx, list_p->notifs, list->notifs, node, u, lys_compile_notif, 0, ret, done); |
| 4007 | |
| 4008 | /* checks */ |
| 4009 | if (list->min > list->max) { |
| 4010 | LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SEMANTICS, "List min-elements %u is bigger than max-elements %u.", |
| 4011 | list->min, list->max); |
| 4012 | return LY_EVALID; |
| 4013 | } |
Radek Krejci | 9bb94eb | 2018-12-04 16:48:35 +0100 | [diff] [blame] | 4014 | |
| 4015 | done: |
| 4016 | return ret; |
| 4017 | } |
| 4018 | |
Radek Krejci | b56c750 | 2019-02-13 14:19:54 +0100 | [diff] [blame] | 4019 | /** |
| 4020 | * @brief Do some checks and set the default choice's case. |
| 4021 | * |
| 4022 | * Selects (and stores into ::lysc_node_choice#dflt) the default case and set LYS_SET_DFLT flag on it. |
| 4023 | * |
| 4024 | * @param[in] ctx Compile context. |
Michal Vasko | 7f45cf2 | 2020-10-01 12:49:44 +0200 | [diff] [blame] | 4025 | * @param[in] dflt Name of the default branch. Can even contain a prefix. |
Radek Krejci | b56c750 | 2019-02-13 14:19:54 +0100 | [diff] [blame] | 4026 | * @param[in,out] ch The compiled choice node, its dflt member is filled to point to the default case node of the choice. |
| 4027 | * @return LY_ERR value. |
| 4028 | */ |
Radek Krejci | 76b3e96 | 2018-12-14 17:01:25 +0100 | [diff] [blame] | 4029 | static LY_ERR |
Michal Vasko | 7f45cf2 | 2020-10-01 12:49:44 +0200 | [diff] [blame] | 4030 | lys_compile_node_choice_dflt(struct lysc_ctx *ctx, struct lysp_qname *dflt, struct lysc_node_choice *ch) |
Radek Krejci | 76b3e96 | 2018-12-14 17:01:25 +0100 | [diff] [blame] | 4031 | { |
Michal Vasko | 22df3f0 | 2020-08-24 13:29:22 +0200 | [diff] [blame] | 4032 | struct lysc_node *iter, *node = (struct lysc_node *)ch; |
Michal Vasko | 7f45cf2 | 2020-10-01 12:49:44 +0200 | [diff] [blame] | 4033 | const struct lys_module *mod; |
Radek Krejci | 76b3e96 | 2018-12-14 17:01:25 +0100 | [diff] [blame] | 4034 | const char *prefix = NULL, *name; |
| 4035 | size_t prefix_len = 0; |
| 4036 | |
| 4037 | /* could use lys_parse_nodeid(), but it checks syntax which is already done in this case by the parsers */ |
Michal Vasko | 7f45cf2 | 2020-10-01 12:49:44 +0200 | [diff] [blame] | 4038 | name = strchr(dflt->str, ':'); |
Radek Krejci | 76b3e96 | 2018-12-14 17:01:25 +0100 | [diff] [blame] | 4039 | if (name) { |
Michal Vasko | 7f45cf2 | 2020-10-01 12:49:44 +0200 | [diff] [blame] | 4040 | prefix = dflt->str; |
Radek Krejci | 76b3e96 | 2018-12-14 17:01:25 +0100 | [diff] [blame] | 4041 | prefix_len = name - prefix; |
| 4042 | ++name; |
| 4043 | } else { |
Michal Vasko | 7f45cf2 | 2020-10-01 12:49:44 +0200 | [diff] [blame] | 4044 | name = dflt->str; |
Radek Krejci | 76b3e96 | 2018-12-14 17:01:25 +0100 | [diff] [blame] | 4045 | } |
Michal Vasko | 7f45cf2 | 2020-10-01 12:49:44 +0200 | [diff] [blame] | 4046 | if (prefix) { |
| 4047 | mod = ly_resolve_prefix(ctx->ctx, prefix, prefix_len, LY_PREF_SCHEMA, (void *)dflt->mod); |
| 4048 | if (!mod) { |
| 4049 | LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_REFERENCE, |
| 4050 | "Default case prefix \"%.*s\" not found in imports of \"%s\".", prefix_len, prefix, dflt->mod->name); |
| 4051 | return LY_EVALID; |
| 4052 | } |
| 4053 | } else { |
| 4054 | mod = node->module; |
Radek Krejci | 76b3e96 | 2018-12-14 17:01:25 +0100 | [diff] [blame] | 4055 | } |
Michal Vasko | 7f45cf2 | 2020-10-01 12:49:44 +0200 | [diff] [blame] | 4056 | |
| 4057 | ch->dflt = (struct lysc_node_case *)lys_find_child(node, mod, name, 0, LYS_CASE, LYS_GETNEXT_NOSTATECHECK | LYS_GETNEXT_WITHCASE); |
Radek Krejci | 76b3e96 | 2018-12-14 17:01:25 +0100 | [diff] [blame] | 4058 | if (!ch->dflt) { |
| 4059 | LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SEMANTICS, |
Michal Vasko | 7f45cf2 | 2020-10-01 12:49:44 +0200 | [diff] [blame] | 4060 | "Default case \"%s\" not found.", dflt->str); |
Radek Krejci | 76b3e96 | 2018-12-14 17:01:25 +0100 | [diff] [blame] | 4061 | return LY_EVALID; |
| 4062 | } |
Michal Vasko | 7f45cf2 | 2020-10-01 12:49:44 +0200 | [diff] [blame] | 4063 | |
Radek Krejci | 76b3e96 | 2018-12-14 17:01:25 +0100 | [diff] [blame] | 4064 | /* no mandatory nodes directly under the default case */ |
| 4065 | LY_LIST_FOR(ch->dflt->child, iter) { |
Michal Vasko | 22df3f0 | 2020-08-24 13:29:22 +0200 | [diff] [blame] | 4066 | if (iter->parent != (struct lysc_node *)ch->dflt) { |
Radek Krejci | fe13da4 | 2019-02-15 14:51:01 +0100 | [diff] [blame] | 4067 | break; |
| 4068 | } |
Radek Krejci | 76b3e96 | 2018-12-14 17:01:25 +0100 | [diff] [blame] | 4069 | if (iter->flags & LYS_MAND_TRUE) { |
| 4070 | LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SEMANTICS, |
Michal Vasko | 7f45cf2 | 2020-10-01 12:49:44 +0200 | [diff] [blame] | 4071 | "Mandatory node \"%s\" under the default case \"%s\".", iter->name, dflt->str); |
Radek Krejci | 76b3e96 | 2018-12-14 17:01:25 +0100 | [diff] [blame] | 4072 | return LY_EVALID; |
| 4073 | } |
| 4074 | } |
Radek Krejci | 76b3e96 | 2018-12-14 17:01:25 +0100 | [diff] [blame] | 4075 | |
Michal Vasko | 7f45cf2 | 2020-10-01 12:49:44 +0200 | [diff] [blame] | 4076 | if (ch->flags & LYS_MAND_TRUE) { |
| 4077 | LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SEMANTICS, "Invalid mandatory choice with a default case."); |
Radek Krejci | ccd20f1 | 2019-02-15 14:12:27 +0100 | [diff] [blame] | 4078 | return LY_EVALID; |
| 4079 | } |
| 4080 | |
Michal Vasko | 7f45cf2 | 2020-10-01 12:49:44 +0200 | [diff] [blame] | 4081 | ch->dflt->flags |= LYS_SET_DFLT; |
Radek Krejci | ccd20f1 | 2019-02-15 14:12:27 +0100 | [diff] [blame] | 4082 | return LY_SUCCESS; |
| 4083 | } |
| 4084 | |
Radek Krejci | 9bb94eb | 2018-12-04 16:48:35 +0100 | [diff] [blame] | 4085 | /** |
Michal Vasko | 20424b4 | 2020-08-31 12:29:38 +0200 | [diff] [blame] | 4086 | * @brief Compile choice children. |
| 4087 | * |
| 4088 | * @param[in] ctx Compile context |
| 4089 | * @param[in] child_p Parsed choice children nodes. |
| 4090 | * @param[in] node Compiled choice node to compile and add children to. |
| 4091 | * @return LY_ERR value - LY_SUCCESS or LY_EVALID. |
| 4092 | */ |
| 4093 | static LY_ERR |
Michal Vasko | 7f45cf2 | 2020-10-01 12:49:44 +0200 | [diff] [blame] | 4094 | lys_compile_node_choice_child(struct lysc_ctx *ctx, struct lysp_node *child_p, struct lysc_node *node, |
| 4095 | struct ly_set *child_set) |
Michal Vasko | 20424b4 | 2020-08-31 12:29:38 +0200 | [diff] [blame] | 4096 | { |
| 4097 | LY_ERR ret = LY_SUCCESS; |
Radek Krejci | 8f5fad2 | 2020-09-15 16:50:54 +0200 | [diff] [blame] | 4098 | struct lysp_node *child_p_next = child_p->next; |
Michal Vasko | 20424b4 | 2020-08-31 12:29:38 +0200 | [diff] [blame] | 4099 | struct lysp_node_case *cs_p; |
| 4100 | |
| 4101 | if (child_p->nodetype == LYS_CASE) { |
| 4102 | /* standard case under choice */ |
Michal Vasko | 7f45cf2 | 2020-10-01 12:49:44 +0200 | [diff] [blame] | 4103 | ret = lys_compile_node(ctx, child_p, node, 0, child_set); |
Michal Vasko | 20424b4 | 2020-08-31 12:29:38 +0200 | [diff] [blame] | 4104 | } else { |
| 4105 | /* we need the implicit case first, so create a fake parsed case */ |
| 4106 | cs_p = calloc(1, sizeof *cs_p); |
| 4107 | cs_p->nodetype = LYS_CASE; |
Radek Krejci | 87e2525 | 2020-09-15 13:28:31 +0200 | [diff] [blame] | 4108 | DUP_STRING_GOTO(ctx->ctx, child_p->name, cs_p->name, ret, free_fake_node); |
Michal Vasko | 20424b4 | 2020-08-31 12:29:38 +0200 | [diff] [blame] | 4109 | cs_p->child = child_p; |
| 4110 | |
| 4111 | /* make the child the only case child */ |
Michal Vasko | 20424b4 | 2020-08-31 12:29:38 +0200 | [diff] [blame] | 4112 | child_p->next = NULL; |
| 4113 | |
| 4114 | /* compile it normally */ |
Michal Vasko | 7f45cf2 | 2020-10-01 12:49:44 +0200 | [diff] [blame] | 4115 | ret = lys_compile_node(ctx, (struct lysp_node *)cs_p, node, 0, child_set); |
Michal Vasko | 20424b4 | 2020-08-31 12:29:38 +0200 | [diff] [blame] | 4116 | |
Radek Krejci | 87e2525 | 2020-09-15 13:28:31 +0200 | [diff] [blame] | 4117 | free_fake_node: |
Michal Vasko | 20424b4 | 2020-08-31 12:29:38 +0200 | [diff] [blame] | 4118 | /* free the fake parsed node and correct pointers back */ |
| 4119 | cs_p->child = NULL; |
| 4120 | lysp_node_free(ctx->ctx, (struct lysp_node *)cs_p); |
Radek Krejci | 8f5fad2 | 2020-09-15 16:50:54 +0200 | [diff] [blame] | 4121 | child_p->next = child_p_next; |
Michal Vasko | 20424b4 | 2020-08-31 12:29:38 +0200 | [diff] [blame] | 4122 | } |
| 4123 | |
| 4124 | return ret; |
| 4125 | } |
| 4126 | |
| 4127 | /** |
Radek Krejci | 056d0a8 | 2018-12-06 16:57:25 +0100 | [diff] [blame] | 4128 | * @brief Compile parsed choice node information. |
Michal Vasko | 20424b4 | 2020-08-31 12:29:38 +0200 | [diff] [blame] | 4129 | * |
Radek Krejci | 056d0a8 | 2018-12-06 16:57:25 +0100 | [diff] [blame] | 4130 | * @param[in] ctx Compile context |
Michal Vasko | 7f45cf2 | 2020-10-01 12:49:44 +0200 | [diff] [blame] | 4131 | * @param[in] pnode Parsed choice node. |
Radek Krejci | 056d0a8 | 2018-12-06 16:57:25 +0100 | [diff] [blame] | 4132 | * @param[in,out] node Pre-prepared structure from lys_compile_node() with filled generic node information |
Radek Krejci | 76b3e96 | 2018-12-14 17:01:25 +0100 | [diff] [blame] | 4133 | * is enriched with the choice-specific information. |
Radek Krejci | 056d0a8 | 2018-12-06 16:57:25 +0100 | [diff] [blame] | 4134 | * @return LY_ERR value - LY_SUCCESS or LY_EVALID. |
| 4135 | */ |
| 4136 | static LY_ERR |
Michal Vasko | 7f45cf2 | 2020-10-01 12:49:44 +0200 | [diff] [blame] | 4137 | lys_compile_node_choice(struct lysc_ctx *ctx, struct lysp_node *pnode, struct lysc_node *node) |
Radek Krejci | 056d0a8 | 2018-12-06 16:57:25 +0100 | [diff] [blame] | 4138 | { |
Michal Vasko | 7f45cf2 | 2020-10-01 12:49:44 +0200 | [diff] [blame] | 4139 | struct lysp_node_choice *ch_p = (struct lysp_node_choice *)pnode; |
Michal Vasko | 22df3f0 | 2020-08-24 13:29:22 +0200 | [diff] [blame] | 4140 | struct lysc_node_choice *ch = (struct lysc_node_choice *)node; |
Michal Vasko | 20424b4 | 2020-08-31 12:29:38 +0200 | [diff] [blame] | 4141 | struct lysp_node *child_p; |
Radek Krejci | 056d0a8 | 2018-12-06 16:57:25 +0100 | [diff] [blame] | 4142 | LY_ERR ret = LY_SUCCESS; |
| 4143 | |
Michal Vasko | 20424b4 | 2020-08-31 12:29:38 +0200 | [diff] [blame] | 4144 | assert(node->nodetype == LYS_CHOICE); |
| 4145 | |
Radek Krejci | 056d0a8 | 2018-12-06 16:57:25 +0100 | [diff] [blame] | 4146 | LY_LIST_FOR(ch_p->child, child_p) { |
Michal Vasko | 7f45cf2 | 2020-10-01 12:49:44 +0200 | [diff] [blame] | 4147 | LY_CHECK_RET(lys_compile_node_choice_child(ctx, child_p, node, NULL)); |
Radek Krejci | 056d0a8 | 2018-12-06 16:57:25 +0100 | [diff] [blame] | 4148 | } |
| 4149 | |
| 4150 | /* default branch */ |
Michal Vasko | 7f45cf2 | 2020-10-01 12:49:44 +0200 | [diff] [blame] | 4151 | if (ch_p->dflt.str) { |
| 4152 | LY_CHECK_RET(lys_compile_node_choice_dflt(ctx, &ch_p->dflt, ch)); |
Radek Krejci | a9026eb | 2018-12-12 16:04:47 +0100 | [diff] [blame] | 4153 | } |
Radek Krejci | 056d0a8 | 2018-12-06 16:57:25 +0100 | [diff] [blame] | 4154 | |
Radek Krejci | 9800fb8 | 2018-12-13 14:26:23 +0100 | [diff] [blame] | 4155 | return ret; |
| 4156 | } |
| 4157 | |
| 4158 | /** |
| 4159 | * @brief Compile parsed anydata or anyxml node information. |
| 4160 | * @param[in] ctx Compile context |
Michal Vasko | 7f45cf2 | 2020-10-01 12:49:44 +0200 | [diff] [blame] | 4161 | * @param[in] pnode Parsed anydata or anyxml node. |
Radek Krejci | 9800fb8 | 2018-12-13 14:26:23 +0100 | [diff] [blame] | 4162 | * @param[in,out] node Pre-prepared structure from lys_compile_node() with filled generic node information |
| 4163 | * is enriched with the any-specific information. |
| 4164 | * @return LY_ERR value - LY_SUCCESS or LY_EVALID. |
| 4165 | */ |
| 4166 | static LY_ERR |
Michal Vasko | 7f45cf2 | 2020-10-01 12:49:44 +0200 | [diff] [blame] | 4167 | lys_compile_node_any(struct lysc_ctx *ctx, struct lysp_node *pnode, struct lysc_node *node) |
Radek Krejci | 9800fb8 | 2018-12-13 14:26:23 +0100 | [diff] [blame] | 4168 | { |
Michal Vasko | 7f45cf2 | 2020-10-01 12:49:44 +0200 | [diff] [blame] | 4169 | struct lysp_node_anydata *any_p = (struct lysp_node_anydata *)pnode; |
Michal Vasko | 22df3f0 | 2020-08-24 13:29:22 +0200 | [diff] [blame] | 4170 | struct lysc_node_anydata *any = (struct lysc_node_anydata *)node; |
Radek Krejci | 1deb5be | 2020-08-26 16:43:36 +0200 | [diff] [blame] | 4171 | LY_ARRAY_COUNT_TYPE u; |
Radek Krejci | 9800fb8 | 2018-12-13 14:26:23 +0100 | [diff] [blame] | 4172 | LY_ERR ret = LY_SUCCESS; |
| 4173 | |
Radek Krejci | c71ac5b | 2019-09-10 15:34:22 +0200 | [diff] [blame] | 4174 | COMPILE_ARRAY_GOTO(ctx, any_p->musts, any->musts, u, lys_compile_must, ret, done); |
Michal Vasko | 5d8756a | 2019-11-07 15:21:00 +0100 | [diff] [blame] | 4175 | if (any_p->musts && !(ctx->options & LYSC_OPT_GROUPING)) { |
| 4176 | /* do not check "must" semantics in a grouping */ |
Radek Krejci | ba03a5a | 2020-08-27 14:40:41 +0200 | [diff] [blame] | 4177 | ret = ly_set_add(&ctx->xpath, any, 0, NULL); |
| 4178 | LY_CHECK_GOTO(ret, done); |
Michal Vasko | 5d8756a | 2019-11-07 15:21:00 +0100 | [diff] [blame] | 4179 | } |
Radek Krejci | 9800fb8 | 2018-12-13 14:26:23 +0100 | [diff] [blame] | 4180 | |
| 4181 | if (any->flags & LYS_CONFIG_W) { |
Radek Krejci | 5c4ed7b | 2020-08-12 11:29:44 +0200 | [diff] [blame] | 4182 | LOGWRN(ctx->ctx, "Use of %s to define configuration data is not recommended. %s", |
| 4183 | ly_stmt2str(any->nodetype == LYS_ANYDATA ? LY_STMT_ANYDATA : LY_STMT_ANYXML), ctx->path); |
Radek Krejci | 9800fb8 | 2018-12-13 14:26:23 +0100 | [diff] [blame] | 4184 | } |
Radek Krejci | 056d0a8 | 2018-12-06 16:57:25 +0100 | [diff] [blame] | 4185 | done: |
| 4186 | return ret; |
| 4187 | } |
| 4188 | |
Radek Krejci | b56c750 | 2019-02-13 14:19:54 +0100 | [diff] [blame] | 4189 | /** |
Michal Vasko | 795b375 | 2020-07-13 15:24:27 +0200 | [diff] [blame] | 4190 | * @brief Connect the node into the siblings list and check its name uniqueness. Also, |
| 4191 | * keep specific order of augments targetting the same node. |
Radek Krejci | 056d0a8 | 2018-12-06 16:57:25 +0100 | [diff] [blame] | 4192 | * |
| 4193 | * @param[in] ctx Compile context |
| 4194 | * @param[in] parent Parent node holding the children list, in case of node from a choice's case, |
| 4195 | * the choice itself is expected instead of a specific case node. |
| 4196 | * @param[in] node Schema node to connect into the list. |
| 4197 | * @return LY_ERR value - LY_SUCCESS or LY_EEXIST. |
Radek Krejci | 1c54f46 | 2020-05-12 17:25:34 +0200 | [diff] [blame] | 4198 | * In case of LY_EEXIST, the node is actually kept in the tree, so do not free it directly. |
Radek Krejci | 056d0a8 | 2018-12-06 16:57:25 +0100 | [diff] [blame] | 4199 | */ |
| 4200 | static LY_ERR |
Radek Krejci | ec4da80 | 2019-05-02 13:02:41 +0200 | [diff] [blame] | 4201 | lys_compile_node_connect(struct lysc_ctx *ctx, struct lysc_node *parent, struct lysc_node *node) |
Radek Krejci | 056d0a8 | 2018-12-06 16:57:25 +0100 | [diff] [blame] | 4202 | { |
Michal Vasko | 7f45cf2 | 2020-10-01 12:49:44 +0200 | [diff] [blame] | 4203 | struct lysc_node **children, *anchor = NULL; |
| 4204 | int insert_after = 0; |
Radek Krejci | 056d0a8 | 2018-12-06 16:57:25 +0100 | [diff] [blame] | 4205 | |
Michal Vasko | 20424b4 | 2020-08-31 12:29:38 +0200 | [diff] [blame] | 4206 | node->parent = parent; |
| 4207 | |
| 4208 | if (parent) { |
| 4209 | if (parent->nodetype == LYS_CHOICE) { |
| 4210 | assert(node->nodetype == LYS_CASE); |
| 4211 | children = (struct lysc_node **)&((struct lysc_node_choice *)parent)->cases; |
| 4212 | } else { |
| 4213 | children = lysc_node_children_p(parent, ctx->options); |
| 4214 | } |
| 4215 | assert(children); |
| 4216 | |
Radek Krejci | 056d0a8 | 2018-12-06 16:57:25 +0100 | [diff] [blame] | 4217 | if (!(*children)) { |
| 4218 | /* first child */ |
| 4219 | *children = node; |
Michal Vasko | 7f45cf2 | 2020-10-01 12:49:44 +0200 | [diff] [blame] | 4220 | } else if (node->flags & LYS_KEY) { |
| 4221 | /* special handling of adding keys */ |
| 4222 | assert(node->module == parent->module); |
| 4223 | anchor = *children; |
| 4224 | if (anchor->flags & LYS_KEY) { |
| 4225 | while ((anchor->flags & LYS_KEY) && anchor->next) { |
| 4226 | anchor = anchor->next; |
| 4227 | } |
| 4228 | /* insert after the last key */ |
| 4229 | insert_after = 1; |
| 4230 | } /* else insert before anchor (at the beginning) */ |
| 4231 | } else if ((*children)->prev->module == node->module) { |
| 4232 | /* last child is from the same module, keep the order and insert at the end */ |
| 4233 | anchor = (*children)->prev; |
| 4234 | insert_after = 1; |
| 4235 | } else if (parent->module == node->module) { |
| 4236 | /* adding module child after some augments were connected */ |
| 4237 | for (anchor = *children; anchor->module == node->module; anchor = anchor->next) {} |
| 4238 | } else { |
| 4239 | /* some augments are already connected and we are connecting new ones, |
| 4240 | * keep module name order and insert the node into the children list */ |
| 4241 | anchor = *children; |
| 4242 | do { |
| 4243 | anchor = anchor->prev; |
Michal Vasko | 795b375 | 2020-07-13 15:24:27 +0200 | [diff] [blame] | 4244 | |
Michal Vasko | 7f45cf2 | 2020-10-01 12:49:44 +0200 | [diff] [blame] | 4245 | /* check that we have not found the last augment node from our module or |
| 4246 | * the first augment node from a "smaller" module or |
| 4247 | * the first node from a local module */ |
| 4248 | if ((anchor->module == node->module) || (strcmp(anchor->module->name, node->module->name) < 0) |
| 4249 | || (anchor->module == parent->module)) { |
| 4250 | /* insert after */ |
| 4251 | insert_after = 1; |
| 4252 | break; |
| 4253 | } |
| 4254 | |
| 4255 | /* we have traversed all the nodes, insert before anchor (as the first node) */ |
| 4256 | } while (anchor->prev->next); |
| 4257 | } |
| 4258 | |
| 4259 | /* insert */ |
| 4260 | if (anchor) { |
| 4261 | if (insert_after) { |
| 4262 | node->next = anchor->next; |
| 4263 | node->prev = anchor; |
| 4264 | anchor->next = node; |
| 4265 | if (node->next) { |
| 4266 | /* middle node */ |
| 4267 | node->next->prev = node; |
| 4268 | } else { |
| 4269 | /* last node */ |
| 4270 | (*children)->prev = node; |
| 4271 | } |
Michal Vasko | 795b375 | 2020-07-13 15:24:27 +0200 | [diff] [blame] | 4272 | } else { |
Michal Vasko | 7f45cf2 | 2020-10-01 12:49:44 +0200 | [diff] [blame] | 4273 | node->next = anchor; |
| 4274 | node->prev = anchor->prev; |
| 4275 | anchor->prev = node; |
| 4276 | if (anchor == *children) { |
| 4277 | /* first node */ |
| 4278 | *children = node; |
| 4279 | } else { |
| 4280 | /* middle node */ |
| 4281 | node->prev->next = node; |
| 4282 | } |
Michal Vasko | 795b375 | 2020-07-13 15:24:27 +0200 | [diff] [blame] | 4283 | } |
Michal Vasko | 20424b4 | 2020-08-31 12:29:38 +0200 | [diff] [blame] | 4284 | } |
Radek Krejci | 056d0a8 | 2018-12-06 16:57:25 +0100 | [diff] [blame] | 4285 | |
Michal Vasko | 20424b4 | 2020-08-31 12:29:38 +0200 | [diff] [blame] | 4286 | /* check the name uniqueness (even for an only child, it may be in case) */ |
| 4287 | if (lys_compile_node_uniqness(ctx, parent, node->name, node)) { |
| 4288 | return LY_EEXIST; |
| 4289 | } |
| 4290 | } else { |
| 4291 | /* top-level element */ |
| 4292 | if (!ctx->mod->compiled->data) { |
| 4293 | ctx->mod->compiled->data = node; |
| 4294 | } else { |
| 4295 | /* insert at the end of the module's top-level nodes list */ |
| 4296 | ctx->mod->compiled->data->prev->next = node; |
| 4297 | node->prev = ctx->mod->compiled->data->prev; |
| 4298 | ctx->mod->compiled->data->prev = node; |
| 4299 | } |
| 4300 | |
| 4301 | /* check the name uniqueness on top-level */ |
| 4302 | if (lys_compile_node_uniqness(ctx, NULL, node->name, node)) { |
| 4303 | return LY_EEXIST; |
Radek Krejci | 056d0a8 | 2018-12-06 16:57:25 +0100 | [diff] [blame] | 4304 | } |
| 4305 | } |
Michal Vasko | 20424b4 | 2020-08-31 12:29:38 +0200 | [diff] [blame] | 4306 | |
Radek Krejci | 056d0a8 | 2018-12-06 16:57:25 +0100 | [diff] [blame] | 4307 | return LY_SUCCESS; |
| 4308 | } |
| 4309 | |
Radek Krejci | 95710c9 | 2019-02-11 15:49:55 +0100 | [diff] [blame] | 4310 | /** |
Radek Krejci | b56c750 | 2019-02-13 14:19:54 +0100 | [diff] [blame] | 4311 | * @brief Prepare the case structure in choice node for the new data node. |
| 4312 | * |
| 4313 | * It is able to handle implicit as well as explicit cases and the situation when the case has multiple data nodes and the case was already |
| 4314 | * created in the choice when the first child was processed. |
| 4315 | * |
| 4316 | * @param[in] ctx Compile context. |
Michal Vasko | 7f45cf2 | 2020-10-01 12:49:44 +0200 | [diff] [blame] | 4317 | * @param[in] pnode Node image from the parsed tree. If the case is explicit, it is the LYS_CASE node, but in case of implicit case, |
Radek Krejci | 3942480 | 2020-08-12 09:31:00 +0200 | [diff] [blame] | 4318 | * it is the LYS_CHOICE, LYS_AUGMENT or LYS_GROUPING node. |
Radek Krejci | b56c750 | 2019-02-13 14:19:54 +0100 | [diff] [blame] | 4319 | * @param[in] ch The compiled choice structure where the new case structures are created (if needed). |
| 4320 | * @param[in] child The new data node being part of a case (no matter if explicit or implicit). |
| 4321 | * @return The case structure where the child node belongs to, NULL in case of error. Note that the child is not connected into the siblings list, |
| 4322 | * it is linked from the case structure only in case it is its first child. |
Radek Krejci | 95710c9 | 2019-02-11 15:49:55 +0100 | [diff] [blame] | 4323 | */ |
Michal Vasko | 20424b4 | 2020-08-31 12:29:38 +0200 | [diff] [blame] | 4324 | static LY_ERR |
Michal Vasko | 7f45cf2 | 2020-10-01 12:49:44 +0200 | [diff] [blame] | 4325 | lys_compile_node_case(struct lysc_ctx *ctx, struct lysp_node *pnode, struct lysc_node *node) |
Radek Krejci | 056d0a8 | 2018-12-06 16:57:25 +0100 | [diff] [blame] | 4326 | { |
Michal Vasko | 20424b4 | 2020-08-31 12:29:38 +0200 | [diff] [blame] | 4327 | struct lysp_node *child_p; |
Michal Vasko | 7f45cf2 | 2020-10-01 12:49:44 +0200 | [diff] [blame] | 4328 | struct lysp_node_case *cs_p = (struct lysp_node_case *)pnode; |
Radek Krejci | 056d0a8 | 2018-12-06 16:57:25 +0100 | [diff] [blame] | 4329 | |
Michal Vasko | 7f45cf2 | 2020-10-01 12:49:44 +0200 | [diff] [blame] | 4330 | if (pnode->nodetype & (LYS_CHOICE | LYS_AUGMENT | LYS_GROUPING)) { |
Radek Krejci | 056d0a8 | 2018-12-06 16:57:25 +0100 | [diff] [blame] | 4331 | /* we have to add an implicit case node into the parent choice */ |
Michal Vasko | 7f45cf2 | 2020-10-01 12:49:44 +0200 | [diff] [blame] | 4332 | } else if (pnode->nodetype == LYS_CASE) { |
Michal Vasko | 20424b4 | 2020-08-31 12:29:38 +0200 | [diff] [blame] | 4333 | /* explicit parent case */ |
| 4334 | LY_LIST_FOR(cs_p->child, child_p) { |
Michal Vasko | 7f45cf2 | 2020-10-01 12:49:44 +0200 | [diff] [blame] | 4335 | LY_CHECK_RET(lys_compile_node(ctx, child_p, node, 0, NULL)); |
Radek Krejci | 056d0a8 | 2018-12-06 16:57:25 +0100 | [diff] [blame] | 4336 | } |
Radek Krejci | 95710c9 | 2019-02-11 15:49:55 +0100 | [diff] [blame] | 4337 | } else { |
Michal Vasko | 20424b4 | 2020-08-31 12:29:38 +0200 | [diff] [blame] | 4338 | LOGINT_RET(ctx->ctx); |
Radek Krejci | 056d0a8 | 2018-12-06 16:57:25 +0100 | [diff] [blame] | 4339 | } |
Radek Krejci | 056d0a8 | 2018-12-06 16:57:25 +0100 | [diff] [blame] | 4340 | |
Michal Vasko | 20424b4 | 2020-08-31 12:29:38 +0200 | [diff] [blame] | 4341 | return LY_SUCCESS; |
Radek Krejci | 056d0a8 | 2018-12-06 16:57:25 +0100 | [diff] [blame] | 4342 | } |
| 4343 | |
Radek Krejci | b56c750 | 2019-02-13 14:19:54 +0100 | [diff] [blame] | 4344 | /** |
Radek Krejci | b56c750 | 2019-02-13 14:19:54 +0100 | [diff] [blame] | 4345 | * @brief Set LYS_MAND_TRUE flag for the non-presence container parents. |
| 4346 | * |
| 4347 | * A non-presence container is mandatory in case it has at least one mandatory children. This function propagate |
| 4348 | * the flag to such parents from a mandatory children. |
| 4349 | * |
| 4350 | * @param[in] parent A schema node to be examined if the mandatory child make it also mandatory. |
| 4351 | * @param[in] add Flag to distinguish adding the mandatory flag (new mandatory children appeared) or removing the flag |
| 4352 | * (mandatory children was removed). |
| 4353 | */ |
Radek Krejci | 1deb5be | 2020-08-26 16:43:36 +0200 | [diff] [blame] | 4354 | static void |
Radek Krejci | 857189e | 2020-09-01 13:26:36 +0200 | [diff] [blame] | 4355 | lys_compile_mandatory_parents(struct lysc_node *parent, ly_bool add) |
Radek Krejci | fe90963 | 2019-02-12 15:34:42 +0100 | [diff] [blame] | 4356 | { |
| 4357 | struct lysc_node *iter; |
| 4358 | |
| 4359 | if (add) { /* set flag */ |
Michal Vasko | d989ba0 | 2020-08-24 10:59:24 +0200 | [diff] [blame] | 4360 | for ( ; parent && parent->nodetype == LYS_CONTAINER && !(parent->flags & LYS_MAND_TRUE) && !(parent->flags & LYS_PRESENCE); |
Radek Krejci | fe90963 | 2019-02-12 15:34:42 +0100 | [diff] [blame] | 4361 | parent = parent->parent) { |
| 4362 | parent->flags |= LYS_MAND_TRUE; |
| 4363 | } |
| 4364 | } else { /* unset flag */ |
Michal Vasko | d989ba0 | 2020-08-24 10:59:24 +0200 | [diff] [blame] | 4365 | for ( ; parent && parent->nodetype == LYS_CONTAINER && (parent->flags & LYS_MAND_TRUE); parent = parent->parent) { |
Michal Vasko | 22df3f0 | 2020-08-24 13:29:22 +0200 | [diff] [blame] | 4366 | for (iter = (struct lysc_node *)lysc_node_children(parent, 0); iter; iter = iter->next) { |
Radek Krejci | f1421c2 | 2019-02-19 13:05:20 +0100 | [diff] [blame] | 4367 | if (iter->flags & LYS_MAND_TRUE) { |
Radek Krejci | fe90963 | 2019-02-12 15:34:42 +0100 | [diff] [blame] | 4368 | /* there is another mandatory node */ |
| 4369 | return; |
| 4370 | } |
| 4371 | } |
| 4372 | /* unset mandatory flag - there is no mandatory children in the non-presence container */ |
| 4373 | parent->flags &= ~LYS_MAND_TRUE; |
| 4374 | } |
| 4375 | } |
| 4376 | } |
| 4377 | |
Radek Krejci | 056d0a8 | 2018-12-06 16:57:25 +0100 | [diff] [blame] | 4378 | /** |
Radek Krejci | 3641f56 | 2019-02-13 15:38:40 +0100 | [diff] [blame] | 4379 | * @brief Compile the parsed augment connecting it into its target. |
| 4380 | * |
| 4381 | * It is expected that all the data referenced in path are present - augments are ordered so that augment B |
| 4382 | * targeting data from augment A is being compiled after augment A. Also the modules referenced in the path |
| 4383 | * are already implemented and compiled. |
| 4384 | * |
| 4385 | * @param[in] ctx Compile context. |
| 4386 | * @param[in] aug_p Parsed augment to compile. |
Michal Vasko | 7f45cf2 | 2020-10-01 12:49:44 +0200 | [diff] [blame] | 4387 | * @param[in] target Target node of the augment. |
Radek Krejci | 3641f56 | 2019-02-13 15:38:40 +0100 | [diff] [blame] | 4388 | * @return LY_SUCCESS on success. |
| 4389 | * @return LY_EVALID on failure. |
| 4390 | */ |
Michal Vasko | 7f45cf2 | 2020-10-01 12:49:44 +0200 | [diff] [blame] | 4391 | static LY_ERR |
| 4392 | lys_compile_augment(struct lysc_ctx *ctx, struct lysp_augment *aug_p, struct lysc_node *target) |
Radek Krejci | 3641f56 | 2019-02-13 15:38:40 +0100 | [diff] [blame] | 4393 | { |
Michal Vasko | 7f45cf2 | 2020-10-01 12:49:44 +0200 | [diff] [blame] | 4394 | LY_ERR ret = LY_SUCCESS; |
| 4395 | struct lysp_node *pnode; |
Radek Krejci | 3641f56 | 2019-02-13 15:38:40 +0100 | [diff] [blame] | 4396 | struct lysc_node *node; |
Radek Krejci | 3641f56 | 2019-02-13 15:38:40 +0100 | [diff] [blame] | 4397 | struct lysc_when **when, *when_shared; |
Radek Krejci | 857189e | 2020-09-01 13:26:36 +0200 | [diff] [blame] | 4398 | ly_bool allow_mandatory = 0; |
Michal Vasko | 7f45cf2 | 2020-10-01 12:49:44 +0200 | [diff] [blame] | 4399 | LY_ARRAY_COUNT_TYPE u; |
| 4400 | struct ly_set child_set = {0}; |
| 4401 | uint32_t i; |
Radek Krejci | 3641f56 | 2019-02-13 15:38:40 +0100 | [diff] [blame] | 4402 | |
Michal Vasko | 7f45cf2 | 2020-10-01 12:49:44 +0200 | [diff] [blame] | 4403 | if (!(target->nodetype & (LYS_CONTAINER | LYS_LIST | LYS_CHOICE | LYS_CASE | LYS_INPUT | LYS_OUTPUT | LYS_NOTIF))) { |
| 4404 | LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_REFERENCE, |
| 4405 | "Augment's %s-schema-nodeid \"%s\" refers to a %s node which is not an allowed augment's target.", |
| 4406 | aug_p->nodeid[0] == '/' ? "absolute" : "descendant", aug_p->nodeid, lys_nodetype2str(target->nodetype)); |
| 4407 | ret = LY_EVALID; |
| 4408 | goto cleanup; |
Radek Krejci | 3641f56 | 2019-02-13 15:38:40 +0100 | [diff] [blame] | 4409 | } |
| 4410 | |
| 4411 | /* check for mandatory nodes |
| 4412 | * - new cases augmenting some choice can have mandatory nodes |
| 4413 | * - mandatory nodes are allowed only in case the augmentation is made conditional with a when statement |
| 4414 | */ |
Radek Krejci | 733988a | 2019-02-15 15:12:44 +0100 | [diff] [blame] | 4415 | if (aug_p->when || target->nodetype == LYS_CHOICE || ctx->mod == target->module) { |
Radek Krejci | 3641f56 | 2019-02-13 15:38:40 +0100 | [diff] [blame] | 4416 | allow_mandatory = 1; |
| 4417 | } |
| 4418 | |
| 4419 | when_shared = NULL; |
Michal Vasko | 7f45cf2 | 2020-10-01 12:49:44 +0200 | [diff] [blame] | 4420 | LY_LIST_FOR(aug_p->child, pnode) { |
Radek Krejci | 3641f56 | 2019-02-13 15:38:40 +0100 | [diff] [blame] | 4421 | /* check if the subnode can be connected to the found target (e.g. case cannot be inserted into container) */ |
Michal Vasko | 7f45cf2 | 2020-10-01 12:49:44 +0200 | [diff] [blame] | 4422 | if ((pnode->nodetype == LYS_CASE && target->nodetype != LYS_CHOICE) |
| 4423 | || ((pnode->nodetype & (LYS_RPC | LYS_ACTION | LYS_NOTIF)) && !(target->nodetype & (LYS_CONTAINER | LYS_LIST))) |
| 4424 | || (pnode->nodetype == LYS_USES && target->nodetype == LYS_CHOICE)) { |
Radek Krejci | 3641f56 | 2019-02-13 15:38:40 +0100 | [diff] [blame] | 4425 | LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_REFERENCE, |
Radek Krejci | 327de16 | 2019-06-14 12:52:07 +0200 | [diff] [blame] | 4426 | "Invalid augment of %s node which is not allowed to contain %s node \"%s\".", |
Michal Vasko | 7f45cf2 | 2020-10-01 12:49:44 +0200 | [diff] [blame] | 4427 | lys_nodetype2str(target->nodetype), lys_nodetype2str(pnode->nodetype), pnode->name); |
| 4428 | ret = LY_EVALID; |
| 4429 | goto cleanup; |
Radek Krejci | 3641f56 | 2019-02-13 15:38:40 +0100 | [diff] [blame] | 4430 | } |
| 4431 | |
| 4432 | /* compile the children */ |
Michal Vasko | 20424b4 | 2020-08-31 12:29:38 +0200 | [diff] [blame] | 4433 | if (target->nodetype == LYS_CHOICE) { |
Michal Vasko | 7f45cf2 | 2020-10-01 12:49:44 +0200 | [diff] [blame] | 4434 | LY_CHECK_GOTO(ret = lys_compile_node_choice_child(ctx, pnode, target, &child_set), cleanup); |
Radek Krejci | 3641f56 | 2019-02-13 15:38:40 +0100 | [diff] [blame] | 4435 | } else { |
Michal Vasko | 7f45cf2 | 2020-10-01 12:49:44 +0200 | [diff] [blame] | 4436 | LY_CHECK_GOTO(ret = lys_compile_node(ctx, pnode, target, 0, &child_set), cleanup); |
Radek Krejci | 3641f56 | 2019-02-13 15:38:40 +0100 | [diff] [blame] | 4437 | } |
| 4438 | |
Michal Vasko | 7f45cf2 | 2020-10-01 12:49:44 +0200 | [diff] [blame] | 4439 | /* since the augment node is not present in the compiled tree, we need to pass some of its |
| 4440 | * statements to all its children */ |
| 4441 | for (i = 0; i < child_set.count; ++i) { |
| 4442 | node = child_set.snodes[i]; |
| 4443 | if (!allow_mandatory && (node->flags & LYS_CONFIG_W) && (node->flags & LYS_MAND_TRUE)) { |
| 4444 | node->flags &= ~LYS_MAND_TRUE; |
| 4445 | lys_compile_mandatory_parents(target, 0); |
| 4446 | LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SEMANTICS, |
| 4447 | "Invalid augment adding mandatory node \"%s\" without making it conditional via when statement.", node->name); |
| 4448 | ret = LY_EVALID; |
| 4449 | goto cleanup; |
Radek Krejci | 7c7783d | 2020-04-08 15:34:39 +0200 | [diff] [blame] | 4450 | } |
Radek Krejci | 3641f56 | 2019-02-13 15:38:40 +0100 | [diff] [blame] | 4451 | |
Michal Vasko | 7f45cf2 | 2020-10-01 12:49:44 +0200 | [diff] [blame] | 4452 | /* pass augment's when to all the children TODO this way even action and notif should have "when" (code below) */ |
| 4453 | if (aug_p->when) { |
| 4454 | LY_ARRAY_NEW_GOTO(ctx->ctx, node->when, when, ret, cleanup); |
| 4455 | if (!when_shared) { |
| 4456 | LY_CHECK_GOTO(ret = lys_compile_when(ctx, aug_p->when, aug_p->flags, target, when), cleanup); |
Radek Krejci | 3641f56 | 2019-02-13 15:38:40 +0100 | [diff] [blame] | 4457 | |
Michal Vasko | 7f45cf2 | 2020-10-01 12:49:44 +0200 | [diff] [blame] | 4458 | if (!(ctx->options & LYSC_OPT_GROUPING)) { |
| 4459 | /* do not check "when" semantics in a grouping */ |
| 4460 | LY_CHECK_GOTO(ret = ly_set_add(&ctx->xpath, node, 0, NULL), cleanup); |
| 4461 | } |
Michal Vasko | 175012e | 2019-11-06 15:49:14 +0100 | [diff] [blame] | 4462 | |
Michal Vasko | 7f45cf2 | 2020-10-01 12:49:44 +0200 | [diff] [blame] | 4463 | when_shared = *when; |
| 4464 | } else { |
| 4465 | ++when_shared->refcount; |
| 4466 | (*when) = when_shared; |
Michal Vasko | 175012e | 2019-11-06 15:49:14 +0100 | [diff] [blame] | 4467 | |
Michal Vasko | 7f45cf2 | 2020-10-01 12:49:44 +0200 | [diff] [blame] | 4468 | if (!(ctx->options & LYSC_OPT_GROUPING)) { |
| 4469 | /* in this case check "when" again for all children because of dummy node check */ |
| 4470 | LY_CHECK_GOTO(ret = ly_set_add(&ctx->xpath, node, 0, NULL), cleanup); |
| 4471 | } |
Michal Vasko | 5c4e589 | 2019-11-14 12:31:38 +0100 | [diff] [blame] | 4472 | } |
Radek Krejci | 3641f56 | 2019-02-13 15:38:40 +0100 | [diff] [blame] | 4473 | } |
| 4474 | } |
Michal Vasko | 7f45cf2 | 2020-10-01 12:49:44 +0200 | [diff] [blame] | 4475 | ly_set_erase(&child_set, NULL); |
Radek Krejci | 3641f56 | 2019-02-13 15:38:40 +0100 | [diff] [blame] | 4476 | } |
Radek Krejci | 6eeb58f | 2019-02-22 16:29:37 +0100 | [diff] [blame] | 4477 | |
| 4478 | switch (target->nodetype) { |
| 4479 | case LYS_CONTAINER: |
Michal Vasko | 7f45cf2 | 2020-10-01 12:49:44 +0200 | [diff] [blame] | 4480 | COMPILE_OP_ARRAY_GOTO(ctx, aug_p->actions, ((struct lysc_node_container *)target)->actions, target, |
| 4481 | u, lys_compile_action, 0, ret, cleanup); |
| 4482 | COMPILE_OP_ARRAY_GOTO(ctx, aug_p->notifs, ((struct lysc_node_container *)target)->notifs, target, |
| 4483 | u, lys_compile_notif, 0, ret, cleanup); |
Radek Krejci | 6eeb58f | 2019-02-22 16:29:37 +0100 | [diff] [blame] | 4484 | break; |
| 4485 | case LYS_LIST: |
Michal Vasko | 7f45cf2 | 2020-10-01 12:49:44 +0200 | [diff] [blame] | 4486 | COMPILE_OP_ARRAY_GOTO(ctx, aug_p->actions, ((struct lysc_node_list *)target)->actions, target, |
| 4487 | u, lys_compile_action, 0, ret, cleanup); |
| 4488 | COMPILE_OP_ARRAY_GOTO(ctx, aug_p->notifs, ((struct lysc_node_list *)target)->notifs, target, |
| 4489 | u, lys_compile_notif, 0, ret, cleanup); |
Radek Krejci | 6eeb58f | 2019-02-22 16:29:37 +0100 | [diff] [blame] | 4490 | break; |
| 4491 | default: |
| 4492 | if (aug_p->actions) { |
| 4493 | LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_REFERENCE, |
Radek Krejci | 327de16 | 2019-06-14 12:52:07 +0200 | [diff] [blame] | 4494 | "Invalid augment of %s node which is not allowed to contain RPC/action node \"%s\".", |
| 4495 | lys_nodetype2str(target->nodetype), aug_p->actions[0].name); |
Michal Vasko | 7f45cf2 | 2020-10-01 12:49:44 +0200 | [diff] [blame] | 4496 | ret = LY_EVALID; |
| 4497 | goto cleanup; |
Radek Krejci | 6eeb58f | 2019-02-22 16:29:37 +0100 | [diff] [blame] | 4498 | } |
| 4499 | if (aug_p->notifs) { |
| 4500 | LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_REFERENCE, |
Michal Vasko | a388136 | 2020-01-21 15:57:35 +0100 | [diff] [blame] | 4501 | "Invalid augment of %s node which is not allowed to contain notification node \"%s\".", |
Radek Krejci | 327de16 | 2019-06-14 12:52:07 +0200 | [diff] [blame] | 4502 | lys_nodetype2str(target->nodetype), aug_p->notifs[0].name); |
Michal Vasko | 7f45cf2 | 2020-10-01 12:49:44 +0200 | [diff] [blame] | 4503 | ret = LY_EVALID; |
| 4504 | goto cleanup; |
Radek Krejci | 6eeb58f | 2019-02-22 16:29:37 +0100 | [diff] [blame] | 4505 | } |
| 4506 | } |
Radek Krejci | 3641f56 | 2019-02-13 15:38:40 +0100 | [diff] [blame] | 4507 | |
Michal Vasko | 7f45cf2 | 2020-10-01 12:49:44 +0200 | [diff] [blame] | 4508 | cleanup: |
| 4509 | ly_set_erase(&child_set, NULL); |
Radek Krejci | 3641f56 | 2019-02-13 15:38:40 +0100 | [diff] [blame] | 4510 | return ret; |
| 4511 | } |
| 4512 | |
| 4513 | /** |
Michal Vasko | 601ddb3 | 2020-08-31 16:25:35 +0200 | [diff] [blame] | 4514 | * @brief Find grouping for a uses. |
Radek Krejci | e86bf77 | 2018-12-14 11:39:53 +0100 | [diff] [blame] | 4515 | * |
Michal Vasko | 601ddb3 | 2020-08-31 16:25:35 +0200 | [diff] [blame] | 4516 | * @param[in] ctx Compile context. |
| 4517 | * @param[in] uses_p Parsed uses node. |
| 4518 | * @param[out] gpr_p Found grouping on success. |
| 4519 | * @param[out] grp_mod Module of @p grp_p on success. |
| 4520 | * @return LY_ERR value. |
Radek Krejci | e86bf77 | 2018-12-14 11:39:53 +0100 | [diff] [blame] | 4521 | */ |
| 4522 | static LY_ERR |
Michal Vasko | 601ddb3 | 2020-08-31 16:25:35 +0200 | [diff] [blame] | 4523 | lys_compile_uses_find_grouping(struct lysc_ctx *ctx, struct lysp_node_uses *uses_p, struct lysp_grp **grp_p, |
| 4524 | struct lys_module **grp_mod) |
Radek Krejci | e86bf77 | 2018-12-14 11:39:53 +0100 | [diff] [blame] | 4525 | { |
Michal Vasko | 7f45cf2 | 2020-10-01 12:49:44 +0200 | [diff] [blame] | 4526 | struct lysp_node *pnode; |
Michal Vasko | 601ddb3 | 2020-08-31 16:25:35 +0200 | [diff] [blame] | 4527 | struct lysp_grp *grp; |
Michal Vasko | fd69e1d | 2020-07-03 11:57:17 +0200 | [diff] [blame] | 4528 | LY_ARRAY_COUNT_TYPE u, v; |
Radek Krejci | 857189e | 2020-09-01 13:26:36 +0200 | [diff] [blame] | 4529 | ly_bool found = 0; |
Radek Krejci | e86bf77 | 2018-12-14 11:39:53 +0100 | [diff] [blame] | 4530 | const char *id, *name, *prefix; |
| 4531 | size_t prefix_len, name_len; |
Michal Vasko | 601ddb3 | 2020-08-31 16:25:35 +0200 | [diff] [blame] | 4532 | struct lys_module *mod; |
| 4533 | |
| 4534 | *grp_p = NULL; |
| 4535 | *grp_mod = NULL; |
Radek Krejci | e86bf77 | 2018-12-14 11:39:53 +0100 | [diff] [blame] | 4536 | |
| 4537 | /* search for the grouping definition */ |
Radek Krejci | e86bf77 | 2018-12-14 11:39:53 +0100 | [diff] [blame] | 4538 | id = uses_p->name; |
Radek Krejci | b4a4a27 | 2019-06-10 12:44:52 +0200 | [diff] [blame] | 4539 | LY_CHECK_RET(ly_parse_nodeid(&id, &prefix, &prefix_len, &name, &name_len), LY_EVALID); |
Radek Krejci | e86bf77 | 2018-12-14 11:39:53 +0100 | [diff] [blame] | 4540 | if (prefix) { |
| 4541 | mod = lys_module_find_prefix(ctx->mod_def, prefix, prefix_len); |
| 4542 | if (!mod) { |
| 4543 | LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_REFERENCE, |
Radek Krejci | 327de16 | 2019-06-14 12:52:07 +0200 | [diff] [blame] | 4544 | "Invalid prefix used for grouping reference.", uses_p->name); |
Radek Krejci | e86bf77 | 2018-12-14 11:39:53 +0100 | [diff] [blame] | 4545 | return LY_EVALID; |
| 4546 | } |
| 4547 | } else { |
| 4548 | mod = ctx->mod_def; |
| 4549 | } |
| 4550 | if (mod == ctx->mod_def) { |
Michal Vasko | 7f45cf2 | 2020-10-01 12:49:44 +0200 | [diff] [blame] | 4551 | for (pnode = uses_p->parent; !found && pnode; pnode = pnode->parent) { |
| 4552 | grp = (struct lysp_grp *)lysp_node_groupings(pnode); |
Radek Krejci | e86bf77 | 2018-12-14 11:39:53 +0100 | [diff] [blame] | 4553 | LY_ARRAY_FOR(grp, u) { |
| 4554 | if (!strcmp(grp[u].name, name)) { |
| 4555 | grp = &grp[u]; |
| 4556 | found = 1; |
| 4557 | break; |
| 4558 | } |
| 4559 | } |
| 4560 | } |
| 4561 | } |
| 4562 | if (!found) { |
Radek Krejci | 76b3e96 | 2018-12-14 17:01:25 +0100 | [diff] [blame] | 4563 | /* search in top-level groupings of the main module ... */ |
Radek Krejci | e86bf77 | 2018-12-14 11:39:53 +0100 | [diff] [blame] | 4564 | grp = mod->parsed->groupings; |
Michal Vasko | 601ddb3 | 2020-08-31 16:25:35 +0200 | [diff] [blame] | 4565 | LY_ARRAY_FOR(grp, u) { |
| 4566 | if (!strcmp(grp[u].name, name)) { |
| 4567 | grp = &grp[u]; |
| 4568 | found = 1; |
| 4569 | break; |
Radek Krejci | 76b3e96 | 2018-12-14 17:01:25 +0100 | [diff] [blame] | 4570 | } |
| 4571 | } |
Michal Vasko | 601ddb3 | 2020-08-31 16:25:35 +0200 | [diff] [blame] | 4572 | if (!found) { |
Radek Krejci | 76b3e96 | 2018-12-14 17:01:25 +0100 | [diff] [blame] | 4573 | /* ... and all the submodules */ |
Michal Vasko | 601ddb3 | 2020-08-31 16:25:35 +0200 | [diff] [blame] | 4574 | LY_ARRAY_FOR(mod->parsed->includes, u) { |
Radek Krejci | 76b3e96 | 2018-12-14 17:01:25 +0100 | [diff] [blame] | 4575 | grp = mod->parsed->includes[u].submodule->groupings; |
Michal Vasko | 601ddb3 | 2020-08-31 16:25:35 +0200 | [diff] [blame] | 4576 | LY_ARRAY_FOR(grp, v) { |
| 4577 | if (!strcmp(grp[v].name, name)) { |
| 4578 | grp = &grp[v]; |
| 4579 | found = 1; |
| 4580 | break; |
Radek Krejci | 76b3e96 | 2018-12-14 17:01:25 +0100 | [diff] [blame] | 4581 | } |
| 4582 | } |
Michal Vasko | 601ddb3 | 2020-08-31 16:25:35 +0200 | [diff] [blame] | 4583 | if (found) { |
| 4584 | break; |
| 4585 | } |
Radek Krejci | e86bf77 | 2018-12-14 11:39:53 +0100 | [diff] [blame] | 4586 | } |
| 4587 | } |
| 4588 | } |
| 4589 | if (!found) { |
| 4590 | LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SEMANTICS, |
| 4591 | "Grouping \"%s\" referenced by a uses statement not found.", uses_p->name); |
| 4592 | return LY_EVALID; |
| 4593 | } |
| 4594 | |
Radek Krejci | f2de0ed | 2019-05-02 14:13:18 +0200 | [diff] [blame] | 4595 | if (!(ctx->options & LYSC_OPT_GROUPING)) { |
| 4596 | /* remember that the grouping is instantiated to avoid its standalone validation */ |
| 4597 | grp->flags |= LYS_USED_GRP; |
| 4598 | } |
Radek Krejci | e86bf77 | 2018-12-14 11:39:53 +0100 | [diff] [blame] | 4599 | |
Michal Vasko | 601ddb3 | 2020-08-31 16:25:35 +0200 | [diff] [blame] | 4600 | *grp_p = grp; |
| 4601 | *grp_mod = mod; |
| 4602 | return LY_SUCCESS; |
| 4603 | } |
Radek Krejci | e86bf77 | 2018-12-14 11:39:53 +0100 | [diff] [blame] | 4604 | |
Michal Vasko | 7f45cf2 | 2020-10-01 12:49:44 +0200 | [diff] [blame] | 4605 | static const struct lys_module *lys_schema_node_get_module(const struct ly_ctx *ctx, const char *nametest, |
| 4606 | size_t nametest_len, const struct lys_module *local_mod, const char **name, size_t *name_len); |
| 4607 | |
Michal Vasko | 601ddb3 | 2020-08-31 16:25:35 +0200 | [diff] [blame] | 4608 | static LY_ERR |
Michal Vasko | 7f45cf2 | 2020-10-01 12:49:44 +0200 | [diff] [blame] | 4609 | lys_nodeid_check(struct lysc_ctx *ctx, const char *nodeid, ly_bool abs, struct lys_module **target_mod, |
| 4610 | struct lyxp_expr **expr) |
Michal Vasko | 601ddb3 | 2020-08-31 16:25:35 +0200 | [diff] [blame] | 4611 | { |
Michal Vasko | 601ddb3 | 2020-08-31 16:25:35 +0200 | [diff] [blame] | 4612 | LY_ERR ret = LY_SUCCESS; |
Michal Vasko | 7f45cf2 | 2020-10-01 12:49:44 +0200 | [diff] [blame] | 4613 | struct lyxp_expr *e = NULL; |
| 4614 | struct lys_module *tmod = NULL, *mod; |
| 4615 | const char *nodeid_type = abs ? "absolute-schema-nodeid" : "descendant-schema-nodeid"; |
| 4616 | uint32_t i; |
Radek Krejci | e86bf77 | 2018-12-14 11:39:53 +0100 | [diff] [blame] | 4617 | |
Michal Vasko | 7f45cf2 | 2020-10-01 12:49:44 +0200 | [diff] [blame] | 4618 | /* parse */ |
| 4619 | ret = lyxp_expr_parse(ctx->ctx, nodeid, strlen(nodeid), 0, &e); |
| 4620 | if (ret) { |
| 4621 | LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SYNTAX_YANG, "Invalid %s value \"%s\" - invalid syntax.", |
| 4622 | nodeid_type, nodeid); |
| 4623 | ret = LY_EVALID; |
| 4624 | goto cleanup; |
Radek Krejci | 01342af | 2019-01-03 15:18:08 +0100 | [diff] [blame] | 4625 | } |
Radek Krejci | e86bf77 | 2018-12-14 11:39:53 +0100 | [diff] [blame] | 4626 | |
Michal Vasko | 7f45cf2 | 2020-10-01 12:49:44 +0200 | [diff] [blame] | 4627 | if (abs) { |
| 4628 | /* absolute schema nodeid */ |
| 4629 | i = 0; |
| 4630 | } else { |
| 4631 | /* descendant schema nodeid */ |
| 4632 | if (e->tokens[0] != LYXP_TOKEN_NAMETEST) { |
| 4633 | LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_REFERENCE, "Invalid %s value \"%s\" - name test expected instead of \"%.*s\".", |
| 4634 | nodeid_type, nodeid, e->tok_len[0], e->expr + e->tok_pos[0]); |
Michal Vasko | 20424b4 | 2020-08-31 12:29:38 +0200 | [diff] [blame] | 4635 | ret = LY_EVALID; |
Radek Krejci | fc11bd7 | 2019-04-11 16:00:05 +0200 | [diff] [blame] | 4636 | goto cleanup; |
Radek Krejci | f2271f1 | 2019-01-07 16:42:23 +0100 | [diff] [blame] | 4637 | } |
Michal Vasko | 7f45cf2 | 2020-10-01 12:49:44 +0200 | [diff] [blame] | 4638 | i = 1; |
| 4639 | } |
Radek Krejci | f2271f1 | 2019-01-07 16:42:23 +0100 | [diff] [blame] | 4640 | |
Michal Vasko | 7f45cf2 | 2020-10-01 12:49:44 +0200 | [diff] [blame] | 4641 | /* check all the tokens */ |
| 4642 | for ( ; i < e->used; i += 2) { |
| 4643 | if (e->tokens[i] != LYXP_TOKEN_OPER_PATH) { |
| 4644 | LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_REFERENCE, "Invalid %s value \"%s\" - \"/\" expected instead of \"%.*s\".", |
| 4645 | nodeid_type, nodeid, e->tok_len[i], e->expr + e->tok_pos[i]); |
| 4646 | ret = LY_EVALID; |
| 4647 | goto cleanup; |
| 4648 | } else if (e->used == i + 1) { |
| 4649 | LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_REFERENCE, |
| 4650 | "Invalid %s value \"%s\" - unexpected end of expression.", nodeid_type, e->expr); |
| 4651 | ret = LY_EVALID; |
| 4652 | goto cleanup; |
| 4653 | } else if (e->tokens[i + 1] != LYXP_TOKEN_NAMETEST) { |
| 4654 | LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_REFERENCE, "Invalid %s value \"%s\" - name test expected instead of \"%.*s\".", |
| 4655 | nodeid_type, nodeid, e->tok_len[i + 1], e->expr + e->tok_pos[i + 1]); |
| 4656 | ret = LY_EVALID; |
| 4657 | goto cleanup; |
| 4658 | } else if (abs) { |
| 4659 | mod = (struct lys_module *)lys_schema_node_get_module(ctx->ctx, e->expr + e->tok_pos[i + 1], |
| 4660 | e->tok_len[i + 1], ctx->mod_def, NULL, NULL); |
| 4661 | LY_CHECK_ERR_GOTO(!mod, ret = LY_EVALID, cleanup); |
| 4662 | |
| 4663 | /* only keep the first module */ |
| 4664 | if (!tmod) { |
| 4665 | tmod = mod; |
Radek Krejci | f2271f1 | 2019-01-07 16:42:23 +0100 | [diff] [blame] | 4666 | } |
Michal Vasko | 7f45cf2 | 2020-10-01 12:49:44 +0200 | [diff] [blame] | 4667 | |
| 4668 | /* all the modules must be implemented */ |
| 4669 | if (!mod->implemented) { |
| 4670 | ret = lys_set_implemented_internal(mod, ctx->ctx->module_set_id); |
| 4671 | LY_CHECK_GOTO(ret, cleanup); |
| 4672 | } |
| 4673 | } |
| 4674 | } |
| 4675 | |
| 4676 | cleanup: |
| 4677 | if (ret || !expr) { |
| 4678 | lyxp_expr_free(ctx->ctx, e); |
| 4679 | e = NULL; |
| 4680 | } |
| 4681 | if (expr) { |
| 4682 | *expr = ret ? NULL : e; |
| 4683 | } |
| 4684 | if (target_mod) { |
| 4685 | *target_mod = ret ? NULL : tmod; |
| 4686 | } |
| 4687 | return ret; |
| 4688 | } |
| 4689 | |
| 4690 | /** |
| 4691 | * @brief Check whether 2 schema nodeids match. |
| 4692 | * |
| 4693 | * @param[in] ctx libyang context. |
| 4694 | * @param[in] exp1 First schema nodeid. |
| 4695 | * @param[in] exp1_mod Module of @p exp1 nodes without any prefix. |
| 4696 | * @param[in] exp2 Second schema nodeid. |
| 4697 | * @param[in] exp2_mod Module of @p exp2 nodes without any prefix. |
| 4698 | * @return Whether the schema nodeids match or not. |
| 4699 | */ |
| 4700 | static ly_bool |
| 4701 | lys_abs_schema_nodeid_match(const struct ly_ctx *ctx, const struct lyxp_expr *exp1, const struct lys_module *exp1_mod, |
| 4702 | const struct lyxp_expr *exp2, const struct lys_module *exp2_mod) |
| 4703 | { |
| 4704 | uint32_t i; |
| 4705 | const struct lys_module *mod1, *mod2; |
| 4706 | const char *name1, *name2; |
| 4707 | size_t name1_len, name2_len; |
| 4708 | |
| 4709 | if (exp1->used != exp2->used) { |
| 4710 | return 0; |
| 4711 | } |
| 4712 | |
| 4713 | for (i = 0; i < exp1->used; ++i) { |
| 4714 | assert(exp1->tokens[i] == exp2->tokens[i]); |
| 4715 | |
| 4716 | if (exp1->tokens[i] == LYXP_TOKEN_NAMETEST) { |
| 4717 | /* check modules of all the nodes in the node ID */ |
| 4718 | mod1 = lys_schema_node_get_module(ctx, exp1->expr + exp1->tok_pos[i], exp1->tok_len[i], exp1_mod, |
| 4719 | &name1, &name1_len); |
| 4720 | assert(mod1); |
| 4721 | mod2 = lys_schema_node_get_module(ctx, exp2->expr + exp2->tok_pos[i], exp2->tok_len[i], exp2_mod, |
| 4722 | &name2, &name2_len); |
| 4723 | assert(mod2); |
| 4724 | |
| 4725 | /* compare modules */ |
| 4726 | if (mod1 != mod2) { |
| 4727 | return 0; |
| 4728 | } |
| 4729 | |
| 4730 | /* compare names */ |
| 4731 | if ((name1_len != name2_len) || strncmp(name1, name2, name1_len)) { |
| 4732 | return 0; |
| 4733 | } |
| 4734 | } |
| 4735 | } |
| 4736 | |
| 4737 | return 1; |
| 4738 | } |
| 4739 | |
| 4740 | /** |
| 4741 | * @brief Prepare any uses augments and refines in the context to be applied during uses descendant node compilation. |
| 4742 | * |
| 4743 | * @param[in] ctx Compile context. |
| 4744 | * @param[in] uses_p Parsed uses structure with augments and refines. |
| 4745 | * @param[in] ctx_node Context node of @p uses_p meaning its first data definiition parent. |
| 4746 | * @return LY_ERR value. |
| 4747 | */ |
| 4748 | static LY_ERR |
| 4749 | lys_precompile_uses_augments_refines(struct lysc_ctx *ctx, struct lysp_node_uses *uses_p, const struct lysc_node *ctx_node) |
| 4750 | { |
| 4751 | LY_ERR ret = LY_SUCCESS; |
| 4752 | LY_ARRAY_COUNT_TYPE u; |
| 4753 | struct lyxp_expr *exp = NULL; |
| 4754 | struct lysc_augment *aug; |
| 4755 | struct lysc_refine *rfn; |
| 4756 | struct lysp_refine **new_rfn; |
| 4757 | uint32_t i; |
| 4758 | |
| 4759 | LY_ARRAY_FOR(uses_p->augments, u) { |
| 4760 | lysc_update_path(ctx, NULL, "{augment}"); |
| 4761 | lysc_update_path(ctx, NULL, uses_p->augments[u].nodeid); |
| 4762 | |
| 4763 | /* parse the nodeid */ |
| 4764 | LY_CHECK_GOTO(ret = lys_nodeid_check(ctx, uses_p->augments[u].nodeid, 0, NULL, &exp), cleanup); |
| 4765 | |
| 4766 | /* allocate new compiled augment and store it in the set */ |
| 4767 | aug = calloc(1, sizeof *aug); |
| 4768 | LY_CHECK_ERR_GOTO(!aug, LOGMEM(ctx->ctx); ret = LY_EMEM, cleanup); |
| 4769 | LY_CHECK_GOTO(ret = ly_set_add(&ctx->uses_augs, aug, LY_SET_OPT_USEASLIST, NULL), cleanup); |
| 4770 | |
| 4771 | aug->nodeid = exp; |
| 4772 | exp = NULL; |
| 4773 | aug->nodeid_ctx_node = ctx_node; |
| 4774 | aug->aug_p = &uses_p->augments[u]; |
| 4775 | |
| 4776 | lysc_update_path(ctx, NULL, NULL); |
| 4777 | lysc_update_path(ctx, NULL, NULL); |
| 4778 | } |
| 4779 | |
| 4780 | LY_ARRAY_FOR(uses_p->refines, u) { |
| 4781 | lysc_update_path(ctx, NULL, "{refine}"); |
| 4782 | lysc_update_path(ctx, NULL, uses_p->refines[u].nodeid); |
| 4783 | |
| 4784 | /* parse the nodeid */ |
| 4785 | LY_CHECK_GOTO(ret = lys_nodeid_check(ctx, uses_p->refines[u].nodeid, 0, NULL, &exp), cleanup); |
| 4786 | |
| 4787 | /* try to find the node in already compiled refines */ |
| 4788 | rfn = NULL; |
| 4789 | for (i = 0; i < ctx->uses_rfns.count; ++i) { |
| 4790 | if (lys_abs_schema_nodeid_match(ctx->ctx, exp, ctx->mod_def, ((struct lysc_refine *)ctx->uses_rfns.objs[i])->nodeid, |
| 4791 | ctx->mod_def)) { |
| 4792 | rfn = ctx->uses_rfns.objs[i]; |
| 4793 | break; |
Radek Krejci | f2271f1 | 2019-01-07 16:42:23 +0100 | [diff] [blame] | 4794 | } |
| 4795 | } |
Michal Vasko | 601ddb3 | 2020-08-31 16:25:35 +0200 | [diff] [blame] | 4796 | |
Michal Vasko | 7f45cf2 | 2020-10-01 12:49:44 +0200 | [diff] [blame] | 4797 | if (!rfn) { |
| 4798 | /* allocate new compiled refine */ |
| 4799 | rfn = calloc(1, sizeof *rfn); |
| 4800 | LY_CHECK_ERR_GOTO(!rfn, LOGMEM(ctx->ctx); ret = LY_EMEM, cleanup); |
| 4801 | LY_CHECK_GOTO(ret = ly_set_add(&ctx->uses_rfns, rfn, LY_SET_OPT_USEASLIST, NULL), cleanup); |
| 4802 | |
| 4803 | rfn->nodeid = exp; |
| 4804 | exp = NULL; |
| 4805 | rfn->nodeid_ctx_node = ctx_node; |
| 4806 | } else { |
| 4807 | /* just free exp */ |
| 4808 | lyxp_expr_free(ctx->ctx, exp); |
| 4809 | exp = NULL; |
| 4810 | } |
| 4811 | |
| 4812 | /* add new parsed refine structure */ |
| 4813 | LY_ARRAY_NEW_GOTO(ctx->ctx, rfn->rfns, new_rfn, ret, cleanup); |
| 4814 | *new_rfn = &uses_p->refines[u]; |
| 4815 | |
| 4816 | lysc_update_path(ctx, NULL, NULL); |
Michal Vasko | 601ddb3 | 2020-08-31 16:25:35 +0200 | [diff] [blame] | 4817 | lysc_update_path(ctx, NULL, NULL); |
Radek Krejci | f2271f1 | 2019-01-07 16:42:23 +0100 | [diff] [blame] | 4818 | } |
| 4819 | |
Michal Vasko | 601ddb3 | 2020-08-31 16:25:35 +0200 | [diff] [blame] | 4820 | cleanup: |
Michal Vasko | 7f45cf2 | 2020-10-01 12:49:44 +0200 | [diff] [blame] | 4821 | lyxp_expr_free(ctx->ctx, exp); |
Michal Vasko | 601ddb3 | 2020-08-31 16:25:35 +0200 | [diff] [blame] | 4822 | return ret; |
| 4823 | } |
| 4824 | |
| 4825 | /** |
| 4826 | * @brief Compile parsed uses statement - resolve target grouping and connect its content into parent. |
| 4827 | * If present, also apply uses's modificators. |
| 4828 | * |
| 4829 | * @param[in] ctx Compile context |
| 4830 | * @param[in] uses_p Parsed uses schema node. |
| 4831 | * @param[in] parent Compiled parent node where the content of the referenced grouping is supposed to be connected. It is |
| 4832 | * NULL for top-level nodes, in such a case the module where the node will be connected is taken from |
| 4833 | * the compile context. |
| 4834 | * @return LY_ERR value - LY_SUCCESS or LY_EVALID. |
| 4835 | */ |
| 4836 | static LY_ERR |
Michal Vasko | 7f45cf2 | 2020-10-01 12:49:44 +0200 | [diff] [blame] | 4837 | lys_compile_uses(struct lysc_ctx *ctx, struct lysp_node_uses *uses_p, struct lysc_node *parent, struct ly_set *child_set) |
Michal Vasko | 601ddb3 | 2020-08-31 16:25:35 +0200 | [diff] [blame] | 4838 | { |
Michal Vasko | 7f45cf2 | 2020-10-01 12:49:44 +0200 | [diff] [blame] | 4839 | struct lysp_node *pnode; |
| 4840 | struct lysc_node *child; |
Michal Vasko | 601ddb3 | 2020-08-31 16:25:35 +0200 | [diff] [blame] | 4841 | struct lysp_grp *grp = NULL; |
Michal Vasko | 7f45cf2 | 2020-10-01 12:49:44 +0200 | [diff] [blame] | 4842 | uint32_t i, grp_stack_count; |
Michal Vasko | af70245 | 2020-10-02 09:02:55 +0200 | [diff] [blame^] | 4843 | struct lys_module *grp_mod, *mod_old = ctx->mod_def; |
Michal Vasko | 601ddb3 | 2020-08-31 16:25:35 +0200 | [diff] [blame] | 4844 | LY_ERR ret = LY_SUCCESS; |
| 4845 | struct lysc_when **when, *when_shared; |
Michal Vasko | 7f45cf2 | 2020-10-01 12:49:44 +0200 | [diff] [blame] | 4846 | LY_ARRAY_COUNT_TYPE u; |
Michal Vasko | 601ddb3 | 2020-08-31 16:25:35 +0200 | [diff] [blame] | 4847 | struct lysc_notif **notifs = NULL; |
| 4848 | struct lysc_action **actions = NULL; |
Michal Vasko | 7f45cf2 | 2020-10-01 12:49:44 +0200 | [diff] [blame] | 4849 | struct ly_set uses_child_set = {0}; |
Michal Vasko | 601ddb3 | 2020-08-31 16:25:35 +0200 | [diff] [blame] | 4850 | |
| 4851 | /* find the referenced grouping */ |
| 4852 | LY_CHECK_RET(lys_compile_uses_find_grouping(ctx, uses_p, &grp, &grp_mod)); |
| 4853 | |
| 4854 | /* grouping must not reference themselves - stack in ctx maintains list of groupings currently being applied */ |
| 4855 | grp_stack_count = ctx->groupings.count; |
| 4856 | LY_CHECK_RET(ly_set_add(&ctx->groupings, (void *)grp, 0, NULL)); |
| 4857 | if (grp_stack_count == ctx->groupings.count) { |
| 4858 | /* the target grouping is already in the stack, so we are already inside it -> circular dependency */ |
| 4859 | LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_REFERENCE, |
| 4860 | "Grouping \"%s\" references itself through a uses statement.", grp->name); |
| 4861 | return LY_EVALID; |
| 4862 | } |
| 4863 | |
Michal Vasko | 7f45cf2 | 2020-10-01 12:49:44 +0200 | [diff] [blame] | 4864 | /* check status */ |
| 4865 | ret = lysc_check_status(ctx, uses_p->flags, ctx->mod_def, uses_p->name, grp->flags, grp_mod, grp->name); |
| 4866 | LY_CHECK_GOTO(ret, cleanup); |
| 4867 | |
| 4868 | /* compile any augments and refines so they can be applied during the grouping nodes compilation */ |
| 4869 | ret = lys_precompile_uses_augments_refines(ctx, uses_p, parent); |
| 4870 | LY_CHECK_GOTO(ret, cleanup); |
| 4871 | |
Michal Vasko | 601ddb3 | 2020-08-31 16:25:35 +0200 | [diff] [blame] | 4872 | /* switch context's mod_def */ |
Michal Vasko | 601ddb3 | 2020-08-31 16:25:35 +0200 | [diff] [blame] | 4873 | ctx->mod_def = grp_mod; |
| 4874 | |
Michal Vasko | 601ddb3 | 2020-08-31 16:25:35 +0200 | [diff] [blame] | 4875 | /* compile data nodes */ |
Michal Vasko | 7f45cf2 | 2020-10-01 12:49:44 +0200 | [diff] [blame] | 4876 | LY_LIST_FOR(grp->data, pnode) { |
Michal Vasko | 601ddb3 | 2020-08-31 16:25:35 +0200 | [diff] [blame] | 4877 | /* 0x3 in uses_status is a special bits combination to be able to detect status flags from uses */ |
Michal Vasko | 7f45cf2 | 2020-10-01 12:49:44 +0200 | [diff] [blame] | 4878 | ret = lys_compile_node(ctx, pnode, parent, (uses_p->flags & LYS_STATUS_MASK) | 0x3, &uses_child_set); |
Michal Vasko | 601ddb3 | 2020-08-31 16:25:35 +0200 | [diff] [blame] | 4879 | LY_CHECK_GOTO(ret, cleanup); |
| 4880 | } |
| 4881 | |
Michal Vasko | 7f45cf2 | 2020-10-01 12:49:44 +0200 | [diff] [blame] | 4882 | if (child_set) { |
| 4883 | /* add these children to our compiled child_set as well since uses is a schema-only node */ |
| 4884 | LY_CHECK_GOTO(ret = ly_set_merge(child_set, &uses_child_set, LY_SET_OPT_USEASLIST, NULL), cleanup); |
Michal Vasko | 601ddb3 | 2020-08-31 16:25:35 +0200 | [diff] [blame] | 4885 | } |
| 4886 | |
Michal Vasko | 7f45cf2 | 2020-10-01 12:49:44 +0200 | [diff] [blame] | 4887 | if (uses_p->when) { |
Michal Vasko | 601ddb3 | 2020-08-31 16:25:35 +0200 | [diff] [blame] | 4888 | /* pass uses's when to all the data children, actions and notifications are ignored */ |
Michal Vasko | 7f45cf2 | 2020-10-01 12:49:44 +0200 | [diff] [blame] | 4889 | when_shared = NULL; |
| 4890 | for (i = 0; i < uses_child_set.count; ++i) { |
| 4891 | child = uses_child_set.snodes[i]; |
| 4892 | |
| 4893 | LY_ARRAY_NEW_GOTO(ctx->ctx, child->when, when, ret, cleanup); |
Michal Vasko | 601ddb3 | 2020-08-31 16:25:35 +0200 | [diff] [blame] | 4894 | if (!when_shared) { |
| 4895 | ret = lys_compile_when(ctx, uses_p->when, uses_p->flags, parent, when); |
| 4896 | LY_CHECK_GOTO(ret, cleanup); |
| 4897 | |
| 4898 | if (!(ctx->options & LYSC_OPT_GROUPING)) { |
| 4899 | /* do not check "when" semantics in a grouping */ |
Michal Vasko | 7f45cf2 | 2020-10-01 12:49:44 +0200 | [diff] [blame] | 4900 | ret = ly_set_add(&ctx->xpath, child, 0, NULL); |
Michal Vasko | 601ddb3 | 2020-08-31 16:25:35 +0200 | [diff] [blame] | 4901 | LY_CHECK_GOTO(ret, cleanup); |
| 4902 | } |
| 4903 | |
| 4904 | when_shared = *when; |
| 4905 | } else { |
| 4906 | ++when_shared->refcount; |
| 4907 | (*when) = when_shared; |
| 4908 | |
| 4909 | if (!(ctx->options & LYSC_OPT_GROUPING)) { |
| 4910 | /* in this case check "when" again for all children because of dummy node check */ |
Michal Vasko | 7f45cf2 | 2020-10-01 12:49:44 +0200 | [diff] [blame] | 4911 | ret = ly_set_add(&ctx->xpath, child, 0, NULL); |
Michal Vasko | 601ddb3 | 2020-08-31 16:25:35 +0200 | [diff] [blame] | 4912 | LY_CHECK_GOTO(ret, cleanup); |
| 4913 | } |
| 4914 | } |
| 4915 | } |
| 4916 | } |
| 4917 | |
| 4918 | /* compile actions */ |
Michal Vasko | 7f45cf2 | 2020-10-01 12:49:44 +0200 | [diff] [blame] | 4919 | if (grp->actions) { |
| 4920 | actions = parent ? lysc_node_actions_p(parent) : &ctx->mod->compiled->rpcs; |
| 4921 | if (!actions) { |
| 4922 | LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_REFERENCE, "Invalid child %s \"%s\" of uses parent %s \"%s\" node.", |
| 4923 | grp->actions[0].name, lys_nodetype2str(grp->actions[0].nodetype), parent->name, |
| 4924 | lys_nodetype2str(parent->nodetype)); |
| 4925 | ret = LY_EVALID; |
| 4926 | goto cleanup; |
Michal Vasko | 601ddb3 | 2020-08-31 16:25:35 +0200 | [diff] [blame] | 4927 | } |
Michal Vasko | 7f45cf2 | 2020-10-01 12:49:44 +0200 | [diff] [blame] | 4928 | COMPILE_OP_ARRAY_GOTO(ctx, grp->actions, *actions, parent, u, lys_compile_action, 0, ret, cleanup); |
Michal Vasko | 601ddb3 | 2020-08-31 16:25:35 +0200 | [diff] [blame] | 4929 | } |
| 4930 | |
| 4931 | /* compile notifications */ |
Michal Vasko | 7f45cf2 | 2020-10-01 12:49:44 +0200 | [diff] [blame] | 4932 | if (grp->notifs) { |
| 4933 | notifs = parent ? lysc_node_notifs_p(parent) : &ctx->mod->compiled->notifs; |
| 4934 | if (!notifs) { |
| 4935 | LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_REFERENCE, "Invalid child %s \"%s\" of uses parent %s \"%s\" node.", |
| 4936 | grp->notifs[0].name, lys_nodetype2str(grp->notifs[0].nodetype), parent->name, |
| 4937 | lys_nodetype2str(parent->nodetype)); |
| 4938 | ret = LY_EVALID; |
| 4939 | goto cleanup; |
Michal Vasko | 601ddb3 | 2020-08-31 16:25:35 +0200 | [diff] [blame] | 4940 | } |
Michal Vasko | 7f45cf2 | 2020-10-01 12:49:44 +0200 | [diff] [blame] | 4941 | COMPILE_OP_ARRAY_GOTO(ctx, grp->notifs, *notifs, parent, u, lys_compile_notif, 0, ret, cleanup); |
Michal Vasko | 601ddb3 | 2020-08-31 16:25:35 +0200 | [diff] [blame] | 4942 | } |
| 4943 | |
Michal Vasko | 7f45cf2 | 2020-10-01 12:49:44 +0200 | [diff] [blame] | 4944 | /* check that all augments were applied */ |
| 4945 | for (i = 0; i < ctx->uses_augs.count; ++i) { |
| 4946 | LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_REFERENCE, |
| 4947 | "Augment target node \"%s\" in grouping \"%s\" was not found.", |
| 4948 | ((struct lysc_augment *)ctx->uses_augs.objs[i])->nodeid->expr, grp->name); |
| 4949 | ret = LY_ENOTFOUND; |
Michal Vasko | 601ddb3 | 2020-08-31 16:25:35 +0200 | [diff] [blame] | 4950 | } |
Michal Vasko | 601ddb3 | 2020-08-31 16:25:35 +0200 | [diff] [blame] | 4951 | LY_CHECK_GOTO(ret, cleanup); |
| 4952 | |
Michal Vasko | 7f45cf2 | 2020-10-01 12:49:44 +0200 | [diff] [blame] | 4953 | /* check that all refines were applied */ |
| 4954 | for (i = 0; i < ctx->uses_rfns.count; ++i) { |
| 4955 | LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_REFERENCE, |
| 4956 | "Refine(s) target node \"%s\" in grouping \"%s\" was not found.", |
| 4957 | ((struct lysc_refine *)ctx->uses_rfns.objs[i])->nodeid->expr, grp->name); |
| 4958 | ret = LY_ENOTFOUND; |
Radek Krejci | c6b4f44 | 2020-08-12 14:45:18 +0200 | [diff] [blame] | 4959 | } |
Michal Vasko | 7f45cf2 | 2020-10-01 12:49:44 +0200 | [diff] [blame] | 4960 | LY_CHECK_GOTO(ret, cleanup); |
Radek Krejci | fc11bd7 | 2019-04-11 16:00:05 +0200 | [diff] [blame] | 4961 | |
| 4962 | cleanup: |
Radek Krejci | e86bf77 | 2018-12-14 11:39:53 +0100 | [diff] [blame] | 4963 | /* reload previous context's mod_def */ |
| 4964 | ctx->mod_def = mod_old; |
Michal Vasko | 7f45cf2 | 2020-10-01 12:49:44 +0200 | [diff] [blame] | 4965 | |
Radek Krejci | e86bf77 | 2018-12-14 11:39:53 +0100 | [diff] [blame] | 4966 | /* remove the grouping from the stack for circular groupings dependency check */ |
| 4967 | ly_set_rm_index(&ctx->groupings, ctx->groupings.count - 1, NULL); |
| 4968 | assert(ctx->groupings.count == grp_stack_count); |
| 4969 | |
Michal Vasko | 7f45cf2 | 2020-10-01 12:49:44 +0200 | [diff] [blame] | 4970 | ly_set_erase(&uses_child_set, NULL); |
Radek Krejci | e86bf77 | 2018-12-14 11:39:53 +0100 | [diff] [blame] | 4971 | return ret; |
| 4972 | } |
| 4973 | |
Radek Krejci | 327de16 | 2019-06-14 12:52:07 +0200 | [diff] [blame] | 4974 | static int |
| 4975 | lys_compile_grouping_pathlog(struct lysc_ctx *ctx, struct lysp_node *node, char **path) |
| 4976 | { |
| 4977 | struct lysp_node *iter; |
| 4978 | int len = 0; |
| 4979 | |
| 4980 | *path = NULL; |
| 4981 | for (iter = node; iter && len >= 0; iter = iter->parent) { |
| 4982 | char *s = *path; |
| 4983 | char *id; |
| 4984 | |
| 4985 | switch (iter->nodetype) { |
| 4986 | case LYS_USES: |
Radek Krejci | 200f106 | 2020-07-11 22:51:03 +0200 | [diff] [blame] | 4987 | LY_CHECK_RET(asprintf(&id, "{uses='%s'}", iter->name) == -1, -1); |
Radek Krejci | 327de16 | 2019-06-14 12:52:07 +0200 | [diff] [blame] | 4988 | break; |
| 4989 | case LYS_GROUPING: |
Radek Krejci | 200f106 | 2020-07-11 22:51:03 +0200 | [diff] [blame] | 4990 | LY_CHECK_RET(asprintf(&id, "{grouping='%s'}", iter->name) == -1, -1); |
Radek Krejci | 327de16 | 2019-06-14 12:52:07 +0200 | [diff] [blame] | 4991 | break; |
| 4992 | case LYS_AUGMENT: |
Radek Krejci | 200f106 | 2020-07-11 22:51:03 +0200 | [diff] [blame] | 4993 | LY_CHECK_RET(asprintf(&id, "{augment='%s'}", iter->name) == -1, -1); |
Radek Krejci | 327de16 | 2019-06-14 12:52:07 +0200 | [diff] [blame] | 4994 | break; |
| 4995 | default: |
| 4996 | id = strdup(iter->name); |
| 4997 | break; |
| 4998 | } |
| 4999 | |
| 5000 | if (!iter->parent) { |
| 5001 | /* print prefix */ |
| 5002 | len = asprintf(path, "/%s:%s%s", ctx->mod->name, id, s ? s : ""); |
| 5003 | } else { |
| 5004 | /* prefix is the same as in parent */ |
| 5005 | len = asprintf(path, "/%s%s", id, s ? s : ""); |
| 5006 | } |
| 5007 | free(s); |
| 5008 | free(id); |
| 5009 | } |
| 5010 | |
| 5011 | if (len < 0) { |
| 5012 | free(*path); |
| 5013 | *path = NULL; |
| 5014 | } else if (len == 0) { |
| 5015 | *path = strdup("/"); |
| 5016 | len = 1; |
| 5017 | } |
| 5018 | return len; |
| 5019 | } |
| 5020 | |
Radek Krejci | f2de0ed | 2019-05-02 14:13:18 +0200 | [diff] [blame] | 5021 | /** |
| 5022 | * @brief Validate groupings that were defined but not directly used in the schema itself. |
| 5023 | * |
| 5024 | * The grouping does not need to be compiled (and it is compiled here, but the result is forgotten immediately), |
| 5025 | * but to have the complete result of the schema validity, even such groupings are supposed to be checked. |
| 5026 | */ |
| 5027 | static LY_ERR |
Michal Vasko | 7f45cf2 | 2020-10-01 12:49:44 +0200 | [diff] [blame] | 5028 | lys_compile_grouping(struct lysc_ctx *ctx, struct lysp_node *pnode, struct lysp_grp *grp) |
Radek Krejci | f2de0ed | 2019-05-02 14:13:18 +0200 | [diff] [blame] | 5029 | { |
| 5030 | LY_ERR ret; |
Radek Krejci | 327de16 | 2019-06-14 12:52:07 +0200 | [diff] [blame] | 5031 | char *path; |
| 5032 | int len; |
| 5033 | |
Radek Krejci | f2de0ed | 2019-05-02 14:13:18 +0200 | [diff] [blame] | 5034 | struct lysp_node_uses fake_uses = { |
Michal Vasko | 7f45cf2 | 2020-10-01 12:49:44 +0200 | [diff] [blame] | 5035 | .parent = pnode, |
Radek Krejci | f2de0ed | 2019-05-02 14:13:18 +0200 | [diff] [blame] | 5036 | .nodetype = LYS_USES, |
| 5037 | .flags = 0, .next = NULL, |
| 5038 | .name = grp->name, |
| 5039 | .dsc = NULL, .ref = NULL, .when = NULL, .iffeatures = NULL, .exts = NULL, |
| 5040 | .refines = NULL, .augments = NULL |
| 5041 | }; |
| 5042 | struct lysc_node_container fake_container = { |
| 5043 | .nodetype = LYS_CONTAINER, |
Michal Vasko | 7f45cf2 | 2020-10-01 12:49:44 +0200 | [diff] [blame] | 5044 | .flags = pnode ? (pnode->flags & LYS_FLAGS_COMPILED_MASK) : 0, |
Radek Krejci | f2de0ed | 2019-05-02 14:13:18 +0200 | [diff] [blame] | 5045 | .module = ctx->mod, |
| 5046 | .sp = NULL, .parent = NULL, .next = NULL, |
Michal Vasko | 22df3f0 | 2020-08-24 13:29:22 +0200 | [diff] [blame] | 5047 | .prev = (struct lysc_node *)&fake_container, |
Radek Krejci | f2de0ed | 2019-05-02 14:13:18 +0200 | [diff] [blame] | 5048 | .name = "fake", |
| 5049 | .dsc = NULL, .ref = NULL, .exts = NULL, .iffeatures = NULL, .when = NULL, |
| 5050 | .child = NULL, .musts = NULL, .actions = NULL, .notifs = NULL |
| 5051 | }; |
| 5052 | |
| 5053 | if (grp->parent) { |
| 5054 | LOGWRN(ctx->ctx, "Locally scoped grouping \"%s\" not used.", grp->name); |
| 5055 | } |
Radek Krejci | 327de16 | 2019-06-14 12:52:07 +0200 | [diff] [blame] | 5056 | |
| 5057 | len = lys_compile_grouping_pathlog(ctx, grp->parent, &path); |
| 5058 | if (len < 0) { |
| 5059 | LOGMEM(ctx->ctx); |
| 5060 | return LY_EMEM; |
| 5061 | } |
| 5062 | strncpy(ctx->path, path, LYSC_CTX_BUFSIZE - 1); |
Radek Krejci | 1deb5be | 2020-08-26 16:43:36 +0200 | [diff] [blame] | 5063 | ctx->path_len = (uint32_t)len; |
Radek Krejci | 327de16 | 2019-06-14 12:52:07 +0200 | [diff] [blame] | 5064 | free(path); |
| 5065 | |
| 5066 | lysc_update_path(ctx, NULL, "{grouping}"); |
| 5067 | lysc_update_path(ctx, NULL, grp->name); |
Michal Vasko | 22df3f0 | 2020-08-24 13:29:22 +0200 | [diff] [blame] | 5068 | ret = lys_compile_uses(ctx, &fake_uses, (struct lysc_node *)&fake_container, NULL); |
Radek Krejci | 327de16 | 2019-06-14 12:52:07 +0200 | [diff] [blame] | 5069 | lysc_update_path(ctx, NULL, NULL); |
| 5070 | lysc_update_path(ctx, NULL, NULL); |
| 5071 | |
| 5072 | ctx->path_len = 1; |
| 5073 | ctx->path[1] = '\0'; |
Radek Krejci | f2de0ed | 2019-05-02 14:13:18 +0200 | [diff] [blame] | 5074 | |
| 5075 | /* cleanup */ |
| 5076 | lysc_node_container_free(ctx->ctx, &fake_container); |
| 5077 | |
| 5078 | return ret; |
| 5079 | } |
Radek Krejci | fe90963 | 2019-02-12 15:34:42 +0100 | [diff] [blame] | 5080 | |
Radek Krejci | e86bf77 | 2018-12-14 11:39:53 +0100 | [diff] [blame] | 5081 | /** |
Michal Vasko | 20424b4 | 2020-08-31 12:29:38 +0200 | [diff] [blame] | 5082 | * @brief Set config flags for a node. |
| 5083 | * |
| 5084 | * @param[in] ctx Compile context. |
| 5085 | * @param[in] node Compiled node config to set. |
| 5086 | * @param[in] parent Parent of @p node. |
| 5087 | * @return LY_ERR value. |
| 5088 | */ |
| 5089 | static LY_ERR |
| 5090 | lys_compile_config(struct lysc_ctx *ctx, struct lysc_node *node, struct lysc_node *parent) |
| 5091 | { |
| 5092 | if (node->nodetype == LYS_CASE) { |
| 5093 | /* case never has any config */ |
| 5094 | assert(!(node->flags & LYS_CONFIG_MASK)); |
| 5095 | return LY_SUCCESS; |
| 5096 | } |
| 5097 | |
| 5098 | /* adjust parent to always get the ancestor with config */ |
| 5099 | if (parent && (parent->nodetype == LYS_CASE)) { |
| 5100 | parent = parent->parent; |
| 5101 | assert(parent); |
| 5102 | } |
| 5103 | |
| 5104 | if (ctx->options & (LYSC_OPT_RPC_INPUT | LYSC_OPT_RPC_OUTPUT)) { |
| 5105 | /* ignore config statements inside RPC/action data */ |
| 5106 | node->flags &= ~LYS_CONFIG_MASK; |
| 5107 | node->flags |= (ctx->options & LYSC_OPT_RPC_INPUT) ? LYS_CONFIG_W : LYS_CONFIG_R; |
| 5108 | } else if (ctx->options & LYSC_OPT_NOTIFICATION) { |
| 5109 | /* ignore config statements inside Notification data */ |
| 5110 | node->flags &= ~LYS_CONFIG_MASK; |
| 5111 | node->flags |= LYS_CONFIG_R; |
| 5112 | } else if (!(node->flags & LYS_CONFIG_MASK)) { |
| 5113 | /* config not explicitely set, inherit it from parent */ |
| 5114 | if (parent) { |
| 5115 | node->flags |= parent->flags & LYS_CONFIG_MASK; |
| 5116 | } else { |
| 5117 | /* default is config true */ |
| 5118 | node->flags |= LYS_CONFIG_W; |
| 5119 | } |
| 5120 | } else { |
| 5121 | /* config set explicitely */ |
| 5122 | node->flags |= LYS_SET_CONFIG; |
| 5123 | } |
| 5124 | |
| 5125 | if (parent && (parent->flags & LYS_CONFIG_R) && (node->flags & LYS_CONFIG_W)) { |
| 5126 | LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SEMANTICS, |
| 5127 | "Configuration node cannot be child of any state data node."); |
| 5128 | return LY_EVALID; |
| 5129 | } |
| 5130 | |
| 5131 | return LY_SUCCESS; |
| 5132 | } |
| 5133 | |
Michal Vasko | 7f45cf2 | 2020-10-01 12:49:44 +0200 | [diff] [blame] | 5134 | static LY_ERR |
| 5135 | lysp_ext_dup(const struct ly_ctx *ctx, struct lysp_ext_instance *ext, const struct lysp_ext_instance *orig_ext) |
| 5136 | { |
| 5137 | LY_ERR ret = LY_SUCCESS; |
| 5138 | |
| 5139 | *ext = *orig_ext; |
| 5140 | DUP_STRING(ctx, orig_ext->name, ext->name, ret); |
| 5141 | DUP_STRING(ctx, orig_ext->argument, ext->argument, ret); |
| 5142 | |
| 5143 | return ret; |
| 5144 | } |
| 5145 | |
| 5146 | static LY_ERR |
| 5147 | lysp_restr_dup(const struct ly_ctx *ctx, struct lysp_restr *restr, const struct lysp_restr *orig_restr) |
| 5148 | { |
| 5149 | LY_ERR ret = LY_SUCCESS; |
| 5150 | |
| 5151 | if (orig_restr) { |
| 5152 | DUP_STRING(ctx, orig_restr->arg.str, restr->arg.str, ret); |
| 5153 | restr->arg.mod = orig_restr->arg.mod; |
| 5154 | DUP_STRING(ctx, orig_restr->emsg, restr->emsg, ret); |
| 5155 | DUP_STRING(ctx, orig_restr->eapptag, restr->eapptag, ret); |
| 5156 | DUP_STRING(ctx, orig_restr->dsc, restr->dsc, ret); |
| 5157 | DUP_STRING(ctx, orig_restr->ref, restr->ref, ret); |
| 5158 | DUP_ARRAY(ctx, orig_restr->exts, restr->exts, lysp_ext_dup); |
| 5159 | } |
| 5160 | |
| 5161 | return ret; |
| 5162 | } |
| 5163 | |
| 5164 | static LY_ERR |
| 5165 | lysp_string_dup(const struct ly_ctx *ctx, const char **str, const char **orig_str) |
| 5166 | { |
| 5167 | LY_ERR ret = LY_SUCCESS; |
| 5168 | |
| 5169 | DUP_STRING(ctx, *orig_str, *str, ret); |
| 5170 | |
| 5171 | return ret; |
| 5172 | } |
| 5173 | |
| 5174 | static LY_ERR |
| 5175 | lysp_qname_dup(const struct ly_ctx *ctx, struct lysp_qname *qname, const struct lysp_qname *orig_qname) |
| 5176 | { |
| 5177 | LY_ERR ret = LY_SUCCESS; |
| 5178 | |
| 5179 | DUP_STRING(ctx, orig_qname->str, qname->str, ret); |
| 5180 | qname->mod = orig_qname->mod; |
| 5181 | |
| 5182 | return ret; |
| 5183 | } |
| 5184 | |
| 5185 | static LY_ERR |
| 5186 | lysp_type_enum_dup(const struct ly_ctx *ctx, struct lysp_type_enum *enm, const struct lysp_type_enum *orig_enm) |
| 5187 | { |
| 5188 | LY_ERR ret = LY_SUCCESS; |
| 5189 | |
| 5190 | DUP_STRING(ctx, orig_enm->name, enm->name, ret); |
| 5191 | DUP_STRING(ctx, orig_enm->dsc, enm->dsc, ret); |
| 5192 | DUP_STRING(ctx, orig_enm->ref, enm->ref, ret); |
| 5193 | enm->value = orig_enm->value; |
| 5194 | DUP_ARRAY(ctx, orig_enm->iffeatures, enm->iffeatures, lysp_qname_dup); |
| 5195 | DUP_ARRAY(ctx, orig_enm->exts, enm->exts, lysp_ext_dup); |
| 5196 | enm->flags = orig_enm->flags; |
| 5197 | |
| 5198 | return ret; |
| 5199 | } |
| 5200 | |
| 5201 | static LY_ERR |
| 5202 | lysp_type_dup(const struct ly_ctx *ctx, struct lysp_type *type, const struct lysp_type *orig_type) |
| 5203 | { |
| 5204 | LY_ERR ret = LY_SUCCESS; |
| 5205 | |
| 5206 | DUP_STRING_GOTO(ctx, orig_type->name, type->name, ret, done); |
| 5207 | |
| 5208 | if (orig_type->range) { |
| 5209 | type->range = calloc(1, sizeof *type->range); |
| 5210 | LY_CHECK_ERR_RET(!type->range, LOGMEM(ctx), LY_EMEM); |
| 5211 | LY_CHECK_RET(lysp_restr_dup(ctx, type->range, orig_type->range)); |
| 5212 | } |
| 5213 | |
| 5214 | if (orig_type->length) { |
| 5215 | type->length = calloc(1, sizeof *type->length); |
| 5216 | LY_CHECK_ERR_RET(!type->length, LOGMEM(ctx), LY_EMEM); |
| 5217 | LY_CHECK_RET(lysp_restr_dup(ctx, type->length, orig_type->length)); |
| 5218 | } |
| 5219 | |
| 5220 | DUP_ARRAY(ctx, orig_type->patterns, type->patterns, lysp_restr_dup); |
| 5221 | DUP_ARRAY(ctx, orig_type->enums, type->enums, lysp_type_enum_dup); |
| 5222 | DUP_ARRAY(ctx, orig_type->bits, type->bits, lysp_type_enum_dup); |
| 5223 | LY_CHECK_GOTO(ret = lyxp_expr_dup(ctx, orig_type->path, &type->path), done); |
| 5224 | DUP_ARRAY(ctx, orig_type->bases, type->bases, lysp_string_dup); |
| 5225 | DUP_ARRAY(ctx, orig_type->types, type->types, lysp_type_dup); |
| 5226 | DUP_ARRAY(ctx, orig_type->exts, type->exts, lysp_ext_dup); |
| 5227 | |
| 5228 | type->compiled = orig_type->compiled; |
| 5229 | |
| 5230 | type->fraction_digits = orig_type->fraction_digits; |
| 5231 | type->require_instance = orig_type->require_instance; |
| 5232 | type->flags = orig_type->flags; |
| 5233 | |
| 5234 | done: |
| 5235 | return ret; |
| 5236 | } |
| 5237 | |
| 5238 | static LY_ERR |
| 5239 | lysp_when_dup(const struct ly_ctx *ctx, struct lysp_when *when, const struct lysp_when *orig_when) |
| 5240 | { |
| 5241 | LY_ERR ret = LY_SUCCESS; |
| 5242 | |
| 5243 | DUP_STRING(ctx, orig_when->cond, when->cond, ret); |
| 5244 | DUP_STRING(ctx, orig_when->dsc, when->dsc, ret); |
| 5245 | DUP_STRING(ctx, orig_when->ref, when->ref, ret); |
| 5246 | DUP_ARRAY(ctx, orig_when->exts, when->exts, lysp_ext_dup); |
| 5247 | |
| 5248 | return ret; |
| 5249 | } |
| 5250 | |
| 5251 | static LY_ERR |
| 5252 | lysp_node_common_dup(const struct ly_ctx *ctx, struct lysp_node *node, const struct lysp_node *orig) |
| 5253 | { |
| 5254 | LY_ERR ret = LY_SUCCESS; |
| 5255 | |
| 5256 | node->parent = NULL; |
| 5257 | node->nodetype = orig->nodetype; |
| 5258 | node->flags = orig->flags; |
| 5259 | node->next = NULL; |
| 5260 | DUP_STRING(ctx, orig->name, node->name, ret); |
| 5261 | DUP_STRING(ctx, orig->dsc, node->dsc, ret); |
| 5262 | DUP_STRING(ctx, orig->ref, node->ref, ret); |
| 5263 | |
| 5264 | if (orig->when) { |
| 5265 | node->when = calloc(1, sizeof *node->when); |
| 5266 | LY_CHECK_ERR_RET(!node->when, LOGMEM(ctx), LY_EMEM); |
| 5267 | LY_CHECK_RET(lysp_when_dup(ctx, node->when, orig->when)); |
| 5268 | } |
| 5269 | |
| 5270 | DUP_ARRAY(ctx, orig->iffeatures, node->iffeatures, lysp_qname_dup); |
| 5271 | DUP_ARRAY(ctx, orig->exts, node->exts, lysp_ext_dup); |
| 5272 | |
| 5273 | return ret; |
| 5274 | } |
| 5275 | |
| 5276 | static LY_ERR |
| 5277 | lysp_node_dup(const struct ly_ctx *ctx, struct lysp_node *node, const struct lysp_node *orig) |
| 5278 | { |
| 5279 | LY_ERR ret = LY_SUCCESS; |
| 5280 | struct lysp_node_container *cont; |
| 5281 | const struct lysp_node_container *orig_cont; |
| 5282 | struct lysp_node_leaf *leaf; |
| 5283 | const struct lysp_node_leaf *orig_leaf; |
| 5284 | struct lysp_node_leaflist *llist; |
| 5285 | const struct lysp_node_leaflist *orig_llist; |
| 5286 | struct lysp_node_list *list; |
| 5287 | const struct lysp_node_list *orig_list; |
| 5288 | struct lysp_node_choice *choice; |
| 5289 | const struct lysp_node_choice *orig_choice; |
| 5290 | struct lysp_node_case *cas; |
| 5291 | const struct lysp_node_case *orig_cas; |
| 5292 | struct lysp_node_anydata *any; |
| 5293 | const struct lysp_node_anydata *orig_any; |
| 5294 | |
| 5295 | assert(orig->nodetype & (LYS_CONTAINER | LYS_LEAF | LYS_LEAFLIST | LYS_LIST | LYS_CHOICE | LYS_CASE | LYS_ANYDATA)); |
| 5296 | |
| 5297 | /* common part */ |
| 5298 | LY_CHECK_RET(lysp_node_common_dup(ctx, node, orig)); |
| 5299 | |
| 5300 | /* specific part */ |
| 5301 | switch (node->nodetype) { |
| 5302 | case LYS_CONTAINER: |
| 5303 | cont = (struct lysp_node_container *)node; |
| 5304 | orig_cont = (const struct lysp_node_container *)orig; |
| 5305 | |
| 5306 | DUP_ARRAY(ctx, orig_cont->musts, cont->musts, lysp_restr_dup); |
| 5307 | DUP_STRING(ctx, orig_cont->presence, cont->presence, ret); |
| 5308 | /* we do not need the rest */ |
| 5309 | break; |
| 5310 | case LYS_LEAF: |
| 5311 | leaf = (struct lysp_node_leaf *)node; |
| 5312 | orig_leaf = (const struct lysp_node_leaf *)orig; |
| 5313 | |
| 5314 | DUP_ARRAY(ctx, orig_leaf->musts, leaf->musts, lysp_restr_dup); |
| 5315 | LY_CHECK_RET(lysp_type_dup(ctx, &leaf->type, &orig_leaf->type)); |
| 5316 | DUP_STRING(ctx, orig_leaf->units, leaf->units, ret); |
| 5317 | DUP_STRING(ctx, orig_leaf->dflt.str, leaf->dflt.str, ret); |
| 5318 | break; |
| 5319 | case LYS_LEAFLIST: |
| 5320 | llist = (struct lysp_node_leaflist *)node; |
| 5321 | orig_llist = (const struct lysp_node_leaflist *)orig; |
| 5322 | |
| 5323 | DUP_ARRAY(ctx, orig_llist->musts, llist->musts, lysp_restr_dup); |
| 5324 | LY_CHECK_RET(lysp_type_dup(ctx, &llist->type, &orig_llist->type)); |
| 5325 | DUP_STRING(ctx, orig_llist->units, llist->units, ret); |
| 5326 | DUP_ARRAY(ctx, orig_llist->dflts, llist->dflts, lysp_qname_dup); |
| 5327 | llist->min = orig_llist->min; |
| 5328 | llist->max = orig_llist->max; |
| 5329 | break; |
| 5330 | case LYS_LIST: |
| 5331 | list = (struct lysp_node_list *)node; |
| 5332 | orig_list = (const struct lysp_node_list *)orig; |
| 5333 | |
| 5334 | DUP_ARRAY(ctx, orig_list->musts, list->musts, lysp_restr_dup); |
| 5335 | DUP_STRING(ctx, orig_list->key, list->key, ret); |
| 5336 | /* we do not need these arrays */ |
| 5337 | DUP_ARRAY(ctx, orig_list->uniques, list->uniques, lysp_qname_dup); |
| 5338 | list->min = orig_list->min; |
| 5339 | list->max = orig_list->max; |
| 5340 | break; |
| 5341 | case LYS_CHOICE: |
| 5342 | choice = (struct lysp_node_choice *)node; |
| 5343 | orig_choice = (const struct lysp_node_choice *)orig; |
| 5344 | |
| 5345 | /* we do not need children */ |
| 5346 | LY_CHECK_RET(lysp_qname_dup(ctx, &choice->dflt, &orig_choice->dflt)); |
| 5347 | break; |
| 5348 | case LYS_CASE: |
| 5349 | cas = (struct lysp_node_case *)node; |
| 5350 | orig_cas = (const struct lysp_node_case *)orig; |
| 5351 | |
| 5352 | /* we do not need children */ |
| 5353 | (void)cas; |
| 5354 | (void)orig_cas; |
| 5355 | break; |
| 5356 | case LYS_ANYDATA: |
| 5357 | case LYS_ANYXML: |
| 5358 | any = (struct lysp_node_anydata *)node; |
| 5359 | orig_any = (const struct lysp_node_anydata *)orig; |
| 5360 | |
| 5361 | DUP_ARRAY(ctx, orig_any->musts, any->musts, lysp_restr_dup); |
| 5362 | break; |
| 5363 | default: |
| 5364 | LOGINT_RET(ctx); |
| 5365 | } |
| 5366 | |
| 5367 | return ret; |
| 5368 | } |
| 5369 | |
| 5370 | static LY_ERR |
| 5371 | lysp_action_inout_dup(const struct ly_ctx *ctx, struct lysp_action_inout *inout, const struct lysp_action_inout *orig) |
| 5372 | { |
| 5373 | inout->parent = NULL; |
| 5374 | inout->nodetype = orig->nodetype; |
| 5375 | DUP_ARRAY(ctx, orig->musts, inout->musts, lysp_restr_dup); |
| 5376 | /* we dot need these arrays */ |
| 5377 | DUP_ARRAY(ctx, orig->exts, inout->exts, lysp_ext_dup); |
| 5378 | |
| 5379 | return LY_SUCCESS; |
| 5380 | } |
| 5381 | |
| 5382 | static LY_ERR |
| 5383 | lysp_action_dup(const struct ly_ctx *ctx, struct lysp_action *act, const struct lysp_action *orig) |
| 5384 | { |
| 5385 | LY_ERR ret = LY_SUCCESS; |
| 5386 | |
| 5387 | act->parent = NULL; |
| 5388 | act->nodetype = orig->nodetype; |
| 5389 | act->flags = orig->flags; |
| 5390 | DUP_STRING(ctx, orig->name, act->name, ret); |
| 5391 | DUP_STRING(ctx, orig->dsc, act->dsc, ret); |
| 5392 | DUP_STRING(ctx, orig->ref, act->ref, ret); |
| 5393 | DUP_ARRAY(ctx, orig->iffeatures, act->iffeatures, lysp_qname_dup); |
| 5394 | |
| 5395 | act->input.nodetype = orig->input.nodetype; |
| 5396 | act->output.nodetype = orig->output.nodetype; |
| 5397 | /* we do not need choldren of in/out */ |
| 5398 | DUP_ARRAY(ctx, orig->exts, act->exts, lysp_ext_dup); |
| 5399 | |
| 5400 | return ret; |
| 5401 | } |
| 5402 | |
| 5403 | static LY_ERR |
| 5404 | lysp_notif_dup(const struct ly_ctx *ctx, struct lysp_notif *notif, const struct lysp_notif *orig) |
| 5405 | { |
| 5406 | LY_ERR ret = LY_SUCCESS; |
| 5407 | |
| 5408 | notif->parent = NULL; |
| 5409 | notif->nodetype = orig->nodetype; |
| 5410 | notif->flags = orig->flags; |
| 5411 | DUP_STRING(ctx, orig->name, notif->name, ret); |
| 5412 | DUP_STRING(ctx, orig->dsc, notif->dsc, ret); |
| 5413 | DUP_STRING(ctx, orig->ref, notif->ref, ret); |
| 5414 | DUP_ARRAY(ctx, orig->iffeatures, notif->iffeatures, lysp_qname_dup); |
| 5415 | DUP_ARRAY(ctx, orig->musts, notif->musts, lysp_restr_dup); |
| 5416 | /* we do not need these arrays */ |
| 5417 | DUP_ARRAY(ctx, orig->exts, notif->exts, lysp_ext_dup); |
| 5418 | |
| 5419 | return ret; |
| 5420 | } |
| 5421 | |
| 5422 | /** |
| 5423 | * @brief Duplicate a single parsed node. Only attributes that are used in compilation are copied. |
| 5424 | * |
| 5425 | * @param[in] ctx libyang context. |
| 5426 | * @param[in] pnode Node to duplicate. |
| 5427 | * @param[in] with_links Whether to also copy any links (child, parent pointers). |
| 5428 | * @param[out] dup_p Duplicated parsed node. |
| 5429 | * @return LY_ERR value. |
| 5430 | */ |
| 5431 | static LY_ERR |
| 5432 | lysp_dup_single(const struct ly_ctx *ctx, const struct lysp_node *pnode, ly_bool with_links, struct lysp_node **dup_p) |
| 5433 | { |
Michal Vasko | af70245 | 2020-10-02 09:02:55 +0200 | [diff] [blame^] | 5434 | LY_ERR ret = LY_SUCCESS; |
| 5435 | void *mem = NULL; |
Michal Vasko | 7f45cf2 | 2020-10-01 12:49:44 +0200 | [diff] [blame] | 5436 | |
| 5437 | if (!pnode) { |
| 5438 | *dup_p = NULL; |
| 5439 | return LY_SUCCESS; |
| 5440 | } |
| 5441 | |
| 5442 | switch (pnode->nodetype) { |
| 5443 | case LYS_CONTAINER: |
| 5444 | mem = calloc(1, sizeof(struct lysp_node_container)); |
Michal Vasko | af70245 | 2020-10-02 09:02:55 +0200 | [diff] [blame^] | 5445 | LY_CHECK_ERR_GOTO(!mem, LOGMEM(ctx); ret = LY_EMEM, cleanup); |
| 5446 | LY_CHECK_GOTO(ret = lysp_node_dup(ctx, mem, pnode), cleanup); |
Michal Vasko | 7f45cf2 | 2020-10-01 12:49:44 +0200 | [diff] [blame] | 5447 | break; |
| 5448 | case LYS_LEAF: |
| 5449 | mem = calloc(1, sizeof(struct lysp_node_leaf)); |
Michal Vasko | af70245 | 2020-10-02 09:02:55 +0200 | [diff] [blame^] | 5450 | LY_CHECK_ERR_GOTO(!mem, LOGMEM(ctx); ret = LY_EMEM, cleanup); |
| 5451 | LY_CHECK_GOTO(ret = lysp_node_dup(ctx, mem, pnode), cleanup); |
Michal Vasko | 7f45cf2 | 2020-10-01 12:49:44 +0200 | [diff] [blame] | 5452 | break; |
| 5453 | case LYS_LEAFLIST: |
| 5454 | mem = calloc(1, sizeof(struct lysp_node_leaflist)); |
Michal Vasko | af70245 | 2020-10-02 09:02:55 +0200 | [diff] [blame^] | 5455 | LY_CHECK_ERR_GOTO(!mem, LOGMEM(ctx); ret = LY_EMEM, cleanup); |
| 5456 | LY_CHECK_GOTO(ret = lysp_node_dup(ctx, mem, pnode), cleanup); |
Michal Vasko | 7f45cf2 | 2020-10-01 12:49:44 +0200 | [diff] [blame] | 5457 | break; |
| 5458 | case LYS_LIST: |
| 5459 | mem = calloc(1, sizeof(struct lysp_node_list)); |
Michal Vasko | af70245 | 2020-10-02 09:02:55 +0200 | [diff] [blame^] | 5460 | LY_CHECK_ERR_GOTO(!mem, LOGMEM(ctx); ret = LY_EMEM, cleanup); |
| 5461 | LY_CHECK_GOTO(ret = lysp_node_dup(ctx, mem, pnode), cleanup); |
Michal Vasko | 7f45cf2 | 2020-10-01 12:49:44 +0200 | [diff] [blame] | 5462 | break; |
| 5463 | case LYS_CHOICE: |
| 5464 | mem = calloc(1, sizeof(struct lysp_node_choice)); |
Michal Vasko | af70245 | 2020-10-02 09:02:55 +0200 | [diff] [blame^] | 5465 | LY_CHECK_ERR_GOTO(!mem, LOGMEM(ctx); ret = LY_EMEM, cleanup); |
| 5466 | LY_CHECK_GOTO(ret = lysp_node_dup(ctx, mem, pnode), cleanup); |
Michal Vasko | 7f45cf2 | 2020-10-01 12:49:44 +0200 | [diff] [blame] | 5467 | break; |
| 5468 | case LYS_CASE: |
| 5469 | mem = calloc(1, sizeof(struct lysp_node_case)); |
Michal Vasko | af70245 | 2020-10-02 09:02:55 +0200 | [diff] [blame^] | 5470 | LY_CHECK_ERR_GOTO(!mem, LOGMEM(ctx); ret = LY_EMEM, cleanup); |
| 5471 | LY_CHECK_GOTO(ret = lysp_node_dup(ctx, mem, pnode), cleanup); |
Michal Vasko | 7f45cf2 | 2020-10-01 12:49:44 +0200 | [diff] [blame] | 5472 | break; |
| 5473 | case LYS_ANYDATA: |
| 5474 | case LYS_ANYXML: |
| 5475 | mem = calloc(1, sizeof(struct lysp_node_anydata)); |
Michal Vasko | af70245 | 2020-10-02 09:02:55 +0200 | [diff] [blame^] | 5476 | LY_CHECK_ERR_GOTO(!mem, LOGMEM(ctx); ret = LY_EMEM, cleanup); |
| 5477 | LY_CHECK_GOTO(ret = lysp_node_dup(ctx, mem, pnode), cleanup); |
Michal Vasko | 7f45cf2 | 2020-10-01 12:49:44 +0200 | [diff] [blame] | 5478 | break; |
| 5479 | case LYS_INPUT: |
| 5480 | case LYS_OUTPUT: |
| 5481 | mem = calloc(1, sizeof(struct lysp_action_inout)); |
Michal Vasko | af70245 | 2020-10-02 09:02:55 +0200 | [diff] [blame^] | 5482 | LY_CHECK_ERR_GOTO(!mem, LOGMEM(ctx); ret = LY_EMEM, cleanup); |
| 5483 | LY_CHECK_GOTO(ret = lysp_action_inout_dup(ctx, mem, (struct lysp_action_inout *)pnode), cleanup); |
Michal Vasko | 7f45cf2 | 2020-10-01 12:49:44 +0200 | [diff] [blame] | 5484 | break; |
| 5485 | case LYS_ACTION: |
| 5486 | case LYS_RPC: |
| 5487 | mem = calloc(1, sizeof(struct lysp_action)); |
Michal Vasko | af70245 | 2020-10-02 09:02:55 +0200 | [diff] [blame^] | 5488 | LY_CHECK_ERR_GOTO(!mem, LOGMEM(ctx); ret = LY_EMEM, cleanup); |
| 5489 | LY_CHECK_GOTO(ret = lysp_action_dup(ctx, mem, (struct lysp_action *)pnode), cleanup); |
Michal Vasko | 7f45cf2 | 2020-10-01 12:49:44 +0200 | [diff] [blame] | 5490 | break; |
| 5491 | case LYS_NOTIF: |
| 5492 | mem = calloc(1, sizeof(struct lysp_notif)); |
Michal Vasko | af70245 | 2020-10-02 09:02:55 +0200 | [diff] [blame^] | 5493 | LY_CHECK_ERR_GOTO(!mem, LOGMEM(ctx); ret = LY_EMEM, cleanup); |
| 5494 | LY_CHECK_GOTO(ret = lysp_notif_dup(ctx, mem, (struct lysp_notif *)pnode), cleanup); |
Michal Vasko | 7f45cf2 | 2020-10-01 12:49:44 +0200 | [diff] [blame] | 5495 | break; |
| 5496 | default: |
| 5497 | LOGINT_RET(ctx); |
| 5498 | } |
| 5499 | |
| 5500 | if (with_links) { |
| 5501 | /* copy also parent and child pointers */ |
| 5502 | ((struct lysp_node *)mem)->parent = pnode->parent; |
| 5503 | switch (pnode->nodetype) { |
| 5504 | case LYS_CONTAINER: |
| 5505 | ((struct lysp_node_container *)mem)->child = ((struct lysp_node_container *)pnode)->child; |
| 5506 | break; |
| 5507 | case LYS_LIST: |
| 5508 | ((struct lysp_node_list *)mem)->child = ((struct lysp_node_list *)pnode)->child; |
| 5509 | break; |
| 5510 | case LYS_CHOICE: |
| 5511 | ((struct lysp_node_choice *)mem)->child = ((struct lysp_node_choice *)pnode)->child; |
| 5512 | break; |
| 5513 | case LYS_CASE: |
| 5514 | ((struct lysp_node_case *)mem)->child = ((struct lysp_node_case *)pnode)->child; |
| 5515 | break; |
| 5516 | default: |
| 5517 | break; |
| 5518 | } |
| 5519 | } |
| 5520 | |
Michal Vasko | af70245 | 2020-10-02 09:02:55 +0200 | [diff] [blame^] | 5521 | cleanup: |
| 5522 | if (ret) { |
| 5523 | free(mem); |
| 5524 | } else { |
| 5525 | *dup_p = mem; |
| 5526 | } |
| 5527 | return ret; |
Michal Vasko | 7f45cf2 | 2020-10-01 12:49:44 +0200 | [diff] [blame] | 5528 | } |
| 5529 | |
| 5530 | #define AMEND_WRONG_NODETYPE(AMEND_STR, OP_STR, PROPERTY) \ |
| 5531 | LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_REFERENCE, "Invalid %s of %s node - it is not possible to %s \"%s\" property.", \ |
| 5532 | AMEND_STR, lys_nodetype2str(target->nodetype), OP_STR, PROPERTY);\ |
| 5533 | ret = LY_EVALID; \ |
| 5534 | goto cleanup; |
| 5535 | |
| 5536 | #define AMEND_CHECK_CARDINALITY(ARRAY, MAX, AMEND_STR, PROPERTY) \ |
| 5537 | if (LY_ARRAY_COUNT(ARRAY) > MAX) { \ |
| 5538 | LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SEMANTICS, "Invalid %s of %s with too many (%"LY_PRI_ARRAY_COUNT_TYPE") %s properties.", \ |
| 5539 | AMEND_STR, lys_nodetype2str(target->nodetype), LY_ARRAY_COUNT(ARRAY), PROPERTY); \ |
| 5540 | ret = LY_EVALID; \ |
| 5541 | goto cleanup; \ |
| 5542 | } |
| 5543 | |
| 5544 | /** |
| 5545 | * @brief Apply refine. |
| 5546 | * |
| 5547 | * @param[in] ctx Compile context. |
| 5548 | * @param[in] rfn Refine to apply. |
| 5549 | * @param[in,out] target Refine target. |
| 5550 | * @return LY_ERR value. |
| 5551 | */ |
| 5552 | static LY_ERR |
| 5553 | lys_apply_refine(struct lysc_ctx *ctx, struct lysp_refine *rfn, struct lysp_node *target) |
| 5554 | { |
| 5555 | LY_ERR ret = LY_SUCCESS; |
| 5556 | LY_ARRAY_COUNT_TYPE u; |
| 5557 | struct lysp_qname *qname; |
| 5558 | struct lysp_restr **musts, *must; |
| 5559 | uint32_t *num; |
| 5560 | |
| 5561 | /* default value */ |
| 5562 | if (rfn->dflts) { |
| 5563 | switch (target->nodetype) { |
| 5564 | case LYS_LEAF: |
| 5565 | AMEND_CHECK_CARDINALITY(rfn->dflts, 1, "refine", "default"); |
| 5566 | |
| 5567 | FREE_STRING(ctx->ctx, ((struct lysp_node_leaf *)target)->dflt.str); |
| 5568 | DUP_STRING_GOTO(ctx->ctx, rfn->dflts[0], ((struct lysp_node_leaf *)target)->dflt.str, ret, cleanup); |
| 5569 | ((struct lysp_node_leaf *)target)->dflt.mod = ctx->mod; |
| 5570 | break; |
| 5571 | case LYS_LEAFLIST: |
| 5572 | if (ctx->mod->version < LYS_VERSION_1_1) { |
| 5573 | LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SEMANTICS, |
| 5574 | "Invalid refine of default in leaf-list - the default statement is allowed only in YANG 1.1 modules."); |
| 5575 | ret = LY_EVALID; |
| 5576 | goto cleanup; |
| 5577 | } |
| 5578 | |
| 5579 | FREE_ARRAY(ctx->ctx, ((struct lysp_node_leaflist *)target)->dflts, lysp_qname_free); |
| 5580 | ((struct lysp_node_leaflist *)target)->dflts = NULL; |
| 5581 | LY_ARRAY_FOR(rfn->dflts, u) { |
| 5582 | LY_ARRAY_NEW_GOTO(ctx->ctx, ((struct lysp_node_leaflist *)target)->dflts, qname, ret, cleanup); |
| 5583 | DUP_STRING_GOTO(ctx->ctx, rfn->dflts[u], qname->str, ret, cleanup); |
| 5584 | qname->mod = ctx->mod; |
| 5585 | } |
| 5586 | break; |
| 5587 | case LYS_CHOICE: |
| 5588 | AMEND_CHECK_CARDINALITY(rfn->dflts, 1, "refine", "default"); |
| 5589 | |
| 5590 | FREE_STRING(ctx->ctx, ((struct lysp_node_choice *)target)->dflt.str); |
| 5591 | DUP_STRING_GOTO(ctx->ctx, rfn->dflts[0], ((struct lysp_node_choice *)target)->dflt.str, ret, cleanup); |
| 5592 | ((struct lysp_node_choice *)target)->dflt.mod = ctx->mod; |
| 5593 | break; |
| 5594 | default: |
| 5595 | AMEND_WRONG_NODETYPE("refine", "replace", "default"); |
| 5596 | } |
| 5597 | } |
| 5598 | |
| 5599 | /* description */ |
| 5600 | if (rfn->dsc) { |
| 5601 | FREE_STRING(ctx->ctx, target->dsc); |
| 5602 | DUP_STRING_GOTO(ctx->ctx, rfn->dsc, target->dsc, ret, cleanup); |
| 5603 | } |
| 5604 | |
| 5605 | /* reference */ |
| 5606 | if (rfn->ref) { |
| 5607 | FREE_STRING(ctx->ctx, target->ref); |
| 5608 | DUP_STRING_GOTO(ctx->ctx, rfn->ref, target->ref, ret, cleanup); |
| 5609 | } |
| 5610 | |
| 5611 | /* config */ |
| 5612 | if (rfn->flags & LYS_CONFIG_MASK) { |
| 5613 | if (ctx->options & (LYSC_OPT_NOTIFICATION | LYSC_OPT_RPC_INPUT | LYSC_OPT_RPC_OUTPUT)) { |
| 5614 | LOGWRN(ctx->ctx, "Refining config inside %s has no effect (%s).", |
| 5615 | ctx->options & LYSC_OPT_NOTIFICATION ? "notification" : "RPC/action", ctx->path); |
| 5616 | } else { |
| 5617 | target->flags &= ~LYS_CONFIG_MASK; |
| 5618 | target->flags |= rfn->flags & LYS_CONFIG_MASK; |
| 5619 | } |
| 5620 | } |
| 5621 | |
| 5622 | /* mandatory */ |
| 5623 | if (rfn->flags & LYS_MAND_MASK) { |
| 5624 | switch (target->nodetype) { |
| 5625 | case LYS_LEAF: |
| 5626 | case LYS_CHOICE: |
| 5627 | case LYS_ANYDATA: |
| 5628 | case LYS_ANYXML: |
| 5629 | break; |
| 5630 | default: |
| 5631 | AMEND_WRONG_NODETYPE("refine", "replace", "mandatory"); |
| 5632 | } |
| 5633 | |
| 5634 | target->flags &= ~LYS_MAND_MASK; |
| 5635 | target->flags |= rfn->flags & LYS_MAND_MASK; |
| 5636 | } |
| 5637 | |
| 5638 | /* presence */ |
| 5639 | if (rfn->presence) { |
| 5640 | switch (target->nodetype) { |
| 5641 | case LYS_CONTAINER: |
| 5642 | break; |
| 5643 | default: |
| 5644 | AMEND_WRONG_NODETYPE("refine", "replace", "presence"); |
| 5645 | } |
| 5646 | |
| 5647 | FREE_STRING(ctx->ctx, ((struct lysp_node_container *)target)->presence); |
| 5648 | DUP_STRING_GOTO(ctx->ctx, rfn->presence, ((struct lysp_node_container *)target)->presence, ret, cleanup); |
| 5649 | } |
| 5650 | |
| 5651 | /* must */ |
| 5652 | if (rfn->musts) { |
| 5653 | switch (target->nodetype) { |
| 5654 | case LYS_CONTAINER: |
| 5655 | case LYS_LIST: |
| 5656 | case LYS_LEAF: |
| 5657 | case LYS_LEAFLIST: |
| 5658 | case LYS_ANYDATA: |
| 5659 | case LYS_ANYXML: |
| 5660 | musts = &((struct lysp_node_container *)target)->musts; |
| 5661 | break; |
| 5662 | default: |
| 5663 | AMEND_WRONG_NODETYPE("refine", "add", "must"); |
| 5664 | } |
| 5665 | |
| 5666 | LY_ARRAY_FOR(rfn->musts, u) { |
| 5667 | LY_ARRAY_NEW_GOTO(ctx->ctx, *musts, must, ret, cleanup); |
| 5668 | LY_CHECK_GOTO(ret = lysp_restr_dup(ctx->ctx, must, &rfn->musts[u]), cleanup); |
| 5669 | } |
| 5670 | } |
| 5671 | |
| 5672 | /* min-elements */ |
| 5673 | if (rfn->flags & LYS_SET_MIN) { |
| 5674 | switch (target->nodetype) { |
| 5675 | case LYS_LEAFLIST: |
| 5676 | num = &((struct lysp_node_leaflist *)target)->min; |
| 5677 | break; |
| 5678 | case LYS_LIST: |
| 5679 | num = &((struct lysp_node_list *)target)->min; |
| 5680 | break; |
| 5681 | default: |
| 5682 | AMEND_WRONG_NODETYPE("refine", "replace", "min-elements"); |
| 5683 | } |
| 5684 | |
| 5685 | *num = rfn->min; |
| 5686 | } |
| 5687 | |
| 5688 | /* max-elements */ |
| 5689 | if (rfn->flags & LYS_SET_MAX) { |
| 5690 | switch (target->nodetype) { |
| 5691 | case LYS_LEAFLIST: |
| 5692 | num = &((struct lysp_node_leaflist *)target)->max; |
| 5693 | break; |
| 5694 | case LYS_LIST: |
| 5695 | num = &((struct lysp_node_list *)target)->max; |
| 5696 | break; |
| 5697 | default: |
| 5698 | AMEND_WRONG_NODETYPE("refine", "replace", "max-elements"); |
| 5699 | } |
| 5700 | |
| 5701 | *num = rfn->max; |
| 5702 | } |
| 5703 | |
| 5704 | /* if-feature */ |
| 5705 | if (rfn->iffeatures) { |
| 5706 | switch (target->nodetype) { |
| 5707 | case LYS_LEAF: |
| 5708 | case LYS_LEAFLIST: |
| 5709 | case LYS_LIST: |
| 5710 | case LYS_CONTAINER: |
| 5711 | case LYS_CHOICE: |
| 5712 | case LYS_CASE: |
| 5713 | case LYS_ANYDATA: |
| 5714 | case LYS_ANYXML: |
| 5715 | break; |
| 5716 | default: |
| 5717 | AMEND_WRONG_NODETYPE("refine", "add", "if-feature"); |
| 5718 | } |
| 5719 | |
| 5720 | LY_ARRAY_FOR(rfn->iffeatures, u) { |
| 5721 | LY_ARRAY_NEW_GOTO(ctx->ctx, target->iffeatures, qname, ret, cleanup); |
| 5722 | DUP_STRING_GOTO(ctx->ctx, rfn->iffeatures[u].str, qname->str, ret, cleanup); |
| 5723 | qname->mod = ctx->mod; |
| 5724 | } |
| 5725 | } |
| 5726 | |
| 5727 | /* extension */ |
| 5728 | /* TODO refine extensions */ |
| 5729 | |
| 5730 | cleanup: |
| 5731 | return ret; |
| 5732 | } |
| 5733 | |
| 5734 | /** |
| 5735 | * @brief Apply deviate add. |
| 5736 | * |
| 5737 | * @param[in] ctx Compile context. |
| 5738 | * @param[in] d Deviate add to apply. |
| 5739 | * @param[in,out] target Deviation target. |
| 5740 | * @return LY_ERR value. |
| 5741 | */ |
| 5742 | static LY_ERR |
| 5743 | lys_apply_deviate_add(struct lysc_ctx *ctx, struct lysp_deviate_add *d, struct lysp_node *target) |
| 5744 | { |
| 5745 | LY_ERR ret = LY_SUCCESS; |
| 5746 | LY_ARRAY_COUNT_TYPE u; |
| 5747 | struct lysp_qname *qname; |
| 5748 | uint32_t *num; |
| 5749 | struct lysp_restr **musts, *must; |
| 5750 | |
| 5751 | #define DEV_CHECK_NONPRESENCE(TYPE, MEMBER, PROPERTY, VALUEMEMBER) \ |
| 5752 | if (((TYPE)target)->MEMBER) { \ |
| 5753 | LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_REFERENCE, \ |
| 5754 | "Invalid deviation adding \"%s\" property which already exists (with value \"%s\").", \ |
| 5755 | PROPERTY, ((TYPE)target)->VALUEMEMBER); \ |
| 5756 | ret = LY_EVALID; \ |
| 5757 | goto cleanup; \ |
| 5758 | } |
| 5759 | |
| 5760 | /* [units-stmt] */ |
| 5761 | if (d->units) { |
| 5762 | switch (target->nodetype) { |
| 5763 | case LYS_LEAF: |
| 5764 | case LYS_LEAFLIST: |
| 5765 | break; |
| 5766 | default: |
| 5767 | AMEND_WRONG_NODETYPE("deviation", "add", "units"); |
| 5768 | } |
| 5769 | |
| 5770 | DEV_CHECK_NONPRESENCE(struct lysp_node_leaf *, units, "units", units); |
| 5771 | DUP_STRING_GOTO(ctx->ctx, d->units, ((struct lysp_node_leaf *)target)->units, ret, cleanup); |
| 5772 | } |
| 5773 | |
| 5774 | /* *must-stmt */ |
| 5775 | if (d->musts) { |
| 5776 | switch (target->nodetype) { |
| 5777 | case LYS_CONTAINER: |
| 5778 | case LYS_LIST: |
| 5779 | case LYS_LEAF: |
| 5780 | case LYS_LEAFLIST: |
| 5781 | case LYS_ANYDATA: |
| 5782 | case LYS_ANYXML: |
| 5783 | musts = &((struct lysp_node_container *)target)->musts; |
| 5784 | break; |
| 5785 | case LYS_NOTIF: |
| 5786 | musts = &((struct lysp_notif *)target)->musts; |
| 5787 | break; |
| 5788 | case LYS_INPUT: |
| 5789 | case LYS_OUTPUT: |
| 5790 | musts = &((struct lysp_action_inout *)target)->musts; |
| 5791 | break; |
| 5792 | default: |
| 5793 | AMEND_WRONG_NODETYPE("deviation", "add", "must"); |
| 5794 | } |
| 5795 | |
| 5796 | LY_ARRAY_FOR(d->musts, u) { |
| 5797 | LY_ARRAY_NEW_GOTO(ctx->ctx, *musts, must, ret, cleanup); |
| 5798 | LY_CHECK_GOTO(ret = lysp_restr_dup(ctx->ctx, must, &d->musts[u]), cleanup); |
| 5799 | } |
| 5800 | } |
| 5801 | |
| 5802 | /* *unique-stmt */ |
| 5803 | if (d->uniques) { |
| 5804 | switch (target->nodetype) { |
| 5805 | case LYS_LIST: |
| 5806 | break; |
| 5807 | default: |
| 5808 | AMEND_WRONG_NODETYPE("deviation", "add", "unique"); |
| 5809 | } |
| 5810 | |
| 5811 | LY_ARRAY_FOR(d->uniques, u) { |
| 5812 | LY_ARRAY_NEW_GOTO(ctx->ctx, ((struct lysp_node_list *)target)->uniques, qname, ret, cleanup); |
| 5813 | DUP_STRING_GOTO(ctx->ctx, d->uniques[u], qname->str, ret, cleanup); |
| 5814 | qname->mod = ctx->mod; |
| 5815 | } |
| 5816 | } |
| 5817 | |
| 5818 | /* *default-stmt */ |
| 5819 | if (d->dflts) { |
| 5820 | switch (target->nodetype) { |
| 5821 | case LYS_LEAF: |
| 5822 | AMEND_CHECK_CARDINALITY(d->dflts, 1, "deviation", "default"); |
| 5823 | DEV_CHECK_NONPRESENCE(struct lysp_node_leaf *, dflt.str, "default", dflt.str); |
| 5824 | |
| 5825 | DUP_STRING_GOTO(ctx->ctx, d->dflts[0], ((struct lysp_node_leaf *)target)->dflt.str, ret, cleanup); |
| 5826 | ((struct lysp_node_leaf *)target)->dflt.mod = ctx->mod; |
| 5827 | break; |
| 5828 | case LYS_LEAFLIST: |
| 5829 | LY_ARRAY_FOR(d->dflts, u) { |
| 5830 | LY_ARRAY_NEW_GOTO(ctx->ctx, ((struct lysp_node_leaflist *)target)->dflts, qname, ret, cleanup); |
| 5831 | DUP_STRING_GOTO(ctx->ctx, d->dflts[u], qname->str, ret, cleanup); |
| 5832 | qname->mod = ctx->mod; |
| 5833 | } |
| 5834 | break; |
| 5835 | case LYS_CHOICE: |
| 5836 | AMEND_CHECK_CARDINALITY(d->dflts, 1, "deviation", "default"); |
| 5837 | DEV_CHECK_NONPRESENCE(struct lysp_node_choice *, dflt.str, "default", dflt.str); |
| 5838 | |
| 5839 | DUP_STRING_GOTO(ctx->ctx, d->dflts[0], ((struct lysp_node_choice *)target)->dflt.str, ret, cleanup); |
| 5840 | ((struct lysp_node_choice *)target)->dflt.mod = ctx->mod; |
| 5841 | break; |
| 5842 | default: |
| 5843 | AMEND_WRONG_NODETYPE("deviation", "add", "default"); |
| 5844 | } |
| 5845 | } |
| 5846 | |
| 5847 | /* [config-stmt] */ |
| 5848 | if (d->flags & LYS_CONFIG_MASK) { |
| 5849 | switch (target->nodetype) { |
| 5850 | case LYS_CONTAINER: |
| 5851 | case LYS_LEAF: |
| 5852 | case LYS_LEAFLIST: |
| 5853 | case LYS_LIST: |
| 5854 | case LYS_CHOICE: |
| 5855 | case LYS_ANYDATA: |
| 5856 | case LYS_ANYXML: |
| 5857 | break; |
| 5858 | default: |
| 5859 | AMEND_WRONG_NODETYPE("deviation", "add", "config"); |
| 5860 | } |
| 5861 | |
| 5862 | if (target->flags & LYS_CONFIG_MASK) { |
| 5863 | LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_REFERENCE, |
| 5864 | "Invalid deviation adding \"config\" property which already exists (with value \"config %s\").", |
| 5865 | target->flags & LYS_CONFIG_W ? "true" : "false"); |
| 5866 | ret = LY_EVALID; |
| 5867 | goto cleanup; |
| 5868 | } |
| 5869 | |
| 5870 | target->flags |= d->flags & LYS_CONFIG_MASK; |
| 5871 | } |
| 5872 | |
| 5873 | /* [mandatory-stmt] */ |
| 5874 | if (d->flags & LYS_MAND_MASK) { |
| 5875 | switch (target->nodetype) { |
| 5876 | case LYS_LEAF: |
| 5877 | case LYS_CHOICE: |
| 5878 | case LYS_ANYDATA: |
| 5879 | case LYS_ANYXML: |
| 5880 | break; |
| 5881 | default: |
| 5882 | AMEND_WRONG_NODETYPE("deviation", "add", "mandatory"); |
| 5883 | } |
| 5884 | |
| 5885 | if (target->flags & LYS_MAND_MASK) { |
| 5886 | LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_REFERENCE, |
| 5887 | "Invalid deviation adding \"mandatory\" property which already exists (with value \"mandatory %s\").", |
| 5888 | target->flags & LYS_MAND_TRUE ? "true" : "false"); |
| 5889 | ret = LY_EVALID; |
| 5890 | goto cleanup; |
| 5891 | } |
| 5892 | |
| 5893 | target->flags |= d->flags & LYS_MAND_MASK; |
| 5894 | } |
| 5895 | |
| 5896 | /* [min-elements-stmt] */ |
| 5897 | if (d->flags & LYS_SET_MIN) { |
| 5898 | switch (target->nodetype) { |
| 5899 | case LYS_LEAFLIST: |
| 5900 | num = &((struct lysp_node_leaflist *)target)->min; |
| 5901 | break; |
| 5902 | case LYS_LIST: |
| 5903 | num = &((struct lysp_node_list *)target)->min; |
| 5904 | break; |
| 5905 | default: |
| 5906 | AMEND_WRONG_NODETYPE("deviation", "add", "min-elements"); |
| 5907 | } |
| 5908 | |
| 5909 | if (target->flags & LYS_SET_MIN) { |
| 5910 | LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_REFERENCE, |
| 5911 | "Invalid deviation adding \"min-elements\" property which already exists (with value \"%u\").", *num); |
| 5912 | ret = LY_EVALID; |
| 5913 | goto cleanup; |
| 5914 | } |
| 5915 | |
| 5916 | *num = d->min; |
| 5917 | } |
| 5918 | |
| 5919 | /* [max-elements-stmt] */ |
| 5920 | if (d->flags & LYS_SET_MAX) { |
| 5921 | switch (target->nodetype) { |
| 5922 | case LYS_LEAFLIST: |
| 5923 | num = &((struct lysp_node_leaflist *)target)->max; |
| 5924 | break; |
| 5925 | case LYS_LIST: |
| 5926 | num = &((struct lysp_node_list *)target)->max; |
| 5927 | break; |
| 5928 | default: |
| 5929 | AMEND_WRONG_NODETYPE("deviation", "add", "max-elements"); |
| 5930 | } |
| 5931 | |
| 5932 | if (target->flags & LYS_SET_MAX) { |
| 5933 | if (*num) { |
| 5934 | LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_REFERENCE, |
| 5935 | "Invalid deviation adding \"max-elements\" property which already exists (with value \"%u\").", |
| 5936 | *num); |
| 5937 | } else { |
| 5938 | LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_REFERENCE, |
| 5939 | "Invalid deviation adding \"max-elements\" property which already exists (with value \"unbounded\")."); |
| 5940 | } |
| 5941 | ret = LY_EVALID; |
| 5942 | goto cleanup; |
| 5943 | } |
| 5944 | |
| 5945 | *num = d->max; |
| 5946 | } |
| 5947 | |
| 5948 | cleanup: |
| 5949 | return ret; |
| 5950 | } |
| 5951 | |
| 5952 | /** |
| 5953 | * @brief Apply deviate delete. |
| 5954 | * |
| 5955 | * @param[in] ctx Compile context. |
| 5956 | * @param[in] d Deviate delete to apply. |
| 5957 | * @param[in,out] target Deviation target. |
| 5958 | * @return LY_ERR value. |
| 5959 | */ |
| 5960 | static LY_ERR |
| 5961 | lys_apply_deviate_delete(struct lysc_ctx *ctx, struct lysp_deviate_del *d, struct lysp_node *target) |
| 5962 | { |
| 5963 | LY_ERR ret = LY_SUCCESS; |
| 5964 | struct lysp_restr **musts; |
| 5965 | LY_ARRAY_COUNT_TYPE u, v; |
| 5966 | struct lysp_qname **uniques, **dflts; |
| 5967 | |
| 5968 | #define DEV_DEL_ARRAY(DEV_ARRAY, ORIG_ARRAY, DEV_MEMBER, ORIG_MEMBER, FREE_FUNC, PROPERTY) \ |
| 5969 | LY_ARRAY_FOR(d->DEV_ARRAY, u) { \ |
| 5970 | int found = 0; \ |
| 5971 | LY_ARRAY_FOR(ORIG_ARRAY, v) { \ |
| 5972 | if (!strcmp(d->DEV_ARRAY[u]DEV_MEMBER, (ORIG_ARRAY)[v]ORIG_MEMBER)) { \ |
| 5973 | found = 1; \ |
| 5974 | break; \ |
| 5975 | } \ |
| 5976 | } \ |
| 5977 | if (!found) { \ |
| 5978 | LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_REFERENCE, \ |
| 5979 | "Invalid deviation deleting \"%s\" property \"%s\" which does not match any of the target's property values.", \ |
| 5980 | PROPERTY, d->DEV_ARRAY[u]DEV_MEMBER); \ |
| 5981 | ret = LY_EVALID; \ |
| 5982 | goto cleanup; \ |
| 5983 | } \ |
| 5984 | LY_ARRAY_DECREMENT(ORIG_ARRAY); \ |
| 5985 | FREE_FUNC(ctx->ctx, &(ORIG_ARRAY)[v]); \ |
| 5986 | memmove(&(ORIG_ARRAY)[v], &(ORIG_ARRAY)[v + 1], (LY_ARRAY_COUNT(ORIG_ARRAY) - v) * sizeof *(ORIG_ARRAY)); \ |
| 5987 | } \ |
| 5988 | if (!LY_ARRAY_COUNT(ORIG_ARRAY)) { \ |
| 5989 | LY_ARRAY_FREE(ORIG_ARRAY); \ |
| 5990 | ORIG_ARRAY = NULL; \ |
| 5991 | } |
| 5992 | |
| 5993 | #define DEV_CHECK_PRESENCE_VALUE(TYPE, MEMBER, DEVTYPE, PROPERTY, VALUE) \ |
| 5994 | if (!((TYPE)target)->MEMBER) { \ |
| 5995 | LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LY_VCODE_DEV_NOT_PRESENT, DEVTYPE, PROPERTY, VALUE); \ |
| 5996 | ret = LY_EVALID; \ |
| 5997 | goto cleanup; \ |
| 5998 | } else if (strcmp(((TYPE)target)->MEMBER, VALUE)) { \ |
| 5999 | LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_REFERENCE, \ |
| 6000 | "Invalid deviation deleting \"%s\" property \"%s\" which does not match the target's property value \"%s\".", \ |
| 6001 | PROPERTY, VALUE, ((TYPE)target)->MEMBER); \ |
| 6002 | ret = LY_EVALID; \ |
| 6003 | goto cleanup; \ |
| 6004 | } |
| 6005 | |
| 6006 | /* [units-stmt] */ |
| 6007 | if (d->units) { |
| 6008 | switch (target->nodetype) { |
| 6009 | case LYS_LEAF: |
| 6010 | case LYS_LEAFLIST: |
| 6011 | break; |
| 6012 | default: |
| 6013 | AMEND_WRONG_NODETYPE("deviation", "delete", "units"); |
| 6014 | } |
| 6015 | |
| 6016 | DEV_CHECK_PRESENCE_VALUE(struct lysp_node_leaf *, units, "deleting", "units", d->units); |
| 6017 | FREE_STRING(ctx->ctx, ((struct lysp_node_leaf *)target)->units); |
| 6018 | ((struct lysp_node_leaf *)target)->units = NULL; |
| 6019 | } |
| 6020 | |
| 6021 | /* *must-stmt */ |
| 6022 | if (d->musts) { |
| 6023 | switch (target->nodetype) { |
| 6024 | case LYS_CONTAINER: |
| 6025 | case LYS_LIST: |
| 6026 | case LYS_LEAF: |
| 6027 | case LYS_LEAFLIST: |
| 6028 | case LYS_ANYDATA: |
| 6029 | case LYS_ANYXML: |
| 6030 | musts = &((struct lysp_node_container *)target)->musts; |
| 6031 | break; |
| 6032 | case LYS_NOTIF: |
| 6033 | musts = &((struct lysp_notif *)target)->musts; |
| 6034 | break; |
| 6035 | case LYS_INPUT: |
| 6036 | case LYS_OUTPUT: |
| 6037 | musts = &((struct lysp_action_inout *)target)->musts; |
| 6038 | break; |
| 6039 | default: |
| 6040 | AMEND_WRONG_NODETYPE("deviation", "delete", "must"); |
| 6041 | } |
| 6042 | |
| 6043 | DEV_DEL_ARRAY(musts, *musts, .arg.str, .arg.str, lysp_restr_free, "must"); |
| 6044 | } |
| 6045 | |
| 6046 | /* *unique-stmt */ |
| 6047 | if (d->uniques) { |
| 6048 | switch (target->nodetype) { |
| 6049 | case LYS_LIST: |
| 6050 | break; |
| 6051 | default: |
| 6052 | AMEND_WRONG_NODETYPE("deviation", "delete", "unique"); |
| 6053 | } |
| 6054 | |
| 6055 | uniques = &((struct lysp_node_list *)target)->uniques; |
| 6056 | DEV_DEL_ARRAY(uniques, *uniques, , .str, lysp_qname_free, "unique"); |
| 6057 | } |
| 6058 | |
| 6059 | /* *default-stmt */ |
| 6060 | if (d->dflts) { |
| 6061 | switch (target->nodetype) { |
| 6062 | case LYS_LEAF: |
| 6063 | AMEND_CHECK_CARDINALITY(d->dflts, 1, "deviation", "default"); |
| 6064 | DEV_CHECK_PRESENCE_VALUE(struct lysp_node_leaf *, dflt.str, "deleting", "default", d->dflts[0]); |
| 6065 | |
| 6066 | FREE_STRING(ctx->ctx, ((struct lysp_node_leaf *)target)->dflt.str); |
| 6067 | ((struct lysp_node_leaf *)target)->dflt.str = NULL; |
| 6068 | break; |
| 6069 | case LYS_LEAFLIST: |
| 6070 | dflts = &((struct lysp_node_leaflist *)target)->dflts; |
| 6071 | DEV_DEL_ARRAY(dflts, *dflts, , .str, lysp_qname_free, "default"); |
| 6072 | break; |
| 6073 | case LYS_CHOICE: |
| 6074 | AMEND_CHECK_CARDINALITY(d->dflts, 1, "deviation", "default"); |
| 6075 | DEV_CHECK_PRESENCE_VALUE(struct lysp_node_choice *, dflt.str, "deleting", "default", d->dflts[0]); |
| 6076 | |
| 6077 | FREE_STRING(ctx->ctx, ((struct lysp_node_choice *)target)->dflt.str); |
| 6078 | ((struct lysp_node_choice *)target)->dflt.str = NULL; |
| 6079 | break; |
| 6080 | default: |
| 6081 | AMEND_WRONG_NODETYPE("deviation", "delete", "default"); |
| 6082 | } |
| 6083 | } |
| 6084 | |
| 6085 | cleanup: |
| 6086 | return ret; |
| 6087 | } |
| 6088 | |
| 6089 | /** |
| 6090 | * @brief Apply deviate replace. |
| 6091 | * |
| 6092 | * @param[in] ctx Compile context. |
| 6093 | * @param[in] d Deviate replace to apply. |
| 6094 | * @param[in,out] target Deviation target. |
| 6095 | * @return LY_ERR value. |
| 6096 | */ |
| 6097 | static LY_ERR |
| 6098 | lys_apply_deviate_replace(struct lysc_ctx *ctx, struct lysp_deviate_rpl *d, struct lysp_node *target) |
| 6099 | { |
| 6100 | LY_ERR ret = LY_SUCCESS; |
| 6101 | uint32_t *num; |
| 6102 | |
| 6103 | #define DEV_CHECK_PRESENCE(TYPE, MEMBER, DEVTYPE, PROPERTY, VALUE) \ |
| 6104 | if (!((TYPE)target)->MEMBER) { \ |
| 6105 | LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LY_VCODE_DEV_NOT_PRESENT, DEVTYPE, PROPERTY, VALUE); \ |
| 6106 | ret = LY_EVALID; \ |
| 6107 | goto cleanup; \ |
| 6108 | } |
| 6109 | |
| 6110 | /* [type-stmt] */ |
| 6111 | if (d->type) { |
| 6112 | switch (target->nodetype) { |
| 6113 | case LYS_LEAF: |
| 6114 | case LYS_LEAFLIST: |
| 6115 | break; |
| 6116 | default: |
| 6117 | AMEND_WRONG_NODETYPE("deviation", "replace", "type"); |
| 6118 | } |
| 6119 | |
| 6120 | lysp_type_free(ctx->ctx, &((struct lysp_node_leaf *)target)->type); |
| 6121 | lysp_type_dup(ctx->ctx, &((struct lysp_node_leaf *)target)->type, d->type); |
| 6122 | } |
| 6123 | |
| 6124 | /* [units-stmt] */ |
| 6125 | if (d->units) { |
| 6126 | switch (target->nodetype) { |
| 6127 | case LYS_LEAF: |
| 6128 | case LYS_LEAFLIST: |
| 6129 | break; |
| 6130 | default: |
| 6131 | AMEND_WRONG_NODETYPE("deviation", "replace", "units"); |
| 6132 | } |
| 6133 | |
| 6134 | DEV_CHECK_PRESENCE(struct lysp_node_leaf *, units, "replacing", "units", d->units); |
| 6135 | FREE_STRING(ctx->ctx, ((struct lysp_node_leaf *)target)->units); |
| 6136 | DUP_STRING_GOTO(ctx->ctx, d->units, ((struct lysp_node_leaf *)target)->units, ret, cleanup); |
| 6137 | } |
| 6138 | |
| 6139 | /* [default-stmt] */ |
| 6140 | if (d->dflt) { |
| 6141 | switch (target->nodetype) { |
| 6142 | case LYS_LEAF: |
| 6143 | DEV_CHECK_PRESENCE(struct lysp_node_leaf *, dflt.str, "replacing", "default", d->dflt); |
| 6144 | |
| 6145 | FREE_STRING(ctx->ctx, ((struct lysp_node_leaf *)target)->dflt.str); |
| 6146 | DUP_STRING_GOTO(ctx->ctx, d->dflt, ((struct lysp_node_leaf *)target)->dflt.str, ret, cleanup); |
| 6147 | ((struct lysp_node_leaf *)target)->dflt.mod = ctx->mod; |
| 6148 | break; |
| 6149 | case LYS_CHOICE: |
| 6150 | DEV_CHECK_PRESENCE(struct lysp_node_choice *, dflt.str, "replacing", "default", d->dflt); |
| 6151 | |
| 6152 | FREE_STRING(ctx->ctx, ((struct lysp_node_choice *)target)->dflt.str); |
| 6153 | DUP_STRING_GOTO(ctx->ctx, d->dflt, ((struct lysp_node_choice *)target)->dflt.str, ret, cleanup); |
| 6154 | ((struct lysp_node_choice *)target)->dflt.mod = ctx->mod; |
| 6155 | break; |
| 6156 | default: |
| 6157 | AMEND_WRONG_NODETYPE("deviation", "replace", "default"); |
| 6158 | } |
| 6159 | } |
| 6160 | |
| 6161 | /* [config-stmt] */ |
| 6162 | if (d->flags & LYS_CONFIG_MASK) { |
| 6163 | switch (target->nodetype) { |
| 6164 | case LYS_CONTAINER: |
| 6165 | case LYS_LEAF: |
| 6166 | case LYS_LEAFLIST: |
| 6167 | case LYS_LIST: |
| 6168 | case LYS_CHOICE: |
| 6169 | case LYS_ANYDATA: |
| 6170 | case LYS_ANYXML: |
| 6171 | break; |
| 6172 | default: |
| 6173 | AMEND_WRONG_NODETYPE("deviation", "replace", "config"); |
| 6174 | } |
| 6175 | |
| 6176 | if (!(target->flags & LYS_CONFIG_MASK)) { |
| 6177 | LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LY_VCODE_DEV_NOT_PRESENT, |
| 6178 | "replacing", "config", d->flags & LYS_CONFIG_W ? "config true" : "config false"); |
| 6179 | ret = LY_EVALID; |
| 6180 | goto cleanup; |
| 6181 | } |
| 6182 | |
| 6183 | target->flags &= ~LYS_CONFIG_MASK; |
| 6184 | target->flags |= d->flags & LYS_CONFIG_MASK; |
| 6185 | } |
| 6186 | |
| 6187 | /* [mandatory-stmt] */ |
| 6188 | if (d->flags & LYS_MAND_MASK) { |
| 6189 | switch (target->nodetype) { |
| 6190 | case LYS_LEAF: |
| 6191 | case LYS_CHOICE: |
| 6192 | case LYS_ANYDATA: |
| 6193 | case LYS_ANYXML: |
| 6194 | break; |
| 6195 | default: |
| 6196 | AMEND_WRONG_NODETYPE("deviation", "replace", "mandatory"); |
| 6197 | } |
| 6198 | |
| 6199 | if (!(target->flags & LYS_MAND_MASK)) { |
| 6200 | LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LY_VCODE_DEV_NOT_PRESENT, |
| 6201 | "replacing", "mandatory", d->flags & LYS_MAND_TRUE ? "mandatory true" : "mandatory false"); |
| 6202 | ret = LY_EVALID; |
| 6203 | goto cleanup; |
| 6204 | } |
| 6205 | |
| 6206 | target->flags &= ~LYS_MAND_MASK; |
| 6207 | target->flags |= d->flags & LYS_MAND_MASK; |
| 6208 | } |
| 6209 | |
| 6210 | /* [min-elements-stmt] */ |
| 6211 | if (d->flags & LYS_SET_MIN) { |
| 6212 | switch (target->nodetype) { |
| 6213 | case LYS_LEAFLIST: |
| 6214 | num = &((struct lysp_node_leaflist *)target)->min; |
| 6215 | break; |
| 6216 | case LYS_LIST: |
| 6217 | num = &((struct lysp_node_list *)target)->min; |
| 6218 | break; |
| 6219 | default: |
| 6220 | AMEND_WRONG_NODETYPE("deviation", "replace", "min-elements"); |
| 6221 | } |
| 6222 | |
| 6223 | if (!(target->flags & LYS_SET_MIN)) { |
| 6224 | LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_REFERENCE, |
| 6225 | "Invalid deviation replacing \"min-elements\" property which is not present."); |
| 6226 | ret = LY_EVALID; |
| 6227 | goto cleanup; |
| 6228 | } |
| 6229 | |
| 6230 | *num = d->min; |
| 6231 | } |
| 6232 | |
| 6233 | /* [max-elements-stmt] */ |
| 6234 | if (d->flags & LYS_SET_MAX) { |
| 6235 | switch (target->nodetype) { |
| 6236 | case LYS_LEAFLIST: |
| 6237 | num = &((struct lysp_node_leaflist *)target)->max; |
| 6238 | break; |
| 6239 | case LYS_LIST: |
| 6240 | num = &((struct lysp_node_list *)target)->max; |
| 6241 | break; |
| 6242 | default: |
| 6243 | AMEND_WRONG_NODETYPE("deviation", "replace", "max-elements"); |
| 6244 | } |
| 6245 | |
| 6246 | if (!(target->flags & LYS_SET_MAX)) { |
| 6247 | LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_REFERENCE, |
| 6248 | "Invalid deviation replacing \"max-elements\" property which is not present."); |
| 6249 | ret = LY_EVALID; |
| 6250 | goto cleanup; |
| 6251 | } |
| 6252 | |
| 6253 | *num = d->max; |
| 6254 | } |
| 6255 | |
| 6256 | cleanup: |
| 6257 | return ret; |
| 6258 | } |
| 6259 | |
| 6260 | /** |
| 6261 | * @brief Get module of a single nodeid node name test. |
| 6262 | * |
| 6263 | * @param[in] ctx libyang context. |
| 6264 | * @param[in] nametest Nametest with an optional prefix. |
| 6265 | * @param[in] nametest_len Length of @p nametest. |
| 6266 | * @param[in] local_mod Module to return in case of no prefix. |
| 6267 | * @param[out] name Optional pointer to the name test without the prefix. |
| 6268 | * @param[out] name_len Length of @p name. |
| 6269 | * @return Resolved module. |
| 6270 | */ |
| 6271 | static const struct lys_module * |
| 6272 | lys_schema_node_get_module(const struct ly_ctx *ctx, const char *nametest, size_t nametest_len, |
| 6273 | const struct lys_module *local_mod, const char **name, size_t *name_len) |
| 6274 | { |
| 6275 | const struct lys_module *target_mod; |
| 6276 | const char *ptr; |
| 6277 | |
| 6278 | ptr = ly_strnchr(nametest, ':', nametest_len); |
| 6279 | if (ptr) { |
| 6280 | target_mod = ly_resolve_prefix(ctx, nametest, ptr - nametest, LY_PREF_SCHEMA, (void *)local_mod); |
| 6281 | if (!target_mod) { |
| 6282 | LOGVAL(ctx, LY_VLOG_NONE, NULL, LYVE_REFERENCE, |
| 6283 | "Invalid absolute-schema-nodeid nametest \"%.*s\" - prefix \"%.*s\" not defined in module \"%s\".", |
| 6284 | nametest_len, nametest, ptr - nametest, nametest, local_mod->name); |
| 6285 | return NULL; |
| 6286 | } |
| 6287 | |
| 6288 | if (name) { |
| 6289 | *name = ptr + 1; |
| 6290 | *name_len = nametest_len - ((ptr - nametest) + 1); |
| 6291 | } |
| 6292 | } else { |
| 6293 | target_mod = local_mod; |
| 6294 | if (name) { |
| 6295 | *name = nametest; |
| 6296 | *name_len = nametest_len; |
| 6297 | } |
| 6298 | } |
| 6299 | |
| 6300 | return target_mod; |
| 6301 | } |
| 6302 | |
| 6303 | /** |
| 6304 | * @brief Check whether a parsed node matches a single schema nodeid name test. |
| 6305 | * |
| 6306 | * @param[in] pnode Parsed node to consider. |
| 6307 | * @param[in] pnode_mod Compiled @p pnode to-be module. |
| 6308 | * @param[in] mod Expected module. |
| 6309 | * @param[in] name Expected name. |
| 6310 | * @param[in] name_len Length of @p name. |
| 6311 | * @return Whether it is a match or not. |
| 6312 | */ |
| 6313 | static ly_bool |
| 6314 | lysp_schema_nodeid_match_pnode(const struct lysp_node *pnode, const struct lys_module *pnode_mod, |
| 6315 | const struct lys_module *mod, const char *name, size_t name_len) |
| 6316 | { |
| 6317 | const char *pname; |
| 6318 | |
| 6319 | /* compare with the module of the node */ |
| 6320 | if (pnode_mod != mod) { |
| 6321 | return 0; |
| 6322 | } |
| 6323 | |
| 6324 | /* compare names */ |
| 6325 | if (pnode->nodetype & (LYS_ACTION | LYS_RPC)) { |
| 6326 | pname = ((struct lysp_action *)pnode)->name; |
| 6327 | } else if (pnode->nodetype & (LYS_INPUT | LYS_OUTPUT)) { |
| 6328 | pname = (pnode->nodetype & LYS_INPUT) ? "input" : "output"; |
| 6329 | } else { |
| 6330 | pname = pnode->name; |
| 6331 | } |
| 6332 | if (ly_strncmp(pname, name, name_len)) { |
| 6333 | return 0; |
| 6334 | } |
| 6335 | |
| 6336 | return 1; |
| 6337 | } |
| 6338 | |
| 6339 | /** |
| 6340 | * @brief Check whether a compiled node matches a single schema nodeid name test. |
| 6341 | * |
| 6342 | * @param[in,out] node Compiled node to consider. On a match it is moved to its parent. |
| 6343 | * @param[in] mod Expected module. |
| 6344 | * @param[in] name Expected name. |
| 6345 | * @param[in] name_len Length of @p name. |
| 6346 | * @return Whether it is a match or not. |
| 6347 | */ |
| 6348 | static ly_bool |
| 6349 | lysp_schema_nodeid_match_node(const struct lysc_node **node, const struct lys_module *mod, const char *name, |
| 6350 | size_t name_len) |
| 6351 | { |
| 6352 | const struct lys_module *node_mod; |
| 6353 | const char *node_name; |
| 6354 | |
| 6355 | /* compare with the module of the node */ |
| 6356 | if ((*node)->nodetype == LYS_INPUT) { |
| 6357 | node_mod = ((struct lysc_node *)(((char *)*node) - offsetof(struct lysc_action, input)))->module; |
| 6358 | } else if ((*node)->nodetype == LYS_OUTPUT) { |
| 6359 | node_mod = ((struct lysc_node *)(((char *)*node) - offsetof(struct lysc_action, output)))->module; |
| 6360 | } else { |
| 6361 | node_mod = (*node)->module; |
| 6362 | } |
| 6363 | if (node_mod != mod) { |
| 6364 | return 0; |
| 6365 | } |
| 6366 | |
| 6367 | /* compare names */ |
| 6368 | if ((*node)->nodetype == LYS_INPUT) { |
| 6369 | node_name = "input"; |
| 6370 | } else if ((*node)->nodetype == LYS_OUTPUT) { |
| 6371 | node_name = "output"; |
| 6372 | } else { |
| 6373 | node_name = (*node)->name; |
| 6374 | } |
| 6375 | if (ly_strncmp(node_name, name, name_len)) { |
| 6376 | return 0; |
| 6377 | } |
| 6378 | |
| 6379 | if ((*node)->nodetype & (LYS_INPUT | LYS_OUTPUT)) { |
| 6380 | /* move up from input/output */ |
| 6381 | if ((*node)->nodetype == LYS_INPUT) { |
| 6382 | (*node) = (struct lysc_node *)(((char *)*node) - offsetof(struct lysc_action, input)); |
| 6383 | } else { |
| 6384 | (*node) = (struct lysc_node *)(((char *)*node) - offsetof(struct lysc_action, output)); |
| 6385 | } |
| 6386 | } else if ((*node)->parent && ((*node)->parent->nodetype & (LYS_RPC | LYS_ACTION))) { |
| 6387 | /* move to the input/output */ |
| 6388 | if ((*node)->flags & LYS_CONFIG_W) { |
| 6389 | *node = (struct lysc_node *)&((struct lysc_action *)(*node)->parent)->input; |
| 6390 | } else { |
| 6391 | *node = (struct lysc_node *)&((struct lysc_action *)(*node)->parent)->output; |
| 6392 | } |
| 6393 | } else { |
| 6394 | /* move to next parent */ |
| 6395 | *node = (*node)->parent; |
| 6396 | } |
| 6397 | |
| 6398 | return 1; |
| 6399 | } |
| 6400 | |
| 6401 | /** |
| 6402 | * @brief Check whether a node matches specific schema nodeid. |
| 6403 | * |
| 6404 | * @param[in] exp Parsed nodeid to match. |
| 6405 | * @param[in] exp_mod Module to use for nodes in @p exp without a prefix. |
| 6406 | * @param[in] ctx_node Initial context node that should match, only for descendant paths. |
| 6407 | * @param[in] parent First compiled parent to consider. If @p pnode is NULL, it is condered the node to be matched. |
| 6408 | * @param[in] pnode Parsed node to be matched. May be NULL if the target node was already compiled. |
| 6409 | * @param[in] pnode_mod Compiled @p pnode to-be module. |
| 6410 | * @return Whether it is a match or not. |
| 6411 | */ |
| 6412 | static ly_bool |
| 6413 | lysp_schema_nodeid_match(const struct lyxp_expr *exp, const struct lys_module *exp_mod, const struct lysc_node *ctx_node, |
| 6414 | const struct lysc_node *parent, const struct lysp_node *pnode, const struct lys_module *pnode_mod) |
| 6415 | { |
| 6416 | uint32_t i; |
| 6417 | const struct lys_module *mod; |
| 6418 | const char *name; |
| 6419 | size_t name_len; |
| 6420 | |
| 6421 | /* compare last node in the node ID */ |
| 6422 | i = exp->used - 1; |
| 6423 | |
| 6424 | /* get exp node ID module */ |
| 6425 | mod = lys_schema_node_get_module(exp_mod->ctx, exp->expr + exp->tok_pos[i], exp->tok_len[i], exp_mod, &name, &name_len); |
| 6426 | assert(mod); |
| 6427 | |
| 6428 | if (pnode) { |
| 6429 | /* compare on the last parsed-only node */ |
| 6430 | if (!lysp_schema_nodeid_match_pnode(pnode, pnode_mod, mod, name, name_len)) { |
| 6431 | return 0; |
| 6432 | } |
| 6433 | } else { |
| 6434 | /* using parent directly */ |
| 6435 | if (!lysp_schema_nodeid_match_node(&parent, mod, name, name_len)) { |
| 6436 | return 0; |
| 6437 | } |
| 6438 | } |
| 6439 | |
| 6440 | /* now compare all the compiled parents */ |
| 6441 | while (i > 1) { |
| 6442 | i -= 2; |
| 6443 | assert(exp->tokens[i] == LYXP_TOKEN_NAMETEST); |
| 6444 | |
| 6445 | if (!parent) { |
| 6446 | /* no more parents but path continues */ |
| 6447 | return 0; |
| 6448 | } |
| 6449 | |
| 6450 | /* get exp node ID module */ |
| 6451 | mod = lys_schema_node_get_module(exp_mod->ctx, exp->expr + exp->tok_pos[i], exp->tok_len[i], exp_mod, &name, |
| 6452 | &name_len); |
| 6453 | assert(mod); |
| 6454 | |
| 6455 | /* compare with the parent */ |
| 6456 | if (!lysp_schema_nodeid_match_node(&parent, mod, name, name_len)) { |
| 6457 | return 0; |
| 6458 | } |
| 6459 | } |
| 6460 | |
| 6461 | if (ctx_node && (ctx_node != parent)) { |
| 6462 | /* descendant path has not finished in the context node */ |
| 6463 | return 0; |
| 6464 | } else if (!ctx_node && parent) { |
| 6465 | /* some parent was not matched */ |
| 6466 | return 0; |
| 6467 | } |
| 6468 | |
| 6469 | return 1; |
| 6470 | } |
| 6471 | |
| 6472 | static void |
| 6473 | lysc_augment_free(const struct ly_ctx *ctx, struct lysc_augment *aug) |
| 6474 | { |
| 6475 | if (aug) { |
| 6476 | lyxp_expr_free(ctx, aug->nodeid); |
| 6477 | |
| 6478 | free(aug); |
| 6479 | } |
| 6480 | } |
| 6481 | |
| 6482 | static void |
| 6483 | lysc_deviation_free(const struct ly_ctx *ctx, struct lysc_deviation *dev) |
| 6484 | { |
| 6485 | if (dev) { |
| 6486 | lyxp_expr_free(ctx, dev->nodeid); |
| 6487 | LY_ARRAY_FREE(dev->devs); |
| 6488 | LY_ARRAY_FREE(dev->dev_mods); |
| 6489 | |
| 6490 | free(dev); |
| 6491 | } |
| 6492 | } |
| 6493 | |
| 6494 | static void |
| 6495 | lysc_refine_free(const struct ly_ctx *ctx, struct lysc_refine *rfn) |
| 6496 | { |
| 6497 | if (rfn) { |
| 6498 | lyxp_expr_free(ctx, rfn->nodeid); |
| 6499 | LY_ARRAY_FREE(rfn->rfns); |
| 6500 | |
| 6501 | free(rfn); |
| 6502 | } |
| 6503 | } |
| 6504 | |
| 6505 | static void |
| 6506 | lysp_dev_node_free(const struct ly_ctx *ctx, struct lysp_node *dev_pnode) |
| 6507 | { |
| 6508 | if (!dev_pnode) { |
| 6509 | return; |
| 6510 | } |
| 6511 | |
| 6512 | switch (dev_pnode->nodetype) { |
| 6513 | case LYS_CONTAINER: |
| 6514 | ((struct lysp_node_container *)dev_pnode)->child = NULL; |
| 6515 | break; |
| 6516 | case LYS_LIST: |
| 6517 | ((struct lysp_node_list *)dev_pnode)->child = NULL; |
| 6518 | break; |
| 6519 | case LYS_CHOICE: |
| 6520 | ((struct lysp_node_choice *)dev_pnode)->child = NULL; |
| 6521 | break; |
| 6522 | case LYS_CASE: |
| 6523 | ((struct lysp_node_case *)dev_pnode)->child = NULL; |
| 6524 | break; |
| 6525 | case LYS_LEAF: |
| 6526 | case LYS_LEAFLIST: |
| 6527 | case LYS_ANYXML: |
| 6528 | case LYS_ANYDATA: |
| 6529 | /* no children */ |
| 6530 | break; |
| 6531 | case LYS_NOTIF: |
| 6532 | ((struct lysp_notif *)dev_pnode)->data = NULL; |
| 6533 | lysp_notif_free((struct ly_ctx *)ctx, (struct lysp_notif *)dev_pnode); |
| 6534 | free(dev_pnode); |
| 6535 | return; |
| 6536 | case LYS_RPC: |
| 6537 | case LYS_ACTION: |
| 6538 | ((struct lysp_action *)dev_pnode)->input.data = NULL; |
| 6539 | ((struct lysp_action *)dev_pnode)->output.data = NULL; |
| 6540 | lysp_action_free((struct ly_ctx *)ctx, (struct lysp_action *)dev_pnode); |
| 6541 | free(dev_pnode); |
| 6542 | return; |
| 6543 | case LYS_INPUT: |
| 6544 | case LYS_OUTPUT: |
| 6545 | ((struct lysp_action_inout *)dev_pnode)->data = NULL; |
| 6546 | lysp_action_inout_free((struct ly_ctx *)ctx, (struct lysp_action_inout *)dev_pnode); |
| 6547 | free(dev_pnode); |
| 6548 | return; |
| 6549 | default: |
| 6550 | LOGINT(ctx); |
| 6551 | return; |
| 6552 | } |
| 6553 | |
| 6554 | lysp_node_free((struct ly_ctx *)ctx, dev_pnode); |
| 6555 | } |
| 6556 | |
| 6557 | /** |
| 6558 | * @brief Compile and apply any precompiled deviations and refines targetting a node. |
| 6559 | * |
| 6560 | * @param[in] ctx Compile context. |
| 6561 | * @param[in] pnode Parsed node to consider. |
| 6562 | * @param[in] parent First compiled parent of @p pnode. |
| 6563 | * @param[out] dev_pnode Copy of parsed node @p pnode with deviations and refines, if any. NULL if there are none. |
| 6564 | * @param[out] no_supported Whether a not-supported deviation is defined for the node. |
| 6565 | * @return LY_ERR value. |
| 6566 | */ |
| 6567 | static LY_ERR |
| 6568 | lys_compile_node_deviations_refines(struct lysc_ctx *ctx, const struct lysp_node *pnode, const struct lysc_node *parent, |
| 6569 | struct lysp_node **dev_pnode, ly_bool *not_supported) |
| 6570 | { |
| 6571 | LY_ERR ret = LY_SUCCESS; |
| 6572 | uint32_t i; |
| 6573 | LY_ARRAY_COUNT_TYPE u; |
| 6574 | struct lys_module *orig_mod = ctx->mod, *orig_mod_def = ctx->mod_def; |
| 6575 | char orig_path[LYSC_CTX_BUFSIZE]; |
| 6576 | struct lysc_refine *rfn; |
| 6577 | struct lysc_deviation *dev; |
| 6578 | struct lysp_deviation *dev_p; |
| 6579 | struct lysp_deviate *d; |
| 6580 | |
| 6581 | *dev_pnode = NULL; |
| 6582 | *not_supported = 0; |
| 6583 | |
| 6584 | for (i = 0; i < ctx->uses_rfns.count; ++i) { |
| 6585 | rfn = ctx->uses_rfns.objs[i]; |
| 6586 | |
| 6587 | if (!lysp_schema_nodeid_match(rfn->nodeid, ctx->mod, rfn->nodeid_ctx_node, parent, pnode, ctx->mod)) { |
| 6588 | /* not our target node */ |
| 6589 | continue; |
| 6590 | } |
| 6591 | |
| 6592 | if (!*dev_pnode) { |
| 6593 | /* first refine on this node, create a copy first */ |
| 6594 | LY_CHECK_GOTO(ret = lysp_dup_single(ctx->ctx, pnode, 1, dev_pnode), cleanup); |
| 6595 | } |
| 6596 | |
| 6597 | /* apply all the refines by changing (the copy of) the parsed node */ |
| 6598 | LY_ARRAY_FOR(rfn->rfns, u) { |
| 6599 | /* apply refine, keep the current path and add to it */ |
| 6600 | lysc_update_path(ctx, NULL, "{refine}"); |
| 6601 | lysc_update_path(ctx, NULL, rfn->rfns[u]->nodeid); |
| 6602 | ret = lys_apply_refine(ctx, rfn->rfns[u], *dev_pnode); |
| 6603 | lysc_update_path(ctx, NULL, NULL); |
| 6604 | lysc_update_path(ctx, NULL, NULL); |
| 6605 | LY_CHECK_GOTO(ret, cleanup); |
| 6606 | } |
| 6607 | |
| 6608 | /* refine was applied, remove it */ |
| 6609 | lysc_refine_free(ctx->ctx, rfn); |
| 6610 | ly_set_rm_index(&ctx->uses_rfns, i, NULL); |
| 6611 | |
| 6612 | /* all the refines for one target node are in one structure, we are done */ |
| 6613 | break; |
| 6614 | } |
| 6615 | |
| 6616 | for (i = 0; i < ctx->devs.count; ++i) { |
| 6617 | dev = ctx->devs.objs[i]; |
| 6618 | |
| 6619 | if (!lysp_schema_nodeid_match(dev->nodeid, dev->nodeid_mod, NULL, parent, pnode, ctx->mod_def)) { |
| 6620 | /* not our target node */ |
| 6621 | continue; |
| 6622 | } |
| 6623 | |
| 6624 | if (dev->not_supported) { |
| 6625 | /* it is not supported, no more deviations */ |
| 6626 | *not_supported = 1; |
| 6627 | goto dev_applied; |
| 6628 | } |
| 6629 | |
| 6630 | if (!*dev_pnode) { |
| 6631 | /* first deviation on this node, create a copy first */ |
| 6632 | LY_CHECK_GOTO(ret = lysp_dup_single(ctx->ctx, pnode, 1, dev_pnode), cleanup); |
| 6633 | } |
| 6634 | |
| 6635 | /* apply all the deviates by changing (the copy of) the parsed node */ |
| 6636 | LY_ARRAY_FOR(dev->devs, u) { |
| 6637 | dev_p = dev->devs[u]; |
| 6638 | LY_LIST_FOR(dev_p->deviates, d) { |
| 6639 | /* generate correct path */ |
| 6640 | strcpy(orig_path, ctx->path); |
| 6641 | ctx->path_len = 1; |
| 6642 | ctx->mod = (struct lys_module *)dev->dev_mods[u]; |
| 6643 | ctx->mod_def = (struct lys_module *)dev->dev_mods[u]; |
| 6644 | lysc_update_path(ctx, NULL, "{deviation}"); |
| 6645 | lysc_update_path(ctx, NULL, dev_p->nodeid); |
| 6646 | |
| 6647 | switch (d->mod) { |
| 6648 | case LYS_DEV_ADD: |
| 6649 | ret = lys_apply_deviate_add(ctx, (struct lysp_deviate_add *)d, *dev_pnode); |
| 6650 | break; |
| 6651 | case LYS_DEV_DELETE: |
| 6652 | ret = lys_apply_deviate_delete(ctx, (struct lysp_deviate_del *)d, *dev_pnode); |
| 6653 | break; |
| 6654 | case LYS_DEV_REPLACE: |
| 6655 | ret = lys_apply_deviate_replace(ctx, (struct lysp_deviate_rpl *)d, *dev_pnode); |
| 6656 | break; |
| 6657 | default: |
| 6658 | LOGINT(ctx->ctx); |
| 6659 | ret = LY_EINT; |
| 6660 | } |
| 6661 | |
| 6662 | /* restore previous path */ |
| 6663 | strcpy(ctx->path, orig_path); |
| 6664 | ctx->path_len = strlen(ctx->path); |
| 6665 | ctx->mod = orig_mod; |
| 6666 | ctx->mod_def = orig_mod_def; |
| 6667 | |
| 6668 | LY_CHECK_GOTO(ret, cleanup); |
| 6669 | } |
| 6670 | } |
| 6671 | |
| 6672 | dev_applied: |
| 6673 | /* deviation was applied, remove it */ |
| 6674 | lysc_deviation_free(ctx->ctx, dev); |
| 6675 | ly_set_rm_index(&ctx->devs, i, NULL); |
| 6676 | |
| 6677 | /* all the deviations for one target node are in one structure, we are done */ |
| 6678 | break; |
| 6679 | } |
| 6680 | |
| 6681 | cleanup: |
| 6682 | if (ret) { |
| 6683 | lysp_dev_node_free(ctx->ctx, *dev_pnode); |
| 6684 | *dev_pnode = NULL; |
| 6685 | *not_supported = 0; |
| 6686 | } |
| 6687 | return ret; |
| 6688 | } |
| 6689 | |
| 6690 | /** |
| 6691 | * @brief Compile and apply any precompiled top-level or uses augments targetting a node. |
| 6692 | * |
| 6693 | * @param[in] ctx Compile context. |
| 6694 | * @param[in] node Compiled node to consider. |
| 6695 | * @return LY_ERR value. |
| 6696 | */ |
| 6697 | static LY_ERR |
| 6698 | lys_compile_node_augments(struct lysc_ctx *ctx, struct lysc_node *node) |
| 6699 | { |
| 6700 | LY_ERR ret = LY_SUCCESS; |
| 6701 | struct lys_module *orig_mod = ctx->mod, *orig_mod_def = ctx->mod_def; |
| 6702 | uint32_t i; |
| 6703 | char orig_path[LYSC_CTX_BUFSIZE]; |
| 6704 | struct lysc_augment *aug; |
| 6705 | |
| 6706 | /* uses augments */ |
| 6707 | for (i = 0; i < ctx->uses_augs.count; ) { |
| 6708 | aug = ctx->uses_augs.objs[i]; |
| 6709 | |
| 6710 | if (!lysp_schema_nodeid_match(aug->nodeid, ctx->mod, aug->nodeid_ctx_node, node, NULL, NULL)) { |
| 6711 | /* not our target node */ |
| 6712 | ++i; |
| 6713 | continue; |
| 6714 | } |
| 6715 | |
| 6716 | /* apply augment, keep the current path and add to it */ |
| 6717 | lysc_update_path(ctx, NULL, "{augment}"); |
| 6718 | lysc_update_path(ctx, NULL, aug->aug_p->nodeid); |
| 6719 | ret = lys_compile_augment(ctx, aug->aug_p, node); |
| 6720 | lysc_update_path(ctx, NULL, NULL); |
| 6721 | lysc_update_path(ctx, NULL, NULL); |
| 6722 | LY_CHECK_GOTO(ret, cleanup); |
| 6723 | |
| 6724 | /* augment was applied, remove it (index may have changed because other augments could have been applied) */ |
Michal Vasko | 7f45cf2 | 2020-10-01 12:49:44 +0200 | [diff] [blame] | 6725 | ly_set_rm(&ctx->uses_augs, aug, NULL); |
Michal Vasko | af70245 | 2020-10-02 09:02:55 +0200 | [diff] [blame^] | 6726 | lysc_augment_free(ctx->ctx, aug); |
Michal Vasko | 7f45cf2 | 2020-10-01 12:49:44 +0200 | [diff] [blame] | 6727 | } |
| 6728 | |
| 6729 | /* top-level augments */ |
| 6730 | for (i = 0; i < ctx->augs.count; ) { |
| 6731 | aug = ctx->augs.objs[i]; |
| 6732 | |
| 6733 | if (!lysp_schema_nodeid_match(aug->nodeid, aug->nodeid_mod, NULL, node, NULL, NULL)) { |
| 6734 | /* not our target node */ |
| 6735 | ++i; |
| 6736 | continue; |
| 6737 | } |
| 6738 | |
| 6739 | /* apply augment, use the path and modules from the augment */ |
| 6740 | strcpy(orig_path, ctx->path); |
| 6741 | ctx->path_len = 1; |
| 6742 | lysc_update_path(ctx, NULL, "{augment}"); |
| 6743 | lysc_update_path(ctx, NULL, aug->aug_p->nodeid); |
| 6744 | ctx->mod = (struct lys_module *)aug->nodeid_mod; |
| 6745 | ctx->mod_def = (struct lys_module *)aug->nodeid_mod; |
| 6746 | ret = lys_compile_augment(ctx, aug->aug_p, node); |
| 6747 | strcpy(ctx->path, orig_path); |
| 6748 | ctx->path_len = strlen(ctx->path); |
| 6749 | LY_CHECK_GOTO(ret, cleanup); |
| 6750 | |
| 6751 | /* augment was applied, remove it */ |
Michal Vasko | 7f45cf2 | 2020-10-01 12:49:44 +0200 | [diff] [blame] | 6752 | ly_set_rm(&ctx->augs, aug, NULL); |
Michal Vasko | af70245 | 2020-10-02 09:02:55 +0200 | [diff] [blame^] | 6753 | lysc_augment_free(ctx->ctx, aug); |
Michal Vasko | 7f45cf2 | 2020-10-01 12:49:44 +0200 | [diff] [blame] | 6754 | } |
| 6755 | |
| 6756 | cleanup: |
| 6757 | ctx->mod = orig_mod; |
| 6758 | ctx->mod_def = orig_mod_def; |
| 6759 | return ret; |
| 6760 | } |
| 6761 | |
| 6762 | /** |
| 6763 | * @brief Prepare a top-level augment to be applied during data nodes compilation. |
| 6764 | * |
| 6765 | * @param[in] ctx Compile context. |
| 6766 | * @param[in] aug_p Parsed augment to be applied. |
| 6767 | * @param[in] mod_def Local module for @p aug_p. |
| 6768 | * @return LY_ERR value. |
| 6769 | */ |
| 6770 | static LY_ERR |
| 6771 | lys_precompile_own_augment(struct lysc_ctx *ctx, struct lysp_augment *aug_p, const struct lys_module *mod_def) |
| 6772 | { |
| 6773 | LY_ERR ret = LY_SUCCESS; |
| 6774 | struct lyxp_expr *exp = NULL; |
| 6775 | struct lysc_augment *aug; |
| 6776 | const struct lys_module *mod; |
| 6777 | |
| 6778 | /* parse its target, it was already parsed and fully checked (except for the existence of the nodes) */ |
| 6779 | ret = lyxp_expr_parse(ctx->ctx, aug_p->nodeid, strlen(aug_p->nodeid), 0, &exp); |
| 6780 | LY_CHECK_GOTO(ret, cleanup); |
| 6781 | |
| 6782 | mod = lys_schema_node_get_module(ctx->ctx, exp->expr + exp->tok_pos[1], exp->tok_len[1], mod_def, NULL, NULL); |
| 6783 | LY_CHECK_ERR_GOTO(!mod, LOGINT(ctx->ctx); ret = LY_EINT, cleanup); |
| 6784 | if (mod != ctx->mod) { |
| 6785 | /* augment for another module, ignore */ |
| 6786 | goto cleanup; |
| 6787 | } |
| 6788 | |
| 6789 | /* allocate new compiled augment and store it in the set */ |
| 6790 | aug = calloc(1, sizeof *aug); |
| 6791 | LY_CHECK_ERR_GOTO(!aug, LOGMEM(ctx->ctx); ret = LY_EMEM, cleanup); |
| 6792 | LY_CHECK_GOTO(ret = ly_set_add(&ctx->augs, aug, LY_SET_OPT_USEASLIST, NULL), cleanup); |
| 6793 | |
| 6794 | aug->nodeid = exp; |
| 6795 | exp = NULL; |
| 6796 | aug->nodeid_mod = mod_def; |
| 6797 | aug->aug_p = aug_p; |
| 6798 | |
| 6799 | cleanup: |
| 6800 | lyxp_expr_free(ctx->ctx, exp); |
| 6801 | return ret; |
| 6802 | } |
| 6803 | |
| 6804 | /** |
| 6805 | * @brief Prepare all top-level augments for the current module to be applied during data nodes compilation. |
| 6806 | * |
| 6807 | * @param[in] ctx Compile context. |
| 6808 | * @return LY_ERR value. |
| 6809 | */ |
| 6810 | static LY_ERR |
| 6811 | lys_precompile_own_augments(struct lysc_ctx *ctx) |
| 6812 | { |
| 6813 | LY_ARRAY_COUNT_TYPE u, v, w; |
| 6814 | const struct lys_module *aug_mod; |
| 6815 | |
| 6816 | LY_ARRAY_FOR(ctx->mod->augmented_by, u) { |
| 6817 | aug_mod = ctx->mod->augmented_by[u]; |
| 6818 | |
| 6819 | /* collect all module augments */ |
| 6820 | LY_ARRAY_FOR(aug_mod->parsed->augments, v) { |
| 6821 | LY_CHECK_RET(lys_precompile_own_augment(ctx, &aug_mod->parsed->augments[v], aug_mod)); |
| 6822 | } |
| 6823 | |
| 6824 | /* collect all submodules augments */ |
| 6825 | LY_ARRAY_FOR(aug_mod->parsed->includes, v) { |
| 6826 | LY_ARRAY_FOR(aug_mod->parsed->includes[v].submodule->augments, w) { |
| 6827 | LY_CHECK_RET(lys_precompile_own_augment(ctx, &aug_mod->parsed->includes[v].submodule->augments[w], aug_mod)); |
| 6828 | } |
| 6829 | } |
| 6830 | } |
| 6831 | |
| 6832 | return LY_SUCCESS; |
| 6833 | } |
| 6834 | |
| 6835 | /** |
| 6836 | * @brief Prepare a deviation to be applied during data nodes compilation. |
| 6837 | * |
| 6838 | * @param[in] ctx Compile context. |
| 6839 | * @param[in] dev_p Parsed deviation to be applied. |
| 6840 | * @param[in] mod_def Local module for @p dev_p. |
| 6841 | * @return LY_ERR value. |
| 6842 | */ |
| 6843 | static LY_ERR |
| 6844 | lys_precompile_own_deviation(struct lysc_ctx *ctx, struct lysp_deviation *dev_p, const struct lys_module *mod_def) |
| 6845 | { |
| 6846 | LY_ERR ret = LY_SUCCESS; |
| 6847 | struct lysc_deviation *dev = NULL; |
| 6848 | struct lyxp_expr *exp = NULL; |
| 6849 | struct lysp_deviation **new_dev; |
| 6850 | const struct lys_module *mod, **new_dev_mod; |
| 6851 | uint32_t i; |
| 6852 | |
| 6853 | /* parse its target, it was already parsed and fully checked (except for the existence of the nodes) */ |
| 6854 | ret = lyxp_expr_parse(ctx->ctx, dev_p->nodeid, strlen(dev_p->nodeid), 0, &exp); |
| 6855 | LY_CHECK_GOTO(ret, cleanup); |
| 6856 | |
| 6857 | mod = lys_schema_node_get_module(ctx->ctx, exp->expr + exp->tok_pos[1], exp->tok_len[1], mod_def, NULL, NULL); |
| 6858 | LY_CHECK_ERR_GOTO(!mod, LOGINT(ctx->ctx); ret = LY_EINT, cleanup); |
| 6859 | if (mod != ctx->mod) { |
| 6860 | /* deviation for another module, ignore */ |
| 6861 | goto cleanup; |
| 6862 | } |
| 6863 | |
| 6864 | /* try to find the node in already compiled deviations */ |
| 6865 | for (i = 0; i < ctx->devs.count; ++i) { |
| 6866 | if (lys_abs_schema_nodeid_match(ctx->ctx, exp, mod_def, ((struct lysc_deviation *)ctx->devs.objs[i])->nodeid, |
| 6867 | ((struct lysc_deviation *)ctx->devs.objs[i])->nodeid_mod)) { |
| 6868 | dev = ctx->devs.objs[i]; |
| 6869 | break; |
| 6870 | } |
| 6871 | } |
| 6872 | |
| 6873 | if (!dev) { |
| 6874 | /* allocate new compiled deviation */ |
| 6875 | dev = calloc(1, sizeof *dev); |
| 6876 | LY_CHECK_ERR_GOTO(!dev, LOGMEM(ctx->ctx); ret = LY_EMEM, cleanup); |
| 6877 | LY_CHECK_GOTO(ret = ly_set_add(&ctx->devs, dev, LY_SET_OPT_USEASLIST, NULL), cleanup); |
| 6878 | |
| 6879 | dev->nodeid = exp; |
| 6880 | exp = NULL; |
| 6881 | dev->nodeid_mod = mod_def; |
| 6882 | } |
| 6883 | |
| 6884 | /* add new parsed deviation structure */ |
| 6885 | LY_ARRAY_NEW_GOTO(ctx->ctx, dev->devs, new_dev, ret, cleanup); |
| 6886 | *new_dev = dev_p; |
| 6887 | LY_ARRAY_NEW_GOTO(ctx->ctx, dev->dev_mods, new_dev_mod, ret, cleanup); |
| 6888 | *new_dev_mod = mod_def; |
| 6889 | |
| 6890 | cleanup: |
| 6891 | lyxp_expr_free(ctx->ctx, exp); |
| 6892 | return ret; |
| 6893 | } |
| 6894 | |
| 6895 | /** |
| 6896 | * @brief Prepare all deviations for the current module to be applied during data nodes compilation. |
| 6897 | * |
| 6898 | * @param[in] ctx Compile context. |
| 6899 | * @return LY_ERR value. |
| 6900 | */ |
| 6901 | static LY_ERR |
| 6902 | lys_precompile_own_deviations(struct lysc_ctx *ctx) |
| 6903 | { |
| 6904 | LY_ARRAY_COUNT_TYPE u, v, w; |
| 6905 | const struct lys_module *dev_mod; |
| 6906 | struct lysc_deviation *dev; |
| 6907 | struct lysp_deviate *d; |
| 6908 | int not_supported; |
| 6909 | uint32_t i; |
| 6910 | |
| 6911 | LY_ARRAY_FOR(ctx->mod->deviated_by, u) { |
| 6912 | dev_mod = ctx->mod->deviated_by[u]; |
| 6913 | |
| 6914 | /* compile all module deviations */ |
| 6915 | LY_ARRAY_FOR(dev_mod->parsed->deviations, v) { |
| 6916 | LY_CHECK_RET(lys_precompile_own_deviation(ctx, &dev_mod->parsed->deviations[v], dev_mod)); |
| 6917 | } |
| 6918 | |
| 6919 | /* compile all submodules deviations */ |
| 6920 | LY_ARRAY_FOR(dev_mod->parsed->includes, v) { |
| 6921 | LY_ARRAY_FOR(dev_mod->parsed->includes[v].submodule->deviations, w) { |
| 6922 | LY_CHECK_RET(lys_precompile_own_deviation(ctx, &dev_mod->parsed->includes[v].submodule->deviations[w], dev_mod)); |
| 6923 | } |
| 6924 | } |
| 6925 | } |
| 6926 | |
| 6927 | /* set not-supported flags for all the deviations */ |
| 6928 | for (i = 0; i < ctx->devs.count; ++i) { |
| 6929 | dev = ctx->devs.objs[i]; |
| 6930 | not_supported = 0; |
| 6931 | |
| 6932 | LY_ARRAY_FOR(dev->devs, u) { |
| 6933 | LY_LIST_FOR(dev->devs[u]->deviates, d) { |
| 6934 | if (d->mod == LYS_DEV_NOT_SUPPORTED) { |
| 6935 | not_supported = 1; |
| 6936 | break; |
| 6937 | } |
| 6938 | } |
| 6939 | if (not_supported) { |
| 6940 | break; |
| 6941 | } |
| 6942 | } |
| 6943 | if (not_supported && (LY_ARRAY_COUNT(dev->devs) > 1)) { |
| 6944 | LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SEMANTICS, |
| 6945 | "Multiple deviations of \"%s\" with one of them being \"not-supported\".", dev->nodeid->expr); |
| 6946 | return LY_EVALID; |
| 6947 | } |
| 6948 | |
| 6949 | dev->not_supported = not_supported; |
| 6950 | } |
| 6951 | |
| 6952 | return LY_SUCCESS; |
| 6953 | } |
| 6954 | |
Michal Vasko | 20424b4 | 2020-08-31 12:29:38 +0200 | [diff] [blame] | 6955 | /** |
Radek Krejci | a304538 | 2018-11-22 14:30:31 +0100 | [diff] [blame] | 6956 | * @brief Compile parsed schema node information. |
| 6957 | * @param[in] ctx Compile context |
Michal Vasko | 7f45cf2 | 2020-10-01 12:49:44 +0200 | [diff] [blame] | 6958 | * @param[in] pnode Parsed schema node. |
Radek Krejci | a304538 | 2018-11-22 14:30:31 +0100 | [diff] [blame] | 6959 | * @param[in] parent Compiled parent node where the current node is supposed to be connected. It is |
| 6960 | * NULL for top-level nodes, in such a case the module where the node will be connected is taken from |
| 6961 | * the compile context. |
Radek Krejci | b1b5915 | 2019-01-07 13:21:56 +0100 | [diff] [blame] | 6962 | * @param[in] uses_status If the node is being placed instead of uses, here we have the uses's status value (as node's flags). |
| 6963 | * Zero means no uses, non-zero value with no status bit set mean the default status. |
Radek Krejci | a304538 | 2018-11-22 14:30:31 +0100 | [diff] [blame] | 6964 | * @return LY_ERR value - LY_SUCCESS or LY_EVALID. |
| 6965 | */ |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 6966 | static LY_ERR |
Michal Vasko | 7f45cf2 | 2020-10-01 12:49:44 +0200 | [diff] [blame] | 6967 | lys_compile_node(struct lysc_ctx *ctx, struct lysp_node *pnode, struct lysc_node *parent, uint16_t uses_status, |
| 6968 | struct ly_set *child_set) |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 6969 | { |
Radek Krejci | 1c54f46 | 2020-05-12 17:25:34 +0200 | [diff] [blame] | 6970 | LY_ERR ret = LY_SUCCESS; |
Radek Krejci | c6b4f44 | 2020-08-12 14:45:18 +0200 | [diff] [blame] | 6971 | struct lysc_node *node = NULL; |
Radek Krejci | 00b874b | 2019-02-12 10:54:50 +0100 | [diff] [blame] | 6972 | struct lysc_when **when; |
Michal Vasko | 7f45cf2 | 2020-10-01 12:49:44 +0200 | [diff] [blame] | 6973 | struct lysp_node *dev_pnode = NULL, *orig_pnode = pnode; |
Radek Krejci | 1deb5be | 2020-08-26 16:43:36 +0200 | [diff] [blame] | 6974 | LY_ARRAY_COUNT_TYPE u; |
Michal Vasko | 7f45cf2 | 2020-10-01 12:49:44 +0200 | [diff] [blame] | 6975 | ly_bool not_supported; |
Michal Vasko | 22df3f0 | 2020-08-24 13:29:22 +0200 | [diff] [blame] | 6976 | LY_ERR (*node_compile_spec)(struct lysc_ctx *, struct lysp_node *, struct lysc_node *); |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 6977 | |
Michal Vasko | 7f45cf2 | 2020-10-01 12:49:44 +0200 | [diff] [blame] | 6978 | if (pnode->nodetype != LYS_USES) { |
| 6979 | lysc_update_path(ctx, parent, pnode->name); |
Radek Krejci | 327de16 | 2019-06-14 12:52:07 +0200 | [diff] [blame] | 6980 | } else { |
| 6981 | lysc_update_path(ctx, NULL, "{uses}"); |
Michal Vasko | 7f45cf2 | 2020-10-01 12:49:44 +0200 | [diff] [blame] | 6982 | lysc_update_path(ctx, NULL, pnode->name); |
Radek Krejci | 327de16 | 2019-06-14 12:52:07 +0200 | [diff] [blame] | 6983 | } |
| 6984 | |
Michal Vasko | 7f45cf2 | 2020-10-01 12:49:44 +0200 | [diff] [blame] | 6985 | switch (pnode->nodetype) { |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 6986 | case LYS_CONTAINER: |
Michal Vasko | 22df3f0 | 2020-08-24 13:29:22 +0200 | [diff] [blame] | 6987 | node = (struct lysc_node *)calloc(1, sizeof(struct lysc_node_container)); |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 6988 | node_compile_spec = lys_compile_node_container; |
| 6989 | break; |
| 6990 | case LYS_LEAF: |
Michal Vasko | 22df3f0 | 2020-08-24 13:29:22 +0200 | [diff] [blame] | 6991 | node = (struct lysc_node *)calloc(1, sizeof(struct lysc_node_leaf)); |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 6992 | node_compile_spec = lys_compile_node_leaf; |
| 6993 | break; |
| 6994 | case LYS_LIST: |
Michal Vasko | 22df3f0 | 2020-08-24 13:29:22 +0200 | [diff] [blame] | 6995 | node = (struct lysc_node *)calloc(1, sizeof(struct lysc_node_list)); |
Radek Krejci | 9bb94eb | 2018-12-04 16:48:35 +0100 | [diff] [blame] | 6996 | node_compile_spec = lys_compile_node_list; |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 6997 | break; |
| 6998 | case LYS_LEAFLIST: |
Michal Vasko | 22df3f0 | 2020-08-24 13:29:22 +0200 | [diff] [blame] | 6999 | node = (struct lysc_node *)calloc(1, sizeof(struct lysc_node_leaflist)); |
Radek Krejci | 0e5d838 | 2018-11-28 16:37:53 +0100 | [diff] [blame] | 7000 | node_compile_spec = lys_compile_node_leaflist; |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 7001 | break; |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 7002 | case LYS_CHOICE: |
Michal Vasko | 22df3f0 | 2020-08-24 13:29:22 +0200 | [diff] [blame] | 7003 | node = (struct lysc_node *)calloc(1, sizeof(struct lysc_node_choice)); |
Radek Krejci | 056d0a8 | 2018-12-06 16:57:25 +0100 | [diff] [blame] | 7004 | node_compile_spec = lys_compile_node_choice; |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 7005 | break; |
Michal Vasko | 7f45cf2 | 2020-10-01 12:49:44 +0200 | [diff] [blame] | 7006 | case LYS_CASE: |
Michal Vasko | 20424b4 | 2020-08-31 12:29:38 +0200 | [diff] [blame] | 7007 | node = (struct lysc_node *)calloc(1, sizeof(struct lysc_node_case)); |
| 7008 | node_compile_spec = lys_compile_node_case; |
| 7009 | break; |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 7010 | case LYS_ANYXML: |
| 7011 | case LYS_ANYDATA: |
Michal Vasko | 22df3f0 | 2020-08-24 13:29:22 +0200 | [diff] [blame] | 7012 | node = (struct lysc_node *)calloc(1, sizeof(struct lysc_node_anydata)); |
Radek Krejci | 9800fb8 | 2018-12-13 14:26:23 +0100 | [diff] [blame] | 7013 | node_compile_spec = lys_compile_node_any; |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 7014 | break; |
Radek Krejci | e86bf77 | 2018-12-14 11:39:53 +0100 | [diff] [blame] | 7015 | case LYS_USES: |
Michal Vasko | 7f45cf2 | 2020-10-01 12:49:44 +0200 | [diff] [blame] | 7016 | ret = lys_compile_uses(ctx, (struct lysp_node_uses *)pnode, parent, child_set); |
Radek Krejci | 327de16 | 2019-06-14 12:52:07 +0200 | [diff] [blame] | 7017 | lysc_update_path(ctx, NULL, NULL); |
| 7018 | lysc_update_path(ctx, NULL, NULL); |
| 7019 | return ret; |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 7020 | default: |
| 7021 | LOGINT(ctx->ctx); |
| 7022 | return LY_EINT; |
| 7023 | } |
| 7024 | LY_CHECK_ERR_RET(!node, LOGMEM(ctx->ctx), LY_EMEM); |
Michal Vasko | 7f45cf2 | 2020-10-01 12:49:44 +0200 | [diff] [blame] | 7025 | |
| 7026 | /* compile any deviations for this node */ |
| 7027 | LY_CHECK_ERR_RET(ret = lys_compile_node_deviations_refines(ctx, pnode, parent, &dev_pnode, ¬_supported), |
| 7028 | free(node), ret); |
| 7029 | if (not_supported) { |
| 7030 | free(node); |
| 7031 | lysc_update_path(ctx, NULL, NULL); |
| 7032 | return LY_SUCCESS; |
| 7033 | } else if (dev_pnode) { |
| 7034 | pnode = dev_pnode; |
| 7035 | } |
| 7036 | |
| 7037 | node->nodetype = pnode->nodetype; |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 7038 | node->module = ctx->mod; |
| 7039 | node->prev = node; |
Michal Vasko | 7f45cf2 | 2020-10-01 12:49:44 +0200 | [diff] [blame] | 7040 | node->flags = pnode->flags & LYS_FLAGS_COMPILED_MASK; |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 7041 | |
| 7042 | /* config */ |
Michal Vasko | 20424b4 | 2020-08-31 12:29:38 +0200 | [diff] [blame] | 7043 | ret = lys_compile_config(ctx, node, parent); |
| 7044 | LY_CHECK_GOTO(ret, error); |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 7045 | |
Michal Vasko | 20424b4 | 2020-08-31 12:29:38 +0200 | [diff] [blame] | 7046 | /* list ordering */ |
Radek Krejci | a6d5773 | 2018-11-29 13:40:37 +0100 | [diff] [blame] | 7047 | if (node->nodetype & (LYS_LIST | LYS_LEAFLIST)) { |
| 7048 | if ((node->flags & LYS_CONFIG_R) && (node->flags & LYS_ORDBY_MASK)) { |
Radek Krejci | fc11bd7 | 2019-04-11 16:00:05 +0200 | [diff] [blame] | 7049 | LOGWRN(ctx->ctx, "The ordered-by statement is ignored in lists representing %s (%s).", |
Radek Krejci | 0f96988 | 2020-08-21 16:56:47 +0200 | [diff] [blame] | 7050 | (ctx->options & LYSC_OPT_RPC_OUTPUT) ? "RPC/action output parameters" : |
| 7051 | (ctx->options & LYSC_OPT_NOTIFICATION) ? "notification content" : "state data", ctx->path); |
Radek Krejci | a6d5773 | 2018-11-29 13:40:37 +0100 | [diff] [blame] | 7052 | node->flags &= ~LYS_ORDBY_MASK; |
| 7053 | node->flags |= LYS_ORDBY_SYSTEM; |
| 7054 | } else if (!(node->flags & LYS_ORDBY_MASK)) { |
| 7055 | /* default ordering is system */ |
| 7056 | node->flags |= LYS_ORDBY_SYSTEM; |
| 7057 | } |
| 7058 | } |
| 7059 | |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 7060 | /* status - it is not inherited by specification, but it does not make sense to have |
| 7061 | * current in deprecated or deprecated in obsolete, so we do print warning and inherit status */ |
Michal Vasko | 20424b4 | 2020-08-31 12:29:38 +0200 | [diff] [blame] | 7062 | LY_CHECK_GOTO(ret = lys_compile_status(ctx, &node->flags, uses_status ? uses_status : (parent ? parent->flags : 0)), error); |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 7063 | |
Radek Krejci | ec4da80 | 2019-05-02 13:02:41 +0200 | [diff] [blame] | 7064 | if (!(ctx->options & LYSC_OPT_FREE_SP)) { |
Michal Vasko | 7f45cf2 | 2020-10-01 12:49:44 +0200 | [diff] [blame] | 7065 | node->sp = orig_pnode; |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 7066 | } |
Michal Vasko | 7f45cf2 | 2020-10-01 12:49:44 +0200 | [diff] [blame] | 7067 | DUP_STRING_GOTO(ctx->ctx, pnode->name, node->name, ret, error); |
| 7068 | DUP_STRING_GOTO(ctx->ctx, pnode->dsc, node->dsc, ret, error); |
| 7069 | DUP_STRING_GOTO(ctx->ctx, pnode->ref, node->ref, ret, error); |
| 7070 | if (pnode->when) { |
Radek Krejci | 00b874b | 2019-02-12 10:54:50 +0100 | [diff] [blame] | 7071 | LY_ARRAY_NEW_GOTO(ctx->ctx, node->when, when, ret, error); |
Michal Vasko | 7f45cf2 | 2020-10-01 12:49:44 +0200 | [diff] [blame] | 7072 | LY_CHECK_GOTO(ret = lys_compile_when(ctx, pnode->when, pnode->flags, node, when), error); |
Michal Vasko | 175012e | 2019-11-06 15:49:14 +0100 | [diff] [blame] | 7073 | |
| 7074 | if (!(ctx->options & LYSC_OPT_GROUPING)) { |
| 7075 | /* do not check "when" semantics in a grouping */ |
Michal Vasko | 7f45cf2 | 2020-10-01 12:49:44 +0200 | [diff] [blame] | 7076 | LY_CHECK_GOTO(ret = ly_set_add(&ctx->xpath, node, 0, NULL), error); |
Michal Vasko | 175012e | 2019-11-06 15:49:14 +0100 | [diff] [blame] | 7077 | } |
Radek Krejci | 00b874b | 2019-02-12 10:54:50 +0100 | [diff] [blame] | 7078 | } |
Michal Vasko | 7f45cf2 | 2020-10-01 12:49:44 +0200 | [diff] [blame] | 7079 | COMPILE_ARRAY_GOTO(ctx, pnode->iffeatures, node->iffeatures, u, lys_compile_iffeature, ret, error); |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 7080 | |
Michal Vasko | 20424b4 | 2020-08-31 12:29:38 +0200 | [diff] [blame] | 7081 | /* insert into parent's children/compiled module (we can no longer free the node separately on error) */ |
Michal Vasko | 7f45cf2 | 2020-10-01 12:49:44 +0200 | [diff] [blame] | 7082 | LY_CHECK_GOTO(ret = lys_compile_node_connect(ctx, parent, node), cleanup); |
| 7083 | |
| 7084 | /* connect any augments */ |
| 7085 | LY_CHECK_GOTO(ret = lys_compile_node_augments(ctx, node), cleanup); |
Michal Vasko | 20424b4 | 2020-08-31 12:29:38 +0200 | [diff] [blame] | 7086 | |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 7087 | /* nodetype-specific part */ |
Michal Vasko | 7f45cf2 | 2020-10-01 12:49:44 +0200 | [diff] [blame] | 7088 | LY_CHECK_GOTO(ret = node_compile_spec(ctx, pnode, node), cleanup); |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 7089 | |
Michal Vasko | 20424b4 | 2020-08-31 12:29:38 +0200 | [diff] [blame] | 7090 | /* final compilation tasks that require the node to be connected */ |
Michal Vasko | 7f45cf2 | 2020-10-01 12:49:44 +0200 | [diff] [blame] | 7091 | COMPILE_EXTS_GOTO(ctx, pnode->exts, node->exts, node, LYEXT_PAR_NODE, ret, cleanup); |
Radek Krejci | fe90963 | 2019-02-12 15:34:42 +0100 | [diff] [blame] | 7092 | if (node->flags & LYS_MAND_TRUE) { |
Michal Vasko | 20424b4 | 2020-08-31 12:29:38 +0200 | [diff] [blame] | 7093 | /* inherit LYS_MAND_TRUE in parent containers */ |
Radek Krejci | fe90963 | 2019-02-12 15:34:42 +0100 | [diff] [blame] | 7094 | lys_compile_mandatory_parents(parent, 1); |
| 7095 | } |
| 7096 | |
Michal Vasko | 7f45cf2 | 2020-10-01 12:49:44 +0200 | [diff] [blame] | 7097 | if (child_set) { |
| 7098 | /* add the new node into set */ |
| 7099 | LY_CHECK_GOTO(ret = ly_set_add(child_set, node, LY_SET_OPT_USEASLIST, NULL), cleanup); |
| 7100 | } |
| 7101 | |
Radek Krejci | 327de16 | 2019-06-14 12:52:07 +0200 | [diff] [blame] | 7102 | lysc_update_path(ctx, NULL, NULL); |
Michal Vasko | 7f45cf2 | 2020-10-01 12:49:44 +0200 | [diff] [blame] | 7103 | lysp_dev_node_free(ctx->ctx, dev_pnode); |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 7104 | return LY_SUCCESS; |
| 7105 | |
| 7106 | error: |
| 7107 | lysc_node_free(ctx->ctx, node); |
Michal Vasko | 7f45cf2 | 2020-10-01 12:49:44 +0200 | [diff] [blame] | 7108 | cleanup: |
| 7109 | if (dev_pnode) { |
| 7110 | LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_OTHER, "Compilation of a deviated and/or refined node failed."); |
| 7111 | lysp_dev_node_free(ctx->ctx, dev_pnode); |
| 7112 | } |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 7113 | return ret; |
| 7114 | } |
| 7115 | |
Michal Vasko | ccc062a | 2020-08-13 08:34:50 +0200 | [diff] [blame] | 7116 | /** |
Michal Vasko | 7f45cf2 | 2020-10-01 12:49:44 +0200 | [diff] [blame] | 7117 | * @brief Add a module reference into an array, checks for duplicities. |
Michal Vasko | ccc062a | 2020-08-13 08:34:50 +0200 | [diff] [blame] | 7118 | * |
| 7119 | * @param[in] ctx Compile context. |
Michal Vasko | 7f45cf2 | 2020-10-01 12:49:44 +0200 | [diff] [blame] | 7120 | * @param[in] mod Module reference to add. |
| 7121 | * @param[in,out] mod_array Module sized array to add to. |
Michal Vasko | ccc062a | 2020-08-13 08:34:50 +0200 | [diff] [blame] | 7122 | * @return LY_ERR value. |
| 7123 | */ |
| 7124 | static LY_ERR |
Michal Vasko | 7f45cf2 | 2020-10-01 12:49:44 +0200 | [diff] [blame] | 7125 | lys_array_add_mod_ref(struct lysc_ctx *ctx, struct lys_module *mod, struct lys_module ***mod_array) |
Michal Vasko | ccc062a | 2020-08-13 08:34:50 +0200 | [diff] [blame] | 7126 | { |
Michal Vasko | 7f45cf2 | 2020-10-01 12:49:44 +0200 | [diff] [blame] | 7127 | LY_ARRAY_COUNT_TYPE u; |
| 7128 | struct lys_module **new_mod; |
Michal Vasko | ccc062a | 2020-08-13 08:34:50 +0200 | [diff] [blame] | 7129 | |
Michal Vasko | 7f45cf2 | 2020-10-01 12:49:44 +0200 | [diff] [blame] | 7130 | LY_ARRAY_FOR(*mod_array, u) { |
| 7131 | if ((*mod_array)[u] == mod) { |
| 7132 | /* already there */ |
| 7133 | return LY_EEXIST; |
Michal Vasko | ccc062a | 2020-08-13 08:34:50 +0200 | [diff] [blame] | 7134 | } |
| 7135 | } |
| 7136 | |
Michal Vasko | 7f45cf2 | 2020-10-01 12:49:44 +0200 | [diff] [blame] | 7137 | /* add the new module ref */ |
| 7138 | LY_ARRAY_NEW_RET(ctx->ctx, *mod_array, new_mod, LY_EMEM); |
| 7139 | *new_mod = mod; |
Michal Vasko | ba99a3e | 2020-08-18 15:50:05 +0200 | [diff] [blame] | 7140 | |
| 7141 | return LY_SUCCESS; |
Michal Vasko | ba99a3e | 2020-08-18 15:50:05 +0200 | [diff] [blame] | 7142 | } |
| 7143 | |
Michal Vasko | ccc062a | 2020-08-13 08:34:50 +0200 | [diff] [blame] | 7144 | /** |
Michal Vasko | 7f45cf2 | 2020-10-01 12:49:44 +0200 | [diff] [blame] | 7145 | * @brief Compile top-level augments and deviations defined in the current module. |
| 7146 | * Generally, just add the module refence to the target modules. |
Michal Vasko | ccc062a | 2020-08-13 08:34:50 +0200 | [diff] [blame] | 7147 | * |
| 7148 | * @param[in] ctx Compile context. |
Michal Vasko | ccc062a | 2020-08-13 08:34:50 +0200 | [diff] [blame] | 7149 | * @return LY_ERR value. |
| 7150 | */ |
| 7151 | static LY_ERR |
Michal Vasko | 7f45cf2 | 2020-10-01 12:49:44 +0200 | [diff] [blame] | 7152 | lys_precompile_augments_deviations(struct lysc_ctx *ctx) |
Michal Vasko | ccc062a | 2020-08-13 08:34:50 +0200 | [diff] [blame] | 7153 | { |
Michal Vasko | 7f45cf2 | 2020-10-01 12:49:44 +0200 | [diff] [blame] | 7154 | LY_ERR ret = LY_SUCCESS; |
| 7155 | LY_ARRAY_COUNT_TYPE u, v; |
| 7156 | const struct lysp_module *mod_p; |
| 7157 | const struct lysc_node *target; |
Michal Vasko | ccc062a | 2020-08-13 08:34:50 +0200 | [diff] [blame] | 7158 | struct lys_module *mod; |
Michal Vasko | 7f45cf2 | 2020-10-01 12:49:44 +0200 | [diff] [blame] | 7159 | struct lysp_submodule *submod; |
| 7160 | ly_bool has_dev = 0; |
| 7161 | uint16_t flags; |
| 7162 | uint32_t idx, opt_prev = ctx->options; |
Michal Vasko | ccc062a | 2020-08-13 08:34:50 +0200 | [diff] [blame] | 7163 | |
Michal Vasko | 7f45cf2 | 2020-10-01 12:49:44 +0200 | [diff] [blame] | 7164 | mod_p = ctx->mod->parsed; |
| 7165 | |
| 7166 | if (mod_p->mod->implemented == 1) { |
| 7167 | /* it was already implemented and all the augments and deviations fully applied */ |
| 7168 | return LY_SUCCESS; |
Michal Vasko | ccc062a | 2020-08-13 08:34:50 +0200 | [diff] [blame] | 7169 | } |
| 7170 | |
Michal Vasko | 7f45cf2 | 2020-10-01 12:49:44 +0200 | [diff] [blame] | 7171 | LY_ARRAY_FOR(mod_p->augments, u) { |
| 7172 | lysc_update_path(ctx, NULL, "{augment}"); |
| 7173 | lysc_update_path(ctx, NULL, mod_p->augments[u].nodeid); |
Michal Vasko | ccc062a | 2020-08-13 08:34:50 +0200 | [diff] [blame] | 7174 | |
Michal Vasko | 7f45cf2 | 2020-10-01 12:49:44 +0200 | [diff] [blame] | 7175 | /* get target module */ |
| 7176 | ret = lys_nodeid_check(ctx, mod_p->augments[u].nodeid, 1, &mod, NULL); |
| 7177 | LY_CHECK_RET(ret); |
Michal Vasko | ccc062a | 2020-08-13 08:34:50 +0200 | [diff] [blame] | 7178 | |
Michal Vasko | 7f45cf2 | 2020-10-01 12:49:44 +0200 | [diff] [blame] | 7179 | /* add this module into the target module augmented_by, if not there already from previous augments */ |
| 7180 | lys_array_add_mod_ref(ctx, ctx->mod, &mod->augmented_by); |
Michal Vasko | ccc062a | 2020-08-13 08:34:50 +0200 | [diff] [blame] | 7181 | |
Michal Vasko | 7f45cf2 | 2020-10-01 12:49:44 +0200 | [diff] [blame] | 7182 | /* if we are compiling this module, we cannot add augments to it yet */ |
| 7183 | if (mod != ctx->mod) { |
| 7184 | /* apply the augment, find the target node first */ |
| 7185 | flags = 0; |
| 7186 | ret = lysc_resolve_schema_nodeid(ctx, mod_p->augments[u].nodeid, 0, NULL, ctx->mod_def, 0, &target, &flags); |
Michal Vasko | ba99a3e | 2020-08-18 15:50:05 +0200 | [diff] [blame] | 7187 | LY_CHECK_RET(ret); |
| 7188 | |
Michal Vasko | 7f45cf2 | 2020-10-01 12:49:44 +0200 | [diff] [blame] | 7189 | /* apply the augment */ |
| 7190 | ctx->options |= flags; |
| 7191 | ret = lys_compile_augment(ctx, &mod_p->augments[u], (struct lysc_node *)target); |
| 7192 | ctx->options = opt_prev; |
| 7193 | LY_CHECK_RET(ret); |
Radek Krejci | ccd20f1 | 2019-02-15 14:12:27 +0100 | [diff] [blame] | 7194 | } |
Radek Krejci | 327de16 | 2019-06-14 12:52:07 +0200 | [diff] [blame] | 7195 | |
| 7196 | lysc_update_path(ctx, NULL, NULL); |
Michal Vasko | 7f45cf2 | 2020-10-01 12:49:44 +0200 | [diff] [blame] | 7197 | lysc_update_path(ctx, NULL, NULL); |
Radek Krejci | ccd20f1 | 2019-02-15 14:12:27 +0100 | [diff] [blame] | 7198 | } |
| 7199 | |
Michal Vasko | 7f45cf2 | 2020-10-01 12:49:44 +0200 | [diff] [blame] | 7200 | LY_ARRAY_FOR(mod_p->deviations, u) { |
| 7201 | /* get target module */ |
| 7202 | lysc_update_path(ctx, NULL, "{deviation}"); |
| 7203 | lysc_update_path(ctx, NULL, mod_p->deviations[u].nodeid); |
| 7204 | ret = lys_nodeid_check(ctx, mod_p->deviations[u].nodeid, 1, &mod, NULL); |
| 7205 | lysc_update_path(ctx, NULL, NULL); |
| 7206 | lysc_update_path(ctx, NULL, NULL); |
| 7207 | LY_CHECK_RET(ret); |
Radek Krejci | ba03a5a | 2020-08-27 14:40:41 +0200 | [diff] [blame] | 7208 | |
Michal Vasko | 7f45cf2 | 2020-10-01 12:49:44 +0200 | [diff] [blame] | 7209 | /* add this module into the target module deviated_by, if not there already from previous deviations */ |
| 7210 | lys_array_add_mod_ref(ctx, ctx->mod, &mod->deviated_by); |
| 7211 | |
| 7212 | /* new deviation added to the target module */ |
| 7213 | has_dev = 1; |
| 7214 | } |
| 7215 | |
| 7216 | /* the same for augments and deviations in submodules */ |
| 7217 | LY_ARRAY_FOR(mod_p->includes, v) { |
| 7218 | submod = mod_p->includes[v].submodule; |
| 7219 | LY_ARRAY_FOR(submod->augments, u) { |
| 7220 | lysc_update_path(ctx, NULL, "{augment}"); |
| 7221 | lysc_update_path(ctx, NULL, submod->augments[u].nodeid); |
| 7222 | |
| 7223 | ret = lys_nodeid_check(ctx, submod->augments[u].nodeid, 1, &mod, NULL); |
| 7224 | LY_CHECK_RET(ret); |
| 7225 | |
| 7226 | lys_array_add_mod_ref(ctx, ctx->mod, &mod->augmented_by); |
| 7227 | if (mod != ctx->mod) { |
| 7228 | flags = 0; |
| 7229 | ret = lysc_resolve_schema_nodeid(ctx, mod_p->augments[u].nodeid, 0, NULL, ctx->mod_def, 0, &target, &flags); |
| 7230 | LY_CHECK_RET(ret); |
| 7231 | |
| 7232 | ctx->options |= flags; |
| 7233 | ret = lys_compile_augment(ctx, &submod->augments[u], (struct lysc_node *)target); |
| 7234 | ctx->options = opt_prev; |
| 7235 | LY_CHECK_RET(ret); |
Radek Krejci | f538ce5 | 2019-03-05 10:46:14 +0100 | [diff] [blame] | 7236 | } |
Michal Vasko | 7f45cf2 | 2020-10-01 12:49:44 +0200 | [diff] [blame] | 7237 | |
| 7238 | lysc_update_path(ctx, NULL, NULL); |
| 7239 | lysc_update_path(ctx, NULL, NULL); |
Radek Krejci | f538ce5 | 2019-03-05 10:46:14 +0100 | [diff] [blame] | 7240 | } |
| 7241 | |
Michal Vasko | 7f45cf2 | 2020-10-01 12:49:44 +0200 | [diff] [blame] | 7242 | LY_ARRAY_FOR(submod->deviations, u) { |
| 7243 | lysc_update_path(ctx, NULL, "{deviation}"); |
| 7244 | lysc_update_path(ctx, NULL, submod->deviations[u].nodeid); |
| 7245 | ret = lys_nodeid_check(ctx, submod->deviations[u].nodeid, 1, &mod, NULL); |
| 7246 | lysc_update_path(ctx, NULL, NULL); |
| 7247 | lysc_update_path(ctx, NULL, NULL); |
| 7248 | LY_CHECK_RET(ret); |
Radek Krejci | fc11bd7 | 2019-04-11 16:00:05 +0200 | [diff] [blame] | 7249 | |
Michal Vasko | 7f45cf2 | 2020-10-01 12:49:44 +0200 | [diff] [blame] | 7250 | lys_array_add_mod_ref(ctx, ctx->mod, &mod->deviated_by); |
| 7251 | has_dev = 1; |
Michal Vasko | e614320 | 2020-07-03 13:02:08 +0200 | [diff] [blame] | 7252 | } |
Radek Krejci | ccd20f1 | 2019-02-15 14:12:27 +0100 | [diff] [blame] | 7253 | } |
| 7254 | |
Michal Vasko | 7f45cf2 | 2020-10-01 12:49:44 +0200 | [diff] [blame] | 7255 | if (!has_dev) { |
| 7256 | /* no need to recompile any modules */ |
| 7257 | return LY_SUCCESS; |
| 7258 | } |
| 7259 | |
| 7260 | /* free all the modules in descending order */ |
| 7261 | idx = ctx->ctx->list.count; |
| 7262 | do { |
| 7263 | --idx; |
| 7264 | mod = ctx->ctx->list.objs[idx]; |
| 7265 | /* skip this module */ |
| 7266 | if (mod == mod_p->mod) { |
| 7267 | continue; |
| 7268 | } |
| 7269 | |
| 7270 | if (mod->implemented && mod->compiled) { |
| 7271 | /* keep information about features state in the module */ |
| 7272 | lys_feature_precompile_revert(ctx, mod); |
| 7273 | |
| 7274 | /* free the module */ |
| 7275 | lysc_module_free(mod->compiled, NULL); |
| 7276 | mod->compiled = NULL; |
| 7277 | } |
| 7278 | } while (idx); |
| 7279 | |
| 7280 | /* recompile all the modules in ascending order */ |
| 7281 | for (idx = 0; idx < ctx->ctx->list.count; ++idx) { |
| 7282 | mod = ctx->ctx->list.objs[idx]; |
| 7283 | |
| 7284 | /* skip this module */ |
| 7285 | if (mod == mod_p->mod) { |
| 7286 | continue; |
| 7287 | } |
| 7288 | |
| 7289 | if (mod->implemented) { |
| 7290 | /* compile */ |
| 7291 | LY_CHECK_GOTO(ret = lys_compile(mod, LYSC_OPT_INTERNAL), cleanup); |
| 7292 | } |
| 7293 | } |
Radek Krejci | ccd20f1 | 2019-02-15 14:12:27 +0100 | [diff] [blame] | 7294 | |
| 7295 | cleanup: |
Radek Krejci | d05cbd9 | 2018-12-05 14:26:40 +0100 | [diff] [blame] | 7296 | return ret; |
| 7297 | } |
| 7298 | |
Radek Krejci | 335332a | 2019-09-05 13:03:35 +0200 | [diff] [blame] | 7299 | static void * |
| 7300 | lys_compile_extension_instance_storage(enum ly_stmt stmt, struct lysc_ext_substmt *substmts) |
| 7301 | { |
Radek Krejci | 1deb5be | 2020-08-26 16:43:36 +0200 | [diff] [blame] | 7302 | for (LY_ARRAY_COUNT_TYPE u = 0; substmts[u].stmt; ++u) { |
Radek Krejci | 335332a | 2019-09-05 13:03:35 +0200 | [diff] [blame] | 7303 | if (substmts[u].stmt == stmt) { |
| 7304 | return substmts[u].storage; |
| 7305 | } |
| 7306 | } |
| 7307 | return NULL; |
| 7308 | } |
| 7309 | |
| 7310 | LY_ERR |
| 7311 | lys_compile_extension_instance(struct lysc_ctx *ctx, const struct lysp_ext_instance *ext, struct lysc_ext_substmt *substmts) |
| 7312 | { |
| 7313 | LY_ERR ret = LY_EVALID, r; |
Radek Krejci | 1deb5be | 2020-08-26 16:43:36 +0200 | [diff] [blame] | 7314 | LY_ARRAY_COUNT_TYPE u; |
Radek Krejci | 335332a | 2019-09-05 13:03:35 +0200 | [diff] [blame] | 7315 | struct lysp_stmt *stmt; |
Michal Vasko | 7f45cf2 | 2020-10-01 12:49:44 +0200 | [diff] [blame] | 7316 | struct lysp_qname qname; |
Radek Krejci | 335332a | 2019-09-05 13:03:35 +0200 | [diff] [blame] | 7317 | void *parsed = NULL, **compiled = NULL; |
Radek Krejci | 335332a | 2019-09-05 13:03:35 +0200 | [diff] [blame] | 7318 | |
| 7319 | /* check for invalid substatements */ |
| 7320 | for (stmt = ext->child; stmt; stmt = stmt->next) { |
Radek Krejci | f56e2a4 | 2019-09-09 14:15:25 +0200 | [diff] [blame] | 7321 | if (stmt->flags & (LYS_YIN_ATTR | LYS_YIN_ARGUMENT)) { |
| 7322 | continue; |
| 7323 | } |
Radek Krejci | 335332a | 2019-09-05 13:03:35 +0200 | [diff] [blame] | 7324 | for (u = 0; substmts[u].stmt; ++u) { |
| 7325 | if (substmts[u].stmt == stmt->kw) { |
| 7326 | break; |
| 7327 | } |
| 7328 | } |
| 7329 | if (!substmts[u].stmt) { |
Radek Krejci | ad5963b | 2019-09-06 16:03:05 +0200 | [diff] [blame] | 7330 | LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SYNTAX_YANG, "Invalid keyword \"%s\" as a child of \"%s%s%s\" extension instance.", |
| 7331 | stmt->stmt, ext->name, ext->argument ? " " : "", ext->argument ? ext->argument : ""); |
Radek Krejci | 335332a | 2019-09-05 13:03:35 +0200 | [diff] [blame] | 7332 | goto cleanup; |
| 7333 | } |
Radek Krejci | 335332a | 2019-09-05 13:03:35 +0200 | [diff] [blame] | 7334 | } |
| 7335 | |
Radek Krejci | ad5963b | 2019-09-06 16:03:05 +0200 | [diff] [blame] | 7336 | /* TODO store inherited data, e.g. status first, but mark them somehow to allow to overwrite them and not detect duplicity */ |
| 7337 | |
Radek Krejci | 335332a | 2019-09-05 13:03:35 +0200 | [diff] [blame] | 7338 | /* keep order of the processing the same as the order in the defined substmts, |
| 7339 | * the order is important for some of the statements depending on others (e.g. type needs status and units) */ |
| 7340 | for (u = 0; substmts[u].stmt; ++u) { |
Radek Krejci | 857189e | 2020-09-01 13:26:36 +0200 | [diff] [blame] | 7341 | ly_bool stmt_present = 0; |
Radek Krejci | ad5963b | 2019-09-06 16:03:05 +0200 | [diff] [blame] | 7342 | |
Radek Krejci | 335332a | 2019-09-05 13:03:35 +0200 | [diff] [blame] | 7343 | for (stmt = ext->child; stmt; stmt = stmt->next) { |
| 7344 | if (substmts[u].stmt != stmt->kw) { |
| 7345 | continue; |
| 7346 | } |
| 7347 | |
Radek Krejci | ad5963b | 2019-09-06 16:03:05 +0200 | [diff] [blame] | 7348 | stmt_present = 1; |
Radek Krejci | 335332a | 2019-09-05 13:03:35 +0200 | [diff] [blame] | 7349 | if (substmts[u].storage) { |
| 7350 | switch (stmt->kw) { |
Radek Krejci | ad5963b | 2019-09-06 16:03:05 +0200 | [diff] [blame] | 7351 | case LY_STMT_STATUS: |
| 7352 | assert(substmts[u].cardinality < LY_STMT_CARD_SOME); |
| 7353 | LY_CHECK_ERR_GOTO(r = lysp_stmt_parse(ctx, stmt, stmt->kw, &substmts[u].storage, /* TODO */ NULL), ret = r, cleanup); |
| 7354 | break; |
| 7355 | case LY_STMT_UNITS: { |
| 7356 | const char **units; |
| 7357 | |
| 7358 | if (substmts[u].cardinality < LY_STMT_CARD_SOME) { |
| 7359 | /* single item */ |
| 7360 | if (*((const char **)substmts[u].storage)) { |
| 7361 | LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LY_VCODE_DUPSTMT, stmt->stmt); |
| 7362 | goto cleanup; |
| 7363 | } |
| 7364 | units = (const char **)substmts[u].storage; |
| 7365 | } else { |
| 7366 | /* sized array */ |
| 7367 | const char ***units_array = (const char ***)substmts[u].storage; |
| 7368 | LY_ARRAY_NEW_GOTO(ctx->ctx, *units_array, units, ret, cleanup); |
| 7369 | } |
Radek Krejci | 011e4aa | 2020-09-04 15:22:31 +0200 | [diff] [blame] | 7370 | r = lydict_insert(ctx->ctx, stmt->arg, 0, units); |
| 7371 | LY_CHECK_ERR_GOTO(r, ret = r, cleanup); |
Radek Krejci | ad5963b | 2019-09-06 16:03:05 +0200 | [diff] [blame] | 7372 | break; |
| 7373 | } |
Radek Krejci | 335332a | 2019-09-05 13:03:35 +0200 | [diff] [blame] | 7374 | case LY_STMT_TYPE: { |
| 7375 | uint16_t *flags = lys_compile_extension_instance_storage(LY_STMT_STATUS, substmts); |
| 7376 | const char **units = lys_compile_extension_instance_storage(LY_STMT_UNITS, substmts); |
| 7377 | |
| 7378 | if (substmts[u].cardinality < LY_STMT_CARD_SOME) { |
| 7379 | /* single item */ |
Michal Vasko | 22df3f0 | 2020-08-24 13:29:22 +0200 | [diff] [blame] | 7380 | if (*(struct lysc_type **)substmts[u].storage) { |
Radek Krejci | 335332a | 2019-09-05 13:03:35 +0200 | [diff] [blame] | 7381 | LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LY_VCODE_DUPSTMT, stmt->stmt); |
| 7382 | goto cleanup; |
| 7383 | } |
| 7384 | compiled = substmts[u].storage; |
| 7385 | } else { |
| 7386 | /* sized array */ |
Michal Vasko | 22df3f0 | 2020-08-24 13:29:22 +0200 | [diff] [blame] | 7387 | struct lysc_type ***types = (struct lysc_type ***)substmts[u].storage, **type = NULL; |
Radek Krejci | 335332a | 2019-09-05 13:03:35 +0200 | [diff] [blame] | 7388 | LY_ARRAY_NEW_GOTO(ctx->ctx, *types, type, ret, cleanup); |
Michal Vasko | 22df3f0 | 2020-08-24 13:29:22 +0200 | [diff] [blame] | 7389 | compiled = (void *)type; |
Radek Krejci | 335332a | 2019-09-05 13:03:35 +0200 | [diff] [blame] | 7390 | } |
| 7391 | |
Radek Krejci | ad5963b | 2019-09-06 16:03:05 +0200 | [diff] [blame] | 7392 | LY_CHECK_ERR_GOTO(r = lysp_stmt_parse(ctx, stmt, stmt->kw, &parsed, NULL), ret = r, cleanup); |
Michal Vasko | 22df3f0 | 2020-08-24 13:29:22 +0200 | [diff] [blame] | 7393 | LY_CHECK_ERR_GOTO(r = lys_compile_type(ctx, ext->parent_type == LYEXT_PAR_NODE ? ((struct lysc_node *)ext->parent)->sp : NULL, |
| 7394 | flags ? *flags : 0, ctx->mod_def->parsed, ext->name, parsed, (struct lysc_type **)compiled, |
Michal Vasko | 7f45cf2 | 2020-10-01 12:49:44 +0200 | [diff] [blame] | 7395 | units && !*units ? units : NULL, NULL), lysp_type_free(ctx->ctx, parsed); free(parsed); ret = r, cleanup); |
Radek Krejci | 38d8536 | 2019-09-05 16:26:38 +0200 | [diff] [blame] | 7396 | lysp_type_free(ctx->ctx, parsed); |
| 7397 | free(parsed); |
Radek Krejci | 335332a | 2019-09-05 13:03:35 +0200 | [diff] [blame] | 7398 | break; |
| 7399 | } |
Radek Krejci | ad5963b | 2019-09-06 16:03:05 +0200 | [diff] [blame] | 7400 | case LY_STMT_IF_FEATURE: { |
| 7401 | struct lysc_iffeature *iff = NULL; |
| 7402 | |
| 7403 | if (substmts[u].cardinality < LY_STMT_CARD_SOME) { |
| 7404 | /* single item */ |
Michal Vasko | 22df3f0 | 2020-08-24 13:29:22 +0200 | [diff] [blame] | 7405 | if (((struct lysc_iffeature *)substmts[u].storage)->features) { |
Radek Krejci | ad5963b | 2019-09-06 16:03:05 +0200 | [diff] [blame] | 7406 | LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LY_VCODE_DUPSTMT, stmt->stmt); |
| 7407 | goto cleanup; |
| 7408 | } |
Michal Vasko | 22df3f0 | 2020-08-24 13:29:22 +0200 | [diff] [blame] | 7409 | iff = (struct lysc_iffeature *)substmts[u].storage; |
Radek Krejci | ad5963b | 2019-09-06 16:03:05 +0200 | [diff] [blame] | 7410 | } else { |
| 7411 | /* sized array */ |
Michal Vasko | 22df3f0 | 2020-08-24 13:29:22 +0200 | [diff] [blame] | 7412 | struct lysc_iffeature **iffs = (struct lysc_iffeature **)substmts[u].storage; |
Radek Krejci | ad5963b | 2019-09-06 16:03:05 +0200 | [diff] [blame] | 7413 | LY_ARRAY_NEW_GOTO(ctx->ctx, *iffs, iff, ret, cleanup); |
| 7414 | } |
Michal Vasko | 7f45cf2 | 2020-10-01 12:49:44 +0200 | [diff] [blame] | 7415 | qname.str = stmt->arg; |
| 7416 | qname.mod = ctx->mod_def; |
| 7417 | LY_CHECK_ERR_GOTO(r = lys_compile_iffeature(ctx, &qname, iff), ret = r, cleanup); |
Radek Krejci | ad5963b | 2019-09-06 16:03:05 +0200 | [diff] [blame] | 7418 | break; |
| 7419 | } |
| 7420 | /* TODO support other substatements (parse stmt to lysp and then compile lysp to lysc), |
| 7421 | * also note that in many statements their extensions are not taken into account */ |
Radek Krejci | 335332a | 2019-09-05 13:03:35 +0200 | [diff] [blame] | 7422 | default: |
Radek Krejci | ad5963b | 2019-09-06 16:03:05 +0200 | [diff] [blame] | 7423 | LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SYNTAX_YANG, "Statement \"%s\" is not supported as an extension (found in \"%s%s%s\") substatement.", |
| 7424 | stmt->stmt, ext->name, ext->argument ? " " : "", ext->argument ? ext->argument : ""); |
Radek Krejci | 335332a | 2019-09-05 13:03:35 +0200 | [diff] [blame] | 7425 | goto cleanup; |
| 7426 | } |
| 7427 | } |
Radek Krejci | 335332a | 2019-09-05 13:03:35 +0200 | [diff] [blame] | 7428 | } |
Radek Krejci | 335332a | 2019-09-05 13:03:35 +0200 | [diff] [blame] | 7429 | |
Radek Krejci | ad5963b | 2019-09-06 16:03:05 +0200 | [diff] [blame] | 7430 | if ((substmts[u].cardinality == LY_STMT_CARD_MAND || substmts[u].cardinality == LY_STMT_CARD_SOME) && !stmt_present) { |
| 7431 | LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SYNTAX_YANG, "Missing mandatory keyword \"%s\" as a child of \"%s%s%s\".", |
| 7432 | ly_stmt2str(substmts[u].stmt), ext->name, ext->argument ? " " : "", ext->argument ? ext->argument : ""); |
| 7433 | goto cleanup; |
| 7434 | } |
Radek Krejci | 335332a | 2019-09-05 13:03:35 +0200 | [diff] [blame] | 7435 | } |
| 7436 | |
| 7437 | ret = LY_SUCCESS; |
| 7438 | |
| 7439 | cleanup: |
Radek Krejci | 335332a | 2019-09-05 13:03:35 +0200 | [diff] [blame] | 7440 | return ret; |
| 7441 | } |
| 7442 | |
Michal Vasko | 175012e | 2019-11-06 15:49:14 +0100 | [diff] [blame] | 7443 | /** |
Michal Vasko | ecd62de | 2019-11-13 12:35:11 +0100 | [diff] [blame] | 7444 | * @brief Check when for cyclic dependencies. |
Michal Vasko | 7f45cf2 | 2020-10-01 12:49:44 +0200 | [diff] [blame] | 7445 | * |
Michal Vasko | ecd62de | 2019-11-13 12:35:11 +0100 | [diff] [blame] | 7446 | * @param[in] set Set with all the referenced nodes. |
| 7447 | * @param[in] node Node whose "when" referenced nodes are in @p set. |
| 7448 | * @return LY_ERR value |
| 7449 | */ |
| 7450 | static LY_ERR |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 7451 | lys_compile_unres_when_cyclic(struct lyxp_set *set, const struct lysc_node *node) |
Michal Vasko | ecd62de | 2019-11-13 12:35:11 +0100 | [diff] [blame] | 7452 | { |
| 7453 | struct lyxp_set tmp_set; |
| 7454 | struct lyxp_set_scnode *xp_scnode; |
Radek Krejci | 7eb54ba | 2020-05-18 16:30:04 +0200 | [diff] [blame] | 7455 | uint32_t i, j; |
Michal Vasko | fd69e1d | 2020-07-03 11:57:17 +0200 | [diff] [blame] | 7456 | LY_ARRAY_COUNT_TYPE u; |
Michal Vasko | ecd62de | 2019-11-13 12:35:11 +0100 | [diff] [blame] | 7457 | struct lysc_when *when; |
| 7458 | LY_ERR ret = LY_SUCCESS; |
| 7459 | |
| 7460 | memset(&tmp_set, 0, sizeof tmp_set); |
| 7461 | |
| 7462 | /* prepare in_ctx of the set */ |
Michal Vasko | d989ba0 | 2020-08-24 10:59:24 +0200 | [diff] [blame] | 7463 | for (i = 0; i < set->used; ++i) { |
Michal Vasko | ecd62de | 2019-11-13 12:35:11 +0100 | [diff] [blame] | 7464 | xp_scnode = &set->val.scnodes[i]; |
| 7465 | |
Michal Vasko | 5c4e589 | 2019-11-14 12:31:38 +0100 | [diff] [blame] | 7466 | if (xp_scnode->in_ctx != -1) { |
| 7467 | /* check node when, skip the context node (it was just checked) */ |
Michal Vasko | ecd62de | 2019-11-13 12:35:11 +0100 | [diff] [blame] | 7468 | xp_scnode->in_ctx = 1; |
| 7469 | } |
| 7470 | } |
| 7471 | |
| 7472 | for (i = 0; i < set->used; ++i) { |
| 7473 | xp_scnode = &set->val.scnodes[i]; |
| 7474 | if (xp_scnode->in_ctx != 1) { |
| 7475 | /* already checked */ |
| 7476 | continue; |
| 7477 | } |
| 7478 | |
Michal Vasko | 1bf0939 | 2020-03-27 12:38:10 +0100 | [diff] [blame] | 7479 | if ((xp_scnode->type != LYXP_NODE_ELEM) || (xp_scnode->scnode->nodetype & (LYS_RPC | LYS_ACTION | LYS_NOTIF)) |
Michal Vasko | 2ff7efe | 2019-12-10 14:50:59 +0100 | [diff] [blame] | 7480 | || !xp_scnode->scnode->when) { |
Michal Vasko | ecd62de | 2019-11-13 12:35:11 +0100 | [diff] [blame] | 7481 | /* no when to check */ |
| 7482 | xp_scnode->in_ctx = 0; |
| 7483 | continue; |
| 7484 | } |
| 7485 | |
| 7486 | node = xp_scnode->scnode; |
| 7487 | do { |
Radek Krejci | 7eb54ba | 2020-05-18 16:30:04 +0200 | [diff] [blame] | 7488 | LY_ARRAY_FOR(node->when, u) { |
| 7489 | when = node->when[u]; |
Michal Vasko | c8a230d | 2020-08-14 12:17:10 +0200 | [diff] [blame] | 7490 | ret = lyxp_atomize(when->cond, LY_PREF_SCHEMA, when->module, when->context, |
Michal Vasko | ecd62de | 2019-11-13 12:35:11 +0100 | [diff] [blame] | 7491 | when->context ? LYXP_NODE_ELEM : LYXP_NODE_ROOT_CONFIG, &tmp_set, LYXP_SCNODE_SCHEMA); |
| 7492 | if (ret != LY_SUCCESS) { |
Michal Vasko | f6e5188 | 2019-12-16 09:59:45 +0100 | [diff] [blame] | 7493 | LOGVAL(set->ctx, LY_VLOG_LYSC, node, LYVE_SEMANTICS, "Invalid when condition \"%s\".", when->cond->expr); |
Michal Vasko | ecd62de | 2019-11-13 12:35:11 +0100 | [diff] [blame] | 7494 | goto cleanup; |
| 7495 | } |
| 7496 | |
Radek Krejci | 7eb54ba | 2020-05-18 16:30:04 +0200 | [diff] [blame] | 7497 | for (j = 0; j < tmp_set.used; ++j) { |
Michal Vasko | ecd62de | 2019-11-13 12:35:11 +0100 | [diff] [blame] | 7498 | /* skip roots'n'stuff */ |
Radek Krejci | 7eb54ba | 2020-05-18 16:30:04 +0200 | [diff] [blame] | 7499 | if (tmp_set.val.scnodes[j].type == LYXP_NODE_ELEM) { |
Michal Vasko | ecd62de | 2019-11-13 12:35:11 +0100 | [diff] [blame] | 7500 | /* try to find this node in our set */ |
Radek Krejci | aa6b53f | 2020-08-27 15:19:03 +0200 | [diff] [blame] | 7501 | uint32_t idx; |
| 7502 | if (lyxp_set_scnode_contains(set, tmp_set.val.scnodes[j].scnode, LYXP_NODE_ELEM, -1, &idx) && (set->val.scnodes[idx].in_ctx == -1)) { |
Michal Vasko | f6e5188 | 2019-12-16 09:59:45 +0100 | [diff] [blame] | 7503 | LOGVAL(set->ctx, LY_VLOG_LYSC, node, LY_VCODE_CIRC_WHEN, node->name, set->val.scnodes[idx].scnode->name); |
Michal Vasko | ecd62de | 2019-11-13 12:35:11 +0100 | [diff] [blame] | 7504 | ret = LY_EVALID; |
| 7505 | goto cleanup; |
| 7506 | } |
| 7507 | |
| 7508 | /* needs to be checked, if in both sets, will be ignored */ |
Radek Krejci | 7eb54ba | 2020-05-18 16:30:04 +0200 | [diff] [blame] | 7509 | tmp_set.val.scnodes[j].in_ctx = 1; |
Michal Vasko | ecd62de | 2019-11-13 12:35:11 +0100 | [diff] [blame] | 7510 | } else { |
| 7511 | /* no when, nothing to check */ |
Radek Krejci | 7eb54ba | 2020-05-18 16:30:04 +0200 | [diff] [blame] | 7512 | tmp_set.val.scnodes[j].in_ctx = 0; |
Michal Vasko | ecd62de | 2019-11-13 12:35:11 +0100 | [diff] [blame] | 7513 | } |
| 7514 | } |
| 7515 | |
| 7516 | /* merge this set into the global when set */ |
| 7517 | lyxp_set_scnode_merge(set, &tmp_set); |
| 7518 | } |
| 7519 | |
| 7520 | /* check when of non-data parents as well */ |
| 7521 | node = node->parent; |
| 7522 | } while (node && (node->nodetype & (LYS_CASE | LYS_CHOICE))); |
| 7523 | |
Michal Vasko | 251f56e | 2019-11-14 16:06:47 +0100 | [diff] [blame] | 7524 | /* this node when was checked (xp_scnode could have been reallocd) */ |
| 7525 | set->val.scnodes[i].in_ctx = -1; |
Michal Vasko | ecd62de | 2019-11-13 12:35:11 +0100 | [diff] [blame] | 7526 | } |
| 7527 | |
| 7528 | cleanup: |
Michal Vasko | d367889 | 2020-05-21 10:06:58 +0200 | [diff] [blame] | 7529 | lyxp_set_free_content(&tmp_set); |
Michal Vasko | ecd62de | 2019-11-13 12:35:11 +0100 | [diff] [blame] | 7530 | return ret; |
| 7531 | } |
| 7532 | |
| 7533 | /** |
Michal Vasko | 7f45cf2 | 2020-10-01 12:49:44 +0200 | [diff] [blame] | 7534 | * @brief Check when/must expressions of a node on a complete compiled schema tree. |
| 7535 | * |
Michal Vasko | 175012e | 2019-11-06 15:49:14 +0100 | [diff] [blame] | 7536 | * @param[in] ctx Compile context. |
| 7537 | * @param[in] node Node to check. |
| 7538 | * @return LY_ERR value |
| 7539 | */ |
| 7540 | static LY_ERR |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 7541 | lys_compile_unres_xpath(struct lysc_ctx *ctx, const struct lysc_node *node) |
Michal Vasko | 175012e | 2019-11-06 15:49:14 +0100 | [diff] [blame] | 7542 | { |
Michal Vasko | 175012e | 2019-11-06 15:49:14 +0100 | [diff] [blame] | 7543 | struct lyxp_set tmp_set; |
Radek Krejci | 7eb54ba | 2020-05-18 16:30:04 +0200 | [diff] [blame] | 7544 | uint32_t i; |
Michal Vasko | fd69e1d | 2020-07-03 11:57:17 +0200 | [diff] [blame] | 7545 | LY_ARRAY_COUNT_TYPE u; |
Radek Krejci | 1deb5be | 2020-08-26 16:43:36 +0200 | [diff] [blame] | 7546 | uint32_t opts; |
Radek Krejci | 857189e | 2020-09-01 13:26:36 +0200 | [diff] [blame] | 7547 | ly_bool input_done = 0; |
Michal Vasko | 175012e | 2019-11-06 15:49:14 +0100 | [diff] [blame] | 7548 | struct lysc_when **when = NULL; |
| 7549 | struct lysc_must *musts = NULL; |
| 7550 | LY_ERR ret = LY_SUCCESS; |
Michal Vasko | 6b26e74 | 2020-07-17 15:02:10 +0200 | [diff] [blame] | 7551 | const struct lysc_node *op; |
Michal Vasko | 175012e | 2019-11-06 15:49:14 +0100 | [diff] [blame] | 7552 | |
| 7553 | memset(&tmp_set, 0, sizeof tmp_set); |
Michal Vasko | 5d8756a | 2019-11-07 15:21:00 +0100 | [diff] [blame] | 7554 | opts = LYXP_SCNODE_SCHEMA; |
Michal Vasko | 6b26e74 | 2020-07-17 15:02:10 +0200 | [diff] [blame] | 7555 | if (node->flags & LYS_CONFIG_R) { |
| 7556 | for (op = node->parent; op && !(op->nodetype & (LYS_RPC | LYS_ACTION)); op = op->parent); |
| 7557 | if (op) { |
| 7558 | /* we are actually in output */ |
| 7559 | opts = LYXP_SCNODE_OUTPUT; |
| 7560 | } |
| 7561 | } |
Michal Vasko | 175012e | 2019-11-06 15:49:14 +0100 | [diff] [blame] | 7562 | |
| 7563 | switch (node->nodetype) { |
| 7564 | case LYS_CONTAINER: |
| 7565 | when = ((struct lysc_node_container *)node)->when; |
| 7566 | musts = ((struct lysc_node_container *)node)->musts; |
| 7567 | break; |
| 7568 | case LYS_CHOICE: |
| 7569 | when = ((struct lysc_node_choice *)node)->when; |
| 7570 | break; |
| 7571 | case LYS_LEAF: |
| 7572 | when = ((struct lysc_node_leaf *)node)->when; |
| 7573 | musts = ((struct lysc_node_leaf *)node)->musts; |
| 7574 | break; |
| 7575 | case LYS_LEAFLIST: |
| 7576 | when = ((struct lysc_node_leaflist *)node)->when; |
| 7577 | musts = ((struct lysc_node_leaflist *)node)->musts; |
| 7578 | break; |
| 7579 | case LYS_LIST: |
| 7580 | when = ((struct lysc_node_list *)node)->when; |
| 7581 | musts = ((struct lysc_node_list *)node)->musts; |
| 7582 | break; |
| 7583 | case LYS_ANYXML: |
| 7584 | case LYS_ANYDATA: |
| 7585 | when = ((struct lysc_node_anydata *)node)->when; |
| 7586 | musts = ((struct lysc_node_anydata *)node)->musts; |
| 7587 | break; |
| 7588 | case LYS_CASE: |
| 7589 | when = ((struct lysc_node_case *)node)->when; |
| 7590 | break; |
| 7591 | case LYS_NOTIF: |
| 7592 | musts = ((struct lysc_notif *)node)->musts; |
| 7593 | break; |
Michal Vasko | 1bf0939 | 2020-03-27 12:38:10 +0100 | [diff] [blame] | 7594 | case LYS_RPC: |
Michal Vasko | 5d8756a | 2019-11-07 15:21:00 +0100 | [diff] [blame] | 7595 | case LYS_ACTION: |
| 7596 | /* first process input musts */ |
| 7597 | musts = ((struct lysc_action *)node)->input.musts; |
| 7598 | break; |
Michal Vasko | 175012e | 2019-11-06 15:49:14 +0100 | [diff] [blame] | 7599 | default: |
| 7600 | /* nothing to check */ |
| 7601 | break; |
| 7602 | } |
| 7603 | |
Michal Vasko | 175012e | 2019-11-06 15:49:14 +0100 | [diff] [blame] | 7604 | /* check "when" */ |
Radek Krejci | 7eb54ba | 2020-05-18 16:30:04 +0200 | [diff] [blame] | 7605 | LY_ARRAY_FOR(when, u) { |
Michal Vasko | c8a230d | 2020-08-14 12:17:10 +0200 | [diff] [blame] | 7606 | ret = lyxp_atomize(when[u]->cond, LY_PREF_SCHEMA, when[u]->module, when[u]->context ? when[u]->context : node, |
Radek Krejci | 7eb54ba | 2020-05-18 16:30:04 +0200 | [diff] [blame] | 7607 | when[u]->context ? LYXP_NODE_ELEM : LYXP_NODE_ROOT_CONFIG, &tmp_set, opts); |
Michal Vasko | 175012e | 2019-11-06 15:49:14 +0100 | [diff] [blame] | 7608 | if (ret != LY_SUCCESS) { |
Radek Krejci | 7eb54ba | 2020-05-18 16:30:04 +0200 | [diff] [blame] | 7609 | LOGVAL(ctx->ctx, LY_VLOG_LYSC, node, LYVE_SEMANTICS, "Invalid when condition \"%s\".", when[u]->cond->expr); |
Michal Vasko | 175012e | 2019-11-06 15:49:14 +0100 | [diff] [blame] | 7610 | goto cleanup; |
| 7611 | } |
| 7612 | |
Michal Vasko | dc052f3 | 2019-11-07 11:11:38 +0100 | [diff] [blame] | 7613 | ctx->path[0] = '\0'; |
| 7614 | lysc_path((struct lysc_node *)node, LYSC_PATH_LOG, ctx->path, LYSC_CTX_BUFSIZE); |
Radek Krejci | 7eb54ba | 2020-05-18 16:30:04 +0200 | [diff] [blame] | 7615 | for (i = 0; i < tmp_set.used; ++i) { |
Michal Vasko | 5c4e589 | 2019-11-14 12:31:38 +0100 | [diff] [blame] | 7616 | /* skip roots'n'stuff */ |
Radek Krejci | 7eb54ba | 2020-05-18 16:30:04 +0200 | [diff] [blame] | 7617 | if ((tmp_set.val.scnodes[i].type == LYXP_NODE_ELEM) && (tmp_set.val.scnodes[i].in_ctx != -1)) { |
| 7618 | struct lysc_node *schema = tmp_set.val.scnodes[i].scnode; |
Michal Vasko | 175012e | 2019-11-06 15:49:14 +0100 | [diff] [blame] | 7619 | |
Michal Vasko | ecd62de | 2019-11-13 12:35:11 +0100 | [diff] [blame] | 7620 | /* XPath expression cannot reference "lower" status than the node that has the definition */ |
Radek Krejci | 7eb54ba | 2020-05-18 16:30:04 +0200 | [diff] [blame] | 7621 | ret = lysc_check_status(ctx, when[u]->flags, when[u]->module, node->name, schema->flags, schema->module, |
Michal Vasko | ecd62de | 2019-11-13 12:35:11 +0100 | [diff] [blame] | 7622 | schema->name); |
| 7623 | LY_CHECK_GOTO(ret, cleanup); |
Michal Vasko | 5c4e589 | 2019-11-14 12:31:38 +0100 | [diff] [blame] | 7624 | |
| 7625 | /* check dummy node accessing */ |
| 7626 | if (schema == node) { |
Michal Vasko | f6e5188 | 2019-12-16 09:59:45 +0100 | [diff] [blame] | 7627 | LOGVAL(ctx->ctx, LY_VLOG_LYSC, node, LY_VCODE_DUMMY_WHEN, node->name); |
Michal Vasko | 5c4e589 | 2019-11-14 12:31:38 +0100 | [diff] [blame] | 7628 | ret = LY_EVALID; |
| 7629 | goto cleanup; |
| 7630 | } |
Michal Vasko | 175012e | 2019-11-06 15:49:14 +0100 | [diff] [blame] | 7631 | } |
| 7632 | } |
| 7633 | |
Michal Vasko | ecd62de | 2019-11-13 12:35:11 +0100 | [diff] [blame] | 7634 | /* check cyclic dependencies */ |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 7635 | ret = lys_compile_unres_when_cyclic(&tmp_set, node); |
Michal Vasko | ecd62de | 2019-11-13 12:35:11 +0100 | [diff] [blame] | 7636 | LY_CHECK_GOTO(ret, cleanup); |
| 7637 | |
Michal Vasko | d367889 | 2020-05-21 10:06:58 +0200 | [diff] [blame] | 7638 | lyxp_set_free_content(&tmp_set); |
Michal Vasko | 175012e | 2019-11-06 15:49:14 +0100 | [diff] [blame] | 7639 | } |
| 7640 | |
Michal Vasko | 5d8756a | 2019-11-07 15:21:00 +0100 | [diff] [blame] | 7641 | check_musts: |
Michal Vasko | 175012e | 2019-11-06 15:49:14 +0100 | [diff] [blame] | 7642 | /* check "must" */ |
Radek Krejci | 7eb54ba | 2020-05-18 16:30:04 +0200 | [diff] [blame] | 7643 | LY_ARRAY_FOR(musts, u) { |
Michal Vasko | c8a230d | 2020-08-14 12:17:10 +0200 | [diff] [blame] | 7644 | ret = lyxp_atomize(musts[u].cond, LY_PREF_SCHEMA, musts[u].module, node, LYXP_NODE_ELEM, &tmp_set, opts); |
Michal Vasko | 175012e | 2019-11-06 15:49:14 +0100 | [diff] [blame] | 7645 | if (ret != LY_SUCCESS) { |
Radek Krejci | 7eb54ba | 2020-05-18 16:30:04 +0200 | [diff] [blame] | 7646 | LOGVAL(ctx->ctx, LY_VLOG_LYSC, node, LYVE_SEMANTICS, "Invalid must restriction \"%s\".", musts[u].cond->expr); |
Michal Vasko | 175012e | 2019-11-06 15:49:14 +0100 | [diff] [blame] | 7647 | goto cleanup; |
| 7648 | } |
| 7649 | |
Michal Vasko | dc052f3 | 2019-11-07 11:11:38 +0100 | [diff] [blame] | 7650 | ctx->path[0] = '\0'; |
| 7651 | lysc_path((struct lysc_node *)node, LYSC_PATH_LOG, ctx->path, LYSC_CTX_BUFSIZE); |
Radek Krejci | 7eb54ba | 2020-05-18 16:30:04 +0200 | [diff] [blame] | 7652 | for (i = 0; i < tmp_set.used; ++i) { |
Michal Vasko | 175012e | 2019-11-06 15:49:14 +0100 | [diff] [blame] | 7653 | /* skip roots'n'stuff */ |
Radek Krejci | 7eb54ba | 2020-05-18 16:30:04 +0200 | [diff] [blame] | 7654 | if (tmp_set.val.scnodes[i].type == LYXP_NODE_ELEM) { |
Michal Vasko | 175012e | 2019-11-06 15:49:14 +0100 | [diff] [blame] | 7655 | /* XPath expression cannot reference "lower" status than the node that has the definition */ |
Radek Krejci | 7eb54ba | 2020-05-18 16:30:04 +0200 | [diff] [blame] | 7656 | ret = lysc_check_status(ctx, node->flags, musts[u].module, node->name, tmp_set.val.scnodes[i].scnode->flags, |
| 7657 | tmp_set.val.scnodes[i].scnode->module, tmp_set.val.scnodes[i].scnode->name); |
Michal Vasko | 175012e | 2019-11-06 15:49:14 +0100 | [diff] [blame] | 7658 | LY_CHECK_GOTO(ret, cleanup); |
Michal Vasko | 175012e | 2019-11-06 15:49:14 +0100 | [diff] [blame] | 7659 | } |
| 7660 | } |
| 7661 | |
Michal Vasko | d367889 | 2020-05-21 10:06:58 +0200 | [diff] [blame] | 7662 | lyxp_set_free_content(&tmp_set); |
Michal Vasko | 175012e | 2019-11-06 15:49:14 +0100 | [diff] [blame] | 7663 | } |
| 7664 | |
Michal Vasko | 1bf0939 | 2020-03-27 12:38:10 +0100 | [diff] [blame] | 7665 | if ((node->nodetype & (LYS_RPC | LYS_ACTION)) && !input_done) { |
Michal Vasko | 5d8756a | 2019-11-07 15:21:00 +0100 | [diff] [blame] | 7666 | /* now check output musts */ |
| 7667 | input_done = 1; |
| 7668 | musts = ((struct lysc_action *)node)->output.musts; |
| 7669 | opts = LYXP_SCNODE_OUTPUT; |
| 7670 | goto check_musts; |
| 7671 | } |
| 7672 | |
Michal Vasko | 175012e | 2019-11-06 15:49:14 +0100 | [diff] [blame] | 7673 | cleanup: |
Michal Vasko | d367889 | 2020-05-21 10:06:58 +0200 | [diff] [blame] | 7674 | lyxp_set_free_content(&tmp_set); |
Michal Vasko | 175012e | 2019-11-06 15:49:14 +0100 | [diff] [blame] | 7675 | return ret; |
| 7676 | } |
| 7677 | |
Michal Vasko | 7f45cf2 | 2020-10-01 12:49:44 +0200 | [diff] [blame] | 7678 | /** |
| 7679 | * @brief Check leafref for its target existence on a complete compiled schema tree. |
| 7680 | * |
| 7681 | * @param[in] ctx Compile context. |
| 7682 | * @param[in] node Context node for the leafref. |
| 7683 | * @param[in] lref Leafref to resolve. |
| 7684 | * @return LY_ERR value. |
| 7685 | */ |
Michal Vasko | 8d54425 | 2020-03-02 10:19:52 +0100 | [diff] [blame] | 7686 | static LY_ERR |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 7687 | lys_compile_unres_leafref(struct lysc_ctx *ctx, const struct lysc_node *node, struct lysc_type_leafref *lref) |
| 7688 | { |
Michal Vasko | 6b26e74 | 2020-07-17 15:02:10 +0200 | [diff] [blame] | 7689 | const struct lysc_node *target = NULL, *siter; |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 7690 | struct ly_path *p; |
| 7691 | struct lysc_type *type; |
| 7692 | |
| 7693 | assert(node->nodetype & (LYS_LEAF | LYS_LEAFLIST)); |
| 7694 | |
| 7695 | /* try to find the target */ |
Michal Vasko | 00cbf53 | 2020-06-15 13:58:47 +0200 | [diff] [blame] | 7696 | LY_CHECK_RET(ly_path_compile(ctx->ctx, node->module, node, lref->path, LY_PATH_LREF_TRUE, |
| 7697 | lysc_is_output(node) ? LY_PATH_OPER_OUTPUT : LY_PATH_OPER_INPUT, LY_PATH_TARGET_MANY, |
Michal Vasko | c8a230d | 2020-08-14 12:17:10 +0200 | [diff] [blame] | 7698 | LY_PREF_SCHEMA, lref->path_context, &p)); |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 7699 | |
| 7700 | /* get the target node */ |
Michal Vasko | fd69e1d | 2020-07-03 11:57:17 +0200 | [diff] [blame] | 7701 | target = p[LY_ARRAY_COUNT(p) - 1].node; |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 7702 | ly_path_free(node->module->ctx, p); |
| 7703 | |
| 7704 | if (!(target->nodetype & (LYS_LEAF | LYS_LEAFLIST))) { |
| 7705 | LOGVAL(ctx->ctx, LY_VLOG_LYSC, node, LYVE_REFERENCE, |
| 7706 | "Invalid leafref path \"%s\" - target node is %s instead of leaf or leaf-list.", |
| 7707 | lref->path->expr, lys_nodetype2str(target->nodetype)); |
| 7708 | return LY_EVALID; |
| 7709 | } |
| 7710 | |
| 7711 | /* check status */ |
| 7712 | ctx->path[0] = '\0'; |
| 7713 | lysc_path(node, LYSC_PATH_LOG, ctx->path, LYSC_CTX_BUFSIZE); |
| 7714 | ctx->path_len = strlen(ctx->path); |
| 7715 | if (lysc_check_status(ctx, node->flags, node->module, node->name, target->flags, target->module, target->name)) { |
| 7716 | return LY_EVALID; |
| 7717 | } |
| 7718 | ctx->path_len = 1; |
| 7719 | ctx->path[1] = '\0'; |
| 7720 | |
| 7721 | /* check config */ |
Michal Vasko | 6b26e74 | 2020-07-17 15:02:10 +0200 | [diff] [blame] | 7722 | if (lref->require_instance) { |
Radek Krejci | 1e008d2 | 2020-08-17 11:37:37 +0200 | [diff] [blame] | 7723 | for (siter = node->parent; siter && !(siter->nodetype & (LYS_RPC | LYS_ACTION | LYS_NOTIF)); siter = siter->parent) {} |
Michal Vasko | 6b26e74 | 2020-07-17 15:02:10 +0200 | [diff] [blame] | 7724 | if (!siter && (node->flags & LYS_CONFIG_W) && (target->flags & LYS_CONFIG_R)) { |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 7725 | LOGVAL(ctx->ctx, LY_VLOG_LYSC, node, LYVE_REFERENCE, "Invalid leafref path \"%s\" - target is supposed" |
| 7726 | " to represent configuration data (as the leafref does), but it does not.", lref->path->expr); |
| 7727 | return LY_EVALID; |
| 7728 | } |
| 7729 | } |
| 7730 | |
| 7731 | /* store the target's type and check for circular chain of leafrefs */ |
| 7732 | lref->realtype = ((struct lysc_node_leaf *)target)->type; |
| 7733 | for (type = lref->realtype; type && type->basetype == LY_TYPE_LEAFREF; type = ((struct lysc_type_leafref *)type)->realtype) { |
| 7734 | if (type == (struct lysc_type *)lref) { |
| 7735 | /* circular chain detected */ |
| 7736 | LOGVAL(ctx->ctx, LY_VLOG_LYSC, node, LYVE_REFERENCE, |
| 7737 | "Invalid leafref path \"%s\" - circular chain of leafrefs detected.", lref->path->expr); |
| 7738 | return LY_EVALID; |
| 7739 | } |
| 7740 | } |
| 7741 | |
| 7742 | /* check if leafref and its target are under common if-features */ |
| 7743 | if (lys_compile_leafref_features_validate(node, target)) { |
| 7744 | LOGVAL(ctx->ctx, LY_VLOG_LYSC, node, LYVE_REFERENCE, |
| 7745 | "Invalid leafref path \"%s\" - set of features applicable to the leafref target is not a subset of" |
| 7746 | " features applicable to the leafref itself.", lref->path->expr); |
| 7747 | return LY_EVALID; |
| 7748 | } |
| 7749 | |
| 7750 | return LY_SUCCESS; |
| 7751 | } |
| 7752 | |
| 7753 | static LY_ERR |
Michal Vasko | 8d54425 | 2020-03-02 10:19:52 +0100 | [diff] [blame] | 7754 | lys_compile_ietf_netconf_wd_annotation(struct lysc_ctx *ctx, struct lys_module *mod) |
| 7755 | { |
| 7756 | struct lysc_ext_instance *ext; |
| 7757 | struct lysp_ext_instance *ext_p = NULL; |
| 7758 | struct lysp_stmt *stmt; |
| 7759 | const struct lys_module *ext_mod; |
| 7760 | LY_ERR ret = LY_SUCCESS; |
| 7761 | |
| 7762 | /* create the parsed extension instance manually */ |
| 7763 | ext_p = calloc(1, sizeof *ext_p); |
| 7764 | LY_CHECK_ERR_GOTO(!ext_p, LOGMEM(ctx->ctx); ret = LY_EMEM, cleanup); |
Radek Krejci | 011e4aa | 2020-09-04 15:22:31 +0200 | [diff] [blame] | 7765 | LY_CHECK_GOTO(ret = lydict_insert(ctx->ctx, "md:annotation", 0, &ext_p->name), cleanup); |
| 7766 | LY_CHECK_GOTO(ret = lydict_insert(ctx->ctx, "default", 0, &ext_p->argument), cleanup); |
Michal Vasko | 8d54425 | 2020-03-02 10:19:52 +0100 | [diff] [blame] | 7767 | ext_p->insubstmt = LYEXT_SUBSTMT_SELF; |
| 7768 | ext_p->insubstmt_index = 0; |
| 7769 | |
Radek Krejci | 87e2525 | 2020-09-15 13:28:31 +0200 | [diff] [blame] | 7770 | ext_p->child = stmt = calloc(1, sizeof *ext_p->child); |
| 7771 | LY_CHECK_ERR_GOTO(!stmt, LOGMEM(ctx->ctx); ret = LY_EMEM, cleanup); |
Radek Krejci | 011e4aa | 2020-09-04 15:22:31 +0200 | [diff] [blame] | 7772 | LY_CHECK_GOTO(ret = lydict_insert(ctx->ctx, "type", 0, &stmt->stmt), cleanup); |
| 7773 | LY_CHECK_GOTO(ret = lydict_insert(ctx->ctx, "boolean", 0, &stmt->arg), cleanup); |
Michal Vasko | 8d54425 | 2020-03-02 10:19:52 +0100 | [diff] [blame] | 7774 | stmt->kw = LY_STMT_TYPE; |
Michal Vasko | 8d54425 | 2020-03-02 10:19:52 +0100 | [diff] [blame] | 7775 | |
| 7776 | /* allocate new extension instance */ |
| 7777 | LY_ARRAY_NEW_GOTO(mod->ctx, mod->compiled->exts, ext, ret, cleanup); |
| 7778 | |
| 7779 | /* manually get extension definition module */ |
| 7780 | ext_mod = ly_ctx_get_module_latest(ctx->ctx, "ietf-yang-metadata"); |
| 7781 | |
| 7782 | /* compile the extension instance */ |
| 7783 | LY_CHECK_GOTO(ret = lys_compile_ext(ctx, ext_p, ext, mod->compiled, LYEXT_PAR_MODULE, ext_mod), cleanup); |
| 7784 | |
| 7785 | cleanup: |
| 7786 | lysp_ext_instance_free(ctx->ctx, ext_p); |
| 7787 | free(ext_p); |
| 7788 | return ret; |
| 7789 | } |
| 7790 | |
Michal Vasko | 7f45cf2 | 2020-10-01 12:49:44 +0200 | [diff] [blame] | 7791 | /** |
| 7792 | * @brief Compile default value(s) for leaf or leaf-list expecting a complete compiled schema tree. |
| 7793 | * |
| 7794 | * @param[in] ctx Compile context. |
| 7795 | * @param[in] node Leaf or leaf-list to compile the default value(s) for. |
| 7796 | * @param[in] type Type of the default value. |
| 7797 | * @param[in] dflt Default value. |
| 7798 | * @param[in] dflt_mod Local module for @p dflt. |
| 7799 | * @param[in,out] storage Storage for the compiled default value. |
| 7800 | * @return LY_ERR value. |
| 7801 | */ |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 7802 | static LY_ERR |
Michal Vasko | ba99a3e | 2020-08-18 15:50:05 +0200 | [diff] [blame] | 7803 | lys_compile_unres_dflt(struct lysc_ctx *ctx, struct lysc_node *node, struct lysc_type *type, const char *dflt, |
Radek Krejci | 0f96988 | 2020-08-21 16:56:47 +0200 | [diff] [blame] | 7804 | const struct lys_module *dflt_mod, struct lyd_value *storage) |
Michal Vasko | ba99a3e | 2020-08-18 15:50:05 +0200 | [diff] [blame] | 7805 | { |
| 7806 | LY_ERR ret; |
| 7807 | struct ly_err_item *err = NULL; |
| 7808 | |
| 7809 | ret = type->plugin->store(ctx->ctx, type, dflt, strlen(dflt), LY_TYPE_OPTS_SCHEMA, |
| 7810 | LY_PREF_SCHEMA, (void *)dflt_mod, node, NULL, storage, &err); |
| 7811 | if (err) { |
| 7812 | ly_err_print(err); |
| 7813 | ctx->path[0] = '\0'; |
| 7814 | lysc_path(node, LYSC_PATH_LOG, ctx->path, LYSC_CTX_BUFSIZE); |
| 7815 | LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SEMANTICS, |
| 7816 | "Invalid default - value does not fit the type (%s).", err->msg); |
| 7817 | ly_err_free(err); |
| 7818 | } |
| 7819 | if (!ret) { |
| 7820 | ++storage->realtype->refcount; |
| 7821 | return LY_SUCCESS; |
| 7822 | } |
| 7823 | return ret; |
| 7824 | } |
| 7825 | |
Michal Vasko | 7f45cf2 | 2020-10-01 12:49:44 +0200 | [diff] [blame] | 7826 | /** |
| 7827 | * @brief Compile default value of a leaf expecting a complete compiled schema tree. |
| 7828 | * |
| 7829 | * @param[in] ctx Compile context. |
| 7830 | * @param[in] leaf Leaf that the default value is for. |
| 7831 | * @param[in] dflt Default value to compile. |
| 7832 | * @return LY_ERR value. |
| 7833 | */ |
Michal Vasko | ba99a3e | 2020-08-18 15:50:05 +0200 | [diff] [blame] | 7834 | static LY_ERR |
Michal Vasko | 7f45cf2 | 2020-10-01 12:49:44 +0200 | [diff] [blame] | 7835 | lys_compile_unres_leaf_dlft(struct lysc_ctx *ctx, struct lysc_node_leaf *leaf, struct lysp_qname *dflt) |
Michal Vasko | ba99a3e | 2020-08-18 15:50:05 +0200 | [diff] [blame] | 7836 | { |
| 7837 | LY_ERR ret; |
| 7838 | |
| 7839 | assert(!leaf->dflt); |
| 7840 | |
| 7841 | if (leaf->flags & (LYS_MAND_TRUE | LYS_KEY)) { |
| 7842 | /* ignore default values for keys and mandatory leaves */ |
| 7843 | return LY_SUCCESS; |
| 7844 | } |
| 7845 | |
| 7846 | /* allocate the default value */ |
| 7847 | leaf->dflt = calloc(1, sizeof *leaf->dflt); |
| 7848 | LY_CHECK_ERR_RET(!leaf->dflt, LOGMEM(ctx->ctx), LY_EMEM); |
| 7849 | |
| 7850 | /* store the default value */ |
Michal Vasko | 7f45cf2 | 2020-10-01 12:49:44 +0200 | [diff] [blame] | 7851 | ret = lys_compile_unres_dflt(ctx, (struct lysc_node *)leaf, leaf->type, dflt->str, dflt->mod, leaf->dflt); |
Michal Vasko | ba99a3e | 2020-08-18 15:50:05 +0200 | [diff] [blame] | 7852 | if (ret) { |
| 7853 | free(leaf->dflt); |
| 7854 | leaf->dflt = NULL; |
| 7855 | } |
| 7856 | |
| 7857 | return ret; |
| 7858 | } |
| 7859 | |
Michal Vasko | 7f45cf2 | 2020-10-01 12:49:44 +0200 | [diff] [blame] | 7860 | /** |
| 7861 | * @brief Compile default values of a leaf-list expecting a complete compiled schema tree. |
| 7862 | * |
| 7863 | * @param[in] ctx Compile context. |
| 7864 | * @param[in] llist Leaf-list that the default value(s) are for. |
| 7865 | * @param[in] dflt Default value to compile, in case of a single value. |
| 7866 | * @param[in] dflts Sized array of default values, in case of more values. |
| 7867 | * @return LY_ERR value. |
| 7868 | */ |
Michal Vasko | ba99a3e | 2020-08-18 15:50:05 +0200 | [diff] [blame] | 7869 | static LY_ERR |
Michal Vasko | 7f45cf2 | 2020-10-01 12:49:44 +0200 | [diff] [blame] | 7870 | lys_compile_unres_llist_dflts(struct lysc_ctx *ctx, struct lysc_node_leaflist *llist, struct lysp_qname *dflt, |
| 7871 | struct lysp_qname *dflts) |
Michal Vasko | ba99a3e | 2020-08-18 15:50:05 +0200 | [diff] [blame] | 7872 | { |
| 7873 | LY_ERR ret; |
| 7874 | LY_ARRAY_COUNT_TYPE orig_count, u, v; |
| 7875 | |
| 7876 | assert(dflt || dflts); |
| 7877 | |
| 7878 | if (llist->dflts) { |
| 7879 | /* there were already some defaults and we are adding new by deviations */ |
| 7880 | assert(dflts); |
| 7881 | orig_count = LY_ARRAY_COUNT(llist->dflts); |
| 7882 | } else { |
| 7883 | orig_count = 0; |
| 7884 | } |
| 7885 | |
| 7886 | /* allocate new items */ |
| 7887 | if (dflts) { |
| 7888 | LY_ARRAY_CREATE_RET(ctx->ctx, llist->dflts, orig_count + LY_ARRAY_COUNT(dflts), LY_EMEM); |
| 7889 | } else { |
| 7890 | LY_ARRAY_CREATE_RET(ctx->ctx, llist->dflts, orig_count + 1, LY_EMEM); |
| 7891 | } |
| 7892 | |
| 7893 | /* fill each new default value */ |
| 7894 | if (dflts) { |
| 7895 | LY_ARRAY_FOR(dflts, u) { |
| 7896 | llist->dflts[orig_count + u] = calloc(1, sizeof **llist->dflts); |
Michal Vasko | 7f45cf2 | 2020-10-01 12:49:44 +0200 | [diff] [blame] | 7897 | ret = lys_compile_unres_dflt(ctx, (struct lysc_node *)llist, llist->type, dflts[u].str, dflts[u].mod, |
| 7898 | llist->dflts[orig_count + u]); |
Michal Vasko | ba99a3e | 2020-08-18 15:50:05 +0200 | [diff] [blame] | 7899 | LY_CHECK_ERR_RET(ret, free(llist->dflts[orig_count + u]), ret); |
| 7900 | LY_ARRAY_INCREMENT(llist->dflts); |
| 7901 | } |
| 7902 | } else { |
| 7903 | llist->dflts[orig_count] = calloc(1, sizeof **llist->dflts); |
Michal Vasko | 7f45cf2 | 2020-10-01 12:49:44 +0200 | [diff] [blame] | 7904 | ret = lys_compile_unres_dflt(ctx, (struct lysc_node *)llist, llist->type, dflt->str, dflt->mod, |
| 7905 | llist->dflts[orig_count]); |
Michal Vasko | ba99a3e | 2020-08-18 15:50:05 +0200 | [diff] [blame] | 7906 | LY_CHECK_ERR_RET(ret, free(llist->dflts[orig_count]), ret); |
| 7907 | LY_ARRAY_INCREMENT(llist->dflts); |
| 7908 | } |
| 7909 | |
| 7910 | /* check default value uniqueness */ |
| 7911 | if (llist->flags & LYS_CONFIG_W) { |
| 7912 | /* configuration data values must be unique - so check the default values */ |
| 7913 | for (u = orig_count; u < LY_ARRAY_COUNT(llist->dflts); ++u) { |
| 7914 | for (v = 0; v < u; ++v) { |
| 7915 | if (!llist->dflts[u]->realtype->plugin->compare(llist->dflts[u], llist->dflts[v])) { |
Michal Vasko | ba99a3e | 2020-08-18 15:50:05 +0200 | [diff] [blame] | 7916 | lysc_update_path(ctx, llist->parent, llist->name); |
| 7917 | LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SEMANTICS, |
Michal Vasko | 7f45cf2 | 2020-10-01 12:49:44 +0200 | [diff] [blame] | 7918 | "Configuration leaf-list has multiple defaults of the same value \"%s\".", |
| 7919 | llist->dflts[u]->canonical); |
Michal Vasko | ba99a3e | 2020-08-18 15:50:05 +0200 | [diff] [blame] | 7920 | lysc_update_path(ctx, NULL, NULL); |
Michal Vasko | ba99a3e | 2020-08-18 15:50:05 +0200 | [diff] [blame] | 7921 | return LY_EVALID; |
| 7922 | } |
| 7923 | } |
| 7924 | } |
| 7925 | } |
| 7926 | |
| 7927 | return LY_SUCCESS; |
| 7928 | } |
| 7929 | |
Michal Vasko | 7f45cf2 | 2020-10-01 12:49:44 +0200 | [diff] [blame] | 7930 | /** |
| 7931 | * @brief Finish compilation of all the unres sets of a compile context. |
| 7932 | * |
| 7933 | * @param[in] ctx Compile context with unres sets. |
| 7934 | * @return LY_ERR value. |
| 7935 | */ |
Michal Vasko | ba99a3e | 2020-08-18 15:50:05 +0200 | [diff] [blame] | 7936 | static LY_ERR |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 7937 | lys_compile_unres(struct lysc_ctx *ctx) |
| 7938 | { |
| 7939 | struct lysc_node *node; |
| 7940 | struct lysc_type *type, *typeiter; |
| 7941 | struct lysc_type_leafref *lref; |
Michal Vasko | 7f45cf2 | 2020-10-01 12:49:44 +0200 | [diff] [blame] | 7942 | struct lysc_augment *aug; |
| 7943 | struct lysc_deviation *dev; |
Michal Vasko | fd69e1d | 2020-07-03 11:57:17 +0200 | [diff] [blame] | 7944 | LY_ARRAY_COUNT_TYPE v; |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 7945 | uint32_t i; |
| 7946 | |
| 7947 | /* for leafref, we need 2 rounds - first detects circular chain by storing the first referred type (which |
| 7948 | * can be also leafref, in case it is already resolved, go through the chain and check that it does not |
| 7949 | * point to the starting leafref type). The second round stores the first non-leafref type for later data validation. */ |
| 7950 | for (i = 0; i < ctx->leafrefs.count; ++i) { |
| 7951 | node = ctx->leafrefs.objs[i]; |
| 7952 | assert(node->nodetype & (LYS_LEAF | LYS_LEAFLIST)); |
| 7953 | type = ((struct lysc_node_leaf *)node)->type; |
| 7954 | if (type->basetype == LY_TYPE_LEAFREF) { |
| 7955 | LY_CHECK_RET(lys_compile_unres_leafref(ctx, node, (struct lysc_type_leafref *)type)); |
| 7956 | } else if (type->basetype == LY_TYPE_UNION) { |
| 7957 | LY_ARRAY_FOR(((struct lysc_type_union *)type)->types, v) { |
| 7958 | if (((struct lysc_type_union *)type)->types[v]->basetype == LY_TYPE_LEAFREF) { |
| 7959 | lref = (struct lysc_type_leafref *)((struct lysc_type_union *)type)->types[v]; |
| 7960 | LY_CHECK_RET(lys_compile_unres_leafref(ctx, node, lref)); |
| 7961 | } |
| 7962 | } |
| 7963 | } |
| 7964 | } |
| 7965 | for (i = 0; i < ctx->leafrefs.count; ++i) { |
| 7966 | /* store pointer to the real type */ |
| 7967 | type = ((struct lysc_node_leaf *)ctx->leafrefs.objs[i])->type; |
| 7968 | if (type->basetype == LY_TYPE_LEAFREF) { |
Michal Vasko | 22df3f0 | 2020-08-24 13:29:22 +0200 | [diff] [blame] | 7969 | for (typeiter = ((struct lysc_type_leafref *)type)->realtype; |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 7970 | typeiter->basetype == LY_TYPE_LEAFREF; |
Michal Vasko | 22df3f0 | 2020-08-24 13:29:22 +0200 | [diff] [blame] | 7971 | typeiter = ((struct lysc_type_leafref *)typeiter)->realtype) {} |
| 7972 | ((struct lysc_type_leafref *)type)->realtype = typeiter; |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 7973 | } else if (type->basetype == LY_TYPE_UNION) { |
Michal Vasko | 22df3f0 | 2020-08-24 13:29:22 +0200 | [diff] [blame] | 7974 | LY_ARRAY_FOR(((struct lysc_type_union *)type)->types, v) { |
| 7975 | if (((struct lysc_type_union *)type)->types[v]->basetype == LY_TYPE_LEAFREF) { |
| 7976 | for (typeiter = ((struct lysc_type_leafref *)((struct lysc_type_union *)type)->types[v])->realtype; |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 7977 | typeiter->basetype == LY_TYPE_LEAFREF; |
Michal Vasko | 22df3f0 | 2020-08-24 13:29:22 +0200 | [diff] [blame] | 7978 | typeiter = ((struct lysc_type_leafref *)typeiter)->realtype) {} |
| 7979 | ((struct lysc_type_leafref *)((struct lysc_type_union *)type)->types[v])->realtype = typeiter; |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 7980 | } |
| 7981 | } |
| 7982 | } |
| 7983 | } |
| 7984 | |
| 7985 | /* check xpath */ |
| 7986 | for (i = 0; i < ctx->xpath.count; ++i) { |
| 7987 | LY_CHECK_RET(lys_compile_unres_xpath(ctx, ctx->xpath.objs[i])); |
| 7988 | } |
| 7989 | |
| 7990 | /* finish incomplete default values compilation */ |
| 7991 | for (i = 0; i < ctx->dflts.count; ++i) { |
Michal Vasko | 7f45cf2 | 2020-10-01 12:49:44 +0200 | [diff] [blame] | 7992 | struct lysc_unres_dflt *r = ctx->dflts.objs[i]; |
Michal Vasko | ba99a3e | 2020-08-18 15:50:05 +0200 | [diff] [blame] | 7993 | if (r->leaf->nodetype == LYS_LEAF) { |
Michal Vasko | 7f45cf2 | 2020-10-01 12:49:44 +0200 | [diff] [blame] | 7994 | LY_CHECK_RET(lys_compile_unres_leaf_dlft(ctx, r->leaf, r->dflt)); |
Michal Vasko | ba99a3e | 2020-08-18 15:50:05 +0200 | [diff] [blame] | 7995 | } else { |
Michal Vasko | 7f45cf2 | 2020-10-01 12:49:44 +0200 | [diff] [blame] | 7996 | LY_CHECK_RET(lys_compile_unres_llist_dflts(ctx, r->llist, r->dflt, r->dflts)); |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 7997 | } |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 7998 | } |
| 7999 | |
Michal Vasko | 7f45cf2 | 2020-10-01 12:49:44 +0200 | [diff] [blame] | 8000 | /* check that all augments were applied */ |
| 8001 | for (i = 0; i < ctx->augs.count; ++i) { |
| 8002 | aug = ctx->augs.objs[i]; |
| 8003 | LOGVAL(ctx->ctx, LY_VLOG_NONE, NULL, LYVE_REFERENCE, |
| 8004 | "Augment target node \"%s\" from module \"%s\" was not found.", aug->nodeid->expr, |
| 8005 | aug->nodeid_mod->name); |
| 8006 | } |
| 8007 | if (ctx->augs.count) { |
| 8008 | return LY_ENOTFOUND; |
| 8009 | } |
| 8010 | |
| 8011 | /* check that all deviations were applied */ |
| 8012 | for (i = 0; i < ctx->devs.count; ++i) { |
| 8013 | dev = ctx->devs.objs[i]; |
| 8014 | LOGVAL(ctx->ctx, LY_VLOG_NONE, NULL, LYVE_REFERENCE, |
| 8015 | "Deviation(s) target node \"%s\" from module \"%s\" was not found.", dev->nodeid->expr, |
| 8016 | dev->nodeid_mod->name); |
| 8017 | } |
| 8018 | if (ctx->devs.count) { |
| 8019 | return LY_ENOTFOUND; |
| 8020 | } |
| 8021 | |
| 8022 | return LY_SUCCESS; |
| 8023 | } |
| 8024 | |
| 8025 | /** |
| 8026 | * @brief Revert precompilation of module augments and deviations. Meaning remove its reference from |
| 8027 | * all the target modules. |
| 8028 | * |
| 8029 | * @param[in] ctx Compile context. |
| 8030 | * @param[in] mod Mod whose precompilation to revert. |
| 8031 | */ |
| 8032 | static void |
| 8033 | lys_precompile_augments_deviations_revert(struct lysc_ctx *ctx, const struct lys_module *mod) |
| 8034 | { |
| 8035 | uint32_t i; |
| 8036 | LY_ARRAY_COUNT_TYPE u, count; |
| 8037 | struct lys_module *m; |
| 8038 | |
| 8039 | for (i = 0; i < ctx->ctx->list.count; ++i) { |
| 8040 | m = ctx->ctx->list.objs[i]; |
| 8041 | |
| 8042 | if (m->augmented_by) { |
| 8043 | count = LY_ARRAY_COUNT(m->augmented_by); |
| 8044 | for (u = 0; u < count; ++u) { |
| 8045 | if (m->augmented_by[u] == mod) { |
| 8046 | /* keep the order */ |
| 8047 | if (u < count - 1) { |
| 8048 | memmove(m->augmented_by + u, m->augmented_by + u + 1, (count - u) * sizeof *m->augmented_by); |
| 8049 | } |
| 8050 | LY_ARRAY_DECREMENT(m->augmented_by); |
| 8051 | break; |
| 8052 | } |
| 8053 | } |
| 8054 | if (!LY_ARRAY_COUNT(m->augmented_by)) { |
| 8055 | LY_ARRAY_FREE(m->augmented_by); |
| 8056 | m->augmented_by = NULL; |
| 8057 | } |
| 8058 | } |
| 8059 | |
| 8060 | if (m->deviated_by) { |
| 8061 | count = LY_ARRAY_COUNT(m->deviated_by); |
| 8062 | for (u = 0; u < count; ++u) { |
| 8063 | if (m->deviated_by[u] == mod) { |
| 8064 | /* keep the order */ |
| 8065 | if (u < count - 1) { |
| 8066 | memmove(m->deviated_by + u, m->deviated_by + u + 1, (count - u) * sizeof *m->deviated_by); |
| 8067 | } |
| 8068 | LY_ARRAY_DECREMENT(m->deviated_by); |
| 8069 | break; |
| 8070 | } |
| 8071 | } |
| 8072 | if (!LY_ARRAY_COUNT(m->deviated_by)) { |
| 8073 | LY_ARRAY_FREE(m->deviated_by); |
| 8074 | m->deviated_by = NULL; |
| 8075 | } |
| 8076 | } |
| 8077 | } |
| 8078 | } |
| 8079 | |
| 8080 | /** |
| 8081 | * @brief Compile features in the current module and all its submodules. |
| 8082 | * |
| 8083 | * @param[in] ctx Compile context. |
| 8084 | * @return LY_ERR value. |
| 8085 | */ |
| 8086 | static LY_ERR |
| 8087 | lys_compile_features(struct lysc_ctx *ctx) |
| 8088 | { |
| 8089 | struct lysp_submodule *submod; |
| 8090 | LY_ARRAY_COUNT_TYPE u, v; |
| 8091 | |
| 8092 | if (!ctx->mod->features) { |
| 8093 | /* features are compiled directly into the module structure, |
| 8094 | * but it must be done in two steps to allow forward references (via if-feature) between the features themselves */ |
| 8095 | LY_CHECK_RET(lys_feature_precompile(ctx, NULL, NULL, ctx->mod->parsed->features, &ctx->mod->features)); |
| 8096 | LY_ARRAY_FOR(ctx->mod->parsed->includes, v) { |
| 8097 | submod = ctx->mod->parsed->includes[v].submodule; |
| 8098 | LY_CHECK_RET(lys_feature_precompile(ctx, NULL, NULL, submod->features, &ctx->mod->features)); |
| 8099 | } |
| 8100 | } |
| 8101 | |
| 8102 | /* finish feature compilation, not only for the main module, but also for the submodules. |
| 8103 | * Due to possible forward references, it must be done when all the features (including submodules) |
| 8104 | * are present. */ |
| 8105 | LY_ARRAY_FOR(ctx->mod->parsed->features, u) { |
| 8106 | LY_CHECK_RET(lys_feature_precompile_finish(ctx, &ctx->mod->parsed->features[u], ctx->mod->features)); |
| 8107 | } |
| 8108 | |
| 8109 | lysc_update_path(ctx, NULL, "{submodule}"); |
| 8110 | LY_ARRAY_FOR(ctx->mod->parsed->includes, v) { |
| 8111 | submod = ctx->mod->parsed->includes[v].submodule; |
| 8112 | |
| 8113 | lysc_update_path(ctx, NULL, submod->name); |
| 8114 | LY_ARRAY_FOR(submod->features, u) { |
| 8115 | LY_CHECK_RET(lys_feature_precompile_finish(ctx, &submod->features[u], ctx->mod->features)); |
| 8116 | } |
| 8117 | lysc_update_path(ctx, NULL, NULL); |
| 8118 | } |
| 8119 | lysc_update_path(ctx, NULL, NULL); |
| 8120 | |
| 8121 | return LY_SUCCESS; |
| 8122 | } |
| 8123 | |
| 8124 | /** |
| 8125 | * @brief Compile identites in the current module and all its submodules. |
| 8126 | * |
| 8127 | * @param[in] ctx Compile context. |
| 8128 | * @return LY_ERR value. |
| 8129 | */ |
| 8130 | static LY_ERR |
| 8131 | lys_compile_identities(struct lysc_ctx *ctx) |
| 8132 | { |
| 8133 | struct lysp_submodule *submod; |
| 8134 | LY_ARRAY_COUNT_TYPE u; |
| 8135 | |
| 8136 | if (!ctx->mod->identities) { |
| 8137 | LY_CHECK_RET(lys_identity_precompile(ctx, NULL, NULL, ctx->mod->parsed->identities, &ctx->mod->identities)); |
| 8138 | LY_ARRAY_FOR(ctx->mod->parsed->includes, u) { |
| 8139 | submod = ctx->mod->parsed->includes[u].submodule; |
| 8140 | LY_CHECK_RET(lys_identity_precompile(ctx, NULL, NULL, submod->identities, &ctx->mod->identities)); |
| 8141 | } |
| 8142 | } |
| 8143 | |
| 8144 | if (ctx->mod->parsed->identities) { |
| 8145 | LY_CHECK_RET(lys_compile_identities_derived(ctx, ctx->mod->parsed->identities, ctx->mod->identities)); |
| 8146 | } |
| 8147 | lysc_update_path(ctx, NULL, "{submodule}"); |
| 8148 | LY_ARRAY_FOR(ctx->mod->parsed->includes, u) { |
| 8149 | |
| 8150 | submod = ctx->mod->parsed->includes[u].submodule; |
| 8151 | if (submod->identities) { |
| 8152 | lysc_update_path(ctx, NULL, submod->name); |
| 8153 | LY_CHECK_RET(lys_compile_identities_derived(ctx, submod->identities, ctx->mod->identities)); |
| 8154 | lysc_update_path(ctx, NULL, NULL); |
| 8155 | } |
| 8156 | } |
| 8157 | lysc_update_path(ctx, NULL, NULL); |
| 8158 | |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 8159 | return LY_SUCCESS; |
| 8160 | } |
| 8161 | |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 8162 | LY_ERR |
Michal Vasko | 7a0b076 | 2020-09-02 16:37:01 +0200 | [diff] [blame] | 8163 | lys_compile(struct lys_module *mod, uint32_t options) |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 8164 | { |
| 8165 | struct lysc_ctx ctx = {0}; |
| 8166 | struct lysc_module *mod_c; |
| 8167 | struct lysp_module *sp; |
Michal Vasko | 7f45cf2 | 2020-10-01 12:49:44 +0200 | [diff] [blame] | 8168 | struct lysp_submodule *submod; |
| 8169 | struct lysp_node *pnode; |
Radek Krejci | f2de0ed | 2019-05-02 14:13:18 +0200 | [diff] [blame] | 8170 | struct lysp_grp *grps; |
Radek Krejci | 95710c9 | 2019-02-11 15:49:55 +0100 | [diff] [blame] | 8171 | struct lys_module *m; |
Michal Vasko | fd69e1d | 2020-07-03 11:57:17 +0200 | [diff] [blame] | 8172 | LY_ARRAY_COUNT_TYPE u, v; |
Radek Krejci | 7eb54ba | 2020-05-18 16:30:04 +0200 | [diff] [blame] | 8173 | uint32_t i; |
Radek Krejci | d05cbd9 | 2018-12-05 14:26:40 +0100 | [diff] [blame] | 8174 | LY_ERR ret = LY_SUCCESS; |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 8175 | |
Michal Vasko | 7a0b076 | 2020-09-02 16:37:01 +0200 | [diff] [blame] | 8176 | LY_CHECK_ARG_RET(NULL, mod, mod->parsed, !mod->compiled, mod->ctx, LY_EINVAL); |
Radek Krejci | 096235c | 2019-01-11 11:12:19 +0100 | [diff] [blame] | 8177 | |
Michal Vasko | 7a0b076 | 2020-09-02 16:37:01 +0200 | [diff] [blame] | 8178 | if (!mod->implemented) { |
Radek Krejci | 096235c | 2019-01-11 11:12:19 +0100 | [diff] [blame] | 8179 | /* just imported modules are not compiled */ |
| 8180 | return LY_SUCCESS; |
| 8181 | } |
| 8182 | |
Michal Vasko | 7f45cf2 | 2020-10-01 12:49:44 +0200 | [diff] [blame] | 8183 | /* context will be changed */ |
| 8184 | ++mod->ctx->module_set_id; |
| 8185 | |
Michal Vasko | 7a0b076 | 2020-09-02 16:37:01 +0200 | [diff] [blame] | 8186 | sp = mod->parsed; |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 8187 | |
Michal Vasko | 7a0b076 | 2020-09-02 16:37:01 +0200 | [diff] [blame] | 8188 | ctx.ctx = mod->ctx; |
| 8189 | ctx.mod = mod; |
| 8190 | ctx.mod_def = mod; |
Radek Krejci | ec4da80 | 2019-05-02 13:02:41 +0200 | [diff] [blame] | 8191 | ctx.options = options; |
Radek Krejci | 327de16 | 2019-06-14 12:52:07 +0200 | [diff] [blame] | 8192 | ctx.path_len = 1; |
| 8193 | ctx.path[0] = '/'; |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 8194 | |
Michal Vasko | 7a0b076 | 2020-09-02 16:37:01 +0200 | [diff] [blame] | 8195 | mod->compiled = mod_c = calloc(1, sizeof *mod_c); |
| 8196 | LY_CHECK_ERR_RET(!mod_c, LOGMEM(mod->ctx), LY_EMEM); |
| 8197 | mod_c->mod = mod; |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 8198 | |
Michal Vasko | 7f45cf2 | 2020-10-01 12:49:44 +0200 | [diff] [blame] | 8199 | /* process imports */ |
Michal Vasko | 7c8439f | 2020-08-05 13:25:19 +0200 | [diff] [blame] | 8200 | LY_ARRAY_FOR(sp->imports, u) { |
| 8201 | LY_CHECK_GOTO(ret = lys_compile_import(&ctx, &sp->imports[u]), error); |
| 8202 | } |
Radek Krejci | 0935f41 | 2019-08-20 16:15:18 +0200 | [diff] [blame] | 8203 | |
Michal Vasko | 7f45cf2 | 2020-10-01 12:49:44 +0200 | [diff] [blame] | 8204 | /* features */ |
| 8205 | LY_CHECK_GOTO(ret = lys_compile_features(&ctx), error); |
Radek Krejci | 14915cc | 2020-09-14 17:28:13 +0200 | [diff] [blame] | 8206 | |
| 8207 | /* identities, work similarly to features with the precompilation */ |
Michal Vasko | 7f45cf2 | 2020-10-01 12:49:44 +0200 | [diff] [blame] | 8208 | LY_CHECK_GOTO(ret = lys_compile_identities(&ctx), error); |
| 8209 | |
| 8210 | /* augments and deviations */ |
| 8211 | LY_CHECK_GOTO(ret = lys_precompile_augments_deviations(&ctx), error); |
| 8212 | |
| 8213 | /* compile augments and deviations of our module from other modules so they can be applied during compilation */ |
| 8214 | LY_CHECK_GOTO(ret = lys_precompile_own_augments(&ctx), error); |
| 8215 | LY_CHECK_GOTO(ret = lys_precompile_own_deviations(&ctx), error); |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 8216 | |
Radek Krejci | 95710c9 | 2019-02-11 15:49:55 +0100 | [diff] [blame] | 8217 | /* data nodes */ |
Michal Vasko | 7f45cf2 | 2020-10-01 12:49:44 +0200 | [diff] [blame] | 8218 | LY_LIST_FOR(sp->data, pnode) { |
| 8219 | LY_CHECK_GOTO(ret = lys_compile_node(&ctx, pnode, NULL, 0, NULL), error); |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 8220 | } |
Radek Krejci | 95710c9 | 2019-02-11 15:49:55 +0100 | [diff] [blame] | 8221 | |
Michal Vasko | 7f45cf2 | 2020-10-01 12:49:44 +0200 | [diff] [blame] | 8222 | /* top-level RPCs and notifications */ |
| 8223 | COMPILE_OP_ARRAY_GOTO(&ctx, sp->rpcs, mod_c->rpcs, NULL, u, lys_compile_action, 0, ret, error); |
| 8224 | COMPILE_OP_ARRAY_GOTO(&ctx, sp->notifs, mod_c->notifs, NULL, u, lys_compile_notif, 0, ret, error); |
Radek Krejci | ccd20f1 | 2019-02-15 14:12:27 +0100 | [diff] [blame] | 8225 | |
Michal Vasko | 7f45cf2 | 2020-10-01 12:49:44 +0200 | [diff] [blame] | 8226 | /* extension instances */ |
Radek Krejci | 0935f41 | 2019-08-20 16:15:18 +0200 | [diff] [blame] | 8227 | COMPILE_EXTS_GOTO(&ctx, sp->exts, mod_c->exts, mod_c, LYEXT_PAR_MODULE, ret, error); |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 8228 | |
Michal Vasko | 7f45cf2 | 2020-10-01 12:49:44 +0200 | [diff] [blame] | 8229 | /* the same for submodules */ |
| 8230 | LY_ARRAY_FOR(sp->includes, u) { |
| 8231 | submod = sp->includes[u].submodule; |
| 8232 | LY_LIST_FOR(submod->data, pnode) { |
| 8233 | ret = lys_compile_node(&ctx, pnode, NULL, 0, NULL); |
| 8234 | LY_CHECK_GOTO(ret, error); |
| 8235 | } |
| 8236 | |
| 8237 | COMPILE_OP_ARRAY_GOTO(&ctx, submod->rpcs, mod_c->rpcs, NULL, v, lys_compile_action, 0, ret, error); |
| 8238 | COMPILE_OP_ARRAY_GOTO(&ctx, submod->notifs, mod_c->notifs, NULL, v, lys_compile_notif, 0, ret, error); |
| 8239 | |
| 8240 | COMPILE_EXTS_GOTO(&ctx, submod->exts, mod_c->exts, mod_c, LYEXT_PAR_MODULE, ret, error); |
| 8241 | } |
| 8242 | |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 8243 | /* finish compilation for all unresolved items in the context */ |
| 8244 | LY_CHECK_GOTO(ret = lys_compile_unres(&ctx), error); |
Radek Krejci | 474f9b8 | 2019-07-24 11:36:37 +0200 | [diff] [blame] | 8245 | |
Radek Krejci | f2de0ed | 2019-05-02 14:13:18 +0200 | [diff] [blame] | 8246 | /* validate non-instantiated groupings from the parsed schema, |
| 8247 | * without it we would accept even the schemas with invalid grouping specification */ |
| 8248 | ctx.options |= LYSC_OPT_GROUPING; |
| 8249 | LY_ARRAY_FOR(sp->groupings, u) { |
| 8250 | if (!(sp->groupings[u].flags & LYS_USED_GRP)) { |
Michal Vasko | 7f45cf2 | 2020-10-01 12:49:44 +0200 | [diff] [blame] | 8251 | LY_CHECK_GOTO(ret = lys_compile_grouping(&ctx, pnode, &sp->groupings[u]), error); |
Radek Krejci | f2de0ed | 2019-05-02 14:13:18 +0200 | [diff] [blame] | 8252 | } |
| 8253 | } |
Michal Vasko | 7f45cf2 | 2020-10-01 12:49:44 +0200 | [diff] [blame] | 8254 | LY_LIST_FOR(sp->data, pnode) { |
| 8255 | grps = (struct lysp_grp *)lysp_node_groupings(pnode); |
Radek Krejci | f2de0ed | 2019-05-02 14:13:18 +0200 | [diff] [blame] | 8256 | LY_ARRAY_FOR(grps, u) { |
| 8257 | if (!(grps[u].flags & LYS_USED_GRP)) { |
Michal Vasko | 7f45cf2 | 2020-10-01 12:49:44 +0200 | [diff] [blame] | 8258 | LY_CHECK_GOTO(ret = lys_compile_grouping(&ctx, pnode, &grps[u]), error); |
Radek Krejci | f2de0ed | 2019-05-02 14:13:18 +0200 | [diff] [blame] | 8259 | } |
| 8260 | } |
| 8261 | } |
Michal Vasko | 7f45cf2 | 2020-10-01 12:49:44 +0200 | [diff] [blame] | 8262 | LY_ARRAY_FOR(sp->includes, u) { |
| 8263 | submod = sp->includes[u].submodule; |
| 8264 | LY_ARRAY_FOR(submod->groupings, u) { |
| 8265 | if (!(submod->groupings[u].flags & LYS_USED_GRP)) { |
| 8266 | LY_CHECK_GOTO(ret = lys_compile_grouping(&ctx, pnode, &submod->groupings[u]), error); |
| 8267 | } |
| 8268 | } |
| 8269 | LY_LIST_FOR(submod->data, pnode) { |
| 8270 | grps = (struct lysp_grp *)lysp_node_groupings(pnode); |
| 8271 | LY_ARRAY_FOR(grps, u) { |
| 8272 | if (!(grps[u].flags & LYS_USED_GRP)) { |
| 8273 | LY_CHECK_GOTO(ret = lys_compile_grouping(&ctx, pnode, &grps[u]), error); |
| 8274 | } |
| 8275 | } |
| 8276 | } |
Radek Krejci | 474f9b8 | 2019-07-24 11:36:37 +0200 | [diff] [blame] | 8277 | } |
| 8278 | |
Michal Vasko | 8d54425 | 2020-03-02 10:19:52 +0100 | [diff] [blame] | 8279 | #if 0 |
| 8280 | /* hack for NETCONF's edit-config's operation attribute. It is not defined in the schema, but since libyang |
| 8281 | * implements YANG metadata (annotations), we need its definition. Because the ietf-netconf schema is not the |
| 8282 | * internal part of libyang, we cannot add the annotation into the schema source, but we do it here to have |
| 8283 | * the anotation definitions available in the internal schema structure. */ |
| 8284 | if (ly_strequal(mod->name, "ietf-netconf", 0)) { |
| 8285 | if (lyp_add_ietf_netconf_annotations(mod)) { |
| 8286 | lys_free(mod, NULL, 1, 1); |
| 8287 | return NULL; |
| 8288 | } |
| 8289 | } |
| 8290 | #endif |
| 8291 | |
| 8292 | /* add ietf-netconf-with-defaults "default" metadata to the compiled module */ |
Michal Vasko | 7a0b076 | 2020-09-02 16:37:01 +0200 | [diff] [blame] | 8293 | if (!strcmp(mod->name, "ietf-netconf-with-defaults")) { |
| 8294 | LY_CHECK_GOTO(ret = lys_compile_ietf_netconf_wd_annotation(&ctx, mod), error); |
Michal Vasko | 8d54425 | 2020-03-02 10:19:52 +0100 | [diff] [blame] | 8295 | } |
| 8296 | |
Michal Vasko | 7f45cf2 | 2020-10-01 12:49:44 +0200 | [diff] [blame] | 8297 | /* there can be no leftover deviations */ |
| 8298 | LY_CHECK_ERR_GOTO(ctx.devs.count, LOGINT(ctx.ctx); ret = LY_EINT, error); |
| 8299 | |
| 8300 | for (i = 0; i < ctx.dflts.count; ++i) { |
| 8301 | lysc_unres_dflt_free(ctx.ctx, ctx.dflts.objs[i]); |
| 8302 | } |
| 8303 | ly_set_erase(&ctx.dflts, NULL); |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 8304 | ly_set_erase(&ctx.xpath, NULL); |
| 8305 | ly_set_erase(&ctx.leafrefs, NULL); |
Radek Krejci | e86bf77 | 2018-12-14 11:39:53 +0100 | [diff] [blame] | 8306 | ly_set_erase(&ctx.groupings, NULL); |
Radek Krejci | 99b5b2a | 2019-04-30 16:57:04 +0200 | [diff] [blame] | 8307 | ly_set_erase(&ctx.tpdf_chain, NULL); |
Michal Vasko | 7f45cf2 | 2020-10-01 12:49:44 +0200 | [diff] [blame] | 8308 | ly_set_erase(&ctx.augs, NULL); |
| 8309 | ly_set_erase(&ctx.devs, NULL); |
| 8310 | ly_set_erase(&ctx.uses_augs, NULL); |
| 8311 | ly_set_erase(&ctx.uses_rfns, NULL); |
Radek Krejci | a304538 | 2018-11-22 14:30:31 +0100 | [diff] [blame] | 8312 | |
Radek Krejci | ec4da80 | 2019-05-02 13:02:41 +0200 | [diff] [blame] | 8313 | if (ctx.options & LYSC_OPT_FREE_SP) { |
Michal Vasko | 7a0b076 | 2020-09-02 16:37:01 +0200 | [diff] [blame] | 8314 | lysp_module_free(mod->parsed); |
| 8315 | mod->parsed = NULL; |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 8316 | } |
| 8317 | |
Radek Krejci | ec4da80 | 2019-05-02 13:02:41 +0200 | [diff] [blame] | 8318 | if (!(ctx.options & LYSC_OPT_INTERNAL)) { |
Radek Krejci | 95710c9 | 2019-02-11 15:49:55 +0100 | [diff] [blame] | 8319 | /* remove flag of the modules implemented by dependency */ |
Radek Krejci | 7eb54ba | 2020-05-18 16:30:04 +0200 | [diff] [blame] | 8320 | for (i = 0; i < ctx.ctx->list.count; ++i) { |
| 8321 | m = ctx.ctx->list.objs[i]; |
Radek Krejci | a46012b | 2020-08-12 15:41:04 +0200 | [diff] [blame] | 8322 | if (m->implemented > 1) { |
Radek Krejci | 95710c9 | 2019-02-11 15:49:55 +0100 | [diff] [blame] | 8323 | m->implemented = 1; |
| 8324 | } |
| 8325 | } |
| 8326 | } |
| 8327 | |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 8328 | return LY_SUCCESS; |
| 8329 | |
| 8330 | error: |
Michal Vasko | 7f45cf2 | 2020-10-01 12:49:44 +0200 | [diff] [blame] | 8331 | lys_precompile_augments_deviations_revert(&ctx, mod); |
Michal Vasko | 7a0b076 | 2020-09-02 16:37:01 +0200 | [diff] [blame] | 8332 | lys_feature_precompile_revert(&ctx, mod); |
Michal Vasko | 7f45cf2 | 2020-10-01 12:49:44 +0200 | [diff] [blame] | 8333 | for (i = 0; i < ctx.dflts.count; ++i) { |
| 8334 | lysc_unres_dflt_free(ctx.ctx, ctx.dflts.objs[i]); |
| 8335 | } |
| 8336 | ly_set_erase(&ctx.dflts, NULL); |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 8337 | ly_set_erase(&ctx.xpath, NULL); |
| 8338 | ly_set_erase(&ctx.leafrefs, NULL); |
Radek Krejci | e86bf77 | 2018-12-14 11:39:53 +0100 | [diff] [blame] | 8339 | ly_set_erase(&ctx.groupings, NULL); |
Radek Krejci | 99b5b2a | 2019-04-30 16:57:04 +0200 | [diff] [blame] | 8340 | ly_set_erase(&ctx.tpdf_chain, NULL); |
Michal Vasko | 7f45cf2 | 2020-10-01 12:49:44 +0200 | [diff] [blame] | 8341 | for (i = 0; i < ctx.augs.count; ++i) { |
| 8342 | lysc_augment_free(ctx.ctx, ctx.augs.objs[i]); |
| 8343 | } |
| 8344 | ly_set_erase(&ctx.augs, NULL); |
| 8345 | for (i = 0; i < ctx.devs.count; ++i) { |
| 8346 | lysc_deviation_free(ctx.ctx, ctx.devs.objs[i]); |
| 8347 | } |
| 8348 | ly_set_erase(&ctx.devs, NULL); |
| 8349 | for (i = 0; i < ctx.uses_augs.count; ++i) { |
| 8350 | lysc_augment_free(ctx.ctx, ctx.uses_augs.objs[i]); |
| 8351 | } |
| 8352 | ly_set_erase(&ctx.uses_augs, NULL); |
| 8353 | for (i = 0; i < ctx.uses_rfns.count; ++i) { |
| 8354 | lysc_refine_free(ctx.ctx, ctx.uses_rfns.objs[i]); |
| 8355 | } |
| 8356 | ly_set_erase(&ctx.uses_rfns, NULL); |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 8357 | lysc_module_free(mod_c, NULL); |
Michal Vasko | 7a0b076 | 2020-09-02 16:37:01 +0200 | [diff] [blame] | 8358 | mod->compiled = NULL; |
Radek Krejci | 95710c9 | 2019-02-11 15:49:55 +0100 | [diff] [blame] | 8359 | |
Michal Vasko | 7f45cf2 | 2020-10-01 12:49:44 +0200 | [diff] [blame] | 8360 | /* revert compilation of modules implemented by dependency */ |
| 8361 | if (!(ctx.options & LYSC_OPT_INTERNAL)) { |
| 8362 | for (i = 0; i < ctx.ctx->list.count; ++i) { |
| 8363 | m = ctx.ctx->list.objs[i]; |
| 8364 | if (m->implemented > 1) { |
| 8365 | /* make the module non-implemented */ |
| 8366 | m->implemented = 0; |
| 8367 | } |
| 8368 | |
| 8369 | /* free the compiled version of the module, if any */ |
Radek Krejci | 95710c9 | 2019-02-11 15:49:55 +0100 | [diff] [blame] | 8370 | lysc_module_free(m->compiled, NULL); |
| 8371 | m->compiled = NULL; |
Michal Vasko | 7f45cf2 | 2020-10-01 12:49:44 +0200 | [diff] [blame] | 8372 | |
| 8373 | if (m->implemented) { |
| 8374 | /* recompile, must succeed because it was already compiled; hide messages because any |
| 8375 | * warnings were already printed, are not really relevant, and would hide the real error */ |
| 8376 | uint32_t prev_lo = ly_log_options(0); |
| 8377 | LY_ERR r = lys_compile(m, LYSC_OPT_INTERNAL); |
| 8378 | ly_log_options(prev_lo); |
| 8379 | if (r) { |
| 8380 | LOGERR(ctx.ctx, r, "Recompilation of module \"%s\" failed.", m->name); |
| 8381 | } |
| 8382 | } |
Radek Krejci | 95710c9 | 2019-02-11 15:49:55 +0100 | [diff] [blame] | 8383 | } |
| 8384 | } |
| 8385 | |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 8386 | return ret; |
| 8387 | } |