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 | * |
| 6 | * Copyright (c) 2015-2018 CESNET, z.s.p.o. |
| 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 | |
| 17 | #include <stdio.h> |
| 18 | #include <stdlib.h> |
| 19 | #include <getopt.h> |
| 20 | #include <errno.h> |
| 21 | #include <libgen.h> |
| 22 | #include <sys/stat.h> |
| 23 | #include <sys/times.h> |
| 24 | #include <sys/types.h> |
| 25 | #include <string.h> |
| 26 | #include <unistd.h> |
| 27 | |
Radek Krejci | ed5acc5 | 2019-04-25 15:57:04 +0200 | [diff] [blame] | 28 | #include "libyang.h" |
| 29 | |
Radek Krejci | 535ea9f | 2020-05-29 16:01:05 +0200 | [diff] [blame] | 30 | #include "tools/config.h" |
| 31 | |
| 32 | #include "commands.h" |
| 33 | |
| 34 | |
Radek Krejci | ed5acc5 | 2019-04-25 15:57:04 +0200 | [diff] [blame] | 35 | volatile uint8_t verbose = 0; |
| 36 | |
| 37 | #if 0 |
| 38 | /* from commands.c */ |
| 39 | int print_list(FILE *out, struct ly_ctx *ctx, LYD_FORMAT outformat); |
| 40 | #endif |
| 41 | |
| 42 | void |
| 43 | help(int shortout) |
| 44 | { |
| 45 | fprintf(stdout, "Usage:\n"); |
Radek Krejci | d8c0f5e | 2019-11-17 12:18:34 +0800 | [diff] [blame] | 46 | fprintf(stdout, " yanglint [options] [-f { yang | yin | tree | tree-rfc | info}] <file>...\n"); |
Radek Krejci | ed5acc5 | 2019-04-25 15:57:04 +0200 | [diff] [blame] | 47 | fprintf(stdout, " Validates the YANG module in <file>, and all its dependencies.\n\n"); |
| 48 | fprintf(stdout, " yanglint [options] [-f { xml | json }] <schema>... <file>...\n"); |
| 49 | fprintf(stdout, " Validates the YANG modeled data in <file> according to the <schema>.\n\n"); |
| 50 | fprintf(stdout, " yanglint\n"); |
| 51 | fprintf(stdout, " Starts interactive mode with more features.\n\n"); |
| 52 | |
| 53 | if (shortout) { |
| 54 | return; |
| 55 | } |
| 56 | fprintf(stdout, "Options:\n" |
| 57 | " -h, --help Show this help message and exit.\n" |
| 58 | " -v, --version Show version number and exit.\n" |
| 59 | " -V, --verbose Show verbose messages, can be used multiple times to\n" |
| 60 | " increase verbosity.\n" |
| 61 | #ifndef NDEBUG |
| 62 | " -G GROUPS, --debug=GROUPS\n" |
| 63 | " Enable printing of specific debugging message group\n" |
| 64 | " (nothing will be printed unless verbosity is set to debug):\n" |
| 65 | " <group>[,<group>]* (dict, yang, yin, xpath, diff)\n\n" |
| 66 | #endif |
| 67 | " -p PATH, --path=PATH Search path for schema (YANG/YIN) modules. The option can be used multiple times.\n" |
| 68 | " Current working directory and path of the module being added is used implicitly.\n\n" |
| 69 | " -D, --disable-searchdir\n" |
| 70 | " Do not implicitly search in CWD for schema modules. If specified a second time,\n" |
| 71 | " do not even search the module directory (all modules must be explicitly specified).\n\n" |
| 72 | " -s, --strict Strict data parsing (do not skip unknown data),\n" |
| 73 | " has no effect for schemas.\n\n" |
| 74 | " -m, --merge Merge input data files into a single tree and validate at once,\n" |
| 75 | " has no effect for the auto, rpc, rpcreply and notif TYPEs.\n\n" |
| 76 | " -f FORMAT, --format=FORMAT\n" |
| 77 | " Convert to FORMAT. Supported formats: \n" |
Radek Krejci | d8c0f5e | 2019-11-17 12:18:34 +0800 | [diff] [blame] | 78 | " yang, yin, tree and info for schemas,\n" |
Radek Krejci | ed5acc5 | 2019-04-25 15:57:04 +0200 | [diff] [blame] | 79 | " xml, json for data.\n" |
| 80 | " -a, --auto Modify the xml output by adding envelopes for autodetection.\n\n" |
| 81 | " -i, --allimplemented Make all the imported modules implemented.\n\n" |
| 82 | " -l, --list Print info about the loaded schemas in ietf-yang-library format,\n" |
| 83 | " the -f option applies here to specify data encoding.\n" |
| 84 | " (i - imported module, I - implemented module)\n\n" |
| 85 | " -o OUTFILE, --output=OUTFILE\n" |
| 86 | " Write the output to OUTFILE instead of stdout.\n\n" |
| 87 | " -F FEATURES, --features=FEATURES\n" |
| 88 | " Features to support, default all.\n" |
| 89 | " <modname>:[<feature>,]*\n\n" |
| 90 | " -d MODE, --default=MODE\n" |
| 91 | " Print data with default values, according to the MODE\n" |
| 92 | " (to print attributes, ietf-netconf-with-defaults model\n" |
| 93 | " must be loaded):\n" |
| 94 | " all - Add missing default nodes.\n" |
| 95 | " all-tagged - Add missing default nodes and mark all the default\n" |
| 96 | " nodes with the attribute.\n" |
| 97 | " trim - Remove all nodes with a default value.\n" |
| 98 | " implicit-tagged - Add missing nodes and mark them with the attribute.\n\n" |
| 99 | " -t TYPE, --type=TYPE\n" |
| 100 | " Specify data tree type in the input data file:\n" |
| 101 | " auto - Resolve data type (one of the following) automatically\n" |
| 102 | " (as pyang does) - applicable only on XML input data.\n" |
| 103 | " data - Complete datastore with status data (default type).\n" |
| 104 | " config - Configuration datastore (without status data).\n" |
| 105 | " get - Result of the NETCONF <get> operation.\n" |
| 106 | " getconfig - Result of the NETCONF <get-config> operation.\n" |
| 107 | " edit - Content of the NETCONF <edit-config> operation.\n" |
| 108 | " rpc - Content of the NETCONF <rpc> message, defined as YANG's rpc input statement.\n" |
| 109 | " rpcreply - Reply to the RPC. The input data <file>s are expected in pairs - each RPC reply\n" |
| 110 | " input data <file> must be followed by the origin RPC input data <file> for the reply.\n" |
| 111 | " The same rule of pairing applies also in case of 'auto' TYPE and input data file\n" |
| 112 | " containing RPC reply.\n" |
| 113 | " notif - Notification instance (content of the <notification> element without <eventTime>.\n\n" |
| 114 | " -O FILE, --operational=FILE\n" |
| 115 | " - Optional parameter for 'rpc', 'rpcreply' and 'notif' TYPEs, the FILE contains running\n" |
| 116 | " configuration datastore and state data (operational datastore) referenced from\n" |
| 117 | " the RPC/Notification. The same data apply to all input data <file>s. Note that\n" |
| 118 | " the file is validated as 'data' TYPE. Special value '!' can be used as FILE argument\n" |
| 119 | " to ignore the external references.\n\n" |
| 120 | " -y YANGLIB_PATH - Path to a yang-library data describing the initial context.\n\n" |
| 121 | "Tree output specific options:\n" |
| 122 | " --tree-help - Print help on tree symbols and exit.\n" |
| 123 | " --tree-print-groupings\n" |
| 124 | " Print top-level groupings in a separate section.\n" |
| 125 | " --tree-print-uses - Print uses nodes instead the resolved grouping nodes.\n" |
| 126 | " --tree-no-leafref-target\n" |
| 127 | " Do not print target nodes of leafrefs.\n" |
| 128 | " --tree-path=SCHEMA_PATH\n" |
| 129 | " Print only the specified subtree.\n" |
| 130 | " --tree-line-length=LINE_LENGTH\n" |
| 131 | " Wrap lines if longer than the specified length (it is not a strict limit, longer lines\n" |
Radek Krejci | e1f6d5a | 2019-11-17 14:03:04 +0800 | [diff] [blame] | 132 | " can often appear).\n\n" |
| 133 | "Info output specific options:\n" |
| 134 | " -P INFOPATH, --info-path=INFOPATH\n" |
| 135 | " - Schema path with full module names used as node's prefixes, the path identify the root\n" |
| 136 | " node of the subtree to print information about.\n" |
| 137 | " --single-node - Print information about a single node instead of a subtree." |
Radek Krejci | ed5acc5 | 2019-04-25 15:57:04 +0200 | [diff] [blame] | 138 | "\n"); |
| 139 | } |
| 140 | |
| 141 | void |
| 142 | tree_help(void) |
| 143 | { |
| 144 | fprintf(stdout, "Each node is printed as:\n\n"); |
| 145 | fprintf(stdout, "<status> <flags> <name> <opts> <type> <if-features>\n\n" |
| 146 | " <status> is one of:\n" |
| 147 | " + for current\n" |
| 148 | " x for deprecated\n" |
| 149 | " o for obsolete\n\n" |
| 150 | " <flags> is one of:\n" |
| 151 | " rw for configuration data\n" |
| 152 | " ro for status data\n" |
| 153 | " -x for RPCs\n" |
| 154 | " -n for Notification\n\n" |
| 155 | " <name> is the name of the node\n" |
| 156 | " (<name>) means that the node is a choice node\n" |
| 157 | " :(<name>) means that the node is a case node\n\n" |
| 158 | " if the node is augmented into the tree from another module,\n" |
| 159 | " it is printed with the module name as <module-name>:<name>.\n\n" |
| 160 | " <opts> is one of:\n" |
| 161 | " ? for an optional leaf or choice\n" |
| 162 | " ! for a presence container\n" |
| 163 | " * for a leaf-list or list\n" |
| 164 | " [<keys>] for a list's keys\n\n" |
| 165 | " <type> is the name of the type for leafs and leaf-lists\n" |
| 166 | " If there is a default value defined, it is printed within\n" |
| 167 | " angle brackets <default-value>.\n" |
| 168 | " If the type is a leafref, the type is printed as -> TARGET`\n\n" |
| 169 | " <if-features> is the list of features this node depends on,\n" |
| 170 | " printed within curly brackets and a question mark {...}?\n\n"); |
| 171 | } |
| 172 | |
| 173 | void |
| 174 | version(void) |
| 175 | { |
| 176 | fprintf(stdout, "yanglint %s\n", PROJECT_VERSION); |
| 177 | } |
| 178 | |
| 179 | void |
| 180 | libyang_verbclb(LY_LOG_LEVEL level, const char *msg, const char *path) |
| 181 | { |
| 182 | char *levstr; |
| 183 | |
| 184 | if (level <= verbose) { |
| 185 | switch(level) { |
| 186 | case LY_LLERR: |
| 187 | levstr = "err :"; |
| 188 | break; |
| 189 | case LY_LLWRN: |
| 190 | levstr = "warn:"; |
| 191 | break; |
| 192 | case LY_LLVRB: |
| 193 | levstr = "verb:"; |
| 194 | break; |
| 195 | default: |
| 196 | levstr = "dbg :"; |
| 197 | break; |
| 198 | } |
| 199 | if (path) { |
| 200 | fprintf(stderr, "%s %s (%s)\n", levstr, msg, path); |
| 201 | } else { |
| 202 | fprintf(stderr, "%s %s\n", levstr, msg); |
| 203 | } |
| 204 | } |
| 205 | } |
| 206 | |
| 207 | /* |
| 208 | * return: |
| 209 | * 0 - error |
| 210 | * 1 - schema format |
| 211 | * 2 - data format |
| 212 | */ |
| 213 | static int |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 214 | get_fileformat(const char *filename, LYS_INFORMAT *schema, LYD_FORMAT *data) |
Radek Krejci | ed5acc5 | 2019-04-25 15:57:04 +0200 | [diff] [blame] | 215 | { |
| 216 | char *ptr; |
| 217 | LYS_INFORMAT informat_s; |
Radek Krejci | ed5acc5 | 2019-04-25 15:57:04 +0200 | [diff] [blame] | 218 | LYD_FORMAT informat_d; |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 219 | |
Radek Krejci | ed5acc5 | 2019-04-25 15:57:04 +0200 | [diff] [blame] | 220 | /* get the file format */ |
| 221 | if ((ptr = strrchr(filename, '.')) != NULL) { |
| 222 | ++ptr; |
| 223 | if (!strcmp(ptr, "yang")) { |
| 224 | informat_s = LYS_IN_YANG; |
Radek Krejci | ed5acc5 | 2019-04-25 15:57:04 +0200 | [diff] [blame] | 225 | informat_d = 0; |
| 226 | } else if (!strcmp(ptr, "yin")) { |
| 227 | informat_s = LYS_IN_YIN; |
| 228 | informat_d = 0; |
| 229 | } else if (!strcmp(ptr, "xml")) { |
| 230 | informat_s = 0; |
| 231 | informat_d = LYD_XML; |
| 232 | } else if (!strcmp(ptr, "json")) { |
| 233 | informat_s = 0; |
| 234 | informat_d = LYD_JSON; |
Radek Krejci | ed5acc5 | 2019-04-25 15:57:04 +0200 | [diff] [blame] | 235 | } else { |
| 236 | fprintf(stderr, "yanglint error: input file in an unknown format \"%s\".\n", ptr); |
| 237 | return 0; |
| 238 | } |
| 239 | } else { |
| 240 | fprintf(stderr, "yanglint error: input file \"%s\" without file extension - unknown format.\n", filename); |
| 241 | return 0; |
| 242 | } |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 243 | |
Radek Krejci | ed5acc5 | 2019-04-25 15:57:04 +0200 | [diff] [blame] | 244 | if (data) { |
| 245 | (*data) = informat_d; |
| 246 | } |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 247 | |
Radek Krejci | ed5acc5 | 2019-04-25 15:57:04 +0200 | [diff] [blame] | 248 | if (schema) { |
| 249 | (*schema) = informat_s; |
| 250 | } |
| 251 | |
| 252 | if (informat_s) { |
| 253 | return 1; |
| 254 | } else { |
| 255 | return 2; |
| 256 | } |
| 257 | } |
| 258 | |
| 259 | int |
| 260 | main_ni(int argc, char* argv[]) |
| 261 | { |
| 262 | int ret = EXIT_FAILURE; |
Radek Krejci | d8c0f5e | 2019-11-17 12:18:34 +0800 | [diff] [blame] | 263 | int opt, opt_index = 0, i, featsize = 0; |
Radek Krejci | ed5acc5 | 2019-04-25 15:57:04 +0200 | [diff] [blame] | 264 | struct option options[] = { |
| 265 | #if 0 |
| 266 | {"auto", no_argument, NULL, 'a'}, |
| 267 | {"default", required_argument, NULL, 'd'}, |
| 268 | #endif |
| 269 | {"format", required_argument, NULL, 'f'}, |
| 270 | {"features", required_argument, NULL, 'F'}, |
| 271 | #if 0 |
| 272 | {"tree-print-groupings", no_argument, NULL, 'g'}, |
| 273 | {"tree-print-uses", no_argument, NULL, 'u'}, |
| 274 | {"tree-no-leafref-target", no_argument, NULL, 'n'}, |
| 275 | {"tree-path", required_argument, NULL, 'P'}, |
| 276 | {"tree-line-length", required_argument, NULL, 'L'}, |
| 277 | #endif |
| 278 | {"help", no_argument, NULL, 'h'}, |
| 279 | #if 0 |
| 280 | {"tree-help", no_argument, NULL, 'H'}, |
| 281 | #endif |
| 282 | {"allimplemented", no_argument, NULL, 'i'}, |
| 283 | {"disable-cwd-search", no_argument, NULL, 'D'}, |
| 284 | {"list", no_argument, NULL, 'l'}, |
| 285 | #if 0 |
| 286 | {"merge", no_argument, NULL, 'm'}, |
| 287 | #endif |
| 288 | {"output", required_argument, NULL, 'o'}, |
| 289 | {"path", required_argument, NULL, 'p'}, |
Radek Krejci | e1f6d5a | 2019-11-17 14:03:04 +0800 | [diff] [blame] | 290 | {"info-path", required_argument, NULL, 'P'}, |
Radek Krejci | ed5acc5 | 2019-04-25 15:57:04 +0200 | [diff] [blame] | 291 | #if 0 |
| 292 | {"running", required_argument, NULL, 'r'}, |
| 293 | {"operational", required_argument, NULL, 'O'}, |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 294 | #endif |
Radek Krejci | e1f6d5a | 2019-11-17 14:03:04 +0800 | [diff] [blame] | 295 | {"single-node", no_argument, NULL, 'q'}, |
Radek Krejci | ed5acc5 | 2019-04-25 15:57:04 +0200 | [diff] [blame] | 296 | {"strict", no_argument, NULL, 's'}, |
| 297 | {"type", required_argument, NULL, 't'}, |
Radek Krejci | ed5acc5 | 2019-04-25 15:57:04 +0200 | [diff] [blame] | 298 | {"version", no_argument, NULL, 'v'}, |
| 299 | {"verbose", no_argument, NULL, 'V'}, |
| 300 | #ifndef NDEBUG |
| 301 | {"debug", required_argument, NULL, 'G'}, |
| 302 | #endif |
| 303 | {NULL, required_argument, NULL, 'y'}, |
| 304 | {NULL, 0, NULL, 0} |
| 305 | }; |
Radek Krejci | 241f6b5 | 2020-05-21 18:13:49 +0200 | [diff] [blame] | 306 | struct ly_out *out = NULL; |
Radek Krejci | ed5acc5 | 2019-04-25 15:57:04 +0200 | [diff] [blame] | 307 | struct ly_ctx *ctx = NULL; |
| 308 | const struct lys_module *mod; |
| 309 | LYS_OUTFORMAT outformat_s = 0; |
| 310 | LYS_INFORMAT informat_s; |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 311 | LYD_FORMAT informat_d, outformat_d = 0; |
Radek Krejci | ed5acc5 | 2019-04-25 15:57:04 +0200 | [diff] [blame] | 312 | #if 0 |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 313 | LYD_FORMAT ylformat = 0; |
Radek Krejci | ed5acc5 | 2019-04-25 15:57:04 +0200 | [diff] [blame] | 314 | #endif |
| 315 | struct ly_set *searchpaths = NULL; |
| 316 | const char *outtarget_s = NULL; |
| 317 | char **feat = NULL, *ptr, *featlist, *dir; |
| 318 | struct stat st; |
| 319 | uint32_t u; |
| 320 | int options_ctx = LY_CTX_NOYANGLIBRARY, list = 0, outoptions_s = 0, outline_length_s = 0; |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 321 | int autodetection = 0, options_parser = 0, merge = 0; |
| 322 | const char *oper_file = NULL; |
Radek Krejci | ed5acc5 | 2019-04-25 15:57:04 +0200 | [diff] [blame] | 323 | #if 0 |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 324 | const char *envelope_s = NULL; |
Radek Krejci | ed5acc5 | 2019-04-25 15:57:04 +0200 | [diff] [blame] | 325 | char *ylpath = NULL; |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 326 | int options_dflt = 0, envelope = 0; |
| 327 | struct lyxml_elem *iter, *elem; |
| 328 | struct *subroot, *next, *node; |
| 329 | #endif |
Michal Vasko | f03ed03 | 2020-03-04 13:31:44 +0100 | [diff] [blame] | 330 | struct lyd_node *tree = NULL; |
Radek Krejci | ed5acc5 | 2019-04-25 15:57:04 +0200 | [diff] [blame] | 331 | struct dataitem { |
| 332 | const char *filename; |
Radek Krejci | ed5acc5 | 2019-04-25 15:57:04 +0200 | [diff] [blame] | 333 | struct lyd_node *tree; |
| 334 | struct dataitem *next; |
| 335 | LYD_FORMAT format; |
Michal Vasko | a388136 | 2020-01-21 15:57:35 +0100 | [diff] [blame] | 336 | int flags; |
Radek Krejci | ed5acc5 | 2019-04-25 15:57:04 +0200 | [diff] [blame] | 337 | } *data = NULL, *data_item, *data_prev = NULL; |
Radek Krejci | ed5acc5 | 2019-04-25 15:57:04 +0200 | [diff] [blame] | 338 | struct ly_set *mods = NULL; |
| 339 | void *p; |
| 340 | int index = 0; |
| 341 | |
| 342 | opterr = 0; |
| 343 | #ifndef NDEBUG |
Radek Krejci | 693262f | 2019-04-29 15:23:20 +0200 | [diff] [blame] | 344 | while ((opt = getopt_long(argc, argv, "acd:f:F:gunP:L:hHiDlmo:p:r:O:st:vVG:y:", options, &opt_index)) != -1) |
Radek Krejci | ed5acc5 | 2019-04-25 15:57:04 +0200 | [diff] [blame] | 345 | #else |
Radek Krejci | 693262f | 2019-04-29 15:23:20 +0200 | [diff] [blame] | 346 | while ((opt = getopt_long(argc, argv, "acd:f:F:gunP:L:hHiDlmo:p:r:O:st:vVy:", options, &opt_index)) != -1) |
Radek Krejci | ed5acc5 | 2019-04-25 15:57:04 +0200 | [diff] [blame] | 347 | #endif |
| 348 | { |
| 349 | switch (opt) { |
| 350 | #if 0 |
| 351 | case 'a': |
| 352 | envelope = 1; |
| 353 | break; |
| 354 | case 'd': |
| 355 | if (!strcmp(optarg, "all")) { |
| 356 | options_dflt = (options_dflt & ~LYP_WD_MASK) | LYP_WD_ALL; |
| 357 | } else if (!strcmp(optarg, "all-tagged")) { |
| 358 | options_dflt = (options_dflt & ~LYP_WD_MASK) | LYP_WD_ALL_TAG; |
| 359 | } else if (!strcmp(optarg, "trim")) { |
| 360 | options_dflt = (options_dflt & ~LYP_WD_MASK) | LYP_WD_TRIM; |
| 361 | } else if (!strcmp(optarg, "implicit-tagged")) { |
| 362 | options_dflt = (options_dflt & ~LYP_WD_MASK) | LYP_WD_IMPL_TAG; |
| 363 | } else { |
| 364 | fprintf(stderr, "yanglint error: unknown default mode %s\n", optarg); |
| 365 | help(1); |
| 366 | goto cleanup; |
| 367 | } |
| 368 | break; |
| 369 | #endif |
| 370 | case 'f': |
| 371 | if (!strcasecmp(optarg, "yang")) { |
| 372 | outformat_s = LYS_OUT_YANG; |
Radek Krejci | ed5acc5 | 2019-04-25 15:57:04 +0200 | [diff] [blame] | 373 | outformat_d = 0; |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 374 | #if 0 |
Radek Krejci | ed5acc5 | 2019-04-25 15:57:04 +0200 | [diff] [blame] | 375 | } else if (!strcasecmp(optarg, "tree")) { |
| 376 | outformat_s = LYS_OUT_TREE; |
| 377 | outformat_d = 0; |
| 378 | } else if (!strcasecmp(optarg, "tree-rfc")) { |
| 379 | outformat_s = LYS_OUT_TREE; |
| 380 | outoptions_s |= LYS_OUTOPT_TREE_RFC; |
| 381 | outformat_d = 0; |
FredGan | d944bdc | 2019-11-05 21:57:07 +0800 | [diff] [blame] | 382 | #endif |
Radek Krejci | ed5acc5 | 2019-04-25 15:57:04 +0200 | [diff] [blame] | 383 | } else if (!strcasecmp(optarg, "yin")) { |
| 384 | outformat_s = LYS_OUT_YIN; |
| 385 | outformat_d = 0; |
Radek Krejci | d8c0f5e | 2019-11-17 12:18:34 +0800 | [diff] [blame] | 386 | } else if (!strcasecmp(optarg, "info")) { |
| 387 | outformat_s = LYS_OUT_YANG_COMPILED; |
Radek Krejci | ed5acc5 | 2019-04-25 15:57:04 +0200 | [diff] [blame] | 388 | outformat_d = 0; |
| 389 | } else if (!strcasecmp(optarg, "xml")) { |
| 390 | outformat_s = 0; |
| 391 | outformat_d = LYD_XML; |
| 392 | } else if (!strcasecmp(optarg, "json")) { |
| 393 | outformat_s = 0; |
| 394 | outformat_d = LYD_JSON; |
Radek Krejci | ed5acc5 | 2019-04-25 15:57:04 +0200 | [diff] [blame] | 395 | } else { |
| 396 | fprintf(stderr, "yanglint error: unknown output format %s\n", optarg); |
| 397 | help(1); |
| 398 | goto cleanup; |
| 399 | } |
| 400 | break; |
| 401 | case 'F': |
| 402 | featsize++; |
| 403 | if (!feat) { |
| 404 | p = malloc(sizeof *feat); |
| 405 | } else { |
| 406 | p = realloc(feat, featsize * sizeof *feat); |
| 407 | } |
| 408 | if (!p) { |
| 409 | fprintf(stderr, "yanglint error: Memory allocation failed (%s:%d, %s)", __FILE__, __LINE__, strerror(errno)); |
| 410 | goto cleanup; |
| 411 | } |
| 412 | feat = p; |
| 413 | feat[featsize - 1] = strdup(optarg); |
| 414 | ptr = strchr(feat[featsize - 1], ':'); |
| 415 | if (!ptr) { |
| 416 | fprintf(stderr, "yanglint error: Invalid format of the features specification (%s)", optarg); |
| 417 | goto cleanup; |
| 418 | } |
| 419 | *ptr = '\0'; |
| 420 | |
| 421 | break; |
| 422 | #if 0 |
| 423 | case 'g': |
| 424 | outoptions_s |= LYS_OUTOPT_TREE_GROUPING; |
| 425 | break; |
| 426 | case 'u': |
| 427 | outoptions_s |= LYS_OUTOPT_TREE_USES; |
| 428 | break; |
| 429 | case 'n': |
| 430 | outoptions_s |= LYS_OUTOPT_TREE_NO_LEAFREF; |
| 431 | break; |
Radek Krejci | e1f6d5a | 2019-11-17 14:03:04 +0800 | [diff] [blame] | 432 | #endif |
Radek Krejci | ed5acc5 | 2019-04-25 15:57:04 +0200 | [diff] [blame] | 433 | case 'P': |
| 434 | outtarget_s = optarg; |
| 435 | break; |
Radek Krejci | e1f6d5a | 2019-11-17 14:03:04 +0800 | [diff] [blame] | 436 | #if 0 |
Radek Krejci | ed5acc5 | 2019-04-25 15:57:04 +0200 | [diff] [blame] | 437 | case 'L': |
| 438 | outline_length_s = atoi(optarg); |
| 439 | break; |
| 440 | #endif |
| 441 | case 'h': |
| 442 | help(0); |
| 443 | ret = EXIT_SUCCESS; |
| 444 | goto cleanup; |
| 445 | #if 0 |
| 446 | case 'H': |
| 447 | tree_help(); |
| 448 | ret = EXIT_SUCCESS; |
| 449 | goto cleanup; |
| 450 | #endif |
| 451 | case 'i': |
| 452 | options_ctx |= LY_CTX_ALLIMPLEMENTED; |
| 453 | break; |
| 454 | case 'D': |
| 455 | if (options_ctx & LY_CTX_DISABLE_SEARCHDIRS) { |
| 456 | fprintf(stderr, "yanglint error: -D specified too many times.\n"); |
| 457 | goto cleanup; |
| 458 | } else if (options_ctx & LY_CTX_DISABLE_SEARCHDIR_CWD) { |
| 459 | options_ctx &= ~LY_CTX_DISABLE_SEARCHDIR_CWD; |
| 460 | options_ctx |= LY_CTX_DISABLE_SEARCHDIRS; |
| 461 | } else { |
| 462 | options_ctx |= LY_CTX_DISABLE_SEARCHDIR_CWD; |
| 463 | } |
| 464 | break; |
| 465 | case 'l': |
| 466 | list = 1; |
| 467 | break; |
| 468 | #if 0 |
| 469 | case 'm': |
| 470 | merge = 1; |
| 471 | break; |
| 472 | #endif |
| 473 | case 'o': |
Radek Krejci | a5bba31 | 2020-01-09 15:41:20 +0100 | [diff] [blame] | 474 | if (out) { |
Radek Krejci | 241f6b5 | 2020-05-21 18:13:49 +0200 | [diff] [blame] | 475 | if (ly_out_filepath(out, optarg) != NULL) { |
Radek Krejci | a5bba31 | 2020-01-09 15:41:20 +0100 | [diff] [blame] | 476 | fprintf(stderr, "yanglint error: unable open output file %s (%s)\n", optarg, strerror(errno)); |
| 477 | goto cleanup; |
| 478 | } |
| 479 | } else { |
Radek Krejci | 84ce7b1 | 2020-06-11 17:28:25 +0200 | [diff] [blame] | 480 | if (ly_out_new_filepath(optarg, &out)) { |
Radek Krejci | a5bba31 | 2020-01-09 15:41:20 +0100 | [diff] [blame] | 481 | fprintf(stderr, "yanglint error: unable open output file %s (%s)\n", optarg, strerror(errno)); |
| 482 | goto cleanup; |
| 483 | } |
Radek Krejci | ed5acc5 | 2019-04-25 15:57:04 +0200 | [diff] [blame] | 484 | } |
| 485 | break; |
| 486 | case 'p': |
| 487 | if (stat(optarg, &st) == -1) { |
| 488 | fprintf(stderr, "yanglint error: Unable to use search path (%s) - %s.\n", optarg, strerror(errno)); |
| 489 | goto cleanup; |
| 490 | } |
| 491 | if (!S_ISDIR(st.st_mode)) { |
| 492 | fprintf(stderr, "yanglint error: Provided search path is not a directory.\n"); |
| 493 | goto cleanup; |
| 494 | } |
| 495 | if (!searchpaths) { |
| 496 | searchpaths = ly_set_new(); |
| 497 | } |
| 498 | ly_set_add(searchpaths, optarg, 0); |
| 499 | break; |
| 500 | #if 0 |
| 501 | case 'r': |
| 502 | case 'O': |
| 503 | if (oper_file || (options_parser & LYD_OPT_NOEXTDEPS)) { |
| 504 | fprintf(stderr, "yanglint error: The operational datastore (-O) cannot be set multiple times.\n"); |
| 505 | goto cleanup; |
| 506 | } |
| 507 | if (optarg[0] == '!') { |
| 508 | /* ignore extenral dependencies to the operational datastore */ |
| 509 | options_parser |= LYD_OPT_NOEXTDEPS; |
| 510 | } else { |
| 511 | /* external file with the operational datastore */ |
| 512 | oper_file = optarg; |
| 513 | } |
| 514 | break; |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 515 | #endif |
Radek Krejci | ed5acc5 | 2019-04-25 15:57:04 +0200 | [diff] [blame] | 516 | case 's': |
Radek Krejci | 7931b19 | 2020-06-25 17:05:03 +0200 | [diff] [blame] | 517 | options_parser |= LYD_PARSE_STRICT; |
Radek Krejci | ed5acc5 | 2019-04-25 15:57:04 +0200 | [diff] [blame] | 518 | break; |
| 519 | case 't': |
| 520 | if (!strcmp(optarg, "auto")) { |
Radek Krejci | ed5acc5 | 2019-04-25 15:57:04 +0200 | [diff] [blame] | 521 | autodetection = 1; |
Michal Vasko | b36053d | 2020-03-26 15:49:30 +0100 | [diff] [blame] | 522 | /*} else if (!strcmp(optarg, "config")) { |
Michal Vasko | a388136 | 2020-01-21 15:57:35 +0100 | [diff] [blame] | 523 | options_parser |= LYD_OPT_CONFIG; |
Radek Krejci | ed5acc5 | 2019-04-25 15:57:04 +0200 | [diff] [blame] | 524 | } else if (!strcmp(optarg, "get")) { |
Michal Vasko | a388136 | 2020-01-21 15:57:35 +0100 | [diff] [blame] | 525 | options_parser |= LYD_OPT_GET; |
Radek Krejci | ed5acc5 | 2019-04-25 15:57:04 +0200 | [diff] [blame] | 526 | } else if (!strcmp(optarg, "getconfig")) { |
Michal Vasko | a388136 | 2020-01-21 15:57:35 +0100 | [diff] [blame] | 527 | options_parser |= LYD_OPT_GETCONFIG; |
Michal Vasko | b36053d | 2020-03-26 15:49:30 +0100 | [diff] [blame] | 528 | } else if (!strcmp(optarg, "edit")) { |
Michal Vasko | 9f96a05 | 2020-03-10 09:41:45 +0100 | [diff] [blame] | 529 | options_parser |= LYD_OPT_EDIT;*/ |
Radek Krejci | ed5acc5 | 2019-04-25 15:57:04 +0200 | [diff] [blame] | 530 | } else if (!strcmp(optarg, "data")) { |
Michal Vasko | a388136 | 2020-01-21 15:57:35 +0100 | [diff] [blame] | 531 | /* no options */ |
Radek Krejci | ed5acc5 | 2019-04-25 15:57:04 +0200 | [diff] [blame] | 532 | } else { |
| 533 | fprintf(stderr, "yanglint error: unknown data tree type %s\n", optarg); |
| 534 | help(1); |
| 535 | goto cleanup; |
| 536 | } |
| 537 | break; |
Radek Krejci | ed5acc5 | 2019-04-25 15:57:04 +0200 | [diff] [blame] | 538 | case 'v': |
| 539 | version(); |
| 540 | ret = EXIT_SUCCESS; |
| 541 | goto cleanup; |
| 542 | case 'V': |
| 543 | verbose++; |
| 544 | break; |
| 545 | #ifndef NDEBUG |
| 546 | case 'G': |
| 547 | u = 0; |
| 548 | ptr = optarg; |
| 549 | while (ptr[0]) { |
| 550 | if (!strncmp(ptr, "dict", 4)) { |
| 551 | u |= LY_LDGDICT; |
| 552 | ptr += 4; |
| 553 | } else if (!strncmp(ptr, "yang", 4)) { |
| 554 | u |= LY_LDGYANG; |
| 555 | ptr += 4; |
| 556 | } else if (!strncmp(ptr, "yin", 3)) { |
| 557 | u |= LY_LDGYIN; |
| 558 | ptr += 3; |
| 559 | } else if (!strncmp(ptr, "xpath", 5)) { |
| 560 | u |= LY_LDGXPATH; |
| 561 | ptr += 5; |
| 562 | } else if (!strncmp(ptr, "diff", 4)) { |
| 563 | u |= LY_LDGDIFF; |
| 564 | ptr += 4; |
| 565 | } |
| 566 | |
| 567 | if (ptr[0]) { |
| 568 | if (ptr[0] != ',') { |
| 569 | fprintf(stderr, "yanglint error: unknown debug group string \"%s\"\n", optarg); |
| 570 | goto cleanup; |
| 571 | } |
| 572 | ++ptr; |
| 573 | } |
| 574 | } |
| 575 | ly_verb_dbg(u); |
| 576 | break; |
| 577 | #endif |
| 578 | #if 0 |
| 579 | case 'y': |
| 580 | ptr = strrchr(optarg, '.'); |
| 581 | if (ptr) { |
| 582 | ptr++; |
| 583 | if (!strcmp(ptr, "xml")) { |
| 584 | ylformat = LYD_XML; |
| 585 | } else if (!strcmp(ptr, "json")) { |
| 586 | ylformat = LYD_JSON; |
| 587 | } else { |
| 588 | fprintf(stderr, "yanglint error: yang-library file in an unknown format \"%s\".\n", ptr); |
| 589 | goto cleanup; |
| 590 | } |
| 591 | } else { |
| 592 | fprintf(stderr, "yanglint error: yang-library file in an unknown format.\n"); |
| 593 | goto cleanup; |
| 594 | } |
| 595 | ylpath = optarg; |
| 596 | break; |
| 597 | #endif |
| 598 | default: |
| 599 | help(1); |
| 600 | if (optopt) { |
| 601 | fprintf(stderr, "yanglint error: invalid option: -%c\n", optopt); |
| 602 | } else { |
| 603 | fprintf(stderr, "yanglint error: invalid option: %s\n", argv[optind - 1]); |
| 604 | } |
| 605 | goto cleanup; |
| 606 | } |
| 607 | } |
| 608 | |
| 609 | /* check options compatibility */ |
| 610 | if (!list && optind >= argc) { |
| 611 | help(1); |
| 612 | fprintf(stderr, "yanglint error: missing <file> to process\n"); |
| 613 | goto cleanup; |
| 614 | } |
Radek Krejci | ed5acc5 | 2019-04-25 15:57:04 +0200 | [diff] [blame] | 615 | if (outformat_s && outformat_s != LYS_OUT_TREE && (optind + 1) < argc) { |
| 616 | /* we have multiple schemas to be printed as YIN or YANG */ |
| 617 | fprintf(stderr, "yanglint error: too many schemas to convert and store.\n"); |
| 618 | goto cleanup; |
| 619 | } |
| 620 | if (outoptions_s || outtarget_s || outline_length_s) { |
| 621 | #if 0 |
| 622 | if (outformat_d || (outformat_s && outformat_s != LYS_OUT_TREE)) { |
| 623 | /* we have --tree-print-grouping with other output format than tree */ |
| 624 | fprintf(stderr, |
| 625 | "yanglint warning: --tree options take effect only in case of the tree output format.\n"); |
| 626 | } |
| 627 | } |
| 628 | if (merge) { |
| 629 | if (autodetection || (options_parser & (LYD_OPT_RPC | LYD_OPT_RPCREPLY | LYD_OPT_NOTIF))) { |
| 630 | fprintf(stderr, "yanglint warning: merging not allowed, ignoring option -m.\n"); |
| 631 | merge = 0; |
| 632 | } else { |
| 633 | /* first, files will be parsed as trusted to allow missing data, then the data trees will be merged |
| 634 | * and the result will be validated */ |
| 635 | options_parser |= LYD_OPT_TRUSTED; |
| 636 | } |
| 637 | #endif |
| 638 | } |
| 639 | #if 0 |
| 640 | if (!outformat_d && options_dflt) { |
| 641 | /* we have options for printing default nodes, but data output not specified */ |
| 642 | fprintf(stderr, "yanglint warning: default mode is ignored when not printing data.\n"); |
| 643 | } |
| 644 | if (outformat_s && (options_parser || autodetection)) { |
| 645 | /* we have options for printing data tree, but output is schema */ |
| 646 | fprintf(stderr, "yanglint warning: data parser options are ignored when printing schema.\n"); |
| 647 | } |
| 648 | if (oper_file && (!autodetection && !(options_parser & (LYD_OPT_RPC | LYD_OPT_RPCREPLY | LYD_OPT_NOTIF)))) { |
| 649 | fprintf(stderr, "yanglint warning: operational datastore applies only to RPCs or Notifications.\n"); |
| 650 | /* ignore operational datastore file */ |
| 651 | oper_file = NULL; |
| 652 | } |
| 653 | if ((options_parser & LYD_OPT_TYPEMASK) == LYD_OPT_DATA) { |
| 654 | /* add option to ignore ietf-yang-library data for implicit data type */ |
| 655 | options_parser |= LYD_OPT_DATA_NO_YANGLIB; |
| 656 | } |
Michal Vasko | a388136 | 2020-01-21 15:57:35 +0100 | [diff] [blame] | 657 | #endif |
Radek Krejci | ed5acc5 | 2019-04-25 15:57:04 +0200 | [diff] [blame] | 658 | |
| 659 | /* set callback for printing libyang messages */ |
| 660 | ly_set_log_clb(libyang_verbclb, 1); |
| 661 | #if 0 |
| 662 | /* create libyang context */ |
| 663 | if (ylpath) { |
| 664 | ctx = ly_ctx_new_ylpath(searchpaths ? (const char*)searchpaths->set.g[0] : NULL, ylpath, ylformat, options_ctx); |
| 665 | } else { |
| 666 | #else |
| 667 | { |
| 668 | #endif |
| 669 | ly_ctx_new(NULL, options_ctx, &ctx); |
| 670 | } |
| 671 | if (!ctx) { |
| 672 | goto cleanup; |
| 673 | } |
| 674 | |
| 675 | /* set searchpaths */ |
| 676 | if (searchpaths) { |
| 677 | for (u = 0; u < searchpaths->count; u++) { |
| 678 | ly_ctx_set_searchdir(ctx, (const char*)searchpaths->objs[u]); |
| 679 | } |
Radek Krejci | 8312649 | 2020-08-15 15:40:04 +0200 | [diff] [blame^] | 680 | /* remember the number of set paths, respectively the first index after the set serchpaths |
| 681 | * to know what index is supposed to be removed in case of adding some implicit paths later */ |
| 682 | index = u; |
Radek Krejci | ed5acc5 | 2019-04-25 15:57:04 +0200 | [diff] [blame] | 683 | } |
| 684 | |
| 685 | /* derefered setting of verbosity in libyang after context initiation */ |
| 686 | ly_verb(verbose); |
| 687 | |
| 688 | mods = ly_set_new(); |
| 689 | |
| 690 | |
| 691 | /* divide input files */ |
| 692 | for (i = 0; i < argc - optind; i++) { |
| 693 | /* get the file format */ |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 694 | if (!get_fileformat(argv[optind + i], &informat_s, &informat_d)) { |
Radek Krejci | ed5acc5 | 2019-04-25 15:57:04 +0200 | [diff] [blame] | 695 | goto cleanup; |
| 696 | } |
| 697 | |
| 698 | if (informat_s) { |
| 699 | /* load/validate schema */ |
Radek Krejci | 8312649 | 2020-08-15 15:40:04 +0200 | [diff] [blame^] | 700 | int unset_path = 1; |
| 701 | |
Radek Krejci | ed5acc5 | 2019-04-25 15:57:04 +0200 | [diff] [blame] | 702 | if (verbose >= 2) { |
| 703 | fprintf(stdout, "Validating %s schema file.\n", argv[optind + i]); |
| 704 | } |
Radek Krejci | 8312649 | 2020-08-15 15:40:04 +0200 | [diff] [blame^] | 705 | |
| 706 | /* add temporarily also the path of the module itself */ |
Radek Krejci | ed5acc5 | 2019-04-25 15:57:04 +0200 | [diff] [blame] | 707 | dir = strdup(argv[optind + i]); |
Radek Krejci | 8312649 | 2020-08-15 15:40:04 +0200 | [diff] [blame^] | 708 | if (ly_ctx_set_searchdir(ctx, ptr = dirname(dir)) == LY_EEXIST) { |
| 709 | unset_path = 0; |
| 710 | } |
Michal Vasko | 3a41dff | 2020-07-15 14:30:28 +0200 | [diff] [blame] | 711 | lys_parse_path(ctx, argv[optind + i], informat_s, &mod); |
Radek Krejci | 8312649 | 2020-08-15 15:40:04 +0200 | [diff] [blame^] | 712 | if (unset_path) { |
| 713 | ly_ctx_unset_searchdir(ctx, index); |
| 714 | } |
Radek Krejci | ed5acc5 | 2019-04-25 15:57:04 +0200 | [diff] [blame] | 715 | free(dir); |
| 716 | if (!mod) { |
| 717 | goto cleanup; |
| 718 | } |
| 719 | ly_set_add(mods, (void *)mod, 0); |
Radek Krejci | ed5acc5 | 2019-04-25 15:57:04 +0200 | [diff] [blame] | 720 | } else { |
| 721 | if (autodetection && informat_d != LYD_XML) { |
| 722 | /* data file content autodetection is possible only for XML input */ |
| 723 | fprintf(stderr, "yanglint error: data type autodetection is applicable only to XML files.\n"); |
| 724 | goto cleanup; |
| 725 | } |
| 726 | |
| 727 | /* remember data filename and its format */ |
| 728 | if (!data) { |
| 729 | data = data_item = malloc(sizeof *data); |
| 730 | } else { |
| 731 | for (data_item = data; data_item->next; data_item = data_item->next); |
| 732 | data_item->next = malloc(sizeof *data_item); |
| 733 | data_item = data_item->next; |
| 734 | } |
| 735 | data_item->filename = argv[optind + i]; |
| 736 | data_item->format = informat_d; |
Michal Vasko | a388136 | 2020-01-21 15:57:35 +0100 | [diff] [blame] | 737 | data_item->flags = options_parser; |
Radek Krejci | ed5acc5 | 2019-04-25 15:57:04 +0200 | [diff] [blame] | 738 | data_item->tree = NULL; |
Radek Krejci | ed5acc5 | 2019-04-25 15:57:04 +0200 | [diff] [blame] | 739 | data_item->next = NULL; |
Radek Krejci | ed5acc5 | 2019-04-25 15:57:04 +0200 | [diff] [blame] | 740 | } |
| 741 | } |
Radek Krejci | ed5acc5 | 2019-04-25 15:57:04 +0200 | [diff] [blame] | 742 | if (outformat_d && !data && !list) { |
| 743 | fprintf(stderr, "yanglint error: no input data file for the specified data output format.\n"); |
| 744 | goto cleanup; |
| 745 | } |
Radek Krejci | ed5acc5 | 2019-04-25 15:57:04 +0200 | [diff] [blame] | 746 | |
| 747 | /* enable specified features, if not specified, all the module's features are enabled */ |
| 748 | u = 4; /* skip internal libyang modules */ |
| 749 | while ((mod = ly_ctx_get_module_iter(ctx, &u))) { |
Radek Krejci | 3d46f61 | 2020-08-13 12:01:53 +0200 | [diff] [blame] | 750 | if (!mod->implemented) { |
| 751 | continue; |
| 752 | } |
| 753 | |
Radek Krejci | ed5acc5 | 2019-04-25 15:57:04 +0200 | [diff] [blame] | 754 | for (i = 0; i < featsize; i++) { |
| 755 | if (!strcmp(feat[i], mod->name)) { |
| 756 | /* parse features spec */ |
| 757 | featlist = strdup(feat[i] + strlen(feat[i]) + 1); |
| 758 | ptr = NULL; |
| 759 | while((ptr = strtok(ptr ? NULL : featlist, ","))) { |
| 760 | if (verbose >= 2) { |
| 761 | fprintf(stdout, "Enabling feature %s in module %s.\n", ptr, mod->name); |
| 762 | } |
| 763 | if (lys_feature_enable(mod, ptr)) { |
| 764 | fprintf(stderr, "Feature %s not defined in module %s.\n", ptr, mod->name); |
| 765 | } |
| 766 | } |
| 767 | free(featlist); |
| 768 | break; |
| 769 | } |
| 770 | } |
| 771 | if (i == featsize) { |
| 772 | if (verbose >= 2) { |
| 773 | fprintf(stdout, "Enabling all features in module %s.\n", mod->name); |
| 774 | } |
| 775 | lys_feature_enable(mod, "*"); |
| 776 | } |
| 777 | } |
| 778 | |
| 779 | /* convert (print) to FORMAT */ |
| 780 | if (outformat_s) { |
Radek Krejci | e1f6d5a | 2019-11-17 14:03:04 +0800 | [diff] [blame] | 781 | if (outtarget_s) { |
Radek Krejci | a5bba31 | 2020-01-09 15:41:20 +0100 | [diff] [blame] | 782 | const struct lysc_node *node = lys_find_node(ctx, NULL, outtarget_s); |
| 783 | if (node) { |
| 784 | lys_print_node(out, node, outformat_s, outline_length_s, outoptions_s); |
| 785 | } else { |
| 786 | fprintf(stderr, "yanglint error: The requested schema node \"%s\" does not exists.\n", outtarget_s); |
| 787 | } |
Radek Krejci | e1f6d5a | 2019-11-17 14:03:04 +0800 | [diff] [blame] | 788 | } else { |
| 789 | for (u = 0; u < mods->count; u++) { |
| 790 | if (u) { |
Radek Krejci | 241f6b5 | 2020-05-21 18:13:49 +0200 | [diff] [blame] | 791 | ly_print(out, "\n"); |
Radek Krejci | e1f6d5a | 2019-11-17 14:03:04 +0800 | [diff] [blame] | 792 | } |
Michal Vasko | 7c8439f | 2020-08-05 13:25:19 +0200 | [diff] [blame] | 793 | lys_print_module(out, (struct lys_module *)mods->objs[u], outformat_s, outline_length_s, outoptions_s); |
Radek Krejci | ed5acc5 | 2019-04-25 15:57:04 +0200 | [diff] [blame] | 794 | } |
| 795 | } |
Radek Krejci | ed5acc5 | 2019-04-25 15:57:04 +0200 | [diff] [blame] | 796 | } else if (data) { |
Radek Krejci | ed5acc5 | 2019-04-25 15:57:04 +0200 | [diff] [blame] | 797 | |
| 798 | /* prepare operational datastore when specified for RPC/Notification */ |
| 799 | if (oper_file) { |
Radek Krejci | 7931b19 | 2020-06-25 17:05:03 +0200 | [diff] [blame] | 800 | struct ly_in *in; |
| 801 | tree = NULL; |
| 802 | |
| 803 | if (ly_in_new_filepath(oper_file, 0, &in)) { |
| 804 | fprintf(stderr, "yanglint error: Unable to open an operational data file \"%s\".\n", oper_file); |
Radek Krejci | ed5acc5 | 2019-04-25 15:57:04 +0200 | [diff] [blame] | 805 | goto cleanup; |
| 806 | } |
Radek Krejci | 7931b19 | 2020-06-25 17:05:03 +0200 | [diff] [blame] | 807 | if (lyd_parse_data(ctx, in, 0, LYD_PARSE_ONLY, 0, &tree) || !tree) { |
Radek Krejci | ed5acc5 | 2019-04-25 15:57:04 +0200 | [diff] [blame] | 808 | fprintf(stderr, "yanglint error: Failed to parse the operational datastore file for RPC/Notification validation.\n"); |
Radek Krejci | 7931b19 | 2020-06-25 17:05:03 +0200 | [diff] [blame] | 809 | ly_in_free(in, 0); |
Radek Krejci | ed5acc5 | 2019-04-25 15:57:04 +0200 | [diff] [blame] | 810 | goto cleanup; |
| 811 | } |
Radek Krejci | 7931b19 | 2020-06-25 17:05:03 +0200 | [diff] [blame] | 812 | ly_in_free(in, 0); |
Radek Krejci | ed5acc5 | 2019-04-25 15:57:04 +0200 | [diff] [blame] | 813 | } |
| 814 | |
| 815 | for (data_item = data, data_prev = NULL; data_item; data_prev = data_item, data_item = data_item->next) { |
| 816 | /* parse data file - via LYD_OPT_TRUSTED postpone validation when all data are loaded and merged */ |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 817 | #if 0 |
Radek Krejci | ed5acc5 | 2019-04-25 15:57:04 +0200 | [diff] [blame] | 818 | if (autodetection) { |
| 819 | /* erase option not covered by LYD_OPT_TYPEMASK, but used according to the type */ |
| 820 | options_parser &= ~LYD_OPT_DATA_NO_YANGLIB; |
| 821 | /* automatically detect data type from the data top level */ |
| 822 | data_item->xml = lyxml_parse_path(ctx, data_item->filename, 0); |
| 823 | if (!data_item->xml) { |
| 824 | fprintf(stderr, "yanglint error: parsing XML data for data type autodetection failed.\n"); |
| 825 | goto cleanup; |
| 826 | } |
| 827 | |
| 828 | /* NOTE: namespace is ignored to simplify usage of this feature */ |
| 829 | if (!strcmp(data_item->xml->name, "data")) { |
| 830 | if (verbose >= 2) { |
| 831 | fprintf(stdout, "Parsing %s as complete datastore.\n", data_item->filename); |
| 832 | } |
| 833 | options_parser = (options_parser & ~LYD_OPT_TYPEMASK) | LYD_OPT_DATA_NO_YANGLIB; |
| 834 | data_item->type = LYD_OPT_DATA; |
| 835 | } else if (!strcmp(data_item->xml->name, "config")) { |
| 836 | if (verbose >= 2) { |
| 837 | fprintf(stdout, "Parsing %s as config data.\n", data_item->filename); |
| 838 | } |
| 839 | options_parser = (options_parser & ~LYD_OPT_TYPEMASK) | LYD_OPT_CONFIG; |
| 840 | data_item->type = LYD_OPT_CONFIG; |
| 841 | } else if (!strcmp(data_item->xml->name, "get-reply")) { |
| 842 | if (verbose >= 2) { |
| 843 | fprintf(stdout, "Parsing %s as <get> reply data.\n", data_item->filename); |
| 844 | } |
| 845 | options_parser = (options_parser & ~LYD_OPT_TYPEMASK) | LYD_OPT_GET; |
| 846 | data_item->type = LYD_OPT_GET; |
| 847 | } else if (!strcmp(data_item->xml->name, "get-config-reply")) { |
| 848 | if (verbose >= 2) { |
| 849 | fprintf(stdout, "Parsing %s as <get-config> reply data.\n", data_item->filename); |
| 850 | } |
| 851 | options_parser = (options_parser & ~LYD_OPT_TYPEMASK) | LYD_OPT_GETCONFIG; |
| 852 | data_item->type = LYD_OPT_GETCONFIG; |
| 853 | } else if (!strcmp(data_item->xml->name, "edit-config")) { |
| 854 | if (verbose >= 2) { |
| 855 | fprintf(stdout, "Parsing %s as <edit-config> data.\n", data_item->filename); |
| 856 | } |
| 857 | options_parser = (options_parser & ~LYD_OPT_TYPEMASK) | LYD_OPT_EDIT; |
| 858 | data_item->type = LYD_OPT_EDIT; |
| 859 | } else if (!strcmp(data_item->xml->name, "rpc")) { |
| 860 | if (verbose >= 2) { |
| 861 | fprintf(stdout, "Parsing %s as <rpc> data.\n", data_item->filename); |
| 862 | } |
| 863 | options_parser = (options_parser & ~LYD_OPT_TYPEMASK) | LYD_OPT_RPC; |
| 864 | data_item->type = LYD_OPT_RPC; |
| 865 | } else if (!strcmp(data_item->xml->name, "rpc-reply")) { |
| 866 | if (verbose >= 2) { |
| 867 | fprintf(stdout, "Parsing %s as <rpc-reply> data.\n", data_item->filename); |
| 868 | } |
| 869 | |
| 870 | data_item->type = LYD_OPT_RPCREPLY; |
| 871 | if (!data_item->next || (data_prev && !data_prev->tree)) { |
| 872 | fprintf(stderr, "RPC reply (%s) must be paired with the original RPC, see help.\n", data_item->filename); |
| 873 | goto cleanup; |
| 874 | } |
| 875 | |
| 876 | continue; |
| 877 | } else if (!strcmp(data_item->xml->name, "notification")) { |
| 878 | if (verbose >= 2) { |
| 879 | fprintf(stdout, "Parsing %s as <notification> data.\n", data_item->filename); |
| 880 | } |
| 881 | options_parser = (options_parser & ~LYD_OPT_TYPEMASK) | LYD_OPT_NOTIF; |
| 882 | data_item->type = LYD_OPT_NOTIF; |
| 883 | |
| 884 | /* ignore eventTime element if present */ |
| 885 | while (data_item->xml->child && !strcmp(data_item->xml->child->name, "eventTime")) { |
| 886 | lyxml_free(ctx, data_item->xml->child); |
| 887 | } |
| 888 | } else { |
| 889 | fprintf(stderr, "yanglint error: invalid top-level element \"%s\" for data type autodetection.\n", |
| 890 | data_item->xml->name); |
| 891 | goto cleanup; |
| 892 | } |
| 893 | |
| 894 | data_item->tree = lyd_parse_xml(ctx, &data_item->xml->child, options_parser, oper); |
| 895 | if (data_prev && data_prev->type == LYD_OPT_RPCREPLY) { |
| 896 | parse_reply: |
| 897 | /* check result of the RPC parsing, we are going to do another parsing in this step */ |
| 898 | if (ly_errno) { |
| 899 | goto cleanup; |
| 900 | } |
| 901 | |
| 902 | /* check that we really have RPC for the reply */ |
| 903 | if (data_item->type != LYD_OPT_RPC) { |
| 904 | fprintf(stderr, "yanglint error: RPC reply (%s) must be paired with the original RPC, see help.\n", data_prev->filename); |
| 905 | goto cleanup; |
| 906 | } |
| 907 | |
| 908 | if (data_prev->format == LYD_XML) { |
| 909 | /* ignore <ok> and <rpc-error> elements if present */ |
| 910 | u = 0; |
| 911 | LY_TREE_FOR_SAFE(data_prev->xml->child, iter, elem) { |
| 912 | if (!strcmp(data_prev->xml->child->name, "ok")) { |
| 913 | if (u) { |
| 914 | /* rpc-error or ok already present */ |
| 915 | u = 0x8; /* error flag */ |
| 916 | } else { |
| 917 | u = 0x1 | 0x4; /* <ok> flag with lyxml_free() flag */ |
| 918 | } |
| 919 | } else if (!strcmp(data_prev->xml->child->name, "rpc-error")) { |
| 920 | if (u && (u & 0x1)) { |
| 921 | /* ok already present, rpc-error can be present multiple times */ |
| 922 | u = 0x8; /* error flag */ |
| 923 | } else { |
| 924 | u = 0x2 | 0x4; /* <rpc-error> flag with lyxml_free() flag */ |
| 925 | } |
| 926 | } |
| 927 | |
| 928 | if (u == 0x8) { |
| 929 | fprintf(stderr, "yanglint error: Invalid RPC reply (%s) content.\n", data_prev->filename); |
| 930 | goto cleanup; |
| 931 | } else if (u & 0x4) { |
| 932 | lyxml_free(ctx, data_prev->xml->child); |
| 933 | u &= ~0x4; /* unset lyxml_free() flag */ |
| 934 | } |
| 935 | } |
| 936 | |
| 937 | /* finally, parse RPC reply from the previous step */ |
| 938 | data_prev->tree = lyd_parse_xml(ctx, &data_prev->xml->child, |
| 939 | (options_parser & ~LYD_OPT_TYPEMASK) | LYD_OPT_RPCREPLY, data_item->tree, oper); |
| 940 | } else { /* LYD_JSON */ |
| 941 | data_prev->tree = lyd_parse_path(ctx, data_prev->filename, data_item->format, |
| 942 | (options_parser & ~LYD_OPT_TYPEMASK) | LYD_OPT_RPCREPLY, data_item->tree, oper); |
| 943 | } |
| 944 | } |
| 945 | } else if ((options_parser & LYD_OPT_TYPEMASK) == LYD_OPT_RPCREPLY) { |
| 946 | if (data_prev && !data_prev->tree) { |
| 947 | /* now we should have RPC for the preceding RPC reply */ |
| 948 | data_item->tree = lyd_parse_path(ctx, data_item->filename, data_item->format, |
| 949 | (options_parser & ~LYD_OPT_TYPEMASK) | LYD_OPT_RPC, oper); |
| 950 | data_item->type = LYD_OPT_RPC; |
| 951 | goto parse_reply; |
| 952 | } else { |
| 953 | /* now we have RPC reply which will be parsed in next step together with its RPC */ |
| 954 | if (!data_item->next) { |
| 955 | fprintf(stderr, "yanglint error: RPC reply (%s) must be paired with the original RPC, see help.\n", data_item->filename); |
| 956 | goto cleanup; |
| 957 | } |
| 958 | if (data_item->format == LYD_XML) { |
| 959 | /* create rpc-reply container to unify handling with autodetection */ |
| 960 | data_item->xml = calloc(1, sizeof *data_item->xml); |
| 961 | if (!data_item->xml) { |
| 962 | fprintf(stderr, "yanglint error: Memory allocation failed failed.\n"); |
| 963 | goto cleanup; |
| 964 | } |
| 965 | data_item->xml->name = lydict_insert(ctx, "rpc-reply", 9); |
| 966 | data_item->xml->prev = data_item->xml; |
| 967 | data_item->xml->child = lyxml_parse_path(ctx, data_item->filename, LYXML_PARSE_MULTIROOT | LYXML_PARSE_NOMIXEDCONTENT); |
| 968 | if (data_item->xml->child) { |
| 969 | data_item->xml->child->parent = data_item->xml; |
| 970 | } |
| 971 | } |
| 972 | continue; |
| 973 | } |
| 974 | } else { |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 975 | #else |
| 976 | { |
| 977 | #endif |
Radek Krejci | 7931b19 | 2020-06-25 17:05:03 +0200 | [diff] [blame] | 978 | /* TODO optimize use of ly_in in the loop */ |
| 979 | struct ly_in *in; |
| 980 | if (ly_in_new_filepath(data_item->filename, 0, &in)) { |
| 981 | fprintf(stderr, "yanglint error: input data file \"%s\".\n", data_item->filename); |
| 982 | goto cleanup; |
| 983 | } |
Radek Krejci | 5536d28 | 2020-08-04 23:27:44 +0200 | [diff] [blame] | 984 | if (lyd_parse_data(ctx, in, 0, options_parser, LYD_VALIDATE_PRESENT, &data_item->tree)) { |
Radek Krejci | 7931b19 | 2020-06-25 17:05:03 +0200 | [diff] [blame] | 985 | fprintf(stderr, "yanglint error: Failed to parse input data file \"%s\".\n", data_item->filename); |
| 986 | ly_in_free(in, 0); |
| 987 | goto cleanup; |
| 988 | } |
| 989 | ly_in_free(in, 0); |
Radek Krejci | ed5acc5 | 2019-04-25 15:57:04 +0200 | [diff] [blame] | 990 | } |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 991 | #if 0 |
Radek Krejci | ed5acc5 | 2019-04-25 15:57:04 +0200 | [diff] [blame] | 992 | if (merge && data != data_item) { |
| 993 | if (!data->tree) { |
| 994 | data->tree = data_item->tree; |
| 995 | } else if (data_item->tree) { |
| 996 | /* merge results */ |
| 997 | if (lyd_merge(data->tree, data_item->tree, LYD_OPT_DESTRUCT | LYD_OPT_EXPLICIT)) { |
| 998 | fprintf(stderr, "yanglint error: merging multiple data trees failed.\n"); |
| 999 | goto cleanup; |
| 1000 | } |
| 1001 | } |
| 1002 | data_item->tree = NULL; |
| 1003 | } |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 1004 | #endif |
Radek Krejci | ed5acc5 | 2019-04-25 15:57:04 +0200 | [diff] [blame] | 1005 | } |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 1006 | #if 0 |
Radek Krejci | ed5acc5 | 2019-04-25 15:57:04 +0200 | [diff] [blame] | 1007 | if (merge) { |
| 1008 | /* validate the merged data tree, do not trust the input, invalidate all the data first */ |
| 1009 | LY_TREE_FOR(data->tree, subroot) { |
| 1010 | LY_TREE_DFS_BEGIN(subroot, next, node) { |
| 1011 | node->validity = LYD_VAL_OK; |
| 1012 | switch (node->schema->nodetype) { |
| 1013 | case LYS_LEAFLIST: |
| 1014 | case LYS_LEAF: |
| 1015 | if (((struct lys_node_leaf *)node->schema)->type.base == LY_TYPE_LEAFREF) { |
| 1016 | node->validity |= LYD_VAL_LEAFREF; |
| 1017 | } |
| 1018 | break; |
| 1019 | case LYS_LIST: |
| 1020 | node->validity |= LYD_VAL_UNIQUE; |
| 1021 | /* falls through */ |
| 1022 | case LYS_CONTAINER: |
| 1023 | case LYS_NOTIF: |
| 1024 | case LYS_RPC: |
| 1025 | case LYS_ACTION: |
| 1026 | node->validity |= LYD_VAL_MAND; |
| 1027 | break; |
| 1028 | default: |
| 1029 | break; |
| 1030 | } |
| 1031 | LY_TREE_DFS_END(subroot, next, node) |
| 1032 | } |
| 1033 | } |
| 1034 | if (lyd_validate(&data->tree, options_parser & ~LYD_OPT_TRUSTED, ctx)) { |
| 1035 | goto cleanup; |
| 1036 | } |
| 1037 | } |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 1038 | #endif |
Radek Krejci | ed5acc5 | 2019-04-25 15:57:04 +0200 | [diff] [blame] | 1039 | /* print only if data output format specified */ |
| 1040 | if (outformat_d) { |
| 1041 | for (data_item = data; data_item; data_item = data_item->next) { |
| 1042 | if (!merge && verbose >= 2) { |
| 1043 | fprintf(stdout, "File %s:\n", data_item->filename); |
| 1044 | } |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 1045 | #if 0 |
Radek Krejci | ed5acc5 | 2019-04-25 15:57:04 +0200 | [diff] [blame] | 1046 | if (outformat_d == LYD_XML && envelope) { |
| 1047 | switch (data_item->type) { |
| 1048 | case LYD_OPT_DATA: |
| 1049 | envelope_s = "data"; |
| 1050 | break; |
| 1051 | case LYD_OPT_CONFIG: |
| 1052 | envelope_s = "config"; |
| 1053 | break; |
| 1054 | case LYD_OPT_GET: |
| 1055 | envelope_s = "get-reply"; |
| 1056 | break; |
| 1057 | case LYD_OPT_GETCONFIG: |
| 1058 | envelope_s = "get-config-reply"; |
| 1059 | break; |
| 1060 | case LYD_OPT_EDIT: |
| 1061 | envelope_s = "edit-config"; |
| 1062 | break; |
| 1063 | case LYD_OPT_RPC: |
| 1064 | envelope_s = "rpc"; |
| 1065 | break; |
| 1066 | case LYD_OPT_RPCREPLY: |
| 1067 | envelope_s = "rpc-reply"; |
| 1068 | break; |
| 1069 | case LYD_OPT_NOTIF: |
| 1070 | envelope_s = "notification"; |
| 1071 | break; |
| 1072 | } |
| 1073 | fprintf(out, "<%s>\n", envelope_s); |
| 1074 | if (data_item->type == LYD_OPT_RPC && data_item->tree->schema->nodetype != LYS_RPC) { |
| 1075 | /* action */ |
| 1076 | fprintf(out, "<action xmlns=\"urn:ietf:params:xml:ns:yang:1\">\n"); |
| 1077 | } |
| 1078 | } |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 1079 | #endif |
Radek Krejci | 5536d28 | 2020-08-04 23:27:44 +0200 | [diff] [blame] | 1080 | if (!out) { |
| 1081 | ly_out_new_file(stdout, &out); |
| 1082 | } |
Michal Vasko | 3a41dff | 2020-07-15 14:30:28 +0200 | [diff] [blame] | 1083 | lyd_print_all(out, data_item->tree, outformat_d, LYD_PRINT_FORMAT /* TODO defaults | options_dflt */); |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 1084 | #if 0 |
Radek Krejci | ed5acc5 | 2019-04-25 15:57:04 +0200 | [diff] [blame] | 1085 | if (envelope_s) { |
| 1086 | if (data_item->type == LYD_OPT_RPC && data_item->tree->schema->nodetype != LYS_RPC) { |
| 1087 | fprintf(out, "</action>\n"); |
| 1088 | } |
| 1089 | fprintf(out, "</%s>\n", envelope_s); |
| 1090 | } |
| 1091 | if (merge) { |
| 1092 | /* stop after first item */ |
| 1093 | break; |
| 1094 | } |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 1095 | #endif |
Radek Krejci | ed5acc5 | 2019-04-25 15:57:04 +0200 | [diff] [blame] | 1096 | } |
| 1097 | } |
Radek Krejci | ed5acc5 | 2019-04-25 15:57:04 +0200 | [diff] [blame] | 1098 | } |
| 1099 | #if 0 |
| 1100 | if (list) { |
| 1101 | print_list(out, ctx, outformat_d); |
| 1102 | } |
| 1103 | #endif |
| 1104 | |
| 1105 | ret = EXIT_SUCCESS; |
| 1106 | |
| 1107 | cleanup: |
Radek Krejci | ed5acc5 | 2019-04-25 15:57:04 +0200 | [diff] [blame] | 1108 | ly_set_free(mods, NULL); |
| 1109 | ly_set_free(searchpaths, NULL); |
| 1110 | for (i = 0; i < featsize; i++) { |
| 1111 | free(feat[i]); |
| 1112 | } |
| 1113 | free(feat); |
Radek Krejci | ed5acc5 | 2019-04-25 15:57:04 +0200 | [diff] [blame] | 1114 | for (; data; data = data_item) { |
| 1115 | data_item = data->next; |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 1116 | lyd_free_all(data->tree); |
Radek Krejci | ed5acc5 | 2019-04-25 15:57:04 +0200 | [diff] [blame] | 1117 | free(data); |
| 1118 | } |
Radek Krejci | ed5acc5 | 2019-04-25 15:57:04 +0200 | [diff] [blame] | 1119 | ly_ctx_destroy(ctx, NULL); |
| 1120 | |
Radek Krejci | 241f6b5 | 2020-05-21 18:13:49 +0200 | [diff] [blame] | 1121 | ly_out_free(out, NULL, 1); |
Radek Krejci | ed5acc5 | 2019-04-25 15:57:04 +0200 | [diff] [blame] | 1122 | return ret; |
| 1123 | } |