Radek Krejci | ed5acc5 | 2019-04-25 15:57:04 +0200 | [diff] [blame] | 1 | /** |
| 2 | * @file main_ni.c |
| 3 | * @author Radek Krejci <rkrejci@cesnet.cz> |
Michal Vasko | 193dacd | 2022-10-13 08:43:05 +0200 | [diff] [blame] | 4 | * @author Michal Vasko <mvasko@cesnet.cz> |
aPiecek | a83b8e0 | 2023-06-07 15:25:16 +0200 | [diff] [blame] | 5 | * @author Adam Piecek <piecek@cesnet.cz> |
Michal Vasko | 193dacd | 2022-10-13 08:43:05 +0200 | [diff] [blame] | 6 | * @brief libyang's yanglint tool - non-interactive code |
Radek Krejci | ed5acc5 | 2019-04-25 15:57:04 +0200 | [diff] [blame] | 7 | * |
aPiecek | a83b8e0 | 2023-06-07 15:25:16 +0200 | [diff] [blame] | 8 | * Copyright (c) 2020 - 2023 CESNET, z.s.p.o. |
Radek Krejci | ed5acc5 | 2019-04-25 15:57:04 +0200 | [diff] [blame] | 9 | * |
| 10 | * This source code is licensed under BSD 3-Clause License (the "License"). |
| 11 | * You may not use this file except in compliance with the License. |
| 12 | * You may obtain a copy of the License at |
| 13 | * |
| 14 | * https://opensource.org/licenses/BSD-3-Clause |
| 15 | */ |
| 16 | |
Radek Krejci | 535ea9f | 2020-05-29 16:01:05 +0200 | [diff] [blame] | 17 | #define _GNU_SOURCE |
Radek Krejci | ed5acc5 | 2019-04-25 15:57:04 +0200 | [diff] [blame] | 18 | |
Radek Krejci | e9f13b1 | 2020-11-09 17:42:04 +0100 | [diff] [blame] | 19 | #include <errno.h> |
| 20 | #include <getopt.h> |
Radek Krejci | 47fab89 | 2020-11-05 17:02:41 +0100 | [diff] [blame] | 21 | #include <stdint.h> |
Radek Krejci | ed5acc5 | 2019-04-25 15:57:04 +0200 | [diff] [blame] | 22 | #include <stdio.h> |
| 23 | #include <stdlib.h> |
Radek Krejci | ed5acc5 | 2019-04-25 15:57:04 +0200 | [diff] [blame] | 24 | #include <string.h> |
Radek Krejci | 47fab89 | 2020-11-05 17:02:41 +0100 | [diff] [blame] | 25 | #include <strings.h> |
Radek Krejci | e9f13b1 | 2020-11-09 17:42:04 +0100 | [diff] [blame] | 26 | #include <sys/stat.h> |
Radek Krejci | ed5acc5 | 2019-04-25 15:57:04 +0200 | [diff] [blame] | 27 | |
Radek Krejci | ed5acc5 | 2019-04-25 15:57:04 +0200 | [diff] [blame] | 28 | #include "libyang.h" |
| 29 | |
aPiecek | bc39de1 | 2023-06-08 08:10:29 +0200 | [diff] [blame] | 30 | #include "cmd.h" |
Radek Krejci | e9f13b1 | 2020-11-09 17:42:04 +0100 | [diff] [blame] | 31 | #include "common.h" |
aPiecek | 8f0b788 | 2021-05-21 10:18:36 +0200 | [diff] [blame] | 32 | #include "out.h" |
Radek Krejci | 535ea9f | 2020-05-29 16:01:05 +0200 | [diff] [blame] | 33 | #include "tools/config.h" |
aPiecek | a83b8e0 | 2023-06-07 15:25:16 +0200 | [diff] [blame] | 34 | #include "yl_opt.h" |
Radek Krejci | e9f13b1 | 2020-11-09 17:42:04 +0100 | [diff] [blame] | 35 | |
| 36 | static void |
| 37 | version(void) |
| 38 | { |
| 39 | printf("yanglint %s\n", PROJECT_VERSION); |
| 40 | } |
| 41 | |
| 42 | static void |
Radek Krejci | ed5acc5 | 2019-04-25 15:57:04 +0200 | [diff] [blame] | 43 | help(int shortout) |
| 44 | { |
Radek Krejci | e9f13b1 | 2020-11-09 17:42:04 +0100 | [diff] [blame] | 45 | |
Michal Vasko | 3f08fb9 | 2022-04-21 09:52:35 +0200 | [diff] [blame] | 46 | printf("Example usage:\n" |
| 47 | " yanglint [-f { yang | yin | info}] <schema>...\n" |
| 48 | " Validates the YANG module <schema>(s) and all its dependencies, optionally printing\n" |
| 49 | " them in the specified format.\n\n" |
| 50 | " yanglint [-f { xml | json }] <schema>... <file>...\n" |
| 51 | " Validates the YANG modeled data <file>(s) according to the <schema>(s) optionally\n" |
| 52 | " printing them in the specified format.\n\n" |
| 53 | " yanglint -t (nc-)rpc/notif [-O <operational-file>] <schema>... <file>\n" |
| 54 | " Validates the YANG/NETCONF RPC/notification <file> according to the <schema>(s) using\n" |
aPiecek | a40764b | 2023-04-27 15:34:56 +0200 | [diff] [blame] | 55 | " <operational-file> with possible references to the operational datastore data.\n" |
| 56 | " To validate nested-notification or action, the <operational-file> is required.\n\n" |
Michal Vasko | 3f08fb9 | 2022-04-21 09:52:35 +0200 | [diff] [blame] | 57 | " yanglint -t nc-reply -R <rpc-file> [-O <operational-file>] <schema>... <file>\n" |
| 58 | " Validates the NETCONF rpc-reply <file> of RPC <rpc-file> according to the <schema>(s)\n" |
| 59 | " using <operational-file> with possible references to the operational datastore data.\n\n" |
Radek Krejci | e9f13b1 | 2020-11-09 17:42:04 +0100 | [diff] [blame] | 60 | " yanglint\n" |
| 61 | " Starts interactive mode with more features.\n\n"); |
Radek Krejci | ed5acc5 | 2019-04-25 15:57:04 +0200 | [diff] [blame] | 62 | |
| 63 | if (shortout) { |
| 64 | return; |
| 65 | } |
Radek Krejci | e9f13b1 | 2020-11-09 17:42:04 +0100 | [diff] [blame] | 66 | printf("Options:\n" |
| 67 | " -h, --help Show this help message and exit.\n" |
| 68 | " -v, --version Show version number and exit.\n" |
Michal Vasko | b0d307b | 2021-11-25 11:15:16 +0100 | [diff] [blame] | 69 | " -V, --verbose Increase libyang verbosity and show verbose messages. If specified\n" |
| 70 | " a second time, show even debug messages.\n" |
| 71 | " -Q, --quiet Decrease libyang verbosity and hide warnings. If specified a second\n" |
| 72 | " time, hide errors so no libyang messages are printed.\n"); |
Radek Krejci | e9f13b1 | 2020-11-09 17:42:04 +0100 | [diff] [blame] | 73 | |
Michal Vasko | c40548b | 2021-09-30 13:05:47 +0200 | [diff] [blame] | 74 | printf(" -f FORMAT, --format=FORMAT\n" |
| 75 | " Convert input into FORMAT. Supported formats: \n" |
roman | 300b878 | 2022-08-11 12:49:21 +0200 | [diff] [blame] | 76 | " yang, yin, tree, info and feature-param for schemas,\n" |
Michal Vasko | d8b0e77 | 2022-03-18 13:36:04 +0100 | [diff] [blame] | 77 | " xml, json, and lyb for data.\n\n"); |
Michal Vasko | c40548b | 2021-09-30 13:05:47 +0200 | [diff] [blame] | 78 | |
aPiecek | ef0a339 | 2023-05-16 10:34:32 +0200 | [diff] [blame] | 79 | printf(" -I FORMAT, --in-format=FORMAT\n" |
| 80 | " Load the data in one of the following formats:\n" |
| 81 | " xml, json, lyb\n" |
| 82 | " If input format not specified, it is detected from the file extension.\n\n"); |
| 83 | |
Michal Vasko | c40548b | 2021-09-30 13:05:47 +0200 | [diff] [blame] | 84 | printf(" -p PATH, --path=PATH\n" |
| 85 | " Search path for schema (YANG/YIN) modules. The option can be\n" |
| 86 | " used multiple times. The current working directory and the\n" |
aPiecek | 4f306da | 2023-03-27 09:06:07 +0200 | [diff] [blame] | 87 | " path of the module being added is used implicitly. Subdirectories\n" |
| 88 | " are also searched\n\n"); |
Radek Krejci | e9f13b1 | 2020-11-09 17:42:04 +0100 | [diff] [blame] | 89 | |
Michal Vasko | 22e0f3a | 2021-09-22 12:19:23 +0200 | [diff] [blame] | 90 | printf(" -D, --disable-searchdir\n" |
Radek Krejci | e9f13b1 | 2020-11-09 17:42:04 +0100 | [diff] [blame] | 91 | " Do not implicitly search in current working directory for\n" |
| 92 | " schema modules. If specified a second time, do not even\n" |
| 93 | " search in the module directory (all modules must be \n" |
Michal Vasko | 22e0f3a | 2021-09-22 12:19:23 +0200 | [diff] [blame] | 94 | " explicitly specified).\n\n"); |
Radek Krejci | e9f13b1 | 2020-11-09 17:42:04 +0100 | [diff] [blame] | 95 | |
Michal Vasko | 22e0f3a | 2021-09-22 12:19:23 +0200 | [diff] [blame] | 96 | printf(" -F FEATURES, --features=FEATURES\n" |
Michal Vasko | 5974087 | 2021-11-22 10:01:34 +0100 | [diff] [blame] | 97 | " Specific module features to support in the form <module-name>:(<feature>,)*\n" |
| 98 | " Use <feature> '*' to enable all features of a module. This option can be\n" |
| 99 | " specified multiple times, to enable features in multiple modules. If this\n" |
| 100 | " option is not specified, all the features in all the implemented modules\n" |
| 101 | " are enabled.\n\n"); |
Radek Krejci | e9f13b1 | 2020-11-09 17:42:04 +0100 | [diff] [blame] | 102 | |
Michal Vasko | 8d6d0ad | 2021-10-19 12:32:27 +0200 | [diff] [blame] | 103 | printf(" -i, --make-implemented\n" |
Radek Krejci | e9f13b1 | 2020-11-09 17:42:04 +0100 | [diff] [blame] | 104 | " Make the imported modules \"referenced\" from any loaded\n" |
| 105 | " module also implemented. If specified a second time, all the\n" |
Michal Vasko | 22e0f3a | 2021-09-22 12:19:23 +0200 | [diff] [blame] | 106 | " modules are set implemented.\n\n"); |
Radek Krejci | e9f13b1 | 2020-11-09 17:42:04 +0100 | [diff] [blame] | 107 | |
Michal Vasko | 22e0f3a | 2021-09-22 12:19:23 +0200 | [diff] [blame] | 108 | printf(" -P PATH, --schema-node=PATH\n" |
Radek Krejci | e9f13b1 | 2020-11-09 17:42:04 +0100 | [diff] [blame] | 109 | " Print only the specified subtree of the schema.\n" |
| 110 | " The PATH is the XPath subset mentioned in documentation as\n" |
| 111 | " the Path format. The option can be combined with --single-node\n" |
| 112 | " option to print information only about the specified node.\n" |
| 113 | " -q, --single-node\n" |
| 114 | " Supplement to the --schema-node option to print information\n" |
Michal Vasko | 22e0f3a | 2021-09-22 12:19:23 +0200 | [diff] [blame] | 115 | " only about a single node specified as PATH argument.\n\n"); |
Radek Krejci | e9f13b1 | 2020-11-09 17:42:04 +0100 | [diff] [blame] | 116 | |
Michal Vasko | fe74d1e | 2021-09-30 13:17:36 +0200 | [diff] [blame] | 117 | printf(" -s SUBMODULE, --submodule=SUBMODULE\n" |
| 118 | " Print the specific submodule instead of the main module.\n\n"); |
| 119 | |
ekinzie | 0ab8b30 | 2022-10-10 03:03:57 -0400 | [diff] [blame] | 120 | printf(" -x FILE, --ext-data=FILE\n" |
| 121 | " File containing the specific data required by an extension. Required by\n" |
Michal Vasko | 1466280 | 2022-11-08 08:45:46 +0100 | [diff] [blame] | 122 | " the schema-mount extension, for example, when the operational data are\n" |
ekinzie | 0ab8b30 | 2022-10-10 03:03:57 -0400 | [diff] [blame] | 123 | " expected in the file. File format is guessed.\n\n"); |
| 124 | |
Michal Vasko | 22e0f3a | 2021-09-22 12:19:23 +0200 | [diff] [blame] | 125 | printf(" -n, --not-strict\n" |
Michal Vasko | 667ce6b | 2021-01-25 15:00:27 +0100 | [diff] [blame] | 126 | " Do not require strict data parsing (silently skip unknown data),\n" |
Michal Vasko | 22e0f3a | 2021-09-22 12:19:23 +0200 | [diff] [blame] | 127 | " has no effect for schemas.\n\n"); |
Radek Krejci | e9f13b1 | 2020-11-09 17:42:04 +0100 | [diff] [blame] | 128 | |
Michal Vasko | 22e0f3a | 2021-09-22 12:19:23 +0200 | [diff] [blame] | 129 | 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] | 130 | " exist in the provided input data files. Takes effect only\n" |
| 131 | " with the 'data' or 'config' TYPEs. Used to avoid requiring\n" |
| 132 | " mandatory nodes from modules which data are not present in the\n" |
Michal Vasko | 22e0f3a | 2021-09-22 12:19:23 +0200 | [diff] [blame] | 133 | " provided input data files.\n\n"); |
Radek Krejci | e9f13b1 | 2020-11-09 17:42:04 +0100 | [diff] [blame] | 134 | |
Michal Vasko | 22e0f3a | 2021-09-22 12:19:23 +0200 | [diff] [blame] | 135 | printf(" -t TYPE, --type=TYPE\n" |
Radek Krejci | e9f13b1 | 2020-11-09 17:42:04 +0100 | [diff] [blame] | 136 | " Specify data tree type in the input data file(s):\n" |
| 137 | " data - Complete datastore with status data (default type).\n" |
| 138 | " config - Configuration datastore (without status data).\n" |
Michal Vasko | 3f08fb9 | 2022-04-21 09:52:35 +0200 | [diff] [blame] | 139 | " get - Data returned by the NETCONF <get> operation.\n" |
| 140 | " getconfig - Data returned by the NETCONF <get-config> operation.\n" |
| 141 | " edit - Config content of the NETCONF <edit-config> operation.\n" |
| 142 | " rpc - Invocation of a YANG RPC/action, defined as input.\n" |
| 143 | " nc-rpc - Similar to 'rpc' but expect and check also the NETCONF\n" |
| 144 | " envelopes <rpc> or <action>.\n" |
| 145 | " reply - Reply to a YANG RPC/action, defined as output. Note that\n" |
| 146 | " the reply data are expected inside a container representing\n" |
| 147 | " the original RPC/action invocation.\n" |
| 148 | " nc-reply - Similar to 'reply' but expect and check also the NETCONF\n" |
| 149 | " envelope <rpc-reply> with output data nodes as direct\n" |
| 150 | " descendants. The original RPC/action invocation is expected\n" |
| 151 | " in a separate parameter '-R' and is parsed as 'nc-rpc'.\n" |
| 152 | " notif - Notification instance of a YANG notification.\n" |
| 153 | " nc-notif - Similar to 'notif' but expect and check also the NETCONF\n" |
| 154 | " envelope <notification> with element <eventTime> and its\n" |
| 155 | " sibling as the actual notification.\n\n"); |
Michal Vasko | c40548b | 2021-09-30 13:05:47 +0200 | [diff] [blame] | 156 | |
| 157 | printf(" -d MODE, --default=MODE\n" |
| 158 | " Print data with default values, according to the MODE\n" |
| 159 | " (to print attributes, ietf-netconf-with-defaults model\n" |
| 160 | " must be loaded):\n" |
| 161 | " all - Add missing default nodes.\n" |
| 162 | " all-tagged - Add missing default nodes and mark all the default\n" |
| 163 | " nodes with the attribute.\n" |
| 164 | " trim - Remove all nodes with a default value.\n" |
| 165 | " implicit-tagged - Add missing nodes and mark them with the attribute.\n\n"); |
| 166 | |
aPiecek | 1b62976 | 2023-04-12 13:52:30 +0200 | [diff] [blame] | 167 | printf(" -E XPATH, --data-xpath=XPATH\n" |
aPiecek | 4195527 | 2023-05-10 16:10:17 +0200 | [diff] [blame] | 168 | " Evaluate XPATH expression over the data and print the nodes satisfying\n" |
aPiecek | 1b62976 | 2023-04-12 13:52:30 +0200 | [diff] [blame] | 169 | " the expression. The output format is specific and the option cannot\n" |
| 170 | " be combined with the -f and -d options. Also all the data\n" |
| 171 | " inputs are merged into a single data tree where the expression\n" |
| 172 | " is evaluated, so the -m option is always set implicitly.\n\n"); |
| 173 | |
Michal Vasko | c40548b | 2021-09-30 13:05:47 +0200 | [diff] [blame] | 174 | printf(" -l, --list Print info about the loaded schemas.\n" |
| 175 | " (i - imported module, I - implemented module)\n" |
Michal Vasko | 24aaf8e | 2022-02-04 11:15:26 +0100 | [diff] [blame] | 176 | " In case the '-f' option with data encoding is specified,\n" |
| 177 | " the list is printed as \"ietf-yang-library\" data.\n\n"); |
Michal Vasko | c40548b | 2021-09-30 13:05:47 +0200 | [diff] [blame] | 178 | |
| 179 | printf(" -L LINE_LENGTH, --tree-line-length=LINE_LENGTH\n" |
| 180 | " The limit of the maximum line length on which the 'tree'\n" |
| 181 | " format will try to be printed.\n\n"); |
| 182 | |
| 183 | printf(" -o OUTFILE, --output=OUTFILE\n" |
| 184 | " Write the output to OUTFILE instead of stdout.\n\n"); |
Radek Krejci | e9f13b1 | 2020-11-09 17:42:04 +0100 | [diff] [blame] | 185 | |
Michal Vasko | 22e0f3a | 2021-09-22 12:19:23 +0200 | [diff] [blame] | 186 | printf(" -O FILE, --operational=FILE\n" |
Michal Vasko | 9e81ce5 | 2022-04-29 10:16:21 +0200 | [diff] [blame] | 187 | " Provide optional data to extend validation of the '(nc-)rpc',\n" |
| 188 | " '(nc-)reply' or '(nc-)notif' TYPEs. The FILE is supposed to contain\n" |
| 189 | " the operational datastore referenced from the operation.\n" |
aPiecek | a40764b | 2023-04-27 15:34:56 +0200 | [diff] [blame] | 190 | " In case of a nested notification or action, its parent existence\n" |
| 191 | " is also checked in these operational data.\n\n"); |
Radek Krejci | e9f13b1 | 2020-11-09 17:42:04 +0100 | [diff] [blame] | 192 | |
Michal Vasko | 3f08fb9 | 2022-04-21 09:52:35 +0200 | [diff] [blame] | 193 | printf(" -R FILE, --reply-rpc=FILE\n" |
| 194 | " Provide source RPC for parsing of the 'nc-reply' TYPE. The FILE\n" |
| 195 | " is supposed to contain the source 'nc-rpc' operation of the reply.\n\n"); |
| 196 | |
Michal Vasko | 22e0f3a | 2021-09-22 12:19:23 +0200 | [diff] [blame] | 197 | printf(" -m, --merge Merge input data files into a single tree and validate at\n" |
Michal Vasko | 06158fb | 2022-03-29 12:13:16 +0200 | [diff] [blame] | 198 | " 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] | 199 | |
Michal Vasko | 22e0f3a | 2021-09-22 12:19:23 +0200 | [diff] [blame] | 200 | printf(" -y, --yang-library\n" |
Michal Vasko | c431a0a | 2021-01-25 14:31:58 +0100 | [diff] [blame] | 201 | " Load and implement internal \"ietf-yang-library\" YANG module.\n" |
| 202 | " Note that this module includes definitions of mandatory state\n" |
Michal Vasko | 22e0f3a | 2021-09-22 12:19:23 +0200 | [diff] [blame] | 203 | " data that can result in unexpected data validation errors.\n\n"); |
Michal Vasko | c40548b | 2021-09-30 13:05:47 +0200 | [diff] [blame] | 204 | |
Michal Vasko | 24aaf8e | 2022-02-04 11:15:26 +0100 | [diff] [blame] | 205 | printf(" -Y FILE, --yang-library-file=FILE\n" |
| 206 | " Parse FILE with \"ietf-yang-library\" data and use them to\n" |
| 207 | " create an exact YANG schema context. If specified, the '-F'\n" |
| 208 | " parameter (enabled features) is ignored.\n\n"); |
| 209 | |
steweg | d8e2fc9 | 2023-05-31 09:52:56 +0200 | [diff] [blame] | 210 | printf(" -X, --extended-leafref\n" |
| 211 | " Allow usage of deref() XPath function within leafref\n\n"); |
| 212 | |
Michal Vasko | c40548b | 2021-09-30 13:05:47 +0200 | [diff] [blame] | 213 | #ifndef NDEBUG |
| 214 | printf(" -G GROUPS, --debug=GROUPS\n" |
| 215 | " Enable printing of specific debugging message group\n" |
| 216 | " (nothing will be printed unless verbosity is set to debug):\n" |
Michal Vasko | 27a4acb | 2021-11-22 10:03:46 +0100 | [diff] [blame] | 217 | " <group>[,<group>]* (dict, xpath, dep-sets)\n\n"); |
Michal Vasko | c40548b | 2021-09-30 13:05:47 +0200 | [diff] [blame] | 218 | #endif |
Radek Krejci | ed5acc5 | 2019-04-25 15:57:04 +0200 | [diff] [blame] | 219 | } |
| 220 | |
Radek Krejci | e9f13b1 | 2020-11-09 17:42:04 +0100 | [diff] [blame] | 221 | static void |
Radek Krejci | ed5acc5 | 2019-04-25 15:57:04 +0200 | [diff] [blame] | 222 | libyang_verbclb(LY_LOG_LEVEL level, const char *msg, const char *path) |
| 223 | { |
| 224 | char *levstr; |
| 225 | |
Radek Krejci | e9f13b1 | 2020-11-09 17:42:04 +0100 | [diff] [blame] | 226 | switch (level) { |
| 227 | case LY_LLERR: |
| 228 | levstr = "err :"; |
| 229 | break; |
| 230 | case LY_LLWRN: |
| 231 | levstr = "warn:"; |
| 232 | break; |
| 233 | case LY_LLVRB: |
| 234 | levstr = "verb:"; |
| 235 | break; |
| 236 | default: |
| 237 | levstr = "dbg :"; |
| 238 | break; |
| 239 | } |
| 240 | if (path) { |
| 241 | fprintf(stderr, "libyang %s %s (%s)\n", levstr, msg, path); |
| 242 | } else { |
| 243 | fprintf(stderr, "libyang %s %s\n", levstr, msg); |
Radek Krejci | ed5acc5 | 2019-04-25 15:57:04 +0200 | [diff] [blame] | 244 | } |
| 245 | } |
| 246 | |
Michal Vasko | 686d8fc | 2021-11-22 10:03:23 +0100 | [diff] [blame] | 247 | static struct schema_features * |
| 248 | get_features_not_applied(const struct ly_set *fset) |
| 249 | { |
| 250 | for (uint32_t u = 0; u < fset->count; ++u) { |
| 251 | struct schema_features *sf = fset->objs[u]; |
Michal Vasko | 26bbb27 | 2022-08-02 14:54:33 +0200 | [diff] [blame] | 252 | |
Michal Vasko | 686d8fc | 2021-11-22 10:03:23 +0100 | [diff] [blame] | 253 | if (!sf->applied) { |
| 254 | return sf; |
| 255 | } |
| 256 | } |
| 257 | |
| 258 | return NULL; |
| 259 | } |
| 260 | |
aPiecek | 4ceaf18 | 2023-06-12 14:52:51 +0200 | [diff] [blame] | 261 | /** |
| 262 | * @brief Create the libyang context. |
| 263 | * |
| 264 | * @param[in] yang_lib_file Context can be defined in yang library file. |
| 265 | * @param[in] searchpaths Directories in which modules are searched. |
| 266 | * @param[in,out] schema_features Set of features. |
| 267 | * @param[in,out] ctx_options Options for libyang context. |
| 268 | * @param[out] ctx Context for libyang. |
| 269 | * @return 0 on success. |
| 270 | */ |
Radek Krejci | e9f13b1 | 2020-11-09 17:42:04 +0100 | [diff] [blame] | 271 | static int |
aPiecek | 4ceaf18 | 2023-06-12 14:52:51 +0200 | [diff] [blame] | 272 | create_ly_context(const char *yang_lib_file, const char *searchpaths, struct ly_set *schema_features, |
| 273 | uint16_t *ctx_options, struct ly_ctx **ctx) |
Radek Krejci | e9f13b1 | 2020-11-09 17:42:04 +0100 | [diff] [blame] | 274 | { |
aPiecek | 4ceaf18 | 2023-06-12 14:52:51 +0200 | [diff] [blame] | 275 | if (yang_lib_file) { |
Michal Vasko | 24aaf8e | 2022-02-04 11:15:26 +0100 | [diff] [blame] | 276 | /* ignore features */ |
aPiecek | 4ceaf18 | 2023-06-12 14:52:51 +0200 | [diff] [blame] | 277 | ly_set_erase(schema_features, free_features); |
Michal Vasko | 24aaf8e | 2022-02-04 11:15:26 +0100 | [diff] [blame] | 278 | |
aPiecek | 4ceaf18 | 2023-06-12 14:52:51 +0200 | [diff] [blame] | 279 | if (ly_ctx_new_ylpath(searchpaths, yang_lib_file, LYD_UNKNOWN, *ctx_options, ctx)) { |
ekinzie | 0ab8b30 | 2022-10-10 03:03:57 -0400 | [diff] [blame] | 280 | YLMSG_E("Unable to modify libyang context with yang-library data.\n"); |
Michal Vasko | 24aaf8e | 2022-02-04 11:15:26 +0100 | [diff] [blame] | 281 | return -1; |
| 282 | } |
| 283 | } else { |
| 284 | /* set imp feature flag if all should be enabled */ |
aPiecek | 4ceaf18 | 2023-06-12 14:52:51 +0200 | [diff] [blame] | 285 | (*ctx_options) |= !schema_features->count ? LY_CTX_ENABLE_IMP_FEATURES : 0; |
Michal Vasko | 24aaf8e | 2022-02-04 11:15:26 +0100 | [diff] [blame] | 286 | |
aPiecek | 4ceaf18 | 2023-06-12 14:52:51 +0200 | [diff] [blame] | 287 | if (ly_ctx_new(searchpaths, *ctx_options, ctx)) { |
aPiecek | 912f3d5 | 2022-10-12 10:02:33 +0200 | [diff] [blame] | 288 | YLMSG_E("Unable to create libyang context\n"); |
Michal Vasko | 24aaf8e | 2022-02-04 11:15:26 +0100 | [diff] [blame] | 289 | return -1; |
| 290 | } |
aPiecek | 912f3d5 | 2022-10-12 10:02:33 +0200 | [diff] [blame] | 291 | } |
Michal Vasko | 24aaf8e | 2022-02-04 11:15:26 +0100 | [diff] [blame] | 292 | |
aPiecek | 4ceaf18 | 2023-06-12 14:52:51 +0200 | [diff] [blame] | 293 | return 0; |
| 294 | } |
| 295 | |
| 296 | /** |
| 297 | * @brief Implement module if some feature has not been applied. |
| 298 | * |
| 299 | * @param[in] schema_features Set of features. |
| 300 | * @param[in,out] ctx Context for libyang. |
| 301 | * @return 0 on success. |
| 302 | */ |
| 303 | static int |
| 304 | apply_features(struct ly_set *schema_features, struct ly_ctx *ctx) |
| 305 | { |
| 306 | struct schema_features *sf; |
| 307 | struct lys_module *mod; |
| 308 | |
| 309 | /* check that all specified features were applied, apply now if possible */ |
| 310 | while ((sf = get_features_not_applied(schema_features))) { |
| 311 | /* try to find implemented or the latest revision of this module */ |
| 312 | mod = ly_ctx_get_module_implemented(ctx, sf->mod_name); |
| 313 | if (!mod) { |
| 314 | mod = ly_ctx_get_module_latest(ctx, sf->mod_name); |
| 315 | } |
| 316 | if (!mod) { |
| 317 | YLMSG_E("Specified features not applied, module \"%s\" not loaded.\n", sf->mod_name); |
| 318 | return 1; |
| 319 | } |
| 320 | |
| 321 | /* we have the module, implement it if needed and enable the specific features */ |
| 322 | if (lys_set_implemented(mod, (const char **)sf->features)) { |
| 323 | YLMSG_E("Implementing module \"%s\" failed.\n", mod->name); |
| 324 | return 1; |
| 325 | } |
| 326 | sf->applied = 1; |
Michal Vasko | 24aaf8e | 2022-02-04 11:15:26 +0100 | [diff] [blame] | 327 | } |
Radek Krejci | e9f13b1 | 2020-11-09 17:42:04 +0100 | [diff] [blame] | 328 | |
aPiecek | 4ceaf18 | 2023-06-12 14:52:51 +0200 | [diff] [blame] | 329 | return 0; |
| 330 | } |
| 331 | |
| 332 | /** |
| 333 | * @brief Parse and compile modules, data are only stored for later processing. |
| 334 | * |
| 335 | * @param[in] argc Number of strings in @p argv. |
| 336 | * @param[in] argv Strings from command line. |
| 337 | * @param[in] optind Index to the first input file in @p argv. |
| 338 | * @param[in] data_in_format Specified input data format. |
| 339 | * @param[in,out] ctx Context for libyang. |
| 340 | * @param[in,out] yo Options for yanglint. |
aPiecek | 4ceaf18 | 2023-06-12 14:52:51 +0200 | [diff] [blame] | 341 | * @return 0 on success. |
| 342 | */ |
| 343 | static int |
| 344 | fill_context_inputs(int argc, char *argv[], int optind, LYD_FORMAT data_in_format, struct ly_ctx *ctx, |
aPiecek | 618d1cc | 2023-06-15 08:31:27 +0200 | [diff] [blame] | 345 | struct yl_opt *yo) |
aPiecek | 4ceaf18 | 2023-06-12 14:52:51 +0200 | [diff] [blame] | 346 | { |
aPiecek | 4ceaf18 | 2023-06-12 14:52:51 +0200 | [diff] [blame] | 347 | char *filepath = NULL; |
| 348 | LYS_INFORMAT format_schema; |
| 349 | LYD_FORMAT format_data; |
| 350 | |
Radek Krejci | e9f13b1 | 2020-11-09 17:42:04 +0100 | [diff] [blame] | 351 | for (int i = 0; i < argc - optind; i++) { |
aPiecek | 4ceaf18 | 2023-06-12 14:52:51 +0200 | [diff] [blame] | 352 | format_schema = LYS_IN_UNKNOWN; |
| 353 | format_data = data_in_format; |
Radek Krejci | e9f13b1 | 2020-11-09 17:42:04 +0100 | [diff] [blame] | 354 | |
aPiecek | a83b8e0 | 2023-06-07 15:25:16 +0200 | [diff] [blame] | 355 | filepath = argv[optind + i]; |
| 356 | |
| 357 | if (!filepath) { |
aPiecek | 618d1cc | 2023-06-15 08:31:27 +0200 | [diff] [blame] | 358 | return -1; |
aPiecek | a83b8e0 | 2023-06-07 15:25:16 +0200 | [diff] [blame] | 359 | } |
aPiecek | 618d1cc | 2023-06-15 08:31:27 +0200 | [diff] [blame] | 360 | if (get_format(filepath, &format_schema, &format_data)) { |
| 361 | return -1; |
Radek Krejci | e9f13b1 | 2020-11-09 17:42:04 +0100 | [diff] [blame] | 362 | } |
| 363 | |
| 364 | if (format_schema) { |
aPiecek | 4ceaf18 | 2023-06-12 14:52:51 +0200 | [diff] [blame] | 365 | if (cmd_add_exec(&ctx, yo, filepath)) { |
aPiecek | 618d1cc | 2023-06-15 08:31:27 +0200 | [diff] [blame] | 366 | return -1; |
Radek Krejci | e9f13b1 | 2020-11-09 17:42:04 +0100 | [diff] [blame] | 367 | } |
aPiecek | 2457b5e | 2023-06-12 11:40:14 +0200 | [diff] [blame] | 368 | } else { |
aPiecek | 618d1cc | 2023-06-15 08:31:27 +0200 | [diff] [blame] | 369 | if (cmd_data_exec(&ctx, yo, filepath)) { |
| 370 | return -1; |
aPiecek | a6d45b5 | 2023-05-19 11:48:59 +0200 | [diff] [blame] | 371 | } |
Radek Krejci | e9f13b1 | 2020-11-09 17:42:04 +0100 | [diff] [blame] | 372 | } |
| 373 | } |
| 374 | |
aPiecek | 4ceaf18 | 2023-06-12 14:52:51 +0200 | [diff] [blame] | 375 | /* Check that all specified features were applied, apply now if possible. */ |
| 376 | if (apply_features(&yo->schema_features, ctx)) { |
| 377 | return -1; |
Michal Vasko | 686d8fc | 2021-11-22 10:03:23 +0100 | [diff] [blame] | 378 | } |
| 379 | |
Radek Krejci | e9f13b1 | 2020-11-09 17:42:04 +0100 | [diff] [blame] | 380 | return 0; |
| 381 | } |
| 382 | |
aPiecek | 0cbc902 | 2023-06-08 16:58:56 +0200 | [diff] [blame] | 383 | #ifndef NDEBUG |
| 384 | /** |
| 385 | * @brief Enable specific debugging messages. |
| 386 | * |
| 387 | * @param[in] groups String in the form <group>[,group>]*. |
| 388 | * @param[in,out] yo Options for yanglint. |
| 389 | * return 0 on success. |
| 390 | */ |
| 391 | static int |
| 392 | set_debug_groups(char *groups, struct yl_opt *yo) |
| 393 | { |
| 394 | int rc; |
| 395 | char *str, *end; |
| 396 | |
| 397 | /* Process all debug arguments except the last one. */ |
| 398 | for (str = groups; (end = strchr(str, ',')); str = end + 1) { |
| 399 | /* Temporary modify input string. */ |
| 400 | *end = '\0'; |
| 401 | rc = cmd_debug_exec(NULL, yo, str); |
| 402 | *end = ','; |
| 403 | if (rc) { |
| 404 | return -1; |
| 405 | } |
| 406 | } |
| 407 | /* Process single/last debug argument. */ |
| 408 | if (cmd_debug_exec(NULL, yo, str)) { |
| 409 | return -1; |
| 410 | } |
| 411 | /* All debug arguments are valid, so they can apply. */ |
| 412 | if (cmd_debug_fin(NULL, yo)) { |
| 413 | return -1; |
| 414 | } |
| 415 | |
| 416 | return 0; |
| 417 | } |
| 418 | |
| 419 | #endif |
| 420 | |
Radek Krejci | e9f13b1 | 2020-11-09 17:42:04 +0100 | [diff] [blame] | 421 | /** |
| 422 | * @brief Process command line options and store the settings into the context. |
| 423 | * |
| 424 | * return -1 in case of error; |
| 425 | * return 0 in case of success and ready to process |
| 426 | * return 1 in case of success, but expect to exit. |
Radek Krejci | ed5acc5 | 2019-04-25 15:57:04 +0200 | [diff] [blame] | 427 | */ |
| 428 | static int |
aPiecek | a83b8e0 | 2023-06-07 15:25:16 +0200 | [diff] [blame] | 429 | fill_context(int argc, char *argv[], struct yl_opt *yo, struct ly_ctx **ctx) |
Radek Krejci | ed5acc5 | 2019-04-25 15:57:04 +0200 | [diff] [blame] | 430 | { |
Radek Krejci | e9f13b1 | 2020-11-09 17:42:04 +0100 | [diff] [blame] | 431 | int opt, opt_index; |
Radek Krejci | ed5acc5 | 2019-04-25 15:57:04 +0200 | [diff] [blame] | 432 | struct option options[] = { |
Michal Vasko | 24aaf8e | 2022-02-04 11:15:26 +0100 | [diff] [blame] | 433 | {"help", no_argument, NULL, 'h'}, |
| 434 | {"version", no_argument, NULL, 'v'}, |
| 435 | {"verbose", no_argument, NULL, 'V'}, |
| 436 | {"quiet", no_argument, NULL, 'Q'}, |
| 437 | {"format", required_argument, NULL, 'f'}, |
| 438 | {"path", required_argument, NULL, 'p'}, |
Michal Vasko | d8b0e77 | 2022-03-18 13:36:04 +0100 | [diff] [blame] | 439 | {"disable-searchdir", no_argument, NULL, 'D'}, |
Michal Vasko | 24aaf8e | 2022-02-04 11:15:26 +0100 | [diff] [blame] | 440 | {"features", required_argument, NULL, 'F'}, |
| 441 | {"make-implemented", no_argument, NULL, 'i'}, |
aPiecek | ef0a339 | 2023-05-16 10:34:32 +0200 | [diff] [blame] | 442 | {"in-format", required_argument, NULL, 'I'}, |
Michal Vasko | 24aaf8e | 2022-02-04 11:15:26 +0100 | [diff] [blame] | 443 | {"schema-node", required_argument, NULL, 'P'}, |
| 444 | {"single-node", no_argument, NULL, 'q'}, |
| 445 | {"submodule", required_argument, NULL, 's'}, |
ekinzie | 0ab8b30 | 2022-10-10 03:03:57 -0400 | [diff] [blame] | 446 | {"ext-data", required_argument, NULL, 'x'}, |
Michal Vasko | 24aaf8e | 2022-02-04 11:15:26 +0100 | [diff] [blame] | 447 | {"not-strict", no_argument, NULL, 'n'}, |
| 448 | {"present", no_argument, NULL, 'e'}, |
| 449 | {"type", required_argument, NULL, 't'}, |
| 450 | {"default", required_argument, NULL, 'd'}, |
aPiecek | 1b62976 | 2023-04-12 13:52:30 +0200 | [diff] [blame] | 451 | {"data-xpath", required_argument, NULL, 'E'}, |
Michal Vasko | 24aaf8e | 2022-02-04 11:15:26 +0100 | [diff] [blame] | 452 | {"list", no_argument, NULL, 'l'}, |
| 453 | {"tree-line-length", required_argument, NULL, 'L'}, |
| 454 | {"output", required_argument, NULL, 'o'}, |
| 455 | {"operational", required_argument, NULL, 'O'}, |
Michal Vasko | 3f08fb9 | 2022-04-21 09:52:35 +0200 | [diff] [blame] | 456 | {"reply-rpc", required_argument, NULL, 'R'}, |
Michal Vasko | 24aaf8e | 2022-02-04 11:15:26 +0100 | [diff] [blame] | 457 | {"merge", no_argument, NULL, 'm'}, |
| 458 | {"yang-library", no_argument, NULL, 'y'}, |
| 459 | {"yang-library-file", required_argument, NULL, 'Y'}, |
steweg | d8e2fc9 | 2023-05-31 09:52:56 +0200 | [diff] [blame] | 460 | {"extended-leafref", no_argument, NULL, 'X'}, |
Michal Vasko | c40548b | 2021-09-30 13:05:47 +0200 | [diff] [blame] | 461 | #ifndef NDEBUG |
| 462 | {"debug", required_argument, NULL, 'G'}, |
| 463 | #endif |
Radek Krejci | ed5acc5 | 2019-04-25 15:57:04 +0200 | [diff] [blame] | 464 | {NULL, 0, NULL, 0} |
| 465 | }; |
Radek Krejci | e9f13b1 | 2020-11-09 17:42:04 +0100 | [diff] [blame] | 466 | uint8_t data_type_set = 0; |
| 467 | |
aPiecek | a83b8e0 | 2023-06-07 15:25:16 +0200 | [diff] [blame] | 468 | yo->ctx_options = YL_DEFAULT_CTX_OPTIONS; |
| 469 | yo->data_parse_options = YL_DEFAULT_DATA_PARSE_OPTIONS; |
| 470 | yo->data_validate_options = YL_DEFAULT_DATA_VALIDATE_OPTIONS; |
| 471 | yo->line_length = 0; |
Michal Vasko | 667ce6b | 2021-01-25 15:00:27 +0100 | [diff] [blame] | 472 | |
Michal Vasko | 27a4acb | 2021-11-22 10:03:46 +0100 | [diff] [blame] | 473 | opterr = 0; |
Radek Krejci | ed5acc5 | 2019-04-25 15:57:04 +0200 | [diff] [blame] | 474 | #ifndef NDEBUG |
aPiecek | ef0a339 | 2023-05-16 10:34:32 +0200 | [diff] [blame] | 475 | while ((opt = getopt_long(argc, argv, "hvVQf:I:p:DF:iP:qs:neE:t:d:lL:o:O:R:myY:Xx:G:", options, &opt_index)) != -1) |
Michal Vasko | 27a4acb | 2021-11-22 10:03:46 +0100 | [diff] [blame] | 476 | #else |
aPiecek | ef0a339 | 2023-05-16 10:34:32 +0200 | [diff] [blame] | 477 | while ((opt = getopt_long(argc, argv, "hvVQf:I:p:DF:iP:qs:neE:t:d:lL:o:O:R:myY:Xx:", options, &opt_index)) != -1) |
Radek Krejci | ed5acc5 | 2019-04-25 15:57:04 +0200 | [diff] [blame] | 478 | #endif |
Michal Vasko | 03fe620 | 2022-07-22 16:23:13 +0200 | [diff] [blame] | 479 | { |
Radek Krejci | ed5acc5 | 2019-04-25 15:57:04 +0200 | [diff] [blame] | 480 | switch (opt) { |
Michal Vasko | c40548b | 2021-09-30 13:05:47 +0200 | [diff] [blame] | 481 | case 'h': /* --help */ |
| 482 | help(0); |
| 483 | return 1; |
| 484 | |
| 485 | case 'v': /* --version */ |
| 486 | version(); |
| 487 | return 1; |
| 488 | |
| 489 | case 'V': { /* --verbose */ |
| 490 | LY_LOG_LEVEL verbosity = ly_log_level(LY_LLERR); |
Michal Vasko | 2bf4af4 | 2023-01-04 12:08:38 +0100 | [diff] [blame] | 491 | |
Michal Vasko | c40548b | 2021-09-30 13:05:47 +0200 | [diff] [blame] | 492 | if (verbosity < LY_LLDBG) { |
Michal Vasko | b0d307b | 2021-11-25 11:15:16 +0100 | [diff] [blame] | 493 | ++verbosity; |
Radek Krejci | ed5acc5 | 2019-04-25 15:57:04 +0200 | [diff] [blame] | 494 | } |
Michal Vasko | b0d307b | 2021-11-25 11:15:16 +0100 | [diff] [blame] | 495 | ly_log_level(verbosity); |
Radek Krejci | ed5acc5 | 2019-04-25 15:57:04 +0200 | [diff] [blame] | 496 | break; |
Michal Vasko | c40548b | 2021-09-30 13:05:47 +0200 | [diff] [blame] | 497 | } /* case 'V' */ |
Radek Krejci | e9f13b1 | 2020-11-09 17:42:04 +0100 | [diff] [blame] | 498 | |
Michal Vasko | b0d307b | 2021-11-25 11:15:16 +0100 | [diff] [blame] | 499 | case 'Q': { /* --quiet */ |
| 500 | LY_LOG_LEVEL verbosity = ly_log_level(LY_LLERR); |
Michal Vasko | 2bf4af4 | 2023-01-04 12:08:38 +0100 | [diff] [blame] | 501 | |
Michal Vasko | b0d307b | 2021-11-25 11:15:16 +0100 | [diff] [blame] | 502 | if (verbosity == LY_LLERR) { |
| 503 | /* turn logging off */ |
| 504 | ly_log_options(LY_LOSTORE_LAST); |
| 505 | } else if (verbosity > LY_LLERR) { |
| 506 | --verbosity; |
| 507 | } |
| 508 | ly_log_level(verbosity); |
| 509 | break; |
| 510 | } /* case 'Q' */ |
| 511 | |
Radek Krejci | e9f13b1 | 2020-11-09 17:42:04 +0100 | [diff] [blame] | 512 | case 'f': /* --format */ |
aPiecek | 113e0f0 | 2023-06-09 08:47:48 +0200 | [diff] [blame] | 513 | if (yl_opt_update_out_format(optarg, yo)) { |
Radek Krejci | ed5acc5 | 2019-04-25 15:57:04 +0200 | [diff] [blame] | 514 | help(1); |
Radek Krejci | e9f13b1 | 2020-11-09 17:42:04 +0100 | [diff] [blame] | 515 | return -1; |
Radek Krejci | ed5acc5 | 2019-04-25 15:57:04 +0200 | [diff] [blame] | 516 | } |
| 517 | break; |
Radek Krejci | e9f13b1 | 2020-11-09 17:42:04 +0100 | [diff] [blame] | 518 | |
aPiecek | ef0a339 | 2023-05-16 10:34:32 +0200 | [diff] [blame] | 519 | case 'I': /* --in-format */ |
aPiecek | b5dff49 | 2023-06-09 09:38:08 +0200 | [diff] [blame] | 520 | if (yo_opt_update_data_in_format(optarg, yo)) { |
aPiecek | ef0a339 | 2023-05-16 10:34:32 +0200 | [diff] [blame] | 521 | YLMSG_E("Unknown input format %s\n", optarg); |
| 522 | help(1); |
| 523 | return -1; |
| 524 | } |
| 525 | break; |
| 526 | |
aPiecek | 113e0f0 | 2023-06-09 08:47:48 +0200 | [diff] [blame] | 527 | case 'p': /* --path */ |
aPiecek | a83b8e0 | 2023-06-07 15:25:16 +0200 | [diff] [blame] | 528 | if (searchpath_strcat(&yo->searchpaths, optarg)) { |
Michal Vasko | c40548b | 2021-09-30 13:05:47 +0200 | [diff] [blame] | 529 | YLMSG_E("Storing searchpath failed.\n"); |
| 530 | return -1; |
| 531 | } |
Michal Vasko | c40548b | 2021-09-30 13:05:47 +0200 | [diff] [blame] | 532 | break; |
aPiecek | 113e0f0 | 2023-06-09 08:47:48 +0200 | [diff] [blame] | 533 | /* case 'p' */ |
Michal Vasko | c40548b | 2021-09-30 13:05:47 +0200 | [diff] [blame] | 534 | |
aPiecek | 88ae15e | 2023-06-09 10:20:17 +0200 | [diff] [blame] | 535 | case 'D': /* --disable-searchdir */ |
aPiecek | a83b8e0 | 2023-06-07 15:25:16 +0200 | [diff] [blame] | 536 | if (yo->ctx_options & LY_CTX_DISABLE_SEARCHDIRS) { |
Michal Vasko | c40548b | 2021-09-30 13:05:47 +0200 | [diff] [blame] | 537 | YLMSG_W("The -D option specified too many times.\n"); |
| 538 | } |
aPiecek | 88ae15e | 2023-06-09 10:20:17 +0200 | [diff] [blame] | 539 | yo_opt_update_disable_searchdir(yo); |
Michal Vasko | c40548b | 2021-09-30 13:05:47 +0200 | [diff] [blame] | 540 | break; |
| 541 | |
| 542 | case 'F': /* --features */ |
aPiecek | a83b8e0 | 2023-06-07 15:25:16 +0200 | [diff] [blame] | 543 | if (parse_features(optarg, &yo->schema_features)) { |
Michal Vasko | c40548b | 2021-09-30 13:05:47 +0200 | [diff] [blame] | 544 | return -1; |
| 545 | } |
| 546 | break; |
| 547 | |
Michal Vasko | 8d6d0ad | 2021-10-19 12:32:27 +0200 | [diff] [blame] | 548 | case 'i': /* --make-implemented */ |
aPiecek | 7f22c10 | 2023-06-09 09:48:44 +0200 | [diff] [blame] | 549 | yo_opt_update_make_implemented(yo); |
Michal Vasko | c40548b | 2021-09-30 13:05:47 +0200 | [diff] [blame] | 550 | break; |
| 551 | |
Radek Krejci | e9f13b1 | 2020-11-09 17:42:04 +0100 | [diff] [blame] | 552 | case 'P': /* --schema-node */ |
aPiecek | a83b8e0 | 2023-06-07 15:25:16 +0200 | [diff] [blame] | 553 | yo->schema_node_path = optarg; |
Radek Krejci | ed5acc5 | 2019-04-25 15:57:04 +0200 | [diff] [blame] | 554 | break; |
Radek Krejci | e9f13b1 | 2020-11-09 17:42:04 +0100 | [diff] [blame] | 555 | |
| 556 | case 'q': /* --single-node */ |
aPiecek | a83b8e0 | 2023-06-07 15:25:16 +0200 | [diff] [blame] | 557 | yo->schema_print_options |= LYS_PRINT_NO_SUBSTMT; |
Radek Krejci | e9f13b1 | 2020-11-09 17:42:04 +0100 | [diff] [blame] | 558 | break; |
| 559 | |
Michal Vasko | fe74d1e | 2021-09-30 13:17:36 +0200 | [diff] [blame] | 560 | case 's': /* --submodule */ |
aPiecek | a83b8e0 | 2023-06-07 15:25:16 +0200 | [diff] [blame] | 561 | yo->submodule = optarg; |
Michal Vasko | fe74d1e | 2021-09-30 13:17:36 +0200 | [diff] [blame] | 562 | break; |
| 563 | |
ekinzie | 0ab8b30 | 2022-10-10 03:03:57 -0400 | [diff] [blame] | 564 | case 'x': /* --ext-data */ |
aPiecek | a83b8e0 | 2023-06-07 15:25:16 +0200 | [diff] [blame] | 565 | yo->schema_context_filename = optarg; |
ekinzie | 0ab8b30 | 2022-10-10 03:03:57 -0400 | [diff] [blame] | 566 | break; |
| 567 | |
Michal Vasko | 667ce6b | 2021-01-25 15:00:27 +0100 | [diff] [blame] | 568 | case 'n': /* --not-strict */ |
aPiecek | a83b8e0 | 2023-06-07 15:25:16 +0200 | [diff] [blame] | 569 | yo->data_parse_options &= ~LYD_PARSE_STRICT; |
Radek Krejci | e9f13b1 | 2020-11-09 17:42:04 +0100 | [diff] [blame] | 570 | break; |
| 571 | |
| 572 | case 'e': /* --present */ |
aPiecek | a83b8e0 | 2023-06-07 15:25:16 +0200 | [diff] [blame] | 573 | yo->data_validate_options |= LYD_VALIDATE_PRESENT; |
Radek Krejci | e9f13b1 | 2020-11-09 17:42:04 +0100 | [diff] [blame] | 574 | break; |
| 575 | |
| 576 | case 't': /* --type */ |
| 577 | if (data_type_set) { |
| 578 | YLMSG_E("The data type (-t) cannot be set multiple times.\n"); |
| 579 | return -1; |
| 580 | } |
| 581 | |
aPiecek | 3167f38 | 2023-06-09 09:23:10 +0200 | [diff] [blame] | 582 | if (yl_opt_update_data_type(optarg, yo)) { |
Radek Krejci | e9f13b1 | 2020-11-09 17:42:04 +0100 | [diff] [blame] | 583 | YLMSG_E("Unknown data tree type %s\n", optarg); |
| 584 | help(1); |
| 585 | return -1; |
| 586 | } |
| 587 | |
| 588 | data_type_set = 1; |
| 589 | break; |
| 590 | |
Michal Vasko | c40548b | 2021-09-30 13:05:47 +0200 | [diff] [blame] | 591 | case 'd': /* --default */ |
aPiecek | 20cc2fe | 2023-06-09 09:32:28 +0200 | [diff] [blame] | 592 | if (yo_opt_update_data_default(optarg, yo)) { |
Michal Vasko | c40548b | 2021-09-30 13:05:47 +0200 | [diff] [blame] | 593 | YLMSG_E("Unknown default mode %s\n", optarg); |
| 594 | help(1); |
| 595 | return -1; |
| 596 | } |
| 597 | break; |
| 598 | |
aPiecek | 1b62976 | 2023-04-12 13:52:30 +0200 | [diff] [blame] | 599 | case 'E': /* --data-xpath */ |
aPiecek | a83b8e0 | 2023-06-07 15:25:16 +0200 | [diff] [blame] | 600 | if (ly_set_add(&yo->data_xpath, optarg, 0, NULL)) { |
aPiecek | 1b62976 | 2023-04-12 13:52:30 +0200 | [diff] [blame] | 601 | YLMSG_E("Storing XPath \"%s\" failed.\n", optarg); |
| 602 | return -1; |
| 603 | } |
| 604 | break; |
| 605 | |
Michal Vasko | c40548b | 2021-09-30 13:05:47 +0200 | [diff] [blame] | 606 | case 'l': /* --list */ |
aPiecek | a83b8e0 | 2023-06-07 15:25:16 +0200 | [diff] [blame] | 607 | yo->list = 1; |
Michal Vasko | c40548b | 2021-09-30 13:05:47 +0200 | [diff] [blame] | 608 | break; |
| 609 | |
| 610 | case 'L': /* --tree-line-length */ |
aPiecek | a83b8e0 | 2023-06-07 15:25:16 +0200 | [diff] [blame] | 611 | yo->line_length = atoi(optarg); |
Michal Vasko | c40548b | 2021-09-30 13:05:47 +0200 | [diff] [blame] | 612 | break; |
| 613 | |
| 614 | case 'o': /* --output */ |
aPiecek | a83b8e0 | 2023-06-07 15:25:16 +0200 | [diff] [blame] | 615 | if (yo->out) { |
Michal Vasko | c40548b | 2021-09-30 13:05:47 +0200 | [diff] [blame] | 616 | YLMSG_E("Only a single output can be specified.\n"); |
| 617 | return -1; |
| 618 | } else { |
aPiecek | a83b8e0 | 2023-06-07 15:25:16 +0200 | [diff] [blame] | 619 | if (ly_out_new_filepath(optarg, &yo->out)) { |
Michal Vasko | c40548b | 2021-09-30 13:05:47 +0200 | [diff] [blame] | 620 | YLMSG_E("Unable open output file %s (%s)\n", optarg, strerror(errno)); |
| 621 | return -1; |
| 622 | } |
| 623 | } |
| 624 | break; |
| 625 | |
Radek Krejci | e9f13b1 | 2020-11-09 17:42:04 +0100 | [diff] [blame] | 626 | case 'O': /* --operational */ |
aPiecek | a83b8e0 | 2023-06-07 15:25:16 +0200 | [diff] [blame] | 627 | if (yo->data_operational.path) { |
Radek Krejci | e9f13b1 | 2020-11-09 17:42:04 +0100 | [diff] [blame] | 628 | YLMSG_E("The operational datastore (-O) cannot be set multiple times.\n"); |
| 629 | return -1; |
| 630 | } |
aPiecek | a83b8e0 | 2023-06-07 15:25:16 +0200 | [diff] [blame] | 631 | yo->data_operational.path = optarg; |
Radek Krejci | e9f13b1 | 2020-11-09 17:42:04 +0100 | [diff] [blame] | 632 | break; |
| 633 | |
Michal Vasko | 3f08fb9 | 2022-04-21 09:52:35 +0200 | [diff] [blame] | 634 | case 'R': /* --reply-rpc */ |
aPiecek | a83b8e0 | 2023-06-07 15:25:16 +0200 | [diff] [blame] | 635 | if (yo->reply_rpc.path) { |
Michal Vasko | 3f08fb9 | 2022-04-21 09:52:35 +0200 | [diff] [blame] | 636 | YLMSG_E("The PRC of the reply (-R) cannot be set multiple times.\n"); |
| 637 | return -1; |
| 638 | } |
aPiecek | a83b8e0 | 2023-06-07 15:25:16 +0200 | [diff] [blame] | 639 | yo->reply_rpc.path = optarg; |
Michal Vasko | 3f08fb9 | 2022-04-21 09:52:35 +0200 | [diff] [blame] | 640 | break; |
| 641 | |
Radek Krejci | e9f13b1 | 2020-11-09 17:42:04 +0100 | [diff] [blame] | 642 | case 'm': /* --merge */ |
aPiecek | a83b8e0 | 2023-06-07 15:25:16 +0200 | [diff] [blame] | 643 | yo->data_merge = 1; |
Radek Krejci | e9f13b1 | 2020-11-09 17:42:04 +0100 | [diff] [blame] | 644 | break; |
| 645 | |
Michal Vasko | c431a0a | 2021-01-25 14:31:58 +0100 | [diff] [blame] | 646 | case 'y': /* --yang-library */ |
aPiecek | a83b8e0 | 2023-06-07 15:25:16 +0200 | [diff] [blame] | 647 | yo->ctx_options &= ~LY_CTX_NO_YANGLIBRARY; |
Michal Vasko | 24aaf8e | 2022-02-04 11:15:26 +0100 | [diff] [blame] | 648 | break; |
| 649 | |
| 650 | case 'Y': /* --yang-library-file */ |
aPiecek | a83b8e0 | 2023-06-07 15:25:16 +0200 | [diff] [blame] | 651 | yo->ctx_options &= ~LY_CTX_NO_YANGLIBRARY; |
| 652 | yo->yang_lib_file = optarg; |
Michal Vasko | c431a0a | 2021-01-25 14:31:58 +0100 | [diff] [blame] | 653 | break; |
| 654 | |
steweg | d8e2fc9 | 2023-05-31 09:52:56 +0200 | [diff] [blame] | 655 | case 'X': /* --extended-leafref */ |
aPiecek | a83b8e0 | 2023-06-07 15:25:16 +0200 | [diff] [blame] | 656 | yo->ctx_options |= LY_CTX_LEAFREF_EXTENDED; |
steweg | d8e2fc9 | 2023-05-31 09:52:56 +0200 | [diff] [blame] | 657 | break; |
| 658 | |
Radek Krejci | ed5acc5 | 2019-04-25 15:57:04 +0200 | [diff] [blame] | 659 | #ifndef NDEBUG |
aPiecek | 0cbc902 | 2023-06-08 16:58:56 +0200 | [diff] [blame] | 660 | case 'G': /* --debug */ |
| 661 | if (set_debug_groups(optarg, yo)) { |
| 662 | return -1; |
Radek Krejci | ed5acc5 | 2019-04-25 15:57:04 +0200 | [diff] [blame] | 663 | } |
Radek Krejci | ed5acc5 | 2019-04-25 15:57:04 +0200 | [diff] [blame] | 664 | break; |
aPiecek | 0cbc902 | 2023-06-08 16:58:56 +0200 | [diff] [blame] | 665 | /* case 'G' */ |
Radek Krejci | ed5acc5 | 2019-04-25 15:57:04 +0200 | [diff] [blame] | 666 | #endif |
Michal Vasko | 27a4acb | 2021-11-22 10:03:46 +0100 | [diff] [blame] | 667 | default: |
| 668 | YLMSG_E("Invalid option or missing argument: -%c\n", optopt); |
| 669 | return -1; |
Radek Krejci | e9f13b1 | 2020-11-09 17:42:04 +0100 | [diff] [blame] | 670 | } /* switch */ |
| 671 | } |
| 672 | |
Radek Krejci | e9f13b1 | 2020-11-09 17:42:04 +0100 | [diff] [blame] | 673 | /* additional checks for the options combinations */ |
aPiecek | a83b8e0 | 2023-06-07 15:25:16 +0200 | [diff] [blame] | 674 | if (!yo->list && (optind >= argc)) { |
Radek Krejci | e9f13b1 | 2020-11-09 17:42:04 +0100 | [diff] [blame] | 675 | help(1); |
| 676 | YLMSG_E("Missing <schema> to process.\n"); |
| 677 | return 1; |
| 678 | } |
| 679 | |
aPiecek | bc39de1 | 2023-06-08 08:10:29 +0200 | [diff] [blame] | 680 | if (cmd_data_dep(yo, 0)) { |
Michal Vasko | 3f08fb9 | 2022-04-21 09:52:35 +0200 | [diff] [blame] | 681 | return -1; |
| 682 | } |
aPiecek | 04c8c2e | 2023-06-08 08:38:22 +0200 | [diff] [blame] | 683 | if (cmd_print_dep(yo, 0)) { |
| 684 | return -1; |
aPiecek | 2cfeeae | 2021-04-21 13:17:34 +0200 | [diff] [blame] | 685 | } |
| 686 | |
aPiecek | 4ceaf18 | 2023-06-12 14:52:51 +0200 | [diff] [blame] | 687 | /* Create the libyang context. */ |
| 688 | if (create_ly_context(yo->yang_lib_file, yo->searchpaths, &yo->schema_features, &yo->ctx_options, ctx)) { |
| 689 | return -1; |
| 690 | } |
| 691 | |
| 692 | /* Set callback providing run-time extension instance data. */ |
| 693 | if (yo->schema_context_filename) { |
| 694 | ly_ctx_set_ext_data_clb(*ctx, ext_data_clb, yo->schema_context_filename); |
| 695 | } |
| 696 | |
| 697 | /* Schema modules and data files are just checked and prepared into internal structures for further processing. */ |
aPiecek | 618d1cc | 2023-06-15 08:31:27 +0200 | [diff] [blame] | 698 | if (fill_context_inputs(argc, argv, optind, yo->data_in_format, *ctx, yo)) { |
aPiecek | 4ceaf18 | 2023-06-12 14:52:51 +0200 | [diff] [blame] | 699 | return -1; |
Radek Krejci | e9f13b1 | 2020-11-09 17:42:04 +0100 | [diff] [blame] | 700 | } |
| 701 | |
| 702 | /* the second batch of checks */ |
aPiecek | a83b8e0 | 2023-06-07 15:25:16 +0200 | [diff] [blame] | 703 | if (yo->schema_print_options && !yo->schema_out_format) { |
Radek Krejci | e9f13b1 | 2020-11-09 17:42:04 +0100 | [diff] [blame] | 704 | YLMSG_W("Schema printer options specified, but the schema output format is missing.\n"); |
| 705 | } |
aPiecek | a83b8e0 | 2023-06-07 15:25:16 +0200 | [diff] [blame] | 706 | if (yo->schema_parse_options && !yo->schema_modules.count) { |
Radek Krejci | e9f13b1 | 2020-11-09 17:42:04 +0100 | [diff] [blame] | 707 | YLMSG_W("Schema parser options specified, but no schema input file provided.\n"); |
| 708 | } |
aPiecek | a83b8e0 | 2023-06-07 15:25:16 +0200 | [diff] [blame] | 709 | if (yo->data_print_options && !yo->data_out_format) { |
Radek Krejci | e9f13b1 | 2020-11-09 17:42:04 +0100 | [diff] [blame] | 710 | YLMSG_W("data printer options specified, but the data output format is missing.\n"); |
| 711 | } |
aPiecek | a83b8e0 | 2023-06-07 15:25:16 +0200 | [diff] [blame] | 712 | if (((yo->data_parse_options != YL_DEFAULT_DATA_PARSE_OPTIONS) || yo->data_type) && !yo->data_inputs.count) { |
Radek Krejci | e9f13b1 | 2020-11-09 17:42:04 +0100 | [diff] [blame] | 713 | YLMSG_W("Data parser options specified, but no data input file provided.\n"); |
| 714 | } |
| 715 | |
Radek Krejci | e9f13b1 | 2020-11-09 17:42:04 +0100 | [diff] [blame] | 716 | return 0; |
| 717 | } |
| 718 | |
| 719 | int |
| 720 | main_ni(int argc, char *argv[]) |
| 721 | { |
| 722 | int ret = EXIT_SUCCESS, r; |
aPiecek | a83b8e0 | 2023-06-07 15:25:16 +0200 | [diff] [blame] | 723 | struct yl_opt yo = {0}; |
| 724 | struct ly_ctx *ctx = NULL; |
roman | 300b878 | 2022-08-11 12:49:21 +0200 | [diff] [blame] | 725 | char *features_output = NULL; |
| 726 | struct ly_set set = {0}; |
| 727 | uint32_t u; |
Radek Krejci | ed5acc5 | 2019-04-25 15:57:04 +0200 | [diff] [blame] | 728 | |
| 729 | /* set callback for printing libyang messages */ |
| 730 | ly_set_log_clb(libyang_verbclb, 1); |
Radek Krejci | e9f13b1 | 2020-11-09 17:42:04 +0100 | [diff] [blame] | 731 | |
aPiecek | a83b8e0 | 2023-06-07 15:25:16 +0200 | [diff] [blame] | 732 | r = fill_context(argc, argv, &yo, &ctx); |
Radek Krejci | e9f13b1 | 2020-11-09 17:42:04 +0100 | [diff] [blame] | 733 | if (r < 0) { |
| 734 | ret = EXIT_FAILURE; |
Radek Krejci | ed5acc5 | 2019-04-25 15:57:04 +0200 | [diff] [blame] | 735 | } |
Radek Krejci | e9f13b1 | 2020-11-09 17:42:04 +0100 | [diff] [blame] | 736 | if (r) { |
Radek Krejci | ed5acc5 | 2019-04-25 15:57:04 +0200 | [diff] [blame] | 737 | goto cleanup; |
| 738 | } |
| 739 | |
Radek Krejci | e9f13b1 | 2020-11-09 17:42:04 +0100 | [diff] [blame] | 740 | /* do the required job - parse, validate, print */ |
| 741 | |
aPiecek | a83b8e0 | 2023-06-07 15:25:16 +0200 | [diff] [blame] | 742 | if (yo.list) { |
Radek Krejci | e9f13b1 | 2020-11-09 17:42:04 +0100 | [diff] [blame] | 743 | /* print the list of schemas */ |
aPiecek | 8ec2e83 | 2023-06-12 15:35:34 +0200 | [diff] [blame] | 744 | ret = cmd_list_exec(&ctx, &yo, NULL); |
aPiecek | 3426262 | 2023-03-27 08:28:25 +0200 | [diff] [blame] | 745 | goto cleanup; |
aPiecek | 816107f | 2023-06-15 15:31:53 +0200 | [diff] [blame^] | 746 | } |
| 747 | if (yo.feature_param_format) { |
| 748 | for (u = 0; u < yo.schema_modules.count; u++) { |
| 749 | if ((ret = cmd_feature_exec(&ctx, &yo, ((struct lys_module *)yo.schema_modules.objs[u])->name))) { |
aPiecek | f8ad2a0 | 2023-06-15 09:10:39 +0200 | [diff] [blame] | 750 | goto cleanup; |
| 751 | } |
Radek Krejci | ed5acc5 | 2019-04-25 15:57:04 +0200 | [diff] [blame] | 752 | } |
aPiecek | 816107f | 2023-06-15 15:31:53 +0200 | [diff] [blame^] | 753 | if ((ret = cmd_feature_fin(ctx, &yo))) { |
| 754 | goto cleanup; |
| 755 | } |
| 756 | } else if (yo.schema_out_format && yo.schema_node_path) { |
| 757 | if ((ret = cmd_print_exec(&ctx, &yo, NULL))) { |
| 758 | goto cleanup; |
| 759 | } |
| 760 | } else if (yo.schema_out_format && yo.submodule) { |
| 761 | if ((ret = cmd_print_exec(&ctx, &yo, yo.submodule))) { |
| 762 | goto cleanup; |
| 763 | } |
| 764 | } else if (yo.schema_out_format) { |
| 765 | for (u = 0; u < yo.schema_modules.count; ++u) { |
| 766 | yo.last_one = (u + 1) == yo.schema_modules.count; |
| 767 | if ((ret = cmd_print_exec(&ctx, &yo, ((struct lys_module *)yo.schema_modules.objs[u])->name))) { |
Radek Krejci | 047d64e | 2020-12-03 12:57:10 +0100 | [diff] [blame] | 768 | goto cleanup; |
| 769 | } |
Radek Krejci | ed5acc5 | 2019-04-25 15:57:04 +0200 | [diff] [blame] | 770 | } |
Radek Krejci | ed5acc5 | 2019-04-25 15:57:04 +0200 | [diff] [blame] | 771 | } |
Radek Krejci | ed5acc5 | 2019-04-25 15:57:04 +0200 | [diff] [blame] | 772 | |
aPiecek | 816107f | 2023-06-15 15:31:53 +0200 | [diff] [blame^] | 773 | /* do the data validation despite the schema was printed */ |
| 774 | if (yo.data_inputs.size) { |
| 775 | if ((ret = cmd_data_fin(ctx, &yo))) { |
| 776 | goto cleanup; |
| 777 | } |
| 778 | } |
| 779 | |
Radek Krejci | ed5acc5 | 2019-04-25 15:57:04 +0200 | [diff] [blame] | 780 | cleanup: |
Radek Krejci | e9f13b1 | 2020-11-09 17:42:04 +0100 | [diff] [blame] | 781 | /* cleanup */ |
aPiecek | a83b8e0 | 2023-06-07 15:25:16 +0200 | [diff] [blame] | 782 | yl_opt_erase(&yo); |
| 783 | ly_ctx_destroy(ctx); |
roman | 300b878 | 2022-08-11 12:49:21 +0200 | [diff] [blame] | 784 | free(features_output); |
| 785 | ly_set_erase(&set, NULL); |
Radek Krejci | ed5acc5 | 2019-04-25 15:57:04 +0200 | [diff] [blame] | 786 | |
Radek Krejci | ed5acc5 | 2019-04-25 15:57:04 +0200 | [diff] [blame] | 787 | return ret; |
| 788 | } |