blob: ca4ba445b732624735856f56426e860ec29de3fb [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;
Radek Krejcie9f13b12020-11-09 17:42:04 +0100105};
106
107static void
108erase_context(struct context *c)
109{
110 /* data */
111 ly_set_erase(&c->data_inputs, free_cmdline_file);
Radek Krejcie9f13b12020-11-09 17:42:04 +0100112 ly_in_free(c->data_operational.in, 1);
113
114 /* schema */
115 ly_set_erase(&c->schema_features, free_features);
116 ly_set_erase(&c->schema_modules, NULL);
117
118 /* context */
aPiecek912f3d52022-10-12 10:02:33 +0200119 free(c->searchpaths);
120 c->searchpaths = NULL;
Radek Krejcie9f13b12020-11-09 17:42:04 +0100121
122 ly_out_free(c->out, NULL, 0);
Radek Krejci90ed21e2021-04-12 14:47:46 +0200123 ly_ctx_destroy(c->ctx);
ekinzie0ab8b302022-10-10 03:03:57 -0400124
125 if (c->schema_context_filename) {
126 free(c->schema_context_filename);
127 }
Radek Krejcie9f13b12020-11-09 17:42:04 +0100128}
129
130static void
131version(void)
132{
133 printf("yanglint %s\n", PROJECT_VERSION);
134}
135
136static void
Radek Krejcied5acc52019-04-25 15:57:04 +0200137help(int shortout)
138{
Radek Krejcie9f13b12020-11-09 17:42:04 +0100139
Michal Vasko3f08fb92022-04-21 09:52:35 +0200140 printf("Example usage:\n"
141 " yanglint [-f { yang | yin | info}] <schema>...\n"
142 " Validates the YANG module <schema>(s) and all its dependencies, optionally printing\n"
143 " them in the specified format.\n\n"
144 " yanglint [-f { xml | json }] <schema>... <file>...\n"
145 " Validates the YANG modeled data <file>(s) according to the <schema>(s) optionally\n"
146 " printing them in the specified format.\n\n"
147 " yanglint -t (nc-)rpc/notif [-O <operational-file>] <schema>... <file>\n"
148 " Validates the YANG/NETCONF RPC/notification <file> according to the <schema>(s) using\n"
149 " <operational-file> with possible references to the operational datastore data.\n\n"
150 " yanglint -t nc-reply -R <rpc-file> [-O <operational-file>] <schema>... <file>\n"
151 " Validates the NETCONF rpc-reply <file> of RPC <rpc-file> according to the <schema>(s)\n"
152 " using <operational-file> with possible references to the operational datastore data.\n\n"
Radek Krejcie9f13b12020-11-09 17:42:04 +0100153 " yanglint\n"
154 " Starts interactive mode with more features.\n\n");
Radek Krejcied5acc52019-04-25 15:57:04 +0200155
156 if (shortout) {
157 return;
158 }
Radek Krejcie9f13b12020-11-09 17:42:04 +0100159 printf("Options:\n"
160 " -h, --help Show this help message and exit.\n"
161 " -v, --version Show version number and exit.\n"
Michal Vaskob0d307b2021-11-25 11:15:16 +0100162 " -V, --verbose Increase libyang verbosity and show verbose messages. If specified\n"
163 " a second time, show even debug messages.\n"
164 " -Q, --quiet Decrease libyang verbosity and hide warnings. If specified a second\n"
165 " time, hide errors so no libyang messages are printed.\n");
Radek Krejcie9f13b12020-11-09 17:42:04 +0100166
Michal Vaskoc40548b2021-09-30 13:05:47 +0200167 printf(" -f FORMAT, --format=FORMAT\n"
168 " Convert input into FORMAT. Supported formats: \n"
roman300b8782022-08-11 12:49:21 +0200169 " yang, yin, tree, info and feature-param for schemas,\n"
Michal Vaskod8b0e772022-03-18 13:36:04 +0100170 " xml, json, and lyb for data.\n\n");
Michal Vaskoc40548b2021-09-30 13:05:47 +0200171
172 printf(" -p PATH, --path=PATH\n"
173 " Search path for schema (YANG/YIN) modules. The option can be\n"
174 " used multiple times. The current working directory and the\n"
aPiecek4f306da2023-03-27 09:06:07 +0200175 " path of the module being added is used implicitly. Subdirectories\n"
176 " are also searched\n\n");
Radek Krejcie9f13b12020-11-09 17:42:04 +0100177
Michal Vasko22e0f3a2021-09-22 12:19:23 +0200178 printf(" -D, --disable-searchdir\n"
Radek Krejcie9f13b12020-11-09 17:42:04 +0100179 " Do not implicitly search in current working directory for\n"
180 " schema modules. If specified a second time, do not even\n"
181 " search in the module directory (all modules must be \n"
Michal Vasko22e0f3a2021-09-22 12:19:23 +0200182 " explicitly specified).\n\n");
Radek Krejcie9f13b12020-11-09 17:42:04 +0100183
Michal Vasko22e0f3a2021-09-22 12:19:23 +0200184 printf(" -F FEATURES, --features=FEATURES\n"
Michal Vasko59740872021-11-22 10:01:34 +0100185 " Specific module features to support in the form <module-name>:(<feature>,)*\n"
186 " Use <feature> '*' to enable all features of a module. This option can be\n"
187 " specified multiple times, to enable features in multiple modules. If this\n"
188 " option is not specified, all the features in all the implemented modules\n"
189 " are enabled.\n\n");
Radek Krejcie9f13b12020-11-09 17:42:04 +0100190
Michal Vasko8d6d0ad2021-10-19 12:32:27 +0200191 printf(" -i, --make-implemented\n"
Radek Krejcie9f13b12020-11-09 17:42:04 +0100192 " Make the imported modules \"referenced\" from any loaded\n"
193 " module also implemented. If specified a second time, all the\n"
Michal Vasko22e0f3a2021-09-22 12:19:23 +0200194 " modules are set implemented.\n\n");
Radek Krejcie9f13b12020-11-09 17:42:04 +0100195
Michal Vasko22e0f3a2021-09-22 12:19:23 +0200196 printf(" -P PATH, --schema-node=PATH\n"
Radek Krejcie9f13b12020-11-09 17:42:04 +0100197 " Print only the specified subtree of the schema.\n"
198 " The PATH is the XPath subset mentioned in documentation as\n"
199 " the Path format. The option can be combined with --single-node\n"
200 " option to print information only about the specified node.\n"
201 " -q, --single-node\n"
202 " Supplement to the --schema-node option to print information\n"
Michal Vasko22e0f3a2021-09-22 12:19:23 +0200203 " only about a single node specified as PATH argument.\n\n");
Radek Krejcie9f13b12020-11-09 17:42:04 +0100204
Michal Vaskofe74d1e2021-09-30 13:17:36 +0200205 printf(" -s SUBMODULE, --submodule=SUBMODULE\n"
206 " Print the specific submodule instead of the main module.\n\n");
207
ekinzie0ab8b302022-10-10 03:03:57 -0400208 printf(" -x FILE, --ext-data=FILE\n"
209 " File containing the specific data required by an extension. Required by\n"
Michal Vasko14662802022-11-08 08:45:46 +0100210 " the schema-mount extension, for example, when the operational data are\n"
ekinzie0ab8b302022-10-10 03:03:57 -0400211 " expected in the file. File format is guessed.\n\n");
212
Michal Vasko22e0f3a2021-09-22 12:19:23 +0200213 printf(" -n, --not-strict\n"
Michal Vasko667ce6b2021-01-25 15:00:27 +0100214 " Do not require strict data parsing (silently skip unknown data),\n"
Michal Vasko22e0f3a2021-09-22 12:19:23 +0200215 " has no effect for schemas.\n\n");
Radek Krejcie9f13b12020-11-09 17:42:04 +0100216
Michal Vasko22e0f3a2021-09-22 12:19:23 +0200217 printf(" -e, --present Validate only with the schema modules whose data actually\n"
Radek Krejcie9f13b12020-11-09 17:42:04 +0100218 " exist in the provided input data files. Takes effect only\n"
219 " with the 'data' or 'config' TYPEs. Used to avoid requiring\n"
220 " mandatory nodes from modules which data are not present in the\n"
Michal Vasko22e0f3a2021-09-22 12:19:23 +0200221 " provided input data files.\n\n");
Radek Krejcie9f13b12020-11-09 17:42:04 +0100222
Michal Vasko22e0f3a2021-09-22 12:19:23 +0200223 printf(" -t TYPE, --type=TYPE\n"
Radek Krejcie9f13b12020-11-09 17:42:04 +0100224 " Specify data tree type in the input data file(s):\n"
225 " data - Complete datastore with status data (default type).\n"
226 " config - Configuration datastore (without status data).\n"
Michal Vasko3f08fb92022-04-21 09:52:35 +0200227 " get - Data returned by the NETCONF <get> operation.\n"
228 " getconfig - Data returned by the NETCONF <get-config> operation.\n"
229 " edit - Config content of the NETCONF <edit-config> operation.\n"
230 " rpc - Invocation of a YANG RPC/action, defined as input.\n"
231 " nc-rpc - Similar to 'rpc' but expect and check also the NETCONF\n"
232 " envelopes <rpc> or <action>.\n"
233 " reply - Reply to a YANG RPC/action, defined as output. Note that\n"
234 " the reply data are expected inside a container representing\n"
235 " the original RPC/action invocation.\n"
236 " nc-reply - Similar to 'reply' but expect and check also the NETCONF\n"
237 " envelope <rpc-reply> with output data nodes as direct\n"
238 " descendants. The original RPC/action invocation is expected\n"
239 " in a separate parameter '-R' and is parsed as 'nc-rpc'.\n"
240 " notif - Notification instance of a YANG notification.\n"
241 " nc-notif - Similar to 'notif' but expect and check also the NETCONF\n"
242 " envelope <notification> with element <eventTime> and its\n"
243 " sibling as the actual notification.\n\n");
Michal Vaskoc40548b2021-09-30 13:05:47 +0200244
245 printf(" -d MODE, --default=MODE\n"
246 " Print data with default values, according to the MODE\n"
247 " (to print attributes, ietf-netconf-with-defaults model\n"
248 " must be loaded):\n"
249 " all - Add missing default nodes.\n"
250 " all-tagged - Add missing default nodes and mark all the default\n"
251 " nodes with the attribute.\n"
252 " trim - Remove all nodes with a default value.\n"
253 " implicit-tagged - Add missing nodes and mark them with the attribute.\n\n");
254
255 printf(" -l, --list Print info about the loaded schemas.\n"
256 " (i - imported module, I - implemented module)\n"
Michal Vasko24aaf8e2022-02-04 11:15:26 +0100257 " In case the '-f' option with data encoding is specified,\n"
258 " the list is printed as \"ietf-yang-library\" data.\n\n");
Michal Vaskoc40548b2021-09-30 13:05:47 +0200259
260 printf(" -L LINE_LENGTH, --tree-line-length=LINE_LENGTH\n"
261 " The limit of the maximum line length on which the 'tree'\n"
262 " format will try to be printed.\n\n");
263
264 printf(" -o OUTFILE, --output=OUTFILE\n"
265 " Write the output to OUTFILE instead of stdout.\n\n");
Radek Krejcie9f13b12020-11-09 17:42:04 +0100266
Michal Vasko22e0f3a2021-09-22 12:19:23 +0200267 printf(" -O FILE, --operational=FILE\n"
Michal Vasko9e81ce52022-04-29 10:16:21 +0200268 " Provide optional data to extend validation of the '(nc-)rpc',\n"
269 " '(nc-)reply' or '(nc-)notif' TYPEs. The FILE is supposed to contain\n"
270 " the operational datastore referenced from the operation.\n"
271 " In case of a nested operation, its parent existence is also\n"
272 " checked in these operational data.\n\n");
Radek Krejcie9f13b12020-11-09 17:42:04 +0100273
Michal Vasko3f08fb92022-04-21 09:52:35 +0200274 printf(" -R FILE, --reply-rpc=FILE\n"
275 " Provide source RPC for parsing of the 'nc-reply' TYPE. The FILE\n"
276 " is supposed to contain the source 'nc-rpc' operation of the reply.\n\n");
277
Michal Vasko22e0f3a2021-09-22 12:19:23 +0200278 printf(" -m, --merge Merge input data files into a single tree and validate at\n"
Michal Vasko06158fb2022-03-29 12:13:16 +0200279 " once. The option has effect only for 'data' and 'config' TYPEs.\n\n");
Radek Krejcie9f13b12020-11-09 17:42:04 +0100280
Michal Vasko22e0f3a2021-09-22 12:19:23 +0200281 printf(" -y, --yang-library\n"
Michal Vaskoc431a0a2021-01-25 14:31:58 +0100282 " Load and implement internal \"ietf-yang-library\" YANG module.\n"
283 " Note that this module includes definitions of mandatory state\n"
Michal Vasko22e0f3a2021-09-22 12:19:23 +0200284 " data that can result in unexpected data validation errors.\n\n");
Michal Vaskoc40548b2021-09-30 13:05:47 +0200285
Michal Vasko24aaf8e2022-02-04 11:15:26 +0100286 printf(" -Y FILE, --yang-library-file=FILE\n"
287 " Parse FILE with \"ietf-yang-library\" data and use them to\n"
288 " create an exact YANG schema context. If specified, the '-F'\n"
289 " parameter (enabled features) is ignored.\n\n");
290
stewegd8e2fc92023-05-31 09:52:56 +0200291 printf(" -X, --extended-leafref\n"
292 " Allow usage of deref() XPath function within leafref\n\n");
293
Michal Vaskoc40548b2021-09-30 13:05:47 +0200294#ifndef NDEBUG
295 printf(" -G GROUPS, --debug=GROUPS\n"
296 " Enable printing of specific debugging message group\n"
297 " (nothing will be printed unless verbosity is set to debug):\n"
Michal Vasko27a4acb2021-11-22 10:03:46 +0100298 " <group>[,<group>]* (dict, xpath, dep-sets)\n\n");
Michal Vaskoc40548b2021-09-30 13:05:47 +0200299#endif
Radek Krejcied5acc52019-04-25 15:57:04 +0200300}
301
Radek Krejcie9f13b12020-11-09 17:42:04 +0100302static void
Radek Krejcied5acc52019-04-25 15:57:04 +0200303libyang_verbclb(LY_LOG_LEVEL level, const char *msg, const char *path)
304{
305 char *levstr;
306
Radek Krejcie9f13b12020-11-09 17:42:04 +0100307 switch (level) {
308 case LY_LLERR:
309 levstr = "err :";
310 break;
311 case LY_LLWRN:
312 levstr = "warn:";
313 break;
314 case LY_LLVRB:
315 levstr = "verb:";
316 break;
317 default:
318 levstr = "dbg :";
319 break;
320 }
321 if (path) {
322 fprintf(stderr, "libyang %s %s (%s)\n", levstr, msg, path);
323 } else {
324 fprintf(stderr, "libyang %s %s\n", levstr, msg);
Radek Krejcied5acc52019-04-25 15:57:04 +0200325 }
326}
327
Michal Vasko686d8fc2021-11-22 10:03:23 +0100328static struct schema_features *
329get_features_not_applied(const struct ly_set *fset)
330{
331 for (uint32_t u = 0; u < fset->count; ++u) {
332 struct schema_features *sf = fset->objs[u];
Michal Vasko26bbb272022-08-02 14:54:33 +0200333
Michal Vasko686d8fc2021-11-22 10:03:23 +0100334 if (!sf->applied) {
335 return sf;
336 }
337 }
338
339 return NULL;
340}
341
ekinzie0ab8b302022-10-10 03:03:57 -0400342static LY_ERR
343ext_data_clb(const struct lysc_ext_instance *ext, void *user_data, void **ext_data, ly_bool *ext_data_free)
344{
345 struct ly_ctx *ctx;
346 struct lyd_node *data = NULL;
347
348 ctx = ext->module->ctx;
349 if (user_data) {
350 lyd_parse_data_path(ctx, user_data, LYD_XML, LYD_PARSE_STRICT, LYD_VALIDATE_PRESENT, &data);
351 }
352
353 *ext_data = data;
354 *ext_data_free = 1;
355 return LY_SUCCESS;
356}
357
aPiecek912f3d52022-10-12 10:02:33 +0200358static LY_ERR
359searchpath_strcat(char **searchpaths, const char *path)
360{
361 uint64_t len;
362 char *new;
363
364 if (!(*searchpaths)) {
365 *searchpaths = strdup(path);
366 return LY_SUCCESS;
367 }
368
369 len = strlen(*searchpaths) + strlen(path) + strlen(PATH_SEPARATOR);
370 new = realloc(*searchpaths, sizeof(char) * len + 1);
371 if (!new) {
372 return LY_EMEM;
373 }
374 strcat(new, PATH_SEPARATOR);
375 strcat(new, path);
376 *searchpaths = new;
377
378 return LY_SUCCESS;
379}
380
Radek Krejcie9f13b12020-11-09 17:42:04 +0100381static int
382fill_context_inputs(int argc, char *argv[], struct context *c)
383{
Michal Vasko24aaf8e2022-02-04 11:15:26 +0100384 struct ly_in *in = NULL;
Michal Vasko686d8fc2021-11-22 10:03:23 +0100385 struct schema_features *sf;
Michal Vaskoc91fb122021-11-23 09:00:17 +0100386 struct lys_module *mod;
aPiecek912f3d52022-10-12 10:02:33 +0200387 const char *all_features[] = {"*", NULL};
Michal Vasko24aaf8e2022-02-04 11:15:26 +0100388 char *dir = NULL, *module = NULL;
389
aPiecek912f3d52022-10-12 10:02:33 +0200390 /* Create libyang context. */
Michal Vasko24aaf8e2022-02-04 11:15:26 +0100391 if (c->yang_lib_file) {
392 /* ignore features */
393 ly_set_erase(&c->schema_features, free_features);
394
aPiecek912f3d52022-10-12 10:02:33 +0200395 if (ly_ctx_new_ylpath(c->searchpaths, c->yang_lib_file, LYD_UNKNOWN, c->ctx_options, &c->ctx)) {
ekinzie0ab8b302022-10-10 03:03:57 -0400396 YLMSG_E("Unable to modify libyang context with yang-library data.\n");
Michal Vasko24aaf8e2022-02-04 11:15:26 +0100397 return -1;
398 }
399 } else {
400 /* set imp feature flag if all should be enabled */
aPiecek912f3d52022-10-12 10:02:33 +0200401 c->ctx_options |= !c->schema_features.count ? LY_CTX_ENABLE_IMP_FEATURES : 0;
Michal Vasko24aaf8e2022-02-04 11:15:26 +0100402
aPiecek912f3d52022-10-12 10:02:33 +0200403 if (ly_ctx_new(c->searchpaths, c->ctx_options, &c->ctx)) {
404 YLMSG_E("Unable to create libyang context\n");
Michal Vasko24aaf8e2022-02-04 11:15:26 +0100405 return -1;
406 }
aPiecek912f3d52022-10-12 10:02:33 +0200407 }
Michal Vasko24aaf8e2022-02-04 11:15:26 +0100408
aPiecek912f3d52022-10-12 10:02:33 +0200409 /* set callback providing run-time extension instance data */
410 if (c->schema_context_filename) {
411 ly_ctx_set_ext_data_clb(c->ctx, ext_data_clb, c->schema_context_filename);
Michal Vasko24aaf8e2022-02-04 11:15:26 +0100412 }
Radek Krejcie9f13b12020-11-09 17:42:04 +0100413
Michal Vasko3f08fb92022-04-21 09:52:35 +0200414 /* process the operational and/or reply RPC content if any */
Radek Krejcie9f13b12020-11-09 17:42:04 +0100415 if (c->data_operational.path) {
416 if (get_input(c->data_operational.path, NULL, &c->data_operational.format, &c->data_operational.in)) {
417 return -1;
418 }
419 }
Michal Vasko3f08fb92022-04-21 09:52:35 +0200420 if (c->reply_rpc.path) {
421 if (get_input(c->reply_rpc.path, NULL, &c->reply_rpc.format, &c->reply_rpc.in)) {
422 return -1;
423 }
424 }
Radek Krejcie9f13b12020-11-09 17:42:04 +0100425
426 for (int i = 0; i < argc - optind; i++) {
427 LYS_INFORMAT format_schema = LYS_IN_UNKNOWN;
428 LYD_FORMAT format_data = LYD_UNKNOWN;
Radek Krejcie9f13b12020-11-09 17:42:04 +0100429
430 if (get_input(argv[optind + i], &format_schema, &format_data, &in)) {
Radek Krejcif2afd672020-11-26 12:29:23 +0100431 goto error;
Radek Krejcie9f13b12020-11-09 17:42:04 +0100432 }
433
434 if (format_schema) {
435 LY_ERR ret;
436 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 +0100437 const char **features;
Radek Krejcie9f13b12020-11-09 17:42:04 +0100438
Michal Vasko24aaf8e2022-02-04 11:15:26 +0100439 /* parse the input */
Radek Krejcie9f13b12020-11-09 17:42:04 +0100440 if (parse_schema_path(argv[optind + i], &dir, &module)) {
Radek Krejcif2afd672020-11-26 12:29:23 +0100441 goto error;
Radek Krejcie9f13b12020-11-09 17:42:04 +0100442 }
443
Michal Vasko24aaf8e2022-02-04 11:15:26 +0100444 if (c->yang_lib_file) {
445 /* just get the module, it should already be parsed */
446 mod = ly_ctx_get_module_implemented(c->ctx, module);
447 if (!mod) {
448 YLMSG_E("Schema module \"%s\" not implemented in yang-library data.\n", module);
449 goto error;
450 }
Michal Vasko59740872021-11-22 10:01:34 +0100451 } else {
Michal Vasko24aaf8e2022-02-04 11:15:26 +0100452 /* add temporarily also the path of the module itself */
453 if (ly_ctx_set_searchdir(c->ctx, dir) == LY_EEXIST) {
454 path_unset = 0;
455 }
456
457 /* get features list for this module */
458 if (!c->schema_features.count) {
459 features = all_features;
460 } else {
461 get_features(&c->schema_features, module, &features);
462 }
463
464 /* parse module */
465 ret = lys_parse(c->ctx, in, format_schema, features, &mod);
466 ly_ctx_unset_searchdir_last(c->ctx, path_unset);
467 if (ret) {
468 YLMSG_E("Parsing schema module \"%s\" failed.\n", argv[optind + i]);
469 goto error;
470 }
Michal Vasko703370c2021-10-19 14:07:16 +0200471 }
472
Radek Krejcie9f13b12020-11-09 17:42:04 +0100473 /* temporary cleanup */
474 free(dir);
Michal Vasko24aaf8e2022-02-04 11:15:26 +0100475 dir = NULL;
Radek Krejcie9f13b12020-11-09 17:42:04 +0100476 free(module);
Michal Vasko24aaf8e2022-02-04 11:15:26 +0100477 module = NULL;
Radek Krejcie9f13b12020-11-09 17:42:04 +0100478
roman300b8782022-08-11 12:49:21 +0200479 if (c->schema_out_format || c->feature_param_format) {
Michal Vasko24aaf8e2022-02-04 11:15:26 +0100480 /* module will be printed */
Radek Krejcie9f13b12020-11-09 17:42:04 +0100481 if (ly_set_add(&c->schema_modules, (void *)mod, 1, NULL)) {
482 YLMSG_E("Storing parsed schema module (%s) for print failed.\n", argv[optind + i]);
Radek Krejcif2afd672020-11-26 12:29:23 +0100483 goto error;
Radek Krejcie9f13b12020-11-09 17:42:04 +0100484 }
485 }
Radek Krejcie9f13b12020-11-09 17:42:04 +0100486 } else if (format_data) {
Radek Krejci6784a4e2020-12-09 14:23:05 +0100487 if (!fill_cmdline_file(&c->data_inputs, in, argv[optind + i], format_data)) {
Radek Krejcif2afd672020-11-26 12:29:23 +0100488 goto error;
Radek Krejcie9f13b12020-11-09 17:42:04 +0100489 }
Radek Krejcif53b0d52020-12-03 11:29:24 +0100490 in = NULL;
Radek Krejcie9f13b12020-11-09 17:42:04 +0100491 }
Michal Vasko24aaf8e2022-02-04 11:15:26 +0100492
493 ly_in_free(in, 1);
494 in = NULL;
Radek Krejcie9f13b12020-11-09 17:42:04 +0100495 }
496
Michal Vaskoc91fb122021-11-23 09:00:17 +0100497 /* check that all specified features were applied, apply now if possible */
498 while ((sf = get_features_not_applied(&c->schema_features))) {
499 /* try to find implemented or the latest revision of this module */
500 mod = ly_ctx_get_module_implemented(c->ctx, sf->mod_name);
501 if (!mod) {
502 mod = ly_ctx_get_module_latest(c->ctx, sf->mod_name);
Michal Vasko686d8fc2021-11-22 10:03:23 +0100503 }
Michal Vaskoc91fb122021-11-23 09:00:17 +0100504 if (!mod) {
505 YLMSG_E("Specified features not applied, module \"%s\" not loaded.\n", sf->mod_name);
506 goto error;
507 }
508
509 /* we have the module, implement it if needed and enable the specific features */
510 if (lys_set_implemented(mod, (const char **)sf->features)) {
511 YLMSG_E("Implementing module \"%s\" failed.\n", mod->name);
512 goto error;
513 }
514 sf->applied = 1;
Michal Vasko686d8fc2021-11-22 10:03:23 +0100515 }
516
Radek Krejcie9f13b12020-11-09 17:42:04 +0100517 return 0;
Radek Krejcif2afd672020-11-26 12:29:23 +0100518
519error:
520 ly_in_free(in, 1);
Michal Vasko24aaf8e2022-02-04 11:15:26 +0100521 free(dir);
522 free(module);
Radek Krejcif2afd672020-11-26 12:29:23 +0100523 return -1;
Radek Krejcie9f13b12020-11-09 17:42:04 +0100524}
525
526/**
527 * @brief Process command line options and store the settings into the context.
528 *
529 * return -1 in case of error;
530 * return 0 in case of success and ready to process
531 * return 1 in case of success, but expect to exit.
Radek Krejcied5acc52019-04-25 15:57:04 +0200532 */
533static int
Radek Krejcie9f13b12020-11-09 17:42:04 +0100534fill_context(int argc, char *argv[], struct context *c)
Radek Krejcied5acc52019-04-25 15:57:04 +0200535{
Radek Krejcie9f13b12020-11-09 17:42:04 +0100536 int ret;
Radek Krejcie7b95092019-05-15 11:03:07 +0200537
Radek Krejcie9f13b12020-11-09 17:42:04 +0100538 int opt, opt_index;
Radek Krejcied5acc52019-04-25 15:57:04 +0200539 struct option options[] = {
Michal Vasko24aaf8e2022-02-04 11:15:26 +0100540 {"help", no_argument, NULL, 'h'},
541 {"version", no_argument, NULL, 'v'},
542 {"verbose", no_argument, NULL, 'V'},
543 {"quiet", no_argument, NULL, 'Q'},
544 {"format", required_argument, NULL, 'f'},
545 {"path", required_argument, NULL, 'p'},
Michal Vaskod8b0e772022-03-18 13:36:04 +0100546 {"disable-searchdir", no_argument, NULL, 'D'},
Michal Vasko24aaf8e2022-02-04 11:15:26 +0100547 {"features", required_argument, NULL, 'F'},
548 {"make-implemented", no_argument, NULL, 'i'},
549 {"schema-node", required_argument, NULL, 'P'},
550 {"single-node", no_argument, NULL, 'q'},
551 {"submodule", required_argument, NULL, 's'},
ekinzie0ab8b302022-10-10 03:03:57 -0400552 {"ext-data", required_argument, NULL, 'x'},
Michal Vasko24aaf8e2022-02-04 11:15:26 +0100553 {"not-strict", no_argument, NULL, 'n'},
554 {"present", no_argument, NULL, 'e'},
555 {"type", required_argument, NULL, 't'},
556 {"default", required_argument, NULL, 'd'},
557 {"list", no_argument, NULL, 'l'},
558 {"tree-line-length", required_argument, NULL, 'L'},
559 {"output", required_argument, NULL, 'o'},
560 {"operational", required_argument, NULL, 'O'},
Michal Vasko3f08fb92022-04-21 09:52:35 +0200561 {"reply-rpc", required_argument, NULL, 'R'},
Michal Vasko24aaf8e2022-02-04 11:15:26 +0100562 {"merge", no_argument, NULL, 'm'},
563 {"yang-library", no_argument, NULL, 'y'},
564 {"yang-library-file", required_argument, NULL, 'Y'},
stewegd8e2fc92023-05-31 09:52:56 +0200565 {"extended-leafref", no_argument, NULL, 'X'},
Michal Vaskoc40548b2021-09-30 13:05:47 +0200566#ifndef NDEBUG
567 {"debug", required_argument, NULL, 'G'},
568#endif
Radek Krejcied5acc52019-04-25 15:57:04 +0200569 {NULL, 0, NULL, 0}
570 };
Radek Krejcie9f13b12020-11-09 17:42:04 +0100571 uint8_t data_type_set = 0;
572
Michal Vasko24aaf8e2022-02-04 11:15:26 +0100573 c->ctx_options = YL_DEFAULT_CTX_OPTIONS;
Michal Vasko667ce6b2021-01-25 15:00:27 +0100574 c->data_parse_options = YL_DEFAULT_DATA_PARSE_OPTIONS;
Michal Vasko05eaf832023-02-10 09:21:46 +0100575 c->data_validate_options = YL_DEFAULT_DATA_VALIDATE_OPTIONS;
aPiecek2cfeeae2021-04-21 13:17:34 +0200576 c->line_length = 0;
Michal Vasko667ce6b2021-01-25 15:00:27 +0100577
Michal Vasko27a4acb2021-11-22 10:03:46 +0100578 opterr = 0;
Radek Krejcied5acc52019-04-25 15:57:04 +0200579#ifndef NDEBUG
stewegd8e2fc92023-05-31 09:52:56 +0200580 while ((opt = getopt_long(argc, argv, "hvVQf:p:DF:iP:qs:net:d:lL:o:O:R:myY:Xx:G:", options, &opt_index)) != -1)
Michal Vasko27a4acb2021-11-22 10:03:46 +0100581#else
stewegd8e2fc92023-05-31 09:52:56 +0200582 while ((opt = getopt_long(argc, argv, "hvVQf:p:DF:iP:qs:net:d:lL:o:O:R:myY:Xx:", options, &opt_index)) != -1)
Radek Krejcied5acc52019-04-25 15:57:04 +0200583#endif
Michal Vasko03fe6202022-07-22 16:23:13 +0200584 {
Radek Krejcied5acc52019-04-25 15:57:04 +0200585 switch (opt) {
Michal Vaskoc40548b2021-09-30 13:05:47 +0200586 case 'h': /* --help */
587 help(0);
588 return 1;
589
590 case 'v': /* --version */
591 version();
592 return 1;
593
594 case 'V': { /* --verbose */
595 LY_LOG_LEVEL verbosity = ly_log_level(LY_LLERR);
Michal Vasko2bf4af42023-01-04 12:08:38 +0100596
Michal Vaskoc40548b2021-09-30 13:05:47 +0200597 if (verbosity < LY_LLDBG) {
Michal Vaskob0d307b2021-11-25 11:15:16 +0100598 ++verbosity;
Radek Krejcied5acc52019-04-25 15:57:04 +0200599 }
Michal Vaskob0d307b2021-11-25 11:15:16 +0100600 ly_log_level(verbosity);
Radek Krejcied5acc52019-04-25 15:57:04 +0200601 break;
Michal Vaskoc40548b2021-09-30 13:05:47 +0200602 } /* case 'V' */
Radek Krejcie9f13b12020-11-09 17:42:04 +0100603
Michal Vaskob0d307b2021-11-25 11:15:16 +0100604 case 'Q': { /* --quiet */
605 LY_LOG_LEVEL verbosity = ly_log_level(LY_LLERR);
Michal Vasko2bf4af42023-01-04 12:08:38 +0100606
Michal Vaskob0d307b2021-11-25 11:15:16 +0100607 if (verbosity == LY_LLERR) {
608 /* turn logging off */
609 ly_log_options(LY_LOSTORE_LAST);
610 } else if (verbosity > LY_LLERR) {
611 --verbosity;
612 }
613 ly_log_level(verbosity);
614 break;
615 } /* case 'Q' */
616
Radek Krejcie9f13b12020-11-09 17:42:04 +0100617 case 'f': /* --format */
618 if (!strcasecmp(optarg, "yang")) {
619 c->schema_out_format = LYS_OUT_YANG;
620 c->data_out_format = 0;
621 } else if (!strcasecmp(optarg, "yin")) {
622 c->schema_out_format = LYS_OUT_YIN;
623 c->data_out_format = 0;
624 } else if (!strcasecmp(optarg, "info")) {
625 c->schema_out_format = LYS_OUT_YANG_COMPILED;
626 c->data_out_format = 0;
627 } else if (!strcasecmp(optarg, "tree")) {
628 c->schema_out_format = LYS_OUT_TREE;
629 c->data_out_format = 0;
630 } else if (!strcasecmp(optarg, "xml")) {
631 c->schema_out_format = 0;
632 c->data_out_format = LYD_XML;
633 } else if (!strcasecmp(optarg, "json")) {
634 c->schema_out_format = 0;
635 c->data_out_format = LYD_JSON;
Michal Vaskod8b0e772022-03-18 13:36:04 +0100636 } else if (!strcasecmp(optarg, "lyb")) {
637 c->schema_out_format = 0;
638 c->data_out_format = LYD_LYB;
roman300b8782022-08-11 12:49:21 +0200639 } else if (!strcasecmp(optarg, "feature-param")) {
640 c->feature_param_format = 1;
Radek Krejcied5acc52019-04-25 15:57:04 +0200641 } else {
Radek Krejcie9f13b12020-11-09 17:42:04 +0100642 YLMSG_E("Unknown output format %s\n", optarg);
Radek Krejcied5acc52019-04-25 15:57:04 +0200643 help(1);
Radek Krejcie9f13b12020-11-09 17:42:04 +0100644 return -1;
Radek Krejcied5acc52019-04-25 15:57:04 +0200645 }
646 break;
Radek Krejcie9f13b12020-11-09 17:42:04 +0100647
Michal Vaskoc40548b2021-09-30 13:05:47 +0200648 case 'p': { /* --path */
649 struct stat st;
650
651 if (stat(optarg, &st) == -1) {
652 YLMSG_E("Unable to use search path (%s) - %s.\n", optarg, strerror(errno));
653 return -1;
654 }
655 if (!S_ISDIR(st.st_mode)) {
656 YLMSG_E("Provided search path is not a directory.\n");
657 return -1;
658 }
659
aPiecek912f3d52022-10-12 10:02:33 +0200660 if (searchpath_strcat(&c->searchpaths, optarg)) {
Michal Vaskoc40548b2021-09-30 13:05:47 +0200661 YLMSG_E("Storing searchpath failed.\n");
662 return -1;
663 }
664
665 break;
666 } /* case 'p' */
667
668 case 'D': /* --disable-search */
Michal Vasko24aaf8e2022-02-04 11:15:26 +0100669 if (c->ctx_options & LY_CTX_DISABLE_SEARCHDIRS) {
Michal Vaskoc40548b2021-09-30 13:05:47 +0200670 YLMSG_W("The -D option specified too many times.\n");
671 }
Michal Vasko24aaf8e2022-02-04 11:15:26 +0100672 if (c->ctx_options & LY_CTX_DISABLE_SEARCHDIR_CWD) {
673 c->ctx_options &= ~LY_CTX_DISABLE_SEARCHDIR_CWD;
674 c->ctx_options |= LY_CTX_DISABLE_SEARCHDIRS;
Michal Vaskoc40548b2021-09-30 13:05:47 +0200675 } else {
Michal Vasko24aaf8e2022-02-04 11:15:26 +0100676 c->ctx_options |= LY_CTX_DISABLE_SEARCHDIR_CWD;
Michal Vaskoc40548b2021-09-30 13:05:47 +0200677 }
678 break;
679
680 case 'F': /* --features */
681 if (parse_features(optarg, &c->schema_features)) {
682 return -1;
683 }
684 break;
685
Michal Vasko8d6d0ad2021-10-19 12:32:27 +0200686 case 'i': /* --make-implemented */
Michal Vasko24aaf8e2022-02-04 11:15:26 +0100687 if (c->ctx_options & LY_CTX_REF_IMPLEMENTED) {
688 c->ctx_options &= ~LY_CTX_REF_IMPLEMENTED;
689 c->ctx_options |= LY_CTX_ALL_IMPLEMENTED;
Michal Vaskoc40548b2021-09-30 13:05:47 +0200690 } else {
Michal Vasko24aaf8e2022-02-04 11:15:26 +0100691 c->ctx_options |= LY_CTX_REF_IMPLEMENTED;
Michal Vaskoc40548b2021-09-30 13:05:47 +0200692 }
693 break;
694
Radek Krejcie9f13b12020-11-09 17:42:04 +0100695 case 'P': /* --schema-node */
696 c->schema_node_path = optarg;
Radek Krejcied5acc52019-04-25 15:57:04 +0200697 break;
Radek Krejcie9f13b12020-11-09 17:42:04 +0100698
699 case 'q': /* --single-node */
700 c->schema_print_options |= LYS_PRINT_NO_SUBSTMT;
701 break;
702
Michal Vaskofe74d1e2021-09-30 13:17:36 +0200703 case 's': /* --submodule */
704 c->submodule = optarg;
705 break;
706
ekinzie0ab8b302022-10-10 03:03:57 -0400707 case 'x': /* --ext-data */
708 c->schema_context_filename = strdup(optarg);
709 break;
710
Michal Vasko667ce6b2021-01-25 15:00:27 +0100711 case 'n': /* --not-strict */
712 c->data_parse_options &= ~LYD_PARSE_STRICT;
Radek Krejcie9f13b12020-11-09 17:42:04 +0100713 break;
714
715 case 'e': /* --present */
716 c->data_validate_options |= LYD_VALIDATE_PRESENT;
717 break;
718
719 case 't': /* --type */
720 if (data_type_set) {
721 YLMSG_E("The data type (-t) cannot be set multiple times.\n");
722 return -1;
723 }
724
725 if (!strcasecmp(optarg, "config")) {
726 c->data_parse_options |= LYD_PARSE_NO_STATE;
Michal Vaskof6bda332021-02-01 08:59:03 +0100727 c->data_validate_options |= LYD_VALIDATE_NO_STATE;
Radek Krejcie9f13b12020-11-09 17:42:04 +0100728 } else if (!strcasecmp(optarg, "get")) {
729 c->data_parse_options |= LYD_PARSE_ONLY;
730 } else if (!strcasecmp(optarg, "getconfig") || !strcasecmp(optarg, "get-config")) {
731 c->data_parse_options |= LYD_PARSE_ONLY | LYD_PARSE_NO_STATE;
732 } else if (!strcasecmp(optarg, "edit")) {
733 c->data_parse_options |= LYD_PARSE_ONLY;
Michal Vasko3f08fb92022-04-21 09:52:35 +0200734 } else if (!strcasecmp(optarg, "rpc")) {
Michal Vasko1e4c68e2021-02-18 15:03:01 +0100735 c->data_type = LYD_TYPE_RPC_YANG;
Michal Vasko3f08fb92022-04-21 09:52:35 +0200736 } else if (!strcasecmp(optarg, "nc-rpc")) {
737 c->data_type = LYD_TYPE_RPC_NETCONF;
738 } else if (!strcasecmp(optarg, "reply")) {
Michal Vasko1e4c68e2021-02-18 15:03:01 +0100739 c->data_type = LYD_TYPE_REPLY_YANG;
Michal Vasko3f08fb92022-04-21 09:52:35 +0200740 } else if (!strcasecmp(optarg, "nc-reply")) {
741 c->data_type = LYD_TYPE_REPLY_NETCONF;
742 } else if (!strcasecmp(optarg, "notif")) {
Michal Vasko1e4c68e2021-02-18 15:03:01 +0100743 c->data_type = LYD_TYPE_NOTIF_YANG;
Michal Vasko3f08fb92022-04-21 09:52:35 +0200744 } else if (!strcasecmp(optarg, "nc-notif")) {
745 c->data_type = LYD_TYPE_NOTIF_NETCONF;
Radek Krejcie9f13b12020-11-09 17:42:04 +0100746 } else if (!strcasecmp(optarg, "data")) {
747 /* default option */
748 } else {
749 YLMSG_E("Unknown data tree type %s\n", optarg);
750 help(1);
751 return -1;
752 }
753
754 data_type_set = 1;
755 break;
756
Michal Vaskoc40548b2021-09-30 13:05:47 +0200757 case 'd': /* --default */
758 if (!strcasecmp(optarg, "all")) {
759 c->data_print_options = (c->data_print_options & ~LYD_PRINT_WD_MASK) | LYD_PRINT_WD_ALL;
760 } else if (!strcasecmp(optarg, "all-tagged")) {
761 c->data_print_options = (c->data_print_options & ~LYD_PRINT_WD_MASK) | LYD_PRINT_WD_ALL_TAG;
762 } else if (!strcasecmp(optarg, "trim")) {
763 c->data_print_options = (c->data_print_options & ~LYD_PRINT_WD_MASK) | LYD_PRINT_WD_TRIM;
764 } else if (!strcasecmp(optarg, "implicit-tagged")) {
765 c->data_print_options = (c->data_print_options & ~LYD_PRINT_WD_MASK) | LYD_PRINT_WD_IMPL_TAG;
766 } else {
767 YLMSG_E("Unknown default mode %s\n", optarg);
768 help(1);
769 return -1;
770 }
771 break;
772
773 case 'l': /* --list */
774 c->list = 1;
775 break;
776
777 case 'L': /* --tree-line-length */
778 c->line_length = atoi(optarg);
779 break;
780
781 case 'o': /* --output */
782 if (c->out) {
783 YLMSG_E("Only a single output can be specified.\n");
784 return -1;
785 } else {
786 if (ly_out_new_filepath(optarg, &c->out)) {
787 YLMSG_E("Unable open output file %s (%s)\n", optarg, strerror(errno));
788 return -1;
789 }
790 }
791 break;
792
Radek Krejcie9f13b12020-11-09 17:42:04 +0100793 case 'O': /* --operational */
794 if (c->data_operational.path) {
795 YLMSG_E("The operational datastore (-O) cannot be set multiple times.\n");
796 return -1;
797 }
798 c->data_operational.path = optarg;
799 break;
800
Michal Vasko3f08fb92022-04-21 09:52:35 +0200801 case 'R': /* --reply-rpc */
802 if (c->reply_rpc.path) {
803 YLMSG_E("The PRC of the reply (-R) cannot be set multiple times.\n");
804 return -1;
805 }
806 c->reply_rpc.path = optarg;
807 break;
808
Radek Krejcie9f13b12020-11-09 17:42:04 +0100809 case 'm': /* --merge */
810 c->data_merge = 1;
811 break;
812
Michal Vaskoc431a0a2021-01-25 14:31:58 +0100813 case 'y': /* --yang-library */
Michal Vasko24aaf8e2022-02-04 11:15:26 +0100814 c->ctx_options &= ~LY_CTX_NO_YANGLIBRARY;
815 break;
816
817 case 'Y': /* --yang-library-file */
818 c->ctx_options &= ~LY_CTX_NO_YANGLIBRARY;
819 c->yang_lib_file = optarg;
Michal Vaskoc431a0a2021-01-25 14:31:58 +0100820 break;
821
stewegd8e2fc92023-05-31 09:52:56 +0200822 case 'X': /* --extended-leafref */
823 c->ctx_options |= LY_CTX_LEAFREF_EXTENDED;
824 break;
825
Radek Krejcied5acc52019-04-25 15:57:04 +0200826#ifndef NDEBUG
Radek Krejcie9f13b12020-11-09 17:42:04 +0100827 case 'G': { /* --debug */
828 uint32_t dbg_groups = 0;
829 const char *ptr = optarg;
830
Radek Krejcied5acc52019-04-25 15:57:04 +0200831 while (ptr[0]) {
Radek Krejcif13b87b2020-12-01 22:02:17 +0100832 if (!strncasecmp(ptr, "dict", sizeof "dict" - 1)) {
Radek Krejcie9f13b12020-11-09 17:42:04 +0100833 dbg_groups |= LY_LDGDICT;
Radek Krejcif13b87b2020-12-01 22:02:17 +0100834 ptr += sizeof "dict" - 1;
835 } else if (!strncasecmp(ptr, "xpath", sizeof "xpath" - 1)) {
Radek Krejcie9f13b12020-11-09 17:42:04 +0100836 dbg_groups |= LY_LDGXPATH;
Radek Krejcif13b87b2020-12-01 22:02:17 +0100837 ptr += sizeof "xpath" - 1;
Michal Vasko27a4acb2021-11-22 10:03:46 +0100838 } else if (!strncasecmp(ptr, "dep-sets", sizeof "dep-sets" - 1)) {
839 dbg_groups |= LY_LDGDEPSETS;
840 ptr += sizeof "dep-sets" - 1;
Radek Krejcied5acc52019-04-25 15:57:04 +0200841 }
842
843 if (ptr[0]) {
844 if (ptr[0] != ',') {
Radek Krejcie9f13b12020-11-09 17:42:04 +0100845 YLMSG_E("Unknown debug group string \"%s\"\n", optarg);
846 return -1;
Radek Krejcied5acc52019-04-25 15:57:04 +0200847 }
848 ++ptr;
849 }
850 }
Radek Krejcie9f13b12020-11-09 17:42:04 +0100851 ly_log_dbg_groups(dbg_groups);
Radek Krejcied5acc52019-04-25 15:57:04 +0200852 break;
Radek Krejcie9f13b12020-11-09 17:42:04 +0100853 } /* case 'G' */
Radek Krejcied5acc52019-04-25 15:57:04 +0200854#endif
Michal Vasko27a4acb2021-11-22 10:03:46 +0100855 default:
856 YLMSG_E("Invalid option or missing argument: -%c\n", optopt);
857 return -1;
Radek Krejcie9f13b12020-11-09 17:42:04 +0100858 } /* switch */
859 }
860
Radek Krejcie9f13b12020-11-09 17:42:04 +0100861 /* additional checks for the options combinations */
862 if (!c->list && (optind >= argc)) {
863 help(1);
864 YLMSG_E("Missing <schema> to process.\n");
865 return 1;
866 }
867
868 if (c->data_merge) {
869 if (c->data_type || (c->data_parse_options & LYD_PARSE_ONLY)) {
870 /* switch off the option, incompatible input data type */
871 c->data_merge = 0;
872 } else {
873 /* postpone validation after the merge of all the input data */
874 c->data_parse_options |= LYD_PARSE_ONLY;
Radek Krejcied5acc52019-04-25 15:57:04 +0200875 }
876 }
877
Radek Krejcie9f13b12020-11-09 17:42:04 +0100878 if (c->data_operational.path && !c->data_type) {
Michal Vasko3f08fb92022-04-21 09:52:35 +0200879 YLMSG_E("Operational datastore takes effect only with RPCs/Actions/Replies/Notification input data types.\n");
Radek Krejcie9f13b12020-11-09 17:42:04 +0100880 c->data_operational.path = NULL;
Radek Krejcied5acc52019-04-25 15:57:04 +0200881 }
Radek Krejcie9f13b12020-11-09 17:42:04 +0100882
Michal Vasko3f08fb92022-04-21 09:52:35 +0200883 if (c->reply_rpc.path && (c->data_type != LYD_TYPE_REPLY_NETCONF)) {
884 YLMSG_E("Source RPC is needed only for NETCONF Reply input data type.\n");
885 c->data_operational.path = NULL;
886 } else if (!c->reply_rpc.path && (c->data_type == LYD_TYPE_REPLY_NETCONF)) {
887 YLMSG_E("Missing source RPC (-R) for NETCONF Reply input data type.\n");
888 return -1;
889 }
890
aPiecek2cfeeae2021-04-21 13:17:34 +0200891 if ((c->schema_out_format != LYS_OUT_TREE) && c->line_length) {
892 YLMSG_E("--tree-line-length take effect only in case of the tree output format.\n");
893 }
894
Radek Krejcie9f13b12020-11-09 17:42:04 +0100895 /* default output stream */
896 if (!c->out) {
897 if (ly_out_new_file(stdout, &c->out)) {
898 YLMSG_E("Unable to set stdout as output.\n");
899 return -1;
Radek Krejcied5acc52019-04-25 15:57:04 +0200900 }
901 }
Radek Krejcie9f13b12020-11-09 17:42:04 +0100902
aPiecek7ac66d52021-05-20 07:54:07 +0200903 if (c->schema_out_format == LYS_OUT_TREE) {
904 /* print tree from lysc_nodes */
Michal Vasko24aaf8e2022-02-04 11:15:26 +0100905 c->ctx_options |= LY_CTX_SET_PRIV_PARSED;
aPiecek7ac66d52021-05-20 07:54:07 +0200906 }
907
Radek Krejcie9f13b12020-11-09 17:42:04 +0100908 /* process input files provided as standalone command line arguments,
909 * schema modules are parsed and inserted into the context,
910 * data files are just checked and prepared into internal structures for further processing */
911 ret = fill_context_inputs(argc, argv, c);
912 if (ret) {
913 return ret;
914 }
915
916 /* the second batch of checks */
917 if (c->schema_print_options && !c->schema_out_format) {
918 YLMSG_W("Schema printer options specified, but the schema output format is missing.\n");
919 }
920 if (c->schema_parse_options && !c->schema_modules.count) {
921 YLMSG_W("Schema parser options specified, but no schema input file provided.\n");
922 }
923 if (c->data_print_options && !c->data_out_format) {
924 YLMSG_W("data printer options specified, but the data output format is missing.\n");
925 }
Michal Vasko667ce6b2021-01-25 15:00:27 +0100926 if (((c->data_parse_options != YL_DEFAULT_DATA_PARSE_OPTIONS) || c->data_type) && !c->data_inputs.count) {
Radek Krejcie9f13b12020-11-09 17:42:04 +0100927 YLMSG_W("Data parser options specified, but no data input file provided.\n");
928 }
929
930 if (c->schema_node_path) {
931 c->schema_node = lys_find_path(c->ctx, NULL, c->schema_node_path, 0);
932 if (!c->schema_node) {
933 c->schema_node = lys_find_path(c->ctx, NULL, c->schema_node_path, 1);
934
935 if (!c->schema_node) {
936 YLMSG_E("Invalid schema path.\n");
937 return -1;
938 }
Radek Krejcied5acc52019-04-25 15:57:04 +0200939 }
Radek Krejcied5acc52019-04-25 15:57:04 +0200940 }
Radek Krejcie9f13b12020-11-09 17:42:04 +0100941
Radek Krejcie9f13b12020-11-09 17:42:04 +0100942 return 0;
943}
944
945int
946main_ni(int argc, char *argv[])
947{
948 int ret = EXIT_SUCCESS, r;
949 struct context c = {0};
roman300b8782022-08-11 12:49:21 +0200950 char *features_output = NULL;
951 struct ly_set set = {0};
952 uint32_t u;
Radek Krejcied5acc52019-04-25 15:57:04 +0200953
954 /* set callback for printing libyang messages */
955 ly_set_log_clb(libyang_verbclb, 1);
Radek Krejcie9f13b12020-11-09 17:42:04 +0100956
957 r = fill_context(argc, argv, &c);
958 if (r < 0) {
959 ret = EXIT_FAILURE;
Radek Krejcied5acc52019-04-25 15:57:04 +0200960 }
Radek Krejcie9f13b12020-11-09 17:42:04 +0100961 if (r) {
Radek Krejcied5acc52019-04-25 15:57:04 +0200962 goto cleanup;
963 }
964
Radek Krejcie9f13b12020-11-09 17:42:04 +0100965 /* do the required job - parse, validate, print */
966
967 if (c.list) {
968 /* print the list of schemas */
aPiecek34262622023-03-27 08:28:25 +0200969 ret = print_list(c.out, c.ctx, c.data_out_format);
970 goto cleanup;
Radek Krejci047d64e2020-12-03 12:57:10 +0100971 } else {
roman300b8782022-08-11 12:49:21 +0200972 if (c.feature_param_format) {
973 for (u = 0; u < c.schema_modules.count; u++) {
974 if (collect_features(c.schema_modules.objs[u], &set)) {
975 YLMSG_E("Unable to read features from a module.\n");
976 goto cleanup;
977 }
978 if (generate_features_output(c.schema_modules.objs[u], &set, &features_output)) {
979 YLMSG_E("Unable to generate feature command output.\n");
980 goto cleanup;
981 }
982 ly_set_erase(&set, NULL);
983 }
984 ly_print(c.out, "%s\n", features_output);
985 } else if (c.schema_out_format) {
Radek Krejci047d64e2020-12-03 12:57:10 +0100986 if (c.schema_node) {
987 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 +0100988 if (ret) {
Radek Krejci047d64e2020-12-03 12:57:10 +0100989 YLMSG_E("Unable to print schema node %s.\n", c.schema_node_path);
Radek Krejcie9f13b12020-11-09 17:42:04 +0100990 goto cleanup;
991 }
Michal Vaskofe74d1e2021-09-30 13:17:36 +0200992 } else if (c.submodule) {
993 const struct lysp_submodule *submod = ly_ctx_get_submodule_latest(c.ctx, c.submodule);
Michal Vasko26bbb272022-08-02 14:54:33 +0200994
Michal Vaskofe74d1e2021-09-30 13:17:36 +0200995 if (!submod) {
996 YLMSG_E("Unable to find submodule %s.\n", c.submodule);
997 goto cleanup;
998 }
999
1000 ret = lys_print_submodule(c.out, submod, c.schema_out_format, c.line_length, c.schema_print_options);
1001 if (ret) {
1002 YLMSG_E("Unable to print submodule %s.\n", submod->name);
1003 goto cleanup;
1004 }
Radek Krejci047d64e2020-12-03 12:57:10 +01001005 } else {
roman300b8782022-08-11 12:49:21 +02001006 for (u = 0; u < c.schema_modules.count; ++u) {
aPiecek2cfeeae2021-04-21 13:17:34 +02001007 ret = lys_print_module(c.out, (struct lys_module *)c.schema_modules.objs[u], c.schema_out_format,
1008 c.line_length, c.schema_print_options);
aPiecek8f0b7882021-05-21 10:18:36 +02001009 /* for YANG Tree Diagrams printing it's more readable to print a blank line between modules. */
1010 if ((c.schema_out_format == LYS_OUT_TREE) && (u + 1 < c.schema_modules.count)) {
1011 ly_print(c.out, "\n");
1012 }
Radek Krejci047d64e2020-12-03 12:57:10 +01001013 if (ret) {
1014 YLMSG_E("Unable to print module %s.\n", ((struct lys_module *)c.schema_modules.objs[u])->name);
1015 goto cleanup;
1016 }
1017 }
Radek Krejcie9f13b12020-11-09 17:42:04 +01001018 }
Radek Krejcied5acc52019-04-25 15:57:04 +02001019 }
Radek Krejci047d64e2020-12-03 12:57:10 +01001020
1021 /* do the data validation despite the schema was printed */
1022 if (c.data_inputs.size) {
Michal Vasko0f1e4562022-03-29 11:57:57 +02001023 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 +02001024 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 +02001025 if (ret) {
Radek Krejci047d64e2020-12-03 12:57:10 +01001026 goto cleanup;
1027 }
Radek Krejcied5acc52019-04-25 15:57:04 +02001028 }
Radek Krejcied5acc52019-04-25 15:57:04 +02001029 }
Radek Krejcied5acc52019-04-25 15:57:04 +02001030
1031cleanup:
Radek Krejcie9f13b12020-11-09 17:42:04 +01001032 /* cleanup */
1033 erase_context(&c);
roman300b8782022-08-11 12:49:21 +02001034 free(features_output);
1035 ly_set_erase(&set, NULL);
Radek Krejcied5acc52019-04-25 15:57:04 +02001036
Radek Krejcied5acc52019-04-25 15:57:04 +02001037 return ret;
1038}