45 RCSID(
"$Id: 08af6a1f8107fbd3f9ff4da0aa1153bb501a86f9 $")
47 #define _VALUE_PRIVATE
48 #include <freeradius-devel/util/value.h>
51 #include <freeradius-devel/util/atexit.h>
52 #include <freeradius-devel/util/base16.h>
53 #include <freeradius-devel/util/dcursor.h>
54 #include <freeradius-devel/util/size.h>
55 #include <freeradius-devel/util/time.h>
64 "in_addr.s_addr has unexpected length");
66 "in6_addr.s6_addr has unexpected length");
68 "vb_ifid has unexpected length");
70 "vb_ether has unexpected length");
73 "datum.boolean has unexpected length");
75 "vb_uint8 has unexpected length");
77 "vb_uint16 has unexpected length");
79 "vb_uint32 has unexpected length");
81 "vb_uint64 has unexpected length");
84 "vb_int16 has unexpected length");
86 "vb_int16 has unexpected length");
88 "vb_int32 has unexpected length");
90 "vb_int64 has unexpected length");
93 "vb_float32 has unexpected length");
95 "vb_float64 has unexpected length");
107 #define network_min_size(_x) (fr_value_box_network_sizes[_x][0])
108 #define network_max_size(_x) (fr_value_box_network_sizes[_x][1])
373 #pragma clang diagnostic ignored "-Wgnu-designator"
456 .name =
"unprintables",
550 L(
""),
L(
"\n"),
L(
"\r"),
L(
"\""))
556 L(
""),
L(
"\n"),
L(
"\r"),
L(
"'"))
562 L(
""),
L(
"\n"),
L(
"\r"),
L(
"/"))
568 L(
""),
L(
"\n"),
L(
"\r"),
L(
"`"))
577 L(
""),
L(
"\n"),
L(
"\r"),
L(
"\"\"\""))
583 L(
""),
L(
"\n"),
L(
"\r"),
L(
"'''"))
589 L(
""),
L(
"\n"),
L(
"\r"),
L(
"///"))
595 L(
""),
L(
"\n"),
L(
"\r"),
L(
"```"))
642 dst->vb_length = src->vb_length;
651 fr_value_box_list_init(&dst->vb_group);
658 dst->enumv = src->enumv;
659 dst->type = src->type;
660 dst->tainted = src->tainted;
661 dst->safe_for = src->safe_for;
662 dst->secret = src->secret;
663 fr_value_box_list_entry_init(dst);
681 if (a->type != b->type) {
695 if (a->vb_length < b->vb_length) {
696 length = a->vb_length;
698 length = b->vb_length;
707 if (a->secret || b->secret) {
710 cmp = memcmp(a->datum.ptr, b->datum.ptr, length);
712 if (cmp != 0)
return CMP(cmp, 0);
721 return CMP(a->vb_length, b->vb_length);
727 #define RETURN(_type) return CMP(a->datum._type, b->datum._type)
728 #define COMPARE(_type) return CMP(memcmp(&a->datum._type, &b->datum._type, sizeof(a->datum._type)), 0)
817 if (a_net == b_net) {
820 compare = memcmp(a, b, bytes);
826 if ((compare == 0) &&
888 if (common == 0)
return true;
893 if (common < 8)
break;
895 if (a[i] != b[i])
return false;
903 mask <<= (8 - common);
907 if ((a[i] &
mask) == ((b[i] &
mask))) {
942 if (b->vb_ip.af != AF_INET)
goto fail_cmp_v4;
949 if (b->vb_ip.af != AF_INET)
goto fail_cmp_v4;
954 b->vb_ip.prefix, (
uint8_t const *) &b->vb_ip.addr.v4.s_addr);
966 if (b->vb_ip.af != AF_INET)
goto fail_cmp_v4;
971 (
uint8_t const *) &a->vb_ip.addr.v4.s_addr,
972 32, (
uint8_t const *) &b->vb_ip.addr.v4);
975 if (b->vb_ip.af != AF_INET)
goto fail_cmp_v4;
980 (
uint8_t const *) &a->vb_ip.addr.v4.s_addr,
981 b->vb_ip.prefix, (
uint8_t const *) &b->vb_ip.addr.v4.s_addr);
991 if (b->vb_ip.af != AF_INET6)
goto fail_cmp_v6;
998 if (b->vb_ip.af != AF_INET6)
goto fail_cmp_v6;
1003 b->vb_ip.prefix, (
uint8_t const *) &b->vb_ip.addr.v6);
1015 if (b->vb_ip.af != AF_INET6)
goto fail_cmp_v6;
1020 (
uint8_t const *) &a->vb_ip.addr.v6,
1021 128, (
uint8_t const *) &b->vb_ip.addr.v6);
1024 if (b->vb_ip.af != AF_INET6)
goto fail_cmp_v6;
1029 (
uint8_t const *) &a->vb_ip.addr.v6,
1030 b->vb_ip.prefix, (
uint8_t const *) &b->vb_ip.addr.v6);
1038 if (a->vb_ip.af != b->vb_ip.af)
goto fail_cmp_v4;
1043 if (a->vb_ip.af != b->vb_ip.af)
goto fail_cmp_v4;
1045 if (a->vb_ip.af == AF_INET)
goto cmp_prefix_v4;
1062 return (compare == 0);
1065 return (compare != 0);
1068 return (compare < 0);
1071 return (compare > 0);
1074 return (compare <= 0);
1077 return (compare >= 0);
1235 switch (src->type) {
1272 switch (src->type) {
1274 dst->vb_uint16 = htons(src->vb_uint16);
1278 dst->vb_uint32 = htonl(src->vb_uint32);
1282 dst->vb_uint64 = htonll(src->vb_uint64);
1286 dst->vb_int16 = htons(src->vb_int16);
1290 dst->vb_int32 = htonl(src->vb_int32);
1294 dst->vb_int64 = htonll(src->vb_int64);
1306 dst->vb_float32 = htonl((
uint32_t)src->vb_float32);
1310 dst->vb_float64 = htonll((uint64_t)src->vb_float64);
1327 switch (
value->type) {
1333 if (
value->enumv->flags.length) {
1334 return value->enumv->flags.length;
1342 if (
value->vb_length > 255)
return 255;
1345 if (
value->vb_length > 65535)
return 65535;
1349 return value->vb_length;
1356 if (
value->enumv)
return value->enumv->flags.length;
1423 switch (
value->type) {
1426 max =
value->vb_length;
1433 if (
value->enumv->flags.length) {
1437 if (max < value->enumv->flags.length) {
1442 }
else if (max >
value->enumv->flags.length) {
1446 max =
value->enumv->flags.length;
1454 if (max > 255) max = 255;
1458 if (max > 65536) max = 65535;
1492 switch (
value->type) {
1497 sizeof(
value->vb_ip.addr.v4.s_addr));
1507 sizeof(
value->vb_ip.addr.v4.s_addr));
1528 switch (
value->vb_ip.af) {
1543 switch (
value->vb_ip.af) {
1598 if (!
value->enumv) {
1601 res =
value->enumv->flags.flag_time_res;
1605 if (!
value->enumv) {
1608 }
else switch (
value->enumv->flags.length) {
1610 if (date > UINT16_MAX) date = UINT16_MAX;
1616 if (date > UINT32_MAX) date = UINT32_MAX;
1635 if (
value->enumv) res =
value->enumv->flags.flag_time_res;
1639 if (!
value->enumv) {
1642 }
else if (!
value->enumv->flags.is_unsigned) {
1643 switch (
value->enumv->flags.length) {
1645 if (date < INT16_MIN) {
1647 }
else if (date > INT16_MAX) {
1655 if (date < INT32_MIN) {
1657 }
else if (date > INT32_MAX) {
1671 switch (
value->enumv->flags.length) {
1675 }
else if (date > UINT16_MAX) {
1684 }
else if (date > UINT32_MAX) {
1767 "Expected length >= %zu bytes, got %zu bytes",
1777 if (enumv && !enumv->flags.array) {
1779 "Expected length <= %zu bytes, got %zu bytes",
1792 size_t newlen = len;
1799 if (enumv->flags.length) {
1800 newlen = enumv->flags.length;
1831 if (newlen > len)
return -(newlen + offset);
1889 dst->vb_ip.scope_id = scope_id;
1905 dst->vb_ip.scope_id = scope_id;
1933 dst->datum.boolean = (val != 0);
1996 length = enumv->flags.length;
2004 if (len > length)
return -(length);
2026 length = enumv->flags.length;
2034 if (len > length)
return -(length);
2038 if (!enumv || !enumv->flags.is_unsigned) {
2050 if (tmp > INT64_MAX) tmp = INT64_MAX;
2089 switch (
value->type) {
2091 if (*outlen < 8)
return -1;
2106 if (slen < 0)
return slen;
2115 *outlen =
value->vb_ip.prefix;
2121 *outlen =
value->vb_length * 8;
2126 *outlen =
sizeof(
value->vb_ether) * 8;
2157 "destination type size %zd",
2170 if (!src->vb_length)
return 0;
2172 ptr = (
uint8_t *) &dst->datum;
2185 memcpy(ptr, src->vb_octets, src->vb_length);
2196 0x00, 0x00, 0x00, 0x00, 0xff, 0xff };
2215 switch (src->type) {
2222 (
char const *)src->vb_octets, src->vb_length, src->tainted);
2226 dst,
UNCONST(fr_value_box_list_t *, &src->vb_group),
2262 switch (src->type) {
2268 (
uint8_t const *)src->vb_strvalue, src->vb_length, src->tainted) < 0) {
2275 dst,
UNCONST(fr_value_box_list_t *, &src->vb_group),
2284 (
uint8_t const *)&src->vb_ip.addr.v4.s_addr,
2285 sizeof(src->vb_ip.addr.v4.s_addr), src->tainted);
2295 sizeof(src->vb_ip.addr.v4.s_addr) + 1, src->tainted) < 0)
return -1;
2297 bin[0] = src->vb_ip.prefix;
2298 memcpy(&bin[1], (
uint8_t const *)&src->vb_ip.addr.v4.s_addr,
sizeof(src->vb_ip.addr.v4.s_addr));
2307 (
uint8_t const *)src->vb_ip.addr.v6.s6_addr,
2308 sizeof(src->vb_ip.addr.v6.s6_addr), src->tainted);
2318 sizeof(src->vb_ip.addr.v6.s6_addr) + 2, src->tainted) < 0)
return -1;
2319 bin[0] = src->vb_ip.scope_id;
2320 bin[1] = src->vb_ip.prefix;
2321 memcpy(&bin[2], src->vb_ip.addr.v6.s6_addr,
sizeof(src->vb_ip.addr.v6.s6_addr));
2346 #define CAST_IP_FIX_COMBO \
2347 case FR_TYPE_COMBO_IP_ADDR: \
2348 if (src->vb_ip.af == AF_INET) { \
2349 src_type = FR_TYPE_IPV4_ADDR; \
2350 } else if (src->vb_ip.af == AF_INET6) { \
2351 src_type = FR_TYPE_IPV6_ADDR; \
2354 case FR_TYPE_COMBO_IP_PREFIX: \
2355 if (src->vb_ip.af == AF_INET) { \
2356 src_type = FR_TYPE_IPV4_PREFIX; \
2357 } else if (src->vb_ip.af == AF_INET6) { \
2358 src_type = FR_TYPE_IPV6_PREFIX; \
2389 src->vb_strvalue, src->vb_length,
2390 NULL, src->tainted);
2402 dst->vb_ip.af = AF_INET;
2403 dst->vb_ip.prefix = 32;
2404 dst->vb_ip.scope_id = 0;
2416 memcpy(&dst->vb_ip.addr.v4, &src->vb_ip.addr.v6.s6_addr[
sizeof(
v4_v6_map)],
2417 sizeof(dst->vb_ip.addr.v4));
2422 if (src->vb_ip.prefix != 32) {
2424 "cast to IP address types",
2433 memcpy(&dst->vb_ip.addr.v4, &src->vb_ip.addr.v4,
sizeof(dst->vb_ip.addr.v4));
2437 if (src->vb_ip.prefix != 128) {
2438 fr_strerror_printf(
"Invalid cast from %s to %s. Only /128 (not /%i) prefixes may be "
2439 "cast to IP address types",
2445 if (memcmp(&src->vb_ip.addr.v6.s6_addr,
v4_v6_map,
sizeof(
v4_v6_map)) != 0)
goto bad_v6_prefix_map;
2446 memcpy(&dst->vb_ip.addr.v4, &src->vb_ip.addr.v6.s6_addr[
sizeof(
v4_v6_map)],
2447 sizeof(dst->vb_ip.addr.v4));
2451 if (src->vb_length !=
sizeof(dst->vb_ip.addr.v4.s_addr)) {
2452 fr_strerror_printf(
"Invalid cast from %s to %s. Needed octet string of length %zu, got %zu",
2455 sizeof(dst->vb_ip.addr.v4.s_addr), src->vb_length);
2458 memcpy(&dst->vb_ip.addr.v4, src->vb_octets,
sizeof(dst->vb_ip.addr.v4.s_addr));
2465 net = ntohl(src->vb_uint32);
2466 memcpy(&dst->vb_ip.addr.v4, (
uint8_t *)&net,
sizeof(dst->vb_ip.addr.v4.s_addr));
2504 src->vb_strvalue, src->vb_length,
2505 NULL, src->tainted);
2517 dst->vb_ip.af = AF_INET;
2518 dst->vb_ip.scope_id = 0;
2522 dst->vb_ip.prefix = src->vb_ip.prefix;
2526 memcpy(&dst->vb_ip, &src->vb_ip,
sizeof(dst->vb_ip));
2540 memcpy(&dst->vb_ip.addr.v4.s_addr, &src->vb_ip.addr.v6.s6_addr[
sizeof(
v4_v6_map)],
2541 sizeof(dst->vb_ip.addr.v4.s_addr));
2542 dst->vb_ip.prefix = 32;
2546 if (memcmp(src->vb_ip.addr.v6.s6_addr,
v4_v6_map,
sizeof(
v4_v6_map)) != 0)
goto bad_v6_prefix_map;
2548 if (src->vb_ip.prefix < (
sizeof(
v4_v6_map) << 3)) {
2549 fr_strerror_printf(
"Invalid cast from %s to %s. Expected prefix >= %u bits got %u bits",
2552 (
unsigned int)(
sizeof(
v4_v6_map) << 3), src->vb_ip.prefix);
2555 memcpy(&dst->vb_ip.addr.v4.s_addr, &src->vb_ip.addr.v6.s6_addr[
sizeof(
v4_v6_map)],
2556 sizeof(dst->vb_ip.addr.v4.s_addr));
2561 dst->vb_ip.prefix = src->vb_ip.prefix - (
sizeof(
v4_v6_map) << 3);
2565 if (src->vb_length !=
sizeof(dst->vb_ip.addr.v4.s_addr) + 1) {
2566 fr_strerror_printf(
"Invalid cast from %s to %s. Needed octet string of length %zu, got %zu",
2569 sizeof(dst->vb_ip.addr.v4.s_addr) + 1, src->vb_length);
2572 dst->vb_ip.prefix = src->vb_octets[0];
2573 memcpy(&dst->vb_ip.addr.v4, &src->vb_octets[1],
sizeof(dst->vb_ip.addr.v4.s_addr));
2580 net = ntohl(src->vb_uint32);
2581 memcpy(&dst->vb_ip.addr.v4, (
uint8_t *)&net,
sizeof(dst->vb_ip.addr.v4.s_addr));
2582 dst->vb_ip.prefix = 32;
2617 sizeof(src->vb_ip.addr.v6),
"IPv6 storage too small");
2623 src->vb_strvalue, src->vb_length,
2624 NULL, src->tainted);
2636 dst->vb_ip.af = AF_INET6;
2637 dst->vb_ip.prefix = 128;
2642 uint8_t *p = dst->vb_ip.addr.v6.s6_addr;
2647 memcpy(p, (
uint8_t const *)&src->vb_ip.addr.v4.s_addr,
sizeof(src->vb_ip.addr.v4.s_addr));
2648 dst->vb_ip.scope_id = 0;
2654 uint8_t *p = dst->vb_ip.addr.v6.s6_addr;
2656 if (src->vb_ip.prefix != 32) {
2658 "cast to IP address types",
2668 memcpy(p, (
uint8_t const *)&src->vb_ip.addr.v4.s_addr,
sizeof(src->vb_ip.addr.v4.s_addr));
2669 dst->vb_ip.scope_id = 0;
2674 if (src->vb_ip.prefix != 128) {
2675 fr_strerror_printf(
"Invalid cast from %s to %s. Only /128 (not /%i) prefixes may be "
2676 "cast to IP address types",
2685 memcpy(dst->vb_ip.addr.v6.s6_addr, src->vb_ip.addr.v6.s6_addr,
2686 sizeof(dst->vb_ip.addr.v6.s6_addr));
2687 dst->vb_ip.scope_id = src->vb_ip.scope_id;
2691 if (src->vb_length !=
sizeof(dst->vb_ip.addr.v6.s6_addr)) {
2692 fr_strerror_printf(
"Invalid cast from %s to %s. Needed octet string of length %zu, got %zu",
2695 sizeof(dst->vb_ip.addr.v6.s6_addr), src->vb_length);
2698 memcpy(&dst->vb_ip.addr.v6.s6_addr, src->vb_octets,
sizeof(dst->vb_ip.addr.v6.s6_addr));
2736 src->vb_strvalue, src->vb_length,
2737 NULL, src->tainted);
2749 dst->vb_ip.af = AF_INET6;
2754 uint8_t *p = dst->vb_ip.addr.v6.s6_addr;
2759 memcpy(p, (
uint8_t const *)&src->vb_ip.addr.v4.s_addr,
sizeof(src->vb_ip.addr.v4.s_addr));
2760 dst->vb_ip.prefix = 128;
2761 dst->vb_ip.scope_id = 0;
2767 uint8_t *p = dst->vb_ip.addr.v6.s6_addr;
2772 memcpy(p, (
uint8_t const *)&src->vb_ip.addr.v4.s_addr,
sizeof(src->vb_ip.addr.v4.s_addr));
2773 dst->vb_ip.prefix = (
sizeof(
v4_v6_map) << 3) + src->vb_ip.prefix;
2774 dst->vb_ip.scope_id = 0;
2779 dst->vb_ip.prefix = src->vb_ip.prefix;
2783 dst->vb_ip.prefix = 128;
2785 memcpy(dst->vb_ip.addr.v6.s6_addr, src->vb_ip.addr.v6.s6_addr,
2786 sizeof(dst->vb_ip.addr.v6.s6_addr));
2787 dst->vb_ip.scope_id = src->vb_ip.scope_id;
2791 if (src->vb_length != (
sizeof(dst->vb_ip.addr.v6.s6_addr) + 2)) {
2792 fr_strerror_printf(
"Invalid cast from %s to %s. Needed octet string of length %zu, got %zu",
2795 sizeof(dst->vb_ip.addr.v6.s6_addr) + 2, src->vb_length);
2798 dst->vb_ip.scope_id = src->vb_octets[0];
2799 dst->vb_ip.prefix = src->vb_octets[1];
2800 memcpy(&dst->vb_ip.addr.v6.s6_addr, src->vb_octets,
sizeof(dst->vb_ip.addr.v6.s6_addr));
2831 switch (src->type) {
2834 src->vb_strvalue, src->vb_length,
2835 NULL, src->tainted);
2849 switch (src->type) {
2858 if ((
array[0] != 0) || (
array[1] != 0))
return -1;
2860 memcpy(dst->vb_ether, &
array[2], 6);
2891 switch (src->type) {
2894 src->vb_strvalue, src->vb_length,
2895 NULL, src->tainted);
2912 switch (src->type) {
2914 dst->vb_bool = (src->vb_int8 != 0);
2918 dst->vb_bool = (src->vb_uint8 != 0);
2922 dst->vb_bool = (src->vb_int16 != 0);
2926 dst->vb_bool = (src->vb_uint16 != 0);
2930 dst->vb_bool = (src->vb_int32 != 0);
2934 dst->vb_bool = (src->vb_uint32 != 0);
2938 dst->vb_bool = (src->vb_int64 != 0);
2942 dst->vb_bool = (src->vb_uint64 != 0);
2946 dst->vb_bool = (src->vb_size != 0);
2954 dst->vb_bool = (fpclassify(src->vb_float32) == FP_ZERO);
2958 dst->vb_bool = (fpclassify(src->vb_float64) == FP_ZERO);
2982 #define SIGN_BIT_HIGH(_int, _len) ((((uint64_t)1) << (((_len) << 3) - 1)) & (_int))
2983 #define SIGN_PROMOTE(_int, _len) ((_len) < sizeof(_int) ? \
2984 (_int) | (~((__typeof__(_int))0)) << ((_len) << 3) : (_int))
2986 #if !defined(NDEBUG) || defined(STATIC_ANALYZER)
2992 "invalid source type len, expected > 0, got %zu",
2998 "Invalid cast from %s to %s. "
2999 "invalid source type len, expected <= %zu, got %zu",
3002 sizeof(uint64_t), len))
return -1;
3005 switch (src->type) {
3018 if (src->enumv) res = src->enumv->flags.flag_time_res;
3034 if (src->enumv) res = src->enumv->flags.flag_time_res;
3041 #ifdef WORDS_BIGENDIAN
3042 memcpy(((
uint8_t *)&tmp) + (
sizeof(tmp) - len),
3059 if ((int64_t)tmp <
min) {
3061 "outside value range %"PRId64
"-%"PRIu64,
3070 "outside value range 0-%"PRIu64,
3083 if (dst->enumv) res = dst->enumv->flags.flag_time_res;
3097 if (dst->enumv) res = dst->enumv->flags.flag_time_res;
3108 #ifdef WORDS_BIGENDIAN
3133 switch (src->type) {
3136 src->vb_strvalue, src->vb_length,
3137 NULL, src->tainted);
3163 memcpy(&tmp.vb_uint32, &src->vb_ip.addr.v4,
sizeof(tmp.vb_uint32));
3184 memcpy(((
uint8_t *)&tmp.vb_uint64) + (
sizeof(tmp.vb_uint64) -
sizeof(src->vb_ether)),
3185 &src->vb_ether,
sizeof(src->vb_ether));
3186 #ifndef WORDS_BIGENDIAN
3236 switch (src->type) {
3239 num = (double) src->vb_float32;
3247 num = src->vb_float64;
3262 num = src->vb_int16;
3266 num = src->vb_int32;
3270 num = src->vb_int64;
3274 num = src->vb_uint8;
3278 num = src->vb_uint16;
3282 num = src->vb_uint32;
3286 num = src->vb_uint64;
3315 dst->vb_float32 = num;
3317 dst->vb_float64 = num;
3382 if (dst_type == src->type) {
3386 if (ret < 0)
return ret;
3388 dst->enumv = dst_enumv;
3443 dst->type = dst_type;
3444 dst->enumv = dst_enumv;
3460 if (when > INT64_MAX) {
3465 dst->type = dst_type;
3466 dst->enumv = dst_enumv;
3508 src->vb_strvalue, src->vb_length,
3509 NULL, src->tainted);
3515 fr_strerror_printf(
"Invalid cast from %s to %s. Source is length %zd is smaller than "
3516 "destination type size %zd",
3526 "destination type size %zd",
3541 tmp.type = dst_type;
3542 dst->enumv = dst_enumv;
3550 dst->type = dst_type;
3551 dst->enumv = dst_enumv;
3579 fr_value_box_entry_t entry = vb->entry;
3585 if (vb->type == dst_type) {
3586 vb->enumv = dst_enumv;
3634 switch (ipaddr->
af) {
3649 memcpy(&dst->vb_ip, ipaddr,
sizeof(dst->vb_ip));
3670 memcpy(dst, &src->vb_ip,
sizeof(*dst));
3683 switch (
data->type) {
3700 while ((vb = fr_value_box_list_next(&
data->vb_group, vb))) {
3714 memset(&
data->datum, 0,
sizeof(
data->datum));
3742 switch (src->type) {
3764 dst->vb_strvalue = str;
3773 if (src->vb_length) {
3774 bin = talloc_memdup(ctx, src->vb_octets, src->vb_length);
3779 talloc_set_type(bin,
uint8_t);
3781 bin = talloc_array(ctx,
uint8_t, 0);
3783 dst->vb_octets = bin;
3794 while ((child = fr_value_box_list_next(&src->vb_group, child))) {
3804 fr_value_box_list_talloc_free(&dst->vb_group);
3814 fr_value_box_list_insert_tail(&dst->vb_group,
new);
3836 switch (src->type) {
3843 dst->datum.ptr = ctx ? talloc_reference(ctx, src->datum.ptr) : src->datum.ptr;
3862 switch (src->type) {
3870 str = talloc_steal(ctx, src->vb_strvalue);
3875 talloc_set_type(str,
char);
3876 dst->vb_strvalue = str;
3878 memset(&src->datum, 0,
sizeof(src->datum));
3886 bin = talloc_steal(ctx, src->vb_octets);
3891 talloc_set_type(bin,
uint8_t);
3893 dst->vb_octets = bin;
3895 memset(&src->datum, 0,
sizeof(src->datum));
3903 while ((child = fr_value_box_list_pop_head(&src->vb_group))) {
3904 child = talloc_steal(ctx, child);
3909 fr_value_box_list_insert_tail(&dst->vb_group, child);
3928 char const *src,
bool tainted)
3939 dst->vb_strvalue = str;
3940 dst->vb_length = talloc_array_length(str) - 1;
3960 len = strlen(vb->vb_strvalue);
3961 str = talloc_realloc(ctx,
UNCONST(
char *, vb->vb_strvalue),
char, len + 1);
3966 vb->vb_length = len;
3984 char const *
fmt, va_list ap)
3993 if (!str)
return -1;
3996 dst->vb_strvalue = str;
3997 dst->vb_length = talloc_array_length(str) - 1;
4015 char const *
fmt, ...)
4037 char const *src,
bool tainted)
4040 dst->vb_strvalue = src;
4041 dst->vb_length = strlen(src);
4055 vb->vb_strvalue = src;
4056 vb->vb_length = len < 0 ? strlen(src) : (
size_t)len;
4072 size_t len,
bool tainted)
4076 str = talloc_zero_array(ctx,
char, len + 1);
4084 dst->vb_strvalue = str;
4085 dst->vb_length = talloc_array_length(str) - 1;
4112 memcpy(&cstr, &dst->vb_strvalue,
sizeof(cstr));
4114 clen = talloc_array_length(dst->vb_strvalue) - 1;
4115 if (clen == len)
return 0;
4117 str = talloc_realloc(ctx, cstr,
char, len + 1);
4127 memset(str + clen,
'\0', (len - clen) + 1);
4131 dst->vb_strvalue = str;
4132 dst->vb_length = len;
4149 char const *src,
size_t len,
bool tainted)
4166 dst->vb_strvalue = str;
4167 dst->vb_length = len;
4177 str = talloc_array(ctx,
char, len + 1);
4187 dst->vb_strvalue = str;
4188 dst->vb_length = len;
4209 char const *src,
bool tainted)
4215 len = talloc_array_length(src);
4216 if ((len == 0) || (src[len - 1] !=
'\0')) {
4233 char const *src,
size_t len,
bool tainted)
4236 dst->vb_strvalue = src;
4237 dst->vb_length = len;
4254 char const *src,
bool tainted)
4260 len = talloc_array_length(src);
4261 if ((len == 0) || (src[len - 1] !=
'\0')) {
4267 dst->vb_strvalue = ctx ? talloc_reference(ctx, src) : src;
4268 dst->vb_length = len - 1;
4289 if (len == 0)
return 0;
4298 ptr = dst->datum.ptr;
4301 if (talloc_reference_count(ptr) > 0) {
4306 nlen = dst->vb_length + len + 1;
4307 nptr = talloc_realloc(ctx, ptr,
char, dst->vb_length + len + 1);
4310 __FUNCTION__, talloc_get_name(ptr), talloc_array_length(ptr), nlen);
4313 talloc_set_type(nptr,
char);
4316 memcpy(ptr + dst->vb_length, src, len);
4318 dst->tainted = dst->tainted || tainted;
4319 dst->datum.ptr = ptr;
4320 dst->vb_length += len;
4322 ptr[dst->vb_length] =
'\0';
4343 len = talloc_array_length(src);
4344 if ((len == 0) || (src[len - 1] !=
'\0')) {
4372 size_t len,
bool tainted)
4376 bin = talloc_array(ctx,
uint8_t, len);
4381 talloc_set_type(bin,
uint8_t);
4384 dst->vb_octets = bin;
4385 dst->vb_length = len;
4412 memcpy(&cbin, &dst->vb_octets,
sizeof(cbin));
4414 clen = talloc_array_length(dst->vb_octets);
4415 if (clen == len)
return 0;
4423 bin = talloc_realloc(ctx, cbin,
uint8_t, len);
4425 bin = talloc_array(ctx,
uint8_t, 0);
4441 if (clen < len) memset(bin + clen, 0x00, len - clen);
4442 dst->vb_octets = bin;
4443 dst->vb_length = len;
4469 uint8_t const *src,
size_t len,
bool tainted)
4479 bin = talloc_memdup(ctx, src, len);
4484 talloc_set_type(bin,
uint8_t);
4487 dst->vb_octets = bin;
4488 dst->vb_length = len;
4498 bin = talloc_size(ctx, len);
4504 talloc_set_type(bin,
uint8_t);
4507 dst->vb_octets = bin;
4508 dst->vb_length = len;
4527 uint8_t const *src,
bool tainted)
4549 uint8_t const *src,
size_t len,
bool tainted)
4552 dst->vb_octets = src;
4553 dst->vb_length = len;
4567 uint8_t const *src,
bool tainted)
4572 dst->vb_octets = ctx ? talloc_reference(ctx, src) : src;
4573 dst->vb_length = talloc_array_length(src);
4592 if (len == 0)
return 0;
4603 if (talloc_reference_count(dst->datum.ptr) > 0) {
4608 nlen = dst->vb_length + len;
4609 nptr = talloc_realloc(ctx, dst->datum.ptr,
uint8_t, dst->vb_length + len);
4613 talloc_get_name(dst->datum.ptr),
4614 talloc_array_length((
uint8_t const *)dst->datum.ptr), nlen);
4618 memcpy(nptr + dst->vb_length, src, len);
4620 dst->tainted = dst->tainted || tainted;
4621 dst->datum.ptr = nptr;
4622 dst->vb_length += len;
4652 vb->vb_uint8 = vb->vb_uint8 ==
UINT8_MAX ? 0 : vb->vb_uint8 + 1;
4656 vb->vb_uint16 = vb->vb_uint16 == UINT16_MAX ? 0 : vb->vb_uint16 + 1;
4660 vb->vb_uint32 = vb->vb_uint32 == UINT32_MAX ? 0 : vb->vb_uint32 + 1;
4664 vb->vb_uint64 = vb->vb_uint64 == UINT64_MAX ? 0 : vb->vb_uint64 + 1;
4668 vb->vb_int8 = vb->vb_int8 == INT8_MAX ? INT8_MIN : vb->vb_int8 + 1;
4672 vb->vb_int16 = vb->vb_int16 == INT16_MAX ? INT16_MIN : vb->vb_int16 + 1;
4676 vb->vb_int32 = vb->vb_int32 == INT32_MAX ? INT32_MIN : vb->vb_int32 + 1;
4680 vb->vb_int64 = vb->vb_int64 == INT64_MAX ? INT64_MIN : vb->vb_int64 + 1;
4700 static inline CC_HINT(always_inline)
4703 fr_sbuff_t *
in, fr_sbuff_parse_rules_t const *rules,
bool tainted)
4769 rules->escapes ? rules->escapes->chr :
'\0');
4781 fr_sbuff_parse_error_to_strerror(
err);
4804 fr_sbuff_t *
in, fr_sbuff_parse_rules_t
const *rules,
bool tainted)
4806 static fr_sbuff_parse_rules_t default_rules;
4813 if (!rules) rules = &default_rules;
4820 if (dst_enumv && dst_enumv->flags.has_value) {
4837 rules->terminals, rules->escapes);
4839 fr_sbuff_set_to_start(&our_in);
4845 fr_sbuff_set_to_start(&our_in);
4867 if (!dst_enumv || !unescaped) {
4870 if (
unlikely(fr_sbuff_out_aunescape_until(ctx, &
buff, &our_in, SIZE_MAX,
4871 rules->terminals, rules->escapes) < 0)) {
4897 if (!dst_enumv || !unescaped) {
4902 fr_sbuff_out_aunescape_until(ctx, &
buff, &our_in, SIZE_MAX,
4903 rules->terminals, rules->escapes);
4905 if (talloc_array_length(
buff) == 1) {
4910 bin = talloc_realloc(ctx,
buff,
uint8_t, talloc_array_length(
buff) - 1);
4916 talloc_set_type(bin,
uint8_t);
4927 bin = talloc_zero_array(ctx,
uint8_t, 0);
4942 fr_sbuff_marker(&hex_start, &our_in);
4959 if ((hex_len & 0x01) != 0) {
4985 if (!name_len)
return 0;
4997 "for non-prefix types", addr.
prefix);
5001 memcpy(&dst->vb_ip, &addr,
sizeof(dst->vb_ip));
5008 if (!name_len)
return 0;
5018 if (!name_len)
return 0;
5034 if (addr.
prefix != 128) {
5037 "for non-prefix types", addr.
prefix);
5041 memcpy(&dst->vb_ip, &addr,
sizeof(dst->vb_ip));
5048 if (!name_len)
return 0;
5058 if (!name_len)
return 0;
5070 if ((addr.
af == AF_INET) && (addr.
prefix != 32)) {
5071 goto fail_ipv4_prefix;
5074 if ((addr.
af == AF_INET6) && (addr.
prefix != 128)) {
5075 goto fail_ipv6_prefix;
5078 memcpy(&dst->vb_ip, &addr,
sizeof(dst->vb_ip));
5085 if (!name_len)
return 0;
5115 if (slen >= 0)
return slen;
5121 if (!rules->escapes) {
5127 dst->vb_bool = (stmp != 0);
5133 dst->vb_bool = (
utmp != 0);
5139 "\"yes\", \"no\", \"true\", \"false\" or any unquoted integer");
5179 fr_sbuff_set_to_start(&our_in);
5184 fr_sbuff_parse_error_to_strerror(
err);
5227 false, rules->terminals);
5228 if (slen < 0)
return slen;
5250 if (rules && rules->terminals) {
5254 rules->terminals, rules->escapes);
5255 if (len >=
sizeof(
buffer))
goto too_small;
5286 dst->enumv = dst_enumv;
5303 dst->type = dst_type;
5304 dst->tainted = tainted;
5309 dst->enumv = dst_enumv;
5310 fr_value_box_list_entry_init(dst);
5321 fr_sbuff_parse_rules_t prules = { .escapes = erules };
5324 if (slen <= 0)
return slen;
5327 fr_strerror_printf(
"Failed parsing '%s'. %zu bytes of trailing data after string value \"%pV\"",
5331 return (slen -
inlen) - 1;
5358 if (
data->enumv &&
data->enumv->flags.has_value) {
5368 switch (
data->type) {
5371 data->vb_strvalue,
data->vb_length, e_rules);
5408 data->vb_ether[0],
data->vb_ether[1],
5409 data->vb_ether[2],
data->vb_ether[3],
5410 data->vb_ether[4],
data->vb_ether[5]);
5461 if (
data->enumv) res =
data->enumv->flags.flag_time_res;
5474 bool is_unsigned =
false;
5477 res =
data->enumv->flags.flag_time_res;
5478 is_unsigned =
data->enumv->flags.is_unsigned;
5494 if (!e_rules || (!e_rules->do_oct && !e_rules->do_hex)) {
5505 NULL, NULL, &our_out,
UNCONST(fr_value_box_list_t *, &
data->vb_group),
5506 ", ", (
sizeof(
", ") - 1), e_rules,
5546 switch (
data->type) {
5591 if (fr_value_box_list_empty(list))
return 0;
5596 if (!flatten)
goto print;
5598 sep, sep_len, e_rules,
5599 proc_action, safe_for, flatten);
5608 slen =
fr_sbuff_in_escape(&our_sbuff, (
char const *)vb->vb_strvalue, vb->vb_length, e_rules);
5633 if (sep && fr_value_box_list_next(list, vb)) {
5635 if (slen < 0)
goto error;
5645 if (tainted && vb->tainted) *tainted =
true;
5678 uint8_t const *sep,
size_t sep_len,
5682 TALLOC_CTX *tmp_ctx = NULL;
5685 if (fr_value_box_list_empty(list))
return 0;
5690 if (!flatten)
goto cast;
5693 proc_action, flatten);
5712 if (!tmp_ctx) tmp_ctx = talloc_pool(NULL, 1024);
5733 if (sep && fr_value_box_list_next(list, vb)) {
5735 if (slen < 0)
goto error;
5747 if (tainted && vb->tainted) *tainted =
true;
5783 fr_dbuff_uctx_talloc_t dbuff_tctx;
5789 bool tainted =
false;
5792 fr_value_box_entry_t entry;
5794 if (fr_value_box_list_empty(list)) {
5801 if (
unlikely(!fr_sbuff_init_talloc(ctx, &sbuff, &sbuff_tctx, 256, max_size)))
return -1;
5823 if (
out == head_vb) {
5861 proc_action, 0, flatten) < 0) {
5862 fr_value_box_list_insert_head(list, head_vb);
5877 proc_action, flatten) < 0) {
5878 fr_value_box_list_insert_head(list, head_vb);
5889 fr_value_box_list_insert_head(list,
out);
5903 proc_action, 0, flatten) < 0)
goto error;
5914 proc_action, flatten) < 0)
goto error;
5958 ret = escape(vb,
uctx);
5961 vb->safe_for = safe_for;
6009 fr_value_box_list_remove(&child->vb_group, grandchild);
6010 if (steal) talloc_steal(ctx, grandchild);
6011 fr_value_box_list_insert_before(list, child, grandchild);
6032 char *aggr, *td = NULL;
6033 TALLOC_CTX *pool = NULL;
6035 if (!vb)
return NULL;
6038 if (!aggr)
return NULL;
6039 if (!fr_value_box_list_next(list, vb))
return aggr;
6045 pool = talloc_pool(NULL, 255);
6048 while ((vb = fr_value_box_list_next(list, vb))) {
6049 char *str, *new_aggr;
6082 char *aggr, *td = NULL;
6083 TALLOC_CTX *pool = NULL;
6085 if (!vb)
return NULL;
6092 if (!aggr)
return NULL;
6093 if (!fr_value_box_list_next(list, vb))
return aggr;
6099 pool = talloc_pool(NULL, 255);
6102 while ((vb = fr_value_box_list_next(list, vb))) {
6103 char *str, *new_aggr;
6137 return fr_hash(vb->vb_strvalue, vb->vb_length);
6140 return fr_hash(vb->vb_octets, vb->vb_length);
6162 while ((in_p = fr_value_box_list_next(
in, in_p))) {
6168 fr_value_box_list_talloc_free(
out);
6190 while ((vb = fr_value_box_list_next(
head, vb))) {
6192 if (vb->tainted)
return true;
6206 while ((vb = fr_value_box_list_next(
head, vb))) {
6220 while ((vb = fr_value_box_list_next(
head, vb))) {
6222 vb->tainted =
false;
6248 fr_fatal_assert_msg(vb->vb_strvalue,
"CONSISTENCY CHECK FAILED %s[%i]: fr_value_box_t strvalue field "
6251 "CONSISTENCY CHECK FAILED %s[%i]: fr_value_box_t strvalue field "
6252 "not null terminated",
file,
line);
6254 size_t len = talloc_array_length(vb->vb_strvalue);
6258 fr_fatal_assert_fail(
"CONSISTENCY CHECK FAILED %s[%u]: Expected fr_value_box_t->vb_strvalue talloc buffer "
6259 "len >= %zu, got %zu",
6260 file,
line, vb->vb_length + 1, len);
6266 fr_fatal_assert_msg(vb->vb_octets,
"CONSISTENCY CHECK FAILED %s[%i]: fr_value_box_t octets field "
6271 fr_fatal_assert_msg(vb->vb_void,
"CONSISTENCY CHECK FAILED %s[%i]: fr_value_box_t ptr field "
6294 vb->safe_for = safe_for;
6336 return (fr_value_box_list_num_elements(&
in->vb_group) > 0);
6343 return (
in->vb_length > 0);
6360 #define INFO_INDENT(_fmt, ...) FR_FAULT_LOG("%*s"_fmt, depth * 2, " ", ## __VA_ARGS__)
static int const char char buffer[256]
static int const char * fmt
#define fr_base16_encode(_out, _in)
#define fr_base16_decode(_err, _out, _in, _no_trailing)
#define UNCONST(_type, _ptr)
Remove const qualification from a pointer.
#define L(_str)
Helper for initialising arrays of string literals.
#define FALL_THROUGH
clang 10 doesn't recognised the FALL-THROUGH comment anymore
#define static_assert
For systems with an old version libc, define static_assert.
#define SIZEOF_MEMBER(_t, _m)
#define CMP(_a, _b)
Same as CMP_PREFER_SMALLER use when you don't really care about ordering, you just want an ordering.
static fr_atomic_queue_t * aq
int fr_dbuff_trim_talloc(fr_dbuff_t *dbuff, size_t len)
Trim a talloced dbuff to the minimum length required to represent the contained string.
#define fr_dbuff_used(_dbuff_or_marker)
Return the number of bytes remaining between the start of the dbuff or marker and the current positio...
#define FR_DBUFF_OUT_UINT64V_RETURN(_num, _dbuff_or_marker, _len)
Read bytes from a dbuff or marker and interpret them as a network order unsigned integer.
#define fr_dbuff_init(_out, _start, _len_or_end)
Initialise an dbuff for encoding or decoding.
#define fr_dbuff_start(_dbuff_or_marker)
Return the 'start' position of a dbuff or marker.
#define FR_DBUFF_OUT_INT64V_RETURN(_num, _dbuff_or_marker, _len)
Read bytes from a dbuff or marker and interpret them as a network order unsigned integer.
#define fr_dbuff_buff(_dbuff_or_marker)
Return the underlying buffer in a dbuff or one of marker.
#define fr_dbuff_out_memcpy(_out, _dbuff_or_marker, _outlen)
Copy exactly _outlen bytes from the dbuff.
#define FR_DBUFF_MEMSET_RETURN(_dbuff_or_marker, _c, _inlen)
Set _inlen bytes of a dbuff or marker to _c returning if there is insufficient space.
#define FR_DBUFF_OUT_MEMCPY_RETURN(_out, _dbuff_or_marker, _outlen)
Copy outlen bytes from the dbuff returning if there's insufficient data in the dbuff.
#define FR_DBUFF_IN_MEMCPY_RETURN(_dbuff_or_marker, _in, _inlen)
Copy exactly _inlen bytes into dbuff or marker returning if there's insufficient space.
#define fr_dbuff_in_memcpy(_dbuff_or_marker, _in, _inlen)
Copy exactly _inlen bytes into a dbuff or marker.
#define FR_DBUFF_IN_RETURN(_dbuff_or_marker, _in)
Copy data from a fixed sized C type into a dbuff returning if there is insufficient space.
static fr_dbuff_t * fr_dbuff_init_talloc(TALLOC_CTX *ctx, fr_dbuff_t *dbuff, fr_dbuff_uctx_talloc_t *tctx, size_t init, size_t max)
Initialise a special dbuff which automatically extends as additional data is written.
#define FR_DBUFF(_dbuff_or_marker)
Create a new dbuff pointing to the same underlying buffer.
#define FR_DBUFF_OUT_RETURN(_out, _dbuff_or_marker)
Copy data from a dbuff or marker to a fixed sized C type returning if there is insufficient data.
#define FR_DBUFF_IN_BYTES_RETURN(_dbuff_or_marker,...)
Copy a byte sequence into a dbuff or marker returning if there's insufficient space.
#define FR_DBUFF_TMP(_start, _len_or_end)
Creates a compound literal to pass into functions which accept a dbuff.
fr_dcursor_eval_t void const * uctx
#define fr_fatal_assert_fail(_msg,...)
Calls panic_action ifndef NDEBUG, else logs error and causes the server to exit immediately with code...
#define fr_cond_assert(_x)
Calls panic_action ifndef NDEBUG, else logs error and evaluates to value of _x.
#define fr_assert_fail(_msg,...)
Calls panic_action ifndef NDEBUG, else logs error.
#define fr_cond_assert_msg(_x, _fmt,...)
Calls panic_action ifndef NDEBUG, else logs error and evaluates to value of _x.
#define fr_fatal_assert_msg(_x, _fmt,...)
Calls panic_action ifndef NDEBUG, else logs error and causes the server to exit immediately with code...
@ FLAG_LENGTH_UINT8
string / octets type is prefixed by uint8 of length
@ FLAG_LENGTH_UINT16
string / octets type is prefixed by uint16 of length
struct value_box_s fr_value_box_t
fr_value_box_t const * value
Enum value (what name maps to).
#define da_is_length_field(_da)
fr_dict_enum_value_t * fr_dict_enum_by_name(fr_dict_attr_t const *da, char const *name, ssize_t len)
char const * fr_dict_enum_name_by_value(fr_dict_attr_t const *da, fr_value_box_t const *value)
Lookup the name of an enum value in a fr_dict_attr_t.
Value of an enumerated attribute.
static int fr_dlist_insert_tail(fr_dlist_head_t *list_head, void *ptr)
Insert an item into the tail of a list.
uint32_t fr_hash(void const *data, size_t size)
char * fr_inet_ifid_ntop(char *out, size_t outlen, uint8_t const *ifid)
Print an interface-id in standard colon notation.
int fr_ipaddr_is_prefix(fr_ipaddr_t const *ipaddr)
Determine if an address is a prefix.
uint8_t * fr_inet_ifid_pton(uint8_t out[static 8], char const *ifid_str)
Convert interface-id in colon notation to 8 byte binary form.
int fr_inet_pton6(fr_ipaddr_t *out, char const *value, ssize_t inlen, bool resolve, bool fallback, bool mask)
Parse an IPv6 address or IPv6 prefix in presentation format (and others)
char * fr_inet_ntop_prefix(char out[static FR_IPADDR_PREFIX_STRLEN], size_t outlen, fr_ipaddr_t const *addr)
Print a fr_ipaddr_t as a CIDR style network prefix.
bool fr_hostname_lookups
hostname -> IP lookups?
int fr_inet_pton(fr_ipaddr_t *out, char const *value, ssize_t inlen, int af, bool resolve, bool mask)
Simple wrapper to decide whether an IP value is v4 or v6 and call the appropriate parser.
int fr_ipaddr_is_inaddr_any(fr_ipaddr_t const *ipaddr)
Determine if an address is the INADDR_ANY address for its address family.
int8_t fr_ipaddr_cmp(fr_ipaddr_t const *a, fr_ipaddr_t const *b)
Compare two ip addresses.
char * fr_inet_ntop(char out[static FR_IPADDR_STRLEN], size_t outlen, fr_ipaddr_t const *addr)
Print the address portion of a fr_ipaddr_t.
uint8_t prefix
Prefix length - Between 0-32 for IPv4 and 0-128 for IPv6.
uint8_t addr[6]
Ethernet address.
Struct to represent an ethernet address.
#define fr_multiply(_out, _a, _b)
Multiplies two integers together.
static const uint8_t * zero
size_t fr_sbuff_out_unescape_until(fr_sbuff_t *out, fr_sbuff_t *in, size_t len, fr_sbuff_term_t const *tt, fr_sbuff_unescape_rules_t const *u_rules)
@ FR_TYPE_TIME_DELTA
A period of time measured in nanoseconds.
@ FR_TYPE_FLOAT32
Single precision floating point.
@ FR_TYPE_IPV4_ADDR
32 Bit IPv4 Address.
@ FR_TYPE_INT8
8 Bit signed integer.
@ FR_TYPE_TLV
Contains nested attributes.
@ FR_TYPE_ETHERNET
48 Bit Mac-Address.
@ FR_TYPE_IPV6_PREFIX
IPv6 Prefix.
@ FR_TYPE_STRING
String of printable characters.
@ FR_TYPE_MAX
Number of defined data types.
@ FR_TYPE_NULL
Invalid (uninitialised) attribute type.
@ FR_TYPE_UINT16
16 Bit unsigned integer.
@ FR_TYPE_INT64
64 Bit signed integer.
@ FR_TYPE_INT16
16 Bit signed integer.
@ FR_TYPE_DATE
Unix time stamp, always has value >2^31.
@ FR_TYPE_COMBO_IP_PREFIX
IPv4 or IPv6 address prefix depending on length.
@ FR_TYPE_VALUE_BOX
A boxed value.
@ FR_TYPE_UINT8
8 Bit unsigned integer.
@ FR_TYPE_UINT32
32 Bit unsigned integer.
@ FR_TYPE_STRUCT
like TLV, but without T or L, and fixed-width children
@ FR_TYPE_INT32
32 Bit signed integer.
@ FR_TYPE_VENDOR
Attribute that represents a vendor in the attribute tree.
@ FR_TYPE_UINT64
64 Bit unsigned integer.
@ FR_TYPE_IPV6_ADDR
128 Bit IPv6 Address.
@ FR_TYPE_IPV4_PREFIX
IPv4 Prefix.
@ FR_TYPE_BOOL
A truth value.
@ FR_TYPE_SIZE
Unsigned integer capable of representing any memory address on the local system.
@ FR_TYPE_VSA
Vendor-Specific, for RADIUS attribute 26.
@ FR_TYPE_COMBO_IP_ADDR
IPv4 or IPv6 address depending on length.
@ FR_TYPE_IFID
Interface ID.
@ FR_TYPE_OCTETS
Raw octets.
@ FR_TYPE_GROUP
A grouping of other attributes.
@ FR_TYPE_FLOAT64
Double precision floating point.
int fr_inet_pton4(fr_ipaddr_t *out, char const *value, ssize_t inlen, bool resolve, bool fallback, bool mask_bits)
@ FR_SBUFF_PARSE_ERROR_NOT_FOUND
String does not contain a token matching the output type.
@ FR_SBUFF_PARSE_OK
No error.
static size_t array[MY_ARRAY_SIZE]
static uint8_t depth(fr_minmax_heap_index_t i)
int fr_digest_cmp(uint8_t const *a, uint8_t const *b, size_t length)
Do a comparison of two authentication digests by comparing the FULL data.
void * memset_explicit(void *ptr, int ch, size_t len)
static uint64_t fr_nbo_to_uint64(uint8_t const data[static sizeof(uint64_t)])
Read an unsigned 64bit integer from wire format (big endian)
static void fr_nbo_from_uint64(uint8_t out[static sizeof(uint64_t)], uint64_t num)
Write out an unsigned 64bit integer in wire format (big endian)
char * fr_vasprintf(TALLOC_CTX *ctx, char const *fmt, va_list ap)
int fr_sbuff_trim_talloc(fr_sbuff_t *sbuff, size_t len)
Trim a talloced sbuff to the minimum length required to represent the contained string.
size_t fr_sbuff_adv_past_allowed(fr_sbuff_t *sbuff, size_t len, bool const allowed[static UINT8_MAX+1], fr_sbuff_term_t const *tt)
Wind position past characters in the allowed set.
ssize_t fr_sbuff_in_escape(fr_sbuff_t *sbuff, char const *in, size_t inlen, fr_sbuff_escape_rules_t const *e_rules)
Print an escaped string to an sbuff.
bool const sbuff_char_class_hex[UINT8_MAX+1]
bool const sbuff_char_class_uint[UINT8_MAX+1]
static size_t min(size_t x, size_t y)
bool const sbuff_char_class_hostname[UINT8_MAX+1]
bool fr_sbuff_is_terminal(fr_sbuff_t *in, fr_sbuff_term_t const *tt)
Efficient terminal string search.
ssize_t fr_sbuff_in_bstrncpy(fr_sbuff_t *sbuff, char const *str, size_t len)
Copy bytes into the sbuff up to the first \0.
size_t fr_sbuff_adv_until(fr_sbuff_t *sbuff, size_t len, fr_sbuff_term_t const *tt, char escape_chr)
Wind position until we hit a character in the terminal set.
size_t fr_sbuff_out_bstrncpy(fr_sbuff_t *out, fr_sbuff_t *in, size_t len)
Copy as many bytes as possible from a sbuff to a sbuff.
bool fr_sbuff_next_if_char(fr_sbuff_t *sbuff, char c)
Return true if the current char matches, and if it does, advance.
#define fr_sbuff_start(_sbuff_or_marker)
#define fr_sbuff_adv_past_str_literal(_sbuff, _needle)
#define FR_SBUFF_IN_CHAR_RETURN(_sbuff,...)
#define fr_sbuff_set(_dst, _src)
#define FR_SBUFF_IN(_start, _len_or_end)
#define fr_sbuff_adv_past_strcase_literal(_sbuff, _needle)
#define fr_sbuff_current(_sbuff_or_marker)
#define FR_SBUFF_IN_ESCAPE_BUFFER_RETURN(...)
#define FR_SBUFF_TERMS(...)
Initialise a terminal structure with a list of sorted strings.
char const * name
Name for rule set to aid we debugging.
#define FR_SBUFF_IN_STRCPY_LITERAL_RETURN(_sbuff, _str)
#define fr_sbuff_extend(_sbuff_or_marker)
#define fr_sbuff_buff(_sbuff_or_marker)
#define FR_SBUFF_RETURN(_func, _sbuff,...)
#define FR_SBUFF_ERROR_RETURN(_sbuff_or_marker)
#define FR_SBUFF_IN_SPRINTF_RETURN(...)
#define SBUFF_CHAR_UNPRINTABLES_EXTENDED
#define FR_SBUFF(_sbuff_or_marker)
#define fr_sbuff_out(_err, _out, _in)
#define FR_SBUFF_IN_ESCAPE_RETURN(...)
#define fr_sbuff_remaining(_sbuff_or_marker)
#define FR_SBUFF_OUT(_start, _len_or_end)
#define SBUFF_CHAR_UNPRINTABLES_LOW
#define fr_sbuff_used(_sbuff_or_marker)
#define FR_SBUFF_TERM(_str)
Initialise a terminal structure with a single string.
#define FR_SBUFF_IN_STRCPY_RETURN(...)
#define FR_SBUFF_TALLOC_THREAD_LOCAL(_out, _init, _max)
Talloc sbuff extension structure.
Set of parsing rules for *unescape_until functions.
fr_slen_t fr_size_from_str(size_t *out, fr_sbuff_t *in)
Parse a size string with optional unit.
fr_slen_t fr_size_to_str(fr_sbuff_t *out, size_t in)
Print a size string with unit.
static char buff[sizeof("18446744073709551615")+3]
PRIVATE void float64(struct DATA *p, double d)
fr_aka_sim_id_type_t type
char * talloc_typed_strdup(TALLOC_CTX *ctx, char const *p)
Call talloc_strdup, setting the type on the new chunk correctly.
char * talloc_buffer_append_variadic_buffer(TALLOC_CTX *ctx, char *to, int argc,...)
Concatenate to + ...
char * talloc_bstrndup(TALLOC_CTX *ctx, char const *in, size_t inlen)
Binary safe strndup function.
#define talloc_get_type_abort_const
fr_slen_t fr_time_delta_from_substr(fr_time_delta_t *out, fr_sbuff_t *in, fr_time_res_t hint, bool no_trailing, fr_sbuff_term_t const *tt)
Create fr_time_delta_t from a string.
int fr_unix_time_from_str(fr_unix_time_t *date, char const *date_str, fr_time_res_t hint)
Convert string in various formats to a fr_unix_time_t.
int64_t fr_time_scale(int64_t t, fr_time_res_t hint)
Scale an input time to NSEC, clamping it at max / min.
fr_slen_t fr_time_delta_to_str(fr_sbuff_t *out, fr_time_delta_t delta, fr_time_res_t res, bool is_unsigned)
Print fr_time_delta_t to a string with an appropriate suffix.
fr_slen_t fr_unix_time_to_str(fr_sbuff_t *out, fr_unix_time_t time, fr_time_res_t res, bool utc)
Convert unix time to string.
int64_t const fr_time_multiplier_by_res[]
static fr_time_delta_t fr_time_delta_from_integer(bool *overflow, int64_t integer, fr_time_res_t res)
static int64_t fr_time_delta_to_integer(fr_time_delta_t delta, fr_time_res_t res)
static int64_t fr_time_delta_unwrap(fr_time_delta_t time)
static int8_t fr_time_delta_cmp(fr_time_delta_t a, fr_time_delta_t b)
Compare two fr_time_delta_t values.
#define fr_time_delta_isneg(_a)
#define fr_time_delta_wrap(_time)
#define fr_unix_time_wrap(_time)
fr_time_res_t
The base resolution for print parse operations.
static fr_unix_time_t fr_unix_time_from_integer(bool *overflow, int64_t integer, fr_time_res_t res)
static int8_t fr_unix_time_cmp(fr_unix_time_t a, fr_unix_time_t b)
Compare two fr_unix_time_t values.
static uint64_t fr_unix_time_unwrap(fr_unix_time_t time)
static int64_t fr_unix_time_to_integer(fr_unix_time_t delta, fr_time_res_t res)
const char fr_token_quote[T_TOKEN_LAST]
Convert tokens back to a quoting character.
@ T_SOLIDUS_QUOTED_STRING
void fr_strerror_clear(void)
Clears all pending messages from the talloc pools.
#define fr_strerror_printf(_fmt,...)
Log to thread local error buffer.
#define fr_strerror_const(_msg)
#define FR_TYPE_VARIABLE_SIZE
#define FR_TYPE_STRUCTURAL_EXCEPT_GROUP
#define fr_type_is_non_leaf(_x)
static char const * fr_type_to_str(fr_type_t type)
Return a static string containing the type name.
#define fr_type_is_group(_x)
#define fr_type_is_variable_size(_x)
#define fr_type_is_structural(_x)
#define fr_type_is_fixed_size(_x)
#define FR_TYPE_STRUCTURAL
#define fr_type_is_ip(_x)
#define FR_TYPE_INTEGER_EXCEPT_BOOL
#define fr_type_is_leaf(_x)
#define FR_TYPE_FIXED_SIZE
int fr_value_box_bstrndup_dbuff(TALLOC_CTX *ctx, fr_value_box_t *dst, fr_dict_attr_t const *enumv, fr_dbuff_t *dbuff, size_t len, bool tainted)
void fr_value_box_list_verify(char const *file, int line, fr_value_box_list_t const *list)
static void _fr_value_box_list_debug(fr_value_box_list_t const *head, int depth)
static void _fr_value_box_debug(fr_value_box_t const *vb, int depth, int idx)
void fr_value_box_memdup_buffer_shallow(TALLOC_CTX *ctx, fr_value_box_t *dst, fr_dict_attr_t const *enumv, uint8_t const *src, bool tainted)
Assign a talloced buffer to a box, but don't copy it.
size_t const fr_value_box_field_sizes[]
How many bytes wide each of the value data fields are.
fr_sbuff_escape_rules_t fr_value_escape_double
int fr_value_box_hton(fr_value_box_t *dst, fr_value_box_t const *src)
Performs byte order reversal for types that need it.
size_t fr_value_box_network_length(fr_value_box_t const *value)
Get the size of the value held by the fr_value_box_t.
int fr_value_box_vasprintf(TALLOC_CTX *ctx, fr_value_box_t *dst, fr_dict_attr_t const *enumv, bool tainted, char const *fmt, va_list ap)
Print a formatted string using our internal printf wrapper and assign it to a value box.
ssize_t fr_value_box_from_substr(TALLOC_CTX *ctx, fr_value_box_t *dst, fr_type_t dst_type, fr_dict_attr_t const *dst_enumv, fr_sbuff_t *in, fr_sbuff_parse_rules_t const *rules, bool tainted)
Convert string value to a fr_value_box_t type.
void fr_value_box_debug(fr_value_box_t const *vb)
Print the value of a box as info messages.
#define INFO_INDENT(_fmt,...)
int fr_value_box_bstrn_append(TALLOC_CTX *ctx, fr_value_box_t *dst, char const *src, size_t len, bool tainted)
Append bytes from a buffer to an existing fr_value_box_t.
void fr_value_box_mark_unsafe(fr_value_box_t *vb)
Mark a value-box as "unsafe".
fr_sbuff_escape_rules_t fr_value_escape_single
ssize_t fr_value_box_from_str(TALLOC_CTX *ctx, fr_value_box_t *dst, fr_type_t dst_type, fr_dict_attr_t const *dst_enumv, char const *in, size_t inlen, fr_sbuff_unescape_rules_t const *erules, bool tainted)
int fr_value_box_strtrim(TALLOC_CTX *ctx, fr_value_box_t *vb)
Trim the length of the string buffer to match the length of the C string.
uint32_t fr_value_box_hash(fr_value_box_t const *vb)
Hash the contents of a value box.
ssize_t fr_value_box_print(fr_sbuff_t *out, fr_value_box_t const *data, fr_sbuff_escape_rules_t const *e_rules)
Print one boxed value to a string.
fr_sbuff_parse_rules_t const value_parse_rules_single_3quoted
static fr_slen_t fr_value_box_from_numeric_substr(fr_value_box_t *dst, fr_type_t dst_type, fr_dict_attr_t const *dst_enumv, fr_sbuff_t *in, fr_sbuff_parse_rules_t const *rules, bool tainted)
Convert integer encoded as string to a fr_value_box_t type.
static int fr_value_box_cast_to_strvalue(TALLOC_CTX *ctx, fr_value_box_t *dst, fr_type_t dst_type, fr_dict_attr_t const *dst_enumv, fr_value_box_t const *src)
Convert any supported type to a string.
int fr_value_box_mem_append_buffer(TALLOC_CTX *ctx, fr_value_box_t *dst, uint8_t const *src, bool tainted)
Append a talloc buffer to an existing fr_value_box_t.
fr_sbuff_parse_rules_t const value_parse_rules_double_unquoted
fr_sbuff_parse_rules_t const value_parse_rules_solidus_quoted
ssize_t fr_value_box_list_concat_as_octets(bool *tainted, bool *secret, fr_dbuff_t *dbuff, fr_value_box_list_t *list, uint8_t const *sep, size_t sep_len, fr_value_box_list_action_t proc_action, bool flatten)
Concatenate a list of value boxes together.
ssize_t fr_value_box_from_network(TALLOC_CTX *ctx, fr_value_box_t *dst, fr_type_t type, fr_dict_attr_t const *enumv, fr_dbuff_t *dbuff, size_t len, bool tainted)
Decode a fr_value_box_t from serialized binary data.
int fr_value_box_mem_alloc(TALLOC_CTX *ctx, uint8_t **out, fr_value_box_t *dst, fr_dict_attr_t const *enumv, size_t len, bool tainted)
Pre-allocate an octets buffer for filling by the caller.
int fr_value_box_list_escape_in_place(fr_value_box_list_t *list, fr_value_box_escape_t escape, fr_value_box_safe_for_t safe_for, void *uctx)
Escape a list of value boxes in place.
int fr_value_box_memdup_buffer(TALLOC_CTX *ctx, fr_value_box_t *dst, fr_dict_attr_t const *enumv, uint8_t const *src, bool tainted)
Copy a talloced buffer to a fr_value_box_t.
#define network_min_size(_x)
Sanity checks.
int fr_value_box_bstrdup_buffer(TALLOC_CTX *ctx, fr_value_box_t *dst, fr_dict_attr_t const *enumv, char const *src, bool tainted)
Copy a nul terminated talloced buffer to a fr_value_box_t.
int fr_value_box_cast(TALLOC_CTX *ctx, fr_value_box_t *dst, fr_type_t dst_type, fr_dict_attr_t const *dst_enumv, fr_value_box_t const *src)
Convert one type of fr_value_box_t to another.
int fr_value_box_asprintf(TALLOC_CTX *ctx, fr_value_box_t *dst, fr_dict_attr_t const *enumv, bool tainted, char const *fmt,...)
Print a formatted string using our internal printf wrapper and assign it to a value box.
fr_sbuff_parse_rules_t const * value_parse_rules_unquoted_char[UINT8_MAX]
fr_sbuff_parse_rules_t const * value_parse_rules_quoted[T_TOKEN_LAST]
Parse rules for quoted strings.
int fr_value_box_mem_realloc(TALLOC_CTX *ctx, uint8_t **out, fr_value_box_t *dst, size_t len)
Change the length of a buffer already allocated to a value box.
static size_t const fr_value_box_network_sizes[FR_TYPE_MAX+1][2]
static int fr_value_box_cast_to_float(UNUSED TALLOC_CTX *ctx, fr_value_box_t *dst, fr_type_t dst_type, fr_dict_attr_t const *dst_enumv, fr_value_box_t const *src)
Convert any value to a floating point value.
int8_t fr_value_box_cmp(fr_value_box_t const *a, fr_value_box_t const *b)
Compare two values.
#define SIGN_BIT_HIGH(_int, _len)
size_t const fr_value_box_offsets[]
Where the value starts in the fr_value_box_t.
fr_sbuff_parse_rules_t const * value_parse_rules_quoted_char[UINT8_MAX]
#define CAST_IP_FIX_COMBO
void fr_value_box_list_untaint(fr_value_box_list_t *head)
Untaint every list member (and their children)
fr_sbuff_parse_rules_t const value_parse_rules_bareword_unquoted
Default formatting rules.
static int fr_value_box_cast_to_ipv4addr(TALLOC_CTX *ctx, fr_value_box_t *dst, fr_type_t dst_type, fr_dict_attr_t const *dst_enumv, fr_value_box_t const *src)
Convert any supported type to an IPv4 address.
int fr_value_box_copy(TALLOC_CTX *ctx, fr_value_box_t *dst, const fr_value_box_t *src)
Copy value data verbatim duplicating any buffers.
fr_sbuff_parse_rules_t const value_parse_rules_single_unquoted
int fr_value_box_cmp_op(fr_token_t op, fr_value_box_t const *a, fr_value_box_t const *b)
Compare two attributes using an operator.
fr_sbuff_unescape_rules_t fr_value_unescape_solidus
bool fr_value_box_is_truthy(fr_value_box_t const *in)
Check truthiness of values.
int fr_value_box_cast_in_place(TALLOC_CTX *ctx, fr_value_box_t *vb, fr_type_t dst_type, fr_dict_attr_t const *dst_enumv)
Convert one type of fr_value_box_t to another in place.
fr_sbuff_parse_rules_t const value_parse_rules_single_quoted
static uint8_t const v4_v6_map[]
v4 to v6 mapping prefix
int fr_value_box_mem_append(TALLOC_CTX *ctx, fr_value_box_t *dst, uint8_t const *src, size_t len, bool tainted)
Append data to an existing fr_value_box_t.
fr_sbuff_unescape_rules_t * fr_value_unescape_by_char[UINT8_MAX+1]
void fr_value_box_list_debug(fr_value_box_list_t const *head)
Print a list of value boxes as info messages.
void fr_value_box_memdup_shallow(fr_value_box_t *dst, fr_dict_attr_t const *enumv, uint8_t const *src, size_t len, bool tainted)
Assign a buffer to a box, but don't copy it.
fr_sbuff_escape_rules_t fr_value_escape_solidus
void fr_value_box_copy_shallow(TALLOC_CTX *ctx, fr_value_box_t *dst, fr_value_box_t const *src)
Perform a shallow copy of a value_box.
static int fr_value_box_cast_to_octets(TALLOC_CTX *ctx, fr_value_box_t *dst, fr_type_t dst_type, fr_dict_attr_t const *dst_enumv, fr_value_box_t const *src)
Convert any supported type to octets.
return fr_dbuff_set(dbuff, &our_dbuff)
void fr_value_box_increment(fr_value_box_t *vb)
Increment a boxed value.
fr_sbuff_escape_rules_t * fr_value_escape_by_quote[T_TOKEN_LAST]
void _fr_value_box_mark_safe_for(fr_value_box_t *vb, fr_value_box_safe_for_t safe_for)
Mark a value-box as "safe", of a particular type.
size_t fr_value_str_unescape(fr_sbuff_t *out, fr_sbuff_t *in, size_t inlen, char quote)
Convert a string value with escape sequences into its binary form.
void fr_value_box_clear_value(fr_value_box_t *data)
Clear/free any existing value.
void fr_value_box_verify(char const *file, int line, fr_value_box_t const *vb)
Validation function to check that a fr_value_box_t is correctly initialised.
fr_sbuff_parse_rules_t const * value_parse_rules_3quoted[T_TOKEN_LAST]
int fr_value_box_strdup(TALLOC_CTX *ctx, fr_value_box_t *dst, fr_dict_attr_t const *enumv, char const *src, bool tainted)
Copy a nul terminated string to a fr_value_box_t.
#define network_max_size(_x)
void fr_value_box_strdup_shallow_replace(fr_value_box_t *vb, char const *src, ssize_t len)
Free the existing buffer (if talloced) associated with the valuebox, and replace it with a new one.
char * fr_value_box_list_aprint(TALLOC_CTX *ctx, fr_value_box_list_t const *list, char const *delim, fr_sbuff_escape_rules_t const *e_rules)
Concatenate the string representations of a list of value boxes together.
ssize_t fr_value_box_print_quoted(fr_sbuff_t *out, fr_value_box_t const *data, fr_token_t quote)
Print one boxed value to a string with quotes (where needed)
fr_sbuff_parse_rules_t const value_parse_rules_double_3quoted
static int fr_value_box_cast_to_integer(TALLOC_CTX *ctx, fr_value_box_t *dst, fr_type_t dst_type, fr_dict_attr_t const *dst_enumv, fr_value_box_t const *src)
Convert any value to a signed or unsigned integer.
fr_sbuff_escape_rules_t fr_value_escape_unprintables
static int fr_value_box_cast_to_ipv6prefix(TALLOC_CTX *ctx, fr_value_box_t *dst, fr_type_t dst_type, fr_dict_attr_t const *dst_enumv, fr_value_box_t const *src)
Convert any supported type to an IPv6 address.
fr_sbuff_escape_rules_t fr_value_escape_backtick
int fr_value_box_bstr_append_buffer(TALLOC_CTX *ctx, fr_value_box_t *dst, char const *src, bool tainted)
Append a talloced buffer to an existing fr_value_box_t.
int fr_value_box_ipaddr(fr_value_box_t *dst, fr_dict_attr_t const *enumv, fr_ipaddr_t const *ipaddr, bool tainted)
Assign a fr_value_box_t value from an fr_ipaddr_t.
void fr_value_box_list_taint(fr_value_box_list_t *head)
Taint every list member (and their children)
FR_SBUFF_SET_RETURN(sbuff, &our_sbuff)
static int fr_value_box_cidr_cmp_op(fr_token_t op, int bytes, uint8_t a_net, uint8_t const *a, uint8_t b_net, uint8_t const *b)
static void fr_value_box_copy_meta(fr_value_box_t *dst, fr_value_box_t const *src)
Copy flags and type data from one value box to another.
void fr_value_box_list_mark_safe_for(fr_value_box_list_t *list, fr_value_box_safe_for_t safe_for)
Set the escaped flag for all value boxes in a list.
fr_sbuff_escape_rules_t * fr_value_escape_by_char[UINT8_MAX+1]
static int fr_value_box_fixed_size_from_octets(fr_value_box_t *dst, fr_type_t dst_type, fr_dict_attr_t const *dst_enumv, fr_value_box_t const *src)
Convert octets to a fixed size value box value.
static int fr_value_box_cast_to_bool(TALLOC_CTX *ctx, fr_value_box_t *dst, fr_type_t dst_type, fr_dict_attr_t const *dst_enumv, fr_value_box_t const *src)
Convert any supported type to a bool.
fr_sbuff_unescape_rules_t fr_value_unescape_backtick
int fr_value_unbox_ipaddr(fr_ipaddr_t *dst, fr_value_box_t *src)
Unbox an IP address performing a type check.
fr_sbuff_parse_rules_t const value_parse_rules_bareword_quoted
fr_sbuff_parse_rules_t const value_parse_rules_backtick_3quoted
static uint64_t const fr_value_box_integer_max[]
void fr_value_box_strdup_shallow(fr_value_box_t *dst, fr_dict_attr_t const *enumv, char const *src, bool tainted)
Assign a buffer containing a nul terminated string to a box, but don't copy it.
fr_sbuff_parse_rules_t const value_parse_rules_solidus_unquoted
fr_sbuff_parse_rules_t const value_parse_rules_backtick_quoted
fr_sbuff_parse_rules_t const * value_parse_rules_unquoted[T_TOKEN_LAST]
Parse rules for non-quoted strings.
static int fr_value_box_cast_to_ipv4prefix(TALLOC_CTX *ctx, fr_value_box_t *dst, fr_type_t dst_type, fr_dict_attr_t const *dst_enumv, fr_value_box_t const *src)
Convert any supported type to an IPv6 address.
static int fr_value_box_cast_to_ethernet(TALLOC_CTX *ctx, fr_value_box_t *dst, fr_type_t dst_type, fr_dict_attr_t const *dst_enumv, fr_value_box_t const *src)
Convert any supported type to an ethernet address.
fr_sbuff_unescape_rules_t fr_value_unescape_single
fr_sbuff_parse_rules_t const value_parse_rules_backtick_unquoted
fr_sbuff_parse_rules_t const value_parse_rules_double_quoted
int fr_value_box_bstr_alloc(TALLOC_CTX *ctx, char **out, fr_value_box_t *dst, fr_dict_attr_t const *enumv, size_t len, bool tainted)
Alloc and assign an empty \0 terminated string to a fr_value_box_t.
fr_sbuff_unescape_rules_t * fr_value_unescape_by_quote[T_TOKEN_LAST]
#define SIGN_PROMOTE(_int, _len)
fr_sbuff_parse_rules_t const value_parse_rules_solidus_3quoted
ssize_t fr_value_box_list_concat_as_string(bool *tainted, bool *secret, fr_sbuff_t *sbuff, fr_value_box_list_t *list, char const *sep, size_t sep_len, fr_sbuff_escape_rules_t const *e_rules, fr_value_box_list_action_t proc_action, fr_value_box_safe_for_t safe_for, bool flatten)
Concatenate a list of value boxes together.
int fr_value_box_steal(TALLOC_CTX *ctx, fr_value_box_t *dst, fr_value_box_t *src)
Copy value data verbatim moving any buffers to the specified context.
int fr_value_box_to_key(uint8_t **out, size_t *outlen, fr_value_box_t const *value)
Get a key from a value box.
void fr_value_box_flatten(TALLOC_CTX *ctx, fr_value_box_list_t *list, bool steal, bool free)
Removes a single layer of nesting, moving all children into the parent list.
int fr_value_box_list_acopy(TALLOC_CTX *ctx, fr_value_box_list_t *out, fr_value_box_list_t const *in)
Do a full copy of a list of value boxes.
void fr_value_box_clear(fr_value_box_t *data)
Clear/free any existing value and metadata.
bool fr_value_box_list_tainted(fr_value_box_list_t const *head)
Check to see if any list members (or their children) are tainted.
ssize_t fr_value_box_to_network(fr_dbuff_t *dbuff, fr_value_box_t const *value)
Encode a single value box, serializing its contents in generic network format.
static int64_t const fr_value_box_integer_min[]
int fr_value_box_bstr_realloc(TALLOC_CTX *ctx, char **out, fr_value_box_t *dst, size_t len)
Change the length of a buffer already allocated to a value box.
int fr_value_box_bstrndup(TALLOC_CTX *ctx, fr_value_box_t *dst, fr_dict_attr_t const *enumv, char const *src, size_t len, bool tainted)
Copy a string to to a fr_value_box_t.
int fr_value_box_memdup_dbuff(TALLOC_CTX *ctx, fr_value_box_t *dst, fr_dict_attr_t const *enumv, fr_dbuff_t *dbuff, size_t len, bool tainted)
int fr_regex_cmp_op(fr_token_t op, fr_value_box_t const *a, fr_value_box_t const *b)
Compare two boxes using an operator.
fr_sbuff_unescape_rules_t fr_value_unescape_double
int fr_value_box_bstrdup_buffer_shallow(TALLOC_CTX *ctx, fr_value_box_t *dst, fr_dict_attr_t const *enumv, char const *src, bool tainted)
Assign a talloced buffer containing a nul terminated string to a box, but don't copy it.
int fr_value_box_escape_in_place(fr_value_box_t *vb, fr_value_box_escape_t escape, fr_value_box_safe_for_t safe_for, void *uctx)
Escape a single value box in place.
size_t fr_value_substr_unescape(fr_sbuff_t *out, fr_sbuff_t *in, size_t inlen, char quote)
Convert a string value with escape sequences into its binary form.
fr_sbuff_escape_rules_t fr_value_escape_secret
Escape secret fields by simply mashing all data to '.
void fr_value_box_bstrndup_shallow(fr_value_box_t *dst, fr_dict_attr_t const *enumv, char const *src, size_t len, bool tainted)
Assign a string to to a fr_value_box_t.
static int fr_value_box_cast_to_ipv6addr(TALLOC_CTX *ctx, fr_value_box_t *dst, fr_type_t dst_type, fr_dict_attr_t const *dst_enumv, fr_value_box_t const *src)
Convert any supported type to an IPv6 address.
int fr_value_box_memdup(TALLOC_CTX *ctx, fr_value_box_t *dst, fr_dict_attr_t const *enumv, uint8_t const *src, size_t len, bool tainted)
Copy a buffer to a fr_value_box_t.
char * fr_value_box_list_aprint_secure(TALLOC_CTX *ctx, fr_value_box_list_t const *list, char const *delim, fr_sbuff_escape_rules_t const *e_rules)
Concatenate the string representations of a list of value boxes together hiding "secret" values.
static int fr_value_box_cast_integer_to_integer(UNUSED TALLOC_CTX *ctx, fr_value_box_t *dst, fr_type_t dst_type, fr_dict_attr_t const *dst_enumv, fr_value_box_t const *src)
Convert any signed or unsigned integer type to any other signed or unsigned integer type.
int fr_value_box_list_concat_in_place(TALLOC_CTX *ctx, fr_value_box_t *out, fr_value_box_list_t *list, fr_type_t type, fr_value_box_list_action_t proc_action, bool flatten, size_t max_size)
Concatenate a list of value boxes.
fr_value_box_list_action_t
Actions to perform when we process a box in a list.
@ FR_VALUE_BOX_LIST_NONE
Do nothing to processed boxes.
@ FR_VALUE_BOX_LIST_REMOVE
Remove the box from the input list.
#define vb_should_free(_action)
#define fr_value_box_list_foreach_safe(_list_head, _iter)
#define vb_should_free_value(_action)
#define vb_should_remove(_action)
static int fr_value_box_memcpy_out(void *out, fr_value_box_t const *vb)
Copy the value of a value box to a field in a C struct.
static fr_slen_t fr_value_box_aprint(TALLOC_CTX *ctx, char **out, fr_value_box_t const *data, fr_sbuff_escape_rules_t const *e_rules) 1(fr_value_box_print
static bool fr_value_box_contains_secret(fr_value_box_t const *box)
#define FR_VALUE_BOX_NET_ERROR
Special value to indicate fr_value_box_from_network experienced a general error.
static void fr_value_box_set_secret(fr_value_box_t *box, bool secret)
int(* fr_value_box_escape_t)(fr_value_box_t *vb, void *uctx)
Escape a value box.
#define fr_box_strvalue_len(_val, _len)
#define FR_VALUE_BOX_MAGIC
#define fr_value_box_init_null(_vb)
Initialise an empty/null box that will be filled later.
#define fr_value_box_is_safe_for(_box, _safe_for)
static size_t char fr_sbuff_t size_t inlen
uintptr_t fr_value_box_safe_for_t
Escaping that's been applied to a value box.
#define fr_value_box_alloc_null(_ctx)
Allocate a value box for later use with a value assignment function.
static always_inline int fr_value_box_ethernet_addr(fr_value_box_t *dst, fr_dict_attr_t const *enumv, fr_ethernet_t const *src, bool tainted)
#define fr_value_box_init(_vb, _type, _enumv, _tainted)
Initialise a fr_value_box_t.
#define fr_value_box_list_foreach(_list_head, _iter)
#define FR_VALUE_BOX_NET_OOM
Special value to indicate fr_value_box_from_network hit an out of memory error.
static size_t char ** out
static uint8_t * fr_value_box_raw(fr_value_box_t const *vb, fr_type_t type)
Return a pointer to the "raw" value from a value-box.