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: 6a4adf9f7e310f8e3bfcf2c916cf0d3fcc60a0d2 $
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: 6a4adf9f7e310f8e3bfcf2c916cf0d3fcc60a0d2 $")
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 return -1;
403 }
404
405 /*
406 * Copy the data to the buffer, and clear the alloc'd pointer.
407 */
408 memcpy(buff, from_cast->vb_octets, len);
409 fr_value_box_clear(&value_from_cast);
410
411 /*
412 * "out" is a pointer to a char* or uint8_t*
413 */
414 *(uint8_t **) out = buff;
415
416 return from_cast->vb_length;
417 }
418
419do_copy:
420 RDEBUG4("Copying %zu bytes to %p from offset %zu",
422
423 fr_value_box_memcpy_out(out, from_cast);
424
425 return from_cast->vb_length;
426}
427
428/** Expand a template to a string, allocing a new buffer to hold the string
429 *
430 * The intended use of #tmpl_expand and #tmpl_aexpand is for modules to easily convert a #tmpl_t
431 * provided by the conf parser, into a usable value.
432 * The value returned should be raw and undoctored for #FR_TYPE_STRING and #FR_TYPE_OCTETS types,
433 * and the printable (string) version of the data for all others.
434 *
435 * This function will always duplicate values, whereas #tmpl_expand may return a pointer to an
436 * existing buffer.
437 *
438 * @note This function is used where raw string values are needed, which may mean the string
439 * returned may be binary data or contain unprintable chars. #fr_snprint or #fr_asprint should
440 * be used before using these values in debug statements. #is_printable can be used to check
441 * if the string only contains printable chars.
442 *
443 * @note The type (char or uint8_t) can be obtained with talloc_get_type, and may be used as a
444 * hint as to how to process or print the data.
445 *
446 * @param ctx to allocate new buffer in.
447 * @param out Where to write pointer to the new buffer.
448 * @param request Current request.
449 * @param vpt to expand. Must be one of the following types:
450 * - #TMPL_TYPE_DATA_UNRESOLVED
451 * - #TMPL_TYPE_EXEC
452 * - #TMPL_TYPE_XLAT
453 * - #TMPL_TYPE_ATTR
454 * - #TMPL_TYPE_DATA
455 * @param escape xlat escape function (only used for TMPL_TYPE_XLAT_UNRESOLVED_* types).
456 * @param escape_ctx xlat escape function data (only used for TMPL_TYPE_XLAT_UNRESOLVED_* types).
457 * @param dst_type FR_TYPE_* matching out pointer. @see tmpl_aexpand.
458 * @return
459 * - -1 on failure.
460 * - The length of data written to buff, or pointed to by out.
461 */
462ssize_t _tmpl_to_atype(TALLOC_CTX *ctx, void *out,
463 request_t *request,
464 tmpl_t const *vpt,
465 xlat_escape_legacy_t escape, void const *escape_ctx,
466 fr_type_t dst_type)
467{
468 fr_value_box_t *vb_out, *vb_in = NULL;
470
471 fr_pair_t *vp = NULL;
472 bool needs_dup = false;
473
474 ssize_t slen = -1;
475 int ret;
476
477 TALLOC_CTX *tmp_ctx = NULL;
478 char *str = NULL;
479
481
484
485 switch (vpt->type) {
486 case TMPL_TYPE_EXEC:
487 RDEBUG4("EXPAND TMPL EXEC");
488
489 MEM(tmp_ctx = talloc_new(ctx));
490
491 MEM(fr_value_box_bstr_alloc(tmp_ctx, &str, &value, NULL, 1024, true));
492 if (radius_exec_program_legacy(str, 1024, request, vpt->name, NULL,
493 true, false, fr_time_delta_from_sec(EXEC_TIMEOUT)) != 0) {
494 error:
495 talloc_free(tmp_ctx);
496 return slen;
497 }
498
499 fr_value_box_strtrim(tmp_ctx, &value);
500 vb_in = &value;
501 break;
502
503 case TMPL_TYPE_XLAT:
505 RDEBUG4("EXPAND TMPL XLAT STRUCT");
506
507 MEM(tmp_ctx = talloc_new(ctx));
508
509 /*
510 * An error in expansion is distinct from zero
511 * length expansion. Zero-length strings are
512 * permitted.
513 */
514 slen = xlat_aeval_compiled(tmp_ctx, &str, request, tmpl_xlat(vpt), escape, escape_ctx);
515 if (slen < 0) {
516 RPEDEBUG("Failed expanding %s", vpt->name);
517 goto error;
518 }
519
520 /*
521 * The output is a string which might get cast to something later.
522 */
523 fr_value_box_bstrndup_shallow(&value, NULL, str, (size_t) slen, false);
524 vb_in = &value;
525 break;
526
527 case TMPL_TYPE_ATTR:
528 RDEBUG4("EXPAND TMPL ATTR");
529
530 ret = tmpl_find_vp(&vp, request, vpt);
531 if (ret < 0) {
532 RDEBUG("Failed finding attribute %s", vpt->name);
533 talloc_free(tmp_ctx);
534 return -2;
535 }
536
537 fr_assert(vp);
538
539 needs_dup = true;
540 vb_in = &vp->data;
541 break;
542
543 case TMPL_TYPE_DATA:
544 RDEBUG4("EXPAND TMPL DATA");
545
546 needs_dup = true;
548 break;
549
550 /*
551 * We should never be expanding these.
552 */
555 case TMPL_TYPE_REGEX:
561 case TMPL_TYPE_MAX:
562 fr_assert(0);
563 goto error;
564 }
565
566 fr_assert(vb_in != NULL);
567 VALUE_BOX_VERIFY(vb_in);
568
569 /*
570 * If the output is a value-box, we might cast it using the tmpl cast. When done, we just copy
571 * the value-box.
572 */
573 if (dst_type == FR_TYPE_VALUE_BOX) {
574 fr_type_t cast_type;
575
576 MEM(vb_out = fr_value_box_alloc_null(ctx));
577 cast_type = tmpl_rules_cast(vpt);
578
579 if (cast_type == FR_TYPE_NULL) {
580 if (needs_dup) {
581 if (unlikely(fr_value_box_copy(vb_out, vb_out, vb_in) < 0)) {
582 talloc_free(vb_out);
583 goto failed_cast;
584 }
585 } else {
586 fr_value_box_steal(vb_out, vb_out, vb_in);
587 }
588 talloc_free(tmp_ctx);
589
590 } else {
591 ret = fr_value_box_cast(vb_out, vb_out, cast_type, NULL, vb_in);
592 talloc_free(tmp_ctx);
593
594 if (ret < 0) {
595 talloc_free(vb_out);
596 dst_type = cast_type;
597
598 failed_cast:
599 RPEDEBUG("Failed casting input %pV to data type %s", vb_in, fr_type_to_str(dst_type));
600 goto error;
601 }
602 }
603
604 VALUE_BOX_VERIFY(vb_out);
605 *(fr_value_box_t **) out = vb_out;
606 return 0;
607 }
608
609 /*
610 * Cast the data to the correct type. Which also allocates any variable sized buffers from the
611 * output ctx.
612 */
613 if (dst_type != vb_in->type) {
614 if (vb_in == &value) {
615 size_t datalen;
616
617 fr_assert(tmp_ctx != NULL);
618 fr_assert(str != NULL);
619 fr_assert(dst_type != FR_TYPE_STRING); /* exec / xlat returned string in 'str' */
620
621 datalen = talloc_strlen(str);
622 slen = fr_value_box_from_str(ctx, &value, dst_type, NULL, str, datalen, NULL);
623 if (slen < 0) {
624 fr_value_box_bstrndup_shallow(&value, NULL, str, datalen, false);
625 goto failed_cast;
626 }
627
628 } else {
629 ret = fr_value_box_cast(ctx, &value, dst_type, NULL, vb_in);
630 if (ret < 0) goto failed_cast;
631 }
632
633 /*
634 * The input data has been converted, and placed into value.
635 */
636 vb_in = &value;
637
638 } else if (fr_type_is_variable_size(dst_type)) {
639 /*
640 * The output type is the same, but variable sized types need to be either duplicated, or
641 * reparented.
642 */
643 if (needs_dup) {
644 fr_assert(vb_in != &value);
645
646 if (unlikely(fr_value_box_copy(ctx, &value, vb_in) < 0)) goto failed_cast;
647 vb_in = &value;
648 } else {
649 fr_assert(dst_type == FR_TYPE_STRING);
650 fr_assert(str != NULL);
651
652 (void) talloc_steal(ctx, str); /* ensure it's parented from the right context */
653 fr_assert(vb_in == &value);
654 }
655 } /* else the output type is a leaf, and is the same data type as the input */
656
657 RDEBUG4("Copying %zu bytes to %p from offset %zu",
659
661
662 /*
663 * Frees any memory allocated for temporary buffers
664 * in this function.
665 */
666 talloc_free(tmp_ctx);
667
668 return vb_in->vb_length;
669}
670
671/** Copy pairs matching a #tmpl_t in the current #request_t
672 *
673 * @param ctx to allocate new #fr_pair_t in.
674 * @param out Where to write the copied #fr_pair_t (s).
675 * @param request The current #request_t.
676 * @param vpt specifying the #fr_pair_t type or list to copy.
677 * Must be one of the following types:
678 * - #TMPL_TYPE_ATTR
679 * @return
680 * - -1 if no matching #fr_pair_t could be found.
681 * - -2 if list could not be found (doesn't exist in current #request_t).
682 * - -3 if context could not be found (no parent #request_t available).
683 * - -4 on memory allocation error.
684 */
685int tmpl_copy_pairs(TALLOC_CTX *ctx, fr_pair_list_t *out, request_t *request, tmpl_t const *vpt)
686{
687 fr_pair_t *vp;
688 fr_dcursor_t from;
690 int err;
691
693
695
696 for (vp = tmpl_dcursor_init(&err, NULL, &cc, &from, request, vpt);
697 vp;
698 vp = fr_dcursor_next(&from)) {
699 vp = fr_pair_copy(ctx, vp);
700 if (!vp) {
702 fr_strerror_const("Out of memory");
703 err = -4;
704 break;
705 }
707 }
709
710 return err;
711}
712
713
714/** Copy children of pairs matching a #tmpl_t in the current #request_t
715 *
716 * @param ctx to allocate new #fr_pair_t in.
717 * @param out Where to write the copied #fr_pair_t (s).
718 * @param request The current #request_t.
719 * @param vpt specifying the #fr_pair_t type or list to copy.
720 * Must be one of the following types:
721 * - #TMPL_TYPE_ATTR
722 * @return
723 * - -1 if no matching #fr_pair_t could be found.
724 * - -2 if list could not be found (doesn't exist in current #request_t).
725 * - -3 if context could not be found (no parent #request_t available).
726 * - -4 on memory allocation error.
727 */
728int tmpl_copy_pair_children(TALLOC_CTX *ctx, fr_pair_list_t *out, request_t *request, tmpl_t const *vpt)
729{
730 fr_pair_t *vp;
731 fr_dcursor_t from;
733 int err;
734
736
738
740
741 for (vp = tmpl_dcursor_init(&err, NULL, &cc, &from, request, vpt);
742 vp;
743 vp = fr_dcursor_next(&from)) {
744 switch (vp->vp_type) {
746 if (fr_pair_list_copy(ctx, out, &vp->vp_group) < 0) {
747 err = -4;
748 goto done;
749 }
750 break;
751
752 default:
753 continue;
754 }
755 }
756done:
758
759 return err;
760}
761
762
763/** Returns the first VP matching a #tmpl_t
764 *
765 * @param[out] out where to write the retrieved vp.
766 * @param[in] request The current #request_t.
767 * @param[in] vpt specifying the #fr_pair_t type to find.
768 * Must be one of the following types:
769 * - #TMPL_TYPE_ATTR
770 * @return
771 * - 0 on success (found matching #fr_pair_t).
772 * - -1 if no matching #fr_pair_t could be found.
773 * - -2 if list could not be found (doesn't exist in current #request_t).
774 * - -3 if context could not be found (no parent #request_t available).
775 */
777{
778 fr_dcursor_t cursor;
780 fr_pair_t *vp;
781 int err;
782
784
785 vp = tmpl_dcursor_init(&err, request, &cc, &cursor, request, vpt);
787
788 if (out) *out = vp;
789
790 return err;
791}
792
793/** Returns the first VP matching a #tmpl_t, or if no VPs match, creates a new one.
794 *
795 * @param[out] out where to write the retrieved or created vp.
796 * @param[in] request The current #request_t.
797 * @param[in] vpt specifying the #fr_pair_t type to retrieve or create. Must be #TMPL_TYPE_ATTR.
798 * @return
799 * - 1 on success a pair was created.
800 * - 0 on success a pair was found.
801 * - -1 if a new #fr_pair_t couldn't be found or created.
802 * - -2 if list could not be found (doesn't exist in current #request_t).
803 * - -3 if context could not be found (no parent #request_t available).
804 */
806{
807 fr_dcursor_t cursor;
809 fr_pair_t *vp;
810 int err;
811
814
815 *out = NULL;
816
817 vp = tmpl_dcursor_init(&err, NULL, &cc, &cursor, request, vpt);
819
820 switch (err) {
821 case 0:
822 *out = vp;
823 return 0;
824
825 case -1:
826 {
827 TALLOC_CTX *ctx;
829
830 tmpl_pair_list_and_ctx(ctx, head, request, tmpl_request(vpt), tmpl_list(vpt));
831 if (!head) return -1;
832
833 if (pair_append_by_tmpl_parent(ctx, &vp, head, vpt, true) < 0) return -1;
834
836 *out = vp;
837 }
838 return 1;
839
840 default:
841 return err;
842 }
843}
844
845/** Allocate and insert a leaf vp from a tmpl_t, building the parent vps if needed.
846 *
847 * This is the simple case - just add a vp at the first place where
848 * the parents exist, or create the parents, with no attempt to handle filters.
849 *
850 * It is functionally equivalent to fr_pair_append_by_da_parent() but
851 * uses a tmpl_t to build the nested structure rather than a fr_dict_attr_t.
852 *
853 * @param[in] ctx to allocate new pair(s) in
854 * @param[out] out Leaf pair we allocated.
855 * @param[in] list to insert into.
856 * @param[in] vpt tmpl representing the attribute to add.
857 * @param[in] skip_list skip list attr ref at the head of the tmpl.
858 * @return
859 * - 0 on success.
860 * - -1 on failure.
861 */
862int pair_append_by_tmpl_parent(TALLOC_CTX *ctx, fr_pair_t **out, fr_pair_list_t *list, tmpl_t const *vpt, bool skip_list)
863{
864 fr_pair_t *vp = NULL;
865 TALLOC_CTX *pair_ctx = ctx;
866 tmpl_attr_t *ar, *leaf;
867 tmpl_attr_list_head_t const *ar_list = &vpt->data.attribute.ar;
868
869 if (!tmpl_is_attr(vpt)) {
870 error:
871 *out = NULL;
872 return -1;
873 }
874
875 leaf = tmpl_attr_list_tail(ar_list);
876 ar = tmpl_attr_list_head(ar_list);
877 if (!ar) goto error;
878 if (skip_list && tmpl_attr_is_list_attr(ar)) ar = tmpl_attr_list_next(ar_list, ar);
879
880 /*
881 * Walk down the tmpl ar stack looking for candidate parent
882 * attributes and then allocating the leaf.
883 */
884 while (true) {
885 if (unlikely(!ar)) goto error;
886 /*
887 * We're not at the leaf, look for a potential parent
888 */
889 if (ar != leaf) {
890 vp = fr_pair_find_by_da(list, NULL, ar->da);
891 }
892
893 /*
894 * Nothing found, create the pair
895 */
896 if (!vp) {
897 if (fr_pair_append_by_da(pair_ctx, &vp, list, ar->da) < 0) goto error;
899 }
900
901 /*
902 * We're at the leaf, return
903 */
904 if (ar == leaf) {
905 *out = vp;
906 return 0;
907 }
908
909 /*
910 * Prepare for next level
911 */
912 list = &vp->vp_group;
913 pair_ctx = vp;
914 vp = NULL;
915 ar = tmpl_attr_list_next(ar_list, ar);
916 }
917}
918
919/** Insert a value-box to a list, with casting.
920 *
921 * @param list to append to
922 * @param box box to cast / append
923 * @param vpt tmpl with cast.
924 * @return
925 * - <0 for "cast failed"
926 * - 0 for success
927 */
928int tmpl_value_list_insert_tail(fr_value_box_list_t *list, fr_value_box_t *box, tmpl_t const *vpt)
929{
931 (box->type == tmpl_rules_cast(vpt))) {
932 fr_value_box_list_insert_tail(list, box);
933 return 0;
934 }
935
936 if (fr_value_box_cast_in_place(box, box, tmpl_rules_cast(vpt), tmpl_rules_enumv(vpt)) < 0) return -1;
937
938 fr_value_box_list_insert_tail(list, box);
940 return 0;
941}
942
943/** Gets the value of a real or virtual attribute
944 *
945 * @param[in] ctx to allocate boxed value, and buffers in.
946 * @param[out] out Where to write the boxed value.
947 * @param[in] request The current request.
948 * @param[in] vpt Representing the attribute.
949 * @return
950 * - <0 we failed getting a value for the attribute.
951 * - 0 we successfully evaluated the tmpl
952 */
953int tmpl_eval_pair(TALLOC_CTX *ctx, fr_value_box_list_t *out, request_t *request, tmpl_t const *vpt)
954{
955 fr_pair_t *vp = NULL;
957
958 fr_dcursor_t cursor;
960
961 int ret = 0;
962 fr_value_box_list_t list;
963
965
966 fr_value_box_list_init(&list);
967
968 /*
969 * See if we're dealing with an attribute in the request
970 *
971 * This allows users to manipulate virtual attributes as if
972 * they were real ones.
973 */
974 vp = tmpl_dcursor_init(NULL, NULL, &cc, &cursor, request, vpt);
975
976 /*
977 * We didn't find the VP in a list, check to see if it's
978 * virtual. This allows the caller to "realize" the
979 * attribute, and we then prefer the realized version to
980 * the virtual one.
981 */
982 if (!vp) {
983 /*
984 * Zero count.
985 */
988 if (!value) {
989 oom:
990 fr_strerror_const("Out of memory");
991 ret = -1;
992 goto fail;
993 }
994 value->datum.int32 = 0;
995 fr_value_box_list_insert_tail(&list, value);
996 } /* Fall through to being done */
997
998 goto done;
999 }
1000
1001 switch (tmpl_attr_tail_num(vpt)) {
1002 /*
1003 * Return a count of the VPs.
1004 */
1005 case NUM_COUNT:
1006 {
1007 uint32_t count = 0;
1008
1009 while (vp != NULL) {
1010 count++;
1011 vp = fr_dcursor_next(&cursor);
1012 }
1013
1015 if (!value) goto oom;
1016 value->datum.uint32 = count;
1017 fr_value_box_list_insert_tail(&list, value);
1018 break;
1019 }
1020
1021 /*
1022 * Output multiple #value_box_t, one per attribute.
1023 */
1024 case NUM_ALL:
1025 /*
1026 * Loop over all matching #fr_value_pair
1027 * shallow copying buffers.
1028 */
1029 while (vp != NULL) {
1030 if (fr_type_is_structural(vp->vp_type)) {
1032 if (!value) goto oom;
1033
1034 if (fr_pair_list_copy_to_box(value, &vp->vp_group) < 0) {
1036 goto oom;
1037 }
1038
1039 } else {
1040 value = fr_value_box_alloc(ctx, vp->data.type, vp->da);
1041 if (!value) goto oom;
1042 if(unlikely(fr_value_box_copy(value, value, &vp->data) < 0)) {
1044 goto fail;
1045 }
1046 }
1047
1048 fr_value_box_list_insert_tail(&list, value);
1049 vp = fr_dcursor_next(&cursor);
1050 }
1051 break;
1052
1053 default:
1054 if (!fr_type_is_leaf(vp->vp_type)) {
1055 fr_strerror_const("Invalid data type for evaluation");
1056 goto fail;
1057 }
1058
1059 value = fr_value_box_alloc(ctx, vp->data.type, vp->da);
1060 if (!value) goto oom;
1061
1062 if (unlikely(fr_value_box_copy(value, value, &vp->data) < 0)) {
1064 goto fail;
1065 }
1066 fr_value_box_list_insert_tail(&list, value);
1067 break;
1068 }
1069
1070done:
1071 /*
1072 * Evaluate casts if necessary.
1073 */
1074 if (ret == 0) {
1075 if (tmpl_eval_cast_in_place(&list, request, vpt) < 0) {
1076 fr_value_box_list_talloc_free(&list);
1077 ret = -1;
1078 goto fail;
1079 }
1080
1081 fr_value_box_list_move(out, &list);
1082 }
1083
1084fail:
1085 tmpl_dcursor_clear(&cc);
1087 return ret;
1088}
1089
1090
1091/** Gets the value of a tmpl
1092 *
1093 * The result is returned "raw". The caller must do any escaping it desires.
1094 *
1095 * @param[in] ctx to allocate boxed value, and buffers in.
1096 * @param[out] out Where to write the boxed value.
1097 * @param[in] request The current request.
1098 * @param[in] vpt Representing the tmpl
1099 * @return
1100 * - <0 we failed getting a value for the tmpl
1101 * - 0 we successfully evaluated the tmpl
1102 */
1103int tmpl_eval(TALLOC_CTX *ctx, fr_value_box_list_t *out, request_t *request, tmpl_t const *vpt)
1104{
1105 char *p;
1107 fr_value_box_list_t list;
1108
1110 fr_strerror_const("Cannot evaluate unresolved tmpl");
1111 return -1;
1112 }
1113
1114 if (tmpl_async_required(vpt)) {
1115 fr_strerror_const("Cannot statically evaluate asynchronous expansions");
1116 return -1;
1117 }
1118
1119 if (tmpl_contains_regex(vpt)) {
1120 fr_strerror_const("Cannot statically evaluate regular expression");
1121 return -1;
1122 }
1123
1124 if (tmpl_is_attr(vpt)) {
1125 return tmpl_eval_pair(ctx, out, request, vpt);
1126 }
1127
1128 if (tmpl_is_data(vpt)) {
1130
1133 return -1; /* Also dups taint */
1134 }
1135 goto done;
1136 }
1137
1139
1140 /*
1141 * @todo - respect escaping functions. But the sync
1142 * escaping uses a different method than the async ones.
1143 * And we then also need to escape the output of
1144 * tmpl_eval_pair(), too.
1145 */
1147 if (tmpl_aexpand(value, &p, request, vpt, NULL, NULL) < 0) {
1149 return -1;
1150 }
1152
1153 /*
1154 * Cast the results if necessary.
1155 */
1156done:
1157 fr_value_box_list_init(&list);
1158 fr_value_box_list_insert_tail(&list, value);
1159
1160 if (tmpl_eval_cast_in_place(&list, request, vpt) < 0) {
1161 fr_value_box_list_talloc_free(&list);
1162 return -1;
1163 }
1164
1165 fr_value_box_list_move(out, &list);
1167
1168 return 0;
1169}
1170
1171/** Allocate a uctx for an escaping function
1172 *
1173 * @param[in] request The current request.
1174 * @param[in] escape Describing how to escape tmpl data.
1175 *
1176 * @return the uctx to pass to the escape function.
1177 */
1178static inline void *tmpl_eval_escape_uctx_alloc(request_t *request, tmpl_escape_t const *escape)
1179{
1180 switch (escape->uctx.type) {
1182 return UNCONST(void *, escape->uctx.ptr);
1183
1185 {
1186 void *uctx;
1187
1188 fr_assert_msg(escape->uctx.size > 0, "TMPL_ESCAPE_UCTX_ALLOC must specify uctx.size > 0");
1189 MEM(uctx = talloc_zero_array(NULL, uint8_t, escape->uctx.size));
1190 if (escape->uctx.talloc_type) talloc_set_type(uctx, escape->uctx.talloc_type);
1191 return uctx;
1192 }
1193
1195 fr_assert_msg(escape->uctx.func.alloc, "TMPL_ESCAPE_UCTX_ALLOC_FUNC must specify a non-null alloc.func");
1196 return escape->uctx.func.alloc(request, escape->uctx.func.uctx);
1197
1198 default:
1199 fr_assert_msg(0, "Unknown escape uctx type %u", escape->uctx.type);
1200 return NULL;
1201 }
1202}
1203
1204/** Free a uctx for an escaping function
1205 *
1206 * @param[in] escape Describing how to escape tmpl data.
1207 * @param[in] uctx The uctx to free.
1208 */
1209static inline void tmpl_eval_escape_uctx_free(tmpl_escape_t const *escape, void *uctx)
1210{
1211 switch (escape->uctx.type) {
1213 return;
1214
1216 talloc_free(uctx);
1217 return;
1218
1220 if (escape->uctx.func.free) escape->uctx.func.free(uctx);
1221 return;
1222 }
1223}
1224
1225/** Casts a value or list of values according to the tmpl
1226 *
1227 * @param[in,out] list Where to write the boxed value.
1228 * @param[in] request The current request.
1229 * @param[in] vpt Representing the attribute.
1230 * @return
1231 * - <0 the cast failed
1232 * - 0 we successfully evaluated the tmpl
1233 */
1234int tmpl_eval_cast_in_place(fr_value_box_list_t *list, request_t *request, tmpl_t const *vpt)
1235{
1237 bool did_concat = false;
1238 void *uctx = NULL;
1239
1240 if (fr_type_is_structural(cast)) {
1241 fr_strerror_printf("Cannot cast to structural type '%s'", fr_type_to_str(cast));
1242 return -1;
1243 }
1244
1245 /*
1246 * Quoting around the tmpl means everything
1247 * needs to be concatenated, either as a string
1248 * or octets string.
1249 */
1250 switch (vpt->quote) {
1255 {
1256 ssize_t slen;
1257 fr_value_box_t *vb;
1258
1259 vb = fr_value_box_list_head(list);
1260 if (!vb) return 0;
1261
1263 uctx = tmpl_eval_escape_uctx_alloc(request, &vpt->rules.escape);
1264 /*
1265 * Sets escaped values, so boxes don't get re-escaped
1266 */
1267 if (unlikely(fr_value_box_list_escape_in_place(list, &vpt->rules.escape.box_escape, uctx) < 0)) {
1268 error:
1269 tmpl_eval_escape_uctx_free(&vpt->rules.escape, uctx);
1270 return -1;
1271 }
1272 }
1273
1275 FR_VALUE_BOX_LIST_FREE_BOX, true, SIZE_MAX);
1276 if (slen < 0) goto error;
1278
1279 /*
1280 * If there's no cast, or it's a cast to
1281 * a string, we're done!
1282 *
1283 * Otherwise we now need to re-cast the
1284 * result.
1285 */
1286 if (fr_type_is_null(cast) || fr_type_is_string(cast)) {
1287 success:
1288 tmpl_eval_escape_uctx_free(&vpt->rules.escape, uctx);
1289 return 0;
1290 }
1291
1292 did_concat = true;
1293 }
1294 break;
1295
1296 default:
1297 break;
1298 }
1299
1300 if (fr_type_is_null(cast)) goto success;
1301
1302 /*
1303 * Quoting above handled all concatenation,
1304 * we now need to handle potentially
1305 * multivalued lists.
1306 */
1307 fr_value_box_list_foreach(list, vb) {
1308 if (fr_value_box_cast_in_place(vb, vb, cast, NULL) < 0) goto error;
1309 }
1310
1311 /*
1312 * ...and finally, apply the escape function
1313 * if necessary. This is done last so that
1314 * the escape function gets boxes of the type
1315 * it expects.
1316 */
1317 if ((!did_concat && tmpl_escape_pre_concat(vpt)) || tmpl_escape_post_concat(vpt)) {
1318 uctx = tmpl_eval_escape_uctx_alloc(request, &vpt->rules.escape);
1319 if (unlikely(fr_value_box_list_escape_in_place(list, &vpt->rules.escape.box_escape, uctx) < 0)) goto error;
1320 }
1321
1322 /*
1323 * If there's no escape function, but there is
1324 * a safe_for value, mark all the boxes up with
1325 * this value.
1326 *
1327 * This is mostly useful for call_env usage in
1328 * modules where certain values are implicitly safe
1329 * for consumption, like SQL statements in the SQL
1330 * module.
1331 */
1332 if (!vpt->rules.escape.box_escape.func && vpt->rules.escape.box_escape.safe_for) {
1333 fr_value_box_list_mark_safe_for(list, vpt->rules.escape.box_escape.safe_for);
1334 }
1335
1337
1338 goto success;
1339}
1340
1342{
1344
1345 if (vpt->quote != T_BARE_WORD) return FR_TYPE_STRING;
1346
1347 if (tmpl_is_data(vpt)) return tmpl_value_type(vpt);
1348
1349 if (tmpl_is_attr(vpt)) return tmpl_attr_tail_da(vpt)->type;
1350
1352
1353 return FR_TYPE_NULL; /* can't determine it */
1354}
1355
1356
1357static int _tmpl_global_free(UNUSED void *uctx)
1358{
1360
1361 return 0;
1362}
1363
1364static int _tmpl_global_init(UNUSED void *uctx)
1365{
1366 fr_dict_attr_t *da;
1367
1368 if (fr_dict_autoload(tmpl_dict) < 0) {
1369 PERROR("%s", __FUNCTION__);
1370 return -1;
1371 }
1372
1374 fr_assert(da != NULL);
1375
1376 da->type = FR_TYPE_NULL;
1377 tmpl_attr_unspec = da;
1378
1379 return 0;
1380}
1381
1383{
1384 int ret;
1385
1386 fr_atexit_global_once_ret(&ret, _tmpl_global_init, _tmpl_global_free, NULL);
1387
1388 return ret;
1389}
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:487
#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:917
static fr_slen_t err
Definition dict.h:884
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:613
fr_dict_attr_t const * fr_dict_root(fr_dict_t const *dict)
Return the root attribute of a dictionary.
Definition dict_util.c:2666
fr_dict_t const ** out
Where to write a pointer to the loaded/resolved fr_dict_t.
Definition dict.h:307
#define fr_dict_autoload(_to_load)
Definition dict.h:914
#define DICT_AUTOLOAD_TERMINATOR
Definition dict.h:313
Specifies a dictionary which must be loaded/loadable for the module to function.
Definition dict.h:306
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:1104
#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.
talloc_free(hp)
#define PERROR(_fmt,...)
Definition log.h:228
#define RWDEBUG2(fmt,...)
Definition log.h:374
#define RPEDEBUG(fmt,...)
Definition log.h:388
#define RDEBUG4(fmt,...)
Definition log.h:356
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:1473
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:2332
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:709
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:1354
fr_pair_t * fr_pair_copy(TALLOC_CTX *ctx, fr_pair_t const *vp)
Copy a single valuepair.
Definition pair.c:503
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:2367
#define fr_assert(_expr)
Definition rad_assert.h:38
#define REDEBUG(fmt,...)
#define RDEBUG(fmt,...)
static bool done
Definition radclient.c:83
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:885
#define TMPL_VERIFY(_vpt)
Definition tmpl.h:961
#define tmpl_is_xlat(vpt)
Definition tmpl.h:210
#define tmpl_rules_enumv(_tmpl)
Definition tmpl.h:943
#define tmpl_value(_tmpl)
Definition tmpl.h:937
#define tmpl_contains_regex(vpt)
Definition tmpl.h:226
#define tmpl_is_attr(vpt)
Definition tmpl.h:208
#define NUM_ALL
Definition tmpl.h:395
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:930
static fr_dict_attr_t const * tmpl_list(tmpl_t const *vpt)
Definition tmpl.h:904
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:683
#define tmpl_rules_cast(_tmpl)
Definition tmpl.h:942
@ 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:396
#define tmpl_pair_list_and_ctx(_ctx, _head, _request, _ref, _list)
Determine the correct context and list head.
Definition tmpl.h:993
#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:939
static fr_dict_attr_t const * tmpl_attr_tail_da(tmpl_t const *vpt)
Return the last attribute reference da.
Definition tmpl.h:801
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:915
@ 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:434
fr_dict_attr_t const *_CONST da
Resolved dictionary attribute.
Definition tmpl.h:438
Define manipulation functions for the attribute reference list.
Definition tmpl.h:475
tmpl_request_ref_t _CONST request
Definition tmpl.h:479
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 size_t talloc_strlen(char const *s)
Returns the length of a talloc array containing a string.
Definition talloc.h:139
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:776
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:928
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:1357
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:1103
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:1234
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:462
fr_type_t tmpl_data_type(tmpl_t const *vpt)
Definition tmpl_eval.c:1341
int tmpl_global_init(void)
Definition tmpl_eval.c:1382
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:953
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:728
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:685
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:1209
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:805
static int _tmpl_global_init(UNUSED void *uctx)
Definition tmpl_eval.c:1364
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:1178
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:862
@ 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:1873
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:1890
fr_type_t xlat_data_type(xlat_exp_head_t const *head)
#define PAIR_ALLOCED(_x)
Definition pair.h:212
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:4660
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:3961
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:4409
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:6839
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:4211
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:6079
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:7323
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:4744
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:4779
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:4567
void fr_value_box_clear(fr_value_box_t *data)
Clear/free any existing value and metadata.
Definition value.c:4392
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:4940
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:6615
@ FR_VALUE_BOX_LIST_FREE_BOX
Free each processed box.
Definition value.h:235
#define fr_value_box_alloc(_ctx, _type, _enumv)
Allocate a value box of a specific type.
Definition value.h:644
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:797
#define FR_VALUE_BOX_INITIALISER_NULL(_vb)
A static initialiser for stack/globally allocated boxes.
Definition value.h:511
#define VALUE_BOX_VERIFY(_x)
Definition value.h:1370
#define VALUE_BOX_LIST_VERIFY(_x)
Definition value.h:1371
#define fr_value_box_alloc_null(_ctx)
Allocate a value box for later use with a value assignment function.
Definition value.h:655
#define fr_value_box_list_foreach(_list_head, _iter)
Definition value.h:224
static size_t char ** out
Definition value.h:1030