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>
49static void lyplg_type_free_ipv4_address(
const struct ly_ctx *ctx,
struct lyd_value *value);
64ipv4address_str2ip(
const char *value, uint32_t value_len, uint32_t options,
const struct ly_ctx *ctx,
65 struct in_addr *addr,
const char **zone,
struct ly_err_item **err)
68 const char *addr_no_zone;
69 char *zone_ptr = NULL, *addr_dyn = NULL;
73 if ((zone_ptr = ly_strnchr(value,
'%', value_len))) {
75 zone_len = value_len - (zone_ptr - value) - 1;
77 LY_CHECK_GOTO(ret, cleanup);
84 addr_dyn = strndup(value, zone_ptr - value);
85 addr_no_zone = addr_dyn;
96 addr_dyn = strndup(value, value_len);
97 addr_no_zone = addr_dyn;
102 if (!inet_pton(AF_INET, addr_no_zone, addr)) {
121lyplg_type_store_ipv4_address(
const struct ly_ctx *ctx,
const struct lysc_type *type,
const void *value, uint64_t value_size_bits,
122 uint32_t options,
LY_VALUE_FORMAT format,
void *UNUSED(prefix_data), uint32_t hints,
123 const struct lysc_node *UNUSED(ctx_node),
struct lyd_value *storage,
struct lys_glob_unres *UNUSED(unres),
128 const char *value_str = value;
129 uint32_t value_size, i;
132 memset(storage, 0,
sizeof *storage);
134 LY_CHECK_ERR_GOTO(!val, ret =
LY_EMEM, cleanup);
141 if (value_size_bits < 32) {
143 " b (expected at least 32 b).", value_size_bits);
146 for (i = 4; i < value_size; ++i) {
147 if (!isalnum(value_str[i])) {
155 memcpy(&val->
addr, value,
sizeof val->
addr);
158 if (value_size > 4) {
160 LY_CHECK_GOTO(ret, cleanup);
171 LY_CHECK_GOTO(ret, cleanup);
174 ret = ipv4address_str2ip(value, value_size, options, ctx, &val->
addr, &val->
zone, err);
175 LY_CHECK_GOTO(ret, cleanup);
180 options &= ~LYPLG_TYPE_STORE_DYNAMIC;
181 LY_CHECK_GOTO(ret, cleanup);
183 ret =
lydict_insert(ctx, value_size ? value :
"", value_size, &storage->_canonical);
184 LY_CHECK_GOTO(ret, cleanup);
193 lyplg_type_free_ipv4_address(ctx, storage);
202lyplg_type_compare_ipv4_address(
const struct ly_ctx *UNUSED(ctx),
const struct lyd_value *val1,
221lyplg_type_sort_ipv4_address(
const struct ly_ctx *UNUSED(ctx),
const struct lyd_value *val1,
251 void *UNUSED(prefix_data),
ly_bool *dynamic, uint64_t *value_size_bits)
263 if (value_size_bits) {
264 *value_size_bits =
sizeof val->
addr * 8;
270 zone_len = strlen(val->
zone);
271 ret = malloc(
sizeof val->
addr + zone_len);
272 LY_CHECK_RET(!ret, NULL);
274 memcpy(ret, &val->
addr,
sizeof val->
addr);
275 memcpy(ret +
sizeof val->
addr, val->
zone, zone_len);
278 if (value_size_bits) {
279 *value_size_bits =
sizeof val->
addr * 8 + zone_len * 8;
287 zone_len = val->
zone ? strlen(val->
zone) + 1 : 0;
288 ret = malloc(INET_ADDRSTRLEN + zone_len);
289 LY_CHECK_RET(!ret, NULL);
292 if (!inet_ntop(AF_INET, &val->
addr, ret, INET_ADDRSTRLEN)) {
294 LOGERR(ctx,
LY_ESYS,
"Failed to get IPv4 address in string (%s).", strerror(errno));
300 sprintf(ret + strlen(ret),
"%%%s", val->
zone);
314 if (value_size_bits) {
315 *value_size_bits = strlen(value->
_canonical) * 8;
329 memset(dup, 0,
sizeof *dup);
332 LY_CHECK_GOTO(ret, error);
335 LY_CHECK_ERR_GOTO(!dup_val, ret =
LY_EMEM, error);
339 memcpy(&dup_val->
addr, &orig_val->
addr,
sizeof orig_val->
addr);
341 LY_CHECK_GOTO(ret, error);
347 lyplg_type_free_ipv4_address(ctx, dup);
355lyplg_type_free_ipv4_address(
const struct ly_ctx *ctx,
struct lyd_value *value)
377 .module =
"ietf-inet-types",
379 .name =
"ipv4-address",
381 .plugin.id =
"ly2 ipv4-address",
383 .plugin.store = lyplg_type_store_ipv4_address,
384 .plugin.validate_value = NULL,
385 .plugin.validate_tree = NULL,
386 .plugin.compare = lyplg_type_compare_ipv4_address,
387 .plugin.sort = lyplg_type_sort_ipv4_address,
388 .plugin.print = lyplg_type_print_ipv4_address,
389 .plugin.duplicate = lyplg_type_dup_ipv4_address,
390 .plugin.free = lyplg_type_free_ipv4_address,
393 .module =
"ietf-inet-types",
395 .name =
"ipv4-address-link-local",
397 .plugin.id =
"ly2 ipv4-address",
399 .plugin.store = lyplg_type_store_ipv4_address,
400 .plugin.validate_value = NULL,
401 .plugin.validate_tree = NULL,
402 .plugin.compare = lyplg_type_compare_ipv4_address,
403 .plugin.sort = lyplg_type_sort_ipv4_address,
404 .plugin.print = lyplg_type_print_ipv4_address,
405 .plugin.duplicate = lyplg_type_dup_ipv4_address,
406 .plugin.free = lyplg_type_free_ipv4_address,
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.
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.
#define LYPLG_TYPE_VAL_INLINE_DESTROY(type_val)
Destroy a prepared value.
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.
#define LYPLG_BITS2BYTES(bits)
Convert bits to bytes.
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
const struct lyplg_type_record plugins_ipv4_address[]
Plugin information for ipv4-address and ipv4-address-link-local type implementation.
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 ipv4-address values.
LY_VALUE_FORMAT
All kinds of supported value formats and prefix mappings to modules.