The FreeRADIUS server $Id: 15bac2a4c627c01d1aa2047687b3418955ac7f00 $
Loading...
Searching...
No Matches
edit.c
Go to the documentation of this file.
1/*
2 * This program is free software; you can redistribute it and/or modify
3 * it under the terms of the GNU General Public License as published by
4 * the Free Software Foundation; either version 2 of the License, or
5 * (at your option) any later version.
6 *
7 * This program is distributed in the hope that it will be useful,
8 * but WITHOUT ANY WARRANTY; without even the implied warranty of
9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
10 * GNU General Public License for more details.
11 *
12 * You should have received a copy of the GNU General Public License
13 * along with this program; if not, write to the Free Software
14 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
15 */
16
17/**
18 * $Id: 7f436736fbddec239655abe27d93b5865f40b13b $
19 *
20 * @brief fr_pair_t editing
21 *
22 * @ingroup AVP
23 *
24 * @copyright 2021 Network RADIUS SAS (legal@networkradius.com)
25 */
26RCSID("$Id: 7f436736fbddec239655abe27d93b5865f40b13b $")
27
28#include <freeradius-devel/server/base.h>
29#include <freeradius-devel/server/tmpl_dcursor.h>
30#include <freeradius-devel/util/debug.h>
31#include <freeradius-devel/util/edit.h>
32#include <freeradius-devel/util/calc.h>
33#include <freeradius-devel/unlang/tmpl.h>
34#include <freeradius-devel/unlang/edit.h>
35#include <freeradius-devel/unlang/transaction.h>
36#include <freeradius-devel/unlang/unlang_priv.h>
37#include "edit_priv.h"
38
39#undef XDEBUG
40#if 1
41#define XDEBUG(...)
42#else
43#define XDEBUG DEBUG2
44#endif
45
46#define RDEBUG_ASSIGN(_name, _op, _box) do { \
47 RDEBUG2(((_box)->type == FR_TYPE_STRING) ? "%s %s \"%pV\"" : "%s %s %pV", _name, fr_tokens[_op], _box); \
48} while (0)
49
50typedef struct {
51 fr_value_box_list_t result; //!< result of expansion
52 tmpl_t const *vpt; //!< expanded tmpl
53 tmpl_t *to_free; //!< tmpl to free.
54 bool create; //!< whether we need to create the VP
55 fr_pair_t *vp; //!< VP referenced by tmpl.
56 fr_pair_t *vp_parent; //!< parent of the current VP
57 fr_pair_list_t pair_list; //!< for structural attributes
59
60typedef struct edit_map_s edit_map_t;
61
63
65
66struct edit_map_s {
67 fr_edit_list_t *el; //!< edit list
68
69 TALLOC_CTX *ctx;
72
73 map_list_t const *map_list;
74 map_t const *map; //!< the map to evaluate
75
77
78 edit_result_t lhs; //!< LHS child entries
79 edit_result_t rhs; //!< RHS child entries
80
81 unlang_edit_expand_t func; //!< for process state
82 unlang_edit_expand_t check_lhs; //!< for special cases
83 unlang_edit_expand_t expanded_lhs; //!< for special cases
84};
85
86/** State of an edit block
87 *
88 */
90 fr_edit_list_t *el; //!< edit list
91 bool *success; //!< whether or not the edit succeeded
92 bool ours;
93
95
96 edit_map_t *current; //!< what we're currently doing.
98};
99
100#define MAP_INFO cf_filename(map->ci), cf_lineno(map->ci)
101
102static fr_pair_t *edit_list_pair_build(fr_pair_t *parent, fr_dcursor_t *cursor, fr_dict_attr_t const *da, void *uctx);
103
104/*
105 * Convert a value-box list to a LHS attribute #tmpl_t
106 */
107static int tmpl_attr_from_result(TALLOC_CTX *ctx, map_t const *map, edit_result_t *out, request_t *request)
108{
109 ssize_t slen;
110 fr_value_box_t *box = fr_value_box_list_head(&out->result);
111
112 if (!box) {
113 RWDEBUG("%s %s ... - Assignment failed - No value on right-hand side", map->lhs->name, fr_tokens[map->op]);
114 return -1;
115 }
116
117 /*
118 * Mash all of the results together.
119 */
120 if (fr_value_box_list_concat_in_place(box, box, &out->result, FR_TYPE_STRING, FR_VALUE_BOX_LIST_FREE, true, SIZE_MAX) < 0) {
121 RWDEBUG("Failed converting result to string");
122 return -1;
123 }
124
125 /*
126 * Parse the LHS as an attribute reference. It can't be
127 * anything else.
128 */
129 slen = tmpl_afrom_attr_str(ctx, NULL, &out->to_free, box->vb_strvalue,
130 &(tmpl_rules_t){
131 .attr = {
132 .dict_def = request->dict,
133 .list_def = request_attr_request,
134 }
135 });
136 if (slen <= 0) {
137 RPEDEBUG("Expansion result \"%s\" is not an attribute reference", box->vb_strvalue);
138 return -1;
139 }
140
141 out->vpt = out->to_free;
142 fr_value_box_list_talloc_free(&out->result);
143
144 return 0;
145}
146
147
148/*
149 * Expand a tmpl.
150 */
151static int tmpl_to_values(TALLOC_CTX *ctx, edit_result_t *out, request_t *request, tmpl_t const *vpt)
152{
153 fr_assert(out->vpt == NULL);
154 fr_assert(out->to_free == NULL);
155
156 switch (vpt->type) {
157 case TMPL_TYPE_DATA:
158 return 0;
159
160 case TMPL_TYPE_ATTR:
161 out->vpt = vpt;
162 return 0;
163
164 case TMPL_TYPE_EXEC:
165 if (unlang_tmpl_push(ctx, &out->result, request, vpt, NULL) < 0) return -1;
166 return 1;
167
168 case TMPL_TYPE_XLAT:
169 if (unlang_xlat_push(ctx, NULL, &out->result, request, tmpl_xlat(vpt), false) < 0) return -1;
170 return 1;
171
172 default:
173 /*
174 * The other tmpl types MUST have already been
175 * converted to the "realized" types.
176 */
178 fr_assert(0);
179 break;
180 }
181
182 return -1;
183}
184
185static void edit_debug_attr_list(request_t *request, fr_pair_list_t const *list, map_t const *map);
186
187static void edit_debug_attr_vp(request_t *request, fr_pair_t *vp, map_t const *map)
188{
189 fr_assert(vp != NULL);
190
191 if (map) {
192 switch (vp->vp_type) {
194 RDEBUG2("%s = {", map->lhs->name);
195 RINDENT();
196 edit_debug_attr_list(request, &vp->vp_group, map_list_head(&map->child));
197 REXDENT();
198 RDEBUG2("}");
199 break;
200
201 default:
202 RDEBUG_ASSIGN(map->lhs->name, vp->op, &vp->data);
203 break;
204 }
205 } else {
206 switch (vp->vp_type) {
208 RDEBUG2("%s = {", vp->da->name);
209 RINDENT();
210 edit_debug_attr_list(request, &vp->vp_group, NULL);
211 REXDENT();
212 RDEBUG2("}");
213 break;
214
215 default:
216 RDEBUG_ASSIGN(vp->da->name, vp->op, &vp->data);
217 break;
218 }
219 }
220}
221
222static void edit_debug_attr_list(request_t *request, fr_pair_list_t const *list, map_t const *map)
223{
224 fr_pair_t *vp;
225 map_t const *child = NULL;
226
227 if (map) child = map_list_head(&map->child);
228
229 for (vp = fr_pair_list_next(list, NULL);
230 vp != NULL;
231 vp = fr_pair_list_next(list, vp)) {
232 edit_debug_attr_vp(request, vp, child);
233 if (map) child = map_list_next(&map->child, child);
234 }
235}
236
237static int edit_create_lhs_vp(request_t *request, TALLOC_CTX *ctx, edit_map_t *current)
238{
239 int err;
240 fr_pair_t *vp;
241 tmpl_dcursor_ctx_t lhs_cc;
242 fr_dcursor_t lhs_cursor;
243
244 fr_assert(current->lhs.create);
245
246 /*
247 * Now that we have the RHS values, go create the LHS vp. We delay creating it until
248 * now, because the RHS might just be nothing. In which case we don't want to create the
249 * LHS, and then discover that we need to delete it.
250 */
252 vp = tmpl_dcursor_build_init(&err, ctx, &lhs_cc, &lhs_cursor, request, current->lhs.vpt, edit_list_pair_build, current);
253 tmpl_dcursor_clear(&lhs_cc);
254 if (!vp) {
255 RWDEBUG("Failed creating attribute %s", current->lhs.vpt->name);
256 return -1;
257 }
258
259 current->lhs.vp = vp;
260
261 return 0;
262}
263
264/* Apply the edits to a structural attribute..
265 *
266 * Figure out what edits to do, and then do them.
267 */
269{
270 fr_pair_t *vp;
271 fr_pair_list_t *children;
272 int rcode;
273 map_t const *map = current->map;
275 fr_dcursor_t cursor;
276
277 XDEBUG("apply_edits_to_list %s", map->lhs->name);
278
279 /*
280 * RHS is a sublist, go apply that.
281 */
282 if (!map->rhs) {
283 children = &current->rhs.pair_list;
284 goto apply_list;
285 }
286
287 /*
288 * For RHS of data, it should be a string which contains the pairs to use.
289 */
290 if (!current->rhs.vpt) {
291 fr_value_box_t *box;
292 fr_dict_attr_t const *da;
293 fr_pair_parse_t root, relative;
294
295 if (tmpl_is_data(map->rhs)) {
296 box = tmpl_value(map->rhs);
297
298 if (box->type != FR_TYPE_STRING) {
299 REDEBUG("Invalid data type for assignment to list");
300 return -1;
301 }
302
303 } else {
304 box = fr_value_box_list_head(&current->rhs.result);
305
306 /*
307 * Can't concatenate empty results.
308 */
309 if (!box) {
310 RWDEBUG("%s %s ... - Assignment failed to having no value on right-hand side", map->lhs->name, fr_tokens[map->op]);
311 return -1;
312 }
313
314 /*
315 * Mash all of the results together.
316 */
317 if (fr_value_box_list_concat_in_place(box, box, &current->rhs.result, FR_TYPE_STRING, FR_VALUE_BOX_LIST_FREE, true, SIZE_MAX) < 0) {
318 RWDEBUG("Failed converting result to string");
319 return -1;
320 }
321 }
322
323 children = &current->rhs.pair_list;
324
325 /*
326 * For exec, etc., parse the pair list from a string, in the context of the
327 * parent VP. Because we're going to be moving them to the parent VP at some
328 * point. The ones which aren't moved will get deleted in this function.
329 */
330 da = tmpl_attr_tail_da(current->lhs.vpt);
331 if (fr_type_is_group(da->type)) da = fr_dict_root(request->dict);
332
333 root = (fr_pair_parse_t) {
334 .ctx = current->ctx,
335 .da = da,
336 .list = children,
337 .allow_compare = true,
338 .tainted = box->tainted,
339 };
340 relative = (fr_pair_parse_t) { };
341
342 if (fr_pair_list_afrom_substr(&root, &relative, &FR_SBUFF_IN(box->vb_strvalue, box->vb_length)) < 0) {
343 RPEDEBUG("Failed parsing string '%pV' as attribute list", box);
344 return -1;
345 }
346
347 goto apply_list;
348 }
349
350 fr_assert(current->rhs.vpt);
351 fr_assert(tmpl_is_attr(current->rhs.vpt));
352
353 /*
354 * Doing no modifications to a list is a NOOP.
355 */
356 vp = tmpl_dcursor_init(NULL, request, &cc, &cursor, request, current->rhs.vpt);
357 if (!vp) {
359 return 0;
360 }
361
362 /*
363 * Remove an attribute from a list. The tmpl_dcursor and tmpl_parser ensures that the RHS
364 * references are done in the context of the LHS attribute.
365 */
366 if (map->op == T_OP_SUB_EQ) {
367 fr_pair_t *next;
368
369 /*
370 * Loop over matching attributes, and delete them.
371 */
372 RDEBUG2("%s %s %s", current->lhs.vpt->name, fr_tokens[T_OP_SUB_EQ], current->rhs.vpt->name);
373
374 for ( ; vp != NULL; vp = next) {
375 fr_pair_list_t *list;
376
377 next = fr_dcursor_next(&cursor);
378
379 list = fr_pair_parent_list(vp);
380 fr_assert(list != NULL);
381
382 /*
383 * @todo - if this attribute is structural, then remove all children which aren't
384 * immutable. For now, this is good enough.
385 */
386 if (fr_pair_immutable(vp)) {
387 RWDEBUG("Not removing immutable %pP", vp);
388 continue;
389 }
390
391 if (vp->vp_edit) {
392 RWDEBUG("Attribute cannot be removed, as it is being used in a 'foreach' loop - %pP", vp);
393 continue;
394 }
395
396 if (fr_edit_list_pair_delete(current->el, list, vp) < 0) {
397 RPEDEBUG("Failed deleting attribute");
399 return -1;
400 }
401 }
402
404 return 0;
405 }
406
407 /*
408 * Check the RHS thing we're copying.
409 */
410 if (fr_type_is_structural(vp->vp_type)) {
412
413 if (tmpl_attr_tail_num(current->rhs.vpt) == NUM_ALL) {
414 REDEBUG("%s[%d] Wildcard for structural attribute %s is not yet implemented.", MAP_INFO, current->rhs.vpt->name);
415 return -1;
416 }
417
418 children = &vp->vp_group;
419 goto apply_list;
420 }
421
422 /*
423 * Copy the attributes from the cursor to a temporary pair list.
424 */
425 fr_pair_list_init(&current->rhs.pair_list);
426 while (vp) {
427 fr_pair_t *copy;
428
429 copy = fr_pair_copy(request, vp);
430 if (!copy) {
431 fr_pair_list_free(&current->rhs.pair_list);
433 return -1;
434 }
435 fr_pair_append(&current->rhs.pair_list, copy);
436
437 vp = fr_dcursor_next(&cursor);
438 }
440
441 children = &current->rhs.pair_list;
442
443 /*
444 * Apply structural thingies!
445 */
446apply_list:
447 fr_assert(children != NULL);
448
449 /*
450 * If we have to create the LHS, then do so now.
451 */
452 if (current->lhs.create && (edit_create_lhs_vp(request, state, current) < 0)) {
453 return -1;
454 }
455
456 fr_assert(current->lhs.vp != NULL);
457
458#ifdef STATIC_ANALYZER
459 if (!current->lhs.vp) return -1;
460#endif
461
462 /*
463 * Print the children before we do the modifications.
464 */
465 if (!current->parent) {
466 RDEBUG2("%s %s {", current->lhs.vpt->name, fr_tokens[map->op]);
467 if (fr_debug_lvl >= L_DBG_LVL_2) {
468 RINDENT();
469 edit_debug_attr_list(request, children, map);
470 REXDENT();
471 }
472 RDEBUG2("}");
473 }
474
475 fr_pair_list_foreach(children, child) {
476 if (!fr_dict_attr_can_contain(current->lhs.vp->da, child->da)) {
477 RDEBUG("Cannot perform assignment: Attribute \"%s\" is not a child of parent \"%s\"",
478 child->da->name, current->lhs.vp->da->name);
479 rcode = -1;
480 goto done;
481 }
482 }
483
484 if (map->op != T_OP_EQ) {
485 fr_assert(current->el != NULL);
486
487 rcode = fr_edit_list_apply_list_assignment(current->el, current->lhs.vp, map->op, children,
488 (children != &current->rhs.pair_list));
489 if (rcode < 0) RPEDEBUG("Failed performing list '%s' operation", fr_tokens[map->op]);
490
491 } else {
492#if 0
493 /*
494 * The RHS list _should_ be a copy of the LHS list. But for some cases it's not. We
495 * should spend time tracking this down, but not today.
496 *
497 * For now, brute-force copy isn't wrong.
498 */
499 if (children == &current->rhs.pair_list) {
500 fr_pair_list_append(&current->lhs.vp->vp_group, children);
501 } else
502#endif
503 (void) fr_pair_list_copy(current->lhs.vp, &current->lhs.vp->vp_group, children);
504
505 PAIR_VERIFY(current->lhs.vp);
506 rcode = 0;
507 }
508
509 /*
510 * If the child list wasn't copied, then we just created it, and we need to free it.
511 */
512done:
513 if (children == &current->rhs.pair_list) fr_pair_list_free(children);
514 return rcode;
515}
516
517static bool pair_is_editable(request_t *request, fr_pair_t *vp)
518{
519 if (vp->vp_edit) {
520 RWDEBUG("Attribute cannot be removed, as it is being used in a 'foreach' loop - %s", vp->da->name);
521 return false;
522 }
523
524 if (!fr_type_is_structural(vp->vp_type)) return true;
525
526 fr_pair_list_foreach(&vp->vp_group, child) {
527 if (!pair_is_editable(request, child)) return false;
528 }
529
530 return true;
531}
532
533static int edit_delete_lhs(request_t *request, edit_map_t *current, bool delete)
534{
536 fr_dcursor_t cursor;
537
538 /*
539 * These are magic.
540 */
541 if (delete) {
542 fr_dict_attr_t const *da = tmpl_attr_tail_da(current->lhs.vpt);
543
544 if (fr_type_is_structural(da->type) &&
545 ((da == request_attr_request) ||
546 (da == request_attr_reply) ||
547 (da == request_attr_control) ||
548 (da == request_attr_state))) {
549 delete = false;
550 }
551 }
552
553 while (true) {
554 int err;
556
557 /*
558 * Reinitialize the cursor for every VP. This is because fr_dcursor_remove() does not
559 * work with tmpl_dcursors, as the tmpl_dcursor code does not set the "remove" callback.
560 * And the tmpl is NUM_UNSPEC, which means "the first one", whereas for T_OP_SET_EQ, we
561 * really mean "delete all except the first one".
562 *
563 * Once that's implemented, we also need to update the edit list API to
564 * allow for "please delete children"?
565 */
566 vp = tmpl_dcursor_init(&err, current->ctx, &cc, &cursor, request, current->lhs.vpt);
567 if (!vp) break;
568
570 fr_assert(parent != NULL);
571
572 if (!pair_is_editable(request, vp)) {
574 return -1;
575 }
576
577 if (!delete) {
578 if (fr_type_is_structural(vp->vp_type)) {
579
580 if (fr_edit_list_free_pair_children(current->el, vp) < 0) return -1;
581 } else {
582 /*
583 * No need to save value, as fr_edit_list_apply_pair_assignment() will do
584 * that for us.
585 */
586 }
587
588 current->lhs.vp = vp;
590 return 0;
591 }
592
593 /*
594 * Delete all of them. We'll create one later for the SET operation.
595 */
596 if (fr_edit_list_pair_delete(current->el, &parent->vp_group, vp) < 0) {
597 RPWDEBUG("Failed deleting attribute");
598 return -1;
599 }
601 }
602
603 return 0;
604}
605
606/*
607 * Apply the edits to a leaf attribute. First we figure out where the results come from:
608 *
609 * single value-box (e.g. tmpl_is_data(vpt)
610 * rhs value-box result list (we create a dcursor)
611 * RHS attribute reference (we create a nested dcursor to get the values from the pair list)
612 *
613 * Then we figure out what to do with those values.
614 *
615 * if it needs to be created, then create it and just mash the results in place
616 * otherwise apply the edits (+=, etc.) to an existing attribute.
617 *
618 * @todo - move to using dcursors for all of the values. The dcursor should exist in current->rhs. It
619 * should be used even for TMPL_DATA and single value-boxes. Once that's done, it becomes easier to use
620 * dcursors for xlats, too.
621 */
623{
624 fr_value_box_t *box = NULL;
626 fr_dcursor_t cursor;
627 fr_dcursor_t pair_cursor;
628 bool single = false, pair = false;
629 map_t const *map = current->map;
630
631 XDEBUG("apply_edits_to_leaf %s", map->lhs->name);
632
633 if (!tmpl_is_attr(current->lhs.vpt)) {
634 REDEBUG("%s[%d] The left side of an assignment must be an attribute reference", MAP_INFO);
635 return -1;
636 }
637
638 /*
639 * &Foo := { a, b, c }
640 *
641 * There should be values in RHS result, all of value boxes.
642 */
643 if (!map->rhs) {
644 fr_assert(current->rhs.vpt == NULL);
645 goto rhs_list;
646
647 }
648
649 if (!current->rhs.vpt) {
650 /*
651 * There's no RHS tmpl, so the result must be in in the parent RHS tmpl as data, OR in
652 * the RHS result list.
653 */
654 if (tmpl_is_data(map->rhs)) {
655 box = tmpl_value(map->rhs);
656 single = true;
657
658 } else if ((map->rhs->quote == T_SINGLE_QUOTED_STRING) || (map->rhs->quote == T_DOUBLE_QUOTED_STRING)) {
659 /*
660 * The caller asked for a string, so instead of returning a list, return a string.
661 *
662 * If there's no output, then it's an empty string.
663 *
664 * We have to check this here, because the quote is part of the tmpl, and we call
665 * xlat_push(), which doesn't know about the quote.
666 */
667 box = fr_value_box_list_head(&current->rhs.result);
668
669 if (!box) {
670 MEM(box = fr_value_box_alloc(state, FR_TYPE_STRING, NULL));
671 fr_value_box_list_insert_tail(&current->rhs.result, box);
672
673 } else if (fr_value_box_list_concat_in_place(box, box, &current->rhs.result, FR_TYPE_STRING,
674 FR_VALUE_BOX_LIST_FREE_BOX, true, 8192) < 0) {
675 RWDEBUG("Failed converting result to string");
676 return -1;
677 }
678 box = fr_value_box_list_head(&current->rhs.result);
679 single = true;
680
681 } else {
682 rhs_list:
683 if (fr_value_box_list_num_elements(&current->rhs.result) == 1) {
684 box = fr_value_box_list_head(&current->rhs.result);
685 single = true;
686 } else {
687 box = fr_dcursor_init(&cursor, fr_value_box_list_dlist_head(&current->rhs.result));
688 }
689 }
690 } else {
691 fr_pair_t *vp;
692 int err;
693
694 /*
695 * We have a temporary tmpl on the RHS. It MUST be an attribute, because everything else
696 * was expanded to a value-box list.
697 */
698 fr_assert(tmpl_is_attr(current->rhs.vpt));
699
700 /*
701 * Get a cursor over the RHS pairs.
702 */
703 vp = tmpl_dcursor_init(&err, request, &cc, &pair_cursor, request, current->rhs.vpt);
704 if (!vp) {
706
707 if (map->op != T_OP_SET) return 0;
708
709 /*
710 * No RHS pairs means we can finally delete all of the LHS.
711 */
712 return edit_delete_lhs(request, current, true);
713 }
714
715 box = fr_pair_dcursor_nested_init(&cursor, &pair_cursor); // the list is unused
716 pair = true;
717 }
718
719 if (!box) {
720 if (map->op != T_OP_SET) {
721 RWDEBUG("%s %s ... - Assignment failed - No value on right-hand side", map->lhs->name, fr_tokens[map->op]);
722 return -1;
723 }
724
725 /*
726 * Set is "delete, then add".
727 */
728 RDEBUG2("%s :=", current->lhs.vpt->name);
729 goto done;
730 }
731
732 /*
733 * The parent is a structural type. The RHS is a temporary list or attribute, which we can just
734 * add to the parents pair list. The parent will then take care of merging that pair list into
735 * the appropriate place.
736 */
737 if (current->temporary_pair_list) {
738 fr_pair_list_t *list = &current->parent->rhs.pair_list;
739 fr_pair_t *vp;
740
741 if (!current->parent->lhs.vp) {
742 if (edit_create_lhs_vp(request, request, current->parent) < 0) return -1;
743 }
744
745 while (box) {
746 /*
747 * Create (or find) all intermediate attributes. The LHS map might have multiple
748 * attribute names in it.
749 *
750 * @todo - audit other uses of tmpl_attr_tail_da() and fr_pair_afrom_da() in this file.
751 */
752 if (pair_append_by_tmpl_parent(current->parent->lhs.vp, &vp, list, current->lhs.vpt, true) < 0) {
753 RWDEBUG("Failed creating attribute %s", current->lhs.vpt->name);
754 return -1;
755 }
756
757 vp->op = map->op;
758 if (fr_value_box_cast(vp, &vp->data, vp->vp_type, vp->da, box) < 0) return -1;
759
760 if (single) break;
761
762 box = fr_dcursor_next(&cursor);
763 }
764
765 goto done;
766 }
767
768 /*
769 * If we're supposed to create the LHS, then go do that.
770 */
771 if (current->lhs.create) {
772 fr_dict_attr_t const *da = tmpl_attr_tail_da(current->lhs.vpt);
773 fr_pair_t *vp;
774
775 /*
776 * Something went wrong creating the value, it's a failure. Note that we fail _all_
777 * subsequent assignments, too.
778 */
779 if (fr_type_is_null(box->type)) goto fail;
780
781 if (edit_create_lhs_vp(request, state, current) < 0) goto fail;
782
783 fr_assert(current->lhs.vp_parent != NULL);
784 fr_assert(fr_type_is_structural(current->lhs.vp_parent->vp_type));
785
786 vp = current->lhs.vp;
787
788 /*
789 * There's always at least one LHS vp created. So we apply that first.
790 */
791 RDEBUG_ASSIGN(current->lhs.vpt->name, map->op, box);
792
793 /*
794 * The VP has already been inserted into the edit list, so we don't need to edit it's
795 * value, we can just mash it in place.
796 */
797 if (fr_value_box_cast(vp, &vp->data, vp->vp_type, vp->da, box) < 0) goto fail;
798 vp->op = T_OP_EQ;
799 if (vp->da->flags.unsafe) fr_value_box_mark_unsafe(&vp->data);
800
801 if (single) goto done;
802
803 /*
804 * Now that the attribute has been created, go apply the rest of the values to the attribute.
805 */
806 if (!((map->op == T_OP_EQ) || (map->op == T_OP_SET))) {
807 box = fr_dcursor_next(&cursor);
808 if (!box) goto done;
809
810 goto apply_op;
811 }
812
813 if (current->lhs.vp->da->flags.local) {
814 if (fr_dcursor_next_peek(&cursor)) RWDEBUG("Ignoring extra values for local variable");
815 goto done;
816 }
817
818 /*
819 * Loop over the remaining items, adding the VPs we've just created.
820 */
821 while ((box = fr_dcursor_next(&cursor)) != NULL) {
822 RDEBUG_ASSIGN(current->lhs.vpt->name, map->op, box);
823
824 MEM(vp = fr_pair_afrom_da(current->lhs.vp_parent, da));
825 if (fr_value_box_cast(vp, &vp->data, vp->vp_type, vp->da, box) < 0) goto fail;
826 if (vp->da->flags.unsafe) fr_value_box_mark_unsafe(&vp->data);
827
828 if (fr_edit_list_insert_pair_tail(state->el, &current->lhs.vp_parent->vp_group, vp) < 0) goto fail;
829 vp->op = T_OP_EQ;
830 }
831
832 goto done;
833 }
834
835 /*
836 * If we're not creating a temporary list, we must be editing an existing attribute on the LHS.
837 *
838 * We have two remaining cases. One is the attribute was just created with "=" or ":=", so we
839 * can just mash its value. The second is that the attribute already exists, and we're editing
840 * it's value using something like "+=".
841 */
842 fr_assert(current->lhs.vp != NULL);
843
844#ifdef STATIC_ANALYZER
845 if (!current->lhs.vp) return -1;
846#endif
847
848apply_op:
849 /*
850 * All other operators are "modify in place", of the existing current->lhs.vp
851 */
852 while (box) {
853 RDEBUG_ASSIGN(current->lhs.vpt->name, map->op, box);
854 if (current->lhs.vp->da->flags.unsafe) fr_value_box_mark_unsafe(box);
855
856 /*
857 * The apply function also takes care of doing data type upcasting and conversion. So we don't
858 * have to check for compatibility of the data types on the LHS and RHS.
859 */
861 current->lhs.vp,
862 map->op,
863 box) < 0) {
864 fail:
865 RPEDEBUG("Assigning value to %s failed", map->lhs->name);
866 if (pair) tmpl_dcursor_clear(&cc);
867 return -1;
868 }
869
870 if (single) break;
871
872 box = fr_dcursor_next(&cursor);
873 }
874
875done:
876 if (pair) tmpl_dcursor_clear(&cc);
877 fr_value_box_list_talloc_free(&current->rhs.result);
878
879 return 0;
880}
881
882
883/** Simple pair building callback for use with tmpl_dcursors
884 *
885 * Which always appends the new pair to the tail of the list
886 * since it is only called when no matching pairs were found when
887 * walking the list.
888 *
889 * Note that this function is called for all intermediate nodes which are built!
890 *
891 *
892 *
893 * @param[in] parent to allocate new pair within.
894 * @param[in,out] cursor to append new pair to.
895 * @param[in] da of new pair.
896 * @param[in] uctx unused.
897 * @return
898 * - newly allocated #fr_pair_t.
899 * - NULL on error.
900 */
902{
903 fr_pair_t *vp;
904 edit_map_t *current = uctx;
905
907 if (!vp) return NULL;
908
909 current->lhs.vp_parent = parent;
910 current->lhs.vp = vp;
911
912 if (fr_edit_list_insert_pair_tail(current->el, &parent->vp_group, vp) < 0) {
914 return NULL;
915 }
916
917 /*
918 * Tell the cursor that we appended a pair. This
919 * function only gets called when we've ran off of the
920 * end of the list, and can't find the thing we're
921 * looking for. So it's safe at set the current one
922 * here.
923 *
924 * @todo - mainly only because we don't allow creating
925 * foo[4] when there's <3 matching entries. i.e. the
926 * "arrays" here are really lists, so we can't create
927 * "holes" in the list.
928 */
929 fr_dcursor_set_current(cursor, vp);
930
931 return vp;
932}
933
934#define DECLARE(_x) static int _x(request_t *request, unlang_frame_state_edit_t *state, edit_map_t *current)
935
942
943/*
944 * Clean up the current state, and go to the next map.
945 */
947{
948 TALLOC_FREE(current->lhs.to_free);
949 TALLOC_FREE(current->rhs.to_free);
950 fr_pair_list_free(&current->rhs.pair_list);
951 current->lhs.vp = NULL;
952 current->lhs.vp_parent = NULL;
953 current->lhs.vpt = NULL;
954 current->rhs.vpt = NULL;
955
956 current->map = map_list_next(current->map_list, current->map);
957 current->func = expand_lhs;
958
959 /*
960 * Don't touch the other callbacks.
961 */
962
963 return 0;
964}
965
966/*
967 * Validate the RHS of an expansion.
968 */
970{
971 map_t const *map = current->map;
972
973 XDEBUG("%s map %s %s ...", __FUNCTION__, map->lhs->name, fr_tokens[map->op]);
974
975 /*
976 * := is "remove all matching, and then add". So if even if we don't add anything, we still remove things.
977 *
978 * If we deleted the attribute when processing the LHS, then you couldn't reference an attribute
979 * in it's own assignment:
980 *
981 * &foo := %tolower(foo)
982 *
983 * so we have to delay the deletion until the RHS has been fully expanded. But we don't always
984 * delete everything. e.g. if the map is:
985 *
986 * &foo[1] := %tolower(foo[1])
987 *
988 * The we just apply the assignment to the LHS, over-writing it's value.
989 */
990 if ((map->op == T_OP_SET) &&
991 ((tmpl_attr_tail_num(current->lhs.vpt) == NUM_UNSPEC) || (tmpl_attr_tail_num(current->lhs.vpt) > 0) ||
992 !current->map->rhs)) {
993 if (edit_delete_lhs(request, current,
994 (tmpl_attr_tail_num(current->lhs.vpt) == NUM_UNSPEC) || !current->map->rhs) < 0) return -1;
995 }
996
997 /*
998 * @todo - Realize the RHS box value. By moving the code in apply_edits_to_leaf() to a common function,
999 * and getting the box dcursor here.
1000 *
1001 * Then, get a cursor for the LHS vp, and loop over it, applying the edits in the operator, using
1002 * the comparisons in the RHS box.
1003 *
1004 * This lets us use array indexes (or more complex things) on the LHS, and means that we don't
1005 * have to realize the VPs and use horrible hacks.
1006 */
1007 if (current->parent && (current->parent->map->op == T_OP_SUB_EQ)) {
1008 fr_assert(current->temporary_pair_list);
1009 fr_assert(tmpl_is_attr(current->lhs.vpt)); /* can only apply edits to real attributes */
1010 fr_assert(map->rhs); /* can only filter on leaf attributes */
1011
1012#if 0
1013 {
1014 // dcursor_init over current->lhs.vpt, using children of current->parent.lhs_vp
1015 //
1016 // and then use the dcursor from the apply_edits_to_leaf() to get value-boxes
1017 rcode = fr_value_box_cmp_op(map->op, &vp->data, box);
1018 if (rcode < 0) return -1;
1019
1020 if (!rcode) continue;
1021
1022 if (fr_edit_list_pair_delete(el, list, vp) < 0) return -1;
1023 }
1024
1025 return next_map(request, state, current);
1026#endif
1027 }
1028
1029 if (fr_type_is_leaf(tmpl_attr_tail_da(current->lhs.vpt)->type)) {
1030 if (apply_edits_to_leaf(request, state, current) < 0) return -1;
1031 } else {
1032 if (apply_edits_to_list(request, state, current) < 0) return -1;
1033 }
1034
1035 return next_map(request, state, current);
1036}
1037
1038/*
1039 * The RHS map is a sublist. Go expand that by creating a child expansion context, and returning to the
1040 * main loop.
1041 */
1043{
1044 map_t const *map = current->map;
1045 edit_map_t *child;
1046
1047 XDEBUG("%s map %s %s ...", __FUNCTION__, map->lhs->name, fr_tokens[map->op]);
1048
1049 /*
1050 * If there's no RHS tmpl, then the RHS is a child list.
1051 */
1052 fr_assert(!map->rhs);
1053
1054 /*
1055 * Fast path: child is empty, we don't need to do anything.
1056 */
1057 if (fr_dlist_empty(&map->child.head)) {
1058 if (fr_type_is_leaf(tmpl_attr_tail_da(current->lhs.vpt)->type) && (map->op != T_OP_SET)) {
1059 REDEBUG("%s[%d] Cannot assign a list to the '%s' data type", MAP_INFO, fr_type_to_str(tmpl_attr_tail_da(current->lhs.vpt)->type));
1060 return -1;
1061 }
1062
1063 return check_rhs(request, state, current);
1064 }
1065
1066 /*
1067 * Allocate a new child structure if necessary.
1068 */
1069 child = current->child;
1070 if (!child) {
1071 MEM(child = talloc_zero(state, edit_map_t));
1072 current->child = child;
1073 child->parent = current;
1074 }
1075
1076 /*
1077 * Initialize the child structure. There's no edit list here, as we're
1078 * creating a temporary pair list. Any edits to this list aren't
1079 * tracked, as it only exists in current->parent->rhs.pair_list.
1080 *
1081 * The parent edit_state_t will take care of applying any edits to the
1082 * parent vp. Any child pairs which aren't used will be freed.
1083 */
1084 child->el = NULL;
1085 child->map_list = &map->child;
1086 child->map = map_list_head(child->map_list);
1087 child->func = expand_lhs;
1088
1089 if (fr_type_is_leaf(tmpl_attr_tail_da(current->lhs.vpt)->type)) {
1090 child->ctx = child;
1091 child->check_lhs = check_lhs_value;
1093 } else {
1094 child->ctx = current->lhs.vp ? (TALLOC_CTX *) current->lhs.vp : (TALLOC_CTX *) child;
1095 child->check_lhs = check_lhs_nested;
1097 child->temporary_pair_list = true;
1098 }
1099
1100 memset(&child->lhs, 0, sizeof(child->lhs));
1101 memset(&child->rhs, 0, sizeof(child->rhs));
1102
1104 fr_value_box_list_init(&child->lhs.result);
1105 fr_value_box_list_init(&child->rhs.result);
1106
1107 /*
1108 * Continue back with the RHS when we're done processing the
1109 * child. The go process the child.
1110 */
1111 current->func = check_rhs;
1112 state->current = child;
1113 RINDENT();
1114 return 0;
1115}
1116
1117
1118/*
1119 * Expand the RHS of an assignment operation.
1120 */
1122{
1123 int rcode;
1124 map_t const *map = current->map;
1125
1126 if (!map->rhs) return expand_rhs_list(request, state, current);
1127
1128 XDEBUG("%s map %s %s %s", __FUNCTION__, map->lhs->name, fr_tokens[map->op], map->rhs->name);
1129
1130 /*
1131 * Turn the RHS into a tmpl_t. This can involve just referencing an existing
1132 * tmpl in map->rhs, or expanding an xlat to get an attribute name.
1133 */
1134 rcode = tmpl_to_values(state, &current->rhs, request, map->rhs);
1135 if (rcode < 0) return -1;
1136
1137 if (rcode == 1) {
1138 current->func = check_rhs;
1139 return 1;
1140 }
1141
1142 return check_rhs(request, state, current);
1143}
1144
1145/*
1146 * The LHS is a value, and the parent is a leaf. There is no RHS.
1147 *
1148 * Do some validations, and move the value-boxes to the parents result list.
1149 */
1151{
1152 map_t const *map = current->map;
1153 fr_value_box_t *box;
1154 fr_pair_t *vp;
1155 tmpl_t const *vpt;
1157 fr_dcursor_t cursor;
1158
1159 fr_assert(current->parent);
1160
1161 XDEBUG("%s map %s", __FUNCTION__, map->lhs->name);
1162
1163 if (tmpl_is_data(map->lhs)) {
1164 vpt = map->lhs;
1165
1166 data:
1167 MEM(box = fr_value_box_alloc_null(state));
1168 if (fr_value_box_copy(box, box, tmpl_value(vpt)) < 0) return -1;
1169
1170 fr_value_box_list_insert_tail(&current->parent->rhs.result, box);
1171
1172 return next_map(request, state, current);
1173 }
1174
1175 if (!current->lhs.vpt) {
1176 vpt = map->lhs;
1177
1178 /*
1179 *
1180 */
1181 if (tmpl_is_xlat(vpt)) return next_map(request,state, current);
1182
1183 attr:
1185
1186 /*
1187 * Loop over the attributes, copying their value-boxes to the parent list.
1188 */
1189 vp = tmpl_dcursor_init(NULL, request, &cc, &cursor, request, vpt);
1190 while (vp) {
1191 MEM(box = fr_value_box_alloc_null(state));
1192 if (fr_value_box_copy(box, box, &vp->data) < 0) return -1;
1193
1194 fr_value_box_list_insert_tail(&current->parent->rhs.result, box);
1195
1196 vp = fr_dcursor_next(&cursor);
1197 }
1198 tmpl_dcursor_clear(&cc);
1199
1200 return next_map(request, state, current);
1201 }
1202
1203 vpt = current->lhs.vpt;
1204
1205 if (tmpl_is_data(vpt)) goto data;
1206
1207 goto attr;
1208}
1209
1210/*
1211 * We've expanded the LHS (xlat or exec) into a value-box list. The result gets moved to the parent
1212 * result list.
1213 *
1214 * There's no RHS, so once the LHS has been expanded, we jump immediately to the next entry.
1215 */
1217{
1218 fr_dict_attr_t const *da;
1220 fr_value_box_t *box = fr_value_box_list_head(&current->lhs.result);
1221 fr_value_box_t *dst;
1222 fr_sbuff_unescape_rules_t *erules = NULL;
1223
1224 fr_assert(current->parent);
1225
1226 if (!box) {
1227 RWDEBUG("Failed expanding result");
1228 return -1;
1229 }
1230
1231 fr_assert(tmpl_is_attr(current->parent->lhs.vpt));
1232
1233 /*
1234 * There's only one value-box, just use it as-is. We let the parent handler complain about being
1235 * able to parse (or not) the value.
1236 */
1237 if (!fr_value_box_list_next(&current->lhs.result, box)) goto done;
1238
1239 /*
1240 * Figure out how to parse the string.
1241 */
1242 da = tmpl_attr_tail_da(current->parent->lhs.vpt);
1243 if (fr_type_is_structural(da->type)) {
1244 fr_assert(da->type == FR_TYPE_GROUP);
1245
1247
1248 } else if (fr_type_is_variable_size(da->type)) {
1249 type = da->type;
1250
1251 } else {
1253 }
1254
1255 /*
1256 * Mash all of the results together.
1257 */
1258 if (fr_value_box_list_concat_in_place(box, box, &current->lhs.result, type, FR_VALUE_BOX_LIST_FREE, true, SIZE_MAX) < 0) {
1259 RWDEBUG("Failed converting result to '%s' - no memory", fr_type_to_str(type));
1260 return -1;
1261 }
1262
1263 /*
1264 * Strings, etc. get assigned to the parent. Fixed-size things ger parsed according to their values / enums.
1265 */
1266 if (!fr_type_is_fixed_size(da->type)) {
1267 done:
1268 fr_value_box_list_move(&current->parent->rhs.result, &current->lhs.result);
1269 return next_map(request, state, current);
1270 }
1271
1272 /*
1273 * Try to re-parse the box as the destination data type.
1274 */
1275 MEM(dst = fr_value_box_alloc(state, type, da));
1276
1277 erules = fr_value_unescape_by_quote[current->map->lhs->quote];
1278
1279 if (fr_value_box_from_str(dst, dst, da->type, da, box->vb_strvalue, box->vb_length, erules) < 0) {
1280 RWDEBUG("Failed converting result to '%s' - %s", fr_type_to_str(type), fr_strerror());
1281 return -1;
1282 }
1284
1285 fr_value_box_list_talloc_free(&current->lhs.result);
1286 fr_value_box_list_insert_tail(&current->parent->rhs.result, dst);
1287 return next_map(request, state, current);
1288}
1289
1290/*
1291 * Check the LHS of an assignment, for
1292 *
1293 * foo = { bar = baz } LHS bar
1294 *
1295 * There are more limitations here on the attr / op / value format then for the top-level check_lhs().
1296 */
1298{
1299 map_t const *map = current->map;
1300
1301 fr_assert(current->parent != NULL);
1302
1303 XDEBUG("%s map %s", __FUNCTION__, map->lhs->name);
1304
1305 /*
1306 * Don't create the leaf. The apply_edits_to_leaf() function will create them after the RHS has
1307 * been expanded.
1308 */
1309 if (fr_type_is_leaf(tmpl_attr_tail_da(current->lhs.vpt)->type)) {
1310 return expand_rhs(request, state, current);
1311 }
1312
1313 /*
1314 * We have a parent, so we know that attribute exist. Which means that we don't need to call a
1315 * cursor function to create this VP.
1316 */
1317
1318 /*
1319 * We create this VP in the "current" context, so that it's freed on
1320 * error. If we create it in the LHS VP context, then we have to
1321 * manually free rhs.pair_list on any error. Creating it in the
1322 * "current" context means we have to reparent it when we move it to the
1323 * parent list, but fr_edit_list_apply_list_assignment() does that
1324 * anyways.
1325 */
1326 MEM(current->lhs.vp = fr_pair_afrom_da(current->ctx, tmpl_attr_tail_da(current->lhs.vpt)));
1327 fr_pair_append(&current->parent->rhs.pair_list, current->lhs.vp);
1328 current->lhs.vp->op = map->op;
1329
1330 return expand_rhs(request, state, current);
1331}
1332
1333/*
1334 * The LHS tmpl is now an attribute reference. Do some sanity checks on tmpl_attr_tail_num(), operators, etc.
1335 * Once that's done, go expand the RHS.
1336 */
1338{
1339 map_t const *map = current->map;
1340 int err;
1341 fr_pair_t *vp;
1343 fr_dcursor_t cursor;
1344
1345 current->lhs.create = false;
1346 current->lhs.vp = NULL;
1347
1348 XDEBUG("%s map %s %s ...", __FUNCTION__, map->lhs->name, fr_tokens[map->op]);
1349
1350 /*
1351 * Create the attribute, including any necessary parents.
1352 */
1353 if ((map->op == T_OP_EQ) ||
1354 (fr_type_is_leaf(tmpl_attr_tail_da(current->lhs.vpt)->type) && fr_comparison_op[map->op])) {
1355 if (tmpl_attr_tail_num(current->lhs.vpt) == NUM_UNSPEC) {
1356 current->lhs.create = true;
1357
1358 /*
1359 * Don't go to expand_rhs(), as we have to see if the attribute exists.
1360 */
1361 }
1362
1363 } else if (map->op == T_OP_SET) {
1364 if (tmpl_attr_tail_num(current->lhs.vpt) == NUM_UNSPEC) {
1365 current->lhs.create = true;
1366 return expand_rhs(request, state, current);
1367 }
1368
1369 /*
1370 * Else we're doing something like:
1371 *
1372 * &foo[1] := bar
1373 *
1374 * the attribute has to exist, and we modify its value as a leaf.
1375 *
1376 * If the RHS is a list, we can set the children for a LHS structural type.
1377 * But if the LHS is a leaf, then we can't do:
1378 *
1379 * &foo[3] := { a, b, c}
1380 *
1381 * because foo[3] is a single leaf value, not a list.
1382 */
1383 if (!map->rhs && fr_type_is_leaf(tmpl_attr_tail_da(current->lhs.vpt)->type) &&
1384 (map_list_num_elements(&map->child) > 0)) {
1385 RWDEBUG("Cannot set one entry to multiple values for %s", current->lhs.vpt->name);
1386 return -1;
1387 }
1388
1389 } else if (map->op == T_OP_ADD_EQ) {
1390 /*
1391 * For "+=", if there's no existing attribute, create one, and rewrite the operator we
1392 * apply to ":=". Which also means moving the operator be in edit_map_t, and then updating the
1393 * "apply" functions above to use that for the operations, but map->op for printing.
1394 *
1395 * This allows "foo += 4" to set "foo := 4" when the attribute doesn't exist. It also allows us
1396 * to do list appending to an empty list. But likely only for strings, octets, and numbers.
1397 * Nothing much else makes sense.
1398 */
1399
1400 switch (tmpl_attr_tail_da(current->lhs.vpt)->type) {
1401 case FR_TYPE_NUMERIC:
1402 case FR_TYPE_OCTETS:
1403 case FR_TYPE_STRING:
1404 case FR_TYPE_STRUCTURAL:
1405 current->lhs.create = true;
1406 break;
1407
1408 default:
1409 break;
1410 }
1411 }
1412
1413 /*
1414 * Find the VP. If the operation is "=" or ":=", then it's OK for the VP to not exist.
1415 *
1416 * @todo - put the cursor into the LHS, and then set lhs.vp == NULL
1417 * use the cursor in apply_edits_to_leaf()
1418 */
1420 vp = tmpl_dcursor_init(&err, current->ctx, &cc, &cursor, request, current->lhs.vpt);
1421 tmpl_dcursor_clear(&cc);
1422 if (!vp) {
1423 if (!current->lhs.create) {
1424 RWDEBUG("Failed finding %s", current->lhs.vpt->name);
1425 return -1;
1426 }
1427
1428 /*
1429 * Else we need to create it.
1430 */
1431 return expand_rhs(request, state, current);
1432
1433 } else if (current->lhs.create) {
1434 /*
1435 * &foo[1] := bar
1436 * &foo = bar
1437 */
1438 current->lhs.create = false;
1439
1440 if (map->rhs && fr_type_is_structural(vp->vp_type) && tmpl_is_exec(map->rhs)) {
1441 int rcode;
1442
1443 current->lhs.vp = vp;
1444 current->lhs.vp_parent = fr_pair_parent(vp);
1445
1446 rcode = tmpl_to_values(state, &current->rhs, request, map->rhs);
1447 if (rcode < 0) return -1;
1448
1449 if (rcode == 1) {
1450 current->func = check_rhs;
1451 return 1;
1452 }
1453
1454 return expand_rhs(request, state, current);
1455 }
1456
1457 /*
1458 * We found it, but the attribute already exists. This
1459 * is a NOOP, where we ignore this assignment.
1460 */
1461 if (map->op == T_OP_EQ) {
1462 return next_map(request, state, current);
1463 }
1464
1465 /*
1466 * &foo[1] exists, don't bother deleting it. Just over-write its value.
1467 */
1468 fr_assert((map->op == T_OP_SET) || (map->op == T_OP_ADD_EQ) || fr_comparison_op[map->op]);
1469// fr_assert((map->op == T_OP_ADD_EQ) || tmpl_attr_tail_num(map->lhs) != NUM_UNSPEC);
1470
1471 // &control := ...
1472 }
1473
1474 /*
1475 * We forbid operations on immutable leaf attributes.
1476 *
1477 * If a list contains an immutable attribute, then we can still operate on the list, but instead
1478 * we look at each VP we're operating on.
1479 */
1480 if (fr_type_is_leaf(vp->vp_type) && vp->vp_immutable) {
1481 RWDEBUG("Cannot modify immutable value for %s", current->lhs.vpt->name);
1482 return -1;
1483 }
1484
1485 /*
1486 * We found an existing attribute, with a modification operator.
1487 */
1488 current->lhs.vp = vp;
1489 current->lhs.vp_parent = fr_pair_parent(current->lhs.vp);
1490 return expand_rhs(request, state, current);
1491}
1492
1493/*
1494 * We've expanding the LHS into a string. Now convert it to an attribute.
1495 *
1496 * foo := bar LHS foo
1497 * foo = { bar = baz } LHS bar
1498 */
1500{
1501 REXDENT();
1502
1503 if (tmpl_attr_from_result(state, current->map, &current->lhs, request) < 0) return -1;
1504
1505 return current->check_lhs(request, state, current);
1506}
1507
1508/*
1509 * Take the LHS of a map, and figure out what it is. Data and attributes are immediately processed.
1510 * xlats and execs are expanded, and then their expansion is checked.
1511 *
1512 * This function is called for all variants of the LHS:
1513 *
1514 * foo := bar LHS foo
1515 * foo = { bar = baz } LHS bar
1516 * foo = { 1, 2, 3, 4 } LHS 1, 2, etc.
1517 *
1518 */
1520{
1521 int rcode;
1522 map_t const *map = current->map;
1523
1524 XDEBUG("%s map %s %s ...", __FUNCTION__, map->lhs->name, fr_tokens[map->op]);
1525
1526 fr_assert(fr_value_box_list_empty(&current->lhs.result)); /* Should have been consumed */
1527 fr_assert(fr_value_box_list_empty(&current->rhs.result)); /* Should have been consumed */
1528
1529 rcode = tmpl_to_values(state, &current->lhs, request, map->lhs);
1530 if (rcode < 0) return -1;
1531
1532 if (rcode == 1) {
1533 current->func = current->expanded_lhs;
1534 return 1;
1535 }
1536
1537 return current->check_lhs(request, state, current);
1538}
1539
1540/** Apply a map (recursively) to a request.
1541 *
1542 * @param[out] p_result The rcode indicating what the result
1543 * of the operation was.
1544 * @param[in] request The current request.
1545 * @param[in] frame Current stack frame.
1546 * @return
1547 * - UNLANG_ACTION_CALCULATE_RESULT changes were applied.
1548 * - UNLANG_ACTION_PUSHED_CHILD async execution of an expansion is required.
1549 */
1551{
1552 unlang_frame_state_edit_t *state = talloc_get_type_abort(frame->state, unlang_frame_state_edit_t);
1553
1554 /*
1555 * Keep running the "expand map" function until done.
1556 */
1557 while (state->current) {
1558 while (state->current->map) {
1559 int rcode;
1560
1561 if (!state->current->map->rhs) {
1562 XDEBUG("MAP %s ...", state->current->map->lhs->name);
1563 } else {
1564 XDEBUG("MAP %s ... %s", state->current->map->lhs->name, state->current->map->rhs->name);
1565 }
1566
1567 rcode = state->current->func(request, state, state->current);
1568 if (rcode < 0) {
1569 RINDENT_RESTORE(request, state);
1570
1571 /*
1572 * Expansions, etc. failures are SOFT failures, which undo the edit
1573 * operations, but otherwise do not affect the interpreter.
1574 *
1575 * However, if the caller asked for the actual result, return that, too.
1576 */
1577 if (state->success) *state->success = false;
1578
1579 if (state->ours) fr_edit_list_abort(state->el);
1580 TALLOC_FREE(frame->state);
1581 repeatable_clear(frame);
1582 *p_result = RLM_MODULE_FAIL;
1583
1585 }
1586
1587 if (rcode == 1) {
1588 repeatable_set(frame);
1590 }
1591 }
1592
1593 /*
1594 * Stop if there's no parent to process.
1595 */
1596 if (!state->current->parent) break;
1597
1598 state->current = state->current->parent;
1599 REXDENT(); /* "push child" has called RINDENT */
1600 }
1601
1602 /*
1603 * Freeing the edit list will automatically commit the edits. i.e. trash the undo list, and
1604 * leave the edited pairs in place.
1605 */
1606
1607 RINDENT_RESTORE(request, state);
1608
1609 *p_result = RLM_MODULE_NOOP;
1610 if (state->success) *state->success = true;
1612}
1613
1614static void edit_state_init_internal(request_t *request, unlang_frame_state_edit_t *state, fr_edit_list_t *el, map_list_t const *map_list)
1615{
1616 edit_map_t *current = &state->first;
1617
1618 state->current = current;
1619 fr_value_box_list_init(&current->lhs.result);
1620 fr_value_box_list_init(&current->rhs.result);
1621
1622 /*
1623 * The edit list creates a local pool which should
1624 * generally be large enough for most edits.
1625 */
1626 if (!el) {
1627 MEM(state->el = fr_edit_list_alloc(state, map_list_num_elements(map_list), NULL));
1628 state->ours = true;
1629 } else {
1630 state->el = el;
1631 state->ours = false;
1632 }
1633
1634 current->ctx = state;
1635 current->el = state->el;
1636 current->map_list = map_list;
1637 current->map = map_list_head(current->map_list);
1638 fr_pair_list_init(&current->rhs.pair_list);
1639 current->func = expand_lhs;
1640 current->check_lhs = check_lhs;
1641 current->expanded_lhs = expanded_lhs_attribute;
1642
1643 /*
1644 * Save current indentation for the error path.
1645 */
1646 RINDENT_SAVE(state, request);
1647}
1648
1649/** Execute an update block
1650 *
1651 * Update blocks execute in two phases, first there's an evaluation phase where
1652 * each input map is evaluated, outputting one or more modification maps. The modification
1653 * maps detail a change that should be made to a list in the current request.
1654 * The request is not modified during this phase.
1655 *
1656 * The second phase applies those modification maps to the current request.
1657 * This re-enables the atomic functionality of update blocks provided in v2.x.x.
1658 * If one map fails in the evaluation phase, no more maps are processed, and the current
1659 * result is discarded.
1660 */
1662{
1664 unlang_frame_state_edit_t *state = talloc_get_type_abort(frame->state, unlang_frame_state_edit_t);
1666
1667 edit_state_init_internal(request, state, el, &edit->maps);
1668
1669 /*
1670 * Call process_edit to do all of the work.
1671 */
1672 frame_repeat(frame, process_edit);
1673 return process_edit(p_result, request, frame);
1674}
1675
1676
1677/** Push a map onto the stack for edit evaluation
1678 *
1679 * If the "success" variable returns "false", the caller should call fr_edit_list_abort().
1680 *
1681 * If the "success" variable returns "true", the caller can free the edit list (or rely on talloc to do that)
1682 * and the transaction will be finalized.
1683 *
1684 * @param[in] request The current request.
1685 * @param[out] success Whether or not the edit succeeded
1686 * @param[in] el Edit list which can be used to apply multiple edits
1687 * @param[in] map_list The map list to process
1688 */
1689int unlang_edit_push(request_t *request, bool *success, fr_edit_list_t *el, map_list_t const *map_list)
1690{
1691 unlang_stack_t *stack = request->stack;
1692 unlang_stack_frame_t *frame;
1694
1695 unlang_edit_t *edit;
1696
1697 static unlang_t edit_instruction = {
1699 .name = "edit",
1700 .debug_name = "edit",
1701 .actions = {
1702 .actions = {
1703 [RLM_MODULE_REJECT] = 0,
1704 [RLM_MODULE_FAIL] = 0,
1705 [RLM_MODULE_OK] = 0,
1706 [RLM_MODULE_HANDLED] = 0,
1707 [RLM_MODULE_INVALID] = 0,
1708 [RLM_MODULE_DISALLOW] = 0,
1709 [RLM_MODULE_NOTFOUND] = 0,
1710 [RLM_MODULE_NOOP] = 0,
1711 [RLM_MODULE_UPDATED] = 0
1712 },
1713 .retry = RETRY_INIT,
1714 },
1715 };
1716
1717 MEM(edit = talloc(stack, unlang_edit_t));
1718 *edit = (unlang_edit_t) {
1719 .self = edit_instruction,
1720 };
1721 map_list_init(&edit->maps);
1722
1723 /*
1724 * Push a new edit frame onto the stack
1725 */
1727 RLM_MODULE_NOT_SET, UNLANG_NEXT_STOP, false) < 0) return -1;
1728
1729 frame = &stack->frame[stack->depth];
1730 state = talloc_get_type_abort(frame->state, unlang_frame_state_edit_t);
1731
1732 edit_state_init_internal(request, state, el, map_list);
1733 state->success = success;
1734
1735 return 0;
1736}
1737
1739{
1741 &(unlang_op_t){
1742 .name = "edit",
1743 .interpret = unlang_edit_state_init,
1744 .frame_state_size = sizeof(unlang_frame_state_edit_t),
1745 .frame_state_type = "unlang_frame_state_edit_t",
1746 });
1747}
unlang_action_t
Returned by unlang_op_t calls, determine the next action of the interpreter.
Definition action.h:35
@ UNLANG_ACTION_PUSHED_CHILD
unlang_t pushed a new child onto the stack, execute it instead of continuing.
Definition action.h:39
@ UNLANG_ACTION_CALCULATE_RESULT
Calculate a new section rlm_rcode_t value.
Definition action.h:37
#define RCSID(id)
Definition build.h:485
#define UNUSED
Definition build.h:317
static void * fr_dcursor_next(fr_dcursor_t *cursor)
Advanced the cursor to the next item.
Definition dcursor.h:288
static void * fr_dcursor_next_peek(fr_dcursor_t *cursor)
Return the next iterator item without advancing the cursor.
Definition dcursor.h:303
#define fr_dcursor_init(_cursor, _head)
Initialise a cursor.
Definition dcursor.h:732
static void * fr_dcursor_set_current(fr_dcursor_t *cursor, void *item)
Set the cursor to a specified item.
Definition dcursor.h:353
#define MEM(x)
Definition debug.h:36
static fr_slen_t err
Definition dict.h:831
bool fr_dict_attr_can_contain(fr_dict_attr_t const *parent, fr_dict_attr_t const *child)
See if a structural da is allowed to contain another da.
Definition dict_util.c:4882
fr_dict_attr_t const * fr_dict_root(fr_dict_t const *dict)
Return the root attribute of a dictionary.
Definition dict_util.c:2407
static bool fr_dlist_empty(fr_dlist_head_t const *list_head)
Check whether a list has any items.
Definition dlist.h:501
map_list_t maps
Head of the map list.
Definition edit_priv.h:33
static unlang_t * unlang_edit_to_generic(unlang_edit_t const *p)
Definition edit_priv.h:45
static unlang_edit_t * unlang_generic_to_edit(unlang_t const *p)
Cast a generic structure to the edit extension.
Definition edit_priv.h:39
unlang_t self
Definition edit_priv.h:32
int unlang_interpret_push(request_t *request, unlang_t const *instruction, rlm_rcode_t default_rcode, bool do_next_sibling, bool top_frame)
Push a new frame onto the stack.
Definition interpret.c:161
#define REXDENT()
Exdent (unindent) R* messages by one level.
Definition log.h:443
#define RWDEBUG(fmt,...)
Definition log.h:361
#define RINDENT_SAVE(_x, _request)
Save indentation for later restoral.
Definition log.h:388
#define RINDENT_RESTORE(_request, _x)
Definition log.h:392
#define RPEDEBUG(fmt,...)
Definition log.h:376
#define RPWDEBUG(fmt,...)
Definition log.h:366
#define RINDENT()
Indent R* messages by one level.
Definition log.h:430
void unlang_register(int type, unlang_op_t *op)
Register an operation with the interpreter.
Definition base.c:63
talloc_free(reap)
int fr_debug_lvl
Definition log.c:43
@ L_DBG_LVL_2
2nd highest priority debug messages (-xx | -X).
Definition log.h:71
static char * stack[MAX_STACK]
Definition radmin.c:158
fr_type_t
@ FR_TYPE_STRING
String of printable characters.
@ FR_TYPE_OCTETS
Raw octets.
@ FR_TYPE_GROUP
A grouping of other attributes.
long int ssize_t
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:2321
fr_pair_list_t * fr_pair_parent_list(fr_pair_t const *vp)
Return a pointer to the parent pair list.
Definition pair.c:929
int fr_pair_append(fr_pair_list_t *list, fr_pair_t *to_add)
Add a VP to the end of the list.
Definition pair.c:1347
fr_pair_t * fr_pair_parent(fr_pair_t const *vp)
Return a pointer to the parent pair.
Definition pair.c:944
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:285
void fr_pair_list_init(fr_pair_list_t *list)
Initialise a pair list header.
Definition pair.c:46
bool fr_pair_immutable(fr_pair_t const *vp)
Definition pair.c:2282
fr_pair_t * fr_pair_copy(TALLOC_CTX *ctx, fr_pair_t const *vp)
Copy a single valuepair.
Definition pair.c:491
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:1300
fr_slen_t fr_pair_list_afrom_substr(fr_pair_parse_t const *root, fr_pair_parse_t *relative, fr_sbuff_t *in)
Parse a fr_pair_list_t from a substring.
struct fr_pair_parse_s fr_pair_parse_t
TALLOC_CTX * ctx
Definition pair_legacy.h:43
#define fr_assert(_expr)
Definition rad_assert.h:38
static rc_request_t * current
static bool done
Definition radclient.c:80
#define REDEBUG(fmt,...)
Definition radclient.h:52
#define RDEBUG2(fmt,...)
Definition radclient.h:54
#define RDEBUG(fmt,...)
Definition radclient.h:53
char const * name
Test name (as specified in the request).
Definition radclient.h:101
rlm_rcode_t
Return codes indicating the result of the module call.
Definition rcode.h:40
@ RLM_MODULE_INVALID
The module considers the request invalid.
Definition rcode.h:45
@ RLM_MODULE_OK
The module is OK, continue.
Definition rcode.h:43
@ RLM_MODULE_FAIL
Module failed, don't reply.
Definition rcode.h:42
@ RLM_MODULE_DISALLOW
Reject the request (user is locked out).
Definition rcode.h:46
@ RLM_MODULE_REJECT
Immediately reject the request.
Definition rcode.h:41
@ RLM_MODULE_NOTFOUND
User not found.
Definition rcode.h:47
@ RLM_MODULE_UPDATED
OK (pairs modified).
Definition rcode.h:49
@ RLM_MODULE_NOT_SET
Error resolving rcode (should not be returned by modules).
Definition rcode.h:51
@ RLM_MODULE_NOOP
Module succeeded without doing anything.
Definition rcode.h:48
@ RLM_MODULE_HANDLED
The module handled the request, so stop.
Definition rcode.h:44
fr_dict_attr_t const * request_attr_request
Definition request.c:45
fr_dict_attr_t const * request_attr_control
Definition request.c:47
fr_dict_attr_t const * request_attr_state
Definition request.c:48
fr_dict_attr_t const * request_attr_reply
Definition request.c:46
#define FR_SBUFF_IN(_start, _len_or_end)
Set of parsing rules for *unescape_until functions.
static int16_t tmpl_attr_tail_num(tmpl_t const *vpt)
Return the last attribute reference's attribute number.
Definition tmpl.h:890
#define tmpl_is_xlat(vpt)
Definition tmpl.h:215
#define tmpl_value(_tmpl)
Definition tmpl.h:942
#define tmpl_is_attr(vpt)
Definition tmpl.h:213
#define NUM_ALL
Definition tmpl.h:396
#define tmpl_is_exec(vpt)
Definition tmpl.h:216
#define tmpl_xlat(_tmpl)
Definition tmpl.h:935
ssize_t tmpl_afrom_attr_str(TALLOC_CTX *ctx, tmpl_attr_error_t *err, tmpl_t **out, char const *name, tmpl_rules_t const *rules))
Parse a string into a TMPL_TYPE_ATTR_* type tmpl_t.
@ TMPL_TYPE_ATTR
Reference to one or more attributes.
Definition tmpl.h:146
@ TMPL_TYPE_XLAT
Pre-parsed xlat expansion.
Definition tmpl.h:150
@ TMPL_TYPE_EXEC
Callout to an external script or program.
Definition tmpl.h:154
@ TMPL_TYPE_DATA
Value in native boxed format.
Definition tmpl.h:142
#define tmpl_is_data(vpt)
Definition tmpl.h:211
void tmpl_debug(tmpl_t const *vpt)
static fr_slen_t vpt
Definition tmpl.h:1274
#define NUM_UNSPEC
Definition tmpl.h:395
static fr_dict_attr_t const * tmpl_attr_tail_da(tmpl_t const *vpt)
Return the last attribute reference da.
Definition tmpl.h:806
int pair_append_by_tmpl_parent(TALLOC_CTX *ctx, fr_pair_t **out, fr_pair_list_t *list, tmpl_t const *vpt, bool skip_list))
Allocate and insert a leaf vp from a tmpl_t, building the parent vps if needed.
Definition tmpl_eval.c:965
Optional arguments passed to vp_tmpl functions.
Definition tmpl.h:337
fr_aka_sim_id_type_t type
fr_pair_t * vp
Value pair map.
Definition map.h:77
fr_token_t op
The operator that controls insertion of the dst attribute.
Definition map.h:82
tmpl_t * lhs
Typically describes the attribute to add, modify or compare.
Definition map.h:78
map_list_t child
parent map, for nested ones
Definition map.h:89
tmpl_t * rhs
Typically describes a literal value or a src attribute to copy or compare.
Definition map.h:79
Stores an attribute, a value and various bits of other data.
Definition pair.h:68
fr_dict_attr_t const *_CONST da
Dictionary attribute defines the attribute number, vendor and type of the pair.
Definition pair.h:69
int unlang_tmpl_push(TALLOC_CTX *ctx, fr_value_box_list_t *out, request_t *request, tmpl_t const *tmpl, unlang_tmpl_args_t *args)
Push a tmpl onto the stack for evaluation.
Definition tmpl.c:262
void tmpl_dcursor_clear(tmpl_dcursor_ctx_t *cc)
Clear any temporary state allocations.
#define tmpl_dcursor_build_init(_err, _ctx, _cc, _cursor, _request, _vpt, _build, _uctx)
#define tmpl_dcursor_init(_err, _ctx, _cc, _cursor, _request, _vpt)
Maintains state between cursor calls.
goto success
Definition tmpl_eval.c:1444
char const * fr_tokens[T_TOKEN_LAST]
Definition token.c:78
const bool fr_comparison_op[T_TOKEN_LAST]
Definition token.c:198
@ T_OP_SUB_EQ
Definition token.h:70
@ T_SINGLE_QUOTED_STRING
Definition token.h:122
@ T_OP_EQ
Definition token.h:83
@ T_OP_SET
Definition token.h:84
@ T_OP_ADD_EQ
Definition token.h:69
@ T_DOUBLE_QUOTED_STRING
Definition token.h:121
fr_edit_list_t * unlang_interpret_edit_list(request_t *request)
static fr_event_list_t * el
TALLOC_CTX * ctx
Definition edit.c:69
fr_pair_t * vp_parent
parent of the current VP
Definition edit.c:56
int(* unlang_edit_expand_t)(request_t *request, unlang_frame_state_edit_t *state, edit_map_t *current)
Definition edit.c:64
static int check_rhs(request_t *request, unlang_frame_state_edit_t *state, edit_map_t *current)
Definition edit.c:969
static unlang_action_t unlang_edit_state_init(rlm_rcode_t *p_result, request_t *request, unlang_stack_frame_t *frame)
Execute an update block.
Definition edit.c:1661
tmpl_t const * vpt
expanded tmpl
Definition edit.c:52
edit_map_t * parent
Definition edit.c:70
struct unlang_frame_state_edit_s unlang_frame_state_edit_t
Definition edit.c:62
static int expand_rhs_list(request_t *request, unlang_frame_state_edit_t *state, edit_map_t *current)
Definition edit.c:1042
static void edit_state_init_internal(request_t *request, unlang_frame_state_edit_t *state, fr_edit_list_t *el, map_list_t const *map_list)
Definition edit.c:1614
static void edit_debug_attr_vp(request_t *request, fr_pair_t *vp, map_t const *map)
Definition edit.c:187
static unlang_action_t process_edit(rlm_rcode_t *p_result, request_t *request, unlang_stack_frame_t *frame)
Apply a map (recursively) to a request.
Definition edit.c:1550
map_list_t const * map_list
Definition edit.c:73
fr_pair_list_t pair_list
for structural attributes
Definition edit.c:57
void unlang_edit_init(void)
Definition edit.c:1738
static int expand_lhs(request_t *request, unlang_frame_state_edit_t *state, edit_map_t *current)
Definition edit.c:1519
unlang_edit_expand_t func
for process state
Definition edit.c:81
static int next_map(UNUSED request_t *request, UNUSED unlang_frame_state_edit_t *state, edit_map_t *current)
Definition edit.c:946
tmpl_t * to_free
tmpl to free.
Definition edit.c:53
static int check_lhs(request_t *request, unlang_frame_state_edit_t *state, edit_map_t *current)
Definition edit.c:1337
int unlang_edit_push(request_t *request, bool *success, fr_edit_list_t *el, map_list_t const *map_list)
Push a map onto the stack for edit evaluation.
Definition edit.c:1689
#define XDEBUG(...)
fr_pair_t editing
Definition edit.c:41
static int check_lhs_value(request_t *request, unlang_frame_state_edit_t *state, edit_map_t *current)
Definition edit.c:1150
#define RDEBUG_ASSIGN(_name, _op, _box)
Definition edit.c:46
static int check_lhs_nested(request_t *request, unlang_frame_state_edit_t *state, edit_map_t *current)
Definition edit.c:1297
static int expand_rhs(request_t *request, unlang_frame_state_edit_t *state, edit_map_t *current)
Definition edit.c:1121
#define MAP_INFO
Definition edit.c:100
static int expanded_lhs_value(request_t *request, unlang_frame_state_edit_t *state, edit_map_t *current)
Definition edit.c:1216
static int apply_edits_to_list(request_t *request, unlang_frame_state_edit_t *state, edit_map_t *current)
Definition edit.c:268
static int edit_delete_lhs(request_t *request, edit_map_t *current, bool delete)
Definition edit.c:533
map_t const * map
the map to evaluate
Definition edit.c:74
static fr_pair_t * edit_list_pair_build(fr_pair_t *parent, fr_dcursor_t *cursor, fr_dict_attr_t const *da, void *uctx)
Simple pair building callback for use with tmpl_dcursors.
Definition edit.c:901
bool temporary_pair_list
Definition edit.c:76
fr_edit_list_t * el
edit list
Definition edit.c:67
fr_edit_list_t * el
edit list
Definition edit.c:90
static bool pair_is_editable(request_t *request, fr_pair_t *vp)
Definition edit.c:517
static int tmpl_attr_from_result(TALLOC_CTX *ctx, map_t const *map, edit_result_t *out, request_t *request)
Definition edit.c:107
static void edit_debug_attr_list(request_t *request, fr_pair_list_t const *list, map_t const *map)
Definition edit.c:222
bool create
whether we need to create the VP
Definition edit.c:54
fr_value_box_list_t result
result of expansion
Definition edit.c:51
unlang_edit_expand_t check_lhs
for special cases
Definition edit.c:82
static int tmpl_to_values(TALLOC_CTX *ctx, edit_result_t *out, request_t *request, tmpl_t const *vpt)
Definition edit.c:151
static int edit_create_lhs_vp(request_t *request, TALLOC_CTX *ctx, edit_map_t *current)
Definition edit.c:237
static int expanded_lhs_attribute(request_t *request, unlang_frame_state_edit_t *state, edit_map_t *current)
Definition edit.c:1499
edit_map_t * child
Definition edit.c:71
bool * success
whether or not the edit succeeded
Definition edit.c:91
unlang_edit_expand_t expanded_lhs
for special cases
Definition edit.c:83
edit_map_t * current
what we're currently doing.
Definition edit.c:96
static int apply_edits_to_leaf(request_t *request, unlang_frame_state_edit_t *state, edit_map_t *current)
Definition edit.c:622
#define DECLARE(_x)
Definition edit.c:934
edit_result_t rhs
RHS child entries.
Definition edit.c:79
edit_result_t lhs
LHS child entries.
Definition edit.c:78
fr_pair_t * vp
VP referenced by tmpl.
Definition edit.c:55
State of an edit block.
Definition edit.c:89
int unlang_xlat_push(TALLOC_CTX *ctx, bool *p_success, fr_value_box_list_t *out, request_t *request, xlat_exp_head_t const *xlat, bool top_frame)
Push a pre-compiled xlat onto the stack for evaluation.
Definition xlat.c:287
static void repeatable_clear(unlang_stack_frame_t *frame)
void * state
Stack frame specialisations.
#define UNLANG_NEXT_STOP
Definition unlang_priv.h:92
@ UNLANG_TYPE_EDIT
edit VPs in place. After 20 years!
Definition unlang_priv.h:76
static void frame_repeat(unlang_stack_frame_t *frame, unlang_process_t process)
Mark the current stack frame up for repeat, and set a new process function.
unlang_t const * instruction
The unlang node we're evaluating.
static void repeatable_set(unlang_stack_frame_t *frame)
unlang_type_t type
The specialisation of this node.
An unlang operation.
A node in a graph of unlang_op_t (s) that we execute.
Our interpreter stack, as distinct from the C stack.
An unlang stack associated with a request.
int fr_edit_list_apply_list_assignment(fr_edit_list_t *el, fr_pair_t *dst, fr_token_t op, fr_pair_list_t *src, bool copy)
Apply operators to lists.
Definition edit.c:1492
int fr_edit_list_pair_delete(fr_edit_list_t *el, fr_pair_list_t *list, fr_pair_t *vp)
Delete a VP.
Definition edit.c:599
void fr_edit_list_abort(fr_edit_list_t *el)
Abort the entries in an edit list.
Definition edit.c:194
int fr_edit_list_free_pair_children(fr_edit_list_t *el, fr_pair_t *vp)
Free children of a structural pair.
Definition edit.c:714
int fr_edit_list_apply_pair_assignment(fr_edit_list_t *el, fr_pair_t *vp, fr_token_t op, fr_value_box_t const *in)
Apply operators to pairs.
Definition edit.c:981
fr_edit_list_t * fr_edit_list_alloc(TALLOC_CTX *ctx, int hint, fr_edit_list_t *parent)
Allocate an edit list.
Definition edit.c:795
Track a series of edits.
Definition edit.c:102
#define fr_edit_list_insert_pair_tail(_el, _list, _vp)
Definition edit.h:51
#define PAIR_VERIFY(_x)
Definition pair.h:191
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:70
#define fr_pair_list_foreach(_list_head, _iter)
Iterate over the contents of a fr_pair_list_t.
Definition pair.h:261
void fr_pair_list_free(fr_pair_list_t *list)
Free memory used by a valuepair list.
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.
static fr_slen_t parent
Definition pair.h:845
#define RETRY_INIT
Definition retry.h:39
char const * fr_strerror(void)
Get the last library error.
Definition strerror.c:554
void fr_strerror_clear(void)
Clears all pending messages from the talloc pools.
Definition strerror.c:577
#define fr_type_is_group(_x)
Definition types.h:355
#define fr_type_is_variable_size(_x)
Definition types.h:367
#define fr_type_is_structural(_x)
Definition types.h:371
#define fr_type_is_fixed_size(_x)
Definition types.h:366
#define FR_TYPE_STRUCTURAL
Definition types.h:296
#define fr_type_is_null(_x)
Definition types.h:326
#define fr_type_is_leaf(_x)
Definition types.h:372
static char const * fr_type_to_str(fr_type_t type)
Return a static string containing the type name.
Definition types.h:433
#define FR_TYPE_NUMERIC
Definition types.h:286
void fr_value_box_mark_unsafe(fr_value_box_t *vb)
Mark a value-box as "unsafe".
Definition value.c:6280
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.
Definition value.c:3370
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.
Definition value.c:3759
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.
Definition value.c:929
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)
Definition value.c:5246
void fr_value_box_safety_copy_changed(fr_value_box_t *out, fr_value_box_t const *in)
Copy the safety values from one box to another.
Definition value.c:6323
fr_sbuff_unescape_rules_t * fr_value_unescape_by_quote[T_TOKEN_LAST]
Definition value.c:336
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.
Definition value.c:5730
@ FR_VALUE_BOX_LIST_FREE
Definition value.h:232
@ FR_VALUE_BOX_LIST_FREE_BOX
Free each processed box.
Definition value.h:229
#define fr_value_box_alloc(_ctx, _type, _enumv)
Allocate a value box of a specific type.
Definition value.h:632
static fr_slen_t data
Definition value.h:1274
#define fr_value_box_alloc_null(_ctx)
Allocate a value box for later use with a value assignment function.
Definition value.h:643
static size_t char ** out
Definition value.h:1012