The FreeRADIUS server $Id: 15bac2a4c627c01d1aa2047687b3418955ac7f00 $
Loading...
Searching...
No Matches
xlat.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: 47419cc63e7894e540bde957f1b9fceae85b5be4 $
19 *
20 * @file unlang/xlat.c
21 * @brief Integration between the unlang interpreter and xlats
22 *
23 * @copyright 2018 The FreeRADIUS server project
24 * @copyright 2018 Arran Cudbard-Bell (a.cudbardb@freeradius.org)
25 */
26RCSID("$Id: 47419cc63e7894e540bde957f1b9fceae85b5be4 $")
27
28#include <freeradius-devel/server/base.h>
29#include <freeradius-devel/util/debug.h>
30
31#include <ctype.h>
32#include <freeradius-devel/unlang/xlat_priv.h>
33#include "unlang_priv.h" /* Fixme - Should create a proper semi-public interface for the interpret */
34
35/** State of an xlat expansion
36 *
37 * State of one level of nesting within an xlat expansion.
38 */
39typedef struct {
40 TALLOC_CTX *ctx; //!< to allocate boxes and values in.
41 TALLOC_CTX *event_ctx; //!< for temporary events
42 xlat_exp_head_t const *head; //!< of the xlat list
43 xlat_exp_t const *exp; //!< current one we're evaluating
44 fr_dcursor_t values; //!< Values aggregated so far.
45
46 rindent_t indent; //!< indentation
47
48 void *env_data; //!< Expanded per call environment tmpls.
49 /*
50 * For func and alternate
51 */
52 fr_value_box_list_t out; //!< Head of the result of a nested
53 ///< expansion.
54 xlat_func_t resume; //!< called on resume
55 xlat_func_signal_t signal; //!< called on signal
56 fr_signal_t sigmask; //!< Signals to block
57 void *rctx; //!< for resume / signal
58
59 bool *success; //!< If set, where to record the result
60 ///< of the execution.
62
63/** Wrap an #fr_timer_t providing data needed for unlang events
64 *
65 */
66typedef struct {
67 request_t *request; //!< Request this event pertains to.
68 int fd; //!< File descriptor to wait on.
69 fr_unlang_xlat_timeout_t timeout; //!< Function to call on timeout.
70 fr_unlang_xlat_fd_event_t fd_read; //!< Function to call when FD is readable.
71 fr_unlang_xlat_fd_event_t fd_write; //!< Function to call when FD is writable.
72 fr_unlang_xlat_fd_event_t fd_error; //!< Function to call when FD has errored.
73 xlat_inst_t *inst; //!< xlat instance data.
74 xlat_thread_inst_t *thread; //!< Thread specific xlat instance.
75 void const *rctx; //!< rctx data to pass to callbacks.
76 fr_timer_t *ev; //!< Event in this worker's event heap.
78
79typedef struct {
81 xlat_inst_t *inst; //!< xlat instance data.
82 xlat_thread_inst_t *thread; //!< Thread specific xlat instance.
83
84 fr_unlang_xlat_retry_t retry_cb; //!< callback to run on timeout
85 void *rctx; //!< rctx data to pass to timeout callback
86
87 fr_timer_t *ev; //!< retry timer just for this xlat
88 fr_retry_t retry; //!< retry timers, etc.
90
91/** Frees an unlang event, removing it from the request's event loop
92 *
93 * @param[in] ev The event to free.
94 *
95 * @return 0
96 */
98{
99 if (ev->ev) {
100 (void) fr_timer_delete(&(ev->ev));
101 return 0;
102 }
103
104 if (ev->fd >= 0) {
106 }
107
108 return 0;
109}
110
111/** Call the callback registered for a timeout event
112 *
113 * @param[in] tl the event timer was inserted into.
114 * @param[in] now The current time, as held by the event_list.
115 * @param[in] uctx unlang_module_event_t structure holding callbacks.
116 *
117 */
119{
120 unlang_xlat_event_t *ev = talloc_get_type_abort(uctx, unlang_xlat_event_t);
121
122 /*
123 * If the timeout's fired then the xlat must necessarily
124 * be yielded, so it's fine to pass in its rctx.
125 *
126 * It should be able to free the rctx if it wants to.
127 * We never free it explicitly, and instead rely on
128 * talloc parenting.
129 */
130 ev->timeout(XLAT_CTX(ev->inst->data,
131 ev->thread->data,
132 ev->thread->mctx, NULL,
133 UNCONST(void *, ev->rctx)),
134 ev->request, now);
135
136 /* Remove old references from the request */
137 talloc_free(ev);
138}
139
140/** Add a timeout for an xlat handler
141 *
142 * @note The timeout is automatically removed when the xlat is cancelled or resumed.
143 *
144 * @param[in] request the request
145 * @param[in] callback to run when the timeout hits
146 * @param[in] rctx passed to the callback
147 * @param[in] when when the timeout fires
148 * @return
149 * - <0 on error
150 * - 0 on success
151 */
153 fr_unlang_xlat_timeout_t callback, void const *rctx, fr_time_t when)
154{
155 unlang_stack_t *stack = request->stack;
156 unlang_stack_frame_t *frame = &stack->frame[stack->depth];
158 unlang_frame_state_xlat_t *state = talloc_get_type_abort(frame->state, unlang_frame_state_xlat_t);
159
160 fr_assert(stack->depth > 0);
162
163 if (!state->event_ctx) MEM(state->event_ctx = talloc_zero(state, bool));
164
165 ev = talloc_zero(state->event_ctx, unlang_xlat_event_t);
166 if (unlikely(!ev)) return -1;
167
168 ev->request = request;
169 ev->fd = -1;
170 ev->timeout = callback;
171 fr_assert(state->exp->type == XLAT_FUNC);
172 ev->inst = state->exp->call.inst;
174 ev->rctx = rctx;
175
176 if (fr_timer_at(request, unlang_interpret_event_list(request)->tl,
177 &ev->ev, when,
178 false, unlang_xlat_event_timeout_handler, ev) < 0) {
179 RPEDEBUG("Failed inserting event");
180 talloc_free(ev);
181 return -1;
182 }
183
184 talloc_set_destructor(ev, _unlang_xlat_event_free);
185
186 return 0;
187}
188
189/** Push a pre-compiled xlat onto the stack for evaluation
190 *
191 * @param[in] ctx To allocate value boxes and values in.
192 * @param[out] p_success If set, and execution succeeds, true will be written
193 * here. If execution fails, false will be written.
194 * @param[out] out Where to write the result of the expansion.
195 * @param[in] request to push xlat onto.
196 * @param[in] xlat head of list
197 * @param[in] node to evaluate.
198 * @param[in] top_frame Set to UNLANG_TOP_FRAME if the interpreter should return.
199 * Set to UNLANG_SUB_FRAME if the interprer should continue.
200 * @return
201 * - 0 on success.
202 * - -1 on failure.
203 */
204static int unlang_xlat_push_internal(TALLOC_CTX *ctx, bool *p_success, fr_value_box_list_t *out,
205 request_t *request, xlat_exp_head_t const *xlat, xlat_exp_t *node, bool top_frame)
206{
207 /** Static instruction for performing xlat evaluations
208 *
209 */
210 static unlang_t xlat_instruction = {
212 .name = "xlat",
213 .debug_name = "xlat",
214 .actions = {
215 .actions = {
216 [RLM_MODULE_REJECT] = 0,
217 [RLM_MODULE_FAIL] = MOD_ACTION_RETURN, /* Exit out of nested levels */
218 [RLM_MODULE_OK] = 0,
219 [RLM_MODULE_HANDLED] = 0,
220 [RLM_MODULE_INVALID] = 0,
223 [RLM_MODULE_NOOP] = 0,
225 },
226 .retry = RETRY_INIT,
227 },
228 };
229
231 unlang_stack_t *stack = request->stack;
233
234 /*
235 * Push a new xlat eval frame onto the stack
236 */
237 if (unlang_interpret_push(request, &xlat_instruction,
238 RLM_MODULE_NOT_SET, UNLANG_NEXT_STOP, top_frame) < 0) return -1;
239 frame = &stack->frame[stack->depth];
240
241 /*
242 * Allocate its state, and setup a cursor for the xlat nodes
243 */
244 MEM(frame->state = state = talloc_zero(stack, unlang_frame_state_xlat_t));
245 state->head = xlat;
246 state->exp = node;
247 state->success = p_success;
248 state->ctx = ctx;
249
250 if (node) switch (node->type) {
251 case XLAT_GROUP:
252 case XLAT_BOX:
253 break;
254
255 case XLAT_TMPL:
256 if (tmpl_is_data(node->vpt)) break;
258
259 default:
260 RDEBUG("| %s", node->fmt);
261 break;
262 }
263
264 /*
265 * Initialise the input and output lists
266 */
267 fr_dcursor_init(&state->values, fr_value_box_list_dlist_head(out));
268 fr_value_box_list_init(&state->out);
269
270 return 0;
271}
272
273/** Push a pre-compiled xlat onto the stack for evaluation
274 *
275 * @param[in] ctx To allocate value boxes and values in.
276 * @param[out] p_success If set, and execution succeeds, true will be written
277 * here. If execution fails, false will be written.
278 * @param[out] out Where to write the result of the expansion.
279 * @param[in] request to push xlat onto.
280 * @param[in] xlat to evaluate.
281 * @param[in] top_frame Set to UNLANG_TOP_FRAME if the interpreter should return.
282 * Set to UNLANG_SUB_FRAME if the interprer should continue.
283 * @return
284 * - 0 on success.
285 * - -1 on failure.
286 */
287int unlang_xlat_push(TALLOC_CTX *ctx, bool *p_success, fr_value_box_list_t *out,
288 request_t *request, xlat_exp_head_t const *xlat, bool top_frame)
289{
291
292 return unlang_xlat_push_internal(ctx, p_success, out, request, xlat, xlat_exp_head(xlat), top_frame);
293}
294
295/** Push a pre-compiled xlat onto the stack for evaluation
296 *
297 * @param[in] ctx To allocate value boxes and values in.
298 * @param[out] p_success If set, and execution succeeds, true will be written
299 * here. If execution fails, false will be written.
300 * @param[out] out Where to write the result of the expansion.
301 * @param[in] request to push xlat onto.
302 * @param[in] node to evaluate. Only this node will be evaluated.
303 * @return
304 * - 0 on success.
305 * - -1 on failure.
306 */
307int unlang_xlat_push_node(TALLOC_CTX *ctx, bool *p_success, fr_value_box_list_t *out,
308 request_t *request, xlat_exp_t *node)
309{
310 return unlang_xlat_push_internal(ctx, p_success, out, request, NULL, node, UNLANG_TOP_FRAME);
311}
312
314{
315 unlang_frame_state_xlat_t *state = talloc_get_type_abort(frame->state, unlang_frame_state_xlat_t);
316 xlat_action_t xa;
317 xlat_exp_head_t const *child = NULL;
318
319 /*
320 * If the xlat is a function with a method_env, expand it before calling the function.
321 */
322 if ((state->exp->type == XLAT_FUNC) && state->exp->call.inst->call_env && !state->env_data) {
323 unlang_action_t ua = call_env_expand(state, request, NULL, &state->env_data,
324 state->exp->call.inst->call_env);
325 switch (ua) {
327 goto fail;
328
332
333 default:
334 break;
335 }
336 }
337
338 xa = xlat_frame_eval_repeat(state->ctx, &state->values, &child,
339 request, state->head, &state->exp, state->env_data, &state->out);
340 switch (xa) {
342 fr_assert(child);
343
344 repeatable_set(frame); /* Was cleared by the interpreter */
345
346 /*
347 * Clear out the results of any previous expansions
348 * at this level. A frame may be used to evaluate
349 * multiple sibling nodes.
350 */
351 fr_value_box_list_talloc_free(&state->out);
352 if (unlang_xlat_push(state->ctx, state->success, &state->out, request, child, false) < 0) {
353 *p_result = RLM_MODULE_FAIL;
354 REXDENT();
356 }
358
360 repeatable_set(frame); /* Call the xlat code on the way back down */
362
364 if (!state->resume) {
365 RWDEBUG("Missing call to unlang_xlat_yield()");
366 goto fail;
367 }
368 repeatable_set(frame);
369 return UNLANG_ACTION_YIELD;
370
371 case XLAT_ACTION_DONE:
372 if (state->success) *state->success = true;
373 *p_result = RLM_MODULE_OK;
374 REXDENT();
376
377 case XLAT_ACTION_FAIL:
378 fail:
379 if (state->success) *state->success = false;
380 *p_result = RLM_MODULE_FAIL;
381 REXDENT();
383
384 default:
385 fr_assert(0);
386 goto fail;
387 }
388}
389
390/** Stub function for calling the xlat interpreter
391 *
392 * Calls the xlat interpreter and translates its wants and needs into
393 * unlang_action_t codes.
394 */
396{
397 unlang_frame_state_xlat_t *state = talloc_get_type_abort(frame->state, unlang_frame_state_xlat_t);
398 xlat_action_t xa;
399 xlat_exp_head_t const *child = NULL;
400
401 RINDENT_SAVE(state, request);
402 RINDENT();
403
404 xa = xlat_frame_eval(state->ctx, &state->values, &child, request, state->head, &state->exp);
405 switch (xa) {
407 fr_assert(child);
408
410
411 /*
412 * Clear out the results of any previous expansions
413 * at this level. A frame may be used to evaluate
414 * multiple sibling nodes.
415 */
416 fr_value_box_list_talloc_free(&state->out);
417 if (unlang_xlat_push(state->ctx, state->success, &state->out, request, child, false) < 0) {
418 *p_result = RLM_MODULE_FAIL;
419 RINDENT_RESTORE(request, state);
421 }
423
425 repeatable_set(frame); /* Call the xlat code on the way back down */
427
429 if (!state->resume) {
430 RWDEBUG("Missing call to unlang_xlat_yield()");
431 goto fail;
432 }
433 repeatable_set(frame);
434 return UNLANG_ACTION_YIELD;
435
436 case XLAT_ACTION_DONE:
437 if (state->success) *state->success = true;
438 *p_result = RLM_MODULE_OK;
439 RINDENT_RESTORE(request, state);
441
442 case XLAT_ACTION_FAIL:
443 fail:
444 if (state->success) *state->success = false;
445 *p_result = RLM_MODULE_FAIL;
446 RINDENT_RESTORE(request, state);
448
449 default:
450 fr_assert(0);
451 goto fail;
452 }
453}
454
455/** Send a signal (usually stop) to a request that's running an xlat expansions
456 *
457 * This is typically called via an "async" action, i.e. an action
458 * outside of the normal processing of the request.
459 *
460 * If there is no #xlat_func_signal_t callback defined, the action is ignored.
461 *
462 * @param[in] request The current request.
463 * @param[in] frame The current stack frame.
464 * @param[in] action What the request should do (the type of signal).
465 */
467{
468 unlang_frame_state_xlat_t *state = talloc_get_type_abort(frame->state, unlang_frame_state_xlat_t);
469
470 /*
471 * Delete timers, etc. when the xlat is cancelled.
472 */
473 if (action == FR_SIGNAL_CANCEL) {
474 TALLOC_FREE(state->event_ctx);
475 }
476
477 if (!state->signal || (state->sigmask & action)) return;
478
479 xlat_signal(state->signal, state->exp, request, state->rctx, action);
480}
481
482/** Called when we're ready to resume processing the request
483 *
484 * @param[in] p_result the result of the xlat function.
485 * - RLM_MODULE_OK on success.
486 * - RLM_MODULE_FAIL on failure.
487 * @param[in] request to resume processing.
488 * @param[in] frame the current stack frame.
489 * @return
490 * - UNLANG_ACTION_YIELD if additional asynchronous
491 * operations need to be performed.
492 * - UNLANG_ACTION_CALCULATE_RESULT if done.
493 */
495{
496 unlang_frame_state_xlat_t *state = talloc_get_type_abort(frame->state, unlang_frame_state_xlat_t);
497 xlat_action_t xa;
498 xlat_exp_head_t const *child = NULL;
499
500 fr_assert(state->resume != NULL);
501
502 /*
503 * Delete timers, etc. when the xlat is resumed.
504 */
505 TALLOC_FREE(state->event_ctx);
506
507 xa = xlat_frame_eval_resume(state->ctx, &state->values, &child, request, state->head, &state->exp,
508 &state->out, state->resume, state->rctx);
509 switch (xa) {
511 repeatable_set(frame);
512 return UNLANG_ACTION_YIELD;
513
514 case XLAT_ACTION_DONE:
515 if (state->success) *state->success = true;
516 *p_result = RLM_MODULE_OK;
517 RINDENT_RESTORE(request, state);
519
521 repeatable_set(frame);
523
525 fr_assert(child);
526
527 repeatable_set(frame); /* Was cleared by the interpreter */
528
529 /*
530 * Clear out the results of any previous expansions
531 * at this level. A frame may be used to evaluate
532 * multiple sibling nodes.
533 */
534 fr_value_box_list_talloc_free(&state->out);
535 if (unlang_xlat_push(state->ctx, state->success, &state->out, request, child, false) < 0) {
536 *p_result = RLM_MODULE_FAIL;
537 RINDENT_RESTORE(request, state);
539 }
541
542 case XLAT_ACTION_FAIL:
543 if (state->success) *state->success = false;
544 *p_result = RLM_MODULE_FAIL;
545 RINDENT_RESTORE(request, state);
547 /* DON'T SET DEFAULT */
548 }
549
550 fr_assert(0); /* Garbage xlat action */
551
552 *p_result = RLM_MODULE_FAIL;
553 RINDENT_RESTORE(request, state);
555}
556
557/** Yield a request back to the interpreter from within a module
558 *
559 * This passes control of the request back to the unlang interpreter, setting
560 * callbacks to execute when the request is 'signalled' asynchronously, or whatever
561 * timer or I/O event the module was waiting for occurs.
562 *
563 * @note The module function which calls #unlang_module_yield should return control
564 * of the C stack to the unlang interpreter immediately after calling #unlang_xlat_yield.
565 * A common pattern is to use ``return unlang_xlat_yield(...)``.
566 *
567 * @param[in] request The current request.
568 * @param[in] resume Called on unlang_interpret_mark_runnable().
569 * @param[in] signal Called on unlang_action().
570 * @param[in] sigmask Signals to block.
571 * @param[in] rctx to pass to the callbacks.
572 * @return always returns XLAT_ACTION_YIELD
573 */
575 xlat_func_t resume, xlat_func_signal_t signal, fr_signal_t sigmask,
576 void *rctx)
577{
578 unlang_stack_t *stack = request->stack;
579 unlang_stack_frame_t *frame = &stack->frame[stack->depth];
580 unlang_frame_state_xlat_t *state = talloc_get_type_abort(frame->state, unlang_frame_state_xlat_t);
581
583
584 /*
585 * Over-ride whatever functions were there before.
586 */
587 state->resume = resume;
588 state->signal = signal;
589 state->sigmask = sigmask;
590 state->rctx = rctx;
591
592 return XLAT_ACTION_YIELD;
593}
594
595/** Frees an unlang event, removing it from the request's event loop
596 *
597 * @param[in] ev The event to free.
598 *
599 * @return 0
600 */
602{
603 if (ev->ev) (void) fr_timer_delete(&(ev->ev));
604
605 return 0;
606}
607
608/** Call the callback registered for a timeout event
609 *
610 * @param[in] tl the event timer was inserted into.
611 * @param[in] now The current time, as held by the event_list.
612 * @param[in] uctx unlang_module_event_t structure holding callbacks.
613 *
614 */
616{
617 unlang_xlat_retry_t *ev = talloc_get_type_abort(uctx, unlang_xlat_retry_t);
618 request_t *request = ev->request;
619
620 switch (fr_retry_next(&ev->retry, now)) {
622 /*
623 * Call the module retry handler, with the state of the retry. On MRD / MRC, the
624 * module is made runnable again, and the "resume" function is called.
625 */
626 ev->retry_cb(XLAT_CTX(ev->inst->data,
627 ev->thread->data,
628 ev->thread->mctx, NULL,
629 UNCONST(void *, ev->rctx)),
630 ev->request, &ev->retry);
631
632 /*
633 * Reset the timer.
634 */
635 if (fr_timer_at(ev, unlang_interpret_event_list(request)->tl, &ev->ev, ev->retry.next,
636 false, unlang_xlat_event_retry_handler, request) < 0) {
637 RPEDEBUG("Failed inserting event");
638 talloc_free(ev);
640 }
641 return;
642
643 case FR_RETRY_MRD:
644 RDEBUG("Reached max_rtx_duration (%pVs > %pVs) - sending timeout",
646 break;
647
648 case FR_RETRY_MRC:
649 RDEBUG("Reached max_rtx_count %u- sending timeout",
650 ev->retry.config->mrc);
651 break;
652 }
653
654 /*
655 * Run the retry handler on MRD / MRC, too.
656 */
657 ev->retry_cb(XLAT_CTX(ev->inst->data,
658 ev->thread->data,
659 ev->thread->mctx, NULL,
660 UNCONST(void *, ev->rctx)),
661 ev->request, &ev->retry);
662
663 /*
664 * On final timeout, always mark the request as runnable.
665 */
666 talloc_free(ev);
668}
669
670
671/** Yield a request back to the interpreter, with retries
672 *
673 * This passes control of the request back to the unlang interpreter, setting
674 * callbacks to execute when the request is 'signalled' asynchronously, or when
675 * the retry timer hits.
676 *
677 * @note The module function which calls #unlang_module_yield_to_retry should return control
678 * of the C stack to the unlang interpreter immediately after calling #unlang_module_yield_to_retry.
679 * A common pattern is to use ``return unlang_module_yield_to_retry(...)``.
680 *
681 * @param[in] request The current request.
682 * @param[in] resume Called on unlang_interpret_mark_runnable().
683 * @param[in] retry Called on when a retry timer hits
684 * @param[in] signal Called on unlang_action().
685 * @param[in] sigmask Set of signals to block.
686 * @param[in] rctx to pass to the callbacks.
687 * @param[in] retry_cfg to set up the retries
688 * @return
689 * - XLAT_ACTION_YIELD on success
690 * - XLAT_ACTION_FAIL on failure
691 */
693 xlat_func_signal_t signal, fr_signal_t sigmask, void *rctx,
694 fr_retry_config_t const *retry_cfg)
695{
696 unlang_stack_t *stack = request->stack;
697 unlang_stack_frame_t *frame = &stack->frame[stack->depth];
699 unlang_frame_state_xlat_t *state = talloc_get_type_abort(frame->state, unlang_frame_state_xlat_t);
700
701 fr_assert(stack->depth > 0);
703
704 if (!state->event_ctx) MEM(state->event_ctx = talloc_zero(state, bool));
705
706 ev = talloc_zero(state->event_ctx, unlang_xlat_retry_t);
707 if (unlikely(!ev)) return XLAT_ACTION_FAIL;
708
709 ev->request = request;
710 fr_assert(state->exp->type == XLAT_FUNC);
711 ev->inst = state->exp->call.inst;
713 ev->retry_cb = retry;
714 ev->rctx = rctx;
715
716 fr_retry_init(&ev->retry, fr_time(), retry_cfg);
717
718 if (fr_timer_at(request, unlang_interpret_event_list(request)->tl,
719 &ev->ev, ev->retry.next,
720 false, unlang_xlat_event_retry_handler, ev) < 0) {
721 RPEDEBUG("Failed inserting event");
722 talloc_free(ev);
723 return XLAT_ACTION_FAIL;
724 }
725
726 talloc_set_destructor(ev, _unlang_xlat_retry_free);
727
728 return unlang_xlat_yield(request, resume, signal, sigmask, rctx);
729}
730
731/** Evaluate a "pure" (or not impure) xlat
732 *
733 * @param[in] ctx To allocate value boxes and values in.
734 * @param[out] out Where to write the result of the expansion.
735 * @param[in] request to push xlat onto.
736 * @param[in] xlat to evaluate.
737 * @return
738 * - 0 on success.
739 * - -1 on failure.
740 */
741int unlang_xlat_eval(TALLOC_CTX *ctx, fr_value_box_list_t *out, request_t *request, xlat_exp_head_t const *xlat)
742{
743 bool success = false;
744
745 if (xlat->flags.impure_func) {
746 fr_strerror_const("Expansion requires async operations");
747 return -1;
748 }
749
750 if (unlang_xlat_push(ctx, &success, out, request, xlat, UNLANG_TOP_FRAME) < 0) return -1;
751
753
754 if (!success) return -1;
755
756 return 0;
757}
758
759/** Evaluate a "pure" (or not impure) xlat
760 *
761 * @param[in] ctx To allocate value boxes and values in.
762 * @param[out] vb output value-box
763 * @param[in] type expected type
764 * @param[in] enumv enum for type
765 * @param[in] request to push xlat onto.
766 * @param[in] xlat to evaluate.
767 * @return
768 * - 0 on success.
769 * - -1 on failure.
770 */
771int unlang_xlat_eval_type(TALLOC_CTX *ctx, fr_value_box_t *vb, fr_type_t type, fr_dict_attr_t const *enumv, request_t *request, xlat_exp_head_t const *xlat)
772{
773 fr_value_box_t *src;
774 fr_value_box_list_t list;
775
777 fr_strerror_const("Invalid type for output of evaluation");
778 return -1;
779 }
780
781 fr_value_box_list_init(&list);
782
783 if (unlang_xlat_eval(ctx, &list, request, xlat) < 0) return -1;
784
785 fr_value_box_init(vb, type, NULL, false);
786
787 switch (type) {
788 default:
789 /*
790 * Take only the first entry from the list.
791 */
792 src = fr_value_box_list_head(&list);
793 if (!src) {
794 fr_strerror_const("Expression returned no results");
795 fail:
796 fr_value_box_list_talloc_free(&list);
797 return -1;
798 }
799
800 if (fr_value_box_cast(ctx, vb, type, enumv, src) < 0) goto fail;
801 fr_value_box_list_talloc_free(&list);
802 break;
803
804 case FR_TYPE_STRING:
805 case FR_TYPE_OCTETS:
806 /*
807 * No output: create an empty string.
808 *
809 * The "concat in place" function returns an error for empty input, which is arguably not
810 * what we want to do here.
811 */
812 if (fr_value_box_list_empty(&list)) {
813 break;
814 }
815
816 if (fr_value_box_list_concat_in_place(ctx, vb, &list, type, FR_VALUE_BOX_LIST_FREE_BOX, false, SIZE_MAX) < 0) {
817 goto fail;
818 }
819 break;
820 }
821
822 return 0;
823}
824
825
826/** Register xlat operation with the interpreter
827 *
828 */
830{
832 &(unlang_op_t){
833 .name = "xlat_eval",
834 .interpret = unlang_xlat,
835 .signal = unlang_xlat_signal,
836 .debug_braces = false,
837 .frame_state_size = sizeof(unlang_frame_state_xlat_t),
838 .frame_state_type = "unlang_frame_state_xlat_t",
839 });
840}
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_STOP_PROCESSING
Break out of processing the current request (unwind).
Definition action.h:43
@ UNLANG_ACTION_FAIL
Encountered an unexpected error.
Definition action.h:36
@ UNLANG_ACTION_CALCULATE_RESULT
Calculate a new section rlm_rcode_t value.
Definition action.h:37
@ UNLANG_ACTION_YIELD
Temporarily pause execution until an event occurs.
Definition action.h:42
#define UNCONST(_type, _ptr)
Remove const qualification from a pointer.
Definition build.h:167
#define RCSID(id)
Definition build.h:485
#define FALL_THROUGH
clang 10 doesn't recognised the FALL-THROUGH comment anymore
Definition build.h:324
#define unlikely(_x)
Definition build.h:383
#define UNUSED
Definition build.h:317
unlang_action_t call_env_expand(TALLOC_CTX *ctx, request_t *request, call_env_result_t *env_result, void **env_data, call_env_t const *call_env)
Initialise the expansion of a call environment.
Definition call_env.c:296
#define fr_dcursor_init(_cursor, _head)
Initialise a cursor.
Definition dcursor.h:732
#define MEM(x)
Definition debug.h:36
@ FR_EVENT_FILTER_IO
Combined filter for read/write functions/.
Definition event.h:84
rlm_rcode_t unlang_interpret(request_t *request, bool running)
Run the interpreter for a current request.
Definition interpret.c:782
void unlang_interpret_mark_runnable(request_t *request)
Mark a request as resumable.
Definition interpret.c:1374
int unlang_interpret_push(request_t *request, unlang_t const *instruction, rlm_rcode_t default_rcode, bool do_next_sibling, bool top_frame)
Push a new frame onto the stack.
Definition interpret.c:161
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
#define REXDENT()
Exdent (unindent) R* messages by one level.
Definition log.h:443
#define RWDEBUG(fmt,...)
Definition log.h:361
#define RINDENT_SAVE(_x, _request)
Save indentation for later restoral.
Definition log.h:388
#define RINDENT_RESTORE(_request, _x)
Definition log.h:392
#define RPEDEBUG(fmt,...)
Definition log.h:376
#define RINDENT()
Indent R* messages by one level.
Definition log.h:430
void unlang_register(int type, unlang_op_t *op)
Register an operation with the interpreter.
Definition base.c:63
talloc_free(reap)
int fr_event_fd_delete(fr_event_list_t *el, int fd, fr_event_filter_t filter)
Remove a file descriptor from the event loop.
Definition event.c:1206
static char * stack[MAX_STACK]
Definition radmin.c:158
fr_type_t
@ FR_TYPE_STRING
String of printable characters.
@ FR_TYPE_OCTETS
Raw octets.
@ MOD_ACTION_RETURN
Definition mod_action.h:40
#define fr_assert(_expr)
Definition rad_assert.h:38
#define RDEBUG(fmt,...)
Definition radclient.h:53
rlm_rcode_t
Return codes indicating the result of the module call.
Definition rcode.h:40
@ RLM_MODULE_INVALID
The module considers the request invalid.
Definition rcode.h:45
@ RLM_MODULE_OK
The module is OK, continue.
Definition rcode.h:43
@ RLM_MODULE_FAIL
Module failed, don't reply.
Definition rcode.h:42
@ RLM_MODULE_DISALLOW
Reject the request (user is locked out).
Definition rcode.h:46
@ RLM_MODULE_REJECT
Immediately reject the request.
Definition rcode.h:41
@ RLM_MODULE_NOTFOUND
User not found.
Definition rcode.h:47
@ RLM_MODULE_UPDATED
OK (pairs modified).
Definition rcode.h:49
@ RLM_MODULE_NOT_SET
Error resolving rcode (should not be returned by modules).
Definition rcode.h:51
@ RLM_MODULE_NOOP
Module succeeded without doing anything.
Definition rcode.h:48
@ RLM_MODULE_HANDLED
The module handled the request, so stop.
Definition rcode.h:44
#define tmpl_is_data(vpt)
Definition tmpl.h:211
fr_signal_t
Signals that can be generated/processed by request signal handlers.
Definition signal.h:38
@ FR_SIGNAL_CANCEL
Request has been cancelled.
Definition signal.h:40
fr_aka_sim_id_type_t type
#define fr_time()
Allow us to arbitrarily manipulate time.
Definition state_test.c:8
#define talloc_get_type_abort_const
Definition talloc.h:282
#define fr_time_sub(_a, _b)
Subtract one time from another.
Definition time.h:229
"server local" time.
Definition time.h:69
int fr_timer_delete(fr_timer_t **ev_p)
Delete a timer event and free its memory.
Definition timer.c:643
An event timer list.
Definition timer.c:53
A timer event.
Definition timer.c:79
#define fr_timer_at(...)
Definition timer.h:80
goto success
Definition tmpl_eval.c:1444
fr_timer_t * ev
retry timer just for this xlat
Definition xlat.c:87
int unlang_xlat_eval(TALLOC_CTX *ctx, fr_value_box_list_t *out, request_t *request, xlat_exp_head_t const *xlat)
Evaluate a "pure" (or not impure) xlat.
Definition xlat.c:741
static int unlang_xlat_push_internal(TALLOC_CTX *ctx, bool *p_success, fr_value_box_list_t *out, request_t *request, xlat_exp_head_t const *xlat, xlat_exp_t *node, bool top_frame)
Push a pre-compiled xlat onto the stack for evaluation.
Definition xlat.c:204
xlat_exp_head_t const * head
of the xlat list
Definition xlat.c:42
TALLOC_CTX * ctx
to allocate boxes and values in.
Definition xlat.c:40
fr_unlang_xlat_fd_event_t fd_read
Function to call when FD is readable.
Definition xlat.c:70
int unlang_xlat_eval_type(TALLOC_CTX *ctx, fr_value_box_t *vb, fr_type_t type, fr_dict_attr_t const *enumv, request_t *request, xlat_exp_head_t const *xlat)
Evaluate a "pure" (or not impure) xlat.
Definition xlat.c:771
TALLOC_CTX * event_ctx
for temporary events
Definition xlat.c:41
xlat_func_signal_t signal
called on signal
Definition xlat.c:55
static void unlang_xlat_event_retry_handler(UNUSED fr_timer_list_t *tl, fr_time_t now, void *uctx)
Call the callback registered for a timeout event.
Definition xlat.c:615
xlat_thread_inst_t * thread
Thread specific xlat instance.
Definition xlat.c:82
static unlang_action_t unlang_xlat_resume(rlm_rcode_t *p_result, request_t *request, unlang_stack_frame_t *frame)
Called when we're ready to resume processing the request.
Definition xlat.c:494
static int _unlang_xlat_event_free(unlang_xlat_event_t *ev)
Frees an unlang event, removing it from the request's event loop.
Definition xlat.c:97
void * rctx
for resume / signal
Definition xlat.c:57
xlat_action_t unlang_xlat_yield_to_retry(request_t *request, xlat_func_t resume, fr_unlang_xlat_retry_t retry, xlat_func_signal_t signal, fr_signal_t sigmask, void *rctx, fr_retry_config_t const *retry_cfg)
Yield a request back to the interpreter, with retries.
Definition xlat.c:692
fr_dcursor_t values
Values aggregated so far.
Definition xlat.c:44
fr_value_box_list_t out
Head of the result of a nested expansion.
Definition xlat.c:52
fr_timer_t * ev
Event in this worker's event heap.
Definition xlat.c:76
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
xlat_func_t resume
called on resume
Definition xlat.c:54
fr_unlang_xlat_retry_t retry_cb
callback to run on timeout
Definition xlat.c:84
fr_retry_t retry
retry timers, etc.
Definition xlat.c:88
request_t * request
Request this event pertains to.
Definition xlat.c:67
bool * success
If set, where to record the result of the execution.
Definition xlat.c:59
int fd
File descriptor to wait on.
Definition xlat.c:68
fr_unlang_xlat_timeout_t timeout
Function to call on timeout.
Definition xlat.c:69
request_t * request
Definition xlat.c:80
int unlang_xlat_push_node(TALLOC_CTX *ctx, bool *p_success, fr_value_box_list_t *out, request_t *request, xlat_exp_t *node)
Push a pre-compiled xlat onto the stack for evaluation.
Definition xlat.c:307
static void unlang_xlat_event_timeout_handler(UNUSED fr_timer_list_t *tl, fr_time_t now, void *uctx)
Call the callback registered for a timeout event.
Definition xlat.c:118
xlat_inst_t * inst
xlat instance data.
Definition xlat.c:73
static unlang_action_t unlang_xlat(rlm_rcode_t *p_result, request_t *request, unlang_stack_frame_t *frame)
Stub function for calling the xlat interpreter.
Definition xlat.c:395
xlat_inst_t * inst
xlat instance data.
Definition xlat.c:81
void * rctx
rctx data to pass to timeout callback
Definition xlat.c:85
fr_unlang_xlat_fd_event_t fd_write
Function to call when FD is writable.
Definition xlat.c:71
fr_signal_t sigmask
Signals to block.
Definition xlat.c:56
static int _unlang_xlat_retry_free(unlang_xlat_retry_t *ev)
Frees an unlang event, removing it from the request's event loop.
Definition xlat.c:601
int unlang_xlat_timeout_add(request_t *request, fr_unlang_xlat_timeout_t callback, void const *rctx, fr_time_t when)
Add a timeout for an xlat handler.
Definition xlat.c:152
rindent_t indent
indentation
Definition xlat.c:46
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
void * env_data
Expanded per call environment tmpls.
Definition xlat.c:48
void const * rctx
rctx data to pass to callbacks.
Definition xlat.c:75
static void unlang_xlat_signal(request_t *request, unlang_stack_frame_t *frame, fr_signal_t action)
Send a signal (usually stop) to a request that's running an xlat expansions.
Definition xlat.c:466
static unlang_action_t unlang_xlat_repeat(rlm_rcode_t *p_result, request_t *request, unlang_stack_frame_t *frame)
Definition xlat.c:313
void unlang_xlat_init(void)
Register xlat operation with the interpreter.
Definition xlat.c:829
xlat_exp_t const * exp
current one we're evaluating
Definition xlat.c:43
fr_unlang_xlat_fd_event_t fd_error
Function to call when FD has errored.
Definition xlat.c:72
xlat_thread_inst_t * thread
Thread specific xlat instance.
Definition xlat.c:74
State of an xlat expansion.
Definition xlat.c:39
Wrap an fr_timer_t providing data needed for unlang events.
Definition xlat.c:66
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
void(* fr_unlang_xlat_fd_event_t)(xlat_ctx_t const *xctx, request_t *request, int fd)
A callback when the FD is ready for reading.
Definition xlat.h:210
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
void(* fr_unlang_xlat_retry_t)(xlat_ctx_t const *xctx, request_t *request, fr_retry_t const *retry)
A callback when the the timeout occurs.
Definition xlat.h:197
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
void * data
xlat node specific instance data.
Definition xlat.h:82
void(* fr_unlang_xlat_timeout_t)(xlat_ctx_t const *xctx, request_t *request, fr_time_t fired)
A callback when the the timeout occurs.
Definition xlat.h:183
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 impure_func
xlat contains an impure function
Definition xlat.h:115
module_ctx_t const * mctx
A synthesised module calling ctx containing module global and thread instance data.
Definition xlat.h:100
Instance data for an xlat expansion node.
Definition xlat.h:75
Thread specific instance data for xlat expansion node.
Definition xlat.h:89
Private interpreter structures and functions.
void * state
Stack frame specialisations.
#define UNLANG_NEXT_STOP
Definition unlang_priv.h:92
@ UNLANG_TYPE_XLAT
Represents one level of an xlat expansion.
Definition unlang_priv.h:74
static void frame_repeat(unlang_stack_frame_t *frame, unlang_process_t process)
Mark the current stack frame up for repeat, and set a new process function.
unlang_t const * instruction
The unlang node we're evaluating.
static void repeatable_set(unlang_stack_frame_t *frame)
unlang_process_t process
function to call for interpreting this stack 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.
fr_retry_state_t fr_retry_next(fr_retry_t *r, fr_time_t now)
Initialize a retransmission counter.
Definition retry.c:108
void fr_retry_init(fr_retry_t *r, fr_time_t now, fr_retry_config_t const *config)
Initialize a retransmission counter.
Definition retry.c:36
fr_time_t start
when we started the retransmission
Definition retry.h:53
#define RETRY_INIT
Definition retry.h:39
uint32_t mrc
Maximum retransmission count.
Definition retry.h:36
fr_retry_config_t const * config
master configuration
Definition retry.h:52
@ FR_RETRY_MRC
reached maximum retransmission count
Definition retry.h:47
@ FR_RETRY_CONTINUE
Definition retry.h:46
@ FR_RETRY_MRD
reached maximum retransmission duration
Definition retry.h:48
fr_time_delta_t mrd
Maximum retransmission duration.
Definition retry.h:35
fr_time_t next
when the next timer should be set
Definition retry.h:55
#define fr_strerror_const(_msg)
Definition strerror.h:223
#define fr_type_is_structural(_x)
Definition types.h:371
int fr_value_box_cast(TALLOC_CTX *ctx, fr_value_box_t *dst, fr_type_t dst_type, fr_dict_attr_t const *dst_enumv, fr_value_box_t const *src)
Convert one type of fr_value_box_t to another.
Definition value.c:3370
int fr_value_box_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_BOX
Free each processed box.
Definition value.h:229
#define fr_box_time_delta(_val)
Definition value.h:354
#define fr_value_box_init(_vb, _type, _enumv, _tainted)
Initialise a fr_value_box_t.
Definition value.h:598
static size_t char ** out
Definition value.h:1012
#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
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
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
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
xlat_flags_t flags
Flags that control resolution and evaluation.
Definition xlat_priv.h:188
@ 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
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
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