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