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 | |
| 15 | #include "common.h" |
| 16 | |
| 17 | #include <ctype.h> |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 18 | #include <stdio.h> |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 19 | |
| 20 | #include "libyang.h" |
| 21 | #include "context.h" |
| 22 | #include "tree_schema_internal.h" |
| 23 | #include "xpath.h" |
| 24 | |
| 25 | /** |
| 26 | * @brief Duplicate string into dictionary |
| 27 | * @param[in] CTX libyang context of the dictionary. |
| 28 | * @param[in] ORIG String to duplicate. |
| 29 | * @param[out] DUP Where to store the result. |
| 30 | */ |
| 31 | #define DUP_STRING(CTX, ORIG, DUP) if (ORIG) {DUP = lydict_insert(CTX, ORIG, 0);} |
| 32 | |
| 33 | #define COMPILE_ARRAY_GOTO(CTX, ARRAY_P, ARRAY_C, OPTIONS, ITER, FUNC, RET, GOTO) \ |
| 34 | if (ARRAY_P) { \ |
| 35 | LY_ARRAY_CREATE_GOTO((CTX)->ctx, ARRAY_C, LY_ARRAY_SIZE(ARRAY_P), RET, GOTO); \ |
Radek Krejci | d05cbd9 | 2018-12-05 14:26:40 +0100 | [diff] [blame] | 36 | size_t __array_offset = LY_ARRAY_SIZE(ARRAY_C); \ |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 37 | for (ITER = 0; ITER < LY_ARRAY_SIZE(ARRAY_P); ++ITER) { \ |
| 38 | LY_ARRAY_INCREMENT(ARRAY_C); \ |
Radek Krejci | d05cbd9 | 2018-12-05 14:26:40 +0100 | [diff] [blame] | 39 | RET = FUNC(CTX, &(ARRAY_P)[ITER], OPTIONS, &(ARRAY_C)[ITER + __array_offset]); \ |
| 40 | LY_CHECK_GOTO(RET != LY_SUCCESS, GOTO); \ |
| 41 | } \ |
| 42 | } |
| 43 | |
| 44 | #define COMPILE_ARRAY_UNIQUE_GOTO(CTX, ARRAY_P, ARRAY_C, OPTIONS, ITER, FUNC, RET, GOTO) \ |
| 45 | if (ARRAY_P) { \ |
| 46 | LY_ARRAY_CREATE_GOTO((CTX)->ctx, ARRAY_C, LY_ARRAY_SIZE(ARRAY_P), RET, GOTO); \ |
| 47 | size_t __array_offset = LY_ARRAY_SIZE(ARRAY_C); \ |
| 48 | for (ITER = 0; ITER < LY_ARRAY_SIZE(ARRAY_P); ++ITER) { \ |
| 49 | LY_ARRAY_INCREMENT(ARRAY_C); \ |
| 50 | RET = FUNC(CTX, &(ARRAY_P)[ITER], OPTIONS, ARRAY_C, &(ARRAY_C)[ITER + __array_offset]); \ |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 51 | LY_CHECK_GOTO(RET != LY_SUCCESS, GOTO); \ |
| 52 | } \ |
| 53 | } |
| 54 | |
| 55 | #define COMPILE_MEMBER_GOTO(CTX, MEMBER_P, MEMBER_C, OPTIONS, FUNC, RET, GOTO) \ |
| 56 | if (MEMBER_P) { \ |
| 57 | MEMBER_C = calloc(1, sizeof *(MEMBER_C)); \ |
| 58 | LY_CHECK_ERR_GOTO(!(MEMBER_C), LOGMEM((CTX)->ctx); RET = LY_EMEM, GOTO); \ |
| 59 | RET = FUNC(CTX, MEMBER_P, OPTIONS, MEMBER_C); \ |
| 60 | LY_CHECK_GOTO(RET != LY_SUCCESS, GOTO); \ |
| 61 | } |
| 62 | |
Radek Krejci | 00b874b | 2019-02-12 10:54:50 +0100 | [diff] [blame] | 63 | #define COMPILE_MEMBER_ARRAY_GOTO(CTX, MEMBER_P, ARRAY_C, OPTIONS, FUNC, RET, GOTO) \ |
| 64 | if (MEMBER_P) { \ |
| 65 | LY_ARRAY_CREATE_GOTO((CTX)->ctx, ARRAY_C, 1, RET, GOTO); \ |
| 66 | size_t __array_offset = LY_ARRAY_SIZE(ARRAY_C); \ |
| 67 | LY_ARRAY_INCREMENT(ARRAY_C); \ |
| 68 | RET = FUNC(CTX, MEMBER_P, OPTIONS, &(ARRAY_C)[__array_offset]); \ |
| 69 | LY_CHECK_GOTO(RET != LY_SUCCESS, GOTO); \ |
| 70 | } |
| 71 | |
Radek Krejci | d05cbd9 | 2018-12-05 14:26:40 +0100 | [diff] [blame] | 72 | #define COMPILE_CHECK_UNIQUENESS(CTX, ARRAY, MEMBER, EXCL, STMT, IDENT) \ |
| 73 | if (ARRAY) { \ |
Radek Krejci | 0af4629 | 2019-01-11 16:02:31 +0100 | [diff] [blame] | 74 | for (unsigned int u__ = 0; u__ < LY_ARRAY_SIZE(ARRAY); ++u__) { \ |
| 75 | if (&(ARRAY)[u__] != EXCL && (void*)((ARRAY)[u__].MEMBER) == (void*)(IDENT)) { \ |
Radek Krejci | d05cbd9 | 2018-12-05 14:26:40 +0100 | [diff] [blame] | 76 | LOGVAL((CTX)->ctx, LY_VLOG_STR, (CTX)->path, LY_VCODE_DUPIDENT, IDENT, STMT); \ |
| 77 | return LY_EVALID; \ |
| 78 | } \ |
| 79 | } \ |
| 80 | } |
| 81 | |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 82 | static struct lysc_ext_instance * |
| 83 | lysc_ext_instance_dup(struct ly_ctx *ctx, struct lysc_ext_instance *orig) |
| 84 | { |
| 85 | /* TODO */ |
| 86 | (void) ctx; |
| 87 | (void) orig; |
| 88 | return NULL; |
| 89 | } |
| 90 | |
Radek Krejci | b56c750 | 2019-02-13 14:19:54 +0100 | [diff] [blame] | 91 | /** |
| 92 | * @brief Duplicate the compiled pattern structure. |
| 93 | * |
| 94 | * Instead of duplicating memory, the reference counter in the @p orig is increased. |
| 95 | * |
| 96 | * @param[in] orig The pattern structure to duplicate. |
| 97 | * @return The duplicated structure to use. |
| 98 | */ |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 99 | static struct lysc_pattern* |
| 100 | lysc_pattern_dup(struct lysc_pattern *orig) |
| 101 | { |
| 102 | ++orig->refcount; |
| 103 | return orig; |
| 104 | } |
| 105 | |
Radek Krejci | b56c750 | 2019-02-13 14:19:54 +0100 | [diff] [blame] | 106 | /** |
| 107 | * @brief Duplicate the array of compiled patterns. |
| 108 | * |
| 109 | * The sized array itself is duplicated, but the pattern structures are just shadowed by increasing their reference counter. |
| 110 | * |
| 111 | * @param[in] ctx Libyang context for logging. |
| 112 | * @param[in] orig The patterns sized array to duplicate. |
| 113 | * @return New sized array as a copy of @p orig. |
| 114 | * @return NULL in case of memory allocation error. |
| 115 | */ |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 116 | static struct lysc_pattern** |
| 117 | lysc_patterns_dup(struct ly_ctx *ctx, struct lysc_pattern **orig) |
| 118 | { |
Radek Krejci | d05cbd9 | 2018-12-05 14:26:40 +0100 | [diff] [blame] | 119 | struct lysc_pattern **dup = NULL; |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 120 | unsigned int u; |
| 121 | |
Radek Krejci | b56c750 | 2019-02-13 14:19:54 +0100 | [diff] [blame] | 122 | assert(orig); |
| 123 | |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 124 | LY_ARRAY_CREATE_RET(ctx, dup, LY_ARRAY_SIZE(orig), NULL); |
| 125 | LY_ARRAY_FOR(orig, u) { |
| 126 | dup[u] = lysc_pattern_dup(orig[u]); |
| 127 | LY_ARRAY_INCREMENT(dup); |
| 128 | } |
| 129 | return dup; |
| 130 | } |
| 131 | |
Radek Krejci | b56c750 | 2019-02-13 14:19:54 +0100 | [diff] [blame] | 132 | /** |
| 133 | * @brief Duplicate compiled range structure. |
| 134 | * |
| 135 | * @param[in] ctx Libyang context for logging. |
| 136 | * @param[in] orig The range structure to be duplicated. |
| 137 | * @return New compiled range structure as a copy of @p orig. |
| 138 | * @return NULL in case of memory allocation error. |
| 139 | */ |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 140 | struct lysc_range* |
| 141 | lysc_range_dup(struct ly_ctx *ctx, const struct lysc_range *orig) |
| 142 | { |
| 143 | struct lysc_range *dup; |
| 144 | LY_ERR ret; |
| 145 | |
Radek Krejci | b56c750 | 2019-02-13 14:19:54 +0100 | [diff] [blame] | 146 | assert(orig); |
| 147 | |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 148 | dup = calloc(1, sizeof *dup); |
| 149 | LY_CHECK_ERR_RET(!dup, LOGMEM(ctx), NULL); |
| 150 | if (orig->parts) { |
| 151 | LY_ARRAY_CREATE_GOTO(ctx, dup->parts, LY_ARRAY_SIZE(orig->parts), ret, cleanup); |
| 152 | LY_ARRAY_SIZE(dup->parts) = LY_ARRAY_SIZE(orig->parts); |
| 153 | memcpy(dup->parts, orig->parts, LY_ARRAY_SIZE(dup->parts) * sizeof *dup->parts); |
| 154 | } |
| 155 | DUP_STRING(ctx, orig->eapptag, dup->eapptag); |
| 156 | DUP_STRING(ctx, orig->emsg, dup->emsg); |
| 157 | dup->exts = lysc_ext_instance_dup(ctx, orig->exts); |
| 158 | |
| 159 | return dup; |
| 160 | cleanup: |
| 161 | free(dup); |
| 162 | (void) ret; /* set but not used due to the return type */ |
| 163 | return NULL; |
| 164 | } |
| 165 | |
Radek Krejci | b56c750 | 2019-02-13 14:19:54 +0100 | [diff] [blame] | 166 | /** |
| 167 | * @brief Stack for processing if-feature expressions. |
| 168 | */ |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 169 | struct iff_stack { |
Radek Krejci | b56c750 | 2019-02-13 14:19:54 +0100 | [diff] [blame] | 170 | int size; /**< number of items in the stack */ |
| 171 | int index; /**< first empty item */ |
| 172 | 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] | 173 | }; |
| 174 | |
Radek Krejci | b56c750 | 2019-02-13 14:19:54 +0100 | [diff] [blame] | 175 | /** |
| 176 | * @brief Add @ref ifftokens into the stack. |
| 177 | * @param[in] stack The if-feature stack to use. |
| 178 | * @param[in] value One of the @ref ifftokens to store in the stack. |
| 179 | * @return LY_EMEM in case of memory allocation error |
| 180 | * @return LY_ESUCCESS if the value successfully stored. |
| 181 | */ |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 182 | static LY_ERR |
| 183 | iff_stack_push(struct iff_stack *stack, uint8_t value) |
| 184 | { |
| 185 | if (stack->index == stack->size) { |
| 186 | stack->size += 4; |
| 187 | stack->stack = ly_realloc(stack->stack, stack->size * sizeof *stack->stack); |
| 188 | LY_CHECK_ERR_RET(!stack->stack, LOGMEM(NULL); stack->size = 0, LY_EMEM); |
| 189 | } |
| 190 | stack->stack[stack->index++] = value; |
| 191 | return LY_SUCCESS; |
| 192 | } |
| 193 | |
Radek Krejci | b56c750 | 2019-02-13 14:19:54 +0100 | [diff] [blame] | 194 | /** |
| 195 | * @brief Get (and remove) the last item form the stack. |
| 196 | * @param[in] stack The if-feature stack to use. |
| 197 | * @return The value from the top of the stack. |
| 198 | */ |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 199 | static uint8_t |
| 200 | iff_stack_pop(struct iff_stack *stack) |
| 201 | { |
Radek Krejci | b56c750 | 2019-02-13 14:19:54 +0100 | [diff] [blame] | 202 | assert(stack && stack->index); |
| 203 | |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 204 | stack->index--; |
| 205 | return stack->stack[stack->index]; |
| 206 | } |
| 207 | |
Radek Krejci | b56c750 | 2019-02-13 14:19:54 +0100 | [diff] [blame] | 208 | /** |
| 209 | * @brief Clean up the stack. |
| 210 | * @param[in] stack The if-feature stack to use. |
| 211 | */ |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 212 | static void |
| 213 | iff_stack_clean(struct iff_stack *stack) |
| 214 | { |
| 215 | stack->size = 0; |
| 216 | free(stack->stack); |
| 217 | } |
| 218 | |
Radek Krejci | b56c750 | 2019-02-13 14:19:54 +0100 | [diff] [blame] | 219 | /** |
| 220 | * @brief Store the @ref ifftokens (@p op) on the given position in the 2bits array |
| 221 | * (libyang format of the if-feature expression). |
| 222 | * @param[in,out] list The 2bits array to modify. |
| 223 | * @param[in] op The operand (@ref ifftokens) to store. |
| 224 | * @param[in] pos Position (0-based) where to store the given @p op. |
| 225 | */ |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 226 | static void |
| 227 | iff_setop(uint8_t *list, uint8_t op, int pos) |
| 228 | { |
| 229 | uint8_t *item; |
| 230 | uint8_t mask = 3; |
| 231 | |
| 232 | assert(pos >= 0); |
| 233 | assert(op <= 3); /* max 2 bits */ |
| 234 | |
| 235 | item = &list[pos / 4]; |
| 236 | mask = mask << 2 * (pos % 4); |
| 237 | *item = (*item) & ~mask; |
| 238 | *item = (*item) | (op << 2 * (pos % 4)); |
| 239 | } |
| 240 | |
Radek Krejci | b56c750 | 2019-02-13 14:19:54 +0100 | [diff] [blame] | 241 | #define LYS_IFF_LP 0x04 /**< Additional, temporary, value of @ref ifftokens: ( */ |
| 242 | #define LYS_IFF_RP 0x08 /**< Additional, temporary, value of @ref ifftokens: ) */ |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 243 | |
Radek Krejci | 0af4629 | 2019-01-11 16:02:31 +0100 | [diff] [blame] | 244 | /** |
| 245 | * @brief Find a feature of the given name and referenced in the given module. |
| 246 | * |
| 247 | * If the compiled schema is available (the schema is implemented), the feature from the compiled schema is |
| 248 | * returned. Otherwise, the special array of pre-compiled features is used to search for the feature. Such |
| 249 | * features are always disabled (feature from not implemented schema cannot be enabled), but in case the schema |
| 250 | * will be made implemented in future (no matter if implicitly via augmenting/deviating it or explicitly via |
| 251 | * ly_ctx_module_implement()), the compilation of these feature structure is finished, but the pointers |
| 252 | * assigned till that time will be still valid. |
| 253 | * |
| 254 | * @param[in] mod Module where the feature was referenced (used to resolve prefix of the feature). |
| 255 | * @param[in] name Name of the feature including possible prefix. |
| 256 | * @param[in] len Length of the string representing the feature identifier in the name variable (mandatory!). |
| 257 | * @return Pointer to the feature structure if found, NULL otherwise. |
| 258 | */ |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 259 | static struct lysc_feature * |
Radek Krejci | 0af4629 | 2019-01-11 16:02:31 +0100 | [diff] [blame] | 260 | lys_feature_find(struct lys_module *mod, const char *name, size_t len) |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 261 | { |
| 262 | size_t i; |
Radek Krejci | 0af4629 | 2019-01-11 16:02:31 +0100 | [diff] [blame] | 263 | struct lysc_feature *f, *flist; |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 264 | |
| 265 | for (i = 0; i < len; ++i) { |
| 266 | if (name[i] == ':') { |
| 267 | /* we have a prefixed feature */ |
Radek Krejci | 0af4629 | 2019-01-11 16:02:31 +0100 | [diff] [blame] | 268 | mod = lys_module_find_prefix(mod, name, i); |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 269 | LY_CHECK_RET(!mod, NULL); |
| 270 | |
| 271 | name = &name[i + 1]; |
| 272 | len = len - i - 1; |
| 273 | } |
| 274 | } |
| 275 | |
| 276 | /* we have the correct module, get the feature */ |
Radek Krejci | 0af4629 | 2019-01-11 16:02:31 +0100 | [diff] [blame] | 277 | if (mod->implemented) { |
| 278 | /* module is implemented so there is already the compiled schema */ |
| 279 | flist = mod->compiled->features; |
| 280 | } else { |
| 281 | flist = mod->off_features; |
| 282 | } |
| 283 | LY_ARRAY_FOR(flist, i) { |
| 284 | f = &flist[i]; |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 285 | if (!strncmp(f->name, name, len) && f->name[len] == '\0') { |
| 286 | return f; |
| 287 | } |
| 288 | } |
| 289 | |
| 290 | return NULL; |
| 291 | } |
| 292 | |
| 293 | static LY_ERR |
| 294 | lys_compile_ext(struct lysc_ctx *ctx, struct lysp_ext_instance *ext_p, int UNUSED(options), struct lysc_ext_instance *ext) |
| 295 | { |
| 296 | const char *name; |
| 297 | unsigned int u; |
| 298 | const struct lys_module *mod; |
| 299 | struct lysp_ext *edef = NULL; |
| 300 | |
| 301 | DUP_STRING(ctx->ctx, ext_p->argument, ext->argument); |
| 302 | ext->insubstmt = ext_p->insubstmt; |
| 303 | ext->insubstmt_index = ext_p->insubstmt_index; |
| 304 | |
| 305 | /* get module where the extension definition should be placed */ |
| 306 | for (u = 0; ext_p->name[u] != ':'; ++u); |
Radek Krejci | e86bf77 | 2018-12-14 11:39:53 +0100 | [diff] [blame] | 307 | mod = lys_module_find_prefix(ctx->mod_def, ext_p->name, u); |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 308 | LY_CHECK_ERR_RET(!mod, LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_REFERENCE, |
| 309 | "Invalid prefix \"%.*s\" used for extension instance identifier.", u, ext_p->name), |
| 310 | LY_EVALID); |
| 311 | LY_CHECK_ERR_RET(!mod->parsed->extensions, |
| 312 | LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_REFERENCE, |
| 313 | "Extension instance \"%s\" refers \"%s\" module that does not contain extension definitions.", |
Radek Krejci | 0bcdaed | 2019-01-10 10:21:34 +0100 | [diff] [blame] | 314 | ext_p->name, mod->name), |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 315 | LY_EVALID); |
| 316 | name = &ext_p->name[u + 1]; |
| 317 | /* find the extension definition there */ |
| 318 | for (ext = NULL, u = 0; u < LY_ARRAY_SIZE(mod->parsed->extensions); ++u) { |
| 319 | if (!strcmp(name, mod->parsed->extensions[u].name)) { |
| 320 | edef = &mod->parsed->extensions[u]; |
| 321 | break; |
| 322 | } |
| 323 | } |
| 324 | LY_CHECK_ERR_RET(!edef, LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_REFERENCE, |
| 325 | "Extension definition of extension instance \"%s\" not found.", ext_p->name), |
| 326 | LY_EVALID); |
| 327 | /* TODO plugins */ |
| 328 | |
| 329 | return LY_SUCCESS; |
| 330 | } |
| 331 | |
Radek Krejci | b56c750 | 2019-02-13 14:19:54 +0100 | [diff] [blame] | 332 | /** |
| 333 | * @brief Compile information from the if-feature statement |
| 334 | * @param[in] ctx Compile context. |
| 335 | * @param[in] value The if-feature argument to process. It is pointer-to-pointer-to-char just to unify the compile functions. |
| 336 | * @param[in] options Various options to modify compiler behavior, see [compile flags](@ref scflags). |
| 337 | * @param[in,out] iff Prepared (empty) compiled if-feature structure to fill. |
| 338 | * @return LY_ERR value. |
| 339 | */ |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 340 | static LY_ERR |
| 341 | lys_compile_iffeature(struct lysc_ctx *ctx, const char **value, int UNUSED(options), struct lysc_iffeature *iff) |
| 342 | { |
| 343 | const char *c = *value; |
| 344 | int r, rc = EXIT_FAILURE; |
| 345 | int i, j, last_not, checkversion = 0; |
| 346 | unsigned int f_size = 0, expr_size = 0, f_exp = 1; |
| 347 | uint8_t op; |
| 348 | struct iff_stack stack = {0, 0, NULL}; |
| 349 | struct lysc_feature *f; |
| 350 | |
| 351 | assert(c); |
| 352 | |
| 353 | /* pre-parse the expression to get sizes for arrays, also do some syntax checks of the expression */ |
| 354 | for (i = j = last_not = 0; c[i]; i++) { |
| 355 | if (c[i] == '(') { |
| 356 | j++; |
| 357 | checkversion = 1; |
| 358 | continue; |
| 359 | } else if (c[i] == ')') { |
| 360 | j--; |
| 361 | continue; |
| 362 | } else if (isspace(c[i])) { |
| 363 | checkversion = 1; |
| 364 | continue; |
| 365 | } |
| 366 | |
| 367 | if (!strncmp(&c[i], "not", r = 3) || !strncmp(&c[i], "and", r = 3) || !strncmp(&c[i], "or", r = 2)) { |
| 368 | if (c[i + r] == '\0') { |
| 369 | LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SYNTAX_YANG, |
| 370 | "Invalid value \"%s\" of if-feature - unexpected end of expression.", *value); |
| 371 | return LY_EVALID; |
| 372 | } else if (!isspace(c[i + r])) { |
| 373 | /* feature name starting with the not/and/or */ |
| 374 | last_not = 0; |
| 375 | f_size++; |
| 376 | } else if (c[i] == 'n') { /* not operation */ |
| 377 | if (last_not) { |
| 378 | /* double not */ |
| 379 | expr_size = expr_size - 2; |
| 380 | last_not = 0; |
| 381 | } else { |
| 382 | last_not = 1; |
| 383 | } |
| 384 | } else { /* and, or */ |
| 385 | f_exp++; |
| 386 | /* not a not operation */ |
| 387 | last_not = 0; |
| 388 | } |
| 389 | i += r; |
| 390 | } else { |
| 391 | f_size++; |
| 392 | last_not = 0; |
| 393 | } |
| 394 | expr_size++; |
| 395 | |
| 396 | while (!isspace(c[i])) { |
| 397 | if (!c[i] || c[i] == ')') { |
| 398 | i--; |
| 399 | break; |
| 400 | } |
| 401 | i++; |
| 402 | } |
| 403 | } |
| 404 | if (j || f_exp != f_size) { |
| 405 | /* not matching count of ( and ) */ |
| 406 | LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SYNTAX_YANG, |
| 407 | "Invalid value \"%s\" of if-feature - non-matching opening and closing parentheses.", *value); |
| 408 | return LY_EVALID; |
| 409 | } |
| 410 | |
| 411 | if (checkversion || expr_size > 1) { |
| 412 | /* check that we have 1.1 module */ |
Radek Krejci | 0bcdaed | 2019-01-10 10:21:34 +0100 | [diff] [blame] | 413 | if (ctx->mod_def->version != LYS_VERSION_1_1) { |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 414 | LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SYNTAX_YANG, |
| 415 | "Invalid value \"%s\" of if-feature - YANG 1.1 expression in YANG 1.0 module.", *value); |
| 416 | return LY_EVALID; |
| 417 | } |
| 418 | } |
| 419 | |
| 420 | /* allocate the memory */ |
| 421 | LY_ARRAY_CREATE_RET(ctx->ctx, iff->features, f_size, LY_EMEM); |
| 422 | iff->expr = calloc((j = (expr_size / 4) + ((expr_size % 4) ? 1 : 0)), sizeof *iff->expr); |
| 423 | stack.stack = malloc(expr_size * sizeof *stack.stack); |
| 424 | LY_CHECK_ERR_GOTO(!stack.stack || !iff->expr, LOGMEM(ctx->ctx), error); |
| 425 | |
| 426 | stack.size = expr_size; |
| 427 | f_size--; expr_size--; /* used as indexes from now */ |
| 428 | |
| 429 | for (i--; i >= 0; i--) { |
| 430 | if (c[i] == ')') { |
| 431 | /* push it on stack */ |
| 432 | iff_stack_push(&stack, LYS_IFF_RP); |
| 433 | continue; |
| 434 | } else if (c[i] == '(') { |
| 435 | /* pop from the stack into result all operators until ) */ |
| 436 | while((op = iff_stack_pop(&stack)) != LYS_IFF_RP) { |
| 437 | iff_setop(iff->expr, op, expr_size--); |
| 438 | } |
| 439 | continue; |
| 440 | } else if (isspace(c[i])) { |
| 441 | continue; |
| 442 | } |
| 443 | |
| 444 | /* end of operator or operand -> find beginning and get what is it */ |
| 445 | j = i + 1; |
| 446 | while (i >= 0 && !isspace(c[i]) && c[i] != '(') { |
| 447 | i--; |
| 448 | } |
| 449 | i++; /* go back by one step */ |
| 450 | |
| 451 | if (!strncmp(&c[i], "not", 3) && isspace(c[i + 3])) { |
| 452 | if (stack.index && stack.stack[stack.index - 1] == LYS_IFF_NOT) { |
| 453 | /* double not */ |
| 454 | iff_stack_pop(&stack); |
| 455 | } else { |
| 456 | /* not has the highest priority, so do not pop from the stack |
| 457 | * as in case of AND and OR */ |
| 458 | iff_stack_push(&stack, LYS_IFF_NOT); |
| 459 | } |
| 460 | } else if (!strncmp(&c[i], "and", 3) && isspace(c[i + 3])) { |
| 461 | /* as for OR - pop from the stack all operators with the same or higher |
| 462 | * priority and store them to the result, then push the AND to the stack */ |
| 463 | while (stack.index && stack.stack[stack.index - 1] <= LYS_IFF_AND) { |
| 464 | op = iff_stack_pop(&stack); |
| 465 | iff_setop(iff->expr, op, expr_size--); |
| 466 | } |
| 467 | iff_stack_push(&stack, LYS_IFF_AND); |
| 468 | } else if (!strncmp(&c[i], "or", 2) && isspace(c[i + 2])) { |
| 469 | while (stack.index && stack.stack[stack.index - 1] <= LYS_IFF_OR) { |
| 470 | op = iff_stack_pop(&stack); |
| 471 | iff_setop(iff->expr, op, expr_size--); |
| 472 | } |
| 473 | iff_stack_push(&stack, LYS_IFF_OR); |
| 474 | } else { |
| 475 | /* feature name, length is j - i */ |
| 476 | |
| 477 | /* add it to the expression */ |
| 478 | iff_setop(iff->expr, LYS_IFF_F, expr_size--); |
| 479 | |
| 480 | /* now get the link to the feature definition */ |
Radek Krejci | 0af4629 | 2019-01-11 16:02:31 +0100 | [diff] [blame] | 481 | f = lys_feature_find(ctx->mod_def, &c[i], j - i); |
| 482 | LY_CHECK_ERR_GOTO(!f, LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SYNTAX_YANG, |
| 483 | "Invalid value \"%s\" of if-feature - unable to find feature \"%.*s\".", *value, j - i, &c[i]); |
| 484 | rc = LY_EVALID, error) |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 485 | iff->features[f_size] = f; |
| 486 | LY_ARRAY_INCREMENT(iff->features); |
| 487 | f_size--; |
| 488 | } |
| 489 | } |
| 490 | while (stack.index) { |
| 491 | op = iff_stack_pop(&stack); |
| 492 | iff_setop(iff->expr, op, expr_size--); |
| 493 | } |
| 494 | |
| 495 | if (++expr_size || ++f_size) { |
| 496 | /* not all expected operators and operands found */ |
| 497 | LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SYNTAX_YANG, |
| 498 | "Invalid value \"%s\" of if-feature - processing error.", *value); |
| 499 | rc = LY_EINT; |
| 500 | } else { |
| 501 | rc = LY_SUCCESS; |
| 502 | } |
| 503 | |
| 504 | error: |
| 505 | /* cleanup */ |
| 506 | iff_stack_clean(&stack); |
| 507 | |
| 508 | return rc; |
| 509 | } |
| 510 | |
Radek Krejci | b56c750 | 2019-02-13 14:19:54 +0100 | [diff] [blame] | 511 | /** |
| 512 | * @brief Compile information from the when statement |
| 513 | * @param[in] ctx Compile context. |
| 514 | * @param[in] when_p The parsed when statement structure. |
| 515 | * @param[in] options Various options to modify compiler behavior, see [compile flags](@ref scflags). |
| 516 | * @param[out] when Pointer where to store pointer to the created compiled when structure. |
| 517 | * @return LY_ERR value. |
| 518 | */ |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 519 | static LY_ERR |
Radek Krejci | 00b874b | 2019-02-12 10:54:50 +0100 | [diff] [blame] | 520 | lys_compile_when(struct lysc_ctx *ctx, struct lysp_when *when_p, int options, struct lysc_when **when) |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 521 | { |
| 522 | unsigned int u; |
| 523 | LY_ERR ret = LY_SUCCESS; |
| 524 | |
Radek Krejci | 00b874b | 2019-02-12 10:54:50 +0100 | [diff] [blame] | 525 | *when = calloc(1, sizeof **when); |
| 526 | (*when)->refcount = 1; |
| 527 | (*when)->cond = lyxp_expr_parse(ctx->ctx, when_p->cond); |
| 528 | DUP_STRING(ctx->ctx, when_p->dsc, (*when)->dsc); |
| 529 | DUP_STRING(ctx->ctx, when_p->ref, (*when)->ref); |
| 530 | LY_CHECK_ERR_GOTO(!(*when)->cond, ret = ly_errcode(ctx->ctx), done); |
| 531 | COMPILE_ARRAY_GOTO(ctx, when_p->exts, (*when)->exts, options, u, lys_compile_ext, ret, done); |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 532 | |
| 533 | done: |
| 534 | return ret; |
| 535 | } |
| 536 | |
Radek Krejci | b56c750 | 2019-02-13 14:19:54 +0100 | [diff] [blame] | 537 | /** |
| 538 | * @brief Compile information from the must statement |
| 539 | * @param[in] ctx Compile context. |
| 540 | * @param[in] must_p The parsed must statement structure. |
| 541 | * @param[in] options Various options to modify compiler behavior, see [compile flags](@ref scflags). |
| 542 | * @param[in,out] must Prepared (empty) compiled must structure to fill. |
| 543 | * @return LY_ERR value. |
| 544 | */ |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 545 | static LY_ERR |
| 546 | lys_compile_must(struct lysc_ctx *ctx, struct lysp_restr *must_p, int options, struct lysc_must *must) |
| 547 | { |
| 548 | unsigned int u; |
| 549 | LY_ERR ret = LY_SUCCESS; |
| 550 | |
| 551 | must->cond = lyxp_expr_parse(ctx->ctx, must_p->arg); |
| 552 | LY_CHECK_ERR_GOTO(!must->cond, ret = ly_errcode(ctx->ctx), done); |
| 553 | |
| 554 | DUP_STRING(ctx->ctx, must_p->eapptag, must->eapptag); |
| 555 | DUP_STRING(ctx->ctx, must_p->emsg, must->emsg); |
Radek Krejci | c8b3100 | 2019-01-08 10:24:45 +0100 | [diff] [blame] | 556 | DUP_STRING(ctx->ctx, must_p->dsc, must->dsc); |
| 557 | DUP_STRING(ctx->ctx, must_p->ref, must->ref); |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 558 | COMPILE_ARRAY_GOTO(ctx, must_p->exts, must->exts, options, u, lys_compile_ext, ret, done); |
| 559 | |
| 560 | done: |
| 561 | return ret; |
| 562 | } |
| 563 | |
Radek Krejci | b56c750 | 2019-02-13 14:19:54 +0100 | [diff] [blame] | 564 | /** |
| 565 | * @brief Compile information from the import statement |
| 566 | * @param[in] ctx Compile context. |
| 567 | * @param[in] imp_p The parsed import statement structure. |
| 568 | * @param[in] options Various options to modify compiler behavior, see [compile flags](@ref scflags). |
| 569 | * @param[in,out] imp Prepared (empty) compiled import structure to fill. |
| 570 | * @return LY_ERR value. |
| 571 | */ |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 572 | static LY_ERR |
| 573 | lys_compile_import(struct lysc_ctx *ctx, struct lysp_import *imp_p, int options, struct lysc_import *imp) |
| 574 | { |
| 575 | unsigned int u; |
| 576 | struct lys_module *mod = NULL; |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 577 | LY_ERR ret = LY_SUCCESS; |
| 578 | |
| 579 | DUP_STRING(ctx->ctx, imp_p->prefix, imp->prefix); |
| 580 | COMPILE_ARRAY_GOTO(ctx, imp_p->exts, imp->exts, options, u, lys_compile_ext, ret, done); |
| 581 | imp->module = imp_p->module; |
| 582 | |
Radek Krejci | 7f2a536 | 2018-11-28 13:05:37 +0100 | [diff] [blame] | 583 | /* make sure that we have the parsed version (lysp_) of the imported module to import groupings or typedefs. |
| 584 | * 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] | 585 | * if needed) when these nodes are finally being instantiated and validated at the end of schema compilation. */ |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 586 | if (!imp->module->parsed) { |
Radek Krejci | 0bcdaed | 2019-01-10 10:21:34 +0100 | [diff] [blame] | 587 | /* try to use filepath if present */ |
| 588 | if (imp->module->filepath) { |
| 589 | mod = (struct lys_module*)lys_parse_path(ctx->ctx, imp->module->filepath, |
| 590 | !strcmp(&imp->module->filepath[strlen(imp->module->filepath - 4)], ".yin") ? LYS_IN_YIN : LYS_IN_YANG); |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 591 | if (mod != imp->module) { |
| 592 | LOGERR(ctx->ctx, LY_EINT, "Filepath \"%s\" of the module \"%s\" does not match.", |
Radek Krejci | 0bcdaed | 2019-01-10 10:21:34 +0100 | [diff] [blame] | 593 | imp->module->filepath, imp->module->name); |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 594 | mod = NULL; |
| 595 | } |
| 596 | } |
| 597 | if (!mod) { |
Radek Krejci | 0af4629 | 2019-01-11 16:02:31 +0100 | [diff] [blame] | 598 | if (lysp_load_module(ctx->ctx, imp->module->name, imp->module->revision, 0, 1, &mod)) { |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 599 | LOGERR(ctx->ctx, LY_ENOTFOUND, "Unable to reload \"%s\" module to import it into \"%s\", source data not found.", |
Radek Krejci | 0bcdaed | 2019-01-10 10:21:34 +0100 | [diff] [blame] | 600 | imp->module->name, ctx->mod->name); |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 601 | return LY_ENOTFOUND; |
| 602 | } |
| 603 | } |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 604 | } |
| 605 | |
| 606 | done: |
| 607 | return ret; |
| 608 | } |
| 609 | |
Radek Krejci | b56c750 | 2019-02-13 14:19:54 +0100 | [diff] [blame] | 610 | /** |
| 611 | * @brief Compile information from the identity statement |
| 612 | * |
| 613 | * The backlinks to the identities derived from this one are supposed to be filled later via lys_compile_identity_bases(). |
| 614 | * |
| 615 | * @param[in] ctx Compile context. |
| 616 | * @param[in] ident_p The parsed identity statement structure. |
| 617 | * @param[in] options Various options to modify compiler behavior, see [compile flags](@ref scflags). |
| 618 | * @param[in] idents List of so far compiled identities to check the name uniqueness. |
| 619 | * @param[in,out] ident Prepared (empty) compiled identity structure to fill. |
| 620 | * @return LY_ERR value. |
| 621 | */ |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 622 | static LY_ERR |
Radek Krejci | d05cbd9 | 2018-12-05 14:26:40 +0100 | [diff] [blame] | 623 | lys_compile_identity(struct lysc_ctx *ctx, struct lysp_ident *ident_p, int options, struct lysc_ident *idents, struct lysc_ident *ident) |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 624 | { |
| 625 | unsigned int u; |
| 626 | LY_ERR ret = LY_SUCCESS; |
| 627 | |
Radek Krejci | d05cbd9 | 2018-12-05 14:26:40 +0100 | [diff] [blame] | 628 | COMPILE_CHECK_UNIQUENESS(ctx, idents, name, ident, "identity", ident_p->name); |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 629 | DUP_STRING(ctx->ctx, ident_p->name, ident->name); |
Radek Krejci | c8b3100 | 2019-01-08 10:24:45 +0100 | [diff] [blame] | 630 | DUP_STRING(ctx->ctx, ident_p->ref, ident->dsc); |
| 631 | DUP_STRING(ctx->ctx, ident_p->ref, ident->dsc); |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 632 | COMPILE_ARRAY_GOTO(ctx, ident_p->iffeatures, ident->iffeatures, options, u, lys_compile_iffeature, ret, done); |
| 633 | /* backlings (derived) can be added no sooner than when all the identities in the current module are present */ |
| 634 | COMPILE_ARRAY_GOTO(ctx, ident_p->exts, ident->exts, options, u, lys_compile_ext, ret, done); |
| 635 | ident->flags = ident_p->flags; |
| 636 | |
| 637 | done: |
| 638 | return ret; |
| 639 | } |
| 640 | |
Radek Krejci | b56c750 | 2019-02-13 14:19:54 +0100 | [diff] [blame] | 641 | /** |
| 642 | * @brief Check circular dependency of identities - identity MUST NOT reference itself (via their base statement). |
| 643 | * |
| 644 | * The function works in the same way as lys_compile_feature_circular_check() with different structures and error messages. |
| 645 | * |
| 646 | * @param[in] ctx Compile context for logging. |
| 647 | * @param[in] ident The base identity (its derived list is being extended by the identity being currently processed). |
| 648 | * @param[in] derived The list of derived identities of the identity being currently processed (not the one provided as @p ident) |
| 649 | * @return LY_SUCCESS if everything is ok. |
| 650 | * @return LY_EVALID if the identity is derived from itself. |
| 651 | */ |
Radek Krejci | 3822263 | 2019-02-12 16:55:05 +0100 | [diff] [blame] | 652 | static LY_ERR |
| 653 | lys_compile_identity_circular_check(struct lysc_ctx *ctx, struct lysc_ident *ident, struct lysc_ident **derived) |
| 654 | { |
| 655 | LY_ERR ret = LY_EVALID; |
| 656 | unsigned int u, v; |
| 657 | struct ly_set recursion = {0}; |
| 658 | struct lysc_ident *drv; |
| 659 | |
| 660 | if (!derived) { |
| 661 | return LY_SUCCESS; |
| 662 | } |
| 663 | |
| 664 | for (u = 0; u < LY_ARRAY_SIZE(derived); ++u) { |
| 665 | if (ident == derived[u]) { |
| 666 | LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_REFERENCE, |
| 667 | "Identity \"%s\" is indirectly derived from itself.", ident->name); |
| 668 | goto cleanup; |
| 669 | } |
| 670 | ly_set_add(&recursion, derived[u], 0); |
| 671 | } |
| 672 | |
| 673 | for (v = 0; v < recursion.count; ++v) { |
| 674 | drv = recursion.objs[v]; |
| 675 | if (!drv->derived) { |
| 676 | continue; |
| 677 | } |
| 678 | for (u = 0; u < LY_ARRAY_SIZE(drv->derived); ++u) { |
| 679 | if (ident == drv->derived[u]) { |
| 680 | LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_REFERENCE, |
| 681 | "Identity \"%s\" is indirectly derived from itself.", ident->name); |
| 682 | goto cleanup; |
| 683 | } |
| 684 | ly_set_add(&recursion, drv->derived[u], 0); |
| 685 | } |
| 686 | } |
| 687 | ret = LY_SUCCESS; |
| 688 | |
| 689 | cleanup: |
| 690 | ly_set_erase(&recursion, NULL); |
| 691 | return ret; |
| 692 | } |
| 693 | |
Radek Krejci | a304538 | 2018-11-22 14:30:31 +0100 | [diff] [blame] | 694 | /** |
| 695 | * @brief Find and process the referenced base identities from another identity or identityref |
| 696 | * |
| 697 | * For bases in identity se backlinks to them from the base identities. For identityref, store |
| 698 | * the array of pointers to the base identities. So one of the ident or bases parameter must be set |
| 699 | * to distinguish these two use cases. |
| 700 | * |
| 701 | * @param[in] ctx Compile context, not only for logging but also to get the current module to resolve prefixes. |
| 702 | * @param[in] bases_p Array of names (including prefix if necessary) of base identities. |
| 703 | * @param[in] ident Referencing identity to work with. |
| 704 | * @param[in] bases Array of bases of identityref to fill in. |
| 705 | * @return LY_ERR value. |
| 706 | */ |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 707 | static LY_ERR |
Radek Krejci | 555cb5b | 2018-11-16 14:54:33 +0100 | [diff] [blame] | 708 | lys_compile_identity_bases(struct lysc_ctx *ctx, const char **bases_p, struct lysc_ident *ident, struct lysc_ident ***bases) |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 709 | { |
Radek Krejci | 555cb5b | 2018-11-16 14:54:33 +0100 | [diff] [blame] | 710 | unsigned int u, v; |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 711 | const char *s, *name; |
Radek Krejci | e86bf77 | 2018-12-14 11:39:53 +0100 | [diff] [blame] | 712 | struct lys_module *mod; |
Radek Krejci | 555cb5b | 2018-11-16 14:54:33 +0100 | [diff] [blame] | 713 | struct lysc_ident **idref; |
| 714 | |
| 715 | assert(ident || bases); |
| 716 | |
Radek Krejci | 0bcdaed | 2019-01-10 10:21:34 +0100 | [diff] [blame] | 717 | if (LY_ARRAY_SIZE(bases_p) > 1 && ctx->mod_def->version < 2) { |
Radek Krejci | 555cb5b | 2018-11-16 14:54:33 +0100 | [diff] [blame] | 718 | LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SYNTAX_YANG, |
| 719 | "Multiple bases in %s are allowed only in YANG 1.1 modules.", ident ? "identity" : "identityref type"); |
| 720 | return LY_EVALID; |
| 721 | } |
| 722 | |
| 723 | for (u = 0; u < LY_ARRAY_SIZE(bases_p); ++u) { |
| 724 | s = strchr(bases_p[u], ':'); |
| 725 | if (s) { |
| 726 | /* prefixed identity */ |
| 727 | name = &s[1]; |
Radek Krejci | e86bf77 | 2018-12-14 11:39:53 +0100 | [diff] [blame] | 728 | mod = lys_module_find_prefix(ctx->mod_def, bases_p[u], s - bases_p[u]); |
Radek Krejci | 555cb5b | 2018-11-16 14:54:33 +0100 | [diff] [blame] | 729 | } else { |
| 730 | name = bases_p[u]; |
Radek Krejci | e86bf77 | 2018-12-14 11:39:53 +0100 | [diff] [blame] | 731 | mod = ctx->mod_def; |
Radek Krejci | 555cb5b | 2018-11-16 14:54:33 +0100 | [diff] [blame] | 732 | } |
| 733 | if (!mod) { |
| 734 | if (ident) { |
| 735 | LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SYNTAX_YANG, |
| 736 | "Invalid prefix used for base (%s) of identity \"%s\".", bases_p[u], ident->name); |
| 737 | } else { |
| 738 | LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SYNTAX_YANG, |
| 739 | "Invalid prefix used for base (%s) of identityref.", bases_p[u]); |
| 740 | } |
| 741 | return LY_EVALID; |
| 742 | } |
| 743 | idref = NULL; |
Radek Krejci | e86bf77 | 2018-12-14 11:39:53 +0100 | [diff] [blame] | 744 | if (mod->compiled && mod->compiled->identities) { |
| 745 | for (v = 0; v < LY_ARRAY_SIZE(mod->compiled->identities); ++v) { |
| 746 | if (!strcmp(name, mod->compiled->identities[v].name)) { |
Radek Krejci | 555cb5b | 2018-11-16 14:54:33 +0100 | [diff] [blame] | 747 | if (ident) { |
Radek Krejci | 3822263 | 2019-02-12 16:55:05 +0100 | [diff] [blame] | 748 | if (ident == &mod->compiled->identities[v]) { |
| 749 | LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_REFERENCE, |
| 750 | "Identity \"%s\" is derived from itself.", ident->name); |
| 751 | return LY_EVALID; |
| 752 | } |
| 753 | LY_CHECK_RET(lys_compile_identity_circular_check(ctx, &mod->compiled->identities[v], ident->derived)); |
Radek Krejci | 555cb5b | 2018-11-16 14:54:33 +0100 | [diff] [blame] | 754 | /* we have match! store the backlink */ |
Radek Krejci | e86bf77 | 2018-12-14 11:39:53 +0100 | [diff] [blame] | 755 | LY_ARRAY_NEW_RET(ctx->ctx, mod->compiled->identities[v].derived, idref, LY_EMEM); |
Radek Krejci | 555cb5b | 2018-11-16 14:54:33 +0100 | [diff] [blame] | 756 | *idref = ident; |
| 757 | } else { |
| 758 | /* we have match! store the found identity */ |
| 759 | LY_ARRAY_NEW_RET(ctx->ctx, *bases, idref, LY_EMEM); |
Radek Krejci | e86bf77 | 2018-12-14 11:39:53 +0100 | [diff] [blame] | 760 | *idref = &mod->compiled->identities[v]; |
Radek Krejci | 555cb5b | 2018-11-16 14:54:33 +0100 | [diff] [blame] | 761 | } |
| 762 | break; |
| 763 | } |
| 764 | } |
| 765 | } |
| 766 | if (!idref || !(*idref)) { |
| 767 | if (ident) { |
| 768 | LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SYNTAX_YANG, |
| 769 | "Unable to find base (%s) of identity \"%s\".", bases_p[u], ident->name); |
| 770 | } else { |
| 771 | LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SYNTAX_YANG, |
| 772 | "Unable to find base (%s) of identityref.", bases_p[u]); |
| 773 | } |
| 774 | return LY_EVALID; |
| 775 | } |
| 776 | } |
| 777 | return LY_SUCCESS; |
| 778 | } |
| 779 | |
Radek Krejci | a304538 | 2018-11-22 14:30:31 +0100 | [diff] [blame] | 780 | /** |
| 781 | * @brief For the given array of identities, set the backlinks from all their base identities. |
| 782 | * @param[in] ctx Compile context, not only for logging but also to get the current module to resolve prefixes. |
| 783 | * @param[in] idents_p Array of identities definitions from the parsed schema structure. |
| 784 | * @param[in] idents Array of referencing identities to which the backlinks are supposed to be set. |
| 785 | * @return LY_ERR value - LY_SUCCESS or LY_EVALID. |
| 786 | */ |
Radek Krejci | 555cb5b | 2018-11-16 14:54:33 +0100 | [diff] [blame] | 787 | static LY_ERR |
| 788 | lys_compile_identities_derived(struct lysc_ctx *ctx, struct lysp_ident *idents_p, struct lysc_ident *idents) |
| 789 | { |
| 790 | unsigned int i; |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 791 | |
| 792 | for (i = 0; i < LY_ARRAY_SIZE(idents_p); ++i) { |
| 793 | if (!idents_p[i].bases) { |
| 794 | continue; |
| 795 | } |
Radek Krejci | 555cb5b | 2018-11-16 14:54:33 +0100 | [diff] [blame] | 796 | LY_CHECK_RET(lys_compile_identity_bases(ctx, idents_p[i].bases, &idents[i], NULL)); |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 797 | } |
| 798 | return LY_SUCCESS; |
| 799 | } |
| 800 | |
Radek Krejci | 0af4629 | 2019-01-11 16:02:31 +0100 | [diff] [blame] | 801 | LY_ERR |
| 802 | lys_feature_precompile(struct ly_ctx *ctx, struct lysp_feature *features_p, struct lysc_feature **features) |
| 803 | { |
| 804 | unsigned int offset = 0, u; |
| 805 | struct lysc_ctx context = {0}; |
| 806 | |
| 807 | assert(ctx); |
| 808 | context.ctx = ctx; |
| 809 | |
| 810 | if (!features_p) { |
| 811 | return LY_SUCCESS; |
| 812 | } |
| 813 | if (*features) { |
| 814 | offset = LY_ARRAY_SIZE(*features); |
| 815 | } |
| 816 | |
| 817 | LY_ARRAY_CREATE_RET(ctx, *features, LY_ARRAY_SIZE(features_p), LY_EMEM); |
| 818 | LY_ARRAY_FOR(features_p, u) { |
| 819 | LY_ARRAY_INCREMENT(*features); |
| 820 | COMPILE_CHECK_UNIQUENESS(&context, *features, name, &(*features)[offset + u], "feature", features_p[u].name); |
| 821 | DUP_STRING(ctx, features_p[u].name, (*features)[offset + u].name); |
| 822 | DUP_STRING(ctx, features_p[u].dsc, (*features)[offset + u].dsc); |
| 823 | DUP_STRING(ctx, features_p[u].ref, (*features)[offset + u].ref); |
| 824 | (*features)[offset + u].flags = features_p[u].flags; |
| 825 | } |
| 826 | |
| 827 | return LY_SUCCESS; |
| 828 | } |
| 829 | |
Radek Krejci | a304538 | 2018-11-22 14:30:31 +0100 | [diff] [blame] | 830 | /** |
Radek Krejci | 09a1fc5 | 2019-02-13 10:55:17 +0100 | [diff] [blame] | 831 | * @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] | 832 | * |
| 833 | * The function works in the same way as lys_compile_identity_circular_check() with different structures and error messages. |
| 834 | * |
Radek Krejci | 09a1fc5 | 2019-02-13 10:55:17 +0100 | [diff] [blame] | 835 | * @param[in] ctx Compile context for logging. |
Radek Krejci | b56c750 | 2019-02-13 14:19:54 +0100 | [diff] [blame] | 836 | * @param[in] feature The feature referenced in if-feature statement (its depfeatures list is being extended by the feature |
| 837 | * being currently processed). |
| 838 | * @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] | 839 | * @return LY_SUCCESS if everything is ok. |
| 840 | * @return LY_EVALID if the feature references indirectly itself. |
| 841 | */ |
| 842 | static LY_ERR |
| 843 | lys_compile_feature_circular_check(struct lysc_ctx *ctx, struct lysc_feature *feature, struct lysc_feature **depfeatures) |
| 844 | { |
| 845 | LY_ERR ret = LY_EVALID; |
| 846 | unsigned int u, v; |
| 847 | struct ly_set recursion = {0}; |
| 848 | struct lysc_feature *drv; |
| 849 | |
| 850 | if (!depfeatures) { |
| 851 | return LY_SUCCESS; |
| 852 | } |
| 853 | |
| 854 | for (u = 0; u < LY_ARRAY_SIZE(depfeatures); ++u) { |
| 855 | if (feature == depfeatures[u]) { |
| 856 | LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_REFERENCE, |
| 857 | "Feature \"%s\" is indirectly referenced from itself.", feature->name); |
| 858 | goto cleanup; |
| 859 | } |
| 860 | ly_set_add(&recursion, depfeatures[u], 0); |
| 861 | } |
| 862 | |
| 863 | for (v = 0; v < recursion.count; ++v) { |
| 864 | drv = recursion.objs[v]; |
| 865 | if (!drv->depfeatures) { |
| 866 | continue; |
| 867 | } |
| 868 | for (u = 0; u < LY_ARRAY_SIZE(drv->depfeatures); ++u) { |
| 869 | if (feature == drv->depfeatures[u]) { |
| 870 | LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_REFERENCE, |
| 871 | "Feature \"%s\" is indirectly referenced from itself.", feature->name); |
| 872 | goto cleanup; |
| 873 | } |
| 874 | ly_set_add(&recursion, drv->depfeatures[u], 0); |
| 875 | } |
| 876 | } |
| 877 | ret = LY_SUCCESS; |
| 878 | |
| 879 | cleanup: |
| 880 | ly_set_erase(&recursion, NULL); |
| 881 | return ret; |
| 882 | } |
| 883 | |
| 884 | /** |
Radek Krejci | 0af4629 | 2019-01-11 16:02:31 +0100 | [diff] [blame] | 885 | * @brief Create pre-compiled features array. |
| 886 | * |
| 887 | * See lys_feature_precompile() for more details. |
| 888 | * |
Radek Krejci | a304538 | 2018-11-22 14:30:31 +0100 | [diff] [blame] | 889 | * @param[in] ctx Compile context. |
| 890 | * @param[in] feature_p Parsed feature definition to compile. |
| 891 | * @param[in] options Various options to modify compiler behavior, see [compile flags](@ref scflags). |
Radek Krejci | 0af4629 | 2019-01-11 16:02:31 +0100 | [diff] [blame] | 892 | * @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] | 893 | * @return LY_ERR value. |
| 894 | */ |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 895 | static LY_ERR |
Radek Krejci | 0af4629 | 2019-01-11 16:02:31 +0100 | [diff] [blame] | 896 | lys_feature_precompile_finish(struct lysc_ctx *ctx, struct lysp_feature *feature_p, int options, struct lysc_feature *features) |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 897 | { |
Radek Krejci | 0af4629 | 2019-01-11 16:02:31 +0100 | [diff] [blame] | 898 | unsigned int u, v, x; |
| 899 | struct lysc_feature *feature, **df; |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 900 | LY_ERR ret = LY_SUCCESS; |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 901 | |
Radek Krejci | 0af4629 | 2019-01-11 16:02:31 +0100 | [diff] [blame] | 902 | /* find the preprecompiled feature */ |
| 903 | LY_ARRAY_FOR(features, x) { |
| 904 | if (strcmp(features[x].name, feature_p->name)) { |
| 905 | continue; |
| 906 | } |
| 907 | feature = &features[x]; |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 908 | |
Radek Krejci | 0af4629 | 2019-01-11 16:02:31 +0100 | [diff] [blame] | 909 | /* finish compilation started in lys_feature_precompile() */ |
| 910 | COMPILE_ARRAY_GOTO(ctx, feature_p->exts, feature->exts, options, u, lys_compile_ext, ret, done); |
| 911 | COMPILE_ARRAY_GOTO(ctx, feature_p->iffeatures, feature->iffeatures, options, u, lys_compile_iffeature, ret, done); |
| 912 | if (feature->iffeatures) { |
| 913 | for (u = 0; u < LY_ARRAY_SIZE(feature->iffeatures); ++u) { |
| 914 | if (feature->iffeatures[u].features) { |
| 915 | for (v = 0; v < LY_ARRAY_SIZE(feature->iffeatures[u].features); ++v) { |
Radek Krejci | 09a1fc5 | 2019-02-13 10:55:17 +0100 | [diff] [blame] | 916 | /* check for circular dependency - direct reference first,... */ |
| 917 | if (feature == feature->iffeatures[u].features[v]) { |
| 918 | LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_REFERENCE, |
| 919 | "Feature \"%s\" is referenced from itself.", feature->name); |
| 920 | return LY_EVALID; |
| 921 | } |
| 922 | /* ... and indirect circular reference */ |
| 923 | LY_CHECK_RET(lys_compile_feature_circular_check(ctx, feature->iffeatures[u].features[v], feature->depfeatures)); |
| 924 | |
Radek Krejci | 0af4629 | 2019-01-11 16:02:31 +0100 | [diff] [blame] | 925 | /* add itself into the dependants list */ |
| 926 | LY_ARRAY_NEW_RET(ctx->ctx, feature->iffeatures[u].features[v]->depfeatures, df, LY_EMEM); |
| 927 | *df = feature; |
| 928 | } |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 929 | } |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 930 | } |
| 931 | } |
Radek Krejci | 0af4629 | 2019-01-11 16:02:31 +0100 | [diff] [blame] | 932 | done: |
| 933 | return ret; |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 934 | } |
Radek Krejci | 0af4629 | 2019-01-11 16:02:31 +0100 | [diff] [blame] | 935 | |
| 936 | LOGINT(ctx->ctx); |
| 937 | return LY_EINT; |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 938 | } |
| 939 | |
Radek Krejci | b56c750 | 2019-02-13 14:19:54 +0100 | [diff] [blame] | 940 | /** |
| 941 | * @brief Revert compiled list of features back to the precompiled state. |
| 942 | * |
| 943 | * Function is needed in case the compilation failed and the schema is expected to revert back to the non-compiled status. |
| 944 | * The features are supposed to be stored again as off_features in ::lys_module structure. |
| 945 | * |
| 946 | * @param[in] ctx Compilation context. |
| 947 | * @param[in] mod The module structure still holding the compiled (but possibly not finished, only the list of compiled features is taken) schema |
| 948 | * and supposed to hold the off_features list. |
| 949 | */ |
Radek Krejci | 95710c9 | 2019-02-11 15:49:55 +0100 | [diff] [blame] | 950 | static void |
| 951 | lys_feature_precompile_revert(struct lysc_ctx *ctx, struct lys_module *mod) |
| 952 | { |
| 953 | unsigned int u, v; |
| 954 | |
| 955 | /* keep the off_features list until the complete lys_module is freed */ |
| 956 | mod->off_features = mod->compiled->features; |
| 957 | mod->compiled->features = NULL; |
| 958 | |
| 959 | /* in the off_features list, remove all the parts (from finished compiling process) |
| 960 | * which may points into the data being freed here */ |
| 961 | LY_ARRAY_FOR(mod->off_features, u) { |
| 962 | LY_ARRAY_FOR(mod->off_features[u].iffeatures, v) { |
| 963 | lysc_iffeature_free(ctx->ctx, &mod->off_features[u].iffeatures[v]); |
| 964 | } |
| 965 | LY_ARRAY_FREE(mod->off_features[u].iffeatures); |
| 966 | mod->off_features[u].iffeatures = NULL; |
| 967 | |
| 968 | LY_ARRAY_FOR(mod->off_features[u].exts, v) { |
| 969 | lysc_ext_instance_free(ctx->ctx, &(mod->off_features[u].exts)[v]); |
| 970 | } |
| 971 | LY_ARRAY_FREE(mod->off_features[u].exts); |
| 972 | mod->off_features[u].exts = NULL; |
| 973 | } |
| 974 | } |
| 975 | |
Radek Krejci | a304538 | 2018-11-22 14:30:31 +0100 | [diff] [blame] | 976 | /** |
| 977 | * @brief Validate and normalize numeric value from a range definition. |
| 978 | * @param[in] ctx Compile context. |
| 979 | * @param[in] basetype Base YANG built-in type of the node connected with the range restriction. Actually only LY_TYPE_DEC64 is important to |
| 980 | * allow processing of the fractions. The fraction point is extracted from the value which is then normalize according to given frdigits into |
| 981 | * valcopy to allow easy parsing and storing of the value. libyang stores decimal number without the decimal point which is always recovered from |
| 982 | * the known fraction-digits value. So, with fraction-digits 2, number 3.14 is stored as 314 and number 1 is stored as 100. |
| 983 | * @param[in] frdigits The fraction-digits of the type in case of LY_TYPE_DEC64. |
| 984 | * @param[in] value String value of the range boundary. |
| 985 | * @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. |
| 986 | * @param[out] valcopy NULL-terminated string with the numeric value to parse and store. |
| 987 | * @return LY_ERR value - LY_SUCCESS, LY_EMEM, LY_EVALID (no number) or LY_EINVAL (decimal64 not matching fraction-digits value). |
| 988 | */ |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 989 | static LY_ERR |
Radek Krejci | 6cba429 | 2018-11-15 17:33:29 +0100 | [diff] [blame] | 990 | 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] | 991 | { |
Radek Krejci | 6cba429 | 2018-11-15 17:33:29 +0100 | [diff] [blame] | 992 | size_t fraction = 0, size; |
| 993 | |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 994 | *len = 0; |
| 995 | |
| 996 | assert(value); |
| 997 | /* parse value */ |
| 998 | if (!isdigit(value[*len]) && (value[*len] != '-') && (value[*len] != '+')) { |
| 999 | return LY_EVALID; |
| 1000 | } |
| 1001 | |
| 1002 | if ((value[*len] == '-') || (value[*len] == '+')) { |
| 1003 | ++(*len); |
| 1004 | } |
| 1005 | |
| 1006 | while (isdigit(value[*len])) { |
| 1007 | ++(*len); |
| 1008 | } |
| 1009 | |
| 1010 | if ((basetype != LY_TYPE_DEC64) || (value[*len] != '.') || !isdigit(value[*len + 1])) { |
Radek Krejci | 6cba429 | 2018-11-15 17:33:29 +0100 | [diff] [blame] | 1011 | if (basetype == LY_TYPE_DEC64) { |
| 1012 | goto decimal; |
| 1013 | } else { |
| 1014 | *valcopy = strndup(value, *len); |
| 1015 | return LY_SUCCESS; |
| 1016 | } |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 1017 | } |
| 1018 | fraction = *len; |
| 1019 | |
| 1020 | ++(*len); |
| 1021 | while (isdigit(value[*len])) { |
| 1022 | ++(*len); |
| 1023 | } |
| 1024 | |
Radek Krejci | 6cba429 | 2018-11-15 17:33:29 +0100 | [diff] [blame] | 1025 | if (basetype == LY_TYPE_DEC64) { |
| 1026 | decimal: |
| 1027 | assert(frdigits); |
| 1028 | if (*len - 1 - fraction > frdigits) { |
| 1029 | LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SYNTAX_YANG, |
| 1030 | "Range boundary \"%.*s\" of decimal64 type exceeds defined number (%u) of fraction digits.", |
| 1031 | *len, value, frdigits); |
| 1032 | return LY_EINVAL; |
| 1033 | } |
| 1034 | if (fraction) { |
| 1035 | size = (*len) + (frdigits - ((*len) - 1 - fraction)); |
| 1036 | } else { |
| 1037 | size = (*len) + frdigits + 1; |
| 1038 | } |
| 1039 | *valcopy = malloc(size * sizeof **valcopy); |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 1040 | LY_CHECK_ERR_RET(!(*valcopy), LOGMEM(ctx->ctx), LY_EMEM); |
| 1041 | |
Radek Krejci | 6cba429 | 2018-11-15 17:33:29 +0100 | [diff] [blame] | 1042 | (*valcopy)[size - 1] = '\0'; |
| 1043 | if (fraction) { |
| 1044 | memcpy(&(*valcopy)[0], &value[0], fraction); |
| 1045 | memcpy(&(*valcopy)[fraction], &value[fraction + 1], (*len) - 1 - (fraction)); |
| 1046 | memset(&(*valcopy)[(*len) - 1], '0', frdigits - ((*len) - 1 - fraction)); |
| 1047 | } else { |
| 1048 | memcpy(&(*valcopy)[0], &value[0], *len); |
| 1049 | memset(&(*valcopy)[*len], '0', frdigits); |
| 1050 | } |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 1051 | } |
| 1052 | return LY_SUCCESS; |
| 1053 | } |
| 1054 | |
Radek Krejci | a304538 | 2018-11-22 14:30:31 +0100 | [diff] [blame] | 1055 | /** |
| 1056 | * @brief Check that values in range are in ascendant order. |
| 1057 | * @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] | 1058 | * @param[in] max Flag to distinguish if checking min or max value. min value must be strictly higher than previous, |
| 1059 | * max can be also equal. |
Radek Krejci | a304538 | 2018-11-22 14:30:31 +0100 | [diff] [blame] | 1060 | * @param[in] value Current value to check. |
| 1061 | * @param[in] prev_value The last seen value. |
| 1062 | * @return LY_SUCCESS or LY_EEXIST for invalid order. |
| 1063 | */ |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 1064 | static LY_ERR |
Radek Krejci | 5969f27 | 2018-11-23 10:03:58 +0100 | [diff] [blame] | 1065 | range_part_check_ascendancy(int unsigned_value, int max, int64_t value, int64_t prev_value) |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 1066 | { |
| 1067 | if (unsigned_value) { |
Radek Krejci | 5969f27 | 2018-11-23 10:03:58 +0100 | [diff] [blame] | 1068 | 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] | 1069 | return LY_EEXIST; |
| 1070 | } |
| 1071 | } else { |
Radek Krejci | 5969f27 | 2018-11-23 10:03:58 +0100 | [diff] [blame] | 1072 | if ((max && prev_value > value) || (!max && prev_value >= value)) { |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 1073 | return LY_EEXIST; |
| 1074 | } |
| 1075 | } |
| 1076 | return LY_SUCCESS; |
| 1077 | } |
| 1078 | |
Radek Krejci | a304538 | 2018-11-22 14:30:31 +0100 | [diff] [blame] | 1079 | /** |
| 1080 | * @brief Set min/max value of the range part. |
| 1081 | * @param[in] ctx Compile context. |
| 1082 | * @param[in] part Range part structure to fill. |
| 1083 | * @param[in] max Flag to distinguish if storing min or max value. |
| 1084 | * @param[in] prev The last seen value to check that all values in range are specified in ascendant order. |
| 1085 | * @param[in] basetype Type of the value to get know implicit min/max values and other checking rules. |
| 1086 | * @param[in] first Flag for the first value of the range to avoid ascendancy order. |
| 1087 | * @param[in] length_restr Flag to distinguish between range and length restrictions. Only for logging. |
| 1088 | * @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] | 1089 | * @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] | 1090 | * @param[in,out] value Numeric range value to be stored, if not provided the type's min/max value is set. |
| 1091 | * @return LY_ERR value - LY_SUCCESS, LY_EDENIED (value brokes type's boundaries), LY_EVALID (not a number), |
| 1092 | * LY_EEXIST (value is smaller than the previous one), LY_EINVAL (decimal64 value does not corresponds with the |
| 1093 | * frdigits value), LY_EMEM. |
| 1094 | */ |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 1095 | static LY_ERR |
| 1096 | range_part_minmax(struct lysc_ctx *ctx, struct lysc_range_part *part, int max, int64_t prev, LY_DATA_TYPE basetype, int first, int length_restr, |
Radek Krejci | 5969f27 | 2018-11-23 10:03:58 +0100 | [diff] [blame] | 1097 | uint8_t frdigits, struct lysc_range *base_range, const char **value) |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 1098 | { |
| 1099 | LY_ERR ret = LY_SUCCESS; |
| 1100 | char *valcopy = NULL; |
| 1101 | size_t len; |
| 1102 | |
| 1103 | if (value) { |
Radek Krejci | 6cba429 | 2018-11-15 17:33:29 +0100 | [diff] [blame] | 1104 | ret = range_part_check_value_syntax(ctx, basetype, frdigits, *value, &len, &valcopy); |
Radek Krejci | 5969f27 | 2018-11-23 10:03:58 +0100 | [diff] [blame] | 1105 | LY_CHECK_GOTO(ret, finalize); |
| 1106 | } |
| 1107 | if (!valcopy && base_range) { |
| 1108 | if (max) { |
| 1109 | part->max_64 = base_range->parts[LY_ARRAY_SIZE(base_range->parts) - 1].max_64; |
| 1110 | } else { |
| 1111 | part->min_64 = base_range->parts[0].min_64; |
| 1112 | } |
| 1113 | if (!first) { |
| 1114 | ret = range_part_check_ascendancy(basetype <= LY_TYPE_STRING ? 1 : 0, max, max ? part->max_64 : part->min_64, prev); |
| 1115 | } |
| 1116 | goto finalize; |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 1117 | } |
| 1118 | |
| 1119 | switch (basetype) { |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 1120 | case LY_TYPE_INT8: /* range */ |
| 1121 | if (valcopy) { |
| 1122 | ret = ly_parse_int(valcopy, INT64_C(-128), INT64_C(127), 10, max ? &part->max_64 : &part->min_64); |
| 1123 | } else if (max) { |
| 1124 | part->max_64 = INT64_C(127); |
| 1125 | } else { |
| 1126 | part->min_64 = INT64_C(-128); |
| 1127 | } |
Radek Krejci | 6cba429 | 2018-11-15 17:33:29 +0100 | [diff] [blame] | 1128 | if (!ret && !first) { |
Radek Krejci | 5969f27 | 2018-11-23 10:03:58 +0100 | [diff] [blame] | 1129 | 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] | 1130 | } |
| 1131 | break; |
| 1132 | case LY_TYPE_INT16: /* range */ |
| 1133 | if (valcopy) { |
| 1134 | ret = ly_parse_int(valcopy, INT64_C(-32768), INT64_C(32767), 10, max ? &part->max_64 : &part->min_64); |
| 1135 | } else if (max) { |
| 1136 | part->max_64 = INT64_C(32767); |
| 1137 | } else { |
| 1138 | part->min_64 = INT64_C(-32768); |
| 1139 | } |
Radek Krejci | 6cba429 | 2018-11-15 17:33:29 +0100 | [diff] [blame] | 1140 | if (!ret && !first) { |
Radek Krejci | 5969f27 | 2018-11-23 10:03:58 +0100 | [diff] [blame] | 1141 | 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] | 1142 | } |
| 1143 | break; |
| 1144 | case LY_TYPE_INT32: /* range */ |
| 1145 | if (valcopy) { |
| 1146 | ret = ly_parse_int(valcopy, INT64_C(-2147483648), INT64_C(2147483647), 10, max ? &part->max_64 : &part->min_64); |
| 1147 | } else if (max) { |
| 1148 | part->max_64 = INT64_C(2147483647); |
| 1149 | } else { |
| 1150 | part->min_64 = INT64_C(-2147483648); |
| 1151 | } |
Radek Krejci | 6cba429 | 2018-11-15 17:33:29 +0100 | [diff] [blame] | 1152 | if (!ret && !first) { |
Radek Krejci | 5969f27 | 2018-11-23 10:03:58 +0100 | [diff] [blame] | 1153 | 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] | 1154 | } |
| 1155 | break; |
| 1156 | case LY_TYPE_INT64: /* range */ |
Radek Krejci | 25cfef7 | 2018-11-23 14:15:52 +0100 | [diff] [blame] | 1157 | case LY_TYPE_DEC64: /* range */ |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 1158 | if (valcopy) { |
| 1159 | ret = ly_parse_int(valcopy, INT64_C(-9223372036854775807) - INT64_C(1), INT64_C(9223372036854775807), 10, |
| 1160 | max ? &part->max_64 : &part->min_64); |
| 1161 | } else if (max) { |
| 1162 | part->max_64 = INT64_C(9223372036854775807); |
| 1163 | } else { |
| 1164 | part->min_64 = INT64_C(-9223372036854775807) - INT64_C(1); |
| 1165 | } |
Radek Krejci | 6cba429 | 2018-11-15 17:33:29 +0100 | [diff] [blame] | 1166 | if (!ret && !first) { |
Radek Krejci | 5969f27 | 2018-11-23 10:03:58 +0100 | [diff] [blame] | 1167 | 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] | 1168 | } |
| 1169 | break; |
| 1170 | case LY_TYPE_UINT8: /* range */ |
| 1171 | if (valcopy) { |
| 1172 | ret = ly_parse_uint(valcopy, UINT64_C(255), 10, max ? &part->max_u64 : &part->min_u64); |
| 1173 | } else if (max) { |
| 1174 | part->max_u64 = UINT64_C(255); |
| 1175 | } else { |
| 1176 | part->min_u64 = UINT64_C(0); |
| 1177 | } |
Radek Krejci | 6cba429 | 2018-11-15 17:33:29 +0100 | [diff] [blame] | 1178 | if (!ret && !first) { |
Radek Krejci | 5969f27 | 2018-11-23 10:03:58 +0100 | [diff] [blame] | 1179 | 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] | 1180 | } |
| 1181 | break; |
| 1182 | case LY_TYPE_UINT16: /* range */ |
| 1183 | if (valcopy) { |
| 1184 | ret = ly_parse_uint(valcopy, UINT64_C(65535), 10, max ? &part->max_u64 : &part->min_u64); |
| 1185 | } else if (max) { |
| 1186 | part->max_u64 = UINT64_C(65535); |
| 1187 | } else { |
| 1188 | part->min_u64 = UINT64_C(0); |
| 1189 | } |
Radek Krejci | 6cba429 | 2018-11-15 17:33:29 +0100 | [diff] [blame] | 1190 | if (!ret && !first) { |
Radek Krejci | 5969f27 | 2018-11-23 10:03:58 +0100 | [diff] [blame] | 1191 | 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] | 1192 | } |
| 1193 | break; |
| 1194 | case LY_TYPE_UINT32: /* range */ |
| 1195 | if (valcopy) { |
| 1196 | ret = ly_parse_uint(valcopy, UINT64_C(4294967295), 10, max ? &part->max_u64 : &part->min_u64); |
| 1197 | } else if (max) { |
| 1198 | part->max_u64 = UINT64_C(4294967295); |
| 1199 | } else { |
| 1200 | part->min_u64 = UINT64_C(0); |
| 1201 | } |
Radek Krejci | 6cba429 | 2018-11-15 17:33:29 +0100 | [diff] [blame] | 1202 | if (!ret && !first) { |
Radek Krejci | 5969f27 | 2018-11-23 10:03:58 +0100 | [diff] [blame] | 1203 | 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] | 1204 | } |
| 1205 | break; |
| 1206 | case LY_TYPE_UINT64: /* range */ |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 1207 | case LY_TYPE_STRING: /* length */ |
Radek Krejci | 25cfef7 | 2018-11-23 14:15:52 +0100 | [diff] [blame] | 1208 | case LY_TYPE_BINARY: /* length */ |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 1209 | if (valcopy) { |
| 1210 | ret = ly_parse_uint(valcopy, UINT64_C(18446744073709551615), 10, max ? &part->max_u64 : &part->min_u64); |
| 1211 | } else if (max) { |
| 1212 | part->max_u64 = UINT64_C(18446744073709551615); |
| 1213 | } else { |
| 1214 | part->min_u64 = UINT64_C(0); |
| 1215 | } |
Radek Krejci | 6cba429 | 2018-11-15 17:33:29 +0100 | [diff] [blame] | 1216 | if (!ret && !first) { |
Radek Krejci | 5969f27 | 2018-11-23 10:03:58 +0100 | [diff] [blame] | 1217 | 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] | 1218 | } |
| 1219 | break; |
| 1220 | default: |
| 1221 | LOGINT(ctx->ctx); |
| 1222 | ret = LY_EINT; |
| 1223 | } |
| 1224 | |
Radek Krejci | 5969f27 | 2018-11-23 10:03:58 +0100 | [diff] [blame] | 1225 | finalize: |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 1226 | if (ret == LY_EDENIED) { |
| 1227 | LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SYNTAX_YANG, |
| 1228 | "Invalid %s restriction - value \"%s\" does not fit the type limitations.", |
| 1229 | length_restr ? "length" : "range", valcopy ? valcopy : *value); |
| 1230 | } else if (ret == LY_EVALID) { |
| 1231 | LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SYNTAX_YANG, |
| 1232 | "Invalid %s restriction - invalid value \"%s\".", |
| 1233 | length_restr ? "length" : "range", valcopy ? valcopy : *value); |
| 1234 | } else if (ret == LY_EEXIST) { |
| 1235 | LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SYNTAX_YANG, |
| 1236 | "Invalid %s restriction - values are not in ascending order (%s).", |
Radek Krejci | 6cba429 | 2018-11-15 17:33:29 +0100 | [diff] [blame] | 1237 | length_restr ? "length" : "range", |
Radek Krejci | 5969f27 | 2018-11-23 10:03:58 +0100 | [diff] [blame] | 1238 | (valcopy && basetype != LY_TYPE_DEC64) ? valcopy : value ? *value : max ? "max" : "min"); |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 1239 | } else if (!ret && value) { |
| 1240 | *value = *value + len; |
| 1241 | } |
| 1242 | free(valcopy); |
| 1243 | return ret; |
| 1244 | } |
| 1245 | |
Radek Krejci | a304538 | 2018-11-22 14:30:31 +0100 | [diff] [blame] | 1246 | /** |
| 1247 | * @brief Compile the parsed range restriction. |
| 1248 | * @param[in] ctx Compile context. |
| 1249 | * @param[in] range_p Parsed range structure to compile. |
| 1250 | * @param[in] basetype Base YANG built-in type of the node with the range restriction. |
| 1251 | * @param[in] length_restr Flag to distinguish between range and length restrictions. Only for logging. |
| 1252 | * @param[in] frdigits The fraction-digits value in case of LY_TYPE_DEC64 basetype. |
| 1253 | * @param[in] base_range Range restriction of the type from which the current type is derived. The current |
| 1254 | * range restriction must be more restrictive than the base_range. |
| 1255 | * @param[in,out] range Pointer to the created current range structure. |
| 1256 | * @return LY_ERR value. |
| 1257 | */ |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 1258 | static LY_ERR |
Radek Krejci | 6cba429 | 2018-11-15 17:33:29 +0100 | [diff] [blame] | 1259 | lys_compile_type_range(struct lysc_ctx *ctx, struct lysp_restr *range_p, LY_DATA_TYPE basetype, int length_restr, uint8_t frdigits, |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 1260 | struct lysc_range *base_range, struct lysc_range **range) |
| 1261 | { |
| 1262 | LY_ERR ret = LY_EVALID; |
| 1263 | const char *expr; |
| 1264 | struct lysc_range_part *parts = NULL, *part; |
| 1265 | int range_expected = 0, uns; |
| 1266 | unsigned int parts_done = 0, u, v; |
| 1267 | |
| 1268 | assert(range); |
| 1269 | assert(range_p); |
| 1270 | |
| 1271 | expr = range_p->arg; |
| 1272 | while(1) { |
| 1273 | if (isspace(*expr)) { |
| 1274 | ++expr; |
| 1275 | } else if (*expr == '\0') { |
| 1276 | if (range_expected) { |
| 1277 | LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SYNTAX_YANG, |
| 1278 | "Invalid %s restriction - unexpected end of the expression after \"..\" (%s).", |
| 1279 | length_restr ? "length" : "range", range_p->arg); |
| 1280 | goto cleanup; |
| 1281 | } else if (!parts || parts_done == LY_ARRAY_SIZE(parts)) { |
| 1282 | LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SYNTAX_YANG, |
| 1283 | "Invalid %s restriction - unexpected end of the expression (%s).", |
| 1284 | length_restr ? "length" : "range", range_p->arg); |
| 1285 | goto cleanup; |
| 1286 | } |
| 1287 | parts_done++; |
| 1288 | break; |
| 1289 | } else if (!strncmp(expr, "min", 3)) { |
| 1290 | if (parts) { |
| 1291 | /* min cannot be used elsewhere than in the first part */ |
| 1292 | LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SYNTAX_YANG, |
| 1293 | "Invalid %s restriction - unexpected data before min keyword (%.*s).", length_restr ? "length" : "range", |
| 1294 | expr - range_p->arg, range_p->arg); |
| 1295 | goto cleanup; |
| 1296 | } |
| 1297 | expr += 3; |
| 1298 | |
| 1299 | LY_ARRAY_NEW_GOTO(ctx->ctx, parts, part, ret, cleanup); |
Radek Krejci | 5969f27 | 2018-11-23 10:03:58 +0100 | [diff] [blame] | 1300 | 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] | 1301 | part->max_64 = part->min_64; |
| 1302 | } else if (*expr == '|') { |
| 1303 | if (!parts || range_expected) { |
| 1304 | LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SYNTAX_YANG, |
| 1305 | "Invalid %s restriction - unexpected beginning of the expression (%s).", length_restr ? "length" : "range", expr); |
| 1306 | goto cleanup; |
| 1307 | } |
| 1308 | expr++; |
| 1309 | parts_done++; |
| 1310 | /* process next part of the expression */ |
| 1311 | } else if (!strncmp(expr, "..", 2)) { |
| 1312 | expr += 2; |
| 1313 | while (isspace(*expr)) { |
| 1314 | expr++; |
| 1315 | } |
| 1316 | if (!parts || LY_ARRAY_SIZE(parts) == parts_done) { |
| 1317 | LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SYNTAX_YANG, |
| 1318 | "Invalid %s restriction - unexpected \"..\" without a lower bound.", length_restr ? "length" : "range"); |
| 1319 | goto cleanup; |
| 1320 | } |
| 1321 | /* continue expecting the upper boundary */ |
| 1322 | range_expected = 1; |
| 1323 | } else if (isdigit(*expr) || (*expr == '-') || (*expr == '+')) { |
| 1324 | /* number */ |
| 1325 | if (range_expected) { |
| 1326 | part = &parts[LY_ARRAY_SIZE(parts) - 1]; |
Radek Krejci | 5969f27 | 2018-11-23 10:03:58 +0100 | [diff] [blame] | 1327 | 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] | 1328 | range_expected = 0; |
| 1329 | } else { |
| 1330 | LY_ARRAY_NEW_GOTO(ctx->ctx, parts, part, ret, cleanup); |
| 1331 | LY_CHECK_GOTO(range_part_minmax(ctx, part, 0, parts_done ? parts[LY_ARRAY_SIZE(parts) - 2].max_64 : 0, |
Radek Krejci | 5969f27 | 2018-11-23 10:03:58 +0100 | [diff] [blame] | 1332 | basetype, parts_done ? 0 : 1, length_restr, frdigits, NULL, &expr), cleanup); |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 1333 | part->max_64 = part->min_64; |
| 1334 | } |
| 1335 | |
| 1336 | /* continue with possible another expression part */ |
| 1337 | } else if (!strncmp(expr, "max", 3)) { |
| 1338 | expr += 3; |
| 1339 | while (isspace(*expr)) { |
| 1340 | expr++; |
| 1341 | } |
| 1342 | if (*expr != '\0') { |
| 1343 | LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SYNTAX_YANG, "Invalid %s restriction - unexpected data after max keyword (%s).", |
| 1344 | length_restr ? "length" : "range", expr); |
| 1345 | goto cleanup; |
| 1346 | } |
| 1347 | if (range_expected) { |
| 1348 | part = &parts[LY_ARRAY_SIZE(parts) - 1]; |
Radek Krejci | 5969f27 | 2018-11-23 10:03:58 +0100 | [diff] [blame] | 1349 | 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] | 1350 | range_expected = 0; |
| 1351 | } else { |
| 1352 | LY_ARRAY_NEW_GOTO(ctx->ctx, parts, part, ret, cleanup); |
| 1353 | LY_CHECK_GOTO(range_part_minmax(ctx, part, 1, parts_done ? parts[LY_ARRAY_SIZE(parts) - 2].max_64 : 0, |
Radek Krejci | 5969f27 | 2018-11-23 10:03:58 +0100 | [diff] [blame] | 1354 | basetype, parts_done ? 0 : 1, length_restr, frdigits, base_range, NULL), cleanup); |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 1355 | part->min_64 = part->max_64; |
| 1356 | } |
| 1357 | } else { |
| 1358 | LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SYNTAX_YANG, "Invalid %s restriction - unexpected data (%s).", |
| 1359 | length_restr ? "length" : "range", expr); |
| 1360 | goto cleanup; |
| 1361 | } |
| 1362 | } |
| 1363 | |
| 1364 | /* check with the previous range/length restriction */ |
| 1365 | if (base_range) { |
| 1366 | switch (basetype) { |
| 1367 | case LY_TYPE_BINARY: |
| 1368 | case LY_TYPE_UINT8: |
| 1369 | case LY_TYPE_UINT16: |
| 1370 | case LY_TYPE_UINT32: |
| 1371 | case LY_TYPE_UINT64: |
| 1372 | case LY_TYPE_STRING: |
| 1373 | uns = 1; |
| 1374 | break; |
| 1375 | case LY_TYPE_DEC64: |
| 1376 | case LY_TYPE_INT8: |
| 1377 | case LY_TYPE_INT16: |
| 1378 | case LY_TYPE_INT32: |
| 1379 | case LY_TYPE_INT64: |
| 1380 | uns = 0; |
| 1381 | break; |
| 1382 | default: |
| 1383 | LOGINT(ctx->ctx); |
| 1384 | ret = LY_EINT; |
| 1385 | goto cleanup; |
| 1386 | } |
| 1387 | for (u = v = 0; u < parts_done && v < LY_ARRAY_SIZE(base_range->parts); ++u) { |
| 1388 | if ((uns && parts[u].min_u64 < base_range->parts[v].min_u64) || (!uns && parts[u].min_64 < base_range->parts[v].min_64)) { |
| 1389 | goto baseerror; |
| 1390 | } |
| 1391 | /* current lower bound is not lower than the base */ |
| 1392 | if (base_range->parts[v].min_64 == base_range->parts[v].max_64) { |
| 1393 | /* base has single value */ |
| 1394 | if (base_range->parts[v].min_64 == parts[u].min_64) { |
| 1395 | /* both lower bounds are the same */ |
| 1396 | if (parts[u].min_64 != parts[u].max_64) { |
| 1397 | /* current continues with a range */ |
| 1398 | goto baseerror; |
| 1399 | } else { |
| 1400 | /* equal single values, move both forward */ |
| 1401 | ++v; |
| 1402 | continue; |
| 1403 | } |
| 1404 | } else { |
| 1405 | /* base is single value lower than current range, so the |
| 1406 | * value from base range is removed in the current, |
| 1407 | * move only base and repeat checking */ |
| 1408 | ++v; |
| 1409 | --u; |
| 1410 | continue; |
| 1411 | } |
| 1412 | } else { |
| 1413 | /* base is the range */ |
| 1414 | if (parts[u].min_64 == parts[u].max_64) { |
| 1415 | /* current is a single value */ |
| 1416 | if ((uns && parts[u].max_u64 > base_range->parts[v].max_u64) || (!uns && parts[u].max_64 > base_range->parts[v].max_64)) { |
| 1417 | /* current is behind the base range, so base range is omitted, |
| 1418 | * move the base and keep the current for further check */ |
| 1419 | ++v; |
| 1420 | --u; |
| 1421 | } /* else it is within the base range, so move the current, but keep the base */ |
| 1422 | continue; |
| 1423 | } else { |
| 1424 | /* both are ranges - check the higher bound, the lower was already checked */ |
| 1425 | if ((uns && parts[u].max_u64 > base_range->parts[v].max_u64) || (!uns && parts[u].max_64 > base_range->parts[v].max_64)) { |
| 1426 | /* higher bound is higher than the current higher bound */ |
| 1427 | if ((uns && parts[u].min_u64 > base_range->parts[v].max_u64) || (!uns && parts[u].min_64 > base_range->parts[v].max_64)) { |
| 1428 | /* but the current lower bound is also higher, so the base range is omitted, |
| 1429 | * continue with the same current, but move the base */ |
| 1430 | --u; |
| 1431 | ++v; |
| 1432 | continue; |
| 1433 | } |
| 1434 | /* current range starts within the base range but end behind it */ |
| 1435 | goto baseerror; |
| 1436 | } else { |
| 1437 | /* current range is smaller than the base, |
| 1438 | * move current, but stay with the base */ |
| 1439 | continue; |
| 1440 | } |
| 1441 | } |
| 1442 | } |
| 1443 | } |
| 1444 | if (u != parts_done) { |
| 1445 | baseerror: |
| 1446 | LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SYNTAX_YANG, |
| 1447 | "Invalid %s restriction - the derived restriction (%s) is not equally or more limiting.", |
| 1448 | length_restr ? "length" : "range", range_p->arg); |
| 1449 | goto cleanup; |
| 1450 | } |
| 1451 | } |
| 1452 | |
| 1453 | if (!(*range)) { |
| 1454 | *range = calloc(1, sizeof **range); |
| 1455 | LY_CHECK_ERR_RET(!(*range), LOGMEM(ctx->ctx), LY_EMEM); |
| 1456 | } |
| 1457 | |
Radek Krejci | c8b3100 | 2019-01-08 10:24:45 +0100 | [diff] [blame] | 1458 | /* we rewrite the following values as the types chain is being processed */ |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 1459 | if (range_p->eapptag) { |
| 1460 | lydict_remove(ctx->ctx, (*range)->eapptag); |
| 1461 | (*range)->eapptag = lydict_insert(ctx->ctx, range_p->eapptag, 0); |
| 1462 | } |
| 1463 | if (range_p->emsg) { |
| 1464 | lydict_remove(ctx->ctx, (*range)->emsg); |
| 1465 | (*range)->emsg = lydict_insert(ctx->ctx, range_p->emsg, 0); |
| 1466 | } |
Radek Krejci | c8b3100 | 2019-01-08 10:24:45 +0100 | [diff] [blame] | 1467 | if (range_p->dsc) { |
| 1468 | lydict_remove(ctx->ctx, (*range)->dsc); |
| 1469 | (*range)->dsc = lydict_insert(ctx->ctx, range_p->dsc, 0); |
| 1470 | } |
| 1471 | if (range_p->ref) { |
| 1472 | lydict_remove(ctx->ctx, (*range)->ref); |
| 1473 | (*range)->ref = lydict_insert(ctx->ctx, range_p->ref, 0); |
| 1474 | } |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 1475 | /* extensions are taken only from the last range by the caller */ |
| 1476 | |
| 1477 | (*range)->parts = parts; |
| 1478 | parts = NULL; |
| 1479 | ret = LY_SUCCESS; |
| 1480 | cleanup: |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 1481 | LY_ARRAY_FREE(parts); |
| 1482 | |
| 1483 | return ret; |
| 1484 | } |
| 1485 | |
| 1486 | /** |
| 1487 | * @brief Checks pattern syntax. |
| 1488 | * |
Radek Krejci | a304538 | 2018-11-22 14:30:31 +0100 | [diff] [blame] | 1489 | * @param[in] ctx Compile context. |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 1490 | * @param[in] pattern Pattern to check. |
Radek Krejci | a304538 | 2018-11-22 14:30:31 +0100 | [diff] [blame] | 1491 | * @param[in,out] pcre_precomp Precompiled PCRE pattern. If NULL, the compiled information used to validate pattern are freed. |
| 1492 | * @return LY_ERR value - LY_SUCCESS, LY_EMEM, LY_EVALID. |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 1493 | */ |
| 1494 | static LY_ERR |
| 1495 | lys_compile_type_pattern_check(struct lysc_ctx *ctx, const char *pattern, pcre **pcre_precomp) |
| 1496 | { |
| 1497 | int idx, idx2, start, end, err_offset, count; |
| 1498 | char *perl_regex, *ptr; |
| 1499 | const char *err_msg, *orig_ptr; |
| 1500 | pcre *precomp; |
| 1501 | #define URANGE_LEN 19 |
| 1502 | char *ublock2urange[][2] = { |
| 1503 | {"BasicLatin", "[\\x{0000}-\\x{007F}]"}, |
| 1504 | {"Latin-1Supplement", "[\\x{0080}-\\x{00FF}]"}, |
| 1505 | {"LatinExtended-A", "[\\x{0100}-\\x{017F}]"}, |
| 1506 | {"LatinExtended-B", "[\\x{0180}-\\x{024F}]"}, |
| 1507 | {"IPAExtensions", "[\\x{0250}-\\x{02AF}]"}, |
| 1508 | {"SpacingModifierLetters", "[\\x{02B0}-\\x{02FF}]"}, |
| 1509 | {"CombiningDiacriticalMarks", "[\\x{0300}-\\x{036F}]"}, |
| 1510 | {"Greek", "[\\x{0370}-\\x{03FF}]"}, |
| 1511 | {"Cyrillic", "[\\x{0400}-\\x{04FF}]"}, |
| 1512 | {"Armenian", "[\\x{0530}-\\x{058F}]"}, |
| 1513 | {"Hebrew", "[\\x{0590}-\\x{05FF}]"}, |
| 1514 | {"Arabic", "[\\x{0600}-\\x{06FF}]"}, |
| 1515 | {"Syriac", "[\\x{0700}-\\x{074F}]"}, |
| 1516 | {"Thaana", "[\\x{0780}-\\x{07BF}]"}, |
| 1517 | {"Devanagari", "[\\x{0900}-\\x{097F}]"}, |
| 1518 | {"Bengali", "[\\x{0980}-\\x{09FF}]"}, |
| 1519 | {"Gurmukhi", "[\\x{0A00}-\\x{0A7F}]"}, |
| 1520 | {"Gujarati", "[\\x{0A80}-\\x{0AFF}]"}, |
| 1521 | {"Oriya", "[\\x{0B00}-\\x{0B7F}]"}, |
| 1522 | {"Tamil", "[\\x{0B80}-\\x{0BFF}]"}, |
| 1523 | {"Telugu", "[\\x{0C00}-\\x{0C7F}]"}, |
| 1524 | {"Kannada", "[\\x{0C80}-\\x{0CFF}]"}, |
| 1525 | {"Malayalam", "[\\x{0D00}-\\x{0D7F}]"}, |
| 1526 | {"Sinhala", "[\\x{0D80}-\\x{0DFF}]"}, |
| 1527 | {"Thai", "[\\x{0E00}-\\x{0E7F}]"}, |
| 1528 | {"Lao", "[\\x{0E80}-\\x{0EFF}]"}, |
| 1529 | {"Tibetan", "[\\x{0F00}-\\x{0FFF}]"}, |
| 1530 | {"Myanmar", "[\\x{1000}-\\x{109F}]"}, |
| 1531 | {"Georgian", "[\\x{10A0}-\\x{10FF}]"}, |
| 1532 | {"HangulJamo", "[\\x{1100}-\\x{11FF}]"}, |
| 1533 | {"Ethiopic", "[\\x{1200}-\\x{137F}]"}, |
| 1534 | {"Cherokee", "[\\x{13A0}-\\x{13FF}]"}, |
| 1535 | {"UnifiedCanadianAboriginalSyllabics", "[\\x{1400}-\\x{167F}]"}, |
| 1536 | {"Ogham", "[\\x{1680}-\\x{169F}]"}, |
| 1537 | {"Runic", "[\\x{16A0}-\\x{16FF}]"}, |
| 1538 | {"Khmer", "[\\x{1780}-\\x{17FF}]"}, |
| 1539 | {"Mongolian", "[\\x{1800}-\\x{18AF}]"}, |
| 1540 | {"LatinExtendedAdditional", "[\\x{1E00}-\\x{1EFF}]"}, |
| 1541 | {"GreekExtended", "[\\x{1F00}-\\x{1FFF}]"}, |
| 1542 | {"GeneralPunctuation", "[\\x{2000}-\\x{206F}]"}, |
| 1543 | {"SuperscriptsandSubscripts", "[\\x{2070}-\\x{209F}]"}, |
| 1544 | {"CurrencySymbols", "[\\x{20A0}-\\x{20CF}]"}, |
| 1545 | {"CombiningMarksforSymbols", "[\\x{20D0}-\\x{20FF}]"}, |
| 1546 | {"LetterlikeSymbols", "[\\x{2100}-\\x{214F}]"}, |
| 1547 | {"NumberForms", "[\\x{2150}-\\x{218F}]"}, |
| 1548 | {"Arrows", "[\\x{2190}-\\x{21FF}]"}, |
| 1549 | {"MathematicalOperators", "[\\x{2200}-\\x{22FF}]"}, |
| 1550 | {"MiscellaneousTechnical", "[\\x{2300}-\\x{23FF}]"}, |
| 1551 | {"ControlPictures", "[\\x{2400}-\\x{243F}]"}, |
| 1552 | {"OpticalCharacterRecognition", "[\\x{2440}-\\x{245F}]"}, |
| 1553 | {"EnclosedAlphanumerics", "[\\x{2460}-\\x{24FF}]"}, |
| 1554 | {"BoxDrawing", "[\\x{2500}-\\x{257F}]"}, |
| 1555 | {"BlockElements", "[\\x{2580}-\\x{259F}]"}, |
| 1556 | {"GeometricShapes", "[\\x{25A0}-\\x{25FF}]"}, |
| 1557 | {"MiscellaneousSymbols", "[\\x{2600}-\\x{26FF}]"}, |
| 1558 | {"Dingbats", "[\\x{2700}-\\x{27BF}]"}, |
| 1559 | {"BraillePatterns", "[\\x{2800}-\\x{28FF}]"}, |
| 1560 | {"CJKRadicalsSupplement", "[\\x{2E80}-\\x{2EFF}]"}, |
| 1561 | {"KangxiRadicals", "[\\x{2F00}-\\x{2FDF}]"}, |
| 1562 | {"IdeographicDescriptionCharacters", "[\\x{2FF0}-\\x{2FFF}]"}, |
| 1563 | {"CJKSymbolsandPunctuation", "[\\x{3000}-\\x{303F}]"}, |
| 1564 | {"Hiragana", "[\\x{3040}-\\x{309F}]"}, |
| 1565 | {"Katakana", "[\\x{30A0}-\\x{30FF}]"}, |
| 1566 | {"Bopomofo", "[\\x{3100}-\\x{312F}]"}, |
| 1567 | {"HangulCompatibilityJamo", "[\\x{3130}-\\x{318F}]"}, |
| 1568 | {"Kanbun", "[\\x{3190}-\\x{319F}]"}, |
| 1569 | {"BopomofoExtended", "[\\x{31A0}-\\x{31BF}]"}, |
| 1570 | {"EnclosedCJKLettersandMonths", "[\\x{3200}-\\x{32FF}]"}, |
| 1571 | {"CJKCompatibility", "[\\x{3300}-\\x{33FF}]"}, |
| 1572 | {"CJKUnifiedIdeographsExtensionA", "[\\x{3400}-\\x{4DB5}]"}, |
| 1573 | {"CJKUnifiedIdeographs", "[\\x{4E00}-\\x{9FFF}]"}, |
| 1574 | {"YiSyllables", "[\\x{A000}-\\x{A48F}]"}, |
| 1575 | {"YiRadicals", "[\\x{A490}-\\x{A4CF}]"}, |
| 1576 | {"HangulSyllables", "[\\x{AC00}-\\x{D7A3}]"}, |
| 1577 | {"PrivateUse", "[\\x{E000}-\\x{F8FF}]"}, |
| 1578 | {"CJKCompatibilityIdeographs", "[\\x{F900}-\\x{FAFF}]"}, |
| 1579 | {"AlphabeticPresentationForms", "[\\x{FB00}-\\x{FB4F}]"}, |
| 1580 | {"ArabicPresentationForms-A", "[\\x{FB50}-\\x{FDFF}]"}, |
| 1581 | {"CombiningHalfMarks", "[\\x{FE20}-\\x{FE2F}]"}, |
| 1582 | {"CJKCompatibilityForms", "[\\x{FE30}-\\x{FE4F}]"}, |
| 1583 | {"SmallFormVariants", "[\\x{FE50}-\\x{FE6F}]"}, |
| 1584 | {"ArabicPresentationForms-B", "[\\x{FE70}-\\x{FEFE}]"}, |
| 1585 | {"HalfwidthandFullwidthForms", "[\\x{FF00}-\\x{FFEF}]"}, |
| 1586 | {NULL, NULL} |
| 1587 | }; |
| 1588 | |
| 1589 | /* adjust the expression to a Perl equivalent |
| 1590 | * http://www.w3.org/TR/2004/REC-xmlschema-2-20041028/#regexs */ |
| 1591 | |
| 1592 | /* we need to replace all "$" with "\$", count them now */ |
| 1593 | for (count = 0, ptr = strpbrk(pattern, "^$"); ptr; ++count, ptr = strpbrk(ptr + 1, "^$")); |
| 1594 | |
| 1595 | perl_regex = malloc((strlen(pattern) + 4 + count) * sizeof(char)); |
| 1596 | LY_CHECK_ERR_RET(!perl_regex, LOGMEM(ctx->ctx), LY_EMEM); |
| 1597 | perl_regex[0] = '\0'; |
| 1598 | |
| 1599 | ptr = perl_regex; |
| 1600 | |
| 1601 | if (strncmp(pattern + strlen(pattern) - 2, ".*", 2)) { |
| 1602 | /* we will add line-end anchoring */ |
| 1603 | ptr[0] = '('; |
| 1604 | ++ptr; |
| 1605 | } |
| 1606 | |
| 1607 | for (orig_ptr = pattern; orig_ptr[0]; ++orig_ptr) { |
| 1608 | if (orig_ptr[0] == '$') { |
| 1609 | ptr += sprintf(ptr, "\\$"); |
| 1610 | } else if (orig_ptr[0] == '^') { |
| 1611 | ptr += sprintf(ptr, "\\^"); |
| 1612 | } else { |
| 1613 | ptr[0] = orig_ptr[0]; |
| 1614 | ++ptr; |
| 1615 | } |
| 1616 | } |
| 1617 | |
| 1618 | if (strncmp(pattern + strlen(pattern) - 2, ".*", 2)) { |
| 1619 | ptr += sprintf(ptr, ")$"); |
| 1620 | } else { |
| 1621 | ptr[0] = '\0'; |
| 1622 | ++ptr; |
| 1623 | } |
| 1624 | |
| 1625 | /* substitute Unicode Character Blocks with exact Character Ranges */ |
| 1626 | while ((ptr = strstr(perl_regex, "\\p{Is"))) { |
| 1627 | start = ptr - perl_regex; |
| 1628 | |
| 1629 | ptr = strchr(ptr, '}'); |
| 1630 | if (!ptr) { |
| 1631 | LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LY_VCODE_INREGEXP, |
| 1632 | pattern, perl_regex + start + 2, "unterminated character property"); |
| 1633 | free(perl_regex); |
| 1634 | return LY_EVALID; |
| 1635 | } |
| 1636 | end = (ptr - perl_regex) + 1; |
| 1637 | |
| 1638 | /* need more space */ |
| 1639 | if (end - start < URANGE_LEN) { |
| 1640 | perl_regex = ly_realloc(perl_regex, strlen(perl_regex) + (URANGE_LEN - (end - start)) + 1); |
| 1641 | LY_CHECK_ERR_RET(!perl_regex, LOGMEM(ctx->ctx); free(perl_regex), LY_EMEM); |
| 1642 | } |
| 1643 | |
| 1644 | /* find our range */ |
| 1645 | for (idx = 0; ublock2urange[idx][0]; ++idx) { |
| 1646 | if (!strncmp(perl_regex + start + 5, ublock2urange[idx][0], strlen(ublock2urange[idx][0]))) { |
| 1647 | break; |
| 1648 | } |
| 1649 | } |
| 1650 | if (!ublock2urange[idx][0]) { |
| 1651 | LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LY_VCODE_INREGEXP, |
| 1652 | pattern, perl_regex + start + 5, "unknown block name"); |
| 1653 | free(perl_regex); |
| 1654 | return LY_EVALID; |
| 1655 | } |
| 1656 | |
| 1657 | /* make the space in the string and replace the block (but we cannot include brackets if it was already enclosed in them) */ |
| 1658 | for (idx2 = 0, count = 0; idx2 < start; ++idx2) { |
| 1659 | if ((perl_regex[idx2] == '[') && (!idx2 || (perl_regex[idx2 - 1] != '\\'))) { |
| 1660 | ++count; |
| 1661 | } |
| 1662 | if ((perl_regex[idx2] == ']') && (!idx2 || (perl_regex[idx2 - 1] != '\\'))) { |
| 1663 | --count; |
| 1664 | } |
| 1665 | } |
| 1666 | if (count) { |
| 1667 | /* skip brackets */ |
| 1668 | memmove(perl_regex + start + (URANGE_LEN - 2), perl_regex + end, strlen(perl_regex + end) + 1); |
| 1669 | memcpy(perl_regex + start, ublock2urange[idx][1] + 1, URANGE_LEN - 2); |
| 1670 | } else { |
| 1671 | memmove(perl_regex + start + URANGE_LEN, perl_regex + end, strlen(perl_regex + end) + 1); |
| 1672 | memcpy(perl_regex + start, ublock2urange[idx][1], URANGE_LEN); |
| 1673 | } |
| 1674 | } |
| 1675 | |
| 1676 | /* must return 0, already checked during parsing */ |
| 1677 | precomp = pcre_compile(perl_regex, PCRE_UTF8 | PCRE_ANCHORED | PCRE_DOLLAR_ENDONLY | PCRE_NO_AUTO_CAPTURE, |
| 1678 | &err_msg, &err_offset, NULL); |
| 1679 | if (!precomp) { |
| 1680 | LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LY_VCODE_INREGEXP, pattern, perl_regex + err_offset, err_msg); |
| 1681 | free(perl_regex); |
| 1682 | return LY_EVALID; |
| 1683 | } |
| 1684 | free(perl_regex); |
| 1685 | |
| 1686 | if (pcre_precomp) { |
| 1687 | *pcre_precomp = precomp; |
| 1688 | } else { |
| 1689 | free(precomp); |
| 1690 | } |
| 1691 | |
| 1692 | return LY_SUCCESS; |
| 1693 | |
| 1694 | #undef URANGE_LEN |
| 1695 | } |
| 1696 | |
Radek Krejci | a304538 | 2018-11-22 14:30:31 +0100 | [diff] [blame] | 1697 | /** |
| 1698 | * @brief Compile parsed pattern restriction in conjunction with the patterns from base type. |
| 1699 | * @param[in] ctx Compile context. |
| 1700 | * @param[in] patterns_p Array of parsed patterns from the current type to compile. |
| 1701 | * @param[in] options Various options to modify compiler behavior, see [compile flags](@ref scflags). |
| 1702 | * @param[in] base_patterns Compiled patterns from the type from which the current type is derived. |
| 1703 | * Patterns from the base type are inherited to have all the patterns that have to match at one place. |
| 1704 | * @param[out] patterns Pointer to the storage for the patterns of the current type. |
| 1705 | * @return LY_ERR LY_SUCCESS, LY_EMEM, LY_EVALID. |
| 1706 | */ |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 1707 | static LY_ERR |
| 1708 | lys_compile_type_patterns(struct lysc_ctx *ctx, struct lysp_restr *patterns_p, int options, |
| 1709 | struct lysc_pattern **base_patterns, struct lysc_pattern ***patterns) |
| 1710 | { |
| 1711 | struct lysc_pattern **pattern; |
| 1712 | unsigned int u, v; |
| 1713 | const char *err_msg; |
| 1714 | LY_ERR ret = LY_SUCCESS; |
| 1715 | |
| 1716 | /* first, copy the patterns from the base type */ |
| 1717 | if (base_patterns) { |
| 1718 | *patterns = lysc_patterns_dup(ctx->ctx, base_patterns); |
| 1719 | LY_CHECK_ERR_RET(!(*patterns), LOGMEM(ctx->ctx), LY_EMEM); |
| 1720 | } |
| 1721 | |
| 1722 | LY_ARRAY_FOR(patterns_p, u) { |
| 1723 | LY_ARRAY_NEW_RET(ctx->ctx, (*patterns), pattern, LY_EMEM); |
| 1724 | *pattern = calloc(1, sizeof **pattern); |
| 1725 | ++(*pattern)->refcount; |
| 1726 | |
| 1727 | ret = lys_compile_type_pattern_check(ctx, &patterns_p[u].arg[1], &(*pattern)->expr); |
| 1728 | LY_CHECK_RET(ret); |
| 1729 | (*pattern)->expr_extra = pcre_study((*pattern)->expr, 0, &err_msg); |
| 1730 | if (err_msg) { |
| 1731 | LOGWRN(ctx->ctx, "Studying pattern \"%s\" failed (%s).", pattern, err_msg); |
| 1732 | } |
| 1733 | |
| 1734 | if (patterns_p[u].arg[0] == 0x15) { |
| 1735 | (*pattern)->inverted = 1; |
| 1736 | } |
| 1737 | DUP_STRING(ctx->ctx, patterns_p[u].eapptag, (*pattern)->eapptag); |
| 1738 | DUP_STRING(ctx->ctx, patterns_p[u].emsg, (*pattern)->emsg); |
Radek Krejci | c8b3100 | 2019-01-08 10:24:45 +0100 | [diff] [blame] | 1739 | DUP_STRING(ctx->ctx, patterns_p[u].dsc, (*pattern)->dsc); |
| 1740 | DUP_STRING(ctx->ctx, patterns_p[u].ref, (*pattern)->ref); |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 1741 | COMPILE_ARRAY_GOTO(ctx, patterns_p[u].exts, (*pattern)->exts, |
| 1742 | options, v, lys_compile_ext, ret, done); |
| 1743 | } |
| 1744 | done: |
| 1745 | return ret; |
| 1746 | } |
| 1747 | |
Radek Krejci | a304538 | 2018-11-22 14:30:31 +0100 | [diff] [blame] | 1748 | /** |
| 1749 | * @brief map of the possible restrictions combination for the specific built-in type. |
| 1750 | */ |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 1751 | static uint16_t type_substmt_map[LY_DATA_TYPE_COUNT] = { |
| 1752 | 0 /* LY_TYPE_UNKNOWN */, |
| 1753 | LYS_SET_LENGTH /* LY_TYPE_BINARY */, |
Radek Krejci | 5969f27 | 2018-11-23 10:03:58 +0100 | [diff] [blame] | 1754 | LYS_SET_RANGE /* LY_TYPE_UINT8 */, |
| 1755 | LYS_SET_RANGE /* LY_TYPE_UINT16 */, |
| 1756 | LYS_SET_RANGE /* LY_TYPE_UINT32 */, |
| 1757 | LYS_SET_RANGE /* LY_TYPE_UINT64 */, |
| 1758 | LYS_SET_LENGTH | LYS_SET_PATTERN /* LY_TYPE_STRING */, |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 1759 | LYS_SET_BIT /* LY_TYPE_BITS */, |
| 1760 | 0 /* LY_TYPE_BOOL */, |
| 1761 | LYS_SET_FRDIGITS | LYS_SET_RANGE /* LY_TYPE_DEC64 */, |
| 1762 | 0 /* LY_TYPE_EMPTY */, |
| 1763 | LYS_SET_ENUM /* LY_TYPE_ENUM */, |
| 1764 | LYS_SET_BASE /* LY_TYPE_IDENT */, |
| 1765 | LYS_SET_REQINST /* LY_TYPE_INST */, |
| 1766 | LYS_SET_REQINST | LYS_SET_PATH /* LY_TYPE_LEAFREF */, |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 1767 | LYS_SET_TYPE /* LY_TYPE_UNION */, |
| 1768 | LYS_SET_RANGE /* LY_TYPE_INT8 */, |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 1769 | LYS_SET_RANGE /* LY_TYPE_INT16 */, |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 1770 | LYS_SET_RANGE /* LY_TYPE_INT32 */, |
Radek Krejci | 5969f27 | 2018-11-23 10:03:58 +0100 | [diff] [blame] | 1771 | LYS_SET_RANGE /* LY_TYPE_INT64 */ |
| 1772 | }; |
| 1773 | |
| 1774 | /** |
| 1775 | * @brief stringification of the YANG built-in data types |
| 1776 | */ |
| 1777 | const char* ly_data_type2str[LY_DATA_TYPE_COUNT] = {"unknown", "binary", "8bit unsigned integer", "16bit unsigned integer", |
| 1778 | "32bit unsigned integer", "64bit unsigned integer", "string", "bits", "boolean", "decimal64", "empty", "enumeration", |
| 1779 | "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] | 1780 | }; |
| 1781 | |
Radek Krejci | a304538 | 2018-11-22 14:30:31 +0100 | [diff] [blame] | 1782 | /** |
| 1783 | * @brief Compile parsed type's enum structures (for enumeration and bits types). |
| 1784 | * @param[in] ctx Compile context. |
| 1785 | * @param[in] enums_p Array of the parsed enum structures to compile. |
| 1786 | * @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. |
| 1787 | * @param[in] options Various options to modify compiler behavior, see [compile flags](@ref scflags). |
| 1788 | * @param[in] base_enums Array of the compiled enums information from the (latest) base type to check if the current enums are compatible. |
| 1789 | * @param[out] enums Newly created array of the compiled enums information for the current type. |
| 1790 | * @return LY_ERR value - LY_SUCCESS or LY_EVALID. |
| 1791 | */ |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 1792 | static LY_ERR |
| 1793 | lys_compile_type_enums(struct lysc_ctx *ctx, struct lysp_type_enum *enums_p, LY_DATA_TYPE basetype, int options, |
| 1794 | struct lysc_type_enum_item *base_enums, struct lysc_type_enum_item **enums) |
| 1795 | { |
| 1796 | LY_ERR ret = LY_SUCCESS; |
| 1797 | unsigned int u, v, match; |
| 1798 | int32_t value = 0; |
| 1799 | uint32_t position = 0; |
| 1800 | struct lysc_type_enum_item *e, storage; |
| 1801 | |
Radek Krejci | 0bcdaed | 2019-01-10 10:21:34 +0100 | [diff] [blame] | 1802 | if (base_enums && ctx->mod_def->version < 2) { |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 1803 | LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SYNTAX_YANG, "%s type can be subtyped only in YANG 1.1 modules.", |
| 1804 | basetype == LY_TYPE_ENUM ? "Enumeration" : "Bits"); |
| 1805 | return LY_EVALID; |
| 1806 | } |
| 1807 | |
| 1808 | LY_ARRAY_FOR(enums_p, u) { |
| 1809 | LY_ARRAY_NEW_RET(ctx->ctx, *enums, e, LY_EMEM); |
| 1810 | DUP_STRING(ctx->ctx, enums_p[u].name, e->name); |
Radek Krejci | c8b3100 | 2019-01-08 10:24:45 +0100 | [diff] [blame] | 1811 | DUP_STRING(ctx->ctx, enums_p[u].ref, e->dsc); |
| 1812 | DUP_STRING(ctx->ctx, enums_p[u].ref, e->ref); |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 1813 | if (base_enums) { |
| 1814 | /* check the enum/bit presence in the base type - the set of enums/bits in the derived type must be a subset */ |
| 1815 | LY_ARRAY_FOR(base_enums, v) { |
| 1816 | if (!strcmp(e->name, base_enums[v].name)) { |
| 1817 | break; |
| 1818 | } |
| 1819 | } |
| 1820 | if (v == LY_ARRAY_SIZE(base_enums)) { |
| 1821 | LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SYNTAX_YANG, |
| 1822 | "Invalid %s - derived type adds new item \"%s\".", |
| 1823 | basetype == LY_TYPE_ENUM ? "enumeration" : "bits", e->name); |
| 1824 | return LY_EVALID; |
| 1825 | } |
| 1826 | match = v; |
| 1827 | } |
| 1828 | |
| 1829 | if (basetype == LY_TYPE_ENUM) { |
| 1830 | if (enums_p[u].flags & LYS_SET_VALUE) { |
| 1831 | e->value = (int32_t)enums_p[u].value; |
| 1832 | if (!u || e->value >= value) { |
| 1833 | value = e->value + 1; |
| 1834 | } |
| 1835 | /* check collision with other values */ |
| 1836 | for (v = 0; v < LY_ARRAY_SIZE(*enums) - 1; ++v) { |
| 1837 | if (e->value == (*enums)[v].value) { |
| 1838 | LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SYNTAX_YANG, |
| 1839 | "Invalid enumeration - value %d collide in items \"%s\" and \"%s\".", |
| 1840 | e->value, e->name, (*enums)[v].name); |
| 1841 | return LY_EVALID; |
| 1842 | } |
| 1843 | } |
| 1844 | } else if (base_enums) { |
| 1845 | /* inherit the assigned value */ |
| 1846 | e->value = base_enums[match].value; |
| 1847 | if (!u || e->value >= value) { |
| 1848 | value = e->value + 1; |
| 1849 | } |
| 1850 | } else { |
| 1851 | /* assign value automatically */ |
| 1852 | if (u && value == INT32_MIN) { |
| 1853 | /* counter overflow */ |
| 1854 | LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SYNTAX_YANG, |
| 1855 | "Invalid enumeration - it is not possible to auto-assign enum value for " |
| 1856 | "\"%s\" since the highest value is already 2147483647.", e->name); |
| 1857 | return LY_EVALID; |
| 1858 | } |
| 1859 | e->value = value++; |
| 1860 | } |
| 1861 | } else { /* LY_TYPE_BITS */ |
| 1862 | if (enums_p[u].flags & LYS_SET_VALUE) { |
| 1863 | e->value = (int32_t)enums_p[u].value; |
| 1864 | if (!u || (uint32_t)e->value >= position) { |
| 1865 | position = (uint32_t)e->value + 1; |
| 1866 | } |
| 1867 | /* check collision with other values */ |
| 1868 | for (v = 0; v < LY_ARRAY_SIZE(*enums) - 1; ++v) { |
| 1869 | if (e->value == (*enums)[v].value) { |
| 1870 | LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SYNTAX_YANG, |
| 1871 | "Invalid bits - position %u collide in items \"%s\" and \"%s\".", |
| 1872 | (uint32_t)e->value, e->name, (*enums)[v].name); |
| 1873 | return LY_EVALID; |
| 1874 | } |
| 1875 | } |
| 1876 | } else if (base_enums) { |
| 1877 | /* inherit the assigned value */ |
| 1878 | e->value = base_enums[match].value; |
| 1879 | if (!u || (uint32_t)e->value >= position) { |
| 1880 | position = (uint32_t)e->value + 1; |
| 1881 | } |
| 1882 | } else { |
| 1883 | /* assign value automatically */ |
| 1884 | if (u && position == 0) { |
| 1885 | /* counter overflow */ |
| 1886 | LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SYNTAX_YANG, |
| 1887 | "Invalid bits - it is not possible to auto-assign bit position for " |
| 1888 | "\"%s\" since the highest value is already 4294967295.", e->name); |
| 1889 | return LY_EVALID; |
| 1890 | } |
| 1891 | e->value = position++; |
| 1892 | } |
| 1893 | } |
| 1894 | |
| 1895 | if (base_enums) { |
| 1896 | /* the assigned values must not change from the derived type */ |
| 1897 | if (e->value != base_enums[match].value) { |
| 1898 | if (basetype == LY_TYPE_ENUM) { |
| 1899 | LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SYNTAX_YANG, |
| 1900 | "Invalid enumeration - value of the item \"%s\" has changed from %d to %d in the derived type.", |
| 1901 | e->name, base_enums[match].value, e->value); |
| 1902 | } else { |
| 1903 | LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SYNTAX_YANG, |
| 1904 | "Invalid bits - position of the item \"%s\" has changed from %u to %u in the derived type.", |
| 1905 | e->name, (uint32_t)base_enums[match].value, (uint32_t)e->value); |
| 1906 | } |
| 1907 | return LY_EVALID; |
| 1908 | } |
| 1909 | } |
| 1910 | |
| 1911 | COMPILE_ARRAY_GOTO(ctx, enums_p[u].iffeatures, e->iffeatures, options, v, lys_compile_iffeature, ret, done); |
| 1912 | COMPILE_ARRAY_GOTO(ctx, enums_p[u].exts, e->exts, options, v, lys_compile_ext, ret, done); |
| 1913 | |
| 1914 | if (basetype == LY_TYPE_BITS) { |
| 1915 | /* keep bits ordered by position */ |
| 1916 | for (v = u; v && (*enums)[v - 1].value > e->value; --v); |
| 1917 | if (v != u) { |
| 1918 | memcpy(&storage, e, sizeof *e); |
| 1919 | memmove(&(*enums)[v + 1], &(*enums)[v], (u - v) * sizeof **enums); |
| 1920 | memcpy(&(*enums)[v], &storage, sizeof storage); |
| 1921 | } |
| 1922 | } |
| 1923 | } |
| 1924 | |
| 1925 | done: |
| 1926 | return ret; |
| 1927 | } |
| 1928 | |
Radek Krejci | a304538 | 2018-11-22 14:30:31 +0100 | [diff] [blame] | 1929 | #define MOVE_PATH_PARENT(NODE, LIMIT_COND, TERM, ERR_MSG, ...) \ |
| 1930 | for ((NODE) = (NODE)->parent; \ |
| 1931 | (NODE) && !((NODE)->nodetype & (LYS_CONTAINER | LYS_LIST | LYS_ACTION | LYS_NOTIF | LYS_ACTION)); \ |
| 1932 | (NODE) = (NODE)->parent); \ |
| 1933 | if (!(NODE) && (LIMIT_COND)) { /* we are going higher than top-level */ \ |
| 1934 | LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_REFERENCE, ERR_MSG, ##__VA_ARGS__); \ |
| 1935 | TERM; \ |
| 1936 | } |
| 1937 | |
| 1938 | /** |
| 1939 | * @brief Validate the predicate(s) from the leafref path. |
| 1940 | * @param[in] ctx Compile context |
| 1941 | * @param[in, out] predicate Pointer to the predicate in the leafref path. The pointer is moved after the validated predicate(s). |
| 1942 | * Since there can be multiple adjacent predicates for lists with multiple keys, all such predicates are validated. |
Radek Krejci | 4ce6893 | 2018-11-28 12:53:36 +0100 | [diff] [blame] | 1943 | * @param[in] start_node Path context node (where the path is instantiated). |
Radek Krejci | a304538 | 2018-11-22 14:30:31 +0100 | [diff] [blame] | 1944 | * @param[in] context_node Predicate context node (where the predicate is placed). |
Radek Krejci | 96a0bfd | 2018-11-22 15:25:06 +0100 | [diff] [blame] | 1945 | * @param[in] path_context Schema where the path was defined to correct resolve of the prefixes. |
Radek Krejci | a304538 | 2018-11-22 14:30:31 +0100 | [diff] [blame] | 1946 | * @return LY_ERR value - LY_SUCCESS or LY_EVALID. |
| 1947 | */ |
| 1948 | static LY_ERR |
Radek Krejci | 4ce6893 | 2018-11-28 12:53:36 +0100 | [diff] [blame] | 1949 | lys_compile_leafref_predicate_validate(struct lysc_ctx *ctx, const char **predicate, const struct lysc_node *start_node, |
Radek Krejci | bade82a | 2018-12-05 10:13:48 +0100 | [diff] [blame] | 1950 | const struct lysc_node_list *context_node, const struct lys_module *path_context) |
Radek Krejci | a304538 | 2018-11-22 14:30:31 +0100 | [diff] [blame] | 1951 | { |
| 1952 | LY_ERR ret = LY_EVALID; |
| 1953 | const struct lys_module *mod; |
| 1954 | const struct lysc_node *src_node, *dst_node; |
| 1955 | const char *path_key_expr, *pke_start, *src, *src_prefix, *dst, *dst_prefix; |
| 1956 | size_t src_len, src_prefix_len, dst_len, dst_prefix_len; |
Radek Krejci | bade82a | 2018-12-05 10:13:48 +0100 | [diff] [blame] | 1957 | unsigned int dest_parent_times, c, u; |
Radek Krejci | a304538 | 2018-11-22 14:30:31 +0100 | [diff] [blame] | 1958 | const char *start, *end, *pke_end; |
| 1959 | struct ly_set keys = {0}; |
| 1960 | int i; |
| 1961 | |
Radek Krejci | 9bb94eb | 2018-12-04 16:48:35 +0100 | [diff] [blame] | 1962 | assert(path_context); |
| 1963 | |
Radek Krejci | a304538 | 2018-11-22 14:30:31 +0100 | [diff] [blame] | 1964 | while (**predicate == '[') { |
| 1965 | start = (*predicate)++; |
| 1966 | |
| 1967 | while (isspace(**predicate)) { |
| 1968 | ++(*predicate); |
| 1969 | } |
| 1970 | LY_CHECK_GOTO(lys_parse_nodeid(predicate, &src_prefix, &src_prefix_len, &src, &src_len), cleanup); |
| 1971 | while (isspace(**predicate)) { |
| 1972 | ++(*predicate); |
| 1973 | } |
| 1974 | if (**predicate != '=') { |
| 1975 | LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_REFERENCE, |
Radek Krejci | bade82a | 2018-12-05 10:13:48 +0100 | [diff] [blame] | 1976 | "Invalid leafref path predicate \"%.*s\" - missing \"=\" after node-identifier.", |
| 1977 | *predicate - start + 1, start); |
Radek Krejci | a304538 | 2018-11-22 14:30:31 +0100 | [diff] [blame] | 1978 | goto cleanup; |
| 1979 | } |
| 1980 | ++(*predicate); |
| 1981 | while (isspace(**predicate)) { |
| 1982 | ++(*predicate); |
| 1983 | } |
| 1984 | |
| 1985 | if ((end = pke_end = strchr(*predicate, ']')) == NULL) { |
| 1986 | LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_REFERENCE, |
| 1987 | "Invalid leafref path predicate \"%s\" - missing predicate termination.", start); |
| 1988 | goto cleanup; |
| 1989 | } |
| 1990 | --pke_end; |
| 1991 | while (isspace(*pke_end)) { |
| 1992 | --pke_end; |
| 1993 | } |
Radek Krejci | 7adf4ff | 2018-12-05 08:55:00 +0100 | [diff] [blame] | 1994 | ++pke_end; |
Radek Krejci | a304538 | 2018-11-22 14:30:31 +0100 | [diff] [blame] | 1995 | /* localize path-key-expr */ |
| 1996 | pke_start = path_key_expr = *predicate; |
| 1997 | /* move after the current predicate */ |
| 1998 | *predicate = end + 1; |
| 1999 | |
| 2000 | /* source (must be leaf or leaf-list) */ |
| 2001 | if (src_prefix) { |
Radek Krejci | 96a0bfd | 2018-11-22 15:25:06 +0100 | [diff] [blame] | 2002 | mod = lys_module_find_prefix(path_context, src_prefix, src_prefix_len); |
Radek Krejci | 9bb94eb | 2018-12-04 16:48:35 +0100 | [diff] [blame] | 2003 | if (!mod) { |
| 2004 | LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_REFERENCE, |
| 2005 | "Invalid leafref path predicate \"%.*s\" - prefix \"%.*s\" not defined in module \"%s\".", |
Radek Krejci | 0bcdaed | 2019-01-10 10:21:34 +0100 | [diff] [blame] | 2006 | *predicate - start, start, src_prefix_len, src_prefix, path_context->name); |
Radek Krejci | 9bb94eb | 2018-12-04 16:48:35 +0100 | [diff] [blame] | 2007 | goto cleanup; |
| 2008 | } |
Radek Krejci | a304538 | 2018-11-22 14:30:31 +0100 | [diff] [blame] | 2009 | } else { |
Radek Krejci | 4ce6893 | 2018-11-28 12:53:36 +0100 | [diff] [blame] | 2010 | mod = start_node->module; |
Radek Krejci | a304538 | 2018-11-22 14:30:31 +0100 | [diff] [blame] | 2011 | } |
Radek Krejci | bade82a | 2018-12-05 10:13:48 +0100 | [diff] [blame] | 2012 | src_node = NULL; |
| 2013 | if (context_node->keys) { |
| 2014 | for (u = 0; u < LY_ARRAY_SIZE(context_node->keys); ++u) { |
| 2015 | if (!strncmp(src, context_node->keys[u]->name, src_len) && context_node->keys[u]->name[src_len] == '\0') { |
| 2016 | src_node = (const struct lysc_node*)context_node->keys[u]; |
| 2017 | break; |
| 2018 | } |
| 2019 | } |
| 2020 | } |
Radek Krejci | a304538 | 2018-11-22 14:30:31 +0100 | [diff] [blame] | 2021 | if (!src_node) { |
| 2022 | LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_REFERENCE, |
Radek Krejci | bade82a | 2018-12-05 10:13:48 +0100 | [diff] [blame] | 2023 | "Invalid leafref path predicate \"%.*s\" - predicate's key node \"%.*s\" not found.", |
Radek Krejci | 0bcdaed | 2019-01-10 10:21:34 +0100 | [diff] [blame] | 2024 | *predicate - start, start, src_len, src, mod->name); |
Radek Krejci | a304538 | 2018-11-22 14:30:31 +0100 | [diff] [blame] | 2025 | goto cleanup; |
| 2026 | } |
Radek Krejci | a304538 | 2018-11-22 14:30:31 +0100 | [diff] [blame] | 2027 | |
| 2028 | /* check that there is only one predicate for the */ |
Radek Krejci | bade82a | 2018-12-05 10:13:48 +0100 | [diff] [blame] | 2029 | c = keys.count; |
Radek Krejci | a304538 | 2018-11-22 14:30:31 +0100 | [diff] [blame] | 2030 | i = ly_set_add(&keys, (void*)src_node, 0); |
| 2031 | LY_CHECK_GOTO(i == -1, cleanup); |
Radek Krejci | bade82a | 2018-12-05 10:13:48 +0100 | [diff] [blame] | 2032 | if (keys.count == c) { /* node was already present in the set */ |
Radek Krejci | a304538 | 2018-11-22 14:30:31 +0100 | [diff] [blame] | 2033 | LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_REFERENCE, |
Radek Krejci | bade82a | 2018-12-05 10:13:48 +0100 | [diff] [blame] | 2034 | "Invalid leafref path predicate \"%.*s\" - multiple equality tests for the key \"%s\".", |
Radek Krejci | a304538 | 2018-11-22 14:30:31 +0100 | [diff] [blame] | 2035 | *predicate - start, start, src_node->name); |
| 2036 | goto cleanup; |
| 2037 | } |
| 2038 | |
| 2039 | /* destination */ |
| 2040 | dest_parent_times = 0; |
Radek Krejci | 4ce6893 | 2018-11-28 12:53:36 +0100 | [diff] [blame] | 2041 | dst_node = start_node; |
Radek Krejci | a304538 | 2018-11-22 14:30:31 +0100 | [diff] [blame] | 2042 | |
| 2043 | /* current-function-invocation *WSP "/" *WSP rel-path-keyexpr */ |
| 2044 | if (strncmp(path_key_expr, "current()", 9)) { |
| 2045 | LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_REFERENCE, |
| 2046 | "Invalid leafref path predicate \"%.*s\" - missing current-function-invocation.", |
| 2047 | *predicate - start, start); |
| 2048 | goto cleanup; |
| 2049 | } |
| 2050 | path_key_expr += 9; |
| 2051 | while (isspace(*path_key_expr)) { |
| 2052 | ++path_key_expr; |
| 2053 | } |
| 2054 | |
| 2055 | if (*path_key_expr != '/') { |
| 2056 | LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_REFERENCE, |
| 2057 | "Invalid leafref path predicate \"%.*s\" - missing \"/\" after current-function-invocation.", |
| 2058 | *predicate - start, start); |
| 2059 | goto cleanup; |
| 2060 | } |
| 2061 | ++path_key_expr; |
| 2062 | while (isspace(*path_key_expr)) { |
| 2063 | ++path_key_expr; |
| 2064 | } |
| 2065 | |
| 2066 | /* rel-path-keyexpr: |
| 2067 | * 1*(".." *WSP "/" *WSP) *(node-identifier *WSP "/" *WSP) node-identifier */ |
| 2068 | while (!strncmp(path_key_expr, "..", 2)) { |
| 2069 | ++dest_parent_times; |
| 2070 | path_key_expr += 2; |
| 2071 | while (isspace(*path_key_expr)) { |
| 2072 | ++path_key_expr; |
| 2073 | } |
| 2074 | if (*path_key_expr != '/') { |
| 2075 | LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_REFERENCE, |
| 2076 | "Invalid leafref path predicate \"%.*s\" - missing \"/\" in \"../\" rel-path-keyexpr pattern.", |
| 2077 | *predicate - start, start); |
| 2078 | goto cleanup; |
| 2079 | } |
| 2080 | ++path_key_expr; |
| 2081 | while (isspace(*path_key_expr)) { |
| 2082 | ++path_key_expr; |
| 2083 | } |
| 2084 | |
| 2085 | /* path is supposed to be evaluated in data tree, so we have to skip |
| 2086 | * all schema nodes that cannot be instantiated in data tree */ |
| 2087 | MOVE_PATH_PARENT(dst_node, !strncmp(path_key_expr, "..", 2), goto cleanup, |
| 2088 | "Invalid leafref path predicate \"%.*s\" - too many \"..\" in rel-path-keyexpr.", |
| 2089 | *predicate - start, start); |
| 2090 | } |
| 2091 | if (!dest_parent_times) { |
| 2092 | LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_REFERENCE, |
| 2093 | "Invalid leafref path predicate \"%.*s\" - at least one \"..\" is expected in rel-path-keyexpr.", |
| 2094 | *predicate - start, start); |
| 2095 | goto cleanup; |
| 2096 | } |
| 2097 | if (path_key_expr == pke_end) { |
| 2098 | LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_REFERENCE, |
| 2099 | "Invalid leafref path predicate \"%.*s\" - at least one node-identifier is expected in rel-path-keyexpr.", |
| 2100 | *predicate - start, start); |
| 2101 | goto cleanup; |
| 2102 | } |
| 2103 | |
| 2104 | while(path_key_expr != pke_end) { |
| 2105 | if (lys_parse_nodeid(&path_key_expr, &dst_prefix, &dst_prefix_len, &dst, &dst_len)) { |
| 2106 | LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SYNTAX_YANG, |
Radek Krejci | bade82a | 2018-12-05 10:13:48 +0100 | [diff] [blame] | 2107 | "Invalid node identifier in leafref path predicate - character %d (of %.*s).", |
| 2108 | path_key_expr - start + 1, *predicate - start, start); |
Radek Krejci | a304538 | 2018-11-22 14:30:31 +0100 | [diff] [blame] | 2109 | goto cleanup; |
| 2110 | } |
| 2111 | |
| 2112 | if (dst_prefix) { |
Radek Krejci | 96a0bfd | 2018-11-22 15:25:06 +0100 | [diff] [blame] | 2113 | mod = lys_module_find_prefix(path_context, dst_prefix, dst_prefix_len); |
Radek Krejci | a304538 | 2018-11-22 14:30:31 +0100 | [diff] [blame] | 2114 | } else { |
Radek Krejci | 4ce6893 | 2018-11-28 12:53:36 +0100 | [diff] [blame] | 2115 | mod = start_node->module; |
Radek Krejci | a304538 | 2018-11-22 14:30:31 +0100 | [diff] [blame] | 2116 | } |
| 2117 | if (!mod) { |
| 2118 | LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_REFERENCE, |
| 2119 | "Invalid leafref path predicate \"%.*s\" - unable to find module of the node \"%.*s\" in rel-path_keyexpr.", |
| 2120 | *predicate - start, start, dst_len, dst); |
| 2121 | goto cleanup; |
| 2122 | } |
| 2123 | |
| 2124 | dst_node = lys_child(dst_node, mod, dst, dst_len, 0, LYS_GETNEXT_NOSTATECHECK); |
| 2125 | if (!dst_node) { |
| 2126 | LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_REFERENCE, |
| 2127 | "Invalid leafref path predicate \"%.*s\" - unable to find node \"%.*s\" in the rel-path_keyexpr.", |
| 2128 | *predicate - start, start, path_key_expr - pke_start, pke_start); |
| 2129 | goto cleanup; |
| 2130 | } |
| 2131 | } |
Radek Krejci | 0bcdaed | 2019-01-10 10:21:34 +0100 | [diff] [blame] | 2132 | if (!(dst_node->nodetype & (dst_node->module->version < LYS_VERSION_1_1 ? LYS_LEAF : LYS_LEAF | LYS_LEAFLIST))) { |
Radek Krejci | a304538 | 2018-11-22 14:30:31 +0100 | [diff] [blame] | 2133 | LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_REFERENCE, |
Radek Krejci | bade82a | 2018-12-05 10:13:48 +0100 | [diff] [blame] | 2134 | "Invalid leafref path predicate \"%.*s\" - rel-path_keyexpr \"%.*s\" refers %s instead of leaf.", |
Radek Krejci | a304538 | 2018-11-22 14:30:31 +0100 | [diff] [blame] | 2135 | *predicate - start, start, path_key_expr - pke_start, pke_start, lys_nodetype2str(dst_node->nodetype)); |
| 2136 | goto cleanup; |
| 2137 | } |
| 2138 | } |
| 2139 | |
| 2140 | ret = LY_SUCCESS; |
| 2141 | cleanup: |
| 2142 | ly_set_erase(&keys, NULL); |
| 2143 | return ret; |
| 2144 | } |
| 2145 | |
| 2146 | /** |
| 2147 | * @brief Parse path-arg (leafref). Get tokens of the path by repetitive calls of the function. |
| 2148 | * |
| 2149 | * path-arg = absolute-path / relative-path |
| 2150 | * absolute-path = 1*("/" (node-identifier *path-predicate)) |
| 2151 | * relative-path = 1*(".." "/") descendant-path |
| 2152 | * |
| 2153 | * @param[in,out] path Path to parse. |
| 2154 | * @param[out] prefix Prefix of the token, NULL if there is not any. |
| 2155 | * @param[out] pref_len Length of the prefix, 0 if there is not any. |
| 2156 | * @param[out] name Name of the token. |
| 2157 | * @param[out] nam_len Length of the name. |
| 2158 | * @param[out] parent_times Number of leading ".." in the path. Must be 0 on the first call, |
| 2159 | * must not be changed between consecutive calls. -1 if the |
| 2160 | * path is absolute. |
| 2161 | * @param[out] has_predicate Flag to mark whether there is a predicate specified. |
| 2162 | * @return LY_ERR value: LY_SUCCESS or LY_EINVAL in case of invalid character in the path. |
| 2163 | */ |
| 2164 | static LY_ERR |
| 2165 | lys_path_token(const char **path, const char **prefix, size_t *prefix_len, const char **name, size_t *name_len, |
| 2166 | int *parent_times, int *has_predicate) |
| 2167 | { |
| 2168 | int par_times = 0; |
| 2169 | |
| 2170 | assert(path && *path); |
| 2171 | assert(parent_times); |
| 2172 | assert(prefix); |
| 2173 | assert(prefix_len); |
| 2174 | assert(name); |
| 2175 | assert(name_len); |
| 2176 | assert(has_predicate); |
| 2177 | |
| 2178 | *prefix = NULL; |
| 2179 | *prefix_len = 0; |
| 2180 | *name = NULL; |
| 2181 | *name_len = 0; |
| 2182 | *has_predicate = 0; |
| 2183 | |
| 2184 | if (!*parent_times) { |
| 2185 | if (!strncmp(*path, "..", 2)) { |
| 2186 | *path += 2; |
| 2187 | ++par_times; |
| 2188 | while (!strncmp(*path, "/..", 3)) { |
| 2189 | *path += 3; |
| 2190 | ++par_times; |
| 2191 | } |
| 2192 | } |
| 2193 | if (par_times) { |
| 2194 | *parent_times = par_times; |
| 2195 | } else { |
| 2196 | *parent_times = -1; |
| 2197 | } |
| 2198 | } |
| 2199 | |
| 2200 | if (**path != '/') { |
| 2201 | return LY_EINVAL; |
| 2202 | } |
| 2203 | /* skip '/' */ |
| 2204 | ++(*path); |
| 2205 | |
| 2206 | /* node-identifier ([prefix:]name) */ |
| 2207 | LY_CHECK_RET(lys_parse_nodeid(path, prefix, prefix_len, name, name_len)); |
| 2208 | |
| 2209 | if ((**path == '/' && (*path)[1]) || !**path) { |
| 2210 | /* path continues by another token or this is the last token */ |
| 2211 | return LY_SUCCESS; |
| 2212 | } else if ((*path)[0] != '[') { |
| 2213 | /* unexpected character */ |
| 2214 | return LY_EINVAL; |
| 2215 | } else { |
| 2216 | /* predicate starting with [ */ |
| 2217 | *has_predicate = 1; |
| 2218 | return LY_SUCCESS; |
| 2219 | } |
| 2220 | } |
| 2221 | |
| 2222 | /** |
Radek Krejci | 58d171e | 2018-11-23 13:50:55 +0100 | [diff] [blame] | 2223 | * @brief Check the features used in if-feature statements applicable to the leafref and its target. |
| 2224 | * |
| 2225 | * The set of features used for target must be a subset of features used for the leafref. |
| 2226 | * This is not a perfect, we should compare the truth tables but it could require too much resources |
| 2227 | * and RFC 7950 does not require it explicitely, so we simplify that. |
| 2228 | * |
| 2229 | * @param[in] refnode The leafref node. |
| 2230 | * @param[in] target Tha target node of the leafref. |
| 2231 | * @return LY_SUCCESS or LY_EVALID; |
| 2232 | */ |
| 2233 | static LY_ERR |
| 2234 | lys_compile_leafref_features_validate(const struct lysc_node *refnode, const struct lysc_node *target) |
| 2235 | { |
| 2236 | LY_ERR ret = LY_EVALID; |
| 2237 | const struct lysc_node *iter; |
Radek Krejci | 58d171e | 2018-11-23 13:50:55 +0100 | [diff] [blame] | 2238 | unsigned int u, v, count; |
| 2239 | struct ly_set features = {0}; |
| 2240 | |
| 2241 | for (iter = refnode; iter; iter = iter->parent) { |
Radek Krejci | 056d0a8 | 2018-12-06 16:57:25 +0100 | [diff] [blame] | 2242 | if (iter->iffeatures) { |
| 2243 | LY_ARRAY_FOR(iter->iffeatures, u) { |
| 2244 | LY_ARRAY_FOR(iter->iffeatures[u].features, v) { |
| 2245 | LY_CHECK_GOTO(ly_set_add(&features, iter->iffeatures[u].features[v], 0) == -1, cleanup); |
Radek Krejci | 58d171e | 2018-11-23 13:50:55 +0100 | [diff] [blame] | 2246 | } |
| 2247 | } |
| 2248 | } |
| 2249 | } |
| 2250 | |
| 2251 | /* we should have, in features set, a superset of features applicable to the target node. |
| 2252 | * So when adding features applicable to the target into the features set, we should not be |
| 2253 | * able to actually add any new feature, otherwise it is not a subset of features applicable |
| 2254 | * to the leafref itself. */ |
| 2255 | count = features.count; |
| 2256 | for (iter = target; iter; iter = iter->parent) { |
Radek Krejci | 056d0a8 | 2018-12-06 16:57:25 +0100 | [diff] [blame] | 2257 | if (iter->iffeatures) { |
| 2258 | LY_ARRAY_FOR(iter->iffeatures, u) { |
| 2259 | LY_ARRAY_FOR(iter->iffeatures[u].features, v) { |
| 2260 | if ((unsigned int)ly_set_add(&features, iter->iffeatures[u].features[v], 0) >= count) { |
Radek Krejci | 58d171e | 2018-11-23 13:50:55 +0100 | [diff] [blame] | 2261 | /* new feature was added (or LY_EMEM) */ |
| 2262 | goto cleanup; |
| 2263 | } |
| 2264 | } |
| 2265 | } |
| 2266 | } |
| 2267 | } |
| 2268 | ret = LY_SUCCESS; |
| 2269 | |
| 2270 | cleanup: |
| 2271 | ly_set_erase(&features, NULL); |
| 2272 | return ret; |
| 2273 | } |
| 2274 | |
| 2275 | /** |
Radek Krejci | a304538 | 2018-11-22 14:30:31 +0100 | [diff] [blame] | 2276 | * @brief Validate the leafref path. |
| 2277 | * @param[in] ctx Compile context |
| 2278 | * @param[in] startnode Path context node (where the leafref path begins/is placed). |
Radek Krejci | 412ddfa | 2018-11-23 11:44:11 +0100 | [diff] [blame] | 2279 | * @param[in] leafref Leafref to validate. |
Radek Krejci | a304538 | 2018-11-22 14:30:31 +0100 | [diff] [blame] | 2280 | * @return LY_ERR value - LY_SUCCESS or LY_EVALID. |
| 2281 | */ |
| 2282 | static LY_ERR |
Radek Krejci | 412ddfa | 2018-11-23 11:44:11 +0100 | [diff] [blame] | 2283 | lys_compile_leafref_validate(struct lysc_ctx *ctx, struct lysc_node *startnode, struct lysc_type_leafref *leafref) |
Radek Krejci | a304538 | 2018-11-22 14:30:31 +0100 | [diff] [blame] | 2284 | { |
| 2285 | const struct lysc_node *node = NULL, *parent = NULL; |
| 2286 | const struct lys_module *mod; |
Radek Krejci | 412ddfa | 2018-11-23 11:44:11 +0100 | [diff] [blame] | 2287 | struct lysc_type *type; |
Radek Krejci | a304538 | 2018-11-22 14:30:31 +0100 | [diff] [blame] | 2288 | const char *id, *prefix, *name; |
| 2289 | size_t prefix_len, name_len; |
| 2290 | int parent_times = 0, has_predicate; |
| 2291 | unsigned int iter, u; |
| 2292 | LY_ERR ret = LY_SUCCESS; |
| 2293 | |
| 2294 | assert(ctx); |
| 2295 | assert(startnode); |
Radek Krejci | 412ddfa | 2018-11-23 11:44:11 +0100 | [diff] [blame] | 2296 | assert(leafref); |
| 2297 | |
| 2298 | /* TODO leafref targets may be not implemented, in such a case we actually could make (we did it in libyang1) such a models implemented */ |
Radek Krejci | a304538 | 2018-11-22 14:30:31 +0100 | [diff] [blame] | 2299 | |
| 2300 | iter = 0; |
Radek Krejci | 412ddfa | 2018-11-23 11:44:11 +0100 | [diff] [blame] | 2301 | id = leafref->path; |
Radek Krejci | a304538 | 2018-11-22 14:30:31 +0100 | [diff] [blame] | 2302 | while(*id && (ret = lys_path_token(&id, &prefix, &prefix_len, &name, &name_len, &parent_times, &has_predicate)) == LY_SUCCESS) { |
| 2303 | if (!iter) { /* first iteration */ |
| 2304 | /* precess ".." in relative paths */ |
| 2305 | if (parent_times > 0) { |
| 2306 | /* move from the context node */ |
| 2307 | for (u = 0, parent = startnode; u < (unsigned int)parent_times; u++) { |
| 2308 | /* path is supposed to be evaluated in data tree, so we have to skip |
| 2309 | * all schema nodes that cannot be instantiated in data tree */ |
| 2310 | MOVE_PATH_PARENT(parent, u < (unsigned int)parent_times - 1, return LY_EVALID, |
Radek Krejci | 412ddfa | 2018-11-23 11:44:11 +0100 | [diff] [blame] | 2311 | "Invalid leafref path \"%s\" - too many \"..\" in the path.", leafref->path); |
Radek Krejci | a304538 | 2018-11-22 14:30:31 +0100 | [diff] [blame] | 2312 | } |
| 2313 | } |
| 2314 | } |
| 2315 | |
| 2316 | if (prefix) { |
Radek Krejci | 412ddfa | 2018-11-23 11:44:11 +0100 | [diff] [blame] | 2317 | mod = lys_module_find_prefix(leafref->path_context, prefix, prefix_len); |
Radek Krejci | a304538 | 2018-11-22 14:30:31 +0100 | [diff] [blame] | 2318 | } else { |
Radek Krejci | 4ce6893 | 2018-11-28 12:53:36 +0100 | [diff] [blame] | 2319 | mod = startnode->module; |
Radek Krejci | a304538 | 2018-11-22 14:30:31 +0100 | [diff] [blame] | 2320 | } |
| 2321 | if (!mod) { |
| 2322 | LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_REFERENCE, |
Radek Krejci | 412ddfa | 2018-11-23 11:44:11 +0100 | [diff] [blame] | 2323 | "Invalid leafref path - unable to find module connected with the prefix of the node \"%.*s\".", |
| 2324 | id - leafref->path, leafref->path); |
Radek Krejci | a304538 | 2018-11-22 14:30:31 +0100 | [diff] [blame] | 2325 | return LY_EVALID; |
| 2326 | } |
| 2327 | |
| 2328 | node = lys_child(parent, mod, name, name_len, 0, LYS_GETNEXT_NOSTATECHECK); |
| 2329 | if (!node) { |
| 2330 | LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_REFERENCE, |
Radek Krejci | 412ddfa | 2018-11-23 11:44:11 +0100 | [diff] [blame] | 2331 | "Invalid leafref path - unable to find \"%.*s\".", id - leafref->path, leafref->path); |
Radek Krejci | a304538 | 2018-11-22 14:30:31 +0100 | [diff] [blame] | 2332 | return LY_EVALID; |
| 2333 | } |
| 2334 | parent = node; |
| 2335 | |
| 2336 | if (has_predicate) { |
| 2337 | /* we have predicate, so the current result must be list */ |
| 2338 | if (node->nodetype != LYS_LIST) { |
| 2339 | LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_REFERENCE, |
| 2340 | "Invalid leafref path - node \"%.*s\" is expected to be a list, but it is %s.", |
Radek Krejci | 412ddfa | 2018-11-23 11:44:11 +0100 | [diff] [blame] | 2341 | id - leafref->path, leafref->path, lys_nodetype2str(node->nodetype)); |
Radek Krejci | a304538 | 2018-11-22 14:30:31 +0100 | [diff] [blame] | 2342 | return LY_EVALID; |
| 2343 | } |
| 2344 | |
Radek Krejci | bade82a | 2018-12-05 10:13:48 +0100 | [diff] [blame] | 2345 | LY_CHECK_RET(lys_compile_leafref_predicate_validate(ctx, &id, startnode, (struct lysc_node_list*)node, leafref->path_context), |
| 2346 | LY_EVALID); |
Radek Krejci | a304538 | 2018-11-22 14:30:31 +0100 | [diff] [blame] | 2347 | } |
| 2348 | |
| 2349 | ++iter; |
| 2350 | } |
| 2351 | if (ret) { |
| 2352 | LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SYNTAX_YANG, |
Radek Krejci | 412ddfa | 2018-11-23 11:44:11 +0100 | [diff] [blame] | 2353 | "Invalid leafref path at character %d (%s).", id - leafref->path + 1, leafref->path); |
Radek Krejci | a304538 | 2018-11-22 14:30:31 +0100 | [diff] [blame] | 2354 | return LY_EVALID; |
| 2355 | } |
| 2356 | |
| 2357 | if (!(node->nodetype & (LYS_LEAF | LYS_LEAFLIST))) { |
| 2358 | LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_REFERENCE, |
| 2359 | "Invalid leafref path \"%s\" - target node is %s instead of leaf or leaf-list.", |
Radek Krejci | 412ddfa | 2018-11-23 11:44:11 +0100 | [diff] [blame] | 2360 | leafref->path, lys_nodetype2str(node->nodetype)); |
Radek Krejci | a304538 | 2018-11-22 14:30:31 +0100 | [diff] [blame] | 2361 | return LY_EVALID; |
| 2362 | } |
| 2363 | |
| 2364 | /* check status */ |
| 2365 | if (lysc_check_status(ctx, startnode->flags, startnode->module, startnode->name, node->flags, node->module, node->name)) { |
| 2366 | return LY_EVALID; |
| 2367 | } |
| 2368 | |
Radek Krejci | b57cf1e | 2018-11-23 14:07:05 +0100 | [diff] [blame] | 2369 | /* check config */ |
| 2370 | if (leafref->require_instance && (startnode->flags & LYS_CONFIG_W)) { |
| 2371 | if (node->flags & LYS_CONFIG_R) { |
| 2372 | LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_REFERENCE, |
| 2373 | "Invalid leafref path \"%s\" - target is supposed to represent configuration data (as the leafref does), but it does not.", |
| 2374 | leafref->path); |
| 2375 | return LY_EVALID; |
| 2376 | } |
| 2377 | } |
| 2378 | |
Radek Krejci | 412ddfa | 2018-11-23 11:44:11 +0100 | [diff] [blame] | 2379 | /* store the target's type and check for circular chain of leafrefs */ |
| 2380 | leafref->realtype = ((struct lysc_node_leaf*)node)->type; |
| 2381 | for (type = leafref->realtype; type && type->basetype == LY_TYPE_LEAFREF; type = ((struct lysc_type_leafref*)type)->realtype) { |
| 2382 | if (type == (struct lysc_type*)leafref) { |
| 2383 | /* circular chain detected */ |
| 2384 | LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_REFERENCE, |
| 2385 | "Invalid leafref path \"%s\" - circular chain of leafrefs detected.", leafref->path); |
| 2386 | return LY_EVALID; |
| 2387 | } |
| 2388 | } |
| 2389 | |
Radek Krejci | 58d171e | 2018-11-23 13:50:55 +0100 | [diff] [blame] | 2390 | /* check if leafref and its target are under common if-features */ |
| 2391 | if (lys_compile_leafref_features_validate(startnode, node)) { |
| 2392 | LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_REFERENCE, |
| 2393 | "Invalid leafref path \"%s\" - set of features applicable to the leafref target is not a subset of features applicable to the leafref itself.", |
| 2394 | leafref->path); |
| 2395 | return LY_EVALID; |
| 2396 | } |
| 2397 | |
Radek Krejci | a304538 | 2018-11-22 14:30:31 +0100 | [diff] [blame] | 2398 | return LY_SUCCESS; |
| 2399 | } |
| 2400 | |
Radek Krejci | cdfecd9 | 2018-11-26 11:27:32 +0100 | [diff] [blame] | 2401 | static LY_ERR lys_compile_type(struct lysc_ctx *ctx, struct lysp_node *context_node_p, uint16_t context_flags, struct lysp_module *context_mod, const char *context_name, |
Radek Krejci | 01342af | 2019-01-03 15:18:08 +0100 | [diff] [blame] | 2402 | struct lysp_type *type_p, int options, struct lysc_type **type, const char **units); |
Radek Krejci | a304538 | 2018-11-22 14:30:31 +0100 | [diff] [blame] | 2403 | /** |
| 2404 | * @brief The core of the lys_compile_type() - compile information about the given type (from typedef or leaf/leaf-list). |
| 2405 | * @param[in] ctx Compile context. |
Radek Krejci | cdfecd9 | 2018-11-26 11:27:32 +0100 | [diff] [blame] | 2406 | * @param[in] context_node_p Schema node where the type/typedef is placed to correctly find the base types. |
| 2407 | * @param[in] context_flags Flags of the context node or the referencing typedef to correctly check status of referencing and referenced objects. |
| 2408 | * @param[in] context_mod Module of the context node or the referencing typedef to correctly check status of referencing and referenced objects. |
| 2409 | * @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] | 2410 | * @param[in] type_p Parsed type to compile. |
Radek Krejci | 9bb94eb | 2018-12-04 16:48:35 +0100 | [diff] [blame] | 2411 | * @param[in] module Context module for the leafref path (to correctly resolve prefixes in path) |
Radek Krejci | a304538 | 2018-11-22 14:30:31 +0100 | [diff] [blame] | 2412 | * @param[in] basetype Base YANG built-in type of the type to compile. |
| 2413 | * @param[in] options Various options to modify compiler behavior, see [compile flags](@ref scflags). |
| 2414 | * @param[in] tpdfname Name of the type's typedef, serves as a flag - if it is leaf/leaf-list's type, it is NULL. |
| 2415 | * @param[in] base The latest base (compiled) type from which the current type is being derived. |
| 2416 | * @param[out] type Newly created type structure with the filled information about the type. |
| 2417 | * @return LY_ERR value. |
| 2418 | */ |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 2419 | static LY_ERR |
Radek Krejci | cdfecd9 | 2018-11-26 11:27:32 +0100 | [diff] [blame] | 2420 | lys_compile_type_(struct lysc_ctx *ctx, struct lysp_node *context_node_p, uint16_t context_flags, struct lysp_module *context_mod, const char *context_name, |
| 2421 | struct lysp_type *type_p, struct lys_module *module, LY_DATA_TYPE basetype, int options, const char *tpdfname, |
| 2422 | struct lysc_type *base, struct lysc_type **type) |
Radek Krejci | c5c27e5 | 2018-11-15 14:38:11 +0100 | [diff] [blame] | 2423 | { |
| 2424 | LY_ERR ret = LY_SUCCESS; |
Radek Krejci | cdfecd9 | 2018-11-26 11:27:32 +0100 | [diff] [blame] | 2425 | unsigned int u, v, additional; |
Radek Krejci | c5c27e5 | 2018-11-15 14:38:11 +0100 | [diff] [blame] | 2426 | struct lysc_type_bin *bin; |
| 2427 | struct lysc_type_num *num; |
| 2428 | struct lysc_type_str *str; |
| 2429 | struct lysc_type_bits *bits; |
| 2430 | struct lysc_type_enum *enumeration; |
Radek Krejci | 6cba429 | 2018-11-15 17:33:29 +0100 | [diff] [blame] | 2431 | struct lysc_type_dec *dec; |
Radek Krejci | 555cb5b | 2018-11-16 14:54:33 +0100 | [diff] [blame] | 2432 | struct lysc_type_identityref *idref; |
Radek Krejci | cdfecd9 | 2018-11-26 11:27:32 +0100 | [diff] [blame] | 2433 | struct lysc_type_union *un, *un_aux; |
| 2434 | void *p; |
Radek Krejci | c5c27e5 | 2018-11-15 14:38:11 +0100 | [diff] [blame] | 2435 | |
| 2436 | switch (basetype) { |
| 2437 | case LY_TYPE_BINARY: |
Radek Krejci | c5c27e5 | 2018-11-15 14:38:11 +0100 | [diff] [blame] | 2438 | bin = (struct lysc_type_bin*)(*type); |
Radek Krejci | 555cb5b | 2018-11-16 14:54:33 +0100 | [diff] [blame] | 2439 | |
| 2440 | /* 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] | 2441 | if (type_p->length) { |
Radek Krejci | 6cba429 | 2018-11-15 17:33:29 +0100 | [diff] [blame] | 2442 | ret = lys_compile_type_range(ctx, type_p->length, basetype, 1, 0, |
Radek Krejci | c5c27e5 | 2018-11-15 14:38:11 +0100 | [diff] [blame] | 2443 | base ? ((struct lysc_type_bin*)base)->length : NULL, &bin->length); |
| 2444 | LY_CHECK_RET(ret); |
| 2445 | if (!tpdfname) { |
| 2446 | COMPILE_ARRAY_GOTO(ctx, type_p->length->exts, bin->length->exts, |
| 2447 | options, u, lys_compile_ext, ret, done); |
| 2448 | } |
| 2449 | } |
| 2450 | |
| 2451 | if (tpdfname) { |
| 2452 | type_p->compiled = *type; |
| 2453 | *type = calloc(1, sizeof(struct lysc_type_bin)); |
| 2454 | } |
| 2455 | break; |
| 2456 | case LY_TYPE_BITS: |
| 2457 | /* RFC 7950 9.7 - bits */ |
| 2458 | bits = (struct lysc_type_bits*)(*type); |
| 2459 | if (type_p->bits) { |
| 2460 | ret = lys_compile_type_enums(ctx, type_p->bits, basetype, options, |
| 2461 | base ? (struct lysc_type_enum_item*)((struct lysc_type_bits*)base)->bits : NULL, |
| 2462 | (struct lysc_type_enum_item**)&bits->bits); |
| 2463 | LY_CHECK_RET(ret); |
| 2464 | } |
| 2465 | |
Radek Krejci | 555cb5b | 2018-11-16 14:54:33 +0100 | [diff] [blame] | 2466 | if (!base && !type_p->flags) { |
Radek Krejci | c5c27e5 | 2018-11-15 14:38:11 +0100 | [diff] [blame] | 2467 | /* 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] | 2468 | if (tpdfname) { |
Radek Krejci | 555cb5b | 2018-11-16 14:54:33 +0100 | [diff] [blame] | 2469 | 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] | 2470 | } else { |
Radek Krejci | 555cb5b | 2018-11-16 14:54:33 +0100 | [diff] [blame] | 2471 | LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LY_VCODE_MISSCHILDSTMT, "bit", "bits type", ""); |
Radek Krejci | 6cba429 | 2018-11-15 17:33:29 +0100 | [diff] [blame] | 2472 | free(*type); |
| 2473 | *type = NULL; |
Radek Krejci | c5c27e5 | 2018-11-15 14:38:11 +0100 | [diff] [blame] | 2474 | } |
Radek Krejci | 6cba429 | 2018-11-15 17:33:29 +0100 | [diff] [blame] | 2475 | return LY_EVALID; |
Radek Krejci | c5c27e5 | 2018-11-15 14:38:11 +0100 | [diff] [blame] | 2476 | } |
| 2477 | |
| 2478 | if (tpdfname) { |
| 2479 | type_p->compiled = *type; |
| 2480 | *type = calloc(1, sizeof(struct lysc_type_bits)); |
| 2481 | } |
| 2482 | break; |
Radek Krejci | 6cba429 | 2018-11-15 17:33:29 +0100 | [diff] [blame] | 2483 | case LY_TYPE_DEC64: |
| 2484 | dec = (struct lysc_type_dec*)(*type); |
| 2485 | |
| 2486 | /* RFC 7950 9.3.4 - fraction-digits */ |
Radek Krejci | 555cb5b | 2018-11-16 14:54:33 +0100 | [diff] [blame] | 2487 | if (!base) { |
Radek Krejci | 643c824 | 2018-11-15 17:51:11 +0100 | [diff] [blame] | 2488 | if (!type_p->fraction_digits) { |
| 2489 | if (tpdfname) { |
Radek Krejci | 555cb5b | 2018-11-16 14:54:33 +0100 | [diff] [blame] | 2490 | 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] | 2491 | } else { |
Radek Krejci | 555cb5b | 2018-11-16 14:54:33 +0100 | [diff] [blame] | 2492 | 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] | 2493 | free(*type); |
| 2494 | *type = NULL; |
| 2495 | } |
| 2496 | return LY_EVALID; |
| 2497 | } |
| 2498 | } else if (type_p->fraction_digits) { |
| 2499 | /* fraction digits is prohibited in types not directly derived from built-in decimal64 */ |
Radek Krejci | 6cba429 | 2018-11-15 17:33:29 +0100 | [diff] [blame] | 2500 | if (tpdfname) { |
Radek Krejci | 643c824 | 2018-11-15 17:51:11 +0100 | [diff] [blame] | 2501 | LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SYNTAX_YANG, |
| 2502 | "Invalid fraction-digits substatement for type \"%s\" not directly derived from decimal64 built-in type.", |
Radek Krejci | 6cba429 | 2018-11-15 17:33:29 +0100 | [diff] [blame] | 2503 | tpdfname); |
| 2504 | } else { |
Radek Krejci | 643c824 | 2018-11-15 17:51:11 +0100 | [diff] [blame] | 2505 | LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SYNTAX_YANG, |
| 2506 | "Invalid fraction-digits substatement for type not directly derived from decimal64 built-in type."); |
Radek Krejci | 6cba429 | 2018-11-15 17:33:29 +0100 | [diff] [blame] | 2507 | free(*type); |
| 2508 | *type = NULL; |
| 2509 | } |
| 2510 | return LY_EVALID; |
| 2511 | } |
| 2512 | dec->fraction_digits = type_p->fraction_digits; |
| 2513 | |
| 2514 | /* RFC 7950 9.2.4 - range */ |
| 2515 | if (type_p->range) { |
| 2516 | ret = lys_compile_type_range(ctx, type_p->range, basetype, 0, dec->fraction_digits, |
| 2517 | base ? ((struct lysc_type_dec*)base)->range : NULL, &dec->range); |
| 2518 | LY_CHECK_RET(ret); |
| 2519 | if (!tpdfname) { |
| 2520 | COMPILE_ARRAY_GOTO(ctx, type_p->range->exts, dec->range->exts, |
| 2521 | options, u, lys_compile_ext, ret, done); |
| 2522 | } |
Radek Krejci | 6cba429 | 2018-11-15 17:33:29 +0100 | [diff] [blame] | 2523 | } |
| 2524 | |
| 2525 | if (tpdfname) { |
| 2526 | type_p->compiled = *type; |
| 2527 | *type = calloc(1, sizeof(struct lysc_type_dec)); |
| 2528 | } |
| 2529 | break; |
Radek Krejci | c5c27e5 | 2018-11-15 14:38:11 +0100 | [diff] [blame] | 2530 | case LY_TYPE_STRING: |
Radek Krejci | c5c27e5 | 2018-11-15 14:38:11 +0100 | [diff] [blame] | 2531 | str = (struct lysc_type_str*)(*type); |
Radek Krejci | 555cb5b | 2018-11-16 14:54:33 +0100 | [diff] [blame] | 2532 | |
| 2533 | /* RFC 7950 9.4.4 - length */ |
Radek Krejci | c5c27e5 | 2018-11-15 14:38:11 +0100 | [diff] [blame] | 2534 | if (type_p->length) { |
Radek Krejci | 6cba429 | 2018-11-15 17:33:29 +0100 | [diff] [blame] | 2535 | ret = lys_compile_type_range(ctx, type_p->length, basetype, 1, 0, |
Radek Krejci | c5c27e5 | 2018-11-15 14:38:11 +0100 | [diff] [blame] | 2536 | base ? ((struct lysc_type_str*)base)->length : NULL, &str->length); |
| 2537 | LY_CHECK_RET(ret); |
| 2538 | if (!tpdfname) { |
| 2539 | COMPILE_ARRAY_GOTO(ctx, type_p->length->exts, str->length->exts, |
| 2540 | options, u, lys_compile_ext, ret, done); |
| 2541 | } |
| 2542 | } else if (base && ((struct lysc_type_str*)base)->length) { |
| 2543 | str->length = lysc_range_dup(ctx->ctx, ((struct lysc_type_str*)base)->length); |
| 2544 | } |
| 2545 | |
| 2546 | /* RFC 7950 9.4.5 - pattern */ |
| 2547 | if (type_p->patterns) { |
| 2548 | ret = lys_compile_type_patterns(ctx, type_p->patterns, options, |
| 2549 | base ? ((struct lysc_type_str*)base)->patterns : NULL, &str->patterns); |
| 2550 | LY_CHECK_RET(ret); |
| 2551 | } else if (base && ((struct lysc_type_str*)base)->patterns) { |
| 2552 | str->patterns = lysc_patterns_dup(ctx->ctx, ((struct lysc_type_str*)base)->patterns); |
| 2553 | } |
| 2554 | |
| 2555 | if (tpdfname) { |
| 2556 | type_p->compiled = *type; |
| 2557 | *type = calloc(1, sizeof(struct lysc_type_str)); |
| 2558 | } |
| 2559 | break; |
| 2560 | case LY_TYPE_ENUM: |
Radek Krejci | c5c27e5 | 2018-11-15 14:38:11 +0100 | [diff] [blame] | 2561 | enumeration = (struct lysc_type_enum*)(*type); |
Radek Krejci | 555cb5b | 2018-11-16 14:54:33 +0100 | [diff] [blame] | 2562 | |
| 2563 | /* RFC 7950 9.6 - enum */ |
Radek Krejci | c5c27e5 | 2018-11-15 14:38:11 +0100 | [diff] [blame] | 2564 | if (type_p->enums) { |
| 2565 | ret = lys_compile_type_enums(ctx, type_p->enums, basetype, options, |
| 2566 | base ? ((struct lysc_type_enum*)base)->enums : NULL, &enumeration->enums); |
| 2567 | LY_CHECK_RET(ret); |
| 2568 | } |
| 2569 | |
Radek Krejci | 555cb5b | 2018-11-16 14:54:33 +0100 | [diff] [blame] | 2570 | if (!base && !type_p->flags) { |
Radek Krejci | c5c27e5 | 2018-11-15 14:38:11 +0100 | [diff] [blame] | 2571 | /* 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] | 2572 | if (tpdfname) { |
Radek Krejci | 555cb5b | 2018-11-16 14:54:33 +0100 | [diff] [blame] | 2573 | 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] | 2574 | } else { |
Radek Krejci | 555cb5b | 2018-11-16 14:54:33 +0100 | [diff] [blame] | 2575 | LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LY_VCODE_MISSCHILDSTMT, "enum", "enumeration type", ""); |
Radek Krejci | 6cba429 | 2018-11-15 17:33:29 +0100 | [diff] [blame] | 2576 | free(*type); |
| 2577 | *type = NULL; |
Radek Krejci | c5c27e5 | 2018-11-15 14:38:11 +0100 | [diff] [blame] | 2578 | } |
Radek Krejci | 6cba429 | 2018-11-15 17:33:29 +0100 | [diff] [blame] | 2579 | return LY_EVALID; |
Radek Krejci | c5c27e5 | 2018-11-15 14:38:11 +0100 | [diff] [blame] | 2580 | } |
| 2581 | |
| 2582 | if (tpdfname) { |
| 2583 | type_p->compiled = *type; |
| 2584 | *type = calloc(1, sizeof(struct lysc_type_enum)); |
| 2585 | } |
| 2586 | break; |
| 2587 | case LY_TYPE_INT8: |
| 2588 | case LY_TYPE_UINT8: |
| 2589 | case LY_TYPE_INT16: |
| 2590 | case LY_TYPE_UINT16: |
| 2591 | case LY_TYPE_INT32: |
| 2592 | case LY_TYPE_UINT32: |
| 2593 | case LY_TYPE_INT64: |
| 2594 | case LY_TYPE_UINT64: |
Radek Krejci | c5c27e5 | 2018-11-15 14:38:11 +0100 | [diff] [blame] | 2595 | num = (struct lysc_type_num*)(*type); |
Radek Krejci | 555cb5b | 2018-11-16 14:54:33 +0100 | [diff] [blame] | 2596 | |
| 2597 | /* RFC 6020 9.2.4 - range */ |
Radek Krejci | c5c27e5 | 2018-11-15 14:38:11 +0100 | [diff] [blame] | 2598 | if (type_p->range) { |
Radek Krejci | 6cba429 | 2018-11-15 17:33:29 +0100 | [diff] [blame] | 2599 | ret = lys_compile_type_range(ctx, type_p->range, basetype, 0, 0, |
Radek Krejci | c5c27e5 | 2018-11-15 14:38:11 +0100 | [diff] [blame] | 2600 | base ? ((struct lysc_type_num*)base)->range : NULL, &num->range); |
| 2601 | LY_CHECK_RET(ret); |
| 2602 | if (!tpdfname) { |
| 2603 | COMPILE_ARRAY_GOTO(ctx, type_p->range->exts, num->range->exts, |
| 2604 | options, u, lys_compile_ext, ret, done); |
| 2605 | } |
| 2606 | } |
| 2607 | |
| 2608 | if (tpdfname) { |
| 2609 | type_p->compiled = *type; |
| 2610 | *type = calloc(1, sizeof(struct lysc_type_num)); |
| 2611 | } |
| 2612 | break; |
Radek Krejci | 555cb5b | 2018-11-16 14:54:33 +0100 | [diff] [blame] | 2613 | case LY_TYPE_IDENT: |
| 2614 | idref = (struct lysc_type_identityref*)(*type); |
| 2615 | |
| 2616 | /* RFC 7950 9.10.2 - base */ |
| 2617 | if (type_p->bases) { |
| 2618 | if (base) { |
| 2619 | /* only the directly derived identityrefs can contain base specification */ |
| 2620 | if (tpdfname) { |
| 2621 | LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SYNTAX_YANG, |
Radek Krejci | cdfecd9 | 2018-11-26 11:27:32 +0100 | [diff] [blame] | 2622 | "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] | 2623 | tpdfname); |
| 2624 | } else { |
| 2625 | LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SYNTAX_YANG, |
Radek Krejci | cdfecd9 | 2018-11-26 11:27:32 +0100 | [diff] [blame] | 2626 | "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] | 2627 | free(*type); |
| 2628 | *type = NULL; |
| 2629 | } |
| 2630 | return LY_EVALID; |
| 2631 | } |
| 2632 | ret = lys_compile_identity_bases(ctx, type_p->bases, NULL, &idref->bases); |
| 2633 | LY_CHECK_RET(ret); |
| 2634 | } |
| 2635 | |
| 2636 | if (!base && !type_p->flags) { |
| 2637 | /* type derived from identityref built-in type must contain at least one base */ |
| 2638 | if (tpdfname) { |
| 2639 | LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LY_VCODE_MISSCHILDSTMT, "base", "identityref type ", tpdfname); |
| 2640 | } else { |
| 2641 | LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LY_VCODE_MISSCHILDSTMT, "base", "identityref type", ""); |
| 2642 | free(*type); |
| 2643 | *type = NULL; |
| 2644 | } |
| 2645 | return LY_EVALID; |
| 2646 | } |
| 2647 | |
| 2648 | if (tpdfname) { |
| 2649 | type_p->compiled = *type; |
| 2650 | *type = calloc(1, sizeof(struct lysc_type_identityref)); |
| 2651 | } |
| 2652 | break; |
Radek Krejci | a304538 | 2018-11-22 14:30:31 +0100 | [diff] [blame] | 2653 | case LY_TYPE_LEAFREF: |
| 2654 | /* RFC 7950 9.9.3 - require-instance */ |
| 2655 | if (type_p->flags & LYS_SET_REQINST) { |
Radek Krejci | 0bcdaed | 2019-01-10 10:21:34 +0100 | [diff] [blame] | 2656 | if (context_mod->mod->version < LYS_VERSION_1_1) { |
Radek Krejci | 9bb94eb | 2018-12-04 16:48:35 +0100 | [diff] [blame] | 2657 | if (tpdfname) { |
| 2658 | LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SEMANTICS, |
| 2659 | "Leafref type \"%s\" can be restricted by require-instance statement only in YANG 1.1 modules.", tpdfname); |
| 2660 | } else { |
| 2661 | LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SEMANTICS, |
| 2662 | "Leafref type can be restricted by require-instance statement only in YANG 1.1 modules."); |
| 2663 | free(*type); |
| 2664 | *type = NULL; |
| 2665 | } |
| 2666 | return LY_EVALID; |
| 2667 | } |
Radek Krejci | a304538 | 2018-11-22 14:30:31 +0100 | [diff] [blame] | 2668 | ((struct lysc_type_leafref*)(*type))->require_instance = type_p->require_instance; |
Radek Krejci | 412ddfa | 2018-11-23 11:44:11 +0100 | [diff] [blame] | 2669 | } else if (base) { |
| 2670 | /* inherit */ |
| 2671 | ((struct lysc_type_leafref*)(*type))->require_instance = ((struct lysc_type_leafref*)base)->require_instance; |
Radek Krejci | a304538 | 2018-11-22 14:30:31 +0100 | [diff] [blame] | 2672 | } else { |
| 2673 | /* default is true */ |
| 2674 | ((struct lysc_type_leafref*)(*type))->require_instance = 1; |
| 2675 | } |
| 2676 | if (type_p->path) { |
| 2677 | DUP_STRING(ctx->ctx, (void*)type_p->path, ((struct lysc_type_leafref*)(*type))->path); |
Radek Krejci | 96a0bfd | 2018-11-22 15:25:06 +0100 | [diff] [blame] | 2678 | ((struct lysc_type_leafref*)(*type))->path_context = module; |
Radek Krejci | a304538 | 2018-11-22 14:30:31 +0100 | [diff] [blame] | 2679 | } else if (base) { |
| 2680 | DUP_STRING(ctx->ctx, ((struct lysc_type_leafref*)base)->path, ((struct lysc_type_leafref*)(*type))->path); |
Radek Krejci | 96a0bfd | 2018-11-22 15:25:06 +0100 | [diff] [blame] | 2681 | ((struct lysc_type_leafref*)(*type))->path_context = ((struct lysc_type_leafref*)base)->path_context; |
Radek Krejci | a304538 | 2018-11-22 14:30:31 +0100 | [diff] [blame] | 2682 | } else if (tpdfname) { |
| 2683 | LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LY_VCODE_MISSCHILDSTMT, "path", "leafref type ", tpdfname); |
| 2684 | return LY_EVALID; |
| 2685 | } else { |
| 2686 | LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LY_VCODE_MISSCHILDSTMT, "path", "leafref type", ""); |
| 2687 | free(*type); |
| 2688 | *type = NULL; |
| 2689 | return LY_EVALID; |
| 2690 | } |
| 2691 | if (tpdfname) { |
| 2692 | type_p->compiled = *type; |
| 2693 | *type = calloc(1, sizeof(struct lysc_type_leafref)); |
| 2694 | } |
| 2695 | break; |
Radek Krejci | 16c0f82 | 2018-11-16 10:46:10 +0100 | [diff] [blame] | 2696 | case LY_TYPE_INST: |
| 2697 | /* RFC 7950 9.9.3 - require-instance */ |
| 2698 | if (type_p->flags & LYS_SET_REQINST) { |
| 2699 | ((struct lysc_type_instanceid*)(*type))->require_instance = type_p->require_instance; |
| 2700 | } else { |
| 2701 | /* default is true */ |
| 2702 | ((struct lysc_type_instanceid*)(*type))->require_instance = 1; |
| 2703 | } |
| 2704 | |
| 2705 | if (tpdfname) { |
| 2706 | type_p->compiled = *type; |
| 2707 | *type = calloc(1, sizeof(struct lysc_type_instanceid)); |
| 2708 | } |
| 2709 | break; |
Radek Krejci | cdfecd9 | 2018-11-26 11:27:32 +0100 | [diff] [blame] | 2710 | case LY_TYPE_UNION: |
| 2711 | un = (struct lysc_type_union*)(*type); |
| 2712 | |
| 2713 | /* RFC 7950 7.4 - type */ |
| 2714 | if (type_p->types) { |
| 2715 | if (base) { |
| 2716 | /* only the directly derived union can contain types specification */ |
| 2717 | if (tpdfname) { |
| 2718 | LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SYNTAX_YANG, |
| 2719 | "Invalid type substatement for the type \"%s\" not directly derived from union built-in type.", |
| 2720 | tpdfname); |
| 2721 | } else { |
| 2722 | LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SYNTAX_YANG, |
| 2723 | "Invalid type substatement for the type not directly derived from union built-in type."); |
| 2724 | free(*type); |
| 2725 | *type = NULL; |
| 2726 | } |
| 2727 | return LY_EVALID; |
| 2728 | } |
| 2729 | /* compile the type */ |
| 2730 | additional = 0; |
| 2731 | LY_ARRAY_CREATE_RET(ctx->ctx, un->types, LY_ARRAY_SIZE(type_p->types), LY_EVALID); |
| 2732 | for (u = 0; u < LY_ARRAY_SIZE(type_p->types); ++u) { |
Radek Krejci | 01342af | 2019-01-03 15:18:08 +0100 | [diff] [blame] | 2733 | ret = lys_compile_type(ctx, context_node_p, context_flags, context_mod, context_name, &type_p->types[u], options, &un->types[u + additional], NULL); |
Radek Krejci | cdfecd9 | 2018-11-26 11:27:32 +0100 | [diff] [blame] | 2734 | if (un->types[u + additional]->basetype == LY_TYPE_UNION) { |
| 2735 | /* add space for additional types from the union subtype */ |
| 2736 | un_aux = (struct lysc_type_union *)un->types[u + additional]; |
| 2737 | p = ly_realloc(((uint32_t*)(un->types) - 1), sizeof(uint32_t) + ((LY_ARRAY_SIZE(type_p->types) + additional + LY_ARRAY_SIZE(un_aux->types) - 1) * sizeof *(un->types))); |
| 2738 | LY_CHECK_ERR_RET(!p, LOGMEM(ctx->ctx);lysc_type_free(ctx->ctx, (struct lysc_type*)un_aux), LY_EMEM); |
| 2739 | un->types = (void*)((uint32_t*)(p) + 1); |
| 2740 | |
| 2741 | /* copy subtypes of the subtype union */ |
| 2742 | for (v = 0; v < LY_ARRAY_SIZE(un_aux->types); ++v) { |
| 2743 | if (un_aux->types[v]->basetype == LY_TYPE_LEAFREF) { |
| 2744 | /* duplicate the whole structure because of the instance-specific path resolving for realtype */ |
| 2745 | un->types[u + additional] = calloc(1, sizeof(struct lysc_type_leafref)); |
| 2746 | LY_CHECK_ERR_RET(!un->types[u + additional], LOGMEM(ctx->ctx);lysc_type_free(ctx->ctx, (struct lysc_type*)un_aux), LY_EMEM); |
| 2747 | ((struct lysc_type_leafref*)un->types[u + additional])->basetype = LY_TYPE_LEAFREF; |
| 2748 | DUP_STRING(ctx->ctx, ((struct lysc_type_leafref*)un_aux->types[v])->path, ((struct lysc_type_leafref*)un->types[u + additional])->path); |
| 2749 | ((struct lysc_type_leafref*)un->types[u + additional])->refcount = 1; |
| 2750 | ((struct lysc_type_leafref*)un->types[u + additional])->require_instance = ((struct lysc_type_leafref*)un_aux->types[v])->require_instance; |
| 2751 | ((struct lysc_type_leafref*)un->types[u + additional])->path_context = ((struct lysc_type_leafref*)un_aux->types[v])->path_context; |
| 2752 | /* TODO extensions */ |
| 2753 | |
| 2754 | } else { |
| 2755 | un->types[u + additional] = un_aux->types[v]; |
| 2756 | ++un_aux->types[v]->refcount; |
| 2757 | } |
| 2758 | ++additional; |
| 2759 | LY_ARRAY_INCREMENT(un->types); |
| 2760 | } |
| 2761 | /* compensate u increment in main loop */ |
| 2762 | --additional; |
| 2763 | |
| 2764 | /* free the replaced union subtype */ |
| 2765 | lysc_type_free(ctx->ctx, (struct lysc_type*)un_aux); |
| 2766 | } else { |
| 2767 | LY_ARRAY_INCREMENT(un->types); |
| 2768 | } |
| 2769 | LY_CHECK_RET(ret); |
| 2770 | } |
| 2771 | } |
| 2772 | |
| 2773 | if (!base && !type_p->flags) { |
| 2774 | /* type derived from union built-in type must contain at least one type */ |
| 2775 | if (tpdfname) { |
| 2776 | LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LY_VCODE_MISSCHILDSTMT, "type", "union type ", tpdfname); |
| 2777 | } else { |
| 2778 | LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LY_VCODE_MISSCHILDSTMT, "type", "union type", ""); |
| 2779 | free(*type); |
| 2780 | *type = NULL; |
| 2781 | } |
| 2782 | return LY_EVALID; |
| 2783 | } |
| 2784 | |
| 2785 | if (tpdfname) { |
| 2786 | type_p->compiled = *type; |
| 2787 | *type = calloc(1, sizeof(struct lysc_type_union)); |
| 2788 | } |
| 2789 | break; |
Radek Krejci | c5c27e5 | 2018-11-15 14:38:11 +0100 | [diff] [blame] | 2790 | case LY_TYPE_BOOL: |
| 2791 | case LY_TYPE_EMPTY: |
| 2792 | case LY_TYPE_UNKNOWN: /* just to complete switch */ |
| 2793 | break; |
| 2794 | } |
| 2795 | LY_CHECK_ERR_RET(!(*type), LOGMEM(ctx->ctx), LY_EMEM); |
| 2796 | done: |
| 2797 | return ret; |
| 2798 | } |
| 2799 | |
Radek Krejci | a304538 | 2018-11-22 14:30:31 +0100 | [diff] [blame] | 2800 | /** |
| 2801 | * @brief Compile information about the leaf/leaf-list's type. |
| 2802 | * @param[in] ctx Compile context. |
Radek Krejci | cdfecd9 | 2018-11-26 11:27:32 +0100 | [diff] [blame] | 2803 | * @param[in] context_node_p Schema node where the type/typedef is placed to correctly find the base types. |
| 2804 | * @param[in] context_flags Flags of the context node or the referencing typedef to correctly check status of referencing and referenced objects. |
| 2805 | * @param[in] context_mod Module of the context node or the referencing typedef to correctly check status of referencing and referenced objects. |
| 2806 | * @param[in] context_name Name of the context node or referencing typedef for logging. |
| 2807 | * @param[in] type_p Parsed type to compile. |
Radek Krejci | a304538 | 2018-11-22 14:30:31 +0100 | [diff] [blame] | 2808 | * @param[in] options Various options to modify compiler behavior, see [compile flags](@ref scflags). |
| 2809 | * @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] | 2810 | * @param[out] units Storage for inheriting units value from the typedefs the current type derives from. |
Radek Krejci | a304538 | 2018-11-22 14:30:31 +0100 | [diff] [blame] | 2811 | * @return LY_ERR value. |
| 2812 | */ |
Radek Krejci | c5c27e5 | 2018-11-15 14:38:11 +0100 | [diff] [blame] | 2813 | static LY_ERR |
Radek Krejci | cdfecd9 | 2018-11-26 11:27:32 +0100 | [diff] [blame] | 2814 | lys_compile_type(struct lysc_ctx *ctx, struct lysp_node *context_node_p, uint16_t context_flags, struct lysp_module *context_mod, const char *context_name, |
Radek Krejci | 01342af | 2019-01-03 15:18:08 +0100 | [diff] [blame] | 2815 | struct lysp_type *type_p, int options, struct lysc_type **type, const char **units) |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 2816 | { |
| 2817 | LY_ERR ret = LY_SUCCESS; |
| 2818 | unsigned int u; |
Radek Krejci | cdfecd9 | 2018-11-26 11:27:32 +0100 | [diff] [blame] | 2819 | int dummyloops = 0; |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 2820 | struct type_context { |
| 2821 | const struct lysp_tpdf *tpdf; |
| 2822 | struct lysp_node *node; |
| 2823 | struct lysp_module *mod; |
| 2824 | } *tctx, *tctx_prev = NULL; |
| 2825 | LY_DATA_TYPE basetype = LY_TYPE_UNKNOWN; |
Radek Krejci | c5c27e5 | 2018-11-15 14:38:11 +0100 | [diff] [blame] | 2826 | struct lysc_type *base = NULL, *prev_type; |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 2827 | struct ly_set tpdf_chain = {0}; |
Radek Krejci | 01342af | 2019-01-03 15:18:08 +0100 | [diff] [blame] | 2828 | const char *dflt = NULL; |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 2829 | |
| 2830 | (*type) = NULL; |
| 2831 | |
| 2832 | tctx = calloc(1, sizeof *tctx); |
| 2833 | LY_CHECK_ERR_RET(!tctx, LOGMEM(ctx->ctx), LY_EMEM); |
Radek Krejci | e86bf77 | 2018-12-14 11:39:53 +0100 | [diff] [blame] | 2834 | for (ret = lysp_type_find(type_p->name, context_node_p, ctx->mod_def->parsed, |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 2835 | &basetype, &tctx->tpdf, &tctx->node, &tctx->mod); |
| 2836 | ret == LY_SUCCESS; |
| 2837 | ret = lysp_type_find(tctx_prev->tpdf->type.name, tctx_prev->node, tctx_prev->mod, |
| 2838 | &basetype, &tctx->tpdf, &tctx->node, &tctx->mod)) { |
| 2839 | if (basetype) { |
| 2840 | break; |
| 2841 | } |
| 2842 | |
| 2843 | /* check status */ |
Radek Krejci | cdfecd9 | 2018-11-26 11:27:32 +0100 | [diff] [blame] | 2844 | ret = lysc_check_status(ctx, context_flags, context_mod, context_name, |
| 2845 | tctx->tpdf->flags, tctx->mod, tctx->node ? tctx->node->name : tctx->tpdf->name); |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 2846 | LY_CHECK_ERR_GOTO(ret, free(tctx), cleanup); |
| 2847 | |
Radek Krejci | cdfecd9 | 2018-11-26 11:27:32 +0100 | [diff] [blame] | 2848 | if (units && !*units) { |
| 2849 | /* inherit units */ |
| 2850 | DUP_STRING(ctx->ctx, tctx->tpdf->units, *units); |
| 2851 | } |
Radek Krejci | 01342af | 2019-01-03 15:18:08 +0100 | [diff] [blame] | 2852 | if (!dflt) { |
Radek Krejci | cdfecd9 | 2018-11-26 11:27:32 +0100 | [diff] [blame] | 2853 | /* inherit default */ |
Radek Krejci | 01342af | 2019-01-03 15:18:08 +0100 | [diff] [blame] | 2854 | dflt = tctx->tpdf->dflt; |
Radek Krejci | cdfecd9 | 2018-11-26 11:27:32 +0100 | [diff] [blame] | 2855 | } |
Radek Krejci | 01342af | 2019-01-03 15:18:08 +0100 | [diff] [blame] | 2856 | if (dummyloops && (!units || *units) && dflt) { |
Radek Krejci | cdfecd9 | 2018-11-26 11:27:32 +0100 | [diff] [blame] | 2857 | basetype = ((struct type_context*)tpdf_chain.objs[tpdf_chain.count - 1])->tpdf->type.compiled->basetype; |
| 2858 | break; |
| 2859 | } |
| 2860 | |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 2861 | if (tctx->tpdf->type.compiled) { |
Radek Krejci | cdfecd9 | 2018-11-26 11:27:32 +0100 | [diff] [blame] | 2862 | /* it is not necessary to continue, the rest of the chain was already compiled, |
| 2863 | * 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] | 2864 | basetype = tctx->tpdf->type.compiled->basetype; |
| 2865 | ly_set_add(&tpdf_chain, tctx, LY_SET_OPT_USEASLIST); |
Radek Krejci | 01342af | 2019-01-03 15:18:08 +0100 | [diff] [blame] | 2866 | if ((units && !*units) || !dflt) { |
Radek Krejci | cdfecd9 | 2018-11-26 11:27:32 +0100 | [diff] [blame] | 2867 | dummyloops = 1; |
| 2868 | goto preparenext; |
| 2869 | } else { |
| 2870 | tctx = NULL; |
| 2871 | break; |
| 2872 | } |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 2873 | } |
| 2874 | |
| 2875 | /* store information for the following processing */ |
| 2876 | ly_set_add(&tpdf_chain, tctx, LY_SET_OPT_USEASLIST); |
| 2877 | |
Radek Krejci | cdfecd9 | 2018-11-26 11:27:32 +0100 | [diff] [blame] | 2878 | preparenext: |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 2879 | /* prepare next loop */ |
| 2880 | tctx_prev = tctx; |
| 2881 | tctx = calloc(1, sizeof *tctx); |
| 2882 | LY_CHECK_ERR_RET(!tctx, LOGMEM(ctx->ctx), LY_EMEM); |
| 2883 | } |
| 2884 | free(tctx); |
| 2885 | |
| 2886 | /* allocate type according to the basetype */ |
| 2887 | switch (basetype) { |
| 2888 | case LY_TYPE_BINARY: |
| 2889 | *type = calloc(1, sizeof(struct lysc_type_bin)); |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 2890 | break; |
| 2891 | case LY_TYPE_BITS: |
| 2892 | *type = calloc(1, sizeof(struct lysc_type_bits)); |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 2893 | break; |
| 2894 | case LY_TYPE_BOOL: |
| 2895 | case LY_TYPE_EMPTY: |
| 2896 | *type = calloc(1, sizeof(struct lysc_type)); |
| 2897 | break; |
| 2898 | case LY_TYPE_DEC64: |
| 2899 | *type = calloc(1, sizeof(struct lysc_type_dec)); |
| 2900 | break; |
| 2901 | case LY_TYPE_ENUM: |
| 2902 | *type = calloc(1, sizeof(struct lysc_type_enum)); |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 2903 | break; |
| 2904 | case LY_TYPE_IDENT: |
| 2905 | *type = calloc(1, sizeof(struct lysc_type_identityref)); |
| 2906 | break; |
| 2907 | case LY_TYPE_INST: |
| 2908 | *type = calloc(1, sizeof(struct lysc_type_instanceid)); |
| 2909 | break; |
| 2910 | case LY_TYPE_LEAFREF: |
| 2911 | *type = calloc(1, sizeof(struct lysc_type_leafref)); |
| 2912 | break; |
| 2913 | case LY_TYPE_STRING: |
| 2914 | *type = calloc(1, sizeof(struct lysc_type_str)); |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 2915 | break; |
| 2916 | case LY_TYPE_UNION: |
| 2917 | *type = calloc(1, sizeof(struct lysc_type_union)); |
| 2918 | break; |
| 2919 | case LY_TYPE_INT8: |
| 2920 | case LY_TYPE_UINT8: |
| 2921 | case LY_TYPE_INT16: |
| 2922 | case LY_TYPE_UINT16: |
| 2923 | case LY_TYPE_INT32: |
| 2924 | case LY_TYPE_UINT32: |
| 2925 | case LY_TYPE_INT64: |
| 2926 | case LY_TYPE_UINT64: |
| 2927 | *type = calloc(1, sizeof(struct lysc_type_num)); |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 2928 | break; |
| 2929 | case LY_TYPE_UNKNOWN: |
| 2930 | LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_REFERENCE, |
| 2931 | "Referenced type \"%s\" not found.", tctx_prev ? tctx_prev->tpdf->type.name : type_p->name); |
| 2932 | ret = LY_EVALID; |
| 2933 | goto cleanup; |
| 2934 | } |
| 2935 | LY_CHECK_ERR_GOTO(!(*type), LOGMEM(ctx->ctx), cleanup); |
Radek Krejci | cdfecd9 | 2018-11-26 11:27:32 +0100 | [diff] [blame] | 2936 | if (~type_substmt_map[basetype] & type_p->flags) { |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 2937 | LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SYNTAX_YANG, "Invalid type restrictions for %s type.", |
| 2938 | ly_data_type2str[basetype]); |
| 2939 | free(*type); |
| 2940 | (*type) = NULL; |
| 2941 | ret = LY_EVALID; |
| 2942 | goto cleanup; |
| 2943 | } |
| 2944 | |
| 2945 | /* get restrictions from the referred typedefs */ |
| 2946 | for (u = tpdf_chain.count - 1; u + 1 > 0; --u) { |
| 2947 | tctx = (struct type_context*)tpdf_chain.objs[u]; |
Radek Krejci | 4369923 | 2018-11-23 14:59:46 +0100 | [diff] [blame] | 2948 | if (tctx->tpdf->type.compiled) { |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 2949 | base = tctx->tpdf->type.compiled; |
| 2950 | continue; |
Radek Krejci | 4369923 | 2018-11-23 14:59:46 +0100 | [diff] [blame] | 2951 | } 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] | 2952 | /* no change, just use the type information from the base */ |
| 2953 | base = ((struct lysp_tpdf*)tctx->tpdf)->type.compiled = ((struct type_context*)tpdf_chain.objs[u + 1])->tpdf->type.compiled; |
| 2954 | ++base->refcount; |
| 2955 | continue; |
| 2956 | } |
| 2957 | |
| 2958 | ++(*type)->refcount; |
Radek Krejci | 4369923 | 2018-11-23 14:59:46 +0100 | [diff] [blame] | 2959 | if (~type_substmt_map[basetype] & tctx->tpdf->type.flags) { |
| 2960 | LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SYNTAX_YANG, "Invalid type \"%s\" restriction(s) for %s type.", |
| 2961 | tctx->tpdf->name, ly_data_type2str[basetype]); |
| 2962 | ret = LY_EVALID; |
| 2963 | goto cleanup; |
| 2964 | } else if (basetype == LY_TYPE_EMPTY && tctx->tpdf->dflt) { |
| 2965 | LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SEMANTICS, |
| 2966 | "Invalid type \"%s\" - \"empty\" type must not have a default value (%s).", |
| 2967 | tctx->tpdf->name, tctx->tpdf->dflt); |
| 2968 | ret = LY_EVALID; |
| 2969 | goto cleanup; |
| 2970 | } |
| 2971 | |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 2972 | (*type)->basetype = basetype; |
Radek Krejci | c5c27e5 | 2018-11-15 14:38:11 +0100 | [diff] [blame] | 2973 | prev_type = *type; |
Radek Krejci | cdfecd9 | 2018-11-26 11:27:32 +0100 | [diff] [blame] | 2974 | 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] | 2975 | basetype & (LY_TYPE_LEAFREF | LY_TYPE_UNION) ? lysp_find_module(ctx->ctx, tctx->mod) : NULL, |
| 2976 | basetype, options, tctx->tpdf->name, base, type); |
Radek Krejci | c5c27e5 | 2018-11-15 14:38:11 +0100 | [diff] [blame] | 2977 | LY_CHECK_GOTO(ret, cleanup); |
| 2978 | base = prev_type; |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 2979 | } |
| 2980 | |
Radek Krejci | c5c27e5 | 2018-11-15 14:38:11 +0100 | [diff] [blame] | 2981 | /* process the type definition in leaf */ |
Radek Krejci | cdfecd9 | 2018-11-26 11:27:32 +0100 | [diff] [blame] | 2982 | if (type_p->flags || !base || basetype == LY_TYPE_LEAFREF) { |
Radek Krejci | a304538 | 2018-11-22 14:30:31 +0100 | [diff] [blame] | 2983 | /* get restrictions from the node itself */ |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 2984 | (*type)->basetype = basetype; |
| 2985 | ++(*type)->refcount; |
Radek Krejci | e86bf77 | 2018-12-14 11:39:53 +0100 | [diff] [blame] | 2986 | ret = lys_compile_type_(ctx, context_node_p, context_flags, context_mod, context_name, type_p, ctx->mod_def, basetype, options, NULL, base, type); |
Radek Krejci | c5c27e5 | 2018-11-15 14:38:11 +0100 | [diff] [blame] | 2987 | LY_CHECK_GOTO(ret, cleanup); |
| 2988 | } else { |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 2989 | /* no specific restriction in leaf's type definition, copy from the base */ |
| 2990 | free(*type); |
| 2991 | (*type) = base; |
| 2992 | ++(*type)->refcount; |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 2993 | } |
Radek Krejci | 01342af | 2019-01-03 15:18:08 +0100 | [diff] [blame] | 2994 | if (!(*type)->dflt) { |
| 2995 | DUP_STRING(ctx->ctx, dflt, (*type)->dflt); |
| 2996 | } |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 2997 | |
| 2998 | COMPILE_ARRAY_GOTO(ctx, type_p->exts, (*type)->exts, options, u, lys_compile_ext, ret, cleanup); |
| 2999 | |
| 3000 | cleanup: |
| 3001 | ly_set_erase(&tpdf_chain, free); |
| 3002 | return ret; |
| 3003 | } |
| 3004 | |
Radek Krejci | b1b5915 | 2019-01-07 13:21:56 +0100 | [diff] [blame] | 3005 | static LY_ERR lys_compile_node(struct lysc_ctx *ctx, struct lysp_node *node_p, int options, struct lysc_node *parent, uint16_t uses_status); |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 3006 | |
Radek Krejci | a304538 | 2018-11-22 14:30:31 +0100 | [diff] [blame] | 3007 | /** |
| 3008 | * @brief Compile parsed container node information. |
| 3009 | * @param[in] ctx Compile context |
| 3010 | * @param[in] node_p Parsed container node. |
| 3011 | * @param[in] options Various options to modify compiler behavior, see [compile flags](@ref scflags). |
| 3012 | * @param[in,out] node Pre-prepared structure from lys_compile_node() with filled generic node information |
| 3013 | * is enriched with the container-specific information. |
| 3014 | * @return LY_ERR value - LY_SUCCESS or LY_EVALID. |
| 3015 | */ |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 3016 | static LY_ERR |
| 3017 | lys_compile_node_container(struct lysc_ctx *ctx, struct lysp_node *node_p, int options, struct lysc_node *node) |
| 3018 | { |
| 3019 | struct lysp_node_container *cont_p = (struct lysp_node_container*)node_p; |
| 3020 | struct lysc_node_container *cont = (struct lysc_node_container*)node; |
| 3021 | struct lysp_node *child_p; |
| 3022 | unsigned int u; |
| 3023 | LY_ERR ret = LY_SUCCESS; |
| 3024 | |
Radek Krejci | fe90963 | 2019-02-12 15:34:42 +0100 | [diff] [blame] | 3025 | if (cont_p->presence) { |
| 3026 | cont->flags |= LYS_PRESENCE; |
| 3027 | } |
| 3028 | |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 3029 | LY_LIST_FOR(cont_p->child, child_p) { |
Radek Krejci | b1b5915 | 2019-01-07 13:21:56 +0100 | [diff] [blame] | 3030 | LY_CHECK_RET(lys_compile_node(ctx, child_p, options, node, 0)); |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 3031 | } |
| 3032 | |
| 3033 | COMPILE_ARRAY_GOTO(ctx, cont_p->musts, cont->musts, options, u, lys_compile_must, ret, done); |
| 3034 | //COMPILE_ARRAY_GOTO(ctx, cont_p->actions, cont->actions, options, u, lys_compile_action, ret, done); |
| 3035 | //COMPILE_ARRAY_GOTO(ctx, cont_p->notifs, cont->notifs, options, u, lys_compile_notif, ret, done); |
| 3036 | |
| 3037 | done: |
| 3038 | return ret; |
| 3039 | } |
| 3040 | |
Radek Krejci | a304538 | 2018-11-22 14:30:31 +0100 | [diff] [blame] | 3041 | /** |
| 3042 | * @brief Compile parsed leaf node information. |
| 3043 | * @param[in] ctx Compile context |
| 3044 | * @param[in] node_p Parsed leaf node. |
| 3045 | * @param[in] options Various options to modify compiler behavior, see [compile flags](@ref scflags). |
| 3046 | * @param[in,out] node Pre-prepared structure from lys_compile_node() with filled generic node information |
| 3047 | * is enriched with the leaf-specific information. |
| 3048 | * @return LY_ERR value - LY_SUCCESS or LY_EVALID. |
| 3049 | */ |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 3050 | static LY_ERR |
| 3051 | lys_compile_node_leaf(struct lysc_ctx *ctx, struct lysp_node *node_p, int options, struct lysc_node *node) |
| 3052 | { |
| 3053 | struct lysp_node_leaf *leaf_p = (struct lysp_node_leaf*)node_p; |
| 3054 | struct lysc_node_leaf *leaf = (struct lysc_node_leaf*)node; |
| 3055 | unsigned int u; |
| 3056 | LY_ERR ret = LY_SUCCESS; |
| 3057 | |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 3058 | COMPILE_ARRAY_GOTO(ctx, leaf_p->musts, leaf->musts, options, u, lys_compile_must, ret, done); |
Radek Krejci | ccd20f1 | 2019-02-15 14:12:27 +0100 | [diff] [blame] | 3059 | if (leaf_p->units) { |
| 3060 | leaf->units = lydict_insert(ctx->ctx, leaf_p->units, 0); |
| 3061 | leaf->flags |= LYS_SET_UNITS; |
| 3062 | } |
| 3063 | if (leaf_p->dflt) { |
| 3064 | leaf->dflt = lydict_insert(ctx->ctx, leaf_p->dflt, 0); |
Radek Krejci | 76b3e96 | 2018-12-14 17:01:25 +0100 | [diff] [blame] | 3065 | leaf->flags |= LYS_SET_DFLT; |
| 3066 | } |
Radek Krejci | 4369923 | 2018-11-23 14:59:46 +0100 | [diff] [blame] | 3067 | |
Radek Krejci | e86bf77 | 2018-12-14 11:39:53 +0100 | [diff] [blame] | 3068 | ret = lys_compile_type(ctx, node_p, node_p->flags, ctx->mod_def->parsed, node_p->name, &leaf_p->type, options, &leaf->type, |
Radek Krejci | 01342af | 2019-01-03 15:18:08 +0100 | [diff] [blame] | 3069 | leaf->units ? NULL : &leaf->units); |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 3070 | LY_CHECK_GOTO(ret, done); |
Radek Krejci | 01342af | 2019-01-03 15:18:08 +0100 | [diff] [blame] | 3071 | if (!leaf->dflt && !(leaf->flags & LYS_MAND_TRUE)) { |
| 3072 | DUP_STRING(ctx->ctx, leaf->type->dflt, leaf->dflt); |
| 3073 | } |
Radek Krejci | a304538 | 2018-11-22 14:30:31 +0100 | [diff] [blame] | 3074 | if (leaf->type->basetype == LY_TYPE_LEAFREF) { |
| 3075 | /* store to validate the path in the current context at the end of schema compiling when all the nodes are present */ |
| 3076 | ly_set_add(&ctx->unres, leaf, 0); |
Radek Krejci | cdfecd9 | 2018-11-26 11:27:32 +0100 | [diff] [blame] | 3077 | } else if (leaf->type->basetype == LY_TYPE_UNION) { |
| 3078 | LY_ARRAY_FOR(((struct lysc_type_union*)leaf->type)->types, u) { |
| 3079 | if (((struct lysc_type_union*)leaf->type)->types[u]->basetype == LY_TYPE_LEAFREF) { |
| 3080 | /* store to validate the path in the current context at the end of schema compiling when all the nodes are present */ |
| 3081 | ly_set_add(&ctx->unres, leaf, 0); |
| 3082 | } |
| 3083 | } |
Radek Krejci | 4369923 | 2018-11-23 14:59:46 +0100 | [diff] [blame] | 3084 | } else if (leaf->type->basetype == LY_TYPE_EMPTY && leaf_p->dflt) { |
| 3085 | LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SEMANTICS, |
| 3086 | "Leaf of type \"empty\" must not have a default value (%s).",leaf_p->dflt); |
| 3087 | return LY_EVALID; |
Radek Krejci | a304538 | 2018-11-22 14:30:31 +0100 | [diff] [blame] | 3088 | } |
| 3089 | |
Radek Krejci | b1a5dcc | 2018-11-26 14:50:05 +0100 | [diff] [blame] | 3090 | /* TODO validate default value according to the type, possibly postpone the check when the leafref target is known */ |
| 3091 | |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 3092 | done: |
| 3093 | return ret; |
| 3094 | } |
| 3095 | |
Radek Krejci | a304538 | 2018-11-22 14:30:31 +0100 | [diff] [blame] | 3096 | /** |
Radek Krejci | 0e5d838 | 2018-11-28 16:37:53 +0100 | [diff] [blame] | 3097 | * @brief Compile parsed leaf-list node information. |
| 3098 | * @param[in] ctx Compile context |
| 3099 | * @param[in] node_p Parsed leaf-list node. |
| 3100 | * @param[in] options Various options to modify compiler behavior, see [compile flags](@ref scflags). |
| 3101 | * @param[in,out] node Pre-prepared structure from lys_compile_node() with filled generic node information |
| 3102 | * is enriched with the leaf-list-specific information. |
| 3103 | * @return LY_ERR value - LY_SUCCESS or LY_EVALID. |
| 3104 | */ |
| 3105 | static LY_ERR |
| 3106 | lys_compile_node_leaflist(struct lysc_ctx *ctx, struct lysp_node *node_p, int options, struct lysc_node *node) |
| 3107 | { |
| 3108 | struct lysp_node_leaflist *llist_p = (struct lysp_node_leaflist*)node_p; |
| 3109 | struct lysc_node_leaflist *llist = (struct lysc_node_leaflist*)node; |
| 3110 | unsigned int u, v; |
Radek Krejci | 0e5d838 | 2018-11-28 16:37:53 +0100 | [diff] [blame] | 3111 | LY_ERR ret = LY_SUCCESS; |
| 3112 | |
Radek Krejci | 0e5d838 | 2018-11-28 16:37:53 +0100 | [diff] [blame] | 3113 | COMPILE_ARRAY_GOTO(ctx, llist_p->musts, llist->musts, options, u, lys_compile_must, ret, done); |
Radek Krejci | ccd20f1 | 2019-02-15 14:12:27 +0100 | [diff] [blame] | 3114 | if (llist_p->units) { |
| 3115 | llist->units = lydict_insert(ctx->ctx, llist_p->units, 0); |
| 3116 | llist->flags |= LYS_SET_UNITS; |
| 3117 | } |
Radek Krejci | 0e5d838 | 2018-11-28 16:37:53 +0100 | [diff] [blame] | 3118 | |
| 3119 | if (llist_p->dflts) { |
| 3120 | LY_ARRAY_CREATE_GOTO(ctx->ctx, llist->dflts, LY_ARRAY_SIZE(llist_p->dflts), ret, done); |
| 3121 | LY_ARRAY_FOR(llist_p->dflts, u) { |
| 3122 | DUP_STRING(ctx->ctx, llist_p->dflts[u], llist->dflts[u]); |
| 3123 | LY_ARRAY_INCREMENT(llist->dflts); |
| 3124 | } |
Radek Krejci | ccd20f1 | 2019-02-15 14:12:27 +0100 | [diff] [blame] | 3125 | llist->flags |= LYS_SET_DFLT; |
Radek Krejci | 0e5d838 | 2018-11-28 16:37:53 +0100 | [diff] [blame] | 3126 | } |
| 3127 | |
| 3128 | llist->min = llist_p->min; |
Radek Krejci | fe90963 | 2019-02-12 15:34:42 +0100 | [diff] [blame] | 3129 | if (llist->min) { |
| 3130 | llist->flags |= LYS_MAND_TRUE; |
| 3131 | } |
Radek Krejci | b740863 | 2018-11-28 17:12:11 +0100 | [diff] [blame] | 3132 | llist->max = llist_p->max ? llist_p->max : (uint32_t)-1; |
Radek Krejci | 0e5d838 | 2018-11-28 16:37:53 +0100 | [diff] [blame] | 3133 | |
Radek Krejci | e86bf77 | 2018-12-14 11:39:53 +0100 | [diff] [blame] | 3134 | ret = lys_compile_type(ctx, node_p, node_p->flags, ctx->mod_def->parsed, node_p->name, &llist_p->type, options, &llist->type, |
Radek Krejci | 01342af | 2019-01-03 15:18:08 +0100 | [diff] [blame] | 3135 | llist->units ? NULL : &llist->units); |
Radek Krejci | 0e5d838 | 2018-11-28 16:37:53 +0100 | [diff] [blame] | 3136 | LY_CHECK_GOTO(ret, done); |
Radek Krejci | 01342af | 2019-01-03 15:18:08 +0100 | [diff] [blame] | 3137 | if (llist->type->dflt && !llist->dflts && !llist->min) { |
Radek Krejci | 0e5d838 | 2018-11-28 16:37:53 +0100 | [diff] [blame] | 3138 | LY_ARRAY_CREATE_GOTO(ctx->ctx, llist->dflts, 1, ret, done); |
Radek Krejci | 01342af | 2019-01-03 15:18:08 +0100 | [diff] [blame] | 3139 | DUP_STRING(ctx->ctx, llist->type->dflt, llist->dflts[0]); |
Radek Krejci | 0e5d838 | 2018-11-28 16:37:53 +0100 | [diff] [blame] | 3140 | LY_ARRAY_INCREMENT(llist->dflts); |
| 3141 | } |
| 3142 | |
| 3143 | if (llist->type->basetype == LY_TYPE_LEAFREF) { |
| 3144 | /* store to validate the path in the current context at the end of schema compiling when all the nodes are present */ |
| 3145 | ly_set_add(&ctx->unres, llist, 0); |
| 3146 | } else if (llist->type->basetype == LY_TYPE_UNION) { |
| 3147 | LY_ARRAY_FOR(((struct lysc_type_union*)llist->type)->types, u) { |
| 3148 | if (((struct lysc_type_union*)llist->type)->types[u]->basetype == LY_TYPE_LEAFREF) { |
| 3149 | /* store to validate the path in the current context at the end of schema compiling when all the nodes are present */ |
| 3150 | ly_set_add(&ctx->unres, llist, 0); |
| 3151 | } |
| 3152 | } |
Radek Krejci | 6bb080b | 2018-11-28 17:23:41 +0100 | [diff] [blame] | 3153 | } else if (llist->type->basetype == LY_TYPE_EMPTY) { |
Radek Krejci | 0bcdaed | 2019-01-10 10:21:34 +0100 | [diff] [blame] | 3154 | if (ctx->mod_def->version < LYS_VERSION_1_1) { |
Radek Krejci | 6bb080b | 2018-11-28 17:23:41 +0100 | [diff] [blame] | 3155 | LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SEMANTICS, |
| 3156 | "Leaf-list of type \"empty\" is allowed only in YANG 1.1 modules."); |
| 3157 | return LY_EVALID; |
| 3158 | } else if (llist_p->dflts) { |
| 3159 | LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SEMANTICS, |
| 3160 | "Leaf-list of type \"empty\" must not have a default value (%s).", llist_p->dflts[0]); |
| 3161 | return LY_EVALID; |
| 3162 | } |
Radek Krejci | 0e5d838 | 2018-11-28 16:37:53 +0100 | [diff] [blame] | 3163 | } |
| 3164 | |
| 3165 | if ((llist->flags & LYS_CONFIG_W) && llist->dflts && LY_ARRAY_SIZE(llist->dflts)) { |
| 3166 | /* configuration data values must be unique - so check the default values */ |
| 3167 | LY_ARRAY_FOR(llist->dflts, u) { |
| 3168 | for (v = u + 1; v < LY_ARRAY_SIZE(llist->dflts); ++v) { |
| 3169 | if (!strcmp(llist->dflts[u], llist->dflts[v])) { |
| 3170 | LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SEMANTICS, |
| 3171 | "Configuration leaf-list has multiple defaults of the same value \"%s\".", llist->dflts[v]); |
| 3172 | return LY_EVALID; |
| 3173 | } |
| 3174 | } |
| 3175 | } |
| 3176 | } |
| 3177 | |
| 3178 | /* TODO validate default value according to the type, possibly postpone the check when the leafref target is known */ |
| 3179 | |
| 3180 | done: |
| 3181 | return ret; |
| 3182 | } |
| 3183 | |
| 3184 | /** |
Radek Krejci | 7af6424 | 2019-02-18 13:07:53 +0100 | [diff] [blame] | 3185 | * @brief Compile information about list's uniques. |
| 3186 | * @param[in] ctx Compile context. |
| 3187 | * @param[in] context_module Module where the prefixes are going to be resolved. |
| 3188 | * @param[in] uniques Sized array list of unique statements. |
| 3189 | * @param[in] list Compiled list where the uniques are supposed to be resolved and stored. |
| 3190 | * @return LY_ERR value. |
| 3191 | */ |
| 3192 | static LY_ERR |
| 3193 | lys_compile_node_list_unique(struct lysc_ctx *ctx, struct lys_module *context_module, const char **uniques, struct lysc_node_list *list) |
| 3194 | { |
| 3195 | LY_ERR ret = LY_SUCCESS; |
| 3196 | struct lysc_node_leaf **key, ***unique; |
| 3197 | const char *keystr, *delim; |
| 3198 | size_t len; |
| 3199 | unsigned int v; |
| 3200 | int config; |
| 3201 | |
| 3202 | for (v = 0; v < LY_ARRAY_SIZE(uniques); ++v) { |
| 3203 | config = -1; |
| 3204 | LY_ARRAY_NEW_RET(ctx->ctx, list->uniques, unique, LY_EMEM); |
| 3205 | keystr = uniques[v]; |
| 3206 | while (keystr) { |
| 3207 | delim = strpbrk(keystr, " \t\n"); |
| 3208 | if (delim) { |
| 3209 | len = delim - keystr; |
| 3210 | while (isspace(*delim)) { |
| 3211 | ++delim; |
| 3212 | } |
| 3213 | } else { |
| 3214 | len = strlen(keystr); |
| 3215 | } |
| 3216 | |
| 3217 | /* unique node must be present */ |
| 3218 | LY_ARRAY_NEW_RET(ctx->ctx, *unique, key, LY_EMEM); |
| 3219 | ret = lys_resolve_schema_nodeid(ctx, keystr, len, (struct lysc_node*)list, context_module, LYS_LEAF, 0, (const struct lysc_node**)key); |
| 3220 | if (ret != LY_SUCCESS) { |
| 3221 | if (ret == LY_EDENIED) { |
| 3222 | LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_REFERENCE, |
| 3223 | "Unique's descendant-schema-nodeid \"%.*s\" refers to a %s node instead of a leaf.", |
| 3224 | len, keystr, lys_nodetype2str((*key)->nodetype)); |
| 3225 | } |
| 3226 | return LY_EVALID; |
| 3227 | } |
| 3228 | |
| 3229 | /* all referenced leafs must be of the same config type */ |
| 3230 | if (config != -1 && ((((*key)->flags & LYS_CONFIG_W) && config == 0) || (((*key)->flags & LYS_CONFIG_R) && config == 1))) { |
| 3231 | LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SEMANTICS, |
| 3232 | "Unique statement \"%s\" refers to leafs with different config type.", uniques[v]); |
| 3233 | return LY_EVALID; |
| 3234 | } else if ((*key)->flags & LYS_CONFIG_W) { |
| 3235 | config = 1; |
| 3236 | } else { /* LYS_CONFIG_R */ |
| 3237 | config = 0; |
| 3238 | } |
| 3239 | |
| 3240 | /* check status */ |
| 3241 | LY_CHECK_RET(lysc_check_status(ctx, list->flags, list->module, list->name, |
| 3242 | (*key)->flags, (*key)->module, (*key)->name)); |
| 3243 | |
| 3244 | /* mark leaf as unique */ |
| 3245 | (*key)->flags |= LYS_UNIQUE; |
| 3246 | |
| 3247 | /* next unique value in line */ |
| 3248 | keystr = delim; |
| 3249 | } |
| 3250 | /* next unique definition */ |
| 3251 | } |
| 3252 | |
| 3253 | return LY_SUCCESS; |
| 3254 | } |
| 3255 | |
| 3256 | /** |
Radek Krejci | 9bb94eb | 2018-12-04 16:48:35 +0100 | [diff] [blame] | 3257 | * @brief Compile parsed list node information. |
| 3258 | * @param[in] ctx Compile context |
| 3259 | * @param[in] node_p Parsed list node. |
| 3260 | * @param[in] options Various options to modify compiler behavior, see [compile flags](@ref scflags). |
| 3261 | * @param[in,out] node Pre-prepared structure from lys_compile_node() with filled generic node information |
| 3262 | * is enriched with the list-specific information. |
| 3263 | * @return LY_ERR value - LY_SUCCESS or LY_EVALID. |
| 3264 | */ |
| 3265 | static LY_ERR |
| 3266 | lys_compile_node_list(struct lysc_ctx *ctx, struct lysp_node *node_p, int options, struct lysc_node *node) |
| 3267 | { |
| 3268 | struct lysp_node_list *list_p = (struct lysp_node_list*)node_p; |
| 3269 | struct lysc_node_list *list = (struct lysc_node_list*)node; |
| 3270 | struct lysp_node *child_p; |
Radek Krejci | 7af6424 | 2019-02-18 13:07:53 +0100 | [diff] [blame] | 3271 | struct lysc_node_leaf **key; |
Radek Krejci | 9bb94eb | 2018-12-04 16:48:35 +0100 | [diff] [blame] | 3272 | size_t len; |
Radek Krejci | 7af6424 | 2019-02-18 13:07:53 +0100 | [diff] [blame] | 3273 | unsigned int u; |
Radek Krejci | 9bb94eb | 2018-12-04 16:48:35 +0100 | [diff] [blame] | 3274 | const char *keystr, *delim; |
Radek Krejci | 9bb94eb | 2018-12-04 16:48:35 +0100 | [diff] [blame] | 3275 | LY_ERR ret = LY_SUCCESS; |
| 3276 | |
Radek Krejci | 9bb94eb | 2018-12-04 16:48:35 +0100 | [diff] [blame] | 3277 | list->min = list_p->min; |
Radek Krejci | fe90963 | 2019-02-12 15:34:42 +0100 | [diff] [blame] | 3278 | if (list->min) { |
| 3279 | list->flags |= LYS_MAND_TRUE; |
| 3280 | } |
Radek Krejci | 9bb94eb | 2018-12-04 16:48:35 +0100 | [diff] [blame] | 3281 | list->max = list_p->max ? list_p->max : (uint32_t)-1; |
| 3282 | |
| 3283 | LY_LIST_FOR(list_p->child, child_p) { |
Radek Krejci | b1b5915 | 2019-01-07 13:21:56 +0100 | [diff] [blame] | 3284 | LY_CHECK_RET(lys_compile_node(ctx, child_p, options, node, 0)); |
Radek Krejci | 9bb94eb | 2018-12-04 16:48:35 +0100 | [diff] [blame] | 3285 | } |
| 3286 | |
| 3287 | COMPILE_ARRAY_GOTO(ctx, list_p->musts, list->musts, options, u, lys_compile_must, ret, done); |
| 3288 | |
| 3289 | /* keys */ |
| 3290 | if ((list->flags & LYS_CONFIG_W) && (!list_p->key || !list_p->key[0])) { |
| 3291 | LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SEMANTICS, "Missing key in list representing configuration data."); |
| 3292 | return LY_EVALID; |
| 3293 | } |
| 3294 | |
| 3295 | /* find all the keys (must be direct children) */ |
| 3296 | keystr = list_p->key; |
| 3297 | while (keystr) { |
| 3298 | delim = strpbrk(keystr, " \t\n"); |
| 3299 | if (delim) { |
| 3300 | len = delim - keystr; |
| 3301 | while (isspace(*delim)) { |
| 3302 | ++delim; |
| 3303 | } |
| 3304 | } else { |
| 3305 | len = strlen(keystr); |
| 3306 | } |
| 3307 | |
| 3308 | /* key node must be present */ |
| 3309 | LY_ARRAY_NEW_RET(ctx->ctx, list->keys, key, LY_EMEM); |
| 3310 | *key = (struct lysc_node_leaf*)lys_child(node, node->module, keystr, len, LYS_LEAF, LYS_GETNEXT_NOCHOICE | LYS_GETNEXT_NOSTATECHECK); |
| 3311 | if (!(*key)) { |
| 3312 | LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_REFERENCE, |
| 3313 | "The list's key \"%.*s\" not found.", len, keystr); |
| 3314 | return LY_EVALID; |
| 3315 | } |
| 3316 | /* keys must be unique */ |
| 3317 | for(u = 0; u < LY_ARRAY_SIZE(list->keys) - 1; ++u) { |
| 3318 | if (*key == list->keys[u]) { |
| 3319 | LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SEMANTICS, |
| 3320 | "Duplicated key identifier \"%.*s\".", len, keystr); |
| 3321 | return LY_EVALID; |
| 3322 | } |
| 3323 | } |
| 3324 | /* key must have the same config flag as the list itself */ |
| 3325 | if ((list->flags & LYS_CONFIG_MASK) != ((*key)->flags & LYS_CONFIG_MASK)) { |
| 3326 | LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SEMANTICS, "Key of the configuration list must not be status leaf."); |
| 3327 | return LY_EVALID; |
| 3328 | } |
Radek Krejci | 0bcdaed | 2019-01-10 10:21:34 +0100 | [diff] [blame] | 3329 | if (ctx->mod_def->version < LYS_VERSION_1_1) { |
Radek Krejci | 9bb94eb | 2018-12-04 16:48:35 +0100 | [diff] [blame] | 3330 | /* YANG 1.0 denies key to be of empty type */ |
| 3331 | if ((*key)->type->basetype == LY_TYPE_EMPTY) { |
| 3332 | LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SEMANTICS, |
| 3333 | "Key of a list can be of type \"empty\" only in YANG 1.1 modules."); |
| 3334 | return LY_EVALID; |
| 3335 | } |
| 3336 | } else { |
| 3337 | /* when and if-feature are illegal on list keys */ |
| 3338 | if ((*key)->when) { |
| 3339 | LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SEMANTICS, |
| 3340 | "List's key \"%s\" must not have any \"when\" statement.", (*key)->name); |
| 3341 | return LY_EVALID; |
| 3342 | } |
| 3343 | if ((*key)->iffeatures) { |
| 3344 | LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SEMANTICS, |
| 3345 | "List's key \"%s\" must not have any \"if-feature\" statement.", (*key)->name); |
| 3346 | return LY_EVALID; |
| 3347 | } |
| 3348 | } |
Radek Krejci | 76b3e96 | 2018-12-14 17:01:25 +0100 | [diff] [blame] | 3349 | |
| 3350 | /* check status */ |
| 3351 | LY_CHECK_RET(lysc_check_status(ctx, list->flags, list->module, list->name, |
| 3352 | (*key)->flags, (*key)->module, (*key)->name)); |
| 3353 | |
Radek Krejci | 9bb94eb | 2018-12-04 16:48:35 +0100 | [diff] [blame] | 3354 | /* ignore default values of the key */ |
| 3355 | if ((*key)->dflt) { |
| 3356 | lydict_remove(ctx->ctx, (*key)->dflt); |
| 3357 | (*key)->dflt = NULL; |
| 3358 | } |
| 3359 | /* mark leaf as key */ |
| 3360 | (*key)->flags |= LYS_KEY; |
| 3361 | |
| 3362 | /* next key value */ |
| 3363 | keystr = delim; |
| 3364 | } |
| 3365 | |
| 3366 | /* uniques */ |
| 3367 | if (list_p->uniques) { |
Radek Krejci | 7af6424 | 2019-02-18 13:07:53 +0100 | [diff] [blame] | 3368 | LY_CHECK_RET(lys_compile_node_list_unique(ctx, list->module, list_p->uniques, list)); |
Radek Krejci | 9bb94eb | 2018-12-04 16:48:35 +0100 | [diff] [blame] | 3369 | } |
| 3370 | |
| 3371 | //COMPILE_ARRAY_GOTO(ctx, list_p->actions, list->actions, options, u, lys_compile_action, ret, done); |
| 3372 | //COMPILE_ARRAY_GOTO(ctx, list_p->notifs, list->notifs, options, u, lys_compile_notif, ret, done); |
| 3373 | |
| 3374 | done: |
| 3375 | return ret; |
| 3376 | } |
| 3377 | |
Radek Krejci | b56c750 | 2019-02-13 14:19:54 +0100 | [diff] [blame] | 3378 | /** |
| 3379 | * @brief Do some checks and set the default choice's case. |
| 3380 | * |
| 3381 | * Selects (and stores into ::lysc_node_choice#dflt) the default case and set LYS_SET_DFLT flag on it. |
| 3382 | * |
| 3383 | * @param[in] ctx Compile context. |
| 3384 | * @param[in] dflt Name of the default branch. Can contain even the prefix, but it make sense only in case it is the prefix of the module itself, |
| 3385 | * not the reference to the imported module. |
| 3386 | * @param[in,out] ch The compiled choice node, its dflt member is filled to point to the default case node of the choice. |
| 3387 | * @return LY_ERR value. |
| 3388 | */ |
Radek Krejci | 76b3e96 | 2018-12-14 17:01:25 +0100 | [diff] [blame] | 3389 | static LY_ERR |
| 3390 | lys_compile_node_choice_dflt(struct lysc_ctx *ctx, const char *dflt, struct lysc_node_choice *ch) |
| 3391 | { |
| 3392 | struct lysc_node *iter, *node = (struct lysc_node*)ch; |
| 3393 | const char *prefix = NULL, *name; |
| 3394 | size_t prefix_len = 0; |
| 3395 | |
| 3396 | /* could use lys_parse_nodeid(), but it checks syntax which is already done in this case by the parsers */ |
| 3397 | name = strchr(dflt, ':'); |
| 3398 | if (name) { |
| 3399 | prefix = dflt; |
| 3400 | prefix_len = name - prefix; |
| 3401 | ++name; |
| 3402 | } else { |
| 3403 | name = dflt; |
| 3404 | } |
Radek Krejci | 0bcdaed | 2019-01-10 10:21:34 +0100 | [diff] [blame] | 3405 | if (prefix && (strncmp(prefix, node->module->prefix, prefix_len) || node->module->prefix[prefix_len] != '\0')) { |
Radek Krejci | 76b3e96 | 2018-12-14 17:01:25 +0100 | [diff] [blame] | 3406 | /* prefixed default case make sense only for the prefix of the schema itself */ |
| 3407 | LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_REFERENCE, |
| 3408 | "Invalid default case referencing a case from different YANG module (by prefix \"%.*s\").", |
| 3409 | prefix_len, prefix); |
| 3410 | return LY_EVALID; |
| 3411 | } |
| 3412 | ch->dflt = (struct lysc_node_case*)lys_child(node, node->module, name, 0, LYS_CASE, LYS_GETNEXT_NOSTATECHECK | LYS_GETNEXT_WITHCASE); |
| 3413 | if (!ch->dflt) { |
| 3414 | LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SEMANTICS, |
| 3415 | "Default case \"%s\" not found.", dflt); |
| 3416 | return LY_EVALID; |
| 3417 | } |
| 3418 | /* no mandatory nodes directly under the default case */ |
| 3419 | LY_LIST_FOR(ch->dflt->child, iter) { |
Radek Krejci | fe13da4 | 2019-02-15 14:51:01 +0100 | [diff] [blame] | 3420 | if (iter->parent != (struct lysc_node*)ch->dflt) { |
| 3421 | break; |
| 3422 | } |
Radek Krejci | 76b3e96 | 2018-12-14 17:01:25 +0100 | [diff] [blame] | 3423 | if (iter->flags & LYS_MAND_TRUE) { |
| 3424 | LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SEMANTICS, |
| 3425 | "Mandatory node \"%s\" under the default case \"%s\".", iter->name, dflt); |
| 3426 | return LY_EVALID; |
| 3427 | } |
| 3428 | } |
Radek Krejci | 01342af | 2019-01-03 15:18:08 +0100 | [diff] [blame] | 3429 | ch->dflt->flags |= LYS_SET_DFLT; |
Radek Krejci | 76b3e96 | 2018-12-14 17:01:25 +0100 | [diff] [blame] | 3430 | return LY_SUCCESS; |
| 3431 | } |
| 3432 | |
Radek Krejci | ccd20f1 | 2019-02-15 14:12:27 +0100 | [diff] [blame] | 3433 | static LY_ERR |
| 3434 | lys_compile_deviation_set_choice_dflt(struct lysc_ctx *ctx, const char *devnodeid, const char *dflt, struct lysc_node_choice *ch) |
| 3435 | { |
| 3436 | struct lys_module *mod; |
| 3437 | const char *prefix = NULL, *name; |
| 3438 | size_t prefix_len = 0; |
| 3439 | struct lysc_node_case *cs; |
| 3440 | struct lysc_node *node; |
| 3441 | |
| 3442 | /* could use lys_parse_nodeid(), but it checks syntax which is already done in this case by the parsers */ |
| 3443 | name = strchr(dflt, ':'); |
| 3444 | if (name) { |
| 3445 | prefix = dflt; |
| 3446 | prefix_len = name - prefix; |
| 3447 | ++name; |
| 3448 | } else { |
| 3449 | name = dflt; |
| 3450 | } |
| 3451 | /* this code is for deviation, so we allow as the default case even the cases from other modules than the choice (augments) */ |
| 3452 | if (prefix) { |
| 3453 | if (!(mod = lys_module_find_prefix(ctx->mod, prefix, prefix_len))) { |
| 3454 | LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_REFERENCE, |
| 3455 | "Invalid deviation (%s) adding \"default\" property \"%s\" of choice. " |
| 3456 | "The prefix does not match any imported module of the deviation module.", |
| 3457 | devnodeid, dflt); |
| 3458 | return LY_EVALID; |
| 3459 | } |
| 3460 | } else { |
| 3461 | mod = ctx->mod; |
| 3462 | } |
| 3463 | /* get the default case */ |
| 3464 | cs = (struct lysc_node_case*)lys_child((struct lysc_node*)ch, mod, name, 0, LYS_CASE, LYS_GETNEXT_NOSTATECHECK | LYS_GETNEXT_WITHCASE); |
| 3465 | if (!cs) { |
| 3466 | LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_REFERENCE, |
| 3467 | "Invalid deviation (%s) adding \"default\" property \"%s\" of choice - the specified case does not exists.", |
| 3468 | devnodeid, dflt); |
| 3469 | return LY_EVALID; |
| 3470 | } |
| 3471 | |
| 3472 | /* check that there is no mandatory node */ |
| 3473 | LY_LIST_FOR(cs->child, node) { |
Radek Krejci | fe13da4 | 2019-02-15 14:51:01 +0100 | [diff] [blame] | 3474 | if (node->parent != (struct lysc_node*)cs) { |
| 3475 | break; |
| 3476 | } |
Radek Krejci | ccd20f1 | 2019-02-15 14:12:27 +0100 | [diff] [blame] | 3477 | if (node->flags & LYS_MAND_TRUE) { |
| 3478 | LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SEMANTICS, |
| 3479 | "Invalid deviation (%s) adding \"default\" property \"%s\" of choice - " |
| 3480 | "mandatory node \"%s\" under the default case.", devnodeid, dflt, node->name); |
| 3481 | return LY_EVALID; |
| 3482 | } |
| 3483 | } |
| 3484 | |
| 3485 | /* set the default case in choice */ |
| 3486 | ch->dflt = cs; |
| 3487 | cs->flags |= LYS_SET_DFLT; |
| 3488 | |
| 3489 | return LY_SUCCESS; |
| 3490 | } |
| 3491 | |
Radek Krejci | 9bb94eb | 2018-12-04 16:48:35 +0100 | [diff] [blame] | 3492 | /** |
Radek Krejci | 056d0a8 | 2018-12-06 16:57:25 +0100 | [diff] [blame] | 3493 | * @brief Compile parsed choice node information. |
| 3494 | * @param[in] ctx Compile context |
| 3495 | * @param[in] node_p Parsed choice node. |
| 3496 | * @param[in] options Various options to modify compiler behavior, see [compile flags](@ref scflags). |
| 3497 | * @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] | 3498 | * is enriched with the choice-specific information. |
Radek Krejci | 056d0a8 | 2018-12-06 16:57:25 +0100 | [diff] [blame] | 3499 | * @return LY_ERR value - LY_SUCCESS or LY_EVALID. |
| 3500 | */ |
| 3501 | static LY_ERR |
| 3502 | lys_compile_node_choice(struct lysc_ctx *ctx, struct lysp_node *node_p, int options, struct lysc_node *node) |
| 3503 | { |
| 3504 | struct lysp_node_choice *ch_p = (struct lysp_node_choice*)node_p; |
| 3505 | struct lysc_node_choice *ch = (struct lysc_node_choice*)node; |
| 3506 | struct lysp_node *child_p, *case_child_p; |
Radek Krejci | a9026eb | 2018-12-12 16:04:47 +0100 | [diff] [blame] | 3507 | struct lys_module; |
Radek Krejci | 056d0a8 | 2018-12-06 16:57:25 +0100 | [diff] [blame] | 3508 | LY_ERR ret = LY_SUCCESS; |
| 3509 | |
Radek Krejci | 056d0a8 | 2018-12-06 16:57:25 +0100 | [diff] [blame] | 3510 | LY_LIST_FOR(ch_p->child, child_p) { |
| 3511 | if (child_p->nodetype == LYS_CASE) { |
| 3512 | LY_LIST_FOR(((struct lysp_node_case*)child_p)->child, case_child_p) { |
Radek Krejci | b1b5915 | 2019-01-07 13:21:56 +0100 | [diff] [blame] | 3513 | LY_CHECK_RET(lys_compile_node(ctx, case_child_p, options, node, 0)); |
Radek Krejci | 056d0a8 | 2018-12-06 16:57:25 +0100 | [diff] [blame] | 3514 | } |
| 3515 | } else { |
Radek Krejci | b1b5915 | 2019-01-07 13:21:56 +0100 | [diff] [blame] | 3516 | LY_CHECK_RET(lys_compile_node(ctx, child_p, options, node, 0)); |
Radek Krejci | 056d0a8 | 2018-12-06 16:57:25 +0100 | [diff] [blame] | 3517 | } |
| 3518 | } |
| 3519 | |
| 3520 | /* default branch */ |
Radek Krejci | a9026eb | 2018-12-12 16:04:47 +0100 | [diff] [blame] | 3521 | if (ch_p->dflt) { |
Radek Krejci | 76b3e96 | 2018-12-14 17:01:25 +0100 | [diff] [blame] | 3522 | 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] | 3523 | } |
Radek Krejci | 056d0a8 | 2018-12-06 16:57:25 +0100 | [diff] [blame] | 3524 | |
Radek Krejci | 9800fb8 | 2018-12-13 14:26:23 +0100 | [diff] [blame] | 3525 | return ret; |
| 3526 | } |
| 3527 | |
| 3528 | /** |
| 3529 | * @brief Compile parsed anydata or anyxml node information. |
| 3530 | * @param[in] ctx Compile context |
| 3531 | * @param[in] node_p Parsed anydata or anyxml node. |
| 3532 | * @param[in] options Various options to modify compiler behavior, see [compile flags](@ref scflags). |
| 3533 | * @param[in,out] node Pre-prepared structure from lys_compile_node() with filled generic node information |
| 3534 | * is enriched with the any-specific information. |
| 3535 | * @return LY_ERR value - LY_SUCCESS or LY_EVALID. |
| 3536 | */ |
| 3537 | static LY_ERR |
| 3538 | lys_compile_node_any(struct lysc_ctx *ctx, struct lysp_node *node_p, int options, struct lysc_node *node) |
| 3539 | { |
| 3540 | struct lysp_node_anydata *any_p = (struct lysp_node_anydata*)node_p; |
| 3541 | struct lysc_node_anydata *any = (struct lysc_node_anydata*)node; |
| 3542 | unsigned int u; |
| 3543 | LY_ERR ret = LY_SUCCESS; |
| 3544 | |
| 3545 | COMPILE_ARRAY_GOTO(ctx, any_p->musts, any->musts, options, u, lys_compile_must, ret, done); |
| 3546 | |
| 3547 | if (any->flags & LYS_CONFIG_W) { |
| 3548 | LOGWRN(ctx->ctx, "Use of %s to define configuration data is not recommended.", |
| 3549 | ly_stmt2str(any->nodetype == LYS_ANYDATA ? YANG_ANYDATA : YANG_ANYXML)); |
| 3550 | } |
Radek Krejci | 056d0a8 | 2018-12-06 16:57:25 +0100 | [diff] [blame] | 3551 | done: |
| 3552 | return ret; |
| 3553 | } |
| 3554 | |
Radek Krejci | b56c750 | 2019-02-13 14:19:54 +0100 | [diff] [blame] | 3555 | /** |
| 3556 | * @brief Compile status information of the given node. |
| 3557 | * |
| 3558 | * To simplify getting status of the node, the flags are set following inheritance rules, so all the nodes |
| 3559 | * has the status correctly set during the compilation. |
| 3560 | * |
| 3561 | * @param[in] ctx Compile context |
| 3562 | * @param[in,out] node Compiled node which status is supposed to be resolved. If the status was set explicitely on the node, it is already set in the |
| 3563 | * flags value and we just check the compatibility with the parent's status value. |
| 3564 | * @param[in] parent_flags Flags of the parent node to check/inherit the status value. |
| 3565 | * @return LY_ERR value. |
| 3566 | */ |
Radek Krejci | 76b3e96 | 2018-12-14 17:01:25 +0100 | [diff] [blame] | 3567 | static LY_ERR |
Radek Krejci | b1b5915 | 2019-01-07 13:21:56 +0100 | [diff] [blame] | 3568 | lys_compile_status(struct lysc_ctx *ctx, struct lysc_node *node, uint16_t parent_flags) |
Radek Krejci | 056d0a8 | 2018-12-06 16:57:25 +0100 | [diff] [blame] | 3569 | { |
Radek Krejci | 056d0a8 | 2018-12-06 16:57:25 +0100 | [diff] [blame] | 3570 | /* status - it is not inherited by specification, but it does not make sense to have |
| 3571 | * current in deprecated or deprecated in obsolete, so we do print warning and inherit status */ |
| 3572 | if (!(node->flags & LYS_STATUS_MASK)) { |
Radek Krejci | b1b5915 | 2019-01-07 13:21:56 +0100 | [diff] [blame] | 3573 | if (parent_flags & (LYS_STATUS_DEPRC | LYS_STATUS_OBSLT)) { |
| 3574 | if ((parent_flags & 0x3) != 0x3) { |
| 3575 | /* do not print the warning when inheriting status from uses - the uses_status value has a special |
| 3576 | * combination of bits (0x3) which marks the uses_status value */ |
| 3577 | LOGWRN(ctx->ctx, "Missing explicit \"%s\" status that was already specified in parent, inheriting.", |
| 3578 | (parent_flags & LYS_STATUS_DEPRC) ? "deprecated" : "obsolete"); |
| 3579 | } |
| 3580 | node->flags |= parent_flags & LYS_STATUS_MASK; |
Radek Krejci | 056d0a8 | 2018-12-06 16:57:25 +0100 | [diff] [blame] | 3581 | } else { |
| 3582 | node->flags |= LYS_STATUS_CURR; |
| 3583 | } |
Radek Krejci | b1b5915 | 2019-01-07 13:21:56 +0100 | [diff] [blame] | 3584 | } else if (parent_flags & LYS_STATUS_MASK) { |
Radek Krejci | b56c750 | 2019-02-13 14:19:54 +0100 | [diff] [blame] | 3585 | /* check status compatibility with the parent */ |
| 3586 | if ((parent_flags & LYS_STATUS_MASK) > (node->flags & LYS_STATUS_MASK)) { |
| 3587 | if (node->flags & LYS_STATUS_CURR) { |
| 3588 | LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SEMANTICS, |
| 3589 | "A \"current\" status is in conflict with the parent's \"%s\" status.", |
| 3590 | (parent_flags & LYS_STATUS_DEPRC) ? "deprecated" : "obsolete"); |
| 3591 | } else { /* LYS_STATUS_DEPRC */ |
| 3592 | LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SEMANTICS, |
| 3593 | "A \"deprecated\" status is in conflict with the parent's \"obsolete\" status."); |
| 3594 | } |
| 3595 | return LY_EVALID; |
| 3596 | } |
Radek Krejci | 056d0a8 | 2018-12-06 16:57:25 +0100 | [diff] [blame] | 3597 | } |
| 3598 | return LY_SUCCESS; |
| 3599 | } |
| 3600 | |
Radek Krejci | b56c750 | 2019-02-13 14:19:54 +0100 | [diff] [blame] | 3601 | /** |
| 3602 | * @brief Check uniqness of the node/action/notification name. |
| 3603 | * |
| 3604 | * Data nodes, actions/RPCs and Notifications are stored separately (in distinguish lists) in the schema |
| 3605 | * structures, but they share the namespace so we need to check their name collisions. |
| 3606 | * |
| 3607 | * @param[in] ctx Compile context. |
| 3608 | * @param[in] children List (linked list) of data nodes to go through. |
| 3609 | * @param[in] actions List (sized array) of actions or RPCs to go through. |
| 3610 | * @param[in] notifs List (sized array) of Notifications to go through. |
| 3611 | * @param[in] name Name of the item to find in the given lists. |
| 3612 | * @param[in] exclude Pointer to an object to exclude from the name checking - for the case that the object |
| 3613 | * with the @p name being checked is already inserted into one of the list so we need to skip it when searching for duplicity. |
| 3614 | * @return LY_SUCCESS in case of unique name, LY_EEXIST otherwise. |
| 3615 | */ |
Radek Krejci | 056d0a8 | 2018-12-06 16:57:25 +0100 | [diff] [blame] | 3616 | static LY_ERR |
| 3617 | lys_compile_node_uniqness(struct lysc_ctx *ctx, const struct lysc_node *children, |
| 3618 | const struct lysc_action *actions, const struct lysc_notif *notifs, |
| 3619 | const char *name, void *exclude) |
| 3620 | { |
| 3621 | const struct lysc_node *iter; |
| 3622 | unsigned int u; |
| 3623 | |
| 3624 | LY_LIST_FOR(children, iter) { |
Radek Krejci | 95710c9 | 2019-02-11 15:49:55 +0100 | [diff] [blame] | 3625 | if (iter != exclude && iter->module == ctx->mod && !strcmp(name, iter->name)) { |
Radek Krejci | 056d0a8 | 2018-12-06 16:57:25 +0100 | [diff] [blame] | 3626 | goto error; |
| 3627 | } |
| 3628 | } |
| 3629 | LY_ARRAY_FOR(actions, u) { |
Radek Krejci | 95710c9 | 2019-02-11 15:49:55 +0100 | [diff] [blame] | 3630 | if (&actions[u] != exclude && actions[u].module == ctx->mod && !strcmp(name, actions[u].name)) { |
Radek Krejci | 056d0a8 | 2018-12-06 16:57:25 +0100 | [diff] [blame] | 3631 | goto error; |
| 3632 | } |
| 3633 | } |
| 3634 | LY_ARRAY_FOR(notifs, u) { |
Radek Krejci | 95710c9 | 2019-02-11 15:49:55 +0100 | [diff] [blame] | 3635 | if (¬ifs[u] != exclude && notifs[u].module == ctx->mod && !strcmp(name, notifs[u].name)) { |
Radek Krejci | 056d0a8 | 2018-12-06 16:57:25 +0100 | [diff] [blame] | 3636 | goto error; |
| 3637 | } |
| 3638 | } |
| 3639 | return LY_SUCCESS; |
| 3640 | error: |
| 3641 | LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LY_VCODE_DUPIDENT, name, "data definition"); |
| 3642 | return LY_EEXIST; |
| 3643 | } |
| 3644 | |
| 3645 | /** |
| 3646 | * @brief Connect the node into the siblings list and check its name uniqueness. |
| 3647 | * |
| 3648 | * @param[in] ctx Compile context |
| 3649 | * @param[in] parent Parent node holding the children list, in case of node from a choice's case, |
| 3650 | * the choice itself is expected instead of a specific case node. |
| 3651 | * @param[in] node Schema node to connect into the list. |
| 3652 | * @return LY_ERR value - LY_SUCCESS or LY_EEXIST. |
| 3653 | */ |
| 3654 | static LY_ERR |
| 3655 | lys_compile_node_connect(struct lysc_ctx *ctx, struct lysc_node *parent, struct lysc_node *node) |
| 3656 | { |
| 3657 | struct lysc_node **children; |
| 3658 | |
| 3659 | if (node->nodetype == LYS_CASE) { |
| 3660 | children = (struct lysc_node**)&((struct lysc_node_choice*)parent)->cases; |
| 3661 | } else { |
| 3662 | children = lysc_node_children_p(parent); |
| 3663 | } |
| 3664 | if (children) { |
| 3665 | if (!(*children)) { |
| 3666 | /* first child */ |
| 3667 | *children = node; |
| 3668 | } else if (*children != node) { |
| 3669 | /* by the condition in previous branch we cover the choice/case children |
| 3670 | * - the children list is shared by the choice and the the first case, in addition |
| 3671 | * the first child of each case must be referenced from the case node. So the node is |
| 3672 | * actually always already inserted in case it is the first children - so here such |
| 3673 | * a situation actually corresponds to the first branch */ |
| 3674 | /* insert at the end of the parent's children list */ |
| 3675 | (*children)->prev->next = node; |
| 3676 | node->prev = (*children)->prev; |
| 3677 | (*children)->prev = node; |
| 3678 | |
| 3679 | /* check the name uniqueness */ |
| 3680 | if (lys_compile_node_uniqness(ctx, *children, lysc_node_actions(parent), |
| 3681 | lysc_node_notifs(parent), node->name, node)) { |
| 3682 | return LY_EEXIST; |
| 3683 | } |
| 3684 | } |
| 3685 | } |
| 3686 | return LY_SUCCESS; |
| 3687 | } |
| 3688 | |
Radek Krejci | 95710c9 | 2019-02-11 15:49:55 +0100 | [diff] [blame] | 3689 | /** |
Radek Krejci | b56c750 | 2019-02-13 14:19:54 +0100 | [diff] [blame] | 3690 | * @brief Get the XPath context node for the given schema node. |
| 3691 | * @param[in] start The schema node where the XPath expression appears. |
| 3692 | * @return The context node to evaluate XPath expression in given schema node. |
| 3693 | * @return NULL in case the context node is the root node. |
| 3694 | */ |
| 3695 | static struct lysc_node * |
| 3696 | lysc_xpath_context(struct lysc_node *start) |
| 3697 | { |
| 3698 | for (; start && !(start->nodetype & (LYS_CONTAINER | LYS_LEAF | LYS_LEAFLIST | LYS_LIST | LYS_ANYDATA | LYS_ACTION | LYS_NOTIF)); |
| 3699 | start = start->parent); |
| 3700 | return start; |
| 3701 | } |
| 3702 | |
| 3703 | /** |
| 3704 | * @brief Prepare the case structure in choice node for the new data node. |
| 3705 | * |
| 3706 | * 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 |
| 3707 | * created in the choice when the first child was processed. |
| 3708 | * |
| 3709 | * @param[in] ctx Compile context. |
Radek Krejci | 95710c9 | 2019-02-11 15:49:55 +0100 | [diff] [blame] | 3710 | * @param[in] node_p Node image from the parsed tree. If the case is explicit, it is the LYS_CASE node, but in case of implicit case, |
| 3711 | * it is the LYS_CHOICE node or LYS_AUGMENT node. |
Radek Krejci | b56c750 | 2019-02-13 14:19:54 +0100 | [diff] [blame] | 3712 | * @param[in] options Various options to modify compiler behavior, see [compile flags](@ref scflags). |
| 3713 | * @param[in] ch The compiled choice structure where the new case structures are created (if needed). |
| 3714 | * @param[in] child The new data node being part of a case (no matter if explicit or implicit). |
| 3715 | * @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, |
| 3716 | * 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] | 3717 | */ |
Radek Krejci | 056d0a8 | 2018-12-06 16:57:25 +0100 | [diff] [blame] | 3718 | static struct lysc_node_case* |
| 3719 | lys_compile_node_case(struct lysc_ctx *ctx, struct lysp_node *node_p, int options, struct lysc_node_choice *ch, struct lysc_node *child) |
| 3720 | { |
| 3721 | struct lysc_node *iter; |
| 3722 | struct lysc_node_case *cs; |
Radek Krejci | 00b874b | 2019-02-12 10:54:50 +0100 | [diff] [blame] | 3723 | struct lysc_when **when; |
Radek Krejci | 056d0a8 | 2018-12-06 16:57:25 +0100 | [diff] [blame] | 3724 | unsigned int u; |
| 3725 | LY_ERR ret; |
| 3726 | |
Radek Krejci | 95710c9 | 2019-02-11 15:49:55 +0100 | [diff] [blame] | 3727 | #define UNIQUE_CHECK(NAME, MOD) \ |
Radek Krejci | 056d0a8 | 2018-12-06 16:57:25 +0100 | [diff] [blame] | 3728 | LY_LIST_FOR((struct lysc_node*)ch->cases, iter) { \ |
Radek Krejci | 95710c9 | 2019-02-11 15:49:55 +0100 | [diff] [blame] | 3729 | if (iter->module == MOD && !strcmp(iter->name, NAME)) { \ |
Radek Krejci | 056d0a8 | 2018-12-06 16:57:25 +0100 | [diff] [blame] | 3730 | LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LY_VCODE_DUPIDENT, NAME, "case"); \ |
| 3731 | return NULL; \ |
| 3732 | } \ |
| 3733 | } |
| 3734 | |
Radek Krejci | 95710c9 | 2019-02-11 15:49:55 +0100 | [diff] [blame] | 3735 | if (node_p->nodetype == LYS_CHOICE || node_p->nodetype == LYS_AUGMENT) { |
| 3736 | UNIQUE_CHECK(child->name, ctx->mod); |
Radek Krejci | 056d0a8 | 2018-12-06 16:57:25 +0100 | [diff] [blame] | 3737 | |
| 3738 | /* we have to add an implicit case node into the parent choice */ |
| 3739 | cs = calloc(1, sizeof(struct lysc_node_case)); |
| 3740 | DUP_STRING(ctx->ctx, child->name, cs->name); |
| 3741 | cs->flags = ch->flags & LYS_STATUS_MASK; |
Radek Krejci | 95710c9 | 2019-02-11 15:49:55 +0100 | [diff] [blame] | 3742 | } else if (node_p->nodetype == LYS_CASE) { |
Radek Krejci | 056d0a8 | 2018-12-06 16:57:25 +0100 | [diff] [blame] | 3743 | if (ch->cases && (node_p == ch->cases->prev->sp)) { |
| 3744 | /* the case is already present since the child is not its first children */ |
| 3745 | return (struct lysc_node_case*)ch->cases->prev; |
| 3746 | } |
Radek Krejci | 95710c9 | 2019-02-11 15:49:55 +0100 | [diff] [blame] | 3747 | UNIQUE_CHECK(node_p->name, ctx->mod); |
Radek Krejci | 056d0a8 | 2018-12-06 16:57:25 +0100 | [diff] [blame] | 3748 | |
| 3749 | /* explicit parent case is not present (this is its first child) */ |
| 3750 | cs = calloc(1, sizeof(struct lysc_node_case)); |
| 3751 | DUP_STRING(ctx->ctx, node_p->name, cs->name); |
| 3752 | cs->flags = LYS_STATUS_MASK & node_p->flags; |
| 3753 | cs->sp = node_p; |
| 3754 | |
Radek Krejci | b1b5915 | 2019-01-07 13:21:56 +0100 | [diff] [blame] | 3755 | /* check the case's status (don't need to solve uses_status since case statement cannot be directly in grouping statement */ |
| 3756 | LY_CHECK_RET(lys_compile_status(ctx, (struct lysc_node*)cs, ch->flags), NULL); |
Radek Krejci | 00b874b | 2019-02-12 10:54:50 +0100 | [diff] [blame] | 3757 | |
| 3758 | if (node_p->when) { |
| 3759 | LY_ARRAY_NEW_GOTO(ctx->ctx, cs->when, when, ret, error); |
| 3760 | ret = lys_compile_when(ctx, node_p->when, options, when); |
| 3761 | LY_CHECK_GOTO(ret, error); |
Radek Krejci | b56c750 | 2019-02-13 14:19:54 +0100 | [diff] [blame] | 3762 | (*when)->context = lysc_xpath_context(ch->parent); |
Radek Krejci | 00b874b | 2019-02-12 10:54:50 +0100 | [diff] [blame] | 3763 | } |
Radek Krejci | 056d0a8 | 2018-12-06 16:57:25 +0100 | [diff] [blame] | 3764 | COMPILE_ARRAY_GOTO(ctx, node_p->iffeatures, cs->iffeatures, options, u, lys_compile_iffeature, ret, error); |
Radek Krejci | 95710c9 | 2019-02-11 15:49:55 +0100 | [diff] [blame] | 3765 | } else { |
| 3766 | LOGINT(ctx->ctx); |
| 3767 | goto error; |
Radek Krejci | 056d0a8 | 2018-12-06 16:57:25 +0100 | [diff] [blame] | 3768 | } |
| 3769 | cs->module = ctx->mod; |
| 3770 | cs->prev = (struct lysc_node*)cs; |
| 3771 | cs->nodetype = LYS_CASE; |
| 3772 | lys_compile_node_connect(ctx, (struct lysc_node*)ch, (struct lysc_node*)cs); |
| 3773 | cs->parent = (struct lysc_node*)ch; |
| 3774 | cs->child = child; |
| 3775 | |
| 3776 | return cs; |
| 3777 | error: |
| 3778 | return NULL; |
| 3779 | |
| 3780 | #undef UNIQUE_CHECK |
| 3781 | } |
| 3782 | |
Radek Krejci | b56c750 | 2019-02-13 14:19:54 +0100 | [diff] [blame] | 3783 | /** |
Radek Krejci | 93dcc39 | 2019-02-19 10:43:38 +0100 | [diff] [blame] | 3784 | * @brief Apply refined or deviated config to the target node. |
Radek Krejci | b56c750 | 2019-02-13 14:19:54 +0100 | [diff] [blame] | 3785 | * |
| 3786 | * @param[in] ctx Compile context. |
Radek Krejci | 93dcc39 | 2019-02-19 10:43:38 +0100 | [diff] [blame] | 3787 | * @param[in] node Target node where the config is supposed to be changed. |
| 3788 | * @param[in] config_flag Node's config flag to be applied to the @p node. |
| 3789 | * @param[in] nodeid Schema nodeid used to identify target of refine/deviation (for logging). |
Radek Krejci | b56c750 | 2019-02-13 14:19:54 +0100 | [diff] [blame] | 3790 | * @param[in] inheriting Flag (inverted) to check the refined config compatibility with the node's parent. This is |
| 3791 | * done only on the node for which the refine was created. The function applies also recursively to apply the config change |
Radek Krejci | 93dcc39 | 2019-02-19 10:43:38 +0100 | [diff] [blame] | 3792 | * to the complete subtree (except the subnodes with explicit config set) and the test is not needed for the subnodes. |
| 3793 | * @param[in] refine_flag Flag to distinguish if the change is caused by refine (flag set) or deviation (for logging). |
Radek Krejci | b56c750 | 2019-02-13 14:19:54 +0100 | [diff] [blame] | 3794 | * @return LY_ERR value. |
| 3795 | */ |
Radek Krejci | 76b3e96 | 2018-12-14 17:01:25 +0100 | [diff] [blame] | 3796 | static LY_ERR |
Radek Krejci | 93dcc39 | 2019-02-19 10:43:38 +0100 | [diff] [blame] | 3797 | lys_compile_change_config(struct lysc_ctx *ctx, struct lysc_node *node, uint16_t config_flag, |
| 3798 | const char *nodeid, int inheriting, int refine_flag) |
Radek Krejci | 76b3e96 | 2018-12-14 17:01:25 +0100 | [diff] [blame] | 3799 | { |
| 3800 | struct lysc_node *child; |
Radek Krejci | 93dcc39 | 2019-02-19 10:43:38 +0100 | [diff] [blame] | 3801 | uint16_t config = config_flag & LYS_CONFIG_MASK; |
Radek Krejci | 76b3e96 | 2018-12-14 17:01:25 +0100 | [diff] [blame] | 3802 | |
| 3803 | if (config == (node->flags & LYS_CONFIG_MASK)) { |
| 3804 | /* nothing to do */ |
| 3805 | return LY_SUCCESS; |
| 3806 | } |
| 3807 | |
| 3808 | if (!inheriting) { |
Radek Krejci | 93dcc39 | 2019-02-19 10:43:38 +0100 | [diff] [blame] | 3809 | /* explicit change */ |
Radek Krejci | 76b3e96 | 2018-12-14 17:01:25 +0100 | [diff] [blame] | 3810 | if (config == LYS_CONFIG_W && node->parent && (node->parent->flags & LYS_CONFIG_R)) { |
| 3811 | LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SEMANTICS, |
Radek Krejci | 93dcc39 | 2019-02-19 10:43:38 +0100 | [diff] [blame] | 3812 | "Invalid %s of config in \"%s\" - configuration node cannot be child of any state data node.", |
| 3813 | refine_flag ? "refine" : "deviation", nodeid); |
Radek Krejci | 76b3e96 | 2018-12-14 17:01:25 +0100 | [diff] [blame] | 3814 | return LY_EVALID; |
| 3815 | } |
Radek Krejci | 93dcc39 | 2019-02-19 10:43:38 +0100 | [diff] [blame] | 3816 | node->flags |= LYS_SET_CONFIG; |
| 3817 | } else { |
| 3818 | if (node->flags & LYS_SET_CONFIG) { |
| 3819 | if ((node->flags & LYS_CONFIG_W) && (config == LYS_CONFIG_R)) { |
| 3820 | /* setting config flags, but have node with explicit config true */ |
| 3821 | LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SEMANTICS, |
| 3822 | "Invalid %s of config in \"%s\" - configuration node cannot be child of any state data node.", |
| 3823 | refine_flag ? "refine" : "deviation", nodeid); |
| 3824 | return LY_EVALID; |
| 3825 | } |
| 3826 | /* do not change config on nodes where the config is explicitely set, this does not apply to |
| 3827 | * nodes, which are being changed explicitly (targets of refine or deviation) */ |
| 3828 | return LY_SUCCESS; |
| 3829 | } |
Radek Krejci | 76b3e96 | 2018-12-14 17:01:25 +0100 | [diff] [blame] | 3830 | } |
| 3831 | node->flags &= ~LYS_CONFIG_MASK; |
| 3832 | node->flags |= config; |
| 3833 | |
| 3834 | /* inherit the change into the children */ |
| 3835 | LY_LIST_FOR((struct lysc_node*)lysc_node_children(node), child) { |
Radek Krejci | 93dcc39 | 2019-02-19 10:43:38 +0100 | [diff] [blame] | 3836 | LY_CHECK_RET(lys_compile_change_config(ctx, child, config_flag, nodeid, 1, refine_flag)); |
Radek Krejci | 76b3e96 | 2018-12-14 17:01:25 +0100 | [diff] [blame] | 3837 | } |
| 3838 | |
| 3839 | /* TODO actions and notifications */ |
| 3840 | |
| 3841 | return LY_SUCCESS; |
| 3842 | } |
| 3843 | |
Radek Krejci | b56c750 | 2019-02-13 14:19:54 +0100 | [diff] [blame] | 3844 | /** |
| 3845 | * @brief Set LYS_MAND_TRUE flag for the non-presence container parents. |
| 3846 | * |
| 3847 | * A non-presence container is mandatory in case it has at least one mandatory children. This function propagate |
| 3848 | * the flag to such parents from a mandatory children. |
| 3849 | * |
| 3850 | * @param[in] parent A schema node to be examined if the mandatory child make it also mandatory. |
| 3851 | * @param[in] add Flag to distinguish adding the mandatory flag (new mandatory children appeared) or removing the flag |
| 3852 | * (mandatory children was removed). |
| 3853 | */ |
Radek Krejci | fe90963 | 2019-02-12 15:34:42 +0100 | [diff] [blame] | 3854 | void |
| 3855 | lys_compile_mandatory_parents(struct lysc_node *parent, int add) |
| 3856 | { |
| 3857 | struct lysc_node *iter; |
| 3858 | |
| 3859 | if (add) { /* set flag */ |
| 3860 | for (; parent && parent->nodetype == LYS_CONTAINER && !(parent->flags & LYS_MAND_TRUE) && !(parent->flags & LYS_PRESENCE); |
| 3861 | parent = parent->parent) { |
| 3862 | parent->flags |= LYS_MAND_TRUE; |
| 3863 | } |
| 3864 | } else { /* unset flag */ |
| 3865 | for (; parent && parent->nodetype == LYS_CONTAINER && (parent->flags & LYS_MAND_TRUE); parent = parent->parent) { |
| 3866 | for (iter = (struct lysc_node*)lysc_node_children(parent); iter; iter = iter->next) { |
Radek Krejci | f1421c2 | 2019-02-19 13:05:20 +0100 | [diff] [blame] | 3867 | if (iter->flags & LYS_MAND_TRUE) { |
Radek Krejci | fe90963 | 2019-02-12 15:34:42 +0100 | [diff] [blame] | 3868 | /* there is another mandatory node */ |
| 3869 | return; |
| 3870 | } |
| 3871 | } |
| 3872 | /* unset mandatory flag - there is no mandatory children in the non-presence container */ |
| 3873 | parent->flags &= ~LYS_MAND_TRUE; |
| 3874 | } |
| 3875 | } |
| 3876 | } |
| 3877 | |
Radek Krejci | 056d0a8 | 2018-12-06 16:57:25 +0100 | [diff] [blame] | 3878 | /** |
Radek Krejci | 3641f56 | 2019-02-13 15:38:40 +0100 | [diff] [blame] | 3879 | * @brief Internal sorting process for the lys_compile_augment_sort(). |
| 3880 | * @param[in] aug_p The parsed augment structure to insert into the sorter sized array @p result. |
| 3881 | * @param[in,out] result Sized array to store the sorted list of augments. The array is expected |
| 3882 | * to be allocated to hold the complete list, its size is just incremented by adding another item. |
| 3883 | */ |
| 3884 | static void |
| 3885 | lys_compile_augment_sort_(struct lysp_augment *aug_p, struct lysp_augment **result) |
| 3886 | { |
| 3887 | unsigned int v; |
| 3888 | size_t len; |
| 3889 | |
| 3890 | len = strlen(aug_p->nodeid); |
| 3891 | LY_ARRAY_FOR(result, v) { |
| 3892 | if (strlen(result[v]->nodeid) <= len) { |
| 3893 | continue; |
| 3894 | } |
| 3895 | if (v < LY_ARRAY_SIZE(result)) { |
| 3896 | /* move the rest of array */ |
| 3897 | memmove(&result[v + 1], &result[v], (LY_ARRAY_SIZE(result) - v) * sizeof *result); |
| 3898 | break; |
| 3899 | } |
| 3900 | } |
| 3901 | result[v] = aug_p; |
| 3902 | LY_ARRAY_INCREMENT(result); |
| 3903 | } |
| 3904 | |
| 3905 | /** |
| 3906 | * @brief Sort augments to apply /a/b before /a/b/c (where the /a/b/c was added by the first augment). |
| 3907 | * |
| 3908 | * The sorting is based only on the length of the augment's path since it guarantee the correct order |
| 3909 | * (it doesn't matter the /a/x is done before /a/b/c from the example above). |
| 3910 | * |
| 3911 | * @param[in] ctx Compile context. |
| 3912 | * @param[in] mod_p Parsed module with the global augments (also augments from the submodules are taken). |
| 3913 | * @param[in] aug_p Parsed sized array of augments to sort (no matter if global or uses's) |
| 3914 | * @param[in] inc_p In case of global augments, sized array of module includes (submodules) to get global augments from submodules. |
| 3915 | * @param[out] augments Resulting sorted sized array of pointers to the augments. |
| 3916 | * @return LY_ERR value. |
| 3917 | */ |
| 3918 | LY_ERR |
| 3919 | lys_compile_augment_sort(struct lysc_ctx *ctx, struct lysp_augment *aug_p, struct lysp_include *inc_p, struct lysp_augment ***augments) |
| 3920 | { |
| 3921 | struct lysp_augment **result = NULL; |
| 3922 | unsigned int u, v; |
| 3923 | size_t count = 0; |
| 3924 | |
| 3925 | assert(augments); |
| 3926 | |
| 3927 | /* get count of the augments in module and all its submodules */ |
| 3928 | if (aug_p) { |
| 3929 | count += LY_ARRAY_SIZE(aug_p); |
| 3930 | } |
| 3931 | LY_ARRAY_FOR(inc_p, u) { |
| 3932 | if (inc_p[u].submodule->augments) { |
| 3933 | count += LY_ARRAY_SIZE(inc_p[u].submodule->augments); |
| 3934 | } |
| 3935 | } |
| 3936 | |
| 3937 | if (!count) { |
| 3938 | *augments = NULL; |
| 3939 | return LY_SUCCESS; |
| 3940 | } |
| 3941 | LY_ARRAY_CREATE_RET(ctx->ctx, result, count, LY_EMEM); |
| 3942 | |
| 3943 | /* sort by the length of schema-nodeid - we need to solve /x before /x/xy. It is not necessary to group them |
| 3944 | * together, so there can be even /z/y betwwen them. */ |
| 3945 | LY_ARRAY_FOR(aug_p, u) { |
| 3946 | lys_compile_augment_sort_(&aug_p[u], result); |
| 3947 | } |
| 3948 | LY_ARRAY_FOR(inc_p, u) { |
| 3949 | LY_ARRAY_FOR(inc_p[u].submodule->augments, v) { |
| 3950 | lys_compile_augment_sort_(&inc_p[u].submodule->augments[v], result); |
| 3951 | } |
| 3952 | } |
| 3953 | |
| 3954 | *augments = result; |
| 3955 | return LY_SUCCESS; |
| 3956 | } |
| 3957 | |
| 3958 | /** |
| 3959 | * @brief Compile the parsed augment connecting it into its target. |
| 3960 | * |
| 3961 | * It is expected that all the data referenced in path are present - augments are ordered so that augment B |
| 3962 | * targeting data from augment A is being compiled after augment A. Also the modules referenced in the path |
| 3963 | * are already implemented and compiled. |
| 3964 | * |
| 3965 | * @param[in] ctx Compile context. |
| 3966 | * @param[in] aug_p Parsed augment to compile. |
| 3967 | * @param[in] options Various options to modify compiler behavior, see [compile flags](@ref scflags). |
| 3968 | * @param[in] parent Parent node to provide the augment's context. It is NULL for the top level augments and a node holding uses's |
| 3969 | * children in case of the augmenting uses data. |
| 3970 | * @return LY_SUCCESS on success. |
| 3971 | * @return LY_EVALID on failure. |
| 3972 | */ |
| 3973 | LY_ERR |
| 3974 | lys_compile_augment(struct lysc_ctx *ctx, struct lysp_augment *aug_p, int options, const struct lysc_node *parent) |
| 3975 | { |
| 3976 | LY_ERR ret = LY_SUCCESS; |
| 3977 | struct lysp_node *node_p, *case_node_p; |
| 3978 | struct lysc_node *target; /* target target of the augment */ |
| 3979 | struct lysc_node *node; |
Radek Krejci | 3641f56 | 2019-02-13 15:38:40 +0100 | [diff] [blame] | 3980 | struct lysc_when **when, *when_shared; |
| 3981 | int allow_mandatory = 0; |
| 3982 | |
Radek Krejci | 7af6424 | 2019-02-18 13:07:53 +0100 | [diff] [blame] | 3983 | ret = lys_resolve_schema_nodeid(ctx, aug_p->nodeid, 0, parent, parent ? parent->module : ctx->mod_def, |
Radek Krejci | 3641f56 | 2019-02-13 15:38:40 +0100 | [diff] [blame] | 3984 | LYS_CONTAINER | LYS_LIST | LYS_CHOICE | LYS_CASE | LYS_INOUT | LYS_NOTIF, |
| 3985 | 1, (const struct lysc_node**)&target); |
| 3986 | if (ret != LY_SUCCESS) { |
| 3987 | if (ret == LY_EDENIED) { |
| 3988 | LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_REFERENCE, |
| 3989 | "Augment's %s-schema-nodeid \"%s\" refers to a %s node which is not an allowed augment's target.", |
| 3990 | parent ? "descendant" : "absolute", aug_p->nodeid, lys_nodetype2str(target->nodetype)); |
| 3991 | } |
| 3992 | return LY_EVALID; |
| 3993 | } |
| 3994 | |
| 3995 | /* check for mandatory nodes |
| 3996 | * - new cases augmenting some choice can have mandatory nodes |
| 3997 | * - mandatory nodes are allowed only in case the augmentation is made conditional with a when statement |
| 3998 | */ |
Radek Krejci | 733988a | 2019-02-15 15:12:44 +0100 | [diff] [blame] | 3999 | if (aug_p->when || target->nodetype == LYS_CHOICE || ctx->mod == target->module) { |
Radek Krejci | 3641f56 | 2019-02-13 15:38:40 +0100 | [diff] [blame] | 4000 | allow_mandatory = 1; |
| 4001 | } |
| 4002 | |
| 4003 | when_shared = NULL; |
| 4004 | LY_LIST_FOR(aug_p->child, node_p) { |
| 4005 | /* check if the subnode can be connected to the found target (e.g. case cannot be inserted into container) */ |
| 4006 | if (!(target->nodetype == LYS_CHOICE && node_p->nodetype == LYS_CASE) |
| 4007 | && !((target->nodetype & (LYS_CONTAINER | LYS_LIST)) && (node_p->nodetype & (LYS_ACTION | LYS_NOTIF))) |
Radek Krejci | 2d56a89 | 2019-02-19 09:05:26 +0100 | [diff] [blame] | 4008 | && !(target->nodetype != LYS_CHOICE && node_p->nodetype == LYS_USES) |
| 4009 | && !(node_p->nodetype & (LYS_ANYDATA | LYS_CONTAINER | LYS_CHOICE | LYS_LEAF | LYS_LIST | LYS_LEAFLIST))) { |
Radek Krejci | 3641f56 | 2019-02-13 15:38:40 +0100 | [diff] [blame] | 4010 | LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_REFERENCE, |
| 4011 | "Invalid augment (%s) of %s node which is not allowed to contain %s node \"%s\".", |
| 4012 | aug_p->nodeid, lys_nodetype2str(target->nodetype), lys_nodetype2str(node_p->nodetype), node_p->name); |
| 4013 | return LY_EVALID; |
| 4014 | } |
| 4015 | |
| 4016 | /* compile the children */ |
| 4017 | if (node_p->nodetype != LYS_CASE) { |
| 4018 | LY_CHECK_RET(lys_compile_node(ctx, node_p, options, target, 0)); |
| 4019 | } else { |
| 4020 | LY_LIST_FOR(((struct lysp_node_case *)node_p)->child, case_node_p) { |
| 4021 | LY_CHECK_RET(lys_compile_node(ctx, case_node_p, options, target, 0)); |
| 4022 | } |
| 4023 | } |
| 4024 | |
Radek Krejci | fe13da4 | 2019-02-15 14:51:01 +0100 | [diff] [blame] | 4025 | /* since the augment node is not present in the compiled tree, we need to pass some of its statements to all its children, |
| 4026 | * here we gets the last created node as last children of our parent */ |
Radek Krejci | 3641f56 | 2019-02-13 15:38:40 +0100 | [diff] [blame] | 4027 | if (target->nodetype == LYS_CASE) { |
Radek Krejci | fe13da4 | 2019-02-15 14:51:01 +0100 | [diff] [blame] | 4028 | /* the compiled node is the last child of the target (but it is a case, so we have to be careful and stop) */ |
| 4029 | for (node = (struct lysc_node*)lysc_node_children(target); node->next && node->next->parent == node->parent; node = node->next); |
Radek Krejci | 3641f56 | 2019-02-13 15:38:40 +0100 | [diff] [blame] | 4030 | } else if (target->nodetype == LYS_CHOICE) { |
| 4031 | /* to pass when statement, we need the last case no matter if it is explicit or implicit case */ |
| 4032 | node = ((struct lysc_node_choice*)target)->cases->prev; |
| 4033 | } else { |
| 4034 | /* the compiled node is the last child of the target */ |
| 4035 | node = lysc_node_children(target)->prev; |
| 4036 | } |
| 4037 | |
Radek Krejci | 733988a | 2019-02-15 15:12:44 +0100 | [diff] [blame] | 4038 | if (!allow_mandatory && (node->flags & LYS_CONFIG_W) && (node->flags & LYS_MAND_TRUE)) { |
Radek Krejci | 3641f56 | 2019-02-13 15:38:40 +0100 | [diff] [blame] | 4039 | node->flags &= ~LYS_MAND_TRUE; |
| 4040 | lys_compile_mandatory_parents(target, 0); |
| 4041 | LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SEMANTICS, |
| 4042 | "Invalid augment (%s) adding mandatory node \"%s\" without making it conditional via when statement.", |
| 4043 | aug_p->nodeid, node->name); |
| 4044 | return LY_EVALID; |
| 4045 | } |
| 4046 | |
| 4047 | /* pass augment's when to all the children */ |
| 4048 | if (aug_p->when) { |
| 4049 | LY_ARRAY_NEW_GOTO(ctx->ctx, node->when, when, ret, error); |
| 4050 | if (!when_shared) { |
| 4051 | ret = lys_compile_when(ctx, aug_p->when, options, when); |
| 4052 | LY_CHECK_GOTO(ret, error); |
| 4053 | (*when)->context = lysc_xpath_context(target); |
| 4054 | when_shared = *when; |
| 4055 | } else { |
| 4056 | ++when_shared->refcount; |
| 4057 | (*when) = when_shared; |
| 4058 | } |
| 4059 | } |
| 4060 | } |
| 4061 | /* TODO actions, notifications */ |
| 4062 | |
| 4063 | error: |
| 4064 | return ret; |
| 4065 | } |
| 4066 | |
| 4067 | /** |
Radek Krejci | f1421c2 | 2019-02-19 13:05:20 +0100 | [diff] [blame] | 4068 | * @brief Apply refined or deviated mandatory flag to the target node. |
| 4069 | * |
| 4070 | * @param[in] ctx Compile context. |
| 4071 | * @param[in] node Target node where the mandatory property is supposed to be changed. |
| 4072 | * @param[in] mandatory_flag Node's mandatory flag to be applied to the @p node. |
| 4073 | * @param[in] nodeid Schema nodeid used to identify target of refine/deviation (for logging). |
| 4074 | * @param[in] refine_flag Flag to distinguish if the change is caused by refine (flag set) or deviation (for logging). |
Radek Krejci | 551b12c | 2019-02-19 16:11:21 +0100 | [diff] [blame^] | 4075 | * @param[in] It is also used as a flag for testing for compatibility with default statement. In case of deviations, |
| 4076 | * there can be some other deviations of the default properties that we are testing here. To avoid false positive failure, |
| 4077 | * the tests are skipped here, but they are supposed to be performed after all the deviations are applied. |
Radek Krejci | f1421c2 | 2019-02-19 13:05:20 +0100 | [diff] [blame] | 4078 | * @return LY_ERR value. |
| 4079 | */ |
| 4080 | static LY_ERR |
| 4081 | lys_compile_change_mandatory(struct lysc_ctx *ctx, struct lysc_node *node, uint16_t mandatory_flag, const char *nodeid, int refine_flag) |
| 4082 | { |
| 4083 | if (!(node->nodetype & (LYS_LEAF | LYS_ANYDATA | LYS_ANYXML | LYS_CHOICE))) { |
| 4084 | LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SEMANTICS, |
| 4085 | "Invalid %s of mandatory in \"%s\" - %s cannot hold mandatory statement.", |
| 4086 | refine_flag ? "refine" : "deviation", nodeid, lys_nodetype2str(node->nodetype)); |
| 4087 | return LY_EVALID; |
| 4088 | } |
| 4089 | |
| 4090 | if (mandatory_flag & LYS_MAND_TRUE) { |
| 4091 | /* check if node has default value */ |
| 4092 | if (node->nodetype & LYS_LEAF) { |
| 4093 | if (node->flags & LYS_SET_DFLT) { |
Radek Krejci | 551b12c | 2019-02-19 16:11:21 +0100 | [diff] [blame^] | 4094 | if (refine_flag) { |
| 4095 | LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SEMANTICS, |
| 4096 | "Invalid refine of mandatory in \"%s\" - leaf already has \"default\" statement.", nodeid); |
| 4097 | return LY_EVALID; |
| 4098 | } |
Radek Krejci | f1421c2 | 2019-02-19 13:05:20 +0100 | [diff] [blame] | 4099 | } else { |
| 4100 | /* remove the default value taken from the leaf's type */ |
| 4101 | FREE_STRING(ctx->ctx, ((struct lysc_node_leaf*)node)->dflt); |
| 4102 | ((struct lysc_node_leaf*)node)->dflt = NULL; |
| 4103 | } |
| 4104 | } else if ((node->nodetype & LYS_CHOICE) && ((struct lysc_node_choice*)node)->dflt) { |
Radek Krejci | 551b12c | 2019-02-19 16:11:21 +0100 | [diff] [blame^] | 4105 | if (refine_flag) { |
| 4106 | LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SEMANTICS, |
| 4107 | "Invalid refine of mandatory in \"%s\" - choice already has \"default\" statement.", nodeid); |
| 4108 | return LY_EVALID; |
| 4109 | } |
Radek Krejci | f1421c2 | 2019-02-19 13:05:20 +0100 | [diff] [blame] | 4110 | } |
Radek Krejci | 551b12c | 2019-02-19 16:11:21 +0100 | [diff] [blame^] | 4111 | if (refine_flag && node->parent && (node->parent->flags & LYS_SET_DFLT)) { |
Radek Krejci | f1421c2 | 2019-02-19 13:05:20 +0100 | [diff] [blame] | 4112 | LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SEMANTICS, |
Radek Krejci | 551b12c | 2019-02-19 16:11:21 +0100 | [diff] [blame^] | 4113 | "Invalid refine of mandatory in \"%s\" under the default case.", nodeid); |
Radek Krejci | f1421c2 | 2019-02-19 13:05:20 +0100 | [diff] [blame] | 4114 | return LY_EVALID; |
| 4115 | } |
| 4116 | |
| 4117 | node->flags &= ~LYS_MAND_FALSE; |
| 4118 | node->flags |= LYS_MAND_TRUE; |
| 4119 | lys_compile_mandatory_parents(node->parent, 1); |
| 4120 | } else { |
| 4121 | /* make mandatory false */ |
| 4122 | node->flags &= ~LYS_MAND_TRUE; |
| 4123 | node->flags |= LYS_MAND_FALSE; |
| 4124 | lys_compile_mandatory_parents(node->parent, 0); |
| 4125 | if ((node->nodetype & LYS_LEAF) && !((struct lysc_node_leaf*)node)->dflt) { |
| 4126 | /* get the type's default value if any */ |
| 4127 | DUP_STRING(ctx->ctx, ((struct lysc_node_leaf*)node)->type->dflt, ((struct lysc_node_leaf*)node)->dflt); |
| 4128 | } |
| 4129 | } |
| 4130 | return LY_SUCCESS; |
| 4131 | } |
| 4132 | |
| 4133 | /** |
Radek Krejci | e86bf77 | 2018-12-14 11:39:53 +0100 | [diff] [blame] | 4134 | * @brief Compile parsed uses statement - resolve target grouping and connect its content into parent. |
| 4135 | * If present, also apply uses's modificators. |
| 4136 | * |
| 4137 | * @param[in] ctx Compile context |
| 4138 | * @param[in] uses_p Parsed uses schema node. |
| 4139 | * @param[in] options Various options to modify compiler behavior, see [compile flags](@ref scflags). |
| 4140 | * @param[in] parent Compiled parent node where the content of the referenced grouping is supposed to be connected. It is |
| 4141 | * NULL for top-level nodes, in such a case the module where the node will be connected is taken from |
| 4142 | * the compile context. |
| 4143 | * @return LY_ERR value - LY_SUCCESS or LY_EVALID. |
| 4144 | */ |
| 4145 | static LY_ERR |
| 4146 | lys_compile_uses(struct lysc_ctx *ctx, struct lysp_node_uses *uses_p, int options, struct lysc_node *parent) |
| 4147 | { |
| 4148 | struct lysp_node *node_p; |
Radek Krejci | 01342af | 2019-01-03 15:18:08 +0100 | [diff] [blame] | 4149 | struct lysc_node *node, *child; |
Radek Krejci | 12fb914 | 2019-01-08 09:45:30 +0100 | [diff] [blame] | 4150 | /* context_node_fake allows us to temporarily isolate the nodes inserted from the grouping instead of uses */ |
Radek Krejci | 01342af | 2019-01-03 15:18:08 +0100 | [diff] [blame] | 4151 | struct lysc_node_container context_node_fake = |
| 4152 | {.nodetype = LYS_CONTAINER, |
| 4153 | .module = ctx->mod, |
| 4154 | .flags = parent ? parent->flags : 0, |
| 4155 | .child = NULL, .next = NULL, |
| 4156 | .prev = (struct lysc_node*)&context_node_fake}; |
Radek Krejci | e86bf77 | 2018-12-14 11:39:53 +0100 | [diff] [blame] | 4157 | const struct lysp_grp *grp = NULL; |
Radek Krejci | 76b3e96 | 2018-12-14 17:01:25 +0100 | [diff] [blame] | 4158 | unsigned int u, v, grp_stack_count; |
Radek Krejci | e86bf77 | 2018-12-14 11:39:53 +0100 | [diff] [blame] | 4159 | int found; |
| 4160 | const char *id, *name, *prefix; |
| 4161 | size_t prefix_len, name_len; |
| 4162 | struct lys_module *mod, *mod_old; |
Radek Krejci | 76b3e96 | 2018-12-14 17:01:25 +0100 | [diff] [blame] | 4163 | struct lysp_refine *rfn; |
Radek Krejci | e86bf77 | 2018-12-14 11:39:53 +0100 | [diff] [blame] | 4164 | LY_ERR ret = LY_EVALID; |
Radek Krejci | f2271f1 | 2019-01-07 16:42:23 +0100 | [diff] [blame] | 4165 | uint32_t min, max; |
| 4166 | struct ly_set refined = {0}; |
Radek Krejci | 00b874b | 2019-02-12 10:54:50 +0100 | [diff] [blame] | 4167 | struct lysc_when **when, *when_shared; |
Radek Krejci | 3641f56 | 2019-02-13 15:38:40 +0100 | [diff] [blame] | 4168 | struct lysp_augment **augments = NULL; |
Radek Krejci | e86bf77 | 2018-12-14 11:39:53 +0100 | [diff] [blame] | 4169 | |
| 4170 | /* search for the grouping definition */ |
| 4171 | found = 0; |
| 4172 | id = uses_p->name; |
| 4173 | lys_parse_nodeid(&id, &prefix, &prefix_len, &name, &name_len); |
| 4174 | if (prefix) { |
| 4175 | mod = lys_module_find_prefix(ctx->mod_def, prefix, prefix_len); |
| 4176 | if (!mod) { |
| 4177 | LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_REFERENCE, |
| 4178 | "Invalid prefix used for grouping reference (%s).", uses_p->name); |
| 4179 | return LY_EVALID; |
| 4180 | } |
| 4181 | } else { |
| 4182 | mod = ctx->mod_def; |
| 4183 | } |
| 4184 | if (mod == ctx->mod_def) { |
| 4185 | for (node_p = uses_p->parent; !found && node_p; node_p = node_p->parent) { |
| 4186 | grp = lysp_node_groupings(node_p); |
| 4187 | LY_ARRAY_FOR(grp, u) { |
| 4188 | if (!strcmp(grp[u].name, name)) { |
| 4189 | grp = &grp[u]; |
| 4190 | found = 1; |
| 4191 | break; |
| 4192 | } |
| 4193 | } |
| 4194 | } |
| 4195 | } |
| 4196 | if (!found) { |
Radek Krejci | 76b3e96 | 2018-12-14 17:01:25 +0100 | [diff] [blame] | 4197 | /* search in top-level groupings of the main module ... */ |
Radek Krejci | e86bf77 | 2018-12-14 11:39:53 +0100 | [diff] [blame] | 4198 | grp = mod->parsed->groupings; |
Radek Krejci | 76b3e96 | 2018-12-14 17:01:25 +0100 | [diff] [blame] | 4199 | if (grp) { |
| 4200 | for (u = 0; !found && u < LY_ARRAY_SIZE(grp); ++u) { |
| 4201 | if (!strcmp(grp[u].name, name)) { |
| 4202 | grp = &grp[u]; |
| 4203 | found = 1; |
| 4204 | } |
| 4205 | } |
| 4206 | } |
| 4207 | if (!found && mod->parsed->includes) { |
| 4208 | /* ... and all the submodules */ |
| 4209 | for (u = 0; !found && u < LY_ARRAY_SIZE(mod->parsed->includes); ++u) { |
| 4210 | grp = mod->parsed->includes[u].submodule->groupings; |
| 4211 | if (grp) { |
| 4212 | for (v = 0; !found && v < LY_ARRAY_SIZE(grp); ++v) { |
| 4213 | if (!strcmp(grp[v].name, name)) { |
| 4214 | grp = &grp[v]; |
| 4215 | found = 1; |
| 4216 | } |
| 4217 | } |
| 4218 | } |
Radek Krejci | e86bf77 | 2018-12-14 11:39:53 +0100 | [diff] [blame] | 4219 | } |
| 4220 | } |
| 4221 | } |
| 4222 | if (!found) { |
| 4223 | LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SEMANTICS, |
| 4224 | "Grouping \"%s\" referenced by a uses statement not found.", uses_p->name); |
| 4225 | return LY_EVALID; |
| 4226 | } |
| 4227 | |
| 4228 | /* grouping must not reference themselves - stack in ctx maintains list of groupings currently being applied */ |
| 4229 | grp_stack_count = ctx->groupings.count; |
| 4230 | ly_set_add(&ctx->groupings, (void*)grp, 0); |
| 4231 | if (grp_stack_count == ctx->groupings.count) { |
| 4232 | /* the target grouping is already in the stack, so we are already inside it -> circular dependency */ |
| 4233 | LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_REFERENCE, |
| 4234 | "Grouping \"%s\" references itself through a uses statement.", grp->name); |
| 4235 | return LY_EVALID; |
| 4236 | } |
| 4237 | |
| 4238 | /* switch context's mod_def */ |
| 4239 | mod_old = ctx->mod_def; |
| 4240 | ctx->mod_def = mod; |
| 4241 | |
| 4242 | /* check status */ |
| 4243 | LY_CHECK_GOTO(lysc_check_status(ctx, uses_p->flags, mod_old, uses_p->name, grp->flags, mod, grp->name), error); |
| 4244 | |
Radek Krejci | e86bf77 | 2018-12-14 11:39:53 +0100 | [diff] [blame] | 4245 | LY_LIST_FOR(grp->data, node_p) { |
Radek Krejci | b1b5915 | 2019-01-07 13:21:56 +0100 | [diff] [blame] | 4246 | /* 0x3 in uses_status is a special bits combination to be able to detect status flags from uses */ |
| 4247 | LY_CHECK_GOTO(lys_compile_node(ctx, node_p, options, parent, (uses_p->flags & LYS_STATUS_MASK) | 0x3), error); |
Radek Krejci | 01342af | 2019-01-03 15:18:08 +0100 | [diff] [blame] | 4248 | child = parent ? lysc_node_children(parent)->prev : ctx->mod->compiled->data->prev; |
Radek Krejci | 00b874b | 2019-02-12 10:54:50 +0100 | [diff] [blame] | 4249 | |
| 4250 | /* some preparation for applying refines */ |
| 4251 | if (grp->data == node_p) { |
| 4252 | /* remember the first child */ |
| 4253 | context_node_fake.child = child; |
Radek Krejci | 01342af | 2019-01-03 15:18:08 +0100 | [diff] [blame] | 4254 | } |
| 4255 | } |
Radek Krejci | 00b874b | 2019-02-12 10:54:50 +0100 | [diff] [blame] | 4256 | when_shared = NULL; |
Radek Krejci | 01342af | 2019-01-03 15:18:08 +0100 | [diff] [blame] | 4257 | LY_LIST_FOR(context_node_fake.child, child) { |
| 4258 | child->parent = (struct lysc_node*)&context_node_fake; |
Radek Krejci | 00b874b | 2019-02-12 10:54:50 +0100 | [diff] [blame] | 4259 | |
| 4260 | /* pass uses's when to all the children */ |
| 4261 | if (uses_p->when) { |
| 4262 | LY_ARRAY_NEW_GOTO(ctx->ctx, child->when, when, ret, error); |
| 4263 | if (!when_shared) { |
Radek Krejci | 3641f56 | 2019-02-13 15:38:40 +0100 | [diff] [blame] | 4264 | LY_CHECK_GOTO(lys_compile_when(ctx, uses_p->when, options, when), error); |
Radek Krejci | b56c750 | 2019-02-13 14:19:54 +0100 | [diff] [blame] | 4265 | (*when)->context = lysc_xpath_context(parent); |
Radek Krejci | 00b874b | 2019-02-12 10:54:50 +0100 | [diff] [blame] | 4266 | when_shared = *when; |
| 4267 | } else { |
| 4268 | ++when_shared->refcount; |
| 4269 | (*when) = when_shared; |
| 4270 | } |
| 4271 | } |
Radek Krejci | 01342af | 2019-01-03 15:18:08 +0100 | [diff] [blame] | 4272 | } |
| 4273 | if (context_node_fake.child) { |
| 4274 | child = context_node_fake.child->prev; |
| 4275 | context_node_fake.child->prev = parent ? lysc_node_children(parent)->prev : ctx->mod->compiled->data->prev; |
Radek Krejci | 76b3e96 | 2018-12-14 17:01:25 +0100 | [diff] [blame] | 4276 | } |
| 4277 | |
Radek Krejci | 3641f56 | 2019-02-13 15:38:40 +0100 | [diff] [blame] | 4278 | /* sort and apply augments */ |
| 4279 | LY_CHECK_GOTO(lys_compile_augment_sort(ctx, uses_p->augments, NULL, &augments), error); |
| 4280 | LY_ARRAY_FOR(augments, u) { |
| 4281 | LY_CHECK_GOTO(lys_compile_augment(ctx, augments[u], options, (struct lysc_node*)&context_node_fake), error); |
| 4282 | } |
Radek Krejci | 12fb914 | 2019-01-08 09:45:30 +0100 | [diff] [blame] | 4283 | |
Radek Krejci | f008908 | 2019-01-07 16:42:01 +0100 | [diff] [blame] | 4284 | /* reload previous context's mod_def */ |
| 4285 | ctx->mod_def = mod_old; |
| 4286 | |
Radek Krejci | 76b3e96 | 2018-12-14 17:01:25 +0100 | [diff] [blame] | 4287 | /* apply refine */ |
| 4288 | LY_ARRAY_FOR(uses_p->refines, struct lysp_refine, rfn) { |
Radek Krejci | 7af6424 | 2019-02-18 13:07:53 +0100 | [diff] [blame] | 4289 | LY_CHECK_GOTO(lys_resolve_schema_nodeid(ctx, rfn->nodeid, 0, (struct lysc_node*)&context_node_fake, ctx->mod, |
| 4290 | 0, 0, (const struct lysc_node**)&node), |
Radek Krejci | 01342af | 2019-01-03 15:18:08 +0100 | [diff] [blame] | 4291 | error); |
Radek Krejci | f2271f1 | 2019-01-07 16:42:23 +0100 | [diff] [blame] | 4292 | ly_set_add(&refined, node, LY_SET_OPT_USEASLIST); |
Radek Krejci | 76b3e96 | 2018-12-14 17:01:25 +0100 | [diff] [blame] | 4293 | |
| 4294 | /* default value */ |
| 4295 | if (rfn->dflts) { |
Radek Krejci | 01342af | 2019-01-03 15:18:08 +0100 | [diff] [blame] | 4296 | if ((node->nodetype != LYS_LEAFLIST) && LY_ARRAY_SIZE(rfn->dflts) > 1) { |
Radek Krejci | 76b3e96 | 2018-12-14 17:01:25 +0100 | [diff] [blame] | 4297 | LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SEMANTICS, |
| 4298 | "Invalid refine of default in \"%s\" - %s cannot hold %d default values.", |
| 4299 | rfn->nodeid, lys_nodetype2str(node->nodetype), LY_ARRAY_SIZE(rfn->dflts)); |
| 4300 | goto error; |
| 4301 | } |
| 4302 | if (!(node->nodetype & (LYS_LEAF | LYS_LEAFLIST | LYS_CHOICE))) { |
| 4303 | LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SEMANTICS, |
| 4304 | "Invalid refine of default in \"%s\" - %s cannot hold default value(s).", |
| 4305 | rfn->nodeid, lys_nodetype2str(node->nodetype)); |
| 4306 | goto error; |
| 4307 | } |
| 4308 | if (node->nodetype == LYS_LEAF) { |
| 4309 | FREE_STRING(ctx->ctx, ((struct lysc_node_leaf*)node)->dflt); |
| 4310 | DUP_STRING(ctx->ctx, rfn->dflts[0], ((struct lysc_node_leaf*)node)->dflt); |
Radek Krejci | 01342af | 2019-01-03 15:18:08 +0100 | [diff] [blame] | 4311 | node->flags |= LYS_SET_DFLT; |
Radek Krejci | 76b3e96 | 2018-12-14 17:01:25 +0100 | [diff] [blame] | 4312 | /* TODO check the default value according to type */ |
| 4313 | } else if (node->nodetype == LYS_LEAFLIST) { |
Radek Krejci | 0bcdaed | 2019-01-10 10:21:34 +0100 | [diff] [blame] | 4314 | if (ctx->mod->version < 2) { |
Radek Krejci | 01342af | 2019-01-03 15:18:08 +0100 | [diff] [blame] | 4315 | LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SEMANTICS, |
| 4316 | "Invalid refine of default in leaf-list - the default statement is allowed only in YANG 1.1 modules."); |
| 4317 | goto error; |
| 4318 | } |
Radek Krejci | 76b3e96 | 2018-12-14 17:01:25 +0100 | [diff] [blame] | 4319 | LY_ARRAY_FOR(((struct lysc_node_leaflist*)node)->dflts, u) { |
| 4320 | lydict_remove(ctx->ctx, ((struct lysc_node_leaflist*)node)->dflts[u]); |
| 4321 | } |
| 4322 | LY_ARRAY_FREE(((struct lysc_node_leaflist*)node)->dflts); |
Radek Krejci | 01342af | 2019-01-03 15:18:08 +0100 | [diff] [blame] | 4323 | ((struct lysc_node_leaflist*)node)->dflts = NULL; |
Radek Krejci | 76b3e96 | 2018-12-14 17:01:25 +0100 | [diff] [blame] | 4324 | LY_ARRAY_CREATE_GOTO(ctx->ctx, ((struct lysc_node_leaflist*)node)->dflts, LY_ARRAY_SIZE(rfn->dflts), ret, error); |
| 4325 | LY_ARRAY_FOR(rfn->dflts, u) { |
| 4326 | LY_ARRAY_INCREMENT(((struct lysc_node_leaflist*)node)->dflts); |
| 4327 | DUP_STRING(ctx->ctx, rfn->dflts[u], ((struct lysc_node_leaflist*)node)->dflts[u]); |
| 4328 | } |
| 4329 | /* TODO check the default values according to type */ |
| 4330 | } else if (node->nodetype == LYS_CHOICE) { |
Radek Krejci | 01342af | 2019-01-03 15:18:08 +0100 | [diff] [blame] | 4331 | if (((struct lysc_node_choice*)node)->dflt) { |
| 4332 | /* unset LYS_SET_DFLT from the current default case */ |
| 4333 | ((struct lysc_node_choice*)node)->dflt->flags &= ~LYS_SET_DFLT; |
| 4334 | } |
Radek Krejci | 76b3e96 | 2018-12-14 17:01:25 +0100 | [diff] [blame] | 4335 | LY_CHECK_GOTO(lys_compile_node_choice_dflt(ctx, rfn->dflts[0], (struct lysc_node_choice*)node), error); |
| 4336 | } |
| 4337 | } |
| 4338 | |
Radek Krejci | 12fb914 | 2019-01-08 09:45:30 +0100 | [diff] [blame] | 4339 | /* description */ |
| 4340 | if (rfn->dsc) { |
| 4341 | FREE_STRING(ctx->ctx, node->dsc); |
| 4342 | node->dsc = lydict_insert(ctx->ctx, rfn->dsc, 0); |
| 4343 | } |
| 4344 | |
| 4345 | /* reference */ |
| 4346 | if (rfn->ref) { |
| 4347 | FREE_STRING(ctx->ctx, node->ref); |
| 4348 | node->ref = lydict_insert(ctx->ctx, rfn->ref, 0); |
| 4349 | } |
Radek Krejci | 76b3e96 | 2018-12-14 17:01:25 +0100 | [diff] [blame] | 4350 | |
| 4351 | /* config */ |
| 4352 | if (rfn->flags & LYS_CONFIG_MASK) { |
Radek Krejci | 93dcc39 | 2019-02-19 10:43:38 +0100 | [diff] [blame] | 4353 | LY_CHECK_GOTO(lys_compile_change_config(ctx, node, rfn->flags, rfn->nodeid, 0, 1), error); |
Radek Krejci | 76b3e96 | 2018-12-14 17:01:25 +0100 | [diff] [blame] | 4354 | } |
| 4355 | |
| 4356 | /* mandatory */ |
| 4357 | if (rfn->flags & LYS_MAND_MASK) { |
Radek Krejci | f1421c2 | 2019-02-19 13:05:20 +0100 | [diff] [blame] | 4358 | LY_CHECK_GOTO(lys_compile_change_mandatory(ctx, node, rfn->flags, rfn->nodeid, 1), error); |
Radek Krejci | 76b3e96 | 2018-12-14 17:01:25 +0100 | [diff] [blame] | 4359 | } |
Radek Krejci | 9a54f1f | 2019-01-07 13:47:55 +0100 | [diff] [blame] | 4360 | |
| 4361 | /* presence */ |
| 4362 | if (rfn->presence) { |
| 4363 | if (node->nodetype != LYS_CONTAINER) { |
| 4364 | LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SEMANTICS, |
| 4365 | "Invalid refine of presence statement in \"%s\" - %s cannot hold the presence statement.", |
| 4366 | rfn->nodeid, lys_nodetype2str(node->nodetype)); |
| 4367 | goto error; |
| 4368 | } |
| 4369 | node->flags |= LYS_PRESENCE; |
| 4370 | } |
Radek Krejci | 9a564c9 | 2019-01-07 14:53:57 +0100 | [diff] [blame] | 4371 | |
| 4372 | /* must */ |
| 4373 | if (rfn->musts) { |
| 4374 | switch (node->nodetype) { |
| 4375 | case LYS_LEAF: |
| 4376 | COMPILE_ARRAY_GOTO(ctx, rfn->musts, ((struct lysc_node_leaf*)node)->musts, options, u, lys_compile_must, ret, error); |
| 4377 | break; |
| 4378 | case LYS_LEAFLIST: |
| 4379 | COMPILE_ARRAY_GOTO(ctx, rfn->musts, ((struct lysc_node_leaflist*)node)->musts, options, u, lys_compile_must, ret, error); |
| 4380 | break; |
| 4381 | case LYS_LIST: |
| 4382 | COMPILE_ARRAY_GOTO(ctx, rfn->musts, ((struct lysc_node_list*)node)->musts, options, u, lys_compile_must, ret, error); |
| 4383 | break; |
| 4384 | case LYS_CONTAINER: |
| 4385 | COMPILE_ARRAY_GOTO(ctx, rfn->musts, ((struct lysc_node_container*)node)->musts, options, u, lys_compile_must, ret, error); |
| 4386 | break; |
| 4387 | case LYS_ANYXML: |
| 4388 | case LYS_ANYDATA: |
| 4389 | COMPILE_ARRAY_GOTO(ctx, rfn->musts, ((struct lysc_node_anydata*)node)->musts, options, u, lys_compile_must, ret, error); |
| 4390 | break; |
| 4391 | default: |
| 4392 | LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SEMANTICS, |
| 4393 | "Invalid refine of must statement in \"%s\" - %s cannot hold any must statement.", |
| 4394 | rfn->nodeid, lys_nodetype2str(node->nodetype)); |
| 4395 | goto error; |
| 4396 | } |
| 4397 | } |
Radek Krejci | 6b22ab7 | 2019-01-07 15:39:20 +0100 | [diff] [blame] | 4398 | |
| 4399 | /* min/max-elements */ |
| 4400 | if (rfn->flags & (LYS_SET_MAX | LYS_SET_MIN)) { |
| 4401 | switch (node->nodetype) { |
| 4402 | case LYS_LEAFLIST: |
| 4403 | if (rfn->flags & LYS_SET_MAX) { |
| 4404 | ((struct lysc_node_leaflist*)node)->max = rfn->max ? rfn->max : (uint32_t)-1; |
| 4405 | } |
| 4406 | if (rfn->flags & LYS_SET_MIN) { |
| 4407 | ((struct lysc_node_leaflist*)node)->min = rfn->min; |
Radek Krejci | fe90963 | 2019-02-12 15:34:42 +0100 | [diff] [blame] | 4408 | if (rfn->min) { |
| 4409 | node->flags |= LYS_MAND_TRUE; |
| 4410 | lys_compile_mandatory_parents(node->parent, 1); |
| 4411 | } else { |
| 4412 | node->flags &= ~LYS_MAND_TRUE; |
| 4413 | lys_compile_mandatory_parents(node->parent, 0); |
| 4414 | } |
Radek Krejci | 6b22ab7 | 2019-01-07 15:39:20 +0100 | [diff] [blame] | 4415 | } |
| 4416 | break; |
| 4417 | case LYS_LIST: |
| 4418 | if (rfn->flags & LYS_SET_MAX) { |
| 4419 | ((struct lysc_node_list*)node)->max = rfn->max ? rfn->max : (uint32_t)-1; |
| 4420 | } |
| 4421 | if (rfn->flags & LYS_SET_MIN) { |
| 4422 | ((struct lysc_node_list*)node)->min = rfn->min; |
Radek Krejci | fe90963 | 2019-02-12 15:34:42 +0100 | [diff] [blame] | 4423 | if (rfn->min) { |
| 4424 | node->flags |= LYS_MAND_TRUE; |
| 4425 | lys_compile_mandatory_parents(node->parent, 1); |
| 4426 | } else { |
| 4427 | node->flags &= ~LYS_MAND_TRUE; |
| 4428 | lys_compile_mandatory_parents(node->parent, 0); |
| 4429 | } |
Radek Krejci | 6b22ab7 | 2019-01-07 15:39:20 +0100 | [diff] [blame] | 4430 | } |
| 4431 | break; |
| 4432 | default: |
| 4433 | LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SEMANTICS, |
| 4434 | "Invalid refine of %s statement in \"%s\" - %s cannot hold this statement.", |
| 4435 | (rfn->flags & LYS_SET_MAX) ? "max-elements" : "min-elements", rfn->nodeid, lys_nodetype2str(node->nodetype)); |
| 4436 | goto error; |
| 4437 | } |
| 4438 | } |
Radek Krejci | f008908 | 2019-01-07 16:42:01 +0100 | [diff] [blame] | 4439 | |
| 4440 | /* if-feature */ |
| 4441 | if (rfn->iffeatures) { |
| 4442 | /* any node in compiled tree can get additional if-feature, so do not check nodetype */ |
| 4443 | COMPILE_ARRAY_GOTO(ctx, rfn->iffeatures, node->iffeatures, options, u, lys_compile_iffeature, ret, error); |
| 4444 | } |
Radek Krejci | 01342af | 2019-01-03 15:18:08 +0100 | [diff] [blame] | 4445 | } |
| 4446 | /* fix connection of the children nodes from fake context node back into the parent */ |
| 4447 | if (context_node_fake.child) { |
| 4448 | context_node_fake.child->prev = child; |
| 4449 | } |
| 4450 | LY_LIST_FOR(context_node_fake.child, child) { |
| 4451 | child->parent = parent; |
Radek Krejci | e86bf77 | 2018-12-14 11:39:53 +0100 | [diff] [blame] | 4452 | } |
| 4453 | |
Radek Krejci | f2271f1 | 2019-01-07 16:42:23 +0100 | [diff] [blame] | 4454 | /* do some additional checks of the changed nodes when all the refines are applied */ |
| 4455 | for (u = 0; u < refined.count; ++u) { |
| 4456 | node = (struct lysc_node*)refined.objs[u]; |
| 4457 | rfn = &uses_p->refines[u]; |
| 4458 | |
| 4459 | /* check possible conflict with default value (default added, mandatory left true) */ |
| 4460 | if ((node->flags & LYS_MAND_TRUE) && |
| 4461 | (((node->nodetype & LYS_CHOICE) && ((struct lysc_node_choice*)node)->dflt) || |
| 4462 | ((node->nodetype & LYS_LEAF) && (node->flags & LYS_SET_DFLT)))) { |
| 4463 | LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SEMANTICS, |
| 4464 | "Invalid refine of default in \"%s\" - the node is mandatory.", rfn->nodeid); |
| 4465 | goto error; |
| 4466 | } |
| 4467 | |
| 4468 | if (rfn->flags & (LYS_SET_MAX | LYS_SET_MIN)) { |
| 4469 | if (node->nodetype == LYS_LIST) { |
| 4470 | min = ((struct lysc_node_list*)node)->min; |
| 4471 | max = ((struct lysc_node_list*)node)->max; |
| 4472 | } else { |
| 4473 | min = ((struct lysc_node_leaflist*)node)->min; |
| 4474 | max = ((struct lysc_node_leaflist*)node)->max; |
| 4475 | } |
| 4476 | if (min > max) { |
| 4477 | LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SEMANTICS, |
| 4478 | "Invalid refine of %s statement in \"%s\" - \"min-elements\" is bigger than \"max-elements\".", |
| 4479 | (rfn->flags & LYS_SET_MAX) ? "max-elements" : "min-elements", rfn->nodeid); |
| 4480 | goto error; |
| 4481 | } |
| 4482 | } |
| 4483 | } |
| 4484 | |
Radek Krejci | e86bf77 | 2018-12-14 11:39:53 +0100 | [diff] [blame] | 4485 | ret = LY_SUCCESS; |
| 4486 | error: |
| 4487 | /* reload previous context's mod_def */ |
| 4488 | ctx->mod_def = mod_old; |
| 4489 | /* remove the grouping from the stack for circular groupings dependency check */ |
| 4490 | ly_set_rm_index(&ctx->groupings, ctx->groupings.count - 1, NULL); |
| 4491 | assert(ctx->groupings.count == grp_stack_count); |
Radek Krejci | f2271f1 | 2019-01-07 16:42:23 +0100 | [diff] [blame] | 4492 | ly_set_erase(&refined, NULL); |
Radek Krejci | 3641f56 | 2019-02-13 15:38:40 +0100 | [diff] [blame] | 4493 | LY_ARRAY_FREE(augments); |
Radek Krejci | e86bf77 | 2018-12-14 11:39:53 +0100 | [diff] [blame] | 4494 | |
| 4495 | return ret; |
| 4496 | } |
| 4497 | |
Radek Krejci | fe90963 | 2019-02-12 15:34:42 +0100 | [diff] [blame] | 4498 | |
Radek Krejci | e86bf77 | 2018-12-14 11:39:53 +0100 | [diff] [blame] | 4499 | /** |
Radek Krejci | a304538 | 2018-11-22 14:30:31 +0100 | [diff] [blame] | 4500 | * @brief Compile parsed schema node information. |
| 4501 | * @param[in] ctx Compile context |
| 4502 | * @param[in] node_p Parsed schema node. |
| 4503 | * @param[in] options Various options to modify compiler behavior, see [compile flags](@ref scflags). |
| 4504 | * @param[in] parent Compiled parent node where the current node is supposed to be connected. It is |
| 4505 | * NULL for top-level nodes, in such a case the module where the node will be connected is taken from |
| 4506 | * the compile context. |
Radek Krejci | b1b5915 | 2019-01-07 13:21:56 +0100 | [diff] [blame] | 4507 | * @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). |
| 4508 | * 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] | 4509 | * @return LY_ERR value - LY_SUCCESS or LY_EVALID. |
| 4510 | */ |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 4511 | static LY_ERR |
Radek Krejci | b1b5915 | 2019-01-07 13:21:56 +0100 | [diff] [blame] | 4512 | lys_compile_node(struct lysc_ctx *ctx, struct lysp_node *node_p, int options, struct lysc_node *parent, uint16_t uses_status) |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 4513 | { |
| 4514 | LY_ERR ret = LY_EVALID; |
Radek Krejci | 056d0a8 | 2018-12-06 16:57:25 +0100 | [diff] [blame] | 4515 | struct lysc_node *node; |
| 4516 | struct lysc_node_case *cs; |
Radek Krejci | 00b874b | 2019-02-12 10:54:50 +0100 | [diff] [blame] | 4517 | struct lysc_when **when; |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 4518 | unsigned int u; |
| 4519 | LY_ERR (*node_compile_spec)(struct lysc_ctx*, struct lysp_node*, int, struct lysc_node*); |
| 4520 | |
| 4521 | switch (node_p->nodetype) { |
| 4522 | case LYS_CONTAINER: |
| 4523 | node = (struct lysc_node*)calloc(1, sizeof(struct lysc_node_container)); |
| 4524 | node_compile_spec = lys_compile_node_container; |
| 4525 | break; |
| 4526 | case LYS_LEAF: |
| 4527 | node = (struct lysc_node*)calloc(1, sizeof(struct lysc_node_leaf)); |
| 4528 | node_compile_spec = lys_compile_node_leaf; |
| 4529 | break; |
| 4530 | case LYS_LIST: |
| 4531 | node = (struct lysc_node*)calloc(1, sizeof(struct lysc_node_list)); |
Radek Krejci | 9bb94eb | 2018-12-04 16:48:35 +0100 | [diff] [blame] | 4532 | node_compile_spec = lys_compile_node_list; |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 4533 | break; |
| 4534 | case LYS_LEAFLIST: |
| 4535 | node = (struct lysc_node*)calloc(1, sizeof(struct lysc_node_leaflist)); |
Radek Krejci | 0e5d838 | 2018-11-28 16:37:53 +0100 | [diff] [blame] | 4536 | node_compile_spec = lys_compile_node_leaflist; |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 4537 | break; |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 4538 | case LYS_CHOICE: |
| 4539 | node = (struct lysc_node*)calloc(1, sizeof(struct lysc_node_choice)); |
Radek Krejci | 056d0a8 | 2018-12-06 16:57:25 +0100 | [diff] [blame] | 4540 | node_compile_spec = lys_compile_node_choice; |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 4541 | break; |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 4542 | case LYS_ANYXML: |
| 4543 | case LYS_ANYDATA: |
| 4544 | node = (struct lysc_node*)calloc(1, sizeof(struct lysc_node_anydata)); |
Radek Krejci | 9800fb8 | 2018-12-13 14:26:23 +0100 | [diff] [blame] | 4545 | node_compile_spec = lys_compile_node_any; |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 4546 | break; |
Radek Krejci | e86bf77 | 2018-12-14 11:39:53 +0100 | [diff] [blame] | 4547 | case LYS_USES: |
| 4548 | return lys_compile_uses(ctx, (struct lysp_node_uses*)node_p, options, parent); |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 4549 | default: |
| 4550 | LOGINT(ctx->ctx); |
| 4551 | return LY_EINT; |
| 4552 | } |
| 4553 | LY_CHECK_ERR_RET(!node, LOGMEM(ctx->ctx), LY_EMEM); |
| 4554 | node->nodetype = node_p->nodetype; |
| 4555 | node->module = ctx->mod; |
| 4556 | node->prev = node; |
Radek Krejci | 0e5d838 | 2018-11-28 16:37:53 +0100 | [diff] [blame] | 4557 | node->flags = node_p->flags & LYS_FLAGS_COMPILED_MASK; |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 4558 | |
| 4559 | /* config */ |
| 4560 | if (!(node->flags & LYS_CONFIG_MASK)) { |
| 4561 | /* config not explicitely set, inherit it from parent */ |
| 4562 | if (parent) { |
| 4563 | node->flags |= parent->flags & LYS_CONFIG_MASK; |
| 4564 | } else { |
| 4565 | /* default is config true */ |
| 4566 | node->flags |= LYS_CONFIG_W; |
| 4567 | } |
Radek Krejci | 93dcc39 | 2019-02-19 10:43:38 +0100 | [diff] [blame] | 4568 | } else { |
| 4569 | /* config set explicitely */ |
| 4570 | node->flags |= LYS_SET_CONFIG; |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 4571 | } |
Radek Krejci | 9bb94eb | 2018-12-04 16:48:35 +0100 | [diff] [blame] | 4572 | if (parent && (parent->flags & LYS_CONFIG_R) && (node->flags & LYS_CONFIG_W)) { |
| 4573 | LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SEMANTICS, |
| 4574 | "Configuration node cannot be child of any state data node."); |
| 4575 | goto error; |
| 4576 | } |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 4577 | |
Radek Krejci | a6d5773 | 2018-11-29 13:40:37 +0100 | [diff] [blame] | 4578 | /* *list ordering */ |
| 4579 | if (node->nodetype & (LYS_LIST | LYS_LEAFLIST)) { |
| 4580 | if ((node->flags & LYS_CONFIG_R) && (node->flags & LYS_ORDBY_MASK)) { |
| 4581 | LOGWRN(ctx->ctx, "The ordered-by statement is ignored in lists representing state data, " |
| 4582 | "RPC/action output parameters or notification content (%s).", ctx->path); |
| 4583 | node->flags &= ~LYS_ORDBY_MASK; |
| 4584 | node->flags |= LYS_ORDBY_SYSTEM; |
| 4585 | } else if (!(node->flags & LYS_ORDBY_MASK)) { |
| 4586 | /* default ordering is system */ |
| 4587 | node->flags |= LYS_ORDBY_SYSTEM; |
| 4588 | } |
| 4589 | } |
| 4590 | |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 4591 | /* status - it is not inherited by specification, but it does not make sense to have |
| 4592 | * current in deprecated or deprecated in obsolete, so we do print warning and inherit status */ |
Radek Krejci | 056d0a8 | 2018-12-06 16:57:25 +0100 | [diff] [blame] | 4593 | if (!parent || parent->nodetype != LYS_CHOICE) { |
| 4594 | /* in case of choice/case's children, postpone the check to the moment we know if |
| 4595 | * the parent is choice (parent here) or some case (so we have to get its flags to check) */ |
Radek Krejci | b1b5915 | 2019-01-07 13:21:56 +0100 | [diff] [blame] | 4596 | LY_CHECK_GOTO(lys_compile_status(ctx, node, uses_status ? uses_status : (parent ? parent->flags : 0)), error); |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 4597 | } |
| 4598 | |
| 4599 | if (!(options & LYSC_OPT_FREE_SP)) { |
| 4600 | node->sp = node_p; |
| 4601 | } |
| 4602 | DUP_STRING(ctx->ctx, node_p->name, node->name); |
Radek Krejci | 12fb914 | 2019-01-08 09:45:30 +0100 | [diff] [blame] | 4603 | DUP_STRING(ctx->ctx, node_p->dsc, node->dsc); |
| 4604 | DUP_STRING(ctx->ctx, node_p->ref, node->ref); |
Radek Krejci | 00b874b | 2019-02-12 10:54:50 +0100 | [diff] [blame] | 4605 | if (node_p->when) { |
| 4606 | LY_ARRAY_NEW_GOTO(ctx->ctx, node->when, when, ret, error); |
| 4607 | ret = lys_compile_when(ctx, node_p->when, options, when); |
| 4608 | LY_CHECK_GOTO(ret, error); |
Radek Krejci | b56c750 | 2019-02-13 14:19:54 +0100 | [diff] [blame] | 4609 | (*when)->context = lysc_xpath_context(node); |
Radek Krejci | 00b874b | 2019-02-12 10:54:50 +0100 | [diff] [blame] | 4610 | } |
Radek Krejci | 9800fb8 | 2018-12-13 14:26:23 +0100 | [diff] [blame] | 4611 | COMPILE_ARRAY_GOTO(ctx, node_p->iffeatures, node->iffeatures, options, u, lys_compile_iffeature, ret, error); |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 4612 | COMPILE_ARRAY_GOTO(ctx, node_p->exts, node->exts, options, u, lys_compile_ext, ret, error); |
| 4613 | |
| 4614 | /* nodetype-specific part */ |
| 4615 | LY_CHECK_GOTO(node_compile_spec(ctx, node_p, options, node), error); |
| 4616 | |
Radek Krejci | fe90963 | 2019-02-12 15:34:42 +0100 | [diff] [blame] | 4617 | /* inherit LYS_MAND_TRUE in parent containers */ |
| 4618 | if (node->flags & LYS_MAND_TRUE) { |
| 4619 | lys_compile_mandatory_parents(parent, 1); |
| 4620 | } |
| 4621 | |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 4622 | /* insert into parent's children */ |
Radek Krejci | a304538 | 2018-11-22 14:30:31 +0100 | [diff] [blame] | 4623 | if (parent) { |
| 4624 | if (parent->nodetype == LYS_CHOICE) { |
Radek Krejci | 056d0a8 | 2018-12-06 16:57:25 +0100 | [diff] [blame] | 4625 | cs = lys_compile_node_case(ctx, node_p->parent, options, (struct lysc_node_choice*)parent, node); |
| 4626 | LY_CHECK_ERR_GOTO(!cs, ret = LY_EVALID, error); |
Radek Krejci | b1b5915 | 2019-01-07 13:21:56 +0100 | [diff] [blame] | 4627 | if (uses_status) { |
| 4628 | |
| 4629 | } |
Radek Krejci | 056d0a8 | 2018-12-06 16:57:25 +0100 | [diff] [blame] | 4630 | /* the postponed status check of the node and its real parent - in case of implicit case, |
Radek Krejci | b1b5915 | 2019-01-07 13:21:56 +0100 | [diff] [blame] | 4631 | * it directly gets the same status flags as the choice; |
| 4632 | * uses_status cannot be applied here since uses cannot be child statement of choice */ |
| 4633 | LY_CHECK_GOTO(lys_compile_status(ctx, node, cs->flags), error); |
Radek Krejci | 056d0a8 | 2018-12-06 16:57:25 +0100 | [diff] [blame] | 4634 | node->parent = (struct lysc_node*)cs; |
| 4635 | } else { /* other than choice */ |
| 4636 | node->parent = parent; |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 4637 | } |
Radek Krejci | 95710c9 | 2019-02-11 15:49:55 +0100 | [diff] [blame] | 4638 | LY_CHECK_RET(lys_compile_node_connect(ctx, parent->nodetype == LYS_CASE ? parent->parent : parent, node), LY_EVALID); |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 4639 | } else { |
| 4640 | /* top-level element */ |
| 4641 | if (!ctx->mod->compiled->data) { |
| 4642 | ctx->mod->compiled->data = node; |
| 4643 | } else { |
| 4644 | /* insert at the end of the module's top-level nodes list */ |
| 4645 | ctx->mod->compiled->data->prev->next = node; |
| 4646 | node->prev = ctx->mod->compiled->data->prev; |
| 4647 | ctx->mod->compiled->data->prev = node; |
| 4648 | } |
Radek Krejci | 76b3e96 | 2018-12-14 17:01:25 +0100 | [diff] [blame] | 4649 | if (lys_compile_node_uniqness(ctx, ctx->mod->compiled->data, ctx->mod->compiled->rpcs, |
| 4650 | ctx->mod->compiled->notifs, node->name, node)) { |
| 4651 | return LY_EVALID; |
| 4652 | } |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 4653 | } |
| 4654 | |
| 4655 | return LY_SUCCESS; |
| 4656 | |
| 4657 | error: |
| 4658 | lysc_node_free(ctx->ctx, node); |
| 4659 | return ret; |
| 4660 | } |
| 4661 | |
Radek Krejci | ccd20f1 | 2019-02-15 14:12:27 +0100 | [diff] [blame] | 4662 | static void |
| 4663 | lysc_disconnect(struct lysc_node *node) |
| 4664 | { |
Radek Krejci | 0a048dd | 2019-02-18 16:01:43 +0100 | [diff] [blame] | 4665 | struct lysc_node *parent, *child, *prev = NULL, *next; |
| 4666 | struct lysc_node_case *cs = NULL; |
Radek Krejci | ccd20f1 | 2019-02-15 14:12:27 +0100 | [diff] [blame] | 4667 | int remove_cs = 0; |
| 4668 | |
| 4669 | parent = node->parent; |
| 4670 | |
| 4671 | /* parent's first child */ |
| 4672 | if (!parent) { |
| 4673 | return; |
| 4674 | } |
| 4675 | if (parent->nodetype == LYS_CHOICE) { |
Radek Krejci | 0a048dd | 2019-02-18 16:01:43 +0100 | [diff] [blame] | 4676 | cs = (struct lysc_node_case*)node; |
| 4677 | } else if (parent->nodetype == LYS_CASE) { |
| 4678 | /* disconnecting some node in a case */ |
| 4679 | cs = (struct lysc_node_case*)parent; |
| 4680 | parent = cs->parent; |
| 4681 | for (child = cs->child; child && child->parent == (struct lysc_node*)cs; child = child->next) { |
| 4682 | if (child == node) { |
| 4683 | if (cs->child == child) { |
| 4684 | if (!child->next || child->next->parent != (struct lysc_node*)cs) { |
| 4685 | /* case with a single child -> remove also the case */ |
| 4686 | child->parent = NULL; |
| 4687 | remove_cs = 1; |
| 4688 | } else { |
| 4689 | cs->child = child->next; |
Radek Krejci | ccd20f1 | 2019-02-15 14:12:27 +0100 | [diff] [blame] | 4690 | } |
| 4691 | } |
Radek Krejci | 0a048dd | 2019-02-18 16:01:43 +0100 | [diff] [blame] | 4692 | break; |
Radek Krejci | ccd20f1 | 2019-02-15 14:12:27 +0100 | [diff] [blame] | 4693 | } |
| 4694 | } |
Radek Krejci | 0a048dd | 2019-02-18 16:01:43 +0100 | [diff] [blame] | 4695 | if (!remove_cs) { |
| 4696 | cs = NULL; |
| 4697 | } |
| 4698 | } else if (lysc_node_children(parent) == node) { |
| 4699 | *lysc_node_children_p(parent) = node->next; |
| 4700 | } |
| 4701 | |
| 4702 | if (cs) { |
| 4703 | if (remove_cs) { |
| 4704 | /* cs has only one child which is being also removed */ |
| 4705 | lysc_disconnect((struct lysc_node*)cs); |
| 4706 | lysc_node_free(cs->module->ctx, (struct lysc_node*)cs); |
| 4707 | } else { |
Radek Krejci | ccd20f1 | 2019-02-15 14:12:27 +0100 | [diff] [blame] | 4708 | if (((struct lysc_node_choice*)parent)->dflt == cs) { |
| 4709 | /* default case removed */ |
| 4710 | ((struct lysc_node_choice*)parent)->dflt = NULL; |
| 4711 | } |
| 4712 | if (((struct lysc_node_choice*)parent)->cases == cs) { |
| 4713 | /* first case removed */ |
| 4714 | ((struct lysc_node_choice*)parent)->cases = (struct lysc_node_case*)cs->next; |
| 4715 | } |
Radek Krejci | 0a048dd | 2019-02-18 16:01:43 +0100 | [diff] [blame] | 4716 | if (cs->child) { |
| 4717 | /* cs will be removed and disconnected from its siblings, but we have to take care also about its children */ |
| 4718 | if (cs->child->prev->parent != (struct lysc_node*)cs) { |
| 4719 | prev = cs->child->prev; |
| 4720 | } /* else all the children are under a single case */ |
| 4721 | LY_LIST_FOR_SAFE(cs->child, next, child) { |
| 4722 | if (child->parent != (struct lysc_node*)cs) { |
| 4723 | break; |
| 4724 | } |
| 4725 | lysc_node_free(node->module->ctx, child); |
| 4726 | } |
| 4727 | if (prev) { |
| 4728 | if (prev->next) { |
| 4729 | prev->next = child; |
| 4730 | } |
| 4731 | if (child) { |
| 4732 | child->prev = prev; |
| 4733 | } else { |
| 4734 | /* link from the first child under the cases */ |
| 4735 | ((struct lysc_node_choice*)cs->parent)->cases->child->prev = prev; |
| 4736 | } |
| 4737 | } |
Radek Krejci | ccd20f1 | 2019-02-15 14:12:27 +0100 | [diff] [blame] | 4738 | } |
| 4739 | } |
Radek Krejci | ccd20f1 | 2019-02-15 14:12:27 +0100 | [diff] [blame] | 4740 | } |
| 4741 | |
| 4742 | /* siblings */ |
Radek Krejci | 0a048dd | 2019-02-18 16:01:43 +0100 | [diff] [blame] | 4743 | if (node->prev->next) { |
| 4744 | node->prev->next = node->next; |
| 4745 | } |
Radek Krejci | ccd20f1 | 2019-02-15 14:12:27 +0100 | [diff] [blame] | 4746 | if (node->next) { |
| 4747 | node->next->prev = node->prev; |
Radek Krejci | 0a048dd | 2019-02-18 16:01:43 +0100 | [diff] [blame] | 4748 | } else if (node->nodetype != LYS_CASE) { |
| 4749 | child = (struct lysc_node*)lysc_node_children(parent); |
| 4750 | if (child) { |
| 4751 | child->prev = node->prev; |
| 4752 | } |
| 4753 | } else if (((struct lysc_node_choice*)parent)->cases) { |
| 4754 | ((struct lysc_node_choice*)parent)->cases->prev = node->prev; |
Radek Krejci | ccd20f1 | 2019-02-15 14:12:27 +0100 | [diff] [blame] | 4755 | } |
| 4756 | } |
| 4757 | |
| 4758 | LY_ERR |
| 4759 | lys_compile_deviations(struct lysc_ctx *ctx, struct lysp_module *mod_p, int options) |
| 4760 | { |
| 4761 | LY_ERR ret = LY_EVALID; |
| 4762 | struct ly_set devs_p = {0}; |
| 4763 | struct ly_set targets = {0}; |
| 4764 | struct lysc_node *target; /* target target of the deviation */ |
Radek Krejci | 7af6424 | 2019-02-18 13:07:53 +0100 | [diff] [blame] | 4765 | struct lysc_node_list *list; |
Radek Krejci | ccd20f1 | 2019-02-15 14:12:27 +0100 | [diff] [blame] | 4766 | struct lysp_deviation *dev; |
| 4767 | struct lysp_deviate *d, **dp_new; |
| 4768 | struct lysp_deviate_add *d_add; |
| 4769 | struct lysp_deviate_del *d_del; |
| 4770 | struct lysp_deviate_rpl *d_rpl; |
Radek Krejci | 7af6424 | 2019-02-18 13:07:53 +0100 | [diff] [blame] | 4771 | unsigned int u, v, x, y, z; |
Radek Krejci | ccd20f1 | 2019-02-15 14:12:27 +0100 | [diff] [blame] | 4772 | struct lysc_deviation { |
| 4773 | const char *nodeid; |
| 4774 | struct lysc_node *target; /* target node of the deviation */ |
| 4775 | struct lysp_deviate** deviates;/* sized array of pointers to parsed deviate statements to apply on target */ |
| 4776 | uint8_t not_supported; /* flag if deviates contains not-supported deviate */ |
| 4777 | } **devs = NULL; |
| 4778 | int i; |
| 4779 | size_t prefix_len, name_len; |
| 4780 | const char *prefix, *name, *nodeid; |
| 4781 | struct lys_module *mod; |
Radek Krejci | 551b12c | 2019-02-19 16:11:21 +0100 | [diff] [blame^] | 4782 | uint32_t min, max; |
Radek Krejci | ccd20f1 | 2019-02-15 14:12:27 +0100 | [diff] [blame] | 4783 | |
| 4784 | /* get all deviations from the module and all its submodules ... */ |
| 4785 | LY_ARRAY_FOR(mod_p->deviations, u) { |
| 4786 | ly_set_add(&devs_p, &mod_p->deviations[u], LY_SET_OPT_USEASLIST); |
| 4787 | } |
| 4788 | LY_ARRAY_FOR(mod_p->includes, v) { |
| 4789 | LY_ARRAY_FOR(mod_p->includes[v].submodule->deviations, u) { |
| 4790 | ly_set_add(&devs_p, &mod_p->includes[v].submodule->deviations[u], LY_SET_OPT_USEASLIST); |
| 4791 | } |
| 4792 | } |
| 4793 | if (!devs_p.count) { |
| 4794 | /* nothing to do */ |
| 4795 | return LY_SUCCESS; |
| 4796 | } |
| 4797 | |
| 4798 | /* ... and group them by the target node */ |
| 4799 | devs = calloc(devs_p.count, sizeof *devs); |
| 4800 | for (u = 0; u < devs_p.count; ++u) { |
| 4801 | dev = devs_p.objs[u]; |
| 4802 | |
| 4803 | /* resolve the target */ |
Radek Krejci | 7af6424 | 2019-02-18 13:07:53 +0100 | [diff] [blame] | 4804 | LY_CHECK_GOTO(lys_resolve_schema_nodeid(ctx, dev->nodeid, 0, NULL, ctx->mod, 0, 1, (const struct lysc_node**)&target), cleanup); |
Radek Krejci | ccd20f1 | 2019-02-15 14:12:27 +0100 | [diff] [blame] | 4805 | |
| 4806 | /* insert into the set of targets with duplicity detection */ |
| 4807 | i = ly_set_add(&targets, target, 0); |
| 4808 | if (!devs[i]) { |
| 4809 | /* new record */ |
| 4810 | devs[i] = calloc(1, sizeof **devs); |
| 4811 | devs[i]->target = target; |
| 4812 | devs[i]->nodeid = dev->nodeid; |
| 4813 | } |
| 4814 | /* add deviates into the deviation's list of deviates */ |
| 4815 | for (d = dev->deviates; d; d = d->next) { |
| 4816 | LY_ARRAY_NEW_GOTO(ctx->ctx, devs[i]->deviates, dp_new, ret, cleanup); |
| 4817 | *dp_new = d; |
| 4818 | if (d->mod == LYS_DEV_NOT_SUPPORTED) { |
| 4819 | devs[i]->not_supported = 1; |
| 4820 | } |
| 4821 | } |
| 4822 | } |
| 4823 | |
| 4824 | /* MACROS for deviates checking */ |
| 4825 | #define DEV_CHECK_NODETYPE(NODETYPES, DEVTYPE, PROPERTY) \ |
| 4826 | if (!(devs[u]->target->nodetype & (NODETYPES))) { \ |
| 4827 | LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LY_VCODE_DEV_NODETYPE, devs[u]->nodeid, lys_nodetype2str(devs[u]->target->nodetype), DEVTYPE, PROPERTY);\ |
| 4828 | goto cleanup; \ |
| 4829 | } |
| 4830 | |
| 4831 | #define DEV_CHECK_CARDINALITY(ARRAY, MAX, PROPERTY) \ |
| 4832 | if (LY_ARRAY_SIZE(ARRAY) > MAX) { \ |
| 4833 | LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SEMANTICS, "Invalid deviation (%s) of %s with too many (%u) %s properties.", \ |
| 4834 | devs[u]->nodeid, lys_nodetype2str(devs[u]->target->nodetype), LY_ARRAY_SIZE(ARRAY), PROPERTY); \ |
| 4835 | goto cleanup; \ |
| 4836 | } |
| 4837 | |
| 4838 | #define DEV_CHECK_NONPRESENCE(TYPE, COND, MEMBER, PROPERTY, VALUEMEMBER) \ |
Radek Krejci | 93dcc39 | 2019-02-19 10:43:38 +0100 | [diff] [blame] | 4839 | if (((TYPE)devs[u]->target)->MEMBER && (COND)) { \ |
Radek Krejci | ccd20f1 | 2019-02-15 14:12:27 +0100 | [diff] [blame] | 4840 | LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_REFERENCE, \ |
| 4841 | "Invalid deviation (%s) adding \"%s\" property which already exists (with value \"%s\").", \ |
| 4842 | devs[u]->nodeid, PROPERTY, ((TYPE)devs[u]->target)->VALUEMEMBER); \ |
| 4843 | goto cleanup; \ |
| 4844 | } |
| 4845 | |
Radek Krejci | 551b12c | 2019-02-19 16:11:21 +0100 | [diff] [blame^] | 4846 | #define DEV_CHECK_NONPRESENCE_UINT(TYPE, COND, MEMBER, PROPERTY) \ |
| 4847 | if (((TYPE)devs[u]->target)->MEMBER COND) { \ |
| 4848 | LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_REFERENCE, \ |
| 4849 | "Invalid deviation (%s) adding \"%s\" property which already exists (with value \"%u\").", \ |
| 4850 | devs[u]->nodeid, PROPERTY, ((TYPE)devs[u]->target)->MEMBER); \ |
| 4851 | goto cleanup; \ |
| 4852 | } |
| 4853 | |
Radek Krejci | ccd20f1 | 2019-02-15 14:12:27 +0100 | [diff] [blame] | 4854 | #define DEV_CHECK_PRESENCE(TYPE, COND, MEMBER, DEVTYPE, PROPERTY, VALUE) \ |
| 4855 | if (!((TYPE)devs[u]->target)->MEMBER || COND) { \ |
| 4856 | LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LY_VCODE_DEV_NOT_PRESENT, devs[u]->nodeid, DEVTYPE, PROPERTY, VALUE); \ |
| 4857 | goto cleanup; \ |
| 4858 | } |
| 4859 | |
Radek Krejci | 551b12c | 2019-02-19 16:11:21 +0100 | [diff] [blame^] | 4860 | #define DEV_CHECK_PRESENCE_UINT(TYPE, COND, MEMBER, PROPERTY) \ |
| 4861 | if (!(((TYPE)devs[u]->target)->MEMBER COND)) { \ |
| 4862 | LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_REFERENCE, \ |
| 4863 | "Invalid deviation (%s) replacing with \"%s\" property \"%u\" which is not present.", \ |
| 4864 | devs[u]->nodeid, PROPERTY, d_rpl->MEMBER); \ |
| 4865 | goto cleanup; \ |
| 4866 | } |
| 4867 | |
Radek Krejci | ccd20f1 | 2019-02-15 14:12:27 +0100 | [diff] [blame] | 4868 | #define DEV_DEL_MEMBER(TYPE, MEMBER_TRG, MEMBER_DEV, DELFUNC, PROPERTY) \ |
| 4869 | DEV_CHECK_PRESENCE(TYPE, 0, MEMBER_TRG, "deleting", PROPERTY, d_del->MEMBER_DEV); \ |
| 4870 | if (strcmp(((TYPE)devs[u]->target)->MEMBER_TRG, d_del->MEMBER_DEV)) { \ |
| 4871 | LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_REFERENCE, \ |
| 4872 | "Invalid deviation (%s) deleting \"%s\" property \"%s\" which does not match the target's property value \"%s\".", \ |
| 4873 | devs[u]->nodeid, PROPERTY, d_del->MEMBER_DEV, ((TYPE)devs[u]->target)->MEMBER_TRG); \ |
| 4874 | goto cleanup; \ |
| 4875 | } \ |
| 4876 | DELFUNC(ctx->ctx, ((TYPE)devs[u]->target)->MEMBER_TRG); \ |
| 4877 | ((TYPE)devs[u]->target)->MEMBER_TRG = NULL; |
| 4878 | |
| 4879 | #define DEV_DEL_ARRAY(TYPE, ARRAY, VALMEMBER, VALMEMBER_CMP, DELFUNC_DEREF, DELFUNC, PROPERTY) \ |
| 4880 | DEV_CHECK_PRESENCE(TYPE, 0, ARRAY, "deleting", PROPERTY, d_del->ARRAY[0]VALMEMBER); \ |
| 4881 | LY_ARRAY_FOR(d_del->ARRAY, x) { \ |
| 4882 | LY_ARRAY_FOR(((TYPE)devs[u]->target)->ARRAY, y) { \ |
| 4883 | if (!strcmp(((TYPE)devs[u]->target)->ARRAY[y]VALMEMBER_CMP, d_del->ARRAY[x]VALMEMBER)) { break; } \ |
| 4884 | } \ |
| 4885 | if (y == LY_ARRAY_SIZE(((TYPE)devs[u]->target)->ARRAY)) { \ |
| 4886 | LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_REFERENCE, \ |
| 4887 | "Invalid deviation (%s) deleting \"%s\" property \"%s\" which does not match any of the target's property values.", \ |
| 4888 | devs[u]->nodeid, PROPERTY, d_del->ARRAY[x]VALMEMBER); \ |
| 4889 | goto cleanup; \ |
| 4890 | } \ |
| 4891 | LY_ARRAY_DECREMENT(((TYPE)devs[u]->target)->ARRAY); \ |
| 4892 | DELFUNC(ctx->ctx, DELFUNC_DEREF((TYPE)devs[u]->target)->ARRAY[y]); \ |
| 4893 | memmove(&((TYPE)devs[u]->target)->ARRAY[y], \ |
| 4894 | &((TYPE)devs[u]->target)->ARRAY[y + 1], \ |
| 4895 | (LY_ARRAY_SIZE(((TYPE)devs[u]->target)->ARRAY) - y) * (sizeof *((TYPE)devs[u]->target)->ARRAY)); \ |
| 4896 | } \ |
| 4897 | if (!LY_ARRAY_SIZE(((TYPE)devs[u]->target)->ARRAY)) { \ |
| 4898 | LY_ARRAY_FREE(((TYPE)devs[u]->target)->ARRAY); \ |
| 4899 | ((TYPE)devs[u]->target)->ARRAY = NULL; \ |
| 4900 | } |
| 4901 | |
| 4902 | /* apply deviations */ |
| 4903 | for (u = 0; u < devs_p.count && devs[u]; ++u) { |
| 4904 | /* not-supported */ |
| 4905 | if (devs[u]->not_supported) { |
| 4906 | if (LY_ARRAY_SIZE(devs[u]->deviates) > 1) { |
| 4907 | LOGWRN(ctx->ctx, "Useless multiple (%u) deviates on node \"%s\" since the node is not-supported.", |
| 4908 | LY_ARRAY_SIZE(devs[u]->deviates), devs[u]->nodeid); |
| 4909 | } |
| 4910 | /* remove the target node */ |
| 4911 | lysc_disconnect(devs[u]->target); |
| 4912 | lysc_node_free(ctx->ctx, devs[u]->target); |
| 4913 | |
| 4914 | continue; |
| 4915 | } |
| 4916 | |
| 4917 | /* list of deviates (not-supported is not present in the list) */ |
| 4918 | LY_ARRAY_FOR(devs[u]->deviates, v) { |
| 4919 | d = devs[u]->deviates[v]; |
| 4920 | |
| 4921 | switch (d->mod) { |
| 4922 | case LYS_DEV_ADD: |
| 4923 | d_add = (struct lysp_deviate_add*)d; |
| 4924 | /* [units-stmt] */ |
| 4925 | if (d_add->units) { |
| 4926 | DEV_CHECK_NODETYPE(LYS_LEAF | LYS_LEAFLIST, "add", "units"); |
| 4927 | DEV_CHECK_NONPRESENCE(struct lysc_node_leaf*, (devs[u]->target->flags & LYS_SET_UNITS), units, "units", units); |
| 4928 | |
| 4929 | FREE_STRING(ctx->ctx, ((struct lysc_node_leaf*)devs[u]->target)->units); |
| 4930 | DUP_STRING(ctx->ctx, d_add->units, ((struct lysc_node_leaf*)devs[u]->target)->units); |
| 4931 | } |
| 4932 | |
| 4933 | /* *must-stmt */ |
| 4934 | if (d_add->musts) { |
| 4935 | switch (devs[u]->target->nodetype) { |
| 4936 | case LYS_CONTAINER: |
| 4937 | case LYS_LIST: |
| 4938 | COMPILE_ARRAY_GOTO(ctx, d_add->musts, ((struct lysc_node_container*)devs[u]->target)->musts, |
| 4939 | options, x, lys_compile_must, ret, cleanup); |
| 4940 | break; |
| 4941 | case LYS_LEAF: |
| 4942 | case LYS_LEAFLIST: |
| 4943 | case LYS_ANYDATA: |
| 4944 | COMPILE_ARRAY_GOTO(ctx, d_add->musts, ((struct lysc_node_leaf*)devs[u]->target)->musts, |
| 4945 | options, x, lys_compile_must, ret, cleanup); |
| 4946 | break; |
| 4947 | case LYS_NOTIF: |
| 4948 | case LYS_INOUT: |
| 4949 | /* TODO */ |
| 4950 | default: |
| 4951 | LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LY_VCODE_DEV_NODETYPE, |
Radek Krejci | 7af6424 | 2019-02-18 13:07:53 +0100 | [diff] [blame] | 4952 | devs[u]->nodeid, lys_nodetype2str(devs[u]->target->nodetype), "add", "must"); |
Radek Krejci | ccd20f1 | 2019-02-15 14:12:27 +0100 | [diff] [blame] | 4953 | goto cleanup; |
| 4954 | } |
| 4955 | } |
| 4956 | |
| 4957 | /* *unique-stmt */ |
Radek Krejci | 7af6424 | 2019-02-18 13:07:53 +0100 | [diff] [blame] | 4958 | if (d_add->uniques) { |
| 4959 | DEV_CHECK_NODETYPE(LYS_LIST, "add", "unique"); |
| 4960 | LY_CHECK_GOTO(lys_compile_node_list_unique(ctx, ctx->mod, d_add->uniques, (struct lysc_node_list*)devs[u]->target), cleanup); |
| 4961 | } |
Radek Krejci | ccd20f1 | 2019-02-15 14:12:27 +0100 | [diff] [blame] | 4962 | |
| 4963 | /* *default-stmt */ |
| 4964 | if (d_add->dflts) { |
Radek Krejci | ccd20f1 | 2019-02-15 14:12:27 +0100 | [diff] [blame] | 4965 | switch (devs[u]->target->nodetype) { |
| 4966 | case LYS_LEAF: |
| 4967 | DEV_CHECK_CARDINALITY(d_add->dflts, 1, "default"); |
| 4968 | DEV_CHECK_NONPRESENCE(struct lysc_node_leaf*, (devs[u]->target->flags & LYS_SET_DFLT), dflt, "default", dflt); |
| 4969 | if (((struct lysc_node_leaf*)devs[u]->target)->dflt) { |
| 4970 | /* first, remove the default value taken from the type */ |
| 4971 | lydict_remove(ctx->ctx, ((struct lysc_node_leaf*)devs[u]->target)->dflt); |
| 4972 | ((struct lysc_node_leaf*)devs[u]->target)->dflt = NULL; |
| 4973 | } |
| 4974 | DUP_STRING(ctx->ctx, d_add->dflts[0], ((struct lysc_node_leaf*)devs[u]->target)->dflt); |
Radek Krejci | 551b12c | 2019-02-19 16:11:21 +0100 | [diff] [blame^] | 4975 | /* mark the new default values as leaf's own */ |
| 4976 | devs[u]->target->flags |= LYS_SET_DFLT; |
Radek Krejci | ccd20f1 | 2019-02-15 14:12:27 +0100 | [diff] [blame] | 4977 | break; |
| 4978 | case LYS_LEAFLIST: |
| 4979 | if (((struct lysc_node_leaflist*)devs[u]->target)->dflts && !(devs[u]->target->flags & LYS_SET_DFLT)) { |
| 4980 | /* first, remove the default value taken from the type */ |
| 4981 | LY_ARRAY_FOR(((struct lysc_node_leaflist*)devs[u]->target)->dflts, x) { |
| 4982 | lydict_remove(ctx->ctx, ((struct lysc_node_leaflist*)devs[u]->target)->dflts[x]); |
| 4983 | } |
| 4984 | LY_ARRAY_FREE(((struct lysc_node_leaflist*)devs[u]->target)->dflts); |
| 4985 | ((struct lysc_node_leaflist*)devs[u]->target)->dflts = NULL; |
| 4986 | } |
| 4987 | /* add new default value(s) */ |
| 4988 | LY_ARRAY_CREATE_GOTO(ctx->ctx, ((struct lysc_node_leaflist*)devs[u]->target)->dflts, |
| 4989 | LY_ARRAY_SIZE(d_add->dflts), ret, cleanup); |
| 4990 | for (x = y = LY_ARRAY_SIZE(((struct lysc_node_leaflist*)devs[u]->target)->dflts); |
| 4991 | x < LY_ARRAY_SIZE(d_add->dflts) + y; ++x) { |
| 4992 | DUP_STRING(ctx->ctx, d_add->dflts[x - y], ((struct lysc_node_leaflist*)devs[u]->target)->dflts[x]); |
| 4993 | LY_ARRAY_INCREMENT(((struct lysc_node_leaflist*)devs[u]->target)->dflts); |
| 4994 | } |
Radek Krejci | 551b12c | 2019-02-19 16:11:21 +0100 | [diff] [blame^] | 4995 | /* mark the new default values as leaf-list's own */ |
Radek Krejci | ccd20f1 | 2019-02-15 14:12:27 +0100 | [diff] [blame] | 4996 | devs[u]->target->flags |= LYS_SET_DFLT; |
| 4997 | break; |
| 4998 | case LYS_CHOICE: |
| 4999 | DEV_CHECK_CARDINALITY(d_add->dflts, 1, "default"); |
| 5000 | DEV_CHECK_NONPRESENCE(struct lysc_node_choice*, 1, dflt, "default", dflt->name); |
| 5001 | /* in contrast to delete, here we strictly resolve the prefix in the module of the deviation |
| 5002 | * to allow making the default case even the augmented case from the deviating module */ |
| 5003 | if (lys_compile_deviation_set_choice_dflt(ctx, devs[u]->nodeid, d_add->dflts[0], |
| 5004 | (struct lysc_node_choice*)devs[u]->target)) { |
| 5005 | goto cleanup; |
| 5006 | } |
| 5007 | break; |
| 5008 | default: |
| 5009 | LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LY_VCODE_DEV_NODETYPE, |
Radek Krejci | 7af6424 | 2019-02-18 13:07:53 +0100 | [diff] [blame] | 5010 | devs[u]->nodeid, lys_nodetype2str(devs[u]->target->nodetype), "add", "default"); |
Radek Krejci | ccd20f1 | 2019-02-15 14:12:27 +0100 | [diff] [blame] | 5011 | goto cleanup; |
| 5012 | } |
| 5013 | } |
| 5014 | |
| 5015 | /* [config-stmt] */ |
Radek Krejci | 93dcc39 | 2019-02-19 10:43:38 +0100 | [diff] [blame] | 5016 | if (d_add->flags & LYS_CONFIG_MASK) { |
| 5017 | if (devs[u]->target->nodetype & (LYS_CASE | LYS_INOUT | LYS_ACTION | LYS_NOTIF)) { |
| 5018 | LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LY_VCODE_DEV_NODETYPE, devs[u]->nodeid, |
| 5019 | lys_nodetype2str(devs[u]->target->nodetype), "add", "config"); |
| 5020 | goto cleanup; |
| 5021 | } |
| 5022 | if (devs[u]->target->flags & LYS_SET_CONFIG) { |
| 5023 | LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_REFERENCE, |
| 5024 | "Invalid deviation (%s) adding \"config\" property which already exists (with value \"config %s\").", |
| 5025 | devs[u]->nodeid, devs[u]->target->flags & LYS_CONFIG_W ? "true" : "false"); |
| 5026 | goto cleanup; |
| 5027 | } |
| 5028 | LY_CHECK_GOTO(lys_compile_change_config(ctx, devs[u]->target, d_add->flags, devs[u]->nodeid, 0, 0), cleanup); |
| 5029 | } |
Radek Krejci | ccd20f1 | 2019-02-15 14:12:27 +0100 | [diff] [blame] | 5030 | |
| 5031 | /* [mandatory-stmt] */ |
Radek Krejci | f1421c2 | 2019-02-19 13:05:20 +0100 | [diff] [blame] | 5032 | if (d_add->flags & LYS_MAND_MASK) { |
| 5033 | if (devs[u]->target->flags & LYS_MAND_MASK) { |
| 5034 | LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_REFERENCE, |
| 5035 | "Invalid deviation (%s) adding \"mandatory\" property which already exists (with value \"mandatory %s\").", |
| 5036 | devs[u]->nodeid, devs[u]->target->flags & LYS_MAND_TRUE ? "true" : "false"); |
| 5037 | goto cleanup; |
| 5038 | } |
| 5039 | LY_CHECK_GOTO(lys_compile_change_mandatory(ctx, devs[u]->target, d_add->flags, devs[u]->nodeid, 0), cleanup); |
| 5040 | } |
Radek Krejci | ccd20f1 | 2019-02-15 14:12:27 +0100 | [diff] [blame] | 5041 | |
| 5042 | /* [min-elements-stmt] */ |
Radek Krejci | 551b12c | 2019-02-19 16:11:21 +0100 | [diff] [blame^] | 5043 | if (d_add->flags & LYS_SET_MIN) { |
| 5044 | if (devs[u]->target->nodetype == LYS_LEAFLIST) { |
| 5045 | DEV_CHECK_NONPRESENCE_UINT(struct lysc_node_leaflist*, > 0, min, "min-elements"); |
| 5046 | /* change value */ |
| 5047 | ((struct lysc_node_leaflist*)devs[u]->target)->min = d_add->min; |
| 5048 | } else if (devs[u]->target->nodetype == LYS_LIST) { |
| 5049 | DEV_CHECK_NONPRESENCE_UINT(struct lysc_node_list*, > 0, min, "min-elements"); |
| 5050 | /* change value */ |
| 5051 | ((struct lysc_node_list*)devs[u]->target)->min = d_add->min; |
| 5052 | } else { |
| 5053 | LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LY_VCODE_DEV_NODETYPE, devs[u]->nodeid, |
| 5054 | lys_nodetype2str(devs[u]->target->nodetype), "add", "min-elements"); |
| 5055 | goto cleanup; |
| 5056 | } |
| 5057 | if (d_add->min) { |
| 5058 | devs[u]->target->flags |= LYS_MAND_TRUE; |
| 5059 | } |
| 5060 | } |
Radek Krejci | ccd20f1 | 2019-02-15 14:12:27 +0100 | [diff] [blame] | 5061 | |
| 5062 | /* [max-elements-stmt] */ |
Radek Krejci | 551b12c | 2019-02-19 16:11:21 +0100 | [diff] [blame^] | 5063 | if (d_add->flags & LYS_SET_MAX) { |
| 5064 | if (devs[u]->target->nodetype == LYS_LEAFLIST) { |
| 5065 | DEV_CHECK_NONPRESENCE_UINT(struct lysc_node_leaflist*, < (uint32_t)-1, max, "max-elements"); |
| 5066 | /* change value */ |
| 5067 | ((struct lysc_node_leaflist*)devs[u]->target)->max = d_add->max ? d_add->max : (uint32_t)-1; |
| 5068 | } else if (devs[u]->target->nodetype == LYS_LIST) { |
| 5069 | DEV_CHECK_NONPRESENCE_UINT(struct lysc_node_list*, < (uint32_t)-1, max, "max-elements"); |
| 5070 | /* change value */ |
| 5071 | ((struct lysc_node_list*)devs[u]->target)->max = d_add->max ? d_add->max : (uint32_t)-1; |
| 5072 | } else { |
| 5073 | LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LY_VCODE_DEV_NODETYPE, devs[u]->nodeid, |
| 5074 | lys_nodetype2str(devs[u]->target->nodetype), "add", "max-elements"); |
| 5075 | goto cleanup; |
| 5076 | } |
| 5077 | } |
Radek Krejci | ccd20f1 | 2019-02-15 14:12:27 +0100 | [diff] [blame] | 5078 | |
| 5079 | break; |
| 5080 | case LYS_DEV_DELETE: |
| 5081 | d_del = (struct lysp_deviate_del*)d; |
| 5082 | |
| 5083 | /* [units-stmt] */ |
| 5084 | if (d_del->units) { |
| 5085 | DEV_CHECK_NODETYPE(LYS_LEAF | LYS_LEAFLIST, "delete", "units"); |
| 5086 | DEV_DEL_MEMBER(struct lysc_node_leaf*, units, units, lydict_remove, "units"); |
| 5087 | } |
| 5088 | |
| 5089 | /* *must-stmt */ |
| 5090 | if (d_del->musts) { |
| 5091 | switch (devs[u]->target->nodetype) { |
| 5092 | case LYS_CONTAINER: |
| 5093 | case LYS_LIST: |
| 5094 | DEV_DEL_ARRAY(struct lysc_node_container*, musts, .arg, .cond->expr, &, lysc_must_free, "must"); |
| 5095 | break; |
| 5096 | case LYS_LEAF: |
| 5097 | case LYS_LEAFLIST: |
| 5098 | case LYS_ANYDATA: |
| 5099 | DEV_DEL_ARRAY(struct lysc_node_leaf*, musts, .arg, .cond->expr, &, lysc_must_free, "must"); |
| 5100 | break; |
| 5101 | case LYS_NOTIF: |
| 5102 | case LYS_INOUT: |
| 5103 | /* TODO */ |
| 5104 | default: |
| 5105 | LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LY_VCODE_DEV_NODETYPE, |
Radek Krejci | 7af6424 | 2019-02-18 13:07:53 +0100 | [diff] [blame] | 5106 | devs[u]->nodeid, lys_nodetype2str(devs[u]->target->nodetype), "delete", "must"); |
Radek Krejci | ccd20f1 | 2019-02-15 14:12:27 +0100 | [diff] [blame] | 5107 | goto cleanup; |
| 5108 | } |
| 5109 | } |
| 5110 | |
| 5111 | /* *unique-stmt */ |
Radek Krejci | 7af6424 | 2019-02-18 13:07:53 +0100 | [diff] [blame] | 5112 | if (d_del->uniques) { |
| 5113 | DEV_CHECK_NODETYPE(LYS_LIST, "delete", "unique"); |
| 5114 | list = (struct lysc_node_list*)devs[u]->target; /* shortcut */ |
| 5115 | LY_ARRAY_FOR(d_del->uniques, x) { |
| 5116 | LY_ARRAY_FOR(list->uniques, z) { |
| 5117 | for (name = d_del->uniques[x], y = 0; name; name = nodeid, ++y) { |
| 5118 | nodeid = strpbrk(name, " \t\n"); |
| 5119 | if (nodeid) { |
| 5120 | if (strncmp(name, list->uniques[z][y]->name, nodeid - name) |
| 5121 | || list->uniques[z][y]->name[nodeid - name] != '\0') { |
| 5122 | break; |
| 5123 | } |
| 5124 | while (isspace(*nodeid)) { |
| 5125 | ++nodeid; |
| 5126 | } |
| 5127 | } else { |
| 5128 | if (strcmp(name, list->uniques[z][y]->name)) { |
| 5129 | break; |
| 5130 | } |
| 5131 | } |
| 5132 | } |
| 5133 | if (!name) { |
| 5134 | /* complete match - remove the unique */ |
| 5135 | LY_ARRAY_DECREMENT(list->uniques); |
| 5136 | LY_ARRAY_FREE(list->uniques[z]); |
| 5137 | memmove(&list->uniques[z], &list->uniques[z + 1], (LY_ARRAY_SIZE(list->uniques) - z) * (sizeof *list->uniques)); |
| 5138 | --z; |
| 5139 | break; |
| 5140 | } |
| 5141 | } |
| 5142 | if (!list->uniques || z == LY_ARRAY_SIZE(list->uniques)) { |
| 5143 | LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_REFERENCE, |
| 5144 | "Invalid deviation (%s) deleting \"unique\" property \"%s\" which does not match any of the target's property values.", |
| 5145 | devs[u]->nodeid, d_del->uniques[x]); |
| 5146 | goto cleanup; |
| 5147 | } |
| 5148 | } |
| 5149 | if (!LY_ARRAY_SIZE(list->uniques)) { |
| 5150 | LY_ARRAY_FREE(list->uniques); |
| 5151 | list->uniques = NULL; |
| 5152 | } |
| 5153 | } |
Radek Krejci | ccd20f1 | 2019-02-15 14:12:27 +0100 | [diff] [blame] | 5154 | |
| 5155 | /* *default-stmt */ |
| 5156 | if (d_del->dflts) { |
| 5157 | switch (devs[u]->target->nodetype) { |
| 5158 | case LYS_LEAF: |
| 5159 | DEV_CHECK_CARDINALITY(d_del->dflts, 1, "default"); |
| 5160 | DEV_CHECK_PRESENCE(struct lysc_node_leaf*, !(devs[u]->target->flags & LYS_SET_DFLT), |
| 5161 | dflt, "deleting", "default", d_del->dflts[0]); |
| 5162 | |
| 5163 | DEV_DEL_MEMBER(struct lysc_node_leaf*, dflt, dflts[0], lydict_remove, "default"); |
Radek Krejci | 551b12c | 2019-02-19 16:11:21 +0100 | [diff] [blame^] | 5164 | devs[u]->target->flags &= ~LYS_SET_DFLT; |
Radek Krejci | ccd20f1 | 2019-02-15 14:12:27 +0100 | [diff] [blame] | 5165 | break; |
| 5166 | case LYS_LEAFLIST: |
| 5167 | DEV_DEL_ARRAY(struct lysc_node_leaflist*, dflts, , , , lydict_remove, "default"); |
Radek Krejci | 551b12c | 2019-02-19 16:11:21 +0100 | [diff] [blame^] | 5168 | if (!((struct lysc_node_leaflist*)devs[u]->target)->dflts) { |
| 5169 | devs[u]->target->flags &= ~LYS_SET_DFLT; |
| 5170 | } |
Radek Krejci | ccd20f1 | 2019-02-15 14:12:27 +0100 | [diff] [blame] | 5171 | break; |
| 5172 | case LYS_CHOICE: |
| 5173 | DEV_CHECK_CARDINALITY(d_del->dflts, 1, "default"); |
| 5174 | DEV_CHECK_PRESENCE(struct lysc_node_choice*, 0, dflt, "deleting", "default", d_del->dflts[0]); |
| 5175 | nodeid = d_del->dflts[0]; |
| 5176 | LY_CHECK_GOTO(lys_parse_nodeid(&nodeid, &prefix, &prefix_len, &name, &name_len), cleanup); |
| 5177 | if (prefix) { |
| 5178 | /* use module prefixes from the deviation module to match the module of the default case */ |
| 5179 | if (!(mod = lys_module_find_prefix(ctx->mod, prefix, prefix_len))) { |
| 5180 | LOGVAL(ctx->ctx,LY_VLOG_STR,ctx->path,LYVE_REFERENCE, |
| 5181 | "Invalid deviation (%s) deleting \"default\" property \"%s\" of choice. " |
| 5182 | "The prefix does not match any imported module of the deviation module.", |
| 5183 | devs[u]->nodeid, d_del->dflts[0]); |
| 5184 | goto cleanup; |
| 5185 | } |
| 5186 | if (mod != ((struct lysc_node_choice*)devs[u]->target)->dflt->module) { |
| 5187 | LOGVAL(ctx->ctx,LY_VLOG_STR,ctx->path,LYVE_REFERENCE, |
| 5188 | "Invalid deviation (%s) deleting \"default\" property \"%s\" of choice. " |
| 5189 | "The prefix does not match the default case's module.", |
| 5190 | devs[u]->nodeid, d_del->dflts[0]); |
| 5191 | goto cleanup; |
| 5192 | } |
| 5193 | } |
| 5194 | /* else { |
| 5195 | * strictly, the default prefix would point to the deviation module, but the value should actually |
| 5196 | * match the default string in the original module (usually unprefixed), so in this case we do not check |
| 5197 | * the module of the default case, just matching its name */ |
| 5198 | if (strcmp(name, ((struct lysc_node_choice*)devs[u]->target)->dflt->name)) { |
| 5199 | LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_REFERENCE, |
| 5200 | "Invalid deviation (%s) deleting \"default\" property \"%s\" of choice does not match the default case name \"%s\".", |
| 5201 | devs[u]->nodeid, d_del->dflts[0], ((struct lysc_node_choice*)devs[u]->target)->dflt->name); |
| 5202 | goto cleanup; |
| 5203 | } |
| 5204 | ((struct lysc_node_choice*)devs[u]->target)->dflt->flags &= ~LYS_SET_DFLT; |
| 5205 | ((struct lysc_node_choice*)devs[u]->target)->dflt = NULL; |
| 5206 | break; |
| 5207 | default: |
| 5208 | LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LY_VCODE_DEV_NODETYPE, |
Radek Krejci | 7af6424 | 2019-02-18 13:07:53 +0100 | [diff] [blame] | 5209 | devs[u]->nodeid, lys_nodetype2str(devs[u]->target->nodetype), "delete", "default"); |
Radek Krejci | ccd20f1 | 2019-02-15 14:12:27 +0100 | [diff] [blame] | 5210 | goto cleanup; |
| 5211 | } |
| 5212 | } |
| 5213 | |
| 5214 | break; |
| 5215 | case LYS_DEV_REPLACE: |
| 5216 | d_rpl = (struct lysp_deviate_rpl*)d; |
| 5217 | |
| 5218 | /* [type-stmt] */ |
| 5219 | |
| 5220 | /* [units-stmt] */ |
| 5221 | if (d_rpl->units) { |
| 5222 | DEV_CHECK_NODETYPE(LYS_LEAF | LYS_LEAFLIST, "replace", "units"); |
| 5223 | DEV_CHECK_PRESENCE(struct lysc_node_leaf*, !(devs[u]->target->flags & LYS_SET_UNITS), |
| 5224 | units, "replacing", "units", d_rpl->units); |
| 5225 | |
| 5226 | lydict_remove(ctx->ctx, ((struct lysc_node_leaf*)devs[u]->target)->units); |
| 5227 | DUP_STRING(ctx->ctx, d_rpl->units, ((struct lysc_node_leaf*)devs[u]->target)->units); |
| 5228 | } |
| 5229 | |
| 5230 | /* [default-stmt] */ |
| 5231 | if (d_rpl->dflt) { |
| 5232 | switch (devs[u]->target->nodetype) { |
| 5233 | case LYS_LEAF: |
| 5234 | DEV_CHECK_PRESENCE(struct lysc_node_leaf*, !(devs[u]->target->flags & LYS_SET_DFLT), |
| 5235 | dflt, "replacing", "default", d_rpl->dflt); |
| 5236 | |
| 5237 | lydict_remove(ctx->ctx, ((struct lysc_node_leaf*)devs[u]->target)->dflt); |
| 5238 | DUP_STRING(ctx->ctx, d_rpl->dflt, ((struct lysc_node_leaf*)devs[u]->target)->dflt); |
| 5239 | break; |
| 5240 | case LYS_CHOICE: |
| 5241 | DEV_CHECK_PRESENCE(struct lysc_node_choice*, 0, dflt, "replacing", "default", d_rpl->dflt); |
| 5242 | if (lys_compile_deviation_set_choice_dflt(ctx, devs[u]->nodeid, d_rpl->dflt, |
| 5243 | (struct lysc_node_choice*)devs[u]->target)) { |
| 5244 | goto cleanup; |
| 5245 | } |
| 5246 | break; |
| 5247 | default: |
| 5248 | LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LY_VCODE_DEV_NODETYPE, |
Radek Krejci | 7af6424 | 2019-02-18 13:07:53 +0100 | [diff] [blame] | 5249 | devs[u]->nodeid, lys_nodetype2str(devs[u]->target->nodetype), "replace", "default"); |
Radek Krejci | ccd20f1 | 2019-02-15 14:12:27 +0100 | [diff] [blame] | 5250 | goto cleanup; |
| 5251 | } |
| 5252 | } |
| 5253 | |
| 5254 | /* [config-stmt] */ |
Radek Krejci | 93dcc39 | 2019-02-19 10:43:38 +0100 | [diff] [blame] | 5255 | if (d_rpl->flags & LYS_CONFIG_MASK) { |
| 5256 | if (devs[u]->target->nodetype & (LYS_CASE | LYS_INOUT | LYS_ACTION | LYS_NOTIF)) { |
| 5257 | LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LY_VCODE_DEV_NODETYPE, devs[u]->nodeid, |
| 5258 | lys_nodetype2str(devs[u]->target->nodetype), "replace", "config"); |
| 5259 | goto cleanup; |
| 5260 | } |
| 5261 | if (!(devs[u]->target->flags & LYS_SET_CONFIG)) { |
| 5262 | LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LY_VCODE_DEV_NOT_PRESENT, devs[u]->nodeid, |
| 5263 | "replacing", "config", d_rpl->flags & LYS_CONFIG_W ? "config true" : "config false"); |
| 5264 | goto cleanup; |
| 5265 | } |
| 5266 | LY_CHECK_GOTO(lys_compile_change_config(ctx, devs[u]->target, d_rpl->flags, devs[u]->nodeid, 0, 0), cleanup); |
| 5267 | } |
Radek Krejci | ccd20f1 | 2019-02-15 14:12:27 +0100 | [diff] [blame] | 5268 | |
| 5269 | /* [mandatory-stmt] */ |
Radek Krejci | f1421c2 | 2019-02-19 13:05:20 +0100 | [diff] [blame] | 5270 | if (d_rpl->flags & LYS_MAND_MASK) { |
| 5271 | if (!(devs[u]->target->flags & LYS_MAND_MASK)) { |
| 5272 | LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LY_VCODE_DEV_NOT_PRESENT, devs[u]->nodeid, |
| 5273 | "replacing", "mandatory", d_rpl->flags & LYS_MAND_TRUE ? "mandatory true" : "mandatory false"); |
| 5274 | goto cleanup; |
| 5275 | } |
| 5276 | LY_CHECK_GOTO(lys_compile_change_mandatory(ctx, devs[u]->target, d_rpl->flags, devs[u]->nodeid, 0), cleanup); |
| 5277 | } |
Radek Krejci | ccd20f1 | 2019-02-15 14:12:27 +0100 | [diff] [blame] | 5278 | |
| 5279 | /* [min-elements-stmt] */ |
Radek Krejci | 551b12c | 2019-02-19 16:11:21 +0100 | [diff] [blame^] | 5280 | if (d_rpl->flags & LYS_SET_MIN) { |
| 5281 | if (devs[u]->target->nodetype == LYS_LEAFLIST) { |
| 5282 | DEV_CHECK_PRESENCE_UINT(struct lysc_node_leaflist*, > 0, min, "min-elements"); |
| 5283 | /* change value */ |
| 5284 | ((struct lysc_node_leaflist*)devs[u]->target)->min = d_rpl->min; |
| 5285 | } else if (devs[u]->target->nodetype == LYS_LIST) { |
| 5286 | DEV_CHECK_PRESENCE_UINT(struct lysc_node_list*, > 0, min, "min-elements"); |
| 5287 | /* change value */ |
| 5288 | ((struct lysc_node_list*)devs[u]->target)->min = d_rpl->min; |
| 5289 | } else { |
| 5290 | LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LY_VCODE_DEV_NODETYPE, devs[u]->nodeid, |
| 5291 | lys_nodetype2str(devs[u]->target->nodetype), "replace", "min-elements"); |
| 5292 | goto cleanup; |
| 5293 | } |
| 5294 | if (d_rpl->min) { |
| 5295 | devs[u]->target->flags |= LYS_MAND_TRUE; |
| 5296 | } |
| 5297 | } |
Radek Krejci | ccd20f1 | 2019-02-15 14:12:27 +0100 | [diff] [blame] | 5298 | |
| 5299 | /* [max-elements-stmt] */ |
Radek Krejci | 551b12c | 2019-02-19 16:11:21 +0100 | [diff] [blame^] | 5300 | if (d_rpl->flags & LYS_SET_MAX) { |
| 5301 | if (devs[u]->target->nodetype == LYS_LEAFLIST) { |
| 5302 | DEV_CHECK_PRESENCE_UINT(struct lysc_node_leaflist*, < (uint32_t)-1, max, "max-elements"); |
| 5303 | /* change value */ |
| 5304 | ((struct lysc_node_leaflist*)devs[u]->target)->max = d_rpl->max ? d_rpl->max : (uint32_t)-1; |
| 5305 | } else if (devs[u]->target->nodetype == LYS_LIST) { |
| 5306 | DEV_CHECK_PRESENCE_UINT(struct lysc_node_list*, < (uint32_t)-1, max, "max-elements"); |
| 5307 | /* change value */ |
| 5308 | ((struct lysc_node_list*)devs[u]->target)->max = d_rpl->max ? d_rpl->max : (uint32_t)-1; |
| 5309 | } else { |
| 5310 | LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LY_VCODE_DEV_NODETYPE, devs[u]->nodeid, |
| 5311 | lys_nodetype2str(devs[u]->target->nodetype), "replace", "max-elements"); |
| 5312 | goto cleanup; |
| 5313 | } |
| 5314 | } |
Radek Krejci | ccd20f1 | 2019-02-15 14:12:27 +0100 | [diff] [blame] | 5315 | |
| 5316 | break; |
| 5317 | default: |
| 5318 | LOGINT(ctx->ctx); |
| 5319 | goto cleanup; |
| 5320 | } |
| 5321 | } |
Radek Krejci | 551b12c | 2019-02-19 16:11:21 +0100 | [diff] [blame^] | 5322 | |
| 5323 | /* check min-max compatibility */ |
| 5324 | if (devs[u]->target->nodetype == LYS_LEAFLIST) { |
| 5325 | min = ((struct lysc_node_leaflist*)devs[u]->target)->min; |
| 5326 | max = ((struct lysc_node_leaflist*)devs[u]->target)->max; |
| 5327 | } else if (devs[u]->target->nodetype == LYS_LIST) { |
| 5328 | min = ((struct lysc_node_list*)devs[u]->target)->min; |
| 5329 | max = ((struct lysc_node_list*)devs[u]->target)->max; |
| 5330 | } else { |
| 5331 | min = max = 0; |
| 5332 | } |
| 5333 | if (min > max) { |
| 5334 | LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SEMANTICS, "Invalid combination of min-elements and max-elements " |
| 5335 | "after deviation (%s): min value %u is bigger than max value %u.", |
| 5336 | devs[u]->nodeid, min, max); |
| 5337 | goto cleanup; |
| 5338 | } |
| 5339 | |
| 5340 | /* check mandatory - default compatibility */ |
| 5341 | if ((devs[u]->target->nodetype & (LYS_LEAF | LYS_LEAFLIST)) |
| 5342 | && (devs[u]->target->flags & LYS_SET_DFLT) |
| 5343 | && (devs[u]->target->flags & LYS_MAND_TRUE)) { |
| 5344 | LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SEMANTICS, |
| 5345 | "Invalid deviation (%s) combining default value and mandatory %s.", |
| 5346 | devs[u]->nodeid, lys_nodetype2str(devs[u]->target->nodetype)); |
| 5347 | goto cleanup; |
| 5348 | } else if ((devs[u]->target->nodetype & LYS_CHOICE) |
| 5349 | && ((struct lysc_node_choice*)devs[u]->target)->dflt |
| 5350 | && (devs[u]->target->flags & LYS_MAND_TRUE)) { |
| 5351 | LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SEMANTICS, |
| 5352 | "Invalid deviation (%s) combining default case and mandatory choice.", devs[u]->nodeid); |
| 5353 | goto cleanup; |
| 5354 | } |
| 5355 | if (devs[u]->target->parent && (devs[u]->target->parent->flags & LYS_SET_DFLT) && (devs[u]->target->flags & LYS_MAND_TRUE)) { |
| 5356 | /* mandatory node under a default case */ |
| 5357 | LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SEMANTICS, |
| 5358 | "Invalid deviation (%s) combining mandatory %s \"%s\" in a default choice's case \"%s\".", |
| 5359 | devs[u]->nodeid, lys_nodetype2str(devs[u]->target->nodetype), devs[u]->target->name, devs[u]->target->parent->name); |
| 5360 | goto cleanup; |
| 5361 | } |
Radek Krejci | ccd20f1 | 2019-02-15 14:12:27 +0100 | [diff] [blame] | 5362 | } |
| 5363 | |
| 5364 | ret = LY_SUCCESS; |
| 5365 | |
| 5366 | cleanup: |
| 5367 | for (u = 0; u < devs_p.count && devs[u]; ++u) { |
| 5368 | LY_ARRAY_FREE(devs[u]->deviates); |
| 5369 | free(devs[u]); |
| 5370 | } |
| 5371 | free(devs); |
| 5372 | ly_set_erase(&targets, NULL); |
| 5373 | ly_set_erase(&devs_p, NULL); |
| 5374 | |
| 5375 | return ret; |
| 5376 | } |
| 5377 | |
Radek Krejci | b56c750 | 2019-02-13 14:19:54 +0100 | [diff] [blame] | 5378 | /** |
Radek Krejci | d05cbd9 | 2018-12-05 14:26:40 +0100 | [diff] [blame] | 5379 | * @brief Compile the given YANG submodule into the main module. |
| 5380 | * @param[in] ctx Compile context |
| 5381 | * @param[in] inc Include structure from the main module defining the submodule. |
| 5382 | * @param[in] options Various options to modify compiler behavior, see [compile flags](@ref scflags). |
| 5383 | * @return LY_ERR value - LY_SUCCESS or LY_EVALID. |
| 5384 | */ |
| 5385 | LY_ERR |
| 5386 | lys_compile_submodule(struct lysc_ctx *ctx, struct lysp_include *inc, int options) |
| 5387 | { |
| 5388 | unsigned int u; |
| 5389 | LY_ERR ret = LY_SUCCESS; |
| 5390 | /* shortcuts */ |
Radek Krejci | 0bcdaed | 2019-01-10 10:21:34 +0100 | [diff] [blame] | 5391 | struct lysp_submodule *submod = inc->submodule; |
Radek Krejci | d05cbd9 | 2018-12-05 14:26:40 +0100 | [diff] [blame] | 5392 | struct lysc_module *mainmod = ctx->mod->compiled; |
| 5393 | |
Radek Krejci | 0af4629 | 2019-01-11 16:02:31 +0100 | [diff] [blame] | 5394 | if (!mainmod->mod->off_features) { |
| 5395 | /* features are compiled directly into the compiled module structure, |
| 5396 | * but it must be done in two steps to allow forward references (via if-feature) between the features themselves. |
| 5397 | * The features compilation is finished in the main module (lys_compile()). */ |
| 5398 | ret = lys_feature_precompile(ctx->ctx, submod->features, |
| 5399 | mainmod->mod->off_features ? &mainmod->mod->off_features : &mainmod->features); |
| 5400 | LY_CHECK_GOTO(ret, error); |
| 5401 | } |
| 5402 | |
Radek Krejci | d05cbd9 | 2018-12-05 14:26:40 +0100 | [diff] [blame] | 5403 | COMPILE_ARRAY_UNIQUE_GOTO(ctx, submod->identities, mainmod->identities, options, u, lys_compile_identity, ret, error); |
| 5404 | |
| 5405 | error: |
| 5406 | return ret; |
| 5407 | } |
| 5408 | |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 5409 | LY_ERR |
| 5410 | lys_compile(struct lys_module *mod, int options) |
| 5411 | { |
| 5412 | struct lysc_ctx ctx = {0}; |
| 5413 | struct lysc_module *mod_c; |
Radek Krejci | 412ddfa | 2018-11-23 11:44:11 +0100 | [diff] [blame] | 5414 | struct lysc_type *type, *typeiter; |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 5415 | struct lysp_module *sp; |
| 5416 | struct lysp_node *node_p; |
Radek Krejci | 95710c9 | 2019-02-11 15:49:55 +0100 | [diff] [blame] | 5417 | struct lysp_augment **augments = NULL; |
| 5418 | struct lys_module *m; |
Radek Krejci | cdfecd9 | 2018-11-26 11:27:32 +0100 | [diff] [blame] | 5419 | unsigned int u, v; |
Radek Krejci | d05cbd9 | 2018-12-05 14:26:40 +0100 | [diff] [blame] | 5420 | LY_ERR ret = LY_SUCCESS; |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 5421 | |
Radek Krejci | 0bcdaed | 2019-01-10 10:21:34 +0100 | [diff] [blame] | 5422 | LY_CHECK_ARG_RET(NULL, mod, mod->parsed, mod->ctx, LY_EINVAL); |
Radek Krejci | 096235c | 2019-01-11 11:12:19 +0100 | [diff] [blame] | 5423 | |
| 5424 | if (!mod->implemented) { |
| 5425 | /* just imported modules are not compiled */ |
| 5426 | return LY_SUCCESS; |
| 5427 | } |
| 5428 | |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 5429 | sp = mod->parsed; |
| 5430 | |
Radek Krejci | 0bcdaed | 2019-01-10 10:21:34 +0100 | [diff] [blame] | 5431 | ctx.ctx = mod->ctx; |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 5432 | ctx.mod = mod; |
Radek Krejci | e86bf77 | 2018-12-14 11:39:53 +0100 | [diff] [blame] | 5433 | ctx.mod_def = mod; |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 5434 | |
| 5435 | mod->compiled = mod_c = calloc(1, sizeof *mod_c); |
Radek Krejci | 0bcdaed | 2019-01-10 10:21:34 +0100 | [diff] [blame] | 5436 | LY_CHECK_ERR_RET(!mod_c, LOGMEM(mod->ctx), LY_EMEM); |
| 5437 | mod_c->mod = mod; |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 5438 | |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 5439 | COMPILE_ARRAY_GOTO(&ctx, sp->imports, mod_c->imports, options, u, lys_compile_import, ret, error); |
Radek Krejci | d05cbd9 | 2018-12-05 14:26:40 +0100 | [diff] [blame] | 5440 | LY_ARRAY_FOR(sp->includes, u) { |
| 5441 | ret = lys_compile_submodule(&ctx, &sp->includes[u], options); |
| 5442 | LY_CHECK_GOTO(ret != LY_SUCCESS, error); |
| 5443 | } |
Radek Krejci | 0af4629 | 2019-01-11 16:02:31 +0100 | [diff] [blame] | 5444 | if (mod->off_features) { |
| 5445 | /* there is already precompiled array of features */ |
| 5446 | mod_c->features = mod->off_features; |
| 5447 | mod->off_features = NULL; |
Radek Krejci | 0af4629 | 2019-01-11 16:02:31 +0100 | [diff] [blame] | 5448 | } else { |
| 5449 | /* features are compiled directly into the compiled module structure, |
| 5450 | * but it must be done in two steps to allow forward references (via if-feature) between the features themselves */ |
| 5451 | ret = lys_feature_precompile(ctx.ctx, sp->features, &mod_c->features); |
| 5452 | LY_CHECK_GOTO(ret, error); |
| 5453 | } |
| 5454 | /* finish feature compilation, not only for the main module, but also for the submodules. |
| 5455 | * Due to possible forward references, it must be done when all the features (including submodules) |
| 5456 | * are present. */ |
| 5457 | LY_ARRAY_FOR(sp->features, u) { |
| 5458 | ret = lys_feature_precompile_finish(&ctx, &sp->features[u], options, mod_c->features); |
| 5459 | LY_CHECK_GOTO(ret != LY_SUCCESS, error); |
| 5460 | } |
| 5461 | LY_ARRAY_FOR(sp->includes, v) { |
| 5462 | LY_ARRAY_FOR(sp->includes[v].submodule->features, u) { |
| 5463 | ret = lys_feature_precompile_finish(&ctx, &sp->includes[v].submodule->features[u], options, mod_c->features); |
| 5464 | LY_CHECK_GOTO(ret != LY_SUCCESS, error); |
| 5465 | } |
| 5466 | } |
| 5467 | |
Radek Krejci | d05cbd9 | 2018-12-05 14:26:40 +0100 | [diff] [blame] | 5468 | COMPILE_ARRAY_UNIQUE_GOTO(&ctx, sp->identities, mod_c->identities, options, u, lys_compile_identity, ret, error); |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 5469 | if (sp->identities) { |
| 5470 | LY_CHECK_RET(lys_compile_identities_derived(&ctx, sp->identities, mod_c->identities)); |
| 5471 | } |
| 5472 | |
Radek Krejci | 95710c9 | 2019-02-11 15:49:55 +0100 | [diff] [blame] | 5473 | /* data nodes */ |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 5474 | LY_LIST_FOR(sp->data, node_p) { |
Radek Krejci | b1b5915 | 2019-01-07 13:21:56 +0100 | [diff] [blame] | 5475 | ret = lys_compile_node(&ctx, node_p, options, NULL, 0); |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 5476 | LY_CHECK_GOTO(ret, error); |
| 5477 | } |
Radek Krejci | 95710c9 | 2019-02-11 15:49:55 +0100 | [diff] [blame] | 5478 | |
Radek Krejci | ccd20f1 | 2019-02-15 14:12:27 +0100 | [diff] [blame] | 5479 | //COMPILE_ARRAY_GOTO(ctx, sp->rpcs, mod_c->rpcs, options, u, lys_compile_action, ret, error); |
| 5480 | //COMPILE_ARRAY_GOTO(ctx, sp->notifs, mod_c->notifs, options, u, lys_compile_notif, ret, error); |
| 5481 | |
Radek Krejci | 95710c9 | 2019-02-11 15:49:55 +0100 | [diff] [blame] | 5482 | /* augments - sort first to cover augments augmenting other augments */ |
Radek Krejci | 3641f56 | 2019-02-13 15:38:40 +0100 | [diff] [blame] | 5483 | ret = lys_compile_augment_sort(&ctx, sp->augments, sp->includes, &augments); |
Radek Krejci | 95710c9 | 2019-02-11 15:49:55 +0100 | [diff] [blame] | 5484 | LY_CHECK_GOTO(ret, error); |
| 5485 | LY_ARRAY_FOR(augments, u) { |
| 5486 | ret = lys_compile_augment(&ctx, augments[u], options, NULL); |
| 5487 | LY_CHECK_GOTO(ret, error); |
| 5488 | } |
Radek Krejci | ccd20f1 | 2019-02-15 14:12:27 +0100 | [diff] [blame] | 5489 | |
| 5490 | /* deviations */ |
| 5491 | ret = lys_compile_deviations(&ctx, sp, options); |
| 5492 | LY_CHECK_GOTO(ret, error); |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 5493 | |
| 5494 | COMPILE_ARRAY_GOTO(&ctx, sp->exts, mod_c->exts, options, u, lys_compile_ext, ret, error); |
| 5495 | |
Radek Krejci | a304538 | 2018-11-22 14:30:31 +0100 | [diff] [blame] | 5496 | /* validate leafref's paths and when/must xpaths */ |
Radek Krejci | 412ddfa | 2018-11-23 11:44:11 +0100 | [diff] [blame] | 5497 | /* for leafref, we need 2 rounds - first detects circular chain by storing the first referred type (which |
| 5498 | * can be also leafref, in case it is already resolved, go through the chain and check that it does not |
| 5499 | * point to the starting leafref type). The second round stores the first non-leafref type for later data validation. */ |
Radek Krejci | a304538 | 2018-11-22 14:30:31 +0100 | [diff] [blame] | 5500 | for (u = 0; u < ctx.unres.count; ++u) { |
Radek Krejci | 0e5d838 | 2018-11-28 16:37:53 +0100 | [diff] [blame] | 5501 | if (((struct lysc_node*)ctx.unres.objs[u])->nodetype & (LYS_LEAF | LYS_LEAFLIST)) { |
Radek Krejci | a304538 | 2018-11-22 14:30:31 +0100 | [diff] [blame] | 5502 | type = ((struct lysc_node_leaf*)ctx.unres.objs[u])->type; |
| 5503 | if (type->basetype == LY_TYPE_LEAFREF) { |
| 5504 | /* validate the path */ |
Radek Krejci | 412ddfa | 2018-11-23 11:44:11 +0100 | [diff] [blame] | 5505 | ret = lys_compile_leafref_validate(&ctx, ((struct lysc_node*)ctx.unres.objs[u]), (struct lysc_type_leafref*)type); |
Radek Krejci | a304538 | 2018-11-22 14:30:31 +0100 | [diff] [blame] | 5506 | LY_CHECK_GOTO(ret, error); |
Radek Krejci | cdfecd9 | 2018-11-26 11:27:32 +0100 | [diff] [blame] | 5507 | } else if (type->basetype == LY_TYPE_UNION) { |
| 5508 | LY_ARRAY_FOR(((struct lysc_type_union*)type)->types, v) { |
| 5509 | if (((struct lysc_type_union*)type)->types[v]->basetype == LY_TYPE_LEAFREF) { |
| 5510 | /* validate the path */ |
| 5511 | ret = lys_compile_leafref_validate(&ctx, ((struct lysc_node*)ctx.unres.objs[u]), |
| 5512 | (struct lysc_type_leafref*)((struct lysc_type_union*)type)->types[v]); |
| 5513 | LY_CHECK_GOTO(ret, error); |
| 5514 | } |
| 5515 | } |
Radek Krejci | a304538 | 2018-11-22 14:30:31 +0100 | [diff] [blame] | 5516 | } |
| 5517 | } |
| 5518 | } |
Radek Krejci | 412ddfa | 2018-11-23 11:44:11 +0100 | [diff] [blame] | 5519 | for (u = 0; u < ctx.unres.count; ++u) { |
Radek Krejci | 0e5d838 | 2018-11-28 16:37:53 +0100 | [diff] [blame] | 5520 | if (((struct lysc_node*)ctx.unres.objs[u])->nodetype & (LYS_LEAF | LYS_LEAFLIST)) { |
Radek Krejci | 412ddfa | 2018-11-23 11:44:11 +0100 | [diff] [blame] | 5521 | type = ((struct lysc_node_leaf*)ctx.unres.objs[u])->type; |
| 5522 | if (type->basetype == LY_TYPE_LEAFREF) { |
| 5523 | /* store pointer to the real type */ |
| 5524 | for (typeiter = ((struct lysc_type_leafref*)type)->realtype; |
| 5525 | typeiter->basetype == LY_TYPE_LEAFREF; |
| 5526 | typeiter = ((struct lysc_type_leafref*)typeiter)->realtype); |
| 5527 | ((struct lysc_type_leafref*)type)->realtype = typeiter; |
Radek Krejci | cdfecd9 | 2018-11-26 11:27:32 +0100 | [diff] [blame] | 5528 | } else if (type->basetype == LY_TYPE_UNION) { |
| 5529 | LY_ARRAY_FOR(((struct lysc_type_union*)type)->types, v) { |
| 5530 | if (((struct lysc_type_union*)type)->types[v]->basetype == LY_TYPE_LEAFREF) { |
| 5531 | /* store pointer to the real type */ |
| 5532 | for (typeiter = ((struct lysc_type_leafref*)((struct lysc_type_union*)type)->types[v])->realtype; |
| 5533 | typeiter->basetype == LY_TYPE_LEAFREF; |
| 5534 | typeiter = ((struct lysc_type_leafref*)typeiter)->realtype); |
| 5535 | ((struct lysc_type_leafref*)((struct lysc_type_union*)type)->types[v])->realtype = typeiter; |
| 5536 | } |
| 5537 | } |
Radek Krejci | 412ddfa | 2018-11-23 11:44:11 +0100 | [diff] [blame] | 5538 | } |
| 5539 | } |
| 5540 | } |
Radek Krejci | a304538 | 2018-11-22 14:30:31 +0100 | [diff] [blame] | 5541 | ly_set_erase(&ctx.unres, NULL); |
Radek Krejci | e86bf77 | 2018-12-14 11:39:53 +0100 | [diff] [blame] | 5542 | ly_set_erase(&ctx.groupings, NULL); |
Radek Krejci | 95710c9 | 2019-02-11 15:49:55 +0100 | [diff] [blame] | 5543 | LY_ARRAY_FREE(augments); |
Radek Krejci | a304538 | 2018-11-22 14:30:31 +0100 | [diff] [blame] | 5544 | |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 5545 | if (options & LYSC_OPT_FREE_SP) { |
| 5546 | lysp_module_free(mod->parsed); |
| 5547 | ((struct lys_module*)mod)->parsed = NULL; |
| 5548 | } |
| 5549 | |
Radek Krejci | 95710c9 | 2019-02-11 15:49:55 +0100 | [diff] [blame] | 5550 | if (!(options & LYSC_OPT_INTERNAL)) { |
| 5551 | /* remove flag of the modules implemented by dependency */ |
| 5552 | for (u = 0; u < ctx.ctx->list.count; ++u) { |
| 5553 | m = ctx.ctx->list.objs[u]; |
| 5554 | if (m->implemented == 2) { |
| 5555 | m->implemented = 1; |
| 5556 | } |
| 5557 | } |
| 5558 | } |
| 5559 | |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 5560 | ((struct lys_module*)mod)->compiled = mod_c; |
| 5561 | return LY_SUCCESS; |
| 5562 | |
| 5563 | error: |
Radek Krejci | 95710c9 | 2019-02-11 15:49:55 +0100 | [diff] [blame] | 5564 | lys_feature_precompile_revert(&ctx, mod); |
Radek Krejci | a304538 | 2018-11-22 14:30:31 +0100 | [diff] [blame] | 5565 | ly_set_erase(&ctx.unres, NULL); |
Radek Krejci | e86bf77 | 2018-12-14 11:39:53 +0100 | [diff] [blame] | 5566 | ly_set_erase(&ctx.groupings, NULL); |
Radek Krejci | 95710c9 | 2019-02-11 15:49:55 +0100 | [diff] [blame] | 5567 | LY_ARRAY_FREE(augments); |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 5568 | lysc_module_free(mod_c, NULL); |
Radek Krejci | 95710c9 | 2019-02-11 15:49:55 +0100 | [diff] [blame] | 5569 | mod->compiled = NULL; |
| 5570 | |
| 5571 | /* revert compilation of modules implemented by dependency */ |
| 5572 | for (u = 0; u < ctx.ctx->list.count; ++u) { |
| 5573 | m = ctx.ctx->list.objs[u]; |
| 5574 | if (m->implemented == 2) { |
| 5575 | /* revert features list to the precompiled state */ |
| 5576 | lys_feature_precompile_revert(&ctx, m); |
| 5577 | /* mark module as imported-only / not-implemented */ |
| 5578 | m->implemented = 0; |
| 5579 | /* free the compiled version of the module */ |
| 5580 | lysc_module_free(m->compiled, NULL); |
| 5581 | m->compiled = NULL; |
| 5582 | } |
| 5583 | } |
| 5584 | |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 5585 | return ret; |
| 5586 | } |