The FreeRADIUS server $Id: 15bac2a4c627c01d1aa2047687b3418955ac7f00 $
Loading...
Searching...
No Matches
xlat_eval.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: 15c98802f3ea5b7cd59ad212b6b35d96867c1bec $
19 *
20 * @file xlat_eval.c
21 * @brief String expansion ("translation"). Evaluation of pre-parsed xlat expansions.
22 *
23 * @copyright 2018-2021 Arran Cudbard-Bell (a.cudbardb@freeradius.org)
24 * @copyright 2000,2006 The FreeRADIUS server project
25 * @copyright 2000 Alan DeKok (aland@freeradius.org)
26 */
27RCSID("$Id: 15c98802f3ea5b7cd59ad212b6b35d96867c1bec $")
28
29#include <freeradius-devel/server/base.h>
30#include <freeradius-devel/unlang/xlat.h>
31#include <freeradius-devel/unlang/xlat_priv.h>
32#include <freeradius-devel/util/debug.h>
33#include <freeradius-devel/util/types.h>
34#include <freeradius-devel/util/sbuff.h>
35#include <freeradius-devel/util/value.h>
36
37static int instance_count = 0;
38
40
42 { .out = &dict_freeradius, .proto = "freeradius" },
43 { NULL }
44};
45
46fr_dict_attr_t const *attr_expr_bool_enum; /* xlat_expr.c */
47fr_dict_attr_t const *attr_cast_base; /* xlat_expr.c */
48
60
62 { .out = &attr_expr_bool_enum, .name = "Expr-Bool-Enum", .type = FR_TYPE_BOOL, .dict = &dict_freeradius },
63 { .out = &attr_cast_base, .name = "Cast-Base", .type = FR_TYPE_UINT8, .dict = &dict_freeradius },
64
65 { .out = &attr_cast_time_res_sec, .name = "Cast-Time-Res-Sec", .type = FR_TYPE_TIME_DELTA, .dict = &dict_freeradius },
66 { .out = &attr_cast_time_res_min, .name = "Cast-Time-Res-Min", .type = FR_TYPE_TIME_DELTA, .dict = &dict_freeradius },
67 { .out = &attr_cast_time_res_hour, .name = "Cast-Time-Res-Hour", .type = FR_TYPE_TIME_DELTA, .dict = &dict_freeradius },
68 { .out = &attr_cast_time_res_day, .name = "Cast-Time-Res-Day", .type = FR_TYPE_TIME_DELTA, .dict = &dict_freeradius },
69 { .out = &attr_cast_time_res_week, .name = "Cast-Time-Res-Week", .type = FR_TYPE_TIME_DELTA, .dict = &dict_freeradius },
70 { .out = &attr_cast_time_res_month, .name = "Cast-Time-Res-Month", .type = FR_TYPE_TIME_DELTA, .dict = &dict_freeradius },
71 { .out = &attr_cast_time_res_year, .name = "Cast-Time-Res-Year", .type = FR_TYPE_TIME_DELTA, .dict = &dict_freeradius },
72 { .out = &attr_cast_time_res_csec, .name = "Cast-Time-Res-Centi-Sec", .type = FR_TYPE_TIME_DELTA, .dict = &dict_freeradius },
73 { .out = &attr_cast_time_res_msec, .name = "Cast-Time-Res-Milli-Sec", .type = FR_TYPE_TIME_DELTA, .dict = &dict_freeradius },
74 { .out = &attr_cast_time_res_usec, .name = "Cast-Time-Res-Micro-Sec", .type = FR_TYPE_TIME_DELTA, .dict = &dict_freeradius },
75 { .out = &attr_cast_time_res_nsec, .name = "Cast-Time-Res-Nano-Sec", .type = FR_TYPE_TIME_DELTA, .dict = &dict_freeradius },
76
77 { NULL }
78};
79
81 { L("done"), XLAT_ACTION_DONE },
82 { L("fail"), XLAT_ACTION_FAIL },
83 { L("push-child"), XLAT_ACTION_PUSH_CHILD },
84 { L("yield"), XLAT_ACTION_YIELD }
85};
87
88/*
89 * This should be updated if fr_time_precision_table[] adds more time resolutions.
90 */
92 { L("microseconds"), &attr_cast_time_res_usec },
93 { L("us"), &attr_cast_time_res_usec },
94
95 { L("nanoseconds"), &attr_cast_time_res_nsec },
96 { L("ns"), &attr_cast_time_res_nsec },
97
98 { L("milliseconds"), &attr_cast_time_res_msec },
99 { L("ms"), &attr_cast_time_res_msec },
100
101 { L("centiseconds"), &attr_cast_time_res_csec },
102 { L("cs"), &attr_cast_time_res_csec },
103
104 { L("seconds"), &attr_cast_time_res_sec },
105 { L("s"), &attr_cast_time_res_sec },
106
107 { L("minutes"), &attr_cast_time_res_min },
108 { L("m"), &attr_cast_time_res_min },
109
110 { L("hours"), &attr_cast_time_res_hour },
111 { L("h"), &attr_cast_time_res_hour },
112
113 { L("days"), &attr_cast_time_res_day },
114 { L("d"), &attr_cast_time_res_day },
115
116 { L("weeks"), &attr_cast_time_res_week },
117 { L("w"), &attr_cast_time_res_week },
118
119 /*
120 * These use special values FR_TIME_DUR_MONTH and FR_TIME_DUR_YEAR
121 */
122 { L("months"), &attr_cast_time_res_month },
123 { L("M"), &attr_cast_time_res_month },
124
125 { L("years"), &attr_cast_time_res_year },
126 { L("y"), &attr_cast_time_res_year },
127
128};
130
131fr_dict_attr_t const *xlat_time_res_attr(char const *res)
132{
133 fr_dict_attr_t const **da_p;
134
136 if (!da_p) return NULL;
137
138 return *da_p;
139}
140
141static ssize_t xlat_eval_sync(TALLOC_CTX *ctx, char **out, request_t *request, xlat_exp_head_t const * const head,
142 xlat_escape_legacy_t escape, void const *escape_ctx);
143
144/** Reconstruct the original expansion string from an xlat tree
145 *
146 * @param[in] out sbuff to print result in.
147 * @param[in] node in the tree to start printing.
148 * @return
149 * - The original expansion string on success.
150 * - NULL on error.
151 */
153{
154 switch (node->type) {
155 case XLAT_BOX:
156 case XLAT_GROUP:
157 fr_assert(node->fmt != NULL);
158 return fr_sbuff_in_sprintf(out, "%pV", fr_box_strvalue_buffer(node->fmt));
159
160 case XLAT_ONE_LETTER:
161 fr_assert(node->fmt != NULL);
162 return fr_sbuff_in_sprintf(out, "%%%s", node->fmt);
163
164 case XLAT_TMPL:
165 fr_assert(node->fmt != NULL);
166 if (tmpl_is_attr(node->vpt) && (node->fmt[0] == '&')) {
167 return fr_sbuff_in_strcpy(out, node->fmt);
168 } else {
169 return fr_sbuff_in_sprintf(out, "%%{%pV}", fr_box_strvalue_buffer(node->fmt));
170 }
171
172#ifdef HAVE_REGEX
173 case XLAT_REGEX:
174 return fr_sbuff_in_sprintf(out, "%%{%u}", node->regex_index);
175#endif
176
177 case XLAT_FUNC:
178 {
179 bool first_done = false;
180 fr_sbuff_t our_out;
181 fr_slen_t slen;
182
183 /*
184 * No arguments, just print an empty function.
185 */
186 if (!xlat_exp_head(node->call.args)) return fr_sbuff_in_sprintf(out, "%%%s()", node->call.func->name);
187
188 our_out = FR_SBUFF(out);
189 FR_SBUFF_IN_SPRINTF_RETURN(&our_out, "%%%s(", node->call.func->name);
190
191 xlat_exp_foreach(node->call.args, arg) {
192 if ((first_done) && (node->call.func->input_type == XLAT_INPUT_ARGS)) {
193 FR_SBUFF_IN_CHAR_RETURN(&our_out, ',');
194 }
195
196 slen = xlat_fmt_print(&our_out, arg);
197 if (slen < 0) return slen - fr_sbuff_used(&our_out);
198
199 first_done = true;
200 }
201
202 FR_SBUFF_IN_CHAR_RETURN(&our_out, ')');
203 return fr_sbuff_set(out, &our_out);
204 }
205
206 default:
207 return 0;
208 }
209}
210
211/** Output what we're currently expanding
212 *
213 * @param[in] request The current request.
214 * @param[in] node Being processed.
215 * @param[in] args from previous expansion.
216 * @param[in] line Unused
217 */
218static inline void xlat_debug_log_expansion(request_t *request, xlat_exp_t const *node, fr_value_box_list_t const *args, UNUSED int line)
219{
220 if (node->flags.constant) return;
221
222 if (!RDEBUG_ENABLED2) return;
223
224 /*
225 * Because it's difficult to keep track of what
226 * the function was actually called with,
227 * we print the concatenated arguments list as
228 * well as the original fmt string.
229 */
230 if ((node->type == XLAT_FUNC) && !xlat_is_literal(node->call.args)) {
231 RDEBUG2("| %%%s(%pM)", node->call.func->name, args);
232 } else {
233 fr_sbuff_t *agg;
234
235 FR_SBUFF_TALLOC_THREAD_LOCAL(&agg, 1024, SIZE_MAX);
236
237 if (xlat_fmt_print(agg, node) < 0) {
238 RERROR("Failed printing expansion");
239 return;
240 }
241 RDEBUG2("| %s", fr_sbuff_start(agg)); /* print line number here for debugging */
242 }
243}
244
245/** Output the list result of an expansion
246 *
247 * @param[in] request The current request.
248 * @param[in] node which was expanded.
249 * @param[in] result of the expansion.
250 */
251static inline void xlat_debug_log_list_result(request_t *request, xlat_exp_t const *node, fr_value_box_list_t const *result)
252{
253 if (node->flags.constant) return;
254
255 if (!RDEBUG_ENABLED2) return;
256
257 RDEBUG2("| --> %pM", result);
258}
259
260/** Output the result of an expansion
261 *
262 * @param[in] request The current request.
263 * @param[in] node which was expanded.
264 * @param[in] result of the expansion.
265 */
266static inline void xlat_debug_log_result(request_t *request, xlat_exp_t const *node, fr_value_box_t const *result)
267{
268 if (node->flags.constant) return;
269
270 if (!RDEBUG_ENABLED2) return;
271
272 RDEBUG2("| --> %pV", result);
273}
274
275/** Process an individual xlat argument value box group
276 *
277 * @param[in] ctx to allocate any additional buffers in
278 * @param[in,out] list of value boxes representing one argument
279 * @param[in] request currently being processed
280 * @param[in] name of the function being called
281 * @param[in] arg specification of current argument
282 * @param[in] arg_num number of current argument in the argument specifications
283 * @return
284 * - XLAT_ACTION_DONE on success.
285 * - XLAT_ACTION_FAIL on failure.
286 */
287static xlat_action_t xlat_process_arg_list(TALLOC_CTX *ctx, fr_value_box_list_t *list, request_t *request,
288 char const *name, xlat_arg_parser_t const *arg, unsigned int arg_num)
289{
290 fr_value_box_t *vb;
291
292 /*
293 * The funtion may be URI or SQL, which have different sub-types. So we call the function if it
294 * is NOT marked as "globally safe for SQL", but the called function may check the more specific
295 * flag "safe for MySQL". And then things which aren't safe for MySQL are escaped, and then
296 * marked as "safe for MySQL".
297 *
298 * If the escape function returns "0", then we set the safe_for value. If the escape function
299 * returns "1", then it has set the safe_for value.
300 */
301#define ESCAPE(_arg, _vb, _arg_num) \
302do { \
303 if ((_arg)->func && (!fr_value_box_is_safe_for((_vb), (_arg)->safe_for) || (_arg)->always_escape)) { \
304 int escape_rcode; \
305 escape_rcode = (_arg)->func(request, _vb, (_arg)->uctx); \
306 if (escape_rcode < 0) { \
307 RPEDEBUG("Function \"%s\" failed escaping argument %u", name, _arg_num); \
308 return XLAT_ACTION_FAIL; \
309 } \
310 if (escape_rcode == 0) fr_value_box_mark_safe_for((_vb), (_arg)->safe_for); \
311 } \
312} while (0)
313
314 if (fr_value_box_list_empty(list)) {
315 if (arg->required) {
316 REDEBUG("Function \"%s\" is missing required argument %u", name, arg_num);
317 return XLAT_ACTION_FAIL;
318 }
319 return XLAT_ACTION_DONE;
320 }
321
322 vb = fr_value_box_list_head(list);
323
324 /*
325 * Concatenate child boxes, casting to desired type,
326 * then replace group vb with first child vb
327 */
328 if (arg->concat) {
329 if (arg->func) {
330 do ESCAPE(arg, vb, arg_num); while ((vb = fr_value_box_list_next(list, vb)));
331
332 vb = fr_value_box_list_head(list); /* Reset */
333 }
334
336 vb, list, arg->type,
338 SIZE_MAX) < 0) {
339 RPEDEBUG("Function \"%s\" failed concatenating arguments to type %s", name, fr_type_to_str(arg->type));
340 return XLAT_ACTION_FAIL;
341 }
342 fr_assert(fr_value_box_list_num_elements(list) <= 1);
343
344 return XLAT_ACTION_DONE;
345 }
346
347 /*
348 * Only a single child box is valid here. Check there is
349 * just one, cast to the correct type
350 */
351 if (arg->single) {
352 if (fr_value_box_list_num_elements(list) > 1) {
353 RPEDEBUG("Function \"%s\" was provided an incorrect number of values at argument %u, "
354 "expected %s got %u",
355 name, arg_num,
356 arg->required ? "0-1" : "1",
357 fr_value_box_list_num_elements(list));
358 return XLAT_ACTION_FAIL;
359 }
360
361 ESCAPE(arg, vb, arg_num);
362
363 if ((arg->type != FR_TYPE_VOID) && (vb->type != arg->type)) {
364 cast_error:
365 if (fr_value_box_cast_in_place(ctx, vb,
366 arg->type, NULL) < 0) {
367 RPEDEBUG("Function \"%s\" failed to cast argument %u to type %s", name, arg_num, fr_type_to_str(arg->type));
368 return XLAT_ACTION_FAIL;
369 }
370 }
371
372 return XLAT_ACTION_DONE;
373 }
374
375 /*
376 * We're neither concatenating nor do we only expect a single value,
377 * cast all child values to the required type.
378 */
379 if (arg->type != FR_TYPE_VOID) {
380 do {
381 ESCAPE(arg, vb, arg_num);
382 if (vb->type == arg->type) continue;
383 if (fr_value_box_cast_in_place(ctx, vb,
384 arg->type, NULL) < 0) goto cast_error;
385 } while ((vb = fr_value_box_list_next(list, vb)));
386
387 /*
388 * If it's not a void type we still need to escape the values
389 */
390 } else if (arg->func) {
391 do ESCAPE(arg, vb, arg_num); while ((vb = fr_value_box_list_next(list, vb)));
392 }
393
394#undef ESCAPE
395
396 return XLAT_ACTION_DONE;
397}
398
399
400/** Process list of boxed values provided as input to an xlat
401 *
402 * Ensures that the value boxes passed to an xlat function match the
403 * requirements listed in its "args", and escapes any tainted boxes
404 * using the specified escaping routine.
405 *
406 * @param[in] ctx in which to allocate any buffers.
407 * @param[in,out] list value boxes provided as input.
408 * List will be modified in accordance to rules
409 * provided in the args array.
410 * @param[in] request being processed.
411 * @param[in] func to call
412 */
413static inline CC_HINT(always_inline)
414xlat_action_t xlat_process_args(TALLOC_CTX *ctx, fr_value_box_list_t *list,
415 request_t *request, xlat_t const *func)
416{
417 xlat_arg_parser_t const *arg_p = func->args;
418 xlat_action_t xa;
419 fr_value_box_t *vb, *next;
420
421 /*
422 * No args registered for this xlat
423 */
424 if (!func->args) return XLAT_ACTION_DONE;
425
426 /*
427 * xlat needs no input processing just return.
428 */
429 switch (func->input_type) {
431 return XLAT_ACTION_DONE;
432
433 /*
434 * xlat takes all input as a single vb.
435 */
436 case XLAT_INPUT_ARGS:
437 vb = fr_value_box_list_head(list);
438 while (arg_p->type != FR_TYPE_NULL) {
439 /*
440 * Separate check to see if the group
441 * box is there. Check in
442 * xlat_process_arg_list verifies it
443 * has a value.
444 */
445 if (!vb) {
446 if (arg_p->required) {
447 missing:
448 REDEBUG("Function \"%s\" is missing required argument %u",
449 func->name, (unsigned int)((arg_p - func->args) + 1));
450 return XLAT_ACTION_FAIL;
451 }
452
453 /*
454 * The argument isn't required. Just omit it. xlat_func_args_set() enforces
455 * that optional arguments are at the end of the argument list.
456 */
457 return XLAT_ACTION_DONE;
458 }
459
460 /*
461 * Everything in the top level list should be
462 * groups
463 */
464 if (!fr_cond_assert(vb->type == FR_TYPE_GROUP)) return XLAT_ACTION_FAIL;
465
466 /*
467 * pre-advance, in case the vb is replaced
468 * during processing.
469 */
470 next = fr_value_box_list_next(list, vb);
471 xa = xlat_process_arg_list(ctx, &vb->vb_group, request, func->name, arg_p,
472 (unsigned int)((arg_p - func->args) + 1));
473 if (xa != XLAT_ACTION_DONE) return xa;
474
475 /*
476 * This argument doesn't exist. That might be OK, or it may be a fatal error.
477 */
478 if (fr_value_box_list_empty(&vb->vb_group)) {
479 /*
480 * Variadic rules deal with empty boxes differently...
481 */
482 switch (arg_p->variadic) {
484 fr_value_box_list_talloc_free_head(list);
485 goto do_next;
486
488 goto empty_ok;
489
491 break;
492 }
493
494 /*
495 * Empty groups for optional arguments are OK, we can just stop processing the list.
496 */
497 if (!arg_p->required) {
498 /*
499 * If the caller doesn't care about the type, then we leave the
500 * empty group there.
501 */
502 if (arg_p->type == FR_TYPE_VOID) goto do_next;
503
504 /*
505 * The caller does care about the type, and we don't have any
506 * matching data. Omit this argument, and all arguments after it.
507 *
508 * i.e. if the caller has 3 optional arguments, all
509 * FR_TYPE_UINT8, and the first one is missing, then we MUST
510 * either supply boxes all of FR_TYPE_UINT8, OR we supply nothing.
511 *
512 * We can't supply a box of any other type, because the caller
513 * has declared that it wants FR_TYPE_UINT8, and is naively
514 * accessing the box as vb_uint8, hoping that it's being passed
515 * the right thing.
516 */
517 fr_value_box_list_talloc_free_head(list);
518 break;
519 }
520
521 /*
522 * If the caller is expecting a particular type, then getting nothing is
523 * an error.
524 *
525 * If the caller manually checks the input type, then we can leave it as
526 * an empty group.
527 */
528 if (arg_p->type != FR_TYPE_VOID) goto missing;
529 }
530
531 empty_ok:
532 /*
533 * In some cases we replace the current argument with the head of the group.
534 *
535 * xlat_process_arg_list() has already done concatenations for us.
536 */
537 if (arg_p->single || arg_p->concat) {
538 fr_value_box_t *head = fr_value_box_list_pop_head(&vb->vb_group);
539
540 /*
541 * If we're meant to be smashing the argument
542 * to a single box, but the group was empty,
543 * add a null box instead so ordering is maintained
544 * for subsequent boxes.
545 */
546 if (!head) head = fr_value_box_alloc_null(ctx);
547 fr_value_box_list_replace(list, vb, head);
548 talloc_free(vb);
549 }
550
551 do_next:
552 if (arg_p->variadic) {
553 if (!next) break;
554 } else {
555 arg_p++;
556 }
557 vb = next;
558 }
559 break;
560 }
561
562 return XLAT_ACTION_DONE;
563}
564
565/** Validate that the return values from an xlat function match what it registered
566 *
567 * @param[in] request The current request.
568 * @param[in] func that was called.
569 * @param[in] returned the output list of the function.
570 * @param[in] pos current position in the output list.
571 * @return
572 * - true - If return values were correct.
573 * - false - If the return values were incorrect.
574 */
575static inline CC_HINT(nonnull(1,2,3))
576bool xlat_process_return(request_t *request, xlat_t const *func, fr_value_box_list_t const *returned, fr_value_box_t *pos)
577{
578 unsigned int count = 0;
579
580 /*
581 * Nothing to validate. We don't yet enforce that functions
582 * must return at least one instance of their type.
583 */
584 if (!pos || fr_type_is_void(func->return_type)) return true;
585
586 if (fr_type_is_null(func->return_type)) {
587 /* Dynamic expansion to get the right name */
588 REDEBUG("%s return type registered as %s, but %s expansion produced data",
589 func->name, func->name, fr_type_to_str(func->return_type));
590
591 /* We are not forgiving for debug builds */
592 fr_assert_fail("Treating invalid return type as fatal");
593
594 return false;
595 }
596
597 do {
598 if (pos->type != func->return_type) {
599 REDEBUG("%s returned invalid result type at index %u. Expected type %s, got type %s",
600 func->name, count, fr_type_to_str(func->return_type), fr_type_to_str(pos->type));
601
602 /* We are not forgiving for debug builds */
603 fr_assert_fail("Treating invalid return type as fatal");
604 }
605 fr_value_box_mark_safe_for(pos, func->return_safe_for); /* Always set this */
606 count++;
607 } while ((pos = fr_value_box_list_next(returned, pos)));
608
609 return true;
610}
611
612/** One letter expansions
613 *
614 * @param[in] ctx to allocate boxed value, and buffers in.
615 * @param[out] out Where to write the boxed value.
616 * @param[in] request The current request.
617 * @param[in] letter to expand.
618 * @return
619 * - #XLAT_ACTION_FAIL on memory allocation errors.
620 * - #XLAT_ACTION_DONE if we're done processing this node.
621 *
622 */
623static inline CC_HINT(always_inline)
624xlat_action_t xlat_eval_one_letter(TALLOC_CTX *ctx, fr_value_box_list_t *out,
625 request_t *request, char letter)
626{
627
628 char buffer[64];
629 struct tm ts;
630 time_t now;
632
633 now = fr_time_to_sec(request->packet->timestamp);
634
635 switch (letter) {
636 case '%':
638 if (fr_value_box_strdup(value, value, NULL, "%", false) < 0) return XLAT_ACTION_FAIL;
639 break;
640
641 /*
642 * RADIUS request values
643 */
644
645 case 'I': /* Request ID */
647 value->datum.uint32 = request->packet->id;
648 break;
649
650 case 'n': /* Request number */
652 value->datum.uint64 = request->number;
653 break;
654
655 case 's': /* First request in this sequence */
657 value->datum.uint64 = request->seq_start;
658 break;
659
660 /*
661 * Current time
662 */
663
664 case 'c': /* Current epoch time seconds */
665 /*
666 * @todo - leave this as FR_TYPE_DATE, but add an enumv which changes the scale to
667 * seconds?
668 */
670 value->datum.uint64 = (uint64_t)fr_time_to_sec(fr_time());
671 break;
672
673 case 'C': /* Current epoch time microsecond component */
674 /*
675 * @todo - we probably should remove this now that we have FR_TYPE_DATE with scaling.
676 */
678 value->datum.uint64 = (uint64_t)fr_time_to_usec(fr_time()) % 1000000;
679 break;
680
681 /*
682 * Time of the current request
683 */
684
685 case 'd': /* Request day */
686 if (!localtime_r(&now, &ts)) {
687 error:
688 REDEBUG("Failed converting packet timestamp to localtime: %s", fr_syserror(errno));
689 return XLAT_ACTION_FAIL;
690 }
691
693 value->datum.uint8 = ts.tm_mday;
694 break;
695
696 case 'D': /* Request date */
697 if (!localtime_r(&now, &ts)) goto error;
698
699 strftime(buffer, sizeof(buffer), "%Y%m%d", &ts);
700
702 if (fr_value_box_strdup(value, value, NULL, buffer, false) < 0) goto error;
703 break;
704
705 case 'e': /* Request second */
706 if (!localtime_r(&now, &ts)) goto error;
707
709 value->datum.uint8 = ts.tm_sec;
710 break;
711
712 case 'G': /* Request minute */
713 if (!localtime_r(&now, &ts)) goto error;
714
716 value->datum.uint8 = ts.tm_min;
717 break;
718
719 case 'H': /* Request hour */
720 if (!localtime_r(&now, &ts)) goto error;
721
723 value->datum.uint8 = ts.tm_hour;
724 break;
725
726 case 'l': /* Request timestamp as seconds since the epoch */
727 /*
728 * @todo - leave this as FR_TYPE_DATE, but add an enumv which changes the scale to
729 * seconds?
730 */
732 value->datum.uint64 = (uint64_t ) now;
733 break;
734
735 case 'm': /* Request month */
736 if (!localtime_r(&now, &ts)) goto error;
737
739 value->datum.uint8 = ts.tm_mon + 1;
740 break;
741
742 case 'M': /* Request time microsecond component */
743 /*
744 * @todo - we probably should remove this now that we have FR_TYPE_DATE with scaling.
745 */
747 value->datum.uint32 = fr_time_to_msec(request->packet->timestamp) % 1000;
748 break;
749
750 case 'S': /* Request timestamp in SQL format */
751 if (!localtime_r(&now, &ts)) goto error;
752
753 strftime(buffer, sizeof(buffer), "%Y-%m-%d %H:%M:%S", &ts);
754
756 if (fr_value_box_strdup(value, value, NULL, buffer, false) < 0) goto error;
757 break;
758
759 case 't': /* Request timestamp in CTIME format */
760 {
761 char *p;
762
763 CTIME_R(&now, buffer, sizeof(buffer));
764 p = strchr(buffer, '\n');
765 if (p) *p = '\0';
766
768 if (fr_value_box_strdup(value, value, NULL, buffer, false) < 0) goto error;
769 }
770 break;
771
772 case 'T': /* Request timestamp in ISO format */
773 {
774 int len = 0;
775
776 if (!gmtime_r(&now, &ts)) goto error;
777
778 if (!(len = strftime(buffer, sizeof(buffer) - 1, "%Y-%m-%dT%H:%M:%S", &ts))) {
779 REDEBUG("Failed converting packet timestamp to gmtime: Buffer full");
780 return XLAT_ACTION_FAIL;
781 }
782 strcat(buffer, ".");
783 len++;
784 snprintf(buffer + len, sizeof(buffer) - len, "%03i",
785 (int) fr_time_to_msec(request->packet->timestamp) % 1000);
786
788 if (fr_value_box_strdup(value, value, NULL, buffer, false) < 0) goto error;
789 }
790 break;
791
792 case 'Y': /* Request year */
793 if (!localtime_r(&now, &ts)) goto error;
794
796
797 value->datum.int16 = ts.tm_year + 1900;
798 break;
799
800 default:
801 fr_assert_fail("%%%c is not a valid one letter expansion", letter);
802 return XLAT_ACTION_FAIL;
803 }
804
805 fr_value_box_list_insert_tail(out, value);
806
807 return XLAT_ACTION_DONE;
808}
809
810typedef struct {
812 fr_value_box_list_t list;
814
816 xlat_ctx_t const *xctx,
817 UNUSED request_t *request, UNUSED fr_value_box_list_t *in)
818{
819 xlat_exec_rctx_t *rctx = talloc_get_type_abort(xctx->rctx, xlat_exec_rctx_t);
820
821 if (rctx->status != 0) {
822 fr_strerror_printf("Program failed with status %d", rctx->status);
823 return XLAT_ACTION_FAIL;
824 }
825
826 fr_value_box_list_move((fr_value_box_list_t *)out->dlist, &rctx->list);
827
828 return XLAT_ACTION_DONE;
829}
830
831
832/** Signal an xlat function
833 *
834 * @param[in] signal function to call.
835 * @param[in] exp Xlat node that previously yielded.
836 * @param[in] request The current request.
837 * @param[in] rctx Opaque (to us), resume ctx provided by the xlat function
838 * when it yielded.
839 * @param[in] action What the request should do (the type of signal).
840 */
842 request_t *request, void *rctx, fr_signal_t action)
843{
845
846 signal(XLAT_CTX(exp->call.inst, t->data, t->mctx, NULL, rctx), request, action);
847}
848
850 UNUSED xlat_ctx_t const *xctx,
851 UNUSED request_t *request, UNUSED fr_value_box_list_t *in)
852{
853 return XLAT_ACTION_DONE;
854}
855
856/** Call an xlat's resumption method
857 *
858 * @param[in] ctx to allocate value boxes in.
859 * @param[out] out a list of #fr_value_box_t to append to.
860 * @param[out] child to evaluate. If a child needs to be evaluated
861 * by the caller, we return XLAT_ACTION_PUSH_CHILD
862 * and place the child to be evaluated here.
863 * Once evaluation is complete, the caller
864 * should call us with the same #xlat_exp_t and the
865 * result of the nested evaluation in result.
866 * @param[in] request the current request.
867 * @param[in] head of the list to evaluate
868 * @param[in,out] in xlat node to evaluate. Advanced as we process
869 * additional #xlat_exp_t.
870 * @param[in] result Previously expanded arguments to this xlat function.
871 * @param[in] resume function to call.
872 * @param[in] rctx Opaque (to us), resume ctx provided by xlat function
873 * when it yielded.
874 */
876 xlat_exp_head_t const **child,
877 request_t *request, xlat_exp_head_t const *head, xlat_exp_t const **in,
878 fr_value_box_list_t *result, xlat_func_t resume, void *rctx)
879{
880 xlat_action_t xa;
881 xlat_exp_t const *node = *in;
882
883 /*
884 * It's important that callbacks leave the result list
885 * in a valid state, as it leads to all kinds of hard
886 * to debug problems if they free or change elements
887 * and don't remove them from the list.
888 */
889 VALUE_BOX_LIST_VERIFY(result);
890
891 if (node->type != XLAT_FUNC) {
892 xa = resume(ctx, out, XLAT_CTX(NULL, NULL, NULL, NULL, rctx), request, result);
893 } else {
896 xa = resume(ctx, out, XLAT_CTX(node->call.inst->data, t->data, t->mctx, NULL, rctx), request, result);
897 VALUE_BOX_LIST_VERIFY(result);
898
899 RDEBUG2("| %%%s(...)", node->call.func->name);
900 }
901
902 switch (xa) {
904 RDEBUG2("| (YIELD)");
905 return xa;
906
907 case XLAT_ACTION_DONE:
908 if (unlang_xlat_yield(request, xlat_null_resume, NULL, 0, NULL) != XLAT_ACTION_YIELD) return XLAT_ACTION_FAIL;
909
910 fr_dcursor_next(out); /* Wind to the start of this functions output */
911 if (node->call.func) {
912 RDEBUG2("| --> %pV", fr_dcursor_current(out));
913 if (!xlat_process_return(request, node->call.func, (fr_value_box_list_t *)out->dlist,
915 }
916
917 /*
918 * It's easier if we get xlat_frame_eval to continue evaluating the frame.
919 */
920 *in = xlat_exp_next(head, *in); /* advance */
921 return xlat_frame_eval(ctx, out, child, request, head, in);
922
925 case XLAT_ACTION_FAIL:
926 break;
927 }
928
929 return xa;
930}
931
932/** Process the result of a previous nested expansion
933 *
934 * @param[in] ctx to allocate value boxes in.
935 * @param[out] out a list of #fr_value_box_t to append to.
936 * @param[out] child to evaluate. If a child needs to be evaluated
937 * by the caller, we return XLAT_ACTION_PUSH_CHILD
938 * and place the child to be evaluated here.
939 * Once evaluation is complete, the caller
940 * should call us with the same #xlat_exp_t and the
941 * result of the nested evaluation in result.
942 * @param[in] request the current request.
943 * @param[in] head of the list to evaluate
944 * @param[in,out] in xlat node to evaluate. Advanced as we process
945 * additional #xlat_exp_t.
946 * @param[in] env_data Expanded call env.
947 * @param[in] result of a previous nested evaluation.
948 */
950 xlat_exp_head_t const **child,
951 request_t *request, xlat_exp_head_t const *head, xlat_exp_t const **in,
952 void *env_data, fr_value_box_list_t *result)
953{
954 xlat_exp_t const *node = *in;
955
956 fr_dcursor_tail(out); /* Needed for reentrant behaviour and debugging */
957
958 switch (node->type) {
959 case XLAT_FUNC:
960 {
961 xlat_action_t xa;
963 fr_value_box_list_t result_copy;
964
966 fr_assert(t);
967
968 XLAT_DEBUG("** [%i] %s(func-async) - %%%s(%pM)",
969 unlang_interpret_stack_depth(request), __FUNCTION__,
970 node->fmt, result);
971
972 VALUE_BOX_LIST_VERIFY(result);
973
974 /*
975 * Always need to init and free the
976 * copy list as debug level could change
977 * when the xlat function executes.
978 */
979 fr_value_box_list_init(&result_copy);
980
981 /*
982 * Need to copy the input list in case
983 * the async function mucks with it.
984 */
986 xa = xlat_process_args(ctx, result, request, node->call.func);
987 if (xa == XLAT_ACTION_FAIL) {
988 fr_value_box_list_talloc_free(&result_copy);
989 return xa;
990 }
991
992 VALUE_BOX_LIST_VERIFY(result);
993 xa = node->call.func->func(ctx, out,
994 XLAT_CTX(node->call.inst->data, t->data, t->mctx, env_data, NULL),
995 request, result);
996 VALUE_BOX_LIST_VERIFY(result);
997
998 if (RDEBUG_ENABLED2) {
999 REXDENT();
1000 xlat_debug_log_expansion(request, *in, &result_copy, __LINE__);
1001 RINDENT();
1002 }
1003 fr_value_box_list_talloc_free(&result_copy);
1004
1005 switch (xa) {
1006 case XLAT_ACTION_FAIL:
1007 return xa;
1008
1010 RDEBUG3("| -- CHILD");
1011 return xa;
1012
1014 RDEBUG3("| -- UNLANG");
1015 return xa;
1016
1017 case XLAT_ACTION_YIELD:
1018 RDEBUG3("| -- YIELD");
1019 return xa;
1020
1021 case XLAT_ACTION_DONE: /* Process the result */
1023
1024 REXDENT();
1026 if (!xlat_process_return(request, node->call.func,
1027 (fr_value_box_list_t *)out->dlist,
1029 RINDENT();
1030 return XLAT_ACTION_FAIL;
1031 }
1032 RINDENT();
1033 break;
1034 }
1035 }
1036 break;
1037
1038 case XLAT_GROUP:
1039 {
1040 fr_value_box_t *arg;
1041
1042 /*
1043 * We'd like to do indent / exdent for groups, but that also involves fixing all of the
1044 * error paths. Which we won't do right now.
1045 */
1046 XLAT_DEBUG("** [%i] %s(child) - continuing %%{%s ...}", unlang_interpret_stack_depth(request), __FUNCTION__,
1047 node->fmt);
1048
1049 MEM(arg = fr_value_box_alloc(ctx, FR_TYPE_GROUP, NULL));
1050
1051 if (!fr_value_box_list_empty(result)) {
1052 VALUE_BOX_LIST_VERIFY(result);
1053 fr_value_box_list_move(&arg->vb_group, result);
1054 }
1055
1056// xlat_debug_log_expansion(request, *in, NULL, __LINE__);
1057// xlat_debug_log_result(request, *in, arg);
1058
1059 VALUE_BOX_VERIFY(arg);
1060
1061 fr_dcursor_insert(out, arg);
1062 }
1063 break;
1064
1065 case XLAT_TMPL:
1066 fr_assert(tmpl_is_exec(node->vpt));
1067
1068 if (tmpl_eval_cast_in_place(result, request, node->vpt) < 0) {
1069 fr_value_box_list_talloc_free(result);
1070 return XLAT_ACTION_FAIL;
1071 }
1072
1073 /*
1074 * First entry is the command to run. Subsequent entries are the options to pass to the
1075 * command.
1076 */
1077 fr_value_box_list_move((fr_value_box_list_t *)out->dlist, result);
1078 break;
1079
1080 default:
1081 fr_assert(0);
1082 return XLAT_ACTION_FAIL;
1083 }
1084
1085 /*
1086 * It's easier if we get xlat_frame_eval to continue evaluating the frame.
1087 */
1088 *in = xlat_exp_next(head, *in); /* advance */
1089 return xlat_frame_eval(ctx, out, child, request, head, in);
1090}
1091
1092/** Converts xlat nodes to value boxes
1093 *
1094 * Evaluates a single level of expansions.
1095 *
1096 * @param[in] ctx to allocate value boxes in.
1097 * @param[out] out a list of #fr_value_box_t to append to.
1098 * @param[out] child to evaluate. If a child needs to be evaluated
1099 * by the caller, we return XLAT_ACTION_PUSH_CHILD
1100 * and place the child to be evaluated here.
1101 * Once evaluation is complete, the caller
1102 * should call us with the same #xlat_exp_t and the
1103 * result of the nested evaluation in result.
1104 * @param[in] request the current request.
1105 * @param[in] head of the list to evaluate
1106 * @param[in,out] in xlat node to evaluate. Advanced as we process
1107 * additional #xlat_exp_t.
1108 * @return
1109 * - XLAT_ACTION_PUSH_CHILD if we need to evaluate a deeper level of nested.
1110 * child will be filled with the node that needs to be evaluated.
1111 * call #xlat_frame_eval_repeat on this node, once there are results
1112 * from the nested expansion.
1113 * - XLAT_ACTION_YIELD a resumption frame was pushed onto the stack by an
1114 * xlat function and we need to wait for the request to be resumed
1115 * before continuing.
1116 * - XLAT_ACTION_DONE we're done, pop the frame.
1117 * - XLAT_ACTION_FAIL an xlat module failed.
1118 */
1120 request_t *request, xlat_exp_head_t const *head, xlat_exp_t const **in)
1121{
1123 xlat_exp_t const *node;
1124 fr_value_box_list_t result; /* tmp list so debug works correctly */
1126
1127 fr_value_box_list_init(&result);
1128
1129 *child = NULL;
1130
1131 if (!*in) return XLAT_ACTION_DONE;
1132
1133 XLAT_DEBUG("** [%i] %s >> entered", unlang_interpret_stack_depth(request), __FUNCTION__);
1134
1135 for (node = *in; node; node = xlat_exp_next(head, node)) {
1136 *in = node; /* Update node in our caller */
1137 fr_dcursor_tail(out); /* Needed for debugging */
1138 VALUE_BOX_LIST_VERIFY((fr_value_box_list_t *)out->dlist);
1139
1140 fr_assert(fr_value_box_list_num_elements(&result) == 0); /* Should all have been moved */
1141
1142 switch (node->type) {
1143 case XLAT_BOX:
1144 XLAT_DEBUG("** [%i] %s(value_box) - %s", unlang_interpret_stack_depth(request), __FUNCTION__, node->fmt);
1145
1146 /*
1147 * Empty boxes are only allowed if
1148 * they're the only node in the expansion.
1149 *
1150 * If they're found anywhere else the xlat
1151 * parser has an error.
1152 */
1153 fr_assert(((node == *in) && !xlat_exp_next(head, node)) || (talloc_array_length(node->fmt) > 1));
1154
1155 /*
1156 * We unfortunately need to dup the buffer
1157 * because references aren't threadsafe.
1158 */
1160 if (fr_value_box_copy(value, value, &node->data) < 0) goto fail;
1162 continue;
1163
1164 case XLAT_ONE_LETTER:
1165 XLAT_DEBUG("** [%i] %s(one-letter) - %%%s", unlang_interpret_stack_depth(request), __FUNCTION__,
1166 node->fmt);
1167
1168 xlat_debug_log_expansion(request, node, NULL, __LINE__);
1169 if (xlat_eval_one_letter(ctx, &result, request, node->fmt[0]) == XLAT_ACTION_FAIL) {
1170 fail:
1171 fr_value_box_list_talloc_free(&result);
1172 xa = XLAT_ACTION_FAIL;
1173 goto finish;
1174 }
1175 xlat_debug_log_list_result(request, *in, &result);
1176 fr_value_box_list_move((fr_value_box_list_t *)out->dlist, &result);
1177 continue;
1178
1179 case XLAT_TMPL:
1180 /*
1181 * Everything should have been resolved.
1182 */
1183 fr_assert(!tmpl_needs_resolving(node->vpt));
1184
1185 if (tmpl_is_data(node->vpt)) {
1186 XLAT_DEBUG("** [%i] %s(value) - %s", unlang_interpret_stack_depth(request), __FUNCTION__,
1187 node->vpt->name);
1188
1189 MEM(value = fr_value_box_alloc(ctx, tmpl_value_type(node->vpt), NULL));
1190
1191 fr_value_box_copy(value, value, tmpl_value(node->vpt)); /* Also dups taint */
1192 fr_value_box_list_insert_tail(&result, value);
1193
1194 /*
1195 * Cast the results if necessary.
1196 */
1197 if (tmpl_eval_cast_in_place(&result, request, node->vpt) < 0) goto fail;
1198
1199 fr_value_box_list_move((fr_value_box_list_t *)out->dlist, &result);
1200 continue;
1201
1202 } else if (tmpl_is_attr(node->vpt)) {
1203 if (node->fmt[0] == '&') {
1204 XLAT_DEBUG("** [%i] %s(attribute) - %s", unlang_interpret_stack_depth(request), __FUNCTION__,
1205 node->fmt);
1206 } else {
1207 XLAT_DEBUG("** [%i] %s(attribute) - %%{%s}", unlang_interpret_stack_depth(request), __FUNCTION__,
1208 node->fmt);
1209 }
1210 xlat_debug_log_expansion(request, node, NULL, __LINE__);
1211
1212 if (tmpl_eval_pair(ctx, &result, request, node->vpt) < 0) goto fail;
1213
1214 } else if (tmpl_is_exec(node->vpt) || tmpl_is_xlat(node->vpt)) {
1215 xlat_exec_rctx_t *rctx;
1216
1217 /*
1218 * Allocate and initialize the output context, with value-boxes, exec status, etc.
1219 */
1220 MEM(rctx = talloc_zero(unlang_interpret_frame_talloc_ctx(request), xlat_exec_rctx_t));
1221 fr_value_box_list_init(&rctx->list);
1222
1223 xlat_debug_log_expansion(request, node, NULL, __LINE__);
1224
1225 if (unlang_xlat_yield(request, xlat_exec_resume, NULL, 0, rctx) != XLAT_ACTION_YIELD) goto fail;
1226
1227 if (unlang_tmpl_push(ctx, &rctx->list, request, node->vpt,
1229 false, &rctx->status)) < 0) goto fail;
1230
1232 goto finish;
1233
1234 } else {
1235#ifdef NDEBUG
1236 xa = XLAT_ACTION_FAIL;
1237 goto finish;
1238#endif
1239
1240 /*
1241 * Either this should have been handled previously, or we need to write
1242 * code to deal with this case.
1243 */
1244 fr_assert(0);
1245 }
1246
1247 xlat_debug_log_list_result(request, node, &result);
1248 fr_value_box_list_move((fr_value_box_list_t *)out->dlist, &result);
1249 continue;
1250
1251 case XLAT_FUNC:
1252 XLAT_DEBUG("** [%i] %s(func) - %%%s(...)", unlang_interpret_stack_depth(request), __FUNCTION__,
1253 node->fmt);
1254
1255 /*
1256 * Hand back the child node to the caller
1257 * for evaluation.
1258 */
1259 if (xlat_exp_head(node->call.args)) {
1260 *child = node->call.args;
1262 goto finish;
1263 }
1264
1265 /*
1266 * If there's no children we can just
1267 * call the function directly.
1268 */
1269 xa = xlat_frame_eval_repeat(ctx, out, child, request, head, in, NULL, &result);
1270 if (xa != XLAT_ACTION_DONE || (!*in)) goto finish;
1271 continue;
1272
1273#ifdef HAVE_REGEX
1274 case XLAT_REGEX:
1275 XLAT_DEBUG("** [%i] %s(regex) - %%{%s}", unlang_interpret_stack_depth(request), __FUNCTION__,
1276 node->fmt);
1277
1278 xlat_debug_log_expansion(request, node, NULL, __LINE__);
1280 if (regex_request_to_sub(value, value, request, node->regex_index) < 0) {
1282 continue;
1283 }
1284
1285 xlat_debug_log_result(request, node, value);
1287 continue;
1288#endif
1289
1290 case XLAT_GROUP:
1291 XLAT_DEBUG("** [%i] %s(child) - %%{%s ...}", unlang_interpret_stack_depth(request), __FUNCTION__,
1292 node->fmt);
1293 if (!node->group) return XLAT_ACTION_DONE;
1294
1295 /*
1296 * Hand back the child node to the caller
1297 * for evaluation.
1298 */
1299 *child = node->group;
1301 goto finish;
1302
1303 /*
1304 * Should have been fixed up during pass2
1305 */
1306 case XLAT_INVALID:
1308 fr_assert(0);
1309 return XLAT_ACTION_FAIL;
1310 }
1311 }
1312
1313finish:
1314 VALUE_BOX_LIST_VERIFY((fr_value_box_list_t *)out->dlist);
1315 XLAT_DEBUG("** [%i] %s << %s", unlang_interpret_stack_depth(request),
1316 __FUNCTION__, fr_table_str_by_value(xlat_action_table, xa, "<INVALID>"));
1317
1318 return xa;
1319}
1320
1321static ssize_t xlat_eval_sync(TALLOC_CTX *ctx, char **out, request_t *request, xlat_exp_head_t const * const head,
1322 xlat_escape_legacy_t escape, void const *escape_ctx)
1323{
1324 fr_value_box_list_t result;
1325 bool success = false;
1326 TALLOC_CTX *pool = talloc_new(NULL);
1327 rlm_rcode_t rcode;
1328 char *str;
1329
1330 XLAT_DEBUG("xlat_eval_sync");
1331
1332 *out = NULL;
1333
1334 fr_value_box_list_init(&result);
1335
1336 /*
1337 * Use the unlang stack to evaluate the xlat.
1338 */
1339 if (unlang_xlat_push(pool, &success, &result, request, head, UNLANG_TOP_FRAME) < 0) {
1340 fail:
1341 talloc_free(pool);
1342 return -1;
1343 }
1344
1345 /*
1346 * Pure functions don't yield, and can therefore be
1347 * expanded in place. This check saves an expensive
1348 * bounce through a new synchronous interpreter.
1349 */
1350 if (!xlat_impure_func(head) && unlang_interpret_get(request)) {
1351 rcode = unlang_interpret(request, UNLANG_REQUEST_RUNNING);
1352 } else {
1354 }
1355
1356 switch (rcode) {
1357 default:
1358 if (!success) goto fail;
1359 break;
1360
1361 case RLM_MODULE_REJECT:
1362 case RLM_MODULE_FAIL:
1363 goto fail;
1364 }
1365
1366 if (!fr_value_box_list_empty(&result)) {
1367 if (escape) {
1368 fr_value_box_t *vb = NULL;
1369
1370 /*
1371 * For tainted boxes perform the requested escaping
1372 */
1373 while ((vb = fr_value_box_list_next(&result, vb))) {
1374 size_t len, real_len;
1375 char *escaped;
1376
1378
1379 if (fr_value_box_cast_in_place(vb, vb, FR_TYPE_STRING, NULL) < 0) {
1380 RPEDEBUG("Failed casting result to string");
1381 goto fail;
1382 }
1383
1384 len = vb->vb_length * 3;
1385 MEM(escaped = talloc_array(vb, char, len));
1386 real_len = escape(request, escaped, len, vb->vb_strvalue, UNCONST(void *, escape_ctx));
1387
1388 fr_value_box_strdup_shallow_replace(vb, escaped, real_len);
1389 fr_value_box_mark_safe_for(vb, escape);
1390 }
1391 }
1392
1393 str = fr_value_box_list_aprint(ctx, &result, NULL, NULL);
1394 if (!str) goto fail;
1395 } else {
1396 str = talloc_typed_strdup(ctx, "");
1397 }
1398 talloc_free(pool); /* Memory should be in new ctx */
1399
1400 *out = str;
1401
1402 return talloc_array_length(str) - 1;
1403}
1404
1405/** Replace %whatever in a string.
1406 *
1407 * See 'doc/unlang/xlat.adoc' for more information.
1408 *
1409 * @param[in] ctx to allocate expansion buffers in.
1410 * @param[out] out Where to write pointer to output buffer.
1411 * @param[in] outlen Size of out.
1412 * @param[in] request current request.
1413 * @param[in] head the xlat structure to expand
1414 * @param[in] escape function to escape final value e.g. SQL quoting.
1415 * @param[in] escape_ctx pointer to pass to escape function.
1416 * @return length of string written @bug should really have -1 for failure.
1417 */
1418static ssize_t _xlat_eval_compiled(TALLOC_CTX *ctx, char **out, size_t outlen, request_t *request,
1419 xlat_exp_head_t const *head, xlat_escape_legacy_t escape, void const *escape_ctx)
1420{
1421 char *buff;
1422 ssize_t slen;
1423
1424 fr_assert(head != NULL);
1425
1426 slen = xlat_eval_sync(ctx, &buff, request, head, escape, escape_ctx);
1427 if (slen < 0) {
1428 fr_assert(buff == NULL);
1429 if (*out) **out = '\0';
1430 return slen;
1431 }
1432
1433 /*
1434 * If out doesn't point to an existing buffer
1435 * copy the pointer to our buffer over.
1436 */
1437 if (!*out) {
1438 *out = buff;
1439 return slen;
1440 }
1441
1442 if ((size_t)slen >= outlen) {
1443 fr_strerror_const("Insufficient output buffer space");
1444 return -1;
1445 }
1446
1447 /*
1448 * Otherwise copy the talloced buffer to the fixed one.
1449 */
1450 memcpy(*out, buff, slen);
1451 (*out)[slen] = '\0';
1453
1454 return slen;
1455}
1456
1457/** Replace %whatever in a string.
1458 *
1459 * See 'doc/unlang/xlat.adoc' for more information.
1460 *
1461 * @param[in] ctx to allocate expansion buffers in.
1462 * @param[out] out Where to write pointer to output buffer.
1463 * @param[in] outlen Size of out.
1464 * @param[in] request current request.
1465 * @param[in] fmt string to expand.
1466 * @param[in] escape function to escape final value e.g. SQL quoting.
1467 * @param[in] escape_ctx pointer to pass to escape function.
1468 * @return length of string written @bug should really have -1 for failure.
1469 */
1470static CC_HINT(nonnull (2, 4, 5))
1471ssize_t _xlat_eval(TALLOC_CTX *ctx, char **out, size_t outlen, request_t *request, char const *fmt,
1472 xlat_escape_legacy_t escape, void const *escape_ctx)
1473{
1474 ssize_t len;
1476
1477 RINDENT();
1478
1479 /*
1480 * Give better errors than the old code.
1481 */
1482 len = xlat_tokenize(ctx, &head,
1483 &FR_SBUFF_IN(fmt, strlen(fmt)),
1484 NULL,
1485 &(tmpl_rules_t){
1486 .attr = {
1487 .dict_def = request->dict,
1488 .list_def = request_attr_request,
1489 },
1490 .xlat = {
1491 .runtime_el = unlang_interpret_event_list(request),
1492 },
1493 .at_runtime = true,
1494 });
1495 if (len == 0) {
1496 if (*out) {
1497 **out = '\0';
1498 } else {
1499 *out = talloc_zero_array(ctx, char, 1);
1500 }
1501 REXDENT();
1502 return 0;
1503 }
1504
1505 if (len < 0) {
1506 REMARKER(fmt, -(len), "%s", fr_strerror());
1507 if (*out) **out = '\0';
1508 REXDENT();
1509 return -1;
1510 }
1511
1512 len = _xlat_eval_compiled(ctx, out, outlen, request, head, escape, escape_ctx);
1514
1515 REXDENT();
1516
1517 return len;
1518}
1519
1520ssize_t xlat_eval(char *out, size_t outlen, request_t *request,
1521 char const *fmt, xlat_escape_legacy_t escape, void const *escape_ctx)
1522{
1524
1525 return _xlat_eval(request, &out, outlen, request, fmt, escape, escape_ctx);
1526}
1527
1528ssize_t xlat_eval_compiled(char *out, size_t outlen, request_t *request,
1529 xlat_exp_head_t const *xlat, xlat_escape_legacy_t escape, void const *escape_ctx)
1530{
1532
1533 return _xlat_eval_compiled(request, &out, outlen, request, xlat, escape, escape_ctx);
1534}
1535
1536ssize_t xlat_aeval(TALLOC_CTX *ctx, char **out, request_t *request, char const *fmt,
1537 xlat_escape_legacy_t escape, void const *escape_ctx)
1538{
1540
1541 *out = NULL;
1542 return _xlat_eval(ctx, out, 0, request, fmt, escape, escape_ctx);
1543}
1544
1545ssize_t xlat_aeval_compiled(TALLOC_CTX *ctx, char **out, request_t *request,
1546 xlat_exp_head_t const *xlat, xlat_escape_legacy_t escape, void const *escape_ctx)
1547{
1549
1550 *out = NULL;
1551 return _xlat_eval_compiled(ctx, out, 0, request, xlat, escape, escape_ctx);
1552}
1553
1554
1555/** Turn am xlat list into an argv[] array, and nuke the input list.
1556 *
1557 * This is mostly for async use.
1558 */
1560{
1561 int i;
1562 xlat_exp_head_t **my_argv;
1563 size_t count;
1564
1565 if (head->flags.needs_resolving) {
1566 fr_strerror_printf("Cannot flatten expression with unresolved functions");
1567 return -1;
1568 }
1569
1570 count = 0;
1571 xlat_exp_foreach(head, node) {
1572 count++;
1573 }
1574
1575 MEM(my_argv = talloc_zero_array(ctx, xlat_exp_head_t *, count + 1));
1576 *argv = my_argv;
1577
1579
1580 i = 0;
1581 xlat_exp_foreach(head, node) {
1582 fr_assert(node->type == XLAT_GROUP);
1583 my_argv[i++] = talloc_steal(my_argv, node->group);
1584 }
1585
1586 fr_value_box_list_talloc_free((fr_value_box_list_t *)&head->dlist);
1587
1588 return count;
1589}
1590
1591/** Walk over all xlat nodes (depth first) in a xlat expansion, calling a callback
1592 *
1593 * @param[in] head to evaluate.
1594 * @param[in] walker callback to pass nodes to.
1595 * @param[in] type if > 0 a mask of types to call walker for.
1596 * @param[in] uctx to pass to walker.
1597 * @return
1598 * - 0 on success (walker always returned 0).
1599 * - <0 if walker returned <0.
1600 */
1602{
1603 int ret;
1604
1605 /*
1606 * Iterate over nodes at the same depth
1607 */
1608 xlat_exp_foreach(head, node) {
1609 switch (node->type){
1610 case XLAT_FUNC:
1611 /*
1612 * Evaluate the function's arguments
1613 * first, as they may get moved around
1614 * when the function is instantiated.
1615 */
1616 if (xlat_exp_head(node->call.args)) {
1617 ret = xlat_eval_walk(node->call.args, walker, type, uctx);
1618 if (ret < 0) return ret;
1619 }
1620
1621 if (!type || (type & XLAT_FUNC)) {
1622 ret = walker(node, uctx);
1623 if (ret < 0) return ret;
1624 }
1625 break;
1626
1628 if (xlat_exp_head(node->call.args)) {
1629 ret = xlat_eval_walk(node->call.args, walker, type, uctx);
1630 if (ret < 0) return ret;
1631 }
1632
1633 if (!type || (type & XLAT_FUNC_UNRESOLVED)) {
1634 ret = walker(node, uctx);
1635 if (ret < 0) return ret;
1636 }
1637 break;
1638
1639 case XLAT_GROUP:
1640 if (!type || (type & XLAT_GROUP)) {
1641 ret = walker(node, uctx);
1642 if (ret < 0) return ret;
1643 if (ret > 0) continue;
1644 }
1645
1646 /*
1647 * Evaluate the child.
1648 */
1649 ret = xlat_eval_walk(node->group, walker, type, uctx);
1650 if (ret < 0) return ret;
1651 break;
1652
1653 default:
1654 if (!type || (type & node->type)) {
1655 ret = walker(node, uctx);
1656 if (ret < 0) return ret;
1657 }
1658 break;
1659 }
1660 }
1661
1662 return 0;
1663}
1664
1666{
1668
1669 if (instance_count > 0) {
1671 return 0;
1672 }
1673
1675
1677 PERROR("%s", __FUNCTION__);
1678 return -1;
1679 }
1680
1682 PERROR("%s", __FUNCTION__);
1684 return -1;
1685 }
1686
1687 return 0;
1688}
1689
1691{
1693
1694 if (--instance_count > 0) return;
1695
1697}
static int const char char buffer[256]
Definition acutest.h:576
va_list args
Definition acutest.h:770
static int const char * fmt
Definition acutest.h:573
int const char int line
Definition acutest.h:702
#define UNCONST(_type, _ptr)
Remove const qualification from a pointer.
Definition build.h:167
#define RCSID(id)
Definition build.h:485
#define L(_str)
Helper for initialising arrays of string literals.
Definition build.h:209
#define UNUSED
Definition build.h:317
#define NUM_ELEMENTS(_t)
Definition build.h:339
static void * fr_dcursor_next(fr_dcursor_t *cursor)
Advanced the cursor to the next item.
Definition dcursor.h:288
static int fr_dcursor_append(fr_dcursor_t *cursor, void *v)
Insert a single item at the end of the list.
Definition dcursor.h:406
static void * fr_dcursor_tail(fr_dcursor_t *cursor)
Wind cursor to the tail item in the list.
Definition dcursor.h:259
static int fr_dcursor_insert(fr_dcursor_t *cursor, void *v)
Insert directly after the current item.
Definition dcursor.h:435
static void * fr_dcursor_current(fr_dcursor_t *cursor)
Return the item the cursor current points to.
Definition dcursor.h:337
#define fr_cond_assert(_x)
Calls panic_action ifndef NDEBUG, else logs error and evaluates to value of _x.
Definition debug.h:139
#define fr_assert_fail(_msg,...)
Calls panic_action ifndef NDEBUG, else logs error.
Definition debug.h:216
#define MEM(x)
Definition debug.h:36
#define fr_dict_autofree(_to_free)
Definition dict.h:860
fr_dict_attr_t const ** out
Where to write a pointer to the resolved fr_dict_attr_t.
Definition dict.h:272
fr_dict_t const ** out
Where to write a pointer to the loaded/resolved fr_dict_t.
Definition dict.h:285
int fr_dict_attr_autoload(fr_dict_attr_autoload_t const *to_load)
Process a dict_attr_autoload element to load/verify a dictionary attribute.
Definition dict_util.c:4097
#define fr_dict_autoload(_to_load)
Definition dict.h:857
static fr_slen_t in
Definition dict.h:831
Specifies an attribute which must be present for the module to function.
Definition dict.h:271
Specifies a dictionary which must be loaded/loadable for the module to function.
Definition dict.h:284
Test enumeration values.
Definition dict_test.h:92
#define EXEC_TIMEOUT
Default wait time for exec calls (in seconds).
Definition exec.h:32
rlm_rcode_t unlang_interpret(request_t *request, bool running)
Run the interpreter for a current request.
Definition interpret.c:782
unlang_interpret_t * unlang_interpret_get(request_t *request)
Get the interpreter set for a request.
Definition interpret.c:1769
int unlang_interpret_stack_depth(request_t *request)
Return the depth of the request's stack.
Definition interpret.c:1290
TALLOC_CTX * unlang_interpret_frame_talloc_ctx(request_t *request)
Get a talloc_ctx which is valid only for this frame.
Definition interpret.c:1418
fr_event_list_t * unlang_interpret_event_list(request_t *request)
Get the event list for the current interpreter.
Definition interpret.c:1779
#define UNLANG_TOP_FRAME
Definition interpret.h:35
#define UNLANG_REQUEST_RUNNING
Definition interpret.h:41
rlm_rcode_t unlang_interpret_synchronous(fr_event_list_t *el, request_t *request)
Execute an unlang section synchronously.
#define PERROR(_fmt,...)
Definition log.h:228
#define REXDENT()
Exdent (unindent) R* messages by one level.
Definition log.h:443
#define RDEBUG3(fmt,...)
Definition log.h:343
#define RERROR(fmt,...)
Definition log.h:298
#define REMARKER(_str, _marker_idx, _marker,...)
Output string with error marker, showing where format error occurred.
Definition log.h:498
#define RPEDEBUG(fmt,...)
Definition log.h:376
#define RINDENT()
Indent R* messages by one level.
Definition log.h:430
talloc_free(reap)
size_t(* xlat_escape_legacy_t)(request_t *request, char *out, size_t outlen, char const *in, void *arg)
@ FR_TYPE_TIME_DELTA
A period of time measured in nanoseconds.
@ FR_TYPE_STRING
String of printable characters.
@ FR_TYPE_NULL
Invalid (uninitialised) attribute type.
@ FR_TYPE_UINT16
16 Bit unsigned integer.
@ FR_TYPE_UINT8
8 Bit unsigned integer.
@ FR_TYPE_UINT32
32 Bit unsigned integer.
@ FR_TYPE_UINT64
64 Bit unsigned integer.
@ FR_TYPE_VOID
User data.
@ FR_TYPE_BOOL
A truth value.
@ FR_TYPE_GROUP
A grouping of other attributes.
long int ssize_t
unsigned char bool
ssize_t fr_slen_t
struct tm * gmtime_r(time_t const *l_clock, struct tm *result)
Definition missing.c:201
struct tm * localtime_r(time_t const *l_clock, struct tm *result)
Definition missing.c:163
#define fr_assert(_expr)
Definition rad_assert.h:38
#define REDEBUG(fmt,...)
Definition radclient.h:52
#define RDEBUG_ENABLED2()
Definition radclient.h:50
#define RDEBUG2(fmt,...)
Definition radclient.h:54
rlm_rcode_t
Return codes indicating the result of the module call.
Definition rcode.h:40
@ RLM_MODULE_FAIL
Module failed, don't reply.
Definition rcode.h:42
@ RLM_MODULE_REJECT
Immediately reject the request.
Definition rcode.h:41
fr_dict_attr_t const * request_attr_request
Definition request.c:45
static char const * name
ssize_t fr_sbuff_in_strcpy(fr_sbuff_t *sbuff, char const *str)
Copy bytes into the sbuff up to the first \0.
Definition sbuff.c:1454
ssize_t fr_sbuff_in_sprintf(fr_sbuff_t *sbuff, char const *fmt,...)
Print using a fmt string to an sbuff.
Definition sbuff.c:1595
#define fr_sbuff_start(_sbuff_or_marker)
#define FR_SBUFF_IN_CHAR_RETURN(_sbuff,...)
#define fr_sbuff_set(_dst, _src)
#define FR_SBUFF_IN(_start, _len_or_end)
#define FR_SBUFF_IN_SPRINTF_RETURN(...)
#define FR_SBUFF(_sbuff_or_marker)
#define fr_sbuff_used(_sbuff_or_marker)
#define FR_SBUFF_TALLOC_THREAD_LOCAL(_out, _init, _max)
#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 tmpl_is_exec(vpt)
Definition tmpl.h:216
int tmpl_eval_cast_in_place(fr_value_box_list_t *out, request_t *request, tmpl_t const *vpt)
Casts a value or list of values according to the tmpl.
Definition tmpl_eval.c:1340
int tmpl_eval_pair(TALLOC_CTX *ctx, fr_value_box_list_t *out, request_t *request, tmpl_t const *vpt)
Gets the value of a real or virtual attribute.
Definition tmpl_eval.c:1068
#define tmpl_is_data(vpt)
Definition tmpl.h:211
#define tmpl_value_type(_tmpl)
Definition tmpl.h:944
#define tmpl_needs_resolving(vpt)
Definition tmpl.h:228
Optional arguments passed to vp_tmpl functions.
Definition tmpl.h:337
fr_signal_t
Signals that can be generated/processed by request signal handlers.
Definition signal.h:38
static char buff[sizeof("18446744073709551615")+3]
Definition size_tests.c:41
PUBLIC int snprintf(char *string, size_t length, char *format, va_alist)
Definition snprintf.c:689
return count
Definition module.c:163
fr_aka_sim_id_type_t type
#define fr_time()
Allow us to arbitrarily manipulate time.
Definition state_test.c:8
char const * fr_syserror(int num)
Guaranteed to be thread-safe version of strerror.
Definition syserror.c:243
#define fr_table_value_by_str(_table, _name, _def)
Convert a string to a value using a sorted or ordered table.
Definition table.h:653
#define fr_table_str_by_value(_table, _number, _def)
Convert an integer to a string.
Definition table.h:772
An element in a lexicographically sorted array of name to num mappings.
Definition table.h:49
An element in an arbitrarily ordered array of name to ptr mappings.
Definition table.h:73
char * talloc_typed_strdup(TALLOC_CTX *ctx, char const *p)
Call talloc_strdup, setting the type on the new chunk correctly.
Definition talloc.c:445
static int64_t fr_time_to_sec(fr_time_t when)
Convert an fr_time_t (internal time) to number of sec since the unix epoch (wallclock time)
Definition time.h:731
static int64_t fr_time_to_msec(fr_time_t when)
Convert an fr_time_t (internal time) to number of msec since the unix epoch (wallclock time)
Definition time.h:711
static fr_time_delta_t fr_time_delta_from_sec(int64_t sec)
Definition time.h:590
static int64_t fr_time_to_usec(fr_time_t when)
Convert an fr_time_t (internal time) to number of usec since the unix epoch (wallclock time)
Definition time.h:701
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
goto success
Definition tmpl_eval.c:1444
#define TMPL_ARGS_EXEC(_env, _timeout, _stdout_on_error, _status_out)
Create a temporary argument structure for evaluating an exec type tmpl.
Definition tmpl.h:75
xlat_action_t unlang_xlat_yield(request_t *request, xlat_func_t resume, xlat_func_signal_t signal, fr_signal_t sigmask, void *rctx)
Yield a request back to the interpreter from within a module.
Definition xlat.c:574
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
fr_type_t type
Type to cast argument to.
Definition xlat.h:155
void * data
Thread specific instance data.
Definition xlat.h:98
xlat_thread_inst_t * xlat_thread_instance_find(xlat_exp_t const *node)
Retrieve xlat/thread specific instance data.
Definition xlat_inst.c:407
bool xlat_is_literal(xlat_exp_head_t const *head)
Check to see if the expansion consists entirely of value-box elements.
bool required
Argument must be present, and non-empty.
Definition xlat.h:148
bool xlat_impure_func(xlat_exp_head_t const *head)
xlat_escape_func_t func
Function to handle tainted values.
Definition xlat.h:156
fr_slen_t xlat_tokenize(TALLOC_CTX *ctx, xlat_exp_head_t **head, fr_sbuff_t *in, fr_sbuff_parse_rules_t const *p_rules, tmpl_rules_t const *t_rules)
Tokenize an xlat expansion.
@ XLAT_ARG_VARIADIC_EMPTY_KEEP
Empty argument groups are left alone, and either passed through as empty groups or null boxes.
Definition xlat.h:139
@ XLAT_ARG_VARIADIC_EMPTY_SQUASH
Empty argument groups are removed.
Definition xlat.h:138
@ XLAT_ARG_VARIADIC_DISABLED
Definition xlat.h:137
static fr_slen_t head
Definition xlat.h:418
xlat_arg_parser_variadic_t variadic
All additional boxes should be processed using this definition.
Definition xlat.h:151
bool concat
Concat boxes together.
Definition xlat.h:149
bool single
Argument must only contain a single box.
Definition xlat.h:150
void(* xlat_func_signal_t)(xlat_ctx_t const *xctx, request_t *request, fr_signal_t action)
A callback when the request gets a fr_signal_t.
Definition xlat.h:241
@ XLAT_INPUT_ARGS
Ingests a number of arguments.
Definition xlat.h:49
@ XLAT_INPUT_UNPROCESSED
No input argument processing.
Definition xlat.h:48
xlat_action_t(* xlat_func_t)(TALLOC_CTX *ctx, fr_dcursor_t *out, xlat_ctx_t const *xctx, request_t *request, fr_value_box_list_t *in)
xlat callback function
Definition xlat.h:230
xlat_action_t
Definition xlat.h:37
@ XLAT_ACTION_FAIL
An xlat function failed.
Definition xlat.h:44
@ XLAT_ACTION_YIELD
An xlat function pushed a resume frame onto the stack.
Definition xlat.h:42
@ XLAT_ACTION_PUSH_UNLANG
An xlat function pushed an unlang frame onto the unlang stack.
Definition xlat.h:39
@ XLAT_ACTION_PUSH_CHILD
A deeper level of nesting needs to be evaluated.
Definition xlat.h:38
@ XLAT_ACTION_DONE
We're done evaluating this level of nesting.
Definition xlat.h:43
bool constant
xlat is just tmpl_attr_tail_data, or XLAT_BOX
Definition xlat.h:118
module_ctx_t const * mctx
A synthesised module calling ctx containing module global and thread instance data.
Definition xlat.h:100
Definition for a single argument consumend by an xlat function.
Definition xlat.h:147
Thread specific instance data for xlat expansion node.
Definition xlat.h:89
char const * fr_strerror(void)
Get the last library error.
Definition strerror.c:554
#define fr_strerror_printf(_fmt,...)
Log to thread local error buffer.
Definition strerror.h:64
#define fr_strerror_const(_msg)
Definition strerror.h:223
#define fr_type_is_void(_x)
Definition types.h:357
#define fr_type_is_null(_x)
Definition types.h:326
static char const * fr_type_to_str(fr_type_t type)
Return a static string containing the type name.
Definition types.h:433
char * fr_value_box_list_aprint(TALLOC_CTX *ctx, fr_value_box_list_t const *list, char const *delim, fr_sbuff_escape_rules_t const *e_rules)
Concatenate the string representations of a list of value boxes together.
Definition value.c:5996
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_cast_in_place(TALLOC_CTX *ctx, fr_value_box_t *vb, fr_type_t dst_type, fr_dict_attr_t const *dst_enumv)
Convert one type of fr_value_box_t to another in place.
Definition value.c:3591
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:3957
void fr_value_box_strdup_shallow_replace(fr_value_box_t *vb, char const *src, ssize_t len)
Free the existing buffer (if talloced) associated with the valuebox, and replace it with a new one.
Definition value.c:4082
int fr_value_box_list_acopy(TALLOC_CTX *ctx, fr_value_box_list_t *out, fr_value_box_list_t const *in)
Do a full copy of a list of value boxes.
Definition value.c:6126
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
#define fr_value_box_alloc(_ctx, _type, _enumv)
Allocate a value box of a specific type.
Definition value.h:632
#define fr_value_box_mark_safe_for(_box, _safe_for)
Definition value.h:1063
#define fr_box_strvalue_buffer(_val)
Definition value.h:300
#define fr_value_box_is_safe_for(_box, _safe_for)
Definition value.h:1070
#define VALUE_BOX_VERIFY(_x)
Definition value.h:1304
#define VALUE_BOX_LIST_VERIFY(_x)
Definition value.h:1305
int nonnull(2, 5))
#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
#define FR_VALUE_BOX_SAFE_FOR_ANY
Definition value.h:166
void * rctx
Resume context.
Definition xlat_ctx.h:54
#define XLAT_CTX(_inst, _thread, _mctx, _env_data, _rctx)
Wrapper to create a xlat_ctx_t as a compound literal.
Definition xlat_ctx.h:93
An xlat calling ctx.
Definition xlat_ctx.h:49
ssize_t xlat_eval_compiled(char *out, size_t outlen, request_t *request, xlat_exp_head_t const *xlat, xlat_escape_legacy_t escape, void const *escape_ctx)
Definition xlat_eval.c:1528
static size_t xlat_time_precision_table_len
Definition xlat_eval.c:129
static fr_dict_attr_t const * attr_cast_time_res_week
Definition xlat_eval.c:53
static fr_table_ptr_ordered_t const xlat_time_precision_table[]
Definition xlat_eval.c:91
static fr_slen_t xlat_fmt_print(fr_sbuff_t *out, xlat_exp_t const *node)
Reconstruct the original expansion string from an xlat tree.
Definition xlat_eval.c:152
static void xlat_debug_log_expansion(request_t *request, xlat_exp_t const *node, fr_value_box_list_t const *args, UNUSED int line)
Output what we're currently expanding.
Definition xlat_eval.c:218
xlat_action_t xlat_frame_eval_repeat(TALLOC_CTX *ctx, fr_dcursor_t *out, xlat_exp_head_t const **child, request_t *request, xlat_exp_head_t const *head, xlat_exp_t const **in, void *env_data, fr_value_box_list_t *result)
Process the result of a previous nested expansion.
Definition xlat_eval.c:949
void xlat_signal(xlat_func_signal_t signal, xlat_exp_t const *exp, request_t *request, void *rctx, fr_signal_t action)
Signal an xlat function.
Definition xlat_eval.c:841
fr_dict_attr_t const * xlat_time_res_attr(char const *res)
Definition xlat_eval.c:131
static void xlat_debug_log_result(request_t *request, xlat_exp_t const *node, fr_value_box_t const *result)
Output the result of an expansion.
Definition xlat_eval.c:266
int xlat_eval_init(void)
Definition xlat_eval.c:1665
fr_table_num_sorted_t const xlat_action_table[]
Definition xlat_eval.c:80
xlat_action_t xlat_frame_eval_resume(TALLOC_CTX *ctx, fr_dcursor_t *out, xlat_exp_head_t const **child, request_t *request, xlat_exp_head_t const *head, xlat_exp_t const **in, fr_value_box_list_t *result, xlat_func_t resume, void *rctx)
Call an xlat's resumption method.
Definition xlat_eval.c:875
static fr_dict_attr_t const * attr_cast_time_res_year
Definition xlat_eval.c:55
static fr_dict_t const * dict_freeradius
Definition xlat_eval.c:39
static fr_dict_attr_t const * attr_cast_time_res_nsec
Definition xlat_eval.c:59
static xlat_action_t xlat_eval_one_letter(TALLOC_CTX *ctx, fr_value_box_list_t *out, request_t *request, char letter)
One letter expansions.
Definition xlat_eval.c:624
static fr_dict_attr_t const * attr_cast_time_res_month
Definition xlat_eval.c:54
static fr_dict_attr_t const * attr_cast_time_res_usec
Definition xlat_eval.c:58
fr_dict_attr_t const * attr_expr_bool_enum
Definition xlat_eval.c:46
static fr_dict_attr_t const * attr_cast_time_res_csec
Definition xlat_eval.c:56
static xlat_action_t xlat_process_args(TALLOC_CTX *ctx, fr_value_box_list_t *list, request_t *request, xlat_t const *func)
Process list of boxed values provided as input to an xlat.
Definition xlat_eval.c:414
size_t xlat_action_table_len
Definition xlat_eval.c:86
static ssize_t _xlat_eval(TALLOC_CTX *ctx, char **out, size_t outlen, request_t *request, char const *fmt, xlat_escape_legacy_t escape, void const *escape_ctx)
Replace whatever in a string.
Definition xlat_eval.c:1471
static fr_dict_autoload_t xlat_eval_dict[]
Definition xlat_eval.c:41
static fr_dict_attr_t const * attr_cast_time_res_msec
Definition xlat_eval.c:57
fr_dict_attr_t const * attr_cast_base
Definition xlat_eval.c:47
fr_value_box_list_t list
Definition xlat_eval.c:812
ssize_t xlat_eval(char *out, size_t outlen, request_t *request, char const *fmt, xlat_escape_legacy_t escape, void const *escape_ctx)
Definition xlat_eval.c:1520
xlat_action_t xlat_frame_eval(TALLOC_CTX *ctx, fr_dcursor_t *out, xlat_exp_head_t const **child, request_t *request, xlat_exp_head_t const *head, xlat_exp_t const **in)
Converts xlat nodes to value boxes.
Definition xlat_eval.c:1119
int xlat_flatten_to_argv(TALLOC_CTX *ctx, xlat_exp_head_t ***argv, xlat_exp_head_t *head)
Turn am xlat list into an argv[] array, and nuke the input list.
Definition xlat_eval.c:1559
static fr_dict_attr_autoload_t xlat_eval_dict_attr[]
Definition xlat_eval.c:61
static bool xlat_process_return(request_t *request, xlat_t const *func, fr_value_box_list_t const *returned, fr_value_box_t *pos)
Validate that the return values from an xlat function match what it registered.
Definition xlat_eval.c:576
void xlat_eval_free(void)
Definition xlat_eval.c:1690
int xlat_eval_walk(xlat_exp_head_t *head, xlat_walker_t walker, xlat_type_t type, void *uctx)
Walk over all xlat nodes (depth first) in a xlat expansion, calling a callback.
Definition xlat_eval.c:1601
static fr_dict_attr_t const * attr_cast_time_res_sec
Definition xlat_eval.c:49
static xlat_action_t xlat_null_resume(UNUSED TALLOC_CTX *ctx, UNUSED fr_dcursor_t *out, UNUSED xlat_ctx_t const *xctx, UNUSED request_t *request, UNUSED fr_value_box_list_t *in)
Definition xlat_eval.c:849
ssize_t xlat_aeval(TALLOC_CTX *ctx, char **out, request_t *request, char const *fmt, xlat_escape_legacy_t escape, void const *escape_ctx)
Definition xlat_eval.c:1536
static fr_dict_attr_t const * attr_cast_time_res_day
Definition xlat_eval.c:52
static ssize_t _xlat_eval_compiled(TALLOC_CTX *ctx, char **out, size_t outlen, request_t *request, xlat_exp_head_t const *head, xlat_escape_legacy_t escape, void const *escape_ctx)
Replace whatever in a string.
Definition xlat_eval.c:1418
ssize_t xlat_aeval_compiled(TALLOC_CTX *ctx, char **out, request_t *request, xlat_exp_head_t const *xlat, xlat_escape_legacy_t escape, void const *escape_ctx)
Definition xlat_eval.c:1545
static void xlat_debug_log_list_result(request_t *request, xlat_exp_t const *node, fr_value_box_list_t const *result)
Output the list result of an expansion.
Definition xlat_eval.c:251
static fr_dict_attr_t const * attr_cast_time_res_min
Definition xlat_eval.c:50
static ssize_t xlat_eval_sync(TALLOC_CTX *ctx, char **out, request_t *request, xlat_exp_head_t const *const head, xlat_escape_legacy_t escape, void const *escape_ctx)
Definition xlat_eval.c:1321
static xlat_action_t xlat_exec_resume(UNUSED TALLOC_CTX *ctx, fr_dcursor_t *out, xlat_ctx_t const *xctx, UNUSED request_t *request, UNUSED fr_value_box_list_t *in)
Definition xlat_eval.c:815
static xlat_action_t xlat_process_arg_list(TALLOC_CTX *ctx, fr_value_box_list_t *list, request_t *request, char const *name, xlat_arg_parser_t const *arg, unsigned int arg_num)
Process an individual xlat argument value box group.
Definition xlat_eval.c:287
static fr_dict_attr_t const * attr_cast_time_res_hour
Definition xlat_eval.c:51
#define ESCAPE(_arg, _vb, _arg_num)
static int instance_count
Definition xlat_eval.c:37
#define XLAT_DEBUG(...)
Definition xlat_expr.c:39
char const * name
Name of xlat function.
Definition xlat_priv.h:64
xlat_flags_t flags
Flags that control resolution and evaluation.
Definition xlat_priv.h:155
fr_type_t return_type
Function is guaranteed to return one or more boxes of this type.
Definition xlat_priv.h:100
static xlat_exp_t * xlat_exp_next(xlat_exp_head_t const *head, xlat_exp_t const *node)
Definition xlat_priv.h:242
int(* xlat_walker_t)(xlat_exp_t *exp, void *uctx)
Walker callback for xlat_walk()
Definition xlat_priv.h:263
xlat_type_t
Definition xlat_priv.h:105
@ XLAT_ONE_LETTER
Special "one-letter" expansion.
Definition xlat_priv.h:108
@ XLAT_BOX
fr_value_box_t
Definition xlat_priv.h:107
@ XLAT_TMPL
xlat attribute
Definition xlat_priv.h:111
@ XLAT_FUNC
xlat module
Definition xlat_priv.h:109
@ XLAT_GROUP
encapsulated string of xlats
Definition xlat_priv.h:115
@ XLAT_FUNC_UNRESOLVED
func needs resolution during pass2.
Definition xlat_priv.h:110
@ XLAT_INVALID
Bad expansion.
Definition xlat_priv.h:106
xlat_arg_parser_t const * args
Definition of args consumed.
Definition xlat_priv.h:93
xlat_input_type_t input_type
Type of input used.
Definition xlat_priv.h:92
char const *_CONST fmt
The original format string (a talloced buffer).
Definition xlat_priv.h:152
xlat_type_t _CONST type
type of this expansion.
Definition xlat_priv.h:156
fr_value_box_safe_for_t return_safe_for
Escaped value to set in output boxes.
Definition xlat_priv.h:99
#define xlat_exp_foreach(_list_head, _iter)
Iterate over the contents of a list, only one level.
Definition xlat_priv.h:218
static xlat_exp_t * xlat_exp_head(xlat_exp_head_t const *head)
Definition xlat_priv.h:205
An xlat expansion node.
Definition xlat_priv.h:149