Radek Krejci | e9f13b1 | 2020-11-09 17:42:04 +0100 | [diff] [blame] | 1 | /** |
| 2 | * @file common.c |
| 3 | * @author Radek Krejci <rkrejci@cesnet.cz> |
| 4 | * @brief libyang's yanglint tool - common functions for both interactive and non-interactive mode. |
| 5 | * |
| 6 | * Copyright (c) 2020 CESNET, z.s.p.o. |
| 7 | * |
| 8 | * This source code is licensed under BSD 3-Clause License (the "License"). |
| 9 | * You may not use this file except in compliance with the License. |
| 10 | * You may obtain a copy of the License at |
| 11 | * |
| 12 | * https://opensource.org/licenses/BSD-3-Clause |
| 13 | */ |
| 14 | |
| 15 | #define _GNU_SOURCE |
Radek Krejci | f8dc59a | 2020-11-25 13:47:44 +0100 | [diff] [blame] | 16 | #define _POSIX_C_SOURCE 200809L /* strdup, strndup */ |
Radek Krejci | e9f13b1 | 2020-11-09 17:42:04 +0100 | [diff] [blame] | 17 | |
| 18 | #include "common.h" |
| 19 | |
| 20 | #include <assert.h> |
| 21 | #include <errno.h> |
| 22 | #include <getopt.h> |
| 23 | #include <stdio.h> |
| 24 | #include <stdlib.h> |
| 25 | #include <string.h> |
| 26 | #include <sys/stat.h> |
| 27 | |
| 28 | #include "compat.h" |
| 29 | #include "libyang.h" |
aPiecek | 647f62e | 2023-05-18 10:55:58 +0200 | [diff] [blame] | 30 | #include "plugins_exts.h" |
Radek Krejci | e9f13b1 | 2020-11-09 17:42:04 +0100 | [diff] [blame] | 31 | |
| 32 | int |
| 33 | parse_schema_path(const char *path, char **dir, char **module) |
| 34 | { |
| 35 | char *p; |
| 36 | |
| 37 | assert(dir); |
| 38 | assert(module); |
| 39 | |
| 40 | /* split the path to dirname and basename for further work */ |
| 41 | *dir = strdup(path); |
| 42 | *module = strrchr(*dir, '/'); |
| 43 | if (!(*module)) { |
| 44 | *module = *dir; |
| 45 | *dir = strdup("./"); |
| 46 | } else { |
| 47 | *module[0] = '\0'; /* break the dir */ |
| 48 | *module = strdup((*module) + 1); |
| 49 | } |
| 50 | /* get the pure module name without suffix or revision part of the filename */ |
| 51 | if ((p = strchr(*module, '@'))) { |
| 52 | /* revision */ |
| 53 | *p = '\0'; |
| 54 | } else if ((p = strrchr(*module, '.'))) { |
| 55 | /* fileformat suffix */ |
| 56 | *p = '\0'; |
| 57 | } |
| 58 | |
| 59 | return 0; |
| 60 | } |
| 61 | |
| 62 | int |
| 63 | get_input(const char *filepath, LYS_INFORMAT *format_schema, LYD_FORMAT *format_data, struct ly_in **in) |
| 64 | { |
| 65 | struct stat st; |
| 66 | |
| 67 | /* check that the filepath exists and is a regular file */ |
| 68 | if (stat(filepath, &st) == -1) { |
| 69 | YLMSG_E("Unable to use input filepath (%s) - %s.\n", filepath, strerror(errno)); |
| 70 | return -1; |
| 71 | } |
| 72 | if (!S_ISREG(st.st_mode)) { |
| 73 | YLMSG_E("Provided input file (%s) is not a regular file.\n", filepath); |
| 74 | return -1; |
| 75 | } |
| 76 | |
aPiecek | ef0a339 | 2023-05-16 10:34:32 +0200 | [diff] [blame] | 77 | if (get_format(filepath, format_schema, format_data)) { |
| 78 | return -1; |
Radek Krejci | e9f13b1 | 2020-11-09 17:42:04 +0100 | [diff] [blame] | 79 | } |
| 80 | |
| 81 | if (ly_in_new_filepath(filepath, 0, in)) { |
| 82 | YLMSG_E("Unable to process input file.\n"); |
| 83 | return -1; |
| 84 | } |
| 85 | |
| 86 | return 0; |
| 87 | } |
| 88 | |
| 89 | void |
| 90 | free_features(void *flist) |
| 91 | { |
| 92 | struct schema_features *rec = (struct schema_features *)flist; |
| 93 | |
| 94 | if (rec) { |
Michal Vasko | a9a9861 | 2021-11-22 10:00:27 +0100 | [diff] [blame] | 95 | free(rec->mod_name); |
Radek Krejci | e9f13b1 | 2020-11-09 17:42:04 +0100 | [diff] [blame] | 96 | if (rec->features) { |
| 97 | for (uint32_t u = 0; rec->features[u]; ++u) { |
| 98 | free(rec->features[u]); |
| 99 | } |
| 100 | free(rec->features); |
| 101 | } |
| 102 | free(rec); |
| 103 | } |
| 104 | } |
| 105 | |
| 106 | void |
| 107 | get_features(struct ly_set *fset, const char *module, const char ***features) |
| 108 | { |
| 109 | /* get features list for this module */ |
| 110 | for (uint32_t u = 0; u < fset->count; ++u) { |
| 111 | struct schema_features *sf = (struct schema_features *)fset->objs[u]; |
Michal Vasko | 26bbb27 | 2022-08-02 14:54:33 +0200 | [diff] [blame] | 112 | |
Michal Vasko | a9a9861 | 2021-11-22 10:00:27 +0100 | [diff] [blame] | 113 | if (!strcmp(module, sf->mod_name)) { |
Radek Krejci | 8143bb4 | 2021-04-07 11:43:50 +0200 | [diff] [blame] | 114 | /* matched module - explicitly set features */ |
Radek Krejci | e9f13b1 | 2020-11-09 17:42:04 +0100 | [diff] [blame] | 115 | *features = (const char **)sf->features; |
Michal Vasko | 686d8fc | 2021-11-22 10:03:23 +0100 | [diff] [blame] | 116 | sf->applied = 1; |
Radek Krejci | e9f13b1 | 2020-11-09 17:42:04 +0100 | [diff] [blame] | 117 | return; |
| 118 | } |
| 119 | } |
Radek Krejci | 8143bb4 | 2021-04-07 11:43:50 +0200 | [diff] [blame] | 120 | |
Michal Vasko | 5974087 | 2021-11-22 10:01:34 +0100 | [diff] [blame] | 121 | /* features not set so disable all */ |
| 122 | *features = NULL; |
Radek Krejci | e9f13b1 | 2020-11-09 17:42:04 +0100 | [diff] [blame] | 123 | } |
| 124 | |
| 125 | int |
| 126 | parse_features(const char *fstring, struct ly_set *fset) |
| 127 | { |
| 128 | struct schema_features *rec; |
Michal Vasko | e699f7b | 2022-05-09 10:49:57 +0200 | [diff] [blame] | 129 | uint32_t count; |
| 130 | char *p, **fp; |
Radek Krejci | e9f13b1 | 2020-11-09 17:42:04 +0100 | [diff] [blame] | 131 | |
| 132 | rec = calloc(1, sizeof *rec); |
| 133 | if (!rec) { |
| 134 | YLMSG_E("Unable to allocate features information record (%s).\n", strerror(errno)); |
| 135 | return -1; |
| 136 | } |
| 137 | if (ly_set_add(fset, rec, 1, NULL)) { |
| 138 | YLMSG_E("Unable to store features information (%s).\n", strerror(errno)); |
| 139 | free(rec); |
| 140 | return -1; |
| 141 | } |
| 142 | |
| 143 | /* fill the record */ |
| 144 | p = strchr(fstring, ':'); |
| 145 | if (!p) { |
Michal Vasko | 9a5f3dd | 2021-11-23 08:59:53 +0100 | [diff] [blame] | 146 | YLMSG_E("Invalid format of the features specification (%s).\n", fstring); |
Radek Krejci | e9f13b1 | 2020-11-09 17:42:04 +0100 | [diff] [blame] | 147 | return -1; |
| 148 | } |
Michal Vasko | a9a9861 | 2021-11-22 10:00:27 +0100 | [diff] [blame] | 149 | rec->mod_name = strndup(fstring, p - fstring); |
Radek Krejci | e9f13b1 | 2020-11-09 17:42:04 +0100 | [diff] [blame] | 150 | |
Michal Vasko | e699f7b | 2022-05-09 10:49:57 +0200 | [diff] [blame] | 151 | count = 0; |
| 152 | while (p) { |
Radek Krejci | e9f13b1 | 2020-11-09 17:42:04 +0100 | [diff] [blame] | 153 | size_t len = 0; |
| 154 | char *token = p + 1; |
Michal Vasko | e699f7b | 2022-05-09 10:49:57 +0200 | [diff] [blame] | 155 | |
Radek Krejci | e9f13b1 | 2020-11-09 17:42:04 +0100 | [diff] [blame] | 156 | p = strchr(token, ','); |
| 157 | if (!p) { |
| 158 | /* the last item, if any */ |
| 159 | len = strlen(token); |
| 160 | } else { |
| 161 | len = p - token; |
| 162 | } |
Michal Vasko | e699f7b | 2022-05-09 10:49:57 +0200 | [diff] [blame] | 163 | |
Radek Krejci | e9f13b1 | 2020-11-09 17:42:04 +0100 | [diff] [blame] | 164 | if (len) { |
Michal Vasko | e699f7b | 2022-05-09 10:49:57 +0200 | [diff] [blame] | 165 | fp = realloc(rec->features, (count + 1) * sizeof *rec->features); |
Radek Krejci | e9f13b1 | 2020-11-09 17:42:04 +0100 | [diff] [blame] | 166 | if (!fp) { |
| 167 | YLMSG_E("Unable to store features list information (%s).\n", strerror(errno)); |
| 168 | return -1; |
| 169 | } |
| 170 | rec->features = fp; |
Michal Vasko | e699f7b | 2022-05-09 10:49:57 +0200 | [diff] [blame] | 171 | fp = &rec->features[count++]; /* array item to set */ |
Radek Krejci | e9f13b1 | 2020-11-09 17:42:04 +0100 | [diff] [blame] | 172 | (*fp) = strndup(token, len); |
| 173 | } |
| 174 | } |
| 175 | |
Michal Vasko | e699f7b | 2022-05-09 10:49:57 +0200 | [diff] [blame] | 176 | /* terminating NULL */ |
| 177 | fp = realloc(rec->features, (count + 1) * sizeof *rec->features); |
| 178 | if (!fp) { |
| 179 | YLMSG_E("Unable to store features list information (%s).\n", strerror(errno)); |
| 180 | return -1; |
| 181 | } |
| 182 | rec->features = fp; |
| 183 | rec->features[count++] = NULL; |
| 184 | |
Radek Krejci | e9f13b1 | 2020-11-09 17:42:04 +0100 | [diff] [blame] | 185 | return 0; |
| 186 | } |
| 187 | |
| 188 | struct cmdline_file * |
| 189 | fill_cmdline_file(struct ly_set *set, struct ly_in *in, const char *path, LYD_FORMAT format) |
| 190 | { |
| 191 | struct cmdline_file *rec; |
| 192 | |
| 193 | rec = malloc(sizeof *rec); |
| 194 | if (!rec) { |
| 195 | YLMSG_E("Allocating memory for data file information failed.\n"); |
| 196 | return NULL; |
| 197 | } |
Michal Vasko | 193dacd | 2022-10-13 08:43:05 +0200 | [diff] [blame] | 198 | rec->in = in; |
| 199 | rec->path = path; |
| 200 | rec->format = format; |
| 201 | |
Radek Krejci | e9f13b1 | 2020-11-09 17:42:04 +0100 | [diff] [blame] | 202 | if (set && ly_set_add(set, rec, 1, NULL)) { |
| 203 | free(rec); |
Michal Vasko | 7edebb4 | 2021-01-25 14:18:46 +0100 | [diff] [blame] | 204 | YLMSG_E("Storing data file information failed.\n"); |
Radek Krejci | e9f13b1 | 2020-11-09 17:42:04 +0100 | [diff] [blame] | 205 | return NULL; |
| 206 | } |
Radek Krejci | e9f13b1 | 2020-11-09 17:42:04 +0100 | [diff] [blame] | 207 | |
| 208 | return rec; |
| 209 | } |
| 210 | |
roman | 300b878 | 2022-08-11 12:49:21 +0200 | [diff] [blame] | 211 | int |
| 212 | collect_features(const struct lys_module *mod, struct ly_set *set) |
| 213 | { |
| 214 | struct lysp_feature *f = NULL; |
| 215 | uint32_t idx = 0; |
| 216 | |
| 217 | while ((f = lysp_feature_next(f, mod->parsed, &idx))) { |
| 218 | if (ly_set_add(set, (void *)f->name, 1, NULL)) { |
| 219 | YLMSG_E("Memory allocation failed.\n"); |
| 220 | ly_set_erase(set, NULL); |
| 221 | return 1; |
| 222 | } |
| 223 | } |
| 224 | |
| 225 | return 0; |
| 226 | } |
| 227 | |
| 228 | void |
| 229 | print_features(struct ly_out *out, const struct lys_module *mod, const struct ly_set *set) |
| 230 | { |
| 231 | size_t max_len; |
| 232 | uint32_t j; |
| 233 | const char *name; |
| 234 | |
| 235 | /* header */ |
| 236 | ly_print(out, "%s:\n", mod->name); |
| 237 | |
| 238 | /* no features */ |
| 239 | if (!set->count) { |
roman | 8ce25d4 | 2022-09-14 08:43:41 +0200 | [diff] [blame] | 240 | ly_print(out, "\t(none)\n\n"); |
roman | 300b878 | 2022-08-11 12:49:21 +0200 | [diff] [blame] | 241 | return; |
| 242 | } |
| 243 | |
| 244 | /* get max len, so the statuses of all the features will be aligned */ |
| 245 | max_len = 0; |
| 246 | for (j = 0; j < set->count; ++j) { |
| 247 | name = set->objs[j]; |
| 248 | if (strlen(name) > max_len) { |
| 249 | max_len = strlen(name); |
| 250 | } |
| 251 | } |
| 252 | |
| 253 | /* print features */ |
| 254 | for (j = 0; j < set->count; ++j) { |
| 255 | name = set->objs[j]; |
| 256 | ly_print(out, "\t%-*s (%s)\n", (int)max_len, name, lys_feature_value(mod, name) ? "off" : "on"); |
| 257 | } |
| 258 | |
| 259 | ly_print(out, "\n"); |
| 260 | } |
| 261 | |
| 262 | int |
| 263 | generate_features_output(const struct lys_module *mod, const struct ly_set *set, char **features_param) |
| 264 | { |
| 265 | uint32_t j; |
| 266 | /* |
| 267 | * features_len - length of all the features in the current module |
| 268 | * added_len - length of a string to be added, = features_len + extra necessary length |
| 269 | * param_len - length of the parameter before appending new string |
| 270 | */ |
| 271 | size_t features_len, added_len, param_len; |
| 272 | char *tmp; |
| 273 | |
| 274 | features_len = 0; |
| 275 | for (j = 0; j < set->count; j++) { |
| 276 | features_len += strlen(set->objs[j]); |
| 277 | } |
| 278 | |
| 279 | if (j == 0) { |
| 280 | /* no features */ |
| 281 | added_len = strlen("-F ") + strlen(mod->name) + strlen(":"); |
| 282 | } else { |
| 283 | /* j = comma count, -1 because of trailing comma */ |
| 284 | added_len = strlen("-F ") + strlen(mod->name) + strlen(":") + features_len + j - 1; |
| 285 | } |
| 286 | |
| 287 | /* to avoid strlen(NULL) if this is the first call */ |
| 288 | param_len = 0; |
| 289 | if (*features_param) { |
| 290 | param_len = strlen(*features_param); |
| 291 | } |
| 292 | |
| 293 | /* +1 because of white space at the beginning */ |
| 294 | tmp = realloc(*features_param, param_len + added_len + 1 + 1); |
| 295 | if (!tmp) { |
| 296 | goto error; |
| 297 | } else { |
| 298 | *features_param = tmp; |
| 299 | } |
| 300 | sprintf(*features_param + param_len, " -F %s:", mod->name); |
| 301 | |
| 302 | for (j = 0; j < set->count; j++) { |
| 303 | strcat(*features_param, set->objs[j]); |
| 304 | /* no trailing comma */ |
| 305 | if (j != (set->count - 1)) { |
| 306 | strcat(*features_param, ","); |
| 307 | } |
| 308 | } |
| 309 | |
| 310 | return 0; |
| 311 | |
| 312 | error: |
| 313 | YLMSG_E("Memory allocation failed (%s:%d, %s).\n", __FILE__, __LINE__, strerror(errno)); |
| 314 | return 1; |
| 315 | } |
| 316 | |
| 317 | int |
| 318 | print_all_features(struct ly_out *out, const struct ly_ctx *ctx, ly_bool generate_features, char **features_param) |
| 319 | { |
| 320 | int ret = 0; |
| 321 | uint32_t i = 0; |
| 322 | struct lys_module *mod; |
| 323 | struct ly_set set = {0}; |
| 324 | |
| 325 | while ((mod = ly_ctx_get_module_iter(ctx, &i)) != NULL) { |
| 326 | /* only care about implemented modules */ |
| 327 | if (!mod->implemented) { |
| 328 | continue; |
| 329 | } |
| 330 | |
| 331 | /* always erase the set, so the previous module's features don't carry over to the next module's features */ |
| 332 | ly_set_erase(&set, NULL); |
| 333 | |
| 334 | if (collect_features(mod, &set)) { |
| 335 | ret = 1; |
| 336 | goto cleanup; |
| 337 | } |
| 338 | |
| 339 | if (generate_features && generate_features_output(mod, &set, features_param)) { |
| 340 | ret = 1; |
| 341 | goto cleanup; |
| 342 | } |
| 343 | print_features(out, mod, &set); |
| 344 | } |
| 345 | |
| 346 | cleanup: |
| 347 | ly_set_erase(&set, NULL); |
| 348 | return ret; |
| 349 | } |
| 350 | |
Radek Krejci | e9f13b1 | 2020-11-09 17:42:04 +0100 | [diff] [blame] | 351 | void |
| 352 | free_cmdline_file(void *cmdline_file) |
| 353 | { |
| 354 | struct cmdline_file *rec = (struct cmdline_file *)cmdline_file; |
| 355 | |
| 356 | if (rec) { |
| 357 | ly_in_free(rec->in, 1); |
| 358 | free(rec); |
| 359 | } |
| 360 | } |
| 361 | |
| 362 | void |
| 363 | free_cmdline(char *argv[]) |
| 364 | { |
| 365 | if (argv) { |
| 366 | free(argv[0]); |
| 367 | free(argv); |
| 368 | } |
| 369 | } |
| 370 | |
| 371 | int |
| 372 | parse_cmdline(const char *cmdline, int *argc_p, char **argv_p[]) |
| 373 | { |
| 374 | int count; |
| 375 | char **vector; |
| 376 | char *ptr; |
| 377 | char qmark = 0; |
| 378 | |
| 379 | assert(cmdline); |
| 380 | assert(argc_p); |
| 381 | assert(argv_p); |
| 382 | |
| 383 | /* init */ |
| 384 | optind = 0; /* reinitialize getopt() */ |
| 385 | count = 1; |
| 386 | vector = malloc((count + 1) * sizeof *vector); |
| 387 | vector[0] = strdup(cmdline); |
| 388 | |
| 389 | /* command name */ |
| 390 | strtok(vector[0], " "); |
| 391 | |
| 392 | /* arguments */ |
| 393 | while ((ptr = strtok(NULL, " "))) { |
| 394 | size_t len; |
| 395 | void *r; |
| 396 | |
| 397 | len = strlen(ptr); |
| 398 | |
| 399 | if (qmark) { |
| 400 | /* still in quotated text */ |
| 401 | /* remove NULL termination of the previous token since it is not a token, |
| 402 | * but a part of the quotation string */ |
| 403 | ptr[-1] = ' '; |
| 404 | |
| 405 | if ((ptr[len - 1] == qmark) && (ptr[len - 2] != '\\')) { |
| 406 | /* end of quotation */ |
| 407 | qmark = 0; |
| 408 | /* shorten the argument by the terminating quotation mark */ |
| 409 | ptr[len - 1] = '\0'; |
| 410 | } |
| 411 | continue; |
| 412 | } |
| 413 | |
| 414 | /* another token in cmdline */ |
| 415 | ++count; |
| 416 | r = realloc(vector, (count + 1) * sizeof *vector); |
| 417 | if (!r) { |
Michal Vasko | 9a5f3dd | 2021-11-23 08:59:53 +0100 | [diff] [blame] | 418 | YLMSG_E("Memory allocation failed (%s:%d, %s).\n", __FILE__, __LINE__, strerror(errno)); |
Radek Krejci | e9f13b1 | 2020-11-09 17:42:04 +0100 | [diff] [blame] | 419 | free(vector); |
| 420 | return -1; |
| 421 | } |
| 422 | vector = r; |
| 423 | vector[count - 1] = ptr; |
| 424 | |
| 425 | if ((ptr[0] == '"') || (ptr[0] == '\'')) { |
| 426 | /* remember the quotation mark to identify end of quotation */ |
| 427 | qmark = ptr[0]; |
| 428 | |
| 429 | /* move the remembered argument after the quotation mark */ |
| 430 | ++vector[count - 1]; |
| 431 | |
| 432 | /* check if the quotation is terminated within this token */ |
| 433 | if ((ptr[len - 1] == qmark) && (ptr[len - 2] != '\\')) { |
| 434 | /* end of quotation */ |
| 435 | qmark = 0; |
| 436 | /* shorten the argument by the terminating quotation mark */ |
| 437 | ptr[len - 1] = '\0'; |
| 438 | } |
| 439 | } |
| 440 | } |
| 441 | vector[count] = NULL; |
| 442 | |
| 443 | *argc_p = count; |
| 444 | *argv_p = vector; |
| 445 | |
| 446 | return 0; |
| 447 | } |
| 448 | |
aPiecek | ef0a339 | 2023-05-16 10:34:32 +0200 | [diff] [blame] | 449 | LYS_INFORMAT |
| 450 | get_schema_format(const char *filename) |
Radek Krejci | e9f13b1 | 2020-11-09 17:42:04 +0100 | [diff] [blame] | 451 | { |
| 452 | char *ptr; |
Radek Krejci | e9f13b1 | 2020-11-09 17:42:04 +0100 | [diff] [blame] | 453 | |
Radek Krejci | e9f13b1 | 2020-11-09 17:42:04 +0100 | [diff] [blame] | 454 | if ((ptr = strrchr(filename, '.')) != NULL) { |
| 455 | ++ptr; |
| 456 | if (!strcmp(ptr, "yang")) { |
aPiecek | ef0a339 | 2023-05-16 10:34:32 +0200 | [diff] [blame] | 457 | return LYS_IN_YANG; |
Radek Krejci | e9f13b1 | 2020-11-09 17:42:04 +0100 | [diff] [blame] | 458 | } else if (!strcmp(ptr, "yin")) { |
aPiecek | ef0a339 | 2023-05-16 10:34:32 +0200 | [diff] [blame] | 459 | return LYS_IN_YIN; |
Radek Krejci | e9f13b1 | 2020-11-09 17:42:04 +0100 | [diff] [blame] | 460 | } else { |
aPiecek | ef0a339 | 2023-05-16 10:34:32 +0200 | [diff] [blame] | 461 | return LYS_IN_UNKNOWN; |
Radek Krejci | e9f13b1 | 2020-11-09 17:42:04 +0100 | [diff] [blame] | 462 | } |
| 463 | } else { |
aPiecek | ef0a339 | 2023-05-16 10:34:32 +0200 | [diff] [blame] | 464 | return LYS_IN_UNKNOWN; |
| 465 | } |
| 466 | } |
| 467 | |
| 468 | LYD_FORMAT |
| 469 | get_data_format(const char *filename) |
| 470 | { |
| 471 | char *ptr; |
| 472 | |
| 473 | if ((ptr = strrchr(filename, '.')) != NULL) { |
| 474 | ++ptr; |
| 475 | if (!strcmp(ptr, "xml")) { |
| 476 | return LYD_XML; |
| 477 | } else if (!strcmp(ptr, "json")) { |
| 478 | return LYD_JSON; |
| 479 | } else if (!strcmp(ptr, "lyb")) { |
| 480 | return LYD_LYB; |
| 481 | } else { |
| 482 | return LYD_UNKNOWN; |
| 483 | } |
| 484 | } else { |
| 485 | return LYD_UNKNOWN; |
| 486 | } |
| 487 | } |
| 488 | |
| 489 | int |
| 490 | get_format(const char *filepath, LYS_INFORMAT *schema_form, LYD_FORMAT *data_form) |
| 491 | { |
| 492 | LYS_INFORMAT schema; |
| 493 | LYD_FORMAT data; |
| 494 | |
| 495 | schema = !schema_form || !*schema_form ? LYS_IN_UNKNOWN : *schema_form; |
| 496 | data = !data_form || !*data_form ? LYD_UNKNOWN : *data_form; |
| 497 | |
| 498 | if (!schema) { |
| 499 | schema = get_schema_format(filepath); |
| 500 | } |
| 501 | if (!data) { |
| 502 | data = get_data_format(filepath); |
Radek Krejci | e9f13b1 | 2020-11-09 17:42:04 +0100 | [diff] [blame] | 503 | } |
| 504 | |
aPiecek | ef0a339 | 2023-05-16 10:34:32 +0200 | [diff] [blame] | 505 | if (!schema && !data) { |
| 506 | YLMSG_E("Input schema format for %s file not recognized.", filepath); |
| 507 | return -1; |
| 508 | } else if (!data && !schema) { |
| 509 | YLMSG_E("Input data format for %s file not recognized.", filepath); |
| 510 | return -1; |
| 511 | } |
| 512 | assert(schema || data); |
| 513 | |
| 514 | if (schema_form) { |
| 515 | *schema_form = schema; |
| 516 | } |
| 517 | if (data_form) { |
| 518 | *data_form = data; |
Radek Krejci | e9f13b1 | 2020-11-09 17:42:04 +0100 | [diff] [blame] | 519 | } |
| 520 | |
| 521 | return 0; |
| 522 | } |
| 523 | |
| 524 | int |
| 525 | print_list(struct ly_out *out, struct ly_ctx *ctx, LYD_FORMAT outformat) |
| 526 | { |
| 527 | struct lyd_node *ylib; |
| 528 | uint32_t idx = 0, has_modules = 0; |
| 529 | const struct lys_module *mod; |
| 530 | |
| 531 | if (outformat != LYD_UNKNOWN) { |
Michal Vasko | 794ab4b | 2021-03-31 09:42:19 +0200 | [diff] [blame] | 532 | if (ly_ctx_get_yanglib_data(ctx, &ylib, "%u", ly_ctx_get_change_count(ctx))) { |
Michal Vasko | c431a0a | 2021-01-25 14:31:58 +0100 | [diff] [blame] | 533 | YLMSG_E("Getting context info (ietf-yang-library data) failed. If the YANG module is missing or not implemented, use an option to add it internally.\n"); |
Radek Krejci | e9f13b1 | 2020-11-09 17:42:04 +0100 | [diff] [blame] | 534 | return 1; |
| 535 | } |
| 536 | |
| 537 | lyd_print_all(out, ylib, outformat, 0); |
| 538 | lyd_free_all(ylib); |
| 539 | return 0; |
| 540 | } |
| 541 | |
| 542 | /* iterate schemas in context and provide just the basic info */ |
| 543 | ly_print(out, "List of the loaded models:\n"); |
| 544 | while ((mod = ly_ctx_get_module_iter(ctx, &idx))) { |
| 545 | has_modules++; |
| 546 | |
| 547 | /* conformance print */ |
| 548 | if (mod->implemented) { |
| 549 | ly_print(out, " I"); |
| 550 | } else { |
| 551 | ly_print(out, " i"); |
| 552 | } |
| 553 | |
| 554 | /* module print */ |
| 555 | ly_print(out, " %s", mod->name); |
| 556 | if (mod->revision) { |
| 557 | ly_print(out, "@%s", mod->revision); |
| 558 | } |
| 559 | |
| 560 | /* submodules print */ |
| 561 | if (mod->parsed && mod->parsed->includes) { |
| 562 | uint64_t u = 0; |
Michal Vasko | 26bbb27 | 2022-08-02 14:54:33 +0200 | [diff] [blame] | 563 | |
Radek Krejci | e9f13b1 | 2020-11-09 17:42:04 +0100 | [diff] [blame] | 564 | ly_print(out, " ("); |
| 565 | LY_ARRAY_FOR(mod->parsed->includes, u) { |
| 566 | ly_print(out, "%s%s", !u ? "" : ",", mod->parsed->includes[u].name); |
| 567 | if (mod->parsed->includes[u].rev[0]) { |
| 568 | ly_print(out, "@%s", mod->parsed->includes[u].rev); |
| 569 | } |
| 570 | } |
| 571 | ly_print(out, ")"); |
| 572 | } |
| 573 | |
| 574 | /* finish the line */ |
| 575 | ly_print(out, "\n"); |
| 576 | } |
| 577 | |
| 578 | if (!has_modules) { |
| 579 | ly_print(out, "\t(none)\n"); |
| 580 | } |
| 581 | |
| 582 | ly_print_flush(out); |
| 583 | return 0; |
| 584 | } |
| 585 | |
| 586 | int |
Radek Krejci | e9f13b1 | 2020-11-09 17:42:04 +0100 | [diff] [blame] | 587 | evaluate_xpath(const struct lyd_node *tree, const char *xpath) |
| 588 | { |
Radek Krejci | 89757c1 | 2020-11-26 12:07:47 +0100 | [diff] [blame] | 589 | struct ly_set *set = NULL; |
Radek Krejci | e9f13b1 | 2020-11-09 17:42:04 +0100 | [diff] [blame] | 590 | |
| 591 | if (lyd_find_xpath(tree, xpath, &set)) { |
| 592 | return -1; |
| 593 | } |
| 594 | |
| 595 | /* print result */ |
| 596 | printf("XPath \"%s\" evaluation result:\n", xpath); |
| 597 | if (!set->count) { |
| 598 | printf("\tEmpty\n"); |
| 599 | } else { |
| 600 | for (uint32_t u = 0; u < set->count; ++u) { |
| 601 | struct lyd_node *node = (struct lyd_node *)set->objs[u]; |
Michal Vasko | 26bbb27 | 2022-08-02 14:54:33 +0200 | [diff] [blame] | 602 | |
Radek Krejci | e9f13b1 | 2020-11-09 17:42:04 +0100 | [diff] [blame] | 603 | printf(" %s \"%s\"", lys_nodetype2str(node->schema->nodetype), node->schema->name); |
| 604 | if (node->schema->nodetype & (LYS_LEAF | LYS_LEAFLIST)) { |
Radek Krejci | 6d5ba0c | 2021-04-26 07:49:59 +0200 | [diff] [blame] | 605 | printf(" (value: \"%s\")\n", lyd_get_value(node)); |
Radek Krejci | e9f13b1 | 2020-11-09 17:42:04 +0100 | [diff] [blame] | 606 | } else if (node->schema->nodetype == LYS_LIST) { |
| 607 | printf(" ("); |
| 608 | for (struct lyd_node *key = ((struct lyd_node_inner *)node)->child; key && lysc_is_key(key->schema); key = key->next) { |
| 609 | printf("%s\"%s\": \"%s\";", (key != ((struct lyd_node_inner *)node)->child) ? " " : "", |
Radek Krejci | 6d5ba0c | 2021-04-26 07:49:59 +0200 | [diff] [blame] | 610 | key->schema->name, lyd_get_value(key)); |
Radek Krejci | e9f13b1 | 2020-11-09 17:42:04 +0100 | [diff] [blame] | 611 | } |
| 612 | printf(")\n"); |
aPiecek | 1ad408a | 2023-04-12 10:45:23 +0200 | [diff] [blame] | 613 | } else { |
| 614 | printf("\n"); |
Radek Krejci | e9f13b1 | 2020-11-09 17:42:04 +0100 | [diff] [blame] | 615 | } |
| 616 | } |
| 617 | } |
| 618 | |
| 619 | ly_set_free(set, NULL); |
| 620 | return 0; |
| 621 | } |
| 622 | |
aPiecek | f9b5981 | 2023-04-27 14:40:38 +0200 | [diff] [blame] | 623 | /** |
| 624 | * @brief Checking that a parent data node exists in the datastore for the nested-notification and action. |
| 625 | * |
| 626 | * @param[in] op Operation to check. |
| 627 | * @param[in] oper_tree Data from datastore. |
| 628 | * @param[in] operational_f Operational datastore file information. |
| 629 | * @return LY_ERR value. |
| 630 | */ |
| 631 | static LY_ERR |
| 632 | check_operation_parent(struct lyd_node *op, struct lyd_node *oper_tree, struct cmdline_file *operational_f) |
| 633 | { |
| 634 | LY_ERR ret; |
| 635 | struct ly_set *set = NULL; |
| 636 | char *path = NULL; |
| 637 | |
| 638 | if (!op || !lyd_parent(op)) { |
| 639 | /* The function is defined only for nested-notification and action. */ |
| 640 | return LY_SUCCESS; |
| 641 | } |
| 642 | |
| 643 | if (!operational_f || (operational_f && !operational_f->in)) { |
| 644 | YLMSG_E("The --operational parameter needed to validate operation \"%s\" is missing.\n", LYD_NAME(op)); |
| 645 | ret = LY_EVALID; |
| 646 | goto cleanup; |
| 647 | } |
| 648 | |
| 649 | path = lyd_path(lyd_parent(op), LYD_PATH_STD, NULL, 0); |
| 650 | if (!path) { |
| 651 | ret = LY_EMEM; |
| 652 | goto cleanup; |
| 653 | } |
| 654 | |
| 655 | if (!oper_tree) { |
| 656 | YLMSG_W("Operational datastore is empty or contains unknown data.\n"); |
| 657 | YLMSG_E("Operation \"%s\" parent \"%s\" not found in the operational data.\n", LYD_NAME(op), path); |
| 658 | ret = LY_EVALID; |
| 659 | goto cleanup; |
| 660 | } |
| 661 | if ((ret = lyd_find_xpath(oper_tree, path, &set))) { |
| 662 | goto cleanup; |
| 663 | } |
| 664 | if (!set->count) { |
| 665 | YLMSG_E("Operation \"%s\" parent \"%s\" not found in the operational data.\n", LYD_NAME(op), path); |
| 666 | ret = LY_EVALID; |
| 667 | goto cleanup; |
| 668 | } |
| 669 | |
| 670 | cleanup: |
| 671 | ly_set_free(set, NULL); |
| 672 | free(path); |
| 673 | |
| 674 | return ret; |
| 675 | } |
| 676 | |
Radek Krejci | e9f13b1 | 2020-11-09 17:42:04 +0100 | [diff] [blame] | 677 | LY_ERR |
Michal Vasko | e066574 | 2021-02-11 11:08:44 +0100 | [diff] [blame] | 678 | process_data(struct ly_ctx *ctx, enum lyd_type data_type, uint8_t merge, LYD_FORMAT format, struct ly_out *out, |
Michal Vasko | 3f08fb9 | 2022-04-21 09:52:35 +0200 | [diff] [blame] | 679 | uint32_t options_parse, uint32_t options_validate, uint32_t options_print, struct cmdline_file *operational_f, |
| 680 | struct cmdline_file *rpc_f, struct ly_set *inputs, struct ly_set *xpaths) |
Radek Krejci | e9f13b1 | 2020-11-09 17:42:04 +0100 | [diff] [blame] | 681 | { |
Radek Krejci | 89757c1 | 2020-11-26 12:07:47 +0100 | [diff] [blame] | 682 | LY_ERR ret = LY_SUCCESS; |
Michal Vasko | ff141b0 | 2022-05-02 09:22:36 +0200 | [diff] [blame] | 683 | struct lyd_node *tree = NULL, *op = NULL, *envp = NULL, *merged_tree = NULL, *oper_tree = NULL; |
aPiecek | a549c50 | 2023-04-12 11:28:31 +0200 | [diff] [blame] | 684 | const char *xpath; |
Michal Vasko | 9e81ce5 | 2022-04-29 10:16:21 +0200 | [diff] [blame] | 685 | struct ly_set *set = NULL; |
Radek Krejci | e9f13b1 | 2020-11-09 17:42:04 +0100 | [diff] [blame] | 686 | |
| 687 | /* additional operational datastore */ |
| 688 | if (operational_f && operational_f->in) { |
Michal Vasko | 3f08fb9 | 2022-04-21 09:52:35 +0200 | [diff] [blame] | 689 | ret = lyd_parse_data(ctx, NULL, operational_f->in, operational_f->format, LYD_PARSE_ONLY, 0, &oper_tree); |
Radek Krejci | e9f13b1 | 2020-11-09 17:42:04 +0100 | [diff] [blame] | 690 | if (ret) { |
| 691 | YLMSG_E("Failed to parse operational datastore file \"%s\".\n", operational_f->path); |
| 692 | goto cleanup; |
| 693 | } |
| 694 | } |
| 695 | |
| 696 | for (uint32_t u = 0; u < inputs->count; ++u) { |
| 697 | struct cmdline_file *input_f = (struct cmdline_file *)inputs->objs[u]; |
Michal Vasko | 26bbb27 | 2022-08-02 14:54:33 +0200 | [diff] [blame] | 698 | |
Radek Krejci | e9f13b1 | 2020-11-09 17:42:04 +0100 | [diff] [blame] | 699 | switch (data_type) { |
Michal Vasko | 1e4c68e | 2021-02-18 15:03:01 +0100 | [diff] [blame] | 700 | case LYD_TYPE_DATA_YANG: |
Michal Vasko | e066574 | 2021-02-11 11:08:44 +0100 | [diff] [blame] | 701 | ret = lyd_parse_data(ctx, NULL, input_f->in, input_f->format, options_parse, options_validate, &tree); |
Radek Krejci | e9f13b1 | 2020-11-09 17:42:04 +0100 | [diff] [blame] | 702 | break; |
Michal Vasko | 1e4c68e | 2021-02-18 15:03:01 +0100 | [diff] [blame] | 703 | case LYD_TYPE_RPC_YANG: |
| 704 | case LYD_TYPE_REPLY_YANG: |
| 705 | case LYD_TYPE_NOTIF_YANG: |
Michal Vasko | ff141b0 | 2022-05-02 09:22:36 +0200 | [diff] [blame] | 706 | ret = lyd_parse_op(ctx, NULL, input_f->in, input_f->format, data_type, &tree, &op); |
Radek Krejci | e9f13b1 | 2020-11-09 17:42:04 +0100 | [diff] [blame] | 707 | break; |
Michal Vasko | 3f08fb9 | 2022-04-21 09:52:35 +0200 | [diff] [blame] | 708 | case LYD_TYPE_RPC_NETCONF: |
| 709 | case LYD_TYPE_NOTIF_NETCONF: |
Michal Vasko | ff141b0 | 2022-05-02 09:22:36 +0200 | [diff] [blame] | 710 | ret = lyd_parse_op(ctx, NULL, input_f->in, input_f->format, data_type, &envp, &op); |
| 711 | |
| 712 | /* adjust pointers */ |
| 713 | for (tree = op; lyd_parent(tree); tree = lyd_parent(tree)) {} |
Michal Vasko | 3f08fb9 | 2022-04-21 09:52:35 +0200 | [diff] [blame] | 714 | break; |
| 715 | case LYD_TYPE_REPLY_NETCONF: |
| 716 | /* parse source RPC operation */ |
| 717 | assert(rpc_f && rpc_f->in); |
Michal Vasko | ff141b0 | 2022-05-02 09:22:36 +0200 | [diff] [blame] | 718 | ret = lyd_parse_op(ctx, NULL, rpc_f->in, rpc_f->format, LYD_TYPE_RPC_NETCONF, &envp, &op); |
Michal Vasko | 3f08fb9 | 2022-04-21 09:52:35 +0200 | [diff] [blame] | 719 | if (ret) { |
| 720 | YLMSG_E("Failed to parse source NETCONF RPC operation file \"%s\".\n", rpc_f->path); |
| 721 | goto cleanup; |
| 722 | } |
| 723 | |
Michal Vasko | ff141b0 | 2022-05-02 09:22:36 +0200 | [diff] [blame] | 724 | /* adjust pointers */ |
| 725 | for (tree = op; lyd_parent(tree); tree = lyd_parent(tree)) {} |
| 726 | |
Michal Vasko | 3f08fb9 | 2022-04-21 09:52:35 +0200 | [diff] [blame] | 727 | /* free input */ |
Michal Vasko | ff141b0 | 2022-05-02 09:22:36 +0200 | [diff] [blame] | 728 | lyd_free_siblings(lyd_child(op)); |
Michal Vasko | 3f08fb9 | 2022-04-21 09:52:35 +0200 | [diff] [blame] | 729 | |
| 730 | /* we do not care */ |
| 731 | lyd_free_all(envp); |
| 732 | envp = NULL; |
| 733 | |
Michal Vasko | ff141b0 | 2022-05-02 09:22:36 +0200 | [diff] [blame] | 734 | ret = lyd_parse_op(ctx, op, input_f->in, input_f->format, data_type, &envp, NULL); |
Michal Vasko | 3f08fb9 | 2022-04-21 09:52:35 +0200 | [diff] [blame] | 735 | break; |
Radek Krejci | 89757c1 | 2020-11-26 12:07:47 +0100 | [diff] [blame] | 736 | default: |
| 737 | YLMSG_E("Internal error (%s:%d).\n", __FILE__, __LINE__); |
| 738 | goto cleanup; |
Radek Krejci | e9f13b1 | 2020-11-09 17:42:04 +0100 | [diff] [blame] | 739 | } |
| 740 | |
| 741 | if (ret) { |
| 742 | YLMSG_E("Failed to parse input data file \"%s\".\n", input_f->path); |
| 743 | goto cleanup; |
| 744 | } |
| 745 | |
| 746 | if (merge) { |
| 747 | /* merge the data so far parsed for later validation and print */ |
| 748 | if (!merged_tree) { |
| 749 | merged_tree = tree; |
| 750 | } else { |
| 751 | ret = lyd_merge_siblings(&merged_tree, tree, LYD_MERGE_DESTRUCT); |
| 752 | if (ret) { |
| 753 | YLMSG_E("Merging %s with previous data failed.\n", input_f->path); |
| 754 | goto cleanup; |
| 755 | } |
| 756 | } |
| 757 | tree = NULL; |
| 758 | } else if (format) { |
Michal Vasko | 3f08fb9 | 2022-04-21 09:52:35 +0200 | [diff] [blame] | 759 | /* print */ |
| 760 | switch (data_type) { |
| 761 | case LYD_TYPE_DATA_YANG: |
| 762 | lyd_print_all(out, tree, format, options_print); |
| 763 | break; |
| 764 | case LYD_TYPE_RPC_YANG: |
| 765 | case LYD_TYPE_REPLY_YANG: |
| 766 | case LYD_TYPE_NOTIF_YANG: |
| 767 | case LYD_TYPE_RPC_NETCONF: |
| 768 | case LYD_TYPE_NOTIF_NETCONF: |
| 769 | lyd_print_tree(out, tree, format, options_print); |
| 770 | break; |
| 771 | case LYD_TYPE_REPLY_NETCONF: |
| 772 | /* just the output */ |
| 773 | lyd_print_tree(out, lyd_child(tree), format, options_print); |
| 774 | break; |
| 775 | default: |
| 776 | assert(0); |
| 777 | } |
Michal Vasko | 0bec322 | 2022-04-22 07:46:00 +0200 | [diff] [blame] | 778 | } else { |
| 779 | /* validation of the RPC/Action/reply/Notification with the operational datastore, if any */ |
| 780 | switch (data_type) { |
| 781 | case LYD_TYPE_DATA_YANG: |
| 782 | /* already validated */ |
| 783 | break; |
| 784 | case LYD_TYPE_RPC_YANG: |
| 785 | case LYD_TYPE_RPC_NETCONF: |
| 786 | ret = lyd_validate_op(tree, oper_tree, LYD_TYPE_RPC_YANG, NULL); |
| 787 | break; |
| 788 | case LYD_TYPE_REPLY_YANG: |
| 789 | case LYD_TYPE_REPLY_NETCONF: |
| 790 | ret = lyd_validate_op(tree, oper_tree, LYD_TYPE_REPLY_YANG, NULL); |
| 791 | break; |
| 792 | case LYD_TYPE_NOTIF_YANG: |
| 793 | case LYD_TYPE_NOTIF_NETCONF: |
| 794 | ret = lyd_validate_op(tree, oper_tree, LYD_TYPE_NOTIF_YANG, NULL); |
| 795 | break; |
| 796 | default: |
| 797 | assert(0); |
| 798 | } |
Radek Krejci | e9f13b1 | 2020-11-09 17:42:04 +0100 | [diff] [blame] | 799 | if (ret) { |
Michal Vasko | 0bec322 | 2022-04-22 07:46:00 +0200 | [diff] [blame] | 800 | if (operational_f->path) { |
| 801 | YLMSG_E("Failed to validate input data file \"%s\" with operational datastore \"%s\".\n", |
| 802 | input_f->path, operational_f->path); |
| 803 | } else { |
| 804 | YLMSG_E("Failed to validate input data file \"%s\".\n", input_f->path); |
| 805 | } |
Radek Krejci | e9f13b1 | 2020-11-09 17:42:04 +0100 | [diff] [blame] | 806 | goto cleanup; |
| 807 | } |
Michal Vasko | 9e81ce5 | 2022-04-29 10:16:21 +0200 | [diff] [blame] | 808 | |
aPiecek | f9b5981 | 2023-04-27 14:40:38 +0200 | [diff] [blame] | 809 | if ((ret = check_operation_parent(op, oper_tree, operational_f))) { |
| 810 | goto cleanup; |
Michal Vasko | 9e81ce5 | 2022-04-29 10:16:21 +0200 | [diff] [blame] | 811 | } |
Radek Krejci | e9f13b1 | 2020-11-09 17:42:04 +0100 | [diff] [blame] | 812 | } |
Michal Vasko | 3f08fb9 | 2022-04-21 09:52:35 +0200 | [diff] [blame] | 813 | |
| 814 | /* next iter */ |
Radek Krejci | e9f13b1 | 2020-11-09 17:42:04 +0100 | [diff] [blame] | 815 | lyd_free_all(tree); |
| 816 | tree = NULL; |
Michal Vasko | 3f08fb9 | 2022-04-21 09:52:35 +0200 | [diff] [blame] | 817 | lyd_free_all(envp); |
| 818 | envp = NULL; |
Radek Krejci | e9f13b1 | 2020-11-09 17:42:04 +0100 | [diff] [blame] | 819 | } |
| 820 | |
| 821 | if (merge) { |
| 822 | /* validate the merged result */ |
aPiecek | 65de6d1 | 2023-04-05 13:38:53 +0200 | [diff] [blame] | 823 | ret = lyd_validate_all(&merged_tree, ctx, options_validate, NULL); |
Radek Krejci | e9f13b1 | 2020-11-09 17:42:04 +0100 | [diff] [blame] | 824 | if (ret) { |
| 825 | YLMSG_E("Merged data are not valid.\n"); |
| 826 | goto cleanup; |
| 827 | } |
| 828 | |
| 829 | if (format) { |
| 830 | /* and print it */ |
| 831 | lyd_print_all(out, merged_tree, format, options_print); |
| 832 | } |
| 833 | |
Michal Vasko | f8e71f7 | 2022-03-29 12:12:58 +0200 | [diff] [blame] | 834 | for (uint32_t u = 0; xpaths && (u < xpaths->count); ++u) { |
aPiecek | a549c50 | 2023-04-12 11:28:31 +0200 | [diff] [blame] | 835 | xpath = (const char *)xpaths->objs[u]; |
| 836 | ly_set_free(set, NULL); |
| 837 | ret = lys_find_xpath(ctx, NULL, xpath, LYS_FIND_NO_MATCH_ERROR, &set); |
| 838 | if (ret || !set->count) { |
| 839 | ret = (ret == LY_SUCCESS) ? LY_EINVAL : ret; |
| 840 | YLMSG_E("The requested xpath failed.\n"); |
| 841 | goto cleanup; |
| 842 | } |
| 843 | if (evaluate_xpath(merged_tree, xpath)) { |
Radek Krejci | e9f13b1 | 2020-11-09 17:42:04 +0100 | [diff] [blame] | 844 | goto cleanup; |
| 845 | } |
| 846 | } |
| 847 | } |
| 848 | |
| 849 | cleanup: |
Radek Krejci | e9f13b1 | 2020-11-09 17:42:04 +0100 | [diff] [blame] | 850 | lyd_free_all(tree); |
Michal Vasko | 3f08fb9 | 2022-04-21 09:52:35 +0200 | [diff] [blame] | 851 | lyd_free_all(envp); |
Michal Vasko | e1f495b | 2022-04-20 08:32:41 +0200 | [diff] [blame] | 852 | lyd_free_all(merged_tree); |
Michal Vasko | 3f08fb9 | 2022-04-21 09:52:35 +0200 | [diff] [blame] | 853 | lyd_free_all(oper_tree); |
Michal Vasko | 9e81ce5 | 2022-04-29 10:16:21 +0200 | [diff] [blame] | 854 | ly_set_free(set, NULL); |
Radek Krejci | e9f13b1 | 2020-11-09 17:42:04 +0100 | [diff] [blame] | 855 | return ret; |
| 856 | } |
roman | f00089c | 2022-10-06 16:01:31 +0200 | [diff] [blame] | 857 | |
| 858 | const struct lysc_node * |
| 859 | find_schema_path(const struct ly_ctx *ctx, const char *schema_path) |
| 860 | { |
| 861 | const char *end, *module_name_end; |
| 862 | char *module_name = NULL; |
Michal Vasko | b10c93b | 2022-12-14 12:16:27 +0100 | [diff] [blame] | 863 | const struct lysc_node *node = NULL, *parent_node = NULL, *parent_node_tmp = NULL; |
roman | f00089c | 2022-10-06 16:01:31 +0200 | [diff] [blame] | 864 | const struct lys_module *module; |
| 865 | size_t node_name_len; |
| 866 | ly_bool found_exact_match = 0; |
| 867 | |
| 868 | /* iterate over each '/' in the path */ |
| 869 | while (schema_path) { |
| 870 | /* example: schema_path = /listen/endpoint |
| 871 | * end == NULL for endpoint, end exists for listen */ |
| 872 | end = strchr(schema_path + 1, '/'); |
| 873 | if (end) { |
| 874 | node_name_len = end - schema_path - 1; |
| 875 | } else { |
| 876 | node_name_len = strlen(schema_path + 1); |
| 877 | } |
| 878 | |
| 879 | /* ex: schema_path = /ietf-interfaces:interfaces/interface/ietf-ip:ipv4 */ |
| 880 | module_name_end = strchr(schema_path, ':'); |
roman | ba1421b | 2022-10-07 11:02:36 +0200 | [diff] [blame] | 881 | if (module_name_end && (!end || (module_name_end < end))) { |
| 882 | /* only get module's name, if it is in the current scope */ |
| 883 | free(module_name); |
| 884 | /* - 1 because module_name_end points to ':' */ |
| 885 | module_name = strndup(schema_path + 1, module_name_end - schema_path - 1); |
| 886 | if (!module_name) { |
| 887 | YLMSG_E("Memory allocation failed (%s:%d, %s)", __FILE__, __LINE__, strerror(errno)); |
| 888 | parent_node = NULL; |
| 889 | goto cleanup; |
roman | f00089c | 2022-10-06 16:01:31 +0200 | [diff] [blame] | 890 | } |
roman | ba1421b | 2022-10-07 11:02:36 +0200 | [diff] [blame] | 891 | /* move the pointer to the beginning of the node's name - 1 */ |
| 892 | schema_path = module_name_end; |
roman | f00089c | 2022-10-06 16:01:31 +0200 | [diff] [blame] | 893 | |
roman | ba1421b | 2022-10-07 11:02:36 +0200 | [diff] [blame] | 894 | /* recalculate the length of the node's name, because the module prefix mustn't be compared later */ |
roman | f00089c | 2022-10-06 16:01:31 +0200 | [diff] [blame] | 895 | if (module_name_end < end) { |
roman | ba1421b | 2022-10-07 11:02:36 +0200 | [diff] [blame] | 896 | node_name_len = end - module_name_end - 1; |
| 897 | } else if (!end) { |
| 898 | node_name_len = strlen(module_name_end + 1); |
roman | f00089c | 2022-10-06 16:01:31 +0200 | [diff] [blame] | 899 | } |
| 900 | } |
| 901 | |
| 902 | module = ly_ctx_get_module_implemented(ctx, module_name); |
| 903 | if (!module) { |
| 904 | /* unknown module name */ |
| 905 | parent_node = NULL; |
| 906 | goto cleanup; |
| 907 | } |
| 908 | |
| 909 | /* iterate over the node's siblings / module's top level containers */ |
| 910 | while ((node = lys_getnext(node, parent_node, module->compiled, LYS_GETNEXT_WITHCASE | LYS_GETNEXT_WITHCHOICE))) { |
| 911 | if (end && !strncmp(node->name, schema_path + 1, node_name_len) && (node->name[node_name_len] == '\0')) { |
| 912 | /* check if the whole node's name matches and it's not just a common prefix */ |
| 913 | parent_node = node; |
| 914 | break; |
| 915 | } else if (!strncmp(node->name, schema_path + 1, node_name_len)) { |
| 916 | /* do the same here, however if there is no exact match, use the last node with the same prefix */ |
| 917 | if (strlen(node->name) == node_name_len) { |
| 918 | parent_node = node; |
| 919 | found_exact_match = 1; |
| 920 | break; |
| 921 | } else { |
| 922 | parent_node_tmp = node; |
| 923 | } |
| 924 | } |
| 925 | } |
| 926 | |
| 927 | if (!end && !found_exact_match) { |
| 928 | /* no exact match */ |
| 929 | parent_node = parent_node_tmp; |
| 930 | } |
| 931 | found_exact_match = 0; |
| 932 | |
| 933 | /* next iter */ |
| 934 | schema_path = strchr(schema_path + 1, '/'); |
| 935 | } |
| 936 | |
| 937 | cleanup: |
| 938 | free(module_name); |
| 939 | return parent_node; |
| 940 | } |
aPiecek | 647f62e | 2023-05-18 10:55:58 +0200 | [diff] [blame] | 941 | |
| 942 | LY_ERR |
| 943 | ext_data_clb(const struct lysc_ext_instance *ext, void *user_data, void **ext_data, ly_bool *ext_data_free) |
| 944 | { |
| 945 | struct ly_ctx *ctx; |
| 946 | struct lyd_node *data = NULL; |
| 947 | |
| 948 | ctx = ext->module->ctx; |
| 949 | if (user_data) { |
| 950 | lyd_parse_data_path(ctx, user_data, LYD_XML, LYD_PARSE_STRICT, LYD_VALIDATE_PRESENT, &data); |
| 951 | } |
| 952 | |
| 953 | *ext_data = data; |
| 954 | *ext_data_free = 1; |
| 955 | return LY_SUCCESS; |
| 956 | } |
aPiecek | 21c1bc8 | 2023-05-18 15:38:31 +0200 | [diff] [blame^] | 957 | |
| 958 | LY_ERR |
| 959 | searchpath_strcat(char **searchpaths, const char *path) |
| 960 | { |
| 961 | uint64_t len; |
| 962 | char *new; |
| 963 | |
| 964 | if (!(*searchpaths)) { |
| 965 | *searchpaths = strdup(path); |
| 966 | return LY_SUCCESS; |
| 967 | } |
| 968 | |
| 969 | len = strlen(*searchpaths) + strlen(path) + strlen(PATH_SEPARATOR); |
| 970 | new = realloc(*searchpaths, sizeof(char) * len + 1); |
| 971 | if (!new) { |
| 972 | return LY_EMEM; |
| 973 | } |
| 974 | strcat(new, PATH_SEPARATOR); |
| 975 | strcat(new, path); |
| 976 | *searchpaths = new; |
| 977 | |
| 978 | return LY_SUCCESS; |
| 979 | } |