25RCSID(
"$Id: ad63c797bf915064a4124fc6be8be2466b9c2bf0 $")
27#define LOG_PREFIX "perl"
29#include <freeradius-devel/server/base.h>
30#include <freeradius-devel/server/module_rlm.h>
31#include <freeradius-devel/util/debug.h>
32#include <freeradius-devel/unlang/xlat_func.h>
49#if defined(__APPLE__) || defined(__FreeBSD__)
54# error perl must be compiled with USE_ITHREADS
138 ret = strcmp(a->
name1, b->name1);
139 if (ret != 0)
return CMP(ret, 0);
140 if (!a->
name2 && !b->name2)
return 0;
141 if (!a->
name2 || !b->name2)
return a->
name2 ? 1 : -1;
142 ret = strcmp(a->
name2, b->name2);
153# define dl_librefs "DynaLoader::dl_librefs"
154# define dl_modules "DynaLoader::dl_modules"
170 if (!librefs)
return NULL;
172 if (!(AvFILL(librefs) >= 0)) {
176 MEM(handles = talloc_array(NULL,
void *, AvFILL(librefs) + 2));
177 for (i = 0; i <= AvFILL(librefs); i++) {
179 SV *handle_sv = *av_fetch(librefs, i,
false);
184 handle = (
void *)SvIV(handle_sv);
186 if (handle) handles[i] = handle;
192 handles[i] = (
void *)0;
205 for (i = 0; handles[i]; i++) {
206 DEBUG(
"Close %p", handles[i]);
218static XS(XS_freeradius_log)
222 croak(
"Usage: radiusd::log(level, message)");
227 level = (int) SvIV(ST(0));
228 msg = (
char *) SvPV(ST(1), PL_na);
246static XS(XS_freeradius_xlat)
254 if (items != 1) croak(
"Usage: radiusd::xlat(string)");
258 in_str = (
char *) SvPV(ST(0), PL_na);
260 slen =
xlat_aeval(request, &expanded, request, in_str, NULL, NULL);
262 REDEBUG(
"Error parsing xlat '%s'", in_str);
266 XST_mPV(0, expanded);
285 if (!da) croak(
"Unknown or invalid attribute name \"%s\"", attr);
293#define GET_PAIR_MAGIC(count) MAGIC *mg = mg_findext(ST(0), PERL_MAGIC_ext, &rlm_perl_vtbl); \
294 fr_perl_pair_t *pair_data; \
295 if (unlikely(items < count)) { \
296 croak("Expected %d stack entries, got %d", count, items); \
300 croak("Failed to find Perl magic value"); \
303 pair_data = (fr_perl_pair_t *)mg->mg_ptr;
323static XS(XS_pairlist_FETCH)
334 attr = (
char *) SvPV(ST(1), len);
340 if (!isdigit(attr[i]))
break;
349 if (!da) XSRETURN_UNDEF;
364 frpair_stash = gv_stashpv(
"freeradiuspairs", GV_ADD);
366 pair_tie = newRV_noinc((SV *)newAV());
367 sv_bless(pair_tie, frpair_stash);
368 sv_magic(MUTABLE_SV(pair_av), MUTABLE_SV((GV *)pair_tie), PERL_MAGIC_tied, NULL, 0);
369 SvREFCNT_dec(pair_tie);
376 sv_magicext((SV *)pair_tie, 0, PERL_MAGIC_ext, &
rlm_perl_vtbl, (
char *)&child_pair_data,
sizeof(child_pair_data));
377 ST(0) = sv_2mortal(newRV((SV *)pair_av));
391 frpair_stash = gv_stashpv(
"freeradiuspairlist", GV_ADD);
393 struct_tie = newRV_noinc((SV *)newHV());
394 sv_bless(struct_tie, frpair_stash);
395 hv_magic(struct_hv, (GV *)struct_tie, PERL_MAGIC_tied);
396 SvREFCNT_dec(struct_tie);
404 sv_magicext((SV *)struct_tie, 0, PERL_MAGIC_ext, &
rlm_perl_vtbl, (
char *)&child_pair_data,
sizeof(child_pair_data));
405 ST(0) = sv_2mortal(newRV((SV *)struct_hv));
420static XS(XS_pairlist_STORE)
428 attr = (
char *) SvPV(ST(1), PL_na);
430 if (!da) XSRETURN(0);
433 croak(
"Cannot set value of array of \"%s\" values. Use array index to set a specific instance.", da->name);
435 croak(
"Cannot set values of structural object %s", da->name);
446static XS(XS_pairlist_EXISTS)
455 attr = (
char *) SvPV(ST(1), len);
457 if (!isdigit(attr[i]))
break;
465 unsigned int idx = SvIV(ST(1));
466 if (pair_data->parent->vp) {
472 if (!pair_data->vp) XSRETURN_NO;
475 if (!da) XSRETURN_NO;
486static XS(XS_pairlist_FIRSTKEY)
492 if (!pair_data->vp) XSRETURN_EMPTY;
495 if (!
vp) XSRETURN_EMPTY;
496 ST(0) = sv_2mortal(newSVpv(
vp->
da->name,
vp->
da->name_len));
506static XS(XS_pairlist_NEXTKEY)
512 if (!pair_data->vp) XSRETURN_EMPTY;
515 if (!
vp) XSRETURN_EMPTY;
517 ST(0) = sv_2mortal(newSVpv(
vp->
da->name,
vp->
da->name_len));
527static XS(XS_pairlist_DELETE)
535 attr = SvPV(ST(1), PL_na);
538 if (!da) XSRETURN(0);
539 if (!pair_data->vp) XSRETURN(0);
555 switch(
vp->vp_type) {
557 *
value = sv_2mortal(newSVpvn(
vp->vp_strvalue,
vp->vp_length));
561 *
value = sv_2mortal(newSVpvn((
char const *)
vp->vp_octets,
vp->vp_length));
564#define PERLUINT(_size) case FR_TYPE_UINT ## _size: \
565 *value = sv_2mortal(newSVuv(vp->vp_uint ## _size)); \
572#define PERLINT(_size) case FR_TYPE_INT ## _size: \
573 *value = sv_2mortal(newSViv(vp->vp_int ## _size)); \
582 *
value = sv_2mortal(newSVuv(
vp->vp_size));
586 *
value = sv_2mortal(newSVuv(
vp->vp_bool));
590 *
value = sv_2mortal(newSVnv(
vp->vp_float32));
594 *
value = sv_2mortal(newSVnv(
vp->vp_float64));
614 croak(
"Cannot convert %s to Perl type, insufficient buffer space",
619 *
value = sv_2mortal(newSVpv(
buff, slen));
642static XS(XS_pairs_FETCH)
645 unsigned int idx = SvUV(ST(1));
652 if (!
parent->vp) XSRETURN_UNDEF;
654 if (idx == 0)
vp = pair_data->vp;
656 if (!
vp) XSRETURN_UNDEF;
674 if (pair_data->
idx > 0) {
676 croak(
"Attempt to set instance %d when none exist", pair_data->
idx);
682 if (pair_data->
idx > 0) {
685 if (!
parent->parent->vp)
goto none_exist;
687 if (count < pair_data->idx) {
688 croak(
"Attempt to set instance %d when only %d exist", pair_data->
idx,
count);
705 switch (SvTYPE(
value)) {
708 vb.vb_int64 = SvIV(
value);
713 vb.vb_float64 = SvNV(
value);
722 val = SvPV(
value, len);
728 croak(
"Unsupported Perl data type");
748static XS(XS_pairs_STORE)
751 unsigned int idx = SvUV(ST(1));
759 parent = pair_data->parent;
767 croak(
"Attempting to set instance %d when none exist", idx);
779 croak(
"Attempt to set instance %d when only %d exist", idx,
count);
794static XS(XS_pairs_EXISTS)
797 unsigned int idx = SvUV(ST(1));
804 if (!
parent->vp) XSRETURN_NO;
807 if (
vp) XSRETURN_YES;
814static XS(XS_pairs_DELETE)
817 unsigned int idx = SvUV(ST(1));
824 if (!
parent->vp) XSRETURN(0);
835static XS(XS_pairs_FETCHSIZE)
840 if (!pair_data->parent->vp) XSRETURN_UV(0);
852static XS(XS_pairs_STORESIZE)
855 unsigned int count, req_size = SvUV(ST(1));
863 croak(
"Unable to set attribute instance count");
869 if (req_size >
count) {
870 croak(
"Increasing attribute instance count not supported");
894static XS(XS_pairs_PUSH)
905 parent = pair_data->parent;
922static XS(XS_pairs_POP)
932 parent = pair_data->parent;
933 if (!
parent->vp) XSRETURN(0);
936 if (!
vp) XSRETURN(0);
948static XS(XS_pairs_SHIFT)
958 parent = pair_data->parent;
959 if (!
parent->vp) XSRETURN(0);
962 if (!
vp) XSRETURN(0);
976static XS(XS_pairs_UNSHIFT)
987 parent = pair_data->parent;
994 croak(
"Failed adding attribute %s", pair_data->da->name);
1005 char const *
file = __FILE__;
1010 newXS(
"freeradius::log",XS_freeradius_log,
"rlm_perl");
1011 newXS(
"freeradius::xlat",XS_freeradius_xlat,
"rlm_perl");
1017 newXS(
"freeradiuspairlist::FETCH", XS_pairlist_FETCH,
"rlm_perl");
1018 newXS(
"freeradiuspairlist::STORE", XS_pairlist_STORE,
"rlm_perl");
1019 newXS(
"freeradiuspairlist::EXISTS", XS_pairlist_EXISTS,
"rlm_perl");
1020 newXS(
"freeradiuspairlist::FIRSTKEY", XS_pairlist_FIRSTKEY,
"rlm_perl");
1021 newXS(
"freeradiuspairlist::NEXTKEY", XS_pairlist_NEXTKEY,
"rlm_perl");
1022 newXS(
"freeradiuspairlist::DELETE", XS_pairlist_DELETE,
"rlm_perl");
1028 newXS(
"freeradiuspairs::FETCH", XS_pairs_FETCH,
"rlm_perl");
1029 newXS(
"freeradiuspairs::STORE", XS_pairs_STORE,
"rlm_perl");
1030 newXS(
"freeradiuspairs::EXISTS", XS_pairs_EXISTS,
"rlm_perl");
1031 newXS(
"freeradiuspairs::DELETE", XS_pairs_DELETE,
"rlm_perl");
1032 newXS(
"freeradiuspairs::FETCHSIZE", XS_pairs_FETCHSIZE,
"rlm_perl");
1033 newXS(
"freeradiuspairs::STORESIZE", XS_pairs_STORESIZE,
"rlm_perl");
1034 newXS(
"freeradiuspairs::PUSH", XS_pairs_PUSH,
"rlm_perl");
1035 newXS(
"freeradiuspairs::POP", XS_pairs_POP,
"rlm_perl");
1036 newXS(
"freeradiuspairs::SHIFT", XS_pairs_SHIFT,
"rlm_perl");
1037 newXS(
"freeradiuspairs::UNSHIFT", XS_pairs_UNSHIFT,
"rlm_perl");
1055 while ((vb = fr_value_box_list_next(
head, vb))) {
1058 sv = newSVpvn(vb->vb_strvalue, vb->vb_length);
1062 sv = newSVpvn((
char const *)vb->vb_octets, vb->vb_length);
1070 sv = newRV_inc((SV *)sub_av);
1079 if (slen < 0)
return -1;
1080 sv = newSVpvn(
buffer, (
size_t)slen);
1085 if (vb->tainted) SvTAINT(sv);
1120 RDEBUG3(
"Reference returned");
1126 vb->vb_int32 = SvIV(sv);
1133 vb->vb_float64 = SvNV(sv);
1139 tmp = SvPVutf8(sv, len);
1143 RPEDEBUG(
"Failed to allocate %ld for output", len);
1154 sv_len = av_len(av);
1155 for (i = 0; i <= sv_len; i++) {
1156 av_sv = av_fetch(av, i, 0);
1170 for (i = hv_iterinit(hv); i > 0; i--) {
1171 hv_sv = hv_iternextsv(hv, &tmp, &sv_len);
1178 RPEDEBUG(
"Failed to allocate %d for output", sv_len);
1181 fr_value_box_list_insert_tail(list, vb);
1199 RPEDEBUG(
"Perl returned unsupported data type %d",
type);
1205 vb->tainted = SvTAINTED(sv);
1206 fr_value_box_list_insert_tail(list, vb);
1234 fr_value_box_list_t list, sub_list;
1239 fr_value_box_list_init(&list);
1240 fr_value_box_list_init(&sub_list);
1244 PERL_SET_CONTEXT(t->
perl);
1261 if (fr_value_box_list_empty(&arg->vb_group))
continue;
1263 if (fr_value_box_list_num_elements(&arg->vb_group) == 1) {
1264 child = fr_value_box_list_head(&arg->vb_group);
1266 switch (child->type) {
1268 if (child->vb_length == 0)
continue;
1270 RDEBUG3(
"Passing single value %pV", child);
1271 sv = newSVpvn(child->vb_strvalue, child->vb_length);
1275 RDEBUG3(
"Ignoring nested group");
1288 RDEBUG3(
"Passing single value %pV", child);
1290 fr_sbuff_set_to_start(sbuff);
1294 if (child->tainted) SvTAINT(sv);
1295 XPUSHs(sv_2mortal(sv));
1304 RDEBUG3(
"Passing list as array %pM", &arg->vb_group);
1305 sv = newRV_inc((SV *)av);
1306 XPUSHs(sv_2mortal(sv));
1311 count = call_pv(func->vb_strvalue, G_ARRAY | G_EVAL);
1314 if (SvTRUE(ERRSV)) {
1315 REDEBUG(
"Exit %s", SvPV(ERRSV,n_a));
1325 for (i = 0; i <
count; i++) {
1328 fr_value_box_list_move_head(&list, &sub_list);
1353 int indent_section = (lvl + 1) * 4;
1354 int indent_item = (lvl + 2) * 4;
1356 if (!cs || !rad_hv)
return;
1374 if (hv_exists(rad_hv, key, strlen(key))) {
1375 WARN(
"Ignoring duplicate config section '%s'", key);
1380 ref = newRV_inc((SV*) sub_hv);
1382 (void)hv_store(rad_hv, key, strlen(key), ref, 0);
1390 if (!key || !
value)
continue;
1396 if (hv_exists(rad_hv, key, strlen(key))) {
1397 WARN(
"Ignoring duplicate config item '%s'", key);
1401 (void)hv_store(rad_hv, key, strlen(key), newSVpvn(
value, strlen(
value)), 0);
1403 DEBUG(
"%*s%s = %s", indent_item,
" ", key,
value);
1407 DEBUG(
"%*s}", indent_section,
" ");
1420 list_tie = newRV_noinc((SV *)newHV());
1421 sv_bless(list_tie, frpair_stash);
1422 hv_magic(list_hv, (GV *)list_tie, PERL_MAGIC_tied);
1423 SvREFCNT_dec(list_tie);
1430 sv_magicext((SV *)list_tie, 0, PERL_MAGIC_ext, &
rlm_perl_vtbl, (
char *)&pair_data,
sizeof(pair_data));
1432 (void)hv_store(
parent,
name, strlen(
name), newRV_inc((SV *)list_hv), 0);
1458 PERL_SET_CONTEXT(interp);
1468 frpair_stash = gv_stashpv(
"freeradiuspairlist", GV_ADD);
1471 fr_packet = newHV();
1488 XPUSHs( sv_2mortal(newRV((SV *)fr_packet)) );
1497 if (SvTRUE(ERRSV)) {
1498 REDEBUG(
"perl_embed:: module = %s , func = %s exit status= %s\n",
1502 }
else if (
count == 1) {
1504 if (ret >= 100 || ret < 0) {
1525 PERL_SET_CONTEXT(perl);
1531 PL_perl_destruct_level = 2;
1533 PL_origenviron = environ;
1539 while (PL_scopestack_ix > 1) LEAVE;
1541 perl_destruct(perl);
1551 PerlInterpreter *interp;
1554 PERL_SET_CONTEXT(
inst->perl);
1562 pthread_mutex_lock(&
inst->mutable->mutex);
1563 interp = perl_clone(
inst->perl, clone_flags);
1564 pthread_mutex_unlock(&
inst->mutable->mutex);
1568# if PERL_REVISION >= 5 && PERL_VERSION <8
1569 call_pv(
"CLONE", 0);
1571 ptr_table_free(PL_ptr_table);
1572 PL_ptr_table = NULL;
1574 PERL_SET_CONTEXT(aTHX);
1604 val = eval_pv(eval_str, TRUE);
1606 return SvIV(val) ? true :
false;
1634 char const **embed_c;
1636 int ret = 0, argc = 0;
1644 MEM(embed_c = talloc_zero_array(
inst,
char const *, 4));
1645 memcpy(&embed, &embed_c,
sizeof(embed));
1647 if (
inst->perl_flags) {
1648 embed_c[1] =
inst->perl_flags;
1649 embed_c[2] =
inst->module;
1653 embed_c[1] =
inst->module;
1661 if ((
inst->perl = perl_alloc()) == NULL) {
1662 ERROR(
"No memory for allocating new perl interpreter!");
1665 perl_construct(
inst->perl);
1667 PL_perl_destruct_level = 2;
1671 PERL_SET_CONTEXT(
inst->perl);
1673#if PERL_REVISION >= 5 && PERL_VERSION >=8
1674 PL_exit_flags |= PERL_EXIT_DESTRUCT_END;
1677 ret = perl_parse(
inst->perl,
xs_init, argc, embed, NULL);
1680 PL_endav = (AV *)NULL;
1683 ERROR(
"Perl_parse failed: %s not found or has syntax errors",
inst->module);
1690 inst->rad_perlconf_hv = get_hv(
"RAD_PERLCONF", 1);
1694 inst->perl_parsed =
true;
1695 perl_run(
inst->perl);
1714 if (cp)
goto found_func;
1729 }
else if (func->
name2) {
1748 pthread_mutex_init(&
inst->mutable->mutex, NULL);
1760 int ret = 0,
count = 0;
1763 if (
inst->perl_parsed) {
1765 PERL_SET_CONTEXT(
inst->perl);
1766 if (
inst->rad_perlconf_hv != NULL) hv_undef(
inst->rad_perlconf_hv);
1768 if (
inst->func_detach) {
1769 dSP;
ENTER; SAVETMPS;
1772 count = call_pv(
inst->func_detach, G_SCALAR | G_EVAL );
1777 if (ret >= 100 || ret < 0) {
1806 char const **embed_c;
1811#define LOAD_INFO(_fmt, ...) fr_log(LOG_DST, L_INFO, __FILE__, __LINE__, "rlm_perl - " _fmt, ## __VA_ARGS__)
1812#define LOAD_WARN(_fmt, ...) fr_log_perror(LOG_DST, L_WARN, __FILE__, __LINE__, \
1813 &(fr_log_perror_format_t){ \
1814 .first_prefix = "rlm_perl - ", \
1815 .subsq_prefix = "rlm_perl - ", \
1817 _fmt, ## __VA_ARGS__)
1819 LOAD_INFO(
"Perl version: %s", PERL_API_VERSION_STRING);
1833 MEM(embed_c = talloc_zero_array(NULL,
char const *, 1));
1834 memcpy(&embed, &embed_c,
sizeof(embed));
1838 PERL_SYS_INIT3(&argc, &embed, &envp);
1860 for (i = 0; i < talloc_array_length(
name); i++) {
1862 if (!strchr(
"abcdefghijklmnopqrstuvwxyz1234567890", *p)) *p =
'_';
1875 if (!
inst->funcs_init) {
1877 inst->funcs_init =
true;
1886 .offset = rule->pair.offset,
unlang_action_t
Returned by unlang_op_t calls, determine the next action of the interpreter.
static int const char char buffer[256]
#define DIAG_UNKNOWN_PRAGMAS
#define CMP(_a, _b)
Same as CMP_PREFER_SMALLER use when you don't really care about ordering, you just want an ordering.
call_env_parsed_t * call_env_parsed_add(TALLOC_CTX *ctx, call_env_parsed_head_t *head, call_env_parser_t const *rule)
Allocate a new call_env_parsed_t structure and add it to the list of parsed call envs.
void call_env_parsed_set_data(call_env_parsed_t *parsed, void const *data)
Assign data to a call_env_parsed_t.
#define CALL_ENV_TERMINATOR
#define FR_CALL_ENV_METHOD_OUT(_inst)
Helper macro for populating the size/type fields of a call_env_method_t from the output structure typ...
call_env_parser_t const * env
Parsing rules for call method env.
section_name_t const * asked
The actual name1/name2 that resolved to a module_method_binding_t.
@ CALL_ENV_FLAG_PARSE_ONLY
The result of parsing will not be evaluated at runtime.
@ CALL_ENV_FLAG_PARSE_MISSING
If this subsection is missing, still parse it.
@ CALL_ENV_PARSE_TYPE_VOID
Output of the parsing phase is undefined (a custom structure).
module_instance_t const * mi
Module instance that the callenv is registered to.
#define FR_CALL_ENV_SUBSECTION_FUNC(_name, _name2, _flags, _func)
Specify a call_env_parser_t which parses a subsection using a callback function.
#define CONF_PARSER_TERMINATOR
void * data
Pointer to a static variable to write the parsed value to.
#define FR_CONF_OFFSET(_name, _struct, _field)
conf_parser_t which parses a single CONF_PAIR, writing the result to a field in a struct
#define FR_CONF_OFFSET_FLAGS(_name, _flags, _struct, _field)
conf_parser_t which parses a single CONF_PAIR, writing the result to a field in a struct
@ CONF_FLAG_REQUIRED
Error out if no matching CONF_PAIR is found, and no dflt value is set.
@ CONF_FLAG_FILE_READABLE
File matching value must exist, and must be readable.
Defines a CONF_PAIR to C data type mapping.
Common header for all CONF_* types.
Configuration AVP similar to a fr_pair_t.
A section grouping multiple CONF_PAIR.
bool cf_item_is_pair(CONF_ITEM const *ci)
Determine if CONF_ITEM is a CONF_PAIR.
char const * cf_section_name1(CONF_SECTION const *cs)
Return the first 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_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.
char const * cf_pair_attr(CONF_PAIR const *pair)
Return the attr of a CONF_PAIR.
#define cf_log_err(_cf, _fmt,...)
#define cf_item_next(_parent, _curr)
static int split(char **input, char **output, bool syntax_string)
static void * fr_dcursor_next(fr_dcursor_t *cursor)
Advanced the cursor to the next item.
static int fr_dcursor_append(fr_dcursor_t *cursor, void *v)
Insert a single item at the end of the list.
int dependency_version_number_add(CONF_SECTION *cs, char const *name, char const *version)
Add a library/server version pair to the main configuration.
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.
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)
void * dl_open_by_sym(char const *sym_name, int flags)
Utility function to dlopen the library containing a particular symbol.
#define MODULE_MAGIC_INIT
Stop people using different module/library/server versions together.
static xlat_action_t perl_xlat(TALLOC_CTX *ctx, fr_dcursor_t *out, xlat_ctx_t const *xctx, request_t *request, fr_value_box_list_t *in)
Call perl code using an xlat.
#define RPEDEBUG(fmt,...)
void fr_log(fr_log_t const *log, fr_log_type_t type, char const *file, int line, char const *fmt,...)
Send a server log message to its destination.
@ FR_TYPE_TIME_DELTA
A period of time measured in nanoseconds.
@ FR_TYPE_FLOAT32
Single precision floating point.
@ FR_TYPE_IPV4_ADDR
32 Bit IPv4 Address.
@ FR_TYPE_ETHERNET
48 Bit Mac-Address.
@ FR_TYPE_IPV6_PREFIX
IPv6 Prefix.
@ FR_TYPE_STRING
String of printable characters.
@ FR_TYPE_INT64
64 Bit signed integer.
@ FR_TYPE_DATE
Unix time stamp, always has value >2^31.
@ FR_TYPE_COMBO_IP_PREFIX
IPv4 or IPv6 address prefix depending on length.
@ FR_TYPE_INT32
32 Bit signed integer.
@ FR_TYPE_IPV6_ADDR
128 Bit IPv6 Address.
@ FR_TYPE_IPV4_PREFIX
IPv4 Prefix.
@ FR_TYPE_BOOL
A truth value.
@ FR_TYPE_SIZE
Unsigned integer capable of representing any memory address on the local system.
@ FR_TYPE_COMBO_IP_ADDR
IPv4 or IPv6 address depending on length.
@ FR_TYPE_IFID
Interface ID.
@ FR_TYPE_OCTETS
Raw octets.
@ FR_TYPE_GROUP
A grouping of other attributes.
@ FR_TYPE_FLOAT64
Double precision floating point.
void * env_data
Per call environment data.
module_instance_t const * mi
Instance of the module being instantiated.
void * thread
Thread specific instance data.
void * thread
Thread instance data.
module_instance_t * mi
Instance of the module being instantiated.
Temporary structure to hold arguments for module calls.
Temporary structure to hold arguments for detach calls.
Temporary structure to hold arguments for instantiation calls.
Temporary structure to hold arguments for thread_instantiation calls.
xlat_t * module_rlm_xlat_register(TALLOC_CTX *ctx, module_inst_ctx_t const *mctx, char const *name, xlat_func_t func, fr_type_t return_type)
module_t common
Common fields presented by all modules.
fr_pair_t * fr_pair_list_parent(fr_pair_list_t const *list)
Return a pointer to the parent pair which contains this list.
unsigned int fr_pair_count_by_da(fr_pair_list_t const *list, fr_dict_attr_t const *da)
Return the number of instances of a given da in the specified list.
int fr_pair_append_by_da(TALLOC_CTX *ctx, fr_pair_t **out, fr_pair_list_t *list, fr_dict_attr_t const *da)
Alloc a new fr_pair_t (and append)
fr_pair_t * fr_pair_find_by_da(fr_pair_list_t const *list, fr_pair_t const *prev, fr_dict_attr_t const *da)
Find the first pair with a matching da.
fr_pair_t * fr_pair_find_by_da_idx(fr_pair_list_t const *list, fr_dict_attr_t const *da, unsigned int idx)
Find a pair with a matching da at a given index.
void fr_pair_value_clear(fr_pair_t *vp)
Free/zero out value (or children) of a given VP.
int fr_pair_delete(fr_pair_list_t *list, fr_pair_t *vp)
Remove fr_pair_t from a list and free.
int fr_pair_prepend_by_da(TALLOC_CTX *ctx, fr_pair_t **out, fr_pair_list_t *list, fr_dict_attr_t const *da)
Alloc a new fr_pair_t (and prepend)
fr_pair_t * fr_pair_find_last_by_da(fr_pair_list_t const *list, fr_pair_t const *prev, fr_dict_attr_t const *da)
Find the last pair with a matching da.
static const conf_parser_t config[]
void * fr_rb_iter_init_inorder(fr_rb_tree_t *tree, fr_rb_iter_inorder_t *iter)
Initialise an in-order iterator.
int fr_rb_find_or_insert(void **found, fr_rb_tree_t *tree, void const *data)
Attempt to find current data in the tree, if it does not exist insert it.
void * fr_rb_iter_next_inorder(UNUSED fr_rb_tree_t *tree, fr_rb_iter_inorder_t *iter)
Return the next node.
#define fr_rb_inline_init(_tree, _type, _field, _data_cmp, _data_free)
Initialises a red black tree.
Iterator structure for in-order traversal of an rbtree.
The main red black tree structure.
#define RETURN_UNLANG_RCODE(_rcode)
@ RLM_MODULE_FAIL
Module failed, don't reply.
static int perl_sv_to_vblist(TALLOC_CTX *ctx, fr_value_box_list_t *list, request_t *request, SV *sv)
Parse a Perl SV and create value boxes, appending to a list.
static fr_dict_attr_t const * perl_attr_lookup(fr_perl_pair_t *pair_data, char const *attr)
Helper function for turning hash keys into dictionary attributes.
fr_rb_node_t node
Node in tree of function calls.
static int mod_detach(module_detach_ctx_t const *mctx)
static int mod_load(void)
PerlInterpreter * perl
Thread specific perl interpreter.
static bool perl_func_exists(char const *func)
Check if a given Perl subroutine exists.
HV * rad_perlconf_hv
holds "config" items (perl RAD_PERLCONF hash).
static XS(XS_freeradius_log)
static void perl_func_name_safe(char *name)
static xlat_arg_parser_t const perl_xlat_args[]
char const * func_detach
Function to run when mod_detach is run.
char const * function_name
Name of the function being called.
static void ** rlm_perl_get_handles(pTHX)
fr_perl_pair_t * parent
Parent attribute data.
static int perl_value_marshal(fr_pair_t *vp, SV **value)
Functions to implement subroutines required for a tied array.
EXTERN_C void boot_DynaLoader(pTHX_ CV *cv)
static void perl_parse_config(CONF_SECTION *cs, int lvl, HV *rad_hv)
static int mod_bootstrap(module_inst_ctx_t const *mctx)
char * name1
Section name1 where this is called.
static void rlm_perl_interp_free(PerlInterpreter *perl)
static int perl_value_unmarshal(fr_pair_t *vp, SV *value)
Convert a Perl SV to a pair value.
char const *fr_rb_tree_t funcs
Tree of function calls found by call_env parser.
static MGVTBL rlm_perl_vtbl
static void mod_unload(void)
static void xs_init(pTHX)
fr_dict_attr_t const * da
Dictionary attribute associated with hash / array.
struct fr_perl_pair_s fr_perl_pair_t
static int8_t perl_func_def_cmp(void const *one, void const *two)
How to compare two Perl function calls.
#define LOAD_WARN(_fmt,...)
static void rlm_perl_close_handles(void **handles)
static int mod_thread_instantiate(module_thread_inst_ctx_t const *mctx)
fr_dcursor_t cursor
Cursor used for iterating over the keys of a tied hash.
static void perl_pair_list_tie(HV *parent, HV *frpair_stash, char const *name, fr_pair_t *vp, fr_dict_attr_t const *da)
Create a Perl tied hash representing a pair list.
#define GET_PAIR_MAGIC(count)
Convenience macro for fetching C data associated with tied hash / array and validating stack size.
unsigned int idx
Instance number.
static unlang_action_t mod_perl(unlang_result_t *p_result, module_ctx_t const *mctx, request_t *request)
char * name2
Section name2 where this is called.
static int perl_vblist_to_av(AV *av, fr_value_box_list_t *head)
Convert a list of value boxes to a Perl array for passing to subroutines.
static void * perl_dlhandle
To allow us to load perl's symbols into the global symbol table.
#define LOAD_INFO(_fmt,...)
static const conf_parser_t module_config[]
static _Thread_local request_t * rlm_perl_request
static const call_env_method_t perl_method_env
bool funcs_init
Has the tree been initialised.
static int mod_thread_detach(module_thread_inst_ctx_t const *mctx)
static int mod_instantiate(module_inst_ctx_t const *mctx)
fr_pair_t * vp
Real pair associated with the hash / array, if it exists.
static void rlm_perl_clear_handles(pTHX)
static int fr_perl_pair_parent_build(fr_perl_pair_t *pair_data)
Build parent structural pairs needed when a leaf node is set.
static int perl_func_parse(TALLOC_CTX *ctx, call_env_parsed_head_t *out, UNUSED tmpl_rules_t const *t_rules, UNUSED CONF_ITEM *ci, call_env_ctx_t const *cec, UNUSED call_env_parser_t const *rule)
#define fr_sbuff_start(_sbuff_or_marker)
#define FR_SBUFF_OUT(_start, _len_or_end)
#define fr_sbuff_used(_sbuff_or_marker)
#define FR_SBUFF_TALLOC_THREAD_LOCAL(_out, _init, _max)
#define SECTION_NAME(_name1, _name2)
Define a section name consisting of a verb and a noun.
char const * name2
Second section name. Usually a packet type like 'access-request', 'access-accept',...
char const * name1
First section name. Usually a verb like 'recv', 'send', etc...
API for POSIX semaphores in mmapped memory.
CONF_SECTION * conf
Module's instance configuration.
size_t inst_size
Size of the module's instance data.
void * data
Module's instance data.
#define MODULE_BINDING_TERMINATOR
Terminate a module binding list.
Named methods exported by a module.
Optional arguments passed to vp_tmpl functions.
static char buff[sizeof("18446744073709551615")+3]
eap_aka_sim_process_conf_t * inst
fr_aka_sim_id_type_t type
Stores an attribute, a value and various bits of other data.
fr_dict_attr_t const *_CONST da
Dictionary attribute defines the attribute number, vendor and type of the pair.
#define talloc_get_type_abort_const
static int talloc_const_free(void const *ptr)
Free const'd memory.
#define talloc_strdup(_ctx, _str)
@ XLAT_ARG_VARIADIC_EMPTY_KEEP
Empty argument groups are left alone, and either passed through as empty groups or null boxes.
unsigned int required
Argument must be present, and non-empty.
#define XLAT_ARG_PARSER_TERMINATOR
@ XLAT_ACTION_FAIL
An xlat function failed.
@ XLAT_ACTION_DONE
We're done evaluating this level of nesting.
ssize_t xlat_aeval(TALLOC_CTX *ctx, char **out, request_t *request, char const *fmt, xlat_escape_legacy_t escape, void const *escape_ctx))
Definition for a single argument consumed by an xlat function.
fr_pair_t * fr_pair_remove(fr_pair_list_t *list, fr_pair_t *vp)
Remove fr_pair_t from a list without freeing.
ssize_t fr_pair_print_value_quoted(fr_sbuff_t *out, fr_pair_t const *vp, fr_token_t quote)
Print the value of an attribute to a string.
#define fr_pair_dcursor_init(_cursor, _list)
Initialises a special dcursor with callbacks that will maintain the attr sublists correctly.
fr_pair_t * fr_pair_list_prev(fr_pair_list_t const *list, fr_pair_t const *item))
Get the previous item in a valuepair list before a specific entry.
#define fr_type_is_group(_x)
@ FR_TYPE_ATTR
A contains an attribute reference.
#define FR_TYPE_STRUCTURAL
#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.
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.
int fr_value_box_cast(TALLOC_CTX *ctx, fr_value_box_t *dst, fr_type_t dst_type, fr_dict_attr_t const *dst_enumv, fr_value_box_t const *src)
Convert one type of fr_value_box_t to another.
int fr_value_box_bstrndup(TALLOC_CTX *ctx, fr_value_box_t *dst, fr_dict_attr_t const *enumv, char const *src, size_t len, bool tainted)
Copy a string to to a fr_value_box_t.
void fr_value_box_bstrndup_shallow(fr_value_box_t *dst, fr_dict_attr_t const *enumv, char const *src, size_t len, bool tainted)
Assign a string to to a fr_value_box_t.
#define fr_value_box_alloc(_ctx, _type, _enumv)
Allocate a value box of a specific type.
#define fr_value_box_alloc_null(_ctx)
Allocate a value box for later use with a value assignment function.
#define fr_value_box_init(_vb, _type, _enumv, _tainted)
Initialise a fr_value_box_t.
#define fr_value_box_list_foreach(_list_head, _iter)
static size_t char ** out
module_ctx_t const * mctx
Synthesised module calling ctx.
int xlat_func_args_set(xlat_t *x, xlat_arg_parser_t const args[])
Register the arguments of an xlat.