blob: 2e90167f75cbc4fbec34f2536c73c18879ee0121 [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>
4 * @brief libyang support for YANG extensions implementation.
5 *
Radek Krejci0935f412019-08-20 16:15:18 +02006 * Copyright (c) 2015 - 2019 CESNET, z.s.p.o.
Radek Krejcid7e8a622018-10-29 15:54:55 +01007 *
8 * This source code is licensed under BSD 3-Clause License (the "License").
9 * You may not use this file except in compliance with the License.
10 * You may obtain a copy of the License at
11 *
12 * https://opensource.org/licenses/BSD-3-Clause
13 */
14
Radek Krejci0935f412019-08-20 16:15:18 +020015#ifndef LY_PLUGINS_EXTS_H_
16#define LY_PLUGINS_EXTS_H_
Radek Krejcid7e8a622018-10-29 15:54:55 +010017
Radek Krejci0e59c312019-08-15 15:34:15 +020018#include "set.h"
19#include "tree_schema.h"
20
Radek Krejcid7e8a622018-10-29 15:54:55 +010021#ifdef __cplusplus
22extern "C" {
23#endif
24
Radek Krejci0e59c312019-08-15 15:34:15 +020025
Radek Krejcid7e8a622018-10-29 15:54:55 +010026/**
27 * @defgroup extensions YANG Extensions
28 *
29 * @{
30 */
31
32/**
Radek Krejci0935f412019-08-20 16:15:18 +020033 * @brief Extensions API version
34 */
35#define LYEXT_API_VERSION 1
36
37/**
38 * @brief Macro to store version of extension plugins API in the plugins.
39 * It is matched when the plugin is being loaded by libyang.
40 */
41#define LYEXT_VERSION_CHECK int lyext_api_version = LYEXT_API_VERSION;
42
43/**
Radek Krejci0e59c312019-08-15 15:34:15 +020044 * @defgroup extensionscompile YANG Extensions - Compilation Helpers
45 * @ingroup extensions
46 * @brief Helper functions to compile (via lyext_clb_compile callback) statements inside the extension instance.
47 *
48 * NOTE: There is a lot of useful static functions in the tree_schema_compile.c which could be provided here. Since we don't want
49 * to have a large API with functions which will be never used, we provide here just the functions which are evidently needed.
50 * If you, as an extension plugin author, need to make some of the compile functions available, please contact libyang maintainers
51 * via the GITHUB issue tracker.
52 *
53 * @{
Radek Krejcid7e8a622018-10-29 15:54:55 +010054 */
Radek Krejcid7e8a622018-10-29 15:54:55 +010055
56/**
Radek Krejci0e59c312019-08-15 15:34:15 +020057 * @brief internal context for compilation
Radek Krejcid7e8a622018-10-29 15:54:55 +010058 */
Radek Krejci0e59c312019-08-15 15:34:15 +020059struct lysc_ctx {
60 struct ly_ctx *ctx;
61 struct lys_module *mod;
62 struct lys_module *mod_def; /**< context module for the definitions of the nodes being currently
63 processed - groupings are supposed to be evaluated in place where
64 defined, but its content instances are supposed to be placed into
65 the target module (mod) */
66 struct ly_set groupings; /**< stack for groupings circular check */
67 struct ly_set unres; /**< to validate leafref's target and xpath of when/must */
68 struct ly_set dflts; /**< set of incomplete default values */
69 struct ly_set tpdf_chain;
70 uint16_t path_len;
71 int options; /**< various @ref scflags. */
72#define LYSC_CTX_BUFSIZE 4078
73 char path[LYSC_CTX_BUFSIZE];
74};
Radek Krejcid7e8a622018-10-29 15:54:55 +010075
Radek Krejci0e59c312019-08-15 15:34:15 +020076/**
Radek Krejcid6b76452019-09-03 17:03:03 +020077 * @brief Possible cardinalities of the YANG statements.
78 *
79 * Used in extensions plugins to define cardinalities of the extension instance substatements.
80 */
81enum ly_stmt_cardinality {
82 LY_STMT_CARD_OPT, /* 0..1 */
83 LY_STMT_CARD_MAND, /* 1 */
84 LY_STMT_CARD_SOME, /* 1..n */
85 LY_STMT_CARD_ANY /* 0..n */
86};
87
88/**
89 * @brief Description of the extension instance substatements.
90 *
91 * Provided by extensions plugins to libyang's lyext_compile_stmts() to be able to correctly compile the content of extension instances.
Radek Krejci335332a2019-09-05 13:03:35 +020092 * Note that order of the defined records matters - just follow the values of enum ly_stmt and order the records from lower to higher values.
Radek Krejcid6b76452019-09-03 17:03:03 +020093 */
94struct lysc_ext_substmt {
95 enum ly_stmt stmt; /**< allowed substatement */
96 enum ly_stmt_cardinality cardinality; /**< cardinality of the substatement */
97 void *storage; /**< pointer to the storage of the compiled statement according to the specific
98 lysc_ext_substmt::stmt and lysc_ext_substmt::cardinality */
99};
100
101/**
102 * @brief Compile substatements of an extension instance.
Radek Krejci38d85362019-09-05 16:26:38 +0200103 * TODO
Radek Krejcid6b76452019-09-03 17:03:03 +0200104 */
105LY_ERR lys_compile_extension_instance(struct lysc_ctx *ctx, const struct lysp_ext_instance *ext, struct lysc_ext_substmt *substmts);
106
107/**
Radek Krejci38d85362019-09-05 16:26:38 +0200108 * @brief Free the extension instance's data compiled with lys_compile_extension_instance().
109 * TODO
110 */
111void lysc_extension_instance_free(struct ly_ctx *ctx, struct lysc_ext_substmt *substmts);
112
113/**
Radek Krejci0e59c312019-08-15 15:34:15 +0200114 * @brief Update path in the compile context, which is used for logging where the compilation failed.
115 *
116 * @param[in] ctx Compile context with the path.
117 * @param[in] parent Parent of the current node to check difference of the node's module. The current module is taken from lysc_ctx::mod.
118 * @param[in] name Name of the node to update path with. If NULL, the last segment is removed. If the format is `{keyword}`, the following
119 * call updates the segment to the form `{keyword='name'}` (to remove this compound segment, 2 calls with NULL @p name must be used).
120 */
121void lysc_update_path(struct lysc_ctx *ctx, struct lysc_node *parent, const char *name);
122
123/** @} extensionscompile */
124
125/**
126 * @brief Callback to compile extension from the lysp_ext_instance to the lysc_ext_instance. The later structure is generally prepared
127 * and only the extension specific data are supposed to be added (if any).
128 *
129 * @param[in] cctx Current compile context.
130 * @param[in] p_ext Parsed extension instance data.
131 * @param[in,out] c_ext Prepared compiled extension instance structure where an addition, extension-specific, data are supposed to be placed
132 * for later use (data validation or use of external tool).
133 * @return LY_SUCCESS in case of success.
134 * @return LY_EVALID in case of non-conforming parsed data.
135 */
136typedef LY_ERR (*lyext_clb_compile)(struct lysc_ctx *cctx, const struct lysp_ext_instance *p_ext, struct lysc_ext_instance *c_ext);
137
138/**
139 * @brief Callback to free the extension specific data created by the lyext_clb_compile callback of the same extension plugin.
140 *
Radek Krejci38d85362019-09-05 16:26:38 +0200141 * @param[in] ctx libyang context.
Radek Krejci0e59c312019-08-15 15:34:15 +0200142 * @param[in,out] ext Compiled extension structure where the data to free are placed.
143 */
Radek Krejci38d85362019-09-05 16:26:38 +0200144typedef void (*lyext_clb_free)(struct ly_ctx *ctx, struct lysc_ext_instance *ext);
Radek Krejci0e59c312019-08-15 15:34:15 +0200145
146/**
147 * @brief Callback to decide if data instance is valid according to the schema.
148 *
149 * The callback is used only for the extension instances placed in the following parent statements
150 * (which is specified as lysc_ext_instance::parent_type):
151 * - LYEXT_PAR_NODE - @p node is instance of the schema node where the extension instance was specified.
152 * - LYEXT_PAR_TPDF - @p node is instance of the schema node with the value of the typedef's type where the extension instance was specified.
153 * - LYEXT_PAR_TYPE - @p node is instance of the schema node with the value of the type where the extension instance was specified.
154 * - LYEXT_PAR_TYPE_BIT - @p node is instance of the schema node with the value of the bit where the extension instance was specified.
155 * - LYEXT_PAR_TYPE_ENUM - @p node is instance of the schema node with the value of the enum where the extension instance was specified.
156 *
157 * @param[in] ext Extension instance to be checked.
158 * @param[in] node Data node, where the extension data are supposed to be placed.
159 *
160 * @return LY_SUCCESS on data validation success.
161 * @return LY_EVALID in case the validation fails.
162 */
163typedef LY_ERR (*lyext_clb_data_validation)(struct lysc_ext_instance *ext, struct lyd_node *node);
164
165/**
166 * @brief Extension plugin implementing various aspects of a YANG extension
167 */
168struct lyext_plugin {
169 const char *id; /**< Plugin identification (mainly for distinguish incompatible versions of the plugins for external tools) */
170 lyext_clb_compile compile; /**< Callback to compile extension instance from the parsed data */
171 lyext_clb_data_validation validate; /**< Callback to decide if data instance is valid according to the schema. */
172 /* TODO printers? (schema/data) */
173 lyext_clb_free free; /**< Free the extension instance specific data created by lyext_plugin::compile callback */
174};
175
Radek Krejci0935f412019-08-20 16:15:18 +0200176struct lyext_plugins_list {
177 const char *module; /**< name of the module where the extension is defined */
178 const char *revision; /**< optional module revision - if not specified, the plugin applies to any revision,
179 which is not an optimal approach due to a possible future revisions of the module.
180 Instead, there should be defined multiple items in the plugins list, each with the
181 different revision, but all with the same pointer to the plugin extension. The
182 only valid use case for the NULL revision is the case the module has no revision. */
183 const char *name; /**< name of the extension */
184 struct lyext_plugin *plugin; /**< plugin for the extension */
185};
186
187
188/**
189 * @brief Provide a log message from an extension plugin.
190 *
191 * @param[in] ext Compiled extension structure providing generic information about the extension/plugin causing the message.
192 * @param[in] level Log message level (error, warning, etc.)
193 * @param[in] err_no Error type code.
194 * @param[in] path Path relevant to the message.
195 * @param[in] format Format string to print.
196 */
197void lyext_log(const struct lysc_ext_instance *ext, LY_LOG_LEVEL level, LY_ERR err_no, const char *path, const char *format, ...);
198
Radek Krejci0e59c312019-08-15 15:34:15 +0200199/** @} extensions */
Radek Krejcid7e8a622018-10-29 15:54:55 +0100200
201#ifdef __cplusplus
202}
203#endif
204
Radek Krejci0935f412019-08-20 16:15:18 +0200205#endif /* LY_PLUGINS_EXTS_H_ */