blob: c7354880a2f608f7ae58c84b67862ec8682b0610 [file] [log] [blame]
Radek Krejcid7e8a622018-10-29 15:54:55 +01001/**
Radek Krejci0935f412019-08-20 16:15:18 +02002 * @file plugins_exts.h
Radek Krejcid7e8a622018-10-29 15:54:55 +01003 * @author Radek Krejci <rkrejci@cesnet.cz>
Michal Vaskofbbea932022-06-07 11:00:55 +02004 * @author Michal Vasko <mvasko@cesnet.cz>
Radek Krejcid7e8a622018-10-29 15:54:55 +01005 * @brief libyang support for YANG extensions implementation.
6 *
Michal Vaskofbbea932022-06-07 11:00:55 +02007 * Copyright (c) 2015 - 2022 CESNET, z.s.p.o.
Radek Krejcid7e8a622018-10-29 15:54:55 +01008 *
9 * This source code is licensed under BSD 3-Clause License (the "License").
10 * You may not use this file except in compliance with the License.
11 * You may obtain a copy of the License at
12 *
13 * https://opensource.org/licenses/BSD-3-Clause
14 */
15
Radek Krejci0935f412019-08-20 16:15:18 +020016#ifndef LY_PLUGINS_EXTS_H_
17#define LY_PLUGINS_EXTS_H_
Radek Krejcid7e8a622018-10-29 15:54:55 +010018
Radek Krejci535ea9f2020-05-29 16:01:05 +020019#include "log.h"
Michal Vaskofbbea932022-06-07 11:00:55 +020020#include "parser_data.h"
Radek Krejci3e6632f2021-03-22 22:08:21 +010021#include "plugins.h"
tadeas-vintrlik2aa36b42021-11-03 13:07:34 +010022#include "tree_data.h"
Radek Krejci859a15a2021-03-05 20:56:59 +010023#include "tree_edit.h"
Radek Krejci0e59c312019-08-15 15:34:15 +020024#include "tree_schema.h"
Radek Krejci535ea9f2020-05-29 16:01:05 +020025
26struct ly_ctx;
tadeas-vintrlik2aa36b42021-11-03 13:07:34 +010027struct ly_in;
Radek Krejci535ea9f2020-05-29 16:01:05 +020028struct lyd_node;
Michal Vasko193dacd2022-10-13 08:43:05 +020029struct lysc_ctx;
Radek Krejci0aa1f702021-04-01 16:16:19 +020030struct lysc_ext_substmt;
Michal Vaskob4750962022-10-06 15:33:35 +020031struct lysp_ctx;
Michal Vasko193dacd2022-10-13 08:43:05 +020032struct lyspr_ctx;
aPiecek03cb4872022-10-24 10:31:51 +020033struct lyspr_tree_ctx;
Radek Krejci0e59c312019-08-15 15:34:15 +020034
Radek Krejcid7e8a622018-10-29 15:54:55 +010035#ifdef __cplusplus
36extern "C" {
37#endif
38
39/**
Radek Krejci75104122021-04-01 15:37:45 +020040 * @page howtoPluginsExtensions Extension Plugins
41 *
42 * Note that the part of the libyang API here is available only by including a separated `<libyang/plugins_exts.h>` header
43 * file. Also note that the extension plugins API is versioned separately from libyang itself, so backward incompatible
44 * changes can come even without changing libyang major version.
45 *
46 * YANG extensions are very complex. Usually only its description specifies how it is supposed to behave, what are the
47 * allowed substatements, their cardinality or if the standard YANG statements placed inside the extension differs somehow
aPiecekb0445f22021-06-24 11:34:07 +020048 * in their meaning or behavior. libyang provides the Extension plugins API to implement such extensions and add its support
Radek Krejci75104122021-04-01 15:37:45 +020049 * into libyang itself. However we tried our best, the API is not (and it cannot be) so universal and complete to cover all
50 * possibilities. There are definitely use cases which cannot be simply implemented only with this API.
51 *
52 * libyang implements 3 important extensions: [NACM](https://tools.ietf.org/html/rfc8341), [Metadata](@ref howtoDataMetadata)
53 * and [yang-data](@ref howtoDataYangdata). Despite the core implementation in all three cases is done via extension plugin
54 * API, also other parts of the libyang code had to be extended to cover complete scope of the extensions.
55 *
56 * We believe, that the API is capable to allow implementation of very wide range of YANG extensions. However, if you see
57 * limitations for the particular YANG extension, don't hesitate to contact the project developers to discuss all the
58 * options, including updating the API.
59 *
60 * The plugin's functionality is provided to libyang via a set of callbacks specified as an array of ::lyplg_ext_record
61 * structures using the ::LYPLG_EXTENSIONS macro.
62 *
63 * The most important ::lyplg_ext.compile callback is responsible for processing the parsed extension instance. In this
64 * phase, the callback must validate all the substatements, their values or placement of the extension instance itself.
65 * If needed, the processed data can be stored in some form into the compiled schema representation of the extension
66 * instance. To make the compilation process as easy as possible, libyang provides several
67 * [helper functions](@ref pluginsExtensionsCompile) to handle the schema compilation context and to compile standard YANG
68 * statements in the same way the libyang does it internally.
69 *
70 * The data validation callback ::lyplg_ext.validate is used for additional validation of a data nodes that contains the
71 * connected extension instance directly (as a substatement) or indirectly in case of terminal nodes via their type (no
72 * matter if the extension instance is placed directly in the leaf's/leaf-list's type or in the type of the referenced
73 * typedef).
74 *
aPiecek03cb4872022-10-24 10:31:51 +020075 * The ::lyplg_ext.printer_info callback implement printing the compiled extension instance data when the schema (module) is
Radek Krejci75104122021-04-01 15:37:45 +020076 * being printed in the ::LYS_OUT_YANG_COMPILED (info) format. As for compile callback, there are also
77 * [helper functions](@ref pluginsExtensionsPrint) to access printer's context and to print standard YANG statements
78 * placed in the extension instance by libyang itself.
79 *
aPiecek03cb4872022-10-24 10:31:51 +020080 * The ::lyplg_ext.printer_ctree and ::lyplg_ext.printer_ptree callbacks implement printing of YANG tree diagrams
81 * (RFC 8340) for extension instance data. These callbacks are called for extension instances that have
82 * parents of type LY_STMT_MODULE, LY_STMT_SUBMODULE. Or these callbacks are called if the printer_tree finds
83 * a compiled/parsed data-node containing an extension instance. The callbacks should then decide which nodes
84 * should be printed within the extension instance. In addition, it is possible to register additional callbacks
85 * to the printer_tree context to override the form of the each node in the extension instance.
86 *
Radek Krejci75104122021-04-01 15:37:45 +020087 * The last callback, ::lyplg_ext.free, is supposed to free all the data allocated by the ::lyplg_ext.compile callback.
88 * To free the data created by helper function ::lys_compile_extension_instance(), the plugin can used
89 * ::lyplg_ext_instance_substatements_free().
90 *
91 * The plugin information contains also the plugin identifier (::lyplg_type.id). This string can serve to identify the
92 * specific plugin responsible to storing data value. In case the user can recognize the id string, it can access the
93 * plugin specific data with the appropriate knowledge of its structure.
94 *
Michal Vasko193dacd2022-10-13 08:43:05 +020095 * Logging information from an extension plugin is possible via ::lyplg_extp_log() and ::yplg_extc_log() functions.
Radek Krejci75104122021-04-01 15:37:45 +020096 */
97
98/**
99 * @defgroup pluginsExtensions Plugins: Extensions
100 *
101 * Structures and functions to for libyang plugins implementing specific YANG extensions defined in YANG modules. For more
102 * information, see @ref howtoPluginsTypes.
103 *
104 * This part of libyang API is available by including `<libyang/plugins_ext.h>` header file.
Radek Krejcid7e8a622018-10-29 15:54:55 +0100105 *
106 * @{
107 */
108
109/**
Radek Krejci0935f412019-08-20 16:15:18 +0200110 * @brief Extensions API version
111 */
Michal Vasko0b50f6b2022-10-05 15:07:55 +0200112#define LYPLG_EXT_API_VERSION 6
Radek Krejci0935f412019-08-20 16:15:18 +0200113
114/**
Michal Vasko193dacd2022-10-13 08:43:05 +0200115 * @brief Mask for an operation statement.
Michal Vaskob4750962022-10-06 15:33:35 +0200116 *
Michal Vasko193dacd2022-10-13 08:43:05 +0200117 * This mask matches action and RPC.
Michal Vaskob4750962022-10-06 15:33:35 +0200118 */
Michal Vasko193dacd2022-10-13 08:43:05 +0200119#define LY_STMT_OP_MASK (LY_STMT_ACTION | LY_STMT_RPC)
Michal Vaskob4750962022-10-06 15:33:35 +0200120
121/**
Michal Vasko193dacd2022-10-13 08:43:05 +0200122 * @brief Mask for a data node statement.
Michal Vaskob4750962022-10-06 15:33:35 +0200123 *
Michal Vasko193dacd2022-10-13 08:43:05 +0200124 * This mask matches anydata, anyxml, case, choice, container, leaf, leaf-list, and list.
Michal Vaskob4750962022-10-06 15:33:35 +0200125 */
Michal Vasko193dacd2022-10-13 08:43:05 +0200126#define LY_STMT_DATA_NODE_MASK (LY_STMT_ANYDATA | LY_STMT_ANYXML | LY_STMT_CASE | LY_STMT_CHOICE | LY_STMT_CONTAINER |\
127 LY_STMT_LEAF | LY_STMT_LEAF_LIST | LY_STMT_LIST)
Michal Vaskob4750962022-10-06 15:33:35 +0200128
129/**
Michal Vasko193dacd2022-10-13 08:43:05 +0200130 * @brief Mask for a node statement.
Michal Vaskob4750962022-10-06 15:33:35 +0200131 *
Michal Vasko193dacd2022-10-13 08:43:05 +0200132 * This mask matches notification, input, output, action, RPC, anydata, anyxml, augment, case, choice, container,
133 * grouping, leaf, leaf-list, list, and uses.
Michal Vaskob4750962022-10-06 15:33:35 +0200134 */
Michal Vasko193dacd2022-10-13 08:43:05 +0200135#define LY_STMT_NODE_MASK 0xFFFF
Michal Vaskob4750962022-10-06 15:33:35 +0200136
137/**
138 * @brief List of YANG statements
Michal Vasko193dacd2022-10-13 08:43:05 +0200139 *
140 * Their description mentions what types are stored for each statement. Note that extension instance storage
141 * always stores a pointer to the type, not the type itself.
Michal Vaskob4750962022-10-06 15:33:35 +0200142 */
143enum ly_stmt {
144 LY_STMT_NONE = 0,
145
Michal Vasko193dacd2022-10-13 08:43:05 +0200146 LY_STMT_NOTIFICATION = 0x0001, /**< ::lysp_ext_substmt.storage and ::lysp_ext_instance.parent - `struct lysp_node_notif *`
147 ::lysc_ext_substmt.storage and ::lysc_ext_instance.parent - `struct lysc_node_notif *` */
148 LY_STMT_INPUT = 0x0002, /**< ::lysp_ext_substmt.storage and ::lysp_ext_instance.parent - `struct lysp_node_action_inout *`
149 ::lysc_ext_substmt.storage and ::lysc_ext_instance.parent - `struct lysc_node_action_inout *` */
150 LY_STMT_OUTPUT = 0x0004, /**< ::lysp_ext_substmt.storage and ::lysp_ext_instance.parent - `struct lysp_node_action_inout *`
151 ::lysc_ext_substmt.storage and ::lysc_ext_instance.parent - `struct lysc_node_action_inout *` */
152 LY_STMT_ACTION = 0x0008, /**< ::lysp_ext_substmt.storage and ::lysp_ext_instance.parent - `struct lysp_node_action *`
153 ::lysc_ext_substmt.storage and ::lysc_ext_instance.parent - `struct lysc_node_action *` */
154 LY_STMT_RPC = 0x0010, /**< ::lysp_ext_substmt.storage and ::lysp_ext_instance.parent - `struct lysp_node_action *`
155 ::lysc_ext_substmt.storage and ::lysc_ext_instance.parent - `struct lysc_node_action *` */
156 LY_STMT_ANYDATA = 0x0020, /**< ::lysp_ext_substmt.storage and ::lysp_ext_instance.parent - `struct lysp_node_anydata *`
157 ::lysc_ext_substmt.storage and ::lysc_ext_instance.parent - `struct lysc_node_anydata *` */
158 LY_STMT_ANYXML = 0x0040, /**< ::lysp_ext_substmt.storage and ::lysp_ext_instance.parent - `struct lysp_node_anydata *`
159 ::lysc_ext_substmt.storage and ::lysc_ext_instance.parent - `struct lysc_node_anydata *` */
160 LY_STMT_AUGMENT = 0x0080, /**< ::lysp_ext_substmt.storage and ::lysp_ext_instance.parent - `struct lysp_node_augment *`
161 ::lysc_ext_substmt.storage - not compiled
162 ::lysc_ext_instance.parent - `struct lysc_node *` */
163 LY_STMT_CASE = 0x0100, /**< ::lysp_ext_substmt.storage and ::lysp_ext_instance.parent - `struct lysp_node_case *`
164 ::lysc_ext_substmt.storage and ::lysc_ext_instance.parent - `struct lysc_node_case *` */
165 LY_STMT_CHOICE = 0x0200, /**< ::lysp_ext_substmt.storage and ::lysp_ext_instance.parent - `struct lysp_node_choice *`
166 ::lysc_ext_substmt.storage and ::lysc_ext_instance.parent - `struct lysc_node_choice *` */
167 LY_STMT_CONTAINER = 0x0400, /**< ::lysp_ext_substmt.storage and ::lysp_ext_instance.parent - `struct lysp_node_container *`
168 ::lysc_ext_substmt.storage and ::lysc_ext_instance.parent - `struct lysc_node_container *` */
169 LY_STMT_GROUPING = 0x0800, /**< ::lysp_ext_substmt.storage and ::lysp_ext_instance.parent - `struct lysp_node_grp *`
170 ::lysc_ext_substmt.storage - not compiled
171 ::lysc_ext_instance.parent - `struct lysc_node *` */
172 LY_STMT_LEAF = 0x1000, /**< ::lysp_ext_substmt.storage and ::lysp_ext_instance.parent - `struct lysp_node_leaf *`
173 ::lysc_ext_substmt.storage and ::lysc_ext_instance.parent - `struct lysc_node_leaf *` */
174 LY_STMT_LEAF_LIST = 0x2000, /**< ::lysp_ext_substmt.storage and ::lysp_ext_instance.parent - `struct lysp_node_leaflist *`
175 ::lysc_ext_substmt.storage and ::lysc_ext_instance.parent - `struct lysc_node_leaflist *` */
176 LY_STMT_LIST = 0x4000, /**< ::lysp_ext_substmt.storage and ::lysp_ext_instance.parent - `struct lysp_node_list *`
177 ::lysc_ext_substmt.storage and ::lysc_ext_instance.parent - `struct lysc_node_list *` */
178 LY_STMT_USES = 0x8000, /**< ::lysp_ext_substmt.storage and ::lysp_ext_instance.parent - `struct lysp_node_uses *`
179 ::lysc_ext_substmt.storage and ::lysc_ext_instance.parent - `struct lysc_node *` */
Michal Vaskob4750962022-10-06 15:33:35 +0200180
Michal Vasko193dacd2022-10-13 08:43:05 +0200181 LY_STMT_ARGUMENT = 0x10000, /**< ::lysp_ext_substmt.storage - `const char *`
182 ::lysp_ext_instance.parent - `struct lysp_ext *`
183 ::lysc_ext_substmt.storage - `const char *`
184 ::lysc_ext_instance.parent - `struct lysc_ext *` */
185 LY_STMT_BASE = 0x20000, /**< ::lysp_ext_substmt.storage and ::lysp_ext_instance.parent - `const char **`[]
186 ::lysc_ext_substmt.storage - not compiled
187 ::lysc_ext_instance.parent - `struct lysc_ident *` */
188 LY_STMT_BELONGS_TO = 0x30000, /**< ::lysp_ext_substmt.storage - `const char *`
189 ::lysp_ext_instance.parent - `struct lysp_submodule *`
190 ::lysc_ext_substmt.storage - not compiled
191 ::lysc_ext_instance.parent - `struct lysc_module *` */
192 LY_STMT_BIT = 0x40000, /**< ::lysp_ext_substmt.storage - `struct lysp_type_enum *`[]
193 ::lysp_ext_instance.parent - `struct lysp_type_enum *`
194 ::lysc_ext_substmt.storage - `struct lysc_type_bitenum_item *`[]
195 ::lysc_ext_instance.parent - `struct lysc_type_bitenum_item *` */
196 LY_STMT_CONFIG = 0x50000, /**< ::lysp_ext_substmt.storage and ::lysp_ext_instance.parent - `uint16_t *`
197 ::lysc_ext_substmt.storage - `uint16_t *`
198 ::lysc_ext_instance.parent - `struct lysc_node *` */
199 LY_STMT_CONTACT = 0x60000, /**< ::lysp_ext_substmt.storage - `const char *`
200 ::lysp_ext_instance.parent - `struct lysp_(sub)module *`
201 ::lysc_ext_substmt.storage - `const char *`
202 ::lysc_ext_instance.parent - `struct lysc_module *` */
203 LY_STMT_DEFAULT = 0x70000, /**< ::lysp_ext_substmt.storage and ::lysp_ext_instance.parent - `struct lysp_qname *`
204 ::lysc_ext_substmt.storage - not compiled
205 ::lysc_ext_instance.parent - `struct lysc_node *`, `struct lysc_type *` (typedef) */
206 LY_STMT_DESCRIPTION = 0x80000, /**< ::lysp_ext_substmt.storage and ::lysp_ext_instance.parent - `const char *`
207 ::lysc_ext_substmt.storage - `const char *`
208 ::lysc_ext_instance.parent - compiled parent statement */
209 LY_STMT_DEVIATE = 0x90000, /**< ::lysp_ext_substmt.storage - `struct lysp_deviate *`[]
210 ::lysp_ext_instance.parent - `struct lysp_deviate *`
211 ::lysc_ext_substmt.storage and ::lysc_ext_instance.parent - not compiled */
212 LY_STMT_DEVIATION = 0xA0000, /**< ::lysp_ext_substmt.storage - `struct lysp_deviation *`[]
213 ::lysp_ext_instance.parent - `struct lysp_deviation *`
214 ::lysc_ext_substmt.storage - not compiled
215 ::lysc_ext_instance.parent - `struct lysc_node *` */
216 LY_STMT_ENUM = 0xB0000, /**< ::lysp_ext_substmt.storage - `struct lysp_type_enum *`[]
217 ::lysp_ext_instance.parent - `struct lysp_type_enum *`
218 ::lysc_ext_substmt.storage - `struct lysc_type_bitenum_item *`[]
219 ::lysc_ext_instance.parent - `struct lysc_type_bitenum_item *` */
220 LY_STMT_ERROR_APP_TAG = 0xC0000, /**< ::lysp_ext_substmt.storage - `const char *`
221 ::lysp_ext_instance.parent - `struct lysp_restr *`
222 ::lysc_ext_substmt.storage - `const char *`
223 ::lysc_ext_instance.parent - compiled restriction structure */
224 LY_STMT_ERROR_MESSAGE = 0xD0000, /**< ::lysp_ext_substmt.storage - `const char *`
225 ::lysp_ext_instance.parent - `struct lysp_restr *`
226 ::lysc_ext_substmt.storage - `const char *`
227 ::lysc_ext_instance.parent - compiled restriction structure */
228 LY_STMT_EXTENSION = 0xE0000, /**< ::lysp_ext_substmt.storage - `struct lysp_ext *`[]
229 ::lysp_ext_instance.parent - `struct lysp_ext *`
230 ::lysc_ext_substmt.storage - not compiled explicitly
231 ::lysc_ext_instance.parent - `struct lysc_ext *` */
232 LY_STMT_EXTENSION_INSTANCE = 0xF0000, /**< ::lysp_ext_substmt.storage - `struct lysp_ext_instance *`[]
233 ::lysc_ext_substmt.storage - `struct lysc_ext_instance *`[] */
234 LY_STMT_FEATURE = 0x100000, /**< ::lysp_ext_substmt.storage - `struct lysp_feature *`[]
235 ::lysp_ext_instance.parent - `struct lysp_feature *`
236 ::lysc_ext_substmt.storage and ::lysc_ext_instance.parent - not compiled */
237 LY_STMT_FRACTION_DIGITS = 0x110000, /**< ::lysp_ext_substmt.storage - `uint8_t *`
238 ::lysp_ext_instance.parent - `struct lysp_type *`
239 ::lysc_ext_substmt.storage - `uint8_t *`
240 ::lysc_ext_instance.parent - `struct lysc_type *` */
241 LY_STMT_IDENTITY = 0x120000, /**< ::lysp_ext_substmt.storage - `struct lysp_ident *`[]
242 ::lysp_ext_instance.parent - `struct lysp_ident *`
243 ::lysc_ext_substmt.storage - `struct lysc_ident *`[]
244 ::lysc_ext_instance.parent - `struct lysc_ident *` */
245 LY_STMT_IF_FEATURE = 0x130000, /**< ::lysp_ext_substmt.storage and ::lysp_ext_instance.parent - `struct lysp_qname *`[]
246 ::lysc_ext_substmt.storage - no storage, evaluated when compiled
247 ::lysc_ext_instance.parent - compiled parent statement */
248 LY_STMT_IMPORT = 0x140000, /**< ::lysp_ext_substmt.storage - `struct lysp_import *`[]
249 ::lysp_ext_instance.parent - `struct lysp_import *`
250 ::lysc_ext_substmt.storage and ::lysc_ext_instance.parent - not compiled */
251 LY_STMT_INCLUDE = 0x150000, /**< ::lysp_ext_substmt.storage - `struct lysp_include *`[]
252 ::lysp_ext_instance.parent - `struct lysp_include *`
253 ::lysc_ext_substmt.storage and ::lysc_ext_instance.parent - not compiled */
254 LY_STMT_KEY = 0x160000, /**< ::lysp_ext_substmt.storage - `const char *`
255 ::lysp_ext_instance.parent - `struct lysp_node_list *`
256 ::lysc_ext_substmt.storage - `const char *`
257 ::lysc_ext_instance.parent - `struct lysc_node_list *` */
258 LY_STMT_LENGTH = 0x170000, /**< ::lysp_ext_substmt.storage and ::lysp_ext_instance.parent - `struct lysp_restr *`
259 ::lysc_ext_substmt.storage and ::lysc_ext_instance.parent - `struct lysc_range *` */
260 LY_STMT_MANDATORY = 0x180000, /**< ::lysp_ext_substmt.storage and ::lysp_ext_instance.parent - `uint16_t *`
261 ::lysc_ext_substmt.storage - `uint16_t *`
262 ::lysc_ext_instance.parent - `struct lysc_node *` */
263 LY_STMT_MAX_ELEMENTS = 0x190000, /**< ::lysp_ext_substmt.storage and ::lysp_ext_instance.parent - `uint32_t *`
264 ::lysc_ext_substmt.storage - `uint32_t *`
265 ::lysc_ext_instance.parent - `struct lysc_node_list *` */
266 LY_STMT_MIN_ELEMENTS = 0x1A0000, /**< ::lysp_ext_substmt.storage and ::lysp_ext_instance.parent - `uint32_t *`
267 ::lysc_ext_substmt.storage - `uint32_t *`
268 ::lysc_ext_instance.parent - `struct lysc_node_list *` */
269 LY_STMT_MODIFIER = 0x1B0000, /**< ::lysp_ext_substmt.storage - `const char *`
270 ::lysp_ext_instance.parent - `struct lysp_restr *`
271 ::lysc_ext_substmt.storage - `const char *`
272 ::lysc_ext_instance.parent - `struct lysc_pattern *` */
273 LY_STMT_MODULE = 0x1C0000, /**< ::lysp_ext_substmt.storage and ::lysp_ext_instance.parent - `struct lysp_module *`
274 ::lysc_ext_substmt.storage - not compiled
275 ::lysc_ext_instance.parent - `struct lysc_module *` */
276 LY_STMT_MUST = 0x1D0000, /**< ::lysp_ext_substmt.storage - `struct lysp_restr *`[]
277 ::lysp_ext_instance.parent - `struct lysp_restr *`
278 ::lysc_ext_substmt.storage - `struct lysc_must *`[]
279 ::lysc_ext_instance.parent - `struct lysc_must *` */
280 LY_STMT_NAMESPACE = 0x1E0000, /**< ::lysp_ext_substmt.storage - `const char *`
281 ::lysp_ext_instance.parent - `struct lysp_module *`
282 ::lysc_ext_substmt.storage - `const char *`
283 ::lysc_ext_instance.parent - `struct lysc_module *` */
284 LY_STMT_ORDERED_BY = 0x1F0000, /**< ::lysp_ext_substmt.storage - `uint16_t *`
285 ::lysp_ext_instance.parent - `struct lysp_node *`
286 ::lysc_ext_substmt.storage - `uint16_t *`
287 ::lysc_ext_instance.parent - `struct lysc_node *` */
288 LY_STMT_ORGANIZATION = 0x200000, /**< ::lysp_ext_substmt.storage - `const char *`
289 ::lysp_ext_instance.parent - `struct lysp_(sub)module *`
290 ::lysc_ext_substmt.storage - `const char *`
291 ::lysc_ext_instance.parent - `struct lysc_module *` */
292 LY_STMT_PATH = 0x210000, /**< ::lysp_ext_substmt.storage - `struct lyxp_expr *`
293 ::lysp_ext_instance.parent - `struct lysp_type *`
294 ::lysc_ext_substmt.storage - not compiled
295 ::lysc_ext_instance.parent - `struct lysc_type *` */
296 LY_STMT_PATTERN = 0x220000, /**< ::lysp_ext_substmt.storage - `struct lysp_restr *`[]
297 ::lysp_ext_instance.parent - `struct lysp_restr *`
298 ::lysc_ext_substmt.storage - `struct lysc_pattern **`[]
299 ::lysc_ext_instance.parent - `struct lysc_pattern *` */
300 LY_STMT_POSITION = 0x230000, /**< ::lysp_ext_substmt.storage - `int64_t *`
301 ::lysp_ext_instance.parent - `struct lysp_type_enum *`
302 ::lysc_ext_substmt.storage - `int64_t *`
303 ::lysc_ext_instance.parent - `struct lysc_type_bitenum_item *` */
304 LY_STMT_PREFIX = 0x240000, /**< ::lysp_ext_substmt.storage and ::lysp_ext_instance.parent - `const char *`
305 ::lysc_ext_substmt.storage - not compiled
306 ::lysc_ext_instance.parent - `struct lysc_module *` */
307 LY_STMT_PRESENCE = 0x250000, /**< ::lysp_ext_substmt.storage and ::lysp_ext_instance.parent - `const char *`
308 ::lysc_ext_substmt.storage - `const char *`
309 ::lysc_ext_instance.parent - `struct lysc_node_container *` */
310 LY_STMT_RANGE = 0x260000, /**< ::lysp_ext_substmt.storage and ::lysp_ext_instance.parent - `struct lysp_restr *`
311 ::lysc_ext_substmt.storage and ::lysc_ext_instance.parent - `struct lysc_range *` */
312 LY_STMT_REFERENCE = 0x270000, /**< ::lysp_ext_substmt.storage and ::lysp_ext_instance.parent - `const char *`
313 ::lysc_ext_substmt.storage - `const char *`
314 ::lysc_ext_instance.parent - compiled parent statement */
315 LY_STMT_REFINE = 0x280000, /**< ::lysp_ext_substmt.storage - `struct lysp_refine *`[]
316 ::lysp_ext_instance.parent - `struct lysp_refine *`
317 ::lysc_ext_substmt.storage - not compiled
318 ::lysc_ext_instance.parent - `struct lysc_node *` */
319 LY_STMT_REQUIRE_INSTANCE = 0x290000, /**< ::lysp_ext_substmt.storage - `uint8_t *`
320 ::lysp_ext_instance.parent - `struct lysp_type *`
321 ::lysc_ext_substmt.storage - `uint8_t *`
322 ::lysc_ext_instance.parent - `struct lysc_type *` */
323 LY_STMT_REVISION = 0x2A0000, /**< ::lysp_ext_substmt.storage - `struct lysp_revision *`[]
324 ::lysp_ext_instance.parent - `struct lysp_revision *`
325 ::lysc_ext_substmt.storage and ::lysc_ext_instance.parent - not compiled */
326 LY_STMT_REVISION_DATE = 0x2B0000, /**< ::lysp_ext_substmt.storage and ::lysp_ext_instance.parent - `const char *`
327 ::lysc_ext_substmt.storage and ::lysc_ext_instance.parent - not compiled */
328 LY_STMT_STATUS = 0x2C0000, /**< ::lysp_ext_substmt.storage and ::lysp_ext_instance.parent - `uint16_t *`
329 ::lysc_ext_substmt.storage - `uint16_t *`
330 ::lysc_ext_instance.parent - compiled parent statement */
331 LY_STMT_SUBMODULE = 0x2D0000, /**< ::lysp_ext_substmt.storage and ::lysp_ext_instance.parent - `struct lysp_submodule *`
332 ::lysc_ext_substmt.storage - not compiled
333 ::lysc_ext_instance.parent - `struct lysc_module *` */
334 LY_STMT_TYPE = 0x2E0000, /**< ::lysp_ext_substmt.storage and ::lysp_ext_instance.parent - `struct lysp_type *`
335 ::lysc_ext_substmt.storage and ::lysc_ext_instance.parent - `struct lysc_type *` */
336 LY_STMT_TYPEDEF = 0x2F0000, /**< ::lysp_ext_substmt.storage - `struct lysp_tpdf *`[]
337 ::lysp_ext_instance.parent - `struct lysp_tpdf *`
338 ::lysc_ext_substmt.storage - not compiled
339 ::lysc_ext_instance.parent - `struct lysc_type *` */
340 LY_STMT_UNIQUE = 0x300000, /**< ::lysp_ext_substmt.storage and ::lysp_ext_instance.parent - `struct lysp_qname *`[]
341 ::lysc_ext_substmt.storage - not compiled
342 ::lysc_ext_instance.parent - `struct lysc_node_list *` */
343 LY_STMT_UNITS = 0x310000, /**< ::lysp_ext_substmt.storage and ::lysp_ext_instance.parent - `const char *`
344 ::lysc_ext_substmt.storage - `const char *`
345 ::lysc_ext_instance.parent - `struct lysc_node *`, `struct lysc_type *` (typedef) */
346 LY_STMT_VALUE = 0x320000, /**< ::lysp_ext_substmt.storage - `int64_t *`
347 ::lysp_ext_instance.parent - `struct lysp_type_enum *`
348 ::lysc_ext_substmt.storage - `int64_t *`
349 ::lysc_ext_instance.parent - `struct lysc_type_bitenum_item *` */
350 LY_STMT_WHEN = 0x330000, /**< ::lysp_ext_substmt.storage and ::lysp_ext_instance.parent - `struct lysp_when *`
351 ::lysc_ext_substmt.storage and ::lysc_ext_instance.parent - `struct lysc_when *` */
352 LY_STMT_YANG_VERSION = 0x340000, /**< ::lysp_ext_substmt.storage - `uint8_t *`
353 ::lysp_ext_instance.parent - `struct lysp_(sub)module *`
354 ::lysc_ext_substmt.storage - not compiled
355 ::lysc_ext_instance.parent - `struct lysc_module *` */
356 LY_STMT_YIN_ELEMENT = 0x350000, /**< ::lysp_ext_substmt.storage - `uint16_t *`
357 ::lysp_ext_instance.parent - `struct lysp_ext *`
358 ::lysc_ext_substmt.storage - not compiled
359 ::lysc_ext_instance.parent - `struct lysc_ext *` */
Michal Vaskob4750962022-10-06 15:33:35 +0200360
361 /* separated from the list of statements
362 * the following tokens are part of the syntax and parsers have to work
363 * with them, but they are not a standard YANG statements
364 */
365 LY_STMT_SYNTAX_SEMICOLON,
366 LY_STMT_SYNTAX_LEFT_BRACE,
367 LY_STMT_SYNTAX_RIGHT_BRACE,
368
369 /*
370 * YIN-specific tokens, still they are part of the syntax, but not the standard statements
371 */
372 LY_STMT_ARG_TEXT,
373 LY_STMT_ARG_VALUE
374};
375
376/**
Michal Vasko9c3556a2022-10-06 16:08:47 +0200377 * @brief Structure representing a generic parsed YANG substatement in an extension instance.
Michal Vaskob4750962022-10-06 15:33:35 +0200378 */
379struct lysp_stmt {
380 const char *stmt; /**< identifier of the statement */
381 const char *arg; /**< statement's argument */
382 LY_VALUE_FORMAT format; /**< prefix format of the identifier/argument (::LY_VALUE_XML is YIN format) */
383 void *prefix_data; /**< Format-specific data for prefix resolution (see ly_resolve_prefix()) */
384
385 struct lysp_stmt *next; /**< link to the next statement */
386 struct lysp_stmt *child; /**< list of the statement's substatements (linked list) */
387 uint16_t flags; /**< statement flags, can be set to LYS_YIN_ATTR */
388 enum ly_stmt kw; /**< numeric respresentation of the stmt value */
389};
390
391/**
Michal Vasko193dacd2022-10-13 08:43:05 +0200392 * @brief Structure representing a parsed known YANG substatement in an extension instance.
393 */
394struct lysp_ext_substmt {
395 enum ly_stmt stmt; /**< parsed substatement */
396 void *storage; /**< pointer to the parsed storage of the statement according to the specific
397 lys_ext_substmt::stmt */
398};
399
400/**
401 * @brief YANG extension parsed instance.
Michal Vaskob4750962022-10-06 15:33:35 +0200402 */
403struct lysp_ext_instance {
404 const char *name; /**< extension identifier, including possible prefix */
405 const char *argument; /**< optional value of the extension's argument */
406 LY_VALUE_FORMAT format; /**< prefix format of the extension name/argument (::LY_VALUE_XML is YIN format) */
Michal Vasko193dacd2022-10-13 08:43:05 +0200407 void *prefix_data; /**< format-specific data for prefix resolution (see ly_resolve_prefix()) */
408 struct lysp_ext *def; /**< pointer to the extension definition */
Michal Vaskob4750962022-10-06 15:33:35 +0200409
Michal Vasko193dacd2022-10-13 08:43:05 +0200410 void *parent; /**< pointer to the parent statement holding the extension instance(s), use
411 ::lysp_ext_instance#parent_stmt to access the value/structure */
412 enum ly_stmt parent_stmt; /**< type of the parent statement */
413 LY_ARRAY_COUNT_TYPE parent_stmt_index; /**< index of the stamenet in case the parent does not point to the parent
414 statement directly and it is an array */
415 uint16_t flags; /**< ::LYS_INTERNAL value (@ref snodeflags) */
Michal Vaskob4750962022-10-06 15:33:35 +0200416
Michal Vasko193dacd2022-10-13 08:43:05 +0200417 const struct lyplg_ext_record *record; /**< extension definition plugin record, if any */
418 struct lysp_ext_substmt *substmts; /**< list of supported known YANG statements with the pointer to their
419 parsed data ([sized array](@ref sizedarrays)) */
420 void *parsed; /**< private plugin parsed data */
421 struct lysp_stmt *child; /**< list of generic (unknown) YANG statements */
Michal Vaskob4750962022-10-06 15:33:35 +0200422};
423
424/**
Michal Vasko193dacd2022-10-13 08:43:05 +0200425 * @brief Structure representing a compiled known YANG substatement in an extension instance.
Michal Vaskob4750962022-10-06 15:33:35 +0200426 */
427struct lysc_ext_substmt {
Michal Vasko193dacd2022-10-13 08:43:05 +0200428 enum ly_stmt stmt; /**< compiled substatement */
429 void *storage; /**< pointer to the compiled storage of the statement according to the specific
430 lys_ext_substmt::stmt */
Michal Vaskob4750962022-10-06 15:33:35 +0200431};
432
433/**
Michal Vasko193dacd2022-10-13 08:43:05 +0200434 * @brief YANG extension compiled instance.
Michal Vaskob4750962022-10-06 15:33:35 +0200435 */
436struct lysc_ext_instance {
Michal Vasko193dacd2022-10-13 08:43:05 +0200437 struct lysc_ext *def; /**< pointer to the extension definition */
438 const char *argument; /**< optional value of the extension's argument */
439 struct lys_module *module; /**< module where the extension instantiated is defined */
440 struct lysc_ext_instance *exts; /**< list of the extension instances ([sized array](@ref sizedarrays)) */
Michal Vaskob4750962022-10-06 15:33:35 +0200441
Michal Vasko193dacd2022-10-13 08:43:05 +0200442 void *parent; /**< pointer to the parent element holding the extension instance(s), use
443 ::lysc_ext_instance#parent_stmt to access the value/structure */
444 enum ly_stmt parent_stmt; /**< type of the parent statement */
445 LY_ARRAY_COUNT_TYPE parent_stmt_index; /**< index of the stamenet in case the parent does not point to the parent
446 statement directly and it is an array */
447
448 struct lysc_ext_substmt *substmts; /**< list of supported known YANG statements with the pointer to their
449 compiled data ([sized array](@ref sizedarrays)) */
450 void *compiled; /**< private plugin compiled data */
Michal Vaskob4750962022-10-06 15:33:35 +0200451};
452
453/**
Radek Krejcia6f61e72021-03-24 21:00:19 +0100454 * @brief Macro to define plugin information in external plugins
455 *
456 * Use as follows:
457 * LYPLG_EXTENSIONS = {{<filled information of ::lyplg_ext_record>}, ..., {0}};
Radek Krejci0935f412019-08-20 16:15:18 +0200458 */
Radek Krejcia6f61e72021-03-24 21:00:19 +0100459#define LYPLG_EXTENSIONS \
460 uint32_t plugins_extensions_apiver__ = LYPLG_EXT_API_VERSION; \
461 const struct lyplg_ext_record plugins_extensions__[]
Radek Krejci0935f412019-08-20 16:15:18 +0200462
Michal Vasko193dacd2022-10-13 08:43:05 +0200463/*
464 * parse
465 */
466
467/**
468 * @brief Callback for parsing extension instance substatements.
469 *
470 * All known YANG substatements can easily be parsed using ::lys_parse_extension_instance.
471 *
472 * @param[in] pctx Parse context.
473 * @param[in,out] ext Parsed extension instance data.
474 * @return LY_SUCCESS on success.
475 * @return LY_ENOT if the extension instance is not supported and should be removed.
476 * @return LY_ERR error on error.
477 */
478typedef LY_ERR (*lyplg_ext_parse_clb)(struct lysp_ctx *pctx, struct lysp_ext_instance *ext);
479
480/**
481 * @brief Log a message from an extension plugin using the parsed extension instance.
482 *
483 * @param[in] pctx Parse context to use.
484 * @param[in] ext Parsed extensiopn instance.
485 * @param[in] level Log message level (error, warning, etc.)
486 * @param[in] err_no Error type code.
487 * @param[in] format Format string to print.
488 * @param[in] ... Format variable parameters.
489 */
490LIBYANG_API_DECL void lyplg_ext_parse_log(const struct lysp_ctx *pctx, const struct lysp_ext_instance *ext,
491 LY_LOG_LEVEL level, LY_ERR err_no, const char *format, ...);
492
493/**
494 * @brief Get current parsed module from a parse context.
495 *
496 * @param[in] pctx Parse context.
497 * @return Current (local) parse mod.
498 */
499LIBYANG_API_DECL const struct lysp_module *lyplg_ext_parse_get_cur_pmod(const struct lysp_ctx *pctx);
500
501/**
502 * @brief Parse substatements of an extension instance.
503 *
504 * Uses standard libyang schema compiler to transform YANG statements into the parsed schema structures. The plugins are
505 * supposed to use this function when the extension instance's substatements can be parsed in a standard way.
506 *
507 * @param[in] pctx Parse context.
508 * @param[in,out] ext Parsed extension instance with the prepared ::lysp_ext_instance.substmts array, which will be
509 * updated by storing the parsed data.
510 * @return LY_SUCCESS on success.
511 * @return LY_ERR error on error.
512 */
513LIBYANG_API_DECL LY_ERR lyplg_ext_parse_extension_instance(struct lysp_ctx *pctx, struct lysp_ext_instance *ext);
514
515/*
516 * compile
517 */
518
519/**
520 * @defgroup scflags Schema compile flags
521 *
522 * Flags to modify schema compilation process and change the way how the particular statements are being compiled. *
523 * @{
524 */
525#define LYS_COMPILE_GROUPING 0x01 /**< Compiling (validation) of a non-instantiated grouping.
526 In this case not all the restrictions are checked since they can
527 be valid only in the real placement of the grouping. This is
528 the case of any restriction that needs to look out of the statements
529 themselves, since the context is not known. */
530#define LYS_COMPILE_DISABLED 0x02 /**< Compiling a disabled subtree (by its if-features). Meaning
531 it will be removed at the end of compilation and should not be
532 added to any unres sets. */
533#define LYS_COMPILE_NO_CONFIG 0x04 /**< ignore config statements, neither inherit config value */
534#define LYS_COMPILE_NO_DISABLED 0x08 /**< ignore if-feature statements */
535
536#define LYS_COMPILE_RPC_INPUT (LYS_IS_INPUT | LYS_COMPILE_NO_CONFIG) /**< Internal option when compiling schema tree of RPC/action input */
537#define LYS_COMPILE_RPC_OUTPUT (LYS_IS_OUTPUT | LYS_COMPILE_NO_CONFIG) /**< Internal option when compiling schema tree of RPC/action output */
538#define LYS_COMPILE_NOTIFICATION (LYS_IS_NOTIF | LYS_COMPILE_NO_CONFIG) /**< Internal option when compiling schema tree of Notification */
539
540/** @} scflags */
Radek Krejci38d85362019-09-05 16:26:38 +0200541
542/**
Radek Krejci0e59c312019-08-15 15:34:15 +0200543 * @brief Callback to compile extension from the lysp_ext_instance to the lysc_ext_instance. The later structure is generally prepared
544 * and only the extension specific data are supposed to be added (if any).
545 *
Radek Krejciadcf63d2021-02-09 10:21:18 +0100546 * The parsed generic statements can be processed by the callback on its own or the ::lys_compile_extension_instance
547 * function can be used to let the compilation to libyang following the standard rules for processing the YANG statements.
548 *
Radek Krejci0e59c312019-08-15 15:34:15 +0200549 * @param[in] cctx Current compile context.
Michal Vasko193dacd2022-10-13 08:43:05 +0200550 * @param[in] extp Parsed extension instance data.
551 * @param[in,out] ext Prepared compiled extension instance structure where an addition, extension-specific, data are
Michal Vaskoddd76592022-01-17 13:34:48 +0100552 * supposed to be placed for later use (data validation or use of external tool).
Radek Krejci0e59c312019-08-15 15:34:15 +0200553 * @return LY_SUCCESS in case of success.
Michal Vasko7b1ad1a2020-11-02 15:41:27 +0100554 * @return LY_ENOT in case the extension instance is not supported and should be removed.
Michal Vasko193dacd2022-10-13 08:43:05 +0200555 * @return LY_ERR error on error.
Radek Krejci0e59c312019-08-15 15:34:15 +0200556 */
Michal Vasko193dacd2022-10-13 08:43:05 +0200557typedef LY_ERR (*lyplg_ext_compile_clb)(struct lysc_ctx *cctx, const struct lysp_ext_instance *extp,
558 struct lysc_ext_instance *ext);
559
560/**
561 * @brief Log a message from an extension plugin using the compiled extension instance.
562 *
563 * @param[in] cctx Optional compile context to generate the path from.
564 * @param[in] ext Compiled extension instance.
565 * @param[in] level Log message level (error, warning, etc.)
566 * @param[in] err_no Error type code.
567 * @param[in] format Format string to print.
568 */
569LIBYANG_API_DECL void lyplg_ext_compile_log(const struct lysc_ctx *cctx, const struct lysc_ext_instance *ext,
570 LY_LOG_LEVEL level, LY_ERR err_no, const char *format, ...);
571
572/**
573 * @brief Log a message from an extension plugin using the compiled extension instance with an explicit error path.
574 *
575 * @param[in] path Log error path to use.
576 * @param[in] ext Compiled extension instance.
577 * @param[in] level Log message level (error, warning, etc.)
578 * @param[in] err_no Error type code.
579 * @param[in] format Format string to print.
580 */
581LIBYANG_API_DECL void lyplg_ext_compile_log_path(const char *path, const struct lysc_ext_instance *ext,
582 LY_LOG_LEVEL level, LY_ERR err_no, const char *format, ...);
583
584/**
585 * @brief YANG schema compilation context getter for libyang context.
586 *
587 * @param[in] ctx YANG schema compilation context.
588 * @return libyang context connected with the compilation context.
589 */
590LIBYANG_API_DECL struct ly_ctx *lyplg_ext_compile_get_ctx(const struct lysc_ctx *ctx);
591
592/**
593 * @brief YANG schema compilation context getter for compilation options.
594 *
595 * @param[in] ctx YANG schema compilation context.
596 * @return pointer to the compilation options to allow modifying them with @ref scflags values.
597 */
598LIBYANG_API_DECL uint32_t *lyplg_ext_compile_get_options(const struct lysc_ctx *ctx);
599
600/**
601 * @brief YANG schema compilation context getter for current module.
602 *
603 * @param[in] ctx YANG schema compilation context.
604 * @return current module.
605 */
606LIBYANG_API_DECL const struct lys_module *lyplg_ext_compile_get_cur_mod(const struct lysc_ctx *ctx);
607
608/**
609 * @brief YANG schema compilation context getter for currently processed module.
610 *
611 * @param[in] ctx YANG schema compilation context.
612 * @return Currently processed module.
613 */
614LIBYANG_API_DECL struct lysp_module *lyplg_ext_compile_get_pmod(const struct lysc_ctx *ctx);
615
616/**
617 * @brief Compile substatements of an extension instance.
618 *
619 * Uses standard libyang schema compiler to transform YANG statements into the compiled schema structures. The plugins are
620 * supposed to use this function when the extension instance's substatements are supposed to be compiled in a standard way
621 * (or if just the @ref scflags are enough to modify the compilation process).
622 *
623 * @param[in] ctx Compile context.
624 * @param[in] extp Parsed representation of the extension instance being processed.
625 * @param[in,out] ext Compiled extension instance with the prepared ::lysc_ext_instance.substmts array, which will be updated
626 * by storing the compiled data.
627 * @return LY_SUCCESS on success.
628 * @return LY_EVALID if compilation of the substatements fails.
629 * @return LY_ENOT if the extension is disabled (by if-feature) and should be ignored.
630 */
631LIBYANG_API_DECL LY_ERR lyplg_ext_compile_extension_instance(struct lysc_ctx *ctx, const struct lysp_ext_instance *extp,
632 struct lysc_ext_instance *ext);
633
Michal Vasko193dacd2022-10-13 08:43:05 +0200634/*
Michal Vasko941e0562022-10-18 10:35:00 +0200635 * sprinter info
Michal Vasko193dacd2022-10-13 08:43:05 +0200636 */
Radek Krejci0e59c312019-08-15 15:34:15 +0200637
638/**
Michal Vaskoddd76592022-01-17 13:34:48 +0100639 * @brief Callback to print the compiled extension instance's private data in the INFO format.
640 *
641 * @param[in] ctx YANG printer context to provide output handler and other information for printing.
642 * @param[in] ext The compiled extension instance, mainly to access the extensions.
643 * @param[in,out] flag Flag to be shared with the caller regarding the opening brackets - 0 if the '{' not yet printed,
644 * 1 otherwise.
645 * @return LY_SUCCESS when everything was fine, other LY_ERR values in case of failure
646 */
Michal Vasko941e0562022-10-18 10:35:00 +0200647typedef LY_ERR (*lyplg_ext_sprinter_info_clb)(struct lyspr_ctx *ctx, struct lysc_ext_instance *ext, ly_bool *flag);
Michal Vaskoddd76592022-01-17 13:34:48 +0100648
649/**
Michal Vasko193dacd2022-10-13 08:43:05 +0200650 * @brief YANG printer context getter for output handler.
Radek Krejci0e59c312019-08-15 15:34:15 +0200651 *
Michal Vasko193dacd2022-10-13 08:43:05 +0200652 * @param[in] ctx YANG printer context.
653 * @return Output handler where the data are being printed. Note that the address of the handler pointer in the context is
654 * returned to allow to modify the handler.
Radek Krejci0e59c312019-08-15 15:34:15 +0200655 */
Michal Vasko193dacd2022-10-13 08:43:05 +0200656LIBYANG_API_DECL struct ly_out **lyplg_ext_print_get_out(const struct lyspr_ctx *ctx);
657
658/**
659 * @brief YANG printer context getter for printer options.
660 *
661 * @param[in] ctx YANG printer context.
662 * @return pointer to the printer options to allow modifying them with @ref schemaprinterflags values.
663 */
664LIBYANG_API_DECL uint32_t *lyplg_ext_print_get_options(const struct lyspr_ctx *ctx);
665
666/**
667 * @brief YANG printer context getter for printer indentation level.
668 *
669 * @param[in] ctx YANG printer context.
670 * @return pointer to the printer's indentation level to allow modifying its value.
671 */
672LIBYANG_API_DECL uint16_t *lyplg_ext_print_get_level(const struct lyspr_ctx *ctx);
673
674/**
Michal Vasko941e0562022-10-18 10:35:00 +0200675 * @brief Print substatements of an extension instance in info format (compiled YANG).
Michal Vasko193dacd2022-10-13 08:43:05 +0200676 *
Michal Vasko941e0562022-10-18 10:35:00 +0200677 * Generic function to access YANG printer functions from the extension plugins (::lyplg_ext_sprinter_info_clb).
Michal Vasko193dacd2022-10-13 08:43:05 +0200678 *
679 * @param[in] ctx YANG printer context to provide output handler and other information for printing.
680 * @param[in] ext The compiled extension instance to access the extensions and substatements data.
681 * @param[in,out] flag Flag to be shared with the caller regarding the opening brackets - 0 if the '{' not yet printed,
682 * 1 otherwise.
683 */
Michal Vasko941e0562022-10-18 10:35:00 +0200684LIBYANG_API_DECL void lyplg_ext_print_info_extension_instance(struct lyspr_ctx *ctx, const struct lysc_ext_instance *ext,
Michal Vasko193dacd2022-10-13 08:43:05 +0200685 ly_bool *flag);
686
687/*
aPiecek03cb4872022-10-24 10:31:51 +0200688 * sprinter tree
689 */
690
691/**
692 * @brief Callback to print parent node of @p ext or to print the contents of the extension.
693 *
694 * Function is called in two different cases. If the printer_tree needs the tree-diagram form of a parent node,
695 * then @p ctx is set to NULL. In the second case, if printer_tree needs to print the contents of the extension,
696 * then @p ctx is set and function must prepare the nodes that should be printed using the
697 * lyplg_ext_sprinter_tree* functions.
698 *
699 * @param[in] ext Extension instance.
700 * @param[in,out] ctx Context for the tree printer. Extension contents can be inserted into it by functions
701 * lyplg_ext_sprinter_ctree_add_ext_nodes(), lyplg_ext_sprinter_ctree_add_nodes() or by their ptree alternatives.
702 * It parameter is set to NULL, then @p flags and @p add_opts are used by printer_tree.
703 * @param[out] flags Optional override tree-diagram \<flags\> in a parent node. If @p ctx is set, ignore this parameter.
704 * @param[out] add_opts Additional tree-diagram \<opts\> string in a parent node which is printed before \<opts\>. If @p ctx
705 * is set, ignore this parameter.
706 * @return LY_ERR value.
707 */
708typedef LY_ERR (*lyplg_ext_sprinter_ctree_clb)(struct lysc_ext_instance *ext, const struct lyspr_tree_ctx *ctx,
709 const char **flags, const char **add_opts);
710
711/**
712 * @brief Callback for rewriting the tree-diagram form of a specific node.
713 *
714 * If this callback is set, then it is called for each node that belongs to the extension instance.
715 *
716 * @param[in] node Node whose tree-diagram form can be modified by the function.
717 * @param[in,out] plugin_priv Private context set by plugin.
718 * @param[out] skip Flag set to 1 removes the node from printed diagram.
719 * @param[out] flags Override tree-diagram \<flags\> string in the @p node.
720 * @param[out] add_opts Additional tree-diagram \<opts\> string in the @p node which is printed before \<opts\>.
721 * @return LY_ERR value.
722 */
723typedef LY_ERR (*lyplg_ext_sprinter_ctree_override_clb)(const struct lysc_node *node, const void *plugin_priv,
724 ly_bool *skip, const char **flags, const char **add_opts);
725
726/**
727 * @brief Registration of printing a group of nodes, which is already in the extension.
728 *
729 * @param[in] ctx Context of printer_tree in which the group of nodes is saved and later printed.
730 * @param[in] ext Extension in which the group of nodes will be searched.
731 * @param[in] clb Override function that will be applied to each delivered node.
732 * @return LY_ERR value.
733 */
734LIBYANG_API_DECL LY_ERR lyplg_ext_sprinter_ctree_add_ext_nodes(const struct lyspr_tree_ctx *ctx,
735 struct lysc_ext_instance *ext, lyplg_ext_sprinter_ctree_override_clb clb);
736
737/**
738 * @brief Registration of printing the group of nodes which were defined in the plugin.
739 *
740 * @param[in] ctx Context of printer_tree in which the group of nodes is saved and later printed.
741 * @param[in] nodes Points to the first node in group.
742 * @param[in] clb Override function that will be applied to each delivered node.
743 * @return LY_ERR value.
744 */
745LIBYANG_API_DECL LY_ERR lyplg_ext_sprinter_ctree_add_nodes(const struct lyspr_tree_ctx *ctx, struct lysc_node *nodes,
746 lyplg_ext_sprinter_ctree_override_clb clb);
747
748/**
749 * @brief Registration of plugin-private data defined by the plugin that is shared between override_clb calls.
750 *
751 * @param[in] ctx Context of printer_tree in which plugin-private data will be saved.
752 * @param[in] plugin_priv Plugin-private data shared between oberride_clb calls.
753 * @param[in] free_clb Release function for @p plugin_priv.
754 * @return LY_ERR value.
755 */
756LIBYANG_API_DECL LY_ERR lyplg_ext_sprinter_tree_set_priv(const struct lyspr_tree_ctx *ctx, void *plugin_priv,
757 void (*free_clb)(void *plugin_priv));
758
759/**
760 * @copydoc lyplg_ext_sprinter_ctree_clb
761 */
762typedef LY_ERR (*lyplg_ext_sprinter_ptree_clb)(struct lysp_ext_instance *ext, const struct lyspr_tree_ctx *ctx,
763 const char **flags, const char **add_opts);
764
765/**
766 * @copydoc lyplg_ext_sprinter_ctree_override_clb
767 */
768typedef LY_ERR (*lyplg_ext_sprinter_ptree_override_clb)(const struct lysp_node *node, const void *plugin_priv,
769 ly_bool *skip, const char **flags, const char **add_opts);
770
771/**
772 * @copydoc lyplg_ext_sprinter_ctree_add_ext_nodes
773 */
774LIBYANG_API_DECL LY_ERR lyplg_ext_sprinter_ptree_add_ext_nodes(const struct lyspr_tree_ctx *ctx,
775 struct lysp_ext_instance *ext, lyplg_ext_sprinter_ptree_override_clb clb);
776
777/**
778 * @copydoc lyplg_ext_sprinter_ctree_add_nodes
779 */
780LIBYANG_API_DECL LY_ERR lyplg_ext_sprinter_ptree_add_nodes(const struct lyspr_tree_ctx *ctx, struct lysp_node *nodes,
781 lyplg_ext_sprinter_ptree_override_clb clb);
782
783/*
Michal Vasko193dacd2022-10-13 08:43:05 +0200784 * data node
785 */
Radek Krejci0e59c312019-08-15 15:34:15 +0200786
787/**
Michal Vasko135719f2022-08-25 12:18:17 +0200788 * @brief Callback called for all data nodes connected to the extension instance.
789 *
790 * Can be used for additional data node validation. Is called only after the whole data tree is created and standard
Michal Vaskoeba23112022-08-26 08:35:41 +0200791 * validation succeeds. Not called when parsing data and ::LYD_PARSE_ONLY is used.
Michal Vasko135719f2022-08-25 12:18:17 +0200792 *
793 * @param[in] ext Compiled extension instance.
794 * @param[in] node Data node to process.
Michal Vaskoeba23112022-08-26 08:35:41 +0200795 * @param[in] validate_options Options used for the validation phase, see @ref datavalidationoptions.
Michal Vasko135719f2022-08-25 12:18:17 +0200796 * @return LY_SUCCESS on success.
797 * @return LY_ERR on error.
798 */
Michal Vaskoeba23112022-08-26 08:35:41 +0200799typedef LY_ERR (*lyplg_ext_data_node_clb)(struct lysc_ext_instance *ext, struct lyd_node *node, uint32_t validate_options);
Michal Vasko135719f2022-08-25 12:18:17 +0200800
Michal Vasko193dacd2022-10-13 08:43:05 +0200801/*
802 * snode
803 */
804
Michal Vasko135719f2022-08-25 12:18:17 +0200805/**
Michal Vasko8cc3f662022-03-29 11:25:51 +0200806 * @brief Callback for getting a schema node for a new YANG instance data described by an extension instance.
807 * Needed only if the extension instance supports some nested standard YANG data.
Radek Krejci0e59c312019-08-15 15:34:15 +0200808 *
Michal Vaskoddd76592022-01-17 13:34:48 +0100809 * @param[in] ext Compiled extension instance.
Michal Vasko8cc3f662022-03-29 11:25:51 +0200810 * @param[in] parent Parsed parent data node. Set if @p sparent is NULL.
811 * @param[in] sparent Schema parent node. Set if @p parent is NULL.
812 * @param[in] prefix Element prefix, if any.
813 * @param[in] prefix_len Length of @p prefix.
814 * @param[in] format Format of @p prefix.
815 * @param[in] prefix_data Format-specific prefix data.
816 * @param[in] name Element name.
817 * @param[in] name_len Length of @p name.
818 * @param[out] snode Schema node to use for parsing the node.
Michal Vaskoddd76592022-01-17 13:34:48 +0100819 * @return LY_SUCCESS on success.
820 * @return LY_ENOT if the data are not described by @p ext.
821 * @return LY_ERR on error.
Radek Krejci0e59c312019-08-15 15:34:15 +0200822 */
Michal Vasko8cc3f662022-03-29 11:25:51 +0200823typedef LY_ERR (*lyplg_ext_data_snode_clb)(struct lysc_ext_instance *ext, const struct lyd_node *parent,
824 const struct lysc_node *sparent, const char *prefix, size_t prefix_len, LY_VALUE_FORMAT format, void *prefix_data,
825 const char *name, size_t name_len, const struct lysc_node **snode);
Radek Krejci0e59c312019-08-15 15:34:15 +0200826
Michal Vasko193dacd2022-10-13 08:43:05 +0200827/*
828 * validate
829 */
830
Radek Krejci0e59c312019-08-15 15:34:15 +0200831/**
Michal Vaskoddd76592022-01-17 13:34:48 +0100832 * @brief Callback for validating parsed YANG instance data described by an extension instance.
Radek Krejciadcf63d2021-02-09 10:21:18 +0100833 *
Michal Vaskoddd76592022-01-17 13:34:48 +0100834 * This callback is used only for nested data definition (with a standard YANG schema parent).
Radek Krejciadcf63d2021-02-09 10:21:18 +0100835 *
Michal Vaskoddd76592022-01-17 13:34:48 +0100836 * @param[in] ext Compiled extension instance.
Michal Vasko9af7cd42022-04-05 12:26:09 +0200837 * @param[in] sibling First sibling with schema node returned by ::lyplg_ext_data_snode_clb.
Michal Vaskofbbea932022-06-07 11:00:55 +0200838 * @param[in] dep_tree Tree to be used for validating references from the operation subtree, if operation.
839 * @param[in] data_type Validated data type, can be ::LYD_TYPE_DATA_YANG, ::LYD_TYPE_RPC_YANG, ::LYD_TYPE_NOTIF_YANG,
840 * or ::LYD_TYPE_REPLY_YANG.
Michal Vaskoddd76592022-01-17 13:34:48 +0100841 * @param[in] val_opts Validation options, see @ref datavalidationoptions.
Michal Vaskof4c6f002022-04-01 09:12:22 +0200842 * @param[out] diff Optional diff with any changes made by the validation.
Michal Vaskoddd76592022-01-17 13:34:48 +0100843 * @return LY_SUCCESS on success.
844 * @return LY_ERR on error.
Radek Krejciadcf63d2021-02-09 10:21:18 +0100845 */
Michal Vaskofbbea932022-06-07 11:00:55 +0200846typedef LY_ERR (*lyplg_ext_data_validate_clb)(struct lysc_ext_instance *ext, struct lyd_node *sibling,
847 const struct lyd_node *dep_tree, enum lyd_type data_type, uint32_t val_opts, struct lyd_node **diff);
tadeas-vintrlik2aa36b42021-11-03 13:07:34 +0100848
Michal Vasko193dacd2022-10-13 08:43:05 +0200849/*
850 * parse free
851 */
852
853/**
854 * @brief Callback to free the extension-specific data created by its parsing.
855 *
856 * @param[in] ctx libyang context.
857 * @param[in,out] ext Parsed extension structure to free.
858 */
859typedef void (*lyplg_ext_parse_free_clb)(const struct ly_ctx *ctx, struct lysp_ext_instance *ext);
860
861/**
862 * @brief Free the extension instance's data parsed with ::lys_parse_extension_instance().
863 *
864 * @param[in] ctx libyang context
865 * @param[in] substmts Extension instance substatements to free.
866 */
867LIBYANG_API_DECL void lyplg_ext_pfree_instance_substatements(const struct ly_ctx *ctx, struct lysp_ext_substmt *substmts);
868
869/*
870 * compile free
871 */
872
873/**
874 * @brief Callback to free the extension-specific data created by its compilation.
875 *
876 * @param[in] ctx libyang context.
877 * @param[in,out] ext Compiled extension structure to free.
878 */
879typedef void (*lyplg_ext_compile_free_clb)(const struct ly_ctx *ctx, struct lysc_ext_instance *ext);
880
881/**
882 * @brief Free the extension instance's data compiled with ::lys_compile_extension_instance().
883 *
884 * @param[in] ctx libyang context
885 * @param[in] substmts Extension instance substatements to free.
886 */
887LIBYANG_API_DECL void lyplg_ext_cfree_instance_substatements(const struct ly_ctx *ctx, struct lysc_ext_substmt *substmts);
888
tadeas-vintrlik2aa36b42021-11-03 13:07:34 +0100889/**
Radek Krejci0e59c312019-08-15 15:34:15 +0200890 * @brief Extension plugin implementing various aspects of a YANG extension
891 */
Radek Krejcicc9e30f2021-03-29 12:45:08 +0200892struct lyplg_ext {
Michal Vaskoddd76592022-01-17 13:34:48 +0100893 const char *id; /**< plugin identification (mainly for distinguish incompatible versions
894 of the plugins for external tools) */
Michal Vasko9c3556a2022-10-06 16:08:47 +0200895 lyplg_ext_parse_clb parse; /**< callback to parse the extension instance substatements */
Michal Vaskoddd76592022-01-17 13:34:48 +0100896 lyplg_ext_compile_clb compile; /**< callback to compile extension instance from the parsed data */
Michal Vasko941e0562022-10-18 10:35:00 +0200897 lyplg_ext_sprinter_info_clb printer_info; /**< callback to print the compiled content (info format) of the extension
898 instance */
aPiecek03cb4872022-10-24 10:31:51 +0200899 lyplg_ext_sprinter_ctree_clb printer_ctree; /**< callback to print tree format of compiled node containing the
900 compiled content of the extension instance */
901 lyplg_ext_sprinter_ptree_clb printer_ptree; /**< callback to print tree format of parsed node containing the
902 parsed content of the extension instance */
Michal Vasko135719f2022-08-25 12:18:17 +0200903 lyplg_ext_data_node_clb node; /**< callback to validate most relevant data instance for the extension
904 instance */
Michal Vasko8cc3f662022-03-29 11:25:51 +0200905 lyplg_ext_data_snode_clb snode; /**< callback to get schema node for nested YANG data */
Michal Vaskoddd76592022-01-17 13:34:48 +0100906 lyplg_ext_data_validate_clb validate; /**< callback to validate parsed data instances according to the extension
907 definition */
Michal Vasko193dacd2022-10-13 08:43:05 +0200908
909 lyplg_ext_parse_free_clb pfree; /**< free the extension-specific data created by its parsing */
910 lyplg_ext_compile_free_clb cfree; /**< free the extension-specific data created by its compilation */
Radek Krejci0e59c312019-08-15 15:34:15 +0200911};
912
Radek Krejci3e6632f2021-03-22 22:08:21 +0100913struct lyplg_ext_record {
914 /* plugin identification */
915 const char *module; /**< name of the module where the extension is defined */
916 const char *revision; /**< optional module revision - if not specified, the plugin applies to any revision,
917 which is not an optimal approach due to a possible future revisions of the module.
918 Instead, there should be defined multiple items in the plugins list, each with the
919 different revision, but all with the same pointer to the plugin functions. The
920 only valid use case for the NULL revision is the case the module has no revision. */
tadeas-vintrlik2aa36b42021-11-03 13:07:34 +0100921 const char *name; /**< YANG name of the extension */
Radek Krejci3e6632f2021-03-22 22:08:21 +0100922
923 /* runtime data */
924 struct lyplg_ext plugin; /**< data to utilize plugin implementation */
925};
926
Michal Vasko61ad1ff2022-02-10 15:48:39 +0100927/**
Michal Vaskob4750962022-10-06 15:33:35 +0200928 * @brief Stringify statement identifier.
929 *
930 * @param[in] stmt The statement identifier to stringify.
931 * @return Constant string representation of the given @p stmt.
932 */
Michal Vasko193dacd2022-10-13 08:43:05 +0200933LIBYANG_API_DECL const char *lyplg_ext_stmt2str(enum ly_stmt stmt);
Michal Vaskob4750962022-10-06 15:33:35 +0200934
935/**
Michal Vaskob4750962022-10-06 15:33:35 +0200936 * @brief Convert nodetype to statement identifier
937 *
938 * @param[in] nodetype Nodetype to convert.
939 * @return Statement identifier representing the given @p nodetype.
940 */
Michal Vasko193dacd2022-10-13 08:43:05 +0200941LIBYANG_API_DECL enum ly_stmt lyplg_ext_nodetype2stmt(uint16_t nodetype);
Michal Vaskob4750962022-10-06 15:33:35 +0200942
943/**
Michal Vasko193dacd2022-10-13 08:43:05 +0200944 * @brief Get compiled ext instance storage for a specific statement.
Michal Vaskob4750962022-10-06 15:33:35 +0200945 *
Michal Vasko193dacd2022-10-13 08:43:05 +0200946 * @param[in] ext Compiled ext instance.
947 * @param[in] stmt Compiled statement. Can be a mask when the first match is returned, it is expected the storage is
948 * the same for all the masked statements.
949 * @param[out] storage Compiled ext instance substatement storage, NULL if was not compiled.
950 * @return LY_SUCCESS on success.
951 * @return LY_ENOT if the substatement is not supported.
Michal Vaskob4750962022-10-06 15:33:35 +0200952 */
Michal Vasko193dacd2022-10-13 08:43:05 +0200953LIBYANG_API_DECL LY_ERR lyplg_ext_get_storage(const struct lysc_ext_instance *ext, int stmt, const void **storage);
954
955/**
956 * @brief Get parsed ext instance storage for a specific statement.
957 *
958 * @param[in] ext Compiled ext instance.
959 * @param[in] stmt Parsed statement. Can be a mask when the first match is returned, it is expected the storage is
960 * the same for all the masked statements.
961 * @param[out] storage Parsed ext instance substatement storage, NULL if was not parsed.
962 * @return LY_SUCCESS on success.
963 * @return LY_ENOT if the substatement is not supported.
964 */
965LIBYANG_API_DECL LY_ERR lyplg_ext_parsed_get_storage(const struct lysc_ext_instance *ext, int stmt, const void **storage);
Michal Vaskob4750962022-10-06 15:33:35 +0200966
967/**
Michal Vasko61ad1ff2022-02-10 15:48:39 +0100968 * @brief Get specific run-time extension instance data from a callback set by ::ly_ctx_set_ext_data_clb().
969 *
970 * @param[in] ctx Context with the callback.
971 * @param[in] ext Compiled extension instance.
972 * @param[out] ext_data Provided extension instance data.
973 * @param[out] ext_data_free Whether the extension instance should free @p ext_data or not.
974 * @return LY_SUCCESS on success.
975 * @return LY_ERR on error.
976 */
Michal Vaskoddd76592022-01-17 13:34:48 +0100977LIBYANG_API_DECL LY_ERR lyplg_ext_get_data(const struct ly_ctx *ctx, const struct lysc_ext_instance *ext, void **ext_data,
978 ly_bool *ext_data_free);
979
980/**
981 * @brief Insert extension instance data into a parent.
982 *
983 * @param[in] parent Parent node to insert into.
984 * @param[in] first First top-level sibling node to insert.
985 * @return LY_SUCCESS on success.
986 * @return LY_ERR error on error.
987 */
Michal Vasko193dacd2022-10-13 08:43:05 +0200988LIBYANG_API_DECL LY_ERR lyplg_ext_insert(struct lyd_node *parent, struct lyd_node *first);
Radek Krejci0935f412019-08-20 16:15:18 +0200989
ekinzie0ab8b302022-10-10 03:03:57 -0400990/**
991 * @brief Expand parent-reference xpath expressions
992 *
Michal Vasko193dacd2022-10-13 08:43:05 +0200993 * @param[in] ext Context allocated for extension.
994 * @param[out] refs Set of schema node matching parent-reference XPaths.
ekinzie0ab8b302022-10-10 03:03:57 -0400995 * @return LY_ERR value.
996 */
997LIBYANG_API_DECL LY_ERR lyplg_ext_schema_mount_get_parent_ref(const struct lysc_ext_instance *ext, struct ly_set **refs);
998
999/**
Michal Vasko193dacd2022-10-13 08:43:05 +02001000 * @brief Allocate a new context for a particular instance of the yangmnt:mount-point extension.
1001 * Caller is responsible for destroying the resulting context.
ekinzie0ab8b302022-10-10 03:03:57 -04001002 *
1003 * @param[in] ext Compiled extension instance.
1004 * @param[out] ctx A context with modules loaded from the list found in
1005 * the extension data.
1006 * @return LY_ERR value.
1007 */
1008LIBYANG_API_DECL LY_ERR lyplg_ext_schema_mount_create_context(const struct lysc_ext_instance *ext, struct ly_ctx **ctx);
1009
Radek Krejci75104122021-04-01 15:37:45 +02001010/** @} pluginsExtensions */
Radek Krejcid7e8a622018-10-29 15:54:55 +01001011
1012#ifdef __cplusplus
1013}
1014#endif
1015
Radek Krejci0935f412019-08-20 16:15:18 +02001016#endif /* LY_PLUGINS_EXTS_H_ */