The FreeRADIUS server $Id: 15bac2a4c627c01d1aa2047687b3418955ac7f00 $
Loading...
Searching...
No Matches
xlat_priv.h
Go to the documentation of this file.
1#pragma once
2/*
3 * This program is free software; you can redistribute it and/or modify
4 * it under the terms of the GNU General Public License as published by
5 * the Free Software Foundation; either version 2 of the License, or
6 * (at your option) any later version.
7 *
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 * GNU General Public License for more details.
12 *
13 * You should have received a copy of the GNU General Public License
14 * along with this program; if not, write to the Free Software
15 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
16 */
17
18/**
19 * $Id: 75d7dd2ded53785448ca050cf15baa60ff2e21c1 $
20 *
21 * @file src/lib/unlang/xlat_priv.h
22 * @brief String expansion ("translation"). Implements %Attribute -> value
23 *
24 * Private structures for the xlat tokenizer and xlat eval code.
25 *
26 * @copyright 2000,2006 The FreeRADIUS server project
27 * @copyright 2000 Alan DeKok (aland@freeradius.org)
28 */
29#ifdef __cplusplus
30extern "C" {
31#endif
32
33#include <freeradius-devel/unlang/xlat_ctx.h>
34#include <freeradius-devel/unlang/xlat.h>
35#include <freeradius-devel/unlang/xlat_func.h>
36#include <freeradius-devel/server/module_ctx.h>
37#include <freeradius-devel/io/pair.h>
38#include <freeradius-devel/util/talloc.h>
39#include <freeradius-devel/build.h>
40
41#ifdef DEBUG_XLAT
42# define XLAT_DEBUG RDEBUG3
43#else
44# define XLAT_DEBUG(...)
45#endif
46
47/*
48 * Allow public and private versions of the same structures
49 */
50#ifdef _CONST
51# error _CONST can only be defined in the local header
52#endif
53#ifndef _XLAT_PRIVATE
54# define _CONST const
55#else
56# define _CONST
57#endif
58
59typedef struct xlat_s {
60 fr_rb_node_t func_node; //!< Entry in the xlat function tree.
61 fr_dlist_t mi_entry; //!< Entry in the list of functions
62 ///< registered to a module instance.
63
64 char const *name; //!< Name of xlat function.
65 xlat_func_t func; //!< async xlat function (async unsafe).
66
67 bool internal; //!< If true, cannot be redefined.
68 fr_token_t token; //!< for expressions
69
70 module_inst_ctx_t *mctx; //!< Original module instantiation ctx if this
71 ///< xlat was registered by a module.
72
73 xlat_instantiate_t instantiate; //!< Instantiation function.
74 xlat_detach_t detach; //!< Destructor for when xlat instances are freed.
75 char const *inst_type; //!< C type of instance structure.
76 size_t inst_size; //!< Size of instance data to pre-allocate.
77 void *uctx; //!< uctx to pass to instantiation functions.
78
79 xlat_thread_instantiate_t thread_instantiate; //!< Thread instantiation function.
80 xlat_thread_detach_t thread_detach; //!< Destructor for when xlat thread instance data
81 ///< is freed.
82 char const *thread_inst_type; //!< C type of thread instance structure.
83 size_t thread_inst_size; //!< Size of the thread instance data to pre-allocate.
84 void *thread_uctx; //!< uctx to pass to instantiation functions.
85
86 xlat_print_t print; //!< function to call when printing
87 xlat_resolve_t resolve; //!< function to call when resolving
88 xlat_purify_t purify; //!< function to call when purifying the node.
89
90 xlat_flags_t flags; //!< various flags
91
92 xlat_input_type_t input_type; //!< Type of input used.
93 xlat_arg_parser_t const *args; //!< Definition of args consumed.
94
95 call_env_method_t const *call_env_method; //!< Optional tmpl expansions performed before calling the
96 ///< xlat. Typically used for xlats which refer to tmpls
97 ///< in their module config.
98
99 fr_value_box_safe_for_t return_safe_for; //!< Escaped value to set in output boxes.
100 fr_type_t return_type; //!< Function is guaranteed to return one or more boxes
101 ///< of this type. If the return type is FR_TYPE_VOID
102 ///< then the xlat function can return any type of output.
104
105typedef enum {
106 XLAT_INVALID = 0x0000, //!< Bad expansion
107 XLAT_BOX = 0x0001, //!< #fr_value_box_t
108 XLAT_ONE_LETTER = 0x0002, //!< Special "one-letter" expansion
109 XLAT_FUNC = 0x0004, //!< xlat module
110 XLAT_FUNC_UNRESOLVED = 0x0008, //!< func needs resolution during pass2.
111 XLAT_TMPL = 0x0010, //!< xlat attribute
112#ifdef HAVE_REGEX
113 XLAT_REGEX = 0x0020, //!< regex reference %{1}, etc.
114#endif
115 XLAT_GROUP = 0x0100 //!< encapsulated string of xlats
117
118/** An xlat function call
119 *
120 */
121typedef struct {
122 uint64_t id; //!< Identifier unique to each permanent xlat node.
123 ///< This is used by the instantiation code to order
124 ///< nodes by the time they were created.
125
126 xlat_t const *func; //!< The xlat expansion to expand format with.
127 xlat_exp_head_t *args; //!< arguments to the function call
128
129 fr_dict_t const *dict; //!< Records the namespace this xlat call was created in.
130 ///< Used by the purify code to run fake requests in
131 ///< the correct namespace, and accessible to instantiation
132 ///< functions in case the xlat needs to perform runtime
133 ///< resolution of attributes (as with %eval()).
134
135 xlat_inst_t *inst; //!< Instance data for the #xlat_t.
136 xlat_thread_inst_t *thread_inst; //!< Thread specific instance.
137 ///< ONLY USED FOR EPHEMERAL XLATS.
138
139 bool ephemeral; //!< Instance data is ephemeral (not inserted)
140 ///< into the instance tree.
141 xlat_input_type_t input_type; //!< The input type used inferred from the
142 ///< bracketing style.
144
145/** An xlat expansion node
146 *
147 * These nodes form a tree which represents one or more nested expansions.
148 */
151
152 char const * _CONST fmt; //!< The original format string (a talloced buffer).
153 fr_token_t quote; //!< Type of quoting around XLAT_GROUP types.
154
155 xlat_flags_t flags; //!< Flags that control resolution and evaluation.
156 xlat_type_t _CONST type; //!< type of this expansion.
157
158#ifndef NDEBUG
159 char const * _CONST file; //!< File where the xlat was allocated.
160 int line; //!< Line where the xlat was allocated.
161#endif
162
163 union {
164 xlat_exp_head_t *group; //!< children of a group
165
166 /** An tmpl_t reference
167 *
168 * May be an attribute to expand, or an exec reference, or a value-box, ...
169 */
170 tmpl_t *vpt;
171
172 /** A capture group, i.e. for %{1} and friends
173 */
174 int regex_index;
175
176 /** An xlat function call
177 */
178 xlat_call_t call;
179
180 /** A value box
181 */
183 };
184};
185
188 xlat_flags_t flags; //!< Flags that control resolution and evaluation.
189 bool instantiated; //!< temporary flag until we fix more things
190
191#ifndef NDEBUG
192 char const * _CONST file; //!< File where the xlat was allocated.
193 int line; //!< Line where the xlat was allocated.
194#endif
195};
196
197typedef struct {
198 char const *out; //!< Output data.
199 size_t len; //!< Length of the output string.
200} xlat_out_t;
201/*
202 * Helper functions
203 */
204
206{
207 if (!head) return NULL;
208
209 return fr_dlist_head(&head->dlist);
210}
211
212/** Iterate over the contents of a list, only one level
213 *
214 * @param[in] _list_head to iterate over.
215 * @param[in] _iter Name of iteration variable.
216 * Will be declared in the scope of the loop.
217 */
218#define xlat_exp_foreach(_list_head, _iter) fr_dlist_foreach(&((_list_head)->dlist), xlat_exp_t, _iter)
219
220/** Merge flags from child to parent
221 *
222 * For pass2, if either the parent or child is marked up for pass2, then the parent
223 * is marked up for pass2.
224 */
225static inline CC_HINT(nonnull) void xlat_flags_merge(xlat_flags_t *parent, xlat_flags_t const *child)
226{
227 parent->needs_resolving |= child->needs_resolving;
228 parent->pure &= child->pure; /* purity can only be removed, never added */
229 parent->can_purify |= child->can_purify; /* there is SOME node under us which can be purified */
230 parent->constant &= child->constant;
231 parent->impure_func |= child->impure_func;
232}
233
234static inline CC_HINT(nonnull) int xlat_exp_insert_tail(xlat_exp_head_t *head, xlat_exp_t *node)
235{
236 XLAT_VERIFY(node);
237
238 xlat_flags_merge(&head->flags, &node->flags);
239 return fr_dlist_insert_tail(&head->dlist, node);
240}
241
242static inline xlat_exp_t *xlat_exp_next(xlat_exp_head_t const *head, xlat_exp_t const *node)
243{
244 if (!head) return NULL;
245
246 return fr_dlist_next(&head->dlist, node);
247}
248
249/*
250 * xlat_purify.c
251 */
253
254/** Walker callback for xlat_walk()
255 *
256 * @param[in] exp being evaluated.
257 * @param[in] uctx passed to xlat_walk.
258 * @return
259 * - 1 for "prune walk here".
260 * - 0 on success.
261 * - <0 if node evaluation failed. Causes xlat_walk to return the negative integer.
262 */
263typedef int (*xlat_walker_t)(xlat_exp_t *exp, void *uctx);
264
265/*
266 * xlat_alloc.c
267 */
269#define xlat_exp_head_alloc(_ctx) _xlat_exp_head_alloc(NDEBUG_LOCATION_EXP _ctx)
270
272#define xlat_exp_set_type(_node, _type) _xlat_exp_set_type(NDEBUG_LOCATION_EXP _node, _type)
273
275#define xlat_exp_alloc_null(_ctx) _xlat_exp_alloc_null(NDEBUG_LOCATION_EXP _ctx)
276
277xlat_exp_t *_xlat_exp_alloc(NDEBUG_LOCATION_ARGS TALLOC_CTX *ctx, xlat_type_t type, char const *in, size_t inlen);
278#define xlat_exp_alloc(_ctx, _type, _in, _inlen) _xlat_exp_alloc(NDEBUG_LOCATION_EXP _ctx, _type, _in, _inlen)
279
280void xlat_exp_set_name(xlat_exp_t *node, char const *fmt, size_t len) CC_HINT(nonnull);
281void xlat_exp_set_name_shallow(xlat_exp_t *node, char const *fmt) CC_HINT(nonnull);
282void xlat_exp_set_name_buffer(xlat_exp_t *node, char const *fmt) CC_HINT(nonnull);
283
284/*
285 * xlat_func.c
286 */
287xlat_t *xlat_func_find(char const *name, ssize_t namelen);
288
289/*
290 * xlat_eval.c
291 */
294extern fr_dict_attr_t const *attr_cast_base;
295
296fr_dict_attr_t const *xlat_time_res_attr(char const *res);
297
298/*
299 * xlat_tokenize.c
300 */
301extern bool const xlat_func_chars[UINT8_MAX + 1];
302
304
305void xlat_signal(xlat_func_signal_t signal, xlat_exp_t const *exp,
306 request_t *request, void *rctx, fr_signal_t action);
307
309 xlat_exp_head_t const **child,
310 request_t *request, xlat_exp_head_t const *head, xlat_exp_t const **in,
311 fr_value_box_list_t *result, xlat_func_t resume, void *rctx);
312
314 xlat_exp_head_t const **child,
315 request_t *request, xlat_exp_head_t const *head, xlat_exp_t const **in,
316 void *env_data, fr_value_box_list_t *result) CC_HINT(nonnull(1,2,3,4));
317
318xlat_action_t xlat_frame_eval(TALLOC_CTX *ctx, fr_dcursor_t *out, xlat_exp_head_t const **child,
319 request_t *request, xlat_exp_head_t const *head, xlat_exp_t const **in);
320
322
323int xlat_eval_init(void);
324
325void xlat_eval_free(void);
326
327void unlang_xlat_init(void);
328
329int unlang_xlat_push_node(TALLOC_CTX *ctx, bool *p_success, fr_value_box_list_t *out,
330 request_t *request, xlat_exp_t *node);
331
332int xlat_decode_value_box_list(TALLOC_CTX *ctx, fr_pair_list_t *out,
333 request_t *request, void *decode_ctx, fr_pair_decode_t decode,
334 fr_value_box_list_t *in);
335/*
336 * xlat_expr.c
337 */
339
340/*
341 * xlat_tokenize.c
342 */
344 fr_sbuff_escape_rules_t const *e_rules, char c);
345
346#ifdef __cplusplus
347}
348#endif
static int const char * fmt
Definition acutest.h:573
#define NDEBUG_LOCATION_ARGS
Pass caller information to the function.
Definition build.h:263
static fr_slen_t in
Definition dict.h:831
static void * fr_dlist_head(fr_dlist_head_t const *list_head)
Return the HEAD item of a list or NULL if the list is empty.
Definition dlist.h:486
static int fr_dlist_insert_tail(fr_dlist_head_t *list_head, void *ptr)
Insert an item into the tail of a list.
Definition dlist.h:378
static void * fr_dlist_next(fr_dlist_head_t const *list_head, void const *ptr)
Get the next item in a list.
Definition dlist.h:555
Head of a doubly linked list.
Definition dlist.h:51
Entry in a doubly linked list.
Definition dlist.h:41
ssize_t(* fr_pair_decode_t)(TALLOC_CTX *ctx, fr_pair_list_t *out, fr_dict_attr_t const *parent, uint8_t const *data, size_t data_len, void *decode_ctx)
A generic interface for decoding fr_pair_ts.
Definition pair.h:129
fr_type_t
long int ssize_t
#define UINT8_MAX
Temporary structure to hold arguments for instantiation calls.
Definition module_ctx.h:50
static fr_radius_decode_fail_t decode(TALLOC_CTX *ctx, fr_pair_list_t *reply, uint8_t *response_code, bio_handle_t *h, request_t *request, bio_request_t *u, uint8_t const request_authenticator[static RADIUS_AUTH_VECTOR_LENGTH], uint8_t *data, size_t data_len)
Decode response packet data, extracting relevant information and validating the packet.
Definition bio.c:1073
static char const * name
static fr_slen_t vpt
Definition tmpl.h:1274
fr_signal_t
Signals that can be generated/processed by request signal handlers.
Definition signal.h:38
fr_aka_sim_id_type_t type
enum fr_token fr_token_t
int(* xlat_thread_detach_t)(xlat_thread_inst_ctx_t const *xctx)
xlat thread detach callback
Definition xlat.h:289
int(* xlat_detach_t)(xlat_inst_ctx_t const *xctx)
xlat detach callback
Definition xlat.h:274
static fr_slen_t head
Definition xlat.h:418
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
bool can_purify
if the xlat has a pure function with pure arguments.
Definition xlat.h:116
xlat_input_type_t
Definition xlat.h:47
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
#define XLAT_VERIFY(_node)
Definition xlat.h:464
bool pure
has no external side effects, true for BOX, LITERAL, and some functions
Definition xlat.h:114
bool needs_resolving
Needs pass2 resolution.
Definition xlat.h:113
int(* xlat_thread_instantiate_t)(xlat_thread_inst_ctx_t const *xctx)
Allocate new thread instance data for an xlat instance.
Definition xlat.h:260
xlat_action_t
Definition xlat.h:37
bool constant
xlat is just tmpl_attr_tail_data, or XLAT_BOX
Definition xlat.h:118
bool impure_func
xlat contains an impure function
Definition xlat.h:115
int(* xlat_instantiate_t)(xlat_inst_ctx_t const *xctx)
Allocate new instance data for an xlat instance.
Definition xlat.h:251
Definition for a single argument consumend by an xlat function.
Definition xlat.h:147
Flags that control resolution and evaluation.
Definition xlat.h:112
Instance data for an xlat expansion node.
Definition xlat.h:75
Thread specific instance data for xlat expansion node.
Definition xlat.h:89
static fr_slen_t parent
Definition pair.h:845
static fr_slen_t data
Definition value.h:1274
static size_t char fr_sbuff_t size_t inlen
Definition value.h:1012
uintptr_t fr_value_box_safe_for_t
Escaping that's been applied to a value box.
Definition value.h:155
int nonnull(2, 5))
static size_t char ** out
Definition value.h:1012
int(* xlat_purify_t)(xlat_exp_t *xlat, void *inst, request_t *request)
Custom function purify the result of an xlat function.
Definition xlat_func.h:53
int(* xlat_resolve_t)(xlat_exp_t *xlat, void *inst, xlat_res_rules_t const *xr_rules)
Custom function to perform resolution of arguments.
Definition xlat_func.h:49
fr_slen_t(* xlat_print_t)(fr_sbuff_t *in, xlat_exp_t const *self, void *inst, fr_sbuff_escape_rules_t const *e_rules)
Custom function to print xlat debug.
Definition xlat_func.h:45
xlat_input_type_t input_type
The input type used inferred from the bracketing style.
Definition xlat_priv.h:141
char const * name
Name of xlat function.
Definition xlat_priv.h:64
char const * thread_inst_type
C type of thread instance structure.
Definition xlat_priv.h:82
xlat_exp_head_t * _xlat_exp_head_alloc(NDEBUG_LOCATION_ARGS TALLOC_CTX *ctx)
Definition xlat_alloc.c:35
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
module_inst_ctx_t * mctx
Original module instantiation ctx if this xlat was registered by a module.
Definition xlat_priv.h:70
bool const xlat_func_chars[UINT8_MAX+1]
int xlat_decode_value_box_list(TALLOC_CTX *ctx, fr_pair_list_t *out, request_t *request, void *decode_ctx, fr_pair_decode_t decode, fr_value_box_list_t *in)
Decode all of the value boxes into the output cursor.
Definition xlat_pair.c:90
fr_rb_node_t func_node
Entry in the xlat function tree.
Definition xlat_priv.h:60
static xlat_exp_t * xlat_exp_next(xlat_exp_head_t const *head, xlat_exp_t const *node)
Definition xlat_priv.h:242
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_t const * dict
Records the namespace this xlat call was created in.
Definition xlat_priv.h:129
fr_dict_attr_t const * xlat_time_res_attr(char const *res)
Definition xlat_eval.c:131
bool internal
If true, cannot be redefined.
Definition xlat_priv.h:67
bool ephemeral
Instance data is ephemeral (not inserted) into the instance tree.
Definition xlat_priv.h:139
xlat_func_t func
async xlat function (async unsafe).
Definition xlat_priv.h:65
xlat_instantiate_t instantiate
Instantiation function.
Definition xlat_priv.h:73
size_t thread_inst_size
Size of the thread instance data to pre-allocate.
Definition xlat_priv.h:83
int xlat_eval_init(void)
Definition xlat_eval.c:1665
xlat_detach_t detach
Destructor for when xlat instances are freed.
Definition xlat_priv.h:74
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_exp_t * _xlat_exp_alloc(NDEBUG_LOCATION_ARGS TALLOC_CTX *ctx, xlat_type_t type, char const *in, size_t inlen)
Allocate an xlat node.
Definition xlat_alloc.c:138
xlat_flags_t flags
Flags that control resolution and evaluation.
Definition xlat_priv.h:188
int xlat_tokenize_regex(xlat_exp_head_t *head, xlat_exp_t **out, fr_sbuff_t *in, fr_sbuff_marker_t *m_s)
char const *_CONST file
File where the xlat was allocated.
Definition xlat_priv.h:192
int line
Line where the xlat was allocated.
Definition xlat_priv.h:160
int xlat_register_expressions(void)
Definition xlat_expr.c:1762
void * thread_uctx
uctx to pass to instantiation functions.
Definition xlat_priv.h:84
call_env_method_t const * call_env_method
Optional tmpl expansions performed before calling the xlat.
Definition xlat_priv.h:95
size_t inst_size
Size of instance data to pre-allocate.
Definition xlat_priv.h:76
int(* xlat_walker_t)(xlat_exp_t *exp, void *uctx)
Walker callback for xlat_walk()
Definition xlat_priv.h:263
fr_token_t quote
Type of quoting around XLAT_GROUP types.
Definition xlat_priv.h:153
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
void xlat_exp_set_name(xlat_exp_t *node, char const *fmt, size_t len)
Set the format string for an xlat node.
Definition xlat_alloc.c:191
fr_dict_attr_t const * attr_expr_bool_enum
Definition xlat_eval.c:46
xlat_arg_parser_t const * args
Definition of args consumed.
Definition xlat_priv.h:93
size_t len
Length of the output string.
Definition xlat_priv.h:199
xlat_resolve_t resolve
function to call when resolving
Definition xlat_priv.h:87
struct xlat_s xlat_t
static void xlat_flags_merge(xlat_flags_t *parent, xlat_flags_t const *child)
Merge flags from child to parent.
Definition xlat_priv.h:225
char const * out
Output data.
Definition xlat_priv.h:198
void xlat_exp_set_name_buffer(xlat_exp_t *node, char const *fmt)
Set the format string for an xlat node, copying from a talloc'd buffer.
Definition xlat_alloc.c:204
xlat_thread_instantiate_t thread_instantiate
Thread instantiation function.
Definition xlat_priv.h:79
fr_dlist_t entry
Definition xlat_priv.h:150
xlat_thread_inst_t * thread_inst
Thread specific instance.
Definition xlat_priv.h:136
xlat_exp_t * _xlat_exp_alloc_null(NDEBUG_LOCATION_ARGS TALLOC_CTX *ctx)
Allocate an xlat node with no name, and no type set.
Definition xlat_alloc.c:125
#define _CONST
Definition xlat_priv.h:54
fr_dict_attr_t const * attr_cast_base
Definition xlat_eval.c:47
xlat_inst_t * inst
Instance data for the xlat_t.
Definition xlat_priv.h:135
fr_token_t token
for expressions
Definition xlat_priv.h:68
char const * inst_type
C type of instance structure.
Definition xlat_priv.h:75
xlat_t * xlat_func_find(char const *name, ssize_t namelen)
Definition xlat_func.c:79
xlat_t const * func
The xlat expansion to expand format with.
Definition xlat_priv.h:126
xlat_input_type_t input_type
Type of input used.
Definition xlat_priv.h:92
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
char const *_CONST fmt
The original format string (a talloced buffer).
Definition xlat_priv.h:152
ssize_t xlat_print_node(fr_sbuff_t *out, xlat_exp_head_t const *head, xlat_exp_t const *node, fr_sbuff_escape_rules_t const *e_rules, char c)
uint64_t id
Identifier unique to each permanent xlat node.
Definition xlat_priv.h:122
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
int xlat_purify_list(xlat_exp_head_t *head, request_t *request)
Definition xlat_purify.c:61
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
char const *_CONST file
File where the xlat was allocated.
Definition xlat_priv.h:159
xlat_thread_detach_t thread_detach
Destructor for when xlat thread instance data is freed.
Definition xlat_priv.h:80
void xlat_eval_free(void)
Definition xlat_eval.c:1690
xlat_purify_t purify
function to call when purifying the node.
Definition xlat_priv.h:88
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
xlat_flags_t flags
various flags
Definition xlat_priv.h:90
xlat_print_t print
function to call when printing
Definition xlat_priv.h:86
fr_dict_attr_t const * attr_module_return_code
int line
Line where the xlat was allocated.
Definition xlat_priv.h:193
static int xlat_exp_insert_tail(xlat_exp_head_t *head, xlat_exp_t *node)
Definition xlat_priv.h:234
xlat_exp_head_t * args
arguments to the function call
Definition xlat_priv.h:127
void xlat_exp_set_name_shallow(xlat_exp_t *node, char const *fmt)
Set the format string for an xlat node from a pre-existing buffer.
Definition xlat_alloc.c:221
void * uctx
uctx to pass to instantiation functions.
Definition xlat_priv.h:77
fr_dlist_t mi_entry
Entry in the list of functions registered to a module instance.
Definition xlat_priv.h:61
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 unlang_xlat_init(void)
Register xlat operation with the interpreter.
Definition xlat.c:829
bool instantiated
temporary flag until we fix more things
Definition xlat_priv.h:189
static xlat_exp_t * xlat_exp_head(xlat_exp_head_t const *head)
Definition xlat_priv.h:205
void _xlat_exp_set_type(NDEBUG_LOCATION_ARGS xlat_exp_t *node, xlat_type_t type)
Set the type of an xlat node.
Definition xlat_alloc.c:58
fr_dlist_head_t dlist
Definition xlat_priv.h:187
An xlat function call.
Definition xlat_priv.h:121
An xlat expansion node.
Definition xlat_priv.h:149