17#include "plugins_internal.h"
24# include <arpa/inet.h>
25# if defined (__FreeBSD__) || defined (__NetBSD__) || defined (__OpenBSD__)
26# include <netinet/in.h>
27# include <sys/socket.h>
50#define LYPLG_IPV6PREF_LYB_VALUE_SIZE 136
52static void lyplg_type_free_ipv6_address_prefix(
const struct ly_ctx *ctx,
struct lyd_value *value);
65ipv6prefix_str2ip(
const char *value, uint32_t value_len,
struct in6_addr *addr, uint8_t *prefix,
struct ly_err_item **err)
69 char *mask_str = NULL;
72 pref_str = ly_strnchr(value,
'/', value_len);
73 ly_strntou8(pref_str + 1, value_len - (pref_str + 1 - value), prefix);
76 mask_str = strndup(value, pref_str - value);
77 LY_CHECK_ERR_GOTO(!mask_str, ret =
LY_EMEM, cleanup);
80 if (inet_pton(AF_INET6, mask_str, addr) != 1) {
97ipv6prefix_zero_host(
struct in6_addr *addr, uint8_t prefix)
102 for (i = 0; i < 4; ++i) {
104 for (j = 0; j < 32; ++j) {
106 if (prefix > (i * 32) + j) {
111 ((uint32_t *)addr->s6_addr)[i] &= mask;
117 uint64_t *fixed_size_bits)
127lyplg_type_store_ipv6_address_prefix(
const struct ly_ctx *ctx,
const struct lysc_type *type,
const void *value,
128 uint64_t value_size_bits, uint32_t options,
LY_VALUE_FORMAT format,
void *UNUSED(prefix_data), uint32_t hints,
129 const struct lysc_node *UNUSED(ctx_node),
struct lyd_value *storage,
struct lys_glob_unres *UNUSED(unres),
138 memset(storage, 0,
sizeof *storage);
144 LY_CHECK_GOTO(ret, cleanup);
148 if (((uint8_t *)value)[16] > 128) {
150 type->
name, ((uint8_t *)value)[16]);
156 storage->dyn_mem = (
void *)value;
157 options &= ~LYPLG_TYPE_STORE_DYNAMIC;
162 LY_CHECK_ERR_GOTO(!val, ret =
LY_EMEM, cleanup);
164 memcpy(val, value, value_size);
167 if (!strcmp(type->
name,
"ipv6-prefix")) {
169 ipv6prefix_zero_host(&val->
addr, val->
prefix);
178 LY_CHECK_ERR_GOTO(!val, ret =
LY_EMEM, cleanup);
182 LY_CHECK_GOTO(ret, cleanup);
188 LY_CHECK_GOTO(ret, cleanup);
193 LY_CHECK_GOTO(ret, cleanup);
197 ret = ipv6prefix_str2ip(value, value_size, &val->
addr, &val->
prefix, err);
198 LY_CHECK_GOTO(ret, cleanup);
200 if (!strcmp(type->
name,
"ipv6-prefix")) {
202 ipv6prefix_zero_host(&val->
addr, val->
prefix);
209 options &= ~LYPLG_TYPE_STORE_DYNAMIC;
210 LY_CHECK_GOTO(ret, cleanup);
212 ret =
lydict_insert(ctx, value_size ? value :
"", value_size, &storage->_canonical);
213 LY_CHECK_GOTO(ret, cleanup);
223 lyplg_type_free_ipv6_address_prefix(ctx, storage);
232lyplg_type_compare_ipv6_address_prefix(
const struct ly_ctx *UNUSED(ctx),
const struct lyd_value *val1,
240 if (memcmp(v1, v2,
sizeof *v1)) {
250lyplg_type_sort_ipv6_address_prefix(
const struct ly_ctx *UNUSED(ctx),
const struct lyd_value *val1,
258 return memcmp(v1, v2,
sizeof *v1);
266 void *UNUSED(prefix_data),
ly_bool *dynamic, uint64_t *value_size_bits)
275 if (value_size_bits) {
284 ret = malloc(INET6_ADDRSTRLEN + 4);
285 LY_CHECK_RET(!ret, NULL);
288 if (!inet_ntop(AF_INET6, &val->
addr, ret, INET6_ADDRSTRLEN)) {
294 sprintf(ret + strlen(ret),
"/%" PRIu8, val->
prefix);
307 if (value_size_bits) {
308 *value_size_bits = strlen(value->
_canonical) * 8;
317lyplg_type_dup_ipv6_address_prefix(
const struct ly_ctx *ctx,
const struct lyd_value *original,
struct lyd_value *dup)
322 memset(dup, 0,
sizeof *dup);
325 LY_CHECK_GOTO(ret, error);
328 LY_CHECK_ERR_GOTO(!dup_val, ret =
LY_EMEM, error);
331 memcpy(dup_val, orig_val,
sizeof *orig_val);
337 lyplg_type_free_ipv6_address_prefix(ctx, dup);
345lyplg_type_free_ipv6_address_prefix(
const struct ly_ctx *ctx,
struct lyd_value *value)
364 .module =
"ietf-inet-types",
366 .name =
"ipv6-prefix",
368 .plugin.id =
"ly2 ipv6-address-prefix",
369 .plugin.lyb_size = lyplg_type_lyb_size_ipv6_address_prefix,
370 .plugin.store = lyplg_type_store_ipv6_address_prefix,
371 .plugin.validate_value = NULL,
372 .plugin.validate_tree = NULL,
373 .plugin.compare = lyplg_type_compare_ipv6_address_prefix,
374 .plugin.sort = lyplg_type_sort_ipv6_address_prefix,
375 .plugin.print = lyplg_type_print_ipv6_address_prefix,
376 .plugin.duplicate = lyplg_type_dup_ipv6_address_prefix,
377 .plugin.free = lyplg_type_free_ipv6_address_prefix,
380 .module =
"ietf-inet-types",
382 .name =
"ipv6-address-and-prefix",
384 .plugin.id =
"ly2 ipv6-address-prefix",
385 .plugin.lyb_size = lyplg_type_lyb_size_ipv6_address_prefix,
386 .plugin.store = lyplg_type_store_ipv6_address_prefix,
387 .plugin.validate_value = NULL,
388 .plugin.validate_tree = NULL,
389 .plugin.compare = lyplg_type_compare_ipv6_address_prefix,
390 .plugin.sort = lyplg_type_sort_ipv6_address_prefix,
391 .plugin.print = lyplg_type_print_ipv6_address_prefix,
392 .plugin.duplicate = lyplg_type_dup_ipv6_address_prefix,
393 .plugin.free = lyplg_type_free_ipv6_address_prefix,
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_remove(const struct ly_ctx *ctx, const char *value)
Remove specified string from the dictionary. It decrement reference counter for the string and if it ...
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
libyang's error codes returned by the libyang functions.
Libyang full error structure.
const char *const char * revision
#define LYPLG_TYPE_VAL_INLINE_PREPARE(storage, type_val)
Prepare value memory for storing a specific type value, may be allocated dynamically.
lyplg_lyb_size_type
Type of the LYB size of a value of a particular type.
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.
#define LYPLG_TYPE_VAL_INLINE_DESTROY(type_val)
Destroy a prepared value.
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 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.
#define LYPLG_TYPE_VAL_IS_DYN(type_val)
Check whether specific type value needs to be allocated dynamically.
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.
@ LYPLG_LYB_SIZE_FIXED_BITS
#define LYPLG_TYPE_STORE_DYNAMIC
#define LYPLG_TYPE_STORE_ONLY
struct lysc_pattern ** patterns
struct lysc_range * length
LY_VALUE_FORMAT
All kinds of supported value formats and prefix mappings to modules.
const struct lyplg_type_record plugins_ipv6_address_prefix[]
Plugin information for ipv6-prefix and ipv6-address-and-prefix type implementation.
#define LYPLG_IPV6PREF_LYB_VALUE_SIZE
The main libyang public header.
uint8_t ly_bool
Type to indicate boolean value.
API for (user) types plugins.
const struct lysc_type * realtype
#define LYD_VALUE_GET(value, type_val)
Get the value in format specific to the type.
YANG data representation.
Special lyd_value structure for ietf-inet-types ipv6-prefix values.