The FreeRADIUS server $Id: f3670dba8951ca10eb4948feb3dc3db9423a334f $
Loading...
Searching...
No Matches
pair.h
Go to the documentation of this file.
1#pragma once
2/*
3 * This program is free software; you can redistribute it and/or modify
4 * it under the terms of the GNU General Public License as published by
5 * the Free Software Foundation; either version 2 of the License, or
6 * (at your option) any later version.
7 *
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 * GNU General Public License for more details.
12 *
13 * You should have received a copy of the GNU General Public License
14 * along with this program; if not, write to the Free Software
15 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
16 */
17
18/** AVP manipulation and search API
19 *
20 * @file src/lib/util/pair.h
21 *
22 * @copyright 2020 The FreeRADIUS server project
23 */
24RCSIDH(dpair_h, "$Id: 3cd1c29ad2bee8f5d37aae6ac7907b16115f29d6 $")
25
26#include <freeradius-devel/build.h>
27#include <freeradius-devel/missing.h>
28#include <freeradius-devel/util/dcursor.h>
29#include <freeradius-devel/util/value.h>
30#include <freeradius-devel/util/tlist.h>
31
32#ifdef __cplusplus
33extern "C" {
34#endif
35
36/*
37 * Allow public and private versions of the same structures
38 */
39#ifdef _CONST
40# error _CONST can only be defined in the local header
41#endif
42#ifndef _PAIR_PRIVATE
43# define _CONST const
44#else
45# define _CONST
46#endif
47
48typedef struct value_pair_s fr_pair_t;
49
50FR_TLIST_TYPES(fr_pair_order_list)
51
52typedef struct pair_list_s {
53 FR_TLIST_HEAD(fr_pair_order_list) order; //!< Maintains the relative order of pairs in a list.
54
55 bool _CONST is_child; //!< is a child of a VP
56
57#ifdef WITH_VERIFY_PTR
58 unsigned int verified : 1; //!< hack to avoid O(N^3) issues
59#endif
61
62/** Stores an attribute, a value and various bits of other data
63 *
64 * fr_pair_ts are the main data structure used in the server
65 *
66 * They also specify what behaviour should be used when the attribute is merged into a new list/tree.
67 */
69 fr_dict_attr_t const * _CONST da; //!< Dictionary attribute defines the attribute
70 //!< number, vendor and type of the pair.
71 ///< Note: This should not be modified outside
72 ///< of pair.c except via #fr_pair_reinit_from_da.
73
74 FR_TLIST_ENTRY(fr_pair_order_list) _CONST order_entry; //!< Entry to maintain relative order within a list
75 ///< of pairs. This ensures pairs within the list
76 ///< are encoded in the same order as they were
77 ///< received or inserted.
78
79
80 /*
81 * Pairs can have children or data but not both.
82 */
83 union {
84 fr_value_box_t data; //!< The value of this pair.
85
86 struct {
87 /** Force children field to come _after_ the safety field in the fr_value_box_t
88 *
89 * This works no matter where type appears in fr_value_box_t, whereas just
90 * listing another fr_type_t field here does not.
91 *
92 * This hack allows the majority of the fr_pair_list_t to overlap with the
93 * fr_value_box_t which gives us much greater packing efficiency.
94 */
95 uint8_t pad[offsetof(fr_value_box_t, safety)];
96
97 fr_pair_list_t children; //!< Nested attributes of this pair.
98 };
99 };
100
101 /*
102 * Legacy stuff that needs to die.
103 */
104 struct {
105 fr_token_t op; //!< Operator to use when moving or inserting
106 };
107};
108
109#define vp_strvalue data.vb_strvalue
110#define vp_octets data.vb_octets
111#define vp_ptr data.datum.ptr //!< Either octets or strvalue
112#define vp_length data.vb_length
113
114#define vp_ipv4addr data.vb_ip.addr.v4.s_addr
115#define vp_ipv6addr data.vb_ip.addr.v6.s6_addr
116#define vp_ip data.vb_ip
117#define vp_ifid data.vb_ifid
118#define vp_ether data.vb_ether
119
120#define vp_bool data.datum.boolean
121#define vp_uint8 data.vb_uint8
122#define vp_uint16 data.vb_uint16
123#define vp_uint32 data.vb_uint32
124#define vp_uint64 data.vb_uint64
125
126#define vp_int8 data.vb_int8
127#define vp_int16 data.vb_int16
128#define vp_int32 data.vb_int32
129#define vp_int64 data.vb_int64
130
131#define vp_float32 data.vb_float32
132#define vp_float64 data.vb_float64
133
134#define vp_attr data.vb_attr
135
136#define vp_date data.vb_date
137#define vp_time_delta data.vb_time_delta
138
139#define vp_group children
140
141#define vp_size data.datum.size
142#define vp_filter data.datum.filter
143
144#define vp_type data.type
145#define vp_tainted data.tainted
146#define vp_immutable data.immutable
147#define vp_edit data.edit
148#define vp_raw da->flags.is_raw
149
150#define ATTRIBUTE_EQ(_x, _y) ((_x && _y) && (_x->da == _y->da))
151
152/** If WITH_VERIFY_PTR is defined, we perform runtime checks to ensure the fr_pair_t are sane
153 *
154 */
155#ifdef WITH_VERIFY_PTR
156void fr_pair_verify(char const *file, int line, fr_dict_attr_t const *parent,
157 fr_pair_list_t const *list, fr_pair_t const *vp, bool verify_values) CC_HINT(nonnull(5));
158
159void fr_pair_list_verify(char const *file, int line,
160 TALLOC_CTX const *expected, fr_pair_list_t const *list, bool verify_values) CC_HINT(nonnull(4));
161
162# define PAIR_VERIFY(_x) fr_pair_verify(__FILE__, __LINE__, NULL, NULL, _x, true)
163# define PAIR_VERIFY_WITH_LIST(_l, _x) fr_pair_verify(__FILE__, __LINE__, NULL, _l, _x, true)
164# define PAIR_LIST_VERIFY(_x) fr_pair_list_verify(__FILE__, __LINE__, NULL, _x, true)
165# define PAIR_LIST_VERIFY_WITH_CTX(_c, _x) fr_pair_list_verify(__FILE__, __LINE__, _c, _x, true)
166# define PAIR_VERIFY_WITH_PARENT_VP(_p, _x) fr_pair_verify(__FILE__, __LINE__, (_p)->da, &(_p)->vp_group, _x, true)
167# define PAIR_VERIFY_WITH_PARENT_DA(_p, _x) fr_pair_verify(__FILE__, __LINE__, _p, NULL, _x, true)
168
169/*
170 * On debug builds, various macros to ensure that the pair is marked up with the file and location of
171 * where it was allocated. Also have a wrapper for fr_pair_append(), so that before we put it into a
172 * list, we mark the pair with where it was allocated, and then also verify it.
173 */
174# define PAIR_ALLOCED(_x) do { (_x)->data.file = __FILE__; (_x)->data.line = __LINE__; } while (0)
175# define FR_PAIR_APPEND(_list, _x) do { PAIR_ALLOCED(_x); PAIR_VERIFY(_x); fr_pair_append(_list, _x); } while (0)
176#else
178/** Wrapper function to defeat nonnull checks
179 *
180 * We may sprinkle PAIR_VERIFY and PAIR_LIST_VERIFY in functions which
181 * have their pair argument marked up as nonnull.
182 *
183 * This would usually generate errors when WITH_VERIFY_PTR is not
184 * defined, as the assert macros check for an arguments NULLness.
185 *
186 * This function wraps the assert but has nonnull-compare disabled
187 * meaning a warning won't be emitted.
188 */
189static inline bool fr_pair_nonnull_assert(fr_pair_t const *vp)
190{
191 return fr_cond_assert(vp);
192}
193
195{
197}
199
200/*
201 * Even if were building without WITH_VERIFY_PTR
202 * the pointer must not be NULL when these various macros are used
203 * so we can add some sneaky soft asserts.
204 */
205# define PAIR_VERIFY(_x) fr_pair_nonnull_assert(_x)
206# define PAIR_VERIFY_WITH_LIST(_l, _x) fr_pair_list_nonnull_assert(_l); \
207 fr_pair_nonnull_assert(_x)
208# define PAIR_LIST_VERIFY(_x) fr_pair_list_nonnull_assert(_x)
209# define PAIR_LIST_VERIFY_WITH_CTX(_c, _x) fr_pair_list_nonnull_assert(_x)
210# define PAIR_VERIFY_WITH_PARENT_VP(_p, _x) fr_pair_list_nonnull_assert(_p); \
211 fr_pair_list_nonnull_assert(_x)
212# define PAIR_VERIFY_WITH_PARENT_DA(_p, _x) fr_pair_list_nonnull_assert(_x)
213# define PAIR_ALLOCED(_x) fr_pair_nonnull_assert(_x)
214# define FR_PAIR_APPEND fr_pair_append
215#endif
216
217
218#ifdef TEST_CHECK
219/** Macro for use in acutest tests
220 */
221#define TEST_CHECK_PAIR(_got, _exp) \
222do { \
223 fr_pair_t const *_our_got = (_got); \
224 fr_pair_t const *_our_exp = (_exp); \
225 TEST_CHECK_(_our_exp == _our_got, "%s", #_got); \
226 if (_our_exp) { \
227 TEST_MSG("Expected pair : %s - %p (%s)", (_our_exp)->da->name, _our_exp, talloc_get_name(_our_exp)); \
228 } else { \
229 TEST_MSG("Expected pair : NULL"); \
230 } \
231 if (_our_got) { \
232 TEST_MSG("Got pair : %s - %p (%s)", (_our_got)->da->name, _our_got, talloc_get_name(_our_got)); \
233 } else { \
234 TEST_MSG("Got Pair : NULL"); \
235 } \
236} while(0)
237
238#define TEST_CHECK_PAIR_NEQ(_got, _neq) \
239do { \
240 fr_pair_t const *_our_got = (_got); \
241 fr_pair_t const *_our_neq = (_neq); \
242 TEST_CHECK_(_our_got != _our_neq, "%s", #_got); \
243 if (_our_neq) { \
244 TEST_MSG("Pair must not equal : %s - %p (%s)", (_our_neq)->da->name, _our_neq, talloc_get_name(_our_neq)); \
245 } else { \
246 TEST_MSG("Pair must not equal : NULL"); \
247 } \
248} while(0)
249#endif
250
251/*
252 * Helper macros for adding pairs to lists and assigning a value to them
253 */
254
255/** Check a pair's data type matches the DA data type
256 *
257 * @param[in] vp to check consistency of.
258 * @return
259 * - true for match
260 * - false for error
261 */
263{
264 if (vp->vp_type == vp->da->type) return true;
265
266 fr_strerror_printf("fr_pair_t attribute %p \"%s\" data type (%s) does not match da type (%s)",
267 vp->da, vp->da->name,
268 fr_table_str_by_value(fr_type_table, vp->vp_type, "invalid"),
269 fr_table_str_by_value(fr_type_table, vp->da->type, "invalid"));
270 return false;
271}
272
273/** Iterate over the contents of a #fr_pair_list_t
274 *
275 * The iteration variable can be safely removed from the list at each pass.
276 *
277 * @param[in] _list_head to iterate over.
278 * @param[in] _iter Name of iteration variable.
279 * Will be declared in the scope of the loop.
280 */
281#define fr_pair_list_foreach(_list_head, _iter) \
282 for (fr_pair_t *JOIN(_next,_iter), *_iter = fr_pair_list_head(_list_head); JOIN(_next,_iter) = fr_pair_list_next(_list_head, _iter), _iter != NULL; _iter = JOIN(_next,_iter))
283
284/** Iterate over the leaf nodes of a #fr_pair_list_t
285 *
286 * The iteration variable CANNOT be modified. This is a read-only operation.
287 *
288 * @param[in] _list_head to iterate over.
289 * @param[in] _iter Name of iteration variable.
290 * Will be declared in the scope of the loop.
291 */
292#define fr_pair_list_foreach_leaf(_list_head, _iter) \
293 for (fr_pair_t *_iter = fr_pair_list_iter_leaf(_list_head, NULL); _iter != NULL; _iter = fr_pair_list_iter_leaf(_list_head, _iter))
294
295/** Append a pair to a list, assigning its value.
296 *
297 * Version for simple C data types
298 *
299 * @param[in] _ctx to allocate the pair in
300 * @param[out] _vp the allocated pair
301 * @param[in] _list to append the pair to
302 * @param[in] _attr to use when creating pair
303 * @param[in] _val to assign to the pair
304 * @param[in] _tainted does the value come from a trusted source
305 */
306#define fr_pair_list_append_by_da(_ctx, _vp, _list, _attr, _val, _tainted) \
307do { \
308 _vp = NULL; \
309 if (fr_pair_append_by_da(_ctx, &_vp, _list, _attr) < 0) break; \
310 fr_value_box(&_vp->data, _val, _tainted); \
311 if (!vp_da_data_type_check(_vp)) { \
312 fr_pair_delete(_list, _vp); \
313 _vp = NULL; \
314 } \
315} while (0)
316
317/** Append a pair to a list, assigning its value.
318 *
319 * Version for char* and uint8_t*
320 *
321 * @param[in] _ctx to allocate the pair in
322 * @param[out] _vp the allocated pair
323 * @param[in] _list to append the pair to
324 * @param[in] _attr to use when creating pair
325 * @param[in] _val to assign to the pair
326 * @param[in] _len of value
327 * @param[in] _tainted does the value come from a trusted source
328 */
329#define fr_pair_list_append_by_da_len(_ctx, _vp, _list, _attr, _val, _len, _tainted) \
330do { \
331 _vp = NULL; \
332 if (fr_pair_append_by_da(_ctx, &_vp, _list, _attr) < 0) break; \
333 fr_value_box_len(_vp, &_vp->data, _val, _len, _tainted); \
334 if (!vp_da_data_type_check(_vp)) { \
335 fr_pair_delete(_list, _vp); \
336 _vp = NULL; \
337 } \
338} while (0)
339
340#define fr_pair_list_append_by_da_parent(_ctx, _vp, _list, _attr, _val, _tainted) \
341do { \
342 _vp = NULL; \
343 if (fr_pair_append_by_da_parent(_ctx, &_vp, _list, _attr) < 0) break; \
344 fr_value_box(&_vp->data, _val, _tainted); \
345 if (!vp_da_data_type_check(_vp)) { \
346 fr_pair_delete(_list, _vp); \
347 _vp = NULL; \
348 } \
349} while (0)
350
351#define fr_pair_list_append_by_da_parent_len(_ctx, _vp, _list, _attr, _val, _len, _tainted) \
352do { \
353 _vp = NULL; \
354 if (fr_pair_append_by_da_parent(_ctx, &_vp, _list, _attr) < 0) break; \
355 fr_value_box_len(_vp, &_vp->data, _val, _len, _tainted); \
356 if (!vp_da_data_type_check(_vp)) { \
357 fr_pair_delete(_list, _vp); \
358 _vp = NULL; \
359 } \
360} while (0)
361
362/** Prepend a pair to a list, assigning its value
363 *
364 * Version for simple C data types
365 *
366 * @param[in] _ctx to allocate the pair in
367 * @param[out] _vp the allocated pair
368 * @param[in] _list to prepend the pair to
369 * @param[in] _attr to use when creating pair
370 * @param[in] _val to assign to the pair
371 * @param[in] _tainted does the value come from a trusted source
372 */
373#define fr_pair_list_prepend_by_da(_ctx, _vp, _list, _attr, _val, _tainted) \
374do { \
375 _vp = NULL; \
376 if (fr_pair_prepend_by_da(_ctx, &_vp, _list, _attr) < 0) break; \
377 fr_value_box(&_vp->data, _val, _tainted); \
378 if (!vp_da_data_type_check(_vp)) { \
379 fr_pair_delete(_list, _vp); \
380 _vp = NULL; \
381 } \
382} while (0)
383
384/** Prepend a pair to a list, assigning its value.
385 *
386 * Version for char* and uint8_t*
387 *
388 * @param[in] _ctx to allocate the pair in
389 * @param[out] _vp the allocated pair
390 * @param[in] _list to prepend the pair to
391 * @param[in] _attr to use when creating pair
392 * @param[in] _val to assign to the pair
393 * @param[in] _len of value
394 * @param[in] _tainted does the value come from a trusted source
395 */
396#define fr_pair_list_prepend_by_da_len(_ctx, _vp, _list, _attr, _val, _len, _tainted) \
397do { \
398 _vp = NULL; \
399 if (fr_pair_prepend_by_da(_ctx, &_vp, _list, _attr) < 0) break; \
400 fr_value_box_len(_vp, &_vp->data, _val, _len, _tainted); \
401 if (!vp_da_data_type_check(_vp)) { \
402 fr_pair_delete(_list, _vp); \
403 _vp = NULL; \
404 } \
405} while (0)
406
407/** Replace a pair in a list, assigning its value
408 *
409 * Version for simple C data types.
410 * If the pair does not already exist, a new one is allocated.
411 *
412 * @param[out] _vp the allocated pair
413 * @param[in] _list to append the pair to
414 * @param[in] _attr to use when creating pair
415 * @param[in] _val to assign to the pair
416 * @param[in] _tainted does the value come from a trusted source
417 */
418#define fr_pair_list_replace_by_da(_vp, _list, _attr, _val, _tainted) \
419do { \
420 fr_pair_update_by_da_parent(fr_pair_list_parent(_list), &_vp, _attr); \
421 if (!_vp) break; \
422 fr_value_box(&_vp->data, _val, _tainted); \
423 if (!vp_da_data_type_check(_vp)) { \
424 fr_pair_delete(_list, _vp); \
425 _vp = NULL; \
426 } \
427} while (0)
428
429/** Replace a pair in a list, assigning its value
430 *
431 * Version for char* and uint8_t*
432 * If the pair does not already exist, a new one is allocated.
433 *
434 * @param[in] _ctx to allocate the pair in
435 * @param[out] _vp the allocated pair
436 * @param[in] _list to append the pair to
437 * @param[in] _attr to use when creating pair
438 * @param[in] _val to assign to the pair
439 * @param[in] _len of value
440 * @param[in] _tainted does the value come from a trusted source
441 */
442#define fr_pair_list_replace_by_da_len(_ctx, _vp, _list, _attr, _val, _len, _tainted) \
443do { \
444 fr_pair_t *oldvp = fr_pair_find_by_da(_list, NULL, _attr); \
445 fr_pair_list_append_by_da_len(_ctx, _vp, _list, _attr, _val, _len, _tainted); \
446 if (!vp_da_data_type_check(_vp)) { \
447 fr_pair_delete(_list, _vp); \
448 _vp = NULL; \
449 } \
450 if (!_vp) break; \
451 if (oldvp) fr_pair_delete(_list, oldvp); \
452} while (0)
453
454/* Initialisation */
455/** @hidecallergraph */
457
458void fr_pair_init_null(fr_pair_t *vp) CC_HINT(nonnull);
459
460/* Allocation and management */
461fr_pair_t *fr_pair_alloc_null(TALLOC_CTX *ctx) CC_HINT(warn_unused_result);
462
463fr_pair_list_t *fr_pair_list_alloc(TALLOC_CTX *ctx) CC_HINT(warn_unused_result);
464
465fr_pair_t *fr_pair_root_afrom_da(TALLOC_CTX *ctx, fr_dict_attr_t const *da) CC_HINT(warn_unused_result) CC_HINT(nonnull(2));
466
467/** @hidecallergraph */
468fr_pair_t *fr_pair_afrom_da(TALLOC_CTX *ctx, fr_dict_attr_t const *da) CC_HINT(warn_unused_result) CC_HINT(nonnull(2));
469
471 CC_HINT(nonnull(2, 3));
472
473fr_pair_t *fr_pair_afrom_child_num(TALLOC_CTX *ctx, fr_dict_attr_t const *parent, unsigned int attr) CC_HINT(warn_unused_result);
474
475fr_pair_t *fr_pair_afrom_da_nested(TALLOC_CTX *ctx, fr_pair_list_t *list, fr_dict_attr_t const *da) CC_HINT(warn_unused_result) CC_HINT(nonnull(2,3));
476
477fr_pair_t *fr_pair_afrom_da_depth_nested(TALLOC_CTX *ctx, fr_pair_list_t *list, fr_dict_attr_t const *da, unsigned int start) CC_HINT(warn_unused_result) CC_HINT(nonnull(2,3));
478
479fr_pair_t *fr_pair_copy(TALLOC_CTX *ctx, fr_pair_t const *vp) CC_HINT(nonnull(2)) CC_HINT(warn_unused_result);
480
481int fr_pair_steal(TALLOC_CTX *ctx, fr_pair_t *vp) CC_HINT(nonnull);
482
483int fr_pair_steal_append(TALLOC_CTX *nctx, fr_pair_list_t *list, fr_pair_t *vp) CC_HINT(nonnull);
484
485int fr_pair_steal_prepend(TALLOC_CTX *nctx, fr_pair_list_t *list, fr_pair_t *vp) CC_HINT(nonnull);
486
487/* Searching and list modification */
488int fr_pair_raw_afrom_pair(fr_pair_t *vp, uint8_t const *data, size_t data_len) CC_HINT(nonnull);
489
490bool fr_pair_matches_da(void const *item, void const *uctx) CC_HINT(nonnull);
491
492/** @hidecallergraph */
493unsigned int fr_pair_count_by_da(fr_pair_list_t const *list, fr_dict_attr_t const *da)
494 CC_HINT(nonnull);
495
496/** @hidecallergraph */
498 fr_pair_t const *prev, fr_dict_attr_t const *da) CC_HINT(nonnull(1,3));
499
501 fr_dict_attr_t const *da, unsigned int idx) CC_HINT(nonnull);
502
504
506
508 fr_dict_attr_t const *parent, unsigned int attr,
509 unsigned int idx) CC_HINT(nonnull);
510
511/** @hidecallergraph */
512int fr_pair_append(fr_pair_list_t *list, fr_pair_t *vp) CC_HINT(nonnull);
513
515
516int fr_pair_insert_after(fr_pair_list_t *list, fr_pair_t *pos, fr_pair_t *to_add) CC_HINT(nonnull(1,3));
517
518int fr_pair_insert_before(fr_pair_list_t *list, fr_pair_t *pos, fr_pair_t *to_add) CC_HINT(nonnull(1,3));
519
520void fr_pair_replace(fr_pair_list_t *list, fr_pair_t *to_replace, fr_pair_t *vp) CC_HINT(nonnull);
521
523 fr_dict_attr_t const *parent, unsigned int attr) CC_HINT(nonnull);
524
525int fr_pair_append_by_da(TALLOC_CTX *ctx, fr_pair_t **out, fr_pair_list_t *list,
526 fr_dict_attr_t const *da) CC_HINT(nonnull(3,4));
527
528int fr_pair_prepend_by_da(TALLOC_CTX *ctx, fr_pair_t **out, fr_pair_list_t *list,
529 fr_dict_attr_t const *da) CC_HINT(nonnull(3,4));
530
531int fr_pair_append_by_da_parent(TALLOC_CTX *ctx, fr_pair_t **out, fr_pair_list_t *list,
532 fr_dict_attr_t const *da) CC_HINT(nonnull(3,4));
533
535 fr_dict_attr_t const *da) CC_HINT(nonnull(1,3));
536
537static inline CC_HINT(nonnull(3,4)) int fr_pair_find_or_append_by_da(TALLOC_CTX *ctx, fr_pair_t **out, fr_pair_list_t *list,
538 fr_dict_attr_t const *da)
539{
540 fr_pair_t *vp;
541
542 vp = fr_pair_find_by_da(list, NULL, da);
543 if (vp) {
544 *out = vp;
545 return 0;
546 }
547
548 return fr_pair_append_by_da(ctx, out, list, da);
549}
550
551
553
555
556int fr_pair_delete(fr_pair_list_t *list, fr_pair_t *vp) CC_HINT(nonnull);
557
558/* functions for FR_TYPE_STRUCTURAL */
560
562
564
566
568
569/** Initialises a special dcursor with callbacks that will maintain the attr sublists correctly
570 *
571 * @note This is the only way to use a dcursor in non-const mode with fr_pair_list_t.
572 *
573 * @param[out] _cursor to initialise.
574 * @param[in] _list to iterate over.
575 * @param[in] _iter Iterator to use when filtering pairs.
576 * @param[in] _uctx To pass to iterator.
577 * @return
578 * - NULL if src does not point to any items.
579 * - The first pair in the list.
580 */
581#define fr_pair_dcursor_iter_init(_cursor, _list, _iter, _uctx) \
582 _fr_pair_dcursor_iter_init(_cursor, \
583 _list, \
584 _iter, \
585 _uctx, \
586 IS_CONST(fr_pair_list_t *, _list))
588 fr_dcursor_iter_t iter, void const *uctx,
589 bool is_const) CC_HINT(nonnull);
590
591/** Initialises a special dcursor with callbacks that will maintain the attr sublists correctly
592 *
593 * @note This is the only way to use a dcursor in non-const mode with fr_pair_list_t.
594 *
595 * @param[out] _cursor to initialise.
596 * @param[in] _list to iterate over.
597 * @return
598 * - NULL if src does not point to any items.
599 * - The first pair in the list.
600 */
601#define fr_pair_dcursor_init(_cursor, _list) \
602 _fr_pair_dcursor_init(_cursor, \
603 _list, \
604 IS_CONST(fr_pair_list_t *, _list))
606 bool is_const) CC_HINT(nonnull);
607
608/** Initializes a child dcursor from a parent cursor, with an iteration function.
609 *
610 * @note This is the only way to use a dcursor in non-const mode with fr_pair_list_t.
611 *
612 * @param[out] cursor to initialise.
613 * @param[in] list to iterate over.
614 * @param[in] parent parent cursor to take the iterator from
615 * @return
616 * - NULL if src does not point to any items.
617 * - The first pair in the list.
618 */
620{
621 fr_pair_t *vp = fr_pair_dcursor_init(cursor, list);
622
624 return vp;
625}
626
627/** Initialise a cursor that will return only attributes matching the specified #fr_dict_attr_t
628 *
629 * @param[in] _cursor to initialise.
630 * @param[in] _list to iterate over.
631 * @param[in] _da to search for.
632 * @return
633 * - The first matching pair.
634 * - NULL if no pairs match.
635 */
636#define fr_pair_dcursor_by_da_init(_cursor, _list, _da) \
637 _fr_pair_dcursor_by_da_init(_cursor, \
638 _list, \
639 _da, \
640 IS_CONST(fr_pair_list_t *, _list))
642 fr_pair_list_t const *list, fr_dict_attr_t const *da,
643 bool is_const) CC_HINT(nonnull);
644
645/** Initialise a cursor that will return only attributes descended from the specified #fr_dict_attr_t
646 *
647 * @param[in] _cursor to initialise.
648 * @param[in] _list to iterate over.
649 * @param[in] _da who's decentness to search for.
650 * @return
651 * - The first matching pair.
652 * - NULL if no pairs match.
653 */
654#define fr_pair_dcursor_by_ancestor_init(_cursor, _list, _da) \
655 _fr_pair_dcursor_by_ancestor_init(_cursor, \
656 _list, \
657 _da, \
658 IS_CONST(fr_pair_list_t *, _list))
660 fr_pair_list_t const *list, fr_dict_attr_t const *da,
661 bool is_const) CC_HINT(nonnull);
662
664
666
667/** Compare two attributes using and operator.
668 *
669 * @return
670 * - 1 if equal.
671 * - 0 if not equal.
672 * - -1 on failure.
673 */
674#define fr_pair_cmp_op(_op, _a, _b) fr_value_box_cmp_op(_op, &_a->data, &_b->data)
675
676fr_cmp_ret_t fr_pair_cmp_by_da(void const *a, void const *b);
677
678/*
679 * This lets us pass in a #fr_pair_t as a local structure. At some point, we may add special flags to
680 * indicate that this is pair an "on stack" variable.
681 */
682#define FR_PAIR_T_FROM_DA(_da) &(fr_pair_t) { .da = _da }
683
684#ifdef WITH_VERIFY_PTR
685fr_cmp_ret_t fr_pair_cmp_by_da_mutable(void const *a, void const *b);
686#else
687#define fr_pair_cmp_by_da_mutable fr_pair_cmp_by_da
688#endif
689
690fr_cmp_ret_t fr_pair_cmp_by_parent_num(void const *a, void const *b);
691
692int fr_pair_cmp(fr_pair_t const *a, fr_pair_t const *b);
693
695
696/* Filtering */
697void fr_pair_validate_debug(fr_pair_t const *failed[2]) CC_HINT(nonnull);
698
699bool fr_pair_validate(fr_pair_t const *failed[2], fr_pair_list_t *filter,
700 fr_pair_list_t *list) CC_HINT(nonnull(2,3));
701
702bool fr_pair_validate_relaxed(fr_pair_t const *failed[2], fr_pair_list_t *filter,
703 fr_pair_list_t *list) CC_HINT(nonnull(2,3));
704
705bool fr_pair_immutable(fr_pair_t const *vp) CC_HINT(nonnull);
706
707static inline CC_HINT(nonnull, always_inline)
709{
710 vp->vp_immutable = true;
711}
712
713static inline CC_HINT(nonnull, always_inline)
715{
716 vp->vp_immutable = false;
717}
718
719
720/* Lists */
721int fr_pair_list_copy(TALLOC_CTX *ctx, fr_pair_list_t *to, fr_pair_list_t const *from);
722
723void fr_pair_list_steal(TALLOC_CTX *ctx, fr_pair_list_t *list);
724
726
727int fr_pair_list_copy_by_da(TALLOC_CTX *ctx, fr_pair_list_t *to,
728 fr_pair_list_t const *from, fr_dict_attr_t const *da)
729 CC_HINT(nonnull(2,3,4));
730
731int fr_pair_list_copy_by_ancestor(TALLOC_CTX *ctx, fr_pair_list_t *to,
732 fr_pair_list_t const *from,
733 fr_dict_attr_t const *parent_da) CC_HINT(nonnull);
734
735#ifndef _PAIR_INLINE
736/** @hidecallergraph */
737void fr_pair_list_free(fr_pair_list_t *list) CC_HINT(nonnull);
738
740
741
742/** @hidecallergraph */
743bool fr_pair_list_empty(fr_pair_list_t const *list) CC_HINT(nonnull);
744
745size_t fr_pair_list_num_elements(fr_pair_list_t const *list) CC_HINT(nonnull);
746
747int fr_pair_list_sort(fr_pair_list_t *list, fr_cmp_t cmp) CC_HINT(nonnull);
748
750
752
753/** @hidecallergraph */
755
756/** @hidecallergraph */
757fr_pair_t *fr_pair_list_next(fr_pair_list_t const *list, fr_pair_t const *item) CC_HINT(nonnull(1));
758
759fr_pair_t *fr_pair_list_prev(fr_pair_list_t const *list, fr_pair_t const *item) CC_HINT(nonnull(1));
760
762#endif
763
764/** @name Pair to pair copying
765 *
766 * @{
767 */
769
770int fr_pair_value_copy(fr_pair_t *dst, fr_pair_t *src) CC_HINT(nonnull);
771/** @} */
772
773/** @name Assign and manipulate binary-unsafe C strings
774 *
775 * @{
776 */
778 char const *value, size_t len, fr_sbuff_unescape_rules_t const *erules,
779 bool tainted) CC_HINT(nonnull(1,2));
780
781int fr_pair_value_strdup(fr_pair_t *vp, char const *src, bool tainted) CC_HINT(nonnull);
782
783int fr_pair_value_strdup_shallow(fr_pair_t *vp, char const *src, bool tainted) CC_HINT(nonnull);
784
786
788 char const *fmt, ...) CC_HINT(nonnull) CC_HINT(format (printf, 2, 3));
789/** @} */
790
791/** @name Assign and manipulate binary-safe strings
792 *
793 * @{
794 */
795int fr_pair_value_bstr_alloc(fr_pair_t *vp, char **out, size_t size, bool tainted) CC_HINT(nonnull(1));
796
797int fr_pair_value_bstr_realloc(fr_pair_t *vp, char **out, size_t size) CC_HINT(nonnull(1));
798
799int fr_pair_value_bstrndup(fr_pair_t *vp, char const *src, size_t len, bool tainted) CC_HINT(nonnull(1));
800
801int fr_pair_value_bstrdup_buffer(fr_pair_t *vp, char const *src, bool tainted) CC_HINT(nonnull);
802
803int fr_pair_value_bstrndup_shallow(fr_pair_t *vp, char const *src, size_t len, bool tainted) CC_HINT(nonnull(1));
804
805int fr_pair_value_bstrdup_buffer_shallow(fr_pair_t *vp, char const *src, bool tainted) CC_HINT(nonnull);
806
807 /** @} */
808
809/** @name Assign and manipulate octets strings
810 *
811 * @{
812 */
813int fr_pair_value_mem_alloc(fr_pair_t *vp, uint8_t **out, size_t size, bool tainted) CC_HINT(nonnull(1));
814
815int fr_pair_value_mem_realloc(fr_pair_t *vp, uint8_t **out, size_t size) CC_HINT(nonnull(1));
816
817int fr_pair_value_memdup(fr_pair_t *vp, uint8_t const *src, size_t len, bool tainted) CC_HINT(nonnull(1));
818
819int fr_pair_value_memdup_buffer(fr_pair_t *vp, uint8_t const *src, bool tainted) CC_HINT(nonnull);
820
821int fr_pair_value_memdup_shallow(fr_pair_t *vp, uint8_t const *src, size_t len, bool tainted) CC_HINT(nonnull(1));
822
823int fr_pair_value_memdup_buffer_shallow(fr_pair_t *vp, uint8_t const *src, bool tainted) CC_HINT(nonnull);
824
825 /** @} */
826
827/** @name Enum functions
828 *
829 * @{
830 */
831char const *fr_pair_value_enum(fr_pair_t const *vp, char buff[static 20]) CC_HINT(nonnull);
832
834/** @} */
835
836/** @name Printing functions
837 *
838 * @{
839 */
841 fr_pair_t const *vp, fr_token_t quote) CC_HINT(nonnull);
842
843static inline fr_slen_t CC_HINT(nonnull(2,3))
844 fr_pair_aprint_value_quoted(TALLOC_CTX *ctx, char **out,
845 fr_pair_t const *vp, fr_token_t quote)
847
849
851 fr_pair_t const *vp) CC_HINT(nonnull(1,3));
852
854 fr_pair_t const *vp) CC_HINT(nonnull(1,3));
855
857
858static inline fr_slen_t CC_HINT(nonnull(2,4))
859 fr_pair_aprint(TALLOC_CTX *ctx, char **out, fr_dict_attr_t const *parent, fr_pair_t const *vp)
861
862static inline fr_slen_t CC_HINT(nonnull(2,4))
863 fr_pair_aprint_secure(TALLOC_CTX *ctx, char **out, fr_dict_attr_t const *parent, fr_pair_t const *vp)
865
866#define fr_pair_list_log(_log, _lvl, _list) _fr_pair_list_log(_log, _lvl, NULL, _list, __FILE__, __LINE__)
867void _fr_pair_list_log(fr_log_t const *log, int lvl, fr_pair_t const *parent,
868 fr_pair_list_t const *list, char const *file, int line) CC_HINT(nonnull(1,4));
869
870void fr_pair_list_debug(FILE *fp, fr_pair_list_t const *list) CC_HINT(nonnull);
871void _fr_pair_list_debug(FILE *fp, int lvl, fr_pair_t const *parent, fr_pair_list_t const *list)
872 CC_HINT(nonnull(1, 4));
873void fr_pair_debug(FILE *fp, fr_pair_t const *pair) CC_HINT(nonnull);
874
875/** @} */
876
878
879void fr_pair_list_afrom_box(TALLOC_CTX *ctx, fr_pair_list_t *out,
880 fr_dict_t const *dict, fr_value_box_t *box) CC_HINT(nonnull);
881
882/* Tokenization */
883typedef struct {
884 TALLOC_CTX *ctx; //!< to allocate VPs in
885 fr_dict_attr_t const *parent; //!< current attribute to allocate VPs in
886 fr_pair_list_t *list; //!< of VPs to add
888
889ssize_t fr_pair_ctx_afrom_str(fr_pair_ctx_t *pair_ctx, char const *in, size_t inlen) CC_HINT(nonnull);
890void fr_pair_ctx_reset(fr_pair_ctx_t *pair_ctx, fr_dict_t const *dict) CC_HINT(nonnull);
891
892void fr_fprintf_pair(FILE *fp, char const *msg, fr_pair_t const *vp);
893void fr_fprintf_pair_list(FILE *fp, fr_pair_list_t const *list);
894
895#undef _CONST
896#ifdef __cplusplus
897}
898#endif
log_entry msg
Definition acutest.h:794
static int const char * fmt
Definition acutest.h:573
#define DIAG_ON(_x)
Definition build.h:535
#define RCSIDH(h, id)
Definition build.h:561
#define DIAG_OFF(_x)
Definition build.h:534
void *(* fr_dcursor_iter_t)(fr_dcursor_t *cursor, void *to_eval, void *uctx)
Callback for implementing custom iterators.
Definition dcursor.h:49
static void fr_dcursor_copy_iter(fr_dcursor_t *out, fr_dcursor_t const *in)
Copy a read-only iterator from a parent to a child cursor.
Definition dcursor.h:205
#define fr_cond_assert(_x)
Calls panic_action ifndef NDEBUG, else logs error and evaluates to value of _x.
Definition debug.h:177
static fr_slen_t in
Definition dict.h:906
Test enumeration values.
Definition dict_test.h:92
Definition dwarf.c:424
Definition dwarf.c:563
static void * item(fr_lst_t const *lst, fr_lst_index_t idx)
Definition lst.c:121
long int ssize_t
unsigned char uint8_t
ssize_t fr_slen_t
fr_cmp_ret_t(* fr_cmp_t)(void const *a, void const *b)
Definition misc.h:57
fr_cmp_ret_t
Result of an ordering comparison.
Definition misc.h:50
#define SBUFF_OUT_TALLOC_FUNC_NO_LEN_DEF(_func,...)
Set of parsing rules for *unescape_until functions.
static char buff[sizeof("18446744073709551615")+3]
Definition size_tests.c:37
static int compare(const void *a, const void *b)
Definition stest.c:104
Definition log.h:93
bool _CONST is_child
is a child of a VP
Definition pair.h:55
FR_TLIST_HEAD(fr_pair_order_list) order
Maintains the relative order of pairs in a list.
Stores an attribute, a value and various bits of other data.
Definition pair.h:68
FR_TLIST_ENTRY(fr_pair_order_list) _CONST order_entry
Entry to maintain relative order within a list.
fr_dict_attr_t const *_CONST da
Dictionary attribute defines the attribute number, vendor and type of the pair.
Definition pair.h:69
#define fr_table_str_by_value(_table, _number, _def)
Convert an integer to a string.
Definition table.h:804
#define FR_TLIST_TYPES(_name)
Define type specific wrapper structs for tlists.
Definition tlist.h:786
enum fr_token fr_token_t
static fr_slen_t head
Definition xlat.h:410
bool fr_pair_matches_da(void const *item, void const *uctx)
Evaluation function for matching if vp matches a given da.
Definition pair.c:3409
char const * fr_pair_value_enum(fr_pair_t const *vp, char buff[static 20])
fr_pair_t * fr_pair_list_parent(fr_pair_list_t const *list)
Return a pointer to the parent pair which contains this list.
Definition pair.c:929
int fr_pair_value_bstr_alloc(fr_pair_t *vp, char **out, size_t size, bool tainted))
Pre-allocate a memory buffer for a "string" type value pair.
Definition pair.c:2691
int fr_pair_value_memdup_buffer(fr_pair_t *vp, uint8_t const *src, bool tainted)
Copy data from a talloced buffer into an "octets" data type.
Definition pair.c:2924
TALLOC_CTX * ctx
to allocate VPs in
Definition pair.h:884
int fr_pair_value_mem_alloc(fr_pair_t *vp, uint8_t **out, size_t size, bool tainted))
Pre-allocate a memory buffer for a "octets" type value pair.
Definition pair.c:2843
fr_pair_t * fr_pair_afrom_da_depth_nested(TALLOC_CTX *ctx, fr_pair_list_t *list, fr_dict_attr_t const *da, unsigned int start)
Create a pair (and all intermediate parents), and append it to the list.
Definition pair.c:423
struct pair_list_s fr_pair_list_t
fr_pair_t * fr_pair_find_by_da(fr_pair_list_t const *list, fr_pair_t const *prev, fr_dict_attr_t const *da))
Find the first pair with a matching da.
Definition pair.c:708
unsigned int fr_pair_count_by_da(fr_pair_list_t const *list, fr_dict_attr_t const *da)
Return the number of instances of a given da in the specified list.
Definition pair.c:685
int fr_pair_value_from_str(fr_pair_t *vp, char const *value, size_t len, fr_sbuff_unescape_rules_t const *erules, bool tainted))
static fr_pair_t * fr_pair_dcursor_child_iter_init(fr_dcursor_t *cursor, fr_pair_list_t const *list, fr_dcursor_t const *parent)
Initializes a child dcursor from a parent cursor, with an iteration function.
Definition pair.h:619
int fr_pair_value_enum_box(fr_value_box_t const **out, fr_pair_t *vp)
Get value box of a VP, optionally prefer enum value.
Definition pair.c:3024
int fr_pair_value_aprintf(fr_pair_t *vp, char const *fmt,...)
Print data into an "string" data type.
Definition pair.c:2659
int fr_pair_delete_by_da_nested(fr_pair_list_t *list, fr_dict_attr_t const *da)
Delete matching pairs from the specified list, and prune any empty branches.
Definition pair.c:1666
int fr_pair_insert_after(fr_pair_list_t *list, fr_pair_t *pos, fr_pair_t *to_add))
Add a VP after another VP.
Definition pair.c:1324
void _fr_pair_list_log(fr_log_t const *log, int lvl, fr_pair_t const *parent, fr_pair_list_t const *list, char const *file, int line))
Print a list of attributes and enumv.
Definition pair_print.c:381
void fr_fprintf_pair_list(FILE *fp, fr_pair_list_t const *list)
Definition pair_print.c:481
int fr_pair_value_memdup(fr_pair_t *vp, uint8_t const *src, size_t len, bool tainted))
Copy data into an "octets" data type.
Definition pair.c:2894
bool fr_pair_validate_relaxed(fr_pair_t const *failed[2], fr_pair_list_t *filter, fr_pair_list_t *list))
Uses fr_pair_cmp to verify all fr_pair_ts in list match the filter defined by check.
Definition pair.c:2182
static bool vp_da_data_type_check(fr_pair_t *vp)
Check a pair's data type matches the DA data type.
Definition pair.h:262
ssize_t fr_pair_print(fr_sbuff_t *out, fr_dict_attr_t const *parent, fr_pair_t const *vp))
Print one attribute and value to a string.
Definition pair_print.c:232
int fr_pair_list_copy(TALLOC_CTX *ctx, fr_pair_list_t *to, fr_pair_list_t const *from)
Duplicate a list of pairs.
Definition pair.c:2300
int fr_pair_value_mem_realloc(fr_pair_t *vp, uint8_t **out, size_t size))
Change the length of a buffer for a "octets" type value pair.
Definition pair.c:2868
int fr_pair_insert_before(fr_pair_list_t *list, fr_pair_t *pos, fr_pair_t *to_add))
Add a VP before another VP.
Definition pair.c:1357
void fr_pair_debug(FILE *fp, fr_pair_t const *pair)
Dumps a pair to the default logging destination - Useful for calling from debuggers.
Definition pair_print.c:449
static fr_slen_t fr_pair_aprint(TALLOC_CTX *ctx, char **out, fr_dict_attr_t const *parent, fr_pair_t const *vp) 1(fr_pair_print
bool fr_pair_list_empty(fr_pair_list_t const *list)
Is a valuepair list empty.
fr_pair_t * fr_pair_root_afrom_da(TALLOC_CTX *ctx, fr_dict_attr_t const *da)
A special allocation function which disables child autofree.
Definition pair.c:249
int fr_pair_append_by_da(TALLOC_CTX *ctx, fr_pair_t **out, fr_pair_list_t *list, fr_dict_attr_t const *da))
Alloc a new fr_pair_t (and append)
Definition pair.c:1417
fr_pair_t * fr_pair_find_by_da_nested(fr_pair_list_t const *list, fr_dict_attr_t const *da)
Find a pair with a matching fr_dict_attr_t, by walking the nested fr_dict_attr_t tree.
Definition pair.c:783
fr_cmp_ret_t fr_pair_list_cmp(fr_pair_list_t const *a, fr_pair_list_t const *b)
Determine equality of two lists.
Definition pair.c:2028
void fr_pair_validate_debug(fr_pair_t const *failed[2])
Write an error to the library errorbuff detailing the mismatch.
Definition pair.c:2070
int fr_pair_value_strdup(fr_pair_t *vp, char const *src, bool tainted)
Copy data into an "string" data type.
Definition pair.c:2595
int fr_pair_steal_append(TALLOC_CTX *nctx, fr_pair_list_t *list, fr_pair_t *vp)
Change a vp's talloc ctx and insert it into a new list.
Definition pair.c:563
#define fr_pair_cmp_by_da_mutable
Definition pair.h:687
int fr_pair_value_bstrdup_buffer_shallow(fr_pair_t *vp, char const *src, bool tainted)
Assign a string to a "string" type value pair.
Definition pair.c:2815
void fr_pair_init_null(fr_pair_t *vp)
Initialise fields in an fr_pair_t without assigning a da.
Definition pair.c:150
int fr_pair_delete_by_da(fr_pair_list_t *head, fr_dict_attr_t const *da)
Delete matching pairs from the specified list.
Definition pair.c:1642
fr_pair_list_t * fr_pair_parent_list(fr_pair_t const *vp)
Return a pointer to the parent pair list.
Definition pair.c:907
fr_pair_t * fr_pair_find_by_child_num_idx(fr_pair_list_t const *list, fr_dict_attr_t const *parent, unsigned int attr, unsigned int idx)
Find the pair with the matching child attribute at a given index.
Definition pair.c:873
int fr_pair_cmp(fr_pair_t const *a, fr_pair_t const *b)
Compare two pairs, using the operator from "a".
Definition pair.c:1950
fr_pair_list_t * fr_pair_list_alloc(TALLOC_CTX *ctx)
Allocate a new pair list on the heap.
Definition pair.c:120
fr_pair_t * fr_pair_parent(fr_pair_t const *vp)
Return a pointer to the parent pair.
Definition pair.c:915
fr_cmp_ret_t fr_pair_cmp_by_da(void const *a, void const *b)
Order attributes by their da.
Definition pair.c:1797
fr_pair_t * fr_pair_list_next(fr_pair_list_t const *list, fr_pair_t const *item))
Get the next item in a valuepair list after a specific entry.
Definition pair_inline.c:69
fr_pair_t * _fr_pair_dcursor_by_ancestor_init(fr_dcursor_t *cursor, fr_pair_list_t const *list, fr_dict_attr_t const *da, bool is_const)
Initialise a cursor that will return only attributes descended from the specified fr_dict_attr_t.
Definition pair.c:1120
void fr_pair_replace(fr_pair_list_t *list, fr_pair_t *to_replace, fr_pair_t *vp)
Replace a given VP.
Definition pair.c:1390
fr_pair_t * fr_pair_find_by_da_idx(fr_pair_list_t const *list, fr_dict_attr_t const *da, unsigned int idx)
Find a pair with a matching da at a given index.
Definition pair.c:755
fr_pair_t * fr_pair_afrom_da(TALLOC_CTX *ctx, fr_dict_attr_t const *da)
Dynamically allocate a new attribute and assign a fr_dict_attr_t.
Definition pair.c:291
int fr_pair_prepend(fr_pair_list_t *list, fr_pair_t *vp)
Add a VP to the start of the list.
Definition pair.c:1267
int fr_pair_value_memdup_shallow(fr_pair_t *vp, uint8_t const *src, size_t len, bool tainted))
Assign a buffer to a "octets" type value pair.
Definition pair.c:2949
int fr_pair_value_bstrdup_buffer(fr_pair_t *vp, char const *src, bool tainted)
Copy a nul terminated talloced buffer a "string" type value pair.
Definition pair.c:2770
fr_pair_t * fr_pair_list_tail(fr_pair_list_t const *list)
Get the tail of a valuepair list.
Definition pair_inline.c:55
int fr_pair_list_copy_by_ancestor(TALLOC_CTX *ctx, fr_pair_list_t *to, fr_pair_list_t const *from, fr_dict_attr_t const *parent_da)
Duplicate pairs in a list where the da is a descendant of parent_da.
Definition pair.c:2432
static bool fr_pair_nonnull_assert(fr_pair_t const *vp)
If WITH_VERIFY_PTR is defined, we perform runtime checks to ensure the fr_pair_t are sane.
Definition pair.h:189
fr_pair_t * fr_pair_remove(fr_pair_list_t *list, fr_pair_t *vp)
Remove fr_pair_t from a list without freeing.
Definition pair_inline.c:93
fr_pair_list_t * fr_pair_children(fr_pair_t *head)
Get the child list of a group.
Definition pair.c:897
int fr_pair_value_bstrndup(fr_pair_t *vp, char const *src, size_t len, bool tainted))
Copy data into a "string" type value pair.
Definition pair.c:2744
int fr_pair_list_copy_by_da(TALLOC_CTX *ctx, fr_pair_list_t *to, fr_pair_list_t const *from, fr_dict_attr_t const *da))
Duplicate pairs in a list matching the specified da.
Definition pair.c:2388
static int fr_pair_find_or_append_by_da(TALLOC_CTX *ctx, fr_pair_t **out, fr_pair_list_t *list, fr_dict_attr_t const *da)
Definition pair.h:537
void fr_pair_list_free(fr_pair_list_t *list)
Free memory used by a valuepair list.
static void fr_pair_clear_immutable(fr_pair_t *vp)
Definition pair.h:714
void fr_pair_list_append(fr_pair_list_t *dst, fr_pair_list_t *src)
Appends a list of fr_pair_t from a temporary list to a destination list.
void fr_pair_list_debug(FILE *fp, fr_pair_list_t const *list)
Dumps a list to the default logging destination - Useful for calling from debuggers.
Definition pair_print.c:440
fr_pair_t * fr_pair_find_last_by_da(fr_pair_list_t const *list, fr_dict_attr_t const *da)
Find the last pair with a matching da.
Definition pair.c:731
void fr_pair_ctx_reset(fr_pair_ctx_t *pair_ctx, fr_dict_t const *dict)
Reset a pair_ctx to the dictionary root.
int fr_pair_append(fr_pair_list_t *list, fr_pair_t *vp)
Add a VP to the end of the list.
Definition pair.c:1298
#define _CONST
Definition pair.h:43
void fr_fprintf_pair(FILE *fp, char const *msg, fr_pair_t const *vp)
Definition pair_print.c:489
void _fr_pair_list_debug(FILE *fp, int lvl, fr_pair_t const *parent, fr_pair_list_t const *list))
Print a list of attributes and enumv.
Definition pair_print.c:427
fr_pair_t * fr_pair_alloc_null(TALLOC_CTX *ctx)
Dynamically allocate a new attribute with no fr_dict_attr_t assigned.
Definition pair.c:170
int fr_pair_value_bstrndup_shallow(fr_pair_t *vp, char const *src, size_t len, bool tainted))
Assign a string to a "string" type value pair.
Definition pair.c:2795
fr_cmp_ret_t fr_pair_cmp_by_parent_num(void const *a, void const *b)
Order attributes by their parent(s), attribute number, and tag.
Definition pair.c:1902
void fr_pair_list_prepend(fr_pair_list_t *dst, fr_pair_list_t *src)
Move a list of fr_pair_t from a temporary list to the head of a destination list.
bool fr_pair_immutable(fr_pair_t const *vp)
Definition pair.c:2257
void fr_pair_list_tainted(fr_pair_list_t *vps)
Mark up a list of VPs as tainted.
Definition pair.c:3382
void fr_pair_value_clear(fr_pair_t *vp)
Free/zero out value (or children) of a given VP.
Definition pair.c:2482
int fr_pair_list_sort(fr_pair_list_t *list, fr_cmp_t cmp)
Sort a doubly linked list of fr_pair_ts using merge sort.
static void fr_pair_set_immutable(fr_pair_t *vp)
Definition pair.h:708
fr_pair_list_t * list
of VPs to add
Definition pair.h:886
int fr_pair_delete(fr_pair_list_t *list, fr_pair_t *vp)
Remove fr_pair_t from a list and free.
Definition pair.c:1779
static fr_slen_t vp
Definition pair.h:846
int fr_pair_delete_by_child_num(fr_pair_list_t *list, fr_dict_attr_t const *parent, unsigned int attr)
Delete matching pairs from the specified list.
Definition pair.c:1761
int fr_pair_value_copy(fr_pair_t *dst, fr_pair_t *src)
Copy the value from one pair to another.
Definition pair.c:2512
fr_pair_t * _fr_pair_dcursor_init(fr_dcursor_t *cursor, fr_pair_list_t const *list, bool is_const)
Initialises a special dcursor with callbacks that will maintain the attr sublists correctly.
Definition pair.c:1083
static bool fr_pair_list_nonnull_assert(fr_pair_list_t const *pair_list)
Definition pair.h:194
static fr_slen_t quote ssize_t fr_pair_print_name(fr_sbuff_t *out, fr_dict_attr_t const *parent, fr_pair_t const **vp_p)
Print an attribute name.
Definition pair_print.c:136
ssize_t fr_pair_print_value_quoted(fr_sbuff_t *out, fr_pair_t const *vp, fr_token_t quote)
Print the value of an attribute to a string.
Definition pair_print.c:59
fr_pair_t * fr_pair_copy(TALLOC_CTX *ctx, fr_pair_t const *vp))
Copy a single valuepair.
Definition pair.c:504
int fr_pair_steal(TALLOC_CTX *ctx, fr_pair_t *vp)
Steal one VP.
Definition pair.c:538
bool fr_pair_validate(fr_pair_t const *failed[2], fr_pair_list_t *filter, fr_pair_list_t *list))
Uses fr_pair_cmp to verify all fr_pair_ts in list match the filter defined by check.
Definition pair.c:2105
static fr_slen_t fr_pair_aprint_value_quoted(TALLOC_CTX *ctx, char **out, fr_pair_t const *vp, fr_token_t quote) 1(fr_pair_print_value_quoted
fr_value_box_t * fr_pair_dcursor_nested_init(fr_dcursor_t *cursor, fr_dcursor_t *parent)
Initialises a special dcursor over another cursor which returns fr_pair_t, but we return fr_value_box...
Definition pair.c:1251
int fr_pair_append_by_da_parent(TALLOC_CTX *ctx, fr_pair_t **out, fr_pair_list_t *list, fr_dict_attr_t const *da))
Alloc a new fr_pair_t, adding the parent attributes if required.
Definition pair.c:1474
fr_pair_t * _fr_pair_dcursor_by_da_init(fr_dcursor_t *cursor, fr_pair_list_t const *list, fr_dict_attr_t const *da, bool is_const)
Initialise a cursor that will return only attributes matching the specified fr_dict_attr_t.
Definition pair.c:1101
ssize_t fr_pair_ctx_afrom_str(fr_pair_ctx_t *pair_ctx, char const *in, size_t inlen)
Parse a pair context from a string.
int fr_pair_value_strtrim(fr_pair_t *vp)
Trim the length of the string buffer to match the length of the C string.
Definition pair.c:2638
fr_pair_t * fr_pair_afrom_da_nested(TALLOC_CTX *ctx, fr_pair_list_t *list, fr_dict_attr_t const *da)
Create a pair (and all intermediate parents), and append it to the list.
Definition pair.c:481
#define fr_pair_dcursor_init(_cursor, _list)
Initialises a special dcursor with callbacks that will maintain the attr sublists correctly.
Definition pair.h:601
fr_dict_attr_t const * parent
current attribute to allocate VPs in
Definition pair.h:885
int fr_pair_update_by_da_parent(fr_pair_t *parent, fr_pair_t **out, fr_dict_attr_t const *da))
Return the first fr_pair_t matching the fr_dict_attr_t or alloc a new fr_pair_t and its subtree (and ...
Definition pair.c:1548
void fr_pair_list_init(fr_pair_list_t *head)
Initialise a pair list header.
Definition pair.c:47
int fr_pair_reinit_from_da(fr_pair_list_t *list, fr_pair_t *vp, fr_dict_attr_t const *da))
Re-initialise an attribute with a different da.
Definition pair.c:328
int fr_pair_value_bstr_realloc(fr_pair_t *vp, char **out, size_t size))
Change the length of a buffer for a "string" type value pair.
Definition pair.c:2716
fr_pair_t * fr_pair_list_prev(fr_pair_list_t const *list, fr_pair_t const *item))
Get the previous item in a valuepair list before a specific entry.
Definition pair_inline.c:82
fr_pair_t * fr_pair_list_head(fr_pair_list_t const *list)
Get the head of a valuepair list.
Definition pair_inline.c:42
fr_value_box_t * fr_pair_dcursor_value_init(fr_dcursor_t *cursor)
Initialises a special dcursor over a fr_pair_list_t, but which returns fr_value_box_t.
Definition pair.c:1204
void fr_pair_list_afrom_box(TALLOC_CTX *ctx, fr_pair_list_t *out, fr_dict_t const *dict, fr_value_box_t *box)
Parse a list of VPs from a value box.
Definition pair.c:3494
fr_pair_t * fr_pair_list_iter_leaf(fr_pair_list_t *list, fr_pair_t *vp)
Iterates over the leaves of a list.
Definition pair.c:998
void fr_pair_list_steal(TALLOC_CTX *ctx, fr_pair_list_t *list)
Steal a list of pairs to a new context.
Definition pair.c:2281
size_t fr_pair_list_num_elements(fr_pair_list_t const *list)
Get the length of a list of fr_pair_t.
int fr_pair_steal_prepend(TALLOC_CTX *nctx, fr_pair_list_t *list, fr_pair_t *vp)
Change a vp's talloc ctx and insert it into a new list.
Definition pair.c:586
int fr_pair_prepend_by_da(TALLOC_CTX *ctx, fr_pair_t **out, fr_pair_list_t *list, fr_dict_attr_t const *da))
Alloc a new fr_pair_t (and prepend)
Definition pair.c:1444
int fr_pair_raw_afrom_pair(fr_pair_t *vp, uint8_t const *data, size_t data_len)
Mark malformed attribute as raw.
Definition pair.c:610
ssize_t fr_pair_print_secure(fr_sbuff_t *out, fr_dict_attr_t const *parent, fr_pair_t const *vp))
Print one attribute and value to a string with escape rules.
Definition pair_print.c:267
int fr_pair_value_memdup_buffer_shallow(fr_pair_t *vp, uint8_t const *src, bool tainted)
Assign a talloced buffer to a "octets" type value pair.
Definition pair.c:2969
int fr_pair_value_strdup_shallow(fr_pair_t *vp, char const *src, bool tainted)
Assign a buffer containing a nul terminated string to a vp, but don't copy it.
Definition pair.c:2619
ssize_t fr_pair_list_print(fr_sbuff_t *out, fr_dict_attr_t const *parent, fr_pair_list_t const *list)
Print a pair list.
Definition pair_print.c:316
static fr_slen_t parent
Definition pair.h:860
fr_pair_t * _fr_pair_dcursor_iter_init(fr_dcursor_t *cursor, fr_pair_list_t const *list, fr_dcursor_iter_t iter, void const *uctx, bool is_const)
Initialises a special dcursor with callbacks that will maintain the attr sublists correctly.
Definition pair.c:1063
int fr_pair_list_copy_to_box(fr_value_box_t *dst, fr_pair_list_t *from)
Copy the contents of a pair list to a set of value-boxes.
Definition pair.c:2335
fr_pair_t * fr_pair_afrom_child_num(TALLOC_CTX *ctx, fr_dict_attr_t const *parent, unsigned int attr)
Create a new valuepair.
Definition pair.c:385
static fr_slen_t static vp fr_slen_t fr_pair_aprint_secure(TALLOC_CTX *ctx, char **out, fr_dict_attr_t const *parent, fr_pair_t const *vp) 1(fr_pair_print_secure
#define fr_strerror_printf(_fmt,...)
Log to thread local error buffer.
Definition strerror.h:64
fr_table_num_ordered_t const fr_type_table[]
Map data types to names representing those types.
Definition types.c:31
static fr_slen_t data
Definition value.h:1367
static size_t char fr_sbuff_t size_t inlen
Definition value.h:1062
int nonnull(2, 5))
static size_t char ** out
Definition value.h:1062