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