Switch to using tmpl_from_attr_substr in xlat_tokenize_expansion instead of duplicati...
[freeradius.git] / src / main / xlat.c
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$
19  *
20  * @file xlat.c
21  * @brief String expansion ("translation"). Implements %Attribute -> value
22  *
23  * @copyright 2000,2006  The FreeRADIUS server project
24  * @copyright 2000  Alan DeKok <aland@ox.org>
25  */
26
27 RCSID("$Id$")
28
29 #include <freeradius-devel/radiusd.h>
30 #include <freeradius-devel/parser.h>
31 #include <freeradius-devel/rad_assert.h>
32 #include <freeradius-devel/base64.h>
33
34 #include <ctype.h>
35
36 typedef struct xlat_t {
37         char                    name[MAX_STRING_LEN];   //!< Name of the xlat expansion.
38         int                     length;                 //!< Length of name.
39         void                    *instance;              //!< Module instance passed to xlat and escape functions.
40         RAD_XLAT_FUNC           func;                   //!< xlat function.
41         RADIUS_ESCAPE_STRING    escape;                 //!< Escape function to apply to dynamic input to func.
42         bool                    internal;               //!< If true, cannot be redefined.
43 } xlat_t;
44
45 typedef enum {
46         XLAT_LITERAL,           //!< Literal string
47         XLAT_PERCENT,           //!< Literal string with %v
48         XLAT_MODULE,            //!< xlat module
49         XLAT_VIRTUAL,           //!< virtual attribute
50         XLAT_ATTRIBUTE,         //!< xlat attribute
51 #ifdef HAVE_REGEX
52         XLAT_REGEX,             //!< regex reference
53 #endif
54         XLAT_ALTERNATE          //!< xlat conditional syntax :-
55 } xlat_state_t;
56
57 struct xlat_exp {
58         char const *fmt;        //!< The format string.
59         size_t len;             //!< Length of the format string.
60
61         xlat_state_t type;      //!< type of this expansion.
62         xlat_exp_t *next;       //!< Next in the list.
63
64         xlat_exp_t *child;      //!< Nested expansion.
65         xlat_exp_t *alternate;  //!< Alternative expansion if this one expanded to a zero length string.
66
67         value_pair_tmpl_t attr; //!< An attribute template.
68         xlat_t const *xlat;     //!< The xlat expansion to expand format with.
69 };
70
71 typedef struct xlat_out {
72         char const *out;        //!< Output data.
73         size_t len;             //!< Length of the output string.
74 } xlat_out_t;
75
76 static rbtree_t *xlat_root = NULL;
77
78 #ifdef WITH_UNLANG
79 static char const * const xlat_foreach_names[] = {"Foreach-Variable-0",
80                                                   "Foreach-Variable-1",
81                                                   "Foreach-Variable-2",
82                                                   "Foreach-Variable-3",
83                                                   "Foreach-Variable-4",
84                                                   "Foreach-Variable-5",
85                                                   "Foreach-Variable-6",
86                                                   "Foreach-Variable-7",
87                                                   "Foreach-Variable-8",
88                                                   "Foreach-Variable-9",
89                                                   NULL};
90 #endif
91
92 #if REQUEST_MAX_REGEX > 8
93 #  error Please fix the following line
94 #endif
95 static int xlat_inst[] = { 0, 1, 2, 3, 4, 5, 6, 7, 8 }; /* up to 8 for regex */
96
97 char const *radiusd_short_version = RADIUSD_VERSION_STRING;
98
99 /** Print length of its RHS.
100  *
101  */
102 static ssize_t xlat_strlen(UNUSED void *instance, UNUSED REQUEST *request,
103                            char const *fmt, char *out, size_t outlen)
104 {
105         snprintf(out, outlen, "%u", (unsigned int) strlen(fmt));
106         return strlen(out);
107 }
108
109 /** Print the size of the attribute in bytes.
110  *
111  */
112 static ssize_t xlat_length(UNUSED void *instance, UNUSED REQUEST *request,
113                            char const *fmt, char *out, size_t outlen)
114 {
115         VALUE_PAIR *vp;
116         while (isspace((int) *fmt)) fmt++;
117
118         if ((radius_get_vp(&vp, request, fmt) < 0) || !vp) {
119                 *out = '\0';
120                 return 0;
121         }
122
123         snprintf(out, outlen, "%zu", vp->length);
124         return strlen(out);
125 }
126
127 /** Print data as integer, not as VALUE.
128  *
129  */
130 static ssize_t xlat_integer(UNUSED void *instance, REQUEST *request,
131                             char const *fmt, char *out, size_t outlen)
132 {
133         VALUE_PAIR      *vp;
134
135         uint64_t        int64 = 0;      /* Needs to be initialised to zero */
136         uint32_t        int32 = 0;      /* Needs to be initialised to zero */
137
138         while (isspace((int) *fmt)) fmt++;
139
140         if ((radius_get_vp(&vp, request, fmt) < 0) || !vp) {
141                 *out = '\0';
142                 return 0;
143         }
144
145         switch (vp->da->type) {
146         case PW_TYPE_OCTETS:
147         case PW_TYPE_STRING:
148                 if (vp->length > 8) {
149                         break;
150                 }
151
152                 if (vp->length > 4) {
153                         memcpy(&int64, vp->vp_octets, vp->length);
154                         return snprintf(out, outlen, "%" PRIu64, htonll(int64));
155                 }
156
157                 memcpy(&int32, vp->vp_octets, vp->length);
158                 return snprintf(out, outlen, "%i", htonl(int32));
159
160         case PW_TYPE_INTEGER64:
161                 return snprintf(out, outlen, "%" PRIu64, vp->vp_integer64);
162
163         /*
164          *      IP addresses are treated specially, as parsing functions assume the value
165          *      is bigendian and will convert it for us.
166          */
167         case PW_TYPE_IPV4_ADDR:
168                 return snprintf(out, outlen, "%u", htonl(vp->vp_ipaddr));
169
170         case PW_TYPE_IPV4_PREFIX:
171                 return snprintf(out, outlen, "%u", htonl((*(uint32_t *)(vp->vp_ipv4prefix + 2))));
172
173         case PW_TYPE_INTEGER:
174         case PW_TYPE_DATE:
175                 return snprintf(out, outlen, "%u", vp->vp_integer);
176         case PW_TYPE_BYTE:
177                 return snprintf(out, outlen, "%u", (unsigned int) vp->vp_byte);
178         case PW_TYPE_SHORT:
179                 return snprintf(out, outlen, "%u", (unsigned int) vp->vp_short);
180
181         /*
182          *      Ethernet is weird... It's network related, so we assume to it should be
183          *      bigendian.
184          */
185         case PW_TYPE_ETHERNET:
186                 memcpy(&int64, &vp->vp_ether, vp->length);
187                 return snprintf(out, outlen, "%" PRIu64, htonll(int64));
188
189         case PW_TYPE_SIGNED:
190                 return snprintf(out, outlen, "%i", vp->vp_signed);
191
192         case PW_TYPE_IPV6_ADDR:
193                 return fr_prints_uint128(out, outlen, ntohlll(*(uint128_t const *) &vp->vp_ipv6addr));
194
195         case PW_TYPE_IPV6_PREFIX:
196                 return fr_prints_uint128(out, outlen, ntohlll(*(uint128_t const *) &(vp->vp_ipv6prefix[2])));
197
198         default:
199                 break;
200         }
201
202         REDEBUG("Type '%s' of length %zu cannot be converted to integer",
203                 fr_int2str(dict_attr_types, vp->da->type, "???"), vp->length);
204         *out = '\0';
205
206         return -1;
207 }
208
209 /** Print data as hex, not as VALUE.
210  *
211  */
212 static ssize_t xlat_hex(UNUSED void *instance, REQUEST *request,
213                         char const *fmt, char *out, size_t outlen)
214 {
215         size_t i;
216         VALUE_PAIR *vp;
217         uint8_t const *p;
218         ssize_t ret;
219         size_t  len;
220         value_data_t dst;
221         uint8_t const *buff = NULL;
222
223         while (isspace((int) *fmt)) fmt++;
224
225         if ((radius_get_vp(&vp, request, fmt) < 0) || !vp) {
226         error:
227                 *out = '\0';
228                 return -1;
229         }
230
231         /*
232          *      The easy case.
233          */
234         if (vp->da->type == PW_TYPE_OCTETS) {
235                 p = vp->vp_octets;
236                 len = vp->length;
237         /*
238          *      Cast the value_data_t of the VP to an octets string and
239          *      print that as hex.
240          */
241         } else {
242                 ret = value_data_cast(request, &dst, PW_TYPE_OCTETS, NULL, vp->da->type,
243                                       NULL, &vp->data, vp->length);
244                 if (ret < 0) {
245                         REDEBUG("%s", fr_strerror());
246                         goto error;
247                 }
248                 len = (size_t) ret;
249                 p = buff = dst.octets;
250         }
251
252         rad_assert(p);
253
254         /*
255          *      Don't truncate the data.
256          */
257         if (outlen < (len * 2)) {
258                 rad_const_free(buff);
259                 goto error;
260         }
261
262         for (i = 0; i < len; i++) {
263                 snprintf(out + 2*i, 3, "%02x", p[i]);
264         }
265         rad_const_free(buff);
266
267         return len * 2;
268 }
269
270 /** Return the tag of an attribute reference
271  *
272  */
273 static ssize_t xlat_tag(UNUSED void *instance, REQUEST *request,
274                         char const *fmt, char *out, size_t outlen)
275 {
276         VALUE_PAIR *vp;
277
278         while (isspace((int) *fmt)) fmt++;
279
280         if ((radius_get_vp(&vp, request, fmt) < 0) || !vp) {
281                 *out = '\0';
282                 return 0;
283         }
284
285         if (!vp->da->flags.has_tag || !TAG_VALID(vp->tag)) {
286                 *out = '\0';
287                 return 0;
288         }
289
290         return snprintf(out, outlen, "%u", vp->tag);
291 }
292
293 /** Print out attribute info
294  *
295  * Prints out all instances of a current attribute, or all attributes in a list.
296  *
297  * At higher debugging levels, also prints out alternative decodings of the same
298  * value. This is helpful to determine types for unknown attributes of long
299  * passed vendors, or just crazy/broken NAS.
300  *
301  * It's also useful for exposing issues in the packet decoding functions, as in
302  * some cases they get fed random garbage data.
303  *
304  * This expands to a zero length string.
305  */
306 static ssize_t xlat_debug_attr(UNUSED void *instance, REQUEST *request, char const *fmt,
307                                char *out, UNUSED size_t outlen)
308 {
309         VALUE_PAIR *vp;
310         vp_cursor_t cursor;
311
312         value_pair_tmpl_t vpt;
313
314         if (!RDEBUG_ENABLED2) {
315                 *out = '\0';
316                 return -1;
317         }
318
319         while (isspace((int) *fmt)) fmt++;
320
321         if (tmpl_from_attr_str(&vpt, fmt, REQUEST_CURRENT, PAIR_LIST_REQUEST, false) <= 0) {
322                 RDEBUG("%s", fr_strerror());
323                 return -1;
324         }
325
326         RIDEBUG("Attributes matching \"%s\"", fmt);
327
328         RINDENT();
329         for (vp = tmpl_cursor_init(NULL, &cursor, request, &vpt);
330              vp;
331              vp = tmpl_cursor_next(&cursor, &vpt)) {
332                 FR_NAME_NUMBER const *type;
333                 char *value;
334
335                 value = vp_aprints_value(vp, vp, '\'');
336                 if (vp->da->flags.has_tag) {
337                         RIDEBUG2("&%s:%s:%i %s %s",
338                                 fr_int2str(pair_lists, vpt.tmpl_list, "<INVALID>"),
339                                 vp->da->name,
340                                 vp->tag,
341                                 fr_int2str(fr_tokens, vp->op, "<INVALID>"),
342                                 value);
343                 } else {
344                         RIDEBUG2("&%s:%s %s %s",
345                                 fr_int2str(pair_lists, vpt.tmpl_list, "<INVALID>"),
346                                 vp->da->name,
347                                 fr_int2str(fr_tokens, vp->op, "<INVALID>"),
348                                 value);
349                 }
350                 talloc_free(value);
351
352                 if (!RDEBUG_ENABLED3) continue;
353
354                 if (vp->da->vendor) {
355                         DICT_VENDOR *dv;
356
357                         dv = dict_vendorbyvalue(vp->da->vendor);
358                         RIDEBUG2("Vendor : %i (%s)", vp->da->vendor, dv ? dv->name : "unknown");
359                 }
360                 RIDEBUG2("Type   : %s", fr_int2str(dict_attr_types, vp->da->type, "<INVALID>"));
361                 RIDEBUG2("Length : %zu", vp->length);
362
363                 if (!RDEBUG_ENABLED4) continue;
364
365                 type = dict_attr_types;
366                 while (type->name) {
367                         int pad;
368
369                         value_data_t *dst = NULL;
370
371                         ssize_t ret;
372
373                         if ((PW_TYPE) type->number == vp->da->type) {
374                                 goto next_type;
375                         }
376
377                         switch (type->number) {
378                         case PW_TYPE_INVALID:           /* Not real type */
379                         case PW_TYPE_MAX:               /* Not real type */
380                         case PW_TYPE_EXTENDED:          /* Not safe/appropriate */
381                         case PW_TYPE_LONG_EXTENDED:     /* Not safe/appropriate */
382                         case PW_TYPE_TLV:               /* Not safe/appropriate */
383                         case PW_TYPE_EVS:               /* Not safe/appropriate */
384                         case PW_TYPE_VSA:               /* @fixme We need special behaviour for these */
385                         case PW_TYPE_COMBO_IP_ADDR:     /* Covered by IPv4 address IPv6 address */
386                         case PW_TYPE_COMBO_IP_PREFIX:   /* Covered by IPv4 address IPv6 address */
387                         case PW_TYPE_TIMEVAL:           /* Not a VALUE_PAIR type */
388
389                                 goto next_type;
390
391                         default:
392                                 break;
393                         }
394
395                         dst = talloc_zero(vp, value_data_t);
396                         ret = value_data_cast(dst, dst, type->number, NULL, vp->da->type, vp->da,
397                                               &vp->data, vp->length);
398                         if (ret < 0) goto next_type;    /* We expect some to fail */
399
400                         value = vp_data_aprints_value(dst, type->number, NULL, dst, (size_t)ret, '\'');
401                         if (!value) goto next_type;
402
403                         if ((pad = (11 - strlen(type->name))) < 0) {
404                                 pad = 0;
405                         }
406
407                         RINDENT();
408                         RDEBUG2("as %s%*s: %s", type->name, pad, " ", value);
409                         REXDENT();
410
411                 next_type:
412                         talloc_free(dst);
413                         type++;
414                 }
415         }
416
417         *out = '\0';
418         return 0;
419 }
420
421 /** Prints the current module processing the request
422  *
423  */
424 static ssize_t xlat_module(UNUSED void *instance, REQUEST *request,
425                            UNUSED char const *fmt, char *out, size_t outlen)
426 {
427         strlcpy(out, request->module, outlen);
428
429         return strlen(out);
430 }
431
432 #ifdef WITH_UNLANG
433 /** Implements the Foreach-Variable-X
434  *
435  * @see modcall()
436  */
437 static ssize_t xlat_foreach(void *instance, REQUEST *request,
438                             UNUSED char const *fmt, char *out, size_t outlen)
439 {
440         VALUE_PAIR      **pvp;
441         size_t          len;
442
443         /*
444          *      See modcall, "FOREACH" for how this works.
445          */
446         pvp = (VALUE_PAIR **) request_data_reference(request, radius_get_vp, *(int*) instance);
447         if (!pvp || !*pvp) {
448                 *out = '\0';
449                 return 0;
450         }
451
452         len = vp_prints_value(out, outlen, *pvp, 0);
453         if (is_truncated(len, outlen)) {
454                 RDEBUG("Insufficient buffer space to write foreach value");
455                 return -1;
456         }
457
458         return len;
459 }
460 #endif
461
462 /** Print data as string, if possible.
463  *
464  * If attribute "Foo" is defined as "octets" it will normally
465  * be printed as 0x0a0a0a. The xlat "%{string:Foo}" will instead
466  * expand to "\n\n\n"
467  */
468 static ssize_t xlat_string(UNUSED void *instance, REQUEST *request,
469                            char const *fmt, char *out, size_t outlen)
470 {
471         size_t len;
472         ssize_t ret;
473         VALUE_PAIR *vp;
474         uint8_t const *p;
475
476         while (isspace((int) *fmt)) fmt++;
477
478         if (outlen < 3) {
479         nothing:
480                 *out = '\0';
481                 return 0;
482         }
483
484         if ((radius_get_vp(&vp, request, fmt) < 0) || !vp) goto nothing;
485
486         ret = rad_vp2data(&p, vp);
487         if (ret < 0) {
488                 return ret;
489         }
490
491         switch (vp->da->type) {
492         case PW_TYPE_OCTETS:
493                 len = fr_print_string((char const *) p, vp->length, out, outlen, '\0');
494                 break;
495
496         case PW_TYPE_STRING:
497                 len = strlcpy(out, vp->vp_strvalue, outlen);
498                 break;
499
500         default:
501                 len = fr_print_string((char const *) p, ret, out, outlen, '\0');
502                 break;
503         }
504
505         return len;
506 }
507
508 /** xlat expand string attribute value
509  *
510  */
511 static ssize_t xlat_xlat(UNUSED void *instance, REQUEST *request,
512                         char const *fmt, char *out, size_t outlen)
513 {
514         VALUE_PAIR *vp;
515
516         while (isspace((int) *fmt)) fmt++;
517
518         if (outlen < 3) {
519         nothing:
520                 *out = '\0';
521                 return 0;
522         }
523
524         if ((radius_get_vp(&vp, request, fmt) < 0) || !vp) goto nothing;
525
526         return radius_xlat(out, outlen, request, vp->vp_strvalue, NULL, NULL);
527 }
528
529 /** Dynamically change the debugging level for the current request
530  *
531  * Example %{debug:3}
532  */
533 static ssize_t xlat_debug(UNUSED void *instance, REQUEST *request,
534                           char const *fmt, char *out, size_t outlen)
535 {
536         int level = 0;
537
538         /*
539          *  Expand to previous (or current) level
540          */
541         snprintf(out, outlen, "%d", request->log.lvl & RAD_REQUEST_OPTION_DEBUG4);
542
543         /*
544          *  Assume we just want to get the current value and NOT set it to 0
545          */
546         if (!*fmt)
547                 goto done;
548
549         level = atoi(fmt);
550         if (level == 0) {
551                 request->log.lvl = RAD_REQUEST_OPTION_NONE;
552                 request->log.func = NULL;
553         } else {
554                 if (level > 4) level = 4;
555
556                 request->log.lvl = level;
557                 request->log.func = vradlog_request;
558         }
559
560         done:
561         return strlen(out);
562 }
563
564 /*
565  *      Compare two xlat_t structs, based ONLY on the module name.
566  */
567 static int xlat_cmp(void const *one, void const *two)
568 {
569         xlat_t const *a = one;
570         xlat_t const *b = two;
571
572         if (a->length != b->length) {
573                 return a->length - b->length;
574         }
575
576         return memcmp(a->name, b->name, a->length);
577 }
578
579
580 /*
581  *      find the appropriate registered xlat function.
582  */
583 static xlat_t *xlat_find(char const *name)
584 {
585         xlat_t my_xlat;
586
587         strlcpy(my_xlat.name, name, sizeof(my_xlat.name));
588         my_xlat.length = strlen(my_xlat.name);
589
590         return rbtree_finddata(xlat_root, &my_xlat);
591 }
592
593
594 /** Register an xlat function.
595  *
596  * @param[in] name xlat name.
597  * @param[in] func xlat function to be called.
598  * @param[in] escape function to sanitize any sub expansions passed to the xlat function.
599  * @param[in] instance of module that's registering the xlat function.
600  * @return 0 on success, -1 on failure
601  */
602 int xlat_register(char const *name, RAD_XLAT_FUNC func, RADIUS_ESCAPE_STRING escape, void *instance)
603 {
604         xlat_t  *c;
605         xlat_t  my_xlat;
606         rbnode_t *node;
607
608         if (!name || !*name) {
609                 DEBUG("xlat_register: Invalid xlat name");
610                 return -1;
611         }
612
613         /*
614          *      First time around, build up the tree...
615          *
616          *      FIXME: This code should be hoisted out of this function,
617          *      and into a global "initialization".  But it isn't critical...
618          */
619         if (!xlat_root) {
620 #ifdef WITH_UNLANG
621                 int i;
622 #endif
623
624                 xlat_root = rbtree_create(NULL, xlat_cmp, NULL, RBTREE_FLAG_REPLACE);
625                 if (!xlat_root) {
626                         DEBUG("xlat_register: Failed to create tree");
627                         return -1;
628                 }
629
630 #ifdef WITH_UNLANG
631                 for (i = 0; xlat_foreach_names[i] != NULL; i++) {
632                         xlat_register(xlat_foreach_names[i],
633                                       xlat_foreach, NULL, &xlat_inst[i]);
634                         c = xlat_find(xlat_foreach_names[i]);
635                         rad_assert(c != NULL);
636                         c->internal = true;
637                 }
638 #endif
639
640 #define XLAT_REGISTER(_x) xlat_register(STRINGIFY(_x), xlat_ ## _x, NULL, NULL); \
641                 c = xlat_find(STRINGIFY(_x)); \
642                 rad_assert(c != NULL); \
643                 c->internal = true
644
645                 XLAT_REGISTER(integer);
646                 XLAT_REGISTER(strlen);
647                 XLAT_REGISTER(length);
648                 XLAT_REGISTER(hex);
649                 XLAT_REGISTER(tag);
650                 XLAT_REGISTER(string);
651                 XLAT_REGISTER(xlat);
652                 XLAT_REGISTER(module);
653                 XLAT_REGISTER(debug_attr);
654
655                 xlat_register("debug", xlat_debug, NULL, &xlat_inst[0]);
656                 c = xlat_find("debug");
657                 rad_assert(c != NULL);
658                 c->internal = true;
659         }
660
661         /*
662          *      If it already exists, replace the instance.
663          */
664         strlcpy(my_xlat.name, name, sizeof(my_xlat.name));
665         my_xlat.length = strlen(my_xlat.name);
666         c = rbtree_finddata(xlat_root, &my_xlat);
667         if (c) {
668                 if (c->internal) {
669                         DEBUG("xlat_register: Cannot re-define internal xlat");
670                         return -1;
671                 }
672
673                 c->func = func;
674                 c->escape = escape;
675                 c->instance = instance;
676                 return 0;
677         }
678
679         /*
680          *      Doesn't exist.  Create it.
681          */
682         c = talloc_zero(xlat_root, xlat_t);
683
684         c->func = func;
685         c->escape = escape;
686         strlcpy(c->name, name, sizeof(c->name));
687         c->length = strlen(c->name);
688         c->instance = instance;
689
690         node = rbtree_insert_node(xlat_root, c);
691         if (!node) {
692                 talloc_free(c);
693                 return -1;
694         }
695
696         /*
697          *      Ensure that the data is deleted when the node is
698          *      deleted.
699          *
700          *      @todo: Maybe this should be the other way around...
701          *      when a thing IN the tree is deleted, it's automatically
702          *      removed from the tree.  But for now, this works.
703          */
704         (void) talloc_steal(node, c);
705         return 0;
706 }
707
708 /** Unregister an xlat function
709  *
710  * We can only have one function to call per name, so the passing of "func"
711  * here is extraneous.
712  *
713  * @param[in] name xlat to unregister.
714  * @param[in] func unused.
715  * @param[in] instance data.
716  */
717 void xlat_unregister(char const *name, UNUSED RAD_XLAT_FUNC func, void *instance)
718 {
719         xlat_t  *c;
720         xlat_t          my_xlat;
721
722         if (!name) return;
723
724         strlcpy(my_xlat.name, name, sizeof(my_xlat.name));
725         my_xlat.length = strlen(my_xlat.name);
726
727         c = rbtree_finddata(xlat_root, &my_xlat);
728         if (!c) return;
729
730         if (c->instance != instance) return;
731
732         rbtree_deletebydata(xlat_root, c);
733 }
734
735 static int xlat_unregister_callback(void *instance, void *data)
736 {
737         xlat_t *c = (xlat_t *) data;
738
739         if (c->instance != instance) return 0; /* keep walking */
740
741         return 2;               /* delete it */
742 }
743
744 void xlat_unregister_module(void *instance)
745 {
746         rbtree_walk(xlat_root, RBTREE_DELETE_ORDER, xlat_unregister_callback, instance);
747 }
748
749
750 /** Crappy temporary function to add attribute ref support to xlats
751  *
752  * This needs to die, and hopefully will die, when xlat functions accept
753  * xlat node structures.
754  *
755  * Provides either a pointer to a buffer which contains the value of the reference VALUE_PAIR
756  * in an architecture independent format. Or a pointer to the start of the fmt string.
757  *
758  * The pointer is only guaranteed to be valid between calls to xlat_fmt_to_ref,
759  * and so long as the source VALUE_PAIR is not freed.
760  *
761  * @param out where to write a pointer to the buffer to the data the xlat function needs to work on.
762  * @param request current request.
763  * @param fmt string.
764  * @returns the length of the data or -1 on error.
765  */
766 ssize_t xlat_fmt_to_ref(uint8_t const **out, REQUEST *request, char const *fmt)
767 {
768         VALUE_PAIR *vp;
769
770         while (isspace((int) *fmt)) fmt++;
771
772         if (fmt[0] == '&') {
773                 if ((radius_get_vp(&vp, request, fmt) < 0) || !vp) {
774                         *out = NULL;
775                         return -1;
776                 }
777
778                 return rad_vp2data(out, vp);
779         }
780
781         *out = (uint8_t const *)fmt;
782         return strlen(fmt);
783 }
784
785 /** De-register all xlat functions, used mainly for debugging.
786  *
787  */
788 void xlat_free(void)
789 {
790         rbtree_free(xlat_root);
791 }
792
793
794 #ifdef DEBUG_XLAT
795 #  define XLAT_DEBUG DEBUG3
796 #else
797 #  define XLAT_DEBUG(...)
798 #endif
799
800 static ssize_t xlat_tokenize_expansion(TALLOC_CTX *ctx, char *fmt, xlat_exp_t **head,
801                                        char const **error);
802 static ssize_t xlat_tokenize_literal(TALLOC_CTX *ctx, char *fmt, xlat_exp_t **head,
803                                      bool brace, char const **error);
804 static size_t xlat_process(char **out, REQUEST *request, xlat_exp_t const * const head,
805                            RADIUS_ESCAPE_STRING escape, void *escape_ctx);
806
807 static ssize_t xlat_tokenize_alternation(TALLOC_CTX *ctx, char *fmt, xlat_exp_t **head,
808                                          char const **error)
809 {
810         ssize_t slen;
811         char *p;
812         xlat_exp_t *node;
813
814         rad_assert(fmt[0] == '%');
815         rad_assert(fmt[1] == '{');
816         rad_assert(fmt[2] == '%');
817         rad_assert(fmt[3] == '{');
818
819         XLAT_DEBUG("ALTERNATE <-- %s", fmt);
820
821         node = talloc_zero(ctx, xlat_exp_t);
822         node->type = XLAT_ALTERNATE;
823
824         p = fmt + 2;
825         slen = xlat_tokenize_expansion(node, p, &node->child, error);
826         if (slen <= 0) {
827                 talloc_free(node);
828                 return slen - (p - fmt);
829         }
830         p += slen;
831
832         if (p[0] != ':') {
833                 talloc_free(node);
834                 *error = "Expected ':' after first expansion";
835                 return -(p - fmt);
836         }
837         p++;
838
839         if (p[0] != '-') {
840                 talloc_free(node);
841                 *error = "Expected '-' after ':'";
842                 return -(p - fmt);
843         }
844         p++;
845
846         /*
847          *      Allow the RHS to be empty as a special case.
848          */
849         if (*p == '}') {
850                 /*
851                  *      Hack up an empty string.
852                  */
853                 node->alternate = talloc_zero(node, xlat_exp_t);
854                 node->alternate->type = XLAT_LITERAL;
855                 node->alternate->fmt = talloc_typed_strdup(node->alternate, "");
856                 *(p++) = '\0';
857
858         } else {
859                 slen = xlat_tokenize_literal(node, p,  &node->alternate, true, error);
860                 if (slen <= 0) {
861                         talloc_free(node);
862                         return slen - (p - fmt);
863                 }
864
865                 if (!node->alternate) {
866                         talloc_free(node);
867                         *error = "Empty expansion is invalid";
868                         return -(p - fmt);
869                 }
870                 p += slen;
871         }
872
873         *head = node;
874         return p - fmt;
875 }
876
877 static ssize_t xlat_tokenize_expansion(TALLOC_CTX *ctx, char *fmt, xlat_exp_t **head,
878                                        char const **error)
879 {
880         ssize_t slen;
881         char *p, *q, *brace;
882         bool is_attr = false;
883         xlat_exp_t *node;
884
885         rad_assert(fmt[0] == '%');
886         rad_assert(fmt[1] == '{');
887
888         /*
889          *      %{%{...}:-bar}
890          */
891         if ((fmt[2] == '%') && (fmt[3] == '{')) return xlat_tokenize_alternation(ctx, fmt, head, error);
892
893         XLAT_DEBUG("EXPANSION <-- %s", fmt);
894         node = talloc_zero(ctx, xlat_exp_t);
895         node->fmt = fmt + 2;
896         node->len = 0;
897
898 #ifdef HAVE_REGEX
899         /*
900          *      Handle regex's specially.
901          */
902         if (isdigit((int) fmt[2]) && (fmt[3] == '}')) {
903                 if (fmt[2] == '9') {
904                         talloc_free(node);
905                         *error = "Invalid regex reference";
906                         return -2;
907                 }
908
909                 XLAT_DEBUG("REGEX <-- %s", fmt);
910                 fmt[3] = '\0';
911                 node->attr.tmpl_num = fmt[2] - '0'; /* ASCII */
912
913                 node->type = XLAT_REGEX;
914                 *head = node;
915                 return 4;
916         }
917 #endif /* HAVE_REGEX */
918
919         /*
920          *      %{Attr-Name}
921          *      %{Attr-Name[#]}
922          *      %{Tunnel-Password:1}
923          *      %{Tunnel-Password:1[#]}
924          *      %{request:Attr-Name}
925          *      %{request:Tunnel-Password:1}
926          *      %{request:Tunnel-Password:1[#]}
927          *      %{mod:foo}
928          */
929         brace = NULL;
930
931         /*
932          *      This is for efficiency, so we don't search for an xlat,
933          *      when what's being referenced is obviously an attribute.
934          */
935         p = fmt + 2;
936         for (q = p; *q != '\0'; q++) {
937                 if (*q == ':') break;
938
939                 if (isspace((int) *q)) break;
940
941                 if (*q == '[') {
942                         is_attr = true;
943                         continue;
944                 }
945
946                 if (*q == '}') break;
947         }
948
949         /*
950          *      Check for empty expressions %{}
951          */
952         if ((*q == '}') && (q == p)) {
953                 *error = "Empty expression is invalid";
954                 return -(q - fmt);
955         }
956
957         /*
958          *      Might be a module name reference.
959          *
960          *      If it's not, it's an attribute or parse error.
961          */
962         if (*q == ':') {
963                 *q = '\0';
964                 node->xlat = xlat_find(node->fmt);
965                 if (node->xlat) {
966                         /*
967                          *      %{mod:foo}
968                          */
969                         node->type = XLAT_MODULE;
970
971                         p = q + 1;
972                         XLAT_DEBUG("MOD <-- %s ... %s", node->fmt, p);
973
974                         slen = xlat_tokenize_literal(node, p, &node->child, true, error);
975                         if (slen <= 0) {
976                                 talloc_free(node);
977                                 return slen - (p - fmt);
978                         }
979                         p += slen;
980
981                         *head = node;
982                         rad_assert(node->next == NULL);
983
984                         return p - fmt;
985                 }
986                 *q = ':';       /* Avoids a strdup */
987         }
988
989         /*
990          *      The first token ends with:
991          *      - '[' - Which is an attribute index, so it must be an attribute.
992          *      - '}' - The end of the expansion, which means it was a bareword.
993          */
994         slen = tmpl_from_attr_substr(&node->attr, p, REQUEST_CURRENT, PAIR_LIST_REQUEST, true);
995         if (slen <= 0) {
996                 /*
997                  *      If the parse error occurred before the ':'
998                  *      then the error is changed to 'Unknown module',
999                  *      as it was more likely to be a bad module name,
1000                  *      than a request qualifier.
1001                  */
1002                 if ((*q == ':') && ((p + (slen * -1)) < q)) {
1003                         *error = "Unknown module";
1004                 } else {
1005                         *error = fr_strerror();
1006                 }
1007                 return slen - (p - fmt);
1008         }
1009
1010         /*
1011          *      Might be a virtual XLAT attribute
1012          */
1013         if (node->attr.type == TMPL_TYPE_ATTR_UNKNOWN) {
1014                 node->xlat = xlat_find(node->attr.tmpl_unknown_name);
1015                 if (node->xlat) {
1016                         node->type = XLAT_VIRTUAL;
1017                         node->fmt = node->attr.tmpl_unknown_name;
1018
1019                         XLAT_DEBUG("VIRTUAL <-- %s", node->fmt);
1020                         *head = node;
1021                         rad_assert(node->next == NULL);
1022                         q++;
1023                         return q - fmt;
1024                 }
1025
1026                 talloc_free(node);
1027                 *error = "Unknown attribute";
1028                 return -(node->fmt - fmt);
1029         }
1030
1031         node->type = XLAT_ATTRIBUTE;
1032         p += slen;
1033         if (*p != '}') {
1034                 talloc_free(node);
1035                 *error = "No matching closing brace";
1036                 return -1;      /* second character of format string */
1037         }
1038         p++;
1039         *head = node;
1040         rad_assert(node->next == NULL);
1041
1042         return p - fmt;
1043 }
1044
1045
1046 static ssize_t xlat_tokenize_literal(TALLOC_CTX *ctx, char *fmt, xlat_exp_t **head,
1047                                      bool brace, char const **error)
1048 {
1049         char *p;
1050         xlat_exp_t *node;
1051
1052         if (!*fmt) return 0;
1053
1054         XLAT_DEBUG("LITERAL <-- %s", fmt);
1055
1056         node = talloc_zero(ctx, xlat_exp_t);
1057         node->fmt = fmt;
1058         node->len = 0;
1059         node->type = XLAT_LITERAL;
1060
1061         p = fmt;
1062
1063         while (*p) {
1064                 if (*p == '\\') {
1065                         if (!p[1]) {
1066                                 talloc_free(node);
1067                                 *error = "Invalid escape at end of string";
1068                                 return -(p - fmt);
1069                         }
1070                         p += 2;
1071                         continue;
1072                 }
1073
1074                 /*
1075                  *      Process the expansion.
1076                  */
1077                 if ((p[0] == '%') && (p[1] == '{')) {
1078                         ssize_t slen;
1079
1080                         XLAT_DEBUG("LITERAL <-- %s", node->fmt);
1081
1082                         slen = xlat_tokenize_expansion(node, p, &node->next, error);
1083                         if (slen <= 0) {
1084                                 talloc_free(node);
1085                                 return slen - (p - fmt);
1086                         }
1087                         *p = '\0'; /* end the literal */
1088                         p += slen;
1089
1090                         rad_assert(node->next != NULL);
1091
1092                         /*
1093                          *      Short-circuit the recursive call.
1094                          *      This saves another function call and
1095                          *      memory allocation.
1096                          */
1097                         if (!*p) break;
1098
1099                         /*
1100                          *      "foo %{User-Name} bar"
1101                          *      LITERAL         "foo "
1102                          *      EXPANSION       User-Name
1103                          *      LITERAL         " bar"
1104                          */
1105                         slen = xlat_tokenize_literal(node->next, p, &(node->next->next), brace, error);
1106                         rad_assert(slen != 0);
1107                         if (slen < 0) {
1108                                 talloc_free(node);
1109                                 return slen - (p - fmt);
1110                         }
1111
1112                         p += slen;
1113                         break;  /* stop processing the string */
1114                 }
1115
1116                 /*
1117                  *      Check for valid single-character expansions.
1118                  */
1119                 if (p[0] == '%') {
1120                         ssize_t slen;
1121                         xlat_exp_t *next;
1122
1123                         if (!p[1] || !strchr("%dlmtDGHISTYv", p[1])) {
1124                                         talloc_free(node);
1125                                         *error = "Invalid variable expansion";
1126                                         p++;
1127                                         return - (p - fmt);
1128                         }
1129
1130                         next = talloc_zero(node, xlat_exp_t);
1131                         next->len = 1;
1132
1133                         if (p[1] == '%') {
1134                                 next->fmt = talloc_typed_strdup(next, "%");
1135
1136                                 XLAT_DEBUG("LITERAL <-- %s", next->fmt);
1137                                 next->type = XLAT_LITERAL;
1138
1139                         } else {
1140                                 next->fmt = p + 1;
1141
1142                                 XLAT_DEBUG("PERCENT <-- %c", *next->fmt);
1143                                 next->type = XLAT_PERCENT;
1144                         }
1145
1146                         node->next = next;
1147                         *p = '\0';
1148                         p += 2;
1149
1150                         if (!*p) break;
1151
1152                         /*
1153                          *      And recurse.
1154                          */
1155                         slen = xlat_tokenize_literal(node->next, p, &(node->next->next), brace, error);
1156                         rad_assert(slen != 0);
1157                         if (slen < 0) {
1158                                 talloc_free(node);
1159                                 return slen - (p - fmt);
1160                         }
1161
1162                         p += slen;
1163                         break;  /* stop processing the string */
1164                 }
1165
1166                 /*
1167                  *      If required, eat the brace.
1168                  */
1169                 if (brace && (*p == '}')) {
1170                         *p = '\0';
1171                         p++;
1172                         break;
1173                 }
1174
1175                 p++;
1176                 node->len++;
1177         }
1178
1179         /*
1180          *      Squash zero-width literals
1181          */
1182         if (node->len > 0) {
1183                 *head = node;
1184
1185         } else {
1186                 (void) talloc_steal(ctx, node->next);
1187                 *head = node->next;
1188                 talloc_free(node);
1189         }
1190
1191         return p - fmt;
1192 }
1193
1194
1195 static char const xlat_tabs[] = "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               ";
1196
1197 static void xlat_tokenize_debug(xlat_exp_t const *node, int lvl)
1198 {
1199         rad_assert(node != NULL);
1200
1201         if (lvl >= (int) sizeof(xlat_tabs)) lvl = sizeof(xlat_tabs);
1202
1203         while (node) {
1204                 switch (node->type) {
1205                 case XLAT_LITERAL:
1206                         DEBUG("%.*sliteral --> %s", lvl, xlat_tabs, node->fmt);
1207                         break;
1208
1209                 case XLAT_PERCENT:
1210                         DEBUG("%.*spercent --> %c", lvl, xlat_tabs, node->fmt[0]);
1211                         break;
1212
1213                 case XLAT_ATTRIBUTE:
1214                         rad_assert(node->attr.tmpl_da != NULL);
1215                         DEBUG("%.*sattribute --> %s", lvl, xlat_tabs, node->attr.tmpl_da->name);
1216                         rad_assert(node->child == NULL);
1217                         if ((node->attr.tmpl_tag != TAG_ANY) || (node->attr.tmpl_num != NUM_ANY)) {
1218                                 DEBUG("%.*s{", lvl, xlat_tabs);
1219
1220                                 DEBUG("%.*sref  %d", lvl + 1, xlat_tabs, node->attr.tmpl_request);
1221                                 DEBUG("%.*slist %d", lvl + 1, xlat_tabs, node->attr.tmpl_list);
1222
1223                                 if (node->attr.tmpl_tag != TAG_ANY) {
1224                                         DEBUG("%.*stag %d", lvl + 1, xlat_tabs, node->attr.tmpl_tag);
1225                                 }
1226                                 if (node->attr.tmpl_num != NUM_ANY) {
1227                                         if (node->attr.tmpl_num == NUM_COUNT) {
1228                                                 DEBUG("%.*s[#]", lvl + 1, xlat_tabs);
1229                                         } else if (node->attr.tmpl_num == NUM_ALL) {
1230                                                 DEBUG("%.*s[*]", lvl + 1, xlat_tabs);
1231                                         } else {
1232                                                 DEBUG("%.*s[%d]", lvl + 1, xlat_tabs, node->attr.tmpl_num);
1233                                         }
1234                                 }
1235
1236                                 DEBUG("%.*s}", lvl, xlat_tabs);
1237                         }
1238                         break;
1239
1240                 case XLAT_VIRTUAL:
1241                         rad_assert(node->fmt != NULL);
1242                         DEBUG("%.*svirtual --> %s", lvl, xlat_tabs, node->fmt);
1243                         break;
1244
1245                 case XLAT_MODULE:
1246                         rad_assert(node->xlat != NULL);
1247                         DEBUG("%.*sxlat --> %s", lvl, xlat_tabs, node->xlat->name);
1248                         if (node->child) {
1249                                 DEBUG("%.*s{", lvl, xlat_tabs);
1250                                 xlat_tokenize_debug(node->child, lvl + 1);
1251                                 DEBUG("%.*s}", lvl, xlat_tabs);
1252                         }
1253                         break;
1254
1255 #ifdef HAVE_REGEX
1256                 case XLAT_REGEX:
1257                         DEBUG("%.*sregex-var --> %d", lvl, xlat_tabs, node->attr.tmpl_num);
1258                         break;
1259 #endif
1260
1261                 case XLAT_ALTERNATE:
1262                         DEBUG("%.*sif {", lvl, xlat_tabs);
1263                         xlat_tokenize_debug(node->child, lvl + 1);
1264                         DEBUG("%.*s}", lvl, xlat_tabs);
1265                         DEBUG("%.*selse {", lvl, xlat_tabs);
1266                         xlat_tokenize_debug(node->alternate, lvl + 1);
1267                         DEBUG("%.*s}", lvl, xlat_tabs);
1268                         break;
1269                 }
1270                 node = node->next;
1271         }
1272 }
1273
1274 size_t xlat_sprint(char *buffer, size_t bufsize, xlat_exp_t const *node)
1275 {
1276         size_t len;
1277         char *p, *end;
1278
1279         if (!node) {
1280                 *buffer = '\0';
1281                 return 0;
1282         }
1283
1284         p = buffer;
1285         end = buffer + bufsize;
1286
1287         while (node) {
1288                 switch (node->type) {
1289                 case XLAT_LITERAL:
1290                         strlcpy(p, node->fmt, end - p);
1291                         p += strlen(p);
1292                         break;
1293
1294                 case XLAT_PERCENT:
1295                         p[0] = '%';
1296                         p[1] = node->fmt[0];
1297                         p += 2;
1298                         break;
1299
1300                 case XLAT_ATTRIBUTE:
1301                         *(p++) = '%';
1302                         *(p++) = '{';
1303
1304                         if (node->attr.tmpl_request != REQUEST_CURRENT) {
1305                                 strlcpy(p, fr_int2str(request_refs, node->attr.tmpl_request, "??"), end - p);
1306                                 p += strlen(p);
1307                                 *(p++) = '.';
1308                         }
1309
1310                         if ((node->attr.tmpl_request != REQUEST_CURRENT) ||
1311                             (node->attr.tmpl_list != PAIR_LIST_REQUEST)) {
1312                                 strlcpy(p, fr_int2str(pair_lists, node->attr.tmpl_list, "??"), end - p);
1313                                 p += strlen(p);
1314                                 *(p++) = ':';
1315                         }
1316
1317                         strlcpy(p, node->attr.tmpl_da->name, end - p);
1318                         p += strlen(p);
1319
1320                         if (node->attr.tmpl_tag != TAG_ANY) {
1321                                 *(p++) = ':';
1322                                 snprintf(p, end - p, "%u", node->attr.tmpl_tag);
1323                                 p += strlen(p);
1324                         }
1325
1326                         if (node->attr.tmpl_num != NUM_ANY) {
1327                                 *(p++) = '[';
1328                                 switch (node->attr.tmpl_num) {
1329                                 case NUM_COUNT:
1330                                         *(p++) = '#';
1331                                         break;
1332
1333                                 case NUM_ALL:
1334                                         *(p++) = '*';
1335                                         break;
1336
1337                                 default:
1338                                         snprintf(p, end - p, "%i", node->attr.tmpl_num);
1339                                         p += strlen(p);
1340                                 }
1341                                 *(p++) = ']';
1342                         }
1343                         *(p++) = '}';
1344                         break;
1345 #ifdef HAVE_REGEX
1346                 case XLAT_REGEX:
1347                         snprintf(p, end - p, "%%{%i}", node->attr.tmpl_num);
1348                         p += strlen(p);
1349                         break;
1350 #endif
1351                 case XLAT_VIRTUAL:
1352                         *(p++) = '%';
1353                         *(p++) = '{';
1354                         strlcpy(p, node->fmt, end - p);
1355                         p += strlen(p);
1356                         *(p++) = '}';
1357                         break;
1358
1359                 case XLAT_MODULE:
1360                         *(p++) = '%';
1361                         *(p++) = '{';
1362                         strlcpy(p, node->xlat->name, end - p);
1363                         p += strlen(p);
1364                         *(p++) = ':';
1365                         rad_assert(node->child != NULL);
1366                         len = xlat_sprint(p, end - p, node->child);
1367                         p += len;
1368                         *(p++) = '}';
1369                         break;
1370
1371                 case XLAT_ALTERNATE:
1372                         *(p++) = '%';
1373                         *(p++) = '{';
1374
1375                         len = xlat_sprint(p, end - p, node->child);
1376                         p += len;
1377
1378                         *(p++) = ':';
1379                         *(p++) = '-';
1380
1381                         len = xlat_sprint(p, end - p, node->alternate);
1382                         p += len;
1383
1384                         *(p++) = '}';
1385                         break;
1386                 }
1387
1388
1389                 if (p == end) break;
1390
1391                 node = node->next;
1392         }
1393
1394         *p = '\0';
1395
1396         return p - buffer;
1397 }
1398
1399 ssize_t xlat_tokenize(TALLOC_CTX *ctx, char *fmt, xlat_exp_t **head,
1400                       char const **error)
1401 {
1402         return xlat_tokenize_literal(ctx, fmt, head, false, error);
1403 }
1404
1405
1406 /** Tokenize an xlat expansion
1407  *
1408  * @param[in] request the input request.  Memory will be attached here.
1409  * @param[in] fmt the format string to expand
1410  * @param[out] head the head of the xlat list / tree structure.
1411  */
1412 static ssize_t xlat_tokenize_request(REQUEST *request, char const *fmt, xlat_exp_t **head)
1413 {
1414         ssize_t slen;
1415         char *tokens;
1416         char const *error = NULL;
1417
1418         *head = NULL;
1419
1420         /*
1421          *      Copy the original format string to a buffer so that
1422          *      the later functions can mangle it in-place, which is
1423          *      much faster.
1424          */
1425         tokens = talloc_typed_strdup(request, fmt);
1426         if (!tokens) return -1;
1427
1428         slen = xlat_tokenize_literal(request, tokens, head, false, &error);
1429
1430         /*
1431          *      Zero length expansion, return a zero length node.
1432          */
1433         if (slen == 0) {
1434                 *head = talloc_zero(request, xlat_exp_t);
1435         }
1436
1437         /*
1438          *      Output something like:
1439          *
1440          *      "format string"
1441          *      "       ^ error was here"
1442          */
1443         if (slen < 0) {
1444                 talloc_free(tokens);
1445                 rad_assert(error != NULL);
1446
1447                 REMARKER(fmt, -slen, error);
1448                 return slen;
1449         }
1450
1451         if (*head && (debug_flag > 2)) {
1452                 DEBUG("%s", fmt);
1453                 DEBUG("Parsed xlat tree:");
1454                 xlat_tokenize_debug(*head, 0);
1455         }
1456
1457         /*
1458          *      All of the nodes point to offsets in the "tokens"
1459          *      string.  Let's ensure that free'ing head will free
1460          *      "tokens", too.
1461          */
1462         (void) talloc_steal(*head, tokens);
1463
1464         return slen;
1465 }
1466
1467
1468 static char *xlat_getvp(TALLOC_CTX *ctx, REQUEST *request, pair_lists_t list, DICT_ATTR const *da,
1469                         int8_t tag, int num, bool return_null)
1470 {
1471         VALUE_PAIR *vp = NULL, *vps = NULL, *myvp = NULL;
1472         RADIUS_PACKET *packet = NULL;
1473         DICT_VALUE *dv;
1474         char *ret = NULL;
1475
1476         /*
1477          *      Arg.  Too much abstraction is annoying.
1478          */
1479         switch (list) {
1480         default:
1481                 if (return_null) return NULL;
1482                 return vp_aprints_type(ctx, da->type);
1483
1484         case PAIR_LIST_CONTROL:
1485                 vps = request->config_items;
1486                 break;
1487
1488         case PAIR_LIST_REQUEST:
1489                 packet = request->packet;
1490                 if (packet) vps = packet->vps;
1491                 break;
1492
1493         case PAIR_LIST_REPLY:
1494                 packet = request->reply;
1495                 if (packet) vps = packet->vps;
1496                 break;
1497
1498 #ifdef WITH_PROXY
1499         case PAIR_LIST_PROXY_REQUEST:
1500                 packet = request->proxy;
1501                 if (packet) vps = packet->vps;
1502                 break;
1503
1504         case PAIR_LIST_PROXY_REPLY:
1505                 packet = request->proxy_reply;
1506                 if (packet) vps = packet->vps;
1507                 break;
1508 #endif
1509
1510 #ifdef WITH_COA
1511         case PAIR_LIST_COA:
1512         case PAIR_LIST_DM:
1513                 if (request->coa) packet = request->coa->packet;
1514                 if (packet) vps = packet->vps;
1515                 break;
1516
1517         case PAIR_LIST_COA_REPLY:
1518         case PAIR_LIST_DM_REPLY:
1519                 if (request->coa) packet = request->coa->reply;
1520                 if (packet) vps = packet->vps;
1521                 break;
1522
1523 #endif
1524         }
1525
1526         /*
1527          *      Counting attributes doesn't require us to search for them
1528          */
1529         if (!da->flags.virtual && (num == NUM_COUNT)) goto do_print;
1530
1531         /*
1532          *      Now we have the list, check to see if we have an attribute in
1533          *      the request, if we do, it takes precedence over the virtual
1534          *      attributes.
1535          *
1536          *      This allows users to manipulate virtual attributes as if they
1537          *      were real ones.
1538          */
1539         vp = pair_find_by_da(vps, da, tag);
1540         if (vp) goto do_print;
1541
1542         /*
1543          *      We didn't find the VP in a list.  It MIGHT be a
1544          *      virtual one, in which case we do lots more checks
1545          *      below.  However, if we're looking for a normal
1546          *      attribute, it must exist, and therefore not finding it
1547          *      means we return NULL.
1548          */
1549         if (!da->flags.virtual) return NULL;
1550
1551         /*
1552          *      Some non-packet expansions
1553          */
1554         switch (da->attr) {
1555         default:
1556                 break;          /* ignore them */
1557
1558         case PW_CLIENT_SHORTNAME:
1559                 if (num == NUM_COUNT) goto count;
1560                 if (request->client && request->client->shortname) {
1561                         return talloc_typed_strdup(ctx, request->client->shortname);
1562                 }
1563                 return talloc_typed_strdup(ctx, "<UNKNOWN-CLIENT>");
1564
1565         case PW_REQUEST_PROCESSING_STAGE:
1566                 if (num == NUM_COUNT) goto count;
1567                 if (request->component) {
1568                         return talloc_typed_strdup(ctx, request->component);
1569                 }
1570                 return talloc_typed_strdup(ctx, "server_core");
1571
1572         case PW_VIRTUAL_SERVER:
1573                 if (num == NUM_COUNT) goto count;
1574                 if (!request->server) return NULL;
1575                 return talloc_typed_strdup(ctx, request->server);
1576
1577         case PW_MODULE_RETURN_CODE:
1578                 if (num == NUM_COUNT) goto count;
1579                 if (!request->rcode) return NULL;
1580                 return talloc_typed_strdup(ctx, fr_int2str(modreturn_table, request->rcode, ""));
1581         }
1582
1583         /*
1584          *      All of the attributes must now refer to a packet.
1585          *      If there's no packet, we can't print any attribute
1586          *      referencing it.
1587          */
1588         if (!packet) {
1589                 if (return_null) return NULL;
1590                 return vp_aprints_type(ctx, da->type);
1591         }
1592
1593         vp = NULL;
1594         switch (da->attr) {
1595         default:
1596                 break;
1597
1598         case PW_PACKET_TYPE:
1599                 dv = dict_valbyattr(PW_PACKET_TYPE, 0, packet->code);
1600                 if (dv) return talloc_typed_strdup(ctx, dv->name);
1601                 return talloc_typed_asprintf(ctx, "%d", packet->code);
1602
1603         case PW_RESPONSE_PACKET_TYPE:
1604         {
1605                 int code = 0;
1606
1607 #ifdef WITH_PROXY
1608                 if (request->proxy_reply && (!request->reply || !request->reply->code)) {
1609                         code = request->proxy_reply->code;
1610                 } else
1611 #endif
1612                         if (request->reply) {
1613                                 code = request->reply->code;
1614                         }
1615
1616                 return talloc_typed_strdup(ctx, fr_packet_codes[code]);
1617         }
1618
1619         /*
1620          *      Virtual attributes which require a temporary VALUE_PAIR
1621          *      to be allocated. We can't use stack allocated memory
1622          *      because of the talloc checks sprinkled throughout the
1623          *      various VP functions.
1624          */
1625         case PW_PACKET_AUTHENTICATION_VECTOR:
1626                 myvp = pairalloc(ctx, da);
1627                 pairmemcpy(myvp, packet->vector, sizeof(packet->vector));
1628                 vp = myvp;
1629                 break;
1630
1631         case PW_CLIENT_IP_ADDRESS:
1632         case PW_PACKET_SRC_IP_ADDRESS:
1633                 if (packet->src_ipaddr.af == AF_INET) {
1634                         myvp = pairalloc(ctx, da);
1635                         myvp->vp_ipaddr = packet->src_ipaddr.ipaddr.ip4addr.s_addr;
1636                         vp = myvp;
1637                 }
1638                 break;
1639
1640         case PW_PACKET_DST_IP_ADDRESS:
1641                 if (packet->dst_ipaddr.af == AF_INET) {
1642                         myvp = pairalloc(ctx, da);
1643                         myvp->vp_ipaddr = packet->dst_ipaddr.ipaddr.ip4addr.s_addr;
1644                         vp = myvp;
1645                 }
1646                 break;
1647
1648         case PW_PACKET_SRC_IPV6_ADDRESS:
1649                 if (packet->src_ipaddr.af == AF_INET6) {
1650                         myvp = pairalloc(ctx, da);
1651                         memcpy(&myvp->vp_ipv6addr,
1652                                &packet->src_ipaddr.ipaddr.ip6addr,
1653                                sizeof(packet->src_ipaddr.ipaddr.ip6addr));
1654                         vp = myvp;
1655                 }
1656                 break;
1657
1658         case PW_PACKET_DST_IPV6_ADDRESS:
1659                 if (packet->dst_ipaddr.af == AF_INET6) {
1660                         myvp = pairalloc(ctx, da);
1661                         memcpy(&myvp->vp_ipv6addr,
1662                                &packet->dst_ipaddr.ipaddr.ip6addr,
1663                                sizeof(packet->dst_ipaddr.ipaddr.ip6addr));
1664                         vp = myvp;
1665                 }
1666                 break;
1667
1668         case PW_PACKET_SRC_PORT:
1669                 myvp = pairalloc(ctx, da);
1670                 myvp->vp_integer = packet->src_port;
1671                 vp = myvp;
1672                 break;
1673
1674         case PW_PACKET_DST_PORT:
1675                 myvp = pairalloc(ctx, da);
1676                 myvp->vp_integer = packet->dst_port;
1677                 vp = myvp;
1678                 break;
1679         }
1680
1681         /*
1682          *      Fake various operations for virtual attributes.
1683          */
1684         if (myvp) {
1685                 if (num != NUM_ANY) switch (num) {
1686                 /*
1687                  *      [n] is NULL (we only have [0])
1688                  */
1689                 default:
1690                         goto finish;
1691                 /*
1692                  *      [*] means only one.
1693                  */
1694                 case NUM_ALL:
1695                         break;
1696
1697                 /*
1698                  *      [#] means 1 (as there's only one)
1699                  */
1700                 case NUM_COUNT:
1701                 count:
1702                         ret = talloc_strdup(ctx, "1");
1703                         goto finish;
1704
1705                 /*
1706                  *      [0] is fine (get the first instance)
1707                  */
1708                 case 0:
1709                         break;
1710                 }
1711                 goto print;
1712         }
1713
1714 do_print:
1715         /*
1716          *      We want the N'th VP.
1717          */
1718         if (num != NUM_ANY) {
1719                 int count = 0;
1720                 vp_cursor_t cursor;
1721
1722                 switch (num) {
1723                 /*
1724                  *      Return a count of the VPs.
1725                  */
1726                 case NUM_COUNT:
1727                         fr_cursor_init(&cursor, &vps);
1728                         while (fr_cursor_next_by_da(&cursor, da, tag) != NULL) count++;
1729
1730                         return talloc_typed_asprintf(ctx, "%d", count);
1731
1732                 /*
1733                  *      Ugly, but working.
1734                  */
1735                 case NUM_ALL:
1736                 {
1737                         char *p, *q;
1738
1739                         (void) fr_cursor_init(&cursor, &vps);
1740                         vp = fr_cursor_next_by_da(&cursor, da, tag);
1741                         if (!vp) return NULL;
1742
1743                         p = vp_aprints_value(ctx, vp, '"');
1744                         if (!p) return NULL;
1745                         while ((vp = fr_cursor_next_by_da(&cursor, da, tag)) != NULL) {
1746                                 q = vp_aprints_value(ctx, vp, '"');
1747                                 if (!q) return NULL;
1748                                 p = talloc_strdup_append(p, ",");
1749                                 p = talloc_strdup_append(p, q);
1750                         }
1751
1752                         return p;
1753                 }
1754
1755                 default:
1756                         fr_cursor_init(&cursor, &vps);
1757                         while ((vp = fr_cursor_next_by_da(&cursor, da, tag)) != NULL) {
1758                                 if (count++ == num) break;
1759                         }
1760                         break;
1761                 }
1762         }
1763
1764         if (!vp) {
1765                 if (return_null) return NULL;
1766                 return vp_aprints_type(ctx, da->type);
1767         }
1768
1769 print:
1770         ret = vp_aprints_value(ctx, vp, '"');
1771
1772 finish:
1773         talloc_free(myvp);
1774         return ret;
1775 }
1776
1777 #ifdef DEBUG_XLAT
1778 static const char xlat_spaces[] = "                                                                                                                                                                                                                                                                ";
1779 #endif
1780
1781 static char *xlat_aprint(TALLOC_CTX *ctx, REQUEST *request, xlat_exp_t const * const node,
1782                          RADIUS_ESCAPE_STRING escape, void *escape_ctx, int lvl)
1783 {
1784         ssize_t rcode;
1785         char *str = NULL, *child;
1786         char *q;
1787         char const *p;
1788         REQUEST *ref;
1789
1790         XLAT_DEBUG("%.*sxlat aprint %d", lvl, xlat_spaces, node->type);
1791
1792         switch (node->type) {
1793                 /*
1794                  *      Don't escape this.
1795                  */
1796         case XLAT_LITERAL:
1797                 XLAT_DEBUG("xlat_aprint LITERAL");
1798                 return talloc_typed_strdup(ctx, node->fmt);
1799
1800                 /*
1801                  *      Do a one-character expansion.
1802                  */
1803         case XLAT_PERCENT:
1804         {
1805                 char *nl;
1806                 size_t freespace = 256;
1807                 struct tm ts;
1808                 time_t when;
1809
1810                 XLAT_DEBUG("xlat_aprint PERCENT");
1811
1812                 str = talloc_array(ctx, char, freespace); /* @todo do better allocation */
1813                 p = node->fmt;
1814
1815                 when = request->timestamp;
1816                 if (request->packet) {
1817                         when = request->packet->timestamp.tv_sec;
1818                 }
1819
1820                 switch (*p) {
1821                 case '%':
1822                         str[0] = '%';
1823                         str[1] = '\0';
1824                         break;
1825
1826                 case 'd': /* request day */
1827                         if (!localtime_r(&when, &ts)) goto error;
1828                         strftime(str, freespace, "%d", &ts);
1829                         break;
1830
1831                 case 'l': /* request timestamp */
1832                         snprintf(str, freespace, "%lu",
1833                                  (unsigned long) when);
1834                         break;
1835
1836                 case 'm': /* request month */
1837                         if (!localtime_r(&when, &ts)) goto error;
1838                         strftime(str, freespace, "%m", &ts);
1839                         break;
1840
1841                 case 'n': /* Request Number*/
1842                         snprintf(str, freespace, "%u", request->number);
1843                         break;
1844
1845                 case 't': /* request timestamp */
1846                         CTIME_R(&when, str, freespace);
1847                         nl = strchr(str, '\n');
1848                         if (nl) *nl = '\0';
1849                         break;
1850
1851                 case 'D': /* request date */
1852                         if (!localtime_r(&when, &ts)) goto error;
1853                         strftime(str, freespace, "%Y%m%d", &ts);
1854                         break;
1855
1856                 case 'G': /* request minute */
1857                         if (!localtime_r(&when, &ts)) goto error;
1858                         strftime(str, freespace, "%M", &ts);
1859                         break;
1860
1861                 case 'H': /* request hour */
1862                         if (!localtime_r(&when, &ts)) goto error;
1863                         strftime(str, freespace, "%H", &ts);
1864                         break;
1865
1866                 case 'I': /* Request ID */
1867                         if (request->packet) {
1868                                 snprintf(str, freespace, "%i", request->packet->id);
1869                         }
1870                         break;
1871
1872                 case 'S': /* request timestamp in SQL format*/
1873                         if (!localtime_r(&when, &ts)) goto error;
1874                         strftime(str, freespace, "%Y-%m-%d %H:%M:%S", &ts);
1875                         break;
1876
1877                 case 'T': /* request timestamp */
1878                         if (!localtime_r(&when, &ts)) goto error;
1879                         strftime(str, freespace, "%Y-%m-%d-%H.%M.%S.000000", &ts);
1880                         break;
1881
1882                 case 'Y': /* request year */
1883                         if (!localtime_r(&when, &ts)) {
1884                                 error:
1885                                 REDEBUG("Failed converting packet timestamp to localtime: %s", fr_syserror(errno));
1886                                 talloc_free(str);
1887                                 return NULL;
1888                         }
1889                         strftime(str, freespace, "%Y", &ts);
1890                         break;
1891
1892                 case 'v': /* Version of code */
1893                         snprintf(str, freespace, "%s", radiusd_short_version);
1894                         break;
1895
1896                 default:
1897                         rad_assert(0 == 1);
1898                         break;
1899                 }
1900         }
1901                 break;
1902
1903         case XLAT_ATTRIBUTE:
1904                 XLAT_DEBUG("xlat_aprint ATTRIBUTE");
1905                 ref = request;
1906                 if (radius_request(&ref, node->attr.tmpl_request) < 0) {
1907                         return NULL;
1908                 }
1909
1910                 /*
1911                  *      Some attributes are virtual <sigh>
1912                  */
1913                 str = xlat_getvp(ctx, ref, node->attr.tmpl_list, node->attr.tmpl_da, node->attr.tmpl_tag, node->attr.tmpl_num, true);
1914                 if (str) {
1915                         XLAT_DEBUG("EXPAND attr %s", node->attr.tmpl_da->name);
1916                         XLAT_DEBUG("       ---> %s", str);
1917                 }
1918                 break;
1919
1920         case XLAT_VIRTUAL:
1921                 XLAT_DEBUG("xlat_aprint VIRTUAL");
1922                 str = talloc_array(ctx, char, 2048); /* FIXME: have the module call talloc_typed_asprintf */
1923                 rcode = node->xlat->func(node->xlat->instance, request, NULL, str, 2048);
1924                 if (rcode < 0) {
1925                         talloc_free(str);
1926                         return NULL;
1927                 }
1928                 break;
1929
1930         case XLAT_MODULE:
1931                 XLAT_DEBUG("xlat_aprint MODULE");
1932                 if (xlat_process(&child, request, node->child, node->xlat->escape, node->xlat->instance) == 0) {
1933                         return NULL;
1934                 }
1935
1936                 XLAT_DEBUG("%.*sEXPAND mod %s %s", lvl, xlat_spaces, node->fmt, node->child->fmt);
1937                 XLAT_DEBUG("%.*s      ---> %s", lvl, xlat_spaces, child);
1938
1939                 /*
1940                  *      Smash \n --> CR.
1941                  *
1942                  *      The OUTPUT of xlat is a printable string.  The INPUT might not be...
1943                  *
1944                  *      This is really the reverse of fr_print_string().
1945                  */
1946                 p = q = child;
1947                 while (*p) {
1948                         if (*p == '\\') switch (p[1]) {
1949                                 default:
1950                                         *(q++) = p[1];
1951                                         p += 2;
1952                                         continue;
1953
1954                                 case 'n':
1955                                         *(q++) = '\n';
1956                                         p += 2;
1957                                         continue;
1958
1959                                 case 't':
1960                                         *(q++) = '\t';
1961                                         p += 2;
1962                                         continue;
1963                         }
1964
1965                         *(q++) = *(p++);
1966                 }
1967                 *q = '\0';
1968
1969                 str = talloc_array(ctx, char, 2048); /* FIXME: have the module call talloc_typed_asprintf */
1970                 *str = '\0';    /* Be sure the string is NULL terminated, we now only free on error */
1971
1972                 rcode = node->xlat->func(node->xlat->instance, request, child, str, 2048);
1973                 talloc_free(child);
1974                 if (rcode < 0) {
1975                         talloc_free(str);
1976                         return NULL;
1977                 }
1978                 break;
1979
1980 #ifdef HAVE_REGEX
1981         case XLAT_REGEX:
1982                 XLAT_DEBUG("xlat_aprint REGEX");
1983                 child = request_data_reference(request, request,
1984                                                REQUEST_DATA_REGEX | node->attr.tmpl_num);
1985                 if (!child) return NULL;
1986
1987                 str = talloc_typed_strdup(ctx, child);
1988                 break;
1989 #endif
1990
1991         case XLAT_ALTERNATE:
1992                 XLAT_DEBUG("xlat_aprint ALTERNATE");
1993                 rad_assert(node->child != NULL);
1994                 rad_assert(node->alternate != NULL);
1995
1996                 str = xlat_aprint(ctx, request, node->child, escape, escape_ctx, lvl);
1997                 if (str) break;
1998
1999                 str = xlat_aprint(ctx, request, node->alternate, escape, escape_ctx, lvl);
2000                 break;
2001
2002         }
2003
2004         /*
2005          *      Escape the non-literals we found above.
2006          */
2007         if (str && escape) {
2008                 char *escaped;
2009
2010                 escaped = talloc_array(ctx, char, 2048); /* FIXME: do something intelligent */
2011                 escape(request, escaped, 2038, str, escape_ctx);
2012                 talloc_free(str);
2013                 str = escaped;
2014         }
2015
2016         return str;
2017 }
2018
2019
2020 static size_t xlat_process(char **out, REQUEST *request, xlat_exp_t const * const head,
2021                            RADIUS_ESCAPE_STRING escape, void *escape_ctx)
2022 {
2023         int i, list;
2024         size_t total;
2025         char **array, *answer;
2026         xlat_exp_t const *node;
2027
2028         *out = NULL;
2029
2030         /*
2031          *      There are no nodes to process, so the result is a zero
2032          *      length string.
2033          */
2034         if (!head) {
2035                 *out = talloc_zero_array(request, char, 1);
2036                 return 0;
2037         }
2038
2039         /*
2040          *      Hack for speed.  If it's one expansion, just allocate
2041          *      that and return, instead of allocating an intermediary
2042          *      array.
2043          */
2044         if (!head->next) {
2045                 /*
2046                  *      Pass the MAIN escape function.  Recursive
2047                  *      calls will call node-specific escape
2048                  *      functions.
2049                  */
2050                 answer = xlat_aprint(request, request, head, escape, escape_ctx, 0);
2051                 if (!answer) {
2052                         *out = talloc_zero_array(request, char, 1);
2053                         return 0;
2054                 }
2055                 *out = answer;
2056                 return strlen(answer);
2057         }
2058
2059         list = 0;               /* FIXME: calculate this once */
2060         for (node = head; node != NULL; node = node->next) {
2061                 list++;
2062         }
2063
2064         array = talloc_array(request, char *, list);
2065         if (!array) return -1;
2066
2067         for (node = head, i = 0; node != NULL; node = node->next, i++) {
2068                 array[i] = xlat_aprint(array, request, node, escape, escape_ctx, 0); /* may be NULL */
2069         }
2070
2071         total = 0;
2072         for (i = 0; i < list; i++) {
2073                 if (array[i]) total += strlen(array[i]); /* FIXME: calculate strlen once */
2074         }
2075
2076         if (!total) {
2077                 talloc_free(array);
2078                 *out = talloc_zero_array(request, char, 1);
2079                 return 0;
2080         }
2081
2082         answer = talloc_array(request, char, total + 1);
2083
2084         total = 0;
2085         for (i = 0; i < list; i++) {
2086                 size_t len;
2087
2088                 if (array[i]) {
2089                         len = strlen(array[i]);
2090                         memcpy(answer + total, array[i], len);
2091                         total += len;
2092                 }
2093         }
2094         answer[total] = '\0';
2095         talloc_free(array);     /* and child entries */
2096
2097         *out = answer;
2098         return total;
2099 }
2100
2101
2102 /** Replace %whatever in a string.
2103  *
2104  * See 'doc/variables.txt' for more information.
2105  *
2106  * @param[out] out Where to write pointer to output buffer.
2107  * @param[in] outlen Size of out.
2108  * @param[in] request current request.
2109  * @param[in] node the xlat structure to expand
2110  * @param[in] escape function to escape final value e.g. SQL quoting.
2111  * @param[in] escape_ctx pointer to pass to escape function.
2112  * @return length of string written @bug should really have -1 for failure
2113  */
2114 static ssize_t xlat_expand_struct(char **out, size_t outlen, REQUEST *request, xlat_exp_t const *node,
2115                                   RADIUS_ESCAPE_STRING escape, void *escape_ctx)
2116 {
2117         char *buff;
2118         ssize_t len;
2119
2120         rad_assert(node != NULL);
2121
2122         len = xlat_process(&buff, request, node, escape, escape_ctx);
2123         if ((len < 0) || !buff) {
2124                 rad_assert(buff == NULL);
2125                 if (*out) *out[0] = '\0';
2126                 return len;
2127         }
2128
2129         if (!*out) {
2130                 *out = buff;
2131         } else {
2132                 strlcpy(*out, buff, outlen);
2133                 talloc_free(buff);
2134         }
2135
2136         return strlen(*out);
2137 }
2138
2139 static ssize_t xlat_expand(char **out, size_t outlen, REQUEST *request, char const *fmt,
2140                            RADIUS_ESCAPE_STRING escape, void *escape_ctx) CC_HINT(nonnull (1, 3, 4));
2141
2142 /** Replace %whatever in a string.
2143  *
2144  * See 'doc/variables.txt' for more information.
2145  *
2146  * @param[out] out Where to write pointer to output buffer.
2147  * @param[in] outlen Size of out.
2148  * @param[in] request current request.
2149  * @param[in] fmt string to expand.
2150  * @param[in] escape function to escape final value e.g. SQL quoting.
2151  * @param[in] escape_ctx pointer to pass to escape function.
2152  * @return length of string written @bug should really have -1 for failure
2153  */
2154 static ssize_t xlat_expand(char **out, size_t outlen, REQUEST *request, char const *fmt,
2155                            RADIUS_ESCAPE_STRING escape, void *escape_ctx)
2156 {
2157         ssize_t len;
2158         xlat_exp_t *node;
2159
2160         /*
2161          *      Give better errors than the old code.
2162          */
2163         len = xlat_tokenize_request(request, fmt, &node);
2164         if (len == 0) {
2165                 if (*out) {
2166                         *out[0] = '\0';
2167                 } else {
2168                         *out = talloc_zero_array(request, char, 1);
2169                 }
2170                 return 0;
2171         }
2172
2173         if (len < 0) {
2174                 if (*out) *out[0] = '\0';
2175                 return -1;
2176         }
2177
2178         len = xlat_expand_struct(out, outlen, request, node, escape, escape_ctx);
2179         talloc_free(node);
2180
2181         RDEBUG2("EXPAND %s", fmt);
2182         RDEBUG2("   --> %s", *out);
2183
2184         return len;
2185 }
2186
2187 /*
2188  *      Try to convert an xlat to a tmpl for efficiency
2189  */
2190 value_pair_tmpl_t *radius_xlat2tmpl(TALLOC_CTX *ctx, xlat_exp_t *node)
2191 {
2192         value_pair_tmpl_t *vpt;
2193
2194         if (node->next || (node->type != XLAT_ATTRIBUTE)) return NULL;
2195
2196         /*
2197          * @todo it should be possible to emulate the concat and count operations in the
2198          * map code.
2199          */
2200         if ((node->attr.tmpl_num == NUM_COUNT) || (node->attr.tmpl_num == NUM_ALL)) return NULL;
2201
2202         vpt = tmpl_alloc(ctx, TMPL_TYPE_ATTR, node->fmt, -1);
2203         if (!vpt) return NULL;
2204         vpt->tmpl_request = node->attr.tmpl_request;
2205         vpt->tmpl_list = node->attr.tmpl_list;
2206         vpt->tmpl_da = node->attr.tmpl_da;
2207         vpt->tmpl_num = node->attr.tmpl_num;
2208         vpt->tmpl_tag = node->attr.tmpl_tag;
2209
2210         VERIFY_TMPL(vpt);
2211
2212         return vpt;
2213 }
2214
2215 ssize_t radius_xlat(char *out, size_t outlen, REQUEST *request, char const *fmt, RADIUS_ESCAPE_STRING escape, void *ctx)
2216 {
2217         return xlat_expand(&out, outlen, request, fmt, escape, ctx);
2218 }
2219
2220 ssize_t radius_axlat(char **out, REQUEST *request, char const *fmt, RADIUS_ESCAPE_STRING escape, void *ctx)
2221 {
2222         return xlat_expand(out, 0, request, fmt, escape, ctx);
2223 }
2224
2225 ssize_t radius_axlat_struct(char **out, REQUEST *request, xlat_exp_t const *xlat, RADIUS_ESCAPE_STRING escape, void *ctx)
2226 {
2227         return xlat_expand_struct(out, 0, request, xlat, escape, ctx);
2228 }