Michal Vasko | c3d9f8c | 2015-07-31 14:37:24 +0200 | [diff] [blame] | 1 | #define _GNU_SOURCE |
| 2 | |
| 3 | #include <stdlib.h> |
| 4 | #include <assert.h> |
| 5 | #include <string.h> |
| 6 | #include <ctype.h> |
Michal Vasko | e7fc19c | 2015-08-05 16:24:39 +0200 | [diff] [blame] | 7 | #include <limits.h> |
Michal Vasko | c3d9f8c | 2015-07-31 14:37:24 +0200 | [diff] [blame] | 8 | |
| 9 | #include "libyang.h" |
| 10 | #include "resolve.h" |
| 11 | #include "common.h" |
| 12 | #include "parse.h" |
| 13 | #include "dict.h" |
| 14 | #include "tree_internal.h" |
| 15 | |
Michal Vasko | b2daf5b | 2015-08-05 16:15:37 +0200 | [diff] [blame] | 16 | /* does not log |
| 17 | * syntax is assumed to be correct, *local_intv MUST be NULL */ |
| 18 | int |
| 19 | resolve_len_ran_interval(const char *str_restr, struct lys_type *type, int superior_restr, struct len_ran_intv** local_intv) |
| 20 | { |
| 21 | /* 0 - unsigned, 1 - signed, 2 - floating point */ |
| 22 | int kind, ret = 0; |
| 23 | int64_t local_smin, local_smax; |
| 24 | uint64_t local_umin, local_umax; |
| 25 | long double local_fmin, local_fmax; |
| 26 | const char *seg_ptr, *ptr; |
| 27 | struct len_ran_intv *tmp_local_intv, *tmp_intv, *intv = NULL; |
| 28 | |
| 29 | switch (type->base) { |
| 30 | case LY_TYPE_BINARY: |
| 31 | kind = 0; |
| 32 | local_umin = 0; |
| 33 | local_umax = 18446744073709551615UL; |
| 34 | |
| 35 | if (!str_restr && type->info.binary.length) { |
| 36 | str_restr = type->info.binary.length->expr; |
| 37 | } |
| 38 | break; |
| 39 | case LY_TYPE_DEC64: |
| 40 | kind = 2; |
| 41 | local_fmin = -9223372036854775808.0; |
| 42 | local_fmin /= 1 << type->info.dec64.dig; |
| 43 | local_fmax = 9223372036854775807.0; |
| 44 | local_fmax /= 1 << type->info.dec64.dig; |
| 45 | |
| 46 | if (!str_restr && type->info.dec64.range) { |
| 47 | str_restr = type->info.dec64.range->expr; |
| 48 | } |
| 49 | break; |
| 50 | case LY_TYPE_INT8: |
| 51 | kind = 1; |
| 52 | local_smin = -128; |
| 53 | local_smax = 127; |
| 54 | |
| 55 | if (!str_restr && type->info.num.range) { |
| 56 | str_restr = type->info.num.range->expr; |
| 57 | } |
| 58 | break; |
| 59 | case LY_TYPE_INT16: |
| 60 | kind = 1; |
| 61 | local_smin = -32768; |
| 62 | local_smax = 32767; |
| 63 | |
| 64 | if (!str_restr && type->info.num.range) { |
| 65 | str_restr = type->info.num.range->expr; |
| 66 | } |
| 67 | break; |
| 68 | case LY_TYPE_INT32: |
| 69 | kind = 1; |
| 70 | local_smin = -2147483648; |
| 71 | local_smax = 2147483647; |
| 72 | |
| 73 | if (!str_restr && type->info.num.range) { |
| 74 | str_restr = type->info.num.range->expr; |
| 75 | } |
| 76 | break; |
| 77 | case LY_TYPE_INT64: |
| 78 | kind = 1; |
| 79 | local_smin = -9223372036854775807L - 1L; |
| 80 | local_smax = 9223372036854775807L; |
| 81 | |
| 82 | if (!str_restr && type->info.num.range) { |
| 83 | str_restr = type->info.num.range->expr; |
| 84 | } |
| 85 | break; |
| 86 | case LY_TYPE_UINT8: |
| 87 | kind = 0; |
| 88 | local_umin = 0; |
| 89 | local_umax = 255; |
| 90 | |
| 91 | if (!str_restr && type->info.num.range) { |
| 92 | str_restr = type->info.num.range->expr; |
| 93 | } |
| 94 | break; |
| 95 | case LY_TYPE_UINT16: |
| 96 | kind = 0; |
| 97 | local_umin = 0; |
| 98 | local_umax = 65535; |
| 99 | |
| 100 | if (!str_restr && type->info.num.range) { |
| 101 | str_restr = type->info.num.range->expr; |
| 102 | } |
| 103 | break; |
| 104 | case LY_TYPE_UINT32: |
| 105 | kind = 0; |
| 106 | local_umin = 0; |
| 107 | local_umax = 4294967295; |
| 108 | |
| 109 | if (!str_restr && type->info.num.range) { |
| 110 | str_restr = type->info.num.range->expr; |
| 111 | } |
| 112 | break; |
| 113 | case LY_TYPE_UINT64: |
| 114 | kind = 0; |
| 115 | local_umin = 0; |
| 116 | local_umax = 18446744073709551615UL; |
| 117 | |
| 118 | if (!str_restr && type->info.num.range) { |
| 119 | str_restr = type->info.num.range->expr; |
| 120 | } |
| 121 | break; |
| 122 | case LY_TYPE_STRING: |
| 123 | kind = 0; |
| 124 | local_umin = 0; |
| 125 | local_umax = 18446744073709551615UL; |
| 126 | |
| 127 | if (!str_restr && type->info.str.length) { |
| 128 | str_restr = type->info.str.length->expr; |
| 129 | } |
| 130 | break; |
| 131 | default: |
| 132 | LOGINT; |
| 133 | return EXIT_FAILURE; |
| 134 | } |
| 135 | |
| 136 | /* process superior types */ |
| 137 | if (type->der && superior_restr) { |
| 138 | assert(!resolve_len_ran_interval(NULL, &type->der->type, superior_restr, &intv)); |
| 139 | assert(!intv || (intv->kind == kind)); |
| 140 | } |
| 141 | |
| 142 | if (!str_restr) { |
| 143 | /* we are validating data and not have any restriction, but a superior type might have */ |
| 144 | if (type->der && !superior_restr && !intv) { |
| 145 | assert(!resolve_len_ran_interval(NULL, &type->der->type, superior_restr, &intv)); |
| 146 | assert(!intv || (intv->kind == kind)); |
| 147 | } |
| 148 | *local_intv = intv; |
| 149 | return EXIT_SUCCESS; |
| 150 | } |
| 151 | |
| 152 | /* adjust local min and max */ |
| 153 | if (intv) { |
| 154 | tmp_intv = intv; |
| 155 | |
| 156 | if (kind == 0) { |
| 157 | local_umin = tmp_intv->value.uval.min; |
| 158 | } else if (kind == 1) { |
| 159 | local_smin = tmp_intv->value.sval.min; |
| 160 | } else if (kind == 2) { |
| 161 | local_fmin = tmp_intv->value.fval.min; |
| 162 | } |
| 163 | |
| 164 | while (tmp_intv->next) { |
| 165 | tmp_intv = tmp_intv->next; |
| 166 | } |
| 167 | |
| 168 | if (kind == 0) { |
| 169 | local_umax = tmp_intv->value.uval.max; |
| 170 | } else if (kind == 1) { |
| 171 | local_smax = tmp_intv->value.sval.max; |
| 172 | } else if (kind == 2) { |
| 173 | local_fmax = tmp_intv->value.fval.max; |
| 174 | } |
| 175 | } |
| 176 | |
| 177 | /* finally parse our restriction */ |
| 178 | seg_ptr = str_restr; |
| 179 | while (1) { |
| 180 | if (!*local_intv) { |
| 181 | *local_intv = malloc(sizeof **local_intv); |
| 182 | tmp_local_intv = *local_intv; |
| 183 | } else { |
| 184 | tmp_local_intv->next = malloc(sizeof **local_intv); |
| 185 | tmp_local_intv = tmp_local_intv->next; |
| 186 | } |
| 187 | |
| 188 | tmp_local_intv->kind = kind; |
| 189 | tmp_local_intv->next = NULL; |
| 190 | |
| 191 | /* min */ |
| 192 | ptr = seg_ptr; |
| 193 | while (isspace(ptr[0])) { |
| 194 | ++ptr; |
| 195 | } |
| 196 | if (isdigit(ptr[0]) || (ptr[0] == '+') || (ptr[0] == '-')) { |
| 197 | if (kind == 0) { |
| 198 | tmp_local_intv->value.uval.min = atoll(ptr); |
| 199 | } else if (kind == 1) { |
| 200 | tmp_local_intv->value.sval.min = atoll(ptr); |
| 201 | } else if (kind == 2) { |
| 202 | tmp_local_intv->value.fval.min = atoll(ptr); |
| 203 | } |
| 204 | |
| 205 | if ((ptr[0] == '+') || (ptr[0] == '-')) { |
| 206 | ++ptr; |
| 207 | } |
| 208 | while (isdigit(ptr[0])) { |
| 209 | ++ptr; |
| 210 | } |
| 211 | } else if (!strncmp(ptr, "min", 3)) { |
| 212 | if (kind == 0) { |
| 213 | tmp_local_intv->value.uval.min = local_umin; |
| 214 | } else if (kind == 1) { |
| 215 | tmp_local_intv->value.sval.min = local_smin; |
| 216 | } else if (kind == 2) { |
| 217 | tmp_local_intv->value.fval.min = local_fmin; |
| 218 | } |
| 219 | |
| 220 | ptr += 3; |
| 221 | } else if (!strncmp(ptr, "max", 3)) { |
| 222 | if (kind == 0) { |
| 223 | tmp_local_intv->value.uval.min = local_umax; |
| 224 | } else if (kind == 1) { |
| 225 | tmp_local_intv->value.sval.min = local_smax; |
| 226 | } else if (kind == 2) { |
| 227 | tmp_local_intv->value.fval.min = local_fmax; |
| 228 | } |
| 229 | |
| 230 | ptr += 3; |
| 231 | } else { |
| 232 | assert(0); |
| 233 | } |
| 234 | |
| 235 | while (isspace(ptr[0])) { |
| 236 | ptr++; |
| 237 | } |
| 238 | |
| 239 | /* no interval or interval */ |
| 240 | if ((ptr[0] == '|') || !ptr[0]) { |
| 241 | if (kind == 0) { |
| 242 | tmp_local_intv->value.uval.max = tmp_local_intv->value.uval.min; |
| 243 | } else if (kind == 1) { |
| 244 | tmp_local_intv->value.sval.max = tmp_local_intv->value.sval.min; |
| 245 | } else if (kind == 2) { |
| 246 | tmp_local_intv->value.fval.max = tmp_local_intv->value.fval.min; |
| 247 | } |
| 248 | } else if (!strncmp(ptr, "..", 2)) { |
| 249 | /* skip ".." */ |
| 250 | ptr += 2; |
| 251 | while (isspace(ptr[0])) { |
| 252 | ++ptr; |
| 253 | } |
| 254 | |
| 255 | /* max */ |
| 256 | if (isdigit(ptr[0]) || (ptr[0] == '+') || (ptr[0] == '-')) { |
| 257 | if (kind == 0) { |
| 258 | tmp_local_intv->value.uval.max = atoll(ptr); |
| 259 | } else if (kind == 1) { |
| 260 | tmp_local_intv->value.sval.max = atoll(ptr); |
| 261 | } else if (kind == 2) { |
| 262 | tmp_local_intv->value.fval.max = atoll(ptr); |
| 263 | } |
| 264 | } else if (!strncmp(ptr, "max", 3)) { |
| 265 | if (kind == 0) { |
| 266 | tmp_local_intv->value.uval.max = local_umax; |
| 267 | } else if (kind == 1) { |
| 268 | tmp_local_intv->value.sval.max = local_smax; |
| 269 | } else if (kind == 2) { |
| 270 | tmp_local_intv->value.fval.max = local_fmax; |
| 271 | } |
| 272 | } else { |
| 273 | assert(0); |
| 274 | } |
| 275 | } else { |
| 276 | assert(0); |
| 277 | } |
| 278 | |
| 279 | /* next segment (next OR) */ |
| 280 | seg_ptr = strchr(seg_ptr, '|'); |
| 281 | if (!seg_ptr) { |
| 282 | break; |
| 283 | } |
| 284 | seg_ptr++; |
| 285 | } |
| 286 | |
| 287 | /* check local restrictions against superior ones */ |
| 288 | if (intv) { |
| 289 | tmp_intv = intv; |
| 290 | tmp_local_intv = *local_intv; |
| 291 | |
| 292 | while (tmp_local_intv && tmp_intv) { |
| 293 | /* reuse local variables */ |
| 294 | if (kind == 0) { |
| 295 | local_umin = tmp_local_intv->value.uval.min; |
| 296 | local_umax = tmp_local_intv->value.uval.max; |
| 297 | |
| 298 | /* it must be in this interval */ |
| 299 | if ((local_umin >= tmp_intv->value.uval.min) && (local_umin <= tmp_intv->value.uval.max)) { |
| 300 | /* this interval is covered, next one */ |
| 301 | if (local_umax <= tmp_intv->value.uval.max) { |
| 302 | tmp_local_intv = tmp_local_intv->next; |
| 303 | continue; |
| 304 | /* ascending order of restrictions -> fail */ |
| 305 | } else { |
| 306 | ret = EXIT_FAILURE; |
| 307 | goto cleanup; |
| 308 | } |
| 309 | } |
| 310 | } else if (kind == 1) { |
| 311 | local_smin = tmp_local_intv->value.sval.min; |
| 312 | local_smax = tmp_local_intv->value.sval.max; |
| 313 | |
| 314 | if ((local_smin >= tmp_intv->value.sval.min) && (local_smin <= tmp_intv->value.sval.max)) { |
| 315 | if (local_smax <= tmp_intv->value.sval.max) { |
| 316 | tmp_local_intv = tmp_local_intv->next; |
| 317 | continue; |
| 318 | } else { |
| 319 | ret = EXIT_FAILURE; |
| 320 | goto cleanup; |
| 321 | } |
| 322 | } |
| 323 | } else if (kind == 2) { |
| 324 | local_fmin = tmp_local_intv->value.fval.min; |
| 325 | local_fmax = tmp_local_intv->value.fval.max; |
| 326 | |
| 327 | if ((local_fmin >= tmp_intv->value.fval.min) && (local_fmin <= tmp_intv->value.fval.max)) { |
| 328 | if (local_fmax <= tmp_intv->value.fval.max) { |
| 329 | tmp_local_intv = tmp_local_intv->next; |
| 330 | continue; |
| 331 | } else { |
| 332 | ret = EXIT_FAILURE; |
| 333 | goto cleanup; |
| 334 | } |
| 335 | } |
| 336 | } |
| 337 | |
| 338 | tmp_intv = tmp_intv->next; |
| 339 | } |
| 340 | |
| 341 | /* some interval left uncovered -> fail */ |
| 342 | if (tmp_local_intv) { |
| 343 | ret = EXIT_FAILURE; |
| 344 | } |
| 345 | |
| 346 | } |
| 347 | |
| 348 | cleanup: |
| 349 | while (intv) { |
| 350 | tmp_intv = intv->next; |
| 351 | free(intv); |
| 352 | intv = tmp_intv; |
| 353 | } |
| 354 | |
| 355 | /* fail */ |
| 356 | if (ret) { |
| 357 | while (*local_intv) { |
| 358 | tmp_local_intv = (*local_intv)->next; |
| 359 | free(*local_intv); |
| 360 | *local_intv = tmp_local_intv; |
| 361 | } |
| 362 | } |
| 363 | |
| 364 | return ret; |
| 365 | } |
| 366 | |
| 367 | /* does not log */ |
Radek Krejci | 1574a8d | 2015-08-03 14:16:52 +0200 | [diff] [blame] | 368 | struct lys_tpdf * |
Radek Krejci | b804869 | 2015-08-05 13:36:34 +0200 | [diff] [blame] | 369 | resolve_superior_type(const char *name, const char *prefix, struct lys_module *module, struct lys_node *parent) |
Michal Vasko | c3d9f8c | 2015-07-31 14:37:24 +0200 | [diff] [blame] | 370 | { |
| 371 | int i, j, found = 0; |
Radek Krejci | 1574a8d | 2015-08-03 14:16:52 +0200 | [diff] [blame] | 372 | struct lys_tpdf *tpdf; |
Michal Vasko | c3d9f8c | 2015-07-31 14:37:24 +0200 | [diff] [blame] | 373 | int tpdf_size; |
| 374 | |
| 375 | if (!prefix) { |
| 376 | /* no prefix, try built-in types */ |
| 377 | for (i = 1; i < LY_DATA_TYPE_COUNT; i++) { |
| 378 | if (!strcmp(ly_types[i].def->name, name)) { |
| 379 | return ly_types[i].def; |
| 380 | } |
| 381 | } |
| 382 | } else { |
| 383 | if (!strcmp(prefix, module->prefix)) { |
| 384 | /* prefix refers to the current module, ignore it */ |
| 385 | prefix = NULL; |
| 386 | } |
| 387 | } |
| 388 | |
| 389 | if (!prefix && parent) { |
| 390 | /* search in local typedefs */ |
| 391 | while (parent) { |
| 392 | switch (parent->nodetype) { |
Radek Krejci | 7651257 | 2015-08-04 09:47:08 +0200 | [diff] [blame] | 393 | case LYS_CONTAINER: |
Radek Krejci | b804869 | 2015-08-05 13:36:34 +0200 | [diff] [blame] | 394 | tpdf_size = ((struct lys_node_container *)parent)->tpdf_size; |
| 395 | tpdf = ((struct lys_node_container *)parent)->tpdf; |
Michal Vasko | c3d9f8c | 2015-07-31 14:37:24 +0200 | [diff] [blame] | 396 | break; |
| 397 | |
Radek Krejci | 7651257 | 2015-08-04 09:47:08 +0200 | [diff] [blame] | 398 | case LYS_LIST: |
Radek Krejci | b804869 | 2015-08-05 13:36:34 +0200 | [diff] [blame] | 399 | tpdf_size = ((struct lys_node_list *)parent)->tpdf_size; |
| 400 | tpdf = ((struct lys_node_list *)parent)->tpdf; |
Michal Vasko | c3d9f8c | 2015-07-31 14:37:24 +0200 | [diff] [blame] | 401 | break; |
| 402 | |
Radek Krejci | 7651257 | 2015-08-04 09:47:08 +0200 | [diff] [blame] | 403 | case LYS_GROUPING: |
Radek Krejci | b804869 | 2015-08-05 13:36:34 +0200 | [diff] [blame] | 404 | tpdf_size = ((struct lys_node_grp *)parent)->tpdf_size; |
| 405 | tpdf = ((struct lys_node_grp *)parent)->tpdf; |
Michal Vasko | c3d9f8c | 2015-07-31 14:37:24 +0200 | [diff] [blame] | 406 | break; |
| 407 | |
Radek Krejci | 7651257 | 2015-08-04 09:47:08 +0200 | [diff] [blame] | 408 | case LYS_RPC: |
Radek Krejci | b804869 | 2015-08-05 13:36:34 +0200 | [diff] [blame] | 409 | tpdf_size = ((struct lys_node_rpc *)parent)->tpdf_size; |
| 410 | tpdf = ((struct lys_node_rpc *)parent)->tpdf; |
Michal Vasko | c3d9f8c | 2015-07-31 14:37:24 +0200 | [diff] [blame] | 411 | break; |
| 412 | |
Radek Krejci | 7651257 | 2015-08-04 09:47:08 +0200 | [diff] [blame] | 413 | case LYS_NOTIF: |
Radek Krejci | b804869 | 2015-08-05 13:36:34 +0200 | [diff] [blame] | 414 | tpdf_size = ((struct lys_node_notif *)parent)->tpdf_size; |
| 415 | tpdf = ((struct lys_node_notif *)parent)->tpdf; |
Michal Vasko | c3d9f8c | 2015-07-31 14:37:24 +0200 | [diff] [blame] | 416 | break; |
| 417 | |
Radek Krejci | 7651257 | 2015-08-04 09:47:08 +0200 | [diff] [blame] | 418 | case LYS_INPUT: |
| 419 | case LYS_OUTPUT: |
Radek Krejci | 4608ada | 2015-08-05 16:04:37 +0200 | [diff] [blame] | 420 | tpdf_size = ((struct lys_node_rpc_inout *)parent)->tpdf_size; |
| 421 | tpdf = ((struct lys_node_rpc_inout *)parent)->tpdf; |
Michal Vasko | c3d9f8c | 2015-07-31 14:37:24 +0200 | [diff] [blame] | 422 | break; |
| 423 | |
| 424 | default: |
| 425 | parent = parent->parent; |
| 426 | continue; |
| 427 | } |
| 428 | |
| 429 | for (i = 0; i < tpdf_size; i++) { |
| 430 | if (!strcmp(tpdf[i].name, name)) { |
| 431 | return &tpdf[i]; |
| 432 | } |
| 433 | } |
| 434 | |
| 435 | parent = parent->parent; |
| 436 | } |
| 437 | } else if (prefix) { |
| 438 | /* get module where to search */ |
| 439 | for (i = 0; i < module->imp_size; i++) { |
| 440 | if (!strcmp(module->imp[i].prefix, prefix)) { |
| 441 | module = module->imp[i].module; |
| 442 | found = 1; |
| 443 | break; |
| 444 | } |
| 445 | } |
| 446 | if (!found) { |
| 447 | return NULL; |
| 448 | } |
| 449 | } |
| 450 | |
| 451 | /* search in top level typedefs */ |
| 452 | for (i = 0; i < module->tpdf_size; i++) { |
| 453 | if (!strcmp(module->tpdf[i].name, name)) { |
| 454 | return &module->tpdf[i]; |
| 455 | } |
| 456 | } |
| 457 | |
| 458 | /* search in submodules */ |
| 459 | for (i = 0; i < module->inc_size; i++) { |
| 460 | for (j = 0; j < module->inc[i].submodule->tpdf_size; j++) { |
| 461 | if (!strcmp(module->inc[i].submodule->tpdf[j].name, name)) { |
| 462 | return &module->inc[i].submodule->tpdf[j]; |
| 463 | } |
| 464 | } |
| 465 | } |
| 466 | |
| 467 | return NULL; |
| 468 | } |
| 469 | |
| 470 | static int |
Radek Krejci | 1574a8d | 2015-08-03 14:16:52 +0200 | [diff] [blame] | 471 | check_default(struct lys_type *type, const char *value) |
Michal Vasko | c3d9f8c | 2015-07-31 14:37:24 +0200 | [diff] [blame] | 472 | { |
| 473 | /* TODO - RFC 6020, sec. 7.3.4 */ |
| 474 | (void)type; |
| 475 | (void)value; |
| 476 | return EXIT_SUCCESS; |
| 477 | } |
| 478 | |
Michal Vasko | f02e374 | 2015-08-05 16:27:02 +0200 | [diff] [blame^] | 479 | /* logs directly */ |
Michal Vasko | c3d9f8c | 2015-07-31 14:37:24 +0200 | [diff] [blame] | 480 | static int |
Michal Vasko | f02e374 | 2015-08-05 16:27:02 +0200 | [diff] [blame^] | 481 | check_key(struct lys_node_leaf *key, uint8_t flags, struct lys_node_leaf **list, int index, const char *name, int len, |
| 482 | uint32_t line) |
Michal Vasko | c3d9f8c | 2015-07-31 14:37:24 +0200 | [diff] [blame] | 483 | { |
| 484 | char *dup = NULL; |
| 485 | int j; |
| 486 | |
| 487 | /* existence */ |
| 488 | if (!key) { |
Michal Vasko | f02e374 | 2015-08-05 16:27:02 +0200 | [diff] [blame^] | 489 | if (name[len] != '\0') { |
| 490 | dup = strdup(name); |
| 491 | dup[len] = '\0'; |
| 492 | name = dup; |
Michal Vasko | c3d9f8c | 2015-07-31 14:37:24 +0200 | [diff] [blame] | 493 | } |
Michal Vasko | e7fc19c | 2015-08-05 16:24:39 +0200 | [diff] [blame] | 494 | LOGVAL(LYE_KEY_MISS, line, name); |
| 495 | free(dup); |
Michal Vasko | c3d9f8c | 2015-07-31 14:37:24 +0200 | [diff] [blame] | 496 | return EXIT_FAILURE; |
| 497 | } |
| 498 | |
| 499 | /* uniqueness */ |
| 500 | for (j = index - 1; j >= 0; j--) { |
| 501 | if (list[index] == list[j]) { |
Michal Vasko | e7fc19c | 2015-08-05 16:24:39 +0200 | [diff] [blame] | 502 | LOGVAL(LYE_KEY_DUP, line, key->name); |
Michal Vasko | c3d9f8c | 2015-07-31 14:37:24 +0200 | [diff] [blame] | 503 | return EXIT_FAILURE; |
| 504 | } |
| 505 | } |
| 506 | |
| 507 | /* key is a leaf */ |
Radek Krejci | 7651257 | 2015-08-04 09:47:08 +0200 | [diff] [blame] | 508 | if (key->nodetype != LYS_LEAF) { |
Michal Vasko | e7fc19c | 2015-08-05 16:24:39 +0200 | [diff] [blame] | 509 | LOGVAL(LYE_KEY_NLEAF, line, key->name); |
Michal Vasko | c3d9f8c | 2015-07-31 14:37:24 +0200 | [diff] [blame] | 510 | return EXIT_FAILURE; |
| 511 | } |
| 512 | |
| 513 | /* type of the leaf is not built-in empty */ |
| 514 | if (key->type.base == LY_TYPE_EMPTY) { |
Michal Vasko | e7fc19c | 2015-08-05 16:24:39 +0200 | [diff] [blame] | 515 | LOGVAL(LYE_KEY_TYPE, line, key->name); |
Michal Vasko | c3d9f8c | 2015-07-31 14:37:24 +0200 | [diff] [blame] | 516 | return EXIT_FAILURE; |
| 517 | } |
| 518 | |
| 519 | /* config attribute is the same as of the list */ |
Radek Krejci | 1574a8d | 2015-08-03 14:16:52 +0200 | [diff] [blame] | 520 | if ((flags & LYS_CONFIG_MASK) != (key->flags & LYS_CONFIG_MASK)) { |
Michal Vasko | e7fc19c | 2015-08-05 16:24:39 +0200 | [diff] [blame] | 521 | LOGVAL(LYE_KEY_CONFIG, line, key->name); |
Michal Vasko | c3d9f8c | 2015-07-31 14:37:24 +0200 | [diff] [blame] | 522 | return EXIT_FAILURE; |
| 523 | } |
| 524 | |
| 525 | return EXIT_SUCCESS; |
| 526 | } |
| 527 | |
Michal Vasko | f02e374 | 2015-08-05 16:27:02 +0200 | [diff] [blame^] | 528 | /* does not log */ |
| 529 | static struct lys_module * |
| 530 | resolve_import_in_includes_recursive(struct lys_module *mod, const char *prefix, uint32_t pref_len) |
| 531 | { |
| 532 | int i, j; |
| 533 | struct lys_submodule *sub_mod; |
| 534 | struct lys_module *ret; |
| 535 | |
| 536 | for (i = 0; i < mod->inc_size; i++) { |
| 537 | sub_mod = mod->inc[i].submodule; |
| 538 | for (j = 0; j < sub_mod->imp_size; j++) { |
| 539 | if ((pref_len == strlen(sub_mod->imp[j].prefix)) |
| 540 | && !strncmp(sub_mod->imp[j].prefix, prefix, pref_len)) { |
| 541 | return sub_mod->imp[j].module; |
| 542 | } |
| 543 | } |
| 544 | } |
| 545 | |
| 546 | for (i = 0; i < mod->inc_size; i++) { |
| 547 | ret = resolve_import_in_includes_recursive((struct lys_module *)mod->inc[i].submodule, prefix, pref_len); |
| 548 | if (ret) { |
| 549 | return ret; |
| 550 | } |
| 551 | } |
| 552 | |
| 553 | return NULL; |
| 554 | } |
| 555 | |
| 556 | /* does not log */ |
| 557 | static struct lys_module * |
| 558 | resolve_prefixed_module(struct lys_module *mod, const char *prefix, uint32_t pref_len) |
| 559 | { |
| 560 | int i; |
| 561 | |
| 562 | /* module itself */ |
| 563 | if (!strncmp(mod->prefix, prefix, pref_len) && mod->prefix[pref_len] == '\0') { |
| 564 | return mod; |
| 565 | } |
| 566 | |
| 567 | /* imported modules */ |
| 568 | for (i = 0; i < mod->imp_size; i++) { |
| 569 | if (!strncmp(mod->imp[i].prefix, prefix, pref_len) && mod->imp[i].prefix[pref_len] == '\0') { |
| 570 | return mod->imp[i].module; |
| 571 | } |
| 572 | } |
| 573 | |
| 574 | /* imports in includes */ |
| 575 | return resolve_import_in_includes_recursive(mod, prefix, pref_len); |
| 576 | } |
| 577 | |
| 578 | /* logs directly */ |
Michal Vasko | c3d9f8c | 2015-07-31 14:37:24 +0200 | [diff] [blame] | 579 | int |
Michal Vasko | f02e374 | 2015-08-05 16:27:02 +0200 | [diff] [blame^] | 580 | resolve_unique(struct lys_node *parent, const char *uniq_str, struct lys_unique *uniq_s, uint32_t line) |
Michal Vasko | c3d9f8c | 2015-07-31 14:37:24 +0200 | [diff] [blame] | 581 | { |
| 582 | char *uniq_val, *uniq_begin, *start; |
| 583 | int i, j; |
| 584 | |
| 585 | /* count the number of unique values */ |
| 586 | uniq_val = uniq_begin = strdup(uniq_str); |
| 587 | uniq_s->leafs_size = 0; |
| 588 | while ((uniq_val = strpbrk(uniq_val, " \t\n"))) { |
| 589 | uniq_s->leafs_size++; |
| 590 | while (isspace(*uniq_val)) { |
| 591 | uniq_val++; |
| 592 | } |
| 593 | } |
| 594 | uniq_s->leafs_size++; |
| 595 | uniq_s->leafs = calloc(uniq_s->leafs_size, sizeof *uniq_s->leafs); |
| 596 | |
| 597 | /* interconnect unique values with the leafs */ |
| 598 | uniq_val = uniq_begin; |
| 599 | for (i = 0; uniq_val && i < uniq_s->leafs_size; i++) { |
| 600 | start = uniq_val; |
| 601 | if ((uniq_val = strpbrk(start, " \t\n"))) { |
| 602 | *uniq_val = '\0'; /* add terminating NULL byte */ |
| 603 | uniq_val++; |
| 604 | while (isspace(*uniq_val)) { |
| 605 | uniq_val++; |
| 606 | } |
| 607 | } /* else only one nodeid present/left already NULL byte terminated */ |
| 608 | |
Radek Krejci | b804869 | 2015-08-05 13:36:34 +0200 | [diff] [blame] | 609 | uniq_s->leafs[i] = (struct lys_node_leaf *)resolve_schema_nodeid(start, parent, parent->module, LYS_USES); |
Radek Krejci | 7651257 | 2015-08-04 09:47:08 +0200 | [diff] [blame] | 610 | if (!uniq_s->leafs[i] || uniq_s->leafs[i]->nodetype != LYS_LEAF) { |
Michal Vasko | e7fc19c | 2015-08-05 16:24:39 +0200 | [diff] [blame] | 611 | LOGVAL(LYE_INARG, line, start, "unique"); |
| 612 | if (!uniq_s->leafs[i]) { |
| 613 | LOGVAL(LYE_SPEC, 0, "Target leaf not found."); |
| 614 | } else { |
| 615 | LOGVAL(LYE_SPEC, 0, "Target is not a leaf."); |
Michal Vasko | c3d9f8c | 2015-07-31 14:37:24 +0200 | [diff] [blame] | 616 | } |
| 617 | goto error; |
| 618 | } |
| 619 | |
| 620 | for (j = 0; j < i; j++) { |
| 621 | if (uniq_s->leafs[j] == uniq_s->leafs[i]) { |
Michal Vasko | e7fc19c | 2015-08-05 16:24:39 +0200 | [diff] [blame] | 622 | LOGVAL(LYE_INARG, line, start, "unique"); |
| 623 | LOGVAL(LYE_SPEC, 0, "The identifier is not unique"); |
Michal Vasko | c3d9f8c | 2015-07-31 14:37:24 +0200 | [diff] [blame] | 624 | goto error; |
| 625 | } |
| 626 | } |
| 627 | } |
| 628 | |
| 629 | free(uniq_begin); |
| 630 | return EXIT_SUCCESS; |
| 631 | |
| 632 | error: |
| 633 | |
| 634 | free(uniq_s->leafs); |
| 635 | free(uniq_begin); |
| 636 | |
| 637 | return EXIT_FAILURE; |
| 638 | } |
| 639 | |
Michal Vasko | f02e374 | 2015-08-05 16:27:02 +0200 | [diff] [blame^] | 640 | /* logs directly */ |
Michal Vasko | c3d9f8c | 2015-07-31 14:37:24 +0200 | [diff] [blame] | 641 | static int |
Michal Vasko | f02e374 | 2015-08-05 16:27:02 +0200 | [diff] [blame^] | 642 | resolve_grouping(struct lys_node *parent, struct lys_node_uses *uses, uint32_t line) |
Michal Vasko | c3d9f8c | 2015-07-31 14:37:24 +0200 | [diff] [blame] | 643 | { |
Radek Krejci | b804869 | 2015-08-05 13:36:34 +0200 | [diff] [blame] | 644 | struct lys_module *searchmod = NULL, *module = uses->module; |
Radek Krejci | 7651257 | 2015-08-04 09:47:08 +0200 | [diff] [blame] | 645 | struct lys_node *mnode, *mnode_aux; |
Michal Vasko | c3d9f8c | 2015-07-31 14:37:24 +0200 | [diff] [blame] | 646 | const char *name; |
| 647 | int prefix_len = 0; |
| 648 | int i; |
| 649 | |
| 650 | /* get referenced grouping */ |
| 651 | name = strchr(uses->name, ':'); |
| 652 | if (!name) { |
| 653 | /* no prefix, search in local tree */ |
| 654 | name = uses->name; |
| 655 | } else { |
| 656 | /* there is some prefix, check if it refer the same data model */ |
| 657 | |
| 658 | /* set name to correct position after colon */ |
| 659 | prefix_len = name - uses->name; |
| 660 | name++; |
| 661 | |
| 662 | if (!strncmp(uses->name, module->prefix, prefix_len) && !module->prefix[prefix_len]) { |
| 663 | /* prefix refers to the current module, ignore it */ |
| 664 | prefix_len = 0; |
| 665 | } |
| 666 | } |
| 667 | |
| 668 | /* search */ |
| 669 | if (prefix_len) { |
| 670 | /* in top-level groupings of some other module */ |
| 671 | for (i = 0; i < module->imp_size; i++) { |
| 672 | if (!strncmp(module->imp[i].prefix, uses->name, prefix_len) |
| 673 | && !module->imp[i].prefix[prefix_len]) { |
| 674 | searchmod = module->imp[i].module; |
| 675 | break; |
| 676 | } |
| 677 | } |
| 678 | if (!searchmod) { |
| 679 | /* uses refers unknown data model */ |
Michal Vasko | e7fc19c | 2015-08-05 16:24:39 +0200 | [diff] [blame] | 680 | LOGVAL(LYE_INPREF, line, name); |
Michal Vasko | c3d9f8c | 2015-07-31 14:37:24 +0200 | [diff] [blame] | 681 | return EXIT_FAILURE; |
| 682 | } |
| 683 | |
| 684 | LY_TREE_FOR(searchmod->data, mnode) { |
Radek Krejci | 7651257 | 2015-08-04 09:47:08 +0200 | [diff] [blame] | 685 | if (mnode->nodetype == LYS_GROUPING && !strcmp(mnode->name, name)) { |
Radek Krejci | b804869 | 2015-08-05 13:36:34 +0200 | [diff] [blame] | 686 | uses->grp = (struct lys_node_grp *)mnode; |
Michal Vasko | c3d9f8c | 2015-07-31 14:37:24 +0200 | [diff] [blame] | 687 | return EXIT_SUCCESS; |
| 688 | } |
| 689 | } |
| 690 | } else { |
| 691 | /* in local tree hierarchy */ |
| 692 | for (mnode_aux = parent; mnode_aux; mnode_aux = mnode_aux->parent) { |
| 693 | LY_TREE_FOR(mnode_aux->child, mnode) { |
Radek Krejci | 7651257 | 2015-08-04 09:47:08 +0200 | [diff] [blame] | 694 | if (mnode->nodetype == LYS_GROUPING && !strcmp(mnode->name, name)) { |
Radek Krejci | b804869 | 2015-08-05 13:36:34 +0200 | [diff] [blame] | 695 | uses->grp = (struct lys_node_grp *)mnode; |
Michal Vasko | c3d9f8c | 2015-07-31 14:37:24 +0200 | [diff] [blame] | 696 | return EXIT_SUCCESS; |
| 697 | } |
| 698 | } |
| 699 | } |
| 700 | |
| 701 | /* search in top level of the current module */ |
| 702 | LY_TREE_FOR(module->data, mnode) { |
Radek Krejci | 7651257 | 2015-08-04 09:47:08 +0200 | [diff] [blame] | 703 | if (mnode->nodetype == LYS_GROUPING && !strcmp(mnode->name, name)) { |
Radek Krejci | b804869 | 2015-08-05 13:36:34 +0200 | [diff] [blame] | 704 | uses->grp = (struct lys_node_grp *)mnode; |
Michal Vasko | c3d9f8c | 2015-07-31 14:37:24 +0200 | [diff] [blame] | 705 | return EXIT_SUCCESS; |
| 706 | } |
| 707 | } |
| 708 | |
| 709 | /* search in top-level of included modules */ |
| 710 | for (i = 0; i < module->inc_size; i++) { |
| 711 | LY_TREE_FOR(module->inc[i].submodule->data, mnode) { |
Radek Krejci | 7651257 | 2015-08-04 09:47:08 +0200 | [diff] [blame] | 712 | if (mnode->nodetype == LYS_GROUPING && !strcmp(mnode->name, name)) { |
Radek Krejci | b804869 | 2015-08-05 13:36:34 +0200 | [diff] [blame] | 713 | uses->grp = (struct lys_node_grp *)mnode; |
Michal Vasko | c3d9f8c | 2015-07-31 14:37:24 +0200 | [diff] [blame] | 714 | return EXIT_SUCCESS; |
| 715 | } |
| 716 | } |
| 717 | } |
| 718 | } |
| 719 | |
Michal Vasko | e7fc19c | 2015-08-05 16:24:39 +0200 | [diff] [blame] | 720 | LOGVAL(LYE_INRESOLV, line, "grouping", uses->name); |
Michal Vasko | c3d9f8c | 2015-07-31 14:37:24 +0200 | [diff] [blame] | 721 | return EXIT_FAILURE; |
| 722 | } |
| 723 | |
Michal Vasko | f02e374 | 2015-08-05 16:27:02 +0200 | [diff] [blame^] | 724 | /* logs directly */ |
Radek Krejci | b804869 | 2015-08-05 13:36:34 +0200 | [diff] [blame] | 725 | static struct lys_feature * |
Michal Vasko | f02e374 | 2015-08-05 16:27:02 +0200 | [diff] [blame^] | 726 | resolve_feature(const char *name, struct lys_module *module, uint32_t line) |
Michal Vasko | c3d9f8c | 2015-07-31 14:37:24 +0200 | [diff] [blame] | 727 | { |
| 728 | const char *prefix; |
Michal Vasko | f02e374 | 2015-08-05 16:27:02 +0200 | [diff] [blame^] | 729 | uint32_t prefix_len = 0; |
| 730 | int i, j; |
Michal Vasko | c3d9f8c | 2015-07-31 14:37:24 +0200 | [diff] [blame] | 731 | |
| 732 | assert(name); |
| 733 | assert(module); |
| 734 | |
| 735 | /* check prefix */ |
| 736 | prefix = name; |
| 737 | name = strchr(prefix, ':'); |
| 738 | if (name) { |
| 739 | /* there is prefix */ |
| 740 | prefix_len = name - prefix; |
| 741 | name++; |
| 742 | |
| 743 | /* check whether the prefix points to the current module */ |
| 744 | if (!strncmp(prefix, module->prefix, prefix_len) && !module->prefix[prefix_len]) { |
| 745 | /* then ignore prefix and works as there is no prefix */ |
| 746 | prefix_len = 0; |
| 747 | } |
| 748 | } else { |
| 749 | /* no prefix, set pointers correctly */ |
| 750 | name = prefix; |
| 751 | } |
| 752 | |
| 753 | if (prefix_len) { |
| 754 | /* search in imported modules */ |
Michal Vasko | f02e374 | 2015-08-05 16:27:02 +0200 | [diff] [blame^] | 755 | module = resolve_prefixed_module(module, prefix, prefix_len); |
| 756 | if (!module) { |
Michal Vasko | c3d9f8c | 2015-07-31 14:37:24 +0200 | [diff] [blame] | 757 | /* identity refers unknown data model */ |
Michal Vasko | e7fc19c | 2015-08-05 16:24:39 +0200 | [diff] [blame] | 758 | LOGVAL(LYE_INPREF, line, prefix); |
Michal Vasko | c3d9f8c | 2015-07-31 14:37:24 +0200 | [diff] [blame] | 759 | return NULL; |
| 760 | } |
| 761 | } else { |
| 762 | /* search in submodules */ |
| 763 | for (i = 0; i < module->inc_size; i++) { |
| 764 | for (j = 0; j < module->inc[i].submodule->features_size; j++) { |
| 765 | if (!strcmp(name, module->inc[i].submodule->features[j].name)) { |
| 766 | return &(module->inc[i].submodule->features[j]); |
| 767 | } |
| 768 | } |
| 769 | } |
| 770 | } |
| 771 | |
| 772 | /* search in the identified module */ |
| 773 | for (j = 0; j < module->features_size; j++) { |
| 774 | if (!strcmp(name, module->features[j].name)) { |
| 775 | return &module->features[j]; |
| 776 | } |
| 777 | } |
| 778 | |
| 779 | /* not found */ |
Michal Vasko | e7fc19c | 2015-08-05 16:24:39 +0200 | [diff] [blame] | 780 | LOGVAL(LYE_INRESOLV, line, "feature", prefix); |
Michal Vasko | c3d9f8c | 2015-07-31 14:37:24 +0200 | [diff] [blame] | 781 | return NULL; |
| 782 | } |
| 783 | |
Michal Vasko | f02e374 | 2015-08-05 16:27:02 +0200 | [diff] [blame^] | 784 | /* does not log */ |
Radek Krejci | 7651257 | 2015-08-04 09:47:08 +0200 | [diff] [blame] | 785 | struct lys_node * |
| 786 | resolve_child(struct lys_node *parent, const char *name, int len, LYS_NODE type) |
Michal Vasko | c3d9f8c | 2015-07-31 14:37:24 +0200 | [diff] [blame] | 787 | { |
Radek Krejci | 7651257 | 2015-08-04 09:47:08 +0200 | [diff] [blame] | 788 | struct lys_node *child, *result; |
Michal Vasko | c3d9f8c | 2015-07-31 14:37:24 +0200 | [diff] [blame] | 789 | |
| 790 | if (!len) { |
| 791 | len = strlen(name); |
| 792 | } |
| 793 | |
| 794 | LY_TREE_FOR(parent->child, child) { |
Radek Krejci | 7651257 | 2015-08-04 09:47:08 +0200 | [diff] [blame] | 795 | if (child->nodetype == LYS_USES) { |
Michal Vasko | c3d9f8c | 2015-07-31 14:37:24 +0200 | [diff] [blame] | 796 | /* search recursively */ |
| 797 | result = resolve_child(child, name, len, type); |
| 798 | if (result) { |
| 799 | return result; |
| 800 | } |
| 801 | } |
| 802 | |
| 803 | if (child->nodetype & type) { |
| 804 | /* direct check */ |
| 805 | if (child->name == name || (!strncmp(child->name, name, len) && !child->name[len])) { |
| 806 | return child; |
| 807 | } |
| 808 | } |
| 809 | } |
| 810 | |
| 811 | return NULL; |
| 812 | } |
| 813 | |
Michal Vasko | f02e374 | 2015-08-05 16:27:02 +0200 | [diff] [blame^] | 814 | /* does not log |
Michal Vasko | c3d9f8c | 2015-07-31 14:37:24 +0200 | [diff] [blame] | 815 | * |
Michal Vasko | cc9e12e | 2015-08-04 16:14:37 +0200 | [diff] [blame] | 816 | * node_type - LYS_AUGMENT (searches also RPCs and notifications) |
| 817 | * - LYS_USES (only descendant-schema-nodeid allowed, ".." not allowed) |
| 818 | * - LYS_CHOICE (search only start->child, only descendant-schema-nodeid allowed) |
Michal Vasko | c3d9f8c | 2015-07-31 14:37:24 +0200 | [diff] [blame] | 819 | */ |
Radek Krejci | 7651257 | 2015-08-04 09:47:08 +0200 | [diff] [blame] | 820 | struct lys_node * |
Radek Krejci | b804869 | 2015-08-05 13:36:34 +0200 | [diff] [blame] | 821 | resolve_schema_nodeid(const char *id, struct lys_node *start, struct lys_module *mod, LYS_NODE node_type) |
Michal Vasko | c3d9f8c | 2015-07-31 14:37:24 +0200 | [diff] [blame] | 822 | { |
Michal Vasko | cc9e12e | 2015-08-04 16:14:37 +0200 | [diff] [blame] | 823 | const char *name, *prefix; |
Radek Krejci | 7651257 | 2015-08-04 09:47:08 +0200 | [diff] [blame] | 824 | struct lys_node *sibling; |
Michal Vasko | c3d9f8c | 2015-07-31 14:37:24 +0200 | [diff] [blame] | 825 | int ret, nam_len, pref_len, is_relative = -1; |
Radek Krejci | b804869 | 2015-08-05 13:36:34 +0200 | [diff] [blame] | 826 | struct lys_module *prefix_mod, *start_mod; |
Michal Vasko | c3d9f8c | 2015-07-31 14:37:24 +0200 | [diff] [blame] | 827 | /* 0 - in module, 1 - in 1st submodule, 2 - in 2nd submodule, ... */ |
| 828 | uint8_t in_submod = 0; |
Michal Vasko | cc9e12e | 2015-08-04 16:14:37 +0200 | [diff] [blame] | 829 | /* 0 - in data, 1 - in RPCs, 2 - in notifications (relevant only with LYS_AUGMENT) */ |
Michal Vasko | c3d9f8c | 2015-07-31 14:37:24 +0200 | [diff] [blame] | 830 | uint8_t in_mod_part = 0; |
| 831 | |
| 832 | assert(mod); |
| 833 | assert(id); |
| 834 | |
| 835 | if ((ret = parse_schema_nodeid(id, &prefix, &pref_len, &name, &nam_len, &is_relative)) < 1) { |
| 836 | return NULL; |
| 837 | } |
| 838 | id += ret; |
| 839 | |
Radek Krejci | 7651257 | 2015-08-04 09:47:08 +0200 | [diff] [blame] | 840 | if (!is_relative && (node_type & (LYS_USES | LYS_CHOICE))) { |
Michal Vasko | c3d9f8c | 2015-07-31 14:37:24 +0200 | [diff] [blame] | 841 | return NULL; |
| 842 | } |
| 843 | |
| 844 | /* absolute-schema-nodeid */ |
| 845 | if (!is_relative) { |
| 846 | if (prefix) { |
| 847 | start_mod = resolve_prefixed_module(mod, prefix, pref_len); |
| 848 | if (!start_mod) { |
| 849 | return NULL; |
| 850 | } |
| 851 | start = start_mod->data; |
| 852 | } else { |
| 853 | start = mod->data; |
| 854 | start_mod = mod; |
| 855 | } |
| 856 | /* descendant-schema-nodeid */ |
| 857 | } else { |
| 858 | assert(start); |
| 859 | start = start->child; |
| 860 | start_mod = start->module; |
| 861 | } |
| 862 | |
| 863 | while (1) { |
Michal Vasko | 1e989c0 | 2015-08-04 12:33:00 +0200 | [diff] [blame] | 864 | sibling = NULL; |
| 865 | LY_TREE_FOR(start, sibling) { |
| 866 | /* name match */ |
| 867 | if ((sibling->name && !strncmp(name, sibling->name, nam_len) && !sibling->name[nam_len]) |
| 868 | || (!strncmp(name, "input", 5) && (nam_len == 5) && (sibling->nodetype == LYS_INPUT)) |
| 869 | || (!strncmp(name, "output", 6) && (nam_len == 6) && (sibling->nodetype == LYS_OUTPUT))) { |
Michal Vasko | c3d9f8c | 2015-07-31 14:37:24 +0200 | [diff] [blame] | 870 | |
Michal Vasko | 1e989c0 | 2015-08-04 12:33:00 +0200 | [diff] [blame] | 871 | /* prefix match check */ |
| 872 | if (prefix) { |
Michal Vasko | c3d9f8c | 2015-07-31 14:37:24 +0200 | [diff] [blame] | 873 | |
Michal Vasko | 1e989c0 | 2015-08-04 12:33:00 +0200 | [diff] [blame] | 874 | prefix_mod = resolve_prefixed_module(mod, prefix, pref_len); |
| 875 | if (!prefix_mod) { |
| 876 | return NULL; |
| 877 | } |
| 878 | |
| 879 | if (!sibling->module->type) { |
| 880 | if (prefix_mod != sibling->module) { |
| 881 | continue; |
Michal Vasko | c3d9f8c | 2015-07-31 14:37:24 +0200 | [diff] [blame] | 882 | } |
Michal Vasko | 1e989c0 | 2015-08-04 12:33:00 +0200 | [diff] [blame] | 883 | } else { |
Radek Krejci | b804869 | 2015-08-05 13:36:34 +0200 | [diff] [blame] | 884 | if (prefix_mod != ((struct lys_submodule *)sibling->module)->belongsto) { |
Michal Vasko | 1e989c0 | 2015-08-04 12:33:00 +0200 | [diff] [blame] | 885 | continue; |
Michal Vasko | c3d9f8c | 2015-07-31 14:37:24 +0200 | [diff] [blame] | 886 | } |
| 887 | } |
Michal Vasko | c3d9f8c | 2015-07-31 14:37:24 +0200 | [diff] [blame] | 888 | } |
Michal Vasko | 1e989c0 | 2015-08-04 12:33:00 +0200 | [diff] [blame] | 889 | |
Michal Vasko | 1e989c0 | 2015-08-04 12:33:00 +0200 | [diff] [blame] | 890 | /* the result node? */ |
| 891 | if (!id[0]) { |
| 892 | return sibling; |
| 893 | } |
| 894 | |
| 895 | /* check for shorthand cases - then 'start' does not change */ |
| 896 | if (!sibling->parent || (sibling->parent->nodetype != LYS_CHOICE) |
| 897 | || (sibling->nodetype == LYS_CASE)) { |
| 898 | start = sibling->child; |
| 899 | } |
| 900 | break; |
| 901 | } |
| 902 | } |
| 903 | |
| 904 | /* we did not find the case in direct siblings */ |
| 905 | if (node_type == LYS_CHOICE) { |
| 906 | return NULL; |
| 907 | } |
| 908 | |
| 909 | /* no match */ |
| 910 | if (!sibling) { |
| 911 | /* on augment search also RPCs and notifications, if we are in top-level */ |
| 912 | if ((node_type == LYS_AUGMENT) && (!start || !start->parent)) { |
| 913 | /* we have searched all the data nodes */ |
| 914 | if (in_mod_part == 0) { |
| 915 | if (!in_submod) { |
| 916 | start = start_mod->rpc; |
| 917 | } else { |
| 918 | start = start_mod->inc[in_submod-1].submodule->rpc; |
| 919 | } |
| 920 | in_mod_part = 1; |
| 921 | continue; |
| 922 | } |
| 923 | /* we have searched all the RPCs */ |
| 924 | if (in_mod_part == 1) { |
| 925 | if (!in_submod) { |
| 926 | start = start_mod->notif; |
| 927 | } else { |
| 928 | start = start_mod->inc[in_submod-1].submodule->notif; |
| 929 | } |
| 930 | in_mod_part = 2; |
| 931 | continue; |
| 932 | } |
| 933 | /* we have searched all the notifications, nothing else to search in this module */ |
Michal Vasko | c3d9f8c | 2015-07-31 14:37:24 +0200 | [diff] [blame] | 934 | } |
| 935 | |
Michal Vasko | 1e989c0 | 2015-08-04 12:33:00 +0200 | [diff] [blame] | 936 | /* are we done with the included submodules as well? */ |
| 937 | if (in_submod == start_mod->inc_size) { |
Michal Vasko | c3d9f8c | 2015-07-31 14:37:24 +0200 | [diff] [blame] | 938 | return NULL; |
| 939 | } |
| 940 | |
Michal Vasko | 1e989c0 | 2015-08-04 12:33:00 +0200 | [diff] [blame] | 941 | /* we aren't, check the next one */ |
| 942 | ++in_submod; |
| 943 | in_mod_part = 0; |
| 944 | start = start_mod->inc[in_submod-1].submodule->data; |
| 945 | continue; |
Michal Vasko | c3d9f8c | 2015-07-31 14:37:24 +0200 | [diff] [blame] | 946 | } |
| 947 | |
| 948 | /* we found our submodule */ |
| 949 | if (in_submod) { |
Radek Krejci | b804869 | 2015-08-05 13:36:34 +0200 | [diff] [blame] | 950 | start_mod = (struct lys_module *)start_mod->inc[in_submod-1].submodule; |
Michal Vasko | c3d9f8c | 2015-07-31 14:37:24 +0200 | [diff] [blame] | 951 | in_submod = 0; |
| 952 | } |
| 953 | |
| 954 | if ((ret = parse_schema_nodeid(id, &prefix, &pref_len, &name, &nam_len, &is_relative)) < 1) { |
| 955 | return NULL; |
| 956 | } |
| 957 | id += ret; |
| 958 | } |
| 959 | |
| 960 | /* cannot get here */ |
| 961 | return NULL; |
| 962 | } |
| 963 | |
Michal Vasko | f02e374 | 2015-08-05 16:27:02 +0200 | [diff] [blame^] | 964 | /* does not log */ |
Michal Vasko | c3d9f8c | 2015-07-31 14:37:24 +0200 | [diff] [blame] | 965 | static int |
| 966 | resolve_data_nodeid(const char *prefix, int pref_len, const char *name, int nam_len, struct lyd_node *data_source, |
Michal Vasko | f02e374 | 2015-08-05 16:27:02 +0200 | [diff] [blame^] | 967 | struct unres_data **parents) |
Michal Vasko | c3d9f8c | 2015-07-31 14:37:24 +0200 | [diff] [blame] | 968 | { |
| 969 | int flag; |
Radek Krejci | b804869 | 2015-08-05 13:36:34 +0200 | [diff] [blame] | 970 | struct lys_module *mod; |
Michal Vasko | f02e374 | 2015-08-05 16:27:02 +0200 | [diff] [blame^] | 971 | struct unres_data *item, *par_iter; |
Michal Vasko | c3d9f8c | 2015-07-31 14:37:24 +0200 | [diff] [blame] | 972 | struct lyd_node *node; |
| 973 | |
| 974 | if (prefix) { |
| 975 | /* we have prefix, find appropriate module */ |
| 976 | mod = resolve_prefixed_module(data_source->schema->module, prefix, pref_len); |
| 977 | if (!mod) { |
| 978 | /* invalid prefix */ |
Michal Vasko | f02e374 | 2015-08-05 16:27:02 +0200 | [diff] [blame^] | 979 | return EXIT_FAILURE; |
Michal Vasko | c3d9f8c | 2015-07-31 14:37:24 +0200 | [diff] [blame] | 980 | } |
| 981 | } else { |
| 982 | /* no prefix, module is the same as of current node */ |
| 983 | mod = data_source->schema->module; |
| 984 | } |
| 985 | |
| 986 | if (!*parents) { |
| 987 | *parents = malloc(sizeof **parents); |
| 988 | (*parents)->dnode = NULL; |
| 989 | (*parents)->next = NULL; |
| 990 | } |
| 991 | for (par_iter = *parents; par_iter; par_iter = par_iter->next) { |
Radek Krejci | 7651257 | 2015-08-04 09:47:08 +0200 | [diff] [blame] | 992 | if (par_iter->dnode && (par_iter->dnode->schema->nodetype & (LYS_LEAF | LYS_LEAFLIST))) { |
Michal Vasko | c3d9f8c | 2015-07-31 14:37:24 +0200 | [diff] [blame] | 993 | /* skip */ |
| 994 | continue; |
| 995 | } |
| 996 | flag = 0; |
| 997 | LY_TREE_FOR(par_iter->dnode ? par_iter->dnode->child : data_source, node) { |
| 998 | if (node->schema->module == mod && !strncmp(node->schema->name, name, nam_len) |
| 999 | && node->schema->name[nam_len] == '\0') { |
| 1000 | /* matching target */ |
| 1001 | if (!flag) { |
| 1002 | /* replace leafref instead of the current parent */ |
| 1003 | par_iter->dnode = node; |
| 1004 | flag = 1; |
| 1005 | } else { |
| 1006 | /* multiple matching, so create new leafref structure */ |
| 1007 | item = malloc(sizeof *item); |
| 1008 | item->dnode = node; |
| 1009 | item->next = par_iter->next; |
| 1010 | par_iter->next = item; |
| 1011 | par_iter = par_iter->next; |
| 1012 | } |
| 1013 | } |
| 1014 | } |
| 1015 | } |
| 1016 | |
| 1017 | return !flag; |
| 1018 | } |
| 1019 | |
Michal Vasko | f02e374 | 2015-08-05 16:27:02 +0200 | [diff] [blame^] | 1020 | /* logs directly |
| 1021 | * ... /node[source = destination] ... */ |
Michal Vasko | c3d9f8c | 2015-07-31 14:37:24 +0200 | [diff] [blame] | 1022 | static int |
Michal Vasko | f02e374 | 2015-08-05 16:27:02 +0200 | [diff] [blame^] | 1023 | resolve_path_predicate_data(const char *pred, struct unres_data **node_match, uint32_t line) |
Michal Vasko | c3d9f8c | 2015-07-31 14:37:24 +0200 | [diff] [blame] | 1024 | { |
Michal Vasko | f02e374 | 2015-08-05 16:27:02 +0200 | [diff] [blame^] | 1025 | struct unres_data *source_match, *dest_match, *node, *node_prev = NULL; |
Michal Vasko | c3d9f8c | 2015-07-31 14:37:24 +0200 | [diff] [blame] | 1026 | const char *path_key_expr, *source, *sour_pref, *dest, *dest_pref; |
| 1027 | int pke_len, sour_len, sour_pref_len, dest_len, dest_pref_len, parsed = 0, pke_parsed = 0; |
| 1028 | int has_predicate, dest_parent_times, i; |
| 1029 | |
| 1030 | do { |
| 1031 | if ((i = parse_path_predicate(pred, &sour_pref, &sour_pref_len, &source, &sour_len, &path_key_expr, |
| 1032 | &pke_len, &has_predicate)) < 1) { |
Michal Vasko | e7fc19c | 2015-08-05 16:24:39 +0200 | [diff] [blame] | 1033 | LOGVAL(LYE_INCHAR, line, pred[-i], pred-i); |
Michal Vasko | c3d9f8c | 2015-07-31 14:37:24 +0200 | [diff] [blame] | 1034 | return -parsed+i; |
| 1035 | } |
| 1036 | parsed += i; |
| 1037 | pred += i; |
| 1038 | |
| 1039 | for (node = *node_match; node;) { |
| 1040 | /* source */ |
| 1041 | source_match = NULL; |
| 1042 | /* must be leaf (key of a list) */ |
| 1043 | if (resolve_data_nodeid(sour_pref, sour_pref_len, source, sour_len, node->dnode, &source_match) |
| 1044 | || !source_match || source_match->next |
Radek Krejci | 7651257 | 2015-08-04 09:47:08 +0200 | [diff] [blame] | 1045 | || (source_match->dnode->schema->nodetype != LYS_LEAF)) { |
Michal Vasko | e7fc19c | 2015-08-05 16:24:39 +0200 | [diff] [blame] | 1046 | LOGVAL(LYE_LINE, line); |
| 1047 | /* general error, the one written later will suffice */ |
Michal Vasko | c3d9f8c | 2015-07-31 14:37:24 +0200 | [diff] [blame] | 1048 | return -parsed; |
| 1049 | } |
| 1050 | |
| 1051 | /* destination */ |
| 1052 | dest_match = calloc(1, sizeof *dest_match); |
| 1053 | dest_match->dnode = node->dnode; |
| 1054 | if ((i = parse_path_key_expr(path_key_expr, &dest_pref, &dest_pref_len, &dest, &dest_len, |
| 1055 | &dest_parent_times)) < 1) { |
Michal Vasko | e7fc19c | 2015-08-05 16:24:39 +0200 | [diff] [blame] | 1056 | LOGVAL(LYE_INCHAR, line, path_key_expr[-i], path_key_expr-i); |
Michal Vasko | c3d9f8c | 2015-07-31 14:37:24 +0200 | [diff] [blame] | 1057 | return -parsed+i; |
| 1058 | } |
| 1059 | pke_parsed += i; |
| 1060 | for (i = 0; i < dest_parent_times; ++i) { |
| 1061 | dest_match->dnode = dest_match->dnode->parent; |
| 1062 | if (!dest_match->dnode) { |
| 1063 | free(dest_match); |
Michal Vasko | e7fc19c | 2015-08-05 16:24:39 +0200 | [diff] [blame] | 1064 | LOGVAL(LYE_LINE, line); |
| 1065 | /* general error, the one written later will suffice */ |
Michal Vasko | c3d9f8c | 2015-07-31 14:37:24 +0200 | [diff] [blame] | 1066 | return -parsed; |
| 1067 | } |
| 1068 | } |
| 1069 | while (1) { |
| 1070 | if (resolve_data_nodeid(dest_pref, dest_pref_len, dest, dest_len, dest_match->dnode, &dest_match) |
Michal Vasko | 1f76a28 | 2015-08-04 16:16:53 +0200 | [diff] [blame] | 1071 | || !dest_match->dnode || dest_match->next) { |
Michal Vasko | c3d9f8c | 2015-07-31 14:37:24 +0200 | [diff] [blame] | 1072 | free(dest_match); |
Michal Vasko | e7fc19c | 2015-08-05 16:24:39 +0200 | [diff] [blame] | 1073 | LOGVAL(LYE_LINE, line); |
| 1074 | /* general error, the one written later will suffice */ |
Michal Vasko | c3d9f8c | 2015-07-31 14:37:24 +0200 | [diff] [blame] | 1075 | return -parsed; |
| 1076 | } |
| 1077 | |
| 1078 | if (pke_len == pke_parsed) { |
| 1079 | break; |
| 1080 | } |
Michal Vasko | 1f76a28 | 2015-08-04 16:16:53 +0200 | [diff] [blame] | 1081 | if ((i = parse_path_key_expr(path_key_expr+pke_parsed, &dest_pref, &dest_pref_len, &dest, &dest_len, |
Michal Vasko | c3d9f8c | 2015-07-31 14:37:24 +0200 | [diff] [blame] | 1082 | &dest_parent_times)) < 1) { |
Michal Vasko | e7fc19c | 2015-08-05 16:24:39 +0200 | [diff] [blame] | 1083 | LOGVAL(LYE_INCHAR, line, path_key_expr[-i], path_key_expr-i); |
Michal Vasko | c3d9f8c | 2015-07-31 14:37:24 +0200 | [diff] [blame] | 1084 | return -parsed+i; |
| 1085 | } |
| 1086 | pke_parsed += i; |
| 1087 | } |
| 1088 | |
| 1089 | /* check match between source and destination nodes */ |
Radek Krejci | b804869 | 2015-08-05 13:36:34 +0200 | [diff] [blame] | 1090 | if (((struct lys_node_leaf *)source_match->dnode->schema)->type.base |
| 1091 | != ((struct lys_node_leaf *)dest_match->dnode->schema)->type.base) { |
Michal Vasko | c3d9f8c | 2015-07-31 14:37:24 +0200 | [diff] [blame] | 1092 | goto remove_leafref; |
| 1093 | } |
| 1094 | |
| 1095 | if (((struct lyd_node_leaf *)source_match->dnode)->value_str |
| 1096 | != ((struct lyd_node_leaf *)dest_match->dnode)->value_str) { |
| 1097 | goto remove_leafref; |
| 1098 | } |
| 1099 | |
| 1100 | /* leafref is ok, continue check with next leafref */ |
| 1101 | node_prev = node; |
| 1102 | node = node->next; |
| 1103 | continue; |
| 1104 | |
| 1105 | remove_leafref: |
| 1106 | /* does not fulfill conditions, remove leafref record */ |
| 1107 | if (node_prev) { |
| 1108 | node_prev->next = node->next; |
| 1109 | free(node); |
| 1110 | node = node_prev->next; |
| 1111 | } else { |
| 1112 | node = (*node_match)->next; |
| 1113 | free(*node_match); |
| 1114 | *node_match = node; |
| 1115 | } |
| 1116 | } |
| 1117 | } while (has_predicate); |
| 1118 | |
| 1119 | return parsed; |
| 1120 | } |
| 1121 | |
Michal Vasko | f02e374 | 2015-08-05 16:27:02 +0200 | [diff] [blame^] | 1122 | /* logs directly */ |
Michal Vasko | c3d9f8c | 2015-07-31 14:37:24 +0200 | [diff] [blame] | 1123 | int |
Michal Vasko | f02e374 | 2015-08-05 16:27:02 +0200 | [diff] [blame^] | 1124 | resolve_path_arg_data(struct unres_data *unres, const char *path, struct unres_data **ret) |
Michal Vasko | c3d9f8c | 2015-07-31 14:37:24 +0200 | [diff] [blame] | 1125 | { |
| 1126 | struct lyd_node *data; |
Michal Vasko | f02e374 | 2015-08-05 16:27:02 +0200 | [diff] [blame^] | 1127 | struct unres_data *riter = NULL, *raux; |
Michal Vasko | c3d9f8c | 2015-07-31 14:37:24 +0200 | [diff] [blame] | 1128 | const char *prefix, *name; |
Michal Vasko | 1f76a28 | 2015-08-04 16:16:53 +0200 | [diff] [blame] | 1129 | int pref_len, nam_len, has_predicate, parent_times, i; |
Michal Vasko | c3d9f8c | 2015-07-31 14:37:24 +0200 | [diff] [blame] | 1130 | |
| 1131 | *ret = NULL; |
Michal Vasko | c3d9f8c | 2015-07-31 14:37:24 +0200 | [diff] [blame] | 1132 | parent_times = 0; |
| 1133 | |
| 1134 | /* searching for nodeset */ |
| 1135 | do { |
| 1136 | if ((i = parse_path_arg(path, &prefix, &pref_len, &name, &nam_len, &parent_times, &has_predicate)) < 1) { |
Michal Vasko | e7fc19c | 2015-08-05 16:24:39 +0200 | [diff] [blame] | 1137 | LOGVAL(LYE_INCHAR, unres->line, path[-i], path-i); |
Michal Vasko | c3d9f8c | 2015-07-31 14:37:24 +0200 | [diff] [blame] | 1138 | goto error; |
| 1139 | } |
Michal Vasko | c3d9f8c | 2015-07-31 14:37:24 +0200 | [diff] [blame] | 1140 | path += i; |
| 1141 | |
| 1142 | if (!*ret) { |
| 1143 | *ret = calloc(1, sizeof **ret); |
| 1144 | for (i = 0; i < parent_times; ++i) { |
| 1145 | /* relative path */ |
| 1146 | if (!*ret) { |
| 1147 | /* error, too many .. */ |
Michal Vasko | e7fc19c | 2015-08-05 16:24:39 +0200 | [diff] [blame] | 1148 | LOGVAL(LYE_INVAL, unres->line, path, unres->dnode->schema->name); |
Michal Vasko | c3d9f8c | 2015-07-31 14:37:24 +0200 | [diff] [blame] | 1149 | goto error; |
| 1150 | } else if (!(*ret)->dnode) { |
| 1151 | /* first .. */ |
| 1152 | (*ret)->dnode = unres->dnode->parent; |
| 1153 | } else if (!(*ret)->dnode->parent) { |
| 1154 | /* we are in root */ |
| 1155 | free(*ret); |
| 1156 | *ret = NULL; |
| 1157 | } else { |
| 1158 | /* multiple .. */ |
| 1159 | (*ret)->dnode = (*ret)->dnode->parent; |
| 1160 | } |
| 1161 | } |
| 1162 | |
| 1163 | /* absolute path */ |
| 1164 | if (parent_times == -1) { |
| 1165 | for (data = unres->dnode; data->parent; data = data->parent); |
| 1166 | for (; data->prev->next; data = data->prev); |
| 1167 | } |
| 1168 | } |
| 1169 | |
| 1170 | /* node identifier */ |
| 1171 | if (resolve_data_nodeid(prefix, pref_len, name, nam_len, data, ret)) { |
Michal Vasko | e7fc19c | 2015-08-05 16:24:39 +0200 | [diff] [blame] | 1172 | LOGVAL(LYE_INELEM_LEN, unres->line, nam_len, name); |
Michal Vasko | c3d9f8c | 2015-07-31 14:37:24 +0200 | [diff] [blame] | 1173 | goto error; |
| 1174 | } |
| 1175 | |
| 1176 | if (has_predicate) { |
| 1177 | /* we have predicate, so the current results must be lists */ |
| 1178 | for (raux = NULL, riter = *ret; riter; ) { |
Radek Krejci | 7651257 | 2015-08-04 09:47:08 +0200 | [diff] [blame] | 1179 | if (riter->dnode->schema->nodetype == LYS_LIST && |
Radek Krejci | b804869 | 2015-08-05 13:36:34 +0200 | [diff] [blame] | 1180 | ((struct lys_node_list *)riter->dnode->schema)->keys) { |
Michal Vasko | c3d9f8c | 2015-07-31 14:37:24 +0200 | [diff] [blame] | 1181 | /* leafref is ok, continue check with next leafref */ |
| 1182 | raux = riter; |
| 1183 | riter = riter->next; |
| 1184 | continue; |
| 1185 | } |
| 1186 | |
| 1187 | /* does not fulfill conditions, remove leafref record */ |
| 1188 | if (raux) { |
| 1189 | raux->next = riter->next; |
| 1190 | free(riter); |
| 1191 | riter = raux->next; |
| 1192 | } else { |
| 1193 | *ret = riter->next; |
| 1194 | free(riter); |
| 1195 | riter = *ret; |
| 1196 | } |
| 1197 | } |
Michal Vasko | e7fc19c | 2015-08-05 16:24:39 +0200 | [diff] [blame] | 1198 | if ((i = resolve_path_predicate_data(path, ret, unres->line)) < 1) { |
Michal Vasko | c3d9f8c | 2015-07-31 14:37:24 +0200 | [diff] [blame] | 1199 | goto error; |
| 1200 | } |
Michal Vasko | c3d9f8c | 2015-07-31 14:37:24 +0200 | [diff] [blame] | 1201 | path += i; |
| 1202 | |
| 1203 | if (!*ret) { |
Michal Vasko | e7fc19c | 2015-08-05 16:24:39 +0200 | [diff] [blame] | 1204 | LOGVAL(LYE_LINE, unres->line); |
| 1205 | /* general error, the one written later will suffice */ |
Michal Vasko | c3d9f8c | 2015-07-31 14:37:24 +0200 | [diff] [blame] | 1206 | goto error; |
| 1207 | } |
| 1208 | } |
| 1209 | } while (path[0] != '\0'); |
| 1210 | |
Michal Vasko | f02e374 | 2015-08-05 16:27:02 +0200 | [diff] [blame^] | 1211 | return EXIT_SUCCESS; |
Michal Vasko | c3d9f8c | 2015-07-31 14:37:24 +0200 | [diff] [blame] | 1212 | |
| 1213 | error: |
| 1214 | |
| 1215 | while (*ret) { |
| 1216 | raux = (*ret)->next; |
| 1217 | free(*ret); |
| 1218 | *ret = raux; |
| 1219 | } |
| 1220 | |
Michal Vasko | f02e374 | 2015-08-05 16:27:02 +0200 | [diff] [blame^] | 1221 | return EXIT_FAILURE; |
Michal Vasko | c3d9f8c | 2015-07-31 14:37:24 +0200 | [diff] [blame] | 1222 | } |
| 1223 | |
Michal Vasko | f02e374 | 2015-08-05 16:27:02 +0200 | [diff] [blame^] | 1224 | /* logs directly */ |
Michal Vasko | 1f76a28 | 2015-08-04 16:16:53 +0200 | [diff] [blame] | 1225 | static int |
Radek Krejci | b804869 | 2015-08-05 13:36:34 +0200 | [diff] [blame] | 1226 | resolve_path_predicate_schema(const char *pred, struct lys_module *mod, struct lys_node *source_node, |
Michal Vasko | f02e374 | 2015-08-05 16:27:02 +0200 | [diff] [blame^] | 1227 | struct lys_node *dest_node, uint32_t line) |
Michal Vasko | 1f76a28 | 2015-08-04 16:16:53 +0200 | [diff] [blame] | 1228 | { |
| 1229 | struct lys_node *src_node, *dst_node; |
| 1230 | const char *path_key_expr, *source, *sour_pref, *dest, *dest_pref; |
| 1231 | int pke_len, sour_len, sour_pref_len, dest_len, dest_pref_len, parsed = 0, pke_parsed = 0; |
| 1232 | int has_predicate, dest_parent_times = 0, i; |
| 1233 | |
| 1234 | do { |
| 1235 | if ((i = parse_path_predicate(pred, &sour_pref, &sour_pref_len, &source, &sour_len, &path_key_expr, |
| 1236 | &pke_len, &has_predicate)) < 1) { |
Michal Vasko | e7fc19c | 2015-08-05 16:24:39 +0200 | [diff] [blame] | 1237 | LOGVAL(LYE_INCHAR, line, pred[-i], pred-i); |
Michal Vasko | 1f76a28 | 2015-08-04 16:16:53 +0200 | [diff] [blame] | 1238 | return -parsed+i; |
| 1239 | } |
| 1240 | parsed += i; |
| 1241 | pred += i; |
| 1242 | |
| 1243 | /* source (must be leaf, from the same module) */ |
| 1244 | if (sour_pref && (resolve_prefixed_module(mod, sour_pref, sour_pref_len) != mod)) { |
Michal Vasko | e7fc19c | 2015-08-05 16:24:39 +0200 | [diff] [blame] | 1245 | LOGVAL(LYE_INPREF_LEN, line, sour_pref_len, sour_pref); |
Michal Vasko | 1f76a28 | 2015-08-04 16:16:53 +0200 | [diff] [blame] | 1246 | return -parsed; |
| 1247 | } |
| 1248 | |
| 1249 | src_node = resolve_child(source_node, source, sour_len, LYS_LEAF); |
| 1250 | if (!src_node) { |
Michal Vasko | e7fc19c | 2015-08-05 16:24:39 +0200 | [diff] [blame] | 1251 | LOGVAL(LYE_LINE, line); |
| 1252 | /* general error, the one written later will suffice */ |
Michal Vasko | 1f76a28 | 2015-08-04 16:16:53 +0200 | [diff] [blame] | 1253 | return -parsed; |
| 1254 | } |
| 1255 | |
| 1256 | /* destination */ |
| 1257 | if ((i = parse_path_key_expr(path_key_expr, &dest_pref, &dest_pref_len, &dest, &dest_len, |
| 1258 | &dest_parent_times)) < 1) { |
Michal Vasko | e7fc19c | 2015-08-05 16:24:39 +0200 | [diff] [blame] | 1259 | LOGVAL(LYE_INCHAR, line, path_key_expr[-i], path_key_expr-i); |
Michal Vasko | 1f76a28 | 2015-08-04 16:16:53 +0200 | [diff] [blame] | 1260 | return -parsed; |
| 1261 | } |
| 1262 | pke_parsed += i; |
| 1263 | |
| 1264 | /* dest_node is actually the parent of this leaf, so skip the first ".." */ |
| 1265 | dst_node = dest_node; |
| 1266 | for (i = 1; i < dest_parent_times; ++i) { |
| 1267 | dst_node = dst_node->parent; |
| 1268 | if (!dst_node) { |
Michal Vasko | e7fc19c | 2015-08-05 16:24:39 +0200 | [diff] [blame] | 1269 | LOGVAL(LYE_LINE, line); |
| 1270 | /* general error, the one written later will suffice */ |
Michal Vasko | 1f76a28 | 2015-08-04 16:16:53 +0200 | [diff] [blame] | 1271 | return -parsed; |
| 1272 | } |
| 1273 | } |
| 1274 | while (1) { |
| 1275 | if (dest_pref && (resolve_prefixed_module(mod, dest_pref, dest_pref_len) != mod)) { |
Michal Vasko | e7fc19c | 2015-08-05 16:24:39 +0200 | [diff] [blame] | 1276 | LOGVAL(LYE_INPREF_LEN, line, dest_pref_len, dest_pref); |
Michal Vasko | 1f76a28 | 2015-08-04 16:16:53 +0200 | [diff] [blame] | 1277 | return -parsed; |
| 1278 | } |
| 1279 | dst_node = resolve_child(dst_node, dest, dest_len, LYS_CONTAINER | LYS_LIST | LYS_LEAF); |
| 1280 | if (!dst_node) { |
Michal Vasko | e7fc19c | 2015-08-05 16:24:39 +0200 | [diff] [blame] | 1281 | LOGVAL(LYE_LINE, line); |
| 1282 | /* general error, the one written later will suffice */ |
Michal Vasko | 1f76a28 | 2015-08-04 16:16:53 +0200 | [diff] [blame] | 1283 | return -parsed; |
| 1284 | } |
| 1285 | |
| 1286 | if (pke_len == pke_parsed) { |
| 1287 | break; |
| 1288 | } |
| 1289 | |
| 1290 | if ((i = parse_path_key_expr(path_key_expr+pke_parsed, &dest_pref, &dest_pref_len, &dest, &dest_len, |
| 1291 | &dest_parent_times)) < 1) { |
Michal Vasko | e7fc19c | 2015-08-05 16:24:39 +0200 | [diff] [blame] | 1292 | LOGVAL(LYE_INCHAR, line, (path_key_expr+pke_parsed)[-i], (path_key_expr+pke_parsed)-i); |
Michal Vasko | 1f76a28 | 2015-08-04 16:16:53 +0200 | [diff] [blame] | 1293 | return -parsed; |
| 1294 | } |
| 1295 | pke_parsed += i; |
| 1296 | } |
| 1297 | |
| 1298 | /* check source - dest match */ |
Radek Krejci | b804869 | 2015-08-05 13:36:34 +0200 | [diff] [blame] | 1299 | if ((dst_node->nodetype != LYS_LEAF) || ((struct lys_node_leaf *)dst_node)->type.base |
| 1300 | != ((struct lys_node_leaf *)src_node)->type.base) { |
Michal Vasko | e7fc19c | 2015-08-05 16:24:39 +0200 | [diff] [blame] | 1301 | LOGVAL(LYE_LINE, line); |
| 1302 | /* general error, the one written later will suffice */ |
Michal Vasko | 1f76a28 | 2015-08-04 16:16:53 +0200 | [diff] [blame] | 1303 | return -parsed; |
| 1304 | } |
| 1305 | } while (has_predicate); |
| 1306 | |
| 1307 | return parsed; |
| 1308 | } |
| 1309 | |
Michal Vasko | f02e374 | 2015-08-05 16:27:02 +0200 | [diff] [blame^] | 1310 | /* logs indirectly */ |
Michal Vasko | 1f76a28 | 2015-08-04 16:16:53 +0200 | [diff] [blame] | 1311 | static int |
Michal Vasko | f02e374 | 2015-08-05 16:27:02 +0200 | [diff] [blame^] | 1312 | resolve_path_arg_schema(struct lys_module *mod, const char *path, struct lys_node *parent_node, uint32_t line) |
Michal Vasko | 1f76a28 | 2015-08-04 16:16:53 +0200 | [diff] [blame] | 1313 | { |
| 1314 | struct lys_node *child, *node; |
| 1315 | const char *id, *prefix, *name; |
| 1316 | int pref_len, nam_len, parent_times, has_predicate; |
| 1317 | int i, first; |
| 1318 | |
| 1319 | first = 1; |
| 1320 | parent_times = 0; |
| 1321 | id = path; |
| 1322 | |
| 1323 | do { |
| 1324 | if ((i = parse_path_arg(id, &prefix, &pref_len, &name, &nam_len, &parent_times, &has_predicate)) < 1) { |
Michal Vasko | e7fc19c | 2015-08-05 16:24:39 +0200 | [diff] [blame] | 1325 | LOGVAL(LYE_INCHAR, line, id[-i], id-i); |
Michal Vasko | 1f76a28 | 2015-08-04 16:16:53 +0200 | [diff] [blame] | 1326 | return EXIT_FAILURE; |
| 1327 | } |
| 1328 | id += i; |
| 1329 | |
| 1330 | if (first) { |
| 1331 | if (parent_times == -1) { |
| 1332 | node = mod->data; |
| 1333 | } else if (parent_times > 0) { |
| 1334 | node = parent_node; |
| 1335 | for (i = 0; i < parent_times; ++i) { |
| 1336 | node = node->parent; |
| 1337 | if (!node) { |
Michal Vasko | e7fc19c | 2015-08-05 16:24:39 +0200 | [diff] [blame] | 1338 | LOGVAL(LYE_LINE, line); |
| 1339 | /* general error, the one written later will suffice */ |
Michal Vasko | 1f76a28 | 2015-08-04 16:16:53 +0200 | [diff] [blame] | 1340 | return EXIT_FAILURE; |
| 1341 | } |
| 1342 | } |
| 1343 | node = node->child; |
| 1344 | } |
| 1345 | first = 0; |
| 1346 | } else { |
| 1347 | node = node->child; |
| 1348 | } |
| 1349 | |
| 1350 | /* node identifier */ |
| 1351 | LY_TREE_FOR(node, child) { |
| 1352 | if (child->nodetype == LYS_GROUPING) { |
| 1353 | continue; |
| 1354 | } |
| 1355 | |
| 1356 | if (!strncmp(child->name, name, nam_len) && !child->name[nam_len]) { |
| 1357 | break; |
| 1358 | } |
| 1359 | } |
| 1360 | if (!child) { |
Michal Vasko | e7fc19c | 2015-08-05 16:24:39 +0200 | [diff] [blame] | 1361 | LOGVAL(LYE_LINE, line); |
| 1362 | /* general error, the one written later will suffice */ |
Michal Vasko | 1f76a28 | 2015-08-04 16:16:53 +0200 | [diff] [blame] | 1363 | return EXIT_FAILURE; |
| 1364 | } |
| 1365 | node = child; |
| 1366 | |
| 1367 | if (has_predicate) { |
| 1368 | /* we have predicate, so the current result must be list */ |
| 1369 | if (node->nodetype != LYS_LIST) { |
Michal Vasko | e7fc19c | 2015-08-05 16:24:39 +0200 | [diff] [blame] | 1370 | LOGVAL(LYE_LINE, line); |
| 1371 | /* general error, the one written later will suffice */ |
Michal Vasko | 1f76a28 | 2015-08-04 16:16:53 +0200 | [diff] [blame] | 1372 | return EXIT_FAILURE; |
| 1373 | } |
| 1374 | |
| 1375 | if ((i = resolve_path_predicate_schema(id, mod, node, parent_node, line)) < 1) { |
| 1376 | return EXIT_FAILURE; |
| 1377 | } |
| 1378 | id += i; |
| 1379 | } |
| 1380 | } while (id[0]); |
| 1381 | |
| 1382 | return EXIT_SUCCESS; |
| 1383 | } |
| 1384 | |
Michal Vasko | f02e374 | 2015-08-05 16:27:02 +0200 | [diff] [blame^] | 1385 | /* does not log |
| 1386 | * ... /node[target = value] ... */ |
Michal Vasko | c3d9f8c | 2015-07-31 14:37:24 +0200 | [diff] [blame] | 1387 | static int |
Michal Vasko | f02e374 | 2015-08-05 16:27:02 +0200 | [diff] [blame^] | 1388 | resolve_predicate(const char *pred, struct unres_data **node_match) |
Michal Vasko | c3d9f8c | 2015-07-31 14:37:24 +0200 | [diff] [blame] | 1389 | { |
Michal Vasko | f02e374 | 2015-08-05 16:27:02 +0200 | [diff] [blame^] | 1390 | struct unres_data *target_match, *node, *node_prev = NULL, *tmp; |
Michal Vasko | c3d9f8c | 2015-07-31 14:37:24 +0200 | [diff] [blame] | 1391 | const char *prefix, *name, *value; |
| 1392 | int pref_len, nam_len, val_len, i, has_predicate, cur_idx, idx, parsed; |
| 1393 | |
| 1394 | idx = -1; |
| 1395 | parsed = 0; |
| 1396 | |
| 1397 | do { |
| 1398 | if ((i = parse_predicate(pred, &prefix, &pref_len, &name, &nam_len, &value, &val_len, &has_predicate)) < 1) { |
| 1399 | return -parsed+i; |
| 1400 | } |
| 1401 | parsed += i; |
| 1402 | pred += i; |
| 1403 | |
| 1404 | if (isdigit(name[0])) { |
| 1405 | idx = atoi(name); |
| 1406 | } |
| 1407 | |
| 1408 | for (cur_idx = 0, node = *node_match; node; ++cur_idx) { |
| 1409 | /* target */ |
| 1410 | target_match = NULL; |
| 1411 | if ((name[0] == '.') || !value) { |
| 1412 | target_match = calloc(1, sizeof *target_match); |
| 1413 | target_match->dnode = node->dnode; |
| 1414 | } else if (resolve_data_nodeid(prefix, pref_len, name, nam_len, node->dnode, &target_match)) { |
| 1415 | return -parsed; |
| 1416 | } |
| 1417 | |
| 1418 | /* check that we have the correct type */ |
| 1419 | if (name[0] == '.') { |
Radek Krejci | 7651257 | 2015-08-04 09:47:08 +0200 | [diff] [blame] | 1420 | if (node->dnode->schema->nodetype != LYS_LEAFLIST) { |
Michal Vasko | c3d9f8c | 2015-07-31 14:37:24 +0200 | [diff] [blame] | 1421 | goto remove_instid; |
| 1422 | } |
| 1423 | } else if (value) { |
Radek Krejci | 7651257 | 2015-08-04 09:47:08 +0200 | [diff] [blame] | 1424 | if (node->dnode->schema->nodetype != LYS_LIST) { |
Michal Vasko | c3d9f8c | 2015-07-31 14:37:24 +0200 | [diff] [blame] | 1425 | goto remove_instid; |
| 1426 | } |
| 1427 | } |
| 1428 | |
| 1429 | if ((value && (strncmp(((struct lyd_node_leaf *)target_match->dnode)->value_str, value, val_len) |
| 1430 | || ((struct lyd_node_leaf *)target_match->dnode)->value_str[val_len])) |
| 1431 | || (!value && (idx != cur_idx))) { |
| 1432 | goto remove_instid; |
| 1433 | } |
| 1434 | |
| 1435 | while (target_match) { |
| 1436 | tmp = target_match->next; |
| 1437 | free(target_match); |
| 1438 | target_match = tmp; |
| 1439 | } |
| 1440 | |
| 1441 | /* leafref is ok, continue check with next leafref */ |
| 1442 | node_prev = node; |
| 1443 | node = node->next; |
| 1444 | continue; |
| 1445 | |
| 1446 | remove_instid: |
| 1447 | while (target_match) { |
| 1448 | tmp = target_match->next; |
| 1449 | free(target_match); |
| 1450 | target_match = tmp; |
| 1451 | } |
| 1452 | |
| 1453 | /* does not fulfill conditions, remove leafref record */ |
| 1454 | if (node_prev) { |
| 1455 | node_prev->next = node->next; |
| 1456 | free(node); |
| 1457 | node = node_prev->next; |
| 1458 | } else { |
| 1459 | node = (*node_match)->next; |
| 1460 | free(*node_match); |
| 1461 | *node_match = node; |
| 1462 | } |
| 1463 | } |
| 1464 | } while (has_predicate); |
| 1465 | |
| 1466 | return parsed; |
| 1467 | } |
| 1468 | |
Michal Vasko | f02e374 | 2015-08-05 16:27:02 +0200 | [diff] [blame^] | 1469 | /* logs directly */ |
Michal Vasko | c3d9f8c | 2015-07-31 14:37:24 +0200 | [diff] [blame] | 1470 | int |
Michal Vasko | f02e374 | 2015-08-05 16:27:02 +0200 | [diff] [blame^] | 1471 | resolve_instid(struct unres_data *unres, const char *path, int path_len, struct unres_data **ret) |
Michal Vasko | c3d9f8c | 2015-07-31 14:37:24 +0200 | [diff] [blame] | 1472 | { |
| 1473 | struct lyd_node *data; |
Michal Vasko | f02e374 | 2015-08-05 16:27:02 +0200 | [diff] [blame^] | 1474 | struct unres_data *riter = NULL, *raux; |
Michal Vasko | c3d9f8c | 2015-07-31 14:37:24 +0200 | [diff] [blame] | 1475 | const char *apath = strndupa(path, path_len); |
| 1476 | const char *prefix, *name; |
| 1477 | int i, parsed, pref_len, nam_len, has_predicate; |
| 1478 | |
| 1479 | parsed = 0; |
| 1480 | |
| 1481 | /* we need root, absolute path */ |
| 1482 | for (data = unres->dnode; data->parent; data = data->parent); |
| 1483 | for (; data->prev->next; data = data->prev); |
| 1484 | |
| 1485 | /* searching for nodeset */ |
| 1486 | do { |
| 1487 | if ((i = parse_instance_identifier(apath, &prefix, &pref_len, &name, &nam_len, &has_predicate)) < 1) { |
Michal Vasko | e7fc19c | 2015-08-05 16:24:39 +0200 | [diff] [blame] | 1488 | LOGVAL(LYE_INCHAR, unres->line, apath[-i], apath-i); |
Michal Vasko | c3d9f8c | 2015-07-31 14:37:24 +0200 | [diff] [blame] | 1489 | goto error; |
| 1490 | } |
| 1491 | parsed += i; |
| 1492 | apath += i; |
| 1493 | |
| 1494 | if (resolve_data_nodeid(prefix, pref_len, name, nam_len, data, ret)) { |
Michal Vasko | e7fc19c | 2015-08-05 16:24:39 +0200 | [diff] [blame] | 1495 | LOGVAL(LYE_LINE, unres->line); |
| 1496 | /* general error, the one written later will suffice */ |
Michal Vasko | c3d9f8c | 2015-07-31 14:37:24 +0200 | [diff] [blame] | 1497 | goto error; |
| 1498 | } |
| 1499 | |
| 1500 | if (has_predicate) { |
| 1501 | /* we have predicate, so the current results must be list or leaf-list */ |
| 1502 | for (raux = NULL, riter = *ret; riter; ) { |
Radek Krejci | 7651257 | 2015-08-04 09:47:08 +0200 | [diff] [blame] | 1503 | if ((riter->dnode->schema->nodetype == LYS_LIST && |
Radek Krejci | b804869 | 2015-08-05 13:36:34 +0200 | [diff] [blame] | 1504 | ((struct lys_node_list *)riter->dnode->schema)->keys) |
Radek Krejci | 7651257 | 2015-08-04 09:47:08 +0200 | [diff] [blame] | 1505 | || (riter->dnode->schema->nodetype == LYS_LEAFLIST)) { |
Michal Vasko | c3d9f8c | 2015-07-31 14:37:24 +0200 | [diff] [blame] | 1506 | /* instid is ok, continue check with next instid */ |
| 1507 | raux = riter; |
| 1508 | riter = riter->next; |
| 1509 | continue; |
| 1510 | } |
| 1511 | |
| 1512 | /* does not fulfill conditions, remove inst record */ |
| 1513 | if (raux) { |
| 1514 | raux->next = riter->next; |
| 1515 | free(riter); |
| 1516 | riter = raux->next; |
| 1517 | } else { |
| 1518 | *ret = riter->next; |
| 1519 | free(riter); |
| 1520 | riter = *ret; |
| 1521 | } |
| 1522 | } |
| 1523 | if ((i = resolve_predicate(apath, ret)) < 1) { |
Michal Vasko | e7fc19c | 2015-08-05 16:24:39 +0200 | [diff] [blame] | 1524 | LOGVAL(LYE_INPRED, unres->line, apath-i); |
Michal Vasko | c3d9f8c | 2015-07-31 14:37:24 +0200 | [diff] [blame] | 1525 | goto error; |
| 1526 | } |
| 1527 | parsed += i; |
| 1528 | apath += i; |
| 1529 | |
| 1530 | if (!*ret) { |
Michal Vasko | e7fc19c | 2015-08-05 16:24:39 +0200 | [diff] [blame] | 1531 | LOGVAL(LYE_LINE, unres->line); |
| 1532 | /* general error, the one written later will suffice */ |
Michal Vasko | c3d9f8c | 2015-07-31 14:37:24 +0200 | [diff] [blame] | 1533 | goto error; |
| 1534 | } |
| 1535 | } |
| 1536 | } while (apath[0] != '\0'); |
| 1537 | |
Michal Vasko | f02e374 | 2015-08-05 16:27:02 +0200 | [diff] [blame^] | 1538 | return EXIT_SUCCESS; |
Michal Vasko | c3d9f8c | 2015-07-31 14:37:24 +0200 | [diff] [blame] | 1539 | |
| 1540 | error: |
| 1541 | while (*ret) { |
| 1542 | raux = (*ret)->next; |
| 1543 | free(*ret); |
| 1544 | *ret = raux; |
| 1545 | } |
| 1546 | |
Michal Vasko | f02e374 | 2015-08-05 16:27:02 +0200 | [diff] [blame^] | 1547 | return EXIT_FAILURE; |
Michal Vasko | c3d9f8c | 2015-07-31 14:37:24 +0200 | [diff] [blame] | 1548 | } |
| 1549 | |
Michal Vasko | f02e374 | 2015-08-05 16:27:02 +0200 | [diff] [blame^] | 1550 | /* does not log */ |
Michal Vasko | c3d9f8c | 2015-07-31 14:37:24 +0200 | [diff] [blame] | 1551 | static void |
Radek Krejci | 7651257 | 2015-08-04 09:47:08 +0200 | [diff] [blame] | 1552 | inherit_config_flag(struct lys_node *mnode) |
Michal Vasko | c3d9f8c | 2015-07-31 14:37:24 +0200 | [diff] [blame] | 1553 | { |
| 1554 | LY_TREE_FOR(mnode, mnode) { |
Radek Krejci | 1574a8d | 2015-08-03 14:16:52 +0200 | [diff] [blame] | 1555 | mnode->flags |= mnode->parent->flags & LYS_CONFIG_MASK; |
Michal Vasko | c3d9f8c | 2015-07-31 14:37:24 +0200 | [diff] [blame] | 1556 | inherit_config_flag(mnode->child); |
| 1557 | } |
| 1558 | } |
| 1559 | |
Michal Vasko | f02e374 | 2015-08-05 16:27:02 +0200 | [diff] [blame^] | 1560 | /* does not log */ |
Michal Vasko | c3d9f8c | 2015-07-31 14:37:24 +0200 | [diff] [blame] | 1561 | static int |
Michal Vasko | f02e374 | 2015-08-05 16:27:02 +0200 | [diff] [blame^] | 1562 | resolve_augment(struct lys_node_augment *aug, struct lys_node *parent, struct lys_module *module) |
Michal Vasko | c3d9f8c | 2015-07-31 14:37:24 +0200 | [diff] [blame] | 1563 | { |
Radek Krejci | 7651257 | 2015-08-04 09:47:08 +0200 | [diff] [blame] | 1564 | struct lys_node *sub, *aux; |
Michal Vasko | c3d9f8c | 2015-07-31 14:37:24 +0200 | [diff] [blame] | 1565 | |
| 1566 | assert(module); |
| 1567 | |
| 1568 | /* resolve target node */ |
Radek Krejci | 7651257 | 2015-08-04 09:47:08 +0200 | [diff] [blame] | 1569 | aug->target = resolve_schema_nodeid(aug->target_name, parent, module, LYS_AUGMENT); |
Michal Vasko | c3d9f8c | 2015-07-31 14:37:24 +0200 | [diff] [blame] | 1570 | if (!aug->target) { |
Michal Vasko | c3d9f8c | 2015-07-31 14:37:24 +0200 | [diff] [blame] | 1571 | return EXIT_FAILURE; |
| 1572 | } |
| 1573 | |
| 1574 | if (!aug->child) { |
| 1575 | /* nothing to do */ |
| 1576 | return EXIT_SUCCESS; |
| 1577 | } |
| 1578 | |
| 1579 | /* inherit config information from parent, augment does not have |
| 1580 | * config property, but we need to keep the information for subelements |
| 1581 | */ |
Radek Krejci | 1574a8d | 2015-08-03 14:16:52 +0200 | [diff] [blame] | 1582 | aug->flags |= aug->target->flags & LYS_CONFIG_MASK; |
Michal Vasko | c3d9f8c | 2015-07-31 14:37:24 +0200 | [diff] [blame] | 1583 | LY_TREE_FOR(aug->child, sub) { |
Michal Vasko | c3d9f8c | 2015-07-31 14:37:24 +0200 | [diff] [blame] | 1584 | inherit_config_flag(sub); |
| 1585 | } |
| 1586 | |
Radek Krejci | 0acbe1b | 2015-08-04 09:33:49 +0200 | [diff] [blame] | 1587 | /* reconnect augmenting data into the target - add them to the target child list */ |
| 1588 | if (aug->target->child) { |
| 1589 | aux = aug->target->child->prev; /* remember current target's last node */ |
| 1590 | aux->next = aug->child; /* connect augmenting data after target's last node */ |
| 1591 | aug->target->child->prev = aug->child->prev; /* new target's last node is last augmenting node */ |
| 1592 | aug->child->prev = aux; /* finish connecting of both child lists */ |
| 1593 | } else { |
| 1594 | aug->target->child = aug->child; |
| 1595 | } |
Michal Vasko | c3d9f8c | 2015-07-31 14:37:24 +0200 | [diff] [blame] | 1596 | |
| 1597 | return EXIT_SUCCESS; |
| 1598 | } |
| 1599 | |
Michal Vasko | f02e374 | 2015-08-05 16:27:02 +0200 | [diff] [blame^] | 1600 | /* logs directly */ |
Michal Vasko | c3d9f8c | 2015-07-31 14:37:24 +0200 | [diff] [blame] | 1601 | int |
Michal Vasko | f02e374 | 2015-08-05 16:27:02 +0200 | [diff] [blame^] | 1602 | resolve_uses(struct lys_node_uses *uses, struct unres_schema *unres, uint32_t line) |
Michal Vasko | c3d9f8c | 2015-07-31 14:37:24 +0200 | [diff] [blame] | 1603 | { |
| 1604 | struct ly_ctx *ctx; |
Radek Krejci | 7651257 | 2015-08-04 09:47:08 +0200 | [diff] [blame] | 1605 | struct lys_node *mnode = NULL, *mnode_aux; |
| 1606 | struct lys_refine *rfn; |
Radek Krejci | 1574a8d | 2015-08-03 14:16:52 +0200 | [diff] [blame] | 1607 | struct lys_restr *newmust; |
Michal Vasko | c3d9f8c | 2015-07-31 14:37:24 +0200 | [diff] [blame] | 1608 | int i, j; |
| 1609 | uint8_t size; |
| 1610 | |
| 1611 | /* copy the data nodes from grouping into the uses context */ |
| 1612 | LY_TREE_FOR(uses->grp->child, mnode) { |
Michal Vasko | f02e374 | 2015-08-05 16:27:02 +0200 | [diff] [blame^] | 1613 | mnode_aux = ly_mnode_dup(uses->module, mnode, uses->flags, 1, unres); |
Michal Vasko | c3d9f8c | 2015-07-31 14:37:24 +0200 | [diff] [blame] | 1614 | if (!mnode_aux) { |
Michal Vasko | e7fc19c | 2015-08-05 16:24:39 +0200 | [diff] [blame] | 1615 | LOGVAL(LYE_SPEC, line, "Copying data from grouping failed."); |
Michal Vasko | c3d9f8c | 2015-07-31 14:37:24 +0200 | [diff] [blame] | 1616 | return EXIT_FAILURE; |
| 1617 | } |
Radek Krejci | 7651257 | 2015-08-04 09:47:08 +0200 | [diff] [blame] | 1618 | if (ly_mnode_addchild((struct lys_node *)uses, mnode_aux)) { |
Michal Vasko | e7fc19c | 2015-08-05 16:24:39 +0200 | [diff] [blame] | 1619 | /* error logged */ |
Michal Vasko | c3d9f8c | 2015-07-31 14:37:24 +0200 | [diff] [blame] | 1620 | ly_mnode_free(mnode_aux); |
| 1621 | return EXIT_FAILURE; |
| 1622 | } |
| 1623 | } |
| 1624 | ctx = uses->module->ctx; |
| 1625 | |
| 1626 | /* apply refines */ |
| 1627 | for (i = 0; i < uses->refine_size; i++) { |
| 1628 | rfn = &uses->refine[i]; |
Radek Krejci | 7651257 | 2015-08-04 09:47:08 +0200 | [diff] [blame] | 1629 | mnode = resolve_schema_nodeid(rfn->target_name, (struct lys_node *)uses, uses->module, LYS_USES); |
Michal Vasko | c3d9f8c | 2015-07-31 14:37:24 +0200 | [diff] [blame] | 1630 | if (!mnode) { |
Michal Vasko | e7fc19c | 2015-08-05 16:24:39 +0200 | [diff] [blame] | 1631 | LOGVAL(LYE_INARG, line, rfn->target_name, "refine"); |
Michal Vasko | c3d9f8c | 2015-07-31 14:37:24 +0200 | [diff] [blame] | 1632 | return EXIT_FAILURE; |
| 1633 | } |
| 1634 | |
| 1635 | if (rfn->target_type && !(mnode->nodetype & rfn->target_type)) { |
Michal Vasko | e7fc19c | 2015-08-05 16:24:39 +0200 | [diff] [blame] | 1636 | LOGVAL(LYE_SPEC, line, "Refine substatements not applicable to the target-node."); |
Michal Vasko | c3d9f8c | 2015-07-31 14:37:24 +0200 | [diff] [blame] | 1637 | return EXIT_FAILURE; |
| 1638 | } |
| 1639 | |
| 1640 | /* description on any nodetype */ |
| 1641 | if (rfn->dsc) { |
| 1642 | lydict_remove(ctx, mnode->dsc); |
| 1643 | mnode->dsc = lydict_insert(ctx, rfn->dsc, 0); |
| 1644 | } |
| 1645 | |
| 1646 | /* reference on any nodetype */ |
| 1647 | if (rfn->ref) { |
| 1648 | lydict_remove(ctx, mnode->ref); |
| 1649 | mnode->ref = lydict_insert(ctx, rfn->ref, 0); |
| 1650 | } |
| 1651 | |
| 1652 | /* config on any nodetype */ |
Radek Krejci | 1574a8d | 2015-08-03 14:16:52 +0200 | [diff] [blame] | 1653 | if (rfn->flags & LYS_CONFIG_MASK) { |
| 1654 | mnode->flags &= ~LYS_CONFIG_MASK; |
| 1655 | mnode->flags |= (rfn->flags & LYS_CONFIG_MASK); |
Michal Vasko | c3d9f8c | 2015-07-31 14:37:24 +0200 | [diff] [blame] | 1656 | } |
| 1657 | |
| 1658 | /* default value ... */ |
| 1659 | if (rfn->mod.dflt) { |
Radek Krejci | 7651257 | 2015-08-04 09:47:08 +0200 | [diff] [blame] | 1660 | if (mnode->nodetype == LYS_LEAF) { |
Michal Vasko | c3d9f8c | 2015-07-31 14:37:24 +0200 | [diff] [blame] | 1661 | /* leaf */ |
Radek Krejci | b804869 | 2015-08-05 13:36:34 +0200 | [diff] [blame] | 1662 | lydict_remove(ctx, ((struct lys_node_leaf *)mnode)->dflt); |
| 1663 | ((struct lys_node_leaf *)mnode)->dflt = lydict_insert(ctx, rfn->mod.dflt, 0); |
Radek Krejci | 7651257 | 2015-08-04 09:47:08 +0200 | [diff] [blame] | 1664 | } else if (mnode->nodetype == LYS_CHOICE) { |
Michal Vasko | c3d9f8c | 2015-07-31 14:37:24 +0200 | [diff] [blame] | 1665 | /* choice */ |
Radek Krejci | b804869 | 2015-08-05 13:36:34 +0200 | [diff] [blame] | 1666 | ((struct lys_node_choice *)mnode)->dflt = resolve_schema_nodeid(rfn->mod.dflt, mnode, mnode->module, LYS_CHOICE); |
| 1667 | if (!((struct lys_node_choice *)mnode)->dflt) { |
Michal Vasko | e7fc19c | 2015-08-05 16:24:39 +0200 | [diff] [blame] | 1668 | LOGVAL(LYE_INARG, line, rfn->mod.dflt, "default"); |
Michal Vasko | c3d9f8c | 2015-07-31 14:37:24 +0200 | [diff] [blame] | 1669 | return EXIT_FAILURE; |
| 1670 | } |
| 1671 | } |
| 1672 | } |
| 1673 | |
| 1674 | /* mandatory on leaf, anyxml or choice */ |
Radek Krejci | 1574a8d | 2015-08-03 14:16:52 +0200 | [diff] [blame] | 1675 | if (rfn->flags & LYS_MAND_MASK) { |
Radek Krejci | 7651257 | 2015-08-04 09:47:08 +0200 | [diff] [blame] | 1676 | if (mnode->nodetype & (LYS_LEAF | LYS_ANYXML | LYS_CHOICE)) { |
Michal Vasko | c3d9f8c | 2015-07-31 14:37:24 +0200 | [diff] [blame] | 1677 | /* remove current value */ |
Radek Krejci | 1574a8d | 2015-08-03 14:16:52 +0200 | [diff] [blame] | 1678 | mnode->flags &= ~LYS_MAND_MASK; |
Michal Vasko | c3d9f8c | 2015-07-31 14:37:24 +0200 | [diff] [blame] | 1679 | |
| 1680 | /* set new value */ |
Radek Krejci | 1574a8d | 2015-08-03 14:16:52 +0200 | [diff] [blame] | 1681 | mnode->flags |= (rfn->flags & LYS_MAND_MASK); |
Michal Vasko | c3d9f8c | 2015-07-31 14:37:24 +0200 | [diff] [blame] | 1682 | } |
| 1683 | } |
| 1684 | |
| 1685 | /* presence on container */ |
Radek Krejci | 7651257 | 2015-08-04 09:47:08 +0200 | [diff] [blame] | 1686 | if ((mnode->nodetype & LYS_CONTAINER) && rfn->mod.presence) { |
Radek Krejci | b804869 | 2015-08-05 13:36:34 +0200 | [diff] [blame] | 1687 | lydict_remove(ctx, ((struct lys_node_container *)mnode)->presence); |
| 1688 | ((struct lys_node_container *)mnode)->presence = lydict_insert(ctx, rfn->mod.presence, 0); |
Michal Vasko | c3d9f8c | 2015-07-31 14:37:24 +0200 | [diff] [blame] | 1689 | } |
| 1690 | |
| 1691 | /* min/max-elements on list or leaf-list */ |
| 1692 | /* magic - bit 3 in flags means min set, bit 4 says max set */ |
Radek Krejci | 7651257 | 2015-08-04 09:47:08 +0200 | [diff] [blame] | 1693 | if (mnode->nodetype == LYS_LIST) { |
Michal Vasko | c3d9f8c | 2015-07-31 14:37:24 +0200 | [diff] [blame] | 1694 | if (rfn->flags & 0x04) { |
Radek Krejci | b804869 | 2015-08-05 13:36:34 +0200 | [diff] [blame] | 1695 | ((struct lys_node_list *)mnode)->min = rfn->mod.list.min; |
Michal Vasko | c3d9f8c | 2015-07-31 14:37:24 +0200 | [diff] [blame] | 1696 | } |
| 1697 | if (rfn->flags & 0x08) { |
Radek Krejci | b804869 | 2015-08-05 13:36:34 +0200 | [diff] [blame] | 1698 | ((struct lys_node_list *)mnode)->max = rfn->mod.list.max; |
Michal Vasko | c3d9f8c | 2015-07-31 14:37:24 +0200 | [diff] [blame] | 1699 | } |
Radek Krejci | 7651257 | 2015-08-04 09:47:08 +0200 | [diff] [blame] | 1700 | } else if (mnode->nodetype == LYS_LEAFLIST) { |
Michal Vasko | c3d9f8c | 2015-07-31 14:37:24 +0200 | [diff] [blame] | 1701 | if (rfn->flags & 0x04) { |
Radek Krejci | b804869 | 2015-08-05 13:36:34 +0200 | [diff] [blame] | 1702 | ((struct lys_node_leaflist *)mnode)->min = rfn->mod.list.min; |
Michal Vasko | c3d9f8c | 2015-07-31 14:37:24 +0200 | [diff] [blame] | 1703 | } |
| 1704 | if (rfn->flags & 0x08) { |
Radek Krejci | b804869 | 2015-08-05 13:36:34 +0200 | [diff] [blame] | 1705 | ((struct lys_node_leaflist *)mnode)->max = rfn->mod.list.max; |
Michal Vasko | c3d9f8c | 2015-07-31 14:37:24 +0200 | [diff] [blame] | 1706 | } |
| 1707 | } |
| 1708 | |
| 1709 | /* must in leaf, leaf-list, list, container or anyxml */ |
| 1710 | if (rfn->must_size) { |
Radek Krejci | b804869 | 2015-08-05 13:36:34 +0200 | [diff] [blame] | 1711 | size = ((struct lys_node_leaf *)mnode)->must_size + rfn->must_size; |
| 1712 | newmust = realloc(((struct lys_node_leaf *)mnode)->must, size * sizeof *rfn->must); |
Michal Vasko | c3d9f8c | 2015-07-31 14:37:24 +0200 | [diff] [blame] | 1713 | if (!newmust) { |
| 1714 | LOGMEM; |
| 1715 | return EXIT_FAILURE; |
| 1716 | } |
Radek Krejci | b804869 | 2015-08-05 13:36:34 +0200 | [diff] [blame] | 1717 | for (i = 0, j = ((struct lys_node_leaf *)mnode)->must_size; i < rfn->must_size; i++, j++) { |
Michal Vasko | c3d9f8c | 2015-07-31 14:37:24 +0200 | [diff] [blame] | 1718 | newmust[j].expr = lydict_insert(ctx, rfn->must[i].expr, 0); |
| 1719 | newmust[j].dsc = lydict_insert(ctx, rfn->must[i].dsc, 0); |
| 1720 | newmust[j].ref = lydict_insert(ctx, rfn->must[i].ref, 0); |
| 1721 | newmust[j].eapptag = lydict_insert(ctx, rfn->must[i].eapptag, 0); |
| 1722 | newmust[j].emsg = lydict_insert(ctx, rfn->must[i].emsg, 0); |
| 1723 | } |
| 1724 | |
Radek Krejci | b804869 | 2015-08-05 13:36:34 +0200 | [diff] [blame] | 1725 | ((struct lys_node_leaf *)mnode)->must = newmust; |
| 1726 | ((struct lys_node_leaf *)mnode)->must_size = size; |
Michal Vasko | c3d9f8c | 2015-07-31 14:37:24 +0200 | [diff] [blame] | 1727 | } |
| 1728 | } |
| 1729 | |
| 1730 | /* apply augments */ |
| 1731 | for (i = 0; i < uses->augment_size; i++) { |
Michal Vasko | e7fc19c | 2015-08-05 16:24:39 +0200 | [diff] [blame] | 1732 | if (resolve_augment(&uses->augment[i], (struct lys_node *)uses, uses->module)) { |
| 1733 | LOGVAL(LYE_INRESOLV, line, "augment", uses->augment[i].target_name); |
| 1734 | return EXIT_FAILURE; |
Michal Vasko | c3d9f8c | 2015-07-31 14:37:24 +0200 | [diff] [blame] | 1735 | } |
| 1736 | } |
| 1737 | |
| 1738 | return EXIT_SUCCESS; |
Michal Vasko | c3d9f8c | 2015-07-31 14:37:24 +0200 | [diff] [blame] | 1739 | } |
| 1740 | |
Michal Vasko | f02e374 | 2015-08-05 16:27:02 +0200 | [diff] [blame^] | 1741 | /* does not log */ |
Radek Krejci | a52656e | 2015-08-05 13:41:50 +0200 | [diff] [blame] | 1742 | static struct lys_ident * |
| 1743 | resolve_base_ident_sub(struct lys_module *module, struct lys_ident *ident, const char *basename) |
Michal Vasko | c3d9f8c | 2015-07-31 14:37:24 +0200 | [diff] [blame] | 1744 | { |
Michal Vasko | f02e374 | 2015-08-05 16:27:02 +0200 | [diff] [blame^] | 1745 | uint32_t i, j; |
Radek Krejci | a52656e | 2015-08-05 13:41:50 +0200 | [diff] [blame] | 1746 | struct lys_ident *base_iter = NULL; |
| 1747 | struct lys_ident_der *der; |
Michal Vasko | c3d9f8c | 2015-07-31 14:37:24 +0200 | [diff] [blame] | 1748 | |
| 1749 | /* search module */ |
| 1750 | for (i = 0; i < module->ident_size; i++) { |
| 1751 | if (!strcmp(basename, module->ident[i].name)) { |
| 1752 | |
| 1753 | if (!ident) { |
| 1754 | /* just search for type, so do not modify anything, just return |
| 1755 | * the base identity pointer |
| 1756 | */ |
| 1757 | return &module->ident[i]; |
| 1758 | } |
| 1759 | |
| 1760 | /* we are resolving identity definition, so now update structures */ |
| 1761 | ident->base = base_iter = &module->ident[i]; |
| 1762 | |
| 1763 | break; |
| 1764 | } |
| 1765 | } |
| 1766 | |
| 1767 | /* search submodules */ |
| 1768 | if (!base_iter) { |
| 1769 | for (j = 0; j < module->inc_size; j++) { |
| 1770 | for (i = 0; i < module->inc[j].submodule->ident_size; i++) { |
| 1771 | if (!strcmp(basename, module->inc[j].submodule->ident[i].name)) { |
| 1772 | |
| 1773 | if (!ident) { |
| 1774 | return &module->inc[j].submodule->ident[i]; |
| 1775 | } |
| 1776 | |
| 1777 | ident->base = base_iter = &module->inc[j].submodule->ident[i]; |
| 1778 | break; |
| 1779 | } |
| 1780 | } |
| 1781 | } |
| 1782 | } |
| 1783 | |
| 1784 | /* we found it somewhere */ |
| 1785 | if (base_iter) { |
| 1786 | while (base_iter) { |
| 1787 | for (der = base_iter->der; der && der->next; der = der->next); |
| 1788 | if (der) { |
| 1789 | der->next = malloc(sizeof *der); |
| 1790 | der = der->next; |
| 1791 | } else { |
| 1792 | ident->base->der = der = malloc(sizeof *der); |
| 1793 | } |
| 1794 | der->next = NULL; |
| 1795 | der->ident = ident; |
| 1796 | |
| 1797 | base_iter = base_iter->base; |
| 1798 | } |
| 1799 | return ident->base; |
| 1800 | } |
| 1801 | |
| 1802 | return NULL; |
| 1803 | } |
| 1804 | |
Michal Vasko | f02e374 | 2015-08-05 16:27:02 +0200 | [diff] [blame^] | 1805 | /* logs directly */ |
Radek Krejci | a52656e | 2015-08-05 13:41:50 +0200 | [diff] [blame] | 1806 | static struct lys_ident * |
Michal Vasko | f02e374 | 2015-08-05 16:27:02 +0200 | [diff] [blame^] | 1807 | resolve_base_ident(struct lys_module *module, struct lys_ident *ident, const char *basename, const char* parent, |
| 1808 | uint32_t line) |
Michal Vasko | c3d9f8c | 2015-07-31 14:37:24 +0200 | [diff] [blame] | 1809 | { |
| 1810 | const char *name; |
Michal Vasko | f02e374 | 2015-08-05 16:27:02 +0200 | [diff] [blame^] | 1811 | int i, prefix_len = 0; |
Radek Krejci | a52656e | 2015-08-05 13:41:50 +0200 | [diff] [blame] | 1812 | struct lys_ident *result; |
Michal Vasko | c3d9f8c | 2015-07-31 14:37:24 +0200 | [diff] [blame] | 1813 | |
| 1814 | /* search for the base identity */ |
| 1815 | name = strchr(basename, ':'); |
| 1816 | if (name) { |
| 1817 | /* set name to correct position after colon */ |
| 1818 | prefix_len = name - basename; |
| 1819 | name++; |
| 1820 | |
| 1821 | if (!strncmp(basename, module->prefix, prefix_len) && !module->prefix[prefix_len]) { |
| 1822 | /* prefix refers to the current module, ignore it */ |
| 1823 | prefix_len = 0; |
| 1824 | } |
| 1825 | } else { |
| 1826 | name = basename; |
| 1827 | } |
| 1828 | |
| 1829 | if (prefix_len) { |
| 1830 | /* get module where to search */ |
Michal Vasko | e7fc19c | 2015-08-05 16:24:39 +0200 | [diff] [blame] | 1831 | module = resolve_prefixed_module(module, basename, prefix_len); |
| 1832 | if (!module) { |
Michal Vasko | c3d9f8c | 2015-07-31 14:37:24 +0200 | [diff] [blame] | 1833 | /* identity refers unknown data model */ |
Michal Vasko | e7fc19c | 2015-08-05 16:24:39 +0200 | [diff] [blame] | 1834 | LOGVAL(LYE_INPREF, line, basename); |
Michal Vasko | c3d9f8c | 2015-07-31 14:37:24 +0200 | [diff] [blame] | 1835 | return NULL; |
| 1836 | } |
| 1837 | } else { |
| 1838 | /* search in submodules */ |
| 1839 | for (i = 0; i < module->inc_size; i++) { |
Radek Krejci | b804869 | 2015-08-05 13:36:34 +0200 | [diff] [blame] | 1840 | result = resolve_base_ident_sub((struct lys_module *)module->inc[i].submodule, ident, name); |
Michal Vasko | c3d9f8c | 2015-07-31 14:37:24 +0200 | [diff] [blame] | 1841 | if (result) { |
| 1842 | return result; |
| 1843 | } |
| 1844 | } |
| 1845 | } |
| 1846 | |
| 1847 | /* search in the identified module */ |
| 1848 | result = resolve_base_ident_sub(module, ident, name); |
Michal Vasko | e7fc19c | 2015-08-05 16:24:39 +0200 | [diff] [blame] | 1849 | if (!result) { |
| 1850 | LOGVAL(LYE_INARG, line, basename, parent); |
Michal Vasko | c3d9f8c | 2015-07-31 14:37:24 +0200 | [diff] [blame] | 1851 | } |
| 1852 | |
| 1853 | return result; |
| 1854 | } |
| 1855 | |
Michal Vasko | f02e374 | 2015-08-05 16:27:02 +0200 | [diff] [blame^] | 1856 | /* does not log */ |
Radek Krejci | a52656e | 2015-08-05 13:41:50 +0200 | [diff] [blame] | 1857 | struct lys_ident * |
| 1858 | resolve_identityref(struct lys_ident *base, const char *name, const char *ns) |
Michal Vasko | c3d9f8c | 2015-07-31 14:37:24 +0200 | [diff] [blame] | 1859 | { |
Radek Krejci | a52656e | 2015-08-05 13:41:50 +0200 | [diff] [blame] | 1860 | struct lys_ident_der *der; |
Michal Vasko | c3d9f8c | 2015-07-31 14:37:24 +0200 | [diff] [blame] | 1861 | |
| 1862 | if (!base || !name || !ns) { |
| 1863 | return NULL; |
| 1864 | } |
| 1865 | |
| 1866 | for(der = base->der; der; der = der->next) { |
| 1867 | if (!strcmp(der->ident->name, name) && ns == der->ident->module->ns) { |
| 1868 | /* we have match */ |
| 1869 | return der->ident; |
| 1870 | } |
| 1871 | } |
| 1872 | |
| 1873 | /* not found */ |
| 1874 | return NULL; |
| 1875 | } |
| 1876 | |
Michal Vasko | f02e374 | 2015-08-05 16:27:02 +0200 | [diff] [blame^] | 1877 | /* logs directly */ |
Michal Vasko | c3d9f8c | 2015-07-31 14:37:24 +0200 | [diff] [blame] | 1878 | static int |
Michal Vasko | f02e374 | 2015-08-05 16:27:02 +0200 | [diff] [blame^] | 1879 | resolve_unres_ident(struct lys_module *mod, struct lys_ident *ident, const char *base_name, uint32_t line) |
Michal Vasko | c3d9f8c | 2015-07-31 14:37:24 +0200 | [diff] [blame] | 1880 | { |
Michal Vasko | f02e374 | 2015-08-05 16:27:02 +0200 | [diff] [blame^] | 1881 | if (resolve_base_ident(mod, ident, base_name, "ident", line)) { |
| 1882 | return EXIT_SUCCESS; |
Michal Vasko | c3d9f8c | 2015-07-31 14:37:24 +0200 | [diff] [blame] | 1883 | } |
| 1884 | |
Michal Vasko | e7fc19c | 2015-08-05 16:24:39 +0200 | [diff] [blame] | 1885 | LOGVAL(LYE_INRESOLV, (line == UINT_MAX ? line : 0), "identity", base_name); |
| 1886 | return EXIT_FAILURE; |
Michal Vasko | c3d9f8c | 2015-07-31 14:37:24 +0200 | [diff] [blame] | 1887 | } |
| 1888 | |
Michal Vasko | f02e374 | 2015-08-05 16:27:02 +0200 | [diff] [blame^] | 1889 | /* logs directly */ |
Michal Vasko | c3d9f8c | 2015-07-31 14:37:24 +0200 | [diff] [blame] | 1890 | static int |
Michal Vasko | f02e374 | 2015-08-05 16:27:02 +0200 | [diff] [blame^] | 1891 | resolve_unres_type_identref(struct lys_module *mod, struct lys_type *type, const char *base_name, uint32_t line) |
Michal Vasko | c3d9f8c | 2015-07-31 14:37:24 +0200 | [diff] [blame] | 1892 | { |
Michal Vasko | f02e374 | 2015-08-05 16:27:02 +0200 | [diff] [blame^] | 1893 | type->info.ident.ref = resolve_base_ident(mod, NULL, base_name, "type", line); |
Michal Vasko | c3d9f8c | 2015-07-31 14:37:24 +0200 | [diff] [blame] | 1894 | if (type->info.ident.ref) { |
Michal Vasko | f02e374 | 2015-08-05 16:27:02 +0200 | [diff] [blame^] | 1895 | return EXIT_SUCCESS; |
Michal Vasko | c3d9f8c | 2015-07-31 14:37:24 +0200 | [diff] [blame] | 1896 | } |
| 1897 | |
Michal Vasko | e7fc19c | 2015-08-05 16:24:39 +0200 | [diff] [blame] | 1898 | LOGVAL(LYE_INRESOLV, (line == UINT_MAX ? line : 0), "identityref", base_name); |
| 1899 | return EXIT_FAILURE; |
Michal Vasko | c3d9f8c | 2015-07-31 14:37:24 +0200 | [diff] [blame] | 1900 | } |
| 1901 | |
Michal Vasko | f02e374 | 2015-08-05 16:27:02 +0200 | [diff] [blame^] | 1902 | /* logs directly */ |
Michal Vasko | c3d9f8c | 2015-07-31 14:37:24 +0200 | [diff] [blame] | 1903 | static int |
Michal Vasko | f02e374 | 2015-08-05 16:27:02 +0200 | [diff] [blame^] | 1904 | resolve_unres_type_leafref(struct lys_module *mod, struct lys_type *type, struct lys_node *node, uint32_t line) |
Michal Vasko | c3d9f8c | 2015-07-31 14:37:24 +0200 | [diff] [blame] | 1905 | { |
Michal Vasko | f02e374 | 2015-08-05 16:27:02 +0200 | [diff] [blame^] | 1906 | if (!resolve_path_arg_schema(mod, type->info.lref.path, node, line)) { |
| 1907 | return EXIT_SUCCESS; |
Michal Vasko | c3d9f8c | 2015-07-31 14:37:24 +0200 | [diff] [blame] | 1908 | } |
| 1909 | |
Michal Vasko | e7fc19c | 2015-08-05 16:24:39 +0200 | [diff] [blame] | 1910 | LOGVAL(LYE_INRESOLV, (line == UINT_MAX ? line : 0), "leafref", type->info.lref.path); |
| 1911 | return EXIT_FAILURE; |
Michal Vasko | c3d9f8c | 2015-07-31 14:37:24 +0200 | [diff] [blame] | 1912 | } |
| 1913 | |
Michal Vasko | f02e374 | 2015-08-05 16:27:02 +0200 | [diff] [blame^] | 1914 | /* logs directly */ |
Michal Vasko | c3d9f8c | 2015-07-31 14:37:24 +0200 | [diff] [blame] | 1915 | static int |
Michal Vasko | f02e374 | 2015-08-05 16:27:02 +0200 | [diff] [blame^] | 1916 | resolve_unres_type_der(struct lys_module *mod, struct lys_type *type, const char *type_name, uint32_t line) |
Michal Vasko | c3d9f8c | 2015-07-31 14:37:24 +0200 | [diff] [blame] | 1917 | { |
Radek Krejci | 7651257 | 2015-08-04 09:47:08 +0200 | [diff] [blame] | 1918 | type->der = resolve_superior_type(type_name, type->prefix, mod, (struct lys_node *)type->der); |
Michal Vasko | c3d9f8c | 2015-07-31 14:37:24 +0200 | [diff] [blame] | 1919 | if (type->der) { |
Michal Vasko | a91333d | 2015-08-03 16:03:06 +0200 | [diff] [blame] | 1920 | type->base = type->der->type.base; |
Michal Vasko | f02e374 | 2015-08-05 16:27:02 +0200 | [diff] [blame^] | 1921 | return EXIT_SUCCESS; |
Michal Vasko | c3d9f8c | 2015-07-31 14:37:24 +0200 | [diff] [blame] | 1922 | } |
| 1923 | |
Michal Vasko | e7fc19c | 2015-08-05 16:24:39 +0200 | [diff] [blame] | 1924 | LOGVAL(LYE_INRESOLV, line, "type", type_name); |
| 1925 | return EXIT_FAILURE; |
Michal Vasko | c3d9f8c | 2015-07-31 14:37:24 +0200 | [diff] [blame] | 1926 | } |
| 1927 | |
Michal Vasko | f02e374 | 2015-08-05 16:27:02 +0200 | [diff] [blame^] | 1928 | /* logs directly */ |
Michal Vasko | c3d9f8c | 2015-07-31 14:37:24 +0200 | [diff] [blame] | 1929 | static int |
Michal Vasko | f02e374 | 2015-08-05 16:27:02 +0200 | [diff] [blame^] | 1930 | resolve_unres_augment(struct lys_module *mod, struct lys_node_augment *aug, uint32_t line) |
Michal Vasko | c3d9f8c | 2015-07-31 14:37:24 +0200 | [diff] [blame] | 1931 | { |
Radek Krejci | 7651257 | 2015-08-04 09:47:08 +0200 | [diff] [blame] | 1932 | if (aug->parent->nodetype == LYS_USES) { |
Michal Vasko | c3d9f8c | 2015-07-31 14:37:24 +0200 | [diff] [blame] | 1933 | if ((aug->target_name[0] != '/') |
Radek Krejci | 7651257 | 2015-08-04 09:47:08 +0200 | [diff] [blame] | 1934 | && resolve_schema_nodeid(aug->target_name, aug->parent->child, mod, LYS_AUGMENT)) { |
Michal Vasko | f02e374 | 2015-08-05 16:27:02 +0200 | [diff] [blame^] | 1935 | return EXIT_SUCCESS; |
Michal Vasko | c3d9f8c | 2015-07-31 14:37:24 +0200 | [diff] [blame] | 1936 | } |
| 1937 | } else { |
| 1938 | if ((aug->target_name[0] == '/') |
Radek Krejci | 7651257 | 2015-08-04 09:47:08 +0200 | [diff] [blame] | 1939 | && resolve_schema_nodeid(aug->target_name, mod->data, mod, LYS_AUGMENT)) { |
Michal Vasko | f02e374 | 2015-08-05 16:27:02 +0200 | [diff] [blame^] | 1940 | return EXIT_SUCCESS; |
Michal Vasko | c3d9f8c | 2015-07-31 14:37:24 +0200 | [diff] [blame] | 1941 | } |
| 1942 | } |
| 1943 | |
Michal Vasko | e7fc19c | 2015-08-05 16:24:39 +0200 | [diff] [blame] | 1944 | LOGVAL(LYE_INRESOLV, line, "augment", aug->target_name); |
| 1945 | return EXIT_FAILURE; |
Michal Vasko | c3d9f8c | 2015-07-31 14:37:24 +0200 | [diff] [blame] | 1946 | } |
| 1947 | |
Michal Vasko | f02e374 | 2015-08-05 16:27:02 +0200 | [diff] [blame^] | 1948 | /* logs directly */ |
Michal Vasko | c3d9f8c | 2015-07-31 14:37:24 +0200 | [diff] [blame] | 1949 | static int |
Michal Vasko | f02e374 | 2015-08-05 16:27:02 +0200 | [diff] [blame^] | 1950 | resolve_unres_iffeature(struct lys_module *mod, struct lys_feature **feat_ptr, const char *feat_name, uint32_t line) |
Michal Vasko | c3d9f8c | 2015-07-31 14:37:24 +0200 | [diff] [blame] | 1951 | { |
Michal Vasko | f02e374 | 2015-08-05 16:27:02 +0200 | [diff] [blame^] | 1952 | *feat_ptr = resolve_feature(feat_name, mod, line); |
Michal Vasko | c3d9f8c | 2015-07-31 14:37:24 +0200 | [diff] [blame] | 1953 | if (*feat_ptr) { |
Michal Vasko | f02e374 | 2015-08-05 16:27:02 +0200 | [diff] [blame^] | 1954 | return EXIT_SUCCESS; |
Michal Vasko | c3d9f8c | 2015-07-31 14:37:24 +0200 | [diff] [blame] | 1955 | } |
| 1956 | |
Michal Vasko | e7fc19c | 2015-08-05 16:24:39 +0200 | [diff] [blame] | 1957 | LOGVAL(LYE_INRESOLV, (line == UINT_MAX ? line : 0), "if-feature", feat_name); |
| 1958 | return EXIT_FAILURE; |
Michal Vasko | c3d9f8c | 2015-07-31 14:37:24 +0200 | [diff] [blame] | 1959 | } |
| 1960 | |
Michal Vasko | f02e374 | 2015-08-05 16:27:02 +0200 | [diff] [blame^] | 1961 | /* logs directly */ |
Michal Vasko | c3d9f8c | 2015-07-31 14:37:24 +0200 | [diff] [blame] | 1962 | static int |
Michal Vasko | f02e374 | 2015-08-05 16:27:02 +0200 | [diff] [blame^] | 1963 | resolve_unres_uses(struct lys_node_uses *uses, struct unres_schema *unres, uint32_t line) |
Michal Vasko | c3d9f8c | 2015-07-31 14:37:24 +0200 | [diff] [blame] | 1964 | { |
Michal Vasko | f02e374 | 2015-08-05 16:27:02 +0200 | [diff] [blame^] | 1965 | if (uses->grp || !resolve_grouping(uses->parent, uses, line)) { |
| 1966 | if (!resolve_uses(uses, unres, line)) { |
| 1967 | return EXIT_SUCCESS; |
Michal Vasko | 12e3084 | 2015-08-04 11:54:00 +0200 | [diff] [blame] | 1968 | } |
Michal Vasko | c3d9f8c | 2015-07-31 14:37:24 +0200 | [diff] [blame] | 1969 | } |
| 1970 | |
Michal Vasko | e7fc19c | 2015-08-05 16:24:39 +0200 | [diff] [blame] | 1971 | LOGVAL(LYE_INRESOLV, (line == UINT_MAX ? line : 0), "uses", uses->name); |
| 1972 | return EXIT_FAILURE; |
Michal Vasko | c3d9f8c | 2015-07-31 14:37:24 +0200 | [diff] [blame] | 1973 | } |
| 1974 | |
Michal Vasko | f02e374 | 2015-08-05 16:27:02 +0200 | [diff] [blame^] | 1975 | /* logs directly */ |
Michal Vasko | c3d9f8c | 2015-07-31 14:37:24 +0200 | [diff] [blame] | 1976 | static int |
Michal Vasko | f02e374 | 2015-08-05 16:27:02 +0200 | [diff] [blame^] | 1977 | resolve_unres_type_dflt(struct lys_type *type, const char *dflt, uint32_t line) |
Michal Vasko | c3d9f8c | 2015-07-31 14:37:24 +0200 | [diff] [blame] | 1978 | { |
Michal Vasko | 12e3084 | 2015-08-04 11:54:00 +0200 | [diff] [blame] | 1979 | if (!check_default(type, dflt)) { |
Michal Vasko | f02e374 | 2015-08-05 16:27:02 +0200 | [diff] [blame^] | 1980 | return EXIT_SUCCESS; |
Michal Vasko | 12e3084 | 2015-08-04 11:54:00 +0200 | [diff] [blame] | 1981 | } |
| 1982 | |
Michal Vasko | e7fc19c | 2015-08-05 16:24:39 +0200 | [diff] [blame] | 1983 | LOGVAL(LYE_INRESOLV, line, "type default", dflt); |
| 1984 | return EXIT_FAILURE; |
Michal Vasko | c3d9f8c | 2015-07-31 14:37:24 +0200 | [diff] [blame] | 1985 | } |
| 1986 | |
Michal Vasko | f02e374 | 2015-08-05 16:27:02 +0200 | [diff] [blame^] | 1987 | /* logs directly */ |
Michal Vasko | c3d9f8c | 2015-07-31 14:37:24 +0200 | [diff] [blame] | 1988 | static int |
Michal Vasko | f02e374 | 2015-08-05 16:27:02 +0200 | [diff] [blame^] | 1989 | resolve_unres_choice_dflt(struct lys_node_choice *choice, const char *dflt, uint32_t line) |
Michal Vasko | c3d9f8c | 2015-07-31 14:37:24 +0200 | [diff] [blame] | 1990 | { |
Michal Vasko | 1f76a28 | 2015-08-04 16:16:53 +0200 | [diff] [blame] | 1991 | choice->dflt = resolve_child((struct lys_node *)choice, dflt, strlen(dflt), LYS_ANYXML | LYS_CASE |
Radek Krejci | 7651257 | 2015-08-04 09:47:08 +0200 | [diff] [blame] | 1992 | | LYS_CONTAINER | LYS_LEAF | LYS_LEAFLIST | LYS_LIST); |
Michal Vasko | c3d9f8c | 2015-07-31 14:37:24 +0200 | [diff] [blame] | 1993 | if (choice->dflt) { |
Michal Vasko | f02e374 | 2015-08-05 16:27:02 +0200 | [diff] [blame^] | 1994 | return EXIT_SUCCESS; |
Michal Vasko | c3d9f8c | 2015-07-31 14:37:24 +0200 | [diff] [blame] | 1995 | } |
| 1996 | |
Michal Vasko | e7fc19c | 2015-08-05 16:24:39 +0200 | [diff] [blame] | 1997 | LOGVAL(LYE_INRESOLV, line, "choice default", dflt); |
| 1998 | return EXIT_FAILURE; |
Michal Vasko | c3d9f8c | 2015-07-31 14:37:24 +0200 | [diff] [blame] | 1999 | } |
| 2000 | |
Michal Vasko | f02e374 | 2015-08-05 16:27:02 +0200 | [diff] [blame^] | 2001 | /* logs directly */ |
Michal Vasko | c3d9f8c | 2015-07-31 14:37:24 +0200 | [diff] [blame] | 2002 | static int |
Michal Vasko | f02e374 | 2015-08-05 16:27:02 +0200 | [diff] [blame^] | 2003 | resolve_unres_list_keys(struct lys_node_list *list, const char *keys_str, uint32_t line) |
Michal Vasko | c3d9f8c | 2015-07-31 14:37:24 +0200 | [diff] [blame] | 2004 | { |
| 2005 | int i, len; |
| 2006 | const char *value; |
| 2007 | |
| 2008 | for (i = 0; i < list->keys_size; ++i) { |
| 2009 | /* get the key name */ |
| 2010 | if ((value = strpbrk(keys_str, " \t\n"))) { |
| 2011 | len = value - keys_str; |
| 2012 | while (isspace(value[0])) { |
| 2013 | value++; |
| 2014 | } |
| 2015 | } else { |
| 2016 | len = strlen(keys_str); |
| 2017 | } |
| 2018 | |
Radek Krejci | b804869 | 2015-08-05 13:36:34 +0200 | [diff] [blame] | 2019 | list->keys[i] = (struct lys_node_leaf *)resolve_child((struct lys_node *)list, keys_str, len, LYS_LEAF); |
Michal Vasko | c3d9f8c | 2015-07-31 14:37:24 +0200 | [diff] [blame] | 2020 | |
Michal Vasko | e7fc19c | 2015-08-05 16:24:39 +0200 | [diff] [blame] | 2021 | if (check_key(list->keys[i], list->flags, list->keys, i, keys_str, len, line)) { |
| 2022 | LOGVAL(LYE_INRESOLV, (line == UINT_MAX ? line : 0), "list keys", keys_str); |
| 2023 | return EXIT_FAILURE; |
Michal Vasko | c3d9f8c | 2015-07-31 14:37:24 +0200 | [diff] [blame] | 2024 | } |
| 2025 | |
| 2026 | /* prepare for next iteration */ |
| 2027 | while (value && isspace(value[0])) { |
| 2028 | value++; |
| 2029 | } |
| 2030 | keys_str = value; |
| 2031 | } |
| 2032 | |
Michal Vasko | f02e374 | 2015-08-05 16:27:02 +0200 | [diff] [blame^] | 2033 | return EXIT_SUCCESS; |
Michal Vasko | c3d9f8c | 2015-07-31 14:37:24 +0200 | [diff] [blame] | 2034 | } |
| 2035 | |
Michal Vasko | f02e374 | 2015-08-05 16:27:02 +0200 | [diff] [blame^] | 2036 | /* logs directly */ |
Michal Vasko | c3d9f8c | 2015-07-31 14:37:24 +0200 | [diff] [blame] | 2037 | static int |
Michal Vasko | f02e374 | 2015-08-05 16:27:02 +0200 | [diff] [blame^] | 2038 | resolve_unres_list_uniq(struct lys_unique *uniq, const char *uniq_str, uint32_t line) |
Michal Vasko | c3d9f8c | 2015-07-31 14:37:24 +0200 | [diff] [blame] | 2039 | { |
Michal Vasko | f02e374 | 2015-08-05 16:27:02 +0200 | [diff] [blame^] | 2040 | if (!resolve_unique((struct lys_node *)uniq->leafs, uniq_str, uniq, line)) { |
| 2041 | return EXIT_SUCCESS; |
Michal Vasko | 12e3084 | 2015-08-04 11:54:00 +0200 | [diff] [blame] | 2042 | } |
| 2043 | |
Michal Vasko | e7fc19c | 2015-08-05 16:24:39 +0200 | [diff] [blame] | 2044 | LOGVAL(LYE_INRESOLV, (line == UINT_MAX ? line : 0), "list unique", uniq_str); |
| 2045 | return EXIT_FAILURE; |
Michal Vasko | c3d9f8c | 2015-07-31 14:37:24 +0200 | [diff] [blame] | 2046 | } |
| 2047 | |
| 2048 | static int |
Michal Vasko | f02e374 | 2015-08-05 16:27:02 +0200 | [diff] [blame^] | 2049 | resolve_unres_when(struct lys_when *UNUSED(when), struct lys_node *UNUSED(start), uint32_t UNUSED(line)) |
Michal Vasko | c3d9f8c | 2015-07-31 14:37:24 +0200 | [diff] [blame] | 2050 | { |
| 2051 | /* TODO */ |
Michal Vasko | f02e374 | 2015-08-05 16:27:02 +0200 | [diff] [blame^] | 2052 | return EXIT_SUCCESS; |
Michal Vasko | c3d9f8c | 2015-07-31 14:37:24 +0200 | [diff] [blame] | 2053 | } |
| 2054 | |
| 2055 | static int |
Michal Vasko | f02e374 | 2015-08-05 16:27:02 +0200 | [diff] [blame^] | 2056 | resolve_unres_must(struct lys_restr *UNUSED(must), struct lys_node *UNUSED(start), uint32_t UNUSED(line)) |
Michal Vasko | c3d9f8c | 2015-07-31 14:37:24 +0200 | [diff] [blame] | 2057 | { |
| 2058 | /* TODO */ |
Michal Vasko | f02e374 | 2015-08-05 16:27:02 +0200 | [diff] [blame^] | 2059 | return EXIT_SUCCESS; |
Michal Vasko | c3d9f8c | 2015-07-31 14:37:24 +0200 | [diff] [blame] | 2060 | } |
| 2061 | |
Michal Vasko | f02e374 | 2015-08-05 16:27:02 +0200 | [diff] [blame^] | 2062 | /* logs indirectly |
| 2063 | * line == -1 means do not log, 0 means unknown */ |
Michal Vasko | c3d9f8c | 2015-07-31 14:37:24 +0200 | [diff] [blame] | 2064 | static int |
Michal Vasko | f02e374 | 2015-08-05 16:27:02 +0200 | [diff] [blame^] | 2065 | resolve_unres_item(struct lys_module *mod, void *item, enum UNRES_ITEM type, void *str_mnode, struct unres_schema *unres, |
| 2066 | uint32_t line) |
Michal Vasko | c3d9f8c | 2015-07-31 14:37:24 +0200 | [diff] [blame] | 2067 | { |
| 2068 | int ret = EXIT_FAILURE, has_str = 0; |
| 2069 | |
| 2070 | switch (type) { |
| 2071 | case UNRES_RESOLVED: |
Michal Vasko | e7fc19c | 2015-08-05 16:24:39 +0200 | [diff] [blame] | 2072 | LOGINT; |
Michal Vasko | 45b4231 | 2015-08-05 09:30:11 +0200 | [diff] [blame] | 2073 | break; |
Michal Vasko | c3d9f8c | 2015-07-31 14:37:24 +0200 | [diff] [blame] | 2074 | case UNRES_IDENT: |
| 2075 | ret = resolve_unres_ident(mod, item, str_mnode, line); |
| 2076 | has_str = 1; |
| 2077 | break; |
| 2078 | case UNRES_TYPE_IDENTREF: |
| 2079 | ret = resolve_unres_type_identref(mod, item, str_mnode, line); |
| 2080 | has_str = 1; |
| 2081 | break; |
| 2082 | case UNRES_TYPE_LEAFREF: |
| 2083 | ret = resolve_unres_type_leafref(mod, item, str_mnode, line); |
| 2084 | has_str = 0; |
| 2085 | break; |
| 2086 | case UNRES_TYPE_DER: |
| 2087 | ret = resolve_unres_type_der(mod, item, str_mnode, line); |
| 2088 | has_str = 1; |
| 2089 | break; |
| 2090 | case UNRES_AUGMENT: |
| 2091 | ret = resolve_unres_augment(mod, item, line); |
| 2092 | has_str = 0; |
| 2093 | break; |
| 2094 | case UNRES_IFFEAT: |
| 2095 | ret = resolve_unres_iffeature(mod, item, str_mnode, line); |
| 2096 | has_str = 1; |
| 2097 | break; |
| 2098 | case UNRES_USES: |
Michal Vasko | f02e374 | 2015-08-05 16:27:02 +0200 | [diff] [blame^] | 2099 | ret = resolve_unres_uses(item, unres, line); |
Michal Vasko | c3d9f8c | 2015-07-31 14:37:24 +0200 | [diff] [blame] | 2100 | has_str = 0; |
| 2101 | break; |
| 2102 | case UNRES_TYPE_DFLT: |
| 2103 | ret = resolve_unres_type_dflt(item, str_mnode, line); |
| 2104 | /* do not remove str_mnode (dflt), it's in a typedef */ |
| 2105 | has_str = 0; |
| 2106 | break; |
| 2107 | case UNRES_CHOICE_DFLT: |
Michal Vasko | 12e3084 | 2015-08-04 11:54:00 +0200 | [diff] [blame] | 2108 | ret = resolve_unres_choice_dflt(item, str_mnode, line); |
Michal Vasko | c3d9f8c | 2015-07-31 14:37:24 +0200 | [diff] [blame] | 2109 | has_str = 1; |
| 2110 | break; |
| 2111 | case UNRES_LIST_KEYS: |
| 2112 | ret = resolve_unres_list_keys(item, str_mnode, line); |
| 2113 | has_str = 1; |
| 2114 | break; |
| 2115 | case UNRES_LIST_UNIQ: |
| 2116 | ret = resolve_unres_list_uniq(item, str_mnode, line); |
| 2117 | has_str = 1; |
| 2118 | break; |
| 2119 | case UNRES_WHEN: |
| 2120 | ret = resolve_unres_when(item, str_mnode, line); |
| 2121 | has_str = 0; |
| 2122 | break; |
| 2123 | case UNRES_MUST: |
| 2124 | ret = resolve_unres_must(item, str_mnode, line); |
| 2125 | has_str = 0; |
| 2126 | break; |
| 2127 | } |
| 2128 | |
| 2129 | if (has_str && !ret) { |
| 2130 | lydict_remove(mod->ctx, str_mnode); |
| 2131 | } |
| 2132 | |
| 2133 | return ret; |
| 2134 | } |
| 2135 | |
Michal Vasko | f02e374 | 2015-08-05 16:27:02 +0200 | [diff] [blame^] | 2136 | /* logs directly */ |
| 2137 | static void |
| 2138 | print_unres_item_fail(void *item, enum UNRES_ITEM type, void *str_mnode, uint32_t line) |
Michal Vasko | c3d9f8c | 2015-07-31 14:37:24 +0200 | [diff] [blame] | 2139 | { |
Michal Vasko | f02e374 | 2015-08-05 16:27:02 +0200 | [diff] [blame^] | 2140 | char line_str[18]; |
| 2141 | |
| 2142 | if (line) { |
| 2143 | sprintf(line_str, " (line %u)", line); |
| 2144 | } else { |
| 2145 | line_str[0] = '\0'; |
| 2146 | } |
| 2147 | |
| 2148 | switch (type) { |
| 2149 | case UNRES_RESOLVED: |
| 2150 | LOGINT; |
| 2151 | break; |
| 2152 | case UNRES_IDENT: |
| 2153 | LOGVRB("Resolving %s \"%s\" failed, it will be attempted later%s.", "identity", (char *)str_mnode, line_str); |
| 2154 | break; |
| 2155 | case UNRES_TYPE_IDENTREF: |
| 2156 | LOGVRB("Resolving %s \"%s\" failed, it will be attempted later%s.", "identityref", (char *)str_mnode, line_str); |
| 2157 | break; |
| 2158 | case UNRES_TYPE_LEAFREF: |
| 2159 | LOGVRB("Resolving %s \"%s\" failed, it will be attempted later%s.", "leafref", ((struct lys_type *)item)->info.lref.path, line_str); |
| 2160 | break; |
| 2161 | case UNRES_TYPE_DER: |
| 2162 | LOGVRB("Resolving %s \"%s\" failed, it will be attempted later%s.", "derived type", (char *)str_mnode, line_str); |
| 2163 | break; |
| 2164 | case UNRES_AUGMENT: |
| 2165 | LOGVRB("Resolving %s \"%s\" failed, it will be attempted later%s.", "augment target", ((struct lys_node_augment *)item)->target_name, line_str); |
| 2166 | break; |
| 2167 | case UNRES_IFFEAT: |
| 2168 | LOGVRB("Resolving %s \"%s\" failed, it will be attempted later%s.", "if-feature", (char *)str_mnode, line_str); |
| 2169 | break; |
| 2170 | case UNRES_USES: |
| 2171 | LOGVRB("Resolving %s \"%s\" failed, it will be attempted later%s.", "uses", ((struct lys_node_uses *)item)->name, line_str); |
| 2172 | break; |
| 2173 | case UNRES_TYPE_DFLT: |
| 2174 | LOGVRB("Resolving %s \"%s\" failed, it will be attempted later%s.", "type default", (char *)str_mnode, line_str); |
| 2175 | break; |
| 2176 | case UNRES_CHOICE_DFLT: |
| 2177 | LOGVRB("Resolving %s \"%s\" failed, it will be attempted later%s.", "choice default", (char *)str_mnode, line_str); |
| 2178 | break; |
| 2179 | case UNRES_LIST_KEYS: |
| 2180 | LOGVRB("Resolving %s \"%s\" failed, it will be attempted later%s.", "list keys", (char *)str_mnode, line_str); |
| 2181 | break; |
| 2182 | case UNRES_LIST_UNIQ: |
| 2183 | LOGVRB("Resolving %s \"%s\" failed, it will be attempted later%s.", "list unique", (char *)str_mnode, line_str); |
| 2184 | break; |
| 2185 | case UNRES_WHEN: |
| 2186 | LOGVRB("Resolving %s \"%s\" failed, it will be attempted later%s.", "when", ((struct lys_when *)item)->cond, line_str); |
| 2187 | break; |
| 2188 | case UNRES_MUST: |
| 2189 | LOGVRB("Resolving %s \"%s\" failed, it will be attempted later%s.", "must", ((struct lys_restr *)item)->expr, line_str); |
| 2190 | break; |
| 2191 | } |
| 2192 | } |
| 2193 | |
| 2194 | /* logs indirectly */ |
| 2195 | int |
| 2196 | resolve_unres(struct lys_module *mod, struct unres_schema *unres) |
| 2197 | { |
| 2198 | uint32_t i, resolved = 0; |
Michal Vasko | c3d9f8c | 2015-07-31 14:37:24 +0200 | [diff] [blame] | 2199 | |
| 2200 | assert(unres); |
| 2201 | |
| 2202 | /* uses */ |
| 2203 | for (i = 0; i < unres->count; ++i) { |
| 2204 | if (unres->type[i] != UNRES_USES) { |
| 2205 | continue; |
| 2206 | } |
Michal Vasko | f02e374 | 2015-08-05 16:27:02 +0200 | [diff] [blame^] | 2207 | if (!resolve_unres_item(mod, unres->item[i], unres->type[i], unres->str_mnode[i], unres, unres->line[i])) { |
Michal Vasko | c3d9f8c | 2015-07-31 14:37:24 +0200 | [diff] [blame] | 2208 | unres->type[i] = UNRES_RESOLVED; |
| 2209 | ++resolved; |
| 2210 | } |
| 2211 | } |
| 2212 | |
| 2213 | /* augment */ |
| 2214 | for (i = 0; i < unres->count; ++i) { |
| 2215 | if (unres->type[i] != UNRES_AUGMENT) { |
| 2216 | continue; |
| 2217 | } |
Michal Vasko | f02e374 | 2015-08-05 16:27:02 +0200 | [diff] [blame^] | 2218 | if (!resolve_unres_item(mod, unres->item[i], unres->type[i], unres->str_mnode[i], unres, unres->line[i])) { |
Michal Vasko | c3d9f8c | 2015-07-31 14:37:24 +0200 | [diff] [blame] | 2219 | unres->type[i] = UNRES_RESOLVED; |
| 2220 | ++resolved; |
| 2221 | } |
| 2222 | } |
| 2223 | |
| 2224 | /* the rest */ |
| 2225 | for (i = 0; i < unres->count; ++i) { |
| 2226 | if (unres->type[i] == UNRES_RESOLVED) { |
| 2227 | continue; |
| 2228 | } |
Michal Vasko | f02e374 | 2015-08-05 16:27:02 +0200 | [diff] [blame^] | 2229 | if (!resolve_unres_item(mod, unres->item[i], unres->type[i], unres->str_mnode[i], unres, unres->line[i])) { |
Michal Vasko | c3d9f8c | 2015-07-31 14:37:24 +0200 | [diff] [blame] | 2230 | unres->type[i] = UNRES_RESOLVED; |
| 2231 | ++resolved; |
| 2232 | } |
| 2233 | } |
| 2234 | |
| 2235 | if (resolved < unres->count) { |
| 2236 | return EXIT_FAILURE; |
| 2237 | } |
| 2238 | |
| 2239 | return EXIT_SUCCESS; |
| 2240 | } |
| 2241 | |
Michal Vasko | f02e374 | 2015-08-05 16:27:02 +0200 | [diff] [blame^] | 2242 | /* logs indirectly */ |
Michal Vasko | c3d9f8c | 2015-07-31 14:37:24 +0200 | [diff] [blame] | 2243 | void |
Michal Vasko | f02e374 | 2015-08-05 16:27:02 +0200 | [diff] [blame^] | 2244 | add_unres_str(struct lys_module *mod, struct unres_schema *unres, void *item, enum UNRES_ITEM type, const char *str, |
| 2245 | uint32_t line) |
Michal Vasko | c3d9f8c | 2015-07-31 14:37:24 +0200 | [diff] [blame] | 2246 | { |
| 2247 | str = lydict_insert(mod->ctx, str, 0); |
Radek Krejci | 7651257 | 2015-08-04 09:47:08 +0200 | [diff] [blame] | 2248 | add_unres_mnode(mod, unres, item, type, (struct lys_node *)str, line); |
Michal Vasko | c3d9f8c | 2015-07-31 14:37:24 +0200 | [diff] [blame] | 2249 | } |
| 2250 | |
Michal Vasko | f02e374 | 2015-08-05 16:27:02 +0200 | [diff] [blame^] | 2251 | /* logs indirectly */ |
Michal Vasko | c3d9f8c | 2015-07-31 14:37:24 +0200 | [diff] [blame] | 2252 | void |
Michal Vasko | f02e374 | 2015-08-05 16:27:02 +0200 | [diff] [blame^] | 2253 | add_unres_mnode(struct lys_module *mod, struct unres_schema *unres, void *item, enum UNRES_ITEM type, |
| 2254 | struct lys_node *mnode, uint32_t line) |
Michal Vasko | c3d9f8c | 2015-07-31 14:37:24 +0200 | [diff] [blame] | 2255 | { |
| 2256 | assert(unres && item); |
| 2257 | |
Michal Vasko | f02e374 | 2015-08-05 16:27:02 +0200 | [diff] [blame^] | 2258 | if (!resolve_unres_item(mod, item, type, mnode, unres, UINT_MAX)) { |
Michal Vasko | c3d9f8c | 2015-07-31 14:37:24 +0200 | [diff] [blame] | 2259 | return; |
| 2260 | } |
| 2261 | |
Michal Vasko | f02e374 | 2015-08-05 16:27:02 +0200 | [diff] [blame^] | 2262 | print_unres_item_fail(item, type, mnode, line); |
| 2263 | |
Michal Vasko | c3d9f8c | 2015-07-31 14:37:24 +0200 | [diff] [blame] | 2264 | unres->count++; |
| 2265 | unres->item = realloc(unres->item, unres->count*sizeof *unres->item); |
| 2266 | unres->item[unres->count-1] = item; |
| 2267 | unres->type = realloc(unres->type, unres->count*sizeof *unres->type); |
| 2268 | unres->type[unres->count-1] = type; |
| 2269 | unres->str_mnode = realloc(unres->str_mnode, unres->count*sizeof *unres->str_mnode); |
| 2270 | unres->str_mnode[unres->count-1] = mnode; |
| 2271 | unres->line = realloc(unres->line, unres->count*sizeof *unres->line); |
| 2272 | unres->line[unres->count-1] = line; |
| 2273 | } |
| 2274 | |
Michal Vasko | f02e374 | 2015-08-05 16:27:02 +0200 | [diff] [blame^] | 2275 | /* logs indirectly */ |
Michal Vasko | c3d9f8c | 2015-07-31 14:37:24 +0200 | [diff] [blame] | 2276 | void |
Michal Vasko | f02e374 | 2015-08-05 16:27:02 +0200 | [diff] [blame^] | 2277 | dup_unres(struct lys_module *mod, struct unres_schema *unres, void *item, enum UNRES_ITEM type, void *new_item) |
Michal Vasko | c3d9f8c | 2015-07-31 14:37:24 +0200 | [diff] [blame] | 2278 | { |
| 2279 | int i; |
| 2280 | |
| 2281 | if (!item || !new_item) { |
| 2282 | return; |
| 2283 | } |
| 2284 | |
| 2285 | i = find_unres(unres, item, type); |
| 2286 | |
| 2287 | if (i == -1) { |
| 2288 | return; |
| 2289 | } |
| 2290 | |
| 2291 | if ((type == UNRES_TYPE_LEAFREF) || (type == UNRES_AUGMENT) || (type == UNRES_USES) || (type == UNRES_TYPE_DFLT) |
| 2292 | || (type == UNRES_WHEN) || (type == UNRES_MUST)) { |
| 2293 | add_unres_mnode(mod, unres, new_item, type, unres->str_mnode[i], 0); |
| 2294 | } else { |
| 2295 | add_unres_str(mod, unres, new_item, type, unres->str_mnode[i], 0); |
| 2296 | } |
| 2297 | } |
| 2298 | |
Michal Vasko | f02e374 | 2015-08-05 16:27:02 +0200 | [diff] [blame^] | 2299 | /* does not log */ |
Michal Vasko | c3d9f8c | 2015-07-31 14:37:24 +0200 | [diff] [blame] | 2300 | int |
Michal Vasko | f02e374 | 2015-08-05 16:27:02 +0200 | [diff] [blame^] | 2301 | find_unres(struct unres_schema *unres, void *item, enum UNRES_ITEM type) |
Michal Vasko | c3d9f8c | 2015-07-31 14:37:24 +0200 | [diff] [blame] | 2302 | { |
| 2303 | uint32_t ret = -1, i; |
| 2304 | |
| 2305 | for (i = 0; i < unres->count; ++i) { |
| 2306 | if ((unres->item[i] == item) && (unres->type[i] == type)) { |
| 2307 | ret = i; |
| 2308 | break; |
| 2309 | } |
| 2310 | } |
| 2311 | |
| 2312 | return ret; |
| 2313 | } |