blob: 5ff8a69cd538e8ca5d7e01d5f7a2245eca1c9a0e [file] [log] [blame]
Radek Krejcied5acc52019-04-25 15:57:04 +02001/**
2 * @file main_ni.c
3 * @author Radek Krejci <rkrejci@cesnet.cz>
4 * @brief libyang's yanglint tool - noninteractive code
5 *
Radek Krejcie9f13b12020-11-09 17:42:04 +01006 * Copyright (c) 2020 CESNET, z.s.p.o.
Radek Krejcied5acc52019-04-25 15:57:04 +02007 *
8 * This source code is licensed under BSD 3-Clause License (the "License").
9 * You may not use this file except in compliance with the License.
10 * You may obtain a copy of the License at
11 *
12 * https://opensource.org/licenses/BSD-3-Clause
13 */
14
Radek Krejci535ea9f2020-05-29 16:01:05 +020015#define _GNU_SOURCE
Radek Krejcied5acc52019-04-25 15:57:04 +020016
Radek Krejcie9f13b12020-11-09 17:42:04 +010017#include <errno.h>
18#include <getopt.h>
Radek Krejci47fab892020-11-05 17:02:41 +010019#include <stdint.h>
Radek Krejcied5acc52019-04-25 15:57:04 +020020#include <stdio.h>
21#include <stdlib.h>
Radek Krejcied5acc52019-04-25 15:57:04 +020022#include <string.h>
Radek Krejci47fab892020-11-05 17:02:41 +010023#include <strings.h>
Radek Krejcie9f13b12020-11-09 17:42:04 +010024#include <sys/stat.h>
Radek Krejcied5acc52019-04-25 15:57:04 +020025
Radek Krejcied5acc52019-04-25 15:57:04 +020026#include "libyang.h"
27
Radek Krejcie9f13b12020-11-09 17:42:04 +010028#include "common.h"
aPiecek8f0b7882021-05-21 10:18:36 +020029#include "out.h"
Radek Krejci535ea9f2020-05-29 16:01:05 +020030#include "tools/config.h"
31
Radek Krejcie9f13b12020-11-09 17:42:04 +010032/**
33 * @brief Context structure to hold and pass variables in a structured form.
34 */
35struct context {
36 /* libyang context for the run */
Michal Vasko24aaf8e2022-02-04 11:15:26 +010037 const char *yang_lib_file;
38 uint16_t ctx_options;
Radek Krejcie9f13b12020-11-09 17:42:04 +010039 struct ly_ctx *ctx;
Radek Krejci535ea9f2020-05-29 16:01:05 +020040
Radek Krejcie9f13b12020-11-09 17:42:04 +010041 /* prepared output (--output option or stdout by default) */
42 struct ly_out *out;
Radek Krejci535ea9f2020-05-29 16:01:05 +020043
Radek Krejcie9f13b12020-11-09 17:42:04 +010044 struct ly_set searchpaths;
Radek Krejcied5acc52019-04-25 15:57:04 +020045
Radek Krejcie9f13b12020-11-09 17:42:04 +010046 /* options flags */
47 uint8_t list; /* -l option to print list of schemas */
Radek Krejcied5acc52019-04-25 15:57:04 +020048
aPiecek2cfeeae2021-04-21 13:17:34 +020049 /* line length for 'tree' format */
50 size_t line_length; /* --tree-line-length */
51
Radek Krejcie9f13b12020-11-09 17:42:04 +010052 /*
53 * schema
54 */
Michal Vaskoa9a98612021-11-22 10:00:27 +010055 /* set schema modules' features via --features option (struct schema_features *) */
Radek Krejcie9f13b12020-11-09 17:42:04 +010056 struct ly_set schema_features;
57
58 /* set of loaded schema modules (struct lys_module *) */
59 struct ly_set schema_modules;
60
61 /* options to parse and print schema modules */
62 uint32_t schema_parse_options;
63 uint32_t schema_print_options;
64
65 /* specification of printing schema node subtree, option --schema-node */
66 const char *schema_node_path;
67 const struct lysc_node *schema_node;
Michal Vaskofe74d1e2021-09-30 13:17:36 +020068 const char *submodule;
Radek Krejcie9f13b12020-11-09 17:42:04 +010069
70 /* value of --format in case of schema format */
71 LYS_OUTFORMAT schema_out_format;
72
73 /*
74 * data
75 */
76 /* various options based on --type option */
Michal Vaskoe0665742021-02-11 11:08:44 +010077 enum lyd_type data_type;
Radek Krejcie9f13b12020-11-09 17:42:04 +010078 uint32_t data_parse_options;
79 uint32_t data_validate_options;
80 uint32_t data_print_options;
81
82 /* flag for --merge option */
83 uint8_t data_merge;
84
85 /* value of --format in case of data format */
86 LYD_FORMAT data_out_format;
87
88 /* input data files (struct cmdline_file *) */
89 struct ly_set data_inputs;
90
Radek Krejcie9f13b12020-11-09 17:42:04 +010091 /* storage for --operational */
92 struct cmdline_file data_operational;
Michal Vasko3f08fb92022-04-21 09:52:35 +020093
94 /* storage for --reply-rpc */
95 struct cmdline_file reply_rpc;
Radek Krejcie9f13b12020-11-09 17:42:04 +010096};
97
98static void
99erase_context(struct context *c)
100{
101 /* data */
102 ly_set_erase(&c->data_inputs, free_cmdline_file);
Radek Krejcie9f13b12020-11-09 17:42:04 +0100103 ly_in_free(c->data_operational.in, 1);
104
105 /* schema */
106 ly_set_erase(&c->schema_features, free_features);
107 ly_set_erase(&c->schema_modules, NULL);
108
109 /* context */
110 ly_set_erase(&c->searchpaths, NULL);
111
112 ly_out_free(c->out, NULL, 0);
Radek Krejci90ed21e2021-04-12 14:47:46 +0200113 ly_ctx_destroy(c->ctx);
Radek Krejcie9f13b12020-11-09 17:42:04 +0100114}
115
116static void
117version(void)
118{
119 printf("yanglint %s\n", PROJECT_VERSION);
120}
121
122static void
Radek Krejcied5acc52019-04-25 15:57:04 +0200123help(int shortout)
124{
Radek Krejcie9f13b12020-11-09 17:42:04 +0100125
Michal Vasko3f08fb92022-04-21 09:52:35 +0200126 printf("Example usage:\n"
127 " yanglint [-f { yang | yin | info}] <schema>...\n"
128 " Validates the YANG module <schema>(s) and all its dependencies, optionally printing\n"
129 " them in the specified format.\n\n"
130 " yanglint [-f { xml | json }] <schema>... <file>...\n"
131 " Validates the YANG modeled data <file>(s) according to the <schema>(s) optionally\n"
132 " printing them in the specified format.\n\n"
133 " yanglint -t (nc-)rpc/notif [-O <operational-file>] <schema>... <file>\n"
134 " Validates the YANG/NETCONF RPC/notification <file> according to the <schema>(s) using\n"
135 " <operational-file> with possible references to the operational datastore data.\n\n"
136 " yanglint -t nc-reply -R <rpc-file> [-O <operational-file>] <schema>... <file>\n"
137 " Validates the NETCONF rpc-reply <file> of RPC <rpc-file> according to the <schema>(s)\n"
138 " using <operational-file> with possible references to the operational datastore data.\n\n"
Radek Krejcie9f13b12020-11-09 17:42:04 +0100139 " yanglint\n"
140 " Starts interactive mode with more features.\n\n");
Radek Krejcied5acc52019-04-25 15:57:04 +0200141
142 if (shortout) {
143 return;
144 }
Radek Krejcie9f13b12020-11-09 17:42:04 +0100145 printf("Options:\n"
146 " -h, --help Show this help message and exit.\n"
147 " -v, --version Show version number and exit.\n"
Michal Vaskob0d307b2021-11-25 11:15:16 +0100148 " -V, --verbose Increase libyang verbosity and show verbose messages. If specified\n"
149 " a second time, show even debug messages.\n"
150 " -Q, --quiet Decrease libyang verbosity and hide warnings. If specified a second\n"
151 " time, hide errors so no libyang messages are printed.\n");
Radek Krejcie9f13b12020-11-09 17:42:04 +0100152
Michal Vaskoc40548b2021-09-30 13:05:47 +0200153 printf(" -f FORMAT, --format=FORMAT\n"
154 " Convert input into FORMAT. Supported formats: \n"
155 " yang, yin, tree and info for schemas,\n"
Michal Vaskod8b0e772022-03-18 13:36:04 +0100156 " xml, json, and lyb for data.\n\n");
Michal Vaskoc40548b2021-09-30 13:05:47 +0200157
158 printf(" -p PATH, --path=PATH\n"
159 " Search path for schema (YANG/YIN) modules. The option can be\n"
160 " used multiple times. The current working directory and the\n"
161 " path of the module being added is used implicitly.\n\n");
Radek Krejcie9f13b12020-11-09 17:42:04 +0100162
Michal Vasko22e0f3a2021-09-22 12:19:23 +0200163 printf(" -D, --disable-searchdir\n"
Radek Krejcie9f13b12020-11-09 17:42:04 +0100164 " Do not implicitly search in current working directory for\n"
165 " schema modules. If specified a second time, do not even\n"
166 " search in the module directory (all modules must be \n"
Michal Vasko22e0f3a2021-09-22 12:19:23 +0200167 " explicitly specified).\n\n");
Radek Krejcie9f13b12020-11-09 17:42:04 +0100168
Michal Vasko22e0f3a2021-09-22 12:19:23 +0200169 printf(" -F FEATURES, --features=FEATURES\n"
Michal Vasko59740872021-11-22 10:01:34 +0100170 " Specific module features to support in the form <module-name>:(<feature>,)*\n"
171 " Use <feature> '*' to enable all features of a module. This option can be\n"
172 " specified multiple times, to enable features in multiple modules. If this\n"
173 " option is not specified, all the features in all the implemented modules\n"
174 " are enabled.\n\n");
Radek Krejcie9f13b12020-11-09 17:42:04 +0100175
Michal Vasko8d6d0ad2021-10-19 12:32:27 +0200176 printf(" -i, --make-implemented\n"
Radek Krejcie9f13b12020-11-09 17:42:04 +0100177 " Make the imported modules \"referenced\" from any loaded\n"
178 " module also implemented. If specified a second time, all the\n"
Michal Vasko22e0f3a2021-09-22 12:19:23 +0200179 " modules are set implemented.\n\n");
Radek Krejcie9f13b12020-11-09 17:42:04 +0100180
Michal Vasko22e0f3a2021-09-22 12:19:23 +0200181 printf(" -P PATH, --schema-node=PATH\n"
Radek Krejcie9f13b12020-11-09 17:42:04 +0100182 " Print only the specified subtree of the schema.\n"
183 " The PATH is the XPath subset mentioned in documentation as\n"
184 " the Path format. The option can be combined with --single-node\n"
185 " option to print information only about the specified node.\n"
186 " -q, --single-node\n"
187 " Supplement to the --schema-node option to print information\n"
Michal Vasko22e0f3a2021-09-22 12:19:23 +0200188 " only about a single node specified as PATH argument.\n\n");
Radek Krejcie9f13b12020-11-09 17:42:04 +0100189
Michal Vaskofe74d1e2021-09-30 13:17:36 +0200190 printf(" -s SUBMODULE, --submodule=SUBMODULE\n"
191 " Print the specific submodule instead of the main module.\n\n");
192
Michal Vasko22e0f3a2021-09-22 12:19:23 +0200193 printf(" -n, --not-strict\n"
Michal Vasko667ce6b2021-01-25 15:00:27 +0100194 " Do not require strict data parsing (silently skip unknown data),\n"
Michal Vasko22e0f3a2021-09-22 12:19:23 +0200195 " has no effect for schemas.\n\n");
Radek Krejcie9f13b12020-11-09 17:42:04 +0100196
Michal Vasko22e0f3a2021-09-22 12:19:23 +0200197 printf(" -e, --present Validate only with the schema modules whose data actually\n"
Radek Krejcie9f13b12020-11-09 17:42:04 +0100198 " exist in the provided input data files. Takes effect only\n"
199 " with the 'data' or 'config' TYPEs. Used to avoid requiring\n"
200 " mandatory nodes from modules which data are not present in the\n"
Michal Vasko22e0f3a2021-09-22 12:19:23 +0200201 " provided input data files.\n\n");
Radek Krejcie9f13b12020-11-09 17:42:04 +0100202
Michal Vasko22e0f3a2021-09-22 12:19:23 +0200203 printf(" -t TYPE, --type=TYPE\n"
Radek Krejcie9f13b12020-11-09 17:42:04 +0100204 " Specify data tree type in the input data file(s):\n"
205 " data - Complete datastore with status data (default type).\n"
206 " config - Configuration datastore (without status data).\n"
Michal Vasko3f08fb92022-04-21 09:52:35 +0200207 " get - Data returned by the NETCONF <get> operation.\n"
208 " getconfig - Data returned by the NETCONF <get-config> operation.\n"
209 " edit - Config content of the NETCONF <edit-config> operation.\n"
210 " rpc - Invocation of a YANG RPC/action, defined as input.\n"
211 " nc-rpc - Similar to 'rpc' but expect and check also the NETCONF\n"
212 " envelopes <rpc> or <action>.\n"
213 " reply - Reply to a YANG RPC/action, defined as output. Note that\n"
214 " the reply data are expected inside a container representing\n"
215 " the original RPC/action invocation.\n"
216 " nc-reply - Similar to 'reply' but expect and check also the NETCONF\n"
217 " envelope <rpc-reply> with output data nodes as direct\n"
218 " descendants. The original RPC/action invocation is expected\n"
219 " in a separate parameter '-R' and is parsed as 'nc-rpc'.\n"
220 " notif - Notification instance of a YANG notification.\n"
221 " nc-notif - Similar to 'notif' but expect and check also the NETCONF\n"
222 " envelope <notification> with element <eventTime> and its\n"
223 " sibling as the actual notification.\n\n");
Michal Vaskoc40548b2021-09-30 13:05:47 +0200224
225 printf(" -d MODE, --default=MODE\n"
226 " Print data with default values, according to the MODE\n"
227 " (to print attributes, ietf-netconf-with-defaults model\n"
228 " must be loaded):\n"
229 " all - Add missing default nodes.\n"
230 " all-tagged - Add missing default nodes and mark all the default\n"
231 " nodes with the attribute.\n"
232 " trim - Remove all nodes with a default value.\n"
233 " implicit-tagged - Add missing nodes and mark them with the attribute.\n\n");
234
235 printf(" -l, --list Print info about the loaded schemas.\n"
236 " (i - imported module, I - implemented module)\n"
Michal Vasko24aaf8e2022-02-04 11:15:26 +0100237 " In case the '-f' option with data encoding is specified,\n"
238 " the list is printed as \"ietf-yang-library\" data.\n\n");
Michal Vaskoc40548b2021-09-30 13:05:47 +0200239
240 printf(" -L LINE_LENGTH, --tree-line-length=LINE_LENGTH\n"
241 " The limit of the maximum line length on which the 'tree'\n"
242 " format will try to be printed.\n\n");
243
244 printf(" -o OUTFILE, --output=OUTFILE\n"
245 " Write the output to OUTFILE instead of stdout.\n\n");
Radek Krejcie9f13b12020-11-09 17:42:04 +0100246
Michal Vasko22e0f3a2021-09-22 12:19:23 +0200247 printf(" -O FILE, --operational=FILE\n"
Radek Krejcie9f13b12020-11-09 17:42:04 +0100248 " Provide optional data to extend validation of the 'rpc',\n"
249 " 'reply' or 'notif' TYPEs. The FILE is supposed to contain\n"
250 " the :running configuration datastore and state data\n"
Michal Vasko22e0f3a2021-09-22 12:19:23 +0200251 " (operational datastore) referenced from the RPC/Notification.\n\n");
Radek Krejcie9f13b12020-11-09 17:42:04 +0100252
Michal Vasko3f08fb92022-04-21 09:52:35 +0200253 printf(" -R FILE, --reply-rpc=FILE\n"
254 " Provide source RPC for parsing of the 'nc-reply' TYPE. The FILE\n"
255 " is supposed to contain the source 'nc-rpc' operation of the reply.\n\n");
256
Michal Vasko22e0f3a2021-09-22 12:19:23 +0200257 printf(" -m, --merge Merge input data files into a single tree and validate at\n"
Michal Vasko06158fb2022-03-29 12:13:16 +0200258 " once. The option has effect only for 'data' and 'config' TYPEs.\n\n");
Radek Krejcie9f13b12020-11-09 17:42:04 +0100259
Michal Vasko22e0f3a2021-09-22 12:19:23 +0200260 printf(" -y, --yang-library\n"
Michal Vaskoc431a0a2021-01-25 14:31:58 +0100261 " Load and implement internal \"ietf-yang-library\" YANG module.\n"
262 " Note that this module includes definitions of mandatory state\n"
Michal Vasko22e0f3a2021-09-22 12:19:23 +0200263 " data that can result in unexpected data validation errors.\n\n");
Michal Vaskoc40548b2021-09-30 13:05:47 +0200264
Michal Vasko24aaf8e2022-02-04 11:15:26 +0100265 printf(" -Y FILE, --yang-library-file=FILE\n"
266 " Parse FILE with \"ietf-yang-library\" data and use them to\n"
267 " create an exact YANG schema context. If specified, the '-F'\n"
268 " parameter (enabled features) is ignored.\n\n");
269
Michal Vaskoc40548b2021-09-30 13:05:47 +0200270#ifndef NDEBUG
271 printf(" -G GROUPS, --debug=GROUPS\n"
272 " Enable printing of specific debugging message group\n"
273 " (nothing will be printed unless verbosity is set to debug):\n"
Michal Vasko27a4acb2021-11-22 10:03:46 +0100274 " <group>[,<group>]* (dict, xpath, dep-sets)\n\n");
Michal Vaskoc40548b2021-09-30 13:05:47 +0200275#endif
Radek Krejcied5acc52019-04-25 15:57:04 +0200276}
277
Radek Krejcie9f13b12020-11-09 17:42:04 +0100278static void
Radek Krejcied5acc52019-04-25 15:57:04 +0200279libyang_verbclb(LY_LOG_LEVEL level, const char *msg, const char *path)
280{
281 char *levstr;
282
Radek Krejcie9f13b12020-11-09 17:42:04 +0100283 switch (level) {
284 case LY_LLERR:
285 levstr = "err :";
286 break;
287 case LY_LLWRN:
288 levstr = "warn:";
289 break;
290 case LY_LLVRB:
291 levstr = "verb:";
292 break;
293 default:
294 levstr = "dbg :";
295 break;
296 }
297 if (path) {
298 fprintf(stderr, "libyang %s %s (%s)\n", levstr, msg, path);
299 } else {
300 fprintf(stderr, "libyang %s %s\n", levstr, msg);
Radek Krejcied5acc52019-04-25 15:57:04 +0200301 }
302}
303
Michal Vasko686d8fc2021-11-22 10:03:23 +0100304static struct schema_features *
305get_features_not_applied(const struct ly_set *fset)
306{
307 for (uint32_t u = 0; u < fset->count; ++u) {
308 struct schema_features *sf = fset->objs[u];
309 if (!sf->applied) {
310 return sf;
311 }
312 }
313
314 return NULL;
315}
316
Radek Krejcie9f13b12020-11-09 17:42:04 +0100317static int
318fill_context_inputs(int argc, char *argv[], struct context *c)
319{
Michal Vasko24aaf8e2022-02-04 11:15:26 +0100320 struct ly_in *in = NULL;
Michal Vasko686d8fc2021-11-22 10:03:23 +0100321 struct schema_features *sf;
Michal Vaskoc91fb122021-11-23 09:00:17 +0100322 struct lys_module *mod;
Michal Vasko24aaf8e2022-02-04 11:15:26 +0100323 const char *all_features[] = {"*", NULL}, *searchdir;
324 char *dir = NULL, *module = NULL;
325
326 /* get the first searchdir */
327 searchdir = c->searchpaths.count ? c->searchpaths.objs[0] : NULL;
328
329 if (c->yang_lib_file) {
330 /* ignore features */
331 ly_set_erase(&c->schema_features, free_features);
332
333 /* create context from the yang-library file */
334 if (ly_ctx_new_ylpath(searchdir, c->yang_lib_file, LYD_UNKNOWN, c->ctx_options, &c->ctx)) {
335 YLMSG_E("Unable to create libyang context from yang-library data.\n");
336 return -1;
337 }
338 } else {
339 /* set imp feature flag if all should be enabled */
340 if (!c->schema_features.count) {
341 c->ctx_options |= LY_CTX_ENABLE_IMP_FEATURES;
342 }
343
344 /* libyang context */
345 if (ly_ctx_new(searchdir, c->ctx_options, &c->ctx)) {
346 YLMSG_E("Unable to create libyang context.\n");
347 return -1;
348 }
349
350 /* set the rest of searchdirs */
351 for (uint32_t i = 1; i < c->searchpaths.count; ++i) {
352 ly_ctx_set_searchdir(c->ctx, c->searchpaths.objs[i]);
353 }
354 }
Radek Krejcie9f13b12020-11-09 17:42:04 +0100355
Michal Vasko3f08fb92022-04-21 09:52:35 +0200356 /* process the operational and/or reply RPC content if any */
Radek Krejcie9f13b12020-11-09 17:42:04 +0100357 if (c->data_operational.path) {
358 if (get_input(c->data_operational.path, NULL, &c->data_operational.format, &c->data_operational.in)) {
359 return -1;
360 }
361 }
Michal Vasko3f08fb92022-04-21 09:52:35 +0200362 if (c->reply_rpc.path) {
363 if (get_input(c->reply_rpc.path, NULL, &c->reply_rpc.format, &c->reply_rpc.in)) {
364 return -1;
365 }
366 }
Radek Krejcie9f13b12020-11-09 17:42:04 +0100367
368 for (int i = 0; i < argc - optind; i++) {
369 LYS_INFORMAT format_schema = LYS_IN_UNKNOWN;
370 LYD_FORMAT format_data = LYD_UNKNOWN;
Radek Krejcie9f13b12020-11-09 17:42:04 +0100371
372 if (get_input(argv[optind + i], &format_schema, &format_data, &in)) {
Radek Krejcif2afd672020-11-26 12:29:23 +0100373 goto error;
Radek Krejcie9f13b12020-11-09 17:42:04 +0100374 }
375
376 if (format_schema) {
377 LY_ERR ret;
378 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 +0100379 const char **features;
Michal Vasko4de7d072021-07-09 09:13:18 +0200380 struct lys_module *mod;
Radek Krejcie9f13b12020-11-09 17:42:04 +0100381
Michal Vasko24aaf8e2022-02-04 11:15:26 +0100382 /* parse the input */
Radek Krejcie9f13b12020-11-09 17:42:04 +0100383 if (parse_schema_path(argv[optind + i], &dir, &module)) {
Radek Krejcif2afd672020-11-26 12:29:23 +0100384 goto error;
Radek Krejcie9f13b12020-11-09 17:42:04 +0100385 }
386
Michal Vasko24aaf8e2022-02-04 11:15:26 +0100387 if (c->yang_lib_file) {
388 /* just get the module, it should already be parsed */
389 mod = ly_ctx_get_module_implemented(c->ctx, module);
390 if (!mod) {
391 YLMSG_E("Schema module \"%s\" not implemented in yang-library data.\n", module);
392 goto error;
393 }
Michal Vasko59740872021-11-22 10:01:34 +0100394 } else {
Michal Vasko24aaf8e2022-02-04 11:15:26 +0100395 /* add temporarily also the path of the module itself */
396 if (ly_ctx_set_searchdir(c->ctx, dir) == LY_EEXIST) {
397 path_unset = 0;
398 }
399
400 /* get features list for this module */
401 if (!c->schema_features.count) {
402 features = all_features;
403 } else {
404 get_features(&c->schema_features, module, &features);
405 }
406
407 /* parse module */
408 ret = lys_parse(c->ctx, in, format_schema, features, &mod);
409 ly_ctx_unset_searchdir_last(c->ctx, path_unset);
410 if (ret) {
411 YLMSG_E("Parsing schema module \"%s\" failed.\n", argv[optind + i]);
412 goto error;
413 }
Michal Vasko703370c2021-10-19 14:07:16 +0200414 }
415
Radek Krejcie9f13b12020-11-09 17:42:04 +0100416 /* temporary cleanup */
417 free(dir);
Michal Vasko24aaf8e2022-02-04 11:15:26 +0100418 dir = NULL;
Radek Krejcie9f13b12020-11-09 17:42:04 +0100419 free(module);
Michal Vasko24aaf8e2022-02-04 11:15:26 +0100420 module = NULL;
Radek Krejcie9f13b12020-11-09 17:42:04 +0100421
422 if (c->schema_out_format) {
Michal Vasko24aaf8e2022-02-04 11:15:26 +0100423 /* module will be printed */
Radek Krejcie9f13b12020-11-09 17:42:04 +0100424 if (ly_set_add(&c->schema_modules, (void *)mod, 1, NULL)) {
425 YLMSG_E("Storing parsed schema module (%s) for print failed.\n", argv[optind + i]);
Radek Krejcif2afd672020-11-26 12:29:23 +0100426 goto error;
Radek Krejcie9f13b12020-11-09 17:42:04 +0100427 }
428 }
Radek Krejcie9f13b12020-11-09 17:42:04 +0100429 } else if (format_data) {
Radek Krejci6784a4e2020-12-09 14:23:05 +0100430 if (!fill_cmdline_file(&c->data_inputs, in, argv[optind + i], format_data)) {
Radek Krejcif2afd672020-11-26 12:29:23 +0100431 goto error;
Radek Krejcie9f13b12020-11-09 17:42:04 +0100432 }
Radek Krejcif53b0d52020-12-03 11:29:24 +0100433 in = NULL;
Radek Krejcie9f13b12020-11-09 17:42:04 +0100434 }
Michal Vasko24aaf8e2022-02-04 11:15:26 +0100435
436 ly_in_free(in, 1);
437 in = NULL;
Radek Krejcie9f13b12020-11-09 17:42:04 +0100438 }
439
Michal Vaskoc91fb122021-11-23 09:00:17 +0100440 /* check that all specified features were applied, apply now if possible */
441 while ((sf = get_features_not_applied(&c->schema_features))) {
442 /* try to find implemented or the latest revision of this module */
443 mod = ly_ctx_get_module_implemented(c->ctx, sf->mod_name);
444 if (!mod) {
445 mod = ly_ctx_get_module_latest(c->ctx, sf->mod_name);
Michal Vasko686d8fc2021-11-22 10:03:23 +0100446 }
Michal Vaskoc91fb122021-11-23 09:00:17 +0100447 if (!mod) {
448 YLMSG_E("Specified features not applied, module \"%s\" not loaded.\n", sf->mod_name);
449 goto error;
450 }
451
452 /* we have the module, implement it if needed and enable the specific features */
453 if (lys_set_implemented(mod, (const char **)sf->features)) {
454 YLMSG_E("Implementing module \"%s\" failed.\n", mod->name);
455 goto error;
456 }
457 sf->applied = 1;
Michal Vasko686d8fc2021-11-22 10:03:23 +0100458 }
459
Radek Krejcie9f13b12020-11-09 17:42:04 +0100460 return 0;
Radek Krejcif2afd672020-11-26 12:29:23 +0100461
462error:
463 ly_in_free(in, 1);
Michal Vasko24aaf8e2022-02-04 11:15:26 +0100464 free(dir);
465 free(module);
Radek Krejcif2afd672020-11-26 12:29:23 +0100466 return -1;
Radek Krejcie9f13b12020-11-09 17:42:04 +0100467}
468
469/**
470 * @brief Process command line options and store the settings into the context.
471 *
472 * return -1 in case of error;
473 * return 0 in case of success and ready to process
474 * return 1 in case of success, but expect to exit.
Radek Krejcied5acc52019-04-25 15:57:04 +0200475 */
476static int
Radek Krejcie9f13b12020-11-09 17:42:04 +0100477fill_context(int argc, char *argv[], struct context *c)
Radek Krejcied5acc52019-04-25 15:57:04 +0200478{
Radek Krejcie9f13b12020-11-09 17:42:04 +0100479 int ret;
Radek Krejcie7b95092019-05-15 11:03:07 +0200480
Radek Krejcie9f13b12020-11-09 17:42:04 +0100481 int opt, opt_index;
Radek Krejcied5acc52019-04-25 15:57:04 +0200482 struct option options[] = {
Michal Vasko24aaf8e2022-02-04 11:15:26 +0100483 {"help", no_argument, NULL, 'h'},
484 {"version", no_argument, NULL, 'v'},
485 {"verbose", no_argument, NULL, 'V'},
486 {"quiet", no_argument, NULL, 'Q'},
487 {"format", required_argument, NULL, 'f'},
488 {"path", required_argument, NULL, 'p'},
Michal Vaskod8b0e772022-03-18 13:36:04 +0100489 {"disable-searchdir", no_argument, NULL, 'D'},
Michal Vasko24aaf8e2022-02-04 11:15:26 +0100490 {"features", required_argument, NULL, 'F'},
491 {"make-implemented", no_argument, NULL, 'i'},
492 {"schema-node", required_argument, NULL, 'P'},
493 {"single-node", no_argument, NULL, 'q'},
494 {"submodule", required_argument, NULL, 's'},
495 {"not-strict", no_argument, NULL, 'n'},
496 {"present", no_argument, NULL, 'e'},
497 {"type", required_argument, NULL, 't'},
498 {"default", required_argument, NULL, 'd'},
499 {"list", no_argument, NULL, 'l'},
500 {"tree-line-length", required_argument, NULL, 'L'},
501 {"output", required_argument, NULL, 'o'},
502 {"operational", required_argument, NULL, 'O'},
Michal Vasko3f08fb92022-04-21 09:52:35 +0200503 {"reply-rpc", required_argument, NULL, 'R'},
Michal Vasko24aaf8e2022-02-04 11:15:26 +0100504 {"merge", no_argument, NULL, 'm'},
505 {"yang-library", no_argument, NULL, 'y'},
506 {"yang-library-file", required_argument, NULL, 'Y'},
Michal Vaskoc40548b2021-09-30 13:05:47 +0200507#ifndef NDEBUG
508 {"debug", required_argument, NULL, 'G'},
509#endif
Radek Krejcied5acc52019-04-25 15:57:04 +0200510 {NULL, 0, NULL, 0}
511 };
Radek Krejcie9f13b12020-11-09 17:42:04 +0100512 uint8_t data_type_set = 0;
513
Michal Vasko24aaf8e2022-02-04 11:15:26 +0100514 c->ctx_options = YL_DEFAULT_CTX_OPTIONS;
Michal Vasko667ce6b2021-01-25 15:00:27 +0100515 c->data_parse_options = YL_DEFAULT_DATA_PARSE_OPTIONS;
aPiecek2cfeeae2021-04-21 13:17:34 +0200516 c->line_length = 0;
Michal Vasko667ce6b2021-01-25 15:00:27 +0100517
Michal Vasko27a4acb2021-11-22 10:03:46 +0100518 opterr = 0;
Radek Krejcied5acc52019-04-25 15:57:04 +0200519#ifndef NDEBUG
Michal Vasko3f08fb92022-04-21 09:52:35 +0200520 while ((opt = getopt_long(argc, argv, "hvVQf:p:DF:iP:qs:net:d:lL:o:O:R:myY:G:", options, &opt_index)) != -1) {
Michal Vasko27a4acb2021-11-22 10:03:46 +0100521#else
Michal Vasko3f08fb92022-04-21 09:52:35 +0200522 while ((opt = getopt_long(argc, argv, "hvVQf:p:DF:iP:qs:net:d:lL:o:O:R:myY:", options, &opt_index)) != -1) {
Radek Krejcied5acc52019-04-25 15:57:04 +0200523#endif
Radek Krejcied5acc52019-04-25 15:57:04 +0200524 switch (opt) {
Michal Vaskoc40548b2021-09-30 13:05:47 +0200525 case 'h': /* --help */
526 help(0);
527 return 1;
528
529 case 'v': /* --version */
530 version();
531 return 1;
532
533 case 'V': { /* --verbose */
534 LY_LOG_LEVEL verbosity = ly_log_level(LY_LLERR);
Michal Vaskoc40548b2021-09-30 13:05:47 +0200535 if (verbosity < LY_LLDBG) {
Michal Vaskob0d307b2021-11-25 11:15:16 +0100536 ++verbosity;
Radek Krejcied5acc52019-04-25 15:57:04 +0200537 }
Michal Vaskob0d307b2021-11-25 11:15:16 +0100538 ly_log_level(verbosity);
Radek Krejcied5acc52019-04-25 15:57:04 +0200539 break;
Michal Vaskoc40548b2021-09-30 13:05:47 +0200540 } /* case 'V' */
Radek Krejcie9f13b12020-11-09 17:42:04 +0100541
Michal Vaskob0d307b2021-11-25 11:15:16 +0100542 case 'Q': { /* --quiet */
543 LY_LOG_LEVEL verbosity = ly_log_level(LY_LLERR);
544 if (verbosity == LY_LLERR) {
545 /* turn logging off */
546 ly_log_options(LY_LOSTORE_LAST);
547 } else if (verbosity > LY_LLERR) {
548 --verbosity;
549 }
550 ly_log_level(verbosity);
551 break;
552 } /* case 'Q' */
553
Radek Krejcie9f13b12020-11-09 17:42:04 +0100554 case 'f': /* --format */
555 if (!strcasecmp(optarg, "yang")) {
556 c->schema_out_format = LYS_OUT_YANG;
557 c->data_out_format = 0;
558 } else if (!strcasecmp(optarg, "yin")) {
559 c->schema_out_format = LYS_OUT_YIN;
560 c->data_out_format = 0;
561 } else if (!strcasecmp(optarg, "info")) {
562 c->schema_out_format = LYS_OUT_YANG_COMPILED;
563 c->data_out_format = 0;
564 } else if (!strcasecmp(optarg, "tree")) {
565 c->schema_out_format = LYS_OUT_TREE;
566 c->data_out_format = 0;
567 } else if (!strcasecmp(optarg, "xml")) {
568 c->schema_out_format = 0;
569 c->data_out_format = LYD_XML;
570 } else if (!strcasecmp(optarg, "json")) {
571 c->schema_out_format = 0;
572 c->data_out_format = LYD_JSON;
Michal Vaskod8b0e772022-03-18 13:36:04 +0100573 } else if (!strcasecmp(optarg, "lyb")) {
574 c->schema_out_format = 0;
575 c->data_out_format = LYD_LYB;
Radek Krejcied5acc52019-04-25 15:57:04 +0200576 } else {
Radek Krejcie9f13b12020-11-09 17:42:04 +0100577 YLMSG_E("Unknown output format %s\n", optarg);
Radek Krejcied5acc52019-04-25 15:57:04 +0200578 help(1);
Radek Krejcie9f13b12020-11-09 17:42:04 +0100579 return -1;
Radek Krejcied5acc52019-04-25 15:57:04 +0200580 }
581 break;
Radek Krejcie9f13b12020-11-09 17:42:04 +0100582
Michal Vaskoc40548b2021-09-30 13:05:47 +0200583 case 'p': { /* --path */
584 struct stat st;
585
586 if (stat(optarg, &st) == -1) {
587 YLMSG_E("Unable to use search path (%s) - %s.\n", optarg, strerror(errno));
588 return -1;
589 }
590 if (!S_ISDIR(st.st_mode)) {
591 YLMSG_E("Provided search path is not a directory.\n");
592 return -1;
593 }
594
595 if (ly_set_add(&c->searchpaths, optarg, 0, NULL)) {
596 YLMSG_E("Storing searchpath failed.\n");
597 return -1;
598 }
599
600 break;
601 } /* case 'p' */
602
603 case 'D': /* --disable-search */
Michal Vasko24aaf8e2022-02-04 11:15:26 +0100604 if (c->ctx_options & LY_CTX_DISABLE_SEARCHDIRS) {
Michal Vaskoc40548b2021-09-30 13:05:47 +0200605 YLMSG_W("The -D option specified too many times.\n");
606 }
Michal Vasko24aaf8e2022-02-04 11:15:26 +0100607 if (c->ctx_options & LY_CTX_DISABLE_SEARCHDIR_CWD) {
608 c->ctx_options &= ~LY_CTX_DISABLE_SEARCHDIR_CWD;
609 c->ctx_options |= LY_CTX_DISABLE_SEARCHDIRS;
Michal Vaskoc40548b2021-09-30 13:05:47 +0200610 } else {
Michal Vasko24aaf8e2022-02-04 11:15:26 +0100611 c->ctx_options |= LY_CTX_DISABLE_SEARCHDIR_CWD;
Michal Vaskoc40548b2021-09-30 13:05:47 +0200612 }
613 break;
614
615 case 'F': /* --features */
616 if (parse_features(optarg, &c->schema_features)) {
617 return -1;
618 }
619 break;
620
Michal Vasko8d6d0ad2021-10-19 12:32:27 +0200621 case 'i': /* --make-implemented */
Michal Vasko24aaf8e2022-02-04 11:15:26 +0100622 if (c->ctx_options & LY_CTX_REF_IMPLEMENTED) {
623 c->ctx_options &= ~LY_CTX_REF_IMPLEMENTED;
624 c->ctx_options |= LY_CTX_ALL_IMPLEMENTED;
Michal Vaskoc40548b2021-09-30 13:05:47 +0200625 } else {
Michal Vasko24aaf8e2022-02-04 11:15:26 +0100626 c->ctx_options |= LY_CTX_REF_IMPLEMENTED;
Michal Vaskoc40548b2021-09-30 13:05:47 +0200627 }
628 break;
629
Radek Krejcie9f13b12020-11-09 17:42:04 +0100630 case 'P': /* --schema-node */
631 c->schema_node_path = optarg;
Radek Krejcied5acc52019-04-25 15:57:04 +0200632 break;
Radek Krejcie9f13b12020-11-09 17:42:04 +0100633
634 case 'q': /* --single-node */
635 c->schema_print_options |= LYS_PRINT_NO_SUBSTMT;
636 break;
637
Michal Vaskofe74d1e2021-09-30 13:17:36 +0200638 case 's': /* --submodule */
639 c->submodule = optarg;
640 break;
641
Michal Vasko667ce6b2021-01-25 15:00:27 +0100642 case 'n': /* --not-strict */
643 c->data_parse_options &= ~LYD_PARSE_STRICT;
Radek Krejcie9f13b12020-11-09 17:42:04 +0100644 break;
645
646 case 'e': /* --present */
647 c->data_validate_options |= LYD_VALIDATE_PRESENT;
648 break;
649
650 case 't': /* --type */
651 if (data_type_set) {
652 YLMSG_E("The data type (-t) cannot be set multiple times.\n");
653 return -1;
654 }
655
656 if (!strcasecmp(optarg, "config")) {
657 c->data_parse_options |= LYD_PARSE_NO_STATE;
Michal Vaskof6bda332021-02-01 08:59:03 +0100658 c->data_validate_options |= LYD_VALIDATE_NO_STATE;
Radek Krejcie9f13b12020-11-09 17:42:04 +0100659 } else if (!strcasecmp(optarg, "get")) {
660 c->data_parse_options |= LYD_PARSE_ONLY;
661 } else if (!strcasecmp(optarg, "getconfig") || !strcasecmp(optarg, "get-config")) {
662 c->data_parse_options |= LYD_PARSE_ONLY | LYD_PARSE_NO_STATE;
663 } else if (!strcasecmp(optarg, "edit")) {
664 c->data_parse_options |= LYD_PARSE_ONLY;
Michal Vasko3f08fb92022-04-21 09:52:35 +0200665 } else if (!strcasecmp(optarg, "rpc")) {
Michal Vasko1e4c68e2021-02-18 15:03:01 +0100666 c->data_type = LYD_TYPE_RPC_YANG;
Michal Vasko3f08fb92022-04-21 09:52:35 +0200667 } else if (!strcasecmp(optarg, "nc-rpc")) {
668 c->data_type = LYD_TYPE_RPC_NETCONF;
669 } else if (!strcasecmp(optarg, "reply")) {
Michal Vasko1e4c68e2021-02-18 15:03:01 +0100670 c->data_type = LYD_TYPE_REPLY_YANG;
Michal Vasko3f08fb92022-04-21 09:52:35 +0200671 } else if (!strcasecmp(optarg, "nc-reply")) {
672 c->data_type = LYD_TYPE_REPLY_NETCONF;
673 } else if (!strcasecmp(optarg, "notif")) {
Michal Vasko1e4c68e2021-02-18 15:03:01 +0100674 c->data_type = LYD_TYPE_NOTIF_YANG;
Michal Vasko3f08fb92022-04-21 09:52:35 +0200675 } else if (!strcasecmp(optarg, "nc-notif")) {
676 c->data_type = LYD_TYPE_NOTIF_NETCONF;
Radek Krejcie9f13b12020-11-09 17:42:04 +0100677 } else if (!strcasecmp(optarg, "data")) {
678 /* default option */
679 } else {
680 YLMSG_E("Unknown data tree type %s\n", optarg);
681 help(1);
682 return -1;
683 }
684
685 data_type_set = 1;
686 break;
687
Michal Vaskoc40548b2021-09-30 13:05:47 +0200688 case 'd': /* --default */
689 if (!strcasecmp(optarg, "all")) {
690 c->data_print_options = (c->data_print_options & ~LYD_PRINT_WD_MASK) | LYD_PRINT_WD_ALL;
691 } else if (!strcasecmp(optarg, "all-tagged")) {
692 c->data_print_options = (c->data_print_options & ~LYD_PRINT_WD_MASK) | LYD_PRINT_WD_ALL_TAG;
693 } else if (!strcasecmp(optarg, "trim")) {
694 c->data_print_options = (c->data_print_options & ~LYD_PRINT_WD_MASK) | LYD_PRINT_WD_TRIM;
695 } else if (!strcasecmp(optarg, "implicit-tagged")) {
696 c->data_print_options = (c->data_print_options & ~LYD_PRINT_WD_MASK) | LYD_PRINT_WD_IMPL_TAG;
697 } else {
698 YLMSG_E("Unknown default mode %s\n", optarg);
699 help(1);
700 return -1;
701 }
702 break;
703
704 case 'l': /* --list */
705 c->list = 1;
706 break;
707
708 case 'L': /* --tree-line-length */
709 c->line_length = atoi(optarg);
710 break;
711
712 case 'o': /* --output */
713 if (c->out) {
714 YLMSG_E("Only a single output can be specified.\n");
715 return -1;
716 } else {
717 if (ly_out_new_filepath(optarg, &c->out)) {
718 YLMSG_E("Unable open output file %s (%s)\n", optarg, strerror(errno));
719 return -1;
720 }
721 }
722 break;
723
Radek Krejcie9f13b12020-11-09 17:42:04 +0100724 case 'O': /* --operational */
725 if (c->data_operational.path) {
726 YLMSG_E("The operational datastore (-O) cannot be set multiple times.\n");
727 return -1;
728 }
729 c->data_operational.path = optarg;
730 break;
731
Michal Vasko3f08fb92022-04-21 09:52:35 +0200732 case 'R': /* --reply-rpc */
733 if (c->reply_rpc.path) {
734 YLMSG_E("The PRC of the reply (-R) cannot be set multiple times.\n");
735 return -1;
736 }
737 c->reply_rpc.path = optarg;
738 break;
739
Radek Krejcie9f13b12020-11-09 17:42:04 +0100740 case 'm': /* --merge */
741 c->data_merge = 1;
742 break;
743
Michal Vaskoc431a0a2021-01-25 14:31:58 +0100744 case 'y': /* --yang-library */
Michal Vasko24aaf8e2022-02-04 11:15:26 +0100745 c->ctx_options &= ~LY_CTX_NO_YANGLIBRARY;
746 break;
747
748 case 'Y': /* --yang-library-file */
749 c->ctx_options &= ~LY_CTX_NO_YANGLIBRARY;
750 c->yang_lib_file = optarg;
Michal Vaskoc431a0a2021-01-25 14:31:58 +0100751 break;
752
Radek Krejcied5acc52019-04-25 15:57:04 +0200753#ifndef NDEBUG
Radek Krejcie9f13b12020-11-09 17:42:04 +0100754 case 'G': { /* --debug */
755 uint32_t dbg_groups = 0;
756 const char *ptr = optarg;
757
Radek Krejcied5acc52019-04-25 15:57:04 +0200758 while (ptr[0]) {
Radek Krejcif13b87b2020-12-01 22:02:17 +0100759 if (!strncasecmp(ptr, "dict", sizeof "dict" - 1)) {
Radek Krejcie9f13b12020-11-09 17:42:04 +0100760 dbg_groups |= LY_LDGDICT;
Radek Krejcif13b87b2020-12-01 22:02:17 +0100761 ptr += sizeof "dict" - 1;
762 } else if (!strncasecmp(ptr, "xpath", sizeof "xpath" - 1)) {
Radek Krejcie9f13b12020-11-09 17:42:04 +0100763 dbg_groups |= LY_LDGXPATH;
Radek Krejcif13b87b2020-12-01 22:02:17 +0100764 ptr += sizeof "xpath" - 1;
Michal Vasko27a4acb2021-11-22 10:03:46 +0100765 } else if (!strncasecmp(ptr, "dep-sets", sizeof "dep-sets" - 1)) {
766 dbg_groups |= LY_LDGDEPSETS;
767 ptr += sizeof "dep-sets" - 1;
Radek Krejcied5acc52019-04-25 15:57:04 +0200768 }
769
770 if (ptr[0]) {
771 if (ptr[0] != ',') {
Radek Krejcie9f13b12020-11-09 17:42:04 +0100772 YLMSG_E("Unknown debug group string \"%s\"\n", optarg);
773 return -1;
Radek Krejcied5acc52019-04-25 15:57:04 +0200774 }
775 ++ptr;
776 }
777 }
Radek Krejcie9f13b12020-11-09 17:42:04 +0100778 ly_log_dbg_groups(dbg_groups);
Radek Krejcied5acc52019-04-25 15:57:04 +0200779 break;
Radek Krejcie9f13b12020-11-09 17:42:04 +0100780 } /* case 'G' */
Radek Krejcied5acc52019-04-25 15:57:04 +0200781#endif
Michal Vasko27a4acb2021-11-22 10:03:46 +0100782 default:
783 YLMSG_E("Invalid option or missing argument: -%c\n", optopt);
784 return -1;
Radek Krejcie9f13b12020-11-09 17:42:04 +0100785 } /* switch */
786 }
787
Radek Krejcie9f13b12020-11-09 17:42:04 +0100788 /* additional checks for the options combinations */
789 if (!c->list && (optind >= argc)) {
790 help(1);
791 YLMSG_E("Missing <schema> to process.\n");
792 return 1;
793 }
794
795 if (c->data_merge) {
796 if (c->data_type || (c->data_parse_options & LYD_PARSE_ONLY)) {
797 /* switch off the option, incompatible input data type */
798 c->data_merge = 0;
799 } else {
800 /* postpone validation after the merge of all the input data */
801 c->data_parse_options |= LYD_PARSE_ONLY;
Radek Krejcied5acc52019-04-25 15:57:04 +0200802 }
803 }
804
Radek Krejcie9f13b12020-11-09 17:42:04 +0100805 if (c->data_operational.path && !c->data_type) {
Michal Vasko3f08fb92022-04-21 09:52:35 +0200806 YLMSG_E("Operational datastore takes effect only with RPCs/Actions/Replies/Notification input data types.\n");
Radek Krejcie9f13b12020-11-09 17:42:04 +0100807 c->data_operational.path = NULL;
Radek Krejcied5acc52019-04-25 15:57:04 +0200808 }
Radek Krejcie9f13b12020-11-09 17:42:04 +0100809
Michal Vasko3f08fb92022-04-21 09:52:35 +0200810 if (c->reply_rpc.path && (c->data_type != LYD_TYPE_REPLY_NETCONF)) {
811 YLMSG_E("Source RPC is needed only for NETCONF Reply input data type.\n");
812 c->data_operational.path = NULL;
813 } else if (!c->reply_rpc.path && (c->data_type == LYD_TYPE_REPLY_NETCONF)) {
814 YLMSG_E("Missing source RPC (-R) for NETCONF Reply input data type.\n");
815 return -1;
816 }
817
aPiecek2cfeeae2021-04-21 13:17:34 +0200818 if ((c->schema_out_format != LYS_OUT_TREE) && c->line_length) {
819 YLMSG_E("--tree-line-length take effect only in case of the tree output format.\n");
820 }
821
Radek Krejcie9f13b12020-11-09 17:42:04 +0100822 /* default output stream */
823 if (!c->out) {
824 if (ly_out_new_file(stdout, &c->out)) {
825 YLMSG_E("Unable to set stdout as output.\n");
826 return -1;
Radek Krejcied5acc52019-04-25 15:57:04 +0200827 }
828 }
Radek Krejcie9f13b12020-11-09 17:42:04 +0100829
aPiecek7ac66d52021-05-20 07:54:07 +0200830 if (c->schema_out_format == LYS_OUT_TREE) {
831 /* print tree from lysc_nodes */
Michal Vasko24aaf8e2022-02-04 11:15:26 +0100832 c->ctx_options |= LY_CTX_SET_PRIV_PARSED;
aPiecek7ac66d52021-05-20 07:54:07 +0200833 }
834
Radek Krejcie9f13b12020-11-09 17:42:04 +0100835 /* process input files provided as standalone command line arguments,
836 * schema modules are parsed and inserted into the context,
837 * data files are just checked and prepared into internal structures for further processing */
838 ret = fill_context_inputs(argc, argv, c);
839 if (ret) {
840 return ret;
841 }
842
843 /* the second batch of checks */
844 if (c->schema_print_options && !c->schema_out_format) {
845 YLMSG_W("Schema printer options specified, but the schema output format is missing.\n");
846 }
847 if (c->schema_parse_options && !c->schema_modules.count) {
848 YLMSG_W("Schema parser options specified, but no schema input file provided.\n");
849 }
850 if (c->data_print_options && !c->data_out_format) {
851 YLMSG_W("data printer options specified, but the data output format is missing.\n");
852 }
Michal Vasko667ce6b2021-01-25 15:00:27 +0100853 if (((c->data_parse_options != YL_DEFAULT_DATA_PARSE_OPTIONS) || c->data_type) && !c->data_inputs.count) {
Radek Krejcie9f13b12020-11-09 17:42:04 +0100854 YLMSG_W("Data parser options specified, but no data input file provided.\n");
855 }
856
857 if (c->schema_node_path) {
858 c->schema_node = lys_find_path(c->ctx, NULL, c->schema_node_path, 0);
859 if (!c->schema_node) {
860 c->schema_node = lys_find_path(c->ctx, NULL, c->schema_node_path, 1);
861
862 if (!c->schema_node) {
863 YLMSG_E("Invalid schema path.\n");
864 return -1;
865 }
Radek Krejcied5acc52019-04-25 15:57:04 +0200866 }
Radek Krejcied5acc52019-04-25 15:57:04 +0200867 }
Radek Krejcie9f13b12020-11-09 17:42:04 +0100868
Radek Krejcie9f13b12020-11-09 17:42:04 +0100869 return 0;
870}
871
872int
873main_ni(int argc, char *argv[])
874{
875 int ret = EXIT_SUCCESS, r;
876 struct context c = {0};
Radek Krejcied5acc52019-04-25 15:57:04 +0200877
878 /* set callback for printing libyang messages */
879 ly_set_log_clb(libyang_verbclb, 1);
Radek Krejcie9f13b12020-11-09 17:42:04 +0100880
881 r = fill_context(argc, argv, &c);
882 if (r < 0) {
883 ret = EXIT_FAILURE;
Radek Krejcied5acc52019-04-25 15:57:04 +0200884 }
Radek Krejcie9f13b12020-11-09 17:42:04 +0100885 if (r) {
Radek Krejcied5acc52019-04-25 15:57:04 +0200886 goto cleanup;
887 }
888
Radek Krejcie9f13b12020-11-09 17:42:04 +0100889 /* do the required job - parse, validate, print */
890
891 if (c.list) {
892 /* print the list of schemas */
893 print_list(c.out, c.ctx, c.data_out_format);
Radek Krejci047d64e2020-12-03 12:57:10 +0100894 } else {
895 if (c.schema_out_format) {
896 if (c.schema_node) {
897 ret = lys_print_node(c.out, c.schema_node, c.schema_out_format, 0, c.schema_print_options);
Radek Krejcie9f13b12020-11-09 17:42:04 +0100898 if (ret) {
Radek Krejci047d64e2020-12-03 12:57:10 +0100899 YLMSG_E("Unable to print schema node %s.\n", c.schema_node_path);
Radek Krejcie9f13b12020-11-09 17:42:04 +0100900 goto cleanup;
901 }
Michal Vaskofe74d1e2021-09-30 13:17:36 +0200902 } else if (c.submodule) {
903 const struct lysp_submodule *submod = ly_ctx_get_submodule_latest(c.ctx, c.submodule);
904 if (!submod) {
905 YLMSG_E("Unable to find submodule %s.\n", c.submodule);
906 goto cleanup;
907 }
908
909 ret = lys_print_submodule(c.out, submod, c.schema_out_format, c.line_length, c.schema_print_options);
910 if (ret) {
911 YLMSG_E("Unable to print submodule %s.\n", submod->name);
912 goto cleanup;
913 }
Radek Krejci047d64e2020-12-03 12:57:10 +0100914 } else {
915 for (uint32_t u = 0; u < c.schema_modules.count; ++u) {
aPiecek2cfeeae2021-04-21 13:17:34 +0200916 ret = lys_print_module(c.out, (struct lys_module *)c.schema_modules.objs[u], c.schema_out_format,
917 c.line_length, c.schema_print_options);
aPiecek8f0b7882021-05-21 10:18:36 +0200918 /* for YANG Tree Diagrams printing it's more readable to print a blank line between modules. */
919 if ((c.schema_out_format == LYS_OUT_TREE) && (u + 1 < c.schema_modules.count)) {
920 ly_print(c.out, "\n");
921 }
Radek Krejci047d64e2020-12-03 12:57:10 +0100922 if (ret) {
923 YLMSG_E("Unable to print module %s.\n", ((struct lys_module *)c.schema_modules.objs[u])->name);
924 goto cleanup;
925 }
926 }
Radek Krejcie9f13b12020-11-09 17:42:04 +0100927 }
Radek Krejcied5acc52019-04-25 15:57:04 +0200928 }
Radek Krejci047d64e2020-12-03 12:57:10 +0100929
930 /* do the data validation despite the schema was printed */
931 if (c.data_inputs.size) {
Michal Vasko0f1e4562022-03-29 11:57:57 +0200932 ret = process_data(c.ctx, c.data_type, c.data_merge, c.data_out_format, c.out, c.data_parse_options,
Michal Vasko3f08fb92022-04-21 09:52:35 +0200933 c.data_validate_options, c.data_print_options, &c.data_operational, &c.reply_rpc, &c.data_inputs, NULL);
Michal Vasko0f1e4562022-03-29 11:57:57 +0200934 if (ret) {
Radek Krejci047d64e2020-12-03 12:57:10 +0100935 goto cleanup;
936 }
Radek Krejcied5acc52019-04-25 15:57:04 +0200937 }
Radek Krejcied5acc52019-04-25 15:57:04 +0200938 }
Radek Krejcied5acc52019-04-25 15:57:04 +0200939
940cleanup:
Radek Krejcie9f13b12020-11-09 17:42:04 +0100941 /* cleanup */
942 erase_context(&c);
Radek Krejcied5acc52019-04-25 15:57:04 +0200943
Radek Krejcied5acc52019-04-25 15:57:04 +0200944 return ret;
945}