blob: 67c0e537e90b8aff2b4f837c6be1a5eb28354aa0 [file] [log] [blame]
Radek Krejcied5acc52019-04-25 15:57:04 +02001/**
2 * @file commands.c
3 * @author Michal Vasko <mvasko@cesnet.cz>
4 * @brief libyang's yanglint tool commands
5 *
6 * Copyright (c) 2015 CESNET, z.s.p.o.
7 *
8 * This source code is licensed under BSD 3-Clause License (the "License").
9 * You may not use this file except in compliance with the License.
10 * You may obtain a copy of the License at
11 *
12 * https://opensource.org/licenses/BSD-3-Clause
13 */
14
15#include "config.h"
16
17#include <string.h>
18#include <stdio.h>
19#include <errno.h>
20#include <ctype.h>
21#include <assert.h>
22#include <sys/types.h>
23#include <sys/stat.h>
24#include <unistd.h>
25#include <getopt.h>
26#include <libgen.h>
27
28#include "commands.h"
29#include "libyang.h"
30
31COMMAND commands[];
32extern int done;
33extern struct ly_ctx *ctx;
34
35void
36cmd_add_help(void)
37{
38 printf("add [-i] <path-to-model> [<paths-to-other-models> ...]\n");
39 printf("\t-i - make all the imported modules implemented\n");
40}
41
42void
43cmd_load_help(void)
44{
45 printf("load [-i] <model-name> [<other-model-names> ...]\n");
46 printf("\t-i - make all the imported modules implemented\n");
47}
48
49void
50cmd_clear_help(void)
51{
52 printf("clear [<yang-library> | -e]\n");
53 printf("\t Replace the current context with an empty one, searchpaths are not kept.\n");
54 printf("\t If <yang-library> path specified, load the modules according to the yang library data.\n");
55 printf("\t Option '-e' causes ietf-yang-library will not be loaded.\n");
56}
57
58void
59cmd_print_help(void)
60{
61 printf("print [-f (yang | yin | tree [<tree-options>] | info [-P <info-path>] | jsons)] [-o <output-file>]"
62 " <model-name>[@<revision>]\n");
63 printf("\n");
64 printf("\ttree-options:\t--tree-print-groupings\t(print top-level groupings in a separate section)\n");
65 printf("\t \t--tree-print-uses\t(print uses nodes instead the resolved grouping nodes)\n");
66 printf("\t \t--tree-no-leafref-target\t(do not print the target nodes of leafrefs)\n");
67 printf("\t \t--tree-path <schema-path>\t(print only the specified subtree)\n");
68 printf("\t \t--tree-line-length <line-length>\t(wrap lines if longer than line-length,\n");
69 printf("\t \t\tnot a strict limit, longer lines can often appear)\n");
70 printf("\n");
71 printf("\tinfo-path:\t<schema-path> | typedef[<schema-path>]/<typedef-name> |\n");
72 printf("\t \t| identity/<identity-name> | feature/<feature-name> |\n");
73 printf("\t \t| grouping[<schema-path>]/<grouping-name> |\n");
74 printf("\t \t| type/<schema-path-leaf-or-leaflist>\n");
75 printf("\n");
76 printf("\tschema-path:\t( /<module-name>:<node-identifier> )+\n");
77}
78
79void
80cmd_data_help(void)
81{
82 printf("data [-(-s)trict] [-t TYPE] [-d DEFAULTS] [-o <output-file>] [-f (xml | json | lyb)] [-r <running-file-name>]\n");
83 printf(" <data-file-name> [<RPC/action-data-file-name> | <yang-data name>]\n\n");
84 printf("Accepted TYPEs:\n");
85 printf("\tauto - resolve data type (one of the following) automatically (as pyang does),\n");
86 printf("\t this option is applicable only in case of XML input data.\n");
87 printf("\tdata - LYD_OPT_DATA (default value) - complete datastore including status data.\n");
88 printf("\tconfig - LYD_OPT_CONFIG - complete configuration datastore.\n");
89 printf("\tget - LYD_OPT_GET - <get> operation result.\n");
90 printf("\tgetconfig - LYD_OPT_GETCONFIG - <get-config> operation result.\n");
91 printf("\tedit - LYD_OPT_EDIT - <edit-config>'s data (content of its <config> element).\n");
92 printf("\trpc - LYD_OPT_RPC - NETCONF RPC message.\n");
93 printf("\trpcreply - LYD_OPT_RPCREPLY (last parameter mandatory in this case)\n");
94 printf("\tnotif - LYD_OPT_NOTIF - NETCONF Notification message.\n");
95 printf("\tyangdata - LYD_OPT_DATA_TEMPLATE - yang-data extension (last parameter mandatory in this case)\n\n");
96 printf("Accepted DEFAULTS:\n");
97 printf("\tall - add missing default nodes\n");
98 printf("\tall-tagged - add missing default nodes and mark all the default nodes with the attribute.\n");
99 printf("\ttrim - remove all nodes with a default value\n");
100 printf("\timplicit-tagged - add missing nodes and mark them with the attribute\n\n");
101 printf("Option -r:\n");
102 printf("\tOptional parameter for 'rpc', 'rpcreply' and 'notif' TYPEs, the file contains running\n");
103 printf("\tconfiguration datastore data referenced from the RPC/Notification. Note that the file is\n");
104 printf("\tvalidated as 'data' TYPE. Special value '!' can be used as argument to ignore the\n");
105 printf("\texternal references.\n\n");
106 printf("\tIf an XPath expression (when/must) needs access to configuration data, you can provide\n");
107 printf("\tthem in a file, which will be parsed as 'data' TYPE.\n\n");
108}
109
110void
111cmd_xpath_help(void)
112{
113 printf("xpath [-t TYPE] [-x <additional-tree-file-name>] -e <XPath-expression>\n"
114 " <XML-data-file-name> [<JSON-rpc/action-schema-nodeid>]\n");
115 printf("Accepted TYPEs:\n");
116 printf("\tauto - resolve data type (one of the following) automatically (as pyang does),\n");
117 printf("\t this option is applicable only in case of XML input data.\n");
118 printf("\tconfig - LYD_OPT_CONFIG\n");
119 printf("\tget - LYD_OPT_GET\n");
120 printf("\tgetconfig - LYD_OPT_GETCONFIG\n");
121 printf("\tedit - LYD_OPT_EDIT\n");
122 printf("\trpc - LYD_OPT_RPC\n");
123 printf("\trpcreply - LYD_OPT_RPCREPLY (last parameter mandatory in this case)\n");
124 printf("\tnotif - LYD_OPT_NOTIF\n\n");
125 printf("Option -x:\n");
126 printf("\tIf RPC/action/notification/RPC reply (for TYPEs 'rpc', 'rpcreply', and 'notif') includes\n");
127 printf("\tan XPath expression (when/must) that needs access to the configuration data, you can provide\n");
128 printf("\tthem in a file, which will be parsed as 'config'.\n");
129}
130
131void
132cmd_list_help(void)
133{
134 printf("list [-f (xml | json)]\n\n");
135 printf("\tBasic list output (no -f): i - imported module, I - implemented module\n");
136}
137
138void
139cmd_feature_help(void)
140{
141 printf("feature [ -(-e)nable | -(-d)isable (* | <feature-name>[,<feature-name> ...]) ] <model-name>[@<revision>]\n");
142}
143
144void
145cmd_searchpath_help(void)
146{
147 printf("searchpath [<model-dir-path> | --clear]\n\n");
148 printf("\tThey are used to search for imports and includes of a model.\n");
149 printf("\tThe \"load\" command uses these directories to find models directly.\n");
150}
151
152void
153cmd_verb_help(void)
154{
155 printf("verb (error/0 | warning/1 | verbose/2 | debug/3)\n");
156}
157
158#ifndef NDEBUG
159
160void
161cmd_debug_help(void)
162{
163 printf("debug (dict | yang | yin | xpath | diff)+\n");
164}
165
166#endif
167
168LYS_INFORMAT
169get_schema_format(const char *path)
170{
171 char *ptr;
172
173 if ((ptr = strrchr(path, '.')) != NULL) {
174 ++ptr;
175 if (!strcmp(ptr, "yang")) {
176 return LYS_IN_YANG;
Radek Krejcied5acc52019-04-25 15:57:04 +0200177 } else if (!strcmp(ptr, "yin")) {
178 return LYS_IN_YIN;
Radek Krejcied5acc52019-04-25 15:57:04 +0200179 } else {
180 fprintf(stderr, "Input file in an unknown format \"%s\".\n", ptr);
181 return LYS_IN_UNKNOWN;
182 }
183 } else {
184 fprintf(stdout, "Input file \"%s\" without extension - unknown format.\n", path);
185 return LYS_IN_UNKNOWN;
186 }
187}
188
189int
190cmd_add(const char *arg)
191{
192 int path_len, ret = 1, index = 0;
193 char *path, *dir, *s, *arg_ptr;
194 const char * const *searchpaths;
195 const struct lys_module *model;
196 LYS_INFORMAT format = LYS_IN_UNKNOWN;
197
198 if (strlen(arg) < 5) {
199 cmd_add_help();
200 return 1;
201 }
202
203 arg_ptr = strdup(arg + 3 /* ignore "add" */);
204
205 for (s = strstr(arg_ptr, "-i"); s ; s = strstr(s + 2, "-i")) {
206 if (s[2] == '\0' || s[2] == ' ') {
Radek Krejci3fa46b62019-09-11 10:47:30 +0200207 ly_ctx_set_options(ctx, LY_CTX_ALLIMPLEMENTED);
Radek Krejcied5acc52019-04-25 15:57:04 +0200208 s[0] = s[1] = ' ';
209 }
210 }
211 s = arg_ptr;
212
213 while (arg_ptr[0] == ' ') {
214 ++arg_ptr;
215 }
216 if (strchr(arg_ptr, ' ')) {
217 path_len = strchr(arg_ptr, ' ') - arg_ptr;
218 } else {
219 path_len = strlen(arg_ptr);
220 }
221 path = strndup(arg_ptr, path_len);
222
223 searchpaths = ly_ctx_get_searchdirs(ctx);
224 if (searchpaths) {
225 for (index = 0; searchpaths[index]; index++);
226 }
227
228 while (path) {
229 format = get_schema_format(path);
230 if (format == LYS_IN_UNKNOWN) {
231 free(path);
232 goto cleanup;
233 }
234
235 dir = strdup(path);
236 ly_ctx_set_searchdir(ctx, dirname(dir));
237 model = lys_parse_path(ctx, path, format);
238 ly_ctx_unset_searchdir(ctx, index);
239 free(path);
240 free(dir);
241
242 if (!model) {
243 /* libyang printed the error messages */
244 goto cleanup;
245 }
246
247 /* next model */
248 arg_ptr += path_len;
249 while (arg_ptr[0] == ' ') {
250 ++arg_ptr;
251 }
252 if (strchr(arg_ptr, ' ')) {
253 path_len = strchr(arg_ptr, ' ') - arg_ptr;
254 } else {
255 path_len = strlen(arg_ptr);
256 }
257
258 if (path_len) {
259 path = strndup(arg_ptr, path_len);
260 } else {
261 path = NULL;
262 }
263 }
264 if (format == LYS_IN_UNKNOWN) {
265 /* no schema on input */
266 cmd_add_help();
267 goto cleanup;
268 }
269 ret = 0;
270
271cleanup:
272 free(s);
Radek Krejci3fa46b62019-09-11 10:47:30 +0200273 ly_ctx_unset_options(ctx, LY_CTX_ALLIMPLEMENTED);
Radek Krejcied5acc52019-04-25 15:57:04 +0200274
275 return ret;
276}
277
278int
279cmd_load(const char *arg)
280{
281 int name_len, ret = 1;
282 char *name, *s, *arg_ptr;
283 const struct lys_module *model;
284
285 if (strlen(arg) < 6) {
286 cmd_load_help();
287 return 1;
288 }
289
290 arg_ptr = strdup(arg + 4 /* ignore "load" */);
291
292 for (s = strstr(arg_ptr, "-i"); s ; s = strstr(s + 2, "-i")) {
293 if (s[2] == '\0' || s[2] == ' ') {
Radek Krejci3fa46b62019-09-11 10:47:30 +0200294 ly_ctx_set_options(ctx, LY_CTX_ALLIMPLEMENTED);
Radek Krejcied5acc52019-04-25 15:57:04 +0200295 s[0] = s[1] = ' ';
296 }
297 }
298 s = arg_ptr;
299
300 while (arg_ptr[0] == ' ') {
301 ++arg_ptr;
302 }
303 if (strchr(arg_ptr, ' ')) {
304 name_len = strchr(arg_ptr, ' ') - arg_ptr;
305 } else {
306 name_len = strlen(arg_ptr);
307 }
308 name = strndup(arg_ptr, name_len);
309
310 while (name) {
311 model = ly_ctx_load_module(ctx, name, NULL);
312 free(name);
313 if (!model) {
314 /* libyang printed the error messages */
315 goto cleanup;
316 }
317
318 /* next model */
319 arg_ptr += name_len;
320 while (arg_ptr[0] == ' ') {
321 ++arg_ptr;
322 }
323 if (strchr(arg_ptr, ' ')) {
324 name_len = strchr(arg_ptr, ' ') - arg_ptr;
325 } else {
326 name_len = strlen(arg_ptr);
327 }
328
329 if (name_len) {
330 name = strndup(arg_ptr, name_len);
331 } else {
332 name = NULL;
333 }
334 }
335 ret = 0;
336
337cleanup:
338 free(s);
Radek Krejci3fa46b62019-09-11 10:47:30 +0200339 ly_ctx_unset_options(ctx, LY_CTX_ALLIMPLEMENTED);
Radek Krejcied5acc52019-04-25 15:57:04 +0200340
341 return ret;
342}
343
344int
345cmd_print(const char *arg)
346{
Radek Krejci693262f2019-04-29 15:23:20 +0200347 int c, argc, option_index, ret = 1, tree_ll = 0, tree_opts = 0, compiled = 0;
Radek Krejcied5acc52019-04-25 15:57:04 +0200348 char **argv = NULL, *ptr, *model_name, *revision;
349 const char *out_path = NULL;
350 const struct lys_module *module;
351 LYS_OUTFORMAT format = LYS_OUT_TREE;
352 FILE *output = stdout;
353 static struct option long_options[] = {
Radek Krejci693262f2019-04-29 15:23:20 +0200354 {"compiled", no_argument, 0, 'c'},
Radek Krejcied5acc52019-04-25 15:57:04 +0200355 {"help", no_argument, 0, 'h'},
356 {"format", required_argument, 0, 'f'},
357 {"output", required_argument, 0, 'o'},
358#if 0
359 {"tree-print-groupings", no_argument, 0, 'g'},
360 {"tree-print-uses", no_argument, 0, 'u'},
361 {"tree-no-leafref-target", no_argument, 0, 'n'},
362 {"tree-path", required_argument, 0, 'P'},
363 {"info-path", required_argument, 0, 'P'},
364 {"tree-line-length", required_argument, 0, 'L'},
365#endif
366 {NULL, 0, 0, 0}
367 };
368 void *rlcd;
369
370 argc = 1;
371 argv = malloc(2*sizeof *argv);
372 *argv = strdup(arg);
373 ptr = strtok(*argv, " ");
374 while ((ptr = strtok(NULL, " "))) {
375 rlcd = realloc(argv, (argc+2)*sizeof *argv);
376 if (!rlcd) {
377 fprintf(stderr, "Memory allocation failed (%s:%d, %s)", __FILE__, __LINE__, strerror(errno));
378 goto cleanup;
379 }
380 argv = rlcd;
381 argv[argc++] = ptr;
382 }
383 argv[argc] = NULL;
384
385 optind = 0;
386 while (1) {
387 option_index = 0;
Radek Krejci693262f2019-04-29 15:23:20 +0200388 c = getopt_long(argc, argv, "chf:go:guP:L:", long_options, &option_index);
Radek Krejcied5acc52019-04-25 15:57:04 +0200389 if (c == -1) {
390 break;
391 }
392
393 switch (c) {
Radek Krejci693262f2019-04-29 15:23:20 +0200394 case 'c':
395 compiled = 1;
396 break;
Radek Krejcied5acc52019-04-25 15:57:04 +0200397 case 'h':
398 cmd_print_help();
399 ret = 0;
400 goto cleanup;
401 case 'f':
402 if (!strcmp(optarg, "yang")) {
403 format = LYS_OUT_YANG;
Radek Krejcied5acc52019-04-25 15:57:04 +0200404 } else if (!strcmp(optarg, "yin")) {
405 format = LYS_OUT_YIN;
FredGand944bdc2019-11-05 21:57:07 +0800406#if 0
Radek Krejcied5acc52019-04-25 15:57:04 +0200407 } else if (!strcmp(optarg, "tree")) {
408 format = LYS_OUT_TREE;
409 } else if (!strcmp(optarg, "tree-rfc")) {
410 format = LYS_OUT_TREE;
411 tree_opts |= LYS_OUTOPT_TREE_RFC;
412 } else if (!strcmp(optarg, "info")) {
413 format = LYS_OUT_INFO;
414 } else if (!strcmp(optarg, "jsons")) {
415 format = LYS_OUT_JSON;
416#endif
417 } else {
418 fprintf(stderr, "Unknown output format \"%s\".\n", optarg);
419 goto cleanup;
420 }
421 break;
422 case 'o':
423 if (out_path) {
424 fprintf(stderr, "Output specified twice.\n");
425 goto cleanup;
426 }
427 out_path = optarg;
428 break;
429#if 0
430 case 'g':
431 tree_opts |= LYS_OUTOPT_TREE_GROUPING;
432 break;
433 case 'u':
434 tree_opts |= LYS_OUTOPT_TREE_USES;
435 break;
436 case 'n':
437 tree_opts |= LYS_OUTOPT_TREE_NO_LEAFREF;
438 break;
439 case 'P':
440 target_path = optarg;
441 break;
442 case 'L':
443 tree_ll = atoi(optarg);
444 break;
445#endif
446 case '?':
447 fprintf(stderr, "Unknown option \"%d\".\n", (char)c);
448 goto cleanup;
449 }
450 }
451
452 /* file name */
453 if (optind == argc) {
454 fprintf(stderr, "Missing the module name.\n");
455 goto cleanup;
456 }
457
Radek Krejci693262f2019-04-29 15:23:20 +0200458 /* compiled format */
459 if (compiled) {
FredGand944bdc2019-11-05 21:57:07 +0800460 if (format == LYS_OUT_YANG) {
461 format = LYS_OUT_YANG_COMPILED;
462 } else {
463 fprintf(stderr, "warning: --compiled option takes effect only in case of printing schemas in YANG format.\n");
464 }
Radek Krejci693262f2019-04-29 15:23:20 +0200465 }
Radek Krejci77954e82019-04-30 13:51:29 +0200466#if 0
Radek Krejcied5acc52019-04-25 15:57:04 +0200467 /* tree fromat with or without gropings */
468 if ((tree_opts || tree_ll) && format != LYS_OUT_TREE) {
469 fprintf(stderr, "--tree options take effect only in case of the tree output format.\n");
470 }
Radek Krejci77954e82019-04-30 13:51:29 +0200471#endif
Radek Krejcied5acc52019-04-25 15:57:04 +0200472 /* module, revision */
473 model_name = argv[optind];
474 revision = NULL;
475 if (strchr(model_name, '@')) {
476 revision = strchr(model_name, '@');
477 revision[0] = '\0';
478 ++revision;
479 }
480
481 if (revision) {
482 module = ly_ctx_get_module(ctx, model_name, revision);
483 } else {
484 module = ly_ctx_get_module_latest(ctx, model_name);
485 }
486#if 0
487 if (!module) {
488 /* not a module, try to find it as a submodule */
489 module = (const struct lys_module *)ly_ctx_get_submodule(ctx, NULL, NULL, model_name, revision);
490 }
491#endif
492
493 if (!module) {
494 if (revision) {
495 fprintf(stderr, "No (sub)module \"%s\" in revision %s found.\n", model_name, revision);
496 } else {
497 fprintf(stderr, "No (sub)module \"%s\" found.\n", model_name);
498 }
499 goto cleanup;
500 }
501
502 if (out_path) {
503 output = fopen(out_path, "w");
504 if (!output) {
505 fprintf(stderr, "Could not open the output file (%s).\n", strerror(errno));
506 goto cleanup;
507 }
508 }
509
510 ret = lys_print_file(output, module, format, tree_ll, tree_opts);
511 if (format == LYS_OUT_JSON) {
512 fputs("\n", output);
513 }
514
515cleanup:
516 free(*argv);
517 free(argv);
518
519 if (output && (output != stdout)) {
520 fclose(output);
521 }
522
523 return ret;
524}
Radek Krejcie7b95092019-05-15 11:03:07 +0200525
Radek Krejcied5acc52019-04-25 15:57:04 +0200526static LYD_FORMAT
527detect_data_format(char *filepath)
528{
529 size_t len;
530
531 /* detect input format according to file suffix */
532 len = strlen(filepath);
533 for (; isspace(filepath[len - 1]); len--, filepath[len] = '\0'); /* remove trailing whitespaces */
534 if (len >= 5 && !strcmp(&filepath[len - 4], ".xml")) {
535 return LYD_XML;
Radek Krejcie7b95092019-05-15 11:03:07 +0200536#if 0
Radek Krejcied5acc52019-04-25 15:57:04 +0200537 } else if (len >= 6 && !strcmp(&filepath[len - 5], ".json")) {
538 return LYD_JSON;
539 } else if (len >= 5 && !strcmp(&filepath[len - 4], ".lyb")) {
540 return LYD_LYB;
Radek Krejcie7b95092019-05-15 11:03:07 +0200541#endif
Radek Krejcied5acc52019-04-25 15:57:04 +0200542 } else {
543 return LYD_UNKNOWN;
544 }
545}
546
547static int
Radek Krejcif3b6fec2019-07-24 15:53:11 +0200548parse_data(char *filepath, int *options, const struct lyd_node **trees, const char *rpc_act_file,
Radek Krejcied5acc52019-04-25 15:57:04 +0200549 struct lyd_node **result)
550{
551 LYD_FORMAT informat = LYD_UNKNOWN;
Radek Krejcied5acc52019-04-25 15:57:04 +0200552 struct lyd_node *data = NULL, *rpc_act = NULL;
553 int opts = *options;
554
555 /* detect input format according to file suffix */
556 informat = detect_data_format(filepath);
557 if (informat == LYD_UNKNOWN) {
558 fprintf(stderr, "Unable to resolve format of the input file, please add \".xml\", \".json\", or \".lyb\" suffix.\n");
559 return EXIT_FAILURE;
560 }
561
Radek Krejcie7b95092019-05-15 11:03:07 +0200562 ly_err_clean(ctx, NULL);
Radek Krejcied5acc52019-04-25 15:57:04 +0200563
Radek Krejcie7b95092019-05-15 11:03:07 +0200564#if 0
Radek Krejcied5acc52019-04-25 15:57:04 +0200565 if ((opts & LYD_OPT_TYPEMASK) == LYD_OPT_TYPEMASK) {
566 /* automatically detect data type from the data top level */
567 if (informat != LYD_XML) {
568 fprintf(stderr, "Only XML data can be automatically explored.\n");
569 return EXIT_FAILURE;
570 }
571
572 xml = lyxml_parse_path(ctx, filepath, 0);
573 if (!xml) {
574 fprintf(stderr, "Failed to parse XML data for automatic type detection.\n");
575 return EXIT_FAILURE;
576 }
577
578 /* NOTE: namespace is ignored to simplify usage of this feature */
579
580 if (!strcmp(xml->name, "data")) {
581 fprintf(stdout, "Parsing %s as complete datastore.\n", filepath);
582 opts = (opts & ~LYD_OPT_TYPEMASK) | LYD_OPT_DATA_ADD_YANGLIB;
583 } else if (!strcmp(xml->name, "config")) {
584 fprintf(stdout, "Parsing %s as config data.\n", filepath);
585 opts = (opts & ~LYD_OPT_TYPEMASK) | LYD_OPT_CONFIG;
586 } else if (!strcmp(xml->name, "get-reply")) {
587 fprintf(stdout, "Parsing %s as <get> reply data.\n", filepath);
588 opts = (opts & ~LYD_OPT_TYPEMASK) | LYD_OPT_GET;
589 } else if (!strcmp(xml->name, "get-config-reply")) {
590 fprintf(stdout, "Parsing %s as <get-config> reply data.\n", filepath);
591 opts = (opts & ~LYD_OPT_TYPEMASK) | LYD_OPT_GETCONFIG;
592 } else if (!strcmp(xml->name, "edit-config")) {
593 fprintf(stdout, "Parsing %s as <edit-config> data.\n", filepath);
594 opts = (opts & ~LYD_OPT_TYPEMASK) | LYD_OPT_EDIT;
595 } else if (!strcmp(xml->name, "rpc")) {
596 fprintf(stdout, "Parsing %s as <rpc> data.\n", filepath);
597 opts = (opts & ~LYD_OPT_TYPEMASK) | LYD_OPT_RPC;
598 } else if (!strcmp(xml->name, "rpc-reply")) {
599 if (!rpc_act_file) {
600 fprintf(stderr, "RPC/action reply data require additional argument (file with the RPC/action).\n");
601 lyxml_free(ctx, xml);
602 return EXIT_FAILURE;
603 }
604 fprintf(stdout, "Parsing %s as <rpc-reply> data.\n", filepath);
605 opts = (opts & ~LYD_OPT_TYPEMASK) | LYD_OPT_RPCREPLY;
606 rpc_act = lyd_parse_path(ctx, rpc_act_file, informat, LYD_OPT_RPC, val_tree);
607 if (!rpc_act) {
608 fprintf(stderr, "Failed to parse RPC/action.\n");
609 lyxml_free(ctx, xml);
610 return EXIT_FAILURE;
611 }
612 } else if (!strcmp(xml->name, "notification")) {
613 fprintf(stdout, "Parsing %s as <notification> data.\n", filepath);
614 opts = (opts & ~LYD_OPT_TYPEMASK) | LYD_OPT_NOTIF;
615 } else if (!strcmp(xml->name, "yang-data")) {
616 fprintf(stdout, "Parsing %s as <yang-data> data.\n", filepath);
617 opts = (opts & ~LYD_OPT_TYPEMASK) | LYD_OPT_DATA_TEMPLATE;
618 if (!rpc_act_file) {
619 fprintf(stderr, "YANG-DATA require additional argument (name instance of yang-data extension).\n");
620 lyxml_free(ctx, xml);
621 return EXIT_FAILURE;
622 }
623 } else {
624 fprintf(stderr, "Invalid top-level element for automatic data type recognition.\n");
625 lyxml_free(ctx, xml);
626 return EXIT_FAILURE;
627 }
628
629 if (opts & LYD_OPT_RPCREPLY) {
630 data = lyd_parse_xml(ctx, &xml->child, opts, rpc_act, val_tree);
631 } else if (opts & (LYD_OPT_RPC | LYD_OPT_NOTIF)) {
632 data = lyd_parse_xml(ctx, &xml->child, opts, val_tree);
633 } else if (opts & LYD_OPT_DATA_TEMPLATE) {
634 data = lyd_parse_xml(ctx, &xml->child, opts, rpc_act_file);
635 } else {
636 data = lyd_parse_xml(ctx, &xml->child, opts);
637 }
638 lyxml_free(ctx, xml);
639 } else {
640 if (opts & LYD_OPT_RPCREPLY) {
641 if (!rpc_act_file) {
642 fprintf(stderr, "RPC/action reply data require additional argument (file with the RPC/action).\n");
643 return EXIT_FAILURE;
644 }
Radek Krejcif3b6fec2019-07-24 15:53:11 +0200645 rpc_act = lyd_parse_path(ctx, rpc_act_file, informat, LYD_OPT_RPC, trees);
Radek Krejcied5acc52019-04-25 15:57:04 +0200646 if (!rpc_act) {
647 fprintf(stderr, "Failed to parse RPC/action.\n");
648 return EXIT_FAILURE;
649 }
Radek Krejcif3b6fec2019-07-24 15:53:11 +0200650 if (trees) {
651 const struct lyd_node **trees_new;
652 unsigned int u;
653 trees_new = lyd_trees_new(1, rpc_act);
654
655 LY_ARRAY_FOR(trees, u) {
656 trees_new = lyd_trees_add(trees_new, trees[u]);
657 }
658 lyd_trees_free(trees, 0);
659 trees = trees_new;
660 } else {
661 trees = lyd_trees_new(1, rpc_act);
662 }
663 data = lyd_parse_path(ctx, filepath, informat, opts, trees);
Radek Krejcied5acc52019-04-25 15:57:04 +0200664 } else if (opts & (LYD_OPT_RPC | LYD_OPT_NOTIF)) {
Radek Krejcif3b6fec2019-07-24 15:53:11 +0200665 data = lyd_parse_path(ctx, filepath, informat, opts, trees);
Radek Krejcied5acc52019-04-25 15:57:04 +0200666 } else if (opts & LYD_OPT_DATA_TEMPLATE) {
667 if (!rpc_act_file) {
668 fprintf(stderr, "YANG-DATA require additional argument (name instance of yang-data extension).\n");
669 return EXIT_FAILURE;
670 }
671 data = lyd_parse_path(ctx, filepath, informat, opts, rpc_act_file);
672 } else {
Michal Vaskoa3881362020-01-21 15:57:35 +0100673#endif
674 data = lyd_parse_path(ctx, filepath, informat, opts);
Radek Krejcie7b95092019-05-15 11:03:07 +0200675#if 0
Michal Vaskoa3881362020-01-21 15:57:35 +0100676 }
Radek Krejcied5acc52019-04-25 15:57:04 +0200677 }
Radek Krejcie7b95092019-05-15 11:03:07 +0200678#endif
679 lyd_free_all(rpc_act);
Radek Krejcied5acc52019-04-25 15:57:04 +0200680
Radek Krejcie7b95092019-05-15 11:03:07 +0200681 if (ly_err_first(ctx)) {
Radek Krejcied5acc52019-04-25 15:57:04 +0200682 fprintf(stderr, "Failed to parse data.\n");
Radek Krejcie7b95092019-05-15 11:03:07 +0200683 lyd_free_all(data);
Radek Krejcied5acc52019-04-25 15:57:04 +0200684 return EXIT_FAILURE;
685 }
686
687 *result = data;
688 *options = opts;
689 return EXIT_SUCCESS;
690}
691
692int
693cmd_data(const char *arg)
694{
695 int c, argc, option_index, ret = 1;
696 int options = 0, printopt = 0;
697 char **argv = NULL, *ptr;
698 const char *out_path = NULL;
699 struct lyd_node *data = NULL, *val_tree = NULL;
Radek Krejcif3b6fec2019-07-24 15:53:11 +0200700 const struct lyd_node **trees = NULL;
Radek Krejcied5acc52019-04-25 15:57:04 +0200701 LYD_FORMAT outformat = LYD_UNKNOWN;
702 FILE *output = stdout;
703 static struct option long_options[] = {
704 {"defaults", required_argument, 0, 'd'},
705 {"help", no_argument, 0, 'h'},
706 {"format", required_argument, 0, 'f'},
707 {"option", required_argument, 0, 't'},
708 {"output", required_argument, 0, 'o'},
709 {"running", required_argument, 0, 'r'},
710 {"strict", no_argument, 0, 's'},
711 {NULL, 0, 0, 0}
712 };
713 void *rlcd;
714
715 argc = 1;
716 argv = malloc(2*sizeof *argv);
717 *argv = strdup(arg);
718 ptr = strtok(*argv, " ");
719 while ((ptr = strtok(NULL, " "))) {
720 rlcd = realloc(argv, (argc + 2) * sizeof *argv);
721 if (!rlcd) {
722 fprintf(stderr, "Memory allocation failed (%s:%d, %s)", __FILE__, __LINE__, strerror(errno));
723 goto cleanup;
724 }
725 argv = rlcd;
726 argv[argc++] = ptr;
727 }
728 argv[argc] = NULL;
729
730 optind = 0;
731 while (1) {
732 option_index = 0;
733 c = getopt_long(argc, argv, "d:hf:o:st:r:", long_options, &option_index);
734 if (c == -1) {
735 break;
736 }
737
738 switch (c) {
Radek Krejcie7b95092019-05-15 11:03:07 +0200739#if 0
Radek Krejcied5acc52019-04-25 15:57:04 +0200740 case 'd':
741 if (!strcmp(optarg, "all")) {
742 printopt = (printopt & ~LYP_WD_MASK) | LYP_WD_ALL;
743 } else if (!strcmp(optarg, "all-tagged")) {
744 printopt = (printopt & ~LYP_WD_MASK) | LYP_WD_ALL_TAG;
745 } else if (!strcmp(optarg, "trim")) {
746 printopt = (printopt & ~LYP_WD_MASK) | LYP_WD_TRIM;
747 } else if (!strcmp(optarg, "implicit-tagged")) {
748 printopt = (printopt & ~LYP_WD_MASK) | LYP_WD_IMPL_TAG;
749 }
750 break;
Radek Krejcie7b95092019-05-15 11:03:07 +0200751#endif
Radek Krejcied5acc52019-04-25 15:57:04 +0200752 case 'h':
753 cmd_data_help();
754 ret = 0;
755 goto cleanup;
756 case 'f':
757 if (!strcmp(optarg, "xml")) {
758 outformat = LYD_XML;
Radek Krejcie7b95092019-05-15 11:03:07 +0200759#if 0
Radek Krejcied5acc52019-04-25 15:57:04 +0200760 } else if (!strcmp(optarg, "json")) {
761 outformat = LYD_JSON;
762 } else if (!strcmp(optarg, "lyb")) {
763 outformat = LYD_LYB;
Radek Krejcie7b95092019-05-15 11:03:07 +0200764#endif
Radek Krejcied5acc52019-04-25 15:57:04 +0200765 } else {
766 fprintf(stderr, "Unknown output format \"%s\".\n", optarg);
767 goto cleanup;
768 }
769 break;
770 case 'o':
771 if (out_path) {
772 fprintf(stderr, "Output specified twice.\n");
773 goto cleanup;
774 }
775 out_path = optarg;
776 break;
Michal Vaskoa3881362020-01-21 15:57:35 +0100777#if 0
Radek Krejcied5acc52019-04-25 15:57:04 +0200778 case 'r':
Radek Krejcied5acc52019-04-25 15:57:04 +0200779 if (optarg[0] == '!') {
780 /* ignore extenral dependencies to the running datastore */
781 options |= LYD_OPT_NOEXTDEPS;
782 } else {
783 /* external file with the running datastore */
Radek Krejcif3b6fec2019-07-24 15:53:11 +0200784 val_tree = lyd_parse_path(ctx, optarg, LYD_XML, LYD_OPT_DATA_NO_YANGLIB, trees);
Radek Krejcied5acc52019-04-25 15:57:04 +0200785 if (!val_tree) {
786 fprintf(stderr, "Failed to parse the additional data tree for validation.\n");
787 goto cleanup;
788 }
Radek Krejcif3b6fec2019-07-24 15:53:11 +0200789 if (!trees) {
790 trees = lyd_trees_new(1, val_tree);
791 } else {
792 trees = lyd_trees_add(trees, val_tree);
793 }
Radek Krejcied5acc52019-04-25 15:57:04 +0200794 }
795 break;
796 case 's':
797 options |= LYD_OPT_STRICT;
798 options |= LYD_OPT_OBSOLETE;
799 break;
Michal Vaskoa3881362020-01-21 15:57:35 +0100800#endif
Radek Krejcied5acc52019-04-25 15:57:04 +0200801 case 't':
802 if (!strcmp(optarg, "auto")) {
Michal Vaskoa3881362020-01-21 15:57:35 +0100803 /* no flags */
Radek Krejcied5acc52019-04-25 15:57:04 +0200804 } else if (!strcmp(optarg, "data")) {
Michal Vaskoa3881362020-01-21 15:57:35 +0100805 /* no flags */
Radek Krejcied5acc52019-04-25 15:57:04 +0200806 } else if (!strcmp(optarg, "config")) {
Michal Vaskoa3881362020-01-21 15:57:35 +0100807 options |= LYD_OPT_CONFIG;
Radek Krejcied5acc52019-04-25 15:57:04 +0200808 } else if (!strcmp(optarg, "get")) {
Michal Vaskoa3881362020-01-21 15:57:35 +0100809 options |= LYD_OPT_GET;
Radek Krejcied5acc52019-04-25 15:57:04 +0200810 } else if (!strcmp(optarg, "getconfig")) {
Michal Vaskoa3881362020-01-21 15:57:35 +0100811 options |= LYD_OPT_GETCONFIG;
Radek Krejcied5acc52019-04-25 15:57:04 +0200812 } else if (!strcmp(optarg, "edit")) {
Michal Vaskoa3881362020-01-21 15:57:35 +0100813 options |= LYD_OPT_EDIT;
Radek Krejcied5acc52019-04-25 15:57:04 +0200814 } else {
815 fprintf(stderr, "Invalid parser option \"%s\".\n", optarg);
816 cmd_data_help();
817 goto cleanup;
818 }
819 break;
820 case '?':
821 fprintf(stderr, "Unknown option \"%d\".\n", (char)c);
822 goto cleanup;
823 }
824 }
825
826 /* file name */
827 if (optind == argc) {
828 fprintf(stderr, "Missing the data file name.\n");
829 goto cleanup;
830 }
831
Radek Krejcif3b6fec2019-07-24 15:53:11 +0200832 if (parse_data(argv[optind], &options, trees, argv[optind + 1], &data)) {
Radek Krejcied5acc52019-04-25 15:57:04 +0200833 goto cleanup;
834 }
835
836 if (out_path) {
837 output = fopen(out_path, "w");
838 if (!output) {
839 fprintf(stderr, "Could not open the output file (%s).\n", strerror(errno));
840 goto cleanup;
841 }
842 }
843
844 if (outformat != LYD_UNKNOWN) {
Michal Vaskoa3881362020-01-21 15:57:35 +0100845 lyd_print_file(output, data, outformat, LYDP_WITHSIBLINGS | LYDP_FORMAT | printopt);
Radek Krejcied5acc52019-04-25 15:57:04 +0200846 }
847
848 ret = 0;
849
850cleanup:
851 free(*argv);
852 free(argv);
853
854 if (output && (output != stdout)) {
855 fclose(output);
856 }
857
Radek Krejcif3b6fec2019-07-24 15:53:11 +0200858 lyd_trees_free(trees, 1);
Radek Krejcie7b95092019-05-15 11:03:07 +0200859 lyd_free_all(data);
Radek Krejcied5acc52019-04-25 15:57:04 +0200860
861 return ret;
862}
Radek Krejcie7b95092019-05-15 11:03:07 +0200863#if 0
Radek Krejcied5acc52019-04-25 15:57:04 +0200864int
865cmd_xpath(const char *arg)
866{
867 int c, argc, option_index, ret = 1, long_str;
868 char **argv = NULL, *ptr, *expr = NULL;
869 unsigned int i, j;
870 int options = 0;
871 struct lyd_node *data = NULL, *node, *val_tree = NULL;
872 struct lyd_node_leaf_list *key;
873 struct ly_set *set;
874 static struct option long_options[] = {
875 {"help", no_argument, 0, 'h'},
876 {"expr", required_argument, 0, 'e'},
877 {NULL, 0, 0, 0}
878 };
879 void *rlcd;
880
881 long_str = 0;
882 argc = 1;
883 argv = malloc(2 * sizeof *argv);
884 *argv = strdup(arg);
885 ptr = strtok(*argv, " ");
886 while ((ptr = strtok(NULL, " "))) {
887 if (long_str) {
888 ptr[-1] = ' ';
889 if (ptr[strlen(ptr) - 1] == long_str) {
890 long_str = 0;
891 ptr[strlen(ptr) - 1] = '\0';
892 }
893 } else {
894 rlcd = realloc(argv, (argc + 2) * sizeof *argv);
895 if (!rlcd) {
896 fprintf(stderr, "Memory allocation failed (%s:%d, %s)", __FILE__, __LINE__, strerror(errno));
897 goto cleanup;
898 }
899 argv = rlcd;
900 argv[argc] = ptr;
901 if (ptr[0] == '"') {
902 long_str = '"';
903 ++argv[argc];
904 }
905 if (ptr[0] == '\'') {
906 long_str = '\'';
907 ++argv[argc];
908 }
909 if (ptr[strlen(ptr) - 1] == long_str) {
910 long_str = 0;
911 ptr[strlen(ptr) - 1] = '\0';
912 }
913 ++argc;
914 }
915 }
916 argv[argc] = NULL;
917
918 optind = 0;
919 while (1) {
920 option_index = 0;
921 c = getopt_long(argc, argv, "he:t:x:", long_options, &option_index);
922 if (c == -1) {
923 break;
924 }
925
926 switch (c) {
927 case 'h':
928 cmd_xpath_help();
929 ret = 0;
930 goto cleanup;
931 case 'e':
932 expr = optarg;
933 break;
934 case 't':
935 if (!strcmp(optarg, "auto")) {
936 options = (options & ~LYD_OPT_TYPEMASK) | LYD_OPT_TYPEMASK;
937 } else if (!strcmp(optarg, "config")) {
938 options = (options & ~LYD_OPT_TYPEMASK) | LYD_OPT_CONFIG;
939 } else if (!strcmp(optarg, "get")) {
940 options = (options & ~LYD_OPT_TYPEMASK) | LYD_OPT_GET;
941 } else if (!strcmp(optarg, "getconfig")) {
942 options = (options & ~LYD_OPT_TYPEMASK) | LYD_OPT_GETCONFIG;
943 } else if (!strcmp(optarg, "edit")) {
944 options = (options & ~LYD_OPT_TYPEMASK) | LYD_OPT_EDIT;
945 } else if (!strcmp(optarg, "rpc")) {
946 options = (options & ~LYD_OPT_TYPEMASK) | LYD_OPT_RPC;
947 } else if (!strcmp(optarg, "rpcreply")) {
948 options = (options & ~LYD_OPT_TYPEMASK) | LYD_OPT_RPCREPLY;
949 } else if (!strcmp(optarg, "notif")) {
950 options = (options & ~LYD_OPT_TYPEMASK) | LYD_OPT_NOTIF;
951 } else if (!strcmp(optarg, "yangdata")) {
952 options = (options & ~LYD_OPT_TYPEMASK) | LYD_OPT_DATA_TEMPLATE;
953 } else {
954 fprintf(stderr, "Invalid parser option \"%s\".\n", optarg);
955 cmd_data_help();
956 goto cleanup;
957 }
958 break;
959 case 'x':
960 val_tree = lyd_parse_path(ctx, optarg, LYD_XML, LYD_OPT_CONFIG);
961 if (!val_tree) {
962 fprintf(stderr, "Failed to parse the additional data tree for validation.\n");
963 goto cleanup;
964 }
965 break;
966 case '?':
967 fprintf(stderr, "Unknown option \"%d\".\n", (char)c);
968 goto cleanup;
969 }
970 }
971
972 if (optind == argc) {
973 fprintf(stderr, "Missing the file with data.\n");
974 goto cleanup;
975 }
976
977 if (!expr) {
978 fprintf(stderr, "Missing the XPath expression.\n");
979 goto cleanup;
980 }
981
982 if (parse_data(argv[optind], &options, val_tree, argv[optind + 1], &data)) {
983 goto cleanup;
984 }
985
986 if (!(set = lyd_find_path(data, expr))) {
987 goto cleanup;
988 }
989
990 /* print result */
991 printf("Result:\n");
992 if (!set->number) {
993 printf("\tEmpty\n");
994 } else {
995 for (i = 0; i < set->number; ++i) {
996 node = set->set.d[i];
997 switch (node->schema->nodetype) {
998 case LYS_CONTAINER:
999 printf("\tContainer ");
1000 break;
1001 case LYS_LEAF:
1002 printf("\tLeaf ");
1003 break;
1004 case LYS_LEAFLIST:
1005 printf("\tLeaflist ");
1006 break;
1007 case LYS_LIST:
1008 printf("\tList ");
1009 break;
1010 case LYS_ANYXML:
1011 printf("\tAnyxml ");
1012 break;
1013 case LYS_ANYDATA:
1014 printf("\tAnydata ");
1015 break;
1016 default:
1017 printf("\tUnknown ");
1018 break;
1019 }
1020 printf("\"%s\"", node->schema->name);
1021 if (node->schema->nodetype & (LYS_LEAF | LYS_LEAFLIST)) {
1022 printf(" (val: %s)", ((struct lyd_node_leaf_list *)node)->value_str);
1023 } else if (node->schema->nodetype == LYS_LIST) {
1024 key = (struct lyd_node_leaf_list *)node->child;
1025 printf(" (");
1026 for (j = 0; j < ((struct lys_node_list *)node->schema)->keys_size; ++j) {
1027 if (j) {
1028 printf(" ");
1029 }
1030 printf("\"%s\": %s", key->schema->name, key->value_str);
1031 key = (struct lyd_node_leaf_list *)key->next;
1032 }
1033 printf(")");
1034 }
1035 printf("\n");
1036 }
1037 }
1038 printf("\n");
1039
1040 ly_set_free(set);
1041 ret = 0;
1042
1043cleanup:
1044 free(*argv);
1045 free(argv);
1046
1047 lyd_free_withsiblings(data);
1048
1049 return ret;
1050}
1051
1052int
1053print_list(FILE *out, struct ly_ctx *ctx, LYD_FORMAT outformat)
1054{
1055 struct lyd_node *ylib;
1056 uint32_t idx = 0, has_modules = 0;
1057 uint8_t u;
1058 const struct lys_module *mod;
1059
1060 if (outformat != LYD_UNKNOWN) {
1061 ylib = ly_ctx_info(ctx);
1062 if (!ylib) {
1063 fprintf(stderr, "Getting context info (ietf-yang-library data) failed.\n");
1064 return 1;
1065 }
1066
1067 lyd_print_file(out, ylib, outformat, LYP_WITHSIBLINGS | LYP_FORMAT);
1068 lyd_free_withsiblings(ylib);
1069 return 0;
1070 }
1071
1072 /* iterate schemas in context and provide just the basic info */
1073 fprintf(out, "List of the loaded models:\n");
1074 while ((mod = ly_ctx_get_module_iter(ctx, &idx))) {
1075 has_modules++;
1076
1077 /* conformance print */
1078 if (mod->implemented) {
1079 fprintf(out, "\tI");
1080 } else {
1081 fprintf(out, "\ti");
1082 }
1083
1084 /* module print */
1085 fprintf(out, " %s", mod->name);
1086 if (mod->rev_size) {
1087 fprintf(out, "@%s", mod->rev[0].date);
1088 }
1089
1090 /* submodules print */
1091 if (mod->inc_size) {
1092 fprintf(out, " (");
1093 for (u = 0; u < mod->inc_size; u++) {
1094 fprintf(out, "%s%s", !u ? "" : ",", mod->inc[u].submodule->name);
1095 if (mod->inc[u].submodule->rev_size) {
1096 fprintf(out, "@%s", mod->inc[u].submodule->rev[0].date);
1097 }
1098 }
1099 fprintf(out, ")");
1100 }
1101
1102 /* finish the line */
1103 fprintf(out, "\n");
1104 }
1105
1106 if (!has_modules) {
1107 fprintf(out, "\t(none)\n");
1108 }
1109
1110 return 0;
1111}
1112
1113int
1114cmd_list(const char *arg)
1115{
1116 char **argv = NULL, *ptr;
1117 int c, argc, option_index;
1118 LYD_FORMAT outformat = LYD_UNKNOWN;
1119 static struct option long_options[] = {
1120 {"help", no_argument, 0, 'h'},
1121 {"format", required_argument, 0, 'f'},
1122 {NULL, 0, 0, 0}
1123 };
1124 void *rlcd;
1125
1126 argc = 1;
1127 argv = malloc(2*sizeof *argv);
1128 *argv = strdup(arg);
1129 ptr = strtok(*argv, " ");
1130 while ((ptr = strtok(NULL, " "))) {
1131 rlcd = realloc(argv, (argc+2)*sizeof *argv);
1132 if (!rlcd) {
1133 fprintf(stderr, "Memory allocation failed (%s:%d, %s)", __FILE__, __LINE__, strerror(errno));
1134 goto error;
1135 }
1136 argv = rlcd;
1137 argv[argc++] = ptr;
1138 }
1139 argv[argc] = NULL;
1140
1141 optind = 0;
1142 while (1) {
1143 option_index = 0;
1144 c = getopt_long(argc, argv, "hf:", long_options, &option_index);
1145 if (c == -1) {
1146 break;
1147 }
1148
1149 switch (c) {
1150 case 'h':
1151 cmd_data_help();
1152 free(*argv);
1153 free(argv);
1154 return 0;
1155 case 'f':
1156 if (!strcmp(optarg, "xml")) {
1157 outformat = LYD_XML;
1158 } else if (!strcmp(optarg, "json")) {
1159 outformat = LYD_JSON;
1160 } else {
1161 fprintf(stderr, "Unknown output format \"%s\".\n", optarg);
1162 goto error;
1163 }
1164 break;
1165 case '?':
1166 /* getopt_long() prints message */
1167 goto error;
1168 }
1169 }
1170 if (optind != argc) {
1171 fprintf(stderr, "Unknown parameter \"%s\"\n", argv[optind]);
1172error:
1173 free(*argv);
1174 free(argv);
1175 return 1;
1176 }
1177 free(*argv);
1178 free(argv);
1179
1180 return print_list(stdout, ctx, outformat);
1181}
1182#endif
1183int
1184cmd_feature(const char *arg)
1185{
1186 int c, argc, option_index, ret = 1, task = 0;
1187 char **argv = NULL, *ptr, *model_name, *revision, *feat_names = NULL;
1188 const struct lys_module *module;
1189 static struct option long_options[] = {
1190 {"help", no_argument, 0, 'h'},
1191 {"enable", required_argument, 0, 'e'},
1192 {"disable", required_argument, 0, 'd'},
1193 {NULL, 0, 0, 0}
1194 };
1195 void *rlcd;
1196
1197 argc = 1;
1198 argv = malloc(2*sizeof *argv);
1199 *argv = strdup(arg);
1200 ptr = strtok(*argv, " ");
1201 while ((ptr = strtok(NULL, " "))) {
1202 rlcd = realloc(argv, (argc + 2) * sizeof *argv);
1203 if (!rlcd) {
1204 fprintf(stderr, "Memory allocation failed (%s:%d, %s)", __FILE__, __LINE__, strerror(errno));
1205 goto cleanup;
1206 }
1207 argv = rlcd;
1208 argv[argc++] = ptr;
1209 }
1210 argv[argc] = NULL;
1211
1212 optind = 0;
1213 while (1) {
1214 option_index = 0;
1215 c = getopt_long(argc, argv, "he:d:", long_options, &option_index);
1216 if (c == -1) {
1217 break;
1218 }
1219
1220 switch (c) {
1221 case 'h':
1222 cmd_feature_help();
1223 ret = 0;
1224 goto cleanup;
1225 case 'e':
1226 if (task) {
1227 fprintf(stderr, "Only one of enable or disable can be specified.\n");
1228 goto cleanup;
1229 }
1230 task = 1;
1231 feat_names = optarg;
1232 break;
1233 case 'd':
1234 if (task) {
1235 fprintf(stderr, "Only one of enable, or disable can be specified.\n");
1236 goto cleanup;
1237 }
1238 task = 2;
1239 feat_names = optarg;
1240 break;
1241 case '?':
1242 fprintf(stderr, "Unknown option \"%d\".\n", (char)c);
1243 goto cleanup;
1244 }
1245 }
1246
1247 /* module name */
1248 if (optind == argc) {
1249 fprintf(stderr, "Missing the module name.\n");
1250 goto cleanup;
1251 }
1252
1253 revision = NULL;
1254 model_name = argv[optind];
1255 if (strchr(model_name, '@')) {
1256 revision = strchr(model_name, '@');
1257 revision[0] = '\0';
1258 ++revision;
1259 }
1260
1261 module = ly_ctx_get_module(ctx, model_name, revision);
1262#if 0
1263 if (!module) {
1264 /* not a module, try to find it as a submodule */
1265 module = (const struct lys_module *)ly_ctx_get_submodule(ctx, NULL, NULL, model_name, revision);
1266 }
1267#endif
1268
1269 if (module == NULL) {
1270 if (revision) {
1271 fprintf(stderr, "No (sub)module \"%s\" in revision %s found.\n", model_name, revision);
1272 } else {
1273 fprintf(stderr, "No (sub)module \"%s\" found.\n", model_name);
1274 }
1275 goto cleanup;
1276 }
1277
1278 if (!task) {
1279 unsigned int len, max_len = 0;
1280 unsigned int u;
1281 struct lysc_feature *features;
1282
1283 printf("%s features:\n", module->name);
1284
1285 if (module->compiled) {
1286 features = module->compiled->features;
1287 } else {
1288 features = module->off_features;
1289 }
1290
1291 /* get the max len */
1292 LY_ARRAY_FOR(features, u) {
1293 len = strlen(features[u].name);
1294 if (len > max_len) {
1295 max_len = len;
1296 }
1297 }
1298
1299 LY_ARRAY_FOR(features, u) {
1300 printf("\t%-*s (%s)\n", max_len, features[u].name, (features[u].flags & LYS_FENABLED) ? "on" : "off");
1301 }
1302 if (!u) {
1303 printf("\t(none)\n");
1304 }
1305 } else {
1306 feat_names = strtok(feat_names, ",");
1307 while (feat_names) {
1308 if (((task == 1) && lys_feature_enable(module, feat_names))
1309 || ((task == 2) && lys_feature_disable(module, feat_names))) {
1310 fprintf(stderr, "Feature \"%s\" not found.\n", feat_names);
1311 ret = 1;
1312 }
1313 feat_names = strtok(NULL, ",");
1314 }
1315 }
1316
1317cleanup:
1318 free(*argv);
1319 free(argv);
1320
1321 return ret;
1322}
1323
1324int
1325cmd_searchpath(const char *arg)
1326{
1327 const char *path;
1328 const char * const *searchpaths;
1329 int index;
1330 struct stat st;
1331
1332 for (path = strchr(arg, ' '); path && (path[0] == ' '); ++path);
1333 if (!path || (path[0] == '\0')) {
1334 searchpaths = ly_ctx_get_searchdirs(ctx);
1335 if (searchpaths) {
1336 for (index = 0; searchpaths[index]; index++) {
1337 fprintf(stdout, "%s\n", searchpaths[index]);
1338 }
1339 }
1340 return 0;
1341 }
1342
1343 if ((!strncmp(path, "-h", 2) && (path[2] == '\0' || path[2] == ' ')) ||
1344 (!strncmp(path, "--help", 6) && (path[6] == '\0' || path[6] == ' '))) {
1345 cmd_searchpath_help();
1346 return 0;
1347 } else if (!strncmp(path, "--clear", 7) && (path[7] == '\0' || path[7] == ' ')) {
1348 ly_ctx_unset_searchdirs(ctx, NULL);
1349 return 0;
1350 }
1351
1352 if (stat(path, &st) == -1) {
1353 fprintf(stderr, "Failed to stat the search path (%s).\n", strerror(errno));
1354 return 1;
1355 }
1356 if (!S_ISDIR(st.st_mode)) {
1357 fprintf(stderr, "\"%s\" is not a directory.\n", path);
1358 return 1;
1359 }
1360
1361 ly_ctx_set_searchdir(ctx, path);
1362
1363 return 0;
1364}
1365
1366int
1367cmd_clear(const char *arg)
1368{
1369 struct ly_ctx *ctx_new;
1370 int options = 0;
1371#if 0
1372 int i;
1373 char *ylpath;
1374 const char * const *searchpaths;
1375 LYD_FORMAT format;
1376
1377 /* get optional yang library file name */
1378 for (i = 5; arg[i] && isspace(arg[i]); i++);
1379 if (arg[i]) {
1380 if (arg[i] == '-' && arg[i + 1] == 'e') {
1381 options = LY_CTX_NOYANGLIBRARY;
1382 goto create_empty;
1383 } else {
1384 ylpath = strdup(&arg[i]);
1385 format = detect_data_format(ylpath);
1386 if (format == LYD_UNKNOWN) {
1387 free(ylpath);
1388 fprintf(stderr, "Unable to resolve format of the yang library file, please add \".xml\" or \".json\" suffix.\n");
1389 goto create_empty;
1390 }
1391 searchpaths = ly_ctx_get_searchdirs(ctx);
1392 ctx_new = ly_ctx_new_ylpath(searchpaths ? searchpaths[0] : NULL, ylpath, format, 0);
1393 free(ylpath);
1394 }
1395 } else {
1396create_empty:
1397#else
Radek Krejci92f5ce92019-09-06 16:25:43 +02001398 (void) arg; /* TODO yang-library support */
Radek Krejcied5acc52019-04-25 15:57:04 +02001399 {
1400#endif
1401 ly_ctx_new(NULL, options, &ctx_new);
1402 }
1403
1404 if (!ctx_new) {
1405 fprintf(stderr, "Failed to create context.\n");
1406 return 1;
1407 }
1408
1409 /* final switch */
1410 ly_ctx_destroy(ctx, NULL);
1411 ctx = ctx_new;
1412
1413 return 0;
1414}
1415
1416int
1417cmd_verb(const char *arg)
1418{
1419 const char *verb;
1420 if (strlen(arg) < 5) {
1421 cmd_verb_help();
1422 return 1;
1423 }
1424
1425 verb = arg + 5;
1426 if (!strcmp(verb, "error") || !strcmp(verb, "0")) {
1427 ly_verb(LY_LLERR);
1428#ifndef NDEBUG
1429 ly_verb_dbg(0);
1430#endif
1431 } else if (!strcmp(verb, "warning") || !strcmp(verb, "1")) {
1432 ly_verb(LY_LLWRN);
1433#ifndef NDEBUG
1434 ly_verb_dbg(0);
1435#endif
1436 } else if (!strcmp(verb, "verbose") || !strcmp(verb, "2")) {
1437 ly_verb(LY_LLVRB);
1438#ifndef NDEBUG
1439 ly_verb_dbg(0);
1440#endif
1441 } else if (!strcmp(verb, "debug") || !strcmp(verb, "3")) {
1442 ly_verb(LY_LLDBG);
1443#ifndef NDEBUG
1444 ly_verb_dbg(LY_LDGDICT | LY_LDGYANG | LY_LDGYIN | LY_LDGXPATH | LY_LDGDIFF);
1445#endif
1446 } else {
1447 fprintf(stderr, "Unknown verbosity \"%s\"\n", verb);
1448 return 1;
1449 }
1450
1451 return 0;
1452}
1453
1454#ifndef NDEBUG
1455
1456int
1457cmd_debug(const char *arg)
1458{
1459 const char *beg, *end;
1460 int grps = 0;
1461 if (strlen(arg) < 6) {
1462 cmd_debug_help();
1463 return 1;
1464 }
1465
1466 end = arg + 6;
1467 while (end[0]) {
1468 for (beg = end; isspace(beg[0]); ++beg);
1469 if (!beg[0]) {
1470 break;
1471 }
1472
1473 for (end = beg; (end[0] && !isspace(end[0])); ++end);
1474
1475 if (!strncmp(beg, "dict", end - beg)) {
1476 grps |= LY_LDGDICT;
1477 } else if (!strncmp(beg, "yang", end - beg)) {
1478 grps |= LY_LDGYANG;
1479 } else if (!strncmp(beg, "yin", end - beg)) {
1480 grps |= LY_LDGYIN;
1481 } else if (!strncmp(beg, "xpath", end - beg)) {
1482 grps |= LY_LDGXPATH;
1483 } else if (!strncmp(beg, "diff", end - beg)) {
1484 grps |= LY_LDGDIFF;
1485 } else {
1486 fprintf(stderr, "Unknown debug group \"%.*s\"\n", (int)(end - beg), beg);
1487 return 1;
1488 }
1489 }
1490 ly_verb_dbg(grps);
1491
1492 return 0;
1493}
1494
1495#endif
1496
1497int
1498cmd_quit(const char *UNUSED(arg))
1499{
1500 done = 1;
1501 return 0;
1502}
1503
1504int
1505cmd_help(const char *arg)
1506{
1507 int i;
1508 char *args = strdup(arg);
1509 char *cmd = NULL;
1510
1511 strtok(args, " ");
1512 if ((cmd = strtok(NULL, " ")) == NULL) {
1513
1514generic_help:
1515 fprintf(stdout, "Available commands:\n");
1516
1517 for (i = 0; commands[i].name; i++) {
1518 if (commands[i].helpstring != NULL) {
1519 fprintf(stdout, " %-15s %s\n", commands[i].name, commands[i].helpstring);
1520 }
1521 }
1522 } else {
1523 /* print specific help for the selected command */
1524
1525 /* get the command of the specified name */
1526 for (i = 0; commands[i].name; i++) {
1527 if (strcmp(cmd, commands[i].name) == 0) {
1528 break;
1529 }
1530 }
1531
1532 /* execute the command's help if any valid command specified */
1533 if (commands[i].name) {
1534 if (commands[i].help_func != NULL) {
1535 commands[i].help_func();
1536 } else {
1537 printf("%s\n", commands[i].helpstring);
1538 }
1539 } else {
1540 /* if unknown command specified, print the list of commands */
1541 printf("Unknown command \'%s\'\n", cmd);
1542 goto generic_help;
1543 }
1544 }
1545
1546 free(args);
1547 return 0;
1548}
1549
1550COMMAND commands[] = {
1551 {"help", cmd_help, NULL, "Display commands description"},
1552 {"add", cmd_add, cmd_add_help, "Add a new model from a specific file"},
1553 {"load", cmd_load, cmd_load_help, "Load a new model from the searchdirs"},
1554 {"print", cmd_print, cmd_print_help, "Print a model"},
Radek Krejcied5acc52019-04-25 15:57:04 +02001555 {"data", cmd_data, cmd_data_help, "Load, validate and optionally print instance data"},
Radek Krejcie7b95092019-05-15 11:03:07 +02001556#if 0
Radek Krejcied5acc52019-04-25 15:57:04 +02001557 {"xpath", cmd_xpath, cmd_xpath_help, "Get data nodes satisfying an XPath expression"},
1558 {"list", cmd_list, cmd_list_help, "List all the loaded models"},
1559#endif
1560 {"feature", cmd_feature, cmd_feature_help, "Print/enable/disable all/specific features of models"},
1561 {"searchpath", cmd_searchpath, cmd_searchpath_help, "Print/set the search path(s) for models"},
1562 {"clear", cmd_clear, cmd_clear_help, "Clear the context - remove all the loaded models"},
1563 {"verb", cmd_verb, cmd_verb_help, "Change verbosity"},
1564#ifndef NDEBUG
1565 {"debug", cmd_debug, cmd_debug_help, "Display specific debug message groups"},
1566#endif
1567 {"quit", cmd_quit, NULL, "Quit the program"},
1568 /* synonyms for previous commands */
1569 {"?", cmd_help, NULL, "Display commands description"},
1570 {"exit", cmd_quit, NULL, "Quit the program"},
1571 {NULL, NULL, NULL, NULL}
1572};