libyang 5.4.9
libyang is YANG data modelling language parser and toolkit written (and providing API) in C.
Loading...
Searching...
No Matches
instanceid_keys.c
Go to the documentation of this file.
1
14#define _GNU_SOURCE /* strdup */
15
16#include "plugins_types.h"
17
18#include <stdint.h>
19#include <stdlib.h>
20
21#include "libyang.h"
22
23/* additional internal headers for some useful simple macros */
24#include "compat.h"
25#include "ly_common.h"
26#include "path.h"
27#include "plugins_internal.h" /* LY_TYPE_*_STR */
28#include "xpath.h"
29
38
43 struct lyxp_expr *keys;
44 const struct ly_ctx *ctx;
47};
48
59static LY_ERR
60instanceid_keys_print_value(const struct lyd_value_instance_identifier_keys *val, LY_VALUE_FORMAT format, void *prefix_data,
61 char **str_value, struct ly_err_item **err)
62{
63 LY_ERR ret = LY_SUCCESS;
64 uint32_t cur_idx = 0, str_len = 0;
65 enum lyxp_token cur_tok;
66 char *str_tok;
67 void *mem;
68 const char *cur_exp_ptr;
69 ly_bool is_nt;
70 const struct lys_module *context_mod = NULL, *local_mod = NULL;
71 struct ly_set *mods;
72
73 *str_value = NULL;
74
75 if (format == LY_VALUE_XML) {
76 /* null the local module so that all the prefixes are printed */
77 mods = prefix_data;
78 local_mod = mods->objs[0];
79 mods->objs[0] = NULL;
80 }
81
82 while (cur_idx < val->keys->used) {
83 cur_tok = val->keys->tokens[cur_idx];
84 cur_exp_ptr = val->keys->expr + val->keys->tok_pos[cur_idx];
85
86 if ((cur_tok == LYXP_TOKEN_NAMETEST) || (cur_tok == LYXP_TOKEN_LITERAL)) {
87 /* tokens that may include prefixes, get them in the target format */
88 is_nt = (cur_tok == LYXP_TOKEN_NAMETEST) ? 1 : 0;
89 LY_CHECK_GOTO(ret = lyplg_type_xpath10_print_token(cur_exp_ptr, val->keys->tok_len[cur_idx], is_nt, &context_mod,
90 val->ctx, val->format, val->prefix_data, format, prefix_data, &str_tok, err), cleanup);
91
92 /* append the converted token */
93 mem = realloc(*str_value, str_len + strlen(str_tok) + 1);
94 if (!mem) {
95 free(str_tok);
96 ret = ly_err_new(err, LY_EMEM, LYVE_DATA, NULL, NULL, "No memory.");
97 goto cleanup;
98 }
99 *str_value = mem;
100 str_len += sprintf(*str_value + str_len, "%s", str_tok);
101 free(str_tok);
102
103 /* token processed */
104 ++cur_idx;
105 } else {
106 /* just copy the token */
107 mem = realloc(*str_value, str_len + val->keys->tok_len[cur_idx] + 1);
108 if (!mem) {
109 ret = ly_err_new(err, LY_EMEM, LYVE_DATA, NULL, NULL, "No memory.");
110 goto cleanup;
111 }
112 *str_value = mem;
113 str_len += sprintf(*str_value + str_len, "%.*s", (int)val->keys->tok_len[cur_idx], cur_exp_ptr);
114
115 /* token processed */
116 ++cur_idx;
117 }
118 }
119
120cleanup:
121 if (local_mod) {
122 mods->objs[0] = (void *)local_mod;
123 }
124 if (ret) {
125 free(*str_value);
126 *str_value = NULL;
127 }
128 return ret;
129}
130
134static LY_ERR
135lyplg_type_store_instanceid_keys(const struct ly_ctx *ctx, const struct lysc_type *type, const void *value, uint64_t value_size_bits,
136 uint32_t options, LY_VALUE_FORMAT format, void *prefix_data, uint32_t hints, const struct lysc_node *UNUSED(ctx_node),
137 struct lyd_value *storage, struct lys_glob_unres *UNUSED(unres), struct ly_err_item **err)
138{
139 LY_ERR ret = LY_SUCCESS;
140 struct lysc_type_str *type_str = (struct lysc_type_str *)type;
142 uint32_t value_size, *prev_lo, temp_lo = LY_LOSTORE;
143 const struct ly_err_item *eitem;
144 char *canon;
145
146 /* init storage */
147 memset(storage, 0, sizeof *storage);
148 LYPLG_TYPE_VAL_INLINE_PREPARE(storage, val);
149 LY_CHECK_ERR_GOTO(!val, ret = LY_EMEM, cleanup);
150 storage->realtype = type;
151
152 /* check value length */
153 ret = lyplg_type_check_value_size("instance-identifier-keys", format, value_size_bits,
154 LYPLG_LYB_SIZE_VARIABLE_BYTES, 0, &value_size, err);
155 LY_CHECK_GOTO(ret, cleanup);
156
157 /* check hints */
158 ret = lyplg_type_check_hints(hints, value, value_size, type->basetype, NULL, err);
159 LY_CHECK_GOTO(ret, cleanup);
160
161 /* length restriction of the string */
162 if (type_str->length) {
163 /* value_size is in bytes, but we need number of characters here */
164 ret = lyplg_type_validate_range(LY_TYPE_STRING, type_str->length, ly_utf8len(value, value_size), value, value_size, err);
165 LY_CHECK_GOTO(ret, cleanup);
166 }
167
168 /* pattern restrictions */
169 ret = lyplg_type_validate_patterns(ctx, type_str->patterns, value, value_size, err);
170 LY_CHECK_GOTO(ret, cleanup);
171
172 /* parse instance-identifier keys, with optional prefix even though it should be mandatory */
173 if (value_size && (((char *)value)[0] != '[')) {
174 ret = ly_err_new(err, LY_EVALID, LYVE_DATA, NULL, NULL, "Invalid first character '%c', list key predicates expected.",
175 ((char *)value)[0]);
176 goto cleanup;
177 }
178
179 /* do not log */
180 prev_lo = ly_temp_log_options(&temp_lo);
181 ret = ly_path_parse_predicate(ctx, NULL, value_size ? value : "", value_size, LY_PATH_PREFIX_OPTIONAL,
182 LY_PATH_PRED_KEYS, &val->keys);
183 ly_temp_log_options(prev_lo);
184 if (ret) {
185 eitem = ly_err_last(ctx);
186 ret = ly_err_new(err, ret, LYVE_DATA, eitem->data_path, NULL, "%s", eitem->msg);
187 ly_err_clean((struct ly_ctx *)ctx, NULL);
188 goto cleanup;
189 }
190 val->ctx = ctx;
191
192 /* store format-specific data and context for later prefix resolution */
193 ret = lyplg_type_prefix_data_new(ctx, value, value_size, format, prefix_data, &val->format, &val->prefix_data);
194 LY_CHECK_GOTO(ret, cleanup);
195
196 switch (format) {
197 case LY_VALUE_CANON:
198 case LY_VALUE_JSON:
199 case LY_VALUE_LYB:
200 case LY_VALUE_STR_NS:
201 /* store canonical value */
202 if (options & LYPLG_TYPE_STORE_DYNAMIC) {
203 ret = lydict_insert_zc(ctx, (char *)value, &storage->_canonical);
204 options &= ~LYPLG_TYPE_STORE_DYNAMIC;
205 LY_CHECK_GOTO(ret, cleanup);
206 } else {
207 ret = lydict_insert(ctx, value_size ? value : "", value_size, &storage->_canonical);
208 LY_CHECK_GOTO(ret, cleanup);
209 }
210 break;
211 case LY_VALUE_SCHEMA:
213 case LY_VALUE_XML:
214 /* JSON format with prefix is the canonical one */
215 ret = instanceid_keys_print_value(val, LY_VALUE_JSON, NULL, &canon, err);
216 LY_CHECK_GOTO(ret, cleanup);
217
218 ret = lydict_insert_zc(ctx, canon, &storage->_canonical);
219 LY_CHECK_GOTO(ret, cleanup);
220 break;
221 }
222
223cleanup:
224 if (options & LYPLG_TYPE_STORE_DYNAMIC) {
225 free((void *)value);
226 }
227
228 if (ret) {
229 lyplg_type_free_xpath10(ctx, storage);
230 }
231 return ret;
232}
233
242 {
243 .module = "yang",
244 .revision = NULL,
245 .name = "instance-identifier-keys",
246
247 .plugin.id = "ly2 instance-identifier-keys",
248 .plugin.lyb_size = lyplg_type_lyb_size_variable_bytes,
249 .plugin.store = lyplg_type_store_instanceid_keys,
250 .plugin.validate_value = NULL,
251 .plugin.validate_tree = NULL,
252 .plugin.compare = lyplg_type_compare_simple,
253 .plugin.sort = lyplg_type_sort_simple,
254 .plugin.print = lyplg_type_print_xpath10,
255 .plugin.duplicate = lyplg_type_dup_xpath10,
256 .plugin.free = lyplg_type_free_xpath10,
257 },
258 {0}
259};
libyang context handler.
LIBYANG_API_DECL LY_ERR lydict_insert(const struct ly_ctx *ctx, const char *value, size_t len, const char **str_p)
Insert string into dictionary. If the string is already present, only a reference counter is incremen...
LIBYANG_API_DECL LY_ERR lydict_insert_zc(const struct ly_ctx *ctx, char *value, const char **str_p)
Insert string into dictionary - zerocopy version. If the string is already present,...
LY_ERR err
Definition log.h:299
char * data_path
Definition log.h:302
char * msg
Definition log.h:301
LIBYANG_API_DECL const struct ly_err_item * ly_err_last(const struct ly_ctx *ctx)
Get the latest (thread, context-specific) generated error structure.
LY_ERR
libyang's error codes returned by the libyang functions.
Definition log.h:252
LIBYANG_API_DECL void ly_err_clean(const struct ly_ctx *ctx, struct ly_err_item *eitem)
Free error structures from a context.
@ LYVE_DATA
Definition log.h:289
@ LY_EMEM
Definition log.h:254
@ LY_EVALID
Definition log.h:260
@ LY_SUCCESS
Definition log.h:253
Libyang full error structure.
Definition log.h:297
LIBYANG_API_DECL uint32_t * ly_temp_log_options(uint32_t *opts)
Set temporary thread-safe (thread-specific) logger options overwriting those set by ly_log_options().
#define LY_LOSTORE
Definition log.h:121
Structure to hold a set of (not necessary somehow connected) objects. Usually used for lyd_node,...
Definition set.h:47
#define LYPLG_TYPE_VAL_INLINE_PREPARE(storage, type_val)
Prepare value memory for storing a specific type value, may be allocated dynamically.
LIBYANG_API_DECL LY_ERR lyplg_type_check_hints(uint32_t hints, const char *value, uint32_t value_len, LY_DATA_TYPE type, int *base, struct ly_err_item **err)
Check that the type is suitable for the parser's hints (if any) in the specified format.
LIBYANG_API_DECL LY_ERR lyplg_type_validate_patterns(const struct ly_ctx *ctx, struct lysc_pattern **patterns, const char *str, uint32_t str_len, struct ly_err_item **err)
Data type validator for pattern-restricted string values.
LIBYANG_API_DECL LY_ERR lyplg_type_validate_range(LY_DATA_TYPE basetype, struct lysc_range *range, int64_t value, const char *strval, uint32_t strval_len, struct ly_err_item **err)
Data type validator for a range/length-restricted values.
LIBYANG_API_DECL const void * lyplg_type_print_xpath10(const struct ly_ctx *ctx, const struct lyd_value *value, LY_VALUE_FORMAT format, void *prefix_data, ly_bool *dynamic, uint64_t *value_size_bits)
Implementation of lyplg_type_print_clb for the ietf-yang-types xpath1.0 type.
Definition xpath1.0.c:445
LIBYANG_API_DECL LY_ERR lyplg_type_xpath10_print_token(const char *token, uint16_t tok_len, ly_bool is_nametest, const struct lys_module **context_mod, const struct ly_ctx *resolve_ctx, LY_VALUE_FORMAT resolve_format, const void *resolve_prefix_data, LY_VALUE_FORMAT get_format, void *get_prefix_data, char **token_p, struct ly_err_item **err)
Print xpath1.0 token in the specific format.
Definition xpath1.0.c:41
LIBYANG_API_DECL LY_ERR lyplg_type_dup_xpath10(const struct ly_ctx *ctx, const struct lyd_value *original, struct lyd_value *dup)
Implementation of lyplg_type_dup_clb for the ietf-yang-types xpath1.0 type.
Definition xpath1.0.c:484
LIBYANG_API_DECL LY_ERR lyplg_type_prefix_data_new(const struct ly_ctx *ctx, const void *value, uint32_t value_size, LY_VALUE_FORMAT format, const void *prefix_data, LY_VALUE_FORMAT *format_p, void **prefix_data_p)
Store used prefixes in a string into an internal libyang structure used in lyd_value.
LIBYANG_API_DECL LY_ERR lyplg_type_check_value_size(const char *type_name, LY_VALUE_FORMAT format, uint64_t value_size_bits, enum lyplg_lyb_size_type lyb_size_type, uint64_t lyb_fixed_size_bits, uint32_t *value_size, struct ly_err_item **err)
Check a value type in bits is correct and as expected.
LIBYANG_API_DECL LY_ERR ly_err_new(struct ly_err_item **err, LY_ERR ecode, LY_VECODE vecode, char *data_path, char *apptag, const char *err_format,...) _FORMAT_PRINTF(6
Create and fill error structure.
LIBYANG_API_DECL void lyplg_type_free_xpath10(const struct ly_ctx *ctx, struct lyd_value *value)
Implementation of lyplg_type_free_clb for the ietf-yang-types xpath1.0 type.
Definition xpath1.0.c:516
@ LYPLG_LYB_SIZE_VARIABLE_BYTES
LIBYANG_API_DEF int lyplg_type_sort_simple(const struct ly_ctx *ctx, const struct lyd_value *val1, const struct lyd_value *val2)
Implementation of lyplg_type_sort_clb for a generic simple type.
LIBYANG_API_DECL LY_ERR lyplg_type_compare_simple(const struct ly_ctx *ctx, const struct lyd_value *val1, const struct lyd_value *val2)
Implementation of lyplg_type_compare_clb for a generic simple type.
LIBYANG_API_DECL void lyplg_type_lyb_size_variable_bytes(const struct lysc_type *type, enum lyplg_lyb_size_type *size_type, uint64_t *fixed_size_bits)
Implementation of lyplg_type_lyb_size_clb for a type with variable length rounded to bytes.
#define LYPLG_TYPE_STORE_DYNAMIC
LY_DATA_TYPE basetype
struct lysc_pattern ** patterns
struct lysc_range * length
Available YANG schema tree structures representing YANG module.
Compiled YANG data node.
LY_VALUE_FORMAT
All kinds of supported value formats and prefix mappings to modules.
Definition tree.h:234
@ LY_TYPE_STRING
Definition tree.h:209
@ LY_VALUE_JSON
Definition tree.h:239
@ LY_VALUE_SCHEMA
Definition tree.h:236
@ LY_VALUE_CANON
Definition tree.h:235
@ LY_VALUE_XML
Definition tree.h:238
@ LY_VALUE_STR_NS
Definition tree.h:241
@ LY_VALUE_SCHEMA_RESOLVED
Definition tree.h:237
@ LY_VALUE_LYB
Definition tree.h:240
const struct lyplg_type_record plugins_instanceid_keys[]
Plugin information for instance-identifier type implementation.
Special lyd_value structure for yang instance-identifier-keys values.
The main libyang public header.
uint8_t ly_bool
Type to indicate boolean value.
Definition log.h:36
API for (user) types plugins.
const struct lysc_type * realtype
Definition tree_data.h:527
const char * _canonical
Definition tree_data.h:524
YANG data representation.
Definition tree_data.h:523