Radek Krejci | ed5acc5 | 2019-04-25 15:57:04 +0200 | [diff] [blame] | 1 | /** |
| 2 | * @file main_ni.c |
| 3 | * @author Radek Krejci <rkrejci@cesnet.cz> |
Michal Vasko | 193dacd | 2022-10-13 08:43:05 +0200 | [diff] [blame] | 4 | * @author Michal Vasko <mvasko@cesnet.cz> |
| 5 | * @brief libyang's yanglint tool - non-interactive code |
Radek Krejci | ed5acc5 | 2019-04-25 15:57:04 +0200 | [diff] [blame] | 6 | * |
Michal Vasko | 193dacd | 2022-10-13 08:43:05 +0200 | [diff] [blame] | 7 | * Copyright (c) 2020 - 2022 CESNET, z.s.p.o. |
Radek Krejci | ed5acc5 | 2019-04-25 15:57:04 +0200 | [diff] [blame] | 8 | * |
| 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 Krejci | 535ea9f | 2020-05-29 16:01:05 +0200 | [diff] [blame] | 16 | #define _GNU_SOURCE |
Radek Krejci | ed5acc5 | 2019-04-25 15:57:04 +0200 | [diff] [blame] | 17 | |
Radek Krejci | e9f13b1 | 2020-11-09 17:42:04 +0100 | [diff] [blame] | 18 | #include <errno.h> |
| 19 | #include <getopt.h> |
Radek Krejci | 47fab89 | 2020-11-05 17:02:41 +0100 | [diff] [blame] | 20 | #include <stdint.h> |
Radek Krejci | ed5acc5 | 2019-04-25 15:57:04 +0200 | [diff] [blame] | 21 | #include <stdio.h> |
| 22 | #include <stdlib.h> |
Radek Krejci | ed5acc5 | 2019-04-25 15:57:04 +0200 | [diff] [blame] | 23 | #include <string.h> |
Radek Krejci | 47fab89 | 2020-11-05 17:02:41 +0100 | [diff] [blame] | 24 | #include <strings.h> |
Radek Krejci | e9f13b1 | 2020-11-09 17:42:04 +0100 | [diff] [blame] | 25 | #include <sys/stat.h> |
Radek Krejci | ed5acc5 | 2019-04-25 15:57:04 +0200 | [diff] [blame] | 26 | |
Radek Krejci | ed5acc5 | 2019-04-25 15:57:04 +0200 | [diff] [blame] | 27 | #include "libyang.h" |
Michal Vasko | 193dacd | 2022-10-13 08:43:05 +0200 | [diff] [blame] | 28 | #include "plugins_exts.h" |
Radek Krejci | ed5acc5 | 2019-04-25 15:57:04 +0200 | [diff] [blame] | 29 | |
Radek Krejci | e9f13b1 | 2020-11-09 17:42:04 +0100 | [diff] [blame] | 30 | #include "common.h" |
aPiecek | 8f0b788 | 2021-05-21 10:18:36 +0200 | [diff] [blame] | 31 | #include "out.h" |
Radek Krejci | 535ea9f | 2020-05-29 16:01:05 +0200 | [diff] [blame] | 32 | #include "tools/config.h" |
| 33 | |
Radek Krejci | e9f13b1 | 2020-11-09 17:42:04 +0100 | [diff] [blame] | 34 | /** |
| 35 | * @brief Context structure to hold and pass variables in a structured form. |
| 36 | */ |
| 37 | struct context { |
| 38 | /* libyang context for the run */ |
Michal Vasko | 24aaf8e | 2022-02-04 11:15:26 +0100 | [diff] [blame] | 39 | const char *yang_lib_file; |
| 40 | uint16_t ctx_options; |
Radek Krejci | e9f13b1 | 2020-11-09 17:42:04 +0100 | [diff] [blame] | 41 | struct ly_ctx *ctx; |
Radek Krejci | 535ea9f | 2020-05-29 16:01:05 +0200 | [diff] [blame] | 42 | |
Radek Krejci | e9f13b1 | 2020-11-09 17:42:04 +0100 | [diff] [blame] | 43 | /* prepared output (--output option or stdout by default) */ |
| 44 | struct ly_out *out; |
Radek Krejci | 535ea9f | 2020-05-29 16:01:05 +0200 | [diff] [blame] | 45 | |
aPiecek | 912f3d5 | 2022-10-12 10:02:33 +0200 | [diff] [blame] | 46 | char *searchpaths; |
Radek Krejci | ed5acc5 | 2019-04-25 15:57:04 +0200 | [diff] [blame] | 47 | |
Radek Krejci | e9f13b1 | 2020-11-09 17:42:04 +0100 | [diff] [blame] | 48 | /* options flags */ |
| 49 | uint8_t list; /* -l option to print list of schemas */ |
Radek Krejci | ed5acc5 | 2019-04-25 15:57:04 +0200 | [diff] [blame] | 50 | |
aPiecek | 2cfeeae | 2021-04-21 13:17:34 +0200 | [diff] [blame] | 51 | /* line length for 'tree' format */ |
| 52 | size_t line_length; /* --tree-line-length */ |
| 53 | |
Radek Krejci | e9f13b1 | 2020-11-09 17:42:04 +0100 | [diff] [blame] | 54 | /* |
| 55 | * schema |
| 56 | */ |
Michal Vasko | a9a9861 | 2021-11-22 10:00:27 +0100 | [diff] [blame] | 57 | /* set schema modules' features via --features option (struct schema_features *) */ |
Radek Krejci | e9f13b1 | 2020-11-09 17:42:04 +0100 | [diff] [blame] | 58 | 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 Vasko | fe74d1e | 2021-09-30 13:17:36 +0200 | [diff] [blame] | 70 | const char *submodule; |
Radek Krejci | e9f13b1 | 2020-11-09 17:42:04 +0100 | [diff] [blame] | 71 | |
ekinzie | 0ab8b30 | 2022-10-10 03:03:57 -0400 | [diff] [blame] | 72 | /* 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 Krejci | e9f13b1 | 2020-11-09 17:42:04 +0100 | [diff] [blame] | 78 | /* value of --format in case of schema format */ |
| 79 | LYS_OUTFORMAT schema_out_format; |
roman | 300b878 | 2022-08-11 12:49:21 +0200 | [diff] [blame] | 80 | ly_bool feature_param_format; |
Radek Krejci | e9f13b1 | 2020-11-09 17:42:04 +0100 | [diff] [blame] | 81 | |
| 82 | /* |
| 83 | * data |
| 84 | */ |
| 85 | /* various options based on --type option */ |
Michal Vasko | e066574 | 2021-02-11 11:08:44 +0100 | [diff] [blame] | 86 | enum lyd_type data_type; |
Radek Krejci | e9f13b1 | 2020-11-09 17:42:04 +0100 | [diff] [blame] | 87 | 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 Krejci | e9f13b1 | 2020-11-09 17:42:04 +0100 | [diff] [blame] | 100 | /* storage for --operational */ |
| 101 | struct cmdline_file data_operational; |
Michal Vasko | 3f08fb9 | 2022-04-21 09:52:35 +0200 | [diff] [blame] | 102 | |
| 103 | /* storage for --reply-rpc */ |
| 104 | struct cmdline_file reply_rpc; |
Radek Krejci | e9f13b1 | 2020-11-09 17:42:04 +0100 | [diff] [blame] | 105 | }; |
| 106 | |
| 107 | static void |
| 108 | erase_context(struct context *c) |
| 109 | { |
| 110 | /* data */ |
| 111 | ly_set_erase(&c->data_inputs, free_cmdline_file); |
Radek Krejci | e9f13b1 | 2020-11-09 17:42:04 +0100 | [diff] [blame] | 112 | 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 */ |
aPiecek | 912f3d5 | 2022-10-12 10:02:33 +0200 | [diff] [blame] | 119 | free(c->searchpaths); |
| 120 | c->searchpaths = NULL; |
Radek Krejci | e9f13b1 | 2020-11-09 17:42:04 +0100 | [diff] [blame] | 121 | |
| 122 | ly_out_free(c->out, NULL, 0); |
Radek Krejci | 90ed21e | 2021-04-12 14:47:46 +0200 | [diff] [blame] | 123 | ly_ctx_destroy(c->ctx); |
ekinzie | 0ab8b30 | 2022-10-10 03:03:57 -0400 | [diff] [blame] | 124 | |
| 125 | if (c->schema_context_filename) { |
| 126 | free(c->schema_context_filename); |
| 127 | } |
Radek Krejci | e9f13b1 | 2020-11-09 17:42:04 +0100 | [diff] [blame] | 128 | } |
| 129 | |
| 130 | static void |
| 131 | version(void) |
| 132 | { |
| 133 | printf("yanglint %s\n", PROJECT_VERSION); |
| 134 | } |
| 135 | |
| 136 | static void |
Radek Krejci | ed5acc5 | 2019-04-25 15:57:04 +0200 | [diff] [blame] | 137 | help(int shortout) |
| 138 | { |
Radek Krejci | e9f13b1 | 2020-11-09 17:42:04 +0100 | [diff] [blame] | 139 | |
Michal Vasko | 3f08fb9 | 2022-04-21 09:52:35 +0200 | [diff] [blame] | 140 | 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 Krejci | e9f13b1 | 2020-11-09 17:42:04 +0100 | [diff] [blame] | 153 | " yanglint\n" |
| 154 | " Starts interactive mode with more features.\n\n"); |
Radek Krejci | ed5acc5 | 2019-04-25 15:57:04 +0200 | [diff] [blame] | 155 | |
| 156 | if (shortout) { |
| 157 | return; |
| 158 | } |
Radek Krejci | e9f13b1 | 2020-11-09 17:42:04 +0100 | [diff] [blame] | 159 | printf("Options:\n" |
| 160 | " -h, --help Show this help message and exit.\n" |
| 161 | " -v, --version Show version number and exit.\n" |
Michal Vasko | b0d307b | 2021-11-25 11:15:16 +0100 | [diff] [blame] | 162 | " -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 Krejci | e9f13b1 | 2020-11-09 17:42:04 +0100 | [diff] [blame] | 166 | |
Michal Vasko | c40548b | 2021-09-30 13:05:47 +0200 | [diff] [blame] | 167 | printf(" -f FORMAT, --format=FORMAT\n" |
| 168 | " Convert input into FORMAT. Supported formats: \n" |
roman | 300b878 | 2022-08-11 12:49:21 +0200 | [diff] [blame] | 169 | " yang, yin, tree, info and feature-param for schemas,\n" |
Michal Vasko | d8b0e77 | 2022-03-18 13:36:04 +0100 | [diff] [blame] | 170 | " xml, json, and lyb for data.\n\n"); |
Michal Vasko | c40548b | 2021-09-30 13:05:47 +0200 | [diff] [blame] | 171 | |
| 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" |
| 175 | " path of the module being added is used implicitly.\n\n"); |
Radek Krejci | e9f13b1 | 2020-11-09 17:42:04 +0100 | [diff] [blame] | 176 | |
Michal Vasko | 22e0f3a | 2021-09-22 12:19:23 +0200 | [diff] [blame] | 177 | printf(" -D, --disable-searchdir\n" |
Radek Krejci | e9f13b1 | 2020-11-09 17:42:04 +0100 | [diff] [blame] | 178 | " Do not implicitly search in current working directory for\n" |
| 179 | " schema modules. If specified a second time, do not even\n" |
| 180 | " search in the module directory (all modules must be \n" |
Michal Vasko | 22e0f3a | 2021-09-22 12:19:23 +0200 | [diff] [blame] | 181 | " explicitly specified).\n\n"); |
Radek Krejci | e9f13b1 | 2020-11-09 17:42:04 +0100 | [diff] [blame] | 182 | |
Michal Vasko | 22e0f3a | 2021-09-22 12:19:23 +0200 | [diff] [blame] | 183 | printf(" -F FEATURES, --features=FEATURES\n" |
Michal Vasko | 5974087 | 2021-11-22 10:01:34 +0100 | [diff] [blame] | 184 | " Specific module features to support in the form <module-name>:(<feature>,)*\n" |
| 185 | " Use <feature> '*' to enable all features of a module. This option can be\n" |
| 186 | " specified multiple times, to enable features in multiple modules. If this\n" |
| 187 | " option is not specified, all the features in all the implemented modules\n" |
| 188 | " are enabled.\n\n"); |
Radek Krejci | e9f13b1 | 2020-11-09 17:42:04 +0100 | [diff] [blame] | 189 | |
Michal Vasko | 8d6d0ad | 2021-10-19 12:32:27 +0200 | [diff] [blame] | 190 | printf(" -i, --make-implemented\n" |
Radek Krejci | e9f13b1 | 2020-11-09 17:42:04 +0100 | [diff] [blame] | 191 | " Make the imported modules \"referenced\" from any loaded\n" |
| 192 | " module also implemented. If specified a second time, all the\n" |
Michal Vasko | 22e0f3a | 2021-09-22 12:19:23 +0200 | [diff] [blame] | 193 | " modules are set implemented.\n\n"); |
Radek Krejci | e9f13b1 | 2020-11-09 17:42:04 +0100 | [diff] [blame] | 194 | |
Michal Vasko | 22e0f3a | 2021-09-22 12:19:23 +0200 | [diff] [blame] | 195 | printf(" -P PATH, --schema-node=PATH\n" |
Radek Krejci | e9f13b1 | 2020-11-09 17:42:04 +0100 | [diff] [blame] | 196 | " Print only the specified subtree of the schema.\n" |
| 197 | " The PATH is the XPath subset mentioned in documentation as\n" |
| 198 | " the Path format. The option can be combined with --single-node\n" |
| 199 | " option to print information only about the specified node.\n" |
| 200 | " -q, --single-node\n" |
| 201 | " Supplement to the --schema-node option to print information\n" |
Michal Vasko | 22e0f3a | 2021-09-22 12:19:23 +0200 | [diff] [blame] | 202 | " only about a single node specified as PATH argument.\n\n"); |
Radek Krejci | e9f13b1 | 2020-11-09 17:42:04 +0100 | [diff] [blame] | 203 | |
Michal Vasko | fe74d1e | 2021-09-30 13:17:36 +0200 | [diff] [blame] | 204 | printf(" -s SUBMODULE, --submodule=SUBMODULE\n" |
| 205 | " Print the specific submodule instead of the main module.\n\n"); |
| 206 | |
ekinzie | 0ab8b30 | 2022-10-10 03:03:57 -0400 | [diff] [blame] | 207 | printf(" -x FILE, --ext-data=FILE\n" |
| 208 | " File containing the specific data required by an extension. Required by\n" |
Michal Vasko | 1466280 | 2022-11-08 08:45:46 +0100 | [diff] [blame] | 209 | " the schema-mount extension, for example, when the operational data are\n" |
ekinzie | 0ab8b30 | 2022-10-10 03:03:57 -0400 | [diff] [blame] | 210 | " expected in the file. File format is guessed.\n\n"); |
| 211 | |
Michal Vasko | 22e0f3a | 2021-09-22 12:19:23 +0200 | [diff] [blame] | 212 | printf(" -n, --not-strict\n" |
Michal Vasko | 667ce6b | 2021-01-25 15:00:27 +0100 | [diff] [blame] | 213 | " Do not require strict data parsing (silently skip unknown data),\n" |
Michal Vasko | 22e0f3a | 2021-09-22 12:19:23 +0200 | [diff] [blame] | 214 | " has no effect for schemas.\n\n"); |
Radek Krejci | e9f13b1 | 2020-11-09 17:42:04 +0100 | [diff] [blame] | 215 | |
Michal Vasko | 22e0f3a | 2021-09-22 12:19:23 +0200 | [diff] [blame] | 216 | printf(" -e, --present Validate only with the schema modules whose data actually\n" |
Radek Krejci | e9f13b1 | 2020-11-09 17:42:04 +0100 | [diff] [blame] | 217 | " exist in the provided input data files. Takes effect only\n" |
| 218 | " with the 'data' or 'config' TYPEs. Used to avoid requiring\n" |
| 219 | " mandatory nodes from modules which data are not present in the\n" |
Michal Vasko | 22e0f3a | 2021-09-22 12:19:23 +0200 | [diff] [blame] | 220 | " provided input data files.\n\n"); |
Radek Krejci | e9f13b1 | 2020-11-09 17:42:04 +0100 | [diff] [blame] | 221 | |
Michal Vasko | 22e0f3a | 2021-09-22 12:19:23 +0200 | [diff] [blame] | 222 | printf(" -t TYPE, --type=TYPE\n" |
Radek Krejci | e9f13b1 | 2020-11-09 17:42:04 +0100 | [diff] [blame] | 223 | " Specify data tree type in the input data file(s):\n" |
| 224 | " data - Complete datastore with status data (default type).\n" |
| 225 | " config - Configuration datastore (without status data).\n" |
Michal Vasko | 3f08fb9 | 2022-04-21 09:52:35 +0200 | [diff] [blame] | 226 | " get - Data returned by the NETCONF <get> operation.\n" |
| 227 | " getconfig - Data returned by the NETCONF <get-config> operation.\n" |
| 228 | " edit - Config content of the NETCONF <edit-config> operation.\n" |
| 229 | " rpc - Invocation of a YANG RPC/action, defined as input.\n" |
| 230 | " nc-rpc - Similar to 'rpc' but expect and check also the NETCONF\n" |
| 231 | " envelopes <rpc> or <action>.\n" |
| 232 | " reply - Reply to a YANG RPC/action, defined as output. Note that\n" |
| 233 | " the reply data are expected inside a container representing\n" |
| 234 | " the original RPC/action invocation.\n" |
| 235 | " nc-reply - Similar to 'reply' but expect and check also the NETCONF\n" |
| 236 | " envelope <rpc-reply> with output data nodes as direct\n" |
| 237 | " descendants. The original RPC/action invocation is expected\n" |
| 238 | " in a separate parameter '-R' and is parsed as 'nc-rpc'.\n" |
| 239 | " notif - Notification instance of a YANG notification.\n" |
| 240 | " nc-notif - Similar to 'notif' but expect and check also the NETCONF\n" |
| 241 | " envelope <notification> with element <eventTime> and its\n" |
| 242 | " sibling as the actual notification.\n\n"); |
Michal Vasko | c40548b | 2021-09-30 13:05:47 +0200 | [diff] [blame] | 243 | |
| 244 | printf(" -d MODE, --default=MODE\n" |
| 245 | " Print data with default values, according to the MODE\n" |
| 246 | " (to print attributes, ietf-netconf-with-defaults model\n" |
| 247 | " must be loaded):\n" |
| 248 | " all - Add missing default nodes.\n" |
| 249 | " all-tagged - Add missing default nodes and mark all the default\n" |
| 250 | " nodes with the attribute.\n" |
| 251 | " trim - Remove all nodes with a default value.\n" |
| 252 | " implicit-tagged - Add missing nodes and mark them with the attribute.\n\n"); |
| 253 | |
| 254 | printf(" -l, --list Print info about the loaded schemas.\n" |
| 255 | " (i - imported module, I - implemented module)\n" |
Michal Vasko | 24aaf8e | 2022-02-04 11:15:26 +0100 | [diff] [blame] | 256 | " In case the '-f' option with data encoding is specified,\n" |
| 257 | " the list is printed as \"ietf-yang-library\" data.\n\n"); |
Michal Vasko | c40548b | 2021-09-30 13:05:47 +0200 | [diff] [blame] | 258 | |
| 259 | printf(" -L LINE_LENGTH, --tree-line-length=LINE_LENGTH\n" |
| 260 | " The limit of the maximum line length on which the 'tree'\n" |
| 261 | " format will try to be printed.\n\n"); |
| 262 | |
| 263 | printf(" -o OUTFILE, --output=OUTFILE\n" |
| 264 | " Write the output to OUTFILE instead of stdout.\n\n"); |
Radek Krejci | e9f13b1 | 2020-11-09 17:42:04 +0100 | [diff] [blame] | 265 | |
Michal Vasko | 22e0f3a | 2021-09-22 12:19:23 +0200 | [diff] [blame] | 266 | printf(" -O FILE, --operational=FILE\n" |
Michal Vasko | 9e81ce5 | 2022-04-29 10:16:21 +0200 | [diff] [blame] | 267 | " Provide optional data to extend validation of the '(nc-)rpc',\n" |
| 268 | " '(nc-)reply' or '(nc-)notif' TYPEs. The FILE is supposed to contain\n" |
| 269 | " the operational datastore referenced from the operation.\n" |
| 270 | " In case of a nested operation, its parent existence is also\n" |
| 271 | " checked in these operational data.\n\n"); |
Radek Krejci | e9f13b1 | 2020-11-09 17:42:04 +0100 | [diff] [blame] | 272 | |
Michal Vasko | 3f08fb9 | 2022-04-21 09:52:35 +0200 | [diff] [blame] | 273 | printf(" -R FILE, --reply-rpc=FILE\n" |
| 274 | " Provide source RPC for parsing of the 'nc-reply' TYPE. The FILE\n" |
| 275 | " is supposed to contain the source 'nc-rpc' operation of the reply.\n\n"); |
| 276 | |
Michal Vasko | 22e0f3a | 2021-09-22 12:19:23 +0200 | [diff] [blame] | 277 | printf(" -m, --merge Merge input data files into a single tree and validate at\n" |
Michal Vasko | 06158fb | 2022-03-29 12:13:16 +0200 | [diff] [blame] | 278 | " once. The option has effect only for 'data' and 'config' TYPEs.\n\n"); |
Radek Krejci | e9f13b1 | 2020-11-09 17:42:04 +0100 | [diff] [blame] | 279 | |
Michal Vasko | 22e0f3a | 2021-09-22 12:19:23 +0200 | [diff] [blame] | 280 | printf(" -y, --yang-library\n" |
Michal Vasko | c431a0a | 2021-01-25 14:31:58 +0100 | [diff] [blame] | 281 | " Load and implement internal \"ietf-yang-library\" YANG module.\n" |
| 282 | " Note that this module includes definitions of mandatory state\n" |
Michal Vasko | 22e0f3a | 2021-09-22 12:19:23 +0200 | [diff] [blame] | 283 | " data that can result in unexpected data validation errors.\n\n"); |
Michal Vasko | c40548b | 2021-09-30 13:05:47 +0200 | [diff] [blame] | 284 | |
Michal Vasko | 24aaf8e | 2022-02-04 11:15:26 +0100 | [diff] [blame] | 285 | printf(" -Y FILE, --yang-library-file=FILE\n" |
| 286 | " Parse FILE with \"ietf-yang-library\" data and use them to\n" |
| 287 | " create an exact YANG schema context. If specified, the '-F'\n" |
| 288 | " parameter (enabled features) is ignored.\n\n"); |
| 289 | |
steweg | d8e2fc9 | 2023-05-31 09:52:56 +0200 | [diff] [blame] | 290 | printf(" -X, --extended-leafref\n" |
| 291 | " Allow usage of deref() XPath function within leafref\n\n"); |
| 292 | |
Michal Vasko | c40548b | 2021-09-30 13:05:47 +0200 | [diff] [blame] | 293 | #ifndef NDEBUG |
| 294 | printf(" -G GROUPS, --debug=GROUPS\n" |
| 295 | " Enable printing of specific debugging message group\n" |
| 296 | " (nothing will be printed unless verbosity is set to debug):\n" |
Michal Vasko | 27a4acb | 2021-11-22 10:03:46 +0100 | [diff] [blame] | 297 | " <group>[,<group>]* (dict, xpath, dep-sets)\n\n"); |
Michal Vasko | c40548b | 2021-09-30 13:05:47 +0200 | [diff] [blame] | 298 | #endif |
Radek Krejci | ed5acc5 | 2019-04-25 15:57:04 +0200 | [diff] [blame] | 299 | } |
| 300 | |
Radek Krejci | e9f13b1 | 2020-11-09 17:42:04 +0100 | [diff] [blame] | 301 | static void |
Radek Krejci | ed5acc5 | 2019-04-25 15:57:04 +0200 | [diff] [blame] | 302 | libyang_verbclb(LY_LOG_LEVEL level, const char *msg, const char *path) |
| 303 | { |
| 304 | char *levstr; |
| 305 | |
Radek Krejci | e9f13b1 | 2020-11-09 17:42:04 +0100 | [diff] [blame] | 306 | switch (level) { |
| 307 | case LY_LLERR: |
| 308 | levstr = "err :"; |
| 309 | break; |
| 310 | case LY_LLWRN: |
| 311 | levstr = "warn:"; |
| 312 | break; |
| 313 | case LY_LLVRB: |
| 314 | levstr = "verb:"; |
| 315 | break; |
| 316 | default: |
| 317 | levstr = "dbg :"; |
| 318 | break; |
| 319 | } |
| 320 | if (path) { |
| 321 | fprintf(stderr, "libyang %s %s (%s)\n", levstr, msg, path); |
| 322 | } else { |
| 323 | fprintf(stderr, "libyang %s %s\n", levstr, msg); |
Radek Krejci | ed5acc5 | 2019-04-25 15:57:04 +0200 | [diff] [blame] | 324 | } |
| 325 | } |
| 326 | |
Michal Vasko | 686d8fc | 2021-11-22 10:03:23 +0100 | [diff] [blame] | 327 | static struct schema_features * |
| 328 | get_features_not_applied(const struct ly_set *fset) |
| 329 | { |
| 330 | for (uint32_t u = 0; u < fset->count; ++u) { |
| 331 | struct schema_features *sf = fset->objs[u]; |
Michal Vasko | 26bbb27 | 2022-08-02 14:54:33 +0200 | [diff] [blame] | 332 | |
Michal Vasko | 686d8fc | 2021-11-22 10:03:23 +0100 | [diff] [blame] | 333 | if (!sf->applied) { |
| 334 | return sf; |
| 335 | } |
| 336 | } |
| 337 | |
| 338 | return NULL; |
| 339 | } |
| 340 | |
ekinzie | 0ab8b30 | 2022-10-10 03:03:57 -0400 | [diff] [blame] | 341 | static LY_ERR |
| 342 | ext_data_clb(const struct lysc_ext_instance *ext, void *user_data, void **ext_data, ly_bool *ext_data_free) |
| 343 | { |
| 344 | struct ly_ctx *ctx; |
| 345 | struct lyd_node *data = NULL; |
| 346 | |
| 347 | ctx = ext->module->ctx; |
| 348 | if (user_data) { |
| 349 | lyd_parse_data_path(ctx, user_data, LYD_XML, LYD_PARSE_STRICT, LYD_VALIDATE_PRESENT, &data); |
| 350 | } |
| 351 | |
| 352 | *ext_data = data; |
| 353 | *ext_data_free = 1; |
| 354 | return LY_SUCCESS; |
| 355 | } |
| 356 | |
aPiecek | 912f3d5 | 2022-10-12 10:02:33 +0200 | [diff] [blame] | 357 | static LY_ERR |
| 358 | searchpath_strcat(char **searchpaths, const char *path) |
| 359 | { |
| 360 | uint64_t len; |
| 361 | char *new; |
| 362 | |
| 363 | if (!(*searchpaths)) { |
| 364 | *searchpaths = strdup(path); |
| 365 | return LY_SUCCESS; |
| 366 | } |
| 367 | |
| 368 | len = strlen(*searchpaths) + strlen(path) + strlen(PATH_SEPARATOR); |
| 369 | new = realloc(*searchpaths, sizeof(char) * len + 1); |
| 370 | if (!new) { |
| 371 | return LY_EMEM; |
| 372 | } |
| 373 | strcat(new, PATH_SEPARATOR); |
| 374 | strcat(new, path); |
| 375 | *searchpaths = new; |
| 376 | |
| 377 | return LY_SUCCESS; |
| 378 | } |
| 379 | |
Radek Krejci | e9f13b1 | 2020-11-09 17:42:04 +0100 | [diff] [blame] | 380 | static int |
| 381 | fill_context_inputs(int argc, char *argv[], struct context *c) |
| 382 | { |
Michal Vasko | 24aaf8e | 2022-02-04 11:15:26 +0100 | [diff] [blame] | 383 | struct ly_in *in = NULL; |
Michal Vasko | 686d8fc | 2021-11-22 10:03:23 +0100 | [diff] [blame] | 384 | struct schema_features *sf; |
Michal Vasko | c91fb12 | 2021-11-23 09:00:17 +0100 | [diff] [blame] | 385 | struct lys_module *mod; |
aPiecek | 912f3d5 | 2022-10-12 10:02:33 +0200 | [diff] [blame] | 386 | const char *all_features[] = {"*", NULL}; |
Michal Vasko | 24aaf8e | 2022-02-04 11:15:26 +0100 | [diff] [blame] | 387 | char *dir = NULL, *module = NULL; |
| 388 | |
aPiecek | 912f3d5 | 2022-10-12 10:02:33 +0200 | [diff] [blame] | 389 | /* Create libyang context. */ |
Michal Vasko | 24aaf8e | 2022-02-04 11:15:26 +0100 | [diff] [blame] | 390 | if (c->yang_lib_file) { |
| 391 | /* ignore features */ |
| 392 | ly_set_erase(&c->schema_features, free_features); |
| 393 | |
aPiecek | 912f3d5 | 2022-10-12 10:02:33 +0200 | [diff] [blame] | 394 | if (ly_ctx_new_ylpath(c->searchpaths, c->yang_lib_file, LYD_UNKNOWN, c->ctx_options, &c->ctx)) { |
ekinzie | 0ab8b30 | 2022-10-10 03:03:57 -0400 | [diff] [blame] | 395 | YLMSG_E("Unable to modify libyang context with yang-library data.\n"); |
Michal Vasko | 24aaf8e | 2022-02-04 11:15:26 +0100 | [diff] [blame] | 396 | return -1; |
| 397 | } |
| 398 | } else { |
| 399 | /* set imp feature flag if all should be enabled */ |
aPiecek | 912f3d5 | 2022-10-12 10:02:33 +0200 | [diff] [blame] | 400 | c->ctx_options |= !c->schema_features.count ? LY_CTX_ENABLE_IMP_FEATURES : 0; |
Michal Vasko | 24aaf8e | 2022-02-04 11:15:26 +0100 | [diff] [blame] | 401 | |
aPiecek | 912f3d5 | 2022-10-12 10:02:33 +0200 | [diff] [blame] | 402 | if (ly_ctx_new(c->searchpaths, c->ctx_options, &c->ctx)) { |
| 403 | YLMSG_E("Unable to create libyang context\n"); |
Michal Vasko | 24aaf8e | 2022-02-04 11:15:26 +0100 | [diff] [blame] | 404 | return -1; |
| 405 | } |
aPiecek | 912f3d5 | 2022-10-12 10:02:33 +0200 | [diff] [blame] | 406 | } |
Michal Vasko | 24aaf8e | 2022-02-04 11:15:26 +0100 | [diff] [blame] | 407 | |
aPiecek | 912f3d5 | 2022-10-12 10:02:33 +0200 | [diff] [blame] | 408 | /* set callback providing run-time extension instance data */ |
| 409 | if (c->schema_context_filename) { |
| 410 | ly_ctx_set_ext_data_clb(c->ctx, ext_data_clb, c->schema_context_filename); |
Michal Vasko | 24aaf8e | 2022-02-04 11:15:26 +0100 | [diff] [blame] | 411 | } |
Radek Krejci | e9f13b1 | 2020-11-09 17:42:04 +0100 | [diff] [blame] | 412 | |
Michal Vasko | 3f08fb9 | 2022-04-21 09:52:35 +0200 | [diff] [blame] | 413 | /* process the operational and/or reply RPC content if any */ |
Radek Krejci | e9f13b1 | 2020-11-09 17:42:04 +0100 | [diff] [blame] | 414 | if (c->data_operational.path) { |
| 415 | if (get_input(c->data_operational.path, NULL, &c->data_operational.format, &c->data_operational.in)) { |
| 416 | return -1; |
| 417 | } |
| 418 | } |
Michal Vasko | 3f08fb9 | 2022-04-21 09:52:35 +0200 | [diff] [blame] | 419 | if (c->reply_rpc.path) { |
| 420 | if (get_input(c->reply_rpc.path, NULL, &c->reply_rpc.format, &c->reply_rpc.in)) { |
| 421 | return -1; |
| 422 | } |
| 423 | } |
Radek Krejci | e9f13b1 | 2020-11-09 17:42:04 +0100 | [diff] [blame] | 424 | |
| 425 | for (int i = 0; i < argc - optind; i++) { |
| 426 | LYS_INFORMAT format_schema = LYS_IN_UNKNOWN; |
| 427 | LYD_FORMAT format_data = LYD_UNKNOWN; |
Radek Krejci | e9f13b1 | 2020-11-09 17:42:04 +0100 | [diff] [blame] | 428 | |
| 429 | if (get_input(argv[optind + i], &format_schema, &format_data, &in)) { |
Radek Krejci | f2afd67 | 2020-11-26 12:29:23 +0100 | [diff] [blame] | 430 | goto error; |
Radek Krejci | e9f13b1 | 2020-11-09 17:42:04 +0100 | [diff] [blame] | 431 | } |
| 432 | |
| 433 | if (format_schema) { |
| 434 | LY_ERR ret; |
| 435 | uint8_t path_unset = 1; /* flag to unset the path from the searchpaths list (if not already present) */ |
Michal Vasko | 5974087 | 2021-11-22 10:01:34 +0100 | [diff] [blame] | 436 | const char **features; |
Radek Krejci | e9f13b1 | 2020-11-09 17:42:04 +0100 | [diff] [blame] | 437 | |
Michal Vasko | 24aaf8e | 2022-02-04 11:15:26 +0100 | [diff] [blame] | 438 | /* parse the input */ |
Radek Krejci | e9f13b1 | 2020-11-09 17:42:04 +0100 | [diff] [blame] | 439 | if (parse_schema_path(argv[optind + i], &dir, &module)) { |
Radek Krejci | f2afd67 | 2020-11-26 12:29:23 +0100 | [diff] [blame] | 440 | goto error; |
Radek Krejci | e9f13b1 | 2020-11-09 17:42:04 +0100 | [diff] [blame] | 441 | } |
| 442 | |
Michal Vasko | 24aaf8e | 2022-02-04 11:15:26 +0100 | [diff] [blame] | 443 | if (c->yang_lib_file) { |
| 444 | /* just get the module, it should already be parsed */ |
| 445 | mod = ly_ctx_get_module_implemented(c->ctx, module); |
| 446 | if (!mod) { |
| 447 | YLMSG_E("Schema module \"%s\" not implemented in yang-library data.\n", module); |
| 448 | goto error; |
| 449 | } |
Michal Vasko | 5974087 | 2021-11-22 10:01:34 +0100 | [diff] [blame] | 450 | } else { |
Michal Vasko | 24aaf8e | 2022-02-04 11:15:26 +0100 | [diff] [blame] | 451 | /* add temporarily also the path of the module itself */ |
| 452 | if (ly_ctx_set_searchdir(c->ctx, dir) == LY_EEXIST) { |
| 453 | path_unset = 0; |
| 454 | } |
| 455 | |
| 456 | /* get features list for this module */ |
| 457 | if (!c->schema_features.count) { |
| 458 | features = all_features; |
| 459 | } else { |
| 460 | get_features(&c->schema_features, module, &features); |
| 461 | } |
| 462 | |
| 463 | /* parse module */ |
| 464 | ret = lys_parse(c->ctx, in, format_schema, features, &mod); |
| 465 | ly_ctx_unset_searchdir_last(c->ctx, path_unset); |
| 466 | if (ret) { |
| 467 | YLMSG_E("Parsing schema module \"%s\" failed.\n", argv[optind + i]); |
| 468 | goto error; |
| 469 | } |
Michal Vasko | 703370c | 2021-10-19 14:07:16 +0200 | [diff] [blame] | 470 | } |
| 471 | |
Radek Krejci | e9f13b1 | 2020-11-09 17:42:04 +0100 | [diff] [blame] | 472 | /* temporary cleanup */ |
| 473 | free(dir); |
Michal Vasko | 24aaf8e | 2022-02-04 11:15:26 +0100 | [diff] [blame] | 474 | dir = NULL; |
Radek Krejci | e9f13b1 | 2020-11-09 17:42:04 +0100 | [diff] [blame] | 475 | free(module); |
Michal Vasko | 24aaf8e | 2022-02-04 11:15:26 +0100 | [diff] [blame] | 476 | module = NULL; |
Radek Krejci | e9f13b1 | 2020-11-09 17:42:04 +0100 | [diff] [blame] | 477 | |
roman | 300b878 | 2022-08-11 12:49:21 +0200 | [diff] [blame] | 478 | if (c->schema_out_format || c->feature_param_format) { |
Michal Vasko | 24aaf8e | 2022-02-04 11:15:26 +0100 | [diff] [blame] | 479 | /* module will be printed */ |
Radek Krejci | e9f13b1 | 2020-11-09 17:42:04 +0100 | [diff] [blame] | 480 | if (ly_set_add(&c->schema_modules, (void *)mod, 1, NULL)) { |
| 481 | YLMSG_E("Storing parsed schema module (%s) for print failed.\n", argv[optind + i]); |
Radek Krejci | f2afd67 | 2020-11-26 12:29:23 +0100 | [diff] [blame] | 482 | goto error; |
Radek Krejci | e9f13b1 | 2020-11-09 17:42:04 +0100 | [diff] [blame] | 483 | } |
| 484 | } |
Radek Krejci | e9f13b1 | 2020-11-09 17:42:04 +0100 | [diff] [blame] | 485 | } else if (format_data) { |
Radek Krejci | 6784a4e | 2020-12-09 14:23:05 +0100 | [diff] [blame] | 486 | if (!fill_cmdline_file(&c->data_inputs, in, argv[optind + i], format_data)) { |
Radek Krejci | f2afd67 | 2020-11-26 12:29:23 +0100 | [diff] [blame] | 487 | goto error; |
Radek Krejci | e9f13b1 | 2020-11-09 17:42:04 +0100 | [diff] [blame] | 488 | } |
Radek Krejci | f53b0d5 | 2020-12-03 11:29:24 +0100 | [diff] [blame] | 489 | in = NULL; |
Radek Krejci | e9f13b1 | 2020-11-09 17:42:04 +0100 | [diff] [blame] | 490 | } |
Michal Vasko | 24aaf8e | 2022-02-04 11:15:26 +0100 | [diff] [blame] | 491 | |
| 492 | ly_in_free(in, 1); |
| 493 | in = NULL; |
Radek Krejci | e9f13b1 | 2020-11-09 17:42:04 +0100 | [diff] [blame] | 494 | } |
| 495 | |
Michal Vasko | c91fb12 | 2021-11-23 09:00:17 +0100 | [diff] [blame] | 496 | /* check that all specified features were applied, apply now if possible */ |
| 497 | while ((sf = get_features_not_applied(&c->schema_features))) { |
| 498 | /* try to find implemented or the latest revision of this module */ |
| 499 | mod = ly_ctx_get_module_implemented(c->ctx, sf->mod_name); |
| 500 | if (!mod) { |
| 501 | mod = ly_ctx_get_module_latest(c->ctx, sf->mod_name); |
Michal Vasko | 686d8fc | 2021-11-22 10:03:23 +0100 | [diff] [blame] | 502 | } |
Michal Vasko | c91fb12 | 2021-11-23 09:00:17 +0100 | [diff] [blame] | 503 | if (!mod) { |
| 504 | YLMSG_E("Specified features not applied, module \"%s\" not loaded.\n", sf->mod_name); |
| 505 | goto error; |
| 506 | } |
| 507 | |
| 508 | /* we have the module, implement it if needed and enable the specific features */ |
| 509 | if (lys_set_implemented(mod, (const char **)sf->features)) { |
| 510 | YLMSG_E("Implementing module \"%s\" failed.\n", mod->name); |
| 511 | goto error; |
| 512 | } |
| 513 | sf->applied = 1; |
Michal Vasko | 686d8fc | 2021-11-22 10:03:23 +0100 | [diff] [blame] | 514 | } |
| 515 | |
Radek Krejci | e9f13b1 | 2020-11-09 17:42:04 +0100 | [diff] [blame] | 516 | return 0; |
Radek Krejci | f2afd67 | 2020-11-26 12:29:23 +0100 | [diff] [blame] | 517 | |
| 518 | error: |
| 519 | ly_in_free(in, 1); |
Michal Vasko | 24aaf8e | 2022-02-04 11:15:26 +0100 | [diff] [blame] | 520 | free(dir); |
| 521 | free(module); |
Radek Krejci | f2afd67 | 2020-11-26 12:29:23 +0100 | [diff] [blame] | 522 | return -1; |
Radek Krejci | e9f13b1 | 2020-11-09 17:42:04 +0100 | [diff] [blame] | 523 | } |
| 524 | |
| 525 | /** |
| 526 | * @brief Process command line options and store the settings into the context. |
| 527 | * |
| 528 | * return -1 in case of error; |
| 529 | * return 0 in case of success and ready to process |
| 530 | * return 1 in case of success, but expect to exit. |
Radek Krejci | ed5acc5 | 2019-04-25 15:57:04 +0200 | [diff] [blame] | 531 | */ |
| 532 | static int |
Radek Krejci | e9f13b1 | 2020-11-09 17:42:04 +0100 | [diff] [blame] | 533 | fill_context(int argc, char *argv[], struct context *c) |
Radek Krejci | ed5acc5 | 2019-04-25 15:57:04 +0200 | [diff] [blame] | 534 | { |
Radek Krejci | e9f13b1 | 2020-11-09 17:42:04 +0100 | [diff] [blame] | 535 | int ret; |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 536 | |
Radek Krejci | e9f13b1 | 2020-11-09 17:42:04 +0100 | [diff] [blame] | 537 | int opt, opt_index; |
Radek Krejci | ed5acc5 | 2019-04-25 15:57:04 +0200 | [diff] [blame] | 538 | struct option options[] = { |
Michal Vasko | 24aaf8e | 2022-02-04 11:15:26 +0100 | [diff] [blame] | 539 | {"help", no_argument, NULL, 'h'}, |
| 540 | {"version", no_argument, NULL, 'v'}, |
| 541 | {"verbose", no_argument, NULL, 'V'}, |
| 542 | {"quiet", no_argument, NULL, 'Q'}, |
| 543 | {"format", required_argument, NULL, 'f'}, |
| 544 | {"path", required_argument, NULL, 'p'}, |
Michal Vasko | d8b0e77 | 2022-03-18 13:36:04 +0100 | [diff] [blame] | 545 | {"disable-searchdir", no_argument, NULL, 'D'}, |
Michal Vasko | 24aaf8e | 2022-02-04 11:15:26 +0100 | [diff] [blame] | 546 | {"features", required_argument, NULL, 'F'}, |
| 547 | {"make-implemented", no_argument, NULL, 'i'}, |
| 548 | {"schema-node", required_argument, NULL, 'P'}, |
| 549 | {"single-node", no_argument, NULL, 'q'}, |
| 550 | {"submodule", required_argument, NULL, 's'}, |
ekinzie | 0ab8b30 | 2022-10-10 03:03:57 -0400 | [diff] [blame] | 551 | {"ext-data", required_argument, NULL, 'x'}, |
Michal Vasko | 24aaf8e | 2022-02-04 11:15:26 +0100 | [diff] [blame] | 552 | {"not-strict", no_argument, NULL, 'n'}, |
| 553 | {"present", no_argument, NULL, 'e'}, |
| 554 | {"type", required_argument, NULL, 't'}, |
| 555 | {"default", required_argument, NULL, 'd'}, |
| 556 | {"list", no_argument, NULL, 'l'}, |
| 557 | {"tree-line-length", required_argument, NULL, 'L'}, |
| 558 | {"output", required_argument, NULL, 'o'}, |
| 559 | {"operational", required_argument, NULL, 'O'}, |
Michal Vasko | 3f08fb9 | 2022-04-21 09:52:35 +0200 | [diff] [blame] | 560 | {"reply-rpc", required_argument, NULL, 'R'}, |
Michal Vasko | 24aaf8e | 2022-02-04 11:15:26 +0100 | [diff] [blame] | 561 | {"merge", no_argument, NULL, 'm'}, |
| 562 | {"yang-library", no_argument, NULL, 'y'}, |
| 563 | {"yang-library-file", required_argument, NULL, 'Y'}, |
steweg | d8e2fc9 | 2023-05-31 09:52:56 +0200 | [diff] [blame] | 564 | {"extended-leafref", no_argument, NULL, 'X'}, |
Michal Vasko | c40548b | 2021-09-30 13:05:47 +0200 | [diff] [blame] | 565 | #ifndef NDEBUG |
| 566 | {"debug", required_argument, NULL, 'G'}, |
| 567 | #endif |
Radek Krejci | ed5acc5 | 2019-04-25 15:57:04 +0200 | [diff] [blame] | 568 | {NULL, 0, NULL, 0} |
| 569 | }; |
Radek Krejci | e9f13b1 | 2020-11-09 17:42:04 +0100 | [diff] [blame] | 570 | uint8_t data_type_set = 0; |
| 571 | |
Michal Vasko | 24aaf8e | 2022-02-04 11:15:26 +0100 | [diff] [blame] | 572 | c->ctx_options = YL_DEFAULT_CTX_OPTIONS; |
Michal Vasko | 667ce6b | 2021-01-25 15:00:27 +0100 | [diff] [blame] | 573 | c->data_parse_options = YL_DEFAULT_DATA_PARSE_OPTIONS; |
Michal Vasko | 05eaf83 | 2023-02-10 09:21:46 +0100 | [diff] [blame] | 574 | c->data_validate_options = YL_DEFAULT_DATA_VALIDATE_OPTIONS; |
aPiecek | 2cfeeae | 2021-04-21 13:17:34 +0200 | [diff] [blame] | 575 | c->line_length = 0; |
Michal Vasko | 667ce6b | 2021-01-25 15:00:27 +0100 | [diff] [blame] | 576 | |
Michal Vasko | 27a4acb | 2021-11-22 10:03:46 +0100 | [diff] [blame] | 577 | opterr = 0; |
Radek Krejci | ed5acc5 | 2019-04-25 15:57:04 +0200 | [diff] [blame] | 578 | #ifndef NDEBUG |
steweg | d8e2fc9 | 2023-05-31 09:52:56 +0200 | [diff] [blame] | 579 | 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 Vasko | 27a4acb | 2021-11-22 10:03:46 +0100 | [diff] [blame] | 580 | #else |
steweg | d8e2fc9 | 2023-05-31 09:52:56 +0200 | [diff] [blame] | 581 | while ((opt = getopt_long(argc, argv, "hvVQf:p:DF:iP:qs:net:d:lL:o:O:R:myY:Xx:", options, &opt_index)) != -1) |
Radek Krejci | ed5acc5 | 2019-04-25 15:57:04 +0200 | [diff] [blame] | 582 | #endif |
Michal Vasko | 03fe620 | 2022-07-22 16:23:13 +0200 | [diff] [blame] | 583 | { |
Radek Krejci | ed5acc5 | 2019-04-25 15:57:04 +0200 | [diff] [blame] | 584 | switch (opt) { |
Michal Vasko | c40548b | 2021-09-30 13:05:47 +0200 | [diff] [blame] | 585 | case 'h': /* --help */ |
| 586 | help(0); |
| 587 | return 1; |
| 588 | |
| 589 | case 'v': /* --version */ |
| 590 | version(); |
| 591 | return 1; |
| 592 | |
| 593 | case 'V': { /* --verbose */ |
| 594 | LY_LOG_LEVEL verbosity = ly_log_level(LY_LLERR); |
Michal Vasko | 2bf4af4 | 2023-01-04 12:08:38 +0100 | [diff] [blame] | 595 | |
Michal Vasko | c40548b | 2021-09-30 13:05:47 +0200 | [diff] [blame] | 596 | if (verbosity < LY_LLDBG) { |
Michal Vasko | b0d307b | 2021-11-25 11:15:16 +0100 | [diff] [blame] | 597 | ++verbosity; |
Radek Krejci | ed5acc5 | 2019-04-25 15:57:04 +0200 | [diff] [blame] | 598 | } |
Michal Vasko | b0d307b | 2021-11-25 11:15:16 +0100 | [diff] [blame] | 599 | ly_log_level(verbosity); |
Radek Krejci | ed5acc5 | 2019-04-25 15:57:04 +0200 | [diff] [blame] | 600 | break; |
Michal Vasko | c40548b | 2021-09-30 13:05:47 +0200 | [diff] [blame] | 601 | } /* case 'V' */ |
Radek Krejci | e9f13b1 | 2020-11-09 17:42:04 +0100 | [diff] [blame] | 602 | |
Michal Vasko | b0d307b | 2021-11-25 11:15:16 +0100 | [diff] [blame] | 603 | case 'Q': { /* --quiet */ |
| 604 | LY_LOG_LEVEL verbosity = ly_log_level(LY_LLERR); |
Michal Vasko | 2bf4af4 | 2023-01-04 12:08:38 +0100 | [diff] [blame] | 605 | |
Michal Vasko | b0d307b | 2021-11-25 11:15:16 +0100 | [diff] [blame] | 606 | if (verbosity == LY_LLERR) { |
| 607 | /* turn logging off */ |
| 608 | ly_log_options(LY_LOSTORE_LAST); |
| 609 | } else if (verbosity > LY_LLERR) { |
| 610 | --verbosity; |
| 611 | } |
| 612 | ly_log_level(verbosity); |
| 613 | break; |
| 614 | } /* case 'Q' */ |
| 615 | |
Radek Krejci | e9f13b1 | 2020-11-09 17:42:04 +0100 | [diff] [blame] | 616 | case 'f': /* --format */ |
| 617 | if (!strcasecmp(optarg, "yang")) { |
| 618 | c->schema_out_format = LYS_OUT_YANG; |
| 619 | c->data_out_format = 0; |
| 620 | } else if (!strcasecmp(optarg, "yin")) { |
| 621 | c->schema_out_format = LYS_OUT_YIN; |
| 622 | c->data_out_format = 0; |
| 623 | } else if (!strcasecmp(optarg, "info")) { |
| 624 | c->schema_out_format = LYS_OUT_YANG_COMPILED; |
| 625 | c->data_out_format = 0; |
| 626 | } else if (!strcasecmp(optarg, "tree")) { |
| 627 | c->schema_out_format = LYS_OUT_TREE; |
| 628 | c->data_out_format = 0; |
| 629 | } else if (!strcasecmp(optarg, "xml")) { |
| 630 | c->schema_out_format = 0; |
| 631 | c->data_out_format = LYD_XML; |
| 632 | } else if (!strcasecmp(optarg, "json")) { |
| 633 | c->schema_out_format = 0; |
| 634 | c->data_out_format = LYD_JSON; |
Michal Vasko | d8b0e77 | 2022-03-18 13:36:04 +0100 | [diff] [blame] | 635 | } else if (!strcasecmp(optarg, "lyb")) { |
| 636 | c->schema_out_format = 0; |
| 637 | c->data_out_format = LYD_LYB; |
roman | 300b878 | 2022-08-11 12:49:21 +0200 | [diff] [blame] | 638 | } else if (!strcasecmp(optarg, "feature-param")) { |
| 639 | c->feature_param_format = 1; |
Radek Krejci | ed5acc5 | 2019-04-25 15:57:04 +0200 | [diff] [blame] | 640 | } else { |
Radek Krejci | e9f13b1 | 2020-11-09 17:42:04 +0100 | [diff] [blame] | 641 | YLMSG_E("Unknown output format %s\n", optarg); |
Radek Krejci | ed5acc5 | 2019-04-25 15:57:04 +0200 | [diff] [blame] | 642 | help(1); |
Radek Krejci | e9f13b1 | 2020-11-09 17:42:04 +0100 | [diff] [blame] | 643 | return -1; |
Radek Krejci | ed5acc5 | 2019-04-25 15:57:04 +0200 | [diff] [blame] | 644 | } |
| 645 | break; |
Radek Krejci | e9f13b1 | 2020-11-09 17:42:04 +0100 | [diff] [blame] | 646 | |
Michal Vasko | c40548b | 2021-09-30 13:05:47 +0200 | [diff] [blame] | 647 | case 'p': { /* --path */ |
| 648 | struct stat st; |
| 649 | |
| 650 | if (stat(optarg, &st) == -1) { |
| 651 | YLMSG_E("Unable to use search path (%s) - %s.\n", optarg, strerror(errno)); |
| 652 | return -1; |
| 653 | } |
| 654 | if (!S_ISDIR(st.st_mode)) { |
| 655 | YLMSG_E("Provided search path is not a directory.\n"); |
| 656 | return -1; |
| 657 | } |
| 658 | |
aPiecek | 912f3d5 | 2022-10-12 10:02:33 +0200 | [diff] [blame] | 659 | if (searchpath_strcat(&c->searchpaths, optarg)) { |
Michal Vasko | c40548b | 2021-09-30 13:05:47 +0200 | [diff] [blame] | 660 | YLMSG_E("Storing searchpath failed.\n"); |
| 661 | return -1; |
| 662 | } |
| 663 | |
| 664 | break; |
| 665 | } /* case 'p' */ |
| 666 | |
| 667 | case 'D': /* --disable-search */ |
Michal Vasko | 24aaf8e | 2022-02-04 11:15:26 +0100 | [diff] [blame] | 668 | if (c->ctx_options & LY_CTX_DISABLE_SEARCHDIRS) { |
Michal Vasko | c40548b | 2021-09-30 13:05:47 +0200 | [diff] [blame] | 669 | YLMSG_W("The -D option specified too many times.\n"); |
| 670 | } |
Michal Vasko | 24aaf8e | 2022-02-04 11:15:26 +0100 | [diff] [blame] | 671 | if (c->ctx_options & LY_CTX_DISABLE_SEARCHDIR_CWD) { |
| 672 | c->ctx_options &= ~LY_CTX_DISABLE_SEARCHDIR_CWD; |
| 673 | c->ctx_options |= LY_CTX_DISABLE_SEARCHDIRS; |
Michal Vasko | c40548b | 2021-09-30 13:05:47 +0200 | [diff] [blame] | 674 | } else { |
Michal Vasko | 24aaf8e | 2022-02-04 11:15:26 +0100 | [diff] [blame] | 675 | c->ctx_options |= LY_CTX_DISABLE_SEARCHDIR_CWD; |
Michal Vasko | c40548b | 2021-09-30 13:05:47 +0200 | [diff] [blame] | 676 | } |
| 677 | break; |
| 678 | |
| 679 | case 'F': /* --features */ |
| 680 | if (parse_features(optarg, &c->schema_features)) { |
| 681 | return -1; |
| 682 | } |
| 683 | break; |
| 684 | |
Michal Vasko | 8d6d0ad | 2021-10-19 12:32:27 +0200 | [diff] [blame] | 685 | case 'i': /* --make-implemented */ |
Michal Vasko | 24aaf8e | 2022-02-04 11:15:26 +0100 | [diff] [blame] | 686 | if (c->ctx_options & LY_CTX_REF_IMPLEMENTED) { |
| 687 | c->ctx_options &= ~LY_CTX_REF_IMPLEMENTED; |
| 688 | c->ctx_options |= LY_CTX_ALL_IMPLEMENTED; |
Michal Vasko | c40548b | 2021-09-30 13:05:47 +0200 | [diff] [blame] | 689 | } else { |
Michal Vasko | 24aaf8e | 2022-02-04 11:15:26 +0100 | [diff] [blame] | 690 | c->ctx_options |= LY_CTX_REF_IMPLEMENTED; |
Michal Vasko | c40548b | 2021-09-30 13:05:47 +0200 | [diff] [blame] | 691 | } |
| 692 | break; |
| 693 | |
Radek Krejci | e9f13b1 | 2020-11-09 17:42:04 +0100 | [diff] [blame] | 694 | case 'P': /* --schema-node */ |
| 695 | c->schema_node_path = optarg; |
Radek Krejci | ed5acc5 | 2019-04-25 15:57:04 +0200 | [diff] [blame] | 696 | break; |
Radek Krejci | e9f13b1 | 2020-11-09 17:42:04 +0100 | [diff] [blame] | 697 | |
| 698 | case 'q': /* --single-node */ |
| 699 | c->schema_print_options |= LYS_PRINT_NO_SUBSTMT; |
| 700 | break; |
| 701 | |
Michal Vasko | fe74d1e | 2021-09-30 13:17:36 +0200 | [diff] [blame] | 702 | case 's': /* --submodule */ |
| 703 | c->submodule = optarg; |
| 704 | break; |
| 705 | |
ekinzie | 0ab8b30 | 2022-10-10 03:03:57 -0400 | [diff] [blame] | 706 | case 'x': /* --ext-data */ |
| 707 | c->schema_context_filename = strdup(optarg); |
| 708 | break; |
| 709 | |
Michal Vasko | 667ce6b | 2021-01-25 15:00:27 +0100 | [diff] [blame] | 710 | case 'n': /* --not-strict */ |
| 711 | c->data_parse_options &= ~LYD_PARSE_STRICT; |
Radek Krejci | e9f13b1 | 2020-11-09 17:42:04 +0100 | [diff] [blame] | 712 | break; |
| 713 | |
| 714 | case 'e': /* --present */ |
| 715 | c->data_validate_options |= LYD_VALIDATE_PRESENT; |
| 716 | break; |
| 717 | |
| 718 | case 't': /* --type */ |
| 719 | if (data_type_set) { |
| 720 | YLMSG_E("The data type (-t) cannot be set multiple times.\n"); |
| 721 | return -1; |
| 722 | } |
| 723 | |
| 724 | if (!strcasecmp(optarg, "config")) { |
| 725 | c->data_parse_options |= LYD_PARSE_NO_STATE; |
Michal Vasko | f6bda33 | 2021-02-01 08:59:03 +0100 | [diff] [blame] | 726 | c->data_validate_options |= LYD_VALIDATE_NO_STATE; |
Radek Krejci | e9f13b1 | 2020-11-09 17:42:04 +0100 | [diff] [blame] | 727 | } else if (!strcasecmp(optarg, "get")) { |
| 728 | c->data_parse_options |= LYD_PARSE_ONLY; |
| 729 | } else if (!strcasecmp(optarg, "getconfig") || !strcasecmp(optarg, "get-config")) { |
| 730 | c->data_parse_options |= LYD_PARSE_ONLY | LYD_PARSE_NO_STATE; |
| 731 | } else if (!strcasecmp(optarg, "edit")) { |
| 732 | c->data_parse_options |= LYD_PARSE_ONLY; |
Michal Vasko | 3f08fb9 | 2022-04-21 09:52:35 +0200 | [diff] [blame] | 733 | } else if (!strcasecmp(optarg, "rpc")) { |
Michal Vasko | 1e4c68e | 2021-02-18 15:03:01 +0100 | [diff] [blame] | 734 | c->data_type = LYD_TYPE_RPC_YANG; |
Michal Vasko | 3f08fb9 | 2022-04-21 09:52:35 +0200 | [diff] [blame] | 735 | } else if (!strcasecmp(optarg, "nc-rpc")) { |
| 736 | c->data_type = LYD_TYPE_RPC_NETCONF; |
| 737 | } else if (!strcasecmp(optarg, "reply")) { |
Michal Vasko | 1e4c68e | 2021-02-18 15:03:01 +0100 | [diff] [blame] | 738 | c->data_type = LYD_TYPE_REPLY_YANG; |
Michal Vasko | 3f08fb9 | 2022-04-21 09:52:35 +0200 | [diff] [blame] | 739 | } else if (!strcasecmp(optarg, "nc-reply")) { |
| 740 | c->data_type = LYD_TYPE_REPLY_NETCONF; |
| 741 | } else if (!strcasecmp(optarg, "notif")) { |
Michal Vasko | 1e4c68e | 2021-02-18 15:03:01 +0100 | [diff] [blame] | 742 | c->data_type = LYD_TYPE_NOTIF_YANG; |
Michal Vasko | 3f08fb9 | 2022-04-21 09:52:35 +0200 | [diff] [blame] | 743 | } else if (!strcasecmp(optarg, "nc-notif")) { |
| 744 | c->data_type = LYD_TYPE_NOTIF_NETCONF; |
Radek Krejci | e9f13b1 | 2020-11-09 17:42:04 +0100 | [diff] [blame] | 745 | } else if (!strcasecmp(optarg, "data")) { |
| 746 | /* default option */ |
| 747 | } else { |
| 748 | YLMSG_E("Unknown data tree type %s\n", optarg); |
| 749 | help(1); |
| 750 | return -1; |
| 751 | } |
| 752 | |
| 753 | data_type_set = 1; |
| 754 | break; |
| 755 | |
Michal Vasko | c40548b | 2021-09-30 13:05:47 +0200 | [diff] [blame] | 756 | case 'd': /* --default */ |
| 757 | if (!strcasecmp(optarg, "all")) { |
| 758 | c->data_print_options = (c->data_print_options & ~LYD_PRINT_WD_MASK) | LYD_PRINT_WD_ALL; |
| 759 | } else if (!strcasecmp(optarg, "all-tagged")) { |
| 760 | c->data_print_options = (c->data_print_options & ~LYD_PRINT_WD_MASK) | LYD_PRINT_WD_ALL_TAG; |
| 761 | } else if (!strcasecmp(optarg, "trim")) { |
| 762 | c->data_print_options = (c->data_print_options & ~LYD_PRINT_WD_MASK) | LYD_PRINT_WD_TRIM; |
| 763 | } else if (!strcasecmp(optarg, "implicit-tagged")) { |
| 764 | c->data_print_options = (c->data_print_options & ~LYD_PRINT_WD_MASK) | LYD_PRINT_WD_IMPL_TAG; |
| 765 | } else { |
| 766 | YLMSG_E("Unknown default mode %s\n", optarg); |
| 767 | help(1); |
| 768 | return -1; |
| 769 | } |
| 770 | break; |
| 771 | |
| 772 | case 'l': /* --list */ |
| 773 | c->list = 1; |
| 774 | break; |
| 775 | |
| 776 | case 'L': /* --tree-line-length */ |
| 777 | c->line_length = atoi(optarg); |
| 778 | break; |
| 779 | |
| 780 | case 'o': /* --output */ |
| 781 | if (c->out) { |
| 782 | YLMSG_E("Only a single output can be specified.\n"); |
| 783 | return -1; |
| 784 | } else { |
| 785 | if (ly_out_new_filepath(optarg, &c->out)) { |
| 786 | YLMSG_E("Unable open output file %s (%s)\n", optarg, strerror(errno)); |
| 787 | return -1; |
| 788 | } |
| 789 | } |
| 790 | break; |
| 791 | |
Radek Krejci | e9f13b1 | 2020-11-09 17:42:04 +0100 | [diff] [blame] | 792 | case 'O': /* --operational */ |
| 793 | if (c->data_operational.path) { |
| 794 | YLMSG_E("The operational datastore (-O) cannot be set multiple times.\n"); |
| 795 | return -1; |
| 796 | } |
| 797 | c->data_operational.path = optarg; |
| 798 | break; |
| 799 | |
Michal Vasko | 3f08fb9 | 2022-04-21 09:52:35 +0200 | [diff] [blame] | 800 | case 'R': /* --reply-rpc */ |
| 801 | if (c->reply_rpc.path) { |
| 802 | YLMSG_E("The PRC of the reply (-R) cannot be set multiple times.\n"); |
| 803 | return -1; |
| 804 | } |
| 805 | c->reply_rpc.path = optarg; |
| 806 | break; |
| 807 | |
Radek Krejci | e9f13b1 | 2020-11-09 17:42:04 +0100 | [diff] [blame] | 808 | case 'm': /* --merge */ |
| 809 | c->data_merge = 1; |
| 810 | break; |
| 811 | |
Michal Vasko | c431a0a | 2021-01-25 14:31:58 +0100 | [diff] [blame] | 812 | case 'y': /* --yang-library */ |
Michal Vasko | 24aaf8e | 2022-02-04 11:15:26 +0100 | [diff] [blame] | 813 | c->ctx_options &= ~LY_CTX_NO_YANGLIBRARY; |
| 814 | break; |
| 815 | |
| 816 | case 'Y': /* --yang-library-file */ |
| 817 | c->ctx_options &= ~LY_CTX_NO_YANGLIBRARY; |
| 818 | c->yang_lib_file = optarg; |
Michal Vasko | c431a0a | 2021-01-25 14:31:58 +0100 | [diff] [blame] | 819 | break; |
| 820 | |
steweg | d8e2fc9 | 2023-05-31 09:52:56 +0200 | [diff] [blame] | 821 | case 'X': /* --extended-leafref */ |
| 822 | c->ctx_options |= LY_CTX_LEAFREF_EXTENDED; |
| 823 | break; |
| 824 | |
Radek Krejci | ed5acc5 | 2019-04-25 15:57:04 +0200 | [diff] [blame] | 825 | #ifndef NDEBUG |
Radek Krejci | e9f13b1 | 2020-11-09 17:42:04 +0100 | [diff] [blame] | 826 | case 'G': { /* --debug */ |
| 827 | uint32_t dbg_groups = 0; |
| 828 | const char *ptr = optarg; |
| 829 | |
Radek Krejci | ed5acc5 | 2019-04-25 15:57:04 +0200 | [diff] [blame] | 830 | while (ptr[0]) { |
Radek Krejci | f13b87b | 2020-12-01 22:02:17 +0100 | [diff] [blame] | 831 | if (!strncasecmp(ptr, "dict", sizeof "dict" - 1)) { |
Radek Krejci | e9f13b1 | 2020-11-09 17:42:04 +0100 | [diff] [blame] | 832 | dbg_groups |= LY_LDGDICT; |
Radek Krejci | f13b87b | 2020-12-01 22:02:17 +0100 | [diff] [blame] | 833 | ptr += sizeof "dict" - 1; |
| 834 | } else if (!strncasecmp(ptr, "xpath", sizeof "xpath" - 1)) { |
Radek Krejci | e9f13b1 | 2020-11-09 17:42:04 +0100 | [diff] [blame] | 835 | dbg_groups |= LY_LDGXPATH; |
Radek Krejci | f13b87b | 2020-12-01 22:02:17 +0100 | [diff] [blame] | 836 | ptr += sizeof "xpath" - 1; |
Michal Vasko | 27a4acb | 2021-11-22 10:03:46 +0100 | [diff] [blame] | 837 | } else if (!strncasecmp(ptr, "dep-sets", sizeof "dep-sets" - 1)) { |
| 838 | dbg_groups |= LY_LDGDEPSETS; |
| 839 | ptr += sizeof "dep-sets" - 1; |
Radek Krejci | ed5acc5 | 2019-04-25 15:57:04 +0200 | [diff] [blame] | 840 | } |
| 841 | |
| 842 | if (ptr[0]) { |
| 843 | if (ptr[0] != ',') { |
Radek Krejci | e9f13b1 | 2020-11-09 17:42:04 +0100 | [diff] [blame] | 844 | YLMSG_E("Unknown debug group string \"%s\"\n", optarg); |
| 845 | return -1; |
Radek Krejci | ed5acc5 | 2019-04-25 15:57:04 +0200 | [diff] [blame] | 846 | } |
| 847 | ++ptr; |
| 848 | } |
| 849 | } |
Radek Krejci | e9f13b1 | 2020-11-09 17:42:04 +0100 | [diff] [blame] | 850 | ly_log_dbg_groups(dbg_groups); |
Radek Krejci | ed5acc5 | 2019-04-25 15:57:04 +0200 | [diff] [blame] | 851 | break; |
Radek Krejci | e9f13b1 | 2020-11-09 17:42:04 +0100 | [diff] [blame] | 852 | } /* case 'G' */ |
Radek Krejci | ed5acc5 | 2019-04-25 15:57:04 +0200 | [diff] [blame] | 853 | #endif |
Michal Vasko | 27a4acb | 2021-11-22 10:03:46 +0100 | [diff] [blame] | 854 | default: |
| 855 | YLMSG_E("Invalid option or missing argument: -%c\n", optopt); |
| 856 | return -1; |
Radek Krejci | e9f13b1 | 2020-11-09 17:42:04 +0100 | [diff] [blame] | 857 | } /* switch */ |
| 858 | } |
| 859 | |
Radek Krejci | e9f13b1 | 2020-11-09 17:42:04 +0100 | [diff] [blame] | 860 | /* additional checks for the options combinations */ |
| 861 | if (!c->list && (optind >= argc)) { |
| 862 | help(1); |
| 863 | YLMSG_E("Missing <schema> to process.\n"); |
| 864 | return 1; |
| 865 | } |
| 866 | |
| 867 | if (c->data_merge) { |
| 868 | if (c->data_type || (c->data_parse_options & LYD_PARSE_ONLY)) { |
| 869 | /* switch off the option, incompatible input data type */ |
| 870 | c->data_merge = 0; |
| 871 | } else { |
| 872 | /* postpone validation after the merge of all the input data */ |
| 873 | c->data_parse_options |= LYD_PARSE_ONLY; |
Radek Krejci | ed5acc5 | 2019-04-25 15:57:04 +0200 | [diff] [blame] | 874 | } |
| 875 | } |
| 876 | |
Radek Krejci | e9f13b1 | 2020-11-09 17:42:04 +0100 | [diff] [blame] | 877 | if (c->data_operational.path && !c->data_type) { |
Michal Vasko | 3f08fb9 | 2022-04-21 09:52:35 +0200 | [diff] [blame] | 878 | YLMSG_E("Operational datastore takes effect only with RPCs/Actions/Replies/Notification input data types.\n"); |
Radek Krejci | e9f13b1 | 2020-11-09 17:42:04 +0100 | [diff] [blame] | 879 | c->data_operational.path = NULL; |
Radek Krejci | ed5acc5 | 2019-04-25 15:57:04 +0200 | [diff] [blame] | 880 | } |
Radek Krejci | e9f13b1 | 2020-11-09 17:42:04 +0100 | [diff] [blame] | 881 | |
Michal Vasko | 3f08fb9 | 2022-04-21 09:52:35 +0200 | [diff] [blame] | 882 | if (c->reply_rpc.path && (c->data_type != LYD_TYPE_REPLY_NETCONF)) { |
| 883 | YLMSG_E("Source RPC is needed only for NETCONF Reply input data type.\n"); |
| 884 | c->data_operational.path = NULL; |
| 885 | } else if (!c->reply_rpc.path && (c->data_type == LYD_TYPE_REPLY_NETCONF)) { |
| 886 | YLMSG_E("Missing source RPC (-R) for NETCONF Reply input data type.\n"); |
| 887 | return -1; |
| 888 | } |
| 889 | |
aPiecek | 2cfeeae | 2021-04-21 13:17:34 +0200 | [diff] [blame] | 890 | if ((c->schema_out_format != LYS_OUT_TREE) && c->line_length) { |
| 891 | YLMSG_E("--tree-line-length take effect only in case of the tree output format.\n"); |
| 892 | } |
| 893 | |
Radek Krejci | e9f13b1 | 2020-11-09 17:42:04 +0100 | [diff] [blame] | 894 | /* default output stream */ |
| 895 | if (!c->out) { |
| 896 | if (ly_out_new_file(stdout, &c->out)) { |
| 897 | YLMSG_E("Unable to set stdout as output.\n"); |
| 898 | return -1; |
Radek Krejci | ed5acc5 | 2019-04-25 15:57:04 +0200 | [diff] [blame] | 899 | } |
| 900 | } |
Radek Krejci | e9f13b1 | 2020-11-09 17:42:04 +0100 | [diff] [blame] | 901 | |
aPiecek | 7ac66d5 | 2021-05-20 07:54:07 +0200 | [diff] [blame] | 902 | if (c->schema_out_format == LYS_OUT_TREE) { |
| 903 | /* print tree from lysc_nodes */ |
Michal Vasko | 24aaf8e | 2022-02-04 11:15:26 +0100 | [diff] [blame] | 904 | c->ctx_options |= LY_CTX_SET_PRIV_PARSED; |
aPiecek | 7ac66d5 | 2021-05-20 07:54:07 +0200 | [diff] [blame] | 905 | } |
| 906 | |
Radek Krejci | e9f13b1 | 2020-11-09 17:42:04 +0100 | [diff] [blame] | 907 | /* process input files provided as standalone command line arguments, |
| 908 | * schema modules are parsed and inserted into the context, |
| 909 | * data files are just checked and prepared into internal structures for further processing */ |
| 910 | ret = fill_context_inputs(argc, argv, c); |
| 911 | if (ret) { |
| 912 | return ret; |
| 913 | } |
| 914 | |
| 915 | /* the second batch of checks */ |
| 916 | if (c->schema_print_options && !c->schema_out_format) { |
| 917 | YLMSG_W("Schema printer options specified, but the schema output format is missing.\n"); |
| 918 | } |
| 919 | if (c->schema_parse_options && !c->schema_modules.count) { |
| 920 | YLMSG_W("Schema parser options specified, but no schema input file provided.\n"); |
| 921 | } |
| 922 | if (c->data_print_options && !c->data_out_format) { |
| 923 | YLMSG_W("data printer options specified, but the data output format is missing.\n"); |
| 924 | } |
Michal Vasko | 667ce6b | 2021-01-25 15:00:27 +0100 | [diff] [blame] | 925 | if (((c->data_parse_options != YL_DEFAULT_DATA_PARSE_OPTIONS) || c->data_type) && !c->data_inputs.count) { |
Radek Krejci | e9f13b1 | 2020-11-09 17:42:04 +0100 | [diff] [blame] | 926 | YLMSG_W("Data parser options specified, but no data input file provided.\n"); |
| 927 | } |
| 928 | |
| 929 | if (c->schema_node_path) { |
| 930 | c->schema_node = lys_find_path(c->ctx, NULL, c->schema_node_path, 0); |
| 931 | if (!c->schema_node) { |
| 932 | c->schema_node = lys_find_path(c->ctx, NULL, c->schema_node_path, 1); |
| 933 | |
| 934 | if (!c->schema_node) { |
| 935 | YLMSG_E("Invalid schema path.\n"); |
| 936 | return -1; |
| 937 | } |
Radek Krejci | ed5acc5 | 2019-04-25 15:57:04 +0200 | [diff] [blame] | 938 | } |
Radek Krejci | ed5acc5 | 2019-04-25 15:57:04 +0200 | [diff] [blame] | 939 | } |
Radek Krejci | e9f13b1 | 2020-11-09 17:42:04 +0100 | [diff] [blame] | 940 | |
Radek Krejci | e9f13b1 | 2020-11-09 17:42:04 +0100 | [diff] [blame] | 941 | return 0; |
| 942 | } |
| 943 | |
| 944 | int |
| 945 | main_ni(int argc, char *argv[]) |
| 946 | { |
| 947 | int ret = EXIT_SUCCESS, r; |
| 948 | struct context c = {0}; |
roman | 300b878 | 2022-08-11 12:49:21 +0200 | [diff] [blame] | 949 | char *features_output = NULL; |
| 950 | struct ly_set set = {0}; |
| 951 | uint32_t u; |
Radek Krejci | ed5acc5 | 2019-04-25 15:57:04 +0200 | [diff] [blame] | 952 | |
| 953 | /* set callback for printing libyang messages */ |
| 954 | ly_set_log_clb(libyang_verbclb, 1); |
Radek Krejci | e9f13b1 | 2020-11-09 17:42:04 +0100 | [diff] [blame] | 955 | |
| 956 | r = fill_context(argc, argv, &c); |
| 957 | if (r < 0) { |
| 958 | ret = EXIT_FAILURE; |
Radek Krejci | ed5acc5 | 2019-04-25 15:57:04 +0200 | [diff] [blame] | 959 | } |
Radek Krejci | e9f13b1 | 2020-11-09 17:42:04 +0100 | [diff] [blame] | 960 | if (r) { |
Radek Krejci | ed5acc5 | 2019-04-25 15:57:04 +0200 | [diff] [blame] | 961 | goto cleanup; |
| 962 | } |
| 963 | |
Radek Krejci | e9f13b1 | 2020-11-09 17:42:04 +0100 | [diff] [blame] | 964 | /* do the required job - parse, validate, print */ |
| 965 | |
| 966 | if (c.list) { |
| 967 | /* print the list of schemas */ |
aPiecek | 3426262 | 2023-03-27 08:28:25 +0200 | [diff] [blame^] | 968 | ret = print_list(c.out, c.ctx, c.data_out_format); |
| 969 | goto cleanup; |
Radek Krejci | 047d64e | 2020-12-03 12:57:10 +0100 | [diff] [blame] | 970 | } else { |
roman | 300b878 | 2022-08-11 12:49:21 +0200 | [diff] [blame] | 971 | if (c.feature_param_format) { |
| 972 | for (u = 0; u < c.schema_modules.count; u++) { |
| 973 | if (collect_features(c.schema_modules.objs[u], &set)) { |
| 974 | YLMSG_E("Unable to read features from a module.\n"); |
| 975 | goto cleanup; |
| 976 | } |
| 977 | if (generate_features_output(c.schema_modules.objs[u], &set, &features_output)) { |
| 978 | YLMSG_E("Unable to generate feature command output.\n"); |
| 979 | goto cleanup; |
| 980 | } |
| 981 | ly_set_erase(&set, NULL); |
| 982 | } |
| 983 | ly_print(c.out, "%s\n", features_output); |
| 984 | } else if (c.schema_out_format) { |
Radek Krejci | 047d64e | 2020-12-03 12:57:10 +0100 | [diff] [blame] | 985 | if (c.schema_node) { |
| 986 | ret = lys_print_node(c.out, c.schema_node, c.schema_out_format, 0, c.schema_print_options); |
Radek Krejci | e9f13b1 | 2020-11-09 17:42:04 +0100 | [diff] [blame] | 987 | if (ret) { |
Radek Krejci | 047d64e | 2020-12-03 12:57:10 +0100 | [diff] [blame] | 988 | YLMSG_E("Unable to print schema node %s.\n", c.schema_node_path); |
Radek Krejci | e9f13b1 | 2020-11-09 17:42:04 +0100 | [diff] [blame] | 989 | goto cleanup; |
| 990 | } |
Michal Vasko | fe74d1e | 2021-09-30 13:17:36 +0200 | [diff] [blame] | 991 | } else if (c.submodule) { |
| 992 | const struct lysp_submodule *submod = ly_ctx_get_submodule_latest(c.ctx, c.submodule); |
Michal Vasko | 26bbb27 | 2022-08-02 14:54:33 +0200 | [diff] [blame] | 993 | |
Michal Vasko | fe74d1e | 2021-09-30 13:17:36 +0200 | [diff] [blame] | 994 | if (!submod) { |
| 995 | YLMSG_E("Unable to find submodule %s.\n", c.submodule); |
| 996 | goto cleanup; |
| 997 | } |
| 998 | |
| 999 | ret = lys_print_submodule(c.out, submod, c.schema_out_format, c.line_length, c.schema_print_options); |
| 1000 | if (ret) { |
| 1001 | YLMSG_E("Unable to print submodule %s.\n", submod->name); |
| 1002 | goto cleanup; |
| 1003 | } |
Radek Krejci | 047d64e | 2020-12-03 12:57:10 +0100 | [diff] [blame] | 1004 | } else { |
roman | 300b878 | 2022-08-11 12:49:21 +0200 | [diff] [blame] | 1005 | for (u = 0; u < c.schema_modules.count; ++u) { |
aPiecek | 2cfeeae | 2021-04-21 13:17:34 +0200 | [diff] [blame] | 1006 | ret = lys_print_module(c.out, (struct lys_module *)c.schema_modules.objs[u], c.schema_out_format, |
| 1007 | c.line_length, c.schema_print_options); |
aPiecek | 8f0b788 | 2021-05-21 10:18:36 +0200 | [diff] [blame] | 1008 | /* for YANG Tree Diagrams printing it's more readable to print a blank line between modules. */ |
| 1009 | if ((c.schema_out_format == LYS_OUT_TREE) && (u + 1 < c.schema_modules.count)) { |
| 1010 | ly_print(c.out, "\n"); |
| 1011 | } |
Radek Krejci | 047d64e | 2020-12-03 12:57:10 +0100 | [diff] [blame] | 1012 | if (ret) { |
| 1013 | YLMSG_E("Unable to print module %s.\n", ((struct lys_module *)c.schema_modules.objs[u])->name); |
| 1014 | goto cleanup; |
| 1015 | } |
| 1016 | } |
Radek Krejci | e9f13b1 | 2020-11-09 17:42:04 +0100 | [diff] [blame] | 1017 | } |
Radek Krejci | ed5acc5 | 2019-04-25 15:57:04 +0200 | [diff] [blame] | 1018 | } |
Radek Krejci | 047d64e | 2020-12-03 12:57:10 +0100 | [diff] [blame] | 1019 | |
| 1020 | /* do the data validation despite the schema was printed */ |
| 1021 | if (c.data_inputs.size) { |
Michal Vasko | 0f1e456 | 2022-03-29 11:57:57 +0200 | [diff] [blame] | 1022 | ret = process_data(c.ctx, c.data_type, c.data_merge, c.data_out_format, c.out, c.data_parse_options, |
Michal Vasko | 3f08fb9 | 2022-04-21 09:52:35 +0200 | [diff] [blame] | 1023 | c.data_validate_options, c.data_print_options, &c.data_operational, &c.reply_rpc, &c.data_inputs, NULL); |
Michal Vasko | 0f1e456 | 2022-03-29 11:57:57 +0200 | [diff] [blame] | 1024 | if (ret) { |
Radek Krejci | 047d64e | 2020-12-03 12:57:10 +0100 | [diff] [blame] | 1025 | goto cleanup; |
| 1026 | } |
Radek Krejci | ed5acc5 | 2019-04-25 15:57:04 +0200 | [diff] [blame] | 1027 | } |
Radek Krejci | ed5acc5 | 2019-04-25 15:57:04 +0200 | [diff] [blame] | 1028 | } |
Radek Krejci | ed5acc5 | 2019-04-25 15:57:04 +0200 | [diff] [blame] | 1029 | |
| 1030 | cleanup: |
Radek Krejci | e9f13b1 | 2020-11-09 17:42:04 +0100 | [diff] [blame] | 1031 | /* cleanup */ |
| 1032 | erase_context(&c); |
roman | 300b878 | 2022-08-11 12:49:21 +0200 | [diff] [blame] | 1033 | free(features_output); |
| 1034 | ly_set_erase(&set, NULL); |
Radek Krejci | ed5acc5 | 2019-04-25 15:57:04 +0200 | [diff] [blame] | 1035 | |
Radek Krejci | ed5acc5 | 2019-04-25 15:57:04 +0200 | [diff] [blame] | 1036 | return ret; |
| 1037 | } |