blob: 44ef77e5d7e2734edf6cd516bb8687141f9f6033 [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
aPiecek912f3d52022-10-12 10:02:33 +020044 char *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
ekinzie0ab8b302022-10-10 03:03:57 -040070 /* name of file containing explicit context passed to callback
71 * for schema-mount extension. This also causes a callback to
72 * be registered.
73 */
74 char *schema_context_filename;
75
Radek Krejcie9f13b12020-11-09 17:42:04 +010076 /* value of --format in case of schema format */
77 LYS_OUTFORMAT schema_out_format;
roman300b8782022-08-11 12:49:21 +020078 ly_bool feature_param_format;
Radek Krejcie9f13b12020-11-09 17:42:04 +010079
80 /*
81 * data
82 */
83 /* various options based on --type option */
Michal Vaskoe0665742021-02-11 11:08:44 +010084 enum lyd_type data_type;
Radek Krejcie9f13b12020-11-09 17:42:04 +010085 uint32_t data_parse_options;
86 uint32_t data_validate_options;
87 uint32_t data_print_options;
88
89 /* flag for --merge option */
90 uint8_t data_merge;
91
92 /* value of --format in case of data format */
93 LYD_FORMAT data_out_format;
94
95 /* input data files (struct cmdline_file *) */
96 struct ly_set data_inputs;
97
Radek Krejcie9f13b12020-11-09 17:42:04 +010098 /* storage for --operational */
99 struct cmdline_file data_operational;
Michal Vasko3f08fb92022-04-21 09:52:35 +0200100
101 /* storage for --reply-rpc */
102 struct cmdline_file reply_rpc;
Radek Krejcie9f13b12020-11-09 17:42:04 +0100103};
104
105static void
106erase_context(struct context *c)
107{
108 /* data */
109 ly_set_erase(&c->data_inputs, free_cmdline_file);
Radek Krejcie9f13b12020-11-09 17:42:04 +0100110 ly_in_free(c->data_operational.in, 1);
111
112 /* schema */
113 ly_set_erase(&c->schema_features, free_features);
114 ly_set_erase(&c->schema_modules, NULL);
115
116 /* context */
aPiecek912f3d52022-10-12 10:02:33 +0200117 free(c->searchpaths);
118 c->searchpaths = NULL;
Radek Krejcie9f13b12020-11-09 17:42:04 +0100119
120 ly_out_free(c->out, NULL, 0);
Radek Krejci90ed21e2021-04-12 14:47:46 +0200121 ly_ctx_destroy(c->ctx);
ekinzie0ab8b302022-10-10 03:03:57 -0400122
123 if (c->schema_context_filename) {
124 free(c->schema_context_filename);
125 }
Radek Krejcie9f13b12020-11-09 17:42:04 +0100126}
127
128static void
129version(void)
130{
131 printf("yanglint %s\n", PROJECT_VERSION);
132}
133
134static void
Radek Krejcied5acc52019-04-25 15:57:04 +0200135help(int shortout)
136{
Radek Krejcie9f13b12020-11-09 17:42:04 +0100137
Michal Vasko3f08fb92022-04-21 09:52:35 +0200138 printf("Example usage:\n"
139 " yanglint [-f { yang | yin | info}] <schema>...\n"
140 " Validates the YANG module <schema>(s) and all its dependencies, optionally printing\n"
141 " them in the specified format.\n\n"
142 " yanglint [-f { xml | json }] <schema>... <file>...\n"
143 " Validates the YANG modeled data <file>(s) according to the <schema>(s) optionally\n"
144 " printing them in the specified format.\n\n"
145 " yanglint -t (nc-)rpc/notif [-O <operational-file>] <schema>... <file>\n"
146 " Validates the YANG/NETCONF RPC/notification <file> according to the <schema>(s) using\n"
147 " <operational-file> with possible references to the operational datastore data.\n\n"
148 " yanglint -t nc-reply -R <rpc-file> [-O <operational-file>] <schema>... <file>\n"
149 " Validates the NETCONF rpc-reply <file> of RPC <rpc-file> according to the <schema>(s)\n"
150 " using <operational-file> with possible references to the operational datastore data.\n\n"
Radek Krejcie9f13b12020-11-09 17:42:04 +0100151 " yanglint\n"
152 " Starts interactive mode with more features.\n\n");
Radek Krejcied5acc52019-04-25 15:57:04 +0200153
154 if (shortout) {
155 return;
156 }
Radek Krejcie9f13b12020-11-09 17:42:04 +0100157 printf("Options:\n"
158 " -h, --help Show this help message and exit.\n"
159 " -v, --version Show version number and exit.\n"
Michal Vaskob0d307b2021-11-25 11:15:16 +0100160 " -V, --verbose Increase libyang verbosity and show verbose messages. If specified\n"
161 " a second time, show even debug messages.\n"
162 " -Q, --quiet Decrease libyang verbosity and hide warnings. If specified a second\n"
163 " time, hide errors so no libyang messages are printed.\n");
Radek Krejcie9f13b12020-11-09 17:42:04 +0100164
Michal Vaskoc40548b2021-09-30 13:05:47 +0200165 printf(" -f FORMAT, --format=FORMAT\n"
166 " Convert input into FORMAT. Supported formats: \n"
roman300b8782022-08-11 12:49:21 +0200167 " yang, yin, tree, info and feature-param for schemas,\n"
Michal Vaskod8b0e772022-03-18 13:36:04 +0100168 " xml, json, and lyb for data.\n\n");
Michal Vaskoc40548b2021-09-30 13:05:47 +0200169
170 printf(" -p PATH, --path=PATH\n"
171 " Search path for schema (YANG/YIN) modules. The option can be\n"
172 " used multiple times. The current working directory and the\n"
173 " path of the module being added is used implicitly.\n\n");
Radek Krejcie9f13b12020-11-09 17:42:04 +0100174
Michal Vasko22e0f3a2021-09-22 12:19:23 +0200175 printf(" -D, --disable-searchdir\n"
Radek Krejcie9f13b12020-11-09 17:42:04 +0100176 " Do not implicitly search in current working directory for\n"
177 " schema modules. If specified a second time, do not even\n"
178 " search in the module directory (all modules must be \n"
Michal Vasko22e0f3a2021-09-22 12:19:23 +0200179 " explicitly specified).\n\n");
Radek Krejcie9f13b12020-11-09 17:42:04 +0100180
Michal Vasko22e0f3a2021-09-22 12:19:23 +0200181 printf(" -F FEATURES, --features=FEATURES\n"
Michal Vasko59740872021-11-22 10:01:34 +0100182 " Specific module features to support in the form <module-name>:(<feature>,)*\n"
183 " Use <feature> '*' to enable all features of a module. This option can be\n"
184 " specified multiple times, to enable features in multiple modules. If this\n"
185 " option is not specified, all the features in all the implemented modules\n"
186 " are enabled.\n\n");
Radek Krejcie9f13b12020-11-09 17:42:04 +0100187
Michal Vasko8d6d0ad2021-10-19 12:32:27 +0200188 printf(" -i, --make-implemented\n"
Radek Krejcie9f13b12020-11-09 17:42:04 +0100189 " Make the imported modules \"referenced\" from any loaded\n"
190 " module also implemented. If specified a second time, all the\n"
Michal Vasko22e0f3a2021-09-22 12:19:23 +0200191 " modules are set implemented.\n\n");
Radek Krejcie9f13b12020-11-09 17:42:04 +0100192
Michal Vasko22e0f3a2021-09-22 12:19:23 +0200193 printf(" -P PATH, --schema-node=PATH\n"
Radek Krejcie9f13b12020-11-09 17:42:04 +0100194 " Print only the specified subtree of the schema.\n"
195 " The PATH is the XPath subset mentioned in documentation as\n"
196 " the Path format. The option can be combined with --single-node\n"
197 " option to print information only about the specified node.\n"
198 " -q, --single-node\n"
199 " Supplement to the --schema-node option to print information\n"
Michal Vasko22e0f3a2021-09-22 12:19:23 +0200200 " only about a single node specified as PATH argument.\n\n");
Radek Krejcie9f13b12020-11-09 17:42:04 +0100201
Michal Vaskofe74d1e2021-09-30 13:17:36 +0200202 printf(" -s SUBMODULE, --submodule=SUBMODULE\n"
203 " Print the specific submodule instead of the main module.\n\n");
204
ekinzie0ab8b302022-10-10 03:03:57 -0400205 printf(" -x FILE, --ext-data=FILE\n"
206 " File containing the specific data required by an extension. Required by\n"
207 " the schema-mount extension, for example, when the mounted data are\n"
208 " expected in the file. File format is guessed.\n\n");
209
Michal Vasko22e0f3a2021-09-22 12:19:23 +0200210 printf(" -n, --not-strict\n"
Michal Vasko667ce6b2021-01-25 15:00:27 +0100211 " Do not require strict data parsing (silently skip unknown data),\n"
Michal Vasko22e0f3a2021-09-22 12:19:23 +0200212 " has no effect for schemas.\n\n");
Radek Krejcie9f13b12020-11-09 17:42:04 +0100213
Michal Vasko22e0f3a2021-09-22 12:19:23 +0200214 printf(" -e, --present Validate only with the schema modules whose data actually\n"
Radek Krejcie9f13b12020-11-09 17:42:04 +0100215 " exist in the provided input data files. Takes effect only\n"
216 " with the 'data' or 'config' TYPEs. Used to avoid requiring\n"
217 " mandatory nodes from modules which data are not present in the\n"
Michal Vasko22e0f3a2021-09-22 12:19:23 +0200218 " provided input data files.\n\n");
Radek Krejcie9f13b12020-11-09 17:42:04 +0100219
Michal Vasko22e0f3a2021-09-22 12:19:23 +0200220 printf(" -t TYPE, --type=TYPE\n"
Radek Krejcie9f13b12020-11-09 17:42:04 +0100221 " Specify data tree type in the input data file(s):\n"
222 " data - Complete datastore with status data (default type).\n"
223 " config - Configuration datastore (without status data).\n"
Michal Vasko3f08fb92022-04-21 09:52:35 +0200224 " get - Data returned by the NETCONF <get> operation.\n"
225 " getconfig - Data returned by the NETCONF <get-config> operation.\n"
226 " edit - Config content of the NETCONF <edit-config> operation.\n"
227 " rpc - Invocation of a YANG RPC/action, defined as input.\n"
228 " nc-rpc - Similar to 'rpc' but expect and check also the NETCONF\n"
229 " envelopes <rpc> or <action>.\n"
230 " reply - Reply to a YANG RPC/action, defined as output. Note that\n"
231 " the reply data are expected inside a container representing\n"
232 " the original RPC/action invocation.\n"
233 " nc-reply - Similar to 'reply' but expect and check also the NETCONF\n"
234 " envelope <rpc-reply> with output data nodes as direct\n"
235 " descendants. The original RPC/action invocation is expected\n"
236 " in a separate parameter '-R' and is parsed as 'nc-rpc'.\n"
237 " notif - Notification instance of a YANG notification.\n"
238 " nc-notif - Similar to 'notif' but expect and check also the NETCONF\n"
239 " envelope <notification> with element <eventTime> and its\n"
240 " sibling as the actual notification.\n\n");
Michal Vaskoc40548b2021-09-30 13:05:47 +0200241
242 printf(" -d MODE, --default=MODE\n"
243 " Print data with default values, according to the MODE\n"
244 " (to print attributes, ietf-netconf-with-defaults model\n"
245 " must be loaded):\n"
246 " all - Add missing default nodes.\n"
247 " all-tagged - Add missing default nodes and mark all the default\n"
248 " nodes with the attribute.\n"
249 " trim - Remove all nodes with a default value.\n"
250 " implicit-tagged - Add missing nodes and mark them with the attribute.\n\n");
251
252 printf(" -l, --list Print info about the loaded schemas.\n"
253 " (i - imported module, I - implemented module)\n"
Michal Vasko24aaf8e2022-02-04 11:15:26 +0100254 " In case the '-f' option with data encoding is specified,\n"
255 " the list is printed as \"ietf-yang-library\" data.\n\n");
Michal Vaskoc40548b2021-09-30 13:05:47 +0200256
257 printf(" -L LINE_LENGTH, --tree-line-length=LINE_LENGTH\n"
258 " The limit of the maximum line length on which the 'tree'\n"
259 " format will try to be printed.\n\n");
260
261 printf(" -o OUTFILE, --output=OUTFILE\n"
262 " Write the output to OUTFILE instead of stdout.\n\n");
Radek Krejcie9f13b12020-11-09 17:42:04 +0100263
Michal Vasko22e0f3a2021-09-22 12:19:23 +0200264 printf(" -O FILE, --operational=FILE\n"
Michal Vasko9e81ce52022-04-29 10:16:21 +0200265 " Provide optional data to extend validation of the '(nc-)rpc',\n"
266 " '(nc-)reply' or '(nc-)notif' TYPEs. The FILE is supposed to contain\n"
267 " the operational datastore referenced from the operation.\n"
268 " In case of a nested operation, its parent existence is also\n"
269 " checked in these operational data.\n\n");
Radek Krejcie9f13b12020-11-09 17:42:04 +0100270
Michal Vasko3f08fb92022-04-21 09:52:35 +0200271 printf(" -R FILE, --reply-rpc=FILE\n"
272 " Provide source RPC for parsing of the 'nc-reply' TYPE. The FILE\n"
273 " is supposed to contain the source 'nc-rpc' operation of the reply.\n\n");
274
Michal Vasko22e0f3a2021-09-22 12:19:23 +0200275 printf(" -m, --merge Merge input data files into a single tree and validate at\n"
Michal Vasko06158fb2022-03-29 12:13:16 +0200276 " once. The option has effect only for 'data' and 'config' TYPEs.\n\n");
Radek Krejcie9f13b12020-11-09 17:42:04 +0100277
Michal Vasko22e0f3a2021-09-22 12:19:23 +0200278 printf(" -y, --yang-library\n"
Michal Vaskoc431a0a2021-01-25 14:31:58 +0100279 " Load and implement internal \"ietf-yang-library\" YANG module.\n"
280 " Note that this module includes definitions of mandatory state\n"
Michal Vasko22e0f3a2021-09-22 12:19:23 +0200281 " data that can result in unexpected data validation errors.\n\n");
Michal Vaskoc40548b2021-09-30 13:05:47 +0200282
Michal Vasko24aaf8e2022-02-04 11:15:26 +0100283 printf(" -Y FILE, --yang-library-file=FILE\n"
284 " Parse FILE with \"ietf-yang-library\" data and use them to\n"
285 " create an exact YANG schema context. If specified, the '-F'\n"
286 " parameter (enabled features) is ignored.\n\n");
287
Michal Vaskoc40548b2021-09-30 13:05:47 +0200288#ifndef NDEBUG
289 printf(" -G GROUPS, --debug=GROUPS\n"
290 " Enable printing of specific debugging message group\n"
291 " (nothing will be printed unless verbosity is set to debug):\n"
Michal Vasko27a4acb2021-11-22 10:03:46 +0100292 " <group>[,<group>]* (dict, xpath, dep-sets)\n\n");
Michal Vaskoc40548b2021-09-30 13:05:47 +0200293#endif
Radek Krejcied5acc52019-04-25 15:57:04 +0200294}
295
Radek Krejcie9f13b12020-11-09 17:42:04 +0100296static void
Radek Krejcied5acc52019-04-25 15:57:04 +0200297libyang_verbclb(LY_LOG_LEVEL level, const char *msg, const char *path)
298{
299 char *levstr;
300
Radek Krejcie9f13b12020-11-09 17:42:04 +0100301 switch (level) {
302 case LY_LLERR:
303 levstr = "err :";
304 break;
305 case LY_LLWRN:
306 levstr = "warn:";
307 break;
308 case LY_LLVRB:
309 levstr = "verb:";
310 break;
311 default:
312 levstr = "dbg :";
313 break;
314 }
315 if (path) {
316 fprintf(stderr, "libyang %s %s (%s)\n", levstr, msg, path);
317 } else {
318 fprintf(stderr, "libyang %s %s\n", levstr, msg);
Radek Krejcied5acc52019-04-25 15:57:04 +0200319 }
320}
321
Michal Vasko686d8fc2021-11-22 10:03:23 +0100322static struct schema_features *
323get_features_not_applied(const struct ly_set *fset)
324{
325 for (uint32_t u = 0; u < fset->count; ++u) {
326 struct schema_features *sf = fset->objs[u];
Michal Vasko26bbb272022-08-02 14:54:33 +0200327
Michal Vasko686d8fc2021-11-22 10:03:23 +0100328 if (!sf->applied) {
329 return sf;
330 }
331 }
332
333 return NULL;
334}
335
ekinzie0ab8b302022-10-10 03:03:57 -0400336static LY_ERR
337ext_data_clb(const struct lysc_ext_instance *ext, void *user_data, void **ext_data, ly_bool *ext_data_free)
338{
339 struct ly_ctx *ctx;
340 struct lyd_node *data = NULL;
341
342 ctx = ext->module->ctx;
343 if (user_data) {
344 lyd_parse_data_path(ctx, user_data, LYD_XML, LYD_PARSE_STRICT, LYD_VALIDATE_PRESENT, &data);
345 }
346
347 *ext_data = data;
348 *ext_data_free = 1;
349 return LY_SUCCESS;
350}
351
aPiecek912f3d52022-10-12 10:02:33 +0200352static LY_ERR
353searchpath_strcat(char **searchpaths, const char *path)
354{
355 uint64_t len;
356 char *new;
357
358 if (!(*searchpaths)) {
359 *searchpaths = strdup(path);
360 return LY_SUCCESS;
361 }
362
363 len = strlen(*searchpaths) + strlen(path) + strlen(PATH_SEPARATOR);
364 new = realloc(*searchpaths, sizeof(char) * len + 1);
365 if (!new) {
366 return LY_EMEM;
367 }
368 strcat(new, PATH_SEPARATOR);
369 strcat(new, path);
370 *searchpaths = new;
371
372 return LY_SUCCESS;
373}
374
Radek Krejcie9f13b12020-11-09 17:42:04 +0100375static int
376fill_context_inputs(int argc, char *argv[], struct context *c)
377{
Michal Vasko24aaf8e2022-02-04 11:15:26 +0100378 struct ly_in *in = NULL;
Michal Vasko686d8fc2021-11-22 10:03:23 +0100379 struct schema_features *sf;
Michal Vaskoc91fb122021-11-23 09:00:17 +0100380 struct lys_module *mod;
aPiecek912f3d52022-10-12 10:02:33 +0200381 const char *all_features[] = {"*", NULL};
Michal Vasko24aaf8e2022-02-04 11:15:26 +0100382 char *dir = NULL, *module = NULL;
383
aPiecek912f3d52022-10-12 10:02:33 +0200384 /* Create libyang context. */
Michal Vasko24aaf8e2022-02-04 11:15:26 +0100385 if (c->yang_lib_file) {
386 /* ignore features */
387 ly_set_erase(&c->schema_features, free_features);
388
aPiecek912f3d52022-10-12 10:02:33 +0200389 if (ly_ctx_new_ylpath(c->searchpaths, c->yang_lib_file, LYD_UNKNOWN, c->ctx_options, &c->ctx)) {
ekinzie0ab8b302022-10-10 03:03:57 -0400390 YLMSG_E("Unable to modify libyang context with yang-library data.\n");
Michal Vasko24aaf8e2022-02-04 11:15:26 +0100391 return -1;
392 }
393 } else {
394 /* set imp feature flag if all should be enabled */
aPiecek912f3d52022-10-12 10:02:33 +0200395 c->ctx_options |= !c->schema_features.count ? LY_CTX_ENABLE_IMP_FEATURES : 0;
Michal Vasko24aaf8e2022-02-04 11:15:26 +0100396
aPiecek912f3d52022-10-12 10:02:33 +0200397 if (ly_ctx_new(c->searchpaths, c->ctx_options, &c->ctx)) {
398 YLMSG_E("Unable to create libyang context\n");
Michal Vasko24aaf8e2022-02-04 11:15:26 +0100399 return -1;
400 }
aPiecek912f3d52022-10-12 10:02:33 +0200401 }
Michal Vasko24aaf8e2022-02-04 11:15:26 +0100402
aPiecek912f3d52022-10-12 10:02:33 +0200403 /* set callback providing run-time extension instance data */
404 if (c->schema_context_filename) {
405 ly_ctx_set_ext_data_clb(c->ctx, ext_data_clb, c->schema_context_filename);
Michal Vasko24aaf8e2022-02-04 11:15:26 +0100406 }
Radek Krejcie9f13b12020-11-09 17:42:04 +0100407
Michal Vasko3f08fb92022-04-21 09:52:35 +0200408 /* process the operational and/or reply RPC content if any */
Radek Krejcie9f13b12020-11-09 17:42:04 +0100409 if (c->data_operational.path) {
410 if (get_input(c->data_operational.path, NULL, &c->data_operational.format, &c->data_operational.in)) {
411 return -1;
412 }
413 }
Michal Vasko3f08fb92022-04-21 09:52:35 +0200414 if (c->reply_rpc.path) {
415 if (get_input(c->reply_rpc.path, NULL, &c->reply_rpc.format, &c->reply_rpc.in)) {
416 return -1;
417 }
418 }
Radek Krejcie9f13b12020-11-09 17:42:04 +0100419
420 for (int i = 0; i < argc - optind; i++) {
421 LYS_INFORMAT format_schema = LYS_IN_UNKNOWN;
422 LYD_FORMAT format_data = LYD_UNKNOWN;
Radek Krejcie9f13b12020-11-09 17:42:04 +0100423
424 if (get_input(argv[optind + i], &format_schema, &format_data, &in)) {
Radek Krejcif2afd672020-11-26 12:29:23 +0100425 goto error;
Radek Krejcie9f13b12020-11-09 17:42:04 +0100426 }
427
428 if (format_schema) {
429 LY_ERR ret;
430 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 +0100431 const char **features;
Michal Vasko4de7d072021-07-09 09:13:18 +0200432 struct lys_module *mod;
Radek Krejcie9f13b12020-11-09 17:42:04 +0100433
Michal Vasko24aaf8e2022-02-04 11:15:26 +0100434 /* parse the input */
Radek Krejcie9f13b12020-11-09 17:42:04 +0100435 if (parse_schema_path(argv[optind + i], &dir, &module)) {
Radek Krejcif2afd672020-11-26 12:29:23 +0100436 goto error;
Radek Krejcie9f13b12020-11-09 17:42:04 +0100437 }
438
Michal Vasko24aaf8e2022-02-04 11:15:26 +0100439 if (c->yang_lib_file) {
440 /* just get the module, it should already be parsed */
441 mod = ly_ctx_get_module_implemented(c->ctx, module);
442 if (!mod) {
443 YLMSG_E("Schema module \"%s\" not implemented in yang-library data.\n", module);
444 goto error;
445 }
Michal Vasko59740872021-11-22 10:01:34 +0100446 } else {
Michal Vasko24aaf8e2022-02-04 11:15:26 +0100447 /* add temporarily also the path of the module itself */
448 if (ly_ctx_set_searchdir(c->ctx, dir) == LY_EEXIST) {
449 path_unset = 0;
450 }
451
452 /* get features list for this module */
453 if (!c->schema_features.count) {
454 features = all_features;
455 } else {
456 get_features(&c->schema_features, module, &features);
457 }
458
459 /* parse module */
460 ret = lys_parse(c->ctx, in, format_schema, features, &mod);
461 ly_ctx_unset_searchdir_last(c->ctx, path_unset);
462 if (ret) {
463 YLMSG_E("Parsing schema module \"%s\" failed.\n", argv[optind + i]);
464 goto error;
465 }
Michal Vasko703370c2021-10-19 14:07:16 +0200466 }
467
Radek Krejcie9f13b12020-11-09 17:42:04 +0100468 /* temporary cleanup */
469 free(dir);
Michal Vasko24aaf8e2022-02-04 11:15:26 +0100470 dir = NULL;
Radek Krejcie9f13b12020-11-09 17:42:04 +0100471 free(module);
Michal Vasko24aaf8e2022-02-04 11:15:26 +0100472 module = NULL;
Radek Krejcie9f13b12020-11-09 17:42:04 +0100473
roman300b8782022-08-11 12:49:21 +0200474 if (c->schema_out_format || c->feature_param_format) {
Michal Vasko24aaf8e2022-02-04 11:15:26 +0100475 /* module will be printed */
Radek Krejcie9f13b12020-11-09 17:42:04 +0100476 if (ly_set_add(&c->schema_modules, (void *)mod, 1, NULL)) {
477 YLMSG_E("Storing parsed schema module (%s) for print failed.\n", argv[optind + i]);
Radek Krejcif2afd672020-11-26 12:29:23 +0100478 goto error;
Radek Krejcie9f13b12020-11-09 17:42:04 +0100479 }
480 }
Radek Krejcie9f13b12020-11-09 17:42:04 +0100481 } else if (format_data) {
Radek Krejci6784a4e2020-12-09 14:23:05 +0100482 if (!fill_cmdline_file(&c->data_inputs, in, argv[optind + i], format_data)) {
Radek Krejcif2afd672020-11-26 12:29:23 +0100483 goto error;
Radek Krejcie9f13b12020-11-09 17:42:04 +0100484 }
Radek Krejcif53b0d52020-12-03 11:29:24 +0100485 in = NULL;
Radek Krejcie9f13b12020-11-09 17:42:04 +0100486 }
Michal Vasko24aaf8e2022-02-04 11:15:26 +0100487
488 ly_in_free(in, 1);
489 in = NULL;
Radek Krejcie9f13b12020-11-09 17:42:04 +0100490 }
491
Michal Vaskoc91fb122021-11-23 09:00:17 +0100492 /* check that all specified features were applied, apply now if possible */
493 while ((sf = get_features_not_applied(&c->schema_features))) {
494 /* try to find implemented or the latest revision of this module */
495 mod = ly_ctx_get_module_implemented(c->ctx, sf->mod_name);
496 if (!mod) {
497 mod = ly_ctx_get_module_latest(c->ctx, sf->mod_name);
Michal Vasko686d8fc2021-11-22 10:03:23 +0100498 }
Michal Vaskoc91fb122021-11-23 09:00:17 +0100499 if (!mod) {
500 YLMSG_E("Specified features not applied, module \"%s\" not loaded.\n", sf->mod_name);
501 goto error;
502 }
503
504 /* we have the module, implement it if needed and enable the specific features */
505 if (lys_set_implemented(mod, (const char **)sf->features)) {
506 YLMSG_E("Implementing module \"%s\" failed.\n", mod->name);
507 goto error;
508 }
509 sf->applied = 1;
Michal Vasko686d8fc2021-11-22 10:03:23 +0100510 }
511
Radek Krejcie9f13b12020-11-09 17:42:04 +0100512 return 0;
Radek Krejcif2afd672020-11-26 12:29:23 +0100513
514error:
515 ly_in_free(in, 1);
Michal Vasko24aaf8e2022-02-04 11:15:26 +0100516 free(dir);
517 free(module);
Radek Krejcif2afd672020-11-26 12:29:23 +0100518 return -1;
Radek Krejcie9f13b12020-11-09 17:42:04 +0100519}
520
521/**
522 * @brief Process command line options and store the settings into the context.
523 *
524 * return -1 in case of error;
525 * return 0 in case of success and ready to process
526 * return 1 in case of success, but expect to exit.
Radek Krejcied5acc52019-04-25 15:57:04 +0200527 */
528static int
Radek Krejcie9f13b12020-11-09 17:42:04 +0100529fill_context(int argc, char *argv[], struct context *c)
Radek Krejcied5acc52019-04-25 15:57:04 +0200530{
Radek Krejcie9f13b12020-11-09 17:42:04 +0100531 int ret;
Radek Krejcie7b95092019-05-15 11:03:07 +0200532
Radek Krejcie9f13b12020-11-09 17:42:04 +0100533 int opt, opt_index;
Radek Krejcied5acc52019-04-25 15:57:04 +0200534 struct option options[] = {
Michal Vasko24aaf8e2022-02-04 11:15:26 +0100535 {"help", no_argument, NULL, 'h'},
536 {"version", no_argument, NULL, 'v'},
537 {"verbose", no_argument, NULL, 'V'},
538 {"quiet", no_argument, NULL, 'Q'},
539 {"format", required_argument, NULL, 'f'},
540 {"path", required_argument, NULL, 'p'},
Michal Vaskod8b0e772022-03-18 13:36:04 +0100541 {"disable-searchdir", no_argument, NULL, 'D'},
Michal Vasko24aaf8e2022-02-04 11:15:26 +0100542 {"features", required_argument, NULL, 'F'},
543 {"make-implemented", no_argument, NULL, 'i'},
544 {"schema-node", required_argument, NULL, 'P'},
545 {"single-node", no_argument, NULL, 'q'},
546 {"submodule", required_argument, NULL, 's'},
ekinzie0ab8b302022-10-10 03:03:57 -0400547 {"ext-data", required_argument, NULL, 'x'},
Michal Vasko24aaf8e2022-02-04 11:15:26 +0100548 {"not-strict", no_argument, NULL, 'n'},
549 {"present", no_argument, NULL, 'e'},
550 {"type", required_argument, NULL, 't'},
551 {"default", required_argument, NULL, 'd'},
552 {"list", no_argument, NULL, 'l'},
553 {"tree-line-length", required_argument, NULL, 'L'},
554 {"output", required_argument, NULL, 'o'},
555 {"operational", required_argument, NULL, 'O'},
Michal Vasko3f08fb92022-04-21 09:52:35 +0200556 {"reply-rpc", required_argument, NULL, 'R'},
Michal Vasko24aaf8e2022-02-04 11:15:26 +0100557 {"merge", no_argument, NULL, 'm'},
558 {"yang-library", no_argument, NULL, 'y'},
559 {"yang-library-file", required_argument, NULL, 'Y'},
Michal Vaskoc40548b2021-09-30 13:05:47 +0200560#ifndef NDEBUG
561 {"debug", required_argument, NULL, 'G'},
562#endif
Radek Krejcied5acc52019-04-25 15:57:04 +0200563 {NULL, 0, NULL, 0}
564 };
Radek Krejcie9f13b12020-11-09 17:42:04 +0100565 uint8_t data_type_set = 0;
566
Michal Vasko24aaf8e2022-02-04 11:15:26 +0100567 c->ctx_options = YL_DEFAULT_CTX_OPTIONS;
Michal Vasko667ce6b2021-01-25 15:00:27 +0100568 c->data_parse_options = YL_DEFAULT_DATA_PARSE_OPTIONS;
aPiecek2cfeeae2021-04-21 13:17:34 +0200569 c->line_length = 0;
Michal Vasko667ce6b2021-01-25 15:00:27 +0100570
Michal Vasko27a4acb2021-11-22 10:03:46 +0100571 opterr = 0;
Radek Krejcied5acc52019-04-25 15:57:04 +0200572#ifndef NDEBUG
ekinzie0ab8b302022-10-10 03:03:57 -0400573 while ((opt = getopt_long(argc, argv, "hvVQf:p:DF:iP:qs:net:d:lL:o:O:R:myY:x:G:", options, &opt_index)) != -1)
Michal Vasko27a4acb2021-11-22 10:03:46 +0100574#else
ekinzie0ab8b302022-10-10 03:03:57 -0400575 while ((opt = getopt_long(argc, argv, "hvVQf:p:DF:iP:qs:net:d:lL:o:O:R:myY:x:", options, &opt_index)) != -1)
Radek Krejcied5acc52019-04-25 15:57:04 +0200576#endif
Michal Vasko03fe6202022-07-22 16:23:13 +0200577 {
Radek Krejcied5acc52019-04-25 15:57:04 +0200578 switch (opt) {
Michal Vaskoc40548b2021-09-30 13:05:47 +0200579 case 'h': /* --help */
580 help(0);
581 return 1;
582
583 case 'v': /* --version */
584 version();
585 return 1;
586
587 case 'V': { /* --verbose */
588 LY_LOG_LEVEL verbosity = ly_log_level(LY_LLERR);
Michal Vaskoc40548b2021-09-30 13:05:47 +0200589 if (verbosity < LY_LLDBG) {
Michal Vaskob0d307b2021-11-25 11:15:16 +0100590 ++verbosity;
Radek Krejcied5acc52019-04-25 15:57:04 +0200591 }
Michal Vaskob0d307b2021-11-25 11:15:16 +0100592 ly_log_level(verbosity);
Radek Krejcied5acc52019-04-25 15:57:04 +0200593 break;
Michal Vaskoc40548b2021-09-30 13:05:47 +0200594 } /* case 'V' */
Radek Krejcie9f13b12020-11-09 17:42:04 +0100595
Michal Vaskob0d307b2021-11-25 11:15:16 +0100596 case 'Q': { /* --quiet */
597 LY_LOG_LEVEL verbosity = ly_log_level(LY_LLERR);
598 if (verbosity == LY_LLERR) {
599 /* turn logging off */
600 ly_log_options(LY_LOSTORE_LAST);
601 } else if (verbosity > LY_LLERR) {
602 --verbosity;
603 }
604 ly_log_level(verbosity);
605 break;
606 } /* case 'Q' */
607
Radek Krejcie9f13b12020-11-09 17:42:04 +0100608 case 'f': /* --format */
609 if (!strcasecmp(optarg, "yang")) {
610 c->schema_out_format = LYS_OUT_YANG;
611 c->data_out_format = 0;
612 } else if (!strcasecmp(optarg, "yin")) {
613 c->schema_out_format = LYS_OUT_YIN;
614 c->data_out_format = 0;
615 } else if (!strcasecmp(optarg, "info")) {
616 c->schema_out_format = LYS_OUT_YANG_COMPILED;
617 c->data_out_format = 0;
618 } else if (!strcasecmp(optarg, "tree")) {
619 c->schema_out_format = LYS_OUT_TREE;
620 c->data_out_format = 0;
621 } else if (!strcasecmp(optarg, "xml")) {
622 c->schema_out_format = 0;
623 c->data_out_format = LYD_XML;
624 } else if (!strcasecmp(optarg, "json")) {
625 c->schema_out_format = 0;
626 c->data_out_format = LYD_JSON;
Michal Vaskod8b0e772022-03-18 13:36:04 +0100627 } else if (!strcasecmp(optarg, "lyb")) {
628 c->schema_out_format = 0;
629 c->data_out_format = LYD_LYB;
roman300b8782022-08-11 12:49:21 +0200630 } else if (!strcasecmp(optarg, "feature-param")) {
631 c->feature_param_format = 1;
Radek Krejcied5acc52019-04-25 15:57:04 +0200632 } else {
Radek Krejcie9f13b12020-11-09 17:42:04 +0100633 YLMSG_E("Unknown output format %s\n", optarg);
Radek Krejcied5acc52019-04-25 15:57:04 +0200634 help(1);
Radek Krejcie9f13b12020-11-09 17:42:04 +0100635 return -1;
Radek Krejcied5acc52019-04-25 15:57:04 +0200636 }
637 break;
Radek Krejcie9f13b12020-11-09 17:42:04 +0100638
Michal Vaskoc40548b2021-09-30 13:05:47 +0200639 case 'p': { /* --path */
640 struct stat st;
641
642 if (stat(optarg, &st) == -1) {
643 YLMSG_E("Unable to use search path (%s) - %s.\n", optarg, strerror(errno));
644 return -1;
645 }
646 if (!S_ISDIR(st.st_mode)) {
647 YLMSG_E("Provided search path is not a directory.\n");
648 return -1;
649 }
650
aPiecek912f3d52022-10-12 10:02:33 +0200651 if (searchpath_strcat(&c->searchpaths, optarg)) {
Michal Vaskoc40548b2021-09-30 13:05:47 +0200652 YLMSG_E("Storing searchpath failed.\n");
653 return -1;
654 }
655
656 break;
657 } /* case 'p' */
658
659 case 'D': /* --disable-search */
Michal Vasko24aaf8e2022-02-04 11:15:26 +0100660 if (c->ctx_options & LY_CTX_DISABLE_SEARCHDIRS) {
Michal Vaskoc40548b2021-09-30 13:05:47 +0200661 YLMSG_W("The -D option specified too many times.\n");
662 }
Michal Vasko24aaf8e2022-02-04 11:15:26 +0100663 if (c->ctx_options & LY_CTX_DISABLE_SEARCHDIR_CWD) {
664 c->ctx_options &= ~LY_CTX_DISABLE_SEARCHDIR_CWD;
665 c->ctx_options |= LY_CTX_DISABLE_SEARCHDIRS;
Michal Vaskoc40548b2021-09-30 13:05:47 +0200666 } else {
Michal Vasko24aaf8e2022-02-04 11:15:26 +0100667 c->ctx_options |= LY_CTX_DISABLE_SEARCHDIR_CWD;
Michal Vaskoc40548b2021-09-30 13:05:47 +0200668 }
669 break;
670
671 case 'F': /* --features */
672 if (parse_features(optarg, &c->schema_features)) {
673 return -1;
674 }
675 break;
676
Michal Vasko8d6d0ad2021-10-19 12:32:27 +0200677 case 'i': /* --make-implemented */
Michal Vasko24aaf8e2022-02-04 11:15:26 +0100678 if (c->ctx_options & LY_CTX_REF_IMPLEMENTED) {
679 c->ctx_options &= ~LY_CTX_REF_IMPLEMENTED;
680 c->ctx_options |= LY_CTX_ALL_IMPLEMENTED;
Michal Vaskoc40548b2021-09-30 13:05:47 +0200681 } else {
Michal Vasko24aaf8e2022-02-04 11:15:26 +0100682 c->ctx_options |= LY_CTX_REF_IMPLEMENTED;
Michal Vaskoc40548b2021-09-30 13:05:47 +0200683 }
684 break;
685
Radek Krejcie9f13b12020-11-09 17:42:04 +0100686 case 'P': /* --schema-node */
687 c->schema_node_path = optarg;
Radek Krejcied5acc52019-04-25 15:57:04 +0200688 break;
Radek Krejcie9f13b12020-11-09 17:42:04 +0100689
690 case 'q': /* --single-node */
691 c->schema_print_options |= LYS_PRINT_NO_SUBSTMT;
692 break;
693
Michal Vaskofe74d1e2021-09-30 13:17:36 +0200694 case 's': /* --submodule */
695 c->submodule = optarg;
696 break;
697
ekinzie0ab8b302022-10-10 03:03:57 -0400698 case 'x': /* --ext-data */
699 c->schema_context_filename = strdup(optarg);
700 break;
701
Michal Vasko667ce6b2021-01-25 15:00:27 +0100702 case 'n': /* --not-strict */
703 c->data_parse_options &= ~LYD_PARSE_STRICT;
Radek Krejcie9f13b12020-11-09 17:42:04 +0100704 break;
705
706 case 'e': /* --present */
707 c->data_validate_options |= LYD_VALIDATE_PRESENT;
708 break;
709
710 case 't': /* --type */
711 if (data_type_set) {
712 YLMSG_E("The data type (-t) cannot be set multiple times.\n");
713 return -1;
714 }
715
716 if (!strcasecmp(optarg, "config")) {
717 c->data_parse_options |= LYD_PARSE_NO_STATE;
Michal Vaskof6bda332021-02-01 08:59:03 +0100718 c->data_validate_options |= LYD_VALIDATE_NO_STATE;
Radek Krejcie9f13b12020-11-09 17:42:04 +0100719 } else if (!strcasecmp(optarg, "get")) {
720 c->data_parse_options |= LYD_PARSE_ONLY;
721 } else if (!strcasecmp(optarg, "getconfig") || !strcasecmp(optarg, "get-config")) {
722 c->data_parse_options |= LYD_PARSE_ONLY | LYD_PARSE_NO_STATE;
723 } else if (!strcasecmp(optarg, "edit")) {
724 c->data_parse_options |= LYD_PARSE_ONLY;
Michal Vasko3f08fb92022-04-21 09:52:35 +0200725 } else if (!strcasecmp(optarg, "rpc")) {
Michal Vasko1e4c68e2021-02-18 15:03:01 +0100726 c->data_type = LYD_TYPE_RPC_YANG;
Michal Vasko3f08fb92022-04-21 09:52:35 +0200727 } else if (!strcasecmp(optarg, "nc-rpc")) {
728 c->data_type = LYD_TYPE_RPC_NETCONF;
729 } else if (!strcasecmp(optarg, "reply")) {
Michal Vasko1e4c68e2021-02-18 15:03:01 +0100730 c->data_type = LYD_TYPE_REPLY_YANG;
Michal Vasko3f08fb92022-04-21 09:52:35 +0200731 } else if (!strcasecmp(optarg, "nc-reply")) {
732 c->data_type = LYD_TYPE_REPLY_NETCONF;
733 } else if (!strcasecmp(optarg, "notif")) {
Michal Vasko1e4c68e2021-02-18 15:03:01 +0100734 c->data_type = LYD_TYPE_NOTIF_YANG;
Michal Vasko3f08fb92022-04-21 09:52:35 +0200735 } else if (!strcasecmp(optarg, "nc-notif")) {
736 c->data_type = LYD_TYPE_NOTIF_NETCONF;
Radek Krejcie9f13b12020-11-09 17:42:04 +0100737 } else if (!strcasecmp(optarg, "data")) {
738 /* default option */
739 } else {
740 YLMSG_E("Unknown data tree type %s\n", optarg);
741 help(1);
742 return -1;
743 }
744
745 data_type_set = 1;
746 break;
747
Michal Vaskoc40548b2021-09-30 13:05:47 +0200748 case 'd': /* --default */
749 if (!strcasecmp(optarg, "all")) {
750 c->data_print_options = (c->data_print_options & ~LYD_PRINT_WD_MASK) | LYD_PRINT_WD_ALL;
751 } else if (!strcasecmp(optarg, "all-tagged")) {
752 c->data_print_options = (c->data_print_options & ~LYD_PRINT_WD_MASK) | LYD_PRINT_WD_ALL_TAG;
753 } else if (!strcasecmp(optarg, "trim")) {
754 c->data_print_options = (c->data_print_options & ~LYD_PRINT_WD_MASK) | LYD_PRINT_WD_TRIM;
755 } else if (!strcasecmp(optarg, "implicit-tagged")) {
756 c->data_print_options = (c->data_print_options & ~LYD_PRINT_WD_MASK) | LYD_PRINT_WD_IMPL_TAG;
757 } else {
758 YLMSG_E("Unknown default mode %s\n", optarg);
759 help(1);
760 return -1;
761 }
762 break;
763
764 case 'l': /* --list */
765 c->list = 1;
766 break;
767
768 case 'L': /* --tree-line-length */
769 c->line_length = atoi(optarg);
770 break;
771
772 case 'o': /* --output */
773 if (c->out) {
774 YLMSG_E("Only a single output can be specified.\n");
775 return -1;
776 } else {
777 if (ly_out_new_filepath(optarg, &c->out)) {
778 YLMSG_E("Unable open output file %s (%s)\n", optarg, strerror(errno));
779 return -1;
780 }
781 }
782 break;
783
Radek Krejcie9f13b12020-11-09 17:42:04 +0100784 case 'O': /* --operational */
785 if (c->data_operational.path) {
786 YLMSG_E("The operational datastore (-O) cannot be set multiple times.\n");
787 return -1;
788 }
789 c->data_operational.path = optarg;
790 break;
791
Michal Vasko3f08fb92022-04-21 09:52:35 +0200792 case 'R': /* --reply-rpc */
793 if (c->reply_rpc.path) {
794 YLMSG_E("The PRC of the reply (-R) cannot be set multiple times.\n");
795 return -1;
796 }
797 c->reply_rpc.path = optarg;
798 break;
799
Radek Krejcie9f13b12020-11-09 17:42:04 +0100800 case 'm': /* --merge */
801 c->data_merge = 1;
802 break;
803
Michal Vaskoc431a0a2021-01-25 14:31:58 +0100804 case 'y': /* --yang-library */
Michal Vasko24aaf8e2022-02-04 11:15:26 +0100805 c->ctx_options &= ~LY_CTX_NO_YANGLIBRARY;
806 break;
807
808 case 'Y': /* --yang-library-file */
809 c->ctx_options &= ~LY_CTX_NO_YANGLIBRARY;
810 c->yang_lib_file = optarg;
Michal Vaskoc431a0a2021-01-25 14:31:58 +0100811 break;
812
Radek Krejcied5acc52019-04-25 15:57:04 +0200813#ifndef NDEBUG
Radek Krejcie9f13b12020-11-09 17:42:04 +0100814 case 'G': { /* --debug */
815 uint32_t dbg_groups = 0;
816 const char *ptr = optarg;
817
Radek Krejcied5acc52019-04-25 15:57:04 +0200818 while (ptr[0]) {
Radek Krejcif13b87b2020-12-01 22:02:17 +0100819 if (!strncasecmp(ptr, "dict", sizeof "dict" - 1)) {
Radek Krejcie9f13b12020-11-09 17:42:04 +0100820 dbg_groups |= LY_LDGDICT;
Radek Krejcif13b87b2020-12-01 22:02:17 +0100821 ptr += sizeof "dict" - 1;
822 } else if (!strncasecmp(ptr, "xpath", sizeof "xpath" - 1)) {
Radek Krejcie9f13b12020-11-09 17:42:04 +0100823 dbg_groups |= LY_LDGXPATH;
Radek Krejcif13b87b2020-12-01 22:02:17 +0100824 ptr += sizeof "xpath" - 1;
Michal Vasko27a4acb2021-11-22 10:03:46 +0100825 } else if (!strncasecmp(ptr, "dep-sets", sizeof "dep-sets" - 1)) {
826 dbg_groups |= LY_LDGDEPSETS;
827 ptr += sizeof "dep-sets" - 1;
Radek Krejcied5acc52019-04-25 15:57:04 +0200828 }
829
830 if (ptr[0]) {
831 if (ptr[0] != ',') {
Radek Krejcie9f13b12020-11-09 17:42:04 +0100832 YLMSG_E("Unknown debug group string \"%s\"\n", optarg);
833 return -1;
Radek Krejcied5acc52019-04-25 15:57:04 +0200834 }
835 ++ptr;
836 }
837 }
Radek Krejcie9f13b12020-11-09 17:42:04 +0100838 ly_log_dbg_groups(dbg_groups);
Radek Krejcied5acc52019-04-25 15:57:04 +0200839 break;
Radek Krejcie9f13b12020-11-09 17:42:04 +0100840 } /* case 'G' */
Radek Krejcied5acc52019-04-25 15:57:04 +0200841#endif
Michal Vasko27a4acb2021-11-22 10:03:46 +0100842 default:
843 YLMSG_E("Invalid option or missing argument: -%c\n", optopt);
844 return -1;
Radek Krejcie9f13b12020-11-09 17:42:04 +0100845 } /* switch */
846 }
847
Radek Krejcie9f13b12020-11-09 17:42:04 +0100848 /* additional checks for the options combinations */
849 if (!c->list && (optind >= argc)) {
850 help(1);
851 YLMSG_E("Missing <schema> to process.\n");
852 return 1;
853 }
854
855 if (c->data_merge) {
856 if (c->data_type || (c->data_parse_options & LYD_PARSE_ONLY)) {
857 /* switch off the option, incompatible input data type */
858 c->data_merge = 0;
859 } else {
860 /* postpone validation after the merge of all the input data */
861 c->data_parse_options |= LYD_PARSE_ONLY;
Radek Krejcied5acc52019-04-25 15:57:04 +0200862 }
863 }
864
Radek Krejcie9f13b12020-11-09 17:42:04 +0100865 if (c->data_operational.path && !c->data_type) {
Michal Vasko3f08fb92022-04-21 09:52:35 +0200866 YLMSG_E("Operational datastore takes effect only with RPCs/Actions/Replies/Notification input data types.\n");
Radek Krejcie9f13b12020-11-09 17:42:04 +0100867 c->data_operational.path = NULL;
Radek Krejcied5acc52019-04-25 15:57:04 +0200868 }
Radek Krejcie9f13b12020-11-09 17:42:04 +0100869
Michal Vasko3f08fb92022-04-21 09:52:35 +0200870 if (c->reply_rpc.path && (c->data_type != LYD_TYPE_REPLY_NETCONF)) {
871 YLMSG_E("Source RPC is needed only for NETCONF Reply input data type.\n");
872 c->data_operational.path = NULL;
873 } else if (!c->reply_rpc.path && (c->data_type == LYD_TYPE_REPLY_NETCONF)) {
874 YLMSG_E("Missing source RPC (-R) for NETCONF Reply input data type.\n");
875 return -1;
876 }
877
aPiecek2cfeeae2021-04-21 13:17:34 +0200878 if ((c->schema_out_format != LYS_OUT_TREE) && c->line_length) {
879 YLMSG_E("--tree-line-length take effect only in case of the tree output format.\n");
880 }
881
Radek Krejcie9f13b12020-11-09 17:42:04 +0100882 /* default output stream */
883 if (!c->out) {
884 if (ly_out_new_file(stdout, &c->out)) {
885 YLMSG_E("Unable to set stdout as output.\n");
886 return -1;
Radek Krejcied5acc52019-04-25 15:57:04 +0200887 }
888 }
Radek Krejcie9f13b12020-11-09 17:42:04 +0100889
aPiecek7ac66d52021-05-20 07:54:07 +0200890 if (c->schema_out_format == LYS_OUT_TREE) {
891 /* print tree from lysc_nodes */
Michal Vasko24aaf8e2022-02-04 11:15:26 +0100892 c->ctx_options |= LY_CTX_SET_PRIV_PARSED;
aPiecek7ac66d52021-05-20 07:54:07 +0200893 }
894
Radek Krejcie9f13b12020-11-09 17:42:04 +0100895 /* process input files provided as standalone command line arguments,
896 * schema modules are parsed and inserted into the context,
897 * data files are just checked and prepared into internal structures for further processing */
898 ret = fill_context_inputs(argc, argv, c);
899 if (ret) {
900 return ret;
901 }
902
903 /* the second batch of checks */
904 if (c->schema_print_options && !c->schema_out_format) {
905 YLMSG_W("Schema printer options specified, but the schema output format is missing.\n");
906 }
907 if (c->schema_parse_options && !c->schema_modules.count) {
908 YLMSG_W("Schema parser options specified, but no schema input file provided.\n");
909 }
910 if (c->data_print_options && !c->data_out_format) {
911 YLMSG_W("data printer options specified, but the data output format is missing.\n");
912 }
Michal Vasko667ce6b2021-01-25 15:00:27 +0100913 if (((c->data_parse_options != YL_DEFAULT_DATA_PARSE_OPTIONS) || c->data_type) && !c->data_inputs.count) {
Radek Krejcie9f13b12020-11-09 17:42:04 +0100914 YLMSG_W("Data parser options specified, but no data input file provided.\n");
915 }
916
917 if (c->schema_node_path) {
918 c->schema_node = lys_find_path(c->ctx, NULL, c->schema_node_path, 0);
919 if (!c->schema_node) {
920 c->schema_node = lys_find_path(c->ctx, NULL, c->schema_node_path, 1);
921
922 if (!c->schema_node) {
923 YLMSG_E("Invalid schema path.\n");
924 return -1;
925 }
Radek Krejcied5acc52019-04-25 15:57:04 +0200926 }
Radek Krejcied5acc52019-04-25 15:57:04 +0200927 }
Radek Krejcie9f13b12020-11-09 17:42:04 +0100928
Radek Krejcie9f13b12020-11-09 17:42:04 +0100929 return 0;
930}
931
932int
933main_ni(int argc, char *argv[])
934{
935 int ret = EXIT_SUCCESS, r;
936 struct context c = {0};
roman300b8782022-08-11 12:49:21 +0200937 char *features_output = NULL;
938 struct ly_set set = {0};
939 uint32_t u;
Radek Krejcied5acc52019-04-25 15:57:04 +0200940
941 /* set callback for printing libyang messages */
942 ly_set_log_clb(libyang_verbclb, 1);
Radek Krejcie9f13b12020-11-09 17:42:04 +0100943
944 r = fill_context(argc, argv, &c);
945 if (r < 0) {
946 ret = EXIT_FAILURE;
Radek Krejcied5acc52019-04-25 15:57:04 +0200947 }
Radek Krejcie9f13b12020-11-09 17:42:04 +0100948 if (r) {
Radek Krejcied5acc52019-04-25 15:57:04 +0200949 goto cleanup;
950 }
951
Radek Krejcie9f13b12020-11-09 17:42:04 +0100952 /* do the required job - parse, validate, print */
953
954 if (c.list) {
955 /* print the list of schemas */
956 print_list(c.out, c.ctx, c.data_out_format);
Radek Krejci047d64e2020-12-03 12:57:10 +0100957 } else {
roman300b8782022-08-11 12:49:21 +0200958 if (c.feature_param_format) {
959 for (u = 0; u < c.schema_modules.count; u++) {
960 if (collect_features(c.schema_modules.objs[u], &set)) {
961 YLMSG_E("Unable to read features from a module.\n");
962 goto cleanup;
963 }
964 if (generate_features_output(c.schema_modules.objs[u], &set, &features_output)) {
965 YLMSG_E("Unable to generate feature command output.\n");
966 goto cleanup;
967 }
968 ly_set_erase(&set, NULL);
969 }
970 ly_print(c.out, "%s\n", features_output);
971 } else if (c.schema_out_format) {
Radek Krejci047d64e2020-12-03 12:57:10 +0100972 if (c.schema_node) {
973 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 +0100974 if (ret) {
Radek Krejci047d64e2020-12-03 12:57:10 +0100975 YLMSG_E("Unable to print schema node %s.\n", c.schema_node_path);
Radek Krejcie9f13b12020-11-09 17:42:04 +0100976 goto cleanup;
977 }
Michal Vaskofe74d1e2021-09-30 13:17:36 +0200978 } else if (c.submodule) {
979 const struct lysp_submodule *submod = ly_ctx_get_submodule_latest(c.ctx, c.submodule);
Michal Vasko26bbb272022-08-02 14:54:33 +0200980
Michal Vaskofe74d1e2021-09-30 13:17:36 +0200981 if (!submod) {
982 YLMSG_E("Unable to find submodule %s.\n", c.submodule);
983 goto cleanup;
984 }
985
986 ret = lys_print_submodule(c.out, submod, c.schema_out_format, c.line_length, c.schema_print_options);
987 if (ret) {
988 YLMSG_E("Unable to print submodule %s.\n", submod->name);
989 goto cleanup;
990 }
Radek Krejci047d64e2020-12-03 12:57:10 +0100991 } else {
roman300b8782022-08-11 12:49:21 +0200992 for (u = 0; u < c.schema_modules.count; ++u) {
aPiecek2cfeeae2021-04-21 13:17:34 +0200993 ret = lys_print_module(c.out, (struct lys_module *)c.schema_modules.objs[u], c.schema_out_format,
994 c.line_length, c.schema_print_options);
aPiecek8f0b7882021-05-21 10:18:36 +0200995 /* for YANG Tree Diagrams printing it's more readable to print a blank line between modules. */
996 if ((c.schema_out_format == LYS_OUT_TREE) && (u + 1 < c.schema_modules.count)) {
997 ly_print(c.out, "\n");
998 }
Radek Krejci047d64e2020-12-03 12:57:10 +0100999 if (ret) {
1000 YLMSG_E("Unable to print module %s.\n", ((struct lys_module *)c.schema_modules.objs[u])->name);
1001 goto cleanup;
1002 }
1003 }
Radek Krejcie9f13b12020-11-09 17:42:04 +01001004 }
Radek Krejcied5acc52019-04-25 15:57:04 +02001005 }
Radek Krejci047d64e2020-12-03 12:57:10 +01001006
1007 /* do the data validation despite the schema was printed */
1008 if (c.data_inputs.size) {
Michal Vasko0f1e4562022-03-29 11:57:57 +02001009 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 +02001010 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 +02001011 if (ret) {
Radek Krejci047d64e2020-12-03 12:57:10 +01001012 goto cleanup;
1013 }
Radek Krejcied5acc52019-04-25 15:57:04 +02001014 }
Radek Krejcied5acc52019-04-25 15:57:04 +02001015 }
Radek Krejcied5acc52019-04-25 15:57:04 +02001016
1017cleanup:
Radek Krejcie9f13b12020-11-09 17:42:04 +01001018 /* cleanup */
1019 erase_context(&c);
roman300b8782022-08-11 12:49:21 +02001020 free(features_output);
1021 ly_set_erase(&set, NULL);
Radek Krejcied5acc52019-04-25 15:57:04 +02001022
Radek Krejcied5acc52019-04-25 15:57:04 +02001023 return ret;
1024}