The FreeRADIUS server $Id: 15bac2a4c627c01d1aa2047687b3418955ac7f00 $
Loading...
Searching...
No Matches
tmpl_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: df0653680e018a400b0ef90ce782e3b7fe4323e2 $
19 *
20 * @brief #fr_pair_t template functions
21 * @file src/lib/server/tmpl_eval.c
22 *
23 * @ingroup AVP
24 *
25 * @copyright 2014-2020 The FreeRADIUS server project
26 */
27RCSID("$Id: df0653680e018a400b0ef90ce782e3b7fe4323e2 $")
28
29#define _TMPL_PRIVATE 1
30
31#include <freeradius-devel/server/exec.h>
32#include <freeradius-devel/server/exec_legacy.h>
33#include <freeradius-devel/server/tmpl.h>
34#include <freeradius-devel/server/tmpl_dcursor.h>
35#include <freeradius-devel/server/client.h>
36#include <freeradius-devel/unlang/call.h>
37
38#include <freeradius-devel/util/atexit.h>
39#include <freeradius-devel/util/edit.h>
40
41
43static fr_dict_t const *dict_radius;
44
47 { .out = &dict_freeradius, .proto = "freeradius" },
48 { .out = &dict_radius, .proto = "radius" }, /* @todo - remove RADIUS from the server core... */
50};
51
52/** Placeholder attribute for uses of unspecified attribute references
53 */
56
57
58/** Resolve attribute #fr_pair_list_t value to an attribute list.
59 *
60 * The value returned is a pointer to the pointer of the HEAD of a #fr_pair_t list in the
61 * #request_t. If the head of the list changes, the pointer will still be valid.
62 *
63 * @param[in] request containing the target lists.
64 * @param[in] list #fr_pair_list_t value to resolve to #fr_pair_t list. Will be NULL if list
65 * name couldn't be resolved.
66 * @return a pointer to the HEAD of a list in the #request_t.
67 *
68 * @see tmpl_dcursor_init
69 */
71{
72 if (!request) return NULL;
73
74 if (list == request_attr_request) {
75 if (!request->packet) return NULL;
76 return &request->request_pairs;
77 }
78
79 if (list == request_attr_reply) {
80 if (!request->reply) return NULL;
81 return &request->reply_pairs;
82 }
83
84 if (list == request_attr_control) return &request->control_pairs;
85
86 if (list == request_attr_state) return &request->session_state_pairs;
87
88 if (list == request_attr_local) return &request->local_pairs;
89
90 RWDEBUG2("List \"%s\" is not available", tmpl_list_name(list, "<INVALID>"));
91
92 return NULL;
93}
94
95/** Return the correct TALLOC_CTX to alloc #fr_pair_t in, for a list
96 *
97 * Allocating new #fr_pair_t in the context of a #request_t is usually wrong.
98 * #fr_pair_t should be allocated in the context of a #fr_packet_t, so that if the
99 * #fr_packet_t is freed before the #request_t, the associated #fr_pair_t lists are
100 * freed too.
101 *
102 * @param[in] request containing the target lists.
103 * @param[in] list #fr_pair_list_t value to resolve to TALLOC_CTX.
104 * @return
105 * - TALLOC_CTX on success.
106 * - NULL on failure.
107 *
108 * @see tmpl_pair_list
109 */
110TALLOC_CTX *tmpl_list_ctx(request_t *request, fr_dict_attr_t const *list)
111{
112 if (!request) return NULL;
113
114 if (list == request_attr_request) return request->request_ctx;
115
116 if (list == request_attr_reply) return request->reply_ctx;
117
118 if (list == request_attr_control) return request->control_ctx;
119
120 if (list == request_attr_state) return request->session_state_ctx;
121
122 if (list == request_attr_local) return request->local_ctx;
123
124 return NULL;
125}
126
127/** Resolve a list to the #fr_packet_t holding the HEAD pointer for a #fr_pair_t list
128 *
129 * Returns a pointer to the #fr_packet_t that holds the HEAD pointer of a given list,
130 * for the current #request_t.
131 *
132 * @param[in] request To resolve list in.
133 * @param[in] list #fr_pair_list_t value to resolve to #fr_packet_t.
134 * @return
135 * - #fr_packet_t on success.
136 * - NULL on failure.
137 *
138 * @see tmpl_pair_list
139 */
141{
142 if (list == request_attr_request) return request->packet;
143
144 if (list == request_attr_reply) return request->reply;
145
146 return NULL;
147}
148
149/** Resolve a #tmpl_request_ref_t to a #request_t.
150 *
151 * Sometimes #request_t structs may be chained to each other, as is the case
152 * when internally proxying EAP. This function resolves a #tmpl_request_ref_t
153 * to a #request_t higher in the chain than the current #request_t.
154 *
155 * @see tmpl_pair_list
156 * @param[in,out] context #request_t to start resolving from, and where to write
157 * a pointer to the resolved #request_t back to.
158 * @param[in] rql list of request qualifiers to follow.
159 * @return
160 * - 0 if request is valid in this context.
161 * - -1 if request is not valid in this context.
162 */
163int tmpl_request_ptr(request_t **context, FR_DLIST_HEAD(tmpl_request_list) const *rql)
164{
165 tmpl_request_t *rr = NULL;
166 request_t *request = *context;
167
168 while ((rr = tmpl_request_list_next(rql, rr))) {
169 switch (rr->request) {
170 case REQUEST_CURRENT:
171 continue; /* noop */
172
173 case REQUEST_PARENT: /* Navigate up one level */
174 if (!request->parent) return -1;
175 request = request->parent;
176 break;
177
178 case REQUEST_OUTER: /* Navigate to the outermost request */
179 if (!request->parent) return -1;
180 while (request->parent) request = request->parent;
181 break;
182
183 case REQUEST_UNKNOWN:
184 default:
185 fr_assert(0);
186 return -1;
187 }
188 }
189
190 *context = request;
191
192 return 0;
193}
194
195/** Return the native data type of the expression
196 *
197 * @param[in] vpt to determine the type of.
198 * @return
199 * - FR_TYPE_NULL if the type of the #tmpl_t can't be determined.
200 * - The data type we'd expect the #tmpl_t to produce at runtime
201 * when expanded.
202 */
204{
205 /*
206 * Regexes can't be expanded
207 */
209
210 /*
211 * Casts take precedence over everything.
212 */
214
215 /*
216 * Anything that's not a bare word will
217 * be a string unless there's a casting
218 * operator.
219 */
220 if (vpt->quote != T_BARE_WORD) return FR_TYPE_STRING;
221
222 switch (vpt->type) {
223 case TMPL_TYPE_ATTR:
224 return tmpl_attr_tail_da(vpt)->type;
225
226 case TMPL_TYPE_DATA:
227 return tmpl_value_type(vpt);
228
229 case TMPL_TYPE_XLAT:
230 case TMPL_TYPE_EXEC:
231 return FR_TYPE_STRING;
232
233 default:
234 break;
235 }
236
237 return FR_TYPE_NULL;
238}
239
240/** Expand a #tmpl_t to a string writing the result to a buffer
241 *
242 * The intended use of #tmpl_expand and #tmpl_aexpand is for modules to easily convert a #tmpl_t
243 * provided by the conf parser, into a usable value.
244 * The value returned should be raw and undoctored for #FR_TYPE_STRING and #FR_TYPE_OCTETS types,
245 * and the printable (string) version of the data for all others.
246 *
247 * Depending what arguments are passed, either copies the value to buff, or writes a pointer
248 * to a string buffer to out. This allows the most efficient access to the value resolved by
249 * the #tmpl_t, avoiding unnecessary string copies.
250 *
251 * @note This function is used where raw string values are needed, which may mean the string
252 * returned may be binary data or contain unprintable chars. #fr_snprint or #fr_asprint
253 * should be used before using these values in debug statements. #is_printable can be used to
254 * check if the string only contains printable chars.
255 *
256 * @param[out] out Where to write a pointer to the string buffer. On return may
257 * point to buff if buff was used to store the value. Otherwise will
258 * point to a #fr_value_box_t buffer, or the name of the template.
259 * Must not be NULL.
260 * @param[out] buff Expansion buffer, may be NULL except for the following types:
261 * - #TMPL_TYPE_EXEC
262 * - #TMPL_TYPE_XLAT
263 * - input type non-string, output type string
264 * @param[in] bufflen Length of expansion buffer. Must be >= 2.
265 * @param[in] request Current request.
266 * @param[in] vpt to expand. Must be one of the following types:
267 * - #TMPL_TYPE_EXEC
268 * - #TMPL_TYPE_XLAT
269 * - #TMPL_TYPE_ATTR
270 * - #TMPL_TYPE_DATA
271 * @param dst_type FR_TYPE_* matching out pointer. @see tmpl_expand.
272 * @return
273 * - -1 on failure.
274 * - The length of data written out.
275 */
277 uint8_t *buff, size_t bufflen,
278 request_t *request,
279 tmpl_t const *vpt,
280 fr_type_t dst_type)
281{
282 fr_value_box_t value_to_cast = FR_VALUE_BOX_INITIALISER_NULL(value_to_cast);
283 fr_value_box_t value_from_cast = FR_VALUE_BOX_INITIALISER_NULL(value_from_cast);
284 fr_value_box_t const *to_cast = NULL;
285 fr_value_box_t const *from_cast = NULL;
286
287 fr_pair_t *vp = NULL;
288
289 ssize_t slen = -1; /* quiet compiler */
290
292
295
296 fr_assert(!buff || (bufflen >= 2));
297
298 switch (vpt->type) {
299 case TMPL_TYPE_EXEC:
300 RDEBUG4("EXPAND TMPL EXEC");
301 if (!buff) {
302 REDEBUG("Missing expansion buffer for exec");
303 return -1;
304 }
305
306 if (radius_exec_program_legacy((char *) buff, bufflen, request, vpt->name, NULL,
307 true, false, fr_time_delta_from_sec(EXEC_TIMEOUT)) != 0) return -1;
308
309 fr_value_box_strdup_shallow(&value_to_cast, NULL, (char *) buff, true);
310 to_cast = &value_to_cast;
311 break;
312
313 case TMPL_TYPE_XLAT:
314 RDEBUG4("EXPAND TMPL XLAT PARSED");
315
316 /* No EXPAND <xlat> here as the xlat code does it */
317
318 if (!buff) {
319 REDEBUG("Missing expansion buffer for dynamic expansion");
320 return -1;
321 }
322
323 /* Error in expansion, this is distinct from zero length expansion */
324 slen = xlat_eval_compiled((char *) buff, bufflen, request, tmpl_xlat(vpt), NULL, NULL);
325 if (slen < 0) return slen;
326
327 fr_value_box_bstrndup_shallow(&value_to_cast, NULL, (char *) buff, slen, true);
328 to_cast = &value_to_cast;
329 break;
330
331 case TMPL_TYPE_ATTR:
332 RDEBUG4("EXPAND TMPL ATTR");
333 if (tmpl_find_vp(&vp, request, vpt) < 0) {
334 REDEBUG("Failed to find attribute %s", vpt->name);
335 return -2;
336 }
337
338 to_cast = &vp->data;
339 break;
340
341 case TMPL_TYPE_DATA:
342 RDEBUG4("EXPAND TMPL DATA");
343 to_cast = tmpl_value(vpt);
344 break;
345
346 /*
347 * We should never be expanding these.
348 */
354 case TMPL_TYPE_REGEX:
358 case TMPL_TYPE_MAX:
359 fr_assert(0);
360 return -1;
361 }
362
363 /*
364 * Same type, just copy the value.
365 *
366 * If the input is exec/xlat, then we can just copy the output ptr to the caller, as it's already
367 * pointing to "buff".
368 */
369 if (to_cast->type == dst_type) {
370 from_cast = to_cast;
371 goto do_copy;
372 }
373
374 /*
375 * We need a buffer to hold ouput data which can be returned to the caller.
376 */
377 if (fr_type_is_variable_size(dst_type) && !buff) {
378 REDEBUG("Missing expansion buffer for %s -> %s cast", fr_type_to_str(to_cast->type), fr_type_to_str(dst_type));
379 return -1;
380 }
381
382 /*
383 * Convert to the correct data type.
384 */
385 if (fr_value_box_cast(request, &value_from_cast, dst_type, NULL, to_cast)) {
386 RPEDEBUG("Failed casting input %pV to data type %s", to_cast, fr_type_to_str(dst_type));
387 return -1;
388 }
389
390 from_cast = &value_from_cast;
391
392 /*
393 * If the output is a talloc'd buffer, then we have to copy it to "buff", so that we can return
394 * the pointer to the caller.
395 */
396 if (fr_type_is_variable_size(dst_type)) {
397 size_t len = from_cast->vb_length + (dst_type == FR_TYPE_STRING);
398
399 if (bufflen < len) {
400 REDEBUG("Expansion buffer is too small. Buffer is %zu bytes, and we need %zu bytes",
401 bufflen, len);
402 }
403
404 /*
405 * Copy the data to the buffer, and clear the alloc'd pointer.
406 */
407 memcpy(buff, to_cast->vb_octets, len);
408 fr_value_box_clear(&value_from_cast);
409
410 /*
411 * "out" is a pointer to a char* or uint8_t*
412 */
413 *(uint8_t **) out = buff;
414
415 return from_cast->vb_length;
416 }
417
418do_copy:
419 RDEBUG4("Copying %zu bytes to %p from offset %zu",
421
422 fr_value_box_memcpy_out(out, from_cast);
423
424 return from_cast->vb_length;
425}
426
427/** Expand a template to a string, allocing a new buffer to hold the string
428 *
429 * The intended use of #tmpl_expand and #tmpl_aexpand is for modules to easily convert a #tmpl_t
430 * provided by the conf parser, into a usable value.
431 * The value returned should be raw and undoctored for #FR_TYPE_STRING and #FR_TYPE_OCTETS types,
432 * and the printable (string) version of the data for all others.
433 *
434 * This function will always duplicate values, whereas #tmpl_expand may return a pointer to an
435 * existing buffer.
436 *
437 * @note This function is used where raw string values are needed, which may mean the string
438 * returned may be binary data or contain unprintable chars. #fr_snprint or #fr_asprint should
439 * be used before using these values in debug statements. #is_printable can be used to check
440 * if the string only contains printable chars.
441 *
442 * @note The type (char or uint8_t) can be obtained with talloc_get_type, and may be used as a
443 * hint as to how to process or print the data.
444 *
445 * @param ctx to allocate new buffer in.
446 * @param out Where to write pointer to the new buffer.
447 * @param request Current request.
448 * @param vpt to expand. Must be one of the following types:
449 * - #TMPL_TYPE_DATA_UNRESOLVED
450 * - #TMPL_TYPE_EXEC
451 * - #TMPL_TYPE_XLAT
452 * - #TMPL_TYPE_ATTR
453 * - #TMPL_TYPE_DATA
454 * @param escape xlat escape function (only used for TMPL_TYPE_XLAT_UNRESOLVED_* types).
455 * @param escape_ctx xlat escape function data (only used for TMPL_TYPE_XLAT_UNRESOLVED_* types).
456 * @param dst_type FR_TYPE_* matching out pointer. @see tmpl_aexpand.
457 * @return
458 * - -1 on failure.
459 * - The length of data written to buff, or pointed to by out.
460 */
461ssize_t _tmpl_to_atype(TALLOC_CTX *ctx, void *out,
462 request_t *request,
463 tmpl_t const *vpt,
464 xlat_escape_legacy_t escape, void const *escape_ctx,
465 fr_type_t dst_type)
466{
467 fr_value_box_t *vb_out, *vb_in = NULL;
469
470 fr_pair_t *vp = NULL;
471 bool needs_dup = false;
472
473 ssize_t slen = -1;
474 int ret;
475
476 TALLOC_CTX *tmp_ctx = NULL;
477 char *str = NULL;
478
480
483
484 switch (vpt->type) {
485 case TMPL_TYPE_EXEC:
486 RDEBUG4("EXPAND TMPL EXEC");
487
488 MEM(tmp_ctx = talloc_new(ctx));
489
490 MEM(fr_value_box_bstr_alloc(tmp_ctx, &str, &value, NULL, 1024, true));
491 if (radius_exec_program_legacy(str, 1024, request, vpt->name, NULL,
492 true, false, fr_time_delta_from_sec(EXEC_TIMEOUT)) != 0) {
493 error:
494 talloc_free(tmp_ctx);
495 return slen;
496 }
497
498 fr_value_box_strtrim(tmp_ctx, &value);
499 vb_in = &value;
500 break;
501
502 case TMPL_TYPE_XLAT:
504 RDEBUG4("EXPAND TMPL XLAT STRUCT");
505
506 MEM(tmp_ctx = talloc_new(ctx));
507
508 /*
509 * An error in expansion is distinct from zero
510 * length expansion. Zero-length strings are
511 * permitted.
512 */
513 slen = xlat_aeval_compiled(tmp_ctx, &str, request, tmpl_xlat(vpt), escape, escape_ctx);
514 if (slen < 0) {
515 RPEDEBUG("Failed expanding %s", vpt->name);
516 goto error;
517 }
518
519 /*
520 * The output is a string which might get cast to something later.
521 */
522 fr_value_box_bstrndup_shallow(&value, NULL, str, (size_t) slen, false);
523 vb_in = &value;
524 break;
525
526 case TMPL_TYPE_ATTR:
527 RDEBUG4("EXPAND TMPL ATTR");
528
529 ret = tmpl_find_vp(&vp, request, vpt);
530 if (ret < 0) {
531 RDEBUG("Failed finding attribute %s", vpt->name);
532 talloc_free(tmp_ctx);
533 return -2;
534 }
535
536 fr_assert(vp);
537
538 needs_dup = true;
539 vb_in = &vp->data;
540 break;
541
542 case TMPL_TYPE_DATA:
543 RDEBUG4("EXPAND TMPL DATA");
544
545 needs_dup = true;
547 break;
548
549 /*
550 * We should never be expanding these.
551 */
554 case TMPL_TYPE_REGEX:
560 case TMPL_TYPE_MAX:
561 fr_assert(0);
562 goto error;
563 }
564
565 fr_assert(vb_in != NULL);
566 VALUE_BOX_VERIFY(vb_in);
567
568 /*
569 * If the output is a value-box, we might cast it using the tmpl cast. When done, we just copy
570 * the value-box.
571 */
572 if (dst_type == FR_TYPE_VALUE_BOX) {
573 fr_type_t cast_type;
574
575 MEM(vb_out = fr_value_box_alloc_null(ctx));
576 cast_type = tmpl_rules_cast(vpt);
577
578 if (cast_type == FR_TYPE_NULL) {
579 if (needs_dup) {
580 if (unlikely(fr_value_box_copy(vb_out, vb_out, vb_in) < 0)) {
581 talloc_free(vb_out);
582 goto failed_cast;
583 }
584 } else {
585 fr_value_box_steal(vb_out, vb_out, vb_in);
586 }
587 talloc_free(tmp_ctx);
588
589 } else {
590 ret = fr_value_box_cast(vb_out, vb_out, cast_type, NULL, vb_in);
591 talloc_free(tmp_ctx);
592
593 if (ret < 0) {
594 talloc_free(vb_out);
595 dst_type = cast_type;
596
597 failed_cast:
598 RPEDEBUG("Failed casting input %pV to data type %s", vb_in, fr_type_to_str(dst_type));
599 goto error;
600 }
601 }
602
603 VALUE_BOX_VERIFY(vb_out);
604 *(fr_value_box_t **) out = vb_out;
605 return 0;
606 }
607
608 /*
609 * Cast the data to the correct type. Which also allocates any variable sized buffers from the
610 * output ctx.
611 */
612 if (dst_type != vb_in->type) {
613 if (vb_in == &value) {
614 fr_assert(tmp_ctx != NULL);
615 fr_assert(str != NULL);
616 fr_assert(dst_type != FR_TYPE_STRING); /* exec / xlat returned string in 'str' */
617
618 slen = fr_value_box_from_str(ctx, &value, dst_type, NULL, str, (size_t) slen, NULL);
619 if (slen < 0) {
620 fr_value_box_bstrndup_shallow(&value, NULL, str, (size_t) slen, false);
621 goto failed_cast;
622 }
623
624 } else {
625 ret = fr_value_box_cast(ctx, &value, dst_type, NULL, vb_in);
626 if (ret < 0) goto failed_cast;
627 }
628
629 /*
630 * The input data has been converted, and placed into value.
631 */
632 vb_in = &value;
633
634 } else if (fr_type_is_variable_size(dst_type)) {
635 /*
636 * The output type is the same, but variable sized types need to be either duplicated, or
637 * reparented.
638 */
639 if (needs_dup) {
640 fr_assert(vb_in != &value);
641
642 if (unlikely(fr_value_box_copy(ctx, &value, vb_in) < 0)) goto failed_cast;
643 vb_in = &value;
644 } else {
645 fr_assert(dst_type == FR_TYPE_STRING);
646 fr_assert(str != NULL);
647
648 (void) talloc_steal(ctx, str); /* ensure it's parented from the right context */
649 fr_assert(vb_in == &value);
650 }
651 } /* else the output type is a leaf, and is the same data type as the input */
652
653 RDEBUG4("Copying %zu bytes to %p from offset %zu",
655
657
658 /*
659 * Frees any memory allocated for temporary buffers
660 * in this function.
661 */
662 talloc_free(tmp_ctx);
663
664 return vb_in->vb_length;
665}
666
667/** Copy pairs matching a #tmpl_t in the current #request_t
668 *
669 * @param ctx to allocate new #fr_pair_t in.
670 * @param out Where to write the copied #fr_pair_t (s).
671 * @param request The current #request_t.
672 * @param vpt specifying the #fr_pair_t type or list to copy.
673 * Must be one of the following types:
674 * - #TMPL_TYPE_ATTR
675 * @return
676 * - -1 if no matching #fr_pair_t could be found.
677 * - -2 if list could not be found (doesn't exist in current #request_t).
678 * - -3 if context could not be found (no parent #request_t available).
679 * - -4 on memory allocation error.
680 */
681int tmpl_copy_pairs(TALLOC_CTX *ctx, fr_pair_list_t *out, request_t *request, tmpl_t const *vpt)
682{
683 fr_pair_t *vp;
684 fr_dcursor_t from;
686 int err;
687
689
691
692 for (vp = tmpl_dcursor_init(&err, NULL, &cc, &from, request, vpt);
693 vp;
694 vp = fr_dcursor_next(&from)) {
695 vp = fr_pair_copy(ctx, vp);
696 if (!vp) {
698 fr_strerror_const("Out of memory");
699 err = -4;
700 break;
701 }
703 }
705
706 return err;
707}
708
709
710/** Copy children of pairs matching a #tmpl_t in the current #request_t
711 *
712 * @param ctx to allocate new #fr_pair_t in.
713 * @param out Where to write the copied #fr_pair_t (s).
714 * @param request The current #request_t.
715 * @param vpt specifying the #fr_pair_t type or list to copy.
716 * Must be one of the following types:
717 * - #TMPL_TYPE_ATTR
718 * @return
719 * - -1 if no matching #fr_pair_t could be found.
720 * - -2 if list could not be found (doesn't exist in current #request_t).
721 * - -3 if context could not be found (no parent #request_t available).
722 * - -4 on memory allocation error.
723 */
724int tmpl_copy_pair_children(TALLOC_CTX *ctx, fr_pair_list_t *out, request_t *request, tmpl_t const *vpt)
725{
726 fr_pair_t *vp;
727 fr_dcursor_t from;
729 int err;
730
732
734
736
737 for (vp = tmpl_dcursor_init(&err, NULL, &cc, &from, request, vpt);
738 vp;
739 vp = fr_dcursor_next(&from)) {
740 switch (vp->vp_type) {
742 if (fr_pair_list_copy(ctx, out, &vp->vp_group) < 0) {
743 err = -4;
744 goto done;
745 }
746 break;
747
748 default:
749 continue;
750 }
751 }
752done:
754
755 return err;
756}
757
758
759/** Returns the first VP matching a #tmpl_t
760 *
761 * @param[out] out where to write the retrieved vp.
762 * @param[in] request The current #request_t.
763 * @param[in] vpt specifying the #fr_pair_t type to find.
764 * Must be one of the following types:
765 * - #TMPL_TYPE_ATTR
766 * @return
767 * - 0 on success (found matching #fr_pair_t).
768 * - -1 if no matching #fr_pair_t could be found.
769 * - -2 if list could not be found (doesn't exist in current #request_t).
770 * - -3 if context could not be found (no parent #request_t available).
771 */
773{
774 fr_dcursor_t cursor;
776 fr_pair_t *vp;
777 int err;
778
780
781 vp = tmpl_dcursor_init(&err, request, &cc, &cursor, request, vpt);
783
784 if (out) *out = vp;
785
786 return err;
787}
788
789/** Returns the first VP matching a #tmpl_t, or if no VPs match, creates a new one.
790 *
791 * @param[out] out where to write the retrieved or created vp.
792 * @param[in] request The current #request_t.
793 * @param[in] vpt specifying the #fr_pair_t type to retrieve or create. Must be #TMPL_TYPE_ATTR.
794 * @return
795 * - 1 on success a pair was created.
796 * - 0 on success a pair was found.
797 * - -1 if a new #fr_pair_t couldn't be found or created.
798 * - -2 if list could not be found (doesn't exist in current #request_t).
799 * - -3 if context could not be found (no parent #request_t available).
800 */
802{
803 fr_dcursor_t cursor;
805 fr_pair_t *vp;
806 int err;
807
810
811 *out = NULL;
812
813 vp = tmpl_dcursor_init(&err, NULL, &cc, &cursor, request, vpt);
815
816 switch (err) {
817 case 0:
818 *out = vp;
819 return 0;
820
821 case -1:
822 {
823 TALLOC_CTX *ctx;
825
826 tmpl_pair_list_and_ctx(ctx, head, request, tmpl_request(vpt), tmpl_list(vpt));
827 if (!head) return -1;
828
829 if (pair_append_by_tmpl_parent(ctx, &vp, head, vpt, true) < 0) return -1;
830
832 *out = vp;
833 }
834 return 1;
835
836 default:
837 return err;
838 }
839}
840
841/** Allocate and insert a leaf vp from a tmpl_t, building the parent vps if needed.
842 *
843 * This is the simple case - just add a vp at the first place where
844 * the parents exist, or create the parents, with no attempt to handle filters.
845 *
846 * It is functionally equivalent to fr_pair_append_by_da_parent() but
847 * uses a tmpl_t to build the nested structure rather than a fr_dict_attr_t.
848 *
849 * @param[in] ctx to allocate new pair(s) in
850 * @param[out] out Leaf pair we allocated.
851 * @param[in] list to insert into.
852 * @param[in] vpt tmpl representing the attribute to add.
853 * @param[in] skip_list skip list attr ref at the head of the tmpl.
854 * @return
855 * - 0 on success.
856 * - -1 on failure.
857 */
858int pair_append_by_tmpl_parent(TALLOC_CTX *ctx, fr_pair_t **out, fr_pair_list_t *list, tmpl_t const *vpt, bool skip_list)
859{
860 fr_pair_t *vp = NULL;
861 TALLOC_CTX *pair_ctx = ctx;
862 tmpl_attr_t *ar, *leaf;
863 tmpl_attr_list_head_t const *ar_list = &vpt->data.attribute.ar;
864
865 if (!tmpl_is_attr(vpt)) {
866 error:
867 *out = NULL;
868 return -1;
869 }
870
871 leaf = tmpl_attr_list_tail(ar_list);
872 ar = tmpl_attr_list_head(ar_list);
873 if (!ar) goto error;
874 if (skip_list && tmpl_attr_is_list_attr(ar)) ar = tmpl_attr_list_next(ar_list, ar);
875
876 /*
877 * Walk down the tmpl ar stack looking for candidate parent
878 * attributes and then allocating the leaf.
879 */
880 while (true) {
881 if (unlikely(!ar)) goto error;
882 /*
883 * We're not at the leaf, look for a potential parent
884 */
885 if (ar != leaf) {
886 vp = fr_pair_find_by_da(list, NULL, ar->da);
887 }
888
889 /*
890 * Nothing found, create the pair
891 */
892 if (!vp) {
893 if (fr_pair_append_by_da(pair_ctx, &vp, list, ar->da) < 0) goto error;
895 }
896
897 /*
898 * We're at the leaf, return
899 */
900 if (ar == leaf) {
901 *out = vp;
902 return 0;
903 }
904
905 /*
906 * Prepare for next level
907 */
908 list = &vp->vp_group;
909 pair_ctx = vp;
910 vp = NULL;
911 ar = tmpl_attr_list_next(ar_list, ar);
912 }
913}
914
915/** Insert a value-box to a list, with casting.
916 *
917 * @param list to append to
918 * @param box box to cast / append
919 * @param vpt tmpl with cast.
920 * @return
921 * - <0 for "cast failed"
922 * - 0 for success
923 */
924int tmpl_value_list_insert_tail(fr_value_box_list_t *list, fr_value_box_t *box, tmpl_t const *vpt)
925{
927 (box->type == tmpl_rules_cast(vpt))) {
928 fr_value_box_list_insert_tail(list, box);
929 return 0;
930 }
931
932 if (fr_value_box_cast_in_place(box, box, tmpl_rules_cast(vpt), tmpl_rules_enumv(vpt)) < 0) return -1;
933
934 fr_value_box_list_insert_tail(list, box);
936 return 0;
937}
938
939/** Gets the value of a real or virtual attribute
940 *
941 * @param[in] ctx to allocate boxed value, and buffers in.
942 * @param[out] out Where to write the boxed value.
943 * @param[in] request The current request.
944 * @param[in] vpt Representing the attribute.
945 * @return
946 * - <0 we failed getting a value for the attribute.
947 * - 0 we successfully evaluated the tmpl
948 */
949int tmpl_eval_pair(TALLOC_CTX *ctx, fr_value_box_list_t *out, request_t *request, tmpl_t const *vpt)
950{
951 fr_pair_t *vp = NULL;
953
954 fr_dcursor_t cursor;
956
957 int ret = 0;
958 fr_value_box_list_t list;
959
961
962 fr_value_box_list_init(&list);
963
964 /*
965 * See if we're dealing with an attribute in the request
966 *
967 * This allows users to manipulate virtual attributes as if
968 * they were real ones.
969 */
970 vp = tmpl_dcursor_init(NULL, NULL, &cc, &cursor, request, vpt);
971
972 /*
973 * We didn't find the VP in a list, check to see if it's
974 * virtual. This allows the caller to "realize" the
975 * attribute, and we then prefer the realized version to
976 * the virtual one.
977 */
978 if (!vp) {
979 /*
980 * Zero count.
981 */
984 if (!value) {
985 oom:
986 fr_strerror_const("Out of memory");
987 ret = -1;
988 goto fail;
989 }
990 value->datum.int32 = 0;
991 fr_value_box_list_insert_tail(&list, value);
992 } /* Fall through to being done */
993
994 goto done;
995 }
996
997 switch (tmpl_attr_tail_num(vpt)) {
998 /*
999 * Return a count of the VPs.
1000 */
1001 case NUM_COUNT:
1002 {
1003 uint32_t count = 0;
1004
1005 while (vp != NULL) {
1006 count++;
1007 vp = fr_dcursor_next(&cursor);
1008 }
1009
1011 if (!value) goto oom;
1012 value->datum.uint32 = count;
1013 fr_value_box_list_insert_tail(&list, value);
1014 break;
1015 }
1016
1017 /*
1018 * Output multiple #value_box_t, one per attribute.
1019 */
1020 case NUM_ALL:
1021 /*
1022 * Loop over all matching #fr_value_pair
1023 * shallow copying buffers.
1024 */
1025 while (vp != NULL) {
1026 if (fr_type_is_structural(vp->vp_type)) {
1028 if (!value) goto oom;
1029
1030 if (fr_pair_list_copy_to_box(value, &vp->vp_group) < 0) {
1032 goto oom;
1033 }
1034
1035 } else {
1036 value = fr_value_box_alloc(ctx, vp->data.type, vp->da);
1037 if (!value) goto oom;
1038 if(unlikely(fr_value_box_copy(value, value, &vp->data) < 0)) {
1040 goto fail;
1041 }
1042 }
1043
1044 fr_value_box_list_insert_tail(&list, value);
1045 vp = fr_dcursor_next(&cursor);
1046 }
1047 break;
1048
1049 default:
1050 if (!fr_type_is_leaf(vp->vp_type)) {
1051 fr_strerror_const("Invalid data type for evaluation");
1052 goto fail;
1053 }
1054
1055 value = fr_value_box_alloc(ctx, vp->data.type, vp->da);
1056 if (!value) goto oom;
1057
1058 if (unlikely(fr_value_box_copy(value, value, &vp->data) < 0)) goto fail;
1059 fr_value_box_list_insert_tail(&list, value);
1060 break;
1061 }
1062
1063done:
1064 /*
1065 * Evaluate casts if necessary.
1066 */
1067 if (ret == 0) {
1068 if (tmpl_eval_cast_in_place(&list, request, vpt) < 0) {
1069 fr_value_box_list_talloc_free(&list);
1070 ret = -1;
1071 goto fail;
1072 }
1073
1074 fr_value_box_list_move(out, &list);
1075 }
1076
1077fail:
1078 tmpl_dcursor_clear(&cc);
1080 return ret;
1081}
1082
1083
1084/** Gets the value of a tmpl
1085 *
1086 * The result is returned "raw". The caller must do any escaping it desires.
1087 *
1088 * @param[in] ctx to allocate boxed value, and buffers in.
1089 * @param[out] out Where to write the boxed value.
1090 * @param[in] request The current request.
1091 * @param[in] vpt Representing the tmpl
1092 * @return
1093 * - <0 we failed getting a value for the tmpl
1094 * - 0 we successfully evaluated the tmpl
1095 */
1096int tmpl_eval(TALLOC_CTX *ctx, fr_value_box_list_t *out, request_t *request, tmpl_t const *vpt)
1097{
1098 char *p;
1100 fr_value_box_list_t list;
1101
1103 fr_strerror_const("Cannot evaluate unresolved tmpl");
1104 return -1;
1105 }
1106
1107 if (tmpl_async_required(vpt)) {
1108 fr_strerror_const("Cannot statically evaluate asynchronous expansions");
1109 return -1;
1110 }
1111
1112 if (tmpl_contains_regex(vpt)) {
1113 fr_strerror_const("Cannot statically evaluate regular expression");
1114 return -1;
1115 }
1116
1117 if (tmpl_is_attr(vpt)) {
1118 return tmpl_eval_pair(ctx, out, request, vpt);
1119 }
1120
1121 if (tmpl_is_data(vpt)) {
1123
1126 return -1; /* Also dups taint */
1127 }
1128 goto done;
1129 }
1130
1132
1133 /*
1134 * @todo - respect escaping functions. But the sync
1135 * escaping uses a different method than the async ones.
1136 * And we then also need to escape the output of
1137 * tmpl_eval_pair(), too.
1138 */
1140 if (tmpl_aexpand(value, &p, request, vpt, NULL, NULL) < 0) {
1142 return -1;
1143 }
1144 fr_value_box_bstrndup_shallow(value, NULL, p, talloc_array_length(p) - 1, true);
1145
1146 /*
1147 * Cast the results if necessary.
1148 */
1149done:
1150 fr_value_box_list_init(&list);
1151 fr_value_box_list_insert_tail(&list, value);
1152
1153 if (tmpl_eval_cast_in_place(&list, request, vpt) < 0) {
1154 fr_value_box_list_talloc_free(&list);
1155 return -1;
1156 }
1157
1158 fr_value_box_list_move(out, &list);
1160
1161 return 0;
1162}
1163
1164/** Allocate a uctx for an escaping function
1165 *
1166 * @param[in] request The current request.
1167 * @param[in] escape Describing how to escape tmpl data.
1168 *
1169 * @return the uctx to pass to the escape function.
1170 */
1171static inline void *tmpl_eval_escape_uctx_alloc(request_t *request, tmpl_escape_t const *escape)
1172{
1173 switch (escape->uctx.type) {
1175 return UNCONST(void *, escape->uctx.ptr);
1176
1178 {
1179 void *uctx;
1180
1181 fr_assert_msg(escape->uctx.size > 0, "TMPL_ESCAPE_UCTX_ALLOC must specify uctx.size > 0");
1182 MEM(uctx = talloc_zero_array(NULL, uint8_t, escape->uctx.size));
1183 if (escape->uctx.talloc_type) talloc_set_type(uctx, escape->uctx.talloc_type);
1184 return uctx;
1185 }
1186
1188 fr_assert_msg(escape->uctx.func.alloc, "TMPL_ESCAPE_UCTX_ALLOC_FUNC must specify a non-null alloc.func");
1189 return escape->uctx.func.alloc(request, escape->uctx.func.uctx);
1190
1191 default:
1192 fr_assert_msg(0, "Unknown escape uctx type %u", escape->uctx.type);
1193 return NULL;
1194 }
1195}
1196
1197/** Free a uctx for an escaping function
1198 *
1199 * @param[in] escape Describing how to escape tmpl data.
1200 * @param[in] uctx The uctx to free.
1201 */
1202static inline void tmpl_eval_escape_uctx_free(tmpl_escape_t const *escape, void *uctx)
1203{
1204 switch (escape->uctx.type) {
1206 return;
1207
1209 talloc_free(uctx);
1210 return;
1211
1213 if (escape->uctx.func.free) escape->uctx.func.free(uctx);
1214 return;
1215 }
1216}
1217
1218/** Casts a value or list of values according to the tmpl
1219 *
1220 * @param[in,out] list Where to write the boxed value.
1221 * @param[in] request The current request.
1222 * @param[in] vpt Representing the attribute.
1223 * @return
1224 * - <0 the cast failed
1225 * - 0 we successfully evaluated the tmpl
1226 */
1227int tmpl_eval_cast_in_place(fr_value_box_list_t *list, request_t *request, tmpl_t const *vpt)
1228{
1230 bool did_concat = false;
1231 void *uctx = NULL;
1232
1233 if (fr_type_is_structural(cast)) {
1234 fr_strerror_printf("Cannot cast to structural type '%s'", fr_type_to_str(cast));
1235 return -1;
1236 }
1237
1238 /*
1239 * Quoting around the tmpl means everything
1240 * needs to be concatenated, either as a string
1241 * or octets string.
1242 */
1243 switch (vpt->quote) {
1248 {
1249 ssize_t slen;
1250 fr_value_box_t *vb;
1251
1252 vb = fr_value_box_list_head(list);
1253 if (!vb) return 0;
1254
1256 uctx = tmpl_eval_escape_uctx_alloc(request, &vpt->rules.escape);
1257 /*
1258 * Sets escaped values, so boxes don't get re-escaped
1259 */
1260 if (unlikely(fr_value_box_list_escape_in_place(list, &vpt->rules.escape.box_escape, uctx) < 0)) {
1261 error:
1262 tmpl_eval_escape_uctx_free(&vpt->rules.escape, uctx);
1263 return -1;
1264 }
1265 }
1266
1268 FR_VALUE_BOX_LIST_FREE_BOX, true, SIZE_MAX);
1269 if (slen < 0) goto error;
1271
1272 /*
1273 * If there's no cast, or it's a cast to
1274 * a string, we're done!
1275 *
1276 * Otherwise we now need to re-cast the
1277 * result.
1278 */
1279 if (fr_type_is_null(cast) || fr_type_is_string(cast)) {
1280 success:
1281 tmpl_eval_escape_uctx_free(&vpt->rules.escape, uctx);
1282 return 0;
1283 }
1284
1285 did_concat = true;
1286 }
1287 break;
1288
1289 default:
1290 break;
1291 }
1292
1293 if (fr_type_is_null(cast)) goto success;
1294
1295 /*
1296 * Quoting above handled all concatenation,
1297 * we now need to handle potentially
1298 * multivalued lists.
1299 */
1301 if (fr_value_box_cast_in_place(vb, vb, cast, NULL) < 0) goto error;
1302 }}
1303
1304 /*
1305 * ...and finally, apply the escape function
1306 * if necessary. This is done last so that
1307 * the escape function gets boxes of the type
1308 * it expects.
1309 */
1311 uctx = tmpl_eval_escape_uctx_alloc(request, &vpt->rules.escape);
1312 if (unlikely(fr_value_box_list_escape_in_place(list, &vpt->rules.escape.box_escape, uctx) < 0)) goto error;
1313 }
1314
1315 /*
1316 * If there's no escape function, but there is
1317 * a safe_for value, mark all the boxes up with
1318 * this value.
1319 *
1320 * This is mostly useful for call_env usage in
1321 * modules where certain values are implicitly safe
1322 * for consumption, like SQL statements in the SQL
1323 * module.
1324 */
1325 if (!vpt->rules.escape.box_escape.func && vpt->rules.escape.box_escape.safe_for) {
1326 fr_value_box_list_mark_safe_for(list, vpt->rules.escape.box_escape.safe_for);
1327 }
1328
1330
1332}
1333
1335{
1337
1338 if (vpt->quote != T_BARE_WORD) return FR_TYPE_STRING;
1339
1340 if (tmpl_is_data(vpt)) return tmpl_value_type(vpt);
1341
1342 if (tmpl_is_attr(vpt)) return tmpl_attr_tail_da(vpt)->type;
1343
1345
1346 return FR_TYPE_NULL; /* can't determine it */
1347}
1348
1349
1350static int _tmpl_global_free(UNUSED void *uctx)
1351{
1353
1354 return 0;
1355}
1356
1357static int _tmpl_global_init(UNUSED void *uctx)
1358{
1359 fr_dict_attr_t *da;
1360
1361 if (fr_dict_autoload(tmpl_dict) < 0) {
1362 PERROR("%s", __FUNCTION__);
1363 return -1;
1364 }
1365
1367 fr_assert(da != NULL);
1368
1369 da->type = FR_TYPE_NULL;
1370 tmpl_attr_unspec = da;
1371
1372 return 0;
1373}
1374
1376{
1377 int ret;
1378
1379 fr_atexit_global_once_ret(&ret, _tmpl_global_init, _tmpl_global_free, NULL);
1380
1381 return 0;
1382}
static int context
Definition radmin.c:71
#define UNCONST(_type, _ptr)
Remove const qualification from a pointer.
Definition build.h:167
#define RCSID(id)
Definition build.h:485
#define unlikely(_x)
Definition build.h:383
#define UNUSED
Definition build.h:317
static void * fr_dcursor_next(fr_dcursor_t *cursor)
Advanced the cursor to the next item.
Definition dcursor.h:290
#define fr_assert_msg(_x, _msg,...)
Calls panic_action ifndef NDEBUG, else logs error and causes the server to exit immediately with code...
Definition debug.h:202
#define MEM(x)
Definition debug.h:36
#define fr_dict_autofree(_to_free)
Definition dict.h:918
static fr_slen_t err
Definition dict.h:887
static fr_dict_attr_t * fr_dict_attr_unknown_raw_afrom_num(TALLOC_CTX *ctx, fr_dict_attr_t const *parent, unsigned int attr)
Definition dict.h:616
fr_dict_attr_t const * fr_dict_root(fr_dict_t const *dict)
Return the root attribute of a dictionary.
Definition dict_util.c:2673
fr_dict_t const ** out
Where to write a pointer to the loaded/resolved fr_dict_t.
Definition dict.h:306
#define fr_dict_autoload(_to_load)
Definition dict.h:915
#define DICT_AUTOLOAD_TERMINATOR
Definition dict.h:312
Specifies a dictionary which must be loaded/loadable for the module to function.
Definition dict.h:305
Test enumeration values.
Definition dict_test.h:92
#define FR_DLIST_HEAD(_name)
Expands to the type name used for the head wrapper structure.
Definition dlist.h:1122
#define EXEC_TIMEOUT
Default wait time for exec calls (in seconds).
Definition exec.h:32
int radius_exec_program_legacy(char *out, size_t outlen, request_t *request, char const *cmd, fr_pair_list_t *input_pairs, bool exec_wait, bool shell_escape, fr_time_delta_t timeout)
Execute a program.
#define PERROR(_fmt,...)
Definition log.h:228
#define RWDEBUG2(fmt,...)
Definition log.h:362
#define RPEDEBUG(fmt,...)
Definition log.h:376
#define RDEBUG4(fmt,...)
Definition log.h:344
talloc_free(reap)
size_t(* xlat_escape_legacy_t)(request_t *request, char *out, size_t outlen, char const *in, void *arg)
fr_type_t
@ FR_TYPE_STRING
String of printable characters.
@ FR_TYPE_NULL
Invalid (uninitialised) attribute type.
@ FR_TYPE_VALUE_BOX
A boxed value.
@ FR_TYPE_UINT32
32 Bit unsigned integer.
@ FR_TYPE_GROUP
A grouping of other attributes.
unsigned int uint32_t
long int ssize_t
unsigned char uint8_t
int fr_pair_append_by_da(TALLOC_CTX *ctx, fr_pair_t **out, fr_pair_list_t *list, fr_dict_attr_t const *da)
Alloc a new fr_pair_t (and append)
Definition pair.c:1467
int fr_pair_list_copy(TALLOC_CTX *ctx, fr_pair_list_t *to, fr_pair_list_t const *from)
Duplicate a list of pairs.
Definition pair.c:2326
fr_pair_t * fr_pair_find_by_da(fr_pair_list_t const *list, fr_pair_t const *prev, fr_dict_attr_t const *da)
Find the first pair with a matching da.
Definition pair.c:703
int fr_pair_append(fr_pair_list_t *list, fr_pair_t *to_add)
Add a VP to the end of the list.
Definition pair.c:1348
fr_pair_t * fr_pair_copy(TALLOC_CTX *ctx, fr_pair_t const *vp)
Copy a single valuepair.
Definition pair.c:497
int fr_pair_list_copy_to_box(fr_value_box_t *dst, fr_pair_list_t *from)
Copy the contents of a pair list to a set of value-boxes.
Definition pair.c:2361
#define fr_assert(_expr)
Definition rad_assert.h:38
static bool done
Definition radclient.c:81
#define REDEBUG(fmt,...)
Definition radclient.h:52
#define RDEBUG(fmt,...)
Definition radclient.h:53
fr_dict_attr_t const * request_attr_request
Definition request.c:43
fr_dict_attr_t const * request_attr_control
Definition request.c:45
fr_dict_attr_t const * request_attr_local
Definition request.c:47
fr_dict_attr_t const * request_attr_state
Definition request.c:46
fr_dict_attr_t const * request_attr_reply
Definition request.c:44
static int16_t tmpl_attr_tail_num(tmpl_t const *vpt)
Return the last attribute reference's attribute number.
Definition tmpl.h:887
#define TMPL_VERIFY(_vpt)
Definition tmpl.h:963
#define tmpl_is_xlat(vpt)
Definition tmpl.h:210
#define tmpl_rules_enumv(_tmpl)
Definition tmpl.h:945
#define tmpl_value(_tmpl)
Definition tmpl.h:939
#define tmpl_contains_regex(vpt)
Definition tmpl.h:226
#define tmpl_is_attr(vpt)
Definition tmpl.h:208
#define NUM_ALL
Definition tmpl.h:393
bool tmpl_async_required(tmpl_t const *vpt)
Return whether or not async is required for this tmpl.
#define tmpl_xlat(_tmpl)
Definition tmpl.h:932
static fr_dict_attr_t const * tmpl_list(tmpl_t const *vpt)
Definition tmpl.h:906
static bool tmpl_attr_is_list_attr(tmpl_attr_t const *ar)
Return true if the tmpl_attr is one of the list types.
Definition tmpl.h:681
#define tmpl_rules_cast(_tmpl)
Definition tmpl.h:944
@ TMPL_TYPE_REGEX_UNCOMPILED
Regex where compilation is possible but hasn't been performed yet.
Definition tmpl.h:158
@ TMPL_TYPE_MAX
Marker for the last tmpl type.
Definition tmpl.h:199
@ TMPL_TYPE_ATTR_UNRESOLVED
An attribute reference that we couldn't resolve but looked valid.
Definition tmpl.h:185
@ TMPL_TYPE_ATTR
Reference to one or more attributes.
Definition tmpl.h:142
@ TMPL_TYPE_XLAT
Pre-parsed xlat expansion.
Definition tmpl.h:146
@ TMPL_TYPE_EXEC
Callout to an external script or program.
Definition tmpl.h:150
@ TMPL_TYPE_REGEX_XLAT_UNRESOLVED
A regular expression with unresolved xlat functions or attribute references.
Definition tmpl.h:197
@ TMPL_TYPE_DATA
Value in native boxed format.
Definition tmpl.h:138
@ TMPL_TYPE_REGEX
Compiled (and possibly JIT'd) regular expression.
Definition tmpl.h:154
@ TMPL_TYPE_DATA_UNRESOLVED
Unparsed literal string.
Definition tmpl.h:179
@ TMPL_TYPE_XLAT_UNRESOLVED
A xlat expansion with unresolved xlat functions or attribute references.
Definition tmpl.h:193
@ TMPL_TYPE_REGEX_XLAT
A regex containing xlat expansions.
Definition tmpl.h:162
@ TMPL_TYPE_EXEC_UNRESOLVED
An exec with unresolved xlat function or attribute references.
Definition tmpl.h:189
@ TMPL_TYPE_UNINITIALISED
Uninitialised.
Definition tmpl.h:134
#define NUM_COUNT
Definition tmpl.h:394
#define tmpl_pair_list_and_ctx(_ctx, _head, _request, _ref, _list)
Determine the correct context and list head.
Definition tmpl.h:995
#define tmpl_is_data(vpt)
Definition tmpl.h:206
static fr_slen_t vpt
Definition tmpl.h:1269
#define tmpl_value_type(_tmpl)
Definition tmpl.h:941
static fr_dict_attr_t const * tmpl_attr_tail_da(tmpl_t const *vpt)
Return the last attribute reference da.
Definition tmpl.h:803
static char const * tmpl_list_name(fr_dict_attr_t const *list, char const *def)
Return the name of a tmpl list or def if list not provided.
Definition tmpl.h:917
@ REQUEST_OUTER
request_t containing the outer layer of the EAP conversation.
Definition tmpl.h:92
@ REQUEST_PARENT
Parent (whatever it is).
Definition tmpl.h:96
@ REQUEST_UNKNOWN
Unknown request.
Definition tmpl.h:97
@ REQUEST_CURRENT
The current request (default).
Definition tmpl.h:91
#define tmpl_aexpand(_ctx, _out, _request, _vpt, _escape, _escape_ctx)
Expand a tmpl to a C type, allocing a new buffer to hold the string.
Definition tmpl.h:1064
#define tmpl_needs_resolving(vpt)
Definition tmpl.h:223
static char buff[sizeof("18446744073709551615")+3]
Definition size_tests.c:41
return count
Definition module.c:155
fr_pair_t * vp
An element in a list of nested attribute references.
Definition tmpl.h:432
fr_dict_attr_t const *_CONST da
Resolved dictionary attribute.
Definition tmpl.h:436
Define manipulation functions for the attribute reference list.
Definition tmpl.h:473
tmpl_request_ref_t _CONST request
Definition tmpl.h:477
Stores an attribute, a value and various bits of other data.
Definition pair.h:68
fr_dict_attr_t const *_CONST da
Dictionary attribute defines the attribute number, vendor and type of the pair.
Definition pair.h:69
static fr_time_delta_t fr_time_delta_from_sec(int64_t sec)
Definition time.h:590
void tmpl_dcursor_clear(tmpl_dcursor_ctx_t *cc)
Clear any temporary state allocations.
#define tmpl_dcursor_init(_err, _ctx, _cc, _cursor, _request, _vpt)
Maintains state between cursor calls.
#define tmpl_escape_post_concat(_tmpl)
See if we should perform output escaping after concatenation.
#define tmpl_escape_pre_concat(_tmpl)
See if we should perform output escaping before concatenation.
@ TMPL_ESCAPE_UCTX_ALLOC
A new uctx of the specified size and type is allocated and freed when escaping is complete.
Definition tmpl_escape.h:33
@ TMPL_ESCAPE_UCTX_STATIC
A static (to us) is provided by whatever is initialising the tmpl_escape_t.
Definition tmpl_escape.h:31
@ TMPL_ESCAPE_UCTX_ALLOC_FUNC
A new uctx of the specified size and type is allocated and pre-populated by memcpying uctx....
Definition tmpl_escape.h:35
struct tmpl_escape_t::@75 uctx
Escaping rules for tmpls.
Definition tmpl_escape.h:80
int tmpl_find_vp(fr_pair_t **out, request_t *request, tmpl_t const *vpt)
Returns the first VP matching a tmpl_t.
Definition tmpl_eval.c:772
fr_packet_t * tmpl_packet_ptr(request_t *request, fr_dict_attr_t const *list)
Resolve a list to the fr_packet_t holding the HEAD pointer for a fr_pair_t list.
Definition tmpl_eval.c:140
int tmpl_value_list_insert_tail(fr_value_box_list_t *list, fr_value_box_t *box, tmpl_t const *vpt)
Insert a value-box to a list, with casting.
Definition tmpl_eval.c:924
fr_dict_attr_t const * tmpl_attr_unspec
Placeholder attribute for uses of unspecified attribute references.
Definition tmpl_eval.c:55
static int _tmpl_global_free(UNUSED void *uctx)
Definition tmpl_eval.c:1350
static fr_dict_t const * dict_freeradius
Definition tmpl_eval.c:42
static fr_dict_t const * dict_radius
Definition tmpl_eval.c:43
int tmpl_request_ptr(request_t **context, FR_DLIST_HEAD(tmpl_request_list) const *rql)
Resolve a tmpl_request_ref_t to a request_t.
Definition tmpl_eval.c:163
int tmpl_eval(TALLOC_CTX *ctx, fr_value_box_list_t *out, request_t *request, tmpl_t const *vpt)
Gets the value of a tmpl.
Definition tmpl_eval.c:1096
int tmpl_eval_cast_in_place(fr_value_box_list_t *list, request_t *request, tmpl_t const *vpt)
Casts a value or list of values according to the tmpl.
Definition tmpl_eval.c:1227
fr_pair_list_t * tmpl_list_head(request_t *request, fr_dict_attr_t const *list)
Resolve attribute fr_pair_list_t value to an attribute list.
Definition tmpl_eval.c:70
TALLOC_CTX * tmpl_list_ctx(request_t *request, fr_dict_attr_t const *list)
Return the correct TALLOC_CTX to alloc fr_pair_t in, for a list.
Definition tmpl_eval.c:110
ssize_t _tmpl_to_atype(TALLOC_CTX *ctx, void *out, request_t *request, tmpl_t const *vpt, xlat_escape_legacy_t escape, void const *escape_ctx, fr_type_t dst_type)
Expand a template to a string, allocing a new buffer to hold the string.
Definition tmpl_eval.c:461
fr_type_t tmpl_data_type(tmpl_t const *vpt)
Definition tmpl_eval.c:1334
int tmpl_global_init(void)
Definition tmpl_eval.c:1375
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:949
goto success
Definition tmpl_eval.c:1331
int tmpl_copy_pair_children(TALLOC_CTX *ctx, fr_pair_list_t *out, request_t *request, tmpl_t const *vpt)
Copy children of pairs matching a tmpl_t in the current request_t.
Definition tmpl_eval.c:724
ssize_t _tmpl_to_type(void *out, uint8_t *buff, size_t bufflen, request_t *request, tmpl_t const *vpt, fr_type_t dst_type)
Expand a tmpl_t to a string writing the result to a buffer.
Definition tmpl_eval.c:276
int tmpl_copy_pairs(TALLOC_CTX *ctx, fr_pair_list_t *out, request_t *request, tmpl_t const *vpt)
Copy pairs matching a tmpl_t in the current request_t.
Definition tmpl_eval.c:681
static void tmpl_eval_escape_uctx_free(tmpl_escape_t const *escape, void *uctx)
Free a uctx for an escaping function.
Definition tmpl_eval.c:1202
int tmpl_find_or_add_vp(fr_pair_t **out, request_t *request, tmpl_t const *vpt)
Returns the first VP matching a tmpl_t, or if no VPs match, creates a new one.
Definition tmpl_eval.c:801
static int _tmpl_global_init(UNUSED void *uctx)
Definition tmpl_eval.c:1357
fr_dict_autoload_t tmpl_dict[]
Definition tmpl_eval.c:46
static void * tmpl_eval_escape_uctx_alloc(request_t *request, tmpl_escape_t const *escape)
Allocate a uctx for an escaping function.
Definition tmpl_eval.c:1171
fr_type_t tmpl_expanded_type(tmpl_t const *vpt)
Return the native data type of the expression.
Definition tmpl_eval.c:203
int pair_append_by_tmpl_parent(TALLOC_CTX *ctx, fr_pair_t **out, fr_pair_list_t *list, tmpl_t const *vpt, bool skip_list)
Allocate and insert a leaf vp from a tmpl_t, building the parent vps if needed.
Definition tmpl_eval.c:858
@ T_SINGLE_QUOTED_STRING
Definition token.h:122
@ T_BARE_WORD
Definition token.h:120
@ T_BACK_QUOTED_STRING
Definition token.h:123
@ T_DOUBLE_QUOTED_STRING
Definition token.h:121
@ T_SOLIDUS_QUOTED_STRING
Definition token.h:124
ssize_t xlat_eval_compiled(char *out, size_t outlen, request_t *request, xlat_exp_head_t const *head, xlat_escape_legacy_t escape, void const *escape_ctx))
Definition xlat_eval.c:1859
static fr_slen_t head
Definition xlat.h:420
ssize_t xlat_aeval_compiled(TALLOC_CTX *ctx, char **out, request_t *request, xlat_exp_head_t const *head, xlat_escape_legacy_t escape, void const *escape_ctx))
Definition xlat_eval.c:1876
fr_type_t xlat_data_type(xlat_exp_head_t const *head)
#define PAIR_ALLOCED(_x)
Definition pair.h:209
void fr_pair_list_free(fr_pair_list_t *list)
Free memory used by a valuepair list.
#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_variable_size(_x)
Definition types.h:389
#define fr_type_is_structural(_x)
Definition types.h:393
#define fr_type_is_string(_x)
Definition types.h:349
#define FR_TYPE_STRUCTURAL
Definition types.h:317
#define fr_type_is_null(_x)
Definition types.h:348
#define fr_type_is_leaf(_x)
Definition types.h:394
static char const * fr_type_to_str(fr_type_t type)
Return a static string containing the type name.
Definition types.h:455
size_t const fr_value_box_field_sizes[]
How many bytes wide each of the value data fields are.
Definition value.c:152
int fr_value_box_strtrim(TALLOC_CTX *ctx, fr_value_box_t *vb)
Trim the length of the string buffer to match the length of the C string.
Definition value.c:4420
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:3730
size_t const fr_value_box_offsets[]
Where the value starts in the fr_value_box_t.
Definition value.c:194
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:4174
int fr_value_box_list_escape_in_place(fr_value_box_list_t *list, fr_value_box_escape_t const *escape, void *uctx)
Escape a list of value boxes in place.
Definition value.c:6524
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:3976
ssize_t fr_value_box_from_str(TALLOC_CTX *ctx, fr_value_box_t *dst, fr_type_t dst_type, fr_dict_attr_t const *dst_enumv, char const *in, size_t inlen, fr_sbuff_unescape_rules_t const *erules)
Definition value.c:5780
void fr_value_box_list_mark_safe_for(fr_value_box_list_t *list, fr_value_box_safe_for_t safe_for)
Set the escaped flag for all value boxes in a list.
Definition value.c:6880
void fr_value_box_strdup_shallow(fr_value_box_t *dst, fr_dict_attr_t const *enumv, char const *src, bool tainted)
Assign a buffer containing a nul terminated string to a box, but don't copy it.
Definition value.c:4503
int fr_value_box_bstr_alloc(TALLOC_CTX *ctx, char **out, fr_value_box_t *dst, fr_dict_attr_t const *enumv, size_t len, bool tainted)
Alloc and assign an empty \0 terminated string to a fr_value_box_t.
Definition value.c:4538
int fr_value_box_steal(TALLOC_CTX *ctx, fr_value_box_t *dst, fr_value_box_t *src)
Copy value data verbatim moving any buffers to the specified context.
Definition value.c:4327
void fr_value_box_clear(fr_value_box_t *data)
Clear/free any existing value and metadata.
Definition value.c:4157
void fr_value_box_bstrndup_shallow(fr_value_box_t *dst, fr_dict_attr_t const *enumv, char const *src, size_t len, bool tainted)
Assign a string to to a fr_value_box_t.
Definition value.c:4699
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:6300
@ FR_VALUE_BOX_LIST_FREE_BOX
Free each processed box.
Definition value.h:236
#define fr_value_box_list_foreach_safe(_list_head, _iter)
Definition value.h:225
#define fr_value_box_alloc(_ctx, _type, _enumv)
Allocate a value box of a specific type.
Definition value.h:643
static int fr_value_box_memcpy_out(void *out, fr_value_box_t const *vb)
Copy the value of a value box to a field in a C struct.
Definition value.h:790
#define FR_VALUE_BOX_INITIALISER_NULL(_vb)
A static initialiser for stack/globally allocated boxes.
Definition value.h:510
#define VALUE_BOX_VERIFY(_x)
Definition value.h:1352
#define VALUE_BOX_LIST_VERIFY(_x)
Definition value.h:1353
#define fr_value_box_alloc_null(_ctx)
Allocate a value box for later use with a value assignment function.
Definition value.h:654
static size_t char ** out
Definition value.h:1023