blob: 3987e08c666562e6c3e2a43116d98713012fe699 [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
aPiecekadb01c42023-06-02 08:28:52 +0200126 /* --reply-rpc */
127 ly_in_free(c->reply_rpc.in, 1);
128
Radek Krejcie9f13b12020-11-09 17:42:04 +0100129 ly_out_free(c->out, NULL, 0);
Radek Krejci90ed21e2021-04-12 14:47:46 +0200130 ly_ctx_destroy(c->ctx);
ekinzie0ab8b302022-10-10 03:03:57 -0400131
132 if (c->schema_context_filename) {
133 free(c->schema_context_filename);
134 }
Radek Krejcie9f13b12020-11-09 17:42:04 +0100135}
136
137static void
138version(void)
139{
140 printf("yanglint %s\n", PROJECT_VERSION);
141}
142
143static void
Radek Krejcied5acc52019-04-25 15:57:04 +0200144help(int shortout)
145{
Radek Krejcie9f13b12020-11-09 17:42:04 +0100146
Michal Vasko3f08fb92022-04-21 09:52:35 +0200147 printf("Example usage:\n"
148 " yanglint [-f { yang | yin | info}] <schema>...\n"
149 " Validates the YANG module <schema>(s) and all its dependencies, optionally printing\n"
150 " them in the specified format.\n\n"
151 " yanglint [-f { xml | json }] <schema>... <file>...\n"
152 " Validates the YANG modeled data <file>(s) according to the <schema>(s) optionally\n"
153 " printing them in the specified format.\n\n"
154 " yanglint -t (nc-)rpc/notif [-O <operational-file>] <schema>... <file>\n"
155 " Validates the YANG/NETCONF RPC/notification <file> according to the <schema>(s) using\n"
156 " <operational-file> with possible references to the operational datastore data.\n\n"
157 " yanglint -t nc-reply -R <rpc-file> [-O <operational-file>] <schema>... <file>\n"
158 " Validates the NETCONF rpc-reply <file> of RPC <rpc-file> according to the <schema>(s)\n"
159 " using <operational-file> with possible references to the operational datastore data.\n\n"
Radek Krejcie9f13b12020-11-09 17:42:04 +0100160 " yanglint\n"
161 " Starts interactive mode with more features.\n\n");
Radek Krejcied5acc52019-04-25 15:57:04 +0200162
163 if (shortout) {
164 return;
165 }
Radek Krejcie9f13b12020-11-09 17:42:04 +0100166 printf("Options:\n"
167 " -h, --help Show this help message and exit.\n"
168 " -v, --version Show version number and exit.\n"
Michal Vaskob0d307b2021-11-25 11:15:16 +0100169 " -V, --verbose Increase libyang verbosity and show verbose messages. If specified\n"
170 " a second time, show even debug messages.\n"
171 " -Q, --quiet Decrease libyang verbosity and hide warnings. If specified a second\n"
172 " time, hide errors so no libyang messages are printed.\n");
Radek Krejcie9f13b12020-11-09 17:42:04 +0100173
Michal Vaskoc40548b2021-09-30 13:05:47 +0200174 printf(" -f FORMAT, --format=FORMAT\n"
175 " Convert input into FORMAT. Supported formats: \n"
roman300b8782022-08-11 12:49:21 +0200176 " yang, yin, tree, info and feature-param for schemas,\n"
Michal Vaskod8b0e772022-03-18 13:36:04 +0100177 " xml, json, and lyb for data.\n\n");
Michal Vaskoc40548b2021-09-30 13:05:47 +0200178
179 printf(" -p PATH, --path=PATH\n"
180 " Search path for schema (YANG/YIN) modules. The option can be\n"
181 " used multiple times. The current working directory and the\n"
aPiecek4f306da2023-03-27 09:06:07 +0200182 " path of the module being added is used implicitly. Subdirectories\n"
183 " are also searched\n\n");
Radek Krejcie9f13b12020-11-09 17:42:04 +0100184
Michal Vasko22e0f3a2021-09-22 12:19:23 +0200185 printf(" -D, --disable-searchdir\n"
Radek Krejcie9f13b12020-11-09 17:42:04 +0100186 " Do not implicitly search in current working directory for\n"
187 " schema modules. If specified a second time, do not even\n"
188 " search in the module directory (all modules must be \n"
Michal Vasko22e0f3a2021-09-22 12:19:23 +0200189 " explicitly specified).\n\n");
Radek Krejcie9f13b12020-11-09 17:42:04 +0100190
Michal Vasko22e0f3a2021-09-22 12:19:23 +0200191 printf(" -F FEATURES, --features=FEATURES\n"
Michal Vasko59740872021-11-22 10:01:34 +0100192 " Specific module features to support in the form <module-name>:(<feature>,)*\n"
193 " Use <feature> '*' to enable all features of a module. This option can be\n"
194 " specified multiple times, to enable features in multiple modules. If this\n"
195 " option is not specified, all the features in all the implemented modules\n"
196 " are enabled.\n\n");
Radek Krejcie9f13b12020-11-09 17:42:04 +0100197
Michal Vasko8d6d0ad2021-10-19 12:32:27 +0200198 printf(" -i, --make-implemented\n"
Radek Krejcie9f13b12020-11-09 17:42:04 +0100199 " Make the imported modules \"referenced\" from any loaded\n"
200 " module also implemented. If specified a second time, all the\n"
Michal Vasko22e0f3a2021-09-22 12:19:23 +0200201 " modules are set implemented.\n\n");
Radek Krejcie9f13b12020-11-09 17:42:04 +0100202
Michal Vasko22e0f3a2021-09-22 12:19:23 +0200203 printf(" -P PATH, --schema-node=PATH\n"
Radek Krejcie9f13b12020-11-09 17:42:04 +0100204 " Print only the specified subtree of the schema.\n"
205 " The PATH is the XPath subset mentioned in documentation as\n"
206 " the Path format. The option can be combined with --single-node\n"
207 " option to print information only about the specified node.\n"
208 " -q, --single-node\n"
209 " Supplement to the --schema-node option to print information\n"
Michal Vasko22e0f3a2021-09-22 12:19:23 +0200210 " only about a single node specified as PATH argument.\n\n");
Radek Krejcie9f13b12020-11-09 17:42:04 +0100211
Michal Vaskofe74d1e2021-09-30 13:17:36 +0200212 printf(" -s SUBMODULE, --submodule=SUBMODULE\n"
213 " Print the specific submodule instead of the main module.\n\n");
214
ekinzie0ab8b302022-10-10 03:03:57 -0400215 printf(" -x FILE, --ext-data=FILE\n"
216 " File containing the specific data required by an extension. Required by\n"
Michal Vasko14662802022-11-08 08:45:46 +0100217 " the schema-mount extension, for example, when the operational data are\n"
ekinzie0ab8b302022-10-10 03:03:57 -0400218 " expected in the file. File format is guessed.\n\n");
219
Michal Vasko22e0f3a2021-09-22 12:19:23 +0200220 printf(" -n, --not-strict\n"
Michal Vasko667ce6b2021-01-25 15:00:27 +0100221 " Do not require strict data parsing (silently skip unknown data),\n"
Michal Vasko22e0f3a2021-09-22 12:19:23 +0200222 " has no effect for schemas.\n\n");
Radek Krejcie9f13b12020-11-09 17:42:04 +0100223
Michal Vasko22e0f3a2021-09-22 12:19:23 +0200224 printf(" -e, --present Validate only with the schema modules whose data actually\n"
Radek Krejcie9f13b12020-11-09 17:42:04 +0100225 " exist in the provided input data files. Takes effect only\n"
226 " with the 'data' or 'config' TYPEs. Used to avoid requiring\n"
227 " mandatory nodes from modules which data are not present in the\n"
Michal Vasko22e0f3a2021-09-22 12:19:23 +0200228 " provided input data files.\n\n");
Radek Krejcie9f13b12020-11-09 17:42:04 +0100229
Michal Vasko22e0f3a2021-09-22 12:19:23 +0200230 printf(" -t TYPE, --type=TYPE\n"
Radek Krejcie9f13b12020-11-09 17:42:04 +0100231 " Specify data tree type in the input data file(s):\n"
232 " data - Complete datastore with status data (default type).\n"
233 " config - Configuration datastore (without status data).\n"
Michal Vasko3f08fb92022-04-21 09:52:35 +0200234 " get - Data returned by the NETCONF <get> operation.\n"
235 " getconfig - Data returned by the NETCONF <get-config> operation.\n"
236 " edit - Config content of the NETCONF <edit-config> operation.\n"
237 " rpc - Invocation of a YANG RPC/action, defined as input.\n"
238 " nc-rpc - Similar to 'rpc' but expect and check also the NETCONF\n"
239 " envelopes <rpc> or <action>.\n"
240 " reply - Reply to a YANG RPC/action, defined as output. Note that\n"
241 " the reply data are expected inside a container representing\n"
242 " the original RPC/action invocation.\n"
243 " nc-reply - Similar to 'reply' but expect and check also the NETCONF\n"
244 " envelope <rpc-reply> with output data nodes as direct\n"
245 " descendants. The original RPC/action invocation is expected\n"
246 " in a separate parameter '-R' and is parsed as 'nc-rpc'.\n"
247 " notif - Notification instance of a YANG notification.\n"
248 " nc-notif - Similar to 'notif' but expect and check also the NETCONF\n"
249 " envelope <notification> with element <eventTime> and its\n"
250 " sibling as the actual notification.\n\n");
Michal Vaskoc40548b2021-09-30 13:05:47 +0200251
252 printf(" -d MODE, --default=MODE\n"
253 " Print data with default values, according to the MODE\n"
254 " (to print attributes, ietf-netconf-with-defaults model\n"
255 " must be loaded):\n"
256 " all - Add missing default nodes.\n"
257 " all-tagged - Add missing default nodes and mark all the default\n"
258 " nodes with the attribute.\n"
259 " trim - Remove all nodes with a default value.\n"
260 " implicit-tagged - Add missing nodes and mark them with the attribute.\n\n");
261
aPiecek1b629762023-04-12 13:52:30 +0200262 printf(" -E XPATH, --data-xpath=XPATH\n"
263 " Evaluate XPATH expression over the data and print the nodes satysfying\n"
264 " the expression. The output format is specific and the option cannot\n"
265 " be combined with the -f and -d options. Also all the data\n"
266 " inputs are merged into a single data tree where the expression\n"
267 " is evaluated, so the -m option is always set implicitly.\n\n");
268
Michal Vaskoc40548b2021-09-30 13:05:47 +0200269 printf(" -l, --list Print info about the loaded schemas.\n"
270 " (i - imported module, I - implemented module)\n"
Michal Vasko24aaf8e2022-02-04 11:15:26 +0100271 " In case the '-f' option with data encoding is specified,\n"
272 " the list is printed as \"ietf-yang-library\" data.\n\n");
Michal Vaskoc40548b2021-09-30 13:05:47 +0200273
274 printf(" -L LINE_LENGTH, --tree-line-length=LINE_LENGTH\n"
275 " The limit of the maximum line length on which the 'tree'\n"
276 " format will try to be printed.\n\n");
277
278 printf(" -o OUTFILE, --output=OUTFILE\n"
279 " Write the output to OUTFILE instead of stdout.\n\n");
Radek Krejcie9f13b12020-11-09 17:42:04 +0100280
Michal Vasko22e0f3a2021-09-22 12:19:23 +0200281 printf(" -O FILE, --operational=FILE\n"
Michal Vasko9e81ce52022-04-29 10:16:21 +0200282 " Provide optional data to extend validation of the '(nc-)rpc',\n"
283 " '(nc-)reply' or '(nc-)notif' TYPEs. The FILE is supposed to contain\n"
284 " the operational datastore referenced from the operation.\n"
285 " In case of a nested operation, its parent existence is also\n"
286 " checked in these operational data.\n\n");
Radek Krejcie9f13b12020-11-09 17:42:04 +0100287
Michal Vasko3f08fb92022-04-21 09:52:35 +0200288 printf(" -R FILE, --reply-rpc=FILE\n"
289 " Provide source RPC for parsing of the 'nc-reply' TYPE. The FILE\n"
290 " is supposed to contain the source 'nc-rpc' operation of the reply.\n\n");
291
Michal Vasko22e0f3a2021-09-22 12:19:23 +0200292 printf(" -m, --merge Merge input data files into a single tree and validate at\n"
Michal Vasko06158fb2022-03-29 12:13:16 +0200293 " once. The option has effect only for 'data' and 'config' TYPEs.\n\n");
Radek Krejcie9f13b12020-11-09 17:42:04 +0100294
Michal Vasko22e0f3a2021-09-22 12:19:23 +0200295 printf(" -y, --yang-library\n"
Michal Vaskoc431a0a2021-01-25 14:31:58 +0100296 " Load and implement internal \"ietf-yang-library\" YANG module.\n"
297 " Note that this module includes definitions of mandatory state\n"
Michal Vasko22e0f3a2021-09-22 12:19:23 +0200298 " data that can result in unexpected data validation errors.\n\n");
Michal Vaskoc40548b2021-09-30 13:05:47 +0200299
Michal Vasko24aaf8e2022-02-04 11:15:26 +0100300 printf(" -Y FILE, --yang-library-file=FILE\n"
301 " Parse FILE with \"ietf-yang-library\" data and use them to\n"
302 " create an exact YANG schema context. If specified, the '-F'\n"
303 " parameter (enabled features) is ignored.\n\n");
304
stewegd8e2fc92023-05-31 09:52:56 +0200305 printf(" -X, --extended-leafref\n"
306 " Allow usage of deref() XPath function within leafref\n\n");
307
Michal Vaskoc40548b2021-09-30 13:05:47 +0200308#ifndef NDEBUG
309 printf(" -G GROUPS, --debug=GROUPS\n"
310 " Enable printing of specific debugging message group\n"
311 " (nothing will be printed unless verbosity is set to debug):\n"
Michal Vasko27a4acb2021-11-22 10:03:46 +0100312 " <group>[,<group>]* (dict, xpath, dep-sets)\n\n");
Michal Vaskoc40548b2021-09-30 13:05:47 +0200313#endif
Radek Krejcied5acc52019-04-25 15:57:04 +0200314}
315
Radek Krejcie9f13b12020-11-09 17:42:04 +0100316static void
Radek Krejcied5acc52019-04-25 15:57:04 +0200317libyang_verbclb(LY_LOG_LEVEL level, const char *msg, const char *path)
318{
319 char *levstr;
320
Radek Krejcie9f13b12020-11-09 17:42:04 +0100321 switch (level) {
322 case LY_LLERR:
323 levstr = "err :";
324 break;
325 case LY_LLWRN:
326 levstr = "warn:";
327 break;
328 case LY_LLVRB:
329 levstr = "verb:";
330 break;
331 default:
332 levstr = "dbg :";
333 break;
334 }
335 if (path) {
336 fprintf(stderr, "libyang %s %s (%s)\n", levstr, msg, path);
337 } else {
338 fprintf(stderr, "libyang %s %s\n", levstr, msg);
Radek Krejcied5acc52019-04-25 15:57:04 +0200339 }
340}
341
Michal Vasko686d8fc2021-11-22 10:03:23 +0100342static struct schema_features *
343get_features_not_applied(const struct ly_set *fset)
344{
345 for (uint32_t u = 0; u < fset->count; ++u) {
346 struct schema_features *sf = fset->objs[u];
Michal Vasko26bbb272022-08-02 14:54:33 +0200347
Michal Vasko686d8fc2021-11-22 10:03:23 +0100348 if (!sf->applied) {
349 return sf;
350 }
351 }
352
353 return NULL;
354}
355
ekinzie0ab8b302022-10-10 03:03:57 -0400356static LY_ERR
357ext_data_clb(const struct lysc_ext_instance *ext, void *user_data, void **ext_data, ly_bool *ext_data_free)
358{
359 struct ly_ctx *ctx;
360 struct lyd_node *data = NULL;
361
362 ctx = ext->module->ctx;
363 if (user_data) {
364 lyd_parse_data_path(ctx, user_data, LYD_XML, LYD_PARSE_STRICT, LYD_VALIDATE_PRESENT, &data);
365 }
366
367 *ext_data = data;
368 *ext_data_free = 1;
369 return LY_SUCCESS;
370}
371
aPiecek912f3d52022-10-12 10:02:33 +0200372static LY_ERR
373searchpath_strcat(char **searchpaths, const char *path)
374{
375 uint64_t len;
376 char *new;
377
378 if (!(*searchpaths)) {
379 *searchpaths = strdup(path);
380 return LY_SUCCESS;
381 }
382
383 len = strlen(*searchpaths) + strlen(path) + strlen(PATH_SEPARATOR);
384 new = realloc(*searchpaths, sizeof(char) * len + 1);
385 if (!new) {
386 return LY_EMEM;
387 }
388 strcat(new, PATH_SEPARATOR);
389 strcat(new, path);
390 *searchpaths = new;
391
392 return LY_SUCCESS;
393}
394
Radek Krejcie9f13b12020-11-09 17:42:04 +0100395static int
396fill_context_inputs(int argc, char *argv[], struct context *c)
397{
Michal Vasko24aaf8e2022-02-04 11:15:26 +0100398 struct ly_in *in = NULL;
Michal Vasko686d8fc2021-11-22 10:03:23 +0100399 struct schema_features *sf;
Michal Vaskoc91fb122021-11-23 09:00:17 +0100400 struct lys_module *mod;
aPiecek912f3d52022-10-12 10:02:33 +0200401 const char *all_features[] = {"*", NULL};
Michal Vasko24aaf8e2022-02-04 11:15:26 +0100402 char *dir = NULL, *module = NULL;
403
aPiecek912f3d52022-10-12 10:02:33 +0200404 /* Create libyang context. */
Michal Vasko24aaf8e2022-02-04 11:15:26 +0100405 if (c->yang_lib_file) {
406 /* ignore features */
407 ly_set_erase(&c->schema_features, free_features);
408
aPiecek912f3d52022-10-12 10:02:33 +0200409 if (ly_ctx_new_ylpath(c->searchpaths, c->yang_lib_file, LYD_UNKNOWN, c->ctx_options, &c->ctx)) {
ekinzie0ab8b302022-10-10 03:03:57 -0400410 YLMSG_E("Unable to modify libyang context with yang-library data.\n");
Michal Vasko24aaf8e2022-02-04 11:15:26 +0100411 return -1;
412 }
413 } else {
414 /* set imp feature flag if all should be enabled */
aPiecek912f3d52022-10-12 10:02:33 +0200415 c->ctx_options |= !c->schema_features.count ? LY_CTX_ENABLE_IMP_FEATURES : 0;
Michal Vasko24aaf8e2022-02-04 11:15:26 +0100416
aPiecek912f3d52022-10-12 10:02:33 +0200417 if (ly_ctx_new(c->searchpaths, c->ctx_options, &c->ctx)) {
418 YLMSG_E("Unable to create libyang context\n");
Michal Vasko24aaf8e2022-02-04 11:15:26 +0100419 return -1;
420 }
aPiecek912f3d52022-10-12 10:02:33 +0200421 }
Michal Vasko24aaf8e2022-02-04 11:15:26 +0100422
aPiecek912f3d52022-10-12 10:02:33 +0200423 /* set callback providing run-time extension instance data */
424 if (c->schema_context_filename) {
425 ly_ctx_set_ext_data_clb(c->ctx, ext_data_clb, c->schema_context_filename);
Michal Vasko24aaf8e2022-02-04 11:15:26 +0100426 }
Radek Krejcie9f13b12020-11-09 17:42:04 +0100427
Michal Vasko3f08fb92022-04-21 09:52:35 +0200428 /* process the operational and/or reply RPC content if any */
Radek Krejcie9f13b12020-11-09 17:42:04 +0100429 if (c->data_operational.path) {
430 if (get_input(c->data_operational.path, NULL, &c->data_operational.format, &c->data_operational.in)) {
431 return -1;
432 }
433 }
Michal Vasko3f08fb92022-04-21 09:52:35 +0200434 if (c->reply_rpc.path) {
435 if (get_input(c->reply_rpc.path, NULL, &c->reply_rpc.format, &c->reply_rpc.in)) {
436 return -1;
437 }
438 }
Radek Krejcie9f13b12020-11-09 17:42:04 +0100439
440 for (int i = 0; i < argc - optind; i++) {
441 LYS_INFORMAT format_schema = LYS_IN_UNKNOWN;
442 LYD_FORMAT format_data = LYD_UNKNOWN;
Radek Krejcie9f13b12020-11-09 17:42:04 +0100443
444 if (get_input(argv[optind + i], &format_schema, &format_data, &in)) {
Radek Krejcif2afd672020-11-26 12:29:23 +0100445 goto error;
Radek Krejcie9f13b12020-11-09 17:42:04 +0100446 }
447
448 if (format_schema) {
449 LY_ERR ret;
450 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 +0100451 const char **features;
Radek Krejcie9f13b12020-11-09 17:42:04 +0100452
Michal Vasko24aaf8e2022-02-04 11:15:26 +0100453 /* parse the input */
Radek Krejcie9f13b12020-11-09 17:42:04 +0100454 if (parse_schema_path(argv[optind + i], &dir, &module)) {
Radek Krejcif2afd672020-11-26 12:29:23 +0100455 goto error;
Radek Krejcie9f13b12020-11-09 17:42:04 +0100456 }
457
Michal Vasko24aaf8e2022-02-04 11:15:26 +0100458 if (c->yang_lib_file) {
459 /* just get the module, it should already be parsed */
460 mod = ly_ctx_get_module_implemented(c->ctx, module);
461 if (!mod) {
462 YLMSG_E("Schema module \"%s\" not implemented in yang-library data.\n", module);
463 goto error;
464 }
Michal Vasko59740872021-11-22 10:01:34 +0100465 } else {
Michal Vasko24aaf8e2022-02-04 11:15:26 +0100466 /* add temporarily also the path of the module itself */
467 if (ly_ctx_set_searchdir(c->ctx, dir) == LY_EEXIST) {
468 path_unset = 0;
469 }
470
471 /* get features list for this module */
472 if (!c->schema_features.count) {
473 features = all_features;
474 } else {
475 get_features(&c->schema_features, module, &features);
476 }
477
478 /* parse module */
479 ret = lys_parse(c->ctx, in, format_schema, features, &mod);
480 ly_ctx_unset_searchdir_last(c->ctx, path_unset);
481 if (ret) {
482 YLMSG_E("Parsing schema module \"%s\" failed.\n", argv[optind + i]);
483 goto error;
484 }
Michal Vasko703370c2021-10-19 14:07:16 +0200485 }
486
Radek Krejcie9f13b12020-11-09 17:42:04 +0100487 /* temporary cleanup */
488 free(dir);
Michal Vasko24aaf8e2022-02-04 11:15:26 +0100489 dir = NULL;
Radek Krejcie9f13b12020-11-09 17:42:04 +0100490 free(module);
Michal Vasko24aaf8e2022-02-04 11:15:26 +0100491 module = NULL;
Radek Krejcie9f13b12020-11-09 17:42:04 +0100492
roman300b8782022-08-11 12:49:21 +0200493 if (c->schema_out_format || c->feature_param_format) {
Michal Vasko24aaf8e2022-02-04 11:15:26 +0100494 /* module will be printed */
Radek Krejcie9f13b12020-11-09 17:42:04 +0100495 if (ly_set_add(&c->schema_modules, (void *)mod, 1, NULL)) {
496 YLMSG_E("Storing parsed schema module (%s) for print failed.\n", argv[optind + i]);
Radek Krejcif2afd672020-11-26 12:29:23 +0100497 goto error;
Radek Krejcie9f13b12020-11-09 17:42:04 +0100498 }
499 }
Radek Krejcie9f13b12020-11-09 17:42:04 +0100500 } else if (format_data) {
Radek Krejci6784a4e2020-12-09 14:23:05 +0100501 if (!fill_cmdline_file(&c->data_inputs, in, argv[optind + i], format_data)) {
Radek Krejcif2afd672020-11-26 12:29:23 +0100502 goto error;
Radek Krejcie9f13b12020-11-09 17:42:04 +0100503 }
Radek Krejcif53b0d52020-12-03 11:29:24 +0100504 in = NULL;
Radek Krejcie9f13b12020-11-09 17:42:04 +0100505 }
Michal Vasko24aaf8e2022-02-04 11:15:26 +0100506
507 ly_in_free(in, 1);
508 in = NULL;
Radek Krejcie9f13b12020-11-09 17:42:04 +0100509 }
510
Michal Vaskoc91fb122021-11-23 09:00:17 +0100511 /* check that all specified features were applied, apply now if possible */
512 while ((sf = get_features_not_applied(&c->schema_features))) {
513 /* try to find implemented or the latest revision of this module */
514 mod = ly_ctx_get_module_implemented(c->ctx, sf->mod_name);
515 if (!mod) {
516 mod = ly_ctx_get_module_latest(c->ctx, sf->mod_name);
Michal Vasko686d8fc2021-11-22 10:03:23 +0100517 }
Michal Vaskoc91fb122021-11-23 09:00:17 +0100518 if (!mod) {
519 YLMSG_E("Specified features not applied, module \"%s\" not loaded.\n", sf->mod_name);
520 goto error;
521 }
522
523 /* we have the module, implement it if needed and enable the specific features */
524 if (lys_set_implemented(mod, (const char **)sf->features)) {
525 YLMSG_E("Implementing module \"%s\" failed.\n", mod->name);
526 goto error;
527 }
528 sf->applied = 1;
Michal Vasko686d8fc2021-11-22 10:03:23 +0100529 }
530
Radek Krejcie9f13b12020-11-09 17:42:04 +0100531 return 0;
Radek Krejcif2afd672020-11-26 12:29:23 +0100532
533error:
534 ly_in_free(in, 1);
Michal Vasko24aaf8e2022-02-04 11:15:26 +0100535 free(dir);
536 free(module);
Radek Krejcif2afd672020-11-26 12:29:23 +0100537 return -1;
Radek Krejcie9f13b12020-11-09 17:42:04 +0100538}
539
540/**
541 * @brief Process command line options and store the settings into the context.
542 *
543 * return -1 in case of error;
544 * return 0 in case of success and ready to process
545 * return 1 in case of success, but expect to exit.
Radek Krejcied5acc52019-04-25 15:57:04 +0200546 */
547static int
Radek Krejcie9f13b12020-11-09 17:42:04 +0100548fill_context(int argc, char *argv[], struct context *c)
Radek Krejcied5acc52019-04-25 15:57:04 +0200549{
Radek Krejcie9f13b12020-11-09 17:42:04 +0100550 int ret;
Radek Krejcie7b95092019-05-15 11:03:07 +0200551
Radek Krejcie9f13b12020-11-09 17:42:04 +0100552 int opt, opt_index;
Radek Krejcied5acc52019-04-25 15:57:04 +0200553 struct option options[] = {
Michal Vasko24aaf8e2022-02-04 11:15:26 +0100554 {"help", no_argument, NULL, 'h'},
555 {"version", no_argument, NULL, 'v'},
556 {"verbose", no_argument, NULL, 'V'},
557 {"quiet", no_argument, NULL, 'Q'},
558 {"format", required_argument, NULL, 'f'},
559 {"path", required_argument, NULL, 'p'},
Michal Vaskod8b0e772022-03-18 13:36:04 +0100560 {"disable-searchdir", no_argument, NULL, 'D'},
Michal Vasko24aaf8e2022-02-04 11:15:26 +0100561 {"features", required_argument, NULL, 'F'},
562 {"make-implemented", no_argument, NULL, 'i'},
563 {"schema-node", required_argument, NULL, 'P'},
564 {"single-node", no_argument, NULL, 'q'},
565 {"submodule", required_argument, NULL, 's'},
ekinzie0ab8b302022-10-10 03:03:57 -0400566 {"ext-data", required_argument, NULL, 'x'},
Michal Vasko24aaf8e2022-02-04 11:15:26 +0100567 {"not-strict", no_argument, NULL, 'n'},
568 {"present", no_argument, NULL, 'e'},
569 {"type", required_argument, NULL, 't'},
570 {"default", required_argument, NULL, 'd'},
aPiecek1b629762023-04-12 13:52:30 +0200571 {"data-xpath", required_argument, NULL, 'E'},
Michal Vasko24aaf8e2022-02-04 11:15:26 +0100572 {"list", no_argument, NULL, 'l'},
573 {"tree-line-length", required_argument, NULL, 'L'},
574 {"output", required_argument, NULL, 'o'},
575 {"operational", required_argument, NULL, 'O'},
Michal Vasko3f08fb92022-04-21 09:52:35 +0200576 {"reply-rpc", required_argument, NULL, 'R'},
Michal Vasko24aaf8e2022-02-04 11:15:26 +0100577 {"merge", no_argument, NULL, 'm'},
578 {"yang-library", no_argument, NULL, 'y'},
579 {"yang-library-file", required_argument, NULL, 'Y'},
stewegd8e2fc92023-05-31 09:52:56 +0200580 {"extended-leafref", no_argument, NULL, 'X'},
Michal Vaskoc40548b2021-09-30 13:05:47 +0200581#ifndef NDEBUG
582 {"debug", required_argument, NULL, 'G'},
583#endif
Radek Krejcied5acc52019-04-25 15:57:04 +0200584 {NULL, 0, NULL, 0}
585 };
Radek Krejcie9f13b12020-11-09 17:42:04 +0100586 uint8_t data_type_set = 0;
587
Michal Vasko24aaf8e2022-02-04 11:15:26 +0100588 c->ctx_options = YL_DEFAULT_CTX_OPTIONS;
Michal Vasko667ce6b2021-01-25 15:00:27 +0100589 c->data_parse_options = YL_DEFAULT_DATA_PARSE_OPTIONS;
Michal Vasko05eaf832023-02-10 09:21:46 +0100590 c->data_validate_options = YL_DEFAULT_DATA_VALIDATE_OPTIONS;
aPiecek2cfeeae2021-04-21 13:17:34 +0200591 c->line_length = 0;
Michal Vasko667ce6b2021-01-25 15:00:27 +0100592
Michal Vasko27a4acb2021-11-22 10:03:46 +0100593 opterr = 0;
Radek Krejcied5acc52019-04-25 15:57:04 +0200594#ifndef NDEBUG
aPiecek1b629762023-04-12 13:52:30 +0200595 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 +0100596#else
aPiecek1b629762023-04-12 13:52:30 +0200597 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 +0200598#endif
Michal Vasko03fe6202022-07-22 16:23:13 +0200599 {
Radek Krejcied5acc52019-04-25 15:57:04 +0200600 switch (opt) {
Michal Vaskoc40548b2021-09-30 13:05:47 +0200601 case 'h': /* --help */
602 help(0);
603 return 1;
604
605 case 'v': /* --version */
606 version();
607 return 1;
608
609 case 'V': { /* --verbose */
610 LY_LOG_LEVEL verbosity = ly_log_level(LY_LLERR);
Michal Vasko2bf4af42023-01-04 12:08:38 +0100611
Michal Vaskoc40548b2021-09-30 13:05:47 +0200612 if (verbosity < LY_LLDBG) {
Michal Vaskob0d307b2021-11-25 11:15:16 +0100613 ++verbosity;
Radek Krejcied5acc52019-04-25 15:57:04 +0200614 }
Michal Vaskob0d307b2021-11-25 11:15:16 +0100615 ly_log_level(verbosity);
Radek Krejcied5acc52019-04-25 15:57:04 +0200616 break;
Michal Vaskoc40548b2021-09-30 13:05:47 +0200617 } /* case 'V' */
Radek Krejcie9f13b12020-11-09 17:42:04 +0100618
Michal Vaskob0d307b2021-11-25 11:15:16 +0100619 case 'Q': { /* --quiet */
620 LY_LOG_LEVEL verbosity = ly_log_level(LY_LLERR);
Michal Vasko2bf4af42023-01-04 12:08:38 +0100621
Michal Vaskob0d307b2021-11-25 11:15:16 +0100622 if (verbosity == LY_LLERR) {
623 /* turn logging off */
624 ly_log_options(LY_LOSTORE_LAST);
625 } else if (verbosity > LY_LLERR) {
626 --verbosity;
627 }
628 ly_log_level(verbosity);
629 break;
630 } /* case 'Q' */
631
Radek Krejcie9f13b12020-11-09 17:42:04 +0100632 case 'f': /* --format */
633 if (!strcasecmp(optarg, "yang")) {
634 c->schema_out_format = LYS_OUT_YANG;
635 c->data_out_format = 0;
636 } else if (!strcasecmp(optarg, "yin")) {
637 c->schema_out_format = LYS_OUT_YIN;
638 c->data_out_format = 0;
639 } else if (!strcasecmp(optarg, "info")) {
640 c->schema_out_format = LYS_OUT_YANG_COMPILED;
641 c->data_out_format = 0;
642 } else if (!strcasecmp(optarg, "tree")) {
643 c->schema_out_format = LYS_OUT_TREE;
644 c->data_out_format = 0;
645 } else if (!strcasecmp(optarg, "xml")) {
646 c->schema_out_format = 0;
647 c->data_out_format = LYD_XML;
648 } else if (!strcasecmp(optarg, "json")) {
649 c->schema_out_format = 0;
650 c->data_out_format = LYD_JSON;
Michal Vaskod8b0e772022-03-18 13:36:04 +0100651 } else if (!strcasecmp(optarg, "lyb")) {
652 c->schema_out_format = 0;
653 c->data_out_format = LYD_LYB;
roman300b8782022-08-11 12:49:21 +0200654 } else if (!strcasecmp(optarg, "feature-param")) {
655 c->feature_param_format = 1;
Radek Krejcied5acc52019-04-25 15:57:04 +0200656 } else {
Radek Krejcie9f13b12020-11-09 17:42:04 +0100657 YLMSG_E("Unknown output format %s\n", optarg);
Radek Krejcied5acc52019-04-25 15:57:04 +0200658 help(1);
Radek Krejcie9f13b12020-11-09 17:42:04 +0100659 return -1;
Radek Krejcied5acc52019-04-25 15:57:04 +0200660 }
661 break;
Radek Krejcie9f13b12020-11-09 17:42:04 +0100662
Michal Vaskoc40548b2021-09-30 13:05:47 +0200663 case 'p': { /* --path */
664 struct stat st;
665
666 if (stat(optarg, &st) == -1) {
667 YLMSG_E("Unable to use search path (%s) - %s.\n", optarg, strerror(errno));
668 return -1;
669 }
670 if (!S_ISDIR(st.st_mode)) {
671 YLMSG_E("Provided search path is not a directory.\n");
672 return -1;
673 }
674
aPiecek912f3d52022-10-12 10:02:33 +0200675 if (searchpath_strcat(&c->searchpaths, optarg)) {
Michal Vaskoc40548b2021-09-30 13:05:47 +0200676 YLMSG_E("Storing searchpath failed.\n");
677 return -1;
678 }
679
680 break;
681 } /* case 'p' */
682
683 case 'D': /* --disable-search */
Michal Vasko24aaf8e2022-02-04 11:15:26 +0100684 if (c->ctx_options & LY_CTX_DISABLE_SEARCHDIRS) {
Michal Vaskoc40548b2021-09-30 13:05:47 +0200685 YLMSG_W("The -D option specified too many times.\n");
686 }
Michal Vasko24aaf8e2022-02-04 11:15:26 +0100687 if (c->ctx_options & LY_CTX_DISABLE_SEARCHDIR_CWD) {
688 c->ctx_options &= ~LY_CTX_DISABLE_SEARCHDIR_CWD;
689 c->ctx_options |= LY_CTX_DISABLE_SEARCHDIRS;
Michal Vaskoc40548b2021-09-30 13:05:47 +0200690 } else {
Michal Vasko24aaf8e2022-02-04 11:15:26 +0100691 c->ctx_options |= LY_CTX_DISABLE_SEARCHDIR_CWD;
Michal Vaskoc40548b2021-09-30 13:05:47 +0200692 }
693 break;
694
695 case 'F': /* --features */
696 if (parse_features(optarg, &c->schema_features)) {
697 return -1;
698 }
699 break;
700
Michal Vasko8d6d0ad2021-10-19 12:32:27 +0200701 case 'i': /* --make-implemented */
Michal Vasko24aaf8e2022-02-04 11:15:26 +0100702 if (c->ctx_options & LY_CTX_REF_IMPLEMENTED) {
703 c->ctx_options &= ~LY_CTX_REF_IMPLEMENTED;
704 c->ctx_options |= LY_CTX_ALL_IMPLEMENTED;
Michal Vaskoc40548b2021-09-30 13:05:47 +0200705 } else {
Michal Vasko24aaf8e2022-02-04 11:15:26 +0100706 c->ctx_options |= LY_CTX_REF_IMPLEMENTED;
Michal Vaskoc40548b2021-09-30 13:05:47 +0200707 }
708 break;
709
Radek Krejcie9f13b12020-11-09 17:42:04 +0100710 case 'P': /* --schema-node */
711 c->schema_node_path = optarg;
Radek Krejcied5acc52019-04-25 15:57:04 +0200712 break;
Radek Krejcie9f13b12020-11-09 17:42:04 +0100713
714 case 'q': /* --single-node */
715 c->schema_print_options |= LYS_PRINT_NO_SUBSTMT;
716 break;
717
Michal Vaskofe74d1e2021-09-30 13:17:36 +0200718 case 's': /* --submodule */
719 c->submodule = optarg;
720 break;
721
ekinzie0ab8b302022-10-10 03:03:57 -0400722 case 'x': /* --ext-data */
723 c->schema_context_filename = strdup(optarg);
724 break;
725
Michal Vasko667ce6b2021-01-25 15:00:27 +0100726 case 'n': /* --not-strict */
727 c->data_parse_options &= ~LYD_PARSE_STRICT;
Radek Krejcie9f13b12020-11-09 17:42:04 +0100728 break;
729
730 case 'e': /* --present */
731 c->data_validate_options |= LYD_VALIDATE_PRESENT;
732 break;
733
734 case 't': /* --type */
735 if (data_type_set) {
736 YLMSG_E("The data type (-t) cannot be set multiple times.\n");
737 return -1;
738 }
739
740 if (!strcasecmp(optarg, "config")) {
741 c->data_parse_options |= LYD_PARSE_NO_STATE;
Michal Vaskof6bda332021-02-01 08:59:03 +0100742 c->data_validate_options |= LYD_VALIDATE_NO_STATE;
Radek Krejcie9f13b12020-11-09 17:42:04 +0100743 } else if (!strcasecmp(optarg, "get")) {
744 c->data_parse_options |= LYD_PARSE_ONLY;
aPiecekbe6c0602023-04-18 11:29:09 +0200745 } else if (!strcasecmp(optarg, "getconfig") || !strcasecmp(optarg, "get-config") || !strcasecmp(optarg, "edit")) {
Radek Krejcie9f13b12020-11-09 17:42:04 +0100746 c->data_parse_options |= LYD_PARSE_ONLY | LYD_PARSE_NO_STATE;
Michal Vasko3f08fb92022-04-21 09:52:35 +0200747 } else if (!strcasecmp(optarg, "rpc")) {
Michal Vasko1e4c68e2021-02-18 15:03:01 +0100748 c->data_type = LYD_TYPE_RPC_YANG;
Michal Vasko3f08fb92022-04-21 09:52:35 +0200749 } else if (!strcasecmp(optarg, "nc-rpc")) {
750 c->data_type = LYD_TYPE_RPC_NETCONF;
751 } else if (!strcasecmp(optarg, "reply")) {
Michal Vasko1e4c68e2021-02-18 15:03:01 +0100752 c->data_type = LYD_TYPE_REPLY_YANG;
Michal Vasko3f08fb92022-04-21 09:52:35 +0200753 } else if (!strcasecmp(optarg, "nc-reply")) {
754 c->data_type = LYD_TYPE_REPLY_NETCONF;
755 } else if (!strcasecmp(optarg, "notif")) {
Michal Vasko1e4c68e2021-02-18 15:03:01 +0100756 c->data_type = LYD_TYPE_NOTIF_YANG;
Michal Vasko3f08fb92022-04-21 09:52:35 +0200757 } else if (!strcasecmp(optarg, "nc-notif")) {
758 c->data_type = LYD_TYPE_NOTIF_NETCONF;
Radek Krejcie9f13b12020-11-09 17:42:04 +0100759 } else if (!strcasecmp(optarg, "data")) {
760 /* default option */
761 } else {
762 YLMSG_E("Unknown data tree type %s\n", optarg);
763 help(1);
764 return -1;
765 }
766
767 data_type_set = 1;
768 break;
769
Michal Vaskoc40548b2021-09-30 13:05:47 +0200770 case 'd': /* --default */
771 if (!strcasecmp(optarg, "all")) {
772 c->data_print_options = (c->data_print_options & ~LYD_PRINT_WD_MASK) | LYD_PRINT_WD_ALL;
773 } else if (!strcasecmp(optarg, "all-tagged")) {
774 c->data_print_options = (c->data_print_options & ~LYD_PRINT_WD_MASK) | LYD_PRINT_WD_ALL_TAG;
775 } else if (!strcasecmp(optarg, "trim")) {
776 c->data_print_options = (c->data_print_options & ~LYD_PRINT_WD_MASK) | LYD_PRINT_WD_TRIM;
777 } else if (!strcasecmp(optarg, "implicit-tagged")) {
778 c->data_print_options = (c->data_print_options & ~LYD_PRINT_WD_MASK) | LYD_PRINT_WD_IMPL_TAG;
779 } else {
780 YLMSG_E("Unknown default mode %s\n", optarg);
781 help(1);
782 return -1;
783 }
784 break;
785
aPiecek1b629762023-04-12 13:52:30 +0200786 case 'E': /* --data-xpath */
787 if (ly_set_add(&c->data_xpath, optarg, 0, NULL)) {
788 YLMSG_E("Storing XPath \"%s\" failed.\n", optarg);
789 return -1;
790 }
791 break;
792
Michal Vaskoc40548b2021-09-30 13:05:47 +0200793 case 'l': /* --list */
794 c->list = 1;
795 break;
796
797 case 'L': /* --tree-line-length */
798 c->line_length = atoi(optarg);
799 break;
800
801 case 'o': /* --output */
802 if (c->out) {
803 YLMSG_E("Only a single output can be specified.\n");
804 return -1;
805 } else {
806 if (ly_out_new_filepath(optarg, &c->out)) {
807 YLMSG_E("Unable open output file %s (%s)\n", optarg, strerror(errno));
808 return -1;
809 }
810 }
811 break;
812
Radek Krejcie9f13b12020-11-09 17:42:04 +0100813 case 'O': /* --operational */
814 if (c->data_operational.path) {
815 YLMSG_E("The operational datastore (-O) cannot be set multiple times.\n");
816 return -1;
817 }
818 c->data_operational.path = optarg;
819 break;
820
Michal Vasko3f08fb92022-04-21 09:52:35 +0200821 case 'R': /* --reply-rpc */
822 if (c->reply_rpc.path) {
823 YLMSG_E("The PRC of the reply (-R) cannot be set multiple times.\n");
824 return -1;
825 }
826 c->reply_rpc.path = optarg;
827 break;
828
Radek Krejcie9f13b12020-11-09 17:42:04 +0100829 case 'm': /* --merge */
830 c->data_merge = 1;
831 break;
832
Michal Vaskoc431a0a2021-01-25 14:31:58 +0100833 case 'y': /* --yang-library */
Michal Vasko24aaf8e2022-02-04 11:15:26 +0100834 c->ctx_options &= ~LY_CTX_NO_YANGLIBRARY;
835 break;
836
837 case 'Y': /* --yang-library-file */
838 c->ctx_options &= ~LY_CTX_NO_YANGLIBRARY;
839 c->yang_lib_file = optarg;
Michal Vaskoc431a0a2021-01-25 14:31:58 +0100840 break;
841
stewegd8e2fc92023-05-31 09:52:56 +0200842 case 'X': /* --extended-leafref */
843 c->ctx_options |= LY_CTX_LEAFREF_EXTENDED;
844 break;
845
Radek Krejcied5acc52019-04-25 15:57:04 +0200846#ifndef NDEBUG
Radek Krejcie9f13b12020-11-09 17:42:04 +0100847 case 'G': { /* --debug */
848 uint32_t dbg_groups = 0;
849 const char *ptr = optarg;
850
Radek Krejcied5acc52019-04-25 15:57:04 +0200851 while (ptr[0]) {
Radek Krejcif13b87b2020-12-01 22:02:17 +0100852 if (!strncasecmp(ptr, "dict", sizeof "dict" - 1)) {
Radek Krejcie9f13b12020-11-09 17:42:04 +0100853 dbg_groups |= LY_LDGDICT;
Radek Krejcif13b87b2020-12-01 22:02:17 +0100854 ptr += sizeof "dict" - 1;
855 } else if (!strncasecmp(ptr, "xpath", sizeof "xpath" - 1)) {
Radek Krejcie9f13b12020-11-09 17:42:04 +0100856 dbg_groups |= LY_LDGXPATH;
Radek Krejcif13b87b2020-12-01 22:02:17 +0100857 ptr += sizeof "xpath" - 1;
Michal Vasko27a4acb2021-11-22 10:03:46 +0100858 } else if (!strncasecmp(ptr, "dep-sets", sizeof "dep-sets" - 1)) {
859 dbg_groups |= LY_LDGDEPSETS;
860 ptr += sizeof "dep-sets" - 1;
Radek Krejcied5acc52019-04-25 15:57:04 +0200861 }
862
863 if (ptr[0]) {
864 if (ptr[0] != ',') {
Radek Krejcie9f13b12020-11-09 17:42:04 +0100865 YLMSG_E("Unknown debug group string \"%s\"\n", optarg);
866 return -1;
Radek Krejcied5acc52019-04-25 15:57:04 +0200867 }
868 ++ptr;
869 }
870 }
Radek Krejcie9f13b12020-11-09 17:42:04 +0100871 ly_log_dbg_groups(dbg_groups);
Radek Krejcied5acc52019-04-25 15:57:04 +0200872 break;
Radek Krejcie9f13b12020-11-09 17:42:04 +0100873 } /* case 'G' */
Radek Krejcied5acc52019-04-25 15:57:04 +0200874#endif
Michal Vasko27a4acb2021-11-22 10:03:46 +0100875 default:
876 YLMSG_E("Invalid option or missing argument: -%c\n", optopt);
877 return -1;
Radek Krejcie9f13b12020-11-09 17:42:04 +0100878 } /* switch */
879 }
880
Radek Krejcie9f13b12020-11-09 17:42:04 +0100881 /* additional checks for the options combinations */
882 if (!c->list && (optind >= argc)) {
883 help(1);
884 YLMSG_E("Missing <schema> to process.\n");
885 return 1;
886 }
887
aPiecek1b629762023-04-12 13:52:30 +0200888 if (c->data_xpath.count) {
889 c->data_merge = 1;
890 }
891 if (c->data_xpath.count && (c->schema_out_format || c->data_out_format)) {
892 YLMSG_E("The --format option cannot be combined with --data-xpath option.\n");
893 return -1;
894 }
895 if (c->data_xpath.count && (c->data_print_options & LYD_PRINT_WD_MASK)) {
896 YLMSG_E("The --default option cannot be combined with --data-xpath option.\n");
897 return -1;
898 }
899
Radek Krejcie9f13b12020-11-09 17:42:04 +0100900 if (c->data_merge) {
901 if (c->data_type || (c->data_parse_options & LYD_PARSE_ONLY)) {
902 /* switch off the option, incompatible input data type */
903 c->data_merge = 0;
904 } else {
905 /* postpone validation after the merge of all the input data */
906 c->data_parse_options |= LYD_PARSE_ONLY;
Radek Krejcied5acc52019-04-25 15:57:04 +0200907 }
908 }
909
Radek Krejcie9f13b12020-11-09 17:42:04 +0100910 if (c->data_operational.path && !c->data_type) {
aPiecekce481582023-04-26 15:44:59 +0200911 YLMSG_W("Operational datastore takes effect only with RPCs/Actions/Replies/Notification input data types.\n");
Radek Krejcie9f13b12020-11-09 17:42:04 +0100912 c->data_operational.path = NULL;
Radek Krejcied5acc52019-04-25 15:57:04 +0200913 }
Radek Krejcie9f13b12020-11-09 17:42:04 +0100914
Michal Vasko3f08fb92022-04-21 09:52:35 +0200915 if (c->reply_rpc.path && (c->data_type != LYD_TYPE_REPLY_NETCONF)) {
aPiecekce481582023-04-26 15:44:59 +0200916 YLMSG_W("Source RPC is needed only for NETCONF Reply input data type.\n");
Michal Vasko3f08fb92022-04-21 09:52:35 +0200917 c->data_operational.path = NULL;
918 } else if (!c->reply_rpc.path && (c->data_type == LYD_TYPE_REPLY_NETCONF)) {
919 YLMSG_E("Missing source RPC (-R) for NETCONF Reply input data type.\n");
920 return -1;
921 }
922
aPiecek2cfeeae2021-04-21 13:17:34 +0200923 if ((c->schema_out_format != LYS_OUT_TREE) && c->line_length) {
aPiecekce481582023-04-26 15:44:59 +0200924 YLMSG_W("--tree-line-length take effect only in case of the tree output format.\n");
aPiecek2cfeeae2021-04-21 13:17:34 +0200925 }
926
Radek Krejcie9f13b12020-11-09 17:42:04 +0100927 /* default output stream */
928 if (!c->out) {
929 if (ly_out_new_file(stdout, &c->out)) {
930 YLMSG_E("Unable to set stdout as output.\n");
931 return -1;
Radek Krejcied5acc52019-04-25 15:57:04 +0200932 }
933 }
Radek Krejcie9f13b12020-11-09 17:42:04 +0100934
aPiecek7ac66d52021-05-20 07:54:07 +0200935 if (c->schema_out_format == LYS_OUT_TREE) {
936 /* print tree from lysc_nodes */
Michal Vasko24aaf8e2022-02-04 11:15:26 +0100937 c->ctx_options |= LY_CTX_SET_PRIV_PARSED;
aPiecek7ac66d52021-05-20 07:54:07 +0200938 }
939
Radek Krejcie9f13b12020-11-09 17:42:04 +0100940 /* process input files provided as standalone command line arguments,
941 * schema modules are parsed and inserted into the context,
942 * data files are just checked and prepared into internal structures for further processing */
943 ret = fill_context_inputs(argc, argv, c);
944 if (ret) {
945 return ret;
946 }
947
948 /* the second batch of checks */
949 if (c->schema_print_options && !c->schema_out_format) {
950 YLMSG_W("Schema printer options specified, but the schema output format is missing.\n");
951 }
952 if (c->schema_parse_options && !c->schema_modules.count) {
953 YLMSG_W("Schema parser options specified, but no schema input file provided.\n");
954 }
955 if (c->data_print_options && !c->data_out_format) {
956 YLMSG_W("data printer options specified, but the data output format is missing.\n");
957 }
Michal Vasko667ce6b2021-01-25 15:00:27 +0100958 if (((c->data_parse_options != YL_DEFAULT_DATA_PARSE_OPTIONS) || c->data_type) && !c->data_inputs.count) {
Radek Krejcie9f13b12020-11-09 17:42:04 +0100959 YLMSG_W("Data parser options specified, but no data input file provided.\n");
960 }
961
962 if (c->schema_node_path) {
963 c->schema_node = lys_find_path(c->ctx, NULL, c->schema_node_path, 0);
964 if (!c->schema_node) {
965 c->schema_node = lys_find_path(c->ctx, NULL, c->schema_node_path, 1);
966
967 if (!c->schema_node) {
968 YLMSG_E("Invalid schema path.\n");
969 return -1;
970 }
Radek Krejcied5acc52019-04-25 15:57:04 +0200971 }
Radek Krejcied5acc52019-04-25 15:57:04 +0200972 }
Radek Krejcie9f13b12020-11-09 17:42:04 +0100973
Radek Krejcie9f13b12020-11-09 17:42:04 +0100974 return 0;
975}
976
977int
978main_ni(int argc, char *argv[])
979{
980 int ret = EXIT_SUCCESS, r;
981 struct context c = {0};
roman300b8782022-08-11 12:49:21 +0200982 char *features_output = NULL;
983 struct ly_set set = {0};
984 uint32_t u;
Radek Krejcied5acc52019-04-25 15:57:04 +0200985
986 /* set callback for printing libyang messages */
987 ly_set_log_clb(libyang_verbclb, 1);
Radek Krejcie9f13b12020-11-09 17:42:04 +0100988
989 r = fill_context(argc, argv, &c);
990 if (r < 0) {
991 ret = EXIT_FAILURE;
Radek Krejcied5acc52019-04-25 15:57:04 +0200992 }
Radek Krejcie9f13b12020-11-09 17:42:04 +0100993 if (r) {
Radek Krejcied5acc52019-04-25 15:57:04 +0200994 goto cleanup;
995 }
996
Radek Krejcie9f13b12020-11-09 17:42:04 +0100997 /* do the required job - parse, validate, print */
998
999 if (c.list) {
1000 /* print the list of schemas */
aPiecek34262622023-03-27 08:28:25 +02001001 ret = print_list(c.out, c.ctx, c.data_out_format);
1002 goto cleanup;
Radek Krejci047d64e2020-12-03 12:57:10 +01001003 } else {
roman300b8782022-08-11 12:49:21 +02001004 if (c.feature_param_format) {
1005 for (u = 0; u < c.schema_modules.count; u++) {
1006 if (collect_features(c.schema_modules.objs[u], &set)) {
1007 YLMSG_E("Unable to read features from a module.\n");
1008 goto cleanup;
1009 }
1010 if (generate_features_output(c.schema_modules.objs[u], &set, &features_output)) {
1011 YLMSG_E("Unable to generate feature command output.\n");
1012 goto cleanup;
1013 }
1014 ly_set_erase(&set, NULL);
1015 }
1016 ly_print(c.out, "%s\n", features_output);
1017 } else if (c.schema_out_format) {
Radek Krejci047d64e2020-12-03 12:57:10 +01001018 if (c.schema_node) {
aPiecek146fd192023-03-30 11:22:16 +02001019 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 +01001020 if (ret) {
Radek Krejci047d64e2020-12-03 12:57:10 +01001021 YLMSG_E("Unable to print schema node %s.\n", c.schema_node_path);
Radek Krejcie9f13b12020-11-09 17:42:04 +01001022 goto cleanup;
1023 }
Michal Vaskofe74d1e2021-09-30 13:17:36 +02001024 } else if (c.submodule) {
1025 const struct lysp_submodule *submod = ly_ctx_get_submodule_latest(c.ctx, c.submodule);
Michal Vasko26bbb272022-08-02 14:54:33 +02001026
Michal Vaskofe74d1e2021-09-30 13:17:36 +02001027 if (!submod) {
1028 YLMSG_E("Unable to find submodule %s.\n", c.submodule);
1029 goto cleanup;
1030 }
1031
1032 ret = lys_print_submodule(c.out, submod, c.schema_out_format, c.line_length, c.schema_print_options);
1033 if (ret) {
1034 YLMSG_E("Unable to print submodule %s.\n", submod->name);
1035 goto cleanup;
1036 }
Radek Krejci047d64e2020-12-03 12:57:10 +01001037 } else {
roman300b8782022-08-11 12:49:21 +02001038 for (u = 0; u < c.schema_modules.count; ++u) {
aPiecek2cfeeae2021-04-21 13:17:34 +02001039 ret = lys_print_module(c.out, (struct lys_module *)c.schema_modules.objs[u], c.schema_out_format,
1040 c.line_length, c.schema_print_options);
aPiecek8f0b7882021-05-21 10:18:36 +02001041 /* for YANG Tree Diagrams printing it's more readable to print a blank line between modules. */
1042 if ((c.schema_out_format == LYS_OUT_TREE) && (u + 1 < c.schema_modules.count)) {
1043 ly_print(c.out, "\n");
1044 }
Radek Krejci047d64e2020-12-03 12:57:10 +01001045 if (ret) {
1046 YLMSG_E("Unable to print module %s.\n", ((struct lys_module *)c.schema_modules.objs[u])->name);
1047 goto cleanup;
1048 }
1049 }
Radek Krejcie9f13b12020-11-09 17:42:04 +01001050 }
Radek Krejcied5acc52019-04-25 15:57:04 +02001051 }
Radek Krejci047d64e2020-12-03 12:57:10 +01001052
1053 /* do the data validation despite the schema was printed */
1054 if (c.data_inputs.size) {
Michal Vasko0f1e4562022-03-29 11:57:57 +02001055 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 +02001056 c.data_validate_options, c.data_print_options, &c.data_operational, &c.reply_rpc, &c.data_inputs,
1057 &c.data_xpath);
Michal Vasko0f1e4562022-03-29 11:57:57 +02001058 if (ret) {
Radek Krejci047d64e2020-12-03 12:57:10 +01001059 goto cleanup;
1060 }
Radek Krejcied5acc52019-04-25 15:57:04 +02001061 }
Radek Krejcied5acc52019-04-25 15:57:04 +02001062 }
Radek Krejcied5acc52019-04-25 15:57:04 +02001063
1064cleanup:
Radek Krejcie9f13b12020-11-09 17:42:04 +01001065 /* cleanup */
1066 erase_context(&c);
roman300b8782022-08-11 12:49:21 +02001067 free(features_output);
1068 ly_set_erase(&set, NULL);
Radek Krejcied5acc52019-04-25 15:57:04 +02001069
Radek Krejcied5acc52019-04-25 15:57:04 +02001070 return ret;
1071}