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