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