The FreeRADIUS server $Id: 15bac2a4c627c01d1aa2047687b3418955ac7f00 $
Loading...
Searching...
No Matches
unit_test_attribute.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: d261354f46dcf69466315513959737479b5d1490 $
19 *
20 * @file unit_test_attribute.c
21 * @brief Provides a test harness for various internal libraries and functions.
22 *
23 * @copyright 2019 Arran Cudbard-Bell (a.cudbardb@freeradius.org)
24 * @copyright 2010 Alan DeKok (aland@freeradius.org)
25 */
26RCSID("$Id: d261354f46dcf69466315513959737479b5d1490 $")
27
28typedef struct request_s request_t;
29
30#include <freeradius-devel/io/test_point.h>
31#include <freeradius-devel/server/cf_parse.h>
32#include <freeradius-devel/server/cf_util.h>
33#include <freeradius-devel/server/command.h>
34#include <freeradius-devel/server/dependency.h>
35#include <freeradius-devel/server/dl_module.h>
36#include <freeradius-devel/server/log.h>
37#include <freeradius-devel/server/map.h>
38#include <freeradius-devel/server/tmpl.h>
39#ifdef WITH_TLS
40# include <freeradius-devel/tls/base.h>
41#endif
42#include <freeradius-devel/unlang/base.h>
43#include <freeradius-devel/unlang/xlat.h>
44#include <freeradius-devel/unlang/xlat_func.h>
45#include <freeradius-devel/util/atexit.h>
46#include <freeradius-devel/util/base64.h>
47#include <freeradius-devel/util/calc.h>
48#include <freeradius-devel/util/conf.h>
49#include <freeradius-devel/util/dict.h>
50#include <freeradius-devel/util/dns.h>
51#include <freeradius-devel/util/file.h>
52#include <freeradius-devel/util/log.h>
53#include <freeradius-devel/util/misc.h>
54#include <freeradius-devel/util/pair_legacy.h>
55#include <freeradius-devel/util/sha1.h>
56#include <freeradius-devel/util/syserror.h>
57
58#include <ctype.h>
59
60#ifdef __clangd__
61# undef HAVE_SANITIZER_LSAN_INTERFACE_H
62#endif
63#ifdef HAVE_SANITIZER_LSAN_INTERFACE_H
64# include <sanitizer/asan_interface.h>
65#endif
66
67#ifdef HAVE_GETOPT_H
68# include <getopt.h>
69#endif
70
71#include <assert.h>
72#include <fcntl.h>
73#include <libgen.h>
74#include <limits.h>
75#include <sys/file.h>
76#include <sys/stat.h>
77#include <sys/wait.h>
78
79#ifndef HAVE_SANITIZER_LSAN_INTERFACE_H
80# define ASAN_POISON_MEMORY_REGION(_start, _end)
81# define ASAN_UNPOISON_MEMORY_REGION(_start, _end)
82#endif
83
84#define EXIT_WITH_FAILURE \
85do { \
86 ret = EXIT_FAILURE; \
87 goto cleanup; \
88} while (0)
89
90#define COMMAND_OUTPUT_MAX 8192
91
92#define RETURN_OK(_len) \
93 do { \
94 result->rcode = RESULT_OK; \
95 result->file = __FILE__; \
96 result->line = __LINE__; \
97 return (_len); \
98 } while (0)
99
100#define RETURN_OK_WITH_ERROR() \
101 do { \
102 result->rcode = RESULT_OK; \
103 result->file = __FILE__; \
104 result->line = __LINE__; \
105 result->error_to_data = true; \
106 return 0; \
107 } while (0)
108
109#define RETURN_NOOP(_len) \
110 do { \
111 result->rcode = RESULT_NOOP; \
112 result->file = __FILE__; \
113 result->line = __LINE__; \
114 return (_len); \
115 } while (0)
116
117#define RETURN_SKIP_FILE() \
118 do { \
119 result->rcode = RESULT_SKIP_FILE; \
120 result->file = __FILE__; \
121 result->line = __LINE__; \
122 return 0; \
123 } while (0)
124
125#define RETURN_PARSE_ERROR(_offset) \
126 do { \
127 result->rcode = RESULT_PARSE_ERROR; \
128 result->offset = _offset; \
129 result->file = __FILE__; \
130 result->line = __LINE__; \
131 return 0; \
132 } while (0)
133
134#define RETURN_COMMAND_ERROR() \
135 do { \
136 result->rcode = RESULT_COMMAND_ERROR; \
137 result->file = __FILE__; \
138 result->line = __LINE__; \
139 return 0; \
140 } while (0)
141
142#define RETURN_MISMATCH(_len) \
143 do { \
144 result->rcode = RESULT_MISMATCH; \
145 result->file = __FILE__; \
146 result->line = __LINE__; \
147 return (_len); \
148 } while (0)
149
150#define RETURN_EXIT(_ret) \
151 do { \
152 result->rcode = RESULT_EXIT; \
153 result->ret = _ret; \
154 result->file = __FILE__; \
155 result->line = __LINE__; \
156 return 0; \
157 } while (0)
158
159/** Default buffer size for a command_file_ctx_t
160 *
161 */
162#define DEFAULT_BUFFER_SIZE 1024
163
164typedef enum {
165 RESULT_OK = 0, //!< Not an error - Result as expected.
166 RESULT_NOOP, //!< Not an error - Did nothing...
167 RESULT_SKIP_FILE, //!< Not an error - Skip the rest of this file, or until we
168 ///< reach an "eof" command.
169 RESULT_PARSE_ERROR, //!< Fatal error - Command syntax error.
170 RESULT_COMMAND_ERROR, //!< Fatal error - Command operation error.
171 RESULT_MISMATCH, //!< Fatal error - Result didn't match what we expected.
172 RESULT_EXIT, //!< Stop processing files and exit.
174
176 { L("command-error"), RESULT_COMMAND_ERROR },
177 { L("exit"), RESULT_EXIT },
178 { L("ok"), RESULT_OK },
179 { L("parse-error"), RESULT_PARSE_ERROR },
180 { L("result-mismatch"), RESULT_MISMATCH },
181 { L("skip-file"), RESULT_SKIP_FILE },
182};
184
185typedef struct {
186 TALLOC_CTX *tmp_ctx; //!< Temporary context to hold buffers
187 ///< in this
188 union {
189 size_t offset; //!< Where we failed parsing the command.
190 int ret; //!< What code we should exit with.
191 };
192 char const *file;
193 int line;
197
198/** Configuration parameters passed to command functions
199 *
200 */
201typedef struct {
202 fr_dict_t *dict; //!< Dictionary to "reset" to.
203 fr_dict_gctx_t const *dict_gctx; //!< Dictionary gctx to "reset" to.
204 char const *raddb_dir;
205 char const *dict_dir;
206 char const *fuzzer_dir; //!< Where to write fuzzer files.
207 CONF_SECTION *features; //!< Enabled features.
209
210typedef struct {
211 TALLOC_CTX *tmp_ctx; //!< Talloc context for test points.
212
213 char *path; //!< Current path we're operating in.
214 char const *filename; //!< Current file we're operating on.
215 uint32_t lineno; //!< Current line number.
216
217 uint32_t test_count; //!< How many tests we've executed in this file.
218 ssize_t last_ret; //!< Last return value.
219
220 uint8_t *buffer; //!< Temporary resizable buffer we use for
221 ///< holding non-string data.
222 uint8_t *buffer_start; //!< Where the non-poisoned region of the buffer starts.
223 uint8_t *buffer_end; //!< Where the non-poisoned region of the buffer ends.
224
225 tmpl_rules_t tmpl_rules; //!< To pass to parsing functions.
226 fr_dict_t *test_internal_dict; //!< Internal dictionary of test_gctx.
227 fr_dict_gctx_t const *test_gctx; //!< Dictionary context for test dictionaries.
228
229 int fuzzer_dir; //!< File descriptor pointing to a a directory to
230 ///< write fuzzer output.
233
234
235typedef struct {
236 fr_dlist_t entry; //!< Entry in the dlist.
237 uint32_t start; //!< Start of line range.
238 uint32_t end; //!< End of line range.
240
241/** Command to execute
242 *
243 * @param[out] result Of executing the command.
244 * @param[in] cc Information about the file being processed.
245 * @param[in,out] data Output of this command, or the previous command.
246 * @param[in] data_used Length of data in the data buffer.
247 * @param[in] in Command text to process.
248 * @param[in] inlen Length of the remainder of the command to process.
249 */
251 size_t data_used, char *in, size_t inlen);
252
253typedef struct {
255 char const *usage;
256 char const *description;
258
260 { .required = true, .single = true, .type = FR_TYPE_STRING },
262};
263
267
269 UNUSED xlat_ctx_t const *xctx, UNUSED request_t *request,
270 UNUSED fr_value_box_list_t *in)
271{
272 return XLAT_ACTION_DONE;
273}
274
275static char proto_name_prev[128];
276static dl_t *dl;
277static dl_loader_t *dl_loader = NULL;
278
279static fr_event_list_t *el = NULL;
280
281static char const *write_filename = NULL;
282static FILE *write_fp = NULL;
283
284size_t process_line(command_result_t *result, command_file_ctx_t *cc, char *data, size_t data_used, char *in, size_t inlen);
285static int process_file(bool *exit_now, TALLOC_CTX *ctx,
286 command_config_t const *config, const char *root_dir, char const *filename, fr_dlist_head_t *lines);
287
288#ifdef HAVE_SANITIZER_LSAN_INTERFACE_H
289# define BUFF_POISON_START 1024
290# define BUFF_POISON_END 1024
291
292/** Unpoison the start and end regions of the buffer
293 *
294 */
295static int _free_buffer(uint8_t *buff)
296{
297 size_t size = talloc_array_length(buff) - (BUFF_POISON_START + BUFF_POISON_END);
298
301
302 return 0;
303}
304#else
305# define BUFF_POISON_START 0
306# define BUFF_POISON_END 0
307#endif
308
309/** Allocate a special buffer with poisoned memory regions at the start and end
310 *
311 */
312static int poisoned_buffer_allocate(TALLOC_CTX *ctx, uint8_t **buff, size_t size)
313{
314 uint8_t *our_buff = *buff;
315
316 if (our_buff) {
317 /*
318 * If it's already the correct length
319 * don't bother re-allocing the buffer,
320 * just memset it to zero.
321 */
322 if ((size + BUFF_POISON_START + BUFF_POISON_END) == talloc_array_length(our_buff)) {
323 memset(our_buff + BUFF_POISON_START, 0, size);
324 return 0;
325 }
326
327 talloc_free(our_buff); /* Destructor de-poisons */
328 *buff = NULL;
329 }
330
331 our_buff = talloc_array(ctx, uint8_t, size + BUFF_POISON_START + BUFF_POISON_END);
332 if (!our_buff) return -1;
333
334#ifdef HAVE_SANITIZER_LSAN_INTERFACE_H
335 talloc_set_destructor(our_buff, _free_buffer);
336
337 /*
338 * Poison regions before and after the buffer
339 */
342#endif
343
344 *buff = our_buff;
345
346 return 0;
347}
348#define POISONED_BUFFER_START(_p) ((_p) + BUFF_POISON_START)
349#define POISONED_BUFFER_END(_p) ((_p) + BUFF_POISON_START + (talloc_array_length(_p) - (BUFF_POISON_START + BUFF_POISON_END)))
350
351static void mismatch_print(command_file_ctx_t *cc, char const *command,
352 char *expected, size_t expected_len, char *got, size_t got_len,
353 bool print_diff)
354{
355 char *g, *e;
356
357 ERROR("%s failed %s/%s:%d", command, cc->path, cc->filename, cc->lineno);
358
359 if (!print_diff) {
360 ERROR(" got : %.*s", (int) got_len, got);
361 ERROR(" expected : %.*s", (int) expected_len, expected);
362 } else {
363 g = got;
364 e = expected;
365
366 while (*g && *e && (*g == *e)) {
367 g++;
368 e++;
369 }
370
371 if (expected_len < 100) {
372 char const *spaces = " ";
373
374 ERROR(" got : %.*s", (int) got_len, got);
375 ERROR(" expected : %.*s", (int) expected_len, expected);
376 ERROR(" %.*s^ differs here (%zu)", (int) (e - expected), spaces, e - expected);
377 } else {
378 size_t glen, elen;
379
380 elen = strlen(e);
381 if (elen > 40) elen = 40;
382 glen = strlen(g);
383 if (glen > 40) glen = 40;
384
385 ERROR("(%zu) ... %.*s ... ", e - expected, (int) elen, e);
386 ERROR("(%zu) ... %.*s ... ", e - expected, (int) glen, g);
387 }
388 }
389}
390
391/** Print hex string to buffer
392 *
393 */
394static inline CC_HINT(nonnull) size_t hex_print(char *out, size_t outlen, uint8_t const *in, size_t inlen)
395{
396 char *p = out;
397 char *end = p + outlen;
398 size_t i;
399
400 if (inlen == 0) {
401 *p = '\0';
402 return 0;
403 }
404
405 for (i = 0; i < inlen; i++) {
406 size_t len;
407
408 len = snprintf(p, end - p, "%02x ", in[i]);
409 if (is_truncated(len, end - p)) return 0;
410
411 p += len;
412 }
413
414 *(--p) = '\0';
415
416 return p - out;
417}
418
419/** Concatenate error stack
420 */
421static inline size_t strerror_concat(char *out, size_t outlen)
422{
423 char *end = out + outlen;
424 char *p = out;
425 char const *err;
426
427 while ((p < end) && (err = fr_strerror_pop())) {
428 if (*fr_strerror_peek()) {
429 p += snprintf(p, end - p, "%s: ", err);
430 } else {
431 p += strlcpy(p, err, end - p);
432 }
433 }
434
435 return p - out;
436}
437
438static inline CC_HINT(nonnull) int dump_fuzzer_data(int fd_dir, char const *text, uint8_t const *data, size_t data_len)
439{
440 fr_sha1_ctx ctx;
442 char digest_str[(SHA1_DIGEST_LENGTH * 2) + 1];
443 int file_fd;
444
445 fr_sha1_init(&ctx);
446 fr_sha1_update(&ctx, (uint8_t const *)text, strlen(text));
447 fr_sha1_final(digest, &ctx);
448
449 /*
450 * We need to use the url alphabet as the standard
451 * one contains forwarded slashes which openat
452 * doesn't like.
453 */
454 fr_base64_encode_nstd(&FR_SBUFF_OUT(digest_str, sizeof(digest_str)), &FR_DBUFF_TMP(digest, sizeof(digest)),
456
457 file_fd = openat(fd_dir, digest_str, O_RDWR | O_CREAT | O_TRUNC,
458 S_IRUSR | S_IWUSR | S_IRGRP | S_IWGRP | S_IROTH | S_IWOTH);
459 if (file_fd < 0) {
460 fr_strerror_printf("Failed opening or creating corpus seed file \"%s\": %s",
461 digest_str, fr_syserror(errno));
462 return -1;
463 }
464
465 if (flock(file_fd, LOCK_EX) < 0) {
466 fr_strerror_printf("Failed locking corpus seed file \"%s\": %s",
467 digest_str, fr_syserror(errno));
468 return -1;
469 }
470
471 while (data_len) {
472 ssize_t ret;
473
474 ret = write(file_fd, data, data_len);
475 if (ret < 0) {
476 fr_strerror_printf("Failed writing to corpus seed file \"%s\": %s",
477 digest_str, fr_syserror(errno));
478 (void)flock(file_fd, LOCK_UN);
479 unlinkat(fd_dir, digest_str, 0);
480 return -1;
481 }
482 data_len -= ret;
483 data += ret;
484 }
485 (void)flock(file_fd, LOCK_UN);
486
487 return 0;
488}
489
490/*
491 * End of hacks for xlat
492 *
493 **********************************************************************/
494
495static ssize_t encode_tlv(char *buffer, uint8_t *output, size_t outlen);
496
497static char const hextab[] = "0123456789abcdef";
498
499static ssize_t encode_data_string(char *buffer, uint8_t *output, size_t outlen)
500{
501 ssize_t slen = 0;
502 char *p;
503
504 p = buffer + 1;
505
506 while (*p && (outlen > 0)) {
507 if (*p == '"') {
508 return slen;
509 }
510
511 if (*p != '\\') {
512 *(output++) = *(p++);
513 outlen--;
514 slen++;
515 continue;
516 }
517
518 switch (p[1]) {
519 default:
520 *(output++) = p[1];
521 break;
522
523 case 'n':
524 *(output++) = '\n';
525 break;
526
527 case 'r':
528 *(output++) = '\r';
529 break;
530
531 case 't':
532 *(output++) = '\t';
533 break;
534 }
535
536 outlen--;
537 slen++;
538 }
539
540 ERROR("String is not terminated");
541 return 0;
542}
543
544static ssize_t encode_data_tlv(char *buffer, char **endptr, uint8_t *output, size_t outlen)
545{
546 int depth = 0;
547 ssize_t slen;
548 char *p;
549
550 for (p = buffer; *p != '\0'; p++) {
551 if (*p == '{') depth++;
552 if (*p == '}') {
553 depth--;
554 if (depth == 0) break;
555 }
556 }
557
558 if (*p != '}') {
559 ERROR("No trailing '}' in string starting with \"%s\"", buffer);
560 return 0;
561 }
562
563 *endptr = p + 1;
564 *p = '\0';
565
566 p = buffer + 1;
568
569 slen = encode_tlv(p, output, outlen);
570 if (slen <= 0) return 0;
571
572 return slen;
573}
574
575static ssize_t hex_to_bin(uint8_t *out, size_t outlen, char *in, size_t inlen)
576{
577 char *p = in;
578 char *end = in + inlen;
579 uint8_t *out_p = out, *out_end = out_p + outlen;
580
581 while (p < end) {
582 char *c1, *c2;
583
584 if (out_p >= out_end) {
585 fr_strerror_const("Would overflow output buffer");
586 return -(p - in);
587 }
588
590
591 if (!*p) break;
592
593 c1 = memchr(hextab, tolower((uint8_t) *p++), sizeof(hextab));
594 if (!c1) {
595 bad_input:
596 fr_strerror_printf("Invalid hex data starting at \"%s\"", p);
597 return -(p - in);
598 }
599
600 c2 = memchr(hextab, tolower((uint8_t)*p++), sizeof(hextab));
601 if (!c2) goto bad_input;
602
603 *out_p++ = ((c1 - hextab) << 4) + (c2 - hextab);
604 }
605
606 return out_p - out;
607}
608
609
610static ssize_t encode_data(char *p, uint8_t *output, size_t outlen)
611{
612 ssize_t slen;
613
614 if (!isspace((uint8_t) *p)) {
615 ERROR("Invalid character following attribute definition");
616 return 0;
617 }
618
620
621 if (*p == '{') {
622 size_t sublen;
623 char *q;
624
625 slen = 0;
626
627 do {
629 if (!*p) {
630 if (slen == 0) {
631 ERROR("No data");
632 return 0;
633 }
634
635 break;
636 }
637
638 sublen = encode_data_tlv(p, &q, output, outlen);
639 if (sublen <= 0) return 0;
640
641 slen += sublen;
642 output += sublen;
643 outlen -= sublen;
644 p = q;
645 } while (*q);
646
647 return slen;
648 }
649
650 if (*p == '"') {
651 slen = encode_data_string(p, output, outlen);
652 return slen;
653 }
654
655 slen = hex_to_bin(output, outlen, p, strlen(p));
656 if (slen <= 0) {
657 fr_strerror_const_push("Empty hex string");
658 return slen;
659 }
660
661 return slen;
662}
663
664static int decode_attr(char *buffer, char **endptr)
665{
666 long attr;
667
668 attr = strtol(buffer, endptr, 10);
669 if (*endptr == buffer) {
670 ERROR("No valid number found in string starting with \"%s\"", buffer);
671 return 0;
672 }
673
674 if (!**endptr) {
675 ERROR("Nothing follows attribute number");
676 return 0;
677 }
678
679 if ((attr <= 0) || (attr > 256)) {
680 ERROR("Attribute number is out of valid range");
681 return 0;
682 }
683
684 return (int) attr;
685}
686
687static int decode_vendor(char *buffer, char **endptr)
688{
689 long vendor;
690
691 if (*buffer != '.') {
692 ERROR("Invalid separator before vendor id");
693 return 0;
694 }
695
696 vendor = strtol(buffer + 1, endptr, 10);
697 if (*endptr == (buffer + 1)) {
698 ERROR("No valid vendor number found");
699 return 0;
700 }
701
702 if (!**endptr) {
703 ERROR("Nothing follows vendor number");
704 return 0;
705 }
706
707 if ((vendor <= 0) || (vendor > (1 << 24))) {
708 ERROR("Vendor number is out of valid range");
709 return 0;
710 }
711
712 if (**endptr != '.') {
713 ERROR("Invalid data following vendor number");
714 return 0;
715 }
716 (*endptr)++;
717
718 return (int) vendor;
719}
720
721static ssize_t encode_tlv(char *buffer, uint8_t *output, size_t outlen)
722{
723 int attr;
724 ssize_t slen;
725 char *p;
726
727 attr = decode_attr(buffer, &p);
728 if (attr == 0) return 0;
729
730 output[0] = attr;
731 output[1] = 2;
732
733 if (*p == '.') {
734 p++;
735 slen = encode_tlv(p, output + 2, outlen - 2);
736
737 } else {
738 slen = encode_data(p, output + 2, outlen - 2);
739 }
740
741 if (slen <= 0) return slen;
742 if (slen > (255 - 2)) {
743 ERROR("TLV data is too long");
744 return 0;
745 }
746
747 output[1] += slen;
748
749 return slen + 2;
750}
751
752static ssize_t encode_vsa(char *buffer, uint8_t *output, size_t outlen)
753{
754 int vendor;
755 ssize_t slen;
756 char *p;
757
758 vendor = decode_vendor(buffer, &p);
759 if (vendor == 0) return 0;
760
761 output[0] = 0;
762 output[1] = (vendor >> 16) & 0xff;
763 output[2] = (vendor >> 8) & 0xff;
764 output[3] = vendor & 0xff;
765
766 slen = encode_tlv(p, output + 4, outlen - 4);
767 if (slen <= 0) return slen;
768 if (slen > (255 - 6)) {
769 ERROR("VSA data is too long");
770 return 0;
771 }
772
773 return slen + 4;
774}
775
776static ssize_t encode_evs(char *buffer, uint8_t *output, size_t outlen)
777{
778 int vendor;
779 int attr;
780 ssize_t slen;
781 char *p;
782
783 vendor = decode_vendor(buffer, &p);
784 if (vendor == 0) return 0;
785
786 attr = decode_attr(p, &p);
787 if (attr == 0) return 0;
788
789 output[0] = 0;
790 output[1] = (vendor >> 16) & 0xff;
791 output[2] = (vendor >> 8) & 0xff;
792 output[3] = vendor & 0xff;
793 output[4] = attr;
794
795 slen = encode_data(p, output + 5, outlen - 5);
796 if (slen <= 0) return slen;
797
798 return slen + 5;
799}
800
801static ssize_t encode_extended(char *buffer, uint8_t *output, size_t outlen)
802{
803 int attr;
804 ssize_t slen;
805 char *p;
806
807 attr = decode_attr(buffer, &p);
808 if (attr == 0) return 0;
809
810 output[0] = attr;
811
812 if (attr == 26) {
813 slen = encode_evs(p, output + 1, outlen - 1);
814 } else {
815 slen = encode_data(p, output + 1, outlen - 1);
816 }
817 if (slen <= 0) return slen;
818 if (slen > (255 - 3)) {
819 ERROR("Extended Attr data is too long");
820 return 0;
821 }
822
823 return slen + 1;
824}
825
826static ssize_t encode_long_extended(char *buffer, uint8_t *output, size_t outlen)
827{
828 int attr;
829 ssize_t slen, total;
830 char *p;
831
832 attr = decode_attr(buffer, &p);
833 if (attr == 0) return 0;
834
835 /* output[0] is the extended attribute */
836 output[1] = 4;
837 output[2] = attr;
838 output[3] = 0;
839
840 if (attr == 26) {
841 slen = encode_evs(p, output + 4, outlen - 4);
842 if (slen <= 0) return slen;
843
844 output[1] += 5;
845 slen -= 5;
846 } else {
847 slen = encode_data(p, output + 4, outlen - 4);
848 }
849 if (slen <= 0) return slen;
850
851 total = 0;
852 while (1) {
853 int sublen = 255 - output[1];
854
855 if (slen <= sublen) {
856 output[1] += slen;
857 total += output[1];
858 break;
859 }
860
861 slen -= sublen;
862
863 memmove(output + 255 + 4, output + 255, slen);
864 memcpy(output + 255, output, 4);
865
866 output[1] = 255;
867 output[3] |= 0x80;
868
869 output += 255;
870 output[1] = 4;
871 total += 255;
872 }
873
874 return total;
875}
876
877static ssize_t encode_rfc(char *buffer, uint8_t *output, size_t outlen)
878{
879 int attr;
880 ssize_t slen, sublen;
881 char *p;
882
883 attr = decode_attr(buffer, &p);
884 if (attr == 0) return 0;
885
886 slen = 2;
887 output[0] = attr;
888 output[1] = 2;
889
890 if (attr == 26) {
891 sublen = encode_vsa(p, output + 2, outlen - 2);
892
893 } else if ((attr < 241) || (attr > 246)) {
894 sublen = encode_data(p, output + 2, outlen - 2);
895
896 } else {
897 if (*p != '.') {
898 ERROR("Invalid data following attribute number");
899 return 0;
900 }
901
902 if (attr < 245) {
903 sublen = encode_extended(p + 1, output + 2, outlen - 2);
904 } else {
905 /*
906 * Not like the others!
907 */
908 return encode_long_extended(p + 1, output, outlen);
909 }
910 }
911 if (sublen <= 0) return sublen;
912 if (sublen > (255 -2)) {
913 ERROR("RFC Data is too long");
914 return 0;
915 }
916
917 output[1] += sublen;
918 return slen + sublen;
919}
920
921
922static void unload_proto_library(void)
923{
924 TALLOC_FREE(dl);
925}
926
927static ssize_t load_proto_library(char const *proto_name)
928{
929 char dl_name[128];
930
931 if (strcmp(proto_name_prev, proto_name) != 0) {
932 /*
933 * Ensure the old proto library is unloaded
934 */
936
937 snprintf(dl_name, sizeof(dl_name), "libfreeradius-%s", proto_name);
938 if (dl) TALLOC_FREE(dl);
939
940 dl = dl_by_name(dl_loader, dl_name, NULL, false);
941 if (!dl) {
942 fr_perror("Failed to link to library \"%s\"", dl_name);
944 return 0;
945 }
946
947 strlcpy(proto_name_prev, proto_name, sizeof(proto_name_prev));
948 }
949
950 return strlen(proto_name);
951}
952
953static ssize_t load_test_point_by_command(void **symbol, char *command, char const *dflt_symbol)
954{
955 char buffer[256];
956 char const *p, *q;
957 void *dl_symbol;
958
959 if (!dl) {
960 fr_strerror_printf("No protocol library loaded. Specify library with \"load <proto name>\"");
961 return 0;
962 }
963
964 p = command;
965
966 /*
967 * Use the dflt_symbol name as the test point
968 */
969 if ((*p == '.') && (q = strchr(p, ' ')) && (q != (p + 1)) && ((size_t)(q - p) < sizeof(buffer))) {
970 p++;
971 strlcpy(buffer, p, (q - p) + 1);
972 p = q + 1;
973 } else {
974 snprintf(buffer, sizeof(buffer), "%s_%s", proto_name_prev, dflt_symbol);
975 }
976
977 dl_symbol = dlsym(dl->handle, buffer);
978 if (!dl_symbol) {
979 fr_strerror_printf("Test point (symbol \"%s\") not exported by library", buffer);
981 return 0;
982 }
983 *symbol = dl_symbol;
984
985 return p - command;
986}
987
989{
990 if (cc->tmpl_rules.attr.dict_def) {
992 }
993
994 return cc->config->dict;
995}
996
997/** Common dictionary load function
998 *
999 * Callers call fr_dict_global_ctx_set to set the context
1000 * the dictionaries will be loaded into.
1001 */
1002static int dictionary_load_common(command_result_t *result, command_file_ctx_t *cc, char const *in, char const *default_subdir)
1003{
1004 char const *dir;
1005 char *q;
1006 char const *name;
1007 char *tmp = NULL;
1008 int ret;
1009 fr_dict_t *dict;
1010
1011 if (in[0] == '\0') {
1012 fr_strerror_const("Missing dictionary name");
1014 }
1015
1016 /*
1017 * Decrease ref count if we're loading in a new dictionary
1018 */
1019 if (cc->tmpl_rules.attr.dict_def) {
1021 }
1022
1023 q = strchr(in, ' ');
1024 if (q) {
1025 name = tmp = talloc_bstrndup(NULL, in, q - in);
1026 q++;
1027 dir = q;
1028 } else {
1029 name = in;
1030 dir = default_subdir;
1031 }
1032
1033 ret = fr_dict_protocol_afrom_file(&dict, name, dir, __FILE__);
1034 talloc_free(tmp);
1035 if (ret < 0) RETURN_COMMAND_ERROR();
1036
1037 cc->tmpl_rules.attr.dict_def = dict;
1038 cc->tmpl_rules.attr.namespace = fr_dict_root(dict);
1039
1040 /*
1041 * Dump the dictionary if we're in super debug mode
1042 */
1044
1045 RETURN_OK(0);
1046}
1047
1048static size_t parse_typed_value(command_result_t *result, fr_value_box_t *box, char const **out, char const *in, size_t inlen)
1049{
1051 size_t match_len;
1052 ssize_t slen;
1053 char const *p;
1054 fr_sbuff_t sbuff;
1055
1056 /*
1057 * Parse data types
1058 */
1060 if (fr_type_is_null(type)) {
1062 }
1063 fr_assert(match_len < inlen);
1064
1065 p = in + match_len;
1067 *out = p;
1068
1069 /*
1070 * As a hack, allow most things to be inside
1071 * double-quoted strings. This is really only for dates,
1072 * which are space-delimited.
1073 */
1074 if (*p == '"'){
1075 p++;
1076 sbuff = FR_SBUFF_IN(p, strlen(p));
1077 slen = fr_value_box_from_substr(box, box, FR_TYPE_STRING, NULL,
1078 &sbuff,
1080 if (slen < 0) {
1082 }
1083
1084 p += fr_sbuff_used(&sbuff);
1085 if (*p != '"') {
1087 }
1088 p++;
1089
1090 if (type != FR_TYPE_STRING) {
1091 if (fr_value_box_cast_in_place(box, box, type, NULL) < 0) {
1093 }
1094 }
1095
1096 } else {
1097 sbuff = FR_SBUFF_IN(p, strlen(p));
1098
1099 slen = fr_value_box_from_substr(box, box, type, NULL,
1100 &sbuff,
1102 if (slen < 0) {
1104 }
1105 p += fr_sbuff_used(&sbuff);
1106 }
1108
1109 RETURN_OK(p - in);
1110}
1111
1112static fr_cmd_t *command_head = NULL;
1113
1114static int command_func(UNUSED FILE *fp, UNUSED FILE *fp_err, UNUSED void *ctx, UNUSED fr_cmd_info_t const *info)
1115{
1116 return 0;
1117}
1118
1119static int command_walk(UNUSED void *ctx, fr_cmd_walk_info_t *info)
1120{
1121 int i;
1122
1123 for (i = 0; i < info->num_parents; i++) {
1124 printf("%s ", info->parents[i]);
1125 }
1126
1127 printf(":%s ", info->name);
1128 if (info->syntax) printf("%s", info->syntax);
1129 printf("%s", "");
1130
1131 return 1;
1132}
1133
1134static void command_print(void)
1135{
1136 void *walk_ctx = NULL;
1137
1138 printf("Command hierarchy --------");
1140
1141 printf("Command list --------");
1142 while (fr_command_walk(command_head, &walk_ctx, NULL, command_walk) == 1) {
1143 // do nothing
1144 }
1145}
1146
1147#define CLEAR_TEST_POINT(_cc) \
1148do { \
1149 talloc_free_children((_cc)->tmp_ctx); \
1150 tp = NULL; \
1151} while (0)
1152
1153/** Placeholder function for comments
1154 *
1155 */
1157 UNUSED char *data, UNUSED size_t data_used, UNUSED char *in, UNUSED size_t inlen)
1158{
1159 return 0;
1160}
1161
1162/** Execute another test file
1163 *
1164 */
1166 UNUSED char *data, UNUSED size_t data_used, char *in, UNUSED size_t inlen)
1167{
1168 char *q;
1169 bool exit_now = false;
1170 int ret;
1171
1172 if (write_fp) {
1173 fprintf(stderr, "Can't do $INCLUDE with -w %s\n", write_filename);
1174 RETURN_EXIT(1);
1175 }
1176
1177 q = strrchr(cc->path, '/');
1178 if (q) {
1179 *q = '\0';
1180 ret = process_file(&exit_now, cc->tmp_ctx, cc->config, cc->path, in, NULL);
1181 if (exit_now || (ret != 0)) RETURN_EXIT(ret);
1182 *q = '/';
1183 RETURN_OK(0);
1184 }
1185
1186 ret = process_file(&exit_now, cc->tmp_ctx, cc->config, NULL, in, NULL);
1187 if (exit_now || (ret != 0)) RETURN_EXIT(ret);
1188
1189 RETURN_OK(0);
1190}
1191
1192/** Determine if unresolved attributes are allowed
1193 *
1194 */
1196 UNUSED char *data, UNUSED size_t data_used, char *in, size_t inlen)
1197{
1198 fr_sbuff_t our_in = FR_SBUFF_IN(in, inlen);
1199 bool res;
1200
1201 if (fr_sbuff_out_bool(&res, &our_in) == 0) {
1202 fr_strerror_printf("Invalid boolean value, must be \"yes\" or \"no\"");
1204 }
1206
1207 RETURN_OK(0);
1208}
1209
1210static const fr_token_t token2op[UINT8_MAX + 1] = {
1211 [ '+' ] = T_ADD,
1212 [ '-' ] = T_SUB,
1213 [ '*' ] = T_MUL,
1214 [ '/' ] = T_DIV,
1215 [ '^' ] = T_XOR,
1216 [ '.' ] = T_ADD,
1217 [ '&' ] = T_AND,
1218 [ '|' ] = T_OR,
1219 [ '%' ] = T_MOD,
1220};
1221
1222/** Perform calculations
1223 *
1224 */
1226 char *data, UNUSED size_t data_used, char *in, size_t inlen)
1227{
1228 fr_value_box_t *a, *b, *out;
1229 size_t match_len;
1231 fr_token_t op;
1232 char const *p, *value, *end;
1233 size_t slen;
1234 bool assignment;
1235
1236 a = talloc_zero(cc->tmp_ctx, fr_value_box_t);
1237 b = talloc_zero(cc->tmp_ctx, fr_value_box_t);
1238
1239 p = in;
1240 end = in + inlen;
1241
1242 match_len = parse_typed_value(result, a, &value, p, end - p);
1243 if (match_len == 0) return 0; /* errors have already been updated */
1244
1245 p += match_len;
1247
1248 op = fr_table_value_by_longest_prefix(&match_len, fr_tokens_table, p, end - p, T_INVALID);
1249 if (op != T_INVALID) {
1250 p += match_len;
1251 assignment = fr_assignment_op[op];
1252
1253 } else {
1254 op = token2op[(uint8_t) p[0]];
1255 if (op == T_INVALID) {
1256 fr_strerror_printf("Unknown operator '%c'", p[0]);
1258 }
1259 p++;
1260
1261 assignment = false;
1262 }
1264
1265 match_len = parse_typed_value(result, b, &value, p, end - p);
1266 if (match_len == 0) return 0;
1267
1268 p += match_len;
1270
1271 if (assignment) {
1272 if (fr_value_calc_assignment_op(cc->tmp_ctx, a, op, b) < 0) {
1274 }
1275 out = a;
1276
1277 } else {
1278 out = talloc_zero(cc->tmp_ctx, fr_value_box_t);
1279
1280 /*
1281 * If there's no output data type, then the code tries to
1282 * figure one out automatically.
1283 */
1284 if (!*p) {
1286 } else {
1287 if (strncmp(p, "->", 2) != 0) RETURN_PARSE_ERROR(0);
1288 p += 2;
1290
1293 fr_value_box_init(out, type, NULL, false);
1294 }
1295
1296 if (fr_value_calc_binary_op(cc->tmp_ctx, out, type, a, op, b) < 0) {
1298 }
1299 }
1300
1302 if (slen <= 0) RETURN_OK_WITH_ERROR();
1303
1304 RETURN_OK(slen);
1305}
1306
1307/** Perform calculations on multi-valued ops
1308 *
1309 */
1311 char *data, UNUSED size_t data_used, char *in, size_t inlen)
1312{
1313 fr_value_box_t *group, *a, *out;
1314 size_t match_len;
1316 fr_token_t op;
1317 char const *p, *value, *end;
1318 size_t slen;
1319
1320 group = talloc_zero(cc->tmp_ctx, fr_value_box_t);
1321 fr_value_box_init(group, FR_TYPE_GROUP, NULL, false);
1322
1323 p = in;
1324 end = in + inlen;
1325
1326 /*
1327 * Multi-valued operations
1328 */
1329 op = token2op[(uint8_t) p[0]];
1330 if (op == T_INVALID) {
1331 fr_strerror_printf("Unknown operator '%c'", p[0]);
1333 }
1334 p++;
1335
1336 while (p < end) {
1338
1339 a = talloc_zero(group, fr_value_box_t);
1340
1341 match_len = parse_typed_value(result, a, &value, p, end - p);
1342 if (match_len == 0) return 0; /* errors have already been updated */
1343
1344 fr_value_box_list_insert_tail(&group->vb_group, a);
1345
1346 p += match_len;
1347
1348 if (strncmp(p, "->", 2) == 0) break;
1349 }
1350
1351 out = talloc_zero(cc->tmp_ctx, fr_value_box_t);
1353
1354 if (strncmp(p, "->", 2) != 0) RETURN_PARSE_ERROR(0);
1355 p += 2;
1357
1360
1361
1362 if (fr_value_calc_nary_op(cc->tmp_ctx, out, type, op, group) < 0) {
1364 }
1365
1367 if (slen <= 0) RETURN_OK_WITH_ERROR();
1368
1369 RETURN_OK(slen);
1370}
1371
1372/** Change the working directory
1373 *
1374 */
1376 char *data, UNUSED size_t data_used, char *in, size_t inlen)
1377{
1378 TALLOC_FREE(cc->path); /* Free old directories */
1379
1380 cc->path = fr_realpath(cc->tmp_ctx, in, inlen);
1381 if (!cc->path) RETURN_COMMAND_ERROR();
1382
1384
1385 RETURN_OK(talloc_array_length(cc->path) - 1);
1386}
1387
1388/*
1389 * Clear the data buffer
1390 */
1392 char *data, size_t UNUSED data_used, UNUSED char *in, UNUSED size_t inlen)
1393{
1394 memset(data, 0, COMMAND_OUTPUT_MAX);
1395 RETURN_NOOP(0);
1396}
1397
1398/*
1399 * Add a command by talloc'ing a table for it.
1400 */
1402 char *data, size_t UNUSED data_used, char *in, UNUSED size_t inlen)
1403{
1404 char *p, *name;
1405 char *parent = NULL;
1406 fr_cmd_table_t *table;
1407 char buffer[8192];
1408
1409 table = talloc_zero(cc->tmp_ctx, fr_cmd_table_t);
1410
1411 strlcpy(buffer, in, sizeof(buffer));
1412
1413 p = strchr(buffer, ':');
1414 if (!p) {
1415 fr_strerror_const("no ':name' specified");
1417 }
1418
1419 *p = '\0';
1420 p++;
1421
1422 parent = talloc_strdup(cc->tmp_ctx, in);
1423
1424 /*
1425 * Set the name and try to find the syntax.
1426 */
1427 name = p;
1429
1430 if (isspace((uint8_t) *p)) {
1431 *p = '\0';
1432 p++;
1433 }
1434
1436
1437 if (*p) {
1438 table->syntax = talloc_strdup(table, p);
1439 }
1440 table->parent = parent;
1441 table->name = name;
1442 table->help = NULL;
1443 table->func = command_func;
1444 table->tab_expand = NULL;
1445 table->read_only = true;
1446
1447 if (fr_command_add(table, &command_head, NULL, NULL, table) < 0) {
1448 fr_strerror_const_push("ERROR: Failed adding command");
1450 }
1451
1453
1455}
1456
1457/*
1458 * Do tab completion on a command
1459 */
1461 char *data, UNUSED size_t data_used, char *in, UNUSED size_t inlen)
1462{
1463 int i;
1464 int num_expansions;
1465 char const *expansions[CMD_MAX_ARGV];
1466 char *p = data, *end = p + COMMAND_OUTPUT_MAX, **argv;
1467 fr_cmd_info_t info;
1468 size_t len;
1469
1470 info.argc = 0;
1471 info.max_argc = CMD_MAX_ARGV;
1472 info.argv = talloc_zero_array(cc->tmp_ctx, char const *, CMD_MAX_ARGV);
1473 info.box = talloc_zero_array(cc->tmp_ctx, fr_value_box_t *, CMD_MAX_ARGV);
1474
1475 memcpy(&argv, &info.argv, sizeof(argv)); /* const issues */
1476 info.argc = fr_dict_str_to_argv(in, argv, CMD_MAX_ARGV);
1477 if (info.argc <= 0) {
1478 fr_strerror_const("Failed splitting input");
1479 RETURN_PARSE_ERROR(-(info.argc));
1480 }
1481
1482 num_expansions = fr_command_tab_expand(cc->tmp_ctx, command_head, &info, CMD_MAX_ARGV, expansions);
1483
1484 len = snprintf(p, end - p, "%d - ", num_expansions);
1485 if (is_truncated(len, end - p)) {
1486 oob:
1487 fr_strerror_const("Out of output buffer space for radmin command");
1489 }
1490 p += len;
1491
1492 for (i = 0; i < num_expansions; i++) {
1493 len = snprintf(p, end - p, "'%s', ", expansions[i]);
1494 if (is_truncated(len, end - p)) goto oob;
1495 p += len;
1496 }
1497
1498 /*
1499 * Remove the trailing ", "
1500 */
1501 if (num_expansions > 0) {
1502 p -= 2;
1503 *p = '\0';
1504 }
1505
1506 return p - data;
1507}
1508
1509/** Parse and reprint a condition
1510 *
1511 */
1513 char *data, UNUSED size_t data_used, char *in, size_t inlen)
1514{
1515 ssize_t slen;
1516 CONF_SECTION *cs;
1517 size_t len;
1518 xlat_exp_head_t *head = NULL;
1519
1520 cs = cf_section_alloc(NULL, NULL, "if", "condition");
1521 if (!cs) {
1522 fr_strerror_const("Out of memory");
1524 }
1525 cf_filename_set(cs, cc->filename);
1526 cf_lineno_set(cs, cc->lineno);
1527
1529
1530 slen = xlat_tokenize_condition(cc->tmp_ctx, &head, &FR_SBUFF_IN(in, inlen), NULL, &cc->tmpl_rules);
1531 if (slen <= 0) {
1532 fr_strerror_printf_push_head("ERROR offset %d", (int) -slen);
1533 talloc_free(cs);
1535 }
1536
1537 if ((size_t) slen < inlen) {
1538 len = snprintf(data, COMMAND_OUTPUT_MAX, "ERROR passed in %zu, returned %zd", inlen, slen);
1539
1540 } else {
1542 }
1543
1545 talloc_free(cs);
1546
1547 RETURN_OK(len);
1548}
1549
1551 char *data, UNUSED size_t data_used, UNUSED char *in, UNUSED size_t inlen)
1552{
1553 size_t len;
1554
1555 len = snprintf(data, COMMAND_OUTPUT_MAX, "%u", cc->test_count);
1556 if (is_truncated(len, COMMAND_OUTPUT_MAX)) {
1557 fr_strerror_const("Command count would overflow data buffer (shouldn't happen)");
1559 }
1560
1561 RETURN_OK(len);
1562}
1563
1565 char *data, size_t data_used, char *in, size_t inlen)
1566{
1567 fr_test_point_pair_decode_t *tp = NULL;
1568 void *decode_ctx = NULL;
1569 char *p;
1570 uint8_t *to_dec;
1571 uint8_t *to_dec_end;
1572 ssize_t slen;
1573
1574 fr_dict_attr_t const *da;
1575 fr_pair_t *head;
1576
1577 da = fr_dict_attr_by_name(NULL, fr_dict_root(fr_dict_internal()), "request");
1578 fr_assert(da != NULL);
1579 head = fr_pair_afrom_da(cc->tmp_ctx, da);
1580 if (!head) {
1581 fr_strerror_const_push("Failed allocating memory");
1583 }
1584
1585 p = in;
1586
1587 slen = load_test_point_by_command((void **)&tp, in, "tp_decode_pair");
1588 if (!tp) {
1589 fr_strerror_const_push("Failed locating decoder testpoint");
1591 }
1592
1593 p += slen;
1595
1596 if (tp->test_ctx && (tp->test_ctx(&decode_ctx, cc->tmp_ctx, dictionary_current(cc)) < 0)) {
1597 fr_strerror_const_push("Failed initialising decoder testpoint");
1599 }
1600
1601 /*
1602 * Hack because we consume more of the command string
1603 * so we need to check this again.
1604 */
1605 if (*p == '-') {
1606 p = data;
1607 inlen = data_used;
1608 }
1609
1610 /*
1611 * Decode hex from input text
1612 */
1614 if (slen <= 0) {
1615 CLEAR_TEST_POINT(cc);
1616 RETURN_PARSE_ERROR(-(slen));
1617 }
1618
1619 to_dec = (uint8_t *)data;
1620 to_dec_end = to_dec + slen;
1621
1623
1624 /*
1625 * Run the input data through the test
1626 * point to produce fr_pair_ts.
1627 */
1628 while (to_dec < to_dec_end) {
1629 slen = tp->func(head, &head->vp_group, cc->tmpl_rules.attr.namespace,
1630 (uint8_t *)to_dec, (to_dec_end - to_dec), decode_ctx);
1631 cc->last_ret = slen;
1632 if (slen <= 0) {
1634 CLEAR_TEST_POINT(cc);
1636 }
1637 if ((size_t)slen > (size_t)(to_dec_end - to_dec)) {
1638 fr_perror("%s: Internal sanity check failed at %d", __FUNCTION__, __LINE__);
1640 CLEAR_TEST_POINT(cc);
1642 }
1643 to_dec += slen;
1644 }
1645
1646 /*
1647 * Clear any spurious errors
1648 */
1651
1652 /*
1653 * Output may be an error, and we ignore
1654 * it if so.
1655 */
1656 slen = fr_pair_list_print(&FR_SBUFF_OUT(data, COMMAND_OUTPUT_MAX), NULL, &head->vp_group);
1657 if (slen <= 0) {
1659 }
1660
1661 CLEAR_TEST_POINT(cc);
1662 RETURN_OK(slen);
1663}
1664
1666 char *data, size_t data_used, char *in, size_t inlen)
1667{
1669 void *decode_ctx = NULL;
1670 char *p;
1671 uint8_t *to_dec;
1672 uint8_t *to_dec_end;
1673 ssize_t slen;
1674
1675 fr_dict_attr_t const *da;
1676 fr_pair_t *head;
1677
1678 da = fr_dict_attr_by_name(NULL, fr_dict_root(fr_dict_internal()), "request");
1679 fr_assert(da != NULL);
1680 head = fr_pair_afrom_da(cc->tmp_ctx, da);
1681 if (!head) {
1682 fr_strerror_const_push("Failed allocating memory");
1684 }
1685
1686 p = in;
1687
1688 slen = load_test_point_by_command((void **)&tp, in, "tp_decode_proto");
1689 if (!tp) {
1690 fr_strerror_const_push("Failed locating decoder testpoint");
1692 }
1693
1694 p += slen;
1696
1697 if (tp->test_ctx && (tp->test_ctx(&decode_ctx, cc->tmp_ctx, dictionary_current(cc)) < 0)) {
1698 fr_strerror_const_push("Failed initialising decoder testpoint");
1700 }
1701
1702 /*
1703 * Hack because we consume more of the command string
1704 * so we need to check this again.
1705 */
1706 if (*p == '-') {
1707 p = data;
1708 inlen = data_used;
1709 }
1710
1711 /*
1712 * Decode hex from input text
1713 */
1715 if (slen <= 0) {
1716 CLEAR_TEST_POINT(cc);
1717 RETURN_PARSE_ERROR(-(slen));
1718 }
1719
1720 to_dec = (uint8_t *)data;
1721 to_dec_end = to_dec + slen;
1722
1724
1725 slen = tp->func(head, &head->vp_group,
1726 (uint8_t *)to_dec, (to_dec_end - to_dec), decode_ctx);
1727 cc->last_ret = slen;
1728 if (slen <= 0) {
1730 CLEAR_TEST_POINT(cc);
1732 }
1733
1734 /*
1735 * Clear any spurious errors
1736 */
1739
1740 /*
1741 * Output may be an error, and we ignore
1742 * it if so.
1743 */
1744
1745 /*
1746 * Print the pairs.
1747 */
1748 slen = fr_pair_list_print(&FR_SBUFF_OUT(data, COMMAND_OUTPUT_MAX), NULL, &head->vp_group);
1749 if (slen <= 0) {
1750 fr_assert(0);
1752 }
1753
1754 CLEAR_TEST_POINT(cc);
1755 RETURN_OK(slen);
1756}
1757
1758/** Parse a dictionary attribute, writing "ok" to the data buffer is everything was ok
1759 *
1760 */
1762 char *data, UNUSED size_t data_used, char *in, UNUSED size_t inlen)
1763{
1765
1767}
1768
1769/** Print the currently loaded dictionary
1770 *
1771 */
1773 UNUSED char *data, size_t data_used, UNUSED char *in, UNUSED size_t inlen)
1774{
1776
1777 /*
1778 * Don't modify the contents of the data buffer
1779 */
1780 RETURN_OK(data_used);
1781}
1782
1783static CC_HINT(nonnull)
1785 char *data, UNUSED size_t data_used, char *in, UNUSED size_t inlen)
1786{
1787 size_t need;
1788 ssize_t ret;
1789 char *p, *next;
1790 uint8_t *enc_p;
1791 char buffer[8192];
1792
1793 strlcpy(buffer, in, sizeof(buffer));
1794
1795 p = buffer;
1796 next = strchr(p, ',');
1797 if (next) *next = 0;
1798
1799 enc_p = cc->buffer_start;
1800
1801 while (true) {
1802 fr_value_box_t *box = talloc_zero(NULL, fr_value_box_t);
1803
1805
1806 if (fr_value_box_from_str(box, box, FR_TYPE_STRING, NULL,
1807 p, strlen(p),
1809 talloc_free(box);
1811 }
1812
1813 ret = fr_dns_label_from_value_box(&need,
1814 cc->buffer_start, cc->buffer_end - cc->buffer_start, enc_p, true, box, NULL);
1815 talloc_free(box);
1816
1817 if (ret < 0) RETURN_OK_WITH_ERROR();
1818
1819 if (ret == 0) RETURN_OK(snprintf(data, COMMAND_OUTPUT_MAX, "need=%zd", need));
1820
1821 enc_p += ret;
1822
1823 /*
1824 * Go to the next input string
1825 */
1826 if (!next) break;
1827
1828 p = next + 1;
1829 next = strchr(p, ',');
1830 if (next) *next = 0;
1831 }
1832
1833 if ((cc->fuzzer_dir >= 0) &&
1834 (dump_fuzzer_data(cc->fuzzer_dir, in, cc->buffer_start, enc_p - cc->buffer_start) < 0)) {
1836 }
1837
1838 RETURN_OK(hex_print(data, COMMAND_OUTPUT_MAX, cc->buffer_start, enc_p - cc->buffer_start));
1839}
1840
1842 char *data, UNUSED size_t data_used, char *in, size_t inlen)
1843{
1844 ssize_t slen, total, i, outlen;
1845 char *out, *end;
1846 fr_value_box_t *box = talloc_zero(NULL, fr_value_box_t);
1847
1848 /*
1849 * Decode hex from input text
1850 */
1851 total = hex_to_bin(cc->buffer_start, cc->buffer_end - cc->buffer_start, in, inlen);
1852 if (total <= 0) RETURN_PARSE_ERROR(-total);
1853
1854 out = data;
1855 end = data + COMMAND_OUTPUT_MAX;
1856
1857 for (i = 0; i < total; i += slen) {
1858 slen = fr_dns_label_to_value_box(box, box, cc->buffer_start, total, cc->buffer_start + i, false, NULL);
1859 if (slen <= 0) {
1860 error:
1861 talloc_free(box);
1863 }
1864
1865 /*
1866 * Separate names by commas
1867 */
1868 if (i > 0) *(out++) = ',';
1869
1870 /*
1871 * We don't print it with quotes.
1872 */
1873 outlen = fr_value_box_print(&FR_SBUFF_OUT(out, end - out), box, NULL);
1874 if (outlen <= 0) goto error;
1875 out += outlen;
1876
1877 fr_value_box_clear(box);
1878 }
1879
1880 talloc_free(box);
1881 RETURN_OK(out - data);
1882}
1883
1885 char *data, UNUSED size_t data_used, char *in, size_t inlen)
1886{
1887 fr_test_point_pair_encode_t *tp = NULL;
1888
1889 fr_dcursor_t cursor;
1890 void *encode_ctx = NULL;
1891 ssize_t slen;
1892 char *p = in;
1893
1894 uint8_t *enc_p, *enc_end;
1896 fr_pair_t *vp;
1897 bool truncate = false;
1898
1899 size_t iterations = 0;
1900 fr_pair_parse_t root, relative;
1901
1903
1904 slen = load_test_point_by_command((void **)&tp, p, "tp_encode_pair");
1905 if (!tp) {
1906 fr_strerror_const_push("Failed locating encode testpoint");
1907 CLEAR_TEST_POINT(cc);
1909 }
1910
1911 p += ((size_t)slen);
1913
1914 /*
1915 * The truncate torture test.
1916 *
1917 * Increase the buffer one byte at a time until all items in the cursor
1918 * have been encoded.
1919 *
1920 * The poisoned region at the end of the buffer will detect overruns
1921 * if we're running with asan.
1922 *
1923 */
1924 if (strncmp(p, "truncate", sizeof("truncate") - 1) == 0) {
1925 truncate = true;
1926 p += sizeof("truncate") - 1;
1928 }
1929
1930 if (tp->test_ctx && (tp->test_ctx(&encode_ctx, cc->tmp_ctx, dictionary_current(cc)) < 0)) {
1931 fr_strerror_const_push("Failed initialising encoder testpoint");
1932 CLEAR_TEST_POINT(cc);
1934 }
1935
1936 root = (fr_pair_parse_t) {
1937 .ctx = cc->tmp_ctx,
1938 .da = cc->tmpl_rules.attr.namespace,
1939 .list = &head,
1940 };
1941 relative = (fr_pair_parse_t) { };
1942
1943 slen = fr_pair_list_afrom_substr(&root, &relative, &FR_SBUFF_IN(p, inlen - (p - in)));
1944 if (slen <= 0) {
1945 CLEAR_TEST_POINT(cc);
1947 }
1948
1950
1951 /*
1952 * Outer loop implements truncate test
1953 */
1954 do {
1955 enc_p = cc->buffer_start;
1956 enc_end = truncate ? cc->buffer_start + iterations++ : cc->buffer_end;
1957
1958 if (truncate) {
1959#ifdef HAVE_SANITIZER_LSAN_INTERFACE_H
1960 /*
1961 * Poison the region between the subset of the buffer
1962 * we're using and the end of the buffer.
1963 */
1964 ASAN_POISON_MEMORY_REGION(enc_end, (cc->buffer_end) - enc_end);
1965
1966 DEBUG("%s[%d]: Iteration %zu - Safe region %p-%p (%zu bytes), "
1967 "poisoned region %p-%p (%zu bytes)", cc->filename, cc->lineno, iterations - 1,
1968 enc_p, enc_end, enc_end - enc_p, enc_end, cc->buffer_end, cc->buffer_end - enc_end);
1969#else
1970 DEBUG("%s[%d]: Iteration %zu - Allowed region %p-%p (%zu bytes)",
1971 cc->filename, cc->lineno, iterations - 1, enc_p, enc_end, enc_end - enc_p);
1972#endif
1973 }
1974
1975 for (vp = fr_pair_dcursor_iter_init(&cursor, &head,
1977 dictionary_current(cc));
1978 vp;
1979 vp = fr_dcursor_current(&cursor)) {
1980 slen = tp->func(&FR_DBUFF_TMP(enc_p, enc_end), &cursor, encode_ctx);
1981 cc->last_ret = slen;
1982
1983 if (truncate) DEBUG("%s[%d]: Iteration %zu - Result %zd%s%s",
1984 cc->filename, cc->lineno, iterations - 1, slen,
1985 *fr_strerror_peek() != '\0' ? " - " : "",
1986 *fr_strerror_peek() != '\0' ? fr_strerror_peek() : "");
1987 if (slen < 0) break;
1988
1989 /*
1990 * Encoder indicated it encoded too much data
1991 */
1992 if (slen > (enc_end - enc_p)) {
1993 fr_strerror_printf("Expected returned encoded length <= %zu bytes, got %zu bytes",
1994 (enc_end - enc_p), (size_t)slen);
1995#ifdef HAVE_SANITIZER_LSAN_INTERFACE_H
1996 if (truncate) ASAN_UNPOISON_MEMORY_REGION(enc_end, (cc->buffer_end) - enc_end);
1997#endif
1999 CLEAR_TEST_POINT(cc);
2001 }
2002
2003 enc_p += slen;
2004
2005 if (slen == 0) break;
2006
2007 }
2008
2009#ifdef HAVE_SANITIZER_LSAN_INTERFACE_H
2010 /*
2011 * un-poison the region between the subset of the buffer
2012 * we're using and the end of the buffer.
2013 */
2014 if (truncate) ASAN_UNPOISON_MEMORY_REGION(enc_end, (cc->buffer_end) - enc_end);
2015#endif
2016 /*
2017 * We consumed all the VPs, so presumably encoded the
2018 * complete pair list.
2019 */
2020 if (!vp) break;
2021 } while (truncate && (enc_end < cc->buffer_end));
2022
2023 /*
2024 * Last iteration result in an error
2025 */
2026 if (slen < 0) {
2028 CLEAR_TEST_POINT(cc);
2030 }
2031
2032 /*
2033 * Clear any spurious errors
2034 */
2036
2038
2039 CLEAR_TEST_POINT(cc);
2040
2041 if ((cc->fuzzer_dir >= 0) &&
2042 (dump_fuzzer_data(cc->fuzzer_dir, p, cc->buffer_start, enc_p - cc->buffer_start) < 0)) {
2044 }
2045
2047}
2048
2049/** Encode a RADIUS attribute writing the result to the data buffer as space separated hexits
2050 *
2051 */
2053 char *data, UNUSED size_t data_used, char *in, UNUSED size_t inlen)
2054{
2055 size_t len;
2056 char buffer[8192];
2057
2058 strlcpy(buffer, in, sizeof(buffer));
2059
2060 len = encode_rfc(buffer, cc->buffer_start, cc->buffer_end - cc->buffer_start);
2061 if (len <= 0) RETURN_PARSE_ERROR(0);
2062
2063 if (len >= (size_t)(cc->buffer_end - cc->buffer_start)) {
2064 fr_strerror_const("Encoder output would overflow output buffer");
2066 }
2067
2069}
2070
2071/** Parse a list of pairs
2072 *
2073 */
2075 char *data, UNUSED size_t data_used, char *in, UNUSED size_t inlen)
2076{
2077 ssize_t slen;
2079 bool done = false;
2080 char *filename;
2081 FILE *fp;
2082
2083 filename = talloc_asprintf(cc->tmp_ctx, "%s/%s", cc->path, in);
2084
2085 fp = fopen(filename, "r");
2086 talloc_free(filename);
2087
2088 if (!fp) {
2089 fr_strerror_printf("Failed opening %s - %s", in, fr_syserror(errno));
2091 }
2092
2095 fclose(fp);
2096 if (slen < 0) {
2098 }
2099
2100 /*
2101 * Print the pairs.
2102 */
2104 if (slen <= 0) {
2105 fr_assert(0);
2107 }
2108
2109 if (!done) {
2110 strlcpy(data + slen, "!DONE", COMMAND_OUTPUT_MAX - slen);
2111 slen += 5;
2112 }
2113
2115
2116 RETURN_OK(slen);
2117}
2118
2119
2121 char *data, UNUSED size_t data_used, UNUSED char *in, UNUSED size_t inlen)
2122{
2124}
2125
2127 char *data, UNUSED size_t data_used, char *in, size_t inlen)
2128{
2130
2131 void *encode_ctx = NULL;
2132 ssize_t slen;
2133 char *p = in;
2134
2136 fr_pair_parse_t root, relative;
2137
2139
2140 slen = load_test_point_by_command((void **)&tp, p, "tp_encode_proto");
2141 if (!tp) {
2142 fr_strerror_const_push("Failed locating encode testpoint");
2143 CLEAR_TEST_POINT(cc);
2145 }
2146
2147 p += ((size_t)slen);
2149 if (tp->test_ctx && (tp->test_ctx(&encode_ctx, cc->tmp_ctx, dictionary_current(cc)) < 0)) {
2150 fr_strerror_const_push("Failed initialising encoder testpoint");
2151 CLEAR_TEST_POINT(cc);
2153 }
2154
2155 root = (fr_pair_parse_t) {
2156 .ctx = cc->tmp_ctx,
2157 .da = cc->tmpl_rules.attr.namespace,
2158 .list = &head,
2159 };
2160 relative = (fr_pair_parse_t) { };
2161
2162 slen = fr_pair_list_afrom_substr(&root, &relative, &FR_SBUFF_IN(p, inlen - (p - in)));
2163 if (slen <= 0) {
2164 CLEAR_TEST_POINT(cc);
2166 }
2167
2168 slen = tp->func(cc->tmp_ctx, &head, cc->buffer_start, cc->buffer_end - cc->buffer_start, encode_ctx);
2170 cc->last_ret = slen;
2171 if (slen < 0) {
2172 CLEAR_TEST_POINT(cc);
2174 }
2175 /*
2176 * Clear any spurious errors
2177 */
2179
2180 CLEAR_TEST_POINT(cc);
2181
2182 if ((cc->fuzzer_dir >= 0) &&
2183 (dump_fuzzer_data(cc->fuzzer_dir, p, cc->buffer_start, slen) < 0)) {
2185 }
2186
2188}
2189
2190/** Command eof
2191 *
2192 * Mark the end of a test file if we're reading from stdin.
2193 *
2194 * Doesn't actually do anything, is just a placeholder for the command processing loop.
2195 */
2197 UNUSED char *data, UNUSED size_t data_used, UNUSED char *in, UNUSED size_t inlen)
2198{
2199 return 0;
2200}
2201
2202/** Enable fuzzer output
2203 *
2204 * Any commands that produce potentially useful corpus seed data will write that out data
2205 * to files in the specified directory, using the md5 of the text input at as the file name.
2206 *
2207 */
2209 UNUSED char *data, UNUSED size_t data_used, char *in, UNUSED size_t inlen)
2210{
2211 int fd;
2212 struct stat sdir;
2213 char *fuzzer_dir;
2214 bool retry_dir = true;
2215
2216 /*
2217 * Close any open fuzzer output dirs
2218 */
2219 if (cc->fuzzer_dir >= 0) {
2220 close(cc->fuzzer_dir);
2221 cc->fuzzer_dir = -1;
2222 }
2223
2224 if (in[0] == '\0') {
2225 fr_strerror_const("Missing directory name");
2227 }
2228
2229 fuzzer_dir = talloc_asprintf(cc->tmp_ctx, "%s/%s",
2230 cc->config->fuzzer_dir ? cc->config->fuzzer_dir : cc->path, in);
2231
2232again:
2233 fd = open(fuzzer_dir, O_RDONLY);
2234 if (fd < 0) {
2235 if (mkdir(fuzzer_dir, 0777) == 0) {
2236 fd = open(fuzzer_dir, O_RDONLY);
2237 if (fd >= 0) goto stat;
2238 /*
2239 * Prevent race if multiple unit_test_attribute instances
2240 * attempt to create the same output dir.
2241 */
2242 } else if ((errno == EEXIST) && retry_dir) {
2243 retry_dir = false; /* Only allow this once */
2244 goto again;
2245 }
2246
2247 fr_strerror_printf("fuzzer-out \"%s\" doesn't exist: %s", fuzzer_dir, fr_syserror(errno));
2249 }
2250
2251stat:
2252 if (fstat(fd, &sdir) < 0) {
2253 close(fd);
2254 fr_strerror_printf("failed statting fuzzer-out \"%s\": %s", fuzzer_dir, fr_syserror(errno));
2256 }
2257
2258 if (!(sdir.st_mode & S_IFDIR)) {
2259 close(fd);
2260 fr_strerror_printf("fuzzer-out \"%s\" is not a directory", fuzzer_dir);
2262 }
2263 cc->fuzzer_dir = fd;
2264 talloc_free(fuzzer_dir);
2265
2266 return 0;
2267}
2268
2269/** Exit gracefully with the specified code
2270 *
2271 */
2273 UNUSED char *data, UNUSED size_t data_used, char *in, UNUSED size_t inlen)
2274{
2275 if (!*in) RETURN_EXIT(0);
2276
2277 RETURN_EXIT(atoi(in));
2278}
2279
2281 UNUSED char *data, UNUSED size_t data_used, char *in, UNUSED size_t inlen)
2282{
2283 char *name, *tmp = NULL;
2284 char const *dir;
2285 char *q;
2286 int ret;
2287
2289
2290 if (in[0] == '\0') {
2291 fr_strerror_const("Missing dictionary name");
2293 }
2294
2295 q = strchr(in, ' ');
2296 if (q) {
2297 name = tmp = talloc_bstrndup(NULL, in, q - in);
2298 q++;
2299 dir = q;
2300 } else {
2301 name = in;
2302 dir = cc->path;
2303 }
2304
2306 talloc_free(tmp);
2307 if (ret < 0) RETURN_COMMAND_ERROR();
2308
2309 RETURN_OK(0);
2310}
2311
2312
2313/** Compare the data buffer to an expected value
2314 *
2315 */
2317 char *data, size_t data_used, char *in, size_t inlen)
2318{
2319 if (strcmp(in, data) != 0) {
2320 if (write_fp) {
2321 strcpy(in, data);
2322 RETURN_OK(data_used);
2323 }
2324
2325 mismatch_print(cc, "match", in, inlen, data, data_used, true);
2326 RETURN_MISMATCH(data_used);
2327 }
2328
2329 /*
2330 * We didn't actually write anything, but this
2331 * keeps the contents of the data buffer around
2332 * for the next command to operate on.
2333 */
2334 RETURN_OK(data_used);
2335}
2336
2337/** Compare the data buffer against an expected expression
2338 *
2339 */
2341 char *data, size_t data_used, char *in, size_t inlen)
2342{
2343 ssize_t slen;
2344 regex_t *regex;
2345 int ret;
2346
2347 slen = regex_compile(cc->tmp_ctx, &regex, in, inlen, NULL, false, true);
2348 if (slen <= 0) RETURN_COMMAND_ERROR();
2349
2350 ret = regex_exec(regex, data, data_used, NULL);
2351 talloc_free(regex);
2352
2353 switch (ret) {
2354 case -1:
2355 default:
2357
2358 case 0:
2359 mismatch_print(cc, "match-regex", in, inlen, data, data_used, false);
2360 RETURN_MISMATCH(data_used);
2361
2362 case 1:
2363 RETURN_OK(data_used);
2364 }
2365}
2366
2367/** Artificially limit the maximum packet size.
2368 *
2369 */
2371 char *data, UNUSED size_t data_used, char *in, UNUSED size_t inlen)
2372{
2373 unsigned long size;
2374 char *end;
2375
2377
2378 if (*in != '\0') {
2379 size = strtoul(in, &end, 10);
2380 if ((size == ULONG_MAX) || *end || (size >= 65536)) {
2381 fr_strerror_const_push("Invalid integer");
2383 }
2384 } else {
2385 size = DEFAULT_BUFFER_SIZE;
2386 }
2387
2388 if (poisoned_buffer_allocate(cc, &cc->buffer, size) < 0) RETURN_EXIT(1);
2391
2392 RETURN_OK(snprintf(data, COMMAND_OUTPUT_MAX, "%ld", size));
2393}
2394
2395extern bool xlat_func_bare_words;
2396
2397/** Set or clear migration flags.
2398 *
2399 */
2401 UNUSED char *data, UNUSED size_t data_used, char *in, UNUSED size_t inlen)
2402{
2403 char *p;
2404 bool *out;
2405
2407 p = in;
2408
2409 if (strncmp(p, "xlat_new_functions", sizeof("xlat_new_functions") - 1) == 0) {
2410 p += sizeof("xlat_new_functions") - 1;
2412
2413 } else {
2414 fr_strerror_const("Unknown migration flag");
2416 }
2417
2419 if (*p != '=') {
2420 fr_strerror_const("Missing '=' after flag");
2422 }
2423 p++;
2424
2426 if ((strcmp(p, "yes") == 0) || (strcmp(p, "true") == 0) || (strcmp(p, "1") == 0)) {
2427 *out = true;
2428
2429 } else if ((strcmp(p, "no") == 0) || (strcmp(p, "false") == 0) || (strcmp(p, "0") == 0)) {
2430 *out = false;
2431
2432 } else {
2433 fr_strerror_const("Invalid value for flag");
2435 }
2436
2437 RETURN_OK(0);
2438}
2439
2440/** Skip the test file if we're missing a particular feature
2441 *
2442 */
2444 UNUSED char *data, UNUSED size_t data_used, char *in, UNUSED size_t inlen)
2445{
2446 CONF_PAIR *cp;
2447
2448 if (in[0] == '\0') {
2449 fr_strerror_printf("Prerequisite syntax is \"need-feature <feature>\". "
2450 "Use -f to print features");
2452 }
2453
2454 cp = cf_pair_find(cc->config->features, in);
2455 if (!cp || (strcmp(cf_pair_value(cp), "yes") != 0)) {
2456 DEBUG("Skipping, missing feature \"%s\"", in);
2458 }
2459
2460 RETURN_NOOP(0);
2461}
2462
2463/** Negate the result of a match command or any command which returns "OK"
2464 *
2465 */
2467 char *data, size_t data_used, char *in, size_t inlen)
2468{
2469 data_used = process_line(result, cc, data, data_used, in, inlen);
2470 switch (result->rcode) {
2471 /*
2472 * OK becomes a command error
2473 */
2474 case RESULT_OK:
2475 ERROR("%s[%d]: %.*s: returned 'ok', where we expected 'result-mismatch'",
2476 cc->filename, cc->lineno, (int) inlen, in);
2477 RETURN_MISMATCH(data_used);
2478
2479 /*
2480 * Mismatch becomes OK
2481 */
2482 case RESULT_MISMATCH:
2483 RETURN_OK(data_used);
2484
2485 /*
2486 * The rest are unchanged...
2487 */
2488 default:
2489 break;
2490 }
2491
2492 return data_used;
2493}
2494
2495/** Parse an print an attribute pair or pair list.
2496 *
2497 */
2499 char *data, UNUSED size_t data_used, char *in, size_t inlen)
2500{
2502 ssize_t slen;
2503 fr_dict_t const *dict = dictionary_current(cc);
2504 fr_pair_parse_t root, relative;
2505
2507
2508 root = (fr_pair_parse_t) {
2509 .ctx = cc->tmp_ctx,
2510 .da = fr_dict_root(dict),
2511 .list = &head,
2512 };
2513 relative = (fr_pair_parse_t) { };
2514
2515 slen = fr_pair_list_afrom_substr(&root, &relative, &FR_SBUFF_IN(in, inlen));
2516 if (slen <= 0) {
2517// fr_strerror_printf_push_head("ERROR offset %d", (int) -slen);
2520 }
2521
2522 /*
2523 * Output may be an error, and we ignore
2524 * it if so.
2525 */
2526
2528 if (slen <= 0) {
2531 }
2532
2534 RETURN_OK(slen);
2535}
2536
2537/** Dynamically load a protocol library
2538 *
2539 */
2541 UNUSED char *data, UNUSED size_t data_used, char *in, UNUSED size_t inlen)
2542{
2543 ssize_t slen;
2544
2545 if (*in == '\0') {
2546 fr_strerror_printf("Load syntax is \"proto <lib_name>\"");
2548 }
2549
2551 slen = load_proto_library(in);
2552 if (slen <= 0) RETURN_PARSE_ERROR(-(slen));
2553
2554 RETURN_OK(0);
2555}
2556
2558 UNUSED char *data, UNUSED size_t data_used, char *in, UNUSED size_t inlen)
2559{
2561 return dictionary_load_common(result, cc, in, NULL);
2562}
2563
2565 UNUSED char *data, UNUSED size_t data_used, char *in, UNUSED size_t inlen)
2566{
2567 fr_dict_t const *dict = dictionary_current(cc);
2568 fr_dict_attr_t const *root_da = fr_dict_root(dict);
2569 fr_dict_attr_t const *new_root;
2570
2571 if (is_whitespace(in) || (*in == '\0')) {
2572 new_root = fr_dict_root(dict);
2573 } else {
2574 new_root = fr_dict_attr_by_name(NULL, fr_dict_root(dict), in);
2575 if (!new_root) {
2576 fr_strerror_printf("dictionary attribute \"%s\" not found in %s", in, root_da->name);
2578 }
2579 }
2580
2581 cc->tmpl_rules.attr.namespace = new_root;
2582
2583 RETURN_OK(0);
2584}
2585
2586/** Touch a file to indicate a test completed
2587 *
2588 */
2590 UNUSED char *data, UNUSED size_t data_used, char *in, UNUSED size_t inlen)
2591{
2592 if (fr_unlink(in) < 0) RETURN_COMMAND_ERROR();
2593 if (fr_touch(NULL, in, 0644, true, 0755) <= 0) RETURN_COMMAND_ERROR();
2594
2595 RETURN_OK(0);
2596}
2597
2598/** Callback for a tmpl rule parser
2599 *
2600 */
2601typedef ssize_t(*command_tmpl_rule_func)(TALLOC_CTX *ctx, tmpl_rules_t *rules, fr_sbuff_t *value);
2602
2604{
2605 bool res;
2606 ssize_t slen;
2607
2608 slen = fr_sbuff_out_bool(&res, value);
2609 rules->attr.allow_foreign = res;
2610 return slen;
2611}
2612
2614{
2615 bool res;
2616 ssize_t slen;
2617
2618 slen = fr_sbuff_out_bool(&res, value);
2619 rules->attr.allow_unknown = res;
2620 return slen;
2621}
2622
2624{
2625 bool res;
2626 ssize_t slen;
2627
2628 slen = fr_sbuff_out_bool(&res, value);
2629 rules->attr.allow_unresolved = res;
2630 return slen;
2631}
2632
2634{
2636 fr_slen_t slen;
2637
2639 &rules->attr.namespace,
2640 rules->attr.dict_def ? fr_dict_root(rules->attr.dict_def) :
2642 value, NULL);
2644 return slen;
2645}
2646
2648{
2649 ssize_t slen;
2650
2652
2653 if (slen == 0) {
2654 fr_strerror_printf("Invalid list specifier \"%pV\"",
2656 }
2657
2658 return slen;
2659}
2660
2662{
2663 fr_slen_t slen;
2664
2665 slen = tmpl_request_ref_list_afrom_substr(ctx, NULL,
2666 &rules->attr.request_def,
2667 value);
2668 if (slen < 0) {
2669 fr_strerror_printf("Invalid request specifier \"%pV\"",
2671 }
2672
2673 return slen;
2674}
2675
2677 UNUSED char *data, UNUSED size_t data_used, char *in, size_t inlen)
2678{
2679 fr_sbuff_t sbuff = FR_SBUFF_IN(in, inlen);
2680 ssize_t slen;
2682 void *res;
2683
2684 static fr_table_ptr_sorted_t tmpl_rule_func_table[] = {
2685 { L("allow_foreign"), (void *)command_tmpl_rule_allow_foreign },
2686 { L("allow_unknown"), (void *)command_tmpl_rule_allow_unknown },
2687 { L("allow_unresolved"), (void *)command_tmpl_rule_allow_unresolved },
2688 { L("attr_parent"), (void *)command_tmpl_rule_attr_parent },
2689 { L("list_def"), (void *)command_tmpl_rule_list_def },
2690 { L("request_def"), (void *)command_tmpl_rule_request_def }
2691 };
2692 static size_t tmpl_rule_func_table_len = NUM_ELEMENTS(tmpl_rule_func_table);
2693
2694 while (fr_sbuff_extend(&sbuff)) {
2695 fr_sbuff_adv_past_whitespace(&sbuff, SIZE_MAX, NULL);
2696
2697 fr_sbuff_out_by_longest_prefix(&slen, &res, tmpl_rule_func_table, &sbuff, NULL);
2698 if (res == NULL) {
2699 fr_strerror_printf("Specified rule \"%pV\" is invalid",
2702 }
2703 func = (command_tmpl_rule_func)res; /* -Wpedantic */
2704
2705 fr_sbuff_adv_past_whitespace(&sbuff, SIZE_MAX, NULL);
2706
2707 if (!fr_sbuff_next_if_char(&sbuff, '=')) {
2708 fr_strerror_printf("Expected '=' after rule identifier, got \"%pV\"",
2711 }
2712
2713 fr_sbuff_adv_past_whitespace(&sbuff, SIZE_MAX, NULL);
2714
2715 if (func(cc->tmp_ctx, &cc->tmpl_rules, &sbuff) <= 0) RETURN_COMMAND_ERROR();
2716 }
2717
2718 return fr_sbuff_used(&sbuff);
2719}
2720
2722 char *data, UNUSED size_t data_used, char *in, UNUSED size_t inlen)
2723{
2724 fr_value_box_t *box = talloc_zero(NULL, fr_value_box_t);
2725 fr_value_box_t *box2;
2726 char const *value;
2727 size_t match_len;
2728 ssize_t slen;
2730
2731 match_len = parse_typed_value(result, box, &value, in, strlen(in));
2732 if (match_len == 0) {
2733 talloc_free(box);
2734 return 0; /* errors have already been updated */
2735 }
2736
2737 type = box->type;
2738
2739 /*
2740 * Don't print dates with enclosing quotation marks.
2741 */
2742 if (type != FR_TYPE_DATE) {
2745 } else {
2747 }
2748 if (slen <= 0) {
2749 talloc_free(box);
2751 }
2752
2753 /*
2754 * Behind the scenes, parse the data
2755 * string. We should get the same value
2756 * box as last time.
2757 */
2758 box2 = talloc_zero(NULL, fr_value_box_t);
2759 if (fr_value_box_from_str(box2, box2, type, NULL,
2760 data, slen,
2762 talloc_free(box2);
2763 talloc_free(box);
2765 }
2766
2767 /*
2768 * They MUST be identical
2769 */
2770 if (fr_value_box_cmp(box, box2) != 0) {
2771 fr_strerror_const("ERROR value box reparsing failed. Results not identical");
2772 fr_strerror_printf_push("out: %pV (as string %.*s)", box2, (int) slen, data);
2773 fr_strerror_printf_push("in: %pV (from string %s)", box, value);
2774 talloc_free(box2);
2775 talloc_free(box);
2777 }
2778
2779 /*
2780 * Store <type><value str...>
2781 */
2782 if (cc->fuzzer_dir >= 0) {
2783 char fuzzer_buffer[1024];
2784 char *fuzzer_p = fuzzer_buffer, *fuzzer_end = fuzzer_p + sizeof(fuzzer_buffer);
2785
2786 *fuzzer_p++ = (uint8_t)type; /* Fuzzer uses first byte for type */
2787
2788 strlcpy(fuzzer_p, data, slen > fuzzer_end - fuzzer_p ? fuzzer_end - fuzzer_p : slen);
2789
2790 if (dump_fuzzer_data(cc->fuzzer_dir, fuzzer_buffer,
2791 (uint8_t *)fuzzer_buffer, strlen(fuzzer_buffer)) < 0) {
2793 }
2794 }
2795
2796 talloc_free(box2);
2797 talloc_free(box);
2798 RETURN_OK(slen);
2799}
2800
2802 char *data, size_t data_used, char *in, size_t inlen)
2803{
2804 int fd;
2805 char *path;
2806 bool locked = false;
2807
2808 path = talloc_bstrndup(cc->tmp_ctx, in, inlen);
2809
2810 fd = open(path, O_CREAT | O_WRONLY, S_IRUSR | S_IWUSR | S_IRGRP | S_IWGRP | S_IROTH | S_IWOTH);
2811 if (fd < 0) {
2812 fr_strerror_printf("Failed opening \"%s\": %s", path, fr_syserror(errno));
2813 error:
2814 talloc_free(path);
2815 if (fd >= 0) {
2816 if (locked) (void)flock(fd, LOCK_UN);
2817 close(fd);
2818 }
2820 }
2821
2822 if (flock(fd, LOCK_EX) < 0) {
2823 fr_strerror_printf("Failed locking \"%s\": %s", path, fr_syserror(errno));
2824 goto error;
2825 }
2826 locked = true;
2827
2828 while (data_used) {
2829 ssize_t ret;
2830 ret = write(fd, data, data_used);
2831 if (ret < 0) {
2832 fr_strerror_printf("Failed writing to \"%s\": %s", path, fr_syserror(errno));
2833 goto error;
2834 }
2835 data_used -= ret;
2836 data += ret;
2837 }
2838 (void)flock(fd, LOCK_UN);
2839 talloc_free(path);
2840 close(fd);
2841
2842 RETURN_OK(data_used);
2843}
2844
2845/** Parse an reprint and xlat expansion
2846 *
2847 */
2849 char *data, UNUSED size_t data_used, char *in, UNUSED size_t inlen)
2850{
2851 ssize_t dec_len;
2852 xlat_exp_head_t *head = NULL;
2853 size_t input_len = strlen(in), escaped_len;
2854 fr_sbuff_parse_rules_t p_rules = { .escapes = &fr_value_unescape_double };
2855
2856 dec_len = xlat_tokenize(cc->tmp_ctx, &head, &FR_SBUFF_IN(in, input_len), &p_rules,
2857 &(tmpl_rules_t) {
2858 .attr = {
2859 .dict_def = dictionary_current(cc),
2860 .list_def = request_attr_request,
2861 .allow_unresolved = cc->tmpl_rules.attr.allow_unresolved
2862 },
2863 .xlat = cc->tmpl_rules.xlat,
2864 });
2865 if (dec_len <= 0) {
2866 fr_strerror_printf_push_head("ERROR offset %d", (int) -dec_len);
2867
2868 return_error:
2870 }
2871
2872 if (((size_t) dec_len != input_len)) {
2873 fr_strerror_printf_push_head("offset %d 'Too much text'", (int) dec_len);
2874 goto return_error;
2875 }
2876
2878 RETURN_OK(escaped_len);
2879}
2880
2881/** Parse and reprint an xlat expression expansion
2882 *
2883 */
2885 char *data, UNUSED size_t data_used, char *in, UNUSED size_t inlen)
2886{
2887 ssize_t dec_len;
2888 xlat_exp_head_t *head = NULL;
2889 size_t input_len = strlen(in), escaped_len;
2890// fr_sbuff_parse_rules_t p_rules = { .escapes = &fr_value_unescape_double };
2891
2892 dec_len = xlat_tokenize_expression(cc->tmp_ctx, &head, &FR_SBUFF_IN(in, input_len), NULL,
2893 &(tmpl_rules_t) {
2894 .attr = {
2895 .dict_def = dictionary_current(cc),
2896 .allow_unresolved = cc->tmpl_rules.attr.allow_unresolved,
2897 .list_def = request_attr_request,
2898 }
2899 });
2900 if (dec_len <= 0) {
2901 fr_strerror_printf_push_head("ERROR offset %d", (int) -dec_len);
2902
2903 return_error:
2905 }
2906
2907 if (((size_t) dec_len != input_len)) {
2908 fr_strerror_printf_push_head("Passed in %zu characters, but only parsed %zd characters", input_len, dec_len);
2909 goto return_error;
2910 }
2911
2913 RETURN_OK(escaped_len);
2914}
2915
2916/** Parse, purify, and reprint an xlat expression expansion
2917 *
2918 */
2920 char *data, UNUSED size_t data_used, char *in, UNUSED size_t inlen)
2921{
2922 ssize_t dec_len;
2923 xlat_exp_head_t *head = NULL;
2924 size_t input_len = strlen(in), escaped_len;
2925 tmpl_rules_t t_rules = (tmpl_rules_t) {
2926 .attr = {
2928 .allow_unresolved = cc->tmpl_rules.attr.allow_unresolved,
2929 .list_def = request_attr_request,
2930 },
2931 .xlat = cc->tmpl_rules.xlat,
2932 .at_runtime = true,
2933 };
2934
2935 if (!el) {
2936 fr_strerror_const("Flag '-p' not used. xlat_purify is disabled");
2937 goto return_error;
2938 }
2939 t_rules.xlat.runtime_el = el;
2940
2941 dec_len = xlat_tokenize_expression(cc->tmp_ctx, &head, &FR_SBUFF_IN(in, input_len), NULL, &t_rules);
2942 if (dec_len <= 0) {
2943 fr_strerror_printf_push_head("ERROR offset %d", (int) -dec_len);
2944
2945 return_error:
2947 }
2948
2949 if (((size_t) dec_len != input_len)) {
2950 fr_strerror_printf_push_head("Passed in %zu characters, but only parsed %zd characters", input_len, dec_len);
2951 goto return_error;
2952 }
2953
2954 if (fr_debug_lvl > 2) {
2955 DEBUG("Before purify --------------------------------------------------");
2957 }
2958
2959 (void) xlat_purify(head, NULL);
2960
2961 if (fr_debug_lvl > 2) {
2962 DEBUG("After purify --------------------------------------------------");
2964 }
2965
2967 RETURN_OK(escaped_len);
2968}
2969
2970
2971/** Parse an reprint and xlat argv expansion
2972 *
2973 */
2975 char *data, UNUSED size_t data_used, char *in, UNUSED size_t inlen)
2976{
2977 int i, argc;
2978 char *p;
2979 ssize_t slen;
2980 xlat_exp_head_t *head = NULL;
2981 xlat_exp_head_t **argv;
2982 size_t len;
2983 size_t input_len = strlen(in);
2984 char buff[1024];
2985
2986 slen = xlat_tokenize_argv(cc->tmp_ctx, &head, &FR_SBUFF_IN(in, input_len),
2987 NULL, NULL,
2988 &(tmpl_rules_t) {
2989 .attr = {
2990 .dict_def = dictionary_current(cc),
2991 .list_def = request_attr_request,
2992 .allow_unresolved = cc->tmpl_rules.attr.allow_unresolved
2993 },
2994 }, true);
2995 if (slen <= 0) {
2996 fr_strerror_printf_push_head("ERROR offset %d", (int) -slen);
2998 }
2999
3000 argc = xlat_flatten_to_argv(cc->tmp_ctx, &argv, head);
3001 if (argc <= 0) {
3002 fr_strerror_printf_push("ERROR in argument %d", (int) -argc);
3004 }
3005
3006 for (i = 0, p = data; i < argc; i++) {
3007 (void) xlat_print(&FR_SBUFF_OUT(buff, sizeof(buff)), argv[i], NULL);
3008
3009 len = snprintf(p, data + COMMAND_OUTPUT_MAX - p, "[%d]{ %s }, ", i, buff);
3010 p += len;
3011 }
3012
3013 p -= 2;
3014 *p = '\0';
3015
3016 RETURN_OK(p - data);
3017}
3018
3020 { L("#"), &(command_entry_t){
3021 .func = command_comment,
3022 .usage = "#<string>",
3023 .description = "A comment - not processed"
3024 }},
3025 { L("$INCLUDE "), &(command_entry_t){
3026 .func = command_include,
3027 .usage = "$INCLUDE <relative_path>",
3028 .description = "Execute a test file"
3029 }},
3030 { L("allow-unresolved "), &(command_entry_t){
3032 .usage = "allow-unresolved yes|no",
3033 .description = "Allow or disallow unresolved attributes in xlats and references"
3034 }},
3035 { L("calc "), &(command_entry_t){
3036 .func = command_calc,
3037 .usage = "calc <type1> <value1> <operator> <type2> <value2> -> <output-type>",
3038 .description = "Perform calculations on value boxes",
3039 }},
3040 { L("calc_nary "), &(command_entry_t){
3041 .func = command_calc_nary,
3042 .usage = "calc_nary op <type1> <value1> <type2> <value2> ... -> <output-type>",
3043 .description = "Perform calculations on value boxes",
3044 }},
3045 { L("cd "), &(command_entry_t){
3046 .func = command_cd,
3047 .usage = "cd <path>",
3048 .description = "Change the directory for loading dictionaries and $INCLUDEs, writing the full path into the data buffer on success"
3049 }},
3050 { L("clear"), &(command_entry_t){
3051 .func = command_clear,
3052 .usage = "clear",
3053 .description = "Explicitly zero out the contents of the data buffer"
3054 }},
3055 { L("command add "), &(command_entry_t){
3056 .func = command_radmin_add,
3057 .usage = "command add <string>",
3058 .description = "Add a command to a radmin command tree"
3059 }},
3060 { L("command tab "), &(command_entry_t){
3061 .func = command_radmin_tab,
3062 .usage = "command tab <string>",
3063 .description = "Test a tab completion against a radmin command tree"
3064 }},
3065 { L("condition "), &(command_entry_t){
3067 .usage = "condition <string>",
3068 .description = "Parse and reprint a condition, writing the normalised condition to the data buffer on success"
3069 }},
3070 { L("count"), &(command_entry_t){
3071 .func = command_count,
3072 .usage = "count",
3073 .description = "Write the number of executed tests to the data buffer. A test is any command that should return 'ok'"
3074 }},
3075 { L("decode-dns-label "), &(command_entry_t){
3077 .usage = "decode-dns-label (-|<hex_string>)",
3078 .description = "Decode one or more DNS labels, writing the decoded strings to the data buffer.",
3079 }},
3080 { L("decode-pair"), &(command_entry_t){
3081 .func = command_decode_pair,
3082 .usage = "decode-pair[.<testpoint_symbol>] (-|<hex_string>)",
3083 .description = "Produce an attribute value pair from a binary value using a specified protocol decoder. Protocol must be loaded with \"load <protocol>\" first",
3084 }},
3085 { L("decode-proto"), &(command_entry_t){
3086 .func = command_decode_proto,
3087 .usage = "decode-proto[.<testpoint_symbol>] (-|<hex string>)",
3088 .description = "Decode a packet as attribute value pairs from a binary value using a specified protocol decoder. Protocol must be loaded with \"load <protocol>\" first",
3089 }},
3090 { L("dictionary "), &(command_entry_t){
3092 .usage = "dictionary <string>",
3093 .description = "Parse dictionary attribute definition, writing \"ok\" to the data buffer if successful",
3094 }},
3095 { L("dictionary-dump"), &(command_entry_t){
3097 .usage = "dictionary-dump",
3098 .description = "Print the contents of the currently active dictionary to stdout",
3099 }},
3100 { L("encode-dns-label "), &(command_entry_t){
3102 .usage = "encode-dns-label (-|string[,string])",
3103 .description = "Encode one or more DNS labels, writing a hex string to the data buffer.",
3104 }},
3105 { L("encode-pair"), &(command_entry_t){
3106 .func = command_encode_pair,
3107 .usage = "encode-pair[.<testpoint_symbol>] [truncate] (-|<attribute> = <value>[,<attribute = <value>])",
3108 .description = "Encode one or more attribute value pairs, writing a hex string to the data buffer. Protocol must be loaded with \"load <protocol>\" first",
3109 }},
3110 { L("encode-proto"), &(command_entry_t){
3111 .func = command_encode_proto,
3112 .usage = "encode-proto[.<testpoint_symbol>] (-|<attribute> = <value>[,<attribute = <value>])",
3113 .description = "Encode one or more attributes as a packet, writing a hex string to the data buffer. Protocol must be loaded with \"proto <protocol>\" first"
3114 }},
3115 { L("eof"), &(command_entry_t){
3116 .func = command_eof,
3117 .usage = "eof",
3118 .description = "Mark the end of a 'virtual' file. Used to prevent 'need-feature' skipping all the content of a command stream or file",
3119 }},
3120 { L("exit"), &(command_entry_t){
3121 .func = command_exit,
3122 .usage = "exit[ <num>]",
3123 .description = "Exit with the specified error number. If no <num> is provided, process will exit with 0"
3124 }},
3125 { L("fuzzer-out"), &(command_entry_t){
3126 .func = command_fuzzer_out,
3127 .usage = "fuzzer-out <dir>",
3128 .description = "Write encode-pair, encode-proto, and encode-dns-label output, and value input as separate files in the specified directory. Text input will be sha1 hashed and base64 encoded to create the filename",
3129 }},
3130 { L("load-dictionary "),&(command_entry_t){
3132 .usage = "load-dictionary <name> [<dir>]",
3133 .description = "Load an additional dictionary from the same directory as the input file. "
3134 "Optionally you can specify a full path via <dir>. ",
3135 }},
3136 { L("match"), &(command_entry_t){
3137 .func = command_match,
3138 .usage = "match <string>",
3139 .description = "Compare the contents of the data buffer with an expected value"
3140 }},
3141 { L("match-regex "), &(command_entry_t){
3142 .func = command_match_regex,
3143 .usage = "match-regex <regex>",
3144 .description = "Compare the contents of the data buffer with a regular expression"
3145 }},
3146 { L("max-buffer-size"), &(command_entry_t){
3148 .usage = "max-buffer-size[ <integer>]",
3149 .description = "Limit the maximum temporary buffer space available for any command which uses it"
3150 }},
3151 { L("migrate "), &(command_entry_t){
3152 .func = command_migrate,
3153 .usage = "migrate <flag>=<value>",
3154 .description = "Set migration flag"
3155 }},
3156 { L("need-feature "), &(command_entry_t){
3157 .func = command_need_feature,
3158 .usage = "need-feature <feature>",
3159 .description = "Skip the contents of the current file, or up to the next \"eof\" command if a particular feature is not available"
3160 }},
3161 { L("no "), &(command_entry_t){
3162 .func = command_no,
3163 .usage = "no ...",
3164 .description = "Negate the result of a command returning 'ok'"
3165 }},
3166 { L("pair "), &(command_entry_t){
3167 .func = command_pair,
3168 .usage = "pair ... data ...",
3169 .description = "Parse a list of pairs",
3170 }},
3171 { L("proto "), &(command_entry_t){
3172 .func = command_proto,
3173 .usage = "proto <protocol>",
3174 .description = "Switch the active protocol to the one specified, unloading the previous protocol",
3175 }},
3176 { L("proto-dictionary "),&(command_entry_t){
3178 .usage = "proto-dictionary <proto_name> [<proto_dir>]",
3179 .description = "Switch the active dictionary. Root is set to the default dictionary path, or the one specified with -d. <proto_dir> is relative to the root.",
3180 }},
3181
3182
3183 { L("proto-dictionary-root "), &(command_entry_t){
3185 .usage = "proto-dictionary-root[ <root_attribute>]",
3186 .description = "Set the root attribute for the current protocol dictionary. "
3187 "If no attribute name is provided, the root will be reset to the root of the current dictionary",
3188 }},
3189 { L("raw "), &(command_entry_t){
3190 .func = command_encode_raw,
3191 .usage = "raw <string>",
3192 .description = "Create nested attributes from OID strings and values"
3193 }},
3194 { L("read_file "), &(command_entry_t){
3195 .func = command_read_file,
3196 .usage = "read_file <filename>",
3197 .description = "Read a list of pairs from a file",
3198 }},
3199 { L("returned"), &(command_entry_t){
3200 .func = command_returned,
3201 .usage = "returned",
3202 .description = "Print the returned value to the data buffer"
3203 }},
3204
3205 { L("tmpl-rules "), &(command_entry_t){
3206 .func = command_tmpl_rules,
3207 .usage = "tmpl-rule [allow_foreign=yes] [allow_unknown=yes|no] [allow_unresolved=yes|no] [attr_parent=<oid>] [list_def=request|reply|control|session-state] [request_def=current|outer|parent]",
3208 .description = "Alter the tmpl parsing rules for subsequent tmpl parsing commands in the same command context"
3209 }},
3210 { L("touch "), &(command_entry_t){
3211 .func = command_touch,
3212 .usage = "touch <file>",
3213 .description = "Touch a file, updating its created timestamp. Useful for marking the completion of a series of tests"
3214 }},
3215 { L("value "), &(command_entry_t){
3217 .usage = "value <type> <string>",
3218 .description = "Parse a value of a given type from its presentation form, print it, then parse it again (checking printed/parsed versions match), writing printed form to the data buffer"
3219 }},
3220 { L("write "), &(command_entry_t){
3221 .func = command_write,
3222 .usage = "write <file>",
3223 .description = "Write the contents of the data buffer (as a raw binary string) to the specified file"
3224 }},
3225 { L("xlat "), &(command_entry_t){
3226 .func = command_xlat_normalise,
3227 .usage = "xlat <string>",
3228 .description = "Parse then print an xlat expansion, writing the normalised xlat expansion to the data buffer"
3229 }},
3230
3231 { L("xlat_argv "), &(command_entry_t){
3232 .func = command_xlat_argv,
3233 .usage = "xlat_argv <string>",
3234 .description = "Parse then print an xlat expansion argv, writing the normalised xlat expansion arguments to the data buffer"
3235 }},
3236
3237 { L("xlat_expr "), &(command_entry_t){
3238 .func = command_xlat_expr,
3239 .usage = "xlat_expr <string>",
3240 .description = "Parse then print an xlat expression, writing the normalised xlat expansion to the data buffer"
3241 }},
3242
3243 { L("xlat_purify "), &(command_entry_t){
3244 .func = command_xlat_purify,
3245 .usage = "xlat_purify <string>",
3246 .description = "Parse, purify, then print an xlat expression, writing the normalised xlat expansion to the data buffer"
3247 }},
3248
3249};
3251
3252size_t process_line(command_result_t *result, command_file_ctx_t *cc, char *data, size_t data_used,
3253 char *in, UNUSED size_t inlen)
3254{
3255
3256 command_entry_t *command;
3257 size_t match_len;
3258 char *p;
3259
3260 p = in;
3262
3263 /*
3264 * Skip empty lines and comments.
3265 */
3266 if (!*p || (*p == '#')) {
3267 /*
3268 * Dump the input to the output.
3269 */
3270 if (write_fp) {
3271 fputs(in, write_fp);
3272 fputs("\n", write_fp);
3273 }
3274
3275 RETURN_NOOP(data_used);
3276 }
3277
3278 DEBUG2("%s[%d]: %s", cc->filename, cc->lineno, p);
3279
3280 /*
3281 * Look up the command by longest prefix
3282 */
3283 command = fr_table_value_by_longest_prefix(&match_len, commands, p, -1, NULL);
3284 if (!command) {
3285 fr_strerror_printf("Unknown command: %s", p);
3287 }
3288
3289 p += match_len; /* Jump to after the command */
3290 fr_skip_whitespace(p); /* Skip any whitespace */
3291
3292 /*
3293 * Feed the data buffer in as the command
3294 */
3295 if ((p[0] == '-') && ((p[1] == ' ') || (p[1] == '\0'))) {
3296 data_used = command->func(result, cc, data, data_used, data, data_used);
3297 }
3298 else {
3299 data_used = command->func(result, cc, data, data_used, p, strlen(p));
3300 }
3301
3302 /*
3303 * Dump the contents of the error stack
3304 * to the data buffer.
3305 *
3306 * This is then what's checked in
3307 * subsequent match commands.
3308 */
3309 if (result->error_to_data) data_used = strerror_concat(data, COMMAND_OUTPUT_MAX);
3310
3311 fr_assert((size_t)data_used < COMMAND_OUTPUT_MAX);
3312 data[data_used] = '\0'; /* Ensure the data buffer is \0 terminated */
3313
3314 if (data_used) {
3315 DEBUG2("%s[%d]: --> %s (%zu bytes in buffer)", cc->filename, cc->lineno,
3316 fr_table_str_by_value(command_rcode_table, result->rcode, "<INVALID>"), data_used);
3317 } else {
3318 DEBUG2("%s[%d]: --> %s", cc->filename, cc->lineno,
3319 fr_table_str_by_value(command_rcode_table, result->rcode, "<INVALID>"));
3320 }
3321
3322 /*
3323 * Dump the input to the output.
3324 */
3325 if (write_fp) {
3326 fputs(in, write_fp);
3327 fputs("\n", write_fp);
3328 };
3329
3330 talloc_free_children(cc->tmp_ctx);
3331
3332 return data_used;
3333}
3334
3336{
3337 if (fr_dict_free(&cc->test_internal_dict, __FILE__) < 0) {
3338 fr_perror("unit_test_attribute");
3339 return -1;
3340 }
3341 if (fr_dict_global_ctx_free(cc->test_gctx) < 0) {
3342 fr_perror("unit_test_attribute");
3343 return -1;
3344 }
3345 if (cc->fuzzer_dir >= 0) {
3346 close(cc->fuzzer_dir);
3347 cc->fuzzer_dir = -1;
3348 }
3349 return 0;
3350}
3351
3353 command_config_t const *config, char const *path, char const *filename)
3354{
3356
3357 cc = talloc_zero(ctx, command_file_ctx_t);
3358 talloc_set_destructor(cc, _command_ctx_free);
3359
3360 cc->tmp_ctx = talloc_named_const(ctx, 0, "tmp_ctx");
3361 cc->path = talloc_strdup(cc, path);
3362 cc->filename = filename;
3363 cc->config = config;
3364
3365 /*
3366 * Allocate a special buffer with poisoned regions
3367 * at either end.
3368 */
3370 talloc_free(cc);
3371 return NULL;
3372 }
3375
3376 /*
3377 * Initialise a special temporary dictionary context
3378 *
3379 * Any protocol dictionaries loaded by "test-dictionary"
3380 * go in this context, and don't affect the main
3381 * dictionary context.
3382 */
3383 cc->test_gctx = fr_dict_global_ctx_init(cc, false, cc->config->dict_dir);
3384 if (!cc->test_gctx) {
3385 fr_perror("Failed allocating test dict_gctx");
3386 return NULL;
3387 }
3388
3391 fr_perror("Failed loading test dict_gctx internal dictionary");
3392 return NULL;
3393 }
3394
3395 fr_dict_global_ctx_dir_set(cc->path); /* Load new dictionaries relative to the test file */
3397
3398 cc->fuzzer_dir = -1;
3399
3401 cc->tmpl_rules.attr.namespace = fr_dict_root(cc->config->dict);
3402 cc->tmpl_rules.attr.allow_unresolved = false; /* tests have to use real attributes */
3403
3404 return cc;
3405}
3406
3407static void command_ctx_reset(command_file_ctx_t *cc, TALLOC_CTX *ctx)
3408{
3409 talloc_free(cc->tmp_ctx);
3410 cc->tmp_ctx = talloc_named_const(ctx, 0, "tmp_ctx");
3411 cc->test_count = 0;
3412
3413 if (fr_dict_free(&cc->test_internal_dict, __FILE__) < 0) {
3414 fr_perror("unit_test_attribute");
3415 }
3416
3417 if (fr_dict_global_ctx_free(cc->test_gctx) < 0) fr_perror("unit_test_attribute");
3418
3419 cc->test_gctx = fr_dict_global_ctx_init(cc, false, cc->config->dict_dir);
3421 fr_perror("Failed loading test dict_gctx internal dictionary");
3422 }
3423
3424 if (cc->fuzzer_dir >= 0) {
3425 close(cc->fuzzer_dir);
3426 cc->fuzzer_dir = -1;
3427 }
3428}
3429
3430static int process_file(bool *exit_now, TALLOC_CTX *ctx, command_config_t const *config,
3431 const char *root_dir, char const *filename, fr_dlist_head_t *lines)
3432{
3433 int ret = 0;
3434 FILE *fp; /* File we're reading from */
3435 char buffer[8192]; /* Command buffer */
3436 char data[COMMAND_OUTPUT_MAX + 1]; /* Data written by previous command */
3437 ssize_t data_used = 0; /* How much data the last command wrote */
3438 static char path[PATH_MAX] = "";
3439 command_line_range_t *lr = NULL;
3440 bool opened_fp = false;
3441
3443
3444 cc = command_ctx_alloc(ctx, config, root_dir, filename);
3445
3446 /*
3447 * Open the file, or stdin
3448 */
3449 if (strcmp(filename, "-") == 0) {
3450 fp = stdin;
3451 filename = "<stdin>";
3452 } else {
3453 if (root_dir && *root_dir) {
3454 snprintf(path, sizeof(path), "%s/%s", root_dir, filename);
3455 } else {
3456 strlcpy(path, filename, sizeof(path));
3457 }
3458
3459 fp = fopen(path, "r");
3460 if (!fp) {
3461 ERROR("Error opening test file \"%s\": %s", path, fr_syserror(errno));
3462 ret = -1;
3463 goto finish;
3464 }
3465
3466 filename = path;
3467 opened_fp = true;
3468 }
3469
3470 if (lines && !fr_dlist_empty(lines)) lr = fr_dlist_head(lines);
3471
3472 /*
3473 * Loop over lines in the file or stdin
3474 */
3475 while (fgets(buffer, sizeof(buffer), fp) != NULL) {
3476 command_result_t result = { .rcode = RESULT_OK }; /* Reset to OK */
3477 char *p = strchr(buffer, '\n');
3478
3480 cc->lineno++; /* The first line of the file becomes line 1 */
3481
3482 if (lr) {
3483 if (cc->lineno > lr->end) {
3484 lr = fr_dlist_next(lines, lr);
3485 if (!lr) goto finish;
3486 }
3487
3488 if (cc->lineno < lr->start) continue;
3489 }
3490
3491 if (!p) {
3492 if (!feof(fp)) {
3493 ERROR("Line %d too long in %s/%s", cc->lineno, cc->path, cc->filename);
3494 ret = -1;
3495 goto finish;
3496 }
3497 } else {
3498 *p = '\0';
3499 }
3500
3501 data_used = process_line(&result, cc, data, data_used, buffer, strlen(buffer));
3502 switch (result.rcode) {
3503 /*
3504 * Command completed successfully
3505 */
3506 case RESULT_OK:
3507 cc->test_count++;
3508 continue;
3509
3510 /*
3511 * Did nothing (not a test)
3512 */
3513 case RESULT_NOOP:
3514 continue;
3515
3516 /*
3517 * If this is a file, then break out of the loop
3518 * and cleanup, otherwise we need to find the
3519 * EOF marker in the input stream.
3520 */
3521 case RESULT_SKIP_FILE:
3522 if (fp != stdin) goto finish;
3523
3524 /*
3525 * Skip over the input stream until we
3526 * find an eof command, or the stream
3527 * is closed.
3528 */
3529 while (fgets(buffer, sizeof(buffer), fp) != NULL) {
3530 command_entry_t *command;
3531 size_t match_len;
3532
3533 command = fr_table_value_by_longest_prefix(&match_len, commands, buffer, -1, NULL);
3534 if (!command) {
3535 ERROR("%s[%d]: Unknown command: %s", cc->path, cc->lineno, p);
3536 ret = -1;
3537 goto finish;
3538 }
3539
3540 if (command->func == command_eof) {
3541 command_ctx_reset(cc, ctx);
3542 break;
3543 }
3544 }
3545 goto finish;
3546
3547 /*
3548 * Fatal error parsing a command
3549 */
3550 case RESULT_PARSE_ERROR:
3552 fr_perror("%s[%d]", filename, cc->lineno);
3553 ret = -1;
3554 goto finish;
3555
3556 /*
3557 * Result didn't match what we expected
3558 */
3559 case RESULT_MISMATCH:
3560 {
3561 ret = EXIT_FAILURE;
3562 goto finish;
3563 }
3564
3565 case RESULT_EXIT:
3566 ret = result.ret;
3567 *exit_now = true;
3568 goto finish;
3569
3570 default:
3571 /*
3572 * If this happens, fix the damn command.
3573 */
3574 fr_assert_msg(false, "Command exited with invalid return code (%i)", result.rcode);
3575 ret = -1;
3576 goto finish;
3577 }
3578 }
3579
3580finish:
3581 /* The explicit check is to quiet clang_analyzer */
3582 if (opened_fp) fclose(fp);
3583
3584 /*
3585 * Free any residual resources we loaded.
3586 */
3587 if (cc && (fr_dict_const_free(&cc->tmpl_rules.attr.dict_def, __FILE__) < 0)) {
3588 fr_perror("unit_test_attribute");
3589 ret = -1;
3590 }
3591
3592 fr_dict_global_ctx_set(config->dict_gctx); /* Switch back to the main dict ctx */
3594 talloc_free(cc);
3595
3596 return ret;
3597}
3598
3599static void usage(char const *name)
3600{
3601 INFO("usage: %s [options] (-|<filename>[:<lines>] [ <filename>[:<lines>]])", name);
3602 INFO("options:");
3603 INFO(" -d <raddb> Set user dictionary path (defaults to " RADDBDIR ").");
3604 INFO(" -D <dictdir> Set main dictionary path (defaults to " DICTDIR ").");
3605 INFO(" -x Debugging mode.");
3606 INFO(" -f Print features.");
3607 INFO(" -c Print commands.");
3608 INFO(" -h Print help text.");
3609 INFO(" -M Show talloc memory report.");
3610 INFO(" -p Allow xlat_purify");
3611 INFO(" -r <receipt_file> Create the <receipt_file> as a 'success' exit.");
3612 INFO(" -w <output_file> Write 'corrected' output to <output_file>.");
3613 INFO("Where <filename> is a file containing one or more commands and '-' indicates commands should be read from stdin.");
3614 INFO("Ranges of <lines> may be specified in the format <start>[-[<end>]][,]");
3615}
3616
3617static void features_print(CONF_SECTION *features)
3618{
3619 CONF_PAIR *cp;
3620
3621 INFO("features:");
3622 for (cp = cf_pair_find(features, CF_IDENT_ANY);
3623 cp;
3624 cp = cf_pair_find_next(features, cp, CF_IDENT_ANY)) {
3625 INFO(" %s %s", cf_pair_attr(cp), cf_pair_value(cp));
3626 }
3627}
3628
3629static void commands_print(void)
3630{
3631 size_t i;
3632
3633 INFO("commands:");
3634 for (i = 0; i < commands_len; i++) {
3635 INFO(" %s:", ((command_entry_t const *)commands[i].value)->usage);
3636 INFO(" %s.", ((command_entry_t const *)commands[i].value)->description);
3637 INFO("%s", "");
3638 }
3639}
3640
3641static int line_ranges_parse(TALLOC_CTX *ctx, fr_dlist_head_t *out, fr_sbuff_t *in)
3642{
3643 static bool tokens[UINT8_MAX + 1] = { [','] = true , ['-'] = true };
3644 uint32_t max = 0;
3647
3648 while (fr_sbuff_extend(in)) {
3649 fr_sbuff_adv_past_whitespace(in, SIZE_MAX, NULL);
3650
3651 MEM(lr = talloc_zero(ctx, command_line_range_t));
3653
3654 fr_sbuff_out(&err, &lr->start, in);
3655 if (err != FR_SBUFF_PARSE_OK) {
3656 ERROR("Invalid line start number");
3657 error:
3659 return -1;
3660 }
3661 if (max > lr->start) {
3662 ERROR("Out of order line numbers (%u > %u) not allowed", max, lr->start);
3663 goto error;
3664 } else {
3665 max = lr->start;
3666 }
3667 lr->end = lr->start; /* Default to a single line */
3668 fr_sbuff_adv_past_whitespace(in, SIZE_MAX, NULL);
3669
3670 again:
3671 if (!fr_sbuff_extend(in)) break;
3672 if (!fr_sbuff_is_in_charset(in, tokens)) {
3673 ERROR("Unexpected text \"%pV\"",
3675 goto error;
3676 }
3677
3678 fr_sbuff_switch(in, '\0') {
3679 /*
3680 * More ranges...
3681 */
3682 case ',':
3683 fr_sbuff_next(in);
3684 fr_sbuff_adv_past_whitespace(in, SIZE_MAX, NULL);
3685 continue;
3686
3687 /*
3688 * <start>-<end>
3689 */
3690 case '-':
3691 {
3692 fr_sbuff_next(in);
3693 fr_sbuff_adv_past_whitespace(in, SIZE_MAX, NULL);
3694
3695 /*
3696 * A bare '-' with no number means
3697 * run all remaining lines.
3698 */
3699 if (fr_sbuff_extend(in) == 0) {
3700 lr->end = UINT32_MAX;
3701 return 0;
3702 }
3703
3704 fr_sbuff_out(&err, &lr->end, in);
3705 if (err != FR_SBUFF_PARSE_OK) {
3706 ERROR("Invalid line end number");
3707 goto error;
3708 }
3709 if (lr->end < lr->start) {
3710 ERROR("Line end must be >= line start (%u < %u)", lr->end, lr->start);
3711 goto error;
3712 }
3713 if (max > lr->end) {
3714 ERROR("Out of order line numbers (%u > %u) not allowed", max, lr->end);
3715 goto error;
3716 } else {
3717 max = lr->end;
3718 }
3719 fr_sbuff_adv_past_whitespace(in, SIZE_MAX, NULL);
3720 }
3721 goto again;
3722 }
3723 }
3724
3725 return 0;
3726}
3727
3728/**
3729 *
3730 * @hidecallgraph
3731 */
3732int main(int argc, char *argv[])
3733{
3734 int c;
3735 char const *receipt_file = NULL;
3736 CONF_SECTION *cs;
3737 int ret = EXIT_SUCCESS;
3738 TALLOC_CTX *autofree;
3739 TALLOC_CTX *thread_ctx;
3740 bool exit_now = false;
3741
3743 .raddb_dir = RADDBDIR,
3744 .dict_dir = DICTDIR
3745 };
3746
3747 char const *name;
3748 bool do_features = false;
3749 bool do_commands = false;
3750 bool do_usage = false;
3751 bool allow_purify = false;
3752 xlat_t *xlat;
3753
3754 /*
3755 * Must be called first, so the handler is called last
3756 */
3758
3760 thread_ctx = talloc_new(autofree);
3761
3762#ifndef NDEBUG
3763 if (fr_fault_setup(autofree, getenv("PANIC_ACTION"), argv[0]) < 0) {
3764 fr_perror("unit_test_attribute");
3765 goto cleanup;
3766 }
3767#else
3769#endif
3770
3771 /*
3772 * Sync wallclock and cpu time so that we can find
3773 * uses of fr_time_[to|from]_* where
3774 * fr_unix_time_[to|from]_* should be used.
3775 *
3776 * If the wallclock/cpu offset is 0, then both sets
3777 * of macros produce the same result.
3778 */
3779 fr_time_start();
3780
3781 /*
3782 * Allocate a root config section so we can write
3783 * out features and versions.
3784 */
3785 MEM(cs = cf_section_alloc(autofree, NULL, "unit_test_attribute", NULL));
3786 MEM(config.features = cf_section_alloc(cs, cs, "feature", NULL));
3787 dependency_features_init(config.features); /* Add build time features to the config section */
3788
3789 name = argv[0];
3790
3792 default_log.fd = STDOUT_FILENO;
3793 default_log.print_level = false;
3794
3795 /*
3796 * Migration option - it's enabled by default in
3797 * src/lib/server/main_config.c, until we have time to
3798 * update all of the default configuration files and
3799 * tests.
3800 */
3801 xlat_func_bare_words = false;
3802
3803 while ((c = getopt(argc, argv, "cd:D:F:fxMhpr:S:w:")) != -1) switch (c) {
3804 case 'c':
3805 do_commands = true;
3806 break;
3807
3808 case 'd':
3809 config.raddb_dir = optarg;
3810 break;
3811
3812 case 'D':
3813 config.dict_dir = optarg;
3814 break;
3815
3816 case 'F':
3817 config.fuzzer_dir = optarg;
3818 break;
3819
3820 case 'f':
3821 do_features = true;
3822 break;
3823
3824 case 'x':
3825 fr_debug_lvl++;
3826 if (fr_debug_lvl > 2) default_log.print_level = true;
3827 break;
3828
3829 case 'M':
3830 talloc_enable_leak_report();
3831 break;
3832
3833 case 'r':
3834 receipt_file = optarg;
3835 break;
3836
3837 case 'p':
3838 allow_purify = true;
3839 break;
3840
3841 case 'S':
3842 fprintf(stderr, "Invalid option to -S\n");
3844
3845 case 'w':
3846 write_filename = optarg;
3847 break;
3848
3849 case 'h':
3850 default:
3851 do_usage = true; /* Just set a flag, so we can process extra -x args */
3852 break;
3853 }
3854 argc -= (optind - 1);
3855 argv += (optind - 1);
3856
3857 if (do_usage) usage(name);
3858 if (do_features) features_print(config.features);
3859 if (do_commands) commands_print();
3860 if (do_usage || do_features || do_commands) {
3861 ret = EXIT_SUCCESS;
3862 goto cleanup;
3863 }
3864
3865 if (receipt_file && (fr_unlink(receipt_file) < 0)) {
3866 fr_perror("unit_test_attribute");
3868 }
3869
3870 /*
3871 * Mismatch between the binary and the libraries it depends on
3872 */
3874 fr_perror("unit_test_attribute");
3876 }
3877
3878#ifdef WITH_TLS
3879 /*
3880 * OpenSSL can only be initialised once during the lifetime
3881 * of a process. Initialise it here so that we don't attempt
3882 * to unload and load it multiple times.
3883 */
3884 if (fr_openssl_init() < 0) {
3885 fr_perror("unit_test_attribute");
3887 }
3888#endif
3889
3890 modules_init(NULL);
3891
3892 dl_loader = dl_loader_init(autofree, NULL, false, false);
3893 if (!dl_loader) {
3894 fr_perror("unit_test_attribute");
3896 }
3897
3898 config.dict_gctx = fr_dict_global_ctx_init(NULL, true, config.dict_dir);
3899 if (!config.dict_gctx) {
3900 fr_perror("unit_test_attribute");
3902 }
3903
3905 fr_perror("unit_test_attribute");
3907 }
3908
3909 /*
3910 * Always needed so we can load the list attributes
3911 * otherwise the tmpl_tokenize code fails.
3912 */
3913 if (request_global_init() < 0) {
3914 fr_perror("unit_test_attribute");
3916 }
3917
3918 /*
3919 * Initialise the interpreter, registering operations.
3920 * Needed because some keywords also register xlats.
3921 */
3922 if (unlang_global_init() < 0) {
3923 fr_perror("unit_test_attribute");
3925 }
3926
3927 /*
3928 * Create a dummy event list
3929 */
3930 if (allow_purify) {
3931 el = fr_event_list_alloc(autofree, NULL, NULL);
3932 fr_assert(el != NULL);
3933
3934 /*
3935 * Simulate thread specific instantiation
3936 */
3938 if (xlat_thread_instantiate(thread_ctx, el) < 0) EXIT_WITH_FAILURE;
3939 }
3940
3941 unlang_thread_instantiate(thread_ctx);
3942
3943 xlat = xlat_func_register(NULL, "test", xlat_test, FR_TYPE_NULL);
3944 if (!xlat) {
3945 ERROR("Failed registering xlat");
3947 }
3949
3950 /*
3951 * And again WITHOUT arguments.
3952 */
3953 xlat = xlat_func_register(NULL, "test_no_args", xlat_test, FR_TYPE_NULL);
3954 if (!xlat) {
3955 ERROR("Failed registering xlat");
3957 }
3959
3960 /*
3961 * Disable hostname lookups, so we don't produce spurious DNS
3962 * queries, and there's no chance of spurious failures if
3963 * it takes a long time to get a response.
3964 */
3966
3967 /*
3968 * Read tests from stdin
3969 */
3970 if (argc < 2) {
3971 if (write_filename) {
3972 ERROR("Can't use '-w' with stdin");
3974 }
3975
3976 ret = process_file(&exit_now, autofree, &config, name, "-", NULL);
3977
3978 /*
3979 * ...or process each file in turn.
3980 */
3981 } else {
3982 int i;
3983
3984 if (write_filename) {
3985 if (argc != 2) { /* program name and file to write */
3986 ERROR("Can't use '-w' with multiple filenames");
3988 }
3989
3990 write_fp = fopen(write_filename, "w");
3991 if (!write_fp) {
3992 ERROR("Failed opening %s: %s", write_filename, strerror(errno));
3994 }
3995 }
3996
3997 /*
3998 * Loop over all input files.
3999 */
4000 for (i = 1; i < argc; i++) {
4001 char *dir = NULL, *file;
4002 fr_sbuff_t in = FR_SBUFF_IN(argv[i], strlen(argv[i]));
4004 L("/"),
4005 L(":")
4006 );
4007 fr_sbuff_marker_t file_start, file_end, dir_end;
4008 fr_dlist_head_t lines;
4009
4010 fr_sbuff_marker(&file_start, &in);
4011 fr_sbuff_marker(&file_end, &in);
4012 fr_sbuff_marker(&dir_end, &in);
4013 fr_sbuff_set(&file_end, fr_sbuff_end(&in));
4014
4015 fr_dlist_init(&lines, command_line_range_t, entry);
4016
4017 while (fr_sbuff_extend(&in)) {
4018 fr_sbuff_adv_until(&in, SIZE_MAX, &dir_sep, '\0');
4019
4020 fr_sbuff_switch(&in, '\0') {
4021 case '/':
4022 fr_sbuff_set(&dir_end, &in);
4023 fr_sbuff_advance(&in, 1);
4024 fr_sbuff_set(&file_start, &in);
4025 break;
4026
4027 case ':':
4028 fr_sbuff_set(&file_end, &in);
4029 fr_sbuff_advance(&in, 1);
4030 if (line_ranges_parse(autofree, &lines, &in) < 0) EXIT_WITH_FAILURE;
4031 break;
4032
4033 default:
4034 fr_sbuff_set(&file_end, &in);
4035 break;
4036 }
4037 }
4038
4040 fr_sbuff_current(&file_start), fr_sbuff_diff(&file_end, &file_start));
4041 if (fr_sbuff_used(&dir_end)) dir = talloc_bstrndup(autofree,
4043 fr_sbuff_used(&dir_end));
4044
4045 ret = process_file(&exit_now, autofree, &config, dir, file, &lines);
4046 talloc_free(dir);
4048 fr_dlist_talloc_free(&lines);
4049
4050 if ((ret != 0) || exit_now) break;
4051 }
4052
4053 if (write_fp) {
4054 fclose(write_fp);
4055 if (rename(write_filename, argv[1]) < 0) {
4056 ERROR("Failed renaming %s: %s", write_filename, strerror(errno));
4058 }
4059 }
4060 }
4061
4062 /*
4063 * Try really hard to free any allocated
4064 * memory, so we get clean talloc reports.
4065 */
4066cleanup:
4067 /*
4068 * Ensure all thread local memory is cleaned up
4069 * at the appropriate time. This emulates what's
4070 * done with worker/network threads in the
4071 * scheduler.
4072 */
4074
4075#ifdef WITH_TLS
4076 fr_openssl_free();
4077#endif
4078
4079 /*
4080 * dl_loader check needed as talloc_free
4081 * returns -1 on failure.
4082 */
4083 if (dl_loader && (talloc_free(dl_loader) < 0)) {
4084 fr_perror("unit_test_attribute - dl_loader - "); /* Print free order issues */
4086 }
4087 if (fr_dict_free(&config.dict, __FILE__) < 0) {
4088 fr_perror("unit_test_attribute");
4090 }
4091
4092 if (receipt_file && (ret == EXIT_SUCCESS) && (fr_touch(NULL, receipt_file, 0644, true, 0755) <= 0)) {
4093 fr_perror("unit_test_attribute");
4095 }
4096
4097 /*
4098 * Explicitly free the autofree context
4099 * to make errors less confusing.
4100 */
4101 if (talloc_free(autofree) < 0) {
4102 fr_perror("unit_test_attribute");
4104 }
4105
4106 /*
4107 * Ensure our atexit handlers run before any other
4108 * atexit handlers registered by third party libraries.
4109 */
4111
4112 return ret;
4113}
static int const char char buffer[256]
Definition acutest.h:576
int const char * file
Definition acutest.h:702
strcpy(log_entry->msg, buffer)
int fr_atexit_global_setup(void)
Setup the atexit handler, should be called at the start of a program's execution.
Definition atexit.c:160
int fr_atexit_global_trigger_all(void)
Cause all global free triggers to fire.
Definition atexit.c:286
#define fr_atexit_thread_trigger_all(...)
Definition atexit.h:233
ssize_t fr_base64_encode_nstd(fr_sbuff_t *out, fr_dbuff_t *in, bool add_padding, char const alphabet[static UINT8_MAX])
Base 64 encode binary data.
Definition base64.c:326
char const fr_base64_url_alphabet_encode[UINT8_MAX]
Definition base64.c:173
#define CMD_MAX_ARGV
Definition radmin.c:150
#define UNCONST(_type, _ptr)
Remove const qualification from a pointer.
Definition build.h:167
#define RCSID(id)
Definition build.h:485
#define L(_str)
Helper for initialising arrays of string literals.
Definition build.h:209
#define UNUSED
Definition build.h:317
#define NUM_ELEMENTS(_t)
Definition build.h:339
int fr_value_calc_nary_op(TALLOC_CTX *ctx, fr_value_box_t *dst, fr_type_t type, fr_token_t op, fr_value_box_t const *group)
Calculate DST = OP { A, B, C, ... }.
Definition calc.c:2269
int fr_value_calc_assignment_op(TALLOC_CTX *ctx, fr_value_box_t *dst, fr_token_t op, fr_value_box_t const *src)
Calculate DST OP SRC.
Definition calc.c:2420
int fr_value_calc_binary_op(TALLOC_CTX *ctx, fr_value_box_t *dst, fr_type_t hint, fr_value_box_t const *a, fr_token_t op, fr_value_box_t const *b)
Calculate DST = A OP B.
Definition calc.c:1924
Configuration AVP similar to a fr_pair_t.
Definition cf_priv.h:70
A section grouping multiple CONF_PAIR.
Definition cf_priv.h:101
CONF_PAIR * cf_pair_find_next(CONF_SECTION const *cs, CONF_PAIR const *prev, char const *attr)
Find a pair with a name matching attr, after specified pair.
Definition cf_util.c:1453
CONF_PAIR * cf_pair_find(CONF_SECTION const *cs, char const *attr)
Search for a CONF_PAIR with a specific name.
Definition cf_util.c:1439
char const * cf_pair_value(CONF_PAIR const *pair)
Return the value of a CONF_PAIR.
Definition cf_util.c:1594
char const * cf_pair_attr(CONF_PAIR const *pair)
Return the attr of a CONF_PAIR.
Definition cf_util.c:1578
#define cf_lineno_set(_ci, _lineno)
Definition cf_util.h:131
#define cf_section_alloc(_ctx, _parent, _name1, _name2)
Definition cf_util.h:140
#define cf_filename_set(_ci, _filename)
Definition cf_util.h:128
#define CF_IDENT_ANY
Definition cf_util.h:78
int fr_command_walk(fr_cmd_t *head, void **walk_ctx, void *ctx, fr_cmd_walk_t callback)
Walk over a command hierarchy.
Definition command.c:1019
void fr_command_debug(FILE *fp, fr_cmd_t *head)
Definition command.c:1602
int fr_command_add(TALLOC_CTX *talloc_ctx, fr_cmd_t **head, char const *name, void *ctx, fr_cmd_table_t const *table)
Add one command to the global command tree.
Definition command.c:725
int fr_command_tab_expand(TALLOC_CTX *ctx, fr_cmd_t *head, fr_cmd_info_t *info, int max_expansions, char const **expansions)
Get the commands && help at a particular level.
Definition command.c:1290
char const ** parents
Definition command.h:66
char const * help
help text
Definition command.h:55
int argc
current argument count
Definition command.h:39
fr_cmd_func_t func
function to process this command
Definition command.h:56
char const * syntax
Definition command.h:68
char const * syntax
e.g. "STRING"
Definition command.h:54
fr_value_box_t ** box
value_box version of commands.
Definition command.h:43
bool read_only
Definition command.h:58
char const * parent
e.g. "show module"
Definition command.h:52
fr_cmd_tab_t tab_expand
tab expand things in the syntax string
Definition command.h:57
int max_argc
maximum number of arguments
Definition command.h:40
char const * name
e.g. "stats"
Definition command.h:53
char const ** argv
text version of commands
Definition command.h:42
char const * name
Definition command.h:67
#define FR_DBUFF_TMP(_start, _len_or_end)
Creates a compound literal to pass into functions which accept a dbuff.
Definition dbuff.h:514
static void * fr_dcursor_current(fr_dcursor_t *cursor)
Return the item the cursor current points to.
Definition dcursor.h:337
void fr_disable_null_tracking_on_free(TALLOC_CTX *ctx)
Disable the null tracking context when a talloc chunk is freed.
Definition debug.c:1207
int fr_fault_setup(TALLOC_CTX *ctx, char const *cmd, char const *program)
Registers signal handlers to execute panic_action on fatal signal.
Definition debug.c:1242
#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:210
#define MEM(x)
Definition debug.h:36
void dependency_features_init(CONF_SECTION *cs)
Initialise core feature flags.
Definition dependency.c:184
static char const * spaces
Definition dependency.c:371
#define ERROR(fmt,...)
Definition dhcpclient.c:41
#define DEBUG(fmt,...)
Definition dhcpclient.c:39
static NEVER_RETURNS void usage(void)
Definition dhcpclient.c:114
fr_dict_gctx_t * fr_dict_global_ctx_init(TALLOC_CTX *ctx, bool free_at_exit, char const *dict_dir)
Initialise the global protocol hashes.
Definition dict_util.c:4399
int fr_dict_internal_afrom_file(fr_dict_t **out, char const *internal_name, char const *dependent)
(Re-)Initialize the special internal dictionary
int fr_dict_global_ctx_dir_set(char const *dict_dir)
Allow the default dict dir to be changed after initialisation.
Definition dict_util.c:4490
static fr_slen_t err
Definition dict.h:831
fr_dict_attr_t const * fr_dict_attr_by_name(fr_dict_attr_err_t *err, fr_dict_attr_t const *parent, char const *attr))
Locate a fr_dict_attr_t by its name.
Definition dict_util.c:3270
void fr_dict_debug(FILE *fp, fr_dict_t const *dict)
Definition dict_print.c:267
fr_slen_t fr_dict_attr_by_oid_substr(fr_dict_attr_err_t *err, fr_dict_attr_t const **out, fr_dict_attr_t const *parent, fr_sbuff_t *in, fr_sbuff_term_t const *tt))
Resolve an attribute using an OID string.
Definition dict_util.c:2331
int fr_dict_protocol_afrom_file(fr_dict_t **out, char const *proto_name, char const *proto_dir, char const *dependent)
(Re)-initialize a protocol dictionary
int fr_dict_str_to_argv(char *str, char **argv, int max_argc)
fr_dict_attr_t const * fr_dict_root(fr_dict_t const *dict)
Return the root attribute of a dictionary.
Definition dict_util.c:2407
void fr_dict_global_ctx_set(fr_dict_gctx_t const *gctx)
Set a new, active, global dictionary context.
Definition dict_util.c:4460
int fr_dict_free(fr_dict_t **dict, char const *dependent)
Decrement the reference count on a previously loaded dictionary.
Definition dict_util.c:4031
int fr_dict_const_free(fr_dict_t const **dict, char const *dependent)
Decrement the reference count on a previously loaded dictionary.
Definition dict_util.c:4015
fr_dict_t const * fr_dict_internal(void)
Definition dict_util.c:4617
int fr_dict_global_ctx_free(fr_dict_gctx_t const *gctx)
Explicitly free all data associated with a global dictionary context.
Definition dict_util.c:4476
int fr_dict_parse_str(fr_dict_t *dict, char *buf, fr_dict_attr_t const *parent)
int fr_dict_read(fr_dict_t *dict, char const *dict_dir, char const *filename)
Read supplementary attribute definitions into an existing dictionary.
fr_dict_attr_err_t
Errors returned by attribute lookup functions.
Definition dict.h:294
@ FR_DICT_ATTR_OK
No error.
Definition dict.h:295
static fr_slen_t in
Definition dict.h:831
Test enumeration values.
Definition dict_test.h:92
dl_loader_t * dl_loader_init(TALLOC_CTX *ctx, void *uctx, bool uctx_free, bool defer_symbol_init)
Initialise structures needed by the dynamic linker.
Definition dl.c:885
dl_t * dl_by_name(dl_loader_t *dl_loader, char const *name, void *uctx, bool uctx_free)
Search for a dl's shared object in various locations.
Definition dl.c:470
A dynamic loader.
Definition dl.c:81
void * handle
Handle returned by dlopen.
Definition dl.h:62
Module handle.
Definition dl.h:58
#define fr_dlist_init(_head, _type, _field)
Initialise the head structure of a doubly linked list.
Definition dlist.h:260
static void * fr_dlist_head(fr_dlist_head_t const *list_head)
Return the HEAD item of a list or NULL if the list is empty.
Definition dlist.h:486
static void fr_dlist_talloc_free(fr_dlist_head_t *head)
Free all items in a doubly linked list (with talloc)
Definition dlist.h:908
static bool fr_dlist_empty(fr_dlist_head_t const *list_head)
Check whether a list has any items.
Definition dlist.h:501
static int fr_dlist_insert_tail(fr_dlist_head_t *list_head, void *ptr)
Insert an item into the tail of a list.
Definition dlist.h:378
static void * fr_dlist_next(fr_dlist_head_t const *list_head, void const *ptr)
Get the next item in a list.
Definition dlist.h:555
Head of a doubly linked list.
Definition dlist.h:51
Entry in a doubly linked list.
Definition dlist.h:41
ssize_t fr_dns_label_from_value_box(size_t *need, uint8_t *buf, size_t buf_len, uint8_t *where, bool compression, fr_value_box_t const *value, fr_dns_labels_t *lb)
Encode a single value box of type string, serializing its contents to a dns label.
Definition dns.c:639
ssize_t fr_dns_label_to_value_box(TALLOC_CTX *ctx, fr_value_box_t *dst, uint8_t const *src, size_t len, uint8_t const *label, bool tainted, fr_dns_labels_t *lb)
Decode a fr_value_box_t from one DNS label.
Definition dns.c:1225
int fr_unlink(char const *filename)
Remove a regular file from the filesystem.
Definition file.c:367
ssize_t fr_touch(int *fd_out, char const *filename, mode_t mode, bool mkdir, mode_t dir_mode)
Create an empty file.
Definition file.c:323
char * fr_realpath(TALLOC_CTX *ctx, char const *path, ssize_t len)
Convenience wrapper around realpath.
Definition file.c:284
bool fr_hostname_lookups
hostname -> IP lookups?
Definition inet.c:52
bool fr_reverse_lookups
IP -> hostname lookups?
Definition inet.c:51
int unlang_global_init(void)
Definition base.c:133
talloc_free(reap)
fr_event_list_t * fr_event_list_alloc(TALLOC_CTX *ctx, fr_event_status_cb_t status, void *status_uctx)
Initialise a new event list.
Definition event.c:2526
Stores all information relating to an event list.
Definition event.c:380
int fr_debug_lvl
Definition log.c:43
FILE * fr_log_fp
Definition log.c:42
fr_log_t default_log
Definition log.c:291
@ L_DST_STDOUT
Log to stdout.
Definition log.h:78
fr_type_t
@ FR_TYPE_STRING
String of printable characters.
@ FR_TYPE_MAX
Number of defined data types.
@ FR_TYPE_NULL
Invalid (uninitialised) attribute type.
@ FR_TYPE_DATE
Unix time stamp, always has value >2^31.
@ FR_TYPE_GROUP
A grouping of other attributes.
unsigned int uint32_t
long int ssize_t
unsigned char uint8_t
ssize_t fr_slen_t
unsigned long int size_t
#define UINT8_MAX
fr_sbuff_parse_error_t
@ FR_SBUFF_PARSE_OK
No error.
static uint8_t depth(fr_minmax_heap_index_t i)
Definition minmax_heap.c:83
static bool is_whitespace(char const *value)
Check whether the string is all whitespace.
Definition misc.h:86
#define fr_skip_whitespace(_p)
Skip whitespace ('\t', '\n', '\v', '\f', '\r', ' ')
Definition misc.h:59
fr_pair_t * fr_pair_afrom_da(TALLOC_CTX *ctx, fr_dict_attr_t const *da)
Dynamically allocate a new attribute and assign a fr_dict_attr_t.
Definition pair.c:285
void fr_pair_list_init(fr_pair_list_t *list)
Initialise a pair list header.
Definition pair.c:46
fr_slen_t fr_pair_list_afrom_substr(fr_pair_parse_t const *root, fr_pair_parse_t *relative, fr_sbuff_t *in)
Parse a fr_pair_list_t from a substring.
int fr_pair_list_afrom_file(TALLOC_CTX *ctx, fr_dict_t const *dict, fr_pair_list_t *out, FILE *fp, bool *pfiledone)
Read valuepairs from the fp up to End-Of-File.
struct fr_pair_parse_s fr_pair_parse_t
TALLOC_CTX * ctx
Definition pair_legacy.h:43
#define is_truncated(_ret, _max)
Definition print.h:48
static const conf_parser_t config[]
Definition base.c:183
void * fr_proto_next_encodable(fr_dlist_head_t *list, void *current, void *uctx)
Implements the default iterator to encode pairs belonging to a specific dictionary that are not inter...
Definition proto.c:100
static fr_internal_encode_ctx_t encode_ctx
#define fr_assert(_expr)
Definition rad_assert.h:38
static TALLOC_CTX * autofree
static bool done
Definition radclient.c:80
#define DEBUG2(fmt,...)
Definition radclient.h:43
#define INFO(fmt,...)
Definition radict.c:54
static bool cleanup
Definition radsniff.c:60
fr_dict_attr_t const * request_attr_request
Definition request.c:45
int request_global_init(void)
Definition request.c:722
static char const * name
fr_slen_t fr_sbuff_out_bool(bool *out, fr_sbuff_t *in)
See if the string contains a truth value.
Definition sbuff.c:1109
size_t fr_sbuff_adv_until(fr_sbuff_t *sbuff, size_t len, fr_sbuff_term_t const *tt, char escape_chr)
Wind position until we hit a character in the terminal set.
Definition sbuff.c:1852
bool fr_sbuff_next_if_char(fr_sbuff_t *sbuff, char c)
Return true if the current char matches, and if it does, advance.
Definition sbuff.c:2088
#define fr_sbuff_start(_sbuff_or_marker)
#define fr_sbuff_out_by_longest_prefix(_match_len, _out, _table, _sbuff, _def)
#define fr_sbuff_set(_dst, _src)
#define fr_sbuff_diff(_a, _b)
#define FR_SBUFF_IN(_start, _len_or_end)
#define fr_sbuff_adv_past_whitespace(_sbuff, _len, _tt)
#define fr_sbuff_current(_sbuff_or_marker)
#define FR_SBUFF_TERMS(...)
Initialise a terminal structure with a list of sorted strings.
Definition sbuff.h:192
#define fr_sbuff_extend(_sbuff_or_marker)
#define FR_SBUFF_ERROR_RETURN(_sbuff_or_marker)
#define fr_sbuff_end(_sbuff_or_marker)
#define fr_sbuff_advance(_sbuff_or_marker, _len)
#define fr_sbuff_out(_err, _out, _in)
#define fr_sbuff_switch(_sbuff_or_marker, _eob)
#define fr_sbuff_remaining(_sbuff_or_marker)
#define FR_SBUFF_OUT(_start, _len_or_end)
#define fr_sbuff_used(_sbuff_or_marker)
Set of terminal elements.
tmpl_xlat_rules_t xlat
Rules/data for parsing xlats.
Definition tmpl.h:341
bool new_functions
new function syntax
Definition tmpl.h:331
fr_slen_t tmpl_request_ref_list_afrom_substr(TALLOC_CTX *ctx, tmpl_attr_error_t *err, FR_DLIST_HEAD(tmpl_request_list) _CONST **out, fr_sbuff_t *in)
tmpl_attr_rules_t attr
Rules/data for parsing attribute references.
Definition tmpl.h:340
struct tmpl_rules_s tmpl_rules_t
Definition tmpl.h:238
fr_slen_t tmpl_attr_list_from_substr(fr_dict_attr_t const **da_p, fr_sbuff_t *in)
Parse one a single list reference.
fr_event_list_t * runtime_el
The eventlist to use for runtime instantiation of xlats.
Definition tmpl.h:329
Optional arguments passed to vp_tmpl functions.
Definition tmpl.h:337
void fr_sha1_init(fr_sha1_ctx *context)
Definition sha1.c:93
void fr_sha1_final(uint8_t digest[static SHA1_DIGEST_LENGTH], fr_sha1_ctx *context)
Definition sha1.c:141
void fr_sha1_update(fr_sha1_ctx *context, uint8_t const *in, size_t len)
Definition sha1.c:105
#define SHA1_DIGEST_LENGTH
Definition sha1.h:29
static char buff[sizeof("18446744073709551615")+3]
Definition size_tests.c:41
PUBLIC int snprintf(char *string, size_t length, char *format, va_alist)
Definition snprintf.c:689
void modules_init(char const *lib_dir)
Perform global initialisation for modules.
Definition module.c:1912
fr_aka_sim_id_type_t type
fr_pair_t * vp
size_t strlcpy(char *dst, char const *src, size_t siz)
Definition strlcpy.c:34
fr_log_dst_t dst
Log destination.
Definition log.h:97
int fd
File descriptor to write messages to.
Definition log.h:112
bool print_level
sometimes we don't want log levels printed
Definition log.h:106
fr_dict_attr_t const * list_def
Default list to use with unqualified attribute reference.
Definition tmpl.h:300
uint8_t allow_unresolved
Allow attributes that look valid but were not found in the dictionaries.
Definition tmpl.h:309
uint8_t allow_foreign
Allow arguments not found in dict_def.
Definition tmpl.h:317
fr_dict_t const * dict_def
Default dictionary to use with unqualified attribute references.
Definition tmpl.h:278
uint8_t allow_unknown
Allow unknown attributes i.e.
Definition tmpl.h:306
Stores an attribute, a value and various bits of other data.
Definition pair.h:68
char const * fr_syserror(int num)
Guaranteed to be thread-safe version of strerror.
Definition syserror.c:243
#define fr_table_value_by_longest_prefix(_match_len, _table, _name, _name_len, _def)
Find the longest string match using a sorted or ordered table.
Definition table.h:732
#define fr_table_str_by_value(_table, _number, _def)
Convert an integer to a string.
Definition table.h:772
An element in a lexicographically sorted array of name to num mappings.
Definition table.h:49
An element in a lexicographically sorted array of name to ptr mappings.
Definition table.h:65
char * talloc_bstrndup(TALLOC_CTX *ctx, char const *in, size_t inlen)
Binary safe strndup function.
Definition talloc.c:564
#define talloc_autofree_context
The original function is deprecated, so replace it with our version.
Definition talloc.h:51
fr_test_point_ctx_alloc_t test_ctx
Allocate a test ctx for the encoder.
Definition test_point.h:85
fr_tp_proto_decode_t func
Decoder for proto layer.
Definition test_point.h:68
fr_test_point_ctx_alloc_t test_ctx
Allocate a test ctx for the encoder.
Definition test_point.h:93
fr_dcursor_iter_t next_encodable
Iterator to use to select attributes to encode.
Definition test_point.h:95
fr_tp_proto_encode_t func
Encoder for proto layer.
Definition test_point.h:76
fr_test_point_ctx_alloc_t test_ctx
Allocate a test ctx for the encoder.
Definition test_point.h:75
fr_pair_decode_t func
Decoder for pairs.
Definition test_point.h:86
fr_pair_encode_t func
Encoder for pairs.
Definition test_point.h:94
fr_test_point_ctx_alloc_t test_ctx
Allocate a test ctx for the encoder.
Definition test_point.h:67
Entry point for pair decoders.
Definition test_point.h:84
Entry point for pair encoders.
Definition test_point.h:92
Entry point for protocol decoders.
Definition test_point.h:66
Entry point for protocol encoders.
Definition test_point.h:74
int fr_time_start(void)
Initialize the local time.
Definition time.c:150
const bool fr_assignment_op[T_TOKEN_LAST]
Definition token.c:168
fr_table_num_ordered_t const fr_tokens_table[]
Definition token.c:33
enum fr_token fr_token_t
@ T_AND
Definition token.h:55
@ T_INVALID
Definition token.h:39
@ T_SUB
Definition token.h:52
@ T_XOR
Definition token.h:58
@ T_DIV
Definition token.h:54
@ T_MOD
Definition token.h:60
@ T_ADD
Definition token.h:51
@ T_DOUBLE_QUOTED_STRING
Definition token.h:121
@ T_MUL
Definition token.h:53
@ T_OR
Definition token.h:56
close(uq->fd)
static int command_func(UNUSED FILE *fp, UNUSED FILE *fp_err, UNUSED void *ctx, UNUSED fr_cmd_info_t const *info)
#define RETURN_OK(_len)
int fuzzer_dir
File descriptor pointing to a a directory to write fuzzer output.
#define POISONED_BUFFER_START(_p)
static size_t commands_len
static int dump_fuzzer_data(int fd_dir, char const *text, uint8_t const *data, size_t data_len)
static size_t command_touch(command_result_t *result, UNUSED command_file_ctx_t *cc, UNUSED char *data, UNUSED size_t data_used, char *in, UNUSED size_t inlen)
Touch a file to indicate a test completed.
uint32_t start
Start of line range.
static ssize_t encode_data_string(char *buffer, uint8_t *output, size_t outlen)
static dl_loader_t * dl_loader
#define BUFF_POISON_START
static ssize_t encode_extended(char *buffer, uint8_t *output, size_t outlen)
int main(int argc, char *argv[])
static size_t command_decode_dns_label(command_result_t *result, command_file_ctx_t *cc, char *data, UNUSED size_t data_used, char *in, size_t inlen)
static size_t command_decode_proto(command_result_t *result, command_file_ctx_t *cc, char *data, size_t data_used, char *in, size_t inlen)
static void unload_proto_library(void)
static size_t command_xlat_normalise(command_result_t *result, command_file_ctx_t *cc, char *data, UNUSED size_t data_used, char *in, UNUSED size_t inlen)
Parse an reprint and xlat expansion.
uint32_t test_count
How many tests we've executed in this file.
static int decode_vendor(char *buffer, char **endptr)
static size_t command_proto_dictionary(command_result_t *result, command_file_ctx_t *cc, UNUSED char *data, UNUSED size_t data_used, char *in, UNUSED size_t inlen)
static void commands_print(void)
#define POISONED_BUFFER_END(_p)
static char proto_name_prev[128]
TALLOC_CTX * tmp_ctx
Temporary context to hold buffers in this.
static size_t hex_print(char *out, size_t outlen, uint8_t const *in, size_t inlen)
Print hex string to buffer.
static size_t command_exit(command_result_t *result, UNUSED command_file_ctx_t *cc, UNUSED char *data, UNUSED size_t data_used, char *in, UNUSED size_t inlen)
Exit gracefully with the specified code.
static ssize_t hex_to_bin(uint8_t *out, size_t outlen, char *in, size_t inlen)
#define RETURN_OK_WITH_ERROR()
static size_t command_xlat_purify(command_result_t *result, command_file_ctx_t *cc, char *data, UNUSED size_t data_used, char *in, UNUSED size_t inlen)
Parse, purify, and reprint an xlat expression expansion.
char const * filename
Current file we're operating on.
static void mismatch_print(command_file_ctx_t *cc, char const *command, char *expected, size_t expected_len, char *got, size_t got_len, bool print_diff)
static size_t command_tmpl_rules(command_result_t *result, command_file_ctx_t *cc, UNUSED char *data, UNUSED size_t data_used, char *in, size_t inlen)
static size_t command_fuzzer_out(command_result_t *result, command_file_ctx_t *cc, UNUSED char *data, UNUSED size_t data_used, char *in, UNUSED size_t inlen)
Enable fuzzer output.
static ssize_t encode_rfc(char *buffer, uint8_t *output, size_t outlen)
static dl_t * dl
static void command_ctx_reset(command_file_ctx_t *cc, TALLOC_CTX *ctx)
static int dictionary_load_common(command_result_t *result, command_file_ctx_t *cc, char const *in, char const *default_subdir)
Common dictionary load function.
static size_t command_include(command_result_t *result, command_file_ctx_t *cc, UNUSED char *data, UNUSED size_t data_used, char *in, UNUSED size_t inlen)
Execute another test file.
static size_t command_proto_dictionary_root(command_result_t *result, command_file_ctx_t *cc, UNUSED char *data, UNUSED size_t data_used, char *in, UNUSED size_t inlen)
static ssize_t command_tmpl_rule_request_def(TALLOC_CTX *ctx, tmpl_rules_t *rules, fr_sbuff_t *value)
static ssize_t command_tmpl_rule_allow_unresolved(UNUSED TALLOC_CTX *ctx, tmpl_rules_t *rules, fr_sbuff_t *value)
uint32_t lineno
Current line number.
ssize_t last_ret
Last return value.
#define ASAN_POISON_MEMORY_REGION(_start, _end)
static void features_print(CONF_SECTION *features)
static size_t command_returned(command_result_t *result, command_file_ctx_t *cc, char *data, UNUSED size_t data_used, UNUSED char *in, UNUSED size_t inlen)
static xlat_arg_parser_t const xlat_test_args[]
static int decode_attr(char *buffer, char **endptr)
static fr_dict_t * dictionary_current(command_file_ctx_t *cc)
static size_t command_encode_pair(command_result_t *result, command_file_ctx_t *cc, char *data, UNUSED size_t data_used, char *in, size_t inlen)
fr_dlist_t entry
Entry in the dlist.
uint8_t * buffer_end
Where the non-poisoned region of the buffer ends.
static fr_table_ptr_sorted_t commands[]
#define RETURN_NOOP(_len)
TALLOC_CTX * tmp_ctx
Talloc context for test points.
static size_t command_radmin_tab(command_result_t *result, command_file_ctx_t *cc, char *data, UNUSED size_t data_used, char *in, UNUSED size_t inlen)
static size_t command_calc_nary(command_result_t *result, command_file_ctx_t *cc, char *data, UNUSED size_t data_used, char *in, size_t inlen)
Perform calculations on multi-valued ops.
static size_t command_dictionary_dump(command_result_t *result, command_file_ctx_t *cc, UNUSED char *data, size_t data_used, UNUSED char *in, UNUSED size_t inlen)
Print the currently loaded dictionary.
fr_dict_gctx_t const * test_gctx
Dictionary context for test dictionaries.
static size_t command_proto(command_result_t *result, command_file_ctx_t *cc, UNUSED char *data, UNUSED size_t data_used, char *in, UNUSED size_t inlen)
Dynamically load a protocol library.
static fr_cmd_t * command_head
static size_t command_write(command_result_t *result, command_file_ctx_t *cc, char *data, size_t data_used, char *in, size_t inlen)
char * path
Current path we're operating in.
static int poisoned_buffer_allocate(TALLOC_CTX *ctx, uint8_t **buff, size_t size)
Allocate a special buffer with poisoned memory regions at the start and end.
#define DEFAULT_BUFFER_SIZE
Default buffer size for a command_file_ctx_t.
static FILE * write_fp
static size_t strerror_concat(char *out, size_t outlen)
Concatenate error stack.
static size_t command_match_regex(command_result_t *result, command_file_ctx_t *cc, char *data, size_t data_used, char *in, size_t inlen)
Compare the data buffer against an expected expression.
static size_t command_encode_raw(command_result_t *result, command_file_ctx_t *cc, char *data, UNUSED size_t data_used, char *in, UNUSED size_t inlen)
Encode a RADIUS attribute writing the result to the data buffer as space separated hexits.
#define RETURN_PARSE_ERROR(_offset)
static ssize_t command_tmpl_rule_allow_unknown(UNUSED TALLOC_CTX *ctx, tmpl_rules_t *rules, fr_sbuff_t *value)
command_config_t const * config
static int _command_ctx_free(command_file_ctx_t *cc)
#define COMMAND_OUTPUT_MAX
static size_t command_allow_unresolved(command_result_t *result, command_file_ctx_t *cc, UNUSED char *data, UNUSED size_t data_used, char *in, size_t inlen)
Determine if unresolved attributes are allowed.
static size_t command_read_file(command_result_t *result, command_file_ctx_t *cc, char *data, UNUSED size_t data_used, char *in, UNUSED size_t inlen)
Parse a list of pairs.
static int process_file(bool *exit_now, TALLOC_CTX *ctx, command_config_t const *config, const char *root_dir, char const *filename, fr_dlist_head_t *lines)
static ssize_t encode_tlv(char *buffer, uint8_t *output, size_t outlen)
#define BUFF_POISON_END
static int command_walk(UNUSED void *ctx, fr_cmd_walk_info_t *info)
static size_t command_condition_normalise(command_result_t *result, command_file_ctx_t *cc, char *data, UNUSED size_t data_used, char *in, size_t inlen)
Parse and reprint a condition.
static size_t command_count(command_result_t *result, command_file_ctx_t *cc, char *data, UNUSED size_t data_used, UNUSED char *in, UNUSED size_t inlen)
static fr_table_num_sorted_t command_rcode_table[]
static size_t command_max_buffer_size(command_result_t *result, command_file_ctx_t *cc, char *data, UNUSED size_t data_used, char *in, UNUSED size_t inlen)
Artificially limit the maximum packet size.
static const fr_token_t token2op[UINT8_MAX+1]
tmpl_rules_t tmpl_rules
To pass to parsing functions.
size_t(* command_func_t)(command_result_t *result, command_file_ctx_t *cc, char *data, size_t data_used, char *in, size_t inlen)
Command to execute.
#define RETURN_MISMATCH(_len)
uint32_t end
End of line range.
static char const hextab[]
static command_file_ctx_t * command_ctx_alloc(TALLOC_CTX *ctx, command_config_t const *config, char const *path, char const *filename)
static size_t command_encode_proto(command_result_t *result, command_file_ctx_t *cc, char *data, UNUSED size_t data_used, char *in, size_t inlen)
static size_t command_load_dictionary(command_result_t *result, command_file_ctx_t *cc, UNUSED char *data, UNUSED size_t data_used, char *in, UNUSED size_t inlen)
static ssize_t load_test_point_by_command(void **symbol, char *command, char const *dflt_symbol)
static void command_print(void)
#define RETURN_EXIT(_ret)
static fr_event_list_t * el
static size_t command_decode_pair(command_result_t *result, command_file_ctx_t *cc, char *data, size_t data_used, char *in, size_t inlen)
static size_t command_xlat_expr(command_result_t *result, command_file_ctx_t *cc, char *data, UNUSED size_t data_used, char *in, UNUSED size_t inlen)
Parse and reprint an xlat expression expansion.
char const * fuzzer_dir
Where to write fuzzer files.
#define EXIT_WITH_FAILURE
static size_t command_pair(command_result_t *result, command_file_ctx_t *cc, char *data, UNUSED size_t data_used, char *in, size_t inlen)
Parse an print an attribute pair or pair list.
CONF_SECTION * features
Enabled features.
static size_t command_calc(command_result_t *result, command_file_ctx_t *cc, char *data, UNUSED size_t data_used, char *in, size_t inlen)
Perform calculations.
static size_t command_migrate(command_result_t *result, command_file_ctx_t *cc, UNUSED char *data, UNUSED size_t data_used, char *in, UNUSED size_t inlen)
Set or clear migration flags.
static size_t command_dictionary_attribute_parse(command_result_t *result, command_file_ctx_t *cc, char *data, UNUSED size_t data_used, char *in, UNUSED size_t inlen)
Parse a dictionary attribute, writing "ok" to the data buffer is everything was ok.
static size_t command_xlat_argv(command_result_t *result, command_file_ctx_t *cc, char *data, UNUSED size_t data_used, char *in, UNUSED size_t inlen)
Parse an reprint and xlat argv expansion.
#define CLEAR_TEST_POINT(_cc)
static ssize_t encode_data(char *p, uint8_t *output, size_t outlen)
#define RETURN_COMMAND_ERROR()
static size_t command_eof(UNUSED command_result_t *result, UNUSED command_file_ctx_t *cc, UNUSED char *data, UNUSED size_t data_used, UNUSED char *in, UNUSED size_t inlen)
Command eof.
static size_t command_match(command_result_t *result, command_file_ctx_t *cc, char *data, size_t data_used, char *in, size_t inlen)
Compare the data buffer to an expected value.
#define ASAN_UNPOISON_MEMORY_REGION(_start, _end)
#define RETURN_SKIP_FILE()
static ssize_t command_tmpl_rule_attr_parent(UNUSED TALLOC_CTX *ctx, tmpl_rules_t *rules, fr_sbuff_t *value)
command_rcode_t rcode
fr_dict_gctx_t const * dict_gctx
Dictionary gctx to "reset" to.
static ssize_t command_tmpl_rule_list_def(UNUSED TALLOC_CTX *ctx, tmpl_rules_t *rules, fr_sbuff_t *value)
static ssize_t command_tmpl_rule_allow_foreign(UNUSED TALLOC_CTX *ctx, tmpl_rules_t *rules, fr_sbuff_t *value)
static size_t parse_typed_value(command_result_t *result, fr_value_box_t *box, char const **out, char const *in, size_t inlen)
static ssize_t encode_vsa(char *buffer, uint8_t *output, size_t outlen)
size_t process_line(command_result_t *result, command_file_ctx_t *cc, char *data, size_t data_used, char *in, size_t inlen)
static ssize_t load_proto_library(char const *proto_name)
@ RESULT_MISMATCH
Fatal error - Result didn't match what we expected.
@ RESULT_COMMAND_ERROR
Fatal error - Command operation error.
@ RESULT_NOOP
Not an error - Did nothing...
@ RESULT_OK
Not an error - Result as expected.
@ RESULT_EXIT
Stop processing files and exit.
@ RESULT_SKIP_FILE
Not an error - Skip the rest of this file, or until we reach an "eof" command.
@ RESULT_PARSE_ERROR
Fatal error - Command syntax error.
static int line_ranges_parse(TALLOC_CTX *ctx, fr_dlist_head_t *out, fr_sbuff_t *in)
static size_t command_cd(command_result_t *result, command_file_ctx_t *cc, char *data, UNUSED size_t data_used, char *in, size_t inlen)
Change the working directory.
static size_t command_comment(UNUSED command_result_t *result, UNUSED command_file_ctx_t *cc, UNUSED char *data, UNUSED size_t data_used, UNUSED char *in, UNUSED size_t inlen)
Placeholder function for comments.
uint8_t * buffer_start
Where the non-poisoned region of the buffer starts.
static ssize_t encode_data_tlv(char *buffer, char **endptr, uint8_t *output, size_t outlen)
static size_t command_radmin_add(command_result_t *result, command_file_ctx_t *cc, char *data, size_t UNUSED data_used, char *in, UNUSED size_t inlen)
static size_t command_need_feature(command_result_t *result, command_file_ctx_t *cc, UNUSED char *data, UNUSED size_t data_used, char *in, UNUSED size_t inlen)
Skip the test file if we're missing a particular feature.
static ssize_t encode_long_extended(char *buffer, uint8_t *output, size_t outlen)
ssize_t(* command_tmpl_rule_func)(TALLOC_CTX *ctx, tmpl_rules_t *rules, fr_sbuff_t *value)
Callback for a tmpl rule parser.
static size_t command_clear(command_result_t *result, UNUSED command_file_ctx_t *cc, char *data, size_t UNUSED data_used, UNUSED char *in, UNUSED size_t inlen)
fr_dict_t * test_internal_dict
Internal dictionary of test_gctx.
static ssize_t encode_evs(char *buffer, uint8_t *output, size_t outlen)
static size_t command_value_box_normalise(command_result_t *result, command_file_ctx_t *cc, char *data, UNUSED size_t data_used, char *in, UNUSED size_t inlen)
static xlat_action_t xlat_test(UNUSED TALLOC_CTX *ctx, UNUSED fr_dcursor_t *out, UNUSED xlat_ctx_t const *xctx, UNUSED request_t *request, UNUSED fr_value_box_list_t *in)
fr_dict_t * dict
Dictionary to "reset" to.
bool xlat_func_bare_words
static char const * write_filename
static xlat_arg_parser_t const xlat_test_no_args[]
uint8_t * buffer
Temporary resizable buffer we use for holding non-string data.
static size_t command_no(command_result_t *result, command_file_ctx_t *cc, char *data, size_t data_used, char *in, size_t inlen)
Negate the result of a match command or any command which returns "OK".
static size_t command_rcode_table_len
static size_t command_encode_dns_label(command_result_t *result, command_file_ctx_t *cc, char *data, UNUSED size_t data_used, char *in, UNUSED size_t inlen)
Configuration parameters passed to command functions.
int unlang_thread_instantiate(TALLOC_CTX *ctx)
Create thread-specific data structures for unlang.
Definition compile.c:5076
fr_slen_t xlat_print(fr_sbuff_t *in, xlat_exp_head_t const *node, fr_sbuff_escape_rules_t const *e_rules)
Reconstitute an xlat expression from its constituent nodes.
void xlat_debug_head(xlat_exp_head_t const *head)
bool required
Argument must be present, and non-empty.
Definition xlat.h:148
fr_slen_t xlat_tokenize(TALLOC_CTX *ctx, xlat_exp_head_t **head, fr_sbuff_t *in, fr_sbuff_parse_rules_t const *p_rules, tmpl_rules_t const *t_rules)
Tokenize an xlat expansion.
static fr_slen_t head
Definition xlat.h:418
int xlat_instantiate(void)
Call instantiation functions for all registered, "permanent" xlats.
Definition xlat_inst.c:513
fr_slen_t xlat_tokenize_argv(TALLOC_CTX *ctx, xlat_exp_head_t **head, fr_sbuff_t *in, xlat_t const *xlat, fr_sbuff_parse_rules_t const *p_rules, tmpl_rules_t const *t_rules, bool spaces))
Tokenize an xlat expansion into a series of XLAT_TYPE_CHILD arguments.
int xlat_thread_instantiate(TALLOC_CTX *ctx, fr_event_list_t *el)
Create thread specific instance tree and create thread instances.
Definition xlat_inst.c:444
int xlat_purify(xlat_exp_head_t *head, unlang_interpret_t *intp)
Purify an xlat.
int xlat_flatten_to_argv(TALLOC_CTX *ctx, xlat_exp_head_t ***argv, xlat_exp_head_t *head)
Turn am xlat list into an argv[] array, and nuke the input list.
Definition xlat_eval.c:1559
#define XLAT_ARG_PARSER_TERMINATOR
Definition xlat.h:168
xlat_action_t
Definition xlat.h:37
@ XLAT_ACTION_DONE
We're done evaluating this level of nesting.
Definition xlat.h:43
fr_slen_t xlat_tokenize_condition(TALLOC_CTX *ctx, xlat_exp_head_t **head, fr_sbuff_t *in, fr_sbuff_parse_rules_t const *p_rules, tmpl_rules_t const *t_rules)
Definition xlat_expr.c:3236
fr_slen_t xlat_tokenize_expression(TALLOC_CTX *ctx, xlat_exp_head_t **head, fr_sbuff_t *in, fr_sbuff_parse_rules_t const *p_rules, tmpl_rules_t const *t_rules)
Definition xlat_expr.c:3208
Definition for a single argument consumend by an xlat function.
Definition xlat.h:147
#define FR_DICTIONARY_INTERNAL_DIR
Definition conf.h:8
#define fr_pair_dcursor_iter_init(_cursor, _list, _iter, _uctx)
Initialises a special dcursor with callbacks that will maintain the attr sublists correctly.
Definition pair.h:569
void fr_pair_list_free(fr_pair_list_t *list)
Free memory used by a valuepair list.
#define PAIR_LIST_VERIFY(_x)
Definition pair.h:194
ssize_t fr_pair_list_print(fr_sbuff_t *out, fr_dict_attr_t const *parent, fr_pair_list_t const *list)
Print a pair list.
Definition pair_print.c:240
static fr_slen_t parent
Definition pair.h:845
void fr_perror(char const *fmt,...)
Print the current error to stderr with a prefix.
Definition strerror.c:733
char const * fr_strerror_peek(void)
Get the last library error.
Definition strerror.c:627
void fr_strerror_clear(void)
Clears all pending messages from the talloc pools.
Definition strerror.c:577
char const * fr_strerror_pop(void)
Pop the last library error.
Definition strerror.c:681
#define fr_strerror_printf(_fmt,...)
Log to thread local error buffer.
Definition strerror.h:64
#define fr_strerror_printf_push(_fmt,...)
Add a message to an existing stack of messages at the tail.
Definition strerror.h:84
#define fr_strerror_const_push(_msg)
Definition strerror.h:227
#define fr_strerror_printf_push_head(_fmt,...)
Add a message to an existing stack of messages at the head.
Definition strerror.h:104
#define fr_strerror_const(_msg)
Definition strerror.h:223
fr_table_num_ordered_t const fr_type_table[]
Map data types to names representing those types.
Definition types.c:31
#define fr_type_is_null(_x)
Definition types.h:326
int fr_check_lib_magic(uint64_t magic)
Check if the application linking to the library has the correct magic number.
Definition version.c:40
#define RADIUSD_MAGIC_NUMBER
Definition version.h:81
fr_sbuff_escape_rules_t fr_value_escape_double
Definition value.c:350
ssize_t fr_value_box_print(fr_sbuff_t *out, fr_value_box_t const *data, fr_sbuff_escape_rules_t const *e_rules)
Print one boxed value to a string.
Definition value.c:5283
int8_t fr_value_box_cmp(fr_value_box_t const *a, fr_value_box_t const *b)
Compare two values.
Definition value.c:676
fr_sbuff_parse_rules_t const value_parse_rules_bareword_unquoted
Default formatting rules.
Definition value.c:480
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:3591
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:5246
ssize_t fr_value_box_print_quoted(fr_sbuff_t *out, fr_value_box_t const *data, fr_token_t quote)
Print one boxed value to a string with quotes (where needed)
Definition value.c:5471
fr_sbuff_parse_rules_t const value_parse_rules_double_quoted
Definition value.c:547
void fr_value_box_clear(fr_value_box_t *data)
Clear/free any existing value and metadata.
Definition value.c:3742
fr_sbuff_unescape_rules_t fr_value_unescape_double
Definition value.c:266
ssize_t fr_value_box_from_substr(TALLOC_CTX *ctx, fr_value_box_t *dst, fr_type_t dst_type, fr_dict_attr_t const *dst_enumv, fr_sbuff_t *in, fr_sbuff_parse_rules_t const *rules)
Convert string value to a fr_value_box_t type.
Definition value.c:4686
#define fr_value_box_mark_safe_for(_box, _safe_for)
Definition value.h:1063
static fr_slen_t data
Definition value.h:1274
#define fr_box_strvalue_len(_val, _len)
Definition value.h:297
static size_t char fr_sbuff_t size_t inlen
Definition value.h:1012
int nonnull(2, 5))
#define fr_value_box_init(_vb, _type, _enumv, _tainted)
Initialise a fr_value_box_t.
Definition value.h:598
static size_t char ** out
Definition value.h:1012
#define FR_VALUE_BOX_SAFE_FOR_ANY
Definition value.h:166
An xlat calling ctx.
Definition xlat_ctx.h:49
int xlat_func_args_set(xlat_t *x, xlat_arg_parser_t const args[])
Register the arguments of an xlat.
Definition xlat_func.c:365
xlat_t * xlat_func_register(TALLOC_CTX *ctx, char const *name, xlat_func_t func, fr_type_t return_type)
Register an xlat function.
Definition xlat_func.c:218