blob: 638487f9d3cfcf18574da7abf2fc8a7fa28d9f6e [file] [log] [blame]
Radek Krejcied5acc52019-04-25 15:57:04 +02001/**
2 * @file main_ni.c
3 * @author Radek Krejci <rkrejci@cesnet.cz>
Michal Vasko193dacd2022-10-13 08:43:05 +02004 * @author Michal Vasko <mvasko@cesnet.cz>
5 * @brief libyang's yanglint tool - non-interactive code
Radek Krejcied5acc52019-04-25 15:57:04 +02006 *
Michal Vasko193dacd2022-10-13 08:43:05 +02007 * Copyright (c) 2020 - 2022 CESNET, z.s.p.o.
Radek Krejcied5acc52019-04-25 15:57:04 +02008 *
9 * This source code is licensed under BSD 3-Clause License (the "License").
10 * You may not use this file except in compliance with the License.
11 * You may obtain a copy of the License at
12 *
13 * https://opensource.org/licenses/BSD-3-Clause
14 */
15
Radek Krejci535ea9f2020-05-29 16:01:05 +020016#define _GNU_SOURCE
Radek Krejcied5acc52019-04-25 15:57:04 +020017
Radek Krejcie9f13b12020-11-09 17:42:04 +010018#include <errno.h>
19#include <getopt.h>
Radek Krejci47fab892020-11-05 17:02:41 +010020#include <stdint.h>
Radek Krejcied5acc52019-04-25 15:57:04 +020021#include <stdio.h>
22#include <stdlib.h>
Radek Krejcied5acc52019-04-25 15:57:04 +020023#include <string.h>
Radek Krejci47fab892020-11-05 17:02:41 +010024#include <strings.h>
Radek Krejcie9f13b12020-11-09 17:42:04 +010025#include <sys/stat.h>
Radek Krejcied5acc52019-04-25 15:57:04 +020026
Radek Krejcied5acc52019-04-25 15:57:04 +020027#include "libyang.h"
Michal Vasko193dacd2022-10-13 08:43:05 +020028#include "plugins_exts.h"
Radek Krejcied5acc52019-04-25 15:57:04 +020029
Radek Krejcie9f13b12020-11-09 17:42:04 +010030#include "common.h"
aPiecek8f0b7882021-05-21 10:18:36 +020031#include "out.h"
Radek Krejci535ea9f2020-05-29 16:01:05 +020032#include "tools/config.h"
33
Radek Krejcie9f13b12020-11-09 17:42:04 +010034/**
35 * @brief Context structure to hold and pass variables in a structured form.
36 */
37struct context {
38 /* libyang context for the run */
Michal Vasko24aaf8e2022-02-04 11:15:26 +010039 const char *yang_lib_file;
40 uint16_t ctx_options;
Radek Krejcie9f13b12020-11-09 17:42:04 +010041 struct ly_ctx *ctx;
Radek Krejci535ea9f2020-05-29 16:01:05 +020042
Radek Krejcie9f13b12020-11-09 17:42:04 +010043 /* prepared output (--output option or stdout by default) */
44 struct ly_out *out;
Radek Krejci535ea9f2020-05-29 16:01:05 +020045
aPiecek912f3d52022-10-12 10:02:33 +020046 char *searchpaths;
Radek Krejcied5acc52019-04-25 15:57:04 +020047
Radek Krejcie9f13b12020-11-09 17:42:04 +010048 /* options flags */
49 uint8_t list; /* -l option to print list of schemas */
Radek Krejcied5acc52019-04-25 15:57:04 +020050
aPiecek2cfeeae2021-04-21 13:17:34 +020051 /* line length for 'tree' format */
52 size_t line_length; /* --tree-line-length */
53
Radek Krejcie9f13b12020-11-09 17:42:04 +010054 /*
55 * schema
56 */
Michal Vaskoa9a98612021-11-22 10:00:27 +010057 /* set schema modules' features via --features option (struct schema_features *) */
Radek Krejcie9f13b12020-11-09 17:42:04 +010058 struct ly_set schema_features;
59
60 /* set of loaded schema modules (struct lys_module *) */
61 struct ly_set schema_modules;
62
63 /* options to parse and print schema modules */
64 uint32_t schema_parse_options;
65 uint32_t schema_print_options;
66
67 /* specification of printing schema node subtree, option --schema-node */
68 const char *schema_node_path;
69 const struct lysc_node *schema_node;
Michal Vaskofe74d1e2021-09-30 13:17:36 +020070 const char *submodule;
Radek Krejcie9f13b12020-11-09 17:42:04 +010071
ekinzie0ab8b302022-10-10 03:03:57 -040072 /* name of file containing explicit context passed to callback
73 * for schema-mount extension. This also causes a callback to
74 * be registered.
75 */
76 char *schema_context_filename;
77
Radek Krejcie9f13b12020-11-09 17:42:04 +010078 /* value of --format in case of schema format */
79 LYS_OUTFORMAT schema_out_format;
roman300b8782022-08-11 12:49:21 +020080 ly_bool feature_param_format;
Radek Krejcie9f13b12020-11-09 17:42:04 +010081
82 /*
83 * data
84 */
85 /* various options based on --type option */
Michal Vaskoe0665742021-02-11 11:08:44 +010086 enum lyd_type data_type;
Radek Krejcie9f13b12020-11-09 17:42:04 +010087 uint32_t data_parse_options;
88 uint32_t data_validate_options;
89 uint32_t data_print_options;
90
91 /* flag for --merge option */
92 uint8_t data_merge;
93
94 /* value of --format in case of data format */
95 LYD_FORMAT data_out_format;
96
97 /* input data files (struct cmdline_file *) */
98 struct ly_set data_inputs;
99
Radek Krejcie9f13b12020-11-09 17:42:04 +0100100 /* storage for --operational */
101 struct cmdline_file data_operational;
Michal Vasko3f08fb92022-04-21 09:52:35 +0200102
103 /* storage for --reply-rpc */
104 struct cmdline_file reply_rpc;
aPiecek1b629762023-04-12 13:52:30 +0200105
106 /* storage for --data-xpath */
107 struct ly_set data_xpath;
Radek Krejcie9f13b12020-11-09 17:42:04 +0100108};
109
110static void
111erase_context(struct context *c)
112{
113 /* data */
114 ly_set_erase(&c->data_inputs, free_cmdline_file);
Radek Krejcie9f13b12020-11-09 17:42:04 +0100115 ly_in_free(c->data_operational.in, 1);
aPiecek1b629762023-04-12 13:52:30 +0200116 ly_set_erase(&c->data_xpath, NULL);
Radek Krejcie9f13b12020-11-09 17:42:04 +0100117
118 /* schema */
119 ly_set_erase(&c->schema_features, free_features);
120 ly_set_erase(&c->schema_modules, NULL);
121
122 /* context */
aPiecek912f3d52022-10-12 10:02:33 +0200123 free(c->searchpaths);
124 c->searchpaths = NULL;
Radek Krejcie9f13b12020-11-09 17:42:04 +0100125
126 ly_out_free(c->out, NULL, 0);
Radek Krejci90ed21e2021-04-12 14:47:46 +0200127 ly_ctx_destroy(c->ctx);
ekinzie0ab8b302022-10-10 03:03:57 -0400128
129 if (c->schema_context_filename) {
130 free(c->schema_context_filename);
131 }
Radek Krejcie9f13b12020-11-09 17:42:04 +0100132}
133
134static void
135version(void)
136{
137 printf("yanglint %s\n", PROJECT_VERSION);
138}
139
140static void
Radek Krejcied5acc52019-04-25 15:57:04 +0200141help(int shortout)
142{
Radek Krejcie9f13b12020-11-09 17:42:04 +0100143
Michal Vasko3f08fb92022-04-21 09:52:35 +0200144 printf("Example usage:\n"
145 " yanglint [-f { yang | yin | info}] <schema>...\n"
146 " Validates the YANG module <schema>(s) and all its dependencies, optionally printing\n"
147 " them in the specified format.\n\n"
148 " yanglint [-f { xml | json }] <schema>... <file>...\n"
149 " Validates the YANG modeled data <file>(s) according to the <schema>(s) optionally\n"
150 " printing them in the specified format.\n\n"
151 " yanglint -t (nc-)rpc/notif [-O <operational-file>] <schema>... <file>\n"
152 " Validates the YANG/NETCONF RPC/notification <file> according to the <schema>(s) using\n"
153 " <operational-file> with possible references to the operational datastore data.\n\n"
154 " yanglint -t nc-reply -R <rpc-file> [-O <operational-file>] <schema>... <file>\n"
155 " Validates the NETCONF rpc-reply <file> of RPC <rpc-file> according to the <schema>(s)\n"
156 " using <operational-file> with possible references to the operational datastore data.\n\n"
Radek Krejcie9f13b12020-11-09 17:42:04 +0100157 " yanglint\n"
158 " Starts interactive mode with more features.\n\n");
Radek Krejcied5acc52019-04-25 15:57:04 +0200159
160 if (shortout) {
161 return;
162 }
Radek Krejcie9f13b12020-11-09 17:42:04 +0100163 printf("Options:\n"
164 " -h, --help Show this help message and exit.\n"
165 " -v, --version Show version number and exit.\n"
Michal Vaskob0d307b2021-11-25 11:15:16 +0100166 " -V, --verbose Increase libyang verbosity and show verbose messages. If specified\n"
167 " a second time, show even debug messages.\n"
168 " -Q, --quiet Decrease libyang verbosity and hide warnings. If specified a second\n"
169 " time, hide errors so no libyang messages are printed.\n");
Radek Krejcie9f13b12020-11-09 17:42:04 +0100170
Michal Vaskoc40548b2021-09-30 13:05:47 +0200171 printf(" -f FORMAT, --format=FORMAT\n"
172 " Convert input into FORMAT. Supported formats: \n"
roman300b8782022-08-11 12:49:21 +0200173 " yang, yin, tree, info and feature-param for schemas,\n"
Michal Vaskod8b0e772022-03-18 13:36:04 +0100174 " xml, json, and lyb for data.\n\n");
Michal Vaskoc40548b2021-09-30 13:05:47 +0200175
176 printf(" -p PATH, --path=PATH\n"
177 " Search path for schema (YANG/YIN) modules. The option can be\n"
178 " used multiple times. The current working directory and the\n"
aPiecek4f306da2023-03-27 09:06:07 +0200179 " path of the module being added is used implicitly. Subdirectories\n"
180 " are also searched\n\n");
Radek Krejcie9f13b12020-11-09 17:42:04 +0100181
Michal Vasko22e0f3a2021-09-22 12:19:23 +0200182 printf(" -D, --disable-searchdir\n"
Radek Krejcie9f13b12020-11-09 17:42:04 +0100183 " Do not implicitly search in current working directory for\n"
184 " schema modules. If specified a second time, do not even\n"
185 " search in the module directory (all modules must be \n"
Michal Vasko22e0f3a2021-09-22 12:19:23 +0200186 " explicitly specified).\n\n");
Radek Krejcie9f13b12020-11-09 17:42:04 +0100187
Michal Vasko22e0f3a2021-09-22 12:19:23 +0200188 printf(" -F FEATURES, --features=FEATURES\n"
Michal Vasko59740872021-11-22 10:01:34 +0100189 " Specific module features to support in the form <module-name>:(<feature>,)*\n"
190 " Use <feature> '*' to enable all features of a module. This option can be\n"
191 " specified multiple times, to enable features in multiple modules. If this\n"
192 " option is not specified, all the features in all the implemented modules\n"
193 " are enabled.\n\n");
Radek Krejcie9f13b12020-11-09 17:42:04 +0100194
Michal Vasko8d6d0ad2021-10-19 12:32:27 +0200195 printf(" -i, --make-implemented\n"
Radek Krejcie9f13b12020-11-09 17:42:04 +0100196 " Make the imported modules \"referenced\" from any loaded\n"
197 " module also implemented. If specified a second time, all the\n"
Michal Vasko22e0f3a2021-09-22 12:19:23 +0200198 " modules are set implemented.\n\n");
Radek Krejcie9f13b12020-11-09 17:42:04 +0100199
Michal Vasko22e0f3a2021-09-22 12:19:23 +0200200 printf(" -P PATH, --schema-node=PATH\n"
Radek Krejcie9f13b12020-11-09 17:42:04 +0100201 " Print only the specified subtree of the schema.\n"
202 " The PATH is the XPath subset mentioned in documentation as\n"
203 " the Path format. The option can be combined with --single-node\n"
204 " option to print information only about the specified node.\n"
205 " -q, --single-node\n"
206 " Supplement to the --schema-node option to print information\n"
Michal Vasko22e0f3a2021-09-22 12:19:23 +0200207 " only about a single node specified as PATH argument.\n\n");
Radek Krejcie9f13b12020-11-09 17:42:04 +0100208
Michal Vaskofe74d1e2021-09-30 13:17:36 +0200209 printf(" -s SUBMODULE, --submodule=SUBMODULE\n"
210 " Print the specific submodule instead of the main module.\n\n");
211
ekinzie0ab8b302022-10-10 03:03:57 -0400212 printf(" -x FILE, --ext-data=FILE\n"
213 " File containing the specific data required by an extension. Required by\n"
Michal Vasko14662802022-11-08 08:45:46 +0100214 " the schema-mount extension, for example, when the operational data are\n"
ekinzie0ab8b302022-10-10 03:03:57 -0400215 " expected in the file. File format is guessed.\n\n");
216
Michal Vasko22e0f3a2021-09-22 12:19:23 +0200217 printf(" -n, --not-strict\n"
Michal Vasko667ce6b2021-01-25 15:00:27 +0100218 " Do not require strict data parsing (silently skip unknown data),\n"
Michal Vasko22e0f3a2021-09-22 12:19:23 +0200219 " has no effect for schemas.\n\n");
Radek Krejcie9f13b12020-11-09 17:42:04 +0100220
Michal Vasko22e0f3a2021-09-22 12:19:23 +0200221 printf(" -e, --present Validate only with the schema modules whose data actually\n"
Radek Krejcie9f13b12020-11-09 17:42:04 +0100222 " exist in the provided input data files. Takes effect only\n"
223 " with the 'data' or 'config' TYPEs. Used to avoid requiring\n"
224 " mandatory nodes from modules which data are not present in the\n"
Michal Vasko22e0f3a2021-09-22 12:19:23 +0200225 " provided input data files.\n\n");
Radek Krejcie9f13b12020-11-09 17:42:04 +0100226
Michal Vasko22e0f3a2021-09-22 12:19:23 +0200227 printf(" -t TYPE, --type=TYPE\n"
Radek Krejcie9f13b12020-11-09 17:42:04 +0100228 " Specify data tree type in the input data file(s):\n"
229 " data - Complete datastore with status data (default type).\n"
230 " config - Configuration datastore (without status data).\n"
Michal Vasko3f08fb92022-04-21 09:52:35 +0200231 " get - Data returned by the NETCONF <get> operation.\n"
232 " getconfig - Data returned by the NETCONF <get-config> operation.\n"
233 " edit - Config content of the NETCONF <edit-config> operation.\n"
234 " rpc - Invocation of a YANG RPC/action, defined as input.\n"
235 " nc-rpc - Similar to 'rpc' but expect and check also the NETCONF\n"
236 " envelopes <rpc> or <action>.\n"
237 " reply - Reply to a YANG RPC/action, defined as output. Note that\n"
238 " the reply data are expected inside a container representing\n"
239 " the original RPC/action invocation.\n"
240 " nc-reply - Similar to 'reply' but expect and check also the NETCONF\n"
241 " envelope <rpc-reply> with output data nodes as direct\n"
242 " descendants. The original RPC/action invocation is expected\n"
243 " in a separate parameter '-R' and is parsed as 'nc-rpc'.\n"
244 " notif - Notification instance of a YANG notification.\n"
245 " nc-notif - Similar to 'notif' but expect and check also the NETCONF\n"
246 " envelope <notification> with element <eventTime> and its\n"
247 " sibling as the actual notification.\n\n");
Michal Vaskoc40548b2021-09-30 13:05:47 +0200248
249 printf(" -d MODE, --default=MODE\n"
250 " Print data with default values, according to the MODE\n"
251 " (to print attributes, ietf-netconf-with-defaults model\n"
252 " must be loaded):\n"
253 " all - Add missing default nodes.\n"
254 " all-tagged - Add missing default nodes and mark all the default\n"
255 " nodes with the attribute.\n"
256 " trim - Remove all nodes with a default value.\n"
257 " implicit-tagged - Add missing nodes and mark them with the attribute.\n\n");
258
aPiecek1b629762023-04-12 13:52:30 +0200259 printf(" -E XPATH, --data-xpath=XPATH\n"
260 " Evaluate XPATH expression over the data and print the nodes satysfying\n"
261 " the expression. The output format is specific and the option cannot\n"
262 " be combined with the -f and -d options. Also all the data\n"
263 " inputs are merged into a single data tree where the expression\n"
264 " is evaluated, so the -m option is always set implicitly.\n\n");
265
Michal Vaskoc40548b2021-09-30 13:05:47 +0200266 printf(" -l, --list Print info about the loaded schemas.\n"
267 " (i - imported module, I - implemented module)\n"
Michal Vasko24aaf8e2022-02-04 11:15:26 +0100268 " In case the '-f' option with data encoding is specified,\n"
269 " the list is printed as \"ietf-yang-library\" data.\n\n");
Michal Vaskoc40548b2021-09-30 13:05:47 +0200270
271 printf(" -L LINE_LENGTH, --tree-line-length=LINE_LENGTH\n"
272 " The limit of the maximum line length on which the 'tree'\n"
273 " format will try to be printed.\n\n");
274
275 printf(" -o OUTFILE, --output=OUTFILE\n"
276 " Write the output to OUTFILE instead of stdout.\n\n");
Radek Krejcie9f13b12020-11-09 17:42:04 +0100277
Michal Vasko22e0f3a2021-09-22 12:19:23 +0200278 printf(" -O FILE, --operational=FILE\n"
Michal Vasko9e81ce52022-04-29 10:16:21 +0200279 " Provide optional data to extend validation of the '(nc-)rpc',\n"
280 " '(nc-)reply' or '(nc-)notif' TYPEs. The FILE is supposed to contain\n"
281 " the operational datastore referenced from the operation.\n"
282 " In case of a nested operation, its parent existence is also\n"
283 " checked in these operational data.\n\n");
Radek Krejcie9f13b12020-11-09 17:42:04 +0100284
Michal Vasko3f08fb92022-04-21 09:52:35 +0200285 printf(" -R FILE, --reply-rpc=FILE\n"
286 " Provide source RPC for parsing of the 'nc-reply' TYPE. The FILE\n"
287 " is supposed to contain the source 'nc-rpc' operation of the reply.\n\n");
288
Michal Vasko22e0f3a2021-09-22 12:19:23 +0200289 printf(" -m, --merge Merge input data files into a single tree and validate at\n"
Michal Vasko06158fb2022-03-29 12:13:16 +0200290 " once. The option has effect only for 'data' and 'config' TYPEs.\n\n");
Radek Krejcie9f13b12020-11-09 17:42:04 +0100291
Michal Vasko22e0f3a2021-09-22 12:19:23 +0200292 printf(" -y, --yang-library\n"
Michal Vaskoc431a0a2021-01-25 14:31:58 +0100293 " Load and implement internal \"ietf-yang-library\" YANG module.\n"
294 " Note that this module includes definitions of mandatory state\n"
Michal Vasko22e0f3a2021-09-22 12:19:23 +0200295 " data that can result in unexpected data validation errors.\n\n");
Michal Vaskoc40548b2021-09-30 13:05:47 +0200296
Michal Vasko24aaf8e2022-02-04 11:15:26 +0100297 printf(" -Y FILE, --yang-library-file=FILE\n"
298 " Parse FILE with \"ietf-yang-library\" data and use them to\n"
299 " create an exact YANG schema context. If specified, the '-F'\n"
300 " parameter (enabled features) is ignored.\n\n");
301
stewegd8e2fc92023-05-31 09:52:56 +0200302 printf(" -X, --extended-leafref\n"
303 " Allow usage of deref() XPath function within leafref\n\n");
304
Michal Vaskoc40548b2021-09-30 13:05:47 +0200305#ifndef NDEBUG
306 printf(" -G GROUPS, --debug=GROUPS\n"
307 " Enable printing of specific debugging message group\n"
308 " (nothing will be printed unless verbosity is set to debug):\n"
Michal Vasko27a4acb2021-11-22 10:03:46 +0100309 " <group>[,<group>]* (dict, xpath, dep-sets)\n\n");
Michal Vaskoc40548b2021-09-30 13:05:47 +0200310#endif
Radek Krejcied5acc52019-04-25 15:57:04 +0200311}
312
Radek Krejcie9f13b12020-11-09 17:42:04 +0100313static void
Radek Krejcied5acc52019-04-25 15:57:04 +0200314libyang_verbclb(LY_LOG_LEVEL level, const char *msg, const char *path)
315{
316 char *levstr;
317
Radek Krejcie9f13b12020-11-09 17:42:04 +0100318 switch (level) {
319 case LY_LLERR:
320 levstr = "err :";
321 break;
322 case LY_LLWRN:
323 levstr = "warn:";
324 break;
325 case LY_LLVRB:
326 levstr = "verb:";
327 break;
328 default:
329 levstr = "dbg :";
330 break;
331 }
332 if (path) {
333 fprintf(stderr, "libyang %s %s (%s)\n", levstr, msg, path);
334 } else {
335 fprintf(stderr, "libyang %s %s\n", levstr, msg);
Radek Krejcied5acc52019-04-25 15:57:04 +0200336 }
337}
338
Michal Vasko686d8fc2021-11-22 10:03:23 +0100339static struct schema_features *
340get_features_not_applied(const struct ly_set *fset)
341{
342 for (uint32_t u = 0; u < fset->count; ++u) {
343 struct schema_features *sf = fset->objs[u];
Michal Vasko26bbb272022-08-02 14:54:33 +0200344
Michal Vasko686d8fc2021-11-22 10:03:23 +0100345 if (!sf->applied) {
346 return sf;
347 }
348 }
349
350 return NULL;
351}
352
ekinzie0ab8b302022-10-10 03:03:57 -0400353static LY_ERR
354ext_data_clb(const struct lysc_ext_instance *ext, void *user_data, void **ext_data, ly_bool *ext_data_free)
355{
356 struct ly_ctx *ctx;
357 struct lyd_node *data = NULL;
358
359 ctx = ext->module->ctx;
360 if (user_data) {
361 lyd_parse_data_path(ctx, user_data, LYD_XML, LYD_PARSE_STRICT, LYD_VALIDATE_PRESENT, &data);
362 }
363
364 *ext_data = data;
365 *ext_data_free = 1;
366 return LY_SUCCESS;
367}
368
aPiecek912f3d52022-10-12 10:02:33 +0200369static LY_ERR
370searchpath_strcat(char **searchpaths, const char *path)
371{
372 uint64_t len;
373 char *new;
374
375 if (!(*searchpaths)) {
376 *searchpaths = strdup(path);
377 return LY_SUCCESS;
378 }
379
380 len = strlen(*searchpaths) + strlen(path) + strlen(PATH_SEPARATOR);
381 new = realloc(*searchpaths, sizeof(char) * len + 1);
382 if (!new) {
383 return LY_EMEM;
384 }
385 strcat(new, PATH_SEPARATOR);
386 strcat(new, path);
387 *searchpaths = new;
388
389 return LY_SUCCESS;
390}
391
Radek Krejcie9f13b12020-11-09 17:42:04 +0100392static int
393fill_context_inputs(int argc, char *argv[], struct context *c)
394{
Michal Vasko24aaf8e2022-02-04 11:15:26 +0100395 struct ly_in *in = NULL;
Michal Vasko686d8fc2021-11-22 10:03:23 +0100396 struct schema_features *sf;
Michal Vaskoc91fb122021-11-23 09:00:17 +0100397 struct lys_module *mod;
aPiecek912f3d52022-10-12 10:02:33 +0200398 const char *all_features[] = {"*", NULL};
Michal Vasko24aaf8e2022-02-04 11:15:26 +0100399 char *dir = NULL, *module = NULL;
400
aPiecek912f3d52022-10-12 10:02:33 +0200401 /* Create libyang context. */
Michal Vasko24aaf8e2022-02-04 11:15:26 +0100402 if (c->yang_lib_file) {
403 /* ignore features */
404 ly_set_erase(&c->schema_features, free_features);
405
aPiecek912f3d52022-10-12 10:02:33 +0200406 if (ly_ctx_new_ylpath(c->searchpaths, c->yang_lib_file, LYD_UNKNOWN, c->ctx_options, &c->ctx)) {
ekinzie0ab8b302022-10-10 03:03:57 -0400407 YLMSG_E("Unable to modify libyang context with yang-library data.\n");
Michal Vasko24aaf8e2022-02-04 11:15:26 +0100408 return -1;
409 }
410 } else {
411 /* set imp feature flag if all should be enabled */
aPiecek912f3d52022-10-12 10:02:33 +0200412 c->ctx_options |= !c->schema_features.count ? LY_CTX_ENABLE_IMP_FEATURES : 0;
Michal Vasko24aaf8e2022-02-04 11:15:26 +0100413
aPiecek912f3d52022-10-12 10:02:33 +0200414 if (ly_ctx_new(c->searchpaths, c->ctx_options, &c->ctx)) {
415 YLMSG_E("Unable to create libyang context\n");
Michal Vasko24aaf8e2022-02-04 11:15:26 +0100416 return -1;
417 }
aPiecek912f3d52022-10-12 10:02:33 +0200418 }
Michal Vasko24aaf8e2022-02-04 11:15:26 +0100419
aPiecek912f3d52022-10-12 10:02:33 +0200420 /* set callback providing run-time extension instance data */
421 if (c->schema_context_filename) {
422 ly_ctx_set_ext_data_clb(c->ctx, ext_data_clb, c->schema_context_filename);
Michal Vasko24aaf8e2022-02-04 11:15:26 +0100423 }
Radek Krejcie9f13b12020-11-09 17:42:04 +0100424
Michal Vasko3f08fb92022-04-21 09:52:35 +0200425 /* process the operational and/or reply RPC content if any */
Radek Krejcie9f13b12020-11-09 17:42:04 +0100426 if (c->data_operational.path) {
427 if (get_input(c->data_operational.path, NULL, &c->data_operational.format, &c->data_operational.in)) {
428 return -1;
429 }
430 }
Michal Vasko3f08fb92022-04-21 09:52:35 +0200431 if (c->reply_rpc.path) {
432 if (get_input(c->reply_rpc.path, NULL, &c->reply_rpc.format, &c->reply_rpc.in)) {
433 return -1;
434 }
435 }
Radek Krejcie9f13b12020-11-09 17:42:04 +0100436
437 for (int i = 0; i < argc - optind; i++) {
438 LYS_INFORMAT format_schema = LYS_IN_UNKNOWN;
439 LYD_FORMAT format_data = LYD_UNKNOWN;
Radek Krejcie9f13b12020-11-09 17:42:04 +0100440
441 if (get_input(argv[optind + i], &format_schema, &format_data, &in)) {
Radek Krejcif2afd672020-11-26 12:29:23 +0100442 goto error;
Radek Krejcie9f13b12020-11-09 17:42:04 +0100443 }
444
445 if (format_schema) {
446 LY_ERR ret;
447 uint8_t path_unset = 1; /* flag to unset the path from the searchpaths list (if not already present) */
Michal Vasko59740872021-11-22 10:01:34 +0100448 const char **features;
Radek Krejcie9f13b12020-11-09 17:42:04 +0100449
Michal Vasko24aaf8e2022-02-04 11:15:26 +0100450 /* parse the input */
Radek Krejcie9f13b12020-11-09 17:42:04 +0100451 if (parse_schema_path(argv[optind + i], &dir, &module)) {
Radek Krejcif2afd672020-11-26 12:29:23 +0100452 goto error;
Radek Krejcie9f13b12020-11-09 17:42:04 +0100453 }
454
Michal Vasko24aaf8e2022-02-04 11:15:26 +0100455 if (c->yang_lib_file) {
456 /* just get the module, it should already be parsed */
457 mod = ly_ctx_get_module_implemented(c->ctx, module);
458 if (!mod) {
459 YLMSG_E("Schema module \"%s\" not implemented in yang-library data.\n", module);
460 goto error;
461 }
Michal Vasko59740872021-11-22 10:01:34 +0100462 } else {
Michal Vasko24aaf8e2022-02-04 11:15:26 +0100463 /* add temporarily also the path of the module itself */
464 if (ly_ctx_set_searchdir(c->ctx, dir) == LY_EEXIST) {
465 path_unset = 0;
466 }
467
468 /* get features list for this module */
469 if (!c->schema_features.count) {
470 features = all_features;
471 } else {
472 get_features(&c->schema_features, module, &features);
473 }
474
475 /* parse module */
476 ret = lys_parse(c->ctx, in, format_schema, features, &mod);
477 ly_ctx_unset_searchdir_last(c->ctx, path_unset);
478 if (ret) {
479 YLMSG_E("Parsing schema module \"%s\" failed.\n", argv[optind + i]);
480 goto error;
481 }
Michal Vasko703370c2021-10-19 14:07:16 +0200482 }
483
Radek Krejcie9f13b12020-11-09 17:42:04 +0100484 /* temporary cleanup */
485 free(dir);
Michal Vasko24aaf8e2022-02-04 11:15:26 +0100486 dir = NULL;
Radek Krejcie9f13b12020-11-09 17:42:04 +0100487 free(module);
Michal Vasko24aaf8e2022-02-04 11:15:26 +0100488 module = NULL;
Radek Krejcie9f13b12020-11-09 17:42:04 +0100489
roman300b8782022-08-11 12:49:21 +0200490 if (c->schema_out_format || c->feature_param_format) {
Michal Vasko24aaf8e2022-02-04 11:15:26 +0100491 /* module will be printed */
Radek Krejcie9f13b12020-11-09 17:42:04 +0100492 if (ly_set_add(&c->schema_modules, (void *)mod, 1, NULL)) {
493 YLMSG_E("Storing parsed schema module (%s) for print failed.\n", argv[optind + i]);
Radek Krejcif2afd672020-11-26 12:29:23 +0100494 goto error;
Radek Krejcie9f13b12020-11-09 17:42:04 +0100495 }
496 }
Radek Krejcie9f13b12020-11-09 17:42:04 +0100497 } else if (format_data) {
Radek Krejci6784a4e2020-12-09 14:23:05 +0100498 if (!fill_cmdline_file(&c->data_inputs, in, argv[optind + i], format_data)) {
Radek Krejcif2afd672020-11-26 12:29:23 +0100499 goto error;
Radek Krejcie9f13b12020-11-09 17:42:04 +0100500 }
Radek Krejcif53b0d52020-12-03 11:29:24 +0100501 in = NULL;
Radek Krejcie9f13b12020-11-09 17:42:04 +0100502 }
Michal Vasko24aaf8e2022-02-04 11:15:26 +0100503
504 ly_in_free(in, 1);
505 in = NULL;
Radek Krejcie9f13b12020-11-09 17:42:04 +0100506 }
507
Michal Vaskoc91fb122021-11-23 09:00:17 +0100508 /* check that all specified features were applied, apply now if possible */
509 while ((sf = get_features_not_applied(&c->schema_features))) {
510 /* try to find implemented or the latest revision of this module */
511 mod = ly_ctx_get_module_implemented(c->ctx, sf->mod_name);
512 if (!mod) {
513 mod = ly_ctx_get_module_latest(c->ctx, sf->mod_name);
Michal Vasko686d8fc2021-11-22 10:03:23 +0100514 }
Michal Vaskoc91fb122021-11-23 09:00:17 +0100515 if (!mod) {
516 YLMSG_E("Specified features not applied, module \"%s\" not loaded.\n", sf->mod_name);
517 goto error;
518 }
519
520 /* we have the module, implement it if needed and enable the specific features */
521 if (lys_set_implemented(mod, (const char **)sf->features)) {
522 YLMSG_E("Implementing module \"%s\" failed.\n", mod->name);
523 goto error;
524 }
525 sf->applied = 1;
Michal Vasko686d8fc2021-11-22 10:03:23 +0100526 }
527
Radek Krejcie9f13b12020-11-09 17:42:04 +0100528 return 0;
Radek Krejcif2afd672020-11-26 12:29:23 +0100529
530error:
531 ly_in_free(in, 1);
Michal Vasko24aaf8e2022-02-04 11:15:26 +0100532 free(dir);
533 free(module);
Radek Krejcif2afd672020-11-26 12:29:23 +0100534 return -1;
Radek Krejcie9f13b12020-11-09 17:42:04 +0100535}
536
537/**
538 * @brief Process command line options and store the settings into the context.
539 *
540 * return -1 in case of error;
541 * return 0 in case of success and ready to process
542 * return 1 in case of success, but expect to exit.
Radek Krejcied5acc52019-04-25 15:57:04 +0200543 */
544static int
Radek Krejcie9f13b12020-11-09 17:42:04 +0100545fill_context(int argc, char *argv[], struct context *c)
Radek Krejcied5acc52019-04-25 15:57:04 +0200546{
Radek Krejcie9f13b12020-11-09 17:42:04 +0100547 int ret;
Radek Krejcie7b95092019-05-15 11:03:07 +0200548
Radek Krejcie9f13b12020-11-09 17:42:04 +0100549 int opt, opt_index;
Radek Krejcied5acc52019-04-25 15:57:04 +0200550 struct option options[] = {
Michal Vasko24aaf8e2022-02-04 11:15:26 +0100551 {"help", no_argument, NULL, 'h'},
552 {"version", no_argument, NULL, 'v'},
553 {"verbose", no_argument, NULL, 'V'},
554 {"quiet", no_argument, NULL, 'Q'},
555 {"format", required_argument, NULL, 'f'},
556 {"path", required_argument, NULL, 'p'},
Michal Vaskod8b0e772022-03-18 13:36:04 +0100557 {"disable-searchdir", no_argument, NULL, 'D'},
Michal Vasko24aaf8e2022-02-04 11:15:26 +0100558 {"features", required_argument, NULL, 'F'},
559 {"make-implemented", no_argument, NULL, 'i'},
560 {"schema-node", required_argument, NULL, 'P'},
561 {"single-node", no_argument, NULL, 'q'},
562 {"submodule", required_argument, NULL, 's'},
ekinzie0ab8b302022-10-10 03:03:57 -0400563 {"ext-data", required_argument, NULL, 'x'},
Michal Vasko24aaf8e2022-02-04 11:15:26 +0100564 {"not-strict", no_argument, NULL, 'n'},
565 {"present", no_argument, NULL, 'e'},
566 {"type", required_argument, NULL, 't'},
567 {"default", required_argument, NULL, 'd'},
aPiecek1b629762023-04-12 13:52:30 +0200568 {"data-xpath", required_argument, NULL, 'E'},
Michal Vasko24aaf8e2022-02-04 11:15:26 +0100569 {"list", no_argument, NULL, 'l'},
570 {"tree-line-length", required_argument, NULL, 'L'},
571 {"output", required_argument, NULL, 'o'},
572 {"operational", required_argument, NULL, 'O'},
Michal Vasko3f08fb92022-04-21 09:52:35 +0200573 {"reply-rpc", required_argument, NULL, 'R'},
Michal Vasko24aaf8e2022-02-04 11:15:26 +0100574 {"merge", no_argument, NULL, 'm'},
575 {"yang-library", no_argument, NULL, 'y'},
576 {"yang-library-file", required_argument, NULL, 'Y'},
stewegd8e2fc92023-05-31 09:52:56 +0200577 {"extended-leafref", no_argument, NULL, 'X'},
Michal Vaskoc40548b2021-09-30 13:05:47 +0200578#ifndef NDEBUG
579 {"debug", required_argument, NULL, 'G'},
580#endif
Radek Krejcied5acc52019-04-25 15:57:04 +0200581 {NULL, 0, NULL, 0}
582 };
Radek Krejcie9f13b12020-11-09 17:42:04 +0100583 uint8_t data_type_set = 0;
584
Michal Vasko24aaf8e2022-02-04 11:15:26 +0100585 c->ctx_options = YL_DEFAULT_CTX_OPTIONS;
Michal Vasko667ce6b2021-01-25 15:00:27 +0100586 c->data_parse_options = YL_DEFAULT_DATA_PARSE_OPTIONS;
Michal Vasko05eaf832023-02-10 09:21:46 +0100587 c->data_validate_options = YL_DEFAULT_DATA_VALIDATE_OPTIONS;
aPiecek2cfeeae2021-04-21 13:17:34 +0200588 c->line_length = 0;
Michal Vasko667ce6b2021-01-25 15:00:27 +0100589
Michal Vasko27a4acb2021-11-22 10:03:46 +0100590 opterr = 0;
Radek Krejcied5acc52019-04-25 15:57:04 +0200591#ifndef NDEBUG
aPiecek1b629762023-04-12 13:52:30 +0200592 while ((opt = getopt_long(argc, argv, "hvVQf:p:DF:iP:qs:neE:t:d:lL:o:O:R:myY:Xx:G:", options, &opt_index)) != -1)
Michal Vasko27a4acb2021-11-22 10:03:46 +0100593#else
aPiecek1b629762023-04-12 13:52:30 +0200594 while ((opt = getopt_long(argc, argv, "hvVQf:p:DF:iP:qs:neE:t:d:lL:o:O:R:myY:Xx:", options, &opt_index)) != -1)
Radek Krejcied5acc52019-04-25 15:57:04 +0200595#endif
Michal Vasko03fe6202022-07-22 16:23:13 +0200596 {
Radek Krejcied5acc52019-04-25 15:57:04 +0200597 switch (opt) {
Michal Vaskoc40548b2021-09-30 13:05:47 +0200598 case 'h': /* --help */
599 help(0);
600 return 1;
601
602 case 'v': /* --version */
603 version();
604 return 1;
605
606 case 'V': { /* --verbose */
607 LY_LOG_LEVEL verbosity = ly_log_level(LY_LLERR);
Michal Vasko2bf4af42023-01-04 12:08:38 +0100608
Michal Vaskoc40548b2021-09-30 13:05:47 +0200609 if (verbosity < LY_LLDBG) {
Michal Vaskob0d307b2021-11-25 11:15:16 +0100610 ++verbosity;
Radek Krejcied5acc52019-04-25 15:57:04 +0200611 }
Michal Vaskob0d307b2021-11-25 11:15:16 +0100612 ly_log_level(verbosity);
Radek Krejcied5acc52019-04-25 15:57:04 +0200613 break;
Michal Vaskoc40548b2021-09-30 13:05:47 +0200614 } /* case 'V' */
Radek Krejcie9f13b12020-11-09 17:42:04 +0100615
Michal Vaskob0d307b2021-11-25 11:15:16 +0100616 case 'Q': { /* --quiet */
617 LY_LOG_LEVEL verbosity = ly_log_level(LY_LLERR);
Michal Vasko2bf4af42023-01-04 12:08:38 +0100618
Michal Vaskob0d307b2021-11-25 11:15:16 +0100619 if (verbosity == LY_LLERR) {
620 /* turn logging off */
621 ly_log_options(LY_LOSTORE_LAST);
622 } else if (verbosity > LY_LLERR) {
623 --verbosity;
624 }
625 ly_log_level(verbosity);
626 break;
627 } /* case 'Q' */
628
Radek Krejcie9f13b12020-11-09 17:42:04 +0100629 case 'f': /* --format */
630 if (!strcasecmp(optarg, "yang")) {
631 c->schema_out_format = LYS_OUT_YANG;
632 c->data_out_format = 0;
633 } else if (!strcasecmp(optarg, "yin")) {
634 c->schema_out_format = LYS_OUT_YIN;
635 c->data_out_format = 0;
636 } else if (!strcasecmp(optarg, "info")) {
637 c->schema_out_format = LYS_OUT_YANG_COMPILED;
638 c->data_out_format = 0;
639 } else if (!strcasecmp(optarg, "tree")) {
640 c->schema_out_format = LYS_OUT_TREE;
641 c->data_out_format = 0;
642 } else if (!strcasecmp(optarg, "xml")) {
643 c->schema_out_format = 0;
644 c->data_out_format = LYD_XML;
645 } else if (!strcasecmp(optarg, "json")) {
646 c->schema_out_format = 0;
647 c->data_out_format = LYD_JSON;
Michal Vaskod8b0e772022-03-18 13:36:04 +0100648 } else if (!strcasecmp(optarg, "lyb")) {
649 c->schema_out_format = 0;
650 c->data_out_format = LYD_LYB;
roman300b8782022-08-11 12:49:21 +0200651 } else if (!strcasecmp(optarg, "feature-param")) {
652 c->feature_param_format = 1;
Radek Krejcied5acc52019-04-25 15:57:04 +0200653 } else {
Radek Krejcie9f13b12020-11-09 17:42:04 +0100654 YLMSG_E("Unknown output format %s\n", optarg);
Radek Krejcied5acc52019-04-25 15:57:04 +0200655 help(1);
Radek Krejcie9f13b12020-11-09 17:42:04 +0100656 return -1;
Radek Krejcied5acc52019-04-25 15:57:04 +0200657 }
658 break;
Radek Krejcie9f13b12020-11-09 17:42:04 +0100659
Michal Vaskoc40548b2021-09-30 13:05:47 +0200660 case 'p': { /* --path */
661 struct stat st;
662
663 if (stat(optarg, &st) == -1) {
664 YLMSG_E("Unable to use search path (%s) - %s.\n", optarg, strerror(errno));
665 return -1;
666 }
667 if (!S_ISDIR(st.st_mode)) {
668 YLMSG_E("Provided search path is not a directory.\n");
669 return -1;
670 }
671
aPiecek912f3d52022-10-12 10:02:33 +0200672 if (searchpath_strcat(&c->searchpaths, optarg)) {
Michal Vaskoc40548b2021-09-30 13:05:47 +0200673 YLMSG_E("Storing searchpath failed.\n");
674 return -1;
675 }
676
677 break;
678 } /* case 'p' */
679
680 case 'D': /* --disable-search */
Michal Vasko24aaf8e2022-02-04 11:15:26 +0100681 if (c->ctx_options & LY_CTX_DISABLE_SEARCHDIRS) {
Michal Vaskoc40548b2021-09-30 13:05:47 +0200682 YLMSG_W("The -D option specified too many times.\n");
683 }
Michal Vasko24aaf8e2022-02-04 11:15:26 +0100684 if (c->ctx_options & LY_CTX_DISABLE_SEARCHDIR_CWD) {
685 c->ctx_options &= ~LY_CTX_DISABLE_SEARCHDIR_CWD;
686 c->ctx_options |= LY_CTX_DISABLE_SEARCHDIRS;
Michal Vaskoc40548b2021-09-30 13:05:47 +0200687 } else {
Michal Vasko24aaf8e2022-02-04 11:15:26 +0100688 c->ctx_options |= LY_CTX_DISABLE_SEARCHDIR_CWD;
Michal Vaskoc40548b2021-09-30 13:05:47 +0200689 }
690 break;
691
692 case 'F': /* --features */
693 if (parse_features(optarg, &c->schema_features)) {
694 return -1;
695 }
696 break;
697
Michal Vasko8d6d0ad2021-10-19 12:32:27 +0200698 case 'i': /* --make-implemented */
Michal Vasko24aaf8e2022-02-04 11:15:26 +0100699 if (c->ctx_options & LY_CTX_REF_IMPLEMENTED) {
700 c->ctx_options &= ~LY_CTX_REF_IMPLEMENTED;
701 c->ctx_options |= LY_CTX_ALL_IMPLEMENTED;
Michal Vaskoc40548b2021-09-30 13:05:47 +0200702 } else {
Michal Vasko24aaf8e2022-02-04 11:15:26 +0100703 c->ctx_options |= LY_CTX_REF_IMPLEMENTED;
Michal Vaskoc40548b2021-09-30 13:05:47 +0200704 }
705 break;
706
Radek Krejcie9f13b12020-11-09 17:42:04 +0100707 case 'P': /* --schema-node */
708 c->schema_node_path = optarg;
Radek Krejcied5acc52019-04-25 15:57:04 +0200709 break;
Radek Krejcie9f13b12020-11-09 17:42:04 +0100710
711 case 'q': /* --single-node */
712 c->schema_print_options |= LYS_PRINT_NO_SUBSTMT;
713 break;
714
Michal Vaskofe74d1e2021-09-30 13:17:36 +0200715 case 's': /* --submodule */
716 c->submodule = optarg;
717 break;
718
ekinzie0ab8b302022-10-10 03:03:57 -0400719 case 'x': /* --ext-data */
720 c->schema_context_filename = strdup(optarg);
721 break;
722
Michal Vasko667ce6b2021-01-25 15:00:27 +0100723 case 'n': /* --not-strict */
724 c->data_parse_options &= ~LYD_PARSE_STRICT;
Radek Krejcie9f13b12020-11-09 17:42:04 +0100725 break;
726
727 case 'e': /* --present */
728 c->data_validate_options |= LYD_VALIDATE_PRESENT;
729 break;
730
731 case 't': /* --type */
732 if (data_type_set) {
733 YLMSG_E("The data type (-t) cannot be set multiple times.\n");
734 return -1;
735 }
736
737 if (!strcasecmp(optarg, "config")) {
738 c->data_parse_options |= LYD_PARSE_NO_STATE;
Michal Vaskof6bda332021-02-01 08:59:03 +0100739 c->data_validate_options |= LYD_VALIDATE_NO_STATE;
Radek Krejcie9f13b12020-11-09 17:42:04 +0100740 } else if (!strcasecmp(optarg, "get")) {
741 c->data_parse_options |= LYD_PARSE_ONLY;
742 } else if (!strcasecmp(optarg, "getconfig") || !strcasecmp(optarg, "get-config")) {
743 c->data_parse_options |= LYD_PARSE_ONLY | LYD_PARSE_NO_STATE;
744 } else if (!strcasecmp(optarg, "edit")) {
745 c->data_parse_options |= LYD_PARSE_ONLY;
Michal Vasko3f08fb92022-04-21 09:52:35 +0200746 } else if (!strcasecmp(optarg, "rpc")) {
Michal Vasko1e4c68e2021-02-18 15:03:01 +0100747 c->data_type = LYD_TYPE_RPC_YANG;
Michal Vasko3f08fb92022-04-21 09:52:35 +0200748 } else if (!strcasecmp(optarg, "nc-rpc")) {
749 c->data_type = LYD_TYPE_RPC_NETCONF;
750 } else if (!strcasecmp(optarg, "reply")) {
Michal Vasko1e4c68e2021-02-18 15:03:01 +0100751 c->data_type = LYD_TYPE_REPLY_YANG;
Michal Vasko3f08fb92022-04-21 09:52:35 +0200752 } else if (!strcasecmp(optarg, "nc-reply")) {
753 c->data_type = LYD_TYPE_REPLY_NETCONF;
754 } else if (!strcasecmp(optarg, "notif")) {
Michal Vasko1e4c68e2021-02-18 15:03:01 +0100755 c->data_type = LYD_TYPE_NOTIF_YANG;
Michal Vasko3f08fb92022-04-21 09:52:35 +0200756 } else if (!strcasecmp(optarg, "nc-notif")) {
757 c->data_type = LYD_TYPE_NOTIF_NETCONF;
Radek Krejcie9f13b12020-11-09 17:42:04 +0100758 } else if (!strcasecmp(optarg, "data")) {
759 /* default option */
760 } else {
761 YLMSG_E("Unknown data tree type %s\n", optarg);
762 help(1);
763 return -1;
764 }
765
766 data_type_set = 1;
767 break;
768
Michal Vaskoc40548b2021-09-30 13:05:47 +0200769 case 'd': /* --default */
770 if (!strcasecmp(optarg, "all")) {
771 c->data_print_options = (c->data_print_options & ~LYD_PRINT_WD_MASK) | LYD_PRINT_WD_ALL;
772 } else if (!strcasecmp(optarg, "all-tagged")) {
773 c->data_print_options = (c->data_print_options & ~LYD_PRINT_WD_MASK) | LYD_PRINT_WD_ALL_TAG;
774 } else if (!strcasecmp(optarg, "trim")) {
775 c->data_print_options = (c->data_print_options & ~LYD_PRINT_WD_MASK) | LYD_PRINT_WD_TRIM;
776 } else if (!strcasecmp(optarg, "implicit-tagged")) {
777 c->data_print_options = (c->data_print_options & ~LYD_PRINT_WD_MASK) | LYD_PRINT_WD_IMPL_TAG;
778 } else {
779 YLMSG_E("Unknown default mode %s\n", optarg);
780 help(1);
781 return -1;
782 }
783 break;
784
aPiecek1b629762023-04-12 13:52:30 +0200785 case 'E': /* --data-xpath */
786 if (ly_set_add(&c->data_xpath, optarg, 0, NULL)) {
787 YLMSG_E("Storing XPath \"%s\" failed.\n", optarg);
788 return -1;
789 }
790 break;
791
Michal Vaskoc40548b2021-09-30 13:05:47 +0200792 case 'l': /* --list */
793 c->list = 1;
794 break;
795
796 case 'L': /* --tree-line-length */
797 c->line_length = atoi(optarg);
798 break;
799
800 case 'o': /* --output */
801 if (c->out) {
802 YLMSG_E("Only a single output can be specified.\n");
803 return -1;
804 } else {
805 if (ly_out_new_filepath(optarg, &c->out)) {
806 YLMSG_E("Unable open output file %s (%s)\n", optarg, strerror(errno));
807 return -1;
808 }
809 }
810 break;
811
Radek Krejcie9f13b12020-11-09 17:42:04 +0100812 case 'O': /* --operational */
813 if (c->data_operational.path) {
814 YLMSG_E("The operational datastore (-O) cannot be set multiple times.\n");
815 return -1;
816 }
817 c->data_operational.path = optarg;
818 break;
819
Michal Vasko3f08fb92022-04-21 09:52:35 +0200820 case 'R': /* --reply-rpc */
821 if (c->reply_rpc.path) {
822 YLMSG_E("The PRC of the reply (-R) cannot be set multiple times.\n");
823 return -1;
824 }
825 c->reply_rpc.path = optarg;
826 break;
827
Radek Krejcie9f13b12020-11-09 17:42:04 +0100828 case 'm': /* --merge */
829 c->data_merge = 1;
830 break;
831
Michal Vaskoc431a0a2021-01-25 14:31:58 +0100832 case 'y': /* --yang-library */
Michal Vasko24aaf8e2022-02-04 11:15:26 +0100833 c->ctx_options &= ~LY_CTX_NO_YANGLIBRARY;
834 break;
835
836 case 'Y': /* --yang-library-file */
837 c->ctx_options &= ~LY_CTX_NO_YANGLIBRARY;
838 c->yang_lib_file = optarg;
Michal Vaskoc431a0a2021-01-25 14:31:58 +0100839 break;
840
stewegd8e2fc92023-05-31 09:52:56 +0200841 case 'X': /* --extended-leafref */
842 c->ctx_options |= LY_CTX_LEAFREF_EXTENDED;
843 break;
844
Radek Krejcied5acc52019-04-25 15:57:04 +0200845#ifndef NDEBUG
Radek Krejcie9f13b12020-11-09 17:42:04 +0100846 case 'G': { /* --debug */
847 uint32_t dbg_groups = 0;
848 const char *ptr = optarg;
849
Radek Krejcied5acc52019-04-25 15:57:04 +0200850 while (ptr[0]) {
Radek Krejcif13b87b2020-12-01 22:02:17 +0100851 if (!strncasecmp(ptr, "dict", sizeof "dict" - 1)) {
Radek Krejcie9f13b12020-11-09 17:42:04 +0100852 dbg_groups |= LY_LDGDICT;
Radek Krejcif13b87b2020-12-01 22:02:17 +0100853 ptr += sizeof "dict" - 1;
854 } else if (!strncasecmp(ptr, "xpath", sizeof "xpath" - 1)) {
Radek Krejcie9f13b12020-11-09 17:42:04 +0100855 dbg_groups |= LY_LDGXPATH;
Radek Krejcif13b87b2020-12-01 22:02:17 +0100856 ptr += sizeof "xpath" - 1;
Michal Vasko27a4acb2021-11-22 10:03:46 +0100857 } else if (!strncasecmp(ptr, "dep-sets", sizeof "dep-sets" - 1)) {
858 dbg_groups |= LY_LDGDEPSETS;
859 ptr += sizeof "dep-sets" - 1;
Radek Krejcied5acc52019-04-25 15:57:04 +0200860 }
861
862 if (ptr[0]) {
863 if (ptr[0] != ',') {
Radek Krejcie9f13b12020-11-09 17:42:04 +0100864 YLMSG_E("Unknown debug group string \"%s\"\n", optarg);
865 return -1;
Radek Krejcied5acc52019-04-25 15:57:04 +0200866 }
867 ++ptr;
868 }
869 }
Radek Krejcie9f13b12020-11-09 17:42:04 +0100870 ly_log_dbg_groups(dbg_groups);
Radek Krejcied5acc52019-04-25 15:57:04 +0200871 break;
Radek Krejcie9f13b12020-11-09 17:42:04 +0100872 } /* case 'G' */
Radek Krejcied5acc52019-04-25 15:57:04 +0200873#endif
Michal Vasko27a4acb2021-11-22 10:03:46 +0100874 default:
875 YLMSG_E("Invalid option or missing argument: -%c\n", optopt);
876 return -1;
Radek Krejcie9f13b12020-11-09 17:42:04 +0100877 } /* switch */
878 }
879
Radek Krejcie9f13b12020-11-09 17:42:04 +0100880 /* additional checks for the options combinations */
881 if (!c->list && (optind >= argc)) {
882 help(1);
883 YLMSG_E("Missing <schema> to process.\n");
884 return 1;
885 }
886
aPiecek1b629762023-04-12 13:52:30 +0200887 if (c->data_xpath.count) {
888 c->data_merge = 1;
889 }
890 if (c->data_xpath.count && (c->schema_out_format || c->data_out_format)) {
891 YLMSG_E("The --format option cannot be combined with --data-xpath option.\n");
892 return -1;
893 }
894 if (c->data_xpath.count && (c->data_print_options & LYD_PRINT_WD_MASK)) {
895 YLMSG_E("The --default option cannot be combined with --data-xpath option.\n");
896 return -1;
897 }
898
Radek Krejcie9f13b12020-11-09 17:42:04 +0100899 if (c->data_merge) {
900 if (c->data_type || (c->data_parse_options & LYD_PARSE_ONLY)) {
901 /* switch off the option, incompatible input data type */
902 c->data_merge = 0;
903 } else {
904 /* postpone validation after the merge of all the input data */
905 c->data_parse_options |= LYD_PARSE_ONLY;
Radek Krejcied5acc52019-04-25 15:57:04 +0200906 }
907 }
908
Radek Krejcie9f13b12020-11-09 17:42:04 +0100909 if (c->data_operational.path && !c->data_type) {
Michal Vasko3f08fb92022-04-21 09:52:35 +0200910 YLMSG_E("Operational datastore takes effect only with RPCs/Actions/Replies/Notification input data types.\n");
Radek Krejcie9f13b12020-11-09 17:42:04 +0100911 c->data_operational.path = NULL;
Radek Krejcied5acc52019-04-25 15:57:04 +0200912 }
Radek Krejcie9f13b12020-11-09 17:42:04 +0100913
Michal Vasko3f08fb92022-04-21 09:52:35 +0200914 if (c->reply_rpc.path && (c->data_type != LYD_TYPE_REPLY_NETCONF)) {
915 YLMSG_E("Source RPC is needed only for NETCONF Reply input data type.\n");
916 c->data_operational.path = NULL;
917 } else if (!c->reply_rpc.path && (c->data_type == LYD_TYPE_REPLY_NETCONF)) {
918 YLMSG_E("Missing source RPC (-R) for NETCONF Reply input data type.\n");
919 return -1;
920 }
921
aPiecek2cfeeae2021-04-21 13:17:34 +0200922 if ((c->schema_out_format != LYS_OUT_TREE) && c->line_length) {
923 YLMSG_E("--tree-line-length take effect only in case of the tree output format.\n");
924 }
925
Radek Krejcie9f13b12020-11-09 17:42:04 +0100926 /* default output stream */
927 if (!c->out) {
928 if (ly_out_new_file(stdout, &c->out)) {
929 YLMSG_E("Unable to set stdout as output.\n");
930 return -1;
Radek Krejcied5acc52019-04-25 15:57:04 +0200931 }
932 }
Radek Krejcie9f13b12020-11-09 17:42:04 +0100933
aPiecek7ac66d52021-05-20 07:54:07 +0200934 if (c->schema_out_format == LYS_OUT_TREE) {
935 /* print tree from lysc_nodes */
Michal Vasko24aaf8e2022-02-04 11:15:26 +0100936 c->ctx_options |= LY_CTX_SET_PRIV_PARSED;
aPiecek7ac66d52021-05-20 07:54:07 +0200937 }
938
Radek Krejcie9f13b12020-11-09 17:42:04 +0100939 /* process input files provided as standalone command line arguments,
940 * schema modules are parsed and inserted into the context,
941 * data files are just checked and prepared into internal structures for further processing */
942 ret = fill_context_inputs(argc, argv, c);
943 if (ret) {
944 return ret;
945 }
946
947 /* the second batch of checks */
948 if (c->schema_print_options && !c->schema_out_format) {
949 YLMSG_W("Schema printer options specified, but the schema output format is missing.\n");
950 }
951 if (c->schema_parse_options && !c->schema_modules.count) {
952 YLMSG_W("Schema parser options specified, but no schema input file provided.\n");
953 }
954 if (c->data_print_options && !c->data_out_format) {
955 YLMSG_W("data printer options specified, but the data output format is missing.\n");
956 }
Michal Vasko667ce6b2021-01-25 15:00:27 +0100957 if (((c->data_parse_options != YL_DEFAULT_DATA_PARSE_OPTIONS) || c->data_type) && !c->data_inputs.count) {
Radek Krejcie9f13b12020-11-09 17:42:04 +0100958 YLMSG_W("Data parser options specified, but no data input file provided.\n");
959 }
960
961 if (c->schema_node_path) {
962 c->schema_node = lys_find_path(c->ctx, NULL, c->schema_node_path, 0);
963 if (!c->schema_node) {
964 c->schema_node = lys_find_path(c->ctx, NULL, c->schema_node_path, 1);
965
966 if (!c->schema_node) {
967 YLMSG_E("Invalid schema path.\n");
968 return -1;
969 }
Radek Krejcied5acc52019-04-25 15:57:04 +0200970 }
Radek Krejcied5acc52019-04-25 15:57:04 +0200971 }
Radek Krejcie9f13b12020-11-09 17:42:04 +0100972
Radek Krejcie9f13b12020-11-09 17:42:04 +0100973 return 0;
974}
975
976int
977main_ni(int argc, char *argv[])
978{
979 int ret = EXIT_SUCCESS, r;
980 struct context c = {0};
roman300b8782022-08-11 12:49:21 +0200981 char *features_output = NULL;
982 struct ly_set set = {0};
983 uint32_t u;
Radek Krejcied5acc52019-04-25 15:57:04 +0200984
985 /* set callback for printing libyang messages */
986 ly_set_log_clb(libyang_verbclb, 1);
Radek Krejcie9f13b12020-11-09 17:42:04 +0100987
988 r = fill_context(argc, argv, &c);
989 if (r < 0) {
990 ret = EXIT_FAILURE;
Radek Krejcied5acc52019-04-25 15:57:04 +0200991 }
Radek Krejcie9f13b12020-11-09 17:42:04 +0100992 if (r) {
Radek Krejcied5acc52019-04-25 15:57:04 +0200993 goto cleanup;
994 }
995
Radek Krejcie9f13b12020-11-09 17:42:04 +0100996 /* do the required job - parse, validate, print */
997
998 if (c.list) {
999 /* print the list of schemas */
aPiecek34262622023-03-27 08:28:25 +02001000 ret = print_list(c.out, c.ctx, c.data_out_format);
1001 goto cleanup;
Radek Krejci047d64e2020-12-03 12:57:10 +01001002 } else {
roman300b8782022-08-11 12:49:21 +02001003 if (c.feature_param_format) {
1004 for (u = 0; u < c.schema_modules.count; u++) {
1005 if (collect_features(c.schema_modules.objs[u], &set)) {
1006 YLMSG_E("Unable to read features from a module.\n");
1007 goto cleanup;
1008 }
1009 if (generate_features_output(c.schema_modules.objs[u], &set, &features_output)) {
1010 YLMSG_E("Unable to generate feature command output.\n");
1011 goto cleanup;
1012 }
1013 ly_set_erase(&set, NULL);
1014 }
1015 ly_print(c.out, "%s\n", features_output);
1016 } else if (c.schema_out_format) {
Radek Krejci047d64e2020-12-03 12:57:10 +01001017 if (c.schema_node) {
aPiecek146fd192023-03-30 11:22:16 +02001018 ret = lys_print_node(c.out, c.schema_node, c.schema_out_format, c.line_length, c.schema_print_options);
Radek Krejcie9f13b12020-11-09 17:42:04 +01001019 if (ret) {
Radek Krejci047d64e2020-12-03 12:57:10 +01001020 YLMSG_E("Unable to print schema node %s.\n", c.schema_node_path);
Radek Krejcie9f13b12020-11-09 17:42:04 +01001021 goto cleanup;
1022 }
Michal Vaskofe74d1e2021-09-30 13:17:36 +02001023 } else if (c.submodule) {
1024 const struct lysp_submodule *submod = ly_ctx_get_submodule_latest(c.ctx, c.submodule);
Michal Vasko26bbb272022-08-02 14:54:33 +02001025
Michal Vaskofe74d1e2021-09-30 13:17:36 +02001026 if (!submod) {
1027 YLMSG_E("Unable to find submodule %s.\n", c.submodule);
1028 goto cleanup;
1029 }
1030
1031 ret = lys_print_submodule(c.out, submod, c.schema_out_format, c.line_length, c.schema_print_options);
1032 if (ret) {
1033 YLMSG_E("Unable to print submodule %s.\n", submod->name);
1034 goto cleanup;
1035 }
Radek Krejci047d64e2020-12-03 12:57:10 +01001036 } else {
roman300b8782022-08-11 12:49:21 +02001037 for (u = 0; u < c.schema_modules.count; ++u) {
aPiecek2cfeeae2021-04-21 13:17:34 +02001038 ret = lys_print_module(c.out, (struct lys_module *)c.schema_modules.objs[u], c.schema_out_format,
1039 c.line_length, c.schema_print_options);
aPiecek8f0b7882021-05-21 10:18:36 +02001040 /* for YANG Tree Diagrams printing it's more readable to print a blank line between modules. */
1041 if ((c.schema_out_format == LYS_OUT_TREE) && (u + 1 < c.schema_modules.count)) {
1042 ly_print(c.out, "\n");
1043 }
Radek Krejci047d64e2020-12-03 12:57:10 +01001044 if (ret) {
1045 YLMSG_E("Unable to print module %s.\n", ((struct lys_module *)c.schema_modules.objs[u])->name);
1046 goto cleanup;
1047 }
1048 }
Radek Krejcie9f13b12020-11-09 17:42:04 +01001049 }
Radek Krejcied5acc52019-04-25 15:57:04 +02001050 }
Radek Krejci047d64e2020-12-03 12:57:10 +01001051
1052 /* do the data validation despite the schema was printed */
1053 if (c.data_inputs.size) {
Michal Vasko0f1e4562022-03-29 11:57:57 +02001054 ret = process_data(c.ctx, c.data_type, c.data_merge, c.data_out_format, c.out, c.data_parse_options,
aPiecek1b629762023-04-12 13:52:30 +02001055 c.data_validate_options, c.data_print_options, &c.data_operational, &c.reply_rpc, &c.data_inputs,
1056 &c.data_xpath);
Michal Vasko0f1e4562022-03-29 11:57:57 +02001057 if (ret) {
Radek Krejci047d64e2020-12-03 12:57:10 +01001058 goto cleanup;
1059 }
Radek Krejcied5acc52019-04-25 15:57:04 +02001060 }
Radek Krejcied5acc52019-04-25 15:57:04 +02001061 }
Radek Krejcied5acc52019-04-25 15:57:04 +02001062
1063cleanup:
Radek Krejcie9f13b12020-11-09 17:42:04 +01001064 /* cleanup */
1065 erase_context(&c);
roman300b8782022-08-11 12:49:21 +02001066 free(features_output);
1067 ly_set_erase(&set, NULL);
Radek Krejcied5acc52019-04-25 15:57:04 +02001068
Radek Krejcied5acc52019-04-25 15:57:04 +02001069 return ret;
1070}