30RCSID(
"$Id: 7ae822c98bcfcb6020f5b616a7f6c8757ed69308 $")
35#include <freeradius-devel/ldap/conf.h>
37#include <freeradius-devel/server/map_proc.h>
38#include <freeradius-devel/server/module_rlm.h>
61 LDAPMessage *entry = NULL;
70 if (profile_ctx->
ret) *profile_ctx->
ret = query->
ret;
78 RDEBUG2(
"Profile object \"%s\" not found", profile_ctx->
dn);
88 entry = ldap_first_entry(handle, query->
result);
90 ldap_get_option(handle, LDAP_OPT_RESULT_CODE, &ldap_errno);
91 REDEBUG(
"Failed retrieving entry: %s", ldap_err2string(ldap_errno));
96 RDEBUG2(
"Processing profile attributes");
100 dn = ldap_get_dn(handle, entry);
101 RDEBUG2(
"Processing \"%s\"", dn);
106 fallthrough = profile_ctx->
inst->
profile.fallthrough_def;
118 struct berval **values;
122 fr_value_box_list_t res;
135 values = ldap_get_values_len(handle, entry, profile_ctx->
inst->
profile.fallthrough_attr);
136 count = ldap_count_values_len(values);
137 if (
count == 0)
goto free_values;
139 RWARN(
"%s returned more than 1 value. Only evaluating the first.",
147 NULL, &parse_rules) < 0) {
153 fr_strerror_const(
"Fallthrough expression cannot depend on functions which call external databases");
158 fr_value_box_list_init(&res);
160 RPEDEBUG(
"Failed evaluating condition");
163 fallthrough = (fr_value_box_list_head(&res) &&
fr_value_box_is_truthy(fr_value_box_list_head(&res))) ?
true :
false;
164 fr_value_box_list_talloc_free(&res);
165 RDEBUG2(
"Fallthrough condition evaluated to %s", fallthrough ?
"true" :
"false");
170 ldap_value_free_len(values);
173 entry = ldap_next_entry(handle, entry);
175 if (!fallthrough)
break;
215 char const *dn,
int scope,
char const *filter,
fr_ldap_map_exp_t const *expanded)
218 LDAPControl *serverctrls[] = {
inst->profile.obj_sort_ctrl, NULL };
227 .expanded = expanded,
240 expanded->
attrs, serverctrls, NULL);
unlang_action_t
Returned by unlang_op_t calls, determine the next action of the interpreter.
@ UNLANG_ACTION_FAIL
Encountered an unexpected error.
@ UNLANG_ACTION_CALCULATE_RESULT
Calculate a new section rlm_rcode_t value.
#define USES_APPLE_DEPRECATED_API
#define unlang_function_push(_request, _func, _repeat, _signal, _sigmask, _top_frame, _uctx)
Push a generic function onto the unlang stack.
TALLOC_CTX * unlang_interpret_frame_talloc_ctx(request_t *request)
Get a talloc_ctx which is valid only for this frame.
fr_event_list_t * unlang_interpret_event_list(request_t *request)
Get the event list for the current interpreter.
int fr_ldap_map_do(request_t *request, char const *check_attr, char const *valuepair_attr, fr_ldap_map_exp_t const *expanded, LDAPMessage *entry)
Convert attribute map into valuepairs.
LDAP * handle
libldap handle.
fr_ldap_result_code_t ret
Result code.
trunk_request_t * treq
Trunk request this query is associated with.
char * fr_ldap_berval_to_string(TALLOC_CTX *ctx, struct berval const *in)
Convert a berval to a talloced string.
fr_ldap_connection_t * ldap_conn
LDAP connection this query is running on.
fr_ldap_result_code_t
LDAP query result codes.
@ LDAP_RESULT_ERROR
A general error occurred.
@ LDAP_RESULT_SUCCESS
Successfully got LDAP results.
@ LDAP_RESULT_NO_RESULT
No results returned.
@ LDAP_RESULT_BAD_DN
The requested DN does not exist.
LDAPMessage * result
Head of LDAP results list.
char const * attrs[LDAP_MAX_ATTRMAP+LDAP_MAP_RESERVED+1]
Reserve some space for access attributes.
Result of expanding the RHS of a set of maps.
Thread LDAP trunk structure.
unlang_action_t fr_ldap_trunk_search(TALLOC_CTX *ctx, fr_ldap_query_t **out, request_t *request, fr_ldap_thread_trunk_t *ttrunk, char const *base_dn, int scope, char const *filter, char const *const *attrs, LDAPControl **serverctrls, LDAPControl **clientctrls)
Run an async search LDAP query on a trunk connection.
#define REXDENT()
Exdent (unindent) R* messages by one level.
#define RPEDEBUG(fmt,...)
#define RINDENT()
Indent R* messages by one level.
static unlang_action_t ldap_map_profile_resume(UNUSED rlm_rcode_t *p_result, UNUSED int *priority, request_t *request, void *uctx)
Process the results of a profile lookup.
int * applied
Number of profiles applied.
unlang_action_t rlm_ldap_map_profile(fr_ldap_result_code_t *ret, int *applied, rlm_ldap_t const *inst, request_t *request, fr_ldap_thread_trunk_t *ttrunk, char const *dn, int scope, char const *filter, fr_ldap_map_exp_t const *expanded)
Search for and apply an LDAP profile.
static void ldap_map_profile_cancel(UNUSED request_t *request, UNUSED fr_signal_t action, void *uctx)
Cancel an in progress profile lookup.
fr_ldap_result_code_t * ret
Result of the query and applying the map.
fr_ldap_map_exp_t const * expanded
Holds state of in progress async profile lookups.
#define RDEBUG_ENABLED2()
rlm_rcode_t
Return codes indicating the result of the module call.
fr_dict_attr_t const * request_attr_request
char const * valuepair_attr
Generic dynamic mapping attribute, contains a RADIUS attribute and value.
struct rlm_ldap_t::@167 profile
#define FR_SBUFF_IN(_start, _len_or_end)
tmpl_attr_rules_t attr
Rules/data for parsing attribute references.
Optional arguments passed to vp_tmpl functions.
fr_signal_t
Signals that can be generated/processed by request signal handlers.
@ FR_SIGNAL_CANCEL
Request has been cancelled.
eap_aka_sim_process_conf_t * inst
fr_dict_t const * dict_def
Default dictionary to use with unqualified attribute references.
void trunk_request_signal_cancel(trunk_request_t *treq)
Cancel a trunk request.
int unlang_xlat_eval(TALLOC_CTX *ctx, fr_value_box_list_t *out, request_t *request, xlat_exp_head_t const *xlat)
Evaluate a "pure" (or not impure) xlat.
bool xlat_impure_func(xlat_exp_head_t const *head)
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)
#define fr_strerror_const(_msg)
bool fr_value_box_is_truthy(fr_value_box_t const *in)
Check truthiness of values.