31RCSID(
"$Id: ebda4639845d2a6caf8e935bfa3295a350f4c33e $")
33#include <freeradius-devel/server/cf_file.h>
34#include <freeradius-devel/server/cf_priv.h>
35#include <freeradius-devel/server/log.h>
36#include <freeradius-devel/server/tmpl.h>
37#include <freeradius-devel/server/util.h>
38#include <freeradius-devel/server/virtual_servers.h>
39#include <freeradius-devel/util/debug.h>
40#include <freeradius-devel/util/file.h>
41#include <freeradius-devel/util/misc.h>
42#include <freeradius-devel/util/perm.h>
43#include <freeradius-devel/util/md5.h>
60#include <freeradius-devel/server/main_config.h>
143 "Protocol dictionary must be NULL not %s",
157#define RULES_VERIFY(_cs, _rules) if (cf_tmpl_rules_verify(_cs, _rules) < 0) return NULL
169 char *output,
size_t outsize,
173 char const *end, *next, *ptr;
177 if (soft_fail) *soft_fail =
false;
200 while (*ptr && (!end || (ptr < end))) {
204 if ((*ptr ==
'$') && (ptr[1] ==
'{')) {
212 ERROR(
"%s[%d]: Failed parsing variable expansion '%s''",
224 if ((
size_t) len >=
sizeof(
name)) {
225 ERROR(
"%s[%d]: Reference string is too large",
230 memcpy(
name, ptr, len - 3);
231 name[len - 3] =
'\0';
239 if (
name[0] ==
'/') {
240 int fd = open(
name, O_RDONLY);
244 ERROR(
"%s[%d]: Reference \"${%s}\" failed opening file - %s", cf, lineno,
name,
fr_syserror(errno));
248 if (fstat(fd, &buf) < 0) {
251 ERROR(
"%s[%d]: Reference \"${%s}\" failed reading file - %s", cf, lineno,
name,
fr_syserror(errno));
255 if (buf.st_size >= ((output + outsize) - p)) {
257 ERROR(
"%s[%d]: Reference \"${%s}\" file is too large (%zu >= %zu)", cf, lineno,
name,
258 (
size_t) buf.st_size, (
size_t) ((output + outsize) - p));
262 len = read(fd, p, (output + outsize) - p);
263 if (len < 0)
goto fail_fd;
272 q = strchr(
name,
':');
279 if (soft_fail) *soft_fail =
true;
280 ERROR(
"%s[%d]: Reference \"${%s}\" not found", cf, lineno,
name);
292 ERROR(
"%s[%d]: Can only reference properties of sections", cf, lineno);
306 ERROR(
"%s[%d]: Invalid property '%s'", cf, lineno, q);
325 if (soft_fail) *soft_fail =
true;
327 ERROR(
"%s[%d]: Reference \"%s\" points to a variable which has not been expanded.",
333 ERROR(
"%s[%d]: Reference \"%s\" has no value",
338 if (p + strlen(cp->
value) >= output + outsize) {
339 ERROR(
"%s[%d]: Reference \"%s\" is too long",
357 ERROR(
"%s[%d]: Cannot reference different item in same section", cf, lineno);
370 ERROR(
"%s[%d]: Failed copying reference %s", cf, lineno,
name);
380 ERROR(
"%s[%d]: Reference \"%s\" type is invalid", cf, lineno, input);
383 }
else if (strncmp(ptr,
"$ENV{", 5) == 0) {
393 next = strchr(ptr,
'}');
396 ERROR(
"%s[%d]: Environment variable expansion missing }",
405 if ((
size_t) (next - ptr) >=
sizeof(
name)) {
406 ERROR(
"%s[%d]: Environment variable name is too large",
411 memcpy(
name, ptr, next - ptr);
412 name[next - ptr] =
'\0';
424 if (p + strlen(env) >= output + outsize) {
425 ERROR(
"%s[%d]: Reference \"%s\" is too long",
442 if (p >= (output + outsize)) {
443 ERROR(
"%s[%d]: Reference \"%s\" is too long",
459 if (!cs || !
template)
return true;
485 if (!cp2)
return false;
517 if (!subcs2)
return false;
539 return CMP(a->
buf.st_ino, b->buf.st_ino);
571 if (
fr_dirfd(&my_fd, &r, filename) < 0) {
572 ERROR(
"Failed to open directory containing %s", filename);
576 if (fstatat(my_fd, r, &my_file.
buf, 0) < 0)
goto error;
590 if (my_fd != AT_FDCWD)
close(my_fd);
593 fd = openat(my_fd, r, O_RDONLY, 0);
594 fp = (fd < 0) ? NULL : fdopen(fd,
"r");
595 if (my_fd != AT_FDCWD)
close(my_fd);
597 fp = fopen(filename,
"r");
598 if (fp) fd = fileno(fp);
601 DEBUG2(
"including configuration file %s", filename);
611 file->filename = talloc_strdup(
file, filename);
613 file->from_dir = from_dir;
615 if (fstat(fd, &
file->buf) == 0) {
617 if ((
file->buf.st_mode & S_IWOTH) != 0) {
618 ERROR(
"Configuration file %s is globally writable. "
619 "Refusing to start due to insecure configuration.", filename);
661 if (!tree)
return false;
664 if (!
file)
return false;
666 file->filename = talloc_strdup(
file, filename);
670 if (stat(filename, &
file->buf) < 0) {
673 cf_log_perr(cp,
"Unable to open file \"%s\"", filename);
675 if (fd >= 0)
close(fd);
689 uid_t euid = (uid_t)-1;
690 gid_t egid = (gid_t)-1;
694 cf_log_perr(cp,
"Failed setting effective group ID (%d) for file check: %s",
701 cf_log_perr(cp,
"Failed setting effective user ID (%d) for file check: %s",
706 fd = open(filename, O_RDONLY);
708 if (seteuid(euid) < 0) {
709 cf_log_perr(cp,
"Failed restoring effective user ID (%d) after file check: %s",
715 if (setegid(egid) < 0) {
716 cf_log_perr(cp,
"Failed restoring effective group ID (%d) after file check: %s",
723 if (fd < 0)
goto perm_error;
724 if (fstat(fd, &
file->buf) < 0)
goto perm_error;
729 if ((
file->buf.st_mode & S_IWOTH) != 0) {
730 cf_log_perr(cp,
"Configuration file %s is globally writable. "
731 "Refusing to start due to insecure configuration.", filename);
768 if (!
value)
return -1;
785 char *
buffer,
size_t bufsize)
792 p = strrchr(
buffer, FR_DIR_SEP);
793 if (!p)
return filename;
798 dirsize = (p -
buffer) + 1;
800 if ((dirsize + strlen(filename)) >= bufsize) {
804 strlcpy(p + 1, filename, bufsize - dirsize);
814 char const *filename,
int lineno)
816 char const *ptr = *ptr_p;
834 ERROR(
"%s[%d]: %s", filename, lineno, text);
842 if ((
size_t) slen >= buflen) {
843 ERROR(
"%s[%d]: Name is too long", filename, lineno);
851 out, outlen, NULL)) {
887 ERROR(
"%s[%d]: Parse error: Invalid location for $INCLUDE",
898 while (*ptr && !isspace((
uint8_t) *ptr)) ptr++;
916 if (*
value ==
'$') relative =
false;
920 if (!
value)
return -1;
922 if (!FR_DIR_IS_RELATIVE(
value)) relative =
false;
932 if (strchr(
value,
'*') != 0) {
939 memset(frame, 0,
sizeof(*frame));
941 frame->
type = CF_STACK_GLOB;
942 frame->required = required;
952 if (glob(
value, GLOB_ERR | GLOB_NOESCAPE, NULL, &frame->glob) < 0) {
962 if (frame->glob.gl_pathc == 0) {
983 if (stat(
value, &statbuf) < 0) {
1000 memset(frame, 0,
sizeof(*frame));
1021 struct stat stat_buf;
1035 dir = opendir(directory);
1037 ERROR(
"%s[%d]: Error reading directory %s: %s",
1052 if (fstat(my_fd, &stat_buf) < 0) {
1058 if ((stat_buf.st_mode & S_IWOTH) != 0) {
1059 ERROR(
"%s[%d]: Directory %s is globally writable. Refusing to start due to "
1060 "insecure configuration", frame->
filename, frame->
lineno, directory);
1076 .
type = CF_STACK_DIR,
1077 .directory = directory,
1091 while ((dp = readdir(dir)) != NULL) {
1094 if (dp->d_name[0] ==
'.')
continue;
1099 for (p = dp->d_name; *p !=
'\0'; p++) {
1104 (*p ==
'.'))
continue;
1107 if (*p !=
'\0')
continue;
1110 frame->directory, dp->d_name);
1112 if (stat(
stack->buff[1], &stat_buf) != 0) {
1113 ERROR(
"%s[%d]: Failed checking file %s: %s",
1114 (frame - 1)->filename, (frame - 1)->lineno,
1119 if (S_ISDIR(stat_buf.st_mode)) {
1120 WARN(
"%s[%d]: Ignoring directory %s",
1121 (frame - 1)->filename, (frame - 1)->lineno,
1135 ERROR(
"%s[%d]: Error including %s: No support for directories!",
1151 if (token !=
T_EOL) {
1157 ERROR(
"%s[%d]: Internal sanity check error in template reference", frame->
filename, frame->
lineno);
1171 parent->template = templatecs;
1179 ERROR(
"%s[%d]: Cannot find template \"%s\", as no 'templates' section exists.",
1186 ERROR(
"%s[%d]: No such template \"%s\" in the 'templates' section.",
1217 char quote, end_quote;
1218 char const *p = start;
1223 if (end && ((start + 4) > end)) {
1228 if ((*p !=
'%') && (*p !=
'$')) {
1230 return -(p - start);
1234 if ((*p !=
'{') && (*p !=
'(')) {
1240 while (isalnum((
int) *q) || (*q ==
'.') || (*q ==
'_') || (*q ==
'-')) {
1249 return -(p - start);
1260 while ((end && (p < end)) || (*p >=
' ')) {
1267 if (*p == end_quote) {
1270 if (!
depth)
return p - start;
1278 if ((p[0] ==
'$') || (p[0] ==
'%')) {
1279 if (end && (p + 2) >= end)
break;
1281 if ((p[1] ==
'{') || ((p[0] ==
'$') && (p[1] ==
'('))) {
1285 if (slen <= 0)
return -(p - start) + slen;
1301 if ((*p ==
'"') || (*p ==
'\'') || (*p ==
'`')) {
1317 if (end && ((p + 2) >= end))
break;
1322 if (p[1] <
' ')
break;
1330 return -(p - start);
1367 char const *p = start;
1368 bool was_regex =
false;
1372 if (eol) *eol =
false;
1377 while ((end && (p < end)) || *p) {
1403 return -(p - start);
1415 if ((*p ==
'$') || (*p ==
'%')) {
1416 if (end && ((p + 2) >= end)) {
1418 return -(p - start);
1421 if ((p[1] ==
'{') || ((p[0] ==
'$') && (p[1] ==
'('))) {
1425 if (slen <= 0)
return -(p - start) + slen;
1442 if ((*p ==
'"') || (*p ==
'\'') || (*p ==
'`') || (was_regex && (*p ==
'/'))) {
1456 if ((p[0] ==
'=') || (p[0] ==
'!')) {
1457 if (end && ((p + 2) >= end)) {
1459 return -(p - start);
1479 if (*p <
' ')
break;
1494 if (end && ((p + 2) >= end))
break;
1499 if (p[1] <
' ')
break;
1506 if (eol) *eol = (
depth > 0);
1508 if (terminal[(
uint8_t) *p])
return p - start;
1511 return -(p - start);
1520 char const *ptr =
stack->ptr;
1539 .allow_unresolved =
true,
1540 .allow_unknown =
true
1576 if (slen > 0)
break;
1593 p = (
uint8_t const *) ptr + (-slen);
1599 if (*p && (*p <
' ')) {
1600 while ((*p ==
'\r') || (*p ==
'\n')) {
1642 cf_log_err(cs,
"Expected '{' instead of %s", ptr);
1653 buff[2][slen] =
'\0';
1658 buff[2][slen] =
'\0';
1684 char const *
value = NULL;
1687 char const *ptr =
stack->ptr;
1704 ERROR(
"%s[%d]: Invalid syntax for 'map' - module name must not be a quoted string",
1727 ERROR(
"%s[%d]: Expecting string expansions in 'map' definition",
1733 ERROR(
"%s[%d]: Expecting section start brace '{' in 'map' definition",
1746 ERROR(
"%s[%d]: Failed allocating memory for section",
1756 css->
argv = talloc_array(css,
char const *, 1);
1771 char const *mod = NULL;
1774 char const *ptr =
stack->ptr;
1823 ERROR(
"%s[%d]: The second argument to 'subrequest' must be an attribute reference",
1843 ERROR(
"%s[%d]: The third argument to 'subrequest' must be an attribute reference",
1850 ERROR(
"%s[%d]: Expecting section start brace '{' in 'subrequest' definition",
1862 ERROR(
"%s[%d]: Failed allocating memory for section",
1874 css->
argv = talloc_array(css,
char const *, values);
1877 for (i = 0; i < values; i++) {
1894 char const *ptr =
stack->ptr;
1918 while (isalpha((
uint8_t) *ptr)) ptr++;
1922 ERROR(
"%s[%d]: Invalid syntax for 'catch' - unknown rcode '%s'",
1927 if ((*ptr !=
'{') && !isspace((
uint8_t) *ptr)) {
1928 ERROR(
"%s[%d]: Invalid syntax for 'catch' - unexpected text at '%s'",
1934 name2 = talloc_strndup(NULL, p, len);
1939 ERROR(
"%s[%d]: Invalid syntax for 'catch' - too many arguments at'%s'",
1944 argv[argc++] = talloc_strndup(name2, p, len);
1950 ERROR(
"%s[%d]: Failed allocating memory for section",
1963 css->
argv = talloc_array(css,
char const *, argc + 1);
1967 for (i = 0; i < argc; i++) {
1972 css->
argv[argc] = NULL;
1986 if (!ptr) ptr =
stack->ptr;
2005 char const *ptr = *ptr_p;
2020 (void)
parse_error(
stack, type_ptr,
"Unknown or invalid variable type in 'foreach'");
2032 (void)
parse_error(
stack, ptr2,
"Invalid variable name for key in 'foreach'");
2057 char const *ptr =
stack->ptr, *ptr2, *type_ptr;
2063 ERROR(
"%s[%d]: Failed allocating memory for section",
2103 cf_log_warn(css,
"Using deprecated syntax. Please use new the new 'foreach' syntax.");
2127 if (*ptr ==
'(')
goto alloc_argc_2;
2142 css->
argv = talloc_array(css,
char const *, css->
argc);
2164 (void)
parse_error(
stack, type_ptr,
"Invalid data type for 'key' variable");
2173 (void)
parse_error(
stack, ptr,
"Expected (...) after 'foreach' variable definition");
2177 goto parse_expression;
2181 css->
argv = talloc_array(css,
char const *, css->
argc);
2239 char *
buff,
char const *filename,
int lineno)
2252 char const *expanded;
2258 }
else if (!soft_fail) {
2300 char const *ptr =
stack->ptr;
2311 while (isalpha(*ptr)) ptr++;
2314 ERROR(
"%s[%d]: Missing ')' in cast",
2322 ERROR(
"%s[%d]: Unknown data type '%.*s' in cast",
2328 ERROR(
"%s[%d]: Invalid data type '%.*s' in cast",
2339 ERROR(
"%s[%d]: Failed allocating memory for section",
2372 css->
argv = talloc_array(css,
char const *, css->
argc);
2401 fr_token_t name1_token, name2_token, value_token, op_token;
2404 char const *ptr =
stack->ptr;
2462 switch (
parent->unlang) {
2468 if (name1_token ==
T_EOL)
return 0;
2514 ci = process(
stack);
2519 parent->allow_locals =
false;
2534 if (!isalnum((
int) *ptr))
goto check_for_eol;
2546 parent->allow_locals =
false;
2570 return parse_error(
stack, ptr2,
"Invalid data type for local variable. Must be 'tlv' or else a non-structrul type");
2604 if (*ptr !=
'{')
goto alloc_pair;
2616 if (!*ptr || (*ptr ==
'#') || (*ptr ==
',') || (*ptr ==
';') || (*ptr ==
'}')) {
2624 parent->allow_locals =
false;
2646 switch (
parent->unlang) {
2653 if (*ptr ==
'=')
goto operator;
2665 return parse_error(
stack, ptr2,
"Unexpected operator, was expecting a configuration section. Is there a missing '}' somewhere?");
2668 return parse_error(
stack, ptr2,
"Invalid second name for configuration section");
2677 return parse_error(
stack, ptr2,
"Unexpected quoted string after section name");
2708 if (!((*ptr ==
'"') || (*ptr ==
'`') || (*ptr ==
'\'') || ((*ptr ==
'&') && (ptr[1] !=
'=')) ||
2730 parent->allow_locals =
false;
2734 ERROR(
"%s[%d]: Failed allocating memory for section",
2751 switch (
parent->unlang) {
2753 if (!
parent->item.parent) {
2760 (strcmp(css->
name1,
"update") == 0)) {
2784 if ((strcmp(css->
name1,
"accounting") == 0) ||
2785 (strcmp(css->
name1,
"add") == 0) ||
2786 (strcmp(css->
name1,
"authenticate") == 0) ||
2787 (strcmp(css->
name1,
"clear") == 0) ||
2788 (strcmp(css->
name1,
"deny") == 0) ||
2789 (strcmp(css->
name1,
"error") == 0) ||
2790 (strcmp(css->
name1,
"load") == 0) ||
2791 (strcmp(css->
name1,
"new") == 0) ||
2792 (strcmp(css->
name1,
"recv") == 0) ||
2793 (strcmp(css->
name1,
"send") == 0) ||
2794 (strcmp(css->
name1,
"store") == 0) ||
2795 (strcmp(css->
name1,
"establish") == 0) ||
2796 (strcmp(css->
name1,
"verify") == 0)) {
2805 if (strcmp(css->
name1,
"dictionary") == 0) {
2814 if (strcmp(css->
name1,
"listen") == 0) {
2823 if ((strcmp(css->
name1,
"group") == 0) ||
2824 (strcmp(css->
name1,
"load-balance") == 0) ||
2825 (strcmp(css->
name1,
"redundant") == 0) ||
2826 (strcmp(css->
name1,
"redundant-load-balance") == 0)) {
2876 if (strcmp(css->
name1,
"update") == 0) {
2902 switch (name2_token) {
2931 op_token = name2_token;
2935 return parse_error(
stack, ptr2,
"Syntax error, the input should be an assignment operator");
2941 if (!*ptr || (*ptr ==
'#') || (*ptr ==
',') || (*ptr ==
';')) {
2958 return parse_error(
stack, ptr,
"Invalid location for nested attribute assignment");
2999 if ((*ptr ==
'(') || (*ptr ==
'%')) {
3009 parent->allow_locals =
false;
3041 return parse_error(
stack, ptr + slen,
"Expression is unfinished at end of line");
3047 memcpy(
buff[2], ptr, slen);
3048 buff[2][slen] =
'\0';
3064 if ((*ptr ==
',') || (*ptr ==
';')) ptr++;
3068 ((*ptr ==
'`') || (*ptr ==
'%') || (*ptr ==
'('))) {
3074 return parse_error(
stack, ptr,
"Invalid value for assignment in configuration file");
3089 parent->allow_locals =
false;
3103 if ((*ptr ==
';') || (*ptr ==
',')) {
3122 if (*ptr && (*ptr !=
'#')) {
3123 return parse_error(
stack, ptr,
"Unexpected text after configuration item");
3156 memset(frame, 0,
sizeof(*frame));
3198 bool at_eof, has_spaces;
3210 at_eof = (fgets(
stack->fill,
stack->bufsize - (
stack->fill -
stack->buff[0]), frame->fp) == NULL);
3221 len = strlen(
stack->fill);
3235 if (ptr >
stack->fill) {
3236 memmove(
stack->fill, ptr, len - (ptr -
stack->fill));
3237 len -= (ptr -
stack->fill);
3246 if (at_eof)
return 0;
3248 ptr =
stack->buff[0];
3251 if (!*ptr || (*ptr ==
'#'))
goto read_more;
3253 }
else if (at_eof || (len == 0)) {
3262 ((
stack->fill[len - 1] ==
'\n') || (
stack->fill[len - 1] ==
'\r'))) {
3264 stack->fill[len] =
'\0';
3267 if ((len > 0) && (
stack->fill[len - 1] ==
'\\')) {
3271 if (!has_spaces && (len > 2) && (
stack->fill[len - 2] ==
'"')) {
3275 stack->fill[len - 1] =
'\0';
3276 stack->fill += len - 1;
3277 goto read_continuation;
3292 if (!*ptr || (*ptr ==
'#'))
goto read_more;
3313 switch (frame->
type) {
3316 if (frame->gl_current == frame->glob.gl_pathc) {
3317 globfree(&frame->glob);
3340 if (rcode == 0)
goto do_frame;
3341 if (rcode < 0)
return -1;
3372 if (rcode < 0)
return -1;
3393 if (rcode < 0)
return -1;
3394 if (rcode == 0)
break;
3400 ptr =
stack->buff[0];
3418 if (rcode < 0)
return -1;
3419 if (rcode == 0)
continue;
3443 if (!*ptr || (*ptr ==
'#'))
break;
3449 if (rcode < 0)
return -1;
3451 }
while (rcode == 1);
3460 ERROR(
"%s[%d]: EOF reached without closing brace for section %s starting at line %d",
3472 if (
stack->depth > 0) {
3484 while (
stack->depth >= 0) {
3485 switch (frame->
type) {
3487 if (frame->fp) fclose(frame->fp);
3499 globfree(&frame->glob);
3526 p = strrchr(cp->
value, FR_DIR_SEP);
3540 stack.buff = talloc_array(cs,
char *, 4);
3541 for (i = 0; i < 4; i++)
MEM(
stack.buff[i] = talloc_array(
stack.buff,
char, 8192));
3544 stack.bufsize = 8192;
3547 memset(frame, 0,
sizeof(*frame));
3566 cf_log_err(cs,
"Parsing config items failed");
3620 if (c) fprintf(fp,
"%c", c);
3623 fwrite(
buffer, outlen, 1, fp);
3625 if (c) fprintf(fp,
"%c", c);
3632 fprintf(fp,
"%s\n", cp->
attr);
3647 if (!fp || !cs)
return -1;
3670 fprintf(fp,
"(%s)",
buffer);
3692 if (!ci->filename || (ci->filename[0] ==
'<'))
break;
3720 if (!ptr || (!parent_cs && !outer_cs))
return NULL;
3754 }
else if (strchr(p,
'.') != NULL) {
3755 if (!parent_cs)
return NULL;
3764 if (!r && !q)
break;
3766 if (r && q > r) q = NULL;
3767 if (q && q < r) r = NULL;
3773 q = strchr(r + 1,
']');
3774 if (!q)
return NULL;
3780 if (q[1] && q[1] !=
'.')
return NULL;
3793 if (!next)
return NULL;
3794 return &(next->
item);
3812 if (!*p)
return NULL;
3827 if (next)
return &(next->
item);
3832 if ((p ==
name) && (parent_cs != NULL) && (cs != parent_cs)) {
static int const char char buffer[256]
strcpy(log_entry->msg, buffer)
#define UNCONST(_type, _ptr)
Remove const qualification from a pointer.
#define L(_str)
Helper for initialising arrays of string literals.
#define FALL_THROUGH
clang 10 doesn't recognised the FALL-THROUGH comment anymore
#define CMP_RETURN(_a, _b, _field)
Return if the comparison is not 0 (is unequal)
#define CMP(_a, _b)
Same as CMP_PREFER_SMALLER use when you don't really care about ordering, you just want an ordering.
CONF_SECTION * current
sub-section we're reading
static bool cf_template_merge(CONF_SECTION *cs, CONF_SECTION const *template)
static int parse_input(cf_stack_t *stack)
char * fill
where we start filling the buffer from
void cf_section_set_unlang(CONF_SECTION *cs)
static int unlang_keywords_len
static int frame_readdir(cf_stack_t *stack)
static ssize_t fr_skip_condition(char const *start, char const *end, bool const terminal[static UINT8_MAX+1], bool *eol)
Skip a conditional expression.
static CONF_ITEM * process_map(cf_stack_t *stack)
static CONF_ITEM * process_foreach(cf_stack_t *stack)
static int add_pair(CONF_SECTION *parent, char const *attr, char const *value, fr_token_t name1_token, fr_token_t op_token, fr_token_t value_token, char *buff, char const *filename, int lineno)
#define RULES_VERIFY(_cs, _rules)
static int parse_type_name(cf_stack_t *stack, char const **ptr_p, char const *type_ptr, fr_type_t *type_p)
static void cf_stack_cleanup(cf_stack_t *stack)
static int cf_tmpl_rules_verify(CONF_SECTION *cs, tmpl_rules_t const *rules)
char const * cf_expand_variables(char const *cf, int lineno, CONF_SECTION *outer_cs, char *output, size_t outsize, char const *input, ssize_t inlen, bool *soft_fail)
static ssize_t fr_skip_xlat(char const *start, char const *end)
Skip an xlat expression.
static int cf_file_open(CONF_SECTION *cs, char const *filename, bool from_dir, FILE **fp_p)
static fr_md5_ctx_t * cf_md5_ctx
static int8_t filename_cmp(void const *one, void const *two)
int cf_section_write(FILE *fp, CONF_SECTION *cs, int depth)
bool cf_file_check(CONF_PAIR *cp, bool check_perms)
Do some checks on the file as an "input" file.
int lineno
line in that filename
int cf_file_read(CONF_SECTION *cs, char const *filename)
static const bool terminal_end_section[UINT8_MAX+1]
static size_t conf_property_name_len
static fr_table_num_sorted_t const conf_property_name[]
int cf_section_pass2(CONF_SECTION *cs)
bool from_dir
this file was read from $include foo/
static ssize_t cf_string_write(FILE *fp, char const *string, size_t len, fr_token_t t)
static char const parse_tabs[]
static int cf_file_include(cf_stack_t *stack)
static uid_t conf_check_uid
static gid_t conf_check_gid
CONF_ITEM *(* cf_process_func_t)(cf_stack_t *)
static int cf_get_token(CONF_SECTION *parent, char const **ptr_p, fr_token_t *token, char *buffer, size_t buflen, char const *filename, int lineno)
static int8_t _inode_cmp(void const *one, void const *two)
static int cf_file_fill(cf_stack_t *stack)
char const * ptr
current parse pointer
CONF_ITEM * cf_reference_item(CONF_SECTION const *parent_cs, CONF_SECTION const *outer_cs, char const *ptr)
static CONF_ITEM * process_subrequest(cf_stack_t *stack)
void cf_file_check_user(uid_t uid, gid_t gid)
Set the euid/egid used when performing file checks.
enum conf_property CONF_PROPERTY
static fr_table_ptr_sorted_t unlang_keywords[]
char ** buff
buffers for reading / parsing
CONF_SECTION * parent
which started this file
static int process_template(cf_stack_t *stack)
size_t bufsize
size of the buffers
static int cf_pair_write(FILE *fp, CONF_PAIR *cp)
void cf_md5_final(uint8_t *digest)
static int process_include(cf_stack_t *stack, CONF_SECTION *parent, char const *ptr, bool required, bool relative)
static CONF_ITEM * process_if(cf_stack_t *stack)
static void cf_md5_update(char const *p)
void cf_file_free(CONF_SECTION *cs)
static char const * cf_local_file(char const *base, char const *filename, char *buffer, size_t bufsize)
static CONF_ITEM * process_catch(cf_stack_t *stack)
static const bool terminal_end_line[UINT8_MAX+1]
char const * filename
filename we're reading
static CONF_ITEM * process_switch(cf_stack_t *stack)
static int parse_error(cf_stack_t *stack, char const *ptr, char const *message)
cf_parse_t on_read
Function to call as the item is being read, just after it has been allocated and initialized.
Defines a CONF_PAIR to C data type mapping.
CONF_SECTION * cs
CONF_SECTION associated with the file.
CONF_ITEM item
Common set of fields.
CONF_ITEM * parent
Parent.
fr_token_t name2_quote
The type of quoting around name2.
char const * name2
Second name token. Given foo bar {} would be bar.
bool allow_locals
allow local variables
int argc
number of additional arguments
char const * attr
Attribute name.
fr_token_t rhs_quote
Value Quoting style T_(DOUBLE|SINGLE|BACK)_QUOTE_STRING or T_BARE_WORD.
char const * value
Attribute value.
#define cf_item_foreach(_ci, _iter)
Iterate over the contents of a list.
char const * name1
First name token. Given foo bar {} would be foo.
@ CF_UNLANG_MODULES
this section is in "modules", allow unlang 2 down
@ CF_UNLANG_NONE
no unlang
@ CF_UNLANG_CAN_HAVE_UPDATE
can have "update"
@ CF_UNLANG_ALLOW
allow unlang in this section
@ CF_UNLANG_POLICY
this section is a policy, allow unlang 2 down
@ CF_UNLANG_ASSIGNMENT
only assignments inside of map / update
@ CF_UNLANG_EDIT
only edit commands
@ CF_UNLANG_DICTIONARY
only local variable definitions
@ CF_UNLANG_SERVER
this section is a virtual server, allow unlang 2 down
fr_token_t op
Operator e.g. =, :=.
CONF_ITEM item
Common set of fields.
bool pass2
do expansion in pass2.
char const * filename
The file the config item was parsed from.
struct stat buf
stat about the file
char const * filename
name of the file
bool referenced
Was this item referenced in the config?
char const ** argv
additional arguments
fr_token_t lhs_quote
Name quoting style T_(DOUBLE|SINGLE|BACK)_QUOTE_STRING or T_BARE_WORD.
int lineno
The line number the config item began on.
CONF_ITEM_TYPE type
Whether the config item is a config_pair, conf_section or cf_data.
Internal data that is associated with a configuration section.
Common header for all CONF_* types.
Configuration AVP similar to a fr_pair_t.
A section grouping multiple CONF_PAIR.
CONF_PAIR * cf_pair_dup(CONF_SECTION *parent, CONF_PAIR *cp, bool copy_meta)
Duplicate a CONF_PAIR.
char const * cf_section_name2(CONF_SECTION const *cs)
Return the second identifier of a CONF_SECTION.
void * cf_data_value(CONF_DATA const *cd)
Return the user assigned value of CONF_DATA.
CONF_ITEM * cf_section_to_item(CONF_SECTION const *cs)
Cast a CONF_SECTION to a CONF_ITEM.
CONF_PAIR * cf_pair_alloc(CONF_SECTION *parent, char const *attr, char const *value, fr_token_t op, fr_token_t lhs_quote, fr_token_t rhs_quote)
Allocate a CONF_PAIR.
char const * cf_section_name1(CONF_SECTION const *cs)
Return the second identifier of a CONF_SECTION.
CONF_SECTION * cf_section_find(CONF_SECTION const *cs, char const *name1, char const *name2)
Find a CONF_SECTION with name1 and optionally name2.
CONF_SECTION * cf_item_to_section(CONF_ITEM const *ci)
Cast a CONF_ITEM to a CONF_SECTION.
CONF_PAIR * cf_pair_find(CONF_SECTION const *cs, char const *attr)
Search for a CONF_PAIR with a specific name.
bool cf_item_is_section(CONF_ITEM const *ci)
Determine if CONF_ITEM is a CONF_SECTION.
CONF_SECTION * cf_section_dup(TALLOC_CTX *ctx, CONF_SECTION *parent, CONF_SECTION const *cs, char const *name1, char const *name2, bool copy_meta)
Duplicate a configuration section.
CONF_PAIR * cf_item_to_pair(CONF_ITEM const *ci)
Cast a CONF_ITEM to a CONF_PAIR.
char const * cf_pair_value(CONF_PAIR const *pair)
Return the value of a CONF_PAIR.
CONF_ITEM * cf_pair_to_item(CONF_PAIR const *cp)
Cast a CONF_PAIR to a CONF_ITEM.
#define cf_log_err(_cf, _fmt,...)
#define cf_data_add(_cf, _data, _name, _free)
#define cf_data_find(_cf, _type, _name)
#define cf_lineno_set(_ci, _lineno)
#define cf_canonicalize_error(_ci, _slen, _msg, _str)
#define cf_log_perr(_cf, _fmt,...)
#define cf_section_find_parent(_cf, _name1, _name2)
#define cf_section_alloc(_ctx, _parent, _name1, _name2)
#define CF_TO_ITEM(_cf)
Auto cast from the input type to CONF_ITEM (which is the base type)
#define cf_filename_set(_ci, _filename)
#define cf_log_warn(_cf, _fmt,...)
#define cf_log_debug(_cf, _fmt,...)
#define fr_cond_assert_msg(_x, _fmt,...)
Calls panic_action ifndef NDEBUG, else logs error and evaluates to value of _x.
static char const * spaces
fr_dict_attr_t const * fr_dict_root(fr_dict_t const *dict)
Return the root attribute of a dictionary.
fr_dict_t const * fr_dict_internal(void)
int fr_dirfd(int *dirfd, char const **filename, char const *pathname)
From a pathname, return fd and filename needed for *at() functions.
int fr_heap_insert(fr_heap_t **hp, void *data)
Insert a new element into the heap.
void * fr_heap_pop(fr_heap_t **hp)
Remove a node from the heap.
unsigned int fr_heap_index_t
#define fr_heap_alloc(_ctx, _cmp, _type, _field, _init)
Creates a heap that can be used with non-talloced elements.
#define FR_HEAP_INDEX_INVALID
void fr_canonicalize_error(TALLOC_CTX *ctx, char **sp, char **text, ssize_t slen, char const *fmt)
Canonicalize error strings, removing tabs, and generate spaces for error marker.
static char * stack[MAX_STACK]
fr_md5_ctx_alloc_t fr_md5_ctx_alloc
fr_md5_ctx_free_t fr_md5_ctx_free
fr_md5_update_t fr_md5_update
fr_md5_final_t fr_md5_final
#define MD5_DIGEST_LENGTH
@ FR_TYPE_TLV
Contains nested attributes.
@ FR_TYPE_MAX
Number of defined data types.
@ FR_TYPE_NULL
Invalid (uninitialised) attribute type.
@ FR_TYPE_VALUE_BOX
A boxed value.
@ FR_TYPE_GROUP
A grouping of other attributes.
static uint8_t depth(fr_minmax_heap_index_t i)
#define fr_skip_whitespace(_p)
Skip whitespace ('\t', '\n', '\v', '\f', '\r', ' ')
int strncasecmp(char *s1, char *s2, int n)
#define check(_handle, _len_p)
void fr_perm_file_error(int num)
Write a file access error to the fr_strerror buffer, including euid/egid.
size_t fr_snprint(char *out, size_t outlen, char const *in, ssize_t inlen, char quote)
Escape any non printable or non-UTF8 characters in the input string.
void * fr_rb_find(fr_rb_tree_t const *tree, void const *data)
Find an element in the tree, returning the data, not the node.
bool fr_rb_insert(fr_rb_tree_t *tree, void const *data)
Insert data into a tree.
#define fr_rb_inline_talloc_alloc(_ctx, _type, _field, _data_cmp, _data_free)
Allocs a red black that verifies elements are of a specific talloc type.
The main red black tree structure.
@ RLM_MODULE_NUMCODES
How many valid return codes there are.
fr_dict_attr_t const * request_attr_request
#define FR_SBUFF_OUT(_start, _len_or_end)
bool at_runtime
Produce an ephemeral/runtime tmpl.
ssize_t tmpl_preparse(char const **out, size_t *outlen, char const *in, size_t inlen, fr_token_t *type))
Preparse a string in preparation for passing it to tmpl_afrom_substr()
tmpl_attr_rules_t attr
Rules/data for parsing attribute references.
struct tmpl_rules_s tmpl_rules_t
Optional arguments passed to vp_tmpl functions.
static char buff[sizeof("18446744073709551615")+3]
PUBLIC int snprintf(char *string, size_t length, char *format, va_alist)
fr_aka_sim_id_type_t type
size_t strlcpy(char *dst, char const *src, size_t siz)
uint8_t allow_foreign
Allow arguments not found in dict_def.
fr_dict_t const * dict_def
Default dictionary to use with unqualified attribute references.
char const * fr_syserror(int num)
Guaranteed to be thread-safe version of strerror.
#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.
#define fr_table_value_by_str(_table, _name, _def)
Convert a string to a value using a sorted or ordered table.
#define fr_table_str_by_value(_table, _number, _def)
Convert an integer to a string.
An element in a lexicographically sorted array of name to num mappings.
An element in a lexicographically sorted array of name to ptr mappings.
char * talloc_typed_strdup(TALLOC_CTX *ctx, char const *p)
Call talloc_strdup, setting the type on the new chunk correctly.
static int talloc_const_free(void const *ptr)
Free const'd memory.
const bool fr_assignment_op[T_TOKEN_LAST]
const bool fr_list_assignment_op[T_TOKEN_LAST]
ssize_t fr_skip_string(char const *start, char const *end)
Skip a quoted string.
fr_token_t gettoken(char const **ptr, char *buf, int buflen, bool unescape)
fr_table_num_ordered_t const fr_tokens_table[]
const bool fr_str_tok[T_TOKEN_LAST]
int getword(char const **ptr, char *buf, int buflen, bool unescape)
char const * fr_strerror(void)
Get the last library error.
#define fr_strerror_const(_msg)
fr_table_num_ordered_t const fr_type_table[]
Map data types to names representing those types.
#define fr_type_is_leaf(_x)
static char const * fr_type_to_str(fr_type_t type)
Return a static string containing the type name.
static size_t char fr_sbuff_t size_t inlen
static size_t char ** out
#define FR_VALUE_BOX_SAFE_FOR_ANY
fr_dict_t const * virtual_server_dict_by_child_ci(CONF_ITEM const *ci)
Return the namespace for a given virtual server specified by a CONF_ITEM within the virtual server.