The FreeRADIUS server $Id: 15bac2a4c627c01d1aa2047687b3418955ac7f00 $
Loading...
Searching...
No Matches
rlm_ldap.c
Go to the documentation of this file.
1/*
2 * This program is 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 (at
5 * 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: 0b6800f1894279c47885862051b97464af162ba1 $
19 * @file rlm_ldap.c
20 * @brief LDAP authorization and authentication module.
21 *
22 * @author Arran Cudbard-Bell (a.cudbardb@freeradius.org)
23 * @author Alan DeKok (aland@freeradius.org)
24 *
25 * @copyright 2012,2015 Arran Cudbard-Bell (a.cudbardb@freeradius.org)
26 * @copyright 2013,2015 Network RADIUS SAS (legal@networkradius.com)
27 * @copyright 2012 Alan DeKok (aland@freeradius.org)
28 * @copyright 1999-2013 The FreeRADIUS Server Project.
29 */
30RCSID("$Id: 0b6800f1894279c47885862051b97464af162ba1 $")
31
33
34#include <freeradius-devel/util/debug.h>
35#include <freeradius-devel/util/table.h>
36#include <freeradius-devel/util/uri.h>
37#include <freeradius-devel/util/value.h>
38
39#include <freeradius-devel/ldap/conf.h>
40#include <freeradius-devel/ldap/base.h>
41
42#include <freeradius-devel/server/map_proc.h>
43#include <freeradius-devel/server/module_rlm.h>
44#include <freeradius-devel/server/rcode.h>
45
46#include <freeradius-devel/unlang/xlat_func.h>
47#include <freeradius-devel/unlang/action.h>
48
49#include <ldap.h>
50#include "rlm_ldap.h"
51
56
65
66typedef struct {
67 char const *attr;
69 tmpl_t const *tmpl;
76
77/** Call environment used in the profile xlat
78 */
79typedef struct {
80 fr_value_box_t profile_filter; //!< Filter to use when searching for users.
81 map_list_t *profile_map; //!< List of maps to apply to the profile.
83
84static int ldap_update_section_parse(TALLOC_CTX *ctx, call_env_parsed_head_t *out, tmpl_rules_t const *t_rules, CONF_ITEM *ci, call_env_ctx_t const *cec, call_env_parser_t const *rule);
85static int ldap_mod_section_parse(TALLOC_CTX *ctx, call_env_parsed_head_t *out, tmpl_rules_t const *t_rules, CONF_ITEM *ci, call_env_ctx_t const *cec, call_env_parser_t const *rule);
86
87static int ldap_group_filter_parse(TALLOC_CTX *ctx, void *out, tmpl_rules_t const *t_rules, CONF_ITEM *ci, call_env_ctx_t const *cec, UNUSED call_env_parser_t const *rule);
88
96
98 { FR_CONF_OFFSET("scope", rlm_ldap_t, profile.obj_scope), .dflt = "base",
100 { FR_CONF_OFFSET("attribute", rlm_ldap_t, profile.attr) },
101 { FR_CONF_OFFSET("attribute_suspend", rlm_ldap_t, profile.attr_suspend) },
102 { FR_CONF_OFFSET("check_attribute", rlm_ldap_t, profile.check_attr) },
103 { FR_CONF_OFFSET("sort_by", rlm_ldap_t, profile.obj_sort_by) },
104 { FR_CONF_OFFSET("fallthrough_attribute", rlm_ldap_t, profile.fallthrough_attr) },
105 { FR_CONF_OFFSET("fallthrough_default", rlm_ldap_t, profile.fallthrough_def), .dflt = "yes" },
107};
108
109/*
110 * User configuration
111 */
113 { FR_CONF_OFFSET("scope", rlm_ldap_t, user.obj_scope), .dflt = "sub",
114 .func = cf_table_parse_int, .uctx = &(cf_table_parse_ctx_t){ .table = fr_ldap_scope, .len = &fr_ldap_scope_len } },
115 { FR_CONF_OFFSET("sort_by", rlm_ldap_t, user.obj_sort_by) },
116
117 { FR_CONF_OFFSET("access_attribute", rlm_ldap_t, user.obj_access_attr) },
118 { FR_CONF_OFFSET("access_positive", rlm_ldap_t, user.access_positive), .dflt = "yes" },
119 { FR_CONF_OFFSET("access_value_negate", rlm_ldap_t, user.access_value_negate), .dflt = "false" },
120 { FR_CONF_OFFSET("access_value_suspend", rlm_ldap_t, user.access_value_suspend), .dflt = "suspended" },
121 { FR_CONF_OFFSET_IS_SET("expect_password", FR_TYPE_BOOL, 0, rlm_ldap_t, user.expect_password) },
123};
124
125/*
126 * Group configuration
127 */
129 { FR_CONF_OFFSET("filter", rlm_ldap_t, group.obj_filter) },
130 { FR_CONF_OFFSET("scope", rlm_ldap_t, group.obj_scope), .dflt = "sub",
131 .func = cf_table_parse_int, .uctx = &(cf_table_parse_ctx_t){ .table = fr_ldap_scope, .len = &fr_ldap_scope_len } },
132
133 { FR_CONF_OFFSET("name_attribute", rlm_ldap_t, group.obj_name_attr), .dflt = "cn" },
134 { FR_CONF_OFFSET("membership_attribute", rlm_ldap_t, group.userobj_membership_attr) },
135 { FR_CONF_OFFSET_FLAGS("membership_filter", CONF_FLAG_XLAT, rlm_ldap_t, group.obj_membership_filter) },
136 { FR_CONF_OFFSET("cacheable_name", rlm_ldap_t, group.cacheable_name), .dflt = "no" },
137 { FR_CONF_OFFSET("cacheable_dn", rlm_ldap_t, group.cacheable_dn), .dflt = "no" },
138 { FR_CONF_OFFSET("cache_attribute", rlm_ldap_t, group.cache_attribute) },
139 { FR_CONF_OFFSET("group_attribute", rlm_ldap_t, group.attribute) },
140 { FR_CONF_OFFSET("allow_dangling_group_ref", rlm_ldap_t, group.allow_dangling_refs), .dflt = "no" },
141 { FR_CONF_OFFSET("skip_on_suspend", rlm_ldap_t, group.skip_on_suspend), .dflt = "yes"},
143};
144
145static const conf_parser_t module_config[] = {
146 /*
147 * Pool config items
148 */
149 { FR_CONF_OFFSET_FLAGS("server", CONF_FLAG_MULTI, rlm_ldap_t, handle_config.server_str) }, /* Do not set to required */
150
151 /*
152 * Common LDAP conf parsers
153 */
155
156 { FR_CONF_OFFSET("valuepair_attribute", rlm_ldap_t, valuepair_attr) },
157
158#ifdef LDAP_CONTROL_X_SESSION_TRACKING
159 { FR_CONF_OFFSET("session_tracking", rlm_ldap_t, session_tracking), .dflt = "no" },
160#endif
161
162#ifdef WITH_EDIR
163 /* support for eDirectory Universal Password */
164 { FR_CONF_OFFSET("edir", rlm_ldap_t, edir) }, /* NULL defaults to "no" */
165
166 /*
167 * Attempt to bind with the cleartext password we got from eDirectory
168 * Universal password for additional authorization checks.
169 */
170 { FR_CONF_OFFSET("edir_autz", rlm_ldap_t, edir_autz) }, /* NULL defaults to "no" */
171#endif
172
173 { FR_CONF_POINTER("user", 0, CONF_FLAG_SUBSECTION, NULL), .subcs = (void const *) user_config },
174
175 { FR_CONF_POINTER("group", 0, CONF_FLAG_SUBSECTION, NULL), .subcs = (void const *) group_config },
176
177 { FR_CONF_POINTER("profile", 0, CONF_FLAG_SUBSECTION, NULL), .subcs = (void const *) profile_config },
178
179 { FR_CONF_OFFSET_SUBSECTION("pool", 0, rlm_ldap_t, trunk_conf, trunk_config ) },
180
181 { FR_CONF_OFFSET_SUBSECTION("bind_pool", 0, rlm_ldap_t, bind_trunk_conf, trunk_config ) },
182
184};
185
186#define USER_CALL_ENV_COMMON(_struct) \
187 { FR_CALL_ENV_OFFSET("base_dn", FR_TYPE_STRING, CALL_ENV_FLAG_REQUIRED | CALL_ENV_FLAG_CONCAT, _struct, user_base), .pair.dflt = "", .pair.dflt_quote = T_SINGLE_QUOTED_STRING }, \
188 { FR_CALL_ENV_OFFSET("filter", FR_TYPE_STRING, CALL_ENV_FLAG_NULLABLE | CALL_ENV_FLAG_CONCAT, _struct, user_filter), .pair.dflt = "(&)", .pair.dflt_quote = T_SINGLE_QUOTED_STRING }
189
205
206/** Parameters to allow ldap_update_section_parse to be reused
207 */
212
215 .env = (call_env_parser_t[]) {
218 .map_offset = offsetof(ldap_autz_call_env_t, user_map),
219 .expect_password_offset = offsetof(ldap_autz_call_env_t, expect_password)
220 } },
222 ((call_env_parser_t[]) {
225 })) },
227 ((call_env_parser_t[]) {
230 .pair.func = ldap_group_filter_parse,
231 .pair.escape = {
232 .box_escape = {
233 .func = fr_ldap_box_escape,
235 .always_escape = false,
236 },
238 },
239 .pair.literals_safe_for = (fr_value_box_safe_for_t)fr_ldap_box_escape,
240 },
242 })) },
244 ((call_env_parser_t[]) {
247 .pair.dflt = "(&)", .pair.dflt_quote = T_SINGLE_QUOTED_STRING }, //!< Correct filter for when the DN is known.
249 } )) },
251 }
252};
253
254#define USERMOD_ENV(_section) static const call_env_method_t _section ## _usermod_method_env = { \
255 FR_CALL_ENV_METHOD_OUT(ldap_usermod_call_env_t), \
256 .env = (call_env_parser_t[]) { \
257 { FR_CALL_ENV_SUBSECTION("user", NULL, CALL_ENV_FLAG_REQUIRED, \
258 ((call_env_parser_t[]) { \
259 USER_CALL_ENV_COMMON(ldap_usermod_call_env_t), CALL_ENV_TERMINATOR \
260 })) }, \
261 { FR_CALL_ENV_SUBSECTION_FUNC(STRINGIFY(_section), CF_IDENT_ANY, CALL_ENV_FLAG_SUBSECTION | CALL_ENV_FLAG_PARSE_MISSING, ldap_mod_section_parse) }, \
262 CALL_ENV_TERMINATOR \
263 } \
264}
265
266USERMOD_ENV(accounting);
268
271 .env = (call_env_parser_t[]) {
273 ((call_env_parser_t[]) {
276 })) },
278 ((call_env_parser_t[]) {
281 .pair.func = ldap_group_filter_parse,
282 .pair.escape = {
283 .box_escape = {
284 .func = fr_ldap_box_escape,
286 .always_escape = false,
287 },
289 },
290 .pair.literals_safe_for = (fr_value_box_safe_for_t)fr_ldap_box_escape,
291 },
293 })) },
295 }
296};
297
300 .env = (call_env_parser_t[]) {
303 .map_offset = offsetof(ldap_xlat_profile_call_env_t, profile_map),
304 .expect_password_offset = -1
305 } },
307 ((call_env_parser_t[]) {
309 .pair.dflt = "(&)", .pair.dflt_quote = T_SINGLE_QUOTED_STRING }, //!< Correct filter for when the DN is known.
311 })) },
313 }
314};
315
317
320 { .out = &dict_freeradius, .proto = "freeradius" },
321 { NULL }
322};
323
331
334 { .out = &attr_password, .name = "Password", .type = FR_TYPE_TLV, .dict = &dict_freeradius },
335 { .out = &attr_cleartext_password, .name = "Password.Cleartext", .type = FR_TYPE_STRING, .dict = &dict_freeradius },
336 { .out = &attr_crypt_password, .name = "Password.Crypt", .type = FR_TYPE_STRING, .dict = &dict_freeradius },
337 { .out = &attr_ldap_userdn, .name = "LDAP-UserDN", .type = FR_TYPE_STRING, .dict = &dict_freeradius },
338 { .out = &attr_nt_password, .name = "Password.NT", .type = FR_TYPE_OCTETS, .dict = &dict_freeradius },
339 { .out = &attr_password_with_header, .name = "Password.With-Header", .type = FR_TYPE_STRING, .dict = &dict_freeradius },
340 { .out = &attr_expr_bool_enum, .name = "Expr-Bool-Enum", .type = FR_TYPE_BOOL, .dict = &dict_freeradius },
341
342 { NULL }
343};
344
345extern global_lib_autoinst_t const *rlm_ldap_lib[];
350
351/** Holds state of in progress async authentication
352 *
353 */
361
362/** Holds state of in progress ldap user modifications
363 *
364 */
378
379/** Holds state of in progress LDAP map
380 *
381 */
382typedef struct {
383 map_list_t const *maps;
384 LDAPURLDesc *ldap_url;
387 LDAPControl *serverctrls[LDAP_MAX_CONTROLS];
389
395
397 { L("ldap://"), LDAP_SCHEME_UNIX },
398 { L("ldapi://"), LDAP_SCHEME_TCP },
399 { L("ldaps://"), LDAP_SCHEME_TCP_SSL },
400};
402
403/** This is the common function that actually ends up doing all the URI escaping
404 */
405#define LDAP_URI_SAFE_FOR (fr_value_box_safe_for_t)fr_ldap_uri_escape_func
406
408 { .required = true, .concat = true, .type = FR_TYPE_STRING },
410};
411
413 { .required = true, .concat = true, .type = FR_TYPE_STRING },
415};
416
417/** Escape LDAP string
418 *
419 * @ingroup xlat_functions
420 */
422 UNUSED xlat_ctx_t const *xctx,
423 request_t *request, fr_value_box_list_t *in)
424{
425 fr_value_box_t *vb, *in_vb = fr_value_box_list_head(in);
426 fr_sbuff_t sbuff;
427 fr_sbuff_uctx_talloc_t sbuff_ctx;
428 size_t len;
429
430 MEM(vb = fr_value_box_alloc_null(ctx));
431
432 /*
433 * If it's already safe, just copy it over.
434 */
436 fr_value_box_copy(vb, vb, in_vb);
437
439 return XLAT_ACTION_DONE;
440 }
441
442 /*
443 * Maximum space needed for output would be 3 times the input if every
444 * char needed escaping
445 */
446 if (!fr_sbuff_init_talloc(vb, &sbuff, &sbuff_ctx, in_vb->vb_length * 3, in_vb->vb_length * 3)) {
447 REDEBUG("Failed to allocate buffer for escaped string");
448 talloc_free(vb);
449 return XLAT_ACTION_FAIL;
450 }
451
452 /*
453 * Call the escape function, including the space for the trailing NULL
454 */
455 len = fr_ldap_uri_escape_func(request, fr_sbuff_buff(&sbuff), in_vb->vb_length * 3 + 1, in_vb->vb_strvalue, NULL);
456
457 /*
458 * Trim buffer to fit used space and assign to box
459 */
460 fr_sbuff_trim_talloc(&sbuff, len);
461 fr_value_box_strdup_shallow(vb, NULL, fr_sbuff_buff(&sbuff), in_vb->tainted);
462
464 return XLAT_ACTION_DONE;
465}
466
468 { .required = true, .concat = true, .type = FR_TYPE_STRING },
470};
471
472/** Unescape LDAP string
473 *
474 * @ingroup xlat_functions
475 */
477 UNUSED xlat_ctx_t const *xctx,
478 request_t *request, fr_value_box_list_t *in)
479{
480 fr_value_box_t *vb, *in_vb = fr_value_box_list_head(in);
481 fr_sbuff_t sbuff;
482 fr_sbuff_uctx_talloc_t sbuff_ctx;
483 size_t len;
484
485 MEM(vb = fr_value_box_alloc_null(ctx));
486 /*
487 * Maximum space needed for output will be the same as the input
488 */
489 if (!fr_sbuff_init_talloc(vb, &sbuff, &sbuff_ctx, in_vb->vb_length, in_vb->vb_length)) {
490 REDEBUG("Failed to allocate buffer for unescaped string");
491 talloc_free(vb);
492 return XLAT_ACTION_FAIL;
493 }
494
495 /*
496 * Call the unescape function, including the space for the trailing NULL
497 */
498 len = fr_ldap_uri_unescape_func(request, fr_sbuff_buff(&sbuff), in_vb->vb_length + 1, in_vb->vb_strvalue, NULL);
499
500 /*
501 * Trim buffer to fit used space and assign to box
502 */
503 fr_sbuff_trim_talloc(&sbuff, len);
504 fr_value_box_strdup_shallow(vb, NULL, fr_sbuff_buff(&sbuff), in_vb->tainted);
506
507 return XLAT_ACTION_DONE;
508}
509
510/** Escape function for a part of an LDAP URI
511 *
512 */
513static int ldap_uri_part_escape(fr_value_box_t *vb, UNUSED void *uctx)
514{
515 fr_sbuff_t sbuff;
516 fr_sbuff_uctx_talloc_t sbuff_ctx;
517 size_t len;
518
519 /*
520 * Maximum space needed for output would be 3 times the input if every
521 * char needed escaping
522 */
523 if (!fr_sbuff_init_talloc(vb, &sbuff, &sbuff_ctx, vb->vb_length * 3, vb->vb_length * 3)) {
524 fr_strerror_printf_push("Failed to allocate buffer for escaped argument");
525 return -1;
526 }
527
528 /*
529 * Call the escape function, including the space for the trailing NULL
530 */
531 len = fr_ldap_uri_escape_func(NULL, fr_sbuff_buff(&sbuff), vb->vb_length * 3 + 1, vb->vb_strvalue, NULL);
532
533 fr_sbuff_trim_talloc(&sbuff, len);
535
536 return 0;
537}
538
539/** Callback when LDAP query times out
540 *
541 */
543{
544 fr_ldap_query_t *query = talloc_get_type_abort(uctx, fr_ldap_query_t);
545 trunk_request_t *treq;
546 request_t *request;
547
548 /*
549 * If the trunk request has completed but the query
550 * has not yet resumed, query->treq will be NULL
551 */
552 if (!query->treq) return;
553
554 treq = talloc_get_type_abort(query->treq, trunk_request_t);
555 request = treq->request;
556
557 ROPTIONAL(RERROR, ERROR, "Timeout waiting for LDAP query");
558
560
561 query->ret = LDAP_RESULT_TIMEOUT;
563}
564
565/** Callback when resuming after async ldap query is completed
566 *
567 */
569 xlat_ctx_t const *xctx,
570 request_t *request, UNUSED fr_value_box_list_t *in)
571{
572 fr_ldap_query_t *query = talloc_get_type_abort(xctx->rctx, fr_ldap_query_t);
573 fr_ldap_connection_t *ldap_conn = query->ldap_conn;
574 fr_value_box_t *vb = NULL;
575 LDAPMessage *msg;
576 struct berval **values;
577 char const **attr;
578 int count, i;
579
580 if (query->ret != LDAP_RESULT_SUCCESS) return XLAT_ACTION_FAIL;
581
582 /*
583 * We only parse "entries"
584 */
585 for (msg = ldap_first_entry(ldap_conn->handle, query->result); msg; msg = ldap_next_entry(ldap_conn->handle, msg)) {
586 for (attr = query->search.attrs; *attr; attr++) {
587 values = ldap_get_values_len(ldap_conn->handle, msg, *attr);
588 if (!values) {
589 RDEBUG2("No \"%s\" attributes found in specified object", *attr);
590 continue;
591 }
592
593 count = ldap_count_values_len(values);
594 for (i = 0; i < count; i++) {
595 MEM(vb = fr_value_box_alloc_null(ctx));
596 if (fr_value_box_bstrndup(vb, vb, NULL, values[i]->bv_val, values[i]->bv_len, true) < 0) {
597 talloc_free(vb);
598 RPERROR("Failed creating value from LDAP response");
599 break;
600 }
602 }
603 ldap_value_free_len(values);
604 }
605 }
606
607 talloc_free(query);
608
609 return XLAT_ACTION_DONE;
610}
611
612/** Callback for signalling async ldap query
613 *
614 */
615static void ldap_xlat_signal(xlat_ctx_t const *xctx, request_t *request, UNUSED fr_signal_t action)
616{
617 fr_ldap_query_t *query = talloc_get_type_abort(xctx->rctx, fr_ldap_query_t);
618
619 if (!query->treq) return;
620
621 RDEBUG2("Forcefully cancelling pending LDAP query");
622
624}
625
626/*
627 * If a part doesn't have an escaping function, parsing will fail unless the input
628 * was marked up with a safe_for value by the ldap arg parsing, i.e. was a literal
629 * input argument to the xlat.
630 *
631 * This is equivalent to the old "tainted_allowed" flag.
632 */
634 { .name = "scheme", .safe_for = LDAP_URI_SAFE_FOR, .terminals = &FR_SBUFF_TERMS(L(":")), .part_adv = { [':'] = 1 }, .extra_skip = 2 },
635 { .name = "host", .safe_for = LDAP_URI_SAFE_FOR, .terminals = &FR_SBUFF_TERMS(L(":"), L("/")), .part_adv = { [':'] = 1, ['/'] = 2 } },
636 { .name = "port", .safe_for = LDAP_URI_SAFE_FOR, .terminals = &FR_SBUFF_TERMS(L("/")), .part_adv = { ['/'] = 1 } },
637 { .name = "dn", .safe_for = LDAP_URI_SAFE_FOR, .terminals = &FR_SBUFF_TERMS(L("?")), .part_adv = { ['?'] = 1 }, .func = ldap_uri_part_escape },
638 { .name = "attrs", .safe_for = LDAP_URI_SAFE_FOR, .terminals = &FR_SBUFF_TERMS(L("?")), .part_adv = { ['?'] = 1 }},
639 { .name = "scope", .safe_for = LDAP_URI_SAFE_FOR, .terminals = &FR_SBUFF_TERMS(L("?")), .part_adv = { ['?'] = 1 }, .func = ldap_uri_part_escape },
640 { .name = "filter", .safe_for = LDAP_URI_SAFE_FOR, .terminals = &FR_SBUFF_TERMS(L("?")), .part_adv = { ['?'] = 1}, .func = ldap_uri_part_escape },
641 { .name = "exts", .safe_for = LDAP_URI_SAFE_FOR, .func = ldap_uri_part_escape },
643};
644
645static fr_uri_part_t const ldap_dn_parts[] = {
646 { .name = "dn", .safe_for = LDAP_URI_SAFE_FOR , .func = ldap_uri_part_escape },
648};
649
651 { .required = true, .type = FR_TYPE_STRING, .safe_for = LDAP_URI_SAFE_FOR },
653};
654
655/** Produce canonical LDAP host URI for finding trunks
656 *
657 */
658static inline CC_HINT(always_inline)
659char *host_uri_canonify(request_t *request, LDAPURLDesc *url_parsed, fr_value_box_t *url_in)
660{
661 char *host;
662
663 LDAPURLDesc tmp_desc = {
664 .lud_scheme = url_parsed->lud_scheme,
665 .lud_host = url_parsed->lud_host,
666 .lud_port = url_parsed->lud_port,
667 .lud_scope = -1
668 };
669 host = ldap_url_desc2str(&tmp_desc);
670 if (unlikely(host == NULL)) REDEBUG("Invalid LDAP URL - %pV", url_in); \
671
672 return host;
673}
674
675/** Utility function for parsing LDAP URLs
676 *
677 * All LDAP xlat functions that work with LDAP URLs should call this function to parse the URL.
678 *
679 * @param[out] uri_parsed LDAP URL parsed. Must be freed with ldap_url_desc_free.
680 * @param[out] host_out host name to use for the query. Must be freed with ldap_mem_free
681 * if free_host_out is true.
682 * @param[out] free_host_out True if host_out should be freed.
683 * @param[in] request Request being processed.
684 * @param[in] host_default Default host to use if the URL does not specify a host.
685 * @param[in] uri_in URI to parse.
686 * @return
687 * - 0 on success.
688 * - -1 on failure.
689 */
690static int ldap_xlat_uri_parse(LDAPURLDesc **uri_parsed, char **host_out, bool *free_host_out,
691 request_t *request, char *host_default, fr_value_box_t *uri_in)
692{
693 fr_value_box_t *uri;
694 int ldap_url_ret;
695
696 *free_host_out = false;
697
698 if (fr_uri_escape_list(&uri_in->vb_group, ldap_uri_parts, NULL) < 0){
699 RPERROR("Failed to escape LDAP URI");
700 error:
701 *uri_parsed = NULL;
702 return -1;
703 }
704
705 /*
706 * Smush everything into the first URI box
707 */
708 uri = fr_value_box_list_head(&uri_in->vb_group);
709
710 if (fr_value_box_list_concat_in_place(uri, uri, &uri_in->vb_group,
711 FR_TYPE_STRING, FR_VALUE_BOX_LIST_FREE, true, SIZE_MAX) < 0) {
712 RPEDEBUG("Failed concatenating input");
713 goto error;
714 }
715
716 if (!ldap_is_ldap_url(uri->vb_strvalue)) {
717 REDEBUG("String passed does not look like an LDAP URL");
718 goto error;
719 }
720
721 ldap_url_ret = ldap_url_parse(uri->vb_strvalue, uri_parsed);
722 if (ldap_url_ret != LDAP_URL_SUCCESS){
723 RPEDEBUG("Parsing LDAP URL failed - %s", fr_ldap_url_err_to_str(ldap_url_ret));
724 goto error;
725 }
726
727 /*
728 * If the URL is <scheme>:/// the parsed host will be NULL - use config default
729 */
730 if (!(*uri_parsed)->lud_host) {
731 *host_out = host_default;
732 } else {
733 *host_out = host_uri_canonify(request, *uri_parsed, uri);
734 if (unlikely(*host_out == NULL)) {
735 ldap_free_urldesc(*uri_parsed);
736 *uri_parsed = NULL;
737 return -1;
738 }
739 *free_host_out = true;
740 }
741
742 return 0;
743}
744
745/** Expand an LDAP URL into a query, and return a string result from that query.
746 *
747 * @ingroup xlat_functions
748 */
750 xlat_ctx_t const *xctx,
751 request_t *request, fr_value_box_list_t *in)
752{
753 fr_ldap_thread_t *t = talloc_get_type_abort(xctx->mctx->thread, fr_ldap_thread_t);
754 fr_value_box_t *uri;
755 char *host;
756 bool free_host = false;
757 fr_ldap_config_t const *handle_config = t->config;
759 fr_ldap_query_t *query = NULL;
760
761 LDAPURLDesc *ldap_url;
762
763 XLAT_ARGS(in, &uri);
764
765 if (ldap_xlat_uri_parse(&ldap_url, &host, &free_host, request, handle_config->server, uri) < 0) return XLAT_ACTION_FAIL;
766
767 /*
768 * Nothing, empty string, "*" string, or got 2 things, die.
769 */
770 if (!ldap_url->lud_attrs || !ldap_url->lud_attrs[0] || !*ldap_url->lud_attrs[0] ||
771 (strcmp(ldap_url->lud_attrs[0], "*") == 0) || ldap_url->lud_attrs[1]) {
772 REDEBUG("Bad attributes list in LDAP URL. URL must specify exactly one attribute to retrieve");
773 ldap_free_urldesc(ldap_url);
774 return XLAT_ACTION_FAIL;
775 }
776
778 ldap_url->lud_dn, ldap_url->lud_scope, ldap_url->lud_filter,
779 (char const * const*)ldap_url->lud_attrs, NULL, NULL);
780 query->ldap_url = ldap_url; /* query destructor will free URL */
781
782 if (ldap_url->lud_exts) {
783 LDAPControl *serverctrls[LDAP_MAX_CONTROLS];
784 int i;
785
786 serverctrls[0] = NULL;
787
788 if (fr_ldap_parse_url_extensions(serverctrls, NUM_ELEMENTS(serverctrls),
789 query->ldap_url->lud_exts) < 0) {
790 RPERROR("Parsing URL extensions failed");
791 if (free_host) ldap_memfree(host);
792
793 query_error:
794 talloc_free(query);
795 return XLAT_ACTION_FAIL;
796 }
797
798 for (i = 0; i < LDAP_MAX_CONTROLS; i++) {
799 if (!serverctrls[i]) break;
800 query->serverctrls[i].control = serverctrls[i];
801 query->serverctrls[i].freeit = true;
802 }
803 }
804
805 /*
806 * Figure out what trunked connection we can use
807 * to communicate with the host.
808 *
809 * If free_host is true, we must free the host
810 * after deciding on a trunk connection as it
811 * was allocated by host_uri_canonify.
812 */
813 ttrunk = fr_thread_ldap_trunk_get(t, host, handle_config->admin_identity,
814 handle_config->admin_password, request, handle_config);
815 if (free_host) ldap_memfree(host);
816 if (!ttrunk) {
817 REDEBUG("Unable to get LDAP query for xlat");
818 goto query_error;
819 }
820
821 switch (trunk_request_enqueue(&query->treq, ttrunk->trunk, request, query, NULL)) {
822 case TRUNK_ENQUEUE_OK:
824 break;
825
826 default:
827 REDEBUG("Unable to enqueue LDAP query for xlat");
828 goto query_error;
829 }
830
831 if (fr_timer_in(query, unlang_interpret_event_list(request)->tl, &query->ev, handle_config->res_timeout,
832 false, ldap_query_timeout, query) < 0) {
833 REDEBUG("Unable to set timeout for LDAP query");
835 goto query_error;
836 }
837
839}
840
841/** User object lookup as part of group membership xlat
842 *
843 * Called if the ldap membership xlat is used and the user DN is not already known
844 */
846 request_t *request, void *uctx)
847{
848 ldap_group_xlat_ctx_t *xlat_ctx = talloc_get_type_abort(uctx, ldap_group_xlat_ctx_t);
849
850 if (xlat_ctx->env_data->user_filter.type == FR_TYPE_STRING) xlat_ctx->filter = &xlat_ctx->env_data->user_filter;
851
852 xlat_ctx->basedn = &xlat_ctx->env_data->user_base;
853
854 return rlm_ldap_find_user_async(xlat_ctx, xlat_ctx->inst, request, xlat_ctx->basedn, xlat_ctx->filter,
855 xlat_ctx->ttrunk, xlat_ctx->attrs, &xlat_ctx->query);
856}
857
858/** Cancel an in-progress query for the LDAP group membership xlat
859 *
860 */
861static void ldap_group_xlat_cancel(UNUSED request_t *request, UNUSED fr_signal_t action, void *uctx)
862{
863 ldap_group_xlat_ctx_t *xlat_ctx = talloc_get_type_abort(uctx, ldap_group_xlat_ctx_t);
864
865 if (!xlat_ctx->query || !xlat_ctx->query->treq) return;
866
868}
869
870#define REPEAT_LDAP_MEMBEROF_XLAT_RESULTS \
871 if (unlang_function_repeat_set(request, ldap_group_xlat_results) < 0) do { \
872 rcode = RLM_MODULE_FAIL; \
873 goto finish; \
874 } while (0)
875
876/** Run the state machine for the LDAP membership xlat
877 *
878 * This is called after each async lookup is completed
879 */
881 request_t *request, void *uctx)
882{
883 ldap_group_xlat_ctx_t *xlat_ctx = talloc_get_type_abort(uctx, ldap_group_xlat_ctx_t);
884 rlm_ldap_t const *inst = xlat_ctx->inst;
886
887 switch (xlat_ctx->status) {
889 if (!xlat_ctx->dn) xlat_ctx->dn = rlm_find_user_dn_cached(request);
891
892 if (inst->group.obj_membership_filter) {
897 }
898 }
900
902 if (xlat_ctx->found) {
903 rcode = RLM_MODULE_OK;
904 goto finish;
905 }
906
907 if (inst->group.userobj_membership_attr) {
912 }
913 }
915
917 if (xlat_ctx->found) rcode = RLM_MODULE_OK;
918 break;
919 }
920
921finish:
922 RETURN_MODULE_RCODE(rcode);
923}
924
925/** Process the results of evaluating LDAP group membership
926 *
927 */
928static xlat_action_t ldap_group_xlat_resume(TALLOC_CTX *ctx, fr_dcursor_t *out, xlat_ctx_t const *xctx,
929 UNUSED request_t *request, UNUSED fr_value_box_list_t *in)
930{
931 ldap_group_xlat_ctx_t *xlat_ctx = talloc_get_type_abort(xctx->rctx, ldap_group_xlat_ctx_t);
932 fr_value_box_t *vb;
933
935 vb->vb_bool = xlat_ctx->found;
937
938 return XLAT_ACTION_DONE;
939}
940
942 { .required = true, .concat = true, .type = FR_TYPE_STRING, .safe_for = LDAP_URI_SAFE_FOR },
944};
945
946/** Check for a user being in a LDAP group
947 *
948 * @ingroup xlat_functions
949 */
950static xlat_action_t ldap_group_xlat(TALLOC_CTX *ctx, fr_dcursor_t *out, xlat_ctx_t const *xctx,
951 request_t *request, fr_value_box_list_t *in)
952{
953 fr_value_box_t *vb = NULL, *group_vb = fr_value_box_list_pop_head(in);
955 fr_ldap_thread_t *t = talloc_get_type_abort(xctx->mctx->thread, fr_ldap_thread_t);
956 ldap_xlat_memberof_call_env_t *env_data = talloc_get_type_abort(xctx->env_data, ldap_xlat_memberof_call_env_t);
957 bool group_is_dn;
959
960 RDEBUG2("Searching for user in group \"%pV\"", group_vb);
961
962 if (group_vb->vb_length == 0) {
963 REDEBUG("Cannot do comparison (group name is empty)");
964 return XLAT_ACTION_FAIL;
965 }
966
967 group_is_dn = fr_ldap_util_is_dn(group_vb->vb_strvalue, group_vb->vb_length);
968 if (group_is_dn) {
969 char *norm;
970 size_t len;
971
972 MEM(norm = talloc_array(group_vb, char, talloc_array_length(group_vb->vb_strvalue)));
973 len = fr_ldap_util_normalise_dn(norm, group_vb->vb_strvalue);
974
975 /*
976 * Will clear existing buffer (i.e. group_vb->vb_strvalue)
977 */
978 fr_value_box_bstrdup_buffer_shallow(group_vb, group_vb, NULL, norm, group_vb->tainted);
979
980 /*
981 * Trim buffer to match normalised DN
982 */
983 fr_value_box_bstr_realloc(group_vb, NULL, group_vb, len);
984 }
985
986 if ((group_is_dn && inst->group.cacheable_dn) || (!group_is_dn && inst->group.cacheable_name)) {
987 rlm_rcode_t our_rcode;
988
989 rlm_ldap_check_cached(&our_rcode, inst, request, group_vb);
990 switch (our_rcode) {
992 RDEBUG2("User is not a member of \"%pV\"", group_vb);
993 return XLAT_ACTION_DONE;
994
995 case RLM_MODULE_OK:
996 MEM(vb = fr_value_box_alloc(ctx, FR_TYPE_BOOL, NULL));
997 vb->vb_bool = true;
999 return XLAT_ACTION_DONE;
1000
1001 /*
1002 * Fallback to dynamic search
1003 */
1004 default:
1005 break;
1006 }
1007 }
1008
1010
1012 .inst = inst,
1013 .group = group_vb,
1014 .dn = rlm_find_user_dn_cached(request),
1015 .attrs = { inst->group.userobj_membership_attr, NULL },
1016 .group_is_dn = group_is_dn,
1017 .env_data = env_data
1018 };
1019
1020 xlat_ctx->ttrunk = fr_thread_ldap_trunk_get(t, inst->handle_config.server, inst->handle_config.admin_identity,
1021 inst->handle_config.admin_password, request, &inst->handle_config);
1022
1023 if (!xlat_ctx->ttrunk) {
1024 REDEBUG("Unable to get LDAP trunk for group membership check");
1025 error:
1027 return XLAT_ACTION_FAIL;
1028 }
1029
1030 if (unlang_xlat_yield(request, ldap_group_xlat_resume, NULL, 0, xlat_ctx) != XLAT_ACTION_YIELD) goto error;
1031
1034 UNLANG_SUB_FRAME, xlat_ctx) < 0) goto error;
1035
1037}
1038
1045
1046/** Return whether evaluating the profile was successful
1047 *
1048 */
1050 UNUSED request_t *request, UNUSED fr_value_box_list_t *in)
1051{
1052 ldap_xlat_profile_ctx_t *xlat_ctx = talloc_get_type_abort(xctx->rctx, ldap_xlat_profile_ctx_t);
1053 fr_value_box_t *vb;
1054
1056 vb->vb_bool = (xlat_ctx->ret == LDAP_RESULT_SUCCESS) && (xlat_ctx->applied > 0);
1058
1059 return XLAT_ACTION_DONE;
1060}
1061
1063{
1064 if (to_free->url) {
1065 ldap_free_urldesc(to_free->url);
1066 to_free->url = NULL;
1067 }
1068 return 0;
1069}
1070
1071/** Expand an LDAP URL into a query, applying the results using the user update map.
1072 *
1073 * For fetching profiles by DN.
1074 *
1075 * @ingroup xlat_functions
1076 */
1078 xlat_ctx_t const *xctx,
1079 request_t *request, fr_value_box_list_t *in)
1080{
1082 fr_ldap_thread_t *t = talloc_get_type_abort(xctx->mctx->thread, fr_ldap_thread_t);
1083 ldap_xlat_profile_call_env_t *env_data = talloc_get_type_abort(xctx->env_data, ldap_xlat_profile_call_env_t);
1084 fr_value_box_t *uri_components, *uri;
1085 char *host_url, *host = NULL;
1086 fr_ldap_config_t const *handle_config = t->config;
1087 fr_ldap_thread_trunk_t *ttrunk;
1089
1090 int ldap_url_ret;
1091
1092 char const *dn;
1093 char const *filter;
1094 int scope;
1095
1096 bool is_dn;
1097
1098 XLAT_ARGS(in, &uri_components);
1099
1100 is_dn = (fr_uri_has_scheme(&uri_components->vb_group, ldap_uri_scheme_table, ldap_uri_scheme_table_len, -1) < 0);
1101
1102 /*
1103 * Apply different escaping rules based on whether the first
1104 * arg lookgs like a URI or a DN.
1105 */
1106 if (is_dn) {
1107 if (fr_uri_escape_list(&uri_components->vb_group, ldap_dn_parts, NULL) < 0) {
1108 RPERROR("Failed to escape LDAP DN");
1109 return XLAT_ACTION_FAIL;
1110 }
1111 } else {
1112 if (fr_uri_escape_list(&uri_components->vb_group, ldap_uri_parts, NULL) < 0) {
1113 RPERROR("Failed to escape LDAP URI");
1114 return XLAT_ACTION_FAIL;
1115 }
1116 }
1117
1118 /*
1119 * Smush everything into the first URI box
1120 */
1121 uri = fr_value_box_list_head(&uri_components->vb_group);
1122 if (fr_value_box_list_concat_in_place(uri, uri, &uri_components->vb_group,
1123 FR_TYPE_STRING, FR_VALUE_BOX_LIST_FREE, true, SIZE_MAX) < 0) {
1124 RPEDEBUG("Failed concatenating input");
1125 return XLAT_ACTION_FAIL;
1126 }
1127
1128 /*
1129 * Allocate a resumption context to store temporary resource and results
1130 */
1132 talloc_set_destructor(xlat_ctx, ldap_xlat_profile_ctx_free);
1133
1134 if (is_dn) {
1135 host_url = handle_config->server;
1136 dn = talloc_typed_strdup_buffer(xlat_ctx, uri->vb_strvalue);
1137 filter = env_data->profile_filter.vb_strvalue;
1138 scope = inst->profile.obj_scope;
1139 } else {
1140 ldap_url_ret = ldap_url_parse(uri->vb_strvalue, &xlat_ctx->url);
1141 if (ldap_url_ret != LDAP_URL_SUCCESS){
1142 RPEDEBUG("Parsing LDAP URL failed - %s", fr_ldap_url_err_to_str(ldap_url_ret));
1143 error:
1145 return XLAT_ACTION_FAIL;
1146 }
1147
1148 /*
1149 * The URL must specify a DN
1150 */
1151 if (!xlat_ctx->url->lud_dn) {
1152 REDEBUG("LDAP URI must specify a profile DN");
1153 goto error;
1154 }
1155
1156 dn = xlat_ctx->url->lud_dn;
1157 /*
1158 * Either we use the filter from the URL or we use the default filter
1159 * configured for profiles.
1160 */
1161 filter = xlat_ctx->url->lud_filter ? xlat_ctx->url->lud_filter : env_data->profile_filter.vb_strvalue;
1162
1163 /*
1164 * Determine if the URL includes a scope.
1165 */
1166 scope = xlat_ctx->url->lud_scope == LDAP_SCOPE_DEFAULT ? inst->profile.obj_scope : xlat_ctx->url->lud_scope;
1167
1168 /*
1169 * If the URL is <scheme>:/// the parsed host will be NULL - use config default
1170 */
1171 if (!xlat_ctx->url->lud_host) {
1172 host_url = handle_config->server;
1173 } else {
1174 host_url = host = host_uri_canonify(request, xlat_ctx->url, uri);
1175 if (unlikely(host_url == NULL)) goto error;
1176 }
1177 }
1178
1179 /*
1180 * Synchronous expansion of maps (fixme!)
1181 */
1182 if (fr_ldap_map_expand(xlat_ctx, &xlat_ctx->expanded, request, env_data->profile_map,
1183 inst->valuepair_attr, inst->profile.check_attr, inst->profile.fallthrough_attr) < 0) goto error;
1184 ttrunk = fr_thread_ldap_trunk_get(t, host_url, handle_config->admin_identity,
1185 handle_config->admin_password, request, handle_config);
1186 if (host) ldap_memfree(host);
1187 if (!ttrunk) {
1188 REDEBUG("Unable to get LDAP query for xlat");
1189 goto error;
1190 }
1191
1192 if (unlang_xlat_yield(request, ldap_profile_xlat_resume, NULL, 0, xlat_ctx) != XLAT_ACTION_YIELD) goto error;
1193
1194 /*
1195 * Pushes a frame onto the stack to retrieve and evaluate a profile
1196 */
1197 if (rlm_ldap_map_profile(&xlat_ctx->ret, &xlat_ctx->applied, inst, request, ttrunk, dn,
1198 scope, filter, &xlat_ctx->expanded) < 0) goto error;
1199
1201}
1202
1203/*
1204 * Verify the result of the map.
1205 */
1206static int ldap_map_verify(CONF_SECTION *cs, UNUSED void const *mod_inst, UNUSED void *proc_inst,
1207 tmpl_t const *src, UNUSED map_list_t const *maps)
1208{
1209 if (!src) {
1210 cf_log_err(cs, "Missing LDAP URI");
1211
1212 return -1;
1213 }
1214
1215 return 0;
1216}
1217
1218/** Process the results of an LDAP map query
1219 *
1220 * @param[out] p_result Result of applying the map.
1221 * @param[in] priority Unused.
1222 * @param[in] request Current request.
1223 * @param[in] uctx Map context.
1224 * @return One of UNLANG_ACTION_*
1225 */
1226static unlang_action_t mod_map_resume(rlm_rcode_t *p_result, UNUSED int *priority, request_t *request, void *uctx)
1227{
1228 ldap_map_ctx_t *map_ctx = talloc_get_type_abort(uctx, ldap_map_ctx_t);
1229 fr_ldap_query_t *query = map_ctx->query;
1230 fr_ldap_map_exp_t *expanded = &map_ctx->expanded;
1232 LDAPMessage *entry;
1233 map_t const *map;
1234
1235 switch (query->ret) {
1237 rcode = RLM_MODULE_UPDATED;
1238 break;
1239
1241 case LDAP_RESULT_BAD_DN:
1242 goto finish;
1243
1244 default:
1245 rcode = RLM_MODULE_FAIL;
1246 goto finish;
1247 }
1248
1249 for (entry = ldap_first_entry(query->ldap_conn->handle, query->result);
1250 entry;
1251 entry = ldap_next_entry(query->ldap_conn->handle, entry)) {
1252 char *dn = NULL;
1253 int i;
1254
1255 if (RDEBUG_ENABLED2) {
1256 dn = ldap_get_dn(query->ldap_conn->handle, entry);
1257 RDEBUG2("Processing \"%s\"", dn);
1258 }
1259
1260 RINDENT();
1261 for (map = map_list_head(map_ctx->maps), i = 0;
1262 map != NULL;
1263 map = map_list_next(map_ctx->maps, map), i++) {
1264 int ret;
1265 fr_ldap_result_t attr;
1266
1267 attr.values = ldap_get_values_len(query->ldap_conn->handle, entry, expanded->attrs[i]);
1268 if (!attr.values) {
1269 /*
1270 * Many LDAP directories don't expose the DN of
1271 * the object as an attribute, so we need this
1272 * hack, to allow the user to retrieve it.
1273 */
1274 if (strcmp(LDAP_VIRTUAL_DN_ATTR, expanded->attrs[i]) == 0) {
1275 struct berval value;
1276 struct berval *values[2] = { &value, NULL };
1277
1278 if (!dn) dn = ldap_get_dn(query->ldap_conn->handle, entry);
1279 value.bv_val = dn;
1280 value.bv_len = strlen(dn);
1281
1282 attr.values = values;
1283 attr.count = 1;
1284
1285 ret = map_to_request(request, map, fr_ldap_map_getvalue, &attr);
1286 if (ret == -1) {
1287 rcode = RLM_MODULE_FAIL;
1288 ldap_memfree(dn);
1289 goto finish;
1290 }
1291 continue;
1292 }
1293
1294 RDEBUG3("Attribute \"%s\" not found in LDAP object", expanded->attrs[i]);
1295
1296 continue;
1297 }
1298 attr.count = ldap_count_values_len(attr.values);
1299
1300 ret = map_to_request(request, map, fr_ldap_map_getvalue, &attr);
1301 ldap_value_free_len(attr.values);
1302 if (ret == -1) {
1303 rcode = RLM_MODULE_FAIL;
1304 ldap_memfree(dn);
1305 goto finish;
1306 }
1307 }
1308 ldap_memfree(dn);
1309 REXDENT();
1310 }
1311
1312finish:
1313 RETURN_MODULE_RCODE(rcode);
1314}
1315
1316/** Ensure map context is properly cleared up
1317 *
1318 */
1319static int map_ctx_free(ldap_map_ctx_t *map_ctx)
1320{
1321 int i = 0;
1322 talloc_free(map_ctx->expanded.ctx);
1323 ldap_free_urldesc(map_ctx->ldap_url);
1324 while ((i < LDAP_MAX_CONTROLS) && map_ctx->serverctrls[i]) {
1325 ldap_control_free(map_ctx->serverctrls[i]);
1326 i++;
1327 }
1328 return (0);
1329}
1330
1331/** Perform a search and map the result of the search to server attributes
1332 *
1333 * Unlike LDAP xlat, this can be used to process attributes from multiple entries.
1334 *
1335 * @todo For xlat expansions we need to parse the raw URL first, and then apply
1336 * different escape functions to the different parts.
1337 *
1338 * @param[out] p_result Result of map expansion:
1339 * - #RLM_MODULE_NOOP no rows were returned.
1340 * - #RLM_MODULE_UPDATED if one or more #fr_pair_t were added to the #request_t.
1341 * - #RLM_MODULE_FAIL if an error occurred.
1342 * @param[in] mod_inst #rlm_ldap_t
1343 * @param[in] proc_inst unused.
1344 * @param[in,out] request The current request.
1345 * @param[in] url LDAP url specifying base DN and filter.
1346 * @param[in] maps Head of the map list.
1347 * @return UNLANG_ACTION_CALCULATE_RESULT
1348 */
1349static unlang_action_t mod_map_proc(rlm_rcode_t *p_result, void const *mod_inst, UNUSED void *proc_inst, request_t *request,
1350 fr_value_box_list_t *url, map_list_t const *maps)
1351{
1353 fr_ldap_thread_t *thread = talloc_get_type_abort(module_thread(inst->mi)->data, fr_ldap_thread_t);
1354
1355 LDAPURLDesc *ldap_url;
1356 int ldap_url_ret;
1357 fr_ldap_thread_trunk_t *ttrunk;
1358
1359 fr_value_box_t *url_head;
1360 ldap_map_ctx_t *map_ctx;
1361 char *host_url, *host = NULL;
1362
1363 if (fr_uri_escape_list(url, ldap_uri_parts, NULL) < 0) {
1364 RPERROR("Failed to escape LDAP URI");
1366 }
1367
1368 url_head = fr_value_box_list_head(url);
1369 if (!url_head) {
1370 REDEBUG("LDAP URL cannot be (null)");
1372 }
1373
1374 if (fr_value_box_list_concat_in_place(url_head, url_head, url, FR_TYPE_STRING,
1375 FR_VALUE_BOX_LIST_FREE, true, SIZE_MAX) < 0) {
1376 RPEDEBUG("Failed concatenating input");
1378 }
1379
1380 if (!ldap_is_ldap_url(url_head->vb_strvalue)) {
1381 REDEBUG("Map query string does not look like a valid LDAP URI");
1383 }
1384
1385 MEM(map_ctx = talloc_zero(unlang_interpret_frame_talloc_ctx(request), ldap_map_ctx_t));
1386 talloc_set_destructor(map_ctx, map_ctx_free);
1387 map_ctx->maps = maps;
1388
1389 ldap_url_ret = ldap_url_parse(url_head->vb_strvalue, &map_ctx->ldap_url);
1390 if (ldap_url_ret != LDAP_URL_SUCCESS){
1391 RPEDEBUG("Parsing LDAP URL failed - %s", fr_ldap_url_err_to_str(ldap_url_ret));
1392 fail:
1393 talloc_free(map_ctx);
1395 }
1396 ldap_url = map_ctx->ldap_url;
1397
1398 if (ldap_url->lud_exts) {
1400 ldap_url->lud_exts) < 0) {
1401 RPERROR("Parsing URL extensions failed");
1402 goto fail;
1403 }
1404 }
1405
1406 /*
1407 * Expand the RHS of the maps to get the name of the attributes.
1408 */
1409 if (fr_ldap_map_expand(map_ctx, &map_ctx->expanded, request, maps, NULL, NULL, NULL) < 0) goto fail;
1410
1411 /*
1412 * If the URL is <scheme>:/// the parsed host will be NULL - use config default
1413 */
1414 if (!ldap_url->lud_host) {
1415 host_url = inst->handle_config.server;
1416 } else {
1417 host_url = host = host_uri_canonify(request, ldap_url, url_head);
1418 if (unlikely(host_url == NULL)) goto fail;
1419 }
1420
1421 ttrunk = fr_thread_ldap_trunk_get(thread, host_url, inst->handle_config.admin_identity,
1422 inst->handle_config.admin_password, request, &inst->handle_config);
1423 if (host) ldap_memfree(host);
1424 if (!ttrunk) goto fail;
1425
1426 if (unlang_function_push(request, NULL, mod_map_resume, NULL, 0,
1427 UNLANG_SUB_FRAME, map_ctx) != UNLANG_ACTION_PUSHED_CHILD) goto fail;
1428
1429 return fr_ldap_trunk_search(map_ctx, &map_ctx->query, request, ttrunk, ldap_url->lud_dn,
1430 ldap_url->lud_scope, ldap_url->lud_filter, map_ctx->expanded.attrs,
1431 map_ctx->serverctrls, NULL);
1432}
1433
1434static unlang_action_t CC_HINT(nonnull) mod_authenticate(rlm_rcode_t *p_result, module_ctx_t const *mctx, request_t *request)
1435{
1437 fr_ldap_thread_t *thread = talloc_get_type_abort(module_thread(inst->mi)->data, fr_ldap_thread_t);
1438 ldap_auth_ctx_t *auth_ctx;
1439 ldap_auth_call_env_t *call_env = talloc_get_type_abort(mctx->env_data, ldap_auth_call_env_t);
1440
1441 if (call_env->password.type != FR_TYPE_STRING) {
1442 RWDEBUG("You have set \"Auth-Type := LDAP\" somewhere");
1443 RWDEBUG("without checking if %s is present", call_env->password_tmpl->name);
1444 RWDEBUG("*********************************************");
1445 RWDEBUG("* THAT CONFIGURATION IS WRONG. DELETE IT. ");
1446 RWDEBUG("* YOU ARE PREVENTING THE SERVER FROM WORKING");
1447 RWDEBUG("*********************************************");
1448
1449 REDEBUG("Attribute \"%s\" is required for authentication", call_env->password_tmpl->name);
1451 }
1452
1453 auth_ctx = talloc(unlang_interpret_frame_talloc_ctx(request), ldap_auth_ctx_t);
1454 *auth_ctx = (ldap_auth_ctx_t){
1455 .password = call_env->password.vb_strvalue,
1456 .thread = thread,
1457 .inst = inst,
1458 .call_env = call_env
1459 };
1460
1461 /*
1462 * Find the user's DN
1463 */
1464 auth_ctx->dn = rlm_find_user_dn_cached(request);
1465
1466 /*
1467 * The DN is required for non-SASL auth
1468 */
1469 if (!auth_ctx->dn && (call_env->user_sasl_mech.type != FR_TYPE_STRING)) {
1470 REDEBUG("No DN found for authentication. Populate control.%s with the DN to use in authentication.",
1471 attr_ldap_userdn->name);
1472 REDEBUG("You should call %s in the recv section and check its return.", inst->mi->name);
1473 talloc_free(auth_ctx);
1475 }
1476
1477 /*
1478 * Log the password
1479 */
1480 if (RDEBUG_ENABLED3) {
1481 RDEBUG("Login attempt with password \"%pV\"", &call_env->password);
1482 } else {
1483 RDEBUG2("Login attempt with password");
1484 }
1485
1486 /*
1487 * SASL bind auth will have the mech set.
1488 */
1489 if (auth_ctx->call_env->user_sasl_mech.type == FR_TYPE_STRING) {
1490#ifdef WITH_SASL
1491 RDEBUG2("Login attempt using identity \"%pV\"", &call_env->user_sasl_authname);
1492
1493 return fr_ldap_sasl_bind_auth_async(request, auth_ctx->thread, call_env->user_sasl_mech.vb_strvalue,
1494 call_env->user_sasl_authname.vb_strvalue,
1495 auth_ctx->password, call_env->user_sasl_proxy.vb_strvalue,
1496 call_env->user_sasl_realm.vb_strvalue);
1497#else
1498 RDEBUG("Configuration item 'sasl.mech' is not supported. "
1499 "The linked version of libldap does not provide ldap_sasl_bind( function");
1501#endif
1502 }
1503
1504 RDEBUG2("Login attempt as \"%s\"", auth_ctx->dn);
1505
1506 return fr_ldap_bind_auth_async(request, auth_ctx->thread, auth_ctx->dn, auth_ctx->password);
1507}
1508
1509/** Start LDAP authorization with async lookup of user DN
1510 *
1511 */
1513 request_t *request, void *uctx)
1514{
1515 ldap_autz_ctx_t *autz_ctx = talloc_get_type_abort(uctx, ldap_autz_ctx_t);
1516 return rlm_ldap_find_user_async(autz_ctx, autz_ctx->inst, request, &autz_ctx->call_env->user_base,
1517 &autz_ctx->call_env->user_filter, autz_ctx->ttrunk, autz_ctx->expanded.attrs,
1518 &autz_ctx->query);
1519}
1520
1521#define REPEAT_MOD_AUTHORIZE_RESUME \
1522 if (unlang_function_repeat_set(request, mod_authorize_resume) < 0) do { \
1523 rcode = RLM_MODULE_FAIL; \
1524 goto finish; \
1525 } while (0)
1526
1527/** Resume function called after each potential yield in LDAP authorization
1528 *
1529 * Some operations may or may not yield. E.g. if group membership is
1530 * read from an attribute returned with the user object and is already
1531 * in the correct form, that will not yield.
1532 * Hence, each state may fall through to the next.
1533 *
1534 * @param p_result Result of current authorization.
1535 * @param priority Unused.
1536 * @param request Current request.
1537 * @param uctx Current authorization context.
1538 * @return One of the RLM_MODULE_* values.
1539 */
1540static unlang_action_t mod_authorize_resume(rlm_rcode_t *p_result, UNUSED int *priority, request_t *request, void *uctx)
1541{
1542 ldap_autz_ctx_t *autz_ctx = talloc_get_type_abort(uctx, ldap_autz_ctx_t);
1544 ldap_autz_call_env_t *call_env = talloc_get_type_abort(autz_ctx->call_env, ldap_autz_call_env_t);
1545 int ldap_errno;
1546 rlm_rcode_t rcode = RLM_MODULE_OK;
1547 LDAP *handle = fr_ldap_handle_thread_local();
1548
1549 /*
1550 * If a previous async call returned one of the "failure" results just return.
1551 */
1552 switch (*p_result) {
1553 case RLM_MODULE_REJECT:
1554 case RLM_MODULE_FAIL:
1555 case RLM_MODULE_HANDLED:
1556 case RLM_MODULE_INVALID:
1558 rcode = *p_result;
1559 goto finish;
1560
1561 default:
1562 break;
1563 }
1564
1565 switch (autz_ctx->status) {
1566 case LDAP_AUTZ_FIND:
1567 /*
1568 * If a user entry has been found the current rcode will be OK
1569 */
1570 if (*p_result != RLM_MODULE_OK) return UNLANG_ACTION_CALCULATE_RESULT;
1571
1572 autz_ctx->entry = ldap_first_entry(handle, autz_ctx->query->result);
1573 if (!autz_ctx->entry) {
1574 ldap_get_option(handle, LDAP_OPT_RESULT_CODE, &ldap_errno);
1575 REDEBUG("Failed retrieving entry: %s", ldap_err2string(ldap_errno));
1576
1577 goto finish;
1578 }
1579
1580 /*
1581 * Check for access.
1582 */
1583 if (inst->user.obj_access_attr) {
1584 autz_ctx->access_state = rlm_ldap_check_access(inst, request, autz_ctx->entry);
1585 switch (autz_ctx->access_state) {
1587 break;
1588
1590 if (inst->group.skip_on_suspend) goto post_group;
1591 break;
1592
1594 rcode = RLM_MODULE_DISALLOW;
1595 goto finish;
1596 }
1597 }
1598
1599 /*
1600 * Check if we need to cache group memberships
1601 */
1602 if ((inst->group.cacheable_dn || inst->group.cacheable_name) && (inst->group.userobj_membership_attr)) {
1604 if (rlm_ldap_cacheable_userobj(&rcode, request, autz_ctx,
1605 inst->group.userobj_membership_attr) == UNLANG_ACTION_PUSHED_CHILD) {
1606 autz_ctx->status = LDAP_AUTZ_GROUP;
1608 }
1609 if (rcode != RLM_MODULE_OK) goto finish;
1610 }
1612
1613 case LDAP_AUTZ_GROUP:
1614 if (inst->group.cacheable_dn || inst->group.cacheable_name) {
1616 if (rlm_ldap_cacheable_groupobj(&rcode, request, autz_ctx) == UNLANG_ACTION_PUSHED_CHILD) {
1617 autz_ctx->status = LDAP_AUTZ_POST_GROUP;
1619 }
1620 if (rcode != RLM_MODULE_OK) goto finish;
1621 }
1623
1625 post_group:
1626#ifdef WITH_EDIR
1627 /*
1628 * We already have a Password.Cleartext. Skip edir.
1629 */
1630 if (fr_pair_find_by_da_nested(&request->control_pairs, NULL, attr_cleartext_password)) goto skip_edir;
1631
1632 /*
1633 * Retrieve Universal Password if we use eDirectory
1634 */
1635 if (inst->edir) {
1636 autz_ctx->dn = rlm_find_user_dn_cached(request);
1637
1638 /*
1639 * Retrieve universal password
1640 */
1642 autz_ctx->status = LDAP_AUTZ_EDIR_BIND;
1643 return fr_ldap_edir_get_password(request, autz_ctx->dn, autz_ctx->ttrunk,
1645 }
1647
1648 case LDAP_AUTZ_EDIR_BIND:
1649 if (inst->edir && inst->edir_autz) {
1650 fr_pair_t *password = fr_pair_find_by_da(&request->control_pairs,
1652 fr_ldap_thread_t *thread = talloc_get_type_abort(module_thread(inst->mi)->data,
1654
1655 if (!password) {
1656 REDEBUG("Failed to find control.Password.Cleartext");
1657 rcode = RLM_MODULE_FAIL;
1658 goto finish;
1659 }
1660
1661 RDEBUG2("Binding as %s for eDirectory authorization checks", autz_ctx->dn);
1662
1663 /*
1664 * Bind as the user
1665 */
1667 autz_ctx->status = LDAP_AUTZ_POST_EDIR;
1668 return fr_ldap_bind_auth_async(request, thread, autz_ctx->dn, password->vp_strvalue);
1669 }
1670 goto skip_edir;
1671
1672 case LDAP_AUTZ_POST_EDIR:
1673 {
1674 /*
1675 * The result of the eDirectory user bind will be in p_result.
1676 * Anything other than RLM_MODULE_OK is a failure.
1677 */
1678 if (*p_result != RLM_MODULE_OK) {
1679 rcode = *p_result;
1680 goto finish;
1681 }
1682
1683 }
1685
1686#endif
1687 case LDAP_AUTZ_MAP:
1688#ifdef WITH_EDIR
1689 skip_edir:
1690#endif
1691 if (!map_list_empty(call_env->user_map) || inst->valuepair_attr) {
1692 RDEBUG2("Processing user attributes");
1693 RINDENT();
1694 if (fr_ldap_map_do(request, NULL, inst->valuepair_attr,
1695 &autz_ctx->expanded, autz_ctx->entry) > 0) rcode = RLM_MODULE_UPDATED;
1696 REXDENT();
1697 rlm_ldap_check_reply(request, inst, autz_ctx->dlinst->name, call_env->expect_password->vb_bool, autz_ctx->ttrunk);
1698 }
1700
1702 /*
1703 * Apply ONE user profile, or a default user profile.
1704 */
1705 if (call_env->default_profile.type == FR_TYPE_STRING) {
1706 unlang_action_t ret;
1707
1709 ret = rlm_ldap_map_profile(NULL, NULL, inst, request, autz_ctx->ttrunk, autz_ctx->profile_value,
1710 inst->profile.obj_scope, call_env->default_profile.vb_strvalue, &autz_ctx->expanded);
1711 switch (ret) {
1712 case UNLANG_ACTION_FAIL:
1713 rcode = RLM_MODULE_FAIL;
1714 goto finish;
1715
1719
1720 default:
1721 break;
1722 }
1723 }
1725
1727 /*
1728 * Did we jump back her after applying the default profile?
1729 */
1730 if (autz_ctx->status == LDAP_AUTZ_POST_DEFAULT_PROFILE) {
1731 rcode = RLM_MODULE_UPDATED;
1732 }
1733 /*
1734 * Apply a SET of user profiles.
1735 */
1736 switch (autz_ctx->access_state) {
1738 if (inst->profile.attr) {
1739 int count;
1740
1741 autz_ctx->profile_values = ldap_get_values_len(handle, autz_ctx->entry, inst->profile.attr);
1742 count = ldap_count_values_len(autz_ctx->profile_values);
1743 if (count > 0) {
1744 RDEBUG2("Processing %i profile(s) found in attribute \"%s\"", count, inst->profile.attr);
1745 if (RDEBUG_ENABLED3) {
1746 for (struct berval **bv_p = autz_ctx->profile_values; *bv_p; bv_p++) {
1747 RDEBUG3("Will evaluate profile with DN \"%pV\"", fr_box_strvalue_len((*bv_p)->bv_val, (*bv_p)->bv_len));
1748 }
1749 }
1750 } else {
1751 RDEBUG2("No profile(s) found in attribute \"%s\"", inst->profile.attr);
1752 }
1753 }
1754 break;
1755
1757 if (inst->profile.attr_suspend) {
1758 int count;
1759
1760 autz_ctx->profile_values = ldap_get_values_len(handle, autz_ctx->entry, inst->profile.attr_suspend);
1761 count = ldap_count_values_len(autz_ctx->profile_values);
1762 if (count > 0) {
1763 RDEBUG2("Processing %i suspension profile(s) found in attribute \"%s\"", count, inst->profile.attr_suspend);
1764 if (RDEBUG_ENABLED3) {
1765 for (struct berval **bv_p = autz_ctx->profile_values; *bv_p; bv_p++) {
1766 RDEBUG3("Will evaluate suspenension profile with DN \"%pV\"",
1767 fr_box_strvalue_len((*bv_p)->bv_val, (*bv_p)->bv_len));
1768 }
1769 }
1770 } else {
1771 RDEBUG2("No suspension profile(s) found in attribute \"%s\"", inst->profile.attr_suspend);
1772 }
1773 }
1774 break;
1775
1777 break;
1778 }
1779
1781
1783 /*
1784 * After each profile has been applied, execution will restart here.
1785 * Start by clearing the previously used value.
1786 */
1787 if (autz_ctx->profile_value) {
1788 TALLOC_FREE(autz_ctx->profile_value);
1789 rcode = RLM_MODULE_UPDATED; /* We're back here after applying a profile successfully */
1790 }
1791
1792 if (autz_ctx->profile_values && autz_ctx->profile_values[autz_ctx->value_idx]) {
1793 unlang_action_t ret;
1794
1795 autz_ctx->profile_value = fr_ldap_berval_to_string(autz_ctx, autz_ctx->profile_values[autz_ctx->value_idx++]);
1797 ret = rlm_ldap_map_profile(NULL, NULL, inst, request, autz_ctx->ttrunk, autz_ctx->profile_value,
1798 inst->profile.obj_scope, autz_ctx->call_env->profile_filter.vb_strvalue, &autz_ctx->expanded);
1799 switch (ret) {
1800 case UNLANG_ACTION_FAIL:
1801 rcode = RLM_MODULE_FAIL;
1802 goto finish;
1803
1805 autz_ctx->status = LDAP_AUTZ_USER_PROFILE;
1807
1808 default:
1809 break;
1810 }
1811 }
1812 break;
1813 }
1814
1815finish:
1816 talloc_free(autz_ctx);
1817
1818 RETURN_MODULE_RCODE(rcode);
1819}
1820
1821/** Clear up when cancelling a mod_authorize call
1822 *
1823 */
1824static void mod_authorize_cancel(UNUSED request_t *request, UNUSED fr_signal_t action, void *uctx)
1825{
1826 ldap_autz_ctx_t *autz_ctx = talloc_get_type_abort(uctx, ldap_autz_ctx_t);
1827
1828 if (autz_ctx->query && autz_ctx->query->treq) trunk_request_signal_cancel(autz_ctx->query->treq);
1829}
1830
1831/** Ensure authorization context is properly cleared up
1832 *
1833 */
1834static int autz_ctx_free(ldap_autz_ctx_t *autz_ctx)
1835{
1836 talloc_free(autz_ctx->expanded.ctx);
1837 if (autz_ctx->profile_values) ldap_value_free_len(autz_ctx->profile_values);
1838 return 0;
1839}
1840
1841static unlang_action_t CC_HINT(nonnull) mod_authorize(rlm_rcode_t *p_result, module_ctx_t const *mctx, request_t *request)
1842{
1844 fr_ldap_thread_t *thread = talloc_get_type_abort(module_thread(inst->mi)->data, fr_ldap_thread_t);
1845 ldap_autz_ctx_t *autz_ctx;
1846 fr_ldap_map_exp_t *expanded;
1847 ldap_autz_call_env_t *call_env = talloc_get_type_abort(mctx->env_data, ldap_autz_call_env_t);
1848
1849 MEM(autz_ctx = talloc_zero(unlang_interpret_frame_talloc_ctx(request), ldap_autz_ctx_t));
1850 talloc_set_destructor(autz_ctx, autz_ctx_free);
1851 expanded = &autz_ctx->expanded;
1852
1853 /*
1854 * Don't be tempted to add a check for User-Name or
1855 * User-Password here. LDAP authorization can be used
1856 * for many things besides searching for users.
1857 */
1858 if (fr_ldap_map_expand(autz_ctx, expanded, request, call_env->user_map, inst->valuepair_attr,
1859 inst->profile.check_attr, inst->profile.fallthrough_attr) < 0) {
1860 fail:
1861 talloc_free(autz_ctx);
1863 }
1864
1865 autz_ctx->ttrunk = fr_thread_ldap_trunk_get(thread, inst->handle_config.server, inst->handle_config.admin_identity,
1866 inst->handle_config.admin_password, request, &inst->handle_config);
1867 if (!autz_ctx->ttrunk) goto fail;
1868
1869#define CHECK_EXPANDED_SPACE(_expanded) fr_assert((size_t)_expanded->count < (NUM_ELEMENTS(_expanded->attrs) - 1));
1870
1871 /*
1872 * Add any additional attributes we need for checking access, memberships, and profiles
1873 */
1874 if (inst->user.obj_access_attr) {
1875 CHECK_EXPANDED_SPACE(expanded);
1876 expanded->attrs[expanded->count++] = inst->user.obj_access_attr;
1877 }
1878
1879 if (inst->group.userobj_membership_attr && (inst->group.cacheable_dn || inst->group.cacheable_name)) {
1880 CHECK_EXPANDED_SPACE(expanded);
1881 expanded->attrs[expanded->count++] = inst->group.userobj_membership_attr;
1882 }
1883
1884 if (inst->profile.attr) {
1885 CHECK_EXPANDED_SPACE(expanded);
1886 expanded->attrs[expanded->count++] = inst->profile.attr;
1887 }
1888
1889 if (inst->profile.attr_suspend) {
1890 CHECK_EXPANDED_SPACE(expanded);
1891 expanded->attrs[expanded->count++] = inst->profile.attr_suspend;
1892 }
1893 expanded->attrs[expanded->count] = NULL;
1894
1895 autz_ctx->dlinst = mctx->mi;
1896 autz_ctx->inst = inst;
1897 autz_ctx->call_env = call_env;
1898 autz_ctx->status = LDAP_AUTZ_FIND;
1899
1902
1904}
1905
1906/** Perform async lookup of user DN if required for user modification
1907 *
1908 */
1910 request_t *request, void *uctx)
1911{
1912 ldap_user_modify_ctx_t *usermod_ctx = talloc_get_type_abort(uctx, ldap_user_modify_ctx_t);
1913
1914 return rlm_ldap_find_user_async(usermod_ctx, usermod_ctx->inst, request, &usermod_ctx->call_env->user_base,
1915 &usermod_ctx->call_env->user_filter, usermod_ctx->ttrunk, NULL, NULL);
1916}
1917
1918/** Cancel an in progress user modification.
1919 *
1920 */
1921static void user_modify_cancel(UNUSED request_t *request, UNUSED fr_signal_t action, void *uctx)
1922{
1923 ldap_user_modify_ctx_t *usermod_ctx = talloc_get_type_abort(uctx, ldap_user_modify_ctx_t);
1924
1925 if (!usermod_ctx->query || !usermod_ctx->query->treq) return;
1926
1927 trunk_request_signal_cancel(usermod_ctx->query->treq);
1928}
1929
1930/** Handle results of user modification.
1931 *
1932 */
1933static unlang_action_t user_modify_final(rlm_rcode_t *p_result, UNUSED int *priority,
1934 request_t *request, void *uctx)
1935{
1936 ldap_user_modify_ctx_t *usermod_ctx = talloc_get_type_abort(uctx, ldap_user_modify_ctx_t);
1937 fr_ldap_query_t *query = usermod_ctx->query;
1938 rlm_rcode_t rcode = RLM_MODULE_OK;
1939
1940 switch (query->ret) {
1942 break;
1943
1945 case LDAP_RESULT_BAD_DN:
1946 RDEBUG2("User object \"%s\" not modified", usermod_ctx->dn);
1947 rcode = RLM_MODULE_INVALID;
1948 break;
1949
1950 default:
1951 rcode = RLM_MODULE_FAIL;
1952 break;
1953 }
1954
1955 talloc_free(usermod_ctx);
1956 RETURN_MODULE_RCODE(rcode);
1957}
1958
1960 request_t *request, void *uctx)
1961{
1962 ldap_user_modify_ctx_t *usermod_ctx = talloc_get_type_abort(uctx, ldap_user_modify_ctx_t);
1963 ldap_usermod_call_env_t *call_env = usermod_ctx->call_env;
1964 LDAPMod **modify;
1965 ldap_mod_tmpl_t *mod;
1966 fr_value_box_t *vb = NULL;
1967 int mod_no = usermod_ctx->expanded_mods, i = 0;
1968 struct berval **value_refs;
1969 struct berval *values;
1970
1971 mod = call_env->mod[usermod_ctx->current_mod];
1972
1973 /*
1974 * If the tmpl produced no boxes, skip
1975 */
1976 if ((mod->op != T_OP_CMP_FALSE) && (fr_value_box_list_num_elements(&usermod_ctx->expanded) == 0)) {
1977 RDEBUG2("Expansion \"%s\" produced no value, skipping attribute \"%s\"", mod->tmpl->name, mod->attr);
1978 goto next;
1979 }
1980
1981 switch (mod->op) {
1982 /*
1983 * T_OP_EQ is *NOT* supported, it is impossible to
1984 * support because of the lack of transactions in LDAP
1985 *
1986 * To allow for binary data, all data is provided as berval which
1987 * requires the operation to be logical ORed with LDAP_MOD_BVALUES
1988 */
1989 case T_OP_ADD_EQ:
1990 usermod_ctx->mod_s[mod_no].mod_op = LDAP_MOD_ADD | LDAP_MOD_BVALUES;
1991 break;
1992
1993 case T_OP_SET:
1994 usermod_ctx->mod_s[mod_no].mod_op = LDAP_MOD_REPLACE | LDAP_MOD_BVALUES;
1995 break;
1996
1997 case T_OP_SUB_EQ:
1998 case T_OP_CMP_FALSE:
1999 usermod_ctx->mod_s[mod_no].mod_op = LDAP_MOD_DELETE | LDAP_MOD_BVALUES;
2000 break;
2001
2002 case T_OP_INCRM:
2003 usermod_ctx->mod_s[mod_no].mod_op = LDAP_MOD_INCREMENT | LDAP_MOD_BVALUES;
2004 break;
2005
2006 default:
2007 REDEBUG("Operator '%s' is not supported for LDAP modify operations",
2008 fr_table_str_by_value(fr_tokens_table, mod->op, "<INVALID>"));
2009
2011 }
2012
2013 if (mod->op == T_OP_CMP_FALSE) {
2014 MEM(value_refs = talloc_zero_array(usermod_ctx, struct berval *, 1));
2015 } else {
2016 MEM(value_refs = talloc_zero_array(usermod_ctx, struct berval *,
2017 fr_value_box_list_num_elements(&usermod_ctx->expanded) + 1));
2018 MEM(values = talloc_zero_array(usermod_ctx, struct berval,
2019 fr_value_box_list_num_elements(&usermod_ctx->expanded)));
2020 while ((vb = fr_value_box_list_pop_head(&usermod_ctx->expanded))) {
2021 switch (vb->type) {
2022 case FR_TYPE_OCTETS:
2023 if (vb->vb_length == 0) continue;
2024 memcpy(&values[i].bv_val, &vb->vb_octets, sizeof(values[i].bv_val));
2025 values[i].bv_len = vb->vb_length;
2026 break;
2027
2028 case FR_TYPE_STRING:
2029 populate_string:
2030 if (vb->vb_length == 0) continue;
2031 memcpy(&values[i].bv_val, &vb->vb_strvalue, sizeof(values[i].bv_val));
2032 values[i].bv_len = vb->vb_length;
2033 break;
2034
2035 case FR_TYPE_GROUP:
2036 {
2037 fr_value_box_t *vb_head = fr_value_box_list_head(&vb->vb_group);
2038 if (fr_value_box_list_concat_in_place(vb_head, vb_head, &vb->vb_group, FR_TYPE_STRING,
2039 FR_VALUE_BOX_LIST_FREE, true, SIZE_MAX) < 0) {
2040 RPEDEBUG("Failed concatenating update value");
2042 }
2043 vb = vb_head;
2044 goto populate_string;
2045 }
2046
2047 case FR_TYPE_FIXED_SIZE:
2048 if (fr_value_box_cast_in_place(vb, vb, FR_TYPE_STRING, NULL) < 0) {
2049 RPEDEBUG("Failed casting update value");
2051 }
2052 goto populate_string;
2053
2054 default:
2055 fr_assert(0);
2056
2057 }
2058 value_refs[i] = &values[i];
2059 i++;
2060 }
2061 if (i == 0) {
2062 RDEBUG2("Expansion \"%s\" produced zero length value, skipping attribute \"%s\"", mod->tmpl->name, mod->attr);
2063 goto next;
2064 }
2065 }
2066
2067 /*
2068 * Now everything is evaluated, set up the pointers for the LDAPMod
2069 */
2070 memcpy(&(usermod_ctx->mod_s[mod_no].mod_type), &mod->attr, sizeof(usermod_ctx->mod_s[mod_no].mod_type));
2071 usermod_ctx->mod_s[mod_no].mod_bvalues = value_refs;
2072 usermod_ctx->mod_p[mod_no] = &usermod_ctx->mod_s[mod_no];
2073
2074 usermod_ctx->expanded_mods++;
2075 usermod_ctx->mod_p[usermod_ctx->expanded_mods] = NULL;
2076
2077next:
2078 usermod_ctx->current_mod++;
2079 if (usermod_ctx->current_mod < usermod_ctx->num_mods) {
2081 if (unlang_tmpl_push(usermod_ctx, &usermod_ctx->expanded, request,
2082 usermod_ctx->call_env->mod[usermod_ctx->current_mod]->tmpl, NULL) < 0) RETURN_MODULE_FAIL;
2084 }
2085
2086 modify = usermod_ctx->mod_p;
2087
2089 UNLANG_SUB_FRAME, usermod_ctx) < 0) RETURN_MODULE_FAIL;
2090
2091 return fr_ldap_trunk_modify(usermod_ctx, &usermod_ctx->query, request, usermod_ctx->ttrunk,
2092 usermod_ctx->dn, modify, NULL, NULL);
2093}
2094
2095/** Take the retrieved user DN and launch the async tmpl expansion of mod_values.
2096 *
2097 */
2099 request_t *request, void *uctx)
2100{
2101 ldap_user_modify_ctx_t *usermod_ctx = talloc_get_type_abort(uctx, ldap_user_modify_ctx_t);
2102
2103 /*
2104 * If an LDAP search was used to find the user DN
2105 * usermod_ctx->dn will be NULL.
2106 */
2107 if (!usermod_ctx->dn) usermod_ctx->dn = rlm_find_user_dn_cached(request);
2108
2109 if (!usermod_ctx->dn) {
2110 fail:
2111 talloc_free(usermod_ctx);
2113 }
2114
2115 /*
2116 * Allocate arrays to hold mods. mod_p is one element longer to hold a terminating NULL entry
2117 */
2118 MEM(usermod_ctx->mod_p = talloc_zero_array(usermod_ctx, LDAPMod *, usermod_ctx->num_mods + 1));
2119 MEM(usermod_ctx->mod_s = talloc_array(usermod_ctx, LDAPMod, usermod_ctx->num_mods));
2120 fr_value_box_list_init(&usermod_ctx->expanded);
2121
2122 if (unlang_function_repeat_set(request, user_modify_mod_build_resume) < 0) goto fail;
2123 if (unlang_tmpl_push(usermod_ctx, &usermod_ctx->expanded, request,
2124 usermod_ctx->call_env->mod[0]->tmpl, NULL) < 0) goto fail;
2125
2127}
2128
2129/** Modify user's object in LDAP
2130 *
2131 * Process a modification map to update a user object in the LDAP directory.
2132 *
2133 * The module method called in "accouting" and "send" sections.
2134 */
2135static unlang_action_t CC_HINT(nonnull) mod_modify(rlm_rcode_t *p_result, module_ctx_t const *mctx, request_t *request)
2136{
2138 ldap_usermod_call_env_t *call_env = talloc_get_type_abort(mctx->env_data, ldap_usermod_call_env_t);
2139
2141 fr_ldap_thread_t *thread = talloc_get_type_abort(module_thread(inst->mi)->data, fr_ldap_thread_t);
2142 ldap_user_modify_ctx_t *usermod_ctx = NULL;
2143
2144 size_t num_mods = talloc_array_length(call_env->mod);
2145
2146 if (num_mods == 0) RETURN_MODULE_NOOP;
2147
2148 /*
2149 * Include a talloc pool allowing for one value per modification
2150 */
2152 2 * num_mods + 2,
2153 (sizeof(struct berval) + (sizeof(struct berval *) * 2) +
2154 (sizeof(LDAPMod) + sizeof(LDAPMod *))) * num_mods));
2155 *usermod_ctx = (ldap_user_modify_ctx_t) {
2156 .inst = inst,
2157 .call_env = call_env,
2158 .num_mods = num_mods
2159 };
2160
2161 usermod_ctx->ttrunk = fr_thread_ldap_trunk_get(thread, inst->handle_config.server,
2162 inst->handle_config.admin_identity,
2163 inst->handle_config.admin_password,
2164 request, &inst->handle_config);
2165 if (!usermod_ctx->ttrunk) {
2166 REDEBUG("Unable to get LDAP trunk for update");
2167 talloc_free(usermod_ctx);
2169 }
2170
2171 usermod_ctx->dn = rlm_find_user_dn_cached(request);
2172
2173 if (unlang_function_push(request, usermod_ctx->dn ? NULL : user_modify_start, user_modify_resume,
2174 NULL, 0, UNLANG_SUB_FRAME, usermod_ctx) < 0) goto error;
2175
2177
2178error:
2179 TALLOC_FREE(usermod_ctx);
2180 RETURN_MODULE_RCODE(rcode);
2181}
2182
2183/** Detach from the LDAP server and cleanup internal state.
2184 *
2185 */
2186static int mod_detach(module_detach_ctx_t const *mctx)
2187{
2188 rlm_ldap_t *inst = talloc_get_type_abort(mctx->mi->data, rlm_ldap_t);
2189
2190 if (inst->user.obj_sort_ctrl) ldap_control_free(inst->user.obj_sort_ctrl);
2191 if (inst->profile.obj_sort_ctrl) ldap_control_free(inst->profile.obj_sort_ctrl);
2192
2193 return 0;
2194}
2195
2196static int ldap_update_section_parse(TALLOC_CTX *ctx, call_env_parsed_head_t *out, tmpl_rules_t const *t_rules,
2197 CONF_ITEM *ci,
2198 UNUSED call_env_ctx_t const *cec, call_env_parser_t const *rule)
2199{
2200 map_list_t *maps;
2201 CONF_SECTION *update = cf_item_to_section(ci);
2202 ldap_update_rules_t const *ur = rule->uctx;
2203
2204 bool expect_password = false;
2205
2206 /*
2207 * Build the attribute map
2208 */
2209 {
2210 map_t const *map = NULL;
2211 tmpl_attr_t const *ar;
2212 call_env_parsed_t *parsed;
2213
2214 MEM(parsed = call_env_parsed_add(ctx, out,
2216 .name = "update",
2217 .flags = CALL_ENV_FLAG_PARSE_ONLY,
2218 .pair = {
2219 .parsed = {
2220 .offset = ur->map_offset,
2222 }
2223 }
2224 }));
2225
2226 MEM(maps = talloc(parsed, map_list_t));
2227 map_list_init(maps);
2228
2229 if (update && (map_afrom_cs(maps, maps, update, t_rules, t_rules, fr_ldap_map_verify,
2230 NULL, LDAP_MAX_ATTRMAP)) < 0) {
2231 call_env_parsed_free(out, parsed);
2232 return -1;
2233 }
2234 /*
2235 * Check map to see if a password is being retrieved.
2236 * fr_ldap_map_verify ensures that all maps have attributes on the LHS.
2237 * All passwords have a common parent attribute of attr_password
2238 */
2239 while ((map = map_list_next(maps, map))) {
2240 ar = tmpl_attr_tail(map->lhs);
2241 if (ar->da->parent == attr_password) {
2242 expect_password = true;
2243 break;
2244 }
2245 }
2246 call_env_parsed_set_data(parsed, maps);
2247 }
2248
2249 /*
2250 * Write out whether we expect a password to be returned from the ldap data
2251 */
2252 if (ur->expect_password_offset >= 0) {
2253 call_env_parsed_t *parsed;
2254 fr_value_box_t *vb;
2255
2256 MEM(parsed = call_env_parsed_add(ctx, out,
2258 .name = "expect_password",
2259 .flags = CALL_ENV_FLAG_PARSE_ONLY,
2260 .pair = {
2261 .parsed = {
2262 .offset = ur->expect_password_offset,
2264 }
2265 }
2266 }));
2267 MEM(vb = fr_value_box_alloc(parsed, FR_TYPE_BOOL, NULL));
2268 vb->vb_bool = expect_password;
2269 call_env_parsed_set_value(parsed, vb);
2270 }
2271
2272 return 0;
2273}
2274
2275static int ldap_mod_section_parse(TALLOC_CTX *ctx, call_env_parsed_head_t *out, tmpl_rules_t const *t_rules,
2276 CONF_ITEM *ci, call_env_ctx_t const *cec, UNUSED call_env_parser_t const *rule)
2277{
2278 CONF_SECTION const *subcs = NULL;
2279 CONF_PAIR const *to_parse = NULL;
2280 tmpl_t *parsed_tmpl;
2281 call_env_parsed_t *parsed_env;
2282 char *section2, *p;
2283 ssize_t count, slen, multi_index = 0;
2284 ldap_mod_tmpl_t *mod;
2285
2287
2288 section2 = talloc_strdup(NULL, section_name_str(cec->asked->name2));
2289 p = section2;
2290 while (*p != '\0') {
2291 *(p) = tolower((uint8_t)*p);
2292 p++;
2293 }
2294
2295 if (!ci) {
2296 not_found:
2297 cf_log_warn(ci, "No section found for \"%s.%s\" in module \"%s\", this call will have no effect.",
2298 section_name_str(cec->asked->name1), section2, cec->mi->name);
2299 free:
2300 talloc_free(section2);
2301 return 0;
2302 }
2303
2304 subcs = cf_section_find(cf_item_to_section(ci), section2, CF_IDENT_ANY);
2305 if (!subcs) goto not_found;
2306
2307 subcs = cf_section_find(subcs, "update", CF_IDENT_ANY);
2308 if (!subcs) {
2309 cf_log_warn(ci, "No update found inside \"%s -> %s\" in module \"%s\"",
2310 section_name_str(cec->asked->name1), section2, cec->mi->name);
2311 goto free;
2312 }
2313
2315 if (count == 0) {
2316 cf_log_warn(ci, "No modifications found for \"%s.%s\" in module \"%s\"",
2317 section_name_str(cec->asked->name1), section2, cec->mi->name);
2318 goto free;
2319 }
2320 talloc_free(section2);
2321
2322 while ((to_parse = cf_pair_next(subcs, to_parse))) {
2323 switch (cf_pair_operator(to_parse)) {
2324 case T_OP_SET:
2325 case T_OP_ADD_EQ:
2326 case T_OP_SUB_EQ:
2327 case T_OP_CMP_FALSE:
2328 case T_OP_INCRM:
2329 break;
2330
2331 default:
2332 cf_log_perr(to_parse, "Invalid operator for LDAP modification");
2333 return -1;
2334 }
2335
2336 MEM(parsed_env = call_env_parsed_add(ctx, out,
2341 }));
2342
2343 slen = tmpl_afrom_substr(parsed_env, &parsed_tmpl,
2344 &FR_SBUFF_IN(cf_pair_value(to_parse), talloc_array_length(cf_pair_value(to_parse)) - 1),
2346 t_rules);
2347
2348 if (slen <= 0) {
2349 cf_canonicalize_error(to_parse, slen, "Failed parsing LDAP modification \"%s\"", cf_pair_value(to_parse));
2350 error:
2351 call_env_parsed_free(out, parsed_env);
2352 return -1;
2353 }
2354 if (tmpl_needs_resolving(parsed_tmpl) &&
2355 (tmpl_resolve(parsed_tmpl, &(tmpl_res_rules_t){ .dict_def = t_rules->attr.dict_def }) <0)) {
2356 cf_log_perr(to_parse, "Failed resolving LDAP modification \"%s\"", cf_pair_value(to_parse));
2357 goto error;
2358 }
2359
2360 MEM(mod = talloc(parsed_env, ldap_mod_tmpl_t));
2361 mod->attr = cf_pair_attr(to_parse);
2362 mod->tmpl = parsed_tmpl;
2363 mod->op = cf_pair_operator(to_parse);
2364
2365 call_env_parsed_set_multi_index(parsed_env, count, multi_index++);
2366 call_env_parsed_set_data(parsed_env, mod);
2367 }
2368
2369 return 0;
2370}
2371
2372static int ldap_group_filter_parse(TALLOC_CTX *ctx, void *out, tmpl_rules_t const *t_rules, UNUSED CONF_ITEM *ci,
2373 call_env_ctx_t const *cec, UNUSED call_env_parser_t const *rule)
2374{
2376 char const *filters[] = { inst->group.obj_filter, inst->group.obj_membership_filter };
2377 tmpl_t *parsed;
2378
2379 if (fr_ldap_filter_to_tmpl(ctx, t_rules, filters, NUM_ELEMENTS(filters), &parsed) < 0) return -1;
2380
2381 *(void **)out = parsed;
2382 return 0;
2383}
2384
2385/** Clean up thread specific data structure
2386 *
2387 */
2389{
2390 fr_ldap_thread_t *t = talloc_get_type_abort(mctx->thread, fr_ldap_thread_t);
2391 void **trunks_to_free;
2392 int i;
2393
2394 if (fr_rb_flatten_inorder(NULL, &trunks_to_free, t->trunks) < 0) return -1;
2395
2396 for (i = talloc_array_length(trunks_to_free) - 1; i >= 0; i--) talloc_free(trunks_to_free[i]);
2397 talloc_free(trunks_to_free);
2398 talloc_free(t->trunks);
2399
2400 return 0;
2401}
2402
2403/** Initialise thread specific data structure
2404 *
2405 */
2407{
2408 rlm_ldap_t *inst = talloc_get_type_abort(mctx->mi->data, rlm_ldap_t);
2409 fr_ldap_thread_t *t = talloc_get_type_abort(mctx->thread, fr_ldap_thread_t);
2410 fr_ldap_thread_trunk_t *ttrunk;
2411
2412 /*
2413 * Initialise tree for connection trunks used by this thread
2414 */
2416
2417 t->config = &inst->handle_config;
2418 t->trunk_conf = &inst->trunk_conf;
2419 t->bind_trunk_conf = &inst->bind_trunk_conf;
2420 t->el = mctx->el;
2421
2422 /*
2423 * Launch trunk for module default connection
2424 */
2425 ttrunk = fr_thread_ldap_trunk_get(t, inst->handle_config.server, inst->handle_config.admin_identity,
2426 inst->handle_config.admin_password, NULL, &inst->handle_config);
2427 if (!ttrunk) {
2428 ERROR("Unable to launch LDAP trunk");
2429 return -1;
2430 }
2431
2432 /*
2433 * Set up a per-thread LDAP trunk to use for bind auths
2434 */
2436
2438
2439 return 0;
2440}
2441
2442/** Instantiate the module
2443 *
2444 * Creates a new instance of the module reading parameters from a configuration section.
2445 *
2446 * @param [in] mctx configuration data.
2447 * @return
2448 * - 0 on success.
2449 * - < 0 on failure.
2450 */
2451static int mod_instantiate(module_inst_ctx_t const *mctx)
2452{
2453 size_t i;
2454
2455 CONF_SECTION *options;
2456 rlm_ldap_boot_t const *boot = talloc_get_type_abort(mctx->mi->boot, rlm_ldap_boot_t);
2457 rlm_ldap_t *inst = talloc_get_type_abort(mctx->mi->data, rlm_ldap_t);
2458 CONF_SECTION *conf = mctx->mi->conf;
2459
2460 inst->mi = mctx->mi; /* Cached for IO callbacks */
2461 inst->group.da = boot->group_da;
2462 inst->group.cache_da = boot->cache_da;
2463
2464 inst->handle_config.name = talloc_typed_asprintf(inst, "rlm_ldap (%s)", mctx->mi->name);
2465
2466 /*
2467 * Trunks used for bind auth can only have one request in flight per connection.
2468 */
2469 inst->bind_trunk_conf.target_req_per_conn = 1;
2470 inst->bind_trunk_conf.max_req_per_conn = 1;
2471
2472 /*
2473 * Set sizes for trunk request pool.
2474 */
2475 inst->bind_trunk_conf.req_pool_headers = 2;
2476 inst->bind_trunk_conf.req_pool_size = sizeof(fr_ldap_bind_auth_ctx_t) + sizeof(fr_ldap_sasl_ctx_t);
2477
2478 options = cf_section_find(conf, "options", NULL);
2479 if (!options || !cf_pair_find(options, "chase_referrals")) {
2480 inst->handle_config.chase_referrals_unset = true; /* use OpenLDAP defaults */
2481 }
2482
2483 /*
2484 * Sanity checks for cacheable groups code.
2485 */
2486 if (inst->group.cacheable_name && inst->group.obj_membership_filter) {
2487 if (!inst->group.obj_name_attr) {
2488 cf_log_err(conf, "Configuration item 'group.name_attribute' must be set if cacheable "
2489 "group names are enabled");
2490
2491 goto error;
2492 }
2493 }
2494
2495 /*
2496 * If we have a *pair* as opposed to a *section*
2497 * then the module is referencing another ldap module's
2498 * connection pool.
2499 */
2500 if (!cf_pair_find(conf, "pool")) {
2501 if (!inst->handle_config.server_str) {
2502 cf_log_err(conf, "Configuration item 'server' must have a value");
2503 goto error;
2504 }
2505 }
2506
2507#ifndef WITH_SASL
2508 if (inst->handle_config.admin_sasl.mech) {
2509 cf_log_err(conf, "Configuration item 'sasl.mech' not supported. "
2510 "Linked libldap does not provide ldap_sasl_interactive_bind function");
2511 goto error;
2512 }
2513#endif
2514
2515 /*
2516 * Initialise server with zero length string to
2517 * make code below simpler.
2518 */
2519 inst->handle_config.server = talloc_strdup(inst, "");
2520
2521 /*
2522 * Now iterate over all the 'server' config items
2523 */
2524 for (i = 0; i < talloc_array_length(inst->handle_config.server_str); i++) {
2525 char const *value = inst->handle_config.server_str[i];
2526 size_t j;
2527
2528 /*
2529 * Explicitly prevent multiple server definitions
2530 * being used in the same string.
2531 */
2532 for (j = 0; j < talloc_array_length(value) - 1; j++) {
2533 switch (value[j]) {
2534 case ' ':
2535 case ',':
2536 case ';':
2537 cf_log_err(conf, "Invalid character '%c' found in 'server' configuration item",
2538 value[j]);
2539 goto error;
2540
2541 default:
2542 continue;
2543 }
2544 }
2545
2546 /*
2547 * Split original server value out into URI, server and port
2548 * so whatever initialization function we use later will have
2549 * the server information in the format it needs.
2550 */
2551 if (ldap_is_ldap_url(value)) {
2552 if (fr_ldap_server_url_check(&inst->handle_config, value, conf) < 0) return -1;
2553 } else
2554 /*
2555 * If it's not an URL, then just treat server as a hostname.
2556 */
2557 {
2558 if (fr_ldap_server_config_check(&inst->handle_config, value, conf) < 0) return -1;
2559 }
2560 }
2561
2562 /*
2563 * inst->handle_config.server be unset if connection pool sharing is used.
2564 */
2565 if (inst->handle_config.server) {
2566 inst->handle_config.server[talloc_array_length(inst->handle_config.server) - 2] = '\0';
2567 DEBUG4("rlm_ldap (%s) - LDAP server string: %s", mctx->mi->name, inst->handle_config.server);
2568 }
2569
2570 /*
2571 * Workaround for servers which support LDAPS but not START TLS
2572 */
2573 if (inst->handle_config.port == LDAPS_PORT || inst->handle_config.tls_mode) {
2574 inst->handle_config.tls_mode = LDAP_OPT_X_TLS_HARD;
2575 } else {
2576 inst->handle_config.tls_mode = 0;
2577 }
2578
2579 /*
2580 * Convert dereference strings to enumerated constants
2581 */
2582 if (inst->handle_config.dereference_str) {
2583 inst->handle_config.dereference = fr_table_value_by_str(fr_ldap_dereference,
2584 inst->handle_config.dereference_str, -1);
2585 if (inst->handle_config.dereference < 0) {
2586 cf_log_err(conf, "Invalid 'dereference' value \"%s\", expected 'never', 'searching', "
2587 "'finding' or 'always'", inst->handle_config.dereference_str);
2588 goto error;
2589 }
2590 }
2591
2592 /*
2593 * Build the server side sort control for user / profile objects
2594 */
2595#define SSS_CONTROL_BUILD(_obj) if (inst->_obj.obj_sort_by) { \
2596 LDAPSortKey **keys; \
2597 int ret; \
2598 ret = ldap_create_sort_keylist(&keys, UNCONST(char *, inst->_obj.obj_sort_by)); \
2599 if (ret != LDAP_SUCCESS) { \
2600 cf_log_err(conf, "Invalid " STRINGIFY(_obj) ".sort_by value \"%s\": %s", \
2601 inst->_obj.obj_sort_by, ldap_err2string(ret)); \
2602 goto error; \
2603 } \
2604 /* \
2605 * Always set the control as critical, if it's not needed \
2606 * the user can comment it out... \
2607 */ \
2608 ret = ldap_create_sort_control(ldap_global_handle, keys, 1, &inst->_obj.obj_sort_ctrl); \
2609 ldap_free_sort_keylist(keys); \
2610 if (ret != LDAP_SUCCESS) { \
2611 ERROR("Failed creating server sort control: %s", ldap_err2string(ret)); \
2612 goto error; \
2613 } \
2614 }
2615
2616 SSS_CONTROL_BUILD(user)
2617 SSS_CONTROL_BUILD(profile)
2618
2619 if (inst->handle_config.tls_require_cert_str) {
2620 /*
2621 * Convert cert strictness to enumerated constants
2622 */
2623 inst->handle_config.tls_require_cert = fr_table_value_by_str(fr_ldap_tls_require_cert,
2624 inst->handle_config.tls_require_cert_str, -1);
2625 if (inst->handle_config.tls_require_cert < 0) {
2626 cf_log_err(conf, "Invalid 'tls.require_cert' value \"%s\", expected 'never', "
2627 "'demand', 'allow', 'try' or 'hard'", inst->handle_config.tls_require_cert_str);
2628 goto error;
2629 }
2630 }
2631
2632 if (inst->handle_config.tls_min_version_str) {
2633 if (strcmp(inst->handle_config.tls_min_version_str, "1.2") == 0) {
2634 inst->handle_config.tls_min_version = LDAP_OPT_X_TLS_PROTOCOL_TLS1_2;
2635
2636 } else if (strcmp(inst->handle_config.tls_min_version_str, "1.1") == 0) {
2637 inst->handle_config.tls_min_version = LDAP_OPT_X_TLS_PROTOCOL_TLS1_1;
2638
2639 } else if (strcmp(inst->handle_config.tls_min_version_str, "1.0") == 0) {
2640 inst->handle_config.tls_min_version = LDAP_OPT_X_TLS_PROTOCOL_TLS1_0;
2641
2642 } else {
2643 cf_log_err(conf, "Invalid 'tls.tls_min_version' value \"%s\"", inst->handle_config.tls_min_version_str);
2644 goto error;
2645 }
2646 }
2647
2648 return 0;
2649
2650error:
2651 return -1;
2652}
2653
2654/** Bootstrap the module
2655 *
2656 * Define attributes.
2657 *
2658 * @param[in] mctx configuration data.
2659 * @return
2660 * - 0 on success.
2661 * - < 0 on failure.
2662 */
2663static int mod_bootstrap(module_inst_ctx_t const *mctx)
2664{
2665 rlm_ldap_boot_t *boot = talloc_get_type_abort(mctx->mi->boot, rlm_ldap_boot_t);
2666 rlm_ldap_t const *inst = talloc_get_type_abort(mctx->mi->data, rlm_ldap_t);
2667 CONF_SECTION *conf = mctx->mi->conf;
2668 char buffer[256];
2669 char const *group_attribute;
2670 xlat_t *xlat;
2671
2672 if (inst->group.attribute) {
2673 group_attribute = inst->group.attribute;
2674 } else if (cf_section_name2(conf)) {
2675 snprintf(buffer, sizeof(buffer), "%s-LDAP-Group", mctx->mi->name);
2676 group_attribute = buffer;
2677 } else {
2678 group_attribute = "LDAP-Group";
2679 }
2680
2681 boot->group_da = fr_dict_attr_by_name(NULL, fr_dict_root(dict_freeradius), group_attribute);
2682
2683 /*
2684 * If the group attribute was not in the dictionary, create it
2685 */
2686 if (!boot->group_da) {
2688 group_attribute, FR_TYPE_STRING, NULL) < 0) {
2689 PERROR("Error creating group attribute");
2690 return -1;
2691
2692 }
2693 boot->group_da = fr_dict_attr_by_name(NULL, fr_dict_root(dict_freeradius), group_attribute);
2694 }
2695
2696 /*
2697 * Setup the cache attribute
2698 */
2699
2700 if (inst->group.cache_attribute) {
2701 boot->cache_da = fr_dict_attr_by_name(NULL, fr_dict_root(dict_freeradius), inst->group.cache_attribute);
2702 if (!boot->cache_da) {
2704 inst->group.cache_attribute, FR_TYPE_STRING, NULL) < 0) {
2705 PERROR("Error creating cache attribute");
2706 return -1;
2707 }
2708 boot->cache_da = fr_dict_attr_by_name(NULL, fr_dict_root(dict_freeradius), inst->group.cache_attribute);
2709 }
2710 } else {
2711 boot->cache_da = boot->group_da; /* Default to the group_da */
2712 }
2713
2714 xlat = module_rlm_xlat_register(mctx->mi->boot, mctx, NULL, ldap_xlat, FR_TYPE_STRING);
2716
2717 if (unlikely(!(xlat = module_rlm_xlat_register(mctx->mi->boot, mctx, "group", ldap_group_xlat,
2718 FR_TYPE_BOOL)))) return -1;
2721
2722 if (unlikely(!(xlat = module_rlm_xlat_register(mctx->mi->boot, mctx, "profile", ldap_profile_xlat,
2723 FR_TYPE_BOOL)))) return -1;
2726
2728
2729 return 0;
2730}
2731
2732static int mod_load(void)
2733{
2734 xlat_t *xlat;
2735
2736 if (unlikely(!(xlat = xlat_func_register(NULL, "ldap.uri.escape", ldap_uri_escape_xlat, FR_TYPE_STRING)))) return -1;
2739 xlat_func_safe_for_set(xlat, LDAP_URI_SAFE_FOR); /* Used for all LDAP escaping */
2740
2741 if (unlikely(!(xlat = xlat_func_register(NULL, "ldap.uri.safe", xlat_transparent, FR_TYPE_STRING)))) return -1;
2745
2746 if (unlikely(!(xlat = xlat_func_register(NULL, "ldap.uri.unescape", ldap_uri_unescape_xlat, FR_TYPE_STRING)))) return -1;
2749
2750 return 0;
2751}
2752
2753static void mod_unload(void)
2754{
2755 xlat_func_unregister("ldap.uri.escape");
2756 xlat_func_unregister("ldap.uri.safe");
2757 xlat_func_unregister("ldap.uri.unescape");
2758}
2760/* globally exported name */
2761extern module_rlm_t rlm_ldap;
2763 .common = {
2764 .magic = MODULE_MAGIC_INIT,
2765 .name = "ldap",
2766 .flags = 0,
2767 .boot_size = sizeof(rlm_ldap_boot_t),
2768 .boot_type = "rlm_ldap_boot_t",
2769 .inst_size = sizeof(rlm_ldap_t),
2770 .config = module_config,
2771 .onload = mod_load,
2772 .unload = mod_unload,
2773 .bootstrap = mod_bootstrap,
2774 .instantiate = mod_instantiate,
2775 .detach = mod_detach,
2776 .thread_inst_size = sizeof(fr_ldap_thread_t),
2777 .thread_inst_type = "fr_ldap_thread_t",
2780 },
2781 .method_group = {
2782 .bindings = (module_method_binding_t[]){
2783 /*
2784 * Hack to support old configurations
2785 */
2786 { .section = SECTION_NAME("accounting", CF_IDENT_ANY), .method = mod_modify, .method_env = &accounting_usermod_method_env },
2787 { .section = SECTION_NAME("authenticate", CF_IDENT_ANY), .method = mod_authenticate, .method_env = &authenticate_method_env },
2788 { .section = SECTION_NAME("authorize", CF_IDENT_ANY), .method = mod_authorize, .method_env = &authorize_method_env },
2789
2790 { .section = SECTION_NAME("recv", CF_IDENT_ANY), .method = mod_authorize, .method_env = &authorize_method_env },
2791 { .section = SECTION_NAME("send", CF_IDENT_ANY), .method = mod_modify, .method_env = &send_usermod_method_env },
2793 }
2794 }
2795};
unlang_action_t
Returned by unlang_op_t calls, determine the next action of the interpreter.
Definition action.h:35
@ UNLANG_ACTION_PUSHED_CHILD
unlang_t pushed a new child onto the stack, execute it instead of continuing.
Definition action.h:39
@ UNLANG_ACTION_FAIL
Encountered an unexpected error.
Definition action.h:36
@ UNLANG_ACTION_CALCULATE_RESULT
Calculate a new section rlm_rcode_t value.
Definition action.h:37
static int const char char buffer[256]
Definition acutest.h:576
log_entry msg
Definition acutest.h:794
#define USES_APPLE_DEPRECATED_API
Definition build.h:472
#define RCSID(id)
Definition build.h:485
#define L(_str)
Helper for initialising arrays of string literals.
Definition build.h:209
#define FALL_THROUGH
clang 10 doesn't recognised the FALL-THROUGH comment anymore
Definition build.h:324
#define unlikely(_x)
Definition build.h:383
#define UNUSED
Definition build.h:317
#define NUM_ELEMENTS(_t)
Definition build.h:339
void call_env_parsed_free(call_env_parsed_head_t *parsed, call_env_parsed_t *ptr)
Remove a call_env_parsed_t from the list of parsed call envs.
Definition call_env.c:733
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.
Definition call_env.c:646
void call_env_parsed_set_multi_index(call_env_parsed_t *parsed, size_t count, size_t index)
Assign a count and index to a call_env_parsed_t.
Definition call_env.c:718
void call_env_parsed_set_data(call_env_parsed_t *parsed, void const *data)
Assign data to a call_env_parsed_t.
Definition call_env.c:703
void call_env_parsed_set_value(call_env_parsed_t *parsed, fr_value_box_t const *vb)
Assign a value box to a call_env_parsed_t.
Definition call_env.c:689
#define CALL_ENV_TERMINATOR
Definition call_env.h:236
call_env_ctx_type_t type
Type of callenv ctx.
Definition call_env.h:227
@ CALL_ENV_CTX_TYPE_MODULE
The callenv is registered to a module method.
Definition call_env.h:222
#define FR_CALL_ENV_PARSE_OFFSET(_name, _cast_type, _flags, _struct, _field, _parse_field)
Specify a call_env_parser_t which writes out runtime results and the result of the parsing phase to t...
Definition call_env.h:365
#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...
Definition call_env.h:240
call_env_parser_t const * env
Parsing rules for call method env.
Definition call_env.h:247
section_name_t const * asked
The actual name1/name2 that resolved to a module_method_binding_t.
Definition call_env.h:232
void const * uctx
User context for callback functions.
Definition call_env.h:218
#define FR_CALL_ENV_SUBSECTION(_name, _name2, _flags, _subcs)
Specify a call_env_parser_t which defines a nested subsection.
Definition call_env.h:402
@ CALL_ENV_FLAG_CONCAT
If the tmpl produced multiple boxes they should be concatenated.
Definition call_env.h:76
@ CALL_ENV_FLAG_ATTRIBUTE
Tmpl MUST contain an attribute reference.
Definition call_env.h:86
@ CALL_ENV_FLAG_PARSE_ONLY
The result of parsing will not be evaluated at runtime.
Definition call_env.h:85
@ CALL_ENV_FLAG_NONE
Definition call_env.h:74
@ CALL_ENV_FLAG_MULTI
Multiple instances of the conf pairs are allowed.
Definition call_env.h:78
@ CALL_ENV_FLAG_REQUIRED
Associated conf pair or section is required.
Definition call_env.h:75
@ CALL_ENV_FLAG_PARSE_MISSING
If this subsection is missing, still parse it.
Definition call_env.h:88
@ CALL_ENV_FLAG_BARE_WORD_ATTRIBUTE
bare words are treated as an attribute, but strings may be xlats.
Definition call_env.h:92
@ CALL_ENV_FLAG_NULLABLE
Tmpl expansions are allowed to produce no output.
Definition call_env.h:80
@ CALL_ENV_PARSE_TYPE_VALUE_BOX
Output of the parsing phase is a single value box (static data).
Definition call_env.h:61
@ CALL_ENV_PARSE_TYPE_VOID
Output of the parsing phase is undefined (a custom structure).
Definition call_env.h:62
module_instance_t const * mi
Module instance that the callenv is registered to.
Definition call_env.h:229
#define FR_CALL_ENV_SUBSECTION_FUNC(_name, _name2, _flags, _func)
Specify a call_env_parser_t which parses a subsection using a callback function.
Definition call_env.h:412
#define FR_CALL_ENV_OFFSET(_name, _cast_type, _flags, _struct, _field)
Specify a call_env_parser_t which writes out runtime results to the specified field.
Definition call_env.h:340
#define FR_CALL_ENV_PARSE_ONLY_OFFSET(_name, _cast_type, _flags, _struct, _parse_field)
Specify a call_env_parser_t which writes out the result of the parsing phase to the field specified.
Definition call_env.h:389
Per method call config.
Definition call_env.h:180
int cf_table_parse_int(UNUSED TALLOC_CTX *ctx, void *out, UNUSED void *parent, CONF_ITEM *ci, conf_parser_t const *rule)
Generic function for parsing conf pair values as int.
Definition cf_parse.c:1594
#define CONF_PARSER_TERMINATOR
Definition cf_parse.h:658
cf_parse_t func
Override default parsing behaviour for the specified type with a custom parsing function.
Definition cf_parse.h:612
#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
Definition cf_parse.h:284
#define FR_CONF_POINTER(_name, _type, _flags, _res_p)
conf_parser_t which parses a single CONF_PAIR producing a single global result
Definition cf_parse.h:339
#define FR_CONF_OFFSET_IS_SET(_name, _type, _flags, _struct, _field)
conf_parser_t which parses a single CONF_PAIR, writing the result to a field in a struct,...
Definition cf_parse.h:298
#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
Definition cf_parse.h:272
#define FR_CONF_OFFSET_SUBSECTION(_name, _flags, _struct, _field, _subcs)
conf_parser_t which populates a sub-struct using a CONF_SECTION
Definition cf_parse.h:313
@ CONF_FLAG_MULTI
CONF_PAIR can have multiple copies.
Definition cf_parse.h:448
@ CONF_FLAG_XLAT
string will be dynamically expanded.
Definition cf_parse.h:445
@ CONF_FLAG_SUBSECTION
Instead of putting the information into a configuration structure, the configuration file routines MA...
Definition cf_parse.h:428
Defines a CONF_PAIR to C data type mapping.
Definition cf_parse.h:595
Common header for all CONF_* types.
Definition cf_priv.h:49
Configuration AVP similar to a fr_pair_t.
Definition cf_priv.h:70
A section grouping multiple CONF_PAIR.
Definition cf_priv.h:101
unsigned int cf_pair_count_descendents(CONF_SECTION const *cs)
Count the number of conf pairs beneath a section.
Definition cf_util.c:1505
char const * cf_section_name2(CONF_SECTION const *cs)
Return the second identifier of a CONF_SECTION.
Definition cf_util.c:1185
CONF_SECTION * cf_section_find(CONF_SECTION const *cs, char const *name1, char const *name2)
Find a CONF_SECTION with name1 and optionally name2.
Definition cf_util.c:1028
CONF_SECTION * cf_item_to_section(CONF_ITEM const *ci)
Cast a CONF_ITEM to a CONF_SECTION.
Definition cf_util.c:684
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
fr_token_t cf_pair_operator(CONF_PAIR const *pair)
Return the operator of a pair.
Definition cf_util.c:1608
fr_token_t cf_pair_value_quote(CONF_PAIR const *pair)
Return the value (rhs) quoting of a pair.
Definition cf_util.c:1638
CONF_PAIR * cf_pair_next(CONF_SECTION const *cs, CONF_PAIR const *curr)
Return the next child that's a CONF_PAIR.
Definition cf_util.c:1413
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_log_err(_cf, _fmt,...)
Definition cf_util.h:289
#define cf_canonicalize_error(_ci, _slen, _msg, _str)
Definition cf_util.h:367
#define cf_log_perr(_cf, _fmt,...)
Definition cf_util.h:296
#define cf_log_warn(_cf, _fmt,...)
Definition cf_util.h:290
#define CF_IDENT_ANY
Definition cf_util.h:78
static int fr_dcursor_append(fr_dcursor_t *cursor, void *v)
Insert a single item at the end of the list.
Definition dcursor.h:406
#define MEM(x)
Definition debug.h:36
#define ERROR(fmt,...)
Definition dhcpclient.c:41
int fr_dict_attr_add_name_only(fr_dict_t *dict, fr_dict_attr_t const *parent, char const *name, fr_type_t type, fr_dict_attr_flags_t const *flags))
Add an attribute to the dictionary.
Definition dict_util.c:1745
fr_dict_t * fr_dict_unconst(fr_dict_t const *dict)
Coerce to non-const.
Definition dict_util.c:4592
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
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
fr_dict_attr_t const ** out
Where to write a pointer to the resolved fr_dict_attr_t.
Definition dict.h:272
fr_dict_t const ** out
Where to write a pointer to the loaded/resolved fr_dict_t.
Definition dict.h:285
static fr_slen_t in
Definition dict.h:831
Specifies an attribute which must be present for the module to function.
Definition dict.h:271
Specifies a dictionary which must be loaded/loadable for the module to function.
Definition dict.h:284
Test enumeration values.
Definition dict_test.h:92
#define MODULE_MAGIC_INIT
Stop people using different module/library/server versions together.
Definition dl_module.h:63
#define unlang_function_repeat_set(_request, _repeat)
Set a new repeat function for an existing function frame.
Definition function.h:89
#define unlang_function_push(_request, _func, _repeat, _signal, _sigmask, _top_frame, _uctx)
Push a generic function onto the unlang stack.
Definition function.h:111
#define GLOBAL_LIB_TERMINATOR
Definition global_lib.h:51
Structure to define how to initialise libraries with global configuration.
Definition global_lib.h:38
static xlat_action_t ldap_uri_escape_xlat(TALLOC_CTX *ctx, fr_dcursor_t *out, UNUSED xlat_ctx_t const *xctx, request_t *request, fr_value_box_list_t *in)
Escape LDAP string.
Definition rlm_ldap.c:421
static xlat_action_t ldap_xlat(UNUSED TALLOC_CTX *ctx, UNUSED fr_dcursor_t *out, xlat_ctx_t const *xctx, request_t *request, fr_value_box_list_t *in)
Expand an LDAP URL into a query, and return a string result from that query.
Definition rlm_ldap.c:749
static xlat_action_t ldap_group_xlat(TALLOC_CTX *ctx, fr_dcursor_t *out, xlat_ctx_t const *xctx, request_t *request, fr_value_box_list_t *in)
Check for a user being in a LDAP group.
Definition rlm_ldap.c:950
static xlat_action_t ldap_profile_xlat(UNUSED TALLOC_CTX *ctx, UNUSED fr_dcursor_t *out, xlat_ctx_t const *xctx, request_t *request, fr_value_box_list_t *in)
Expand an LDAP URL into a query, applying the results using the user update map.
Definition rlm_ldap.c:1077
static xlat_action_t ldap_uri_unescape_xlat(TALLOC_CTX *ctx, fr_dcursor_t *out, UNUSED xlat_ctx_t const *xctx, request_t *request, fr_value_box_list_t *in)
Unescape LDAP string.
Definition rlm_ldap.c:476
unlang_action_t rlm_ldap_cacheable_userobj(rlm_rcode_t *p_result, request_t *request, ldap_autz_ctx_t *autz_ctx, char const *attr)
Convert group membership information into attributes.
Definition groups.c:443
unlang_action_t rlm_ldap_check_userobj_dynamic(rlm_rcode_t *p_result, request_t *request, ldap_group_xlat_ctx_t *xlat_ctx)
Query the LDAP directory to check if a user object is a member of a group.
Definition groups.c:1120
unlang_action_t rlm_ldap_check_cached(rlm_rcode_t *p_result, rlm_ldap_t const *inst, request_t *request, fr_value_box_t const *check)
Check group membership attributes to see if a user is a member.
Definition groups.c:1158
unlang_action_t rlm_ldap_cacheable_groupobj(rlm_rcode_t *p_result, request_t *request, ldap_autz_ctx_t *autz_ctx)
Convert group membership information into attributes.
Definition groups.c:700
unlang_action_t rlm_ldap_check_groupobj_dynamic(rlm_rcode_t *p_result, request_t *request, ldap_group_xlat_ctx_t *xlat_ctx)
Initiate an LDAP search to determine group membership, querying group objects.
Definition groups.c:786
free(array)
void unlang_interpret_mark_runnable(request_t *request)
Mark a request as resumable.
Definition interpret.c:1374
TALLOC_CTX * unlang_interpret_frame_talloc_ctx(request_t *request)
Get a talloc_ctx which is valid only for this frame.
Definition interpret.c:1418
fr_event_list_t * unlang_interpret_event_list(request_t *request)
Get the event list for the current interpreter.
Definition interpret.c:1779
#define UNLANG_SUB_FRAME
Definition interpret.h:36
char const * fr_ldap_url_err_to_str(int ldap_url_err)
Translate the error code emitted from ldap_url_parse and friends into something accessible with fr_st...
Definition util.c:793
int fr_ldap_map_verify(map_t *map, void *instance)
size_t fr_ldap_uri_unescape_func(UNUSED request_t *request, char *out, size_t outlen, char const *in, UNUSED void *arg))
Converts escaped DNs and filter strings into normal.
Definition util.c:157
size_t fr_ldap_util_normalise_dn(char *out, char const *in)
Normalise escape sequences in a DN.
Definition util.c:490
int fr_ldap_map_getvalue(TALLOC_CTX *ctx, fr_pair_list_t *out, request_t *request, map_t const *map, void *uctx)
Callback for map_to_request.
Definition map.c:39
size_t fr_ldap_uri_escape_func(UNUSED request_t *request, char *out, size_t outlen, char const *in, UNUSED void *arg))
Converts "bad" strings into ones which are safe for LDAP.
Definition util.c:70
int fr_ldap_filter_to_tmpl(TALLOC_CTX *ctx, tmpl_rules_t const *t_rules, char const **sub, size_t sublen, tmpl_t **out))
Combine filters and tokenize to a tmpl.
Definition util.c:568
struct berval ** values
libldap struct containing bv_val (char *) and length bv_len.
Definition base.h:361
fr_ldap_control_t serverctrls[LDAP_MAX_CONTROLS]
Server controls specific to this query.
Definition base.h:450
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.
Definition map.c:328
fr_time_delta_t res_timeout
How long we wait for results.
Definition base.h:298
char const * admin_password
Password used in administrative bind.
Definition base.h:231
fr_ldap_config_t * config
Module instance config.
Definition base.h:383
int count
Index on next free element.
Definition base.h:375
bool fr_ldap_util_is_dn(char const *in, size_t inlen)
Check whether a string looks like a DN.
Definition util.c:204
char * server
Initial server to bind to.
Definition base.h:224
static int8_t fr_ldap_bind_auth_cmp(void const *one, void const *two)
Compare two ldap bind auth structures on msgid.
Definition base.h:724
LDAP * handle
libldap handle.
Definition base.h:333
char const * admin_identity
Identity we bind as when we need to query the LDAP directory.
Definition base.h:229
fr_ldap_result_code_t ret
Result code.
Definition base.h:470
bool freeit
Whether the control should be freed after we've finished using it.
Definition base.h:136
fr_rb_tree_t * trunks
Tree of LDAP trunks used by this thread.
Definition base.h:382
trunk_conf_t * trunk_conf
Module trunk config.
Definition base.h:384
trunk_request_t * treq
Trunk request this query is associated with.
Definition base.h:456
fr_ldap_thread_trunk_t * fr_thread_ldap_trunk_get(fr_ldap_thread_t *thread, char const *uri, char const *bind_dn, char const *bind_password, request_t *request, fr_ldap_config_t const *config)
Find a thread specific LDAP connection for a specific URI / bind DN.
Definition connection.c:918
int fr_ldap_server_url_check(fr_ldap_config_t *handle_config, char const *server, CONF_SECTION const *cs)
Check an LDAP server entry in URL format is valid.
Definition util.c:656
char * fr_ldap_berval_to_string(TALLOC_CTX *ctx, struct berval const *in)
Convert a berval to a talloced string.
Definition util.c:441
int count
Number of values.
Definition base.h:363
#define LDAP_MAX_ATTRMAP
Maximum number of mappings between LDAP and FreeRADIUS attributes.
Definition base.h:96
int fr_ldap_box_escape(fr_value_box_t *vb, UNUSED void *uctx)
Definition util.c:110
static int8_t fr_ldap_trunk_cmp(void const *one, void const *two)
Compare two ldap trunk structures on connection URI / DN.
Definition base.h:695
int fr_ldap_server_config_check(fr_ldap_config_t *handle_config, char const *server, CONF_SECTION *cs)
Check an LDAP server config in server:port format is valid.
Definition util.c:752
fr_ldap_connection_t * ldap_conn
LDAP connection this query is running on.
Definition base.h:457
fr_ldap_result_code_t
LDAP query result codes.
Definition base.h:188
@ LDAP_RESULT_TIMEOUT
The query timed out.
Definition base.h:192
@ LDAP_RESULT_SUCCESS
Successfully got LDAP results.
Definition base.h:190
@ LDAP_RESULT_NO_RESULT
No results returned.
Definition base.h:194
@ LDAP_RESULT_BAD_DN
The requested DN does not exist.
Definition base.h:193
fr_ldap_thread_trunk_t * fr_thread_ldap_bind_trunk_get(fr_ldap_thread_t *thread)
Find the thread specific trunk to use for LDAP bind auths.
int fr_ldap_map_expand(TALLOC_CTX *ctx, fr_ldap_map_exp_t *expanded, request_t *request, map_list_t const *maps, char const *generic_attr, char const *check_attr, char const *fallthrough_attr)
Expand values in an attribute map where needed.
Definition map.c:272
#define LDAP_MAX_CONTROLS
Maximum number of client/server controls.
Definition base.h:94
trunk_conf_t * bind_trunk_conf
Trunk config for bind auth trunk.
Definition base.h:385
#define LDAP_VIRTUAL_DN_ATTR
'Virtual' attribute which maps to the DN of the object.
Definition base.h:113
int fr_ldap_parse_url_extensions(LDAPControl **sss, size_t sss_len, char *extensions[])
Parse a subset (just server side sort and virtual list view for now) of LDAP URL extensions.
Definition util.c:302
LDAPMessage * result
Head of LDAP results list.
Definition base.h:468
fr_event_list_t * el
Thread event list for callbacks / timeouts.
Definition base.h:386
LDAPControl * control
LDAP control.
Definition base.h:135
unlang_action_t fr_ldap_edir_get_password(request_t *request, char const *dn, fr_ldap_thread_trunk_t *ttrunk, fr_dict_attr_t const *password_da)
Initiate retrieval of the universal password from Novell eDirectory.
Definition edir.c:295
char const * attrs[LDAP_MAX_ATTRMAP+LDAP_MAP_RESERVED+1]
Reserve some space for access attributes.
Definition base.h:372
fr_ldap_thread_trunk_t * bind_trunk
LDAP trunk used for bind auths.
Definition base.h:387
unlang_action_t fr_ldap_bind_auth_async(request_t *request, fr_ldap_thread_t *thread, char const *bind_dn, char const *password)
Initiate an async LDAP bind for authentication.
Definition bind.c:319
trunk_t * trunk
Connection trunk.
Definition base.h:405
fr_timer_t * ev
Event for timing out the query.
Definition base.h:459
TALLOC_CTX * ctx
Context to allocate new attributes in.
Definition base.h:374
fr_rb_tree_t * binds
Tree of outstanding bind auths.
Definition base.h:388
LDAPURLDesc * ldap_url
parsed URL for current query if the source of the query was a URL.
Definition base.h:426
Holds arguments for async bind auth requests.
Definition base.h:613
Connection configuration.
Definition base.h:221
Tracks the state of a libldap connection handle.
Definition base.h:332
Result of expanding the RHS of a set of maps.
Definition base.h:370
LDAP query structure.
Definition base.h:422
Contains a collection of values.
Definition base.h:360
Holds arguments for the async SASL bind operation.
Definition base.h:506
Thread specific structure to manage LDAP trunk connections.
Definition base.h:381
Thread LDAP trunk structure.
Definition base.h:399
#define FR_LDAP_COMMON_CONF(_conf)
Definition conf.h:19
size_t fr_ldap_scope_len
Definition base.c:75
LDAP * fr_ldap_handle_thread_local(void)
Get a thread local dummy LDAP handle.
Definition base.c:1106
global_lib_autoinst_t fr_libldap_global_config
Definition base.c:134
unlang_action_t fr_ldap_trunk_modify(TALLOC_CTX *ctx, fr_ldap_query_t **out, request_t *request, fr_ldap_thread_trunk_t *ttrunk, char const *dn, LDAPMod *mods[], LDAPControl **serverctrls, LDAPControl **clientctrls)
Run an async modification LDAP query on a trunk connection.
Definition base.c:755
fr_table_num_sorted_t const fr_ldap_tls_require_cert[]
Definition base.c:77
fr_table_num_sorted_t const fr_ldap_dereference[]
Definition base.c:86
fr_ldap_query_t * fr_ldap_search_alloc(TALLOC_CTX *ctx, char const *base_dn, int scope, char const *filter, char const *const *attrs, LDAPControl **serverctrls, LDAPControl **clientctrls)
Allocate a new search object.
Definition base.c:1027
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.
Definition base.c:709
fr_table_num_sorted_t const fr_ldap_scope[]
Definition base.c:69
#define PERROR(_fmt,...)
Definition log.h:228
#define REXDENT()
Exdent (unindent) R* messages by one level.
Definition log.h:443
#define ROPTIONAL(_l_request, _l_global, _fmt,...)
Use different logging functions depending on whether request is NULL or not.
Definition log.h:528
#define RWDEBUG(fmt,...)
Definition log.h:361
#define RDEBUG_ENABLED3
True if request debug level 1-3 messages are enabled.
Definition log.h:335
#define RDEBUG3(fmt,...)
Definition log.h:343
#define RERROR(fmt,...)
Definition log.h:298
#define DEBUG4(_fmt,...)
Definition log.h:267
#define RPERROR(fmt,...)
Definition log.h:302
#define RPEDEBUG(fmt,...)
Definition log.h:376
#define RINDENT()
Indent R* messages by one level.
Definition log.h:430
int map_afrom_cs(TALLOC_CTX *ctx, map_list_t *out, CONF_SECTION *cs, tmpl_rules_t const *lhs_rules, tmpl_rules_t const *rhs_rules, map_validate_t validate, void *uctx, unsigned int max)
Convert a config section into an attribute map.
Definition map.c:1109
int map_to_request(request_t *request, map_t const *map, radius_map_getvalue_t func, void *ctx)
Convert map_t to fr_pair_t (s) and add them to a request_t.
Definition map.c:1867
talloc_free(reap)
int map_proc_register(TALLOC_CTX *ctx, void const *mod_inst, char const *name, map_proc_func_t evaluate, map_proc_instantiate_t instantiate, size_t inst_size, fr_value_box_safe_for_t literals_safe_for)
Register a map processor.
Definition map_proc.c:131
@ FR_TYPE_TLV
Contains nested attributes.
@ FR_TYPE_STRING
String of printable characters.
@ FR_TYPE_VOID
User data.
@ FR_TYPE_BOOL
A truth value.
@ FR_TYPE_OCTETS
Raw octets.
@ FR_TYPE_GROUP
A grouping of other attributes.
long int ssize_t
unsigned char uint8_t
void * env_data
Per call environment data.
Definition module_ctx.h:44
module_instance_t const * mi
Instance of the module being instantiated.
Definition module_ctx.h:42
void * thread
Thread specific instance data.
Definition module_ctx.h:43
fr_event_list_t * el
Event list to register any IO handlers and timers against.
Definition module_ctx.h:68
module_instance_t * mi
Module instance to detach.
Definition module_ctx.h:57
void * thread
Thread instance data.
Definition module_ctx.h:67
module_instance_t const * mi
Instance of the module being instantiated.
Definition module_ctx.h:64
module_instance_t * mi
Instance of the module being instantiated.
Definition module_ctx.h:51
Temporary structure to hold arguments for module calls.
Definition module_ctx.h:41
Temporary structure to hold arguments for detach calls.
Definition module_ctx.h:56
Temporary structure to hold arguments for instantiation calls.
Definition module_ctx.h:50
Temporary structure to hold arguments for thread_instantiation calls.
Definition module_ctx.h:63
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)
Definition module_rlm.c:257
module_t common
Common fields presented by all modules.
Definition module_rlm.h:39
fr_pair_t * fr_pair_find_by_da_nested(fr_pair_list_t const *list, fr_pair_t const *prev, fr_dict_attr_t const *da)
Find a pair with a matching fr_dict_attr_t, by walking the nested fr_dict_attr_t tree.
Definition pair.c:772
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.
Definition pair.c:695
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.
Definition profile.c:213
#define fr_assert(_expr)
Definition rad_assert.h:38
#define REDEBUG(fmt,...)
Definition radclient.h:52
#define RDEBUG_ENABLED2()
Definition radclient.h:50
#define RDEBUG2(fmt,...)
Definition radclient.h:54
#define RDEBUG(fmt,...)
Definition radclient.h:53
static void thread_detach(UNUSED void *uctx)
Explicitly cleanup module/xlat resources.
Definition radiusd.c:150
static int thread_instantiate(TALLOC_CTX *ctx, fr_event_list_t *el, UNUSED void *uctx)
Create module and xlat per-thread instances.
Definition radiusd.c:133
static rs_t * conf
Definition radsniff.c:53
#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.
Definition rb.h:246
int fr_rb_flatten_inorder(TALLOC_CTX *ctx, void **out[], fr_rb_tree_t *tree)
#define RETURN_MODULE_NOOP
Definition rcode.h:62
#define RETURN_MODULE_RCODE(_rcode)
Definition rcode.h:64
#define RETURN_MODULE_INVALID
Definition rcode.h:59
#define RETURN_MODULE_FAIL
Definition rcode.h:56
rlm_rcode_t
Return codes indicating the result of the module call.
Definition rcode.h:40
@ RLM_MODULE_INVALID
The module considers the request invalid.
Definition rcode.h:45
@ RLM_MODULE_OK
The module is OK, continue.
Definition rcode.h:43
@ RLM_MODULE_FAIL
Module failed, don't reply.
Definition rcode.h:42
@ RLM_MODULE_DISALLOW
Reject the request (user is locked out).
Definition rcode.h:46
@ RLM_MODULE_REJECT
Immediately reject the request.
Definition rcode.h:41
@ RLM_MODULE_NOTFOUND
User not found.
Definition rcode.h:47
@ RLM_MODULE_UPDATED
OK (pairs modified).
Definition rcode.h:49
@ RLM_MODULE_HANDLED
The module handled the request, so stop.
Definition rcode.h:44
tmpl_t const * tmpl
Definition rlm_ldap.c:69
static const call_env_method_t xlat_memberof_method_env
Definition rlm_ldap.c:269
static int mod_detach(module_detach_ctx_t const *mctx)
Detach from the LDAP server and cleanup internal state.
Definition rlm_ldap.c:2186
static int mod_load(void)
Definition rlm_ldap.c:2729
static xlat_action_t ldap_profile_xlat_resume(TALLOC_CTX *ctx, fr_dcursor_t *out, xlat_ctx_t const *xctx, UNUSED request_t *request, UNUSED fr_value_box_list_t *in)
Return whether evaluating the profile was successful.
Definition rlm_ldap.c:1049
map_list_t * profile_map
List of maps to apply to the profile.
Definition rlm_ldap.c:81
#define REPEAT_LDAP_MEMBEROF_XLAT_RESULTS
Definition rlm_ldap.c:870
static conf_parser_t profile_config[]
Definition rlm_ldap.c:97
static int ldap_map_verify(CONF_SECTION *cs, UNUSED void const *mod_inst, UNUSED void *proc_inst, tmpl_t const *src, UNUSED map_list_t const *maps)
Definition rlm_ldap.c:1206
fr_dict_attr_t const * attr_nt_password
Definition rlm_ldap.c:328
static void user_modify_cancel(UNUSED request_t *request, UNUSED fr_signal_t action, void *uctx)
Cancel an in progress user modification.
Definition rlm_ldap.c:1921
static xlat_arg_parser_t const ldap_safe_xlat_arg[]
Definition rlm_ldap.c:412
static unlang_action_t mod_map_proc(rlm_rcode_t *p_result, void const *mod_inst, UNUSED void *proc_inst, request_t *request, fr_value_box_list_t *url, map_list_t const *maps)
Perform a search and map the result of the search to server attributes.
Definition rlm_ldap.c:1349
ldap_auth_call_env_t * call_env
Definition rlm_ldap.c:359
static unlang_action_t ldap_group_xlat_results(rlm_rcode_t *p_result, UNUSED int *priority, request_t *request, void *uctx)
Run the state machine for the LDAP membership xlat.
Definition rlm_ldap.c:880
static const call_env_method_t authenticate_method_env
Definition rlm_ldap.c:190
static unlang_action_t user_modify_mod_build_resume(rlm_rcode_t *p_result, UNUSED int *priority, request_t *request, void *uctx)
Definition rlm_ldap.c:1959
static xlat_arg_parser_t const ldap_uri_escape_xlat_arg[]
Definition rlm_ldap.c:407
fr_ldap_result_code_t ret
Definition rlm_ldap.c:1040
fr_dict_attr_t const * attr_ldap_userdn
Definition rlm_ldap.c:327
global_lib_autoinst_t const * rlm_ldap_lib[]
Definition rlm_ldap.c:346
static const call_env_method_t authorize_method_env
Definition rlm_ldap.c:213
#define USERMOD_ENV(_section)
Definition rlm_ldap.c:254
fr_value_box_t password
Definition rlm_ldap.c:58
static unlang_action_t mod_map_resume(rlm_rcode_t *p_result, UNUSED int *priority, request_t *request, void *uctx)
Process the results of an LDAP map query.
Definition rlm_ldap.c:1226
LDAPControl * serverctrls[LDAP_MAX_CONTROLS]
Definition rlm_ldap.c:387
#define SSS_CONTROL_BUILD(_obj)
static xlat_arg_parser_t const ldap_uri_unescape_xlat_arg[]
Definition rlm_ldap.c:467
static const call_env_method_t xlat_profile_method_env
Definition rlm_ldap.c:298
static int ldap_mod_section_parse(TALLOC_CTX *ctx, call_env_parsed_head_t *out, tmpl_rules_t const *t_rules, CONF_ITEM *ci, call_env_ctx_t const *cec, call_env_parser_t const *rule)
#define CHECK_EXPANDED_SPACE(_expanded)
map_list_t const * maps
Definition rlm_ldap.c:383
static unlang_action_t user_modify_resume(rlm_rcode_t *p_result, UNUSED int *priority, request_t *request, void *uctx)
Take the retrieved user DN and launch the async tmpl expansion of mod_values.
Definition rlm_ldap.c:2098
fr_dict_attr_t const * attr_crypt_password
Definition rlm_ldap.c:326
fr_value_box_t user_filter
Definition rlm_ldap.c:73
static int ldap_group_filter_parse(TALLOC_CTX *ctx, void *out, tmpl_rules_t const *t_rules, CONF_ITEM *ci, call_env_ctx_t const *cec, UNUSED call_env_parser_t const *rule)
static fr_dict_t const * dict_freeradius
Definition rlm_ldap.c:316
static int map_ctx_free(ldap_map_ctx_t *map_ctx)
Ensure map context is properly cleared up.
Definition rlm_ldap.c:1319
fr_dict_attr_t const * cache_da
Definition rlm_ldap.c:54
static void ldap_query_timeout(UNUSED fr_timer_list_t *tl, UNUSED fr_time_t now, void *uctx)
Callback when LDAP query times out.
Definition rlm_ldap.c:542
static conf_parser_t user_config[]
Definition rlm_ldap.c:112
static fr_dict_attr_t const * attr_expr_bool_enum
Definition rlm_ldap.c:330
static fr_table_num_sorted_t const ldap_uri_scheme_table[]
Definition rlm_ldap.c:396
static xlat_arg_parser_t const ldap_xlat_arg[]
Definition rlm_ldap.c:650
static unlang_action_t mod_authorize_start(UNUSED rlm_rcode_t *p_result, UNUSED int *priority, request_t *request, void *uctx)
Start LDAP authorization with async lookup of user DN.
Definition rlm_ldap.c:1512
static int ldap_uri_part_escape(fr_value_box_t *vb, UNUSED void *uctx)
Escape function for a part of an LDAP URI.
Definition rlm_ldap.c:513
fr_dict_attr_t const * group_da
Definition rlm_ldap.c:53
fr_dict_attr_t const * attr_password
Definition rlm_ldap.c:324
static unlang_action_t mod_authenticate(rlm_rcode_t *p_result, module_ctx_t const *mctx, request_t *request)
Definition rlm_ldap.c:1434
static int mod_bootstrap(module_inst_ctx_t const *mctx)
Bootstrap the module.
Definition rlm_ldap.c:2660
#define REPEAT_MOD_AUTHORIZE_RESUME
Definition rlm_ldap.c:1521
fr_value_box_t user_sasl_proxy
Definition rlm_ldap.c:62
fr_ldap_thread_trunk_t * ttrunk
Definition rlm_ldap.c:371
fr_value_box_t user_sasl_authname
Definition rlm_ldap.c:61
fr_dict_attr_t const * attr_password_with_header
Definition rlm_ldap.c:329
static int ldap_update_section_parse(TALLOC_CTX *ctx, call_env_parsed_head_t *out, tmpl_rules_t const *t_rules, CONF_ITEM *ci, call_env_ctx_t const *cec, call_env_parser_t const *rule)
rlm_ldap_t const * inst
Definition rlm_ldap.c:366
static conf_parser_t group_config[]
Definition rlm_ldap.c:128
fr_ldap_query_t * query
Definition rlm_ldap.c:385
static void mod_unload(void)
Definition rlm_ldap.c:2750
fr_dict_attr_autoload_t rlm_ldap_dict_attr[]
Definition rlm_ldap.c:333
ldap_mod_tmpl_t ** mod
Definition rlm_ldap.c:74
static xlat_action_t ldap_group_xlat_resume(TALLOC_CTX *ctx, fr_dcursor_t *out, xlat_ctx_t const *xctx, UNUSED request_t *request, UNUSED fr_value_box_list_t *in)
Process the results of evaluating LDAP group membership.
Definition rlm_ldap.c:928
char const * attr
Definition rlm_ldap.c:67
static void ldap_group_xlat_cancel(UNUSED request_t *request, UNUSED fr_signal_t action, void *uctx)
Cancel an in-progress query for the LDAP group membership xlat.
Definition rlm_ldap.c:861
ssize_t expect_password_offset
Definition rlm_ldap.c:210
static int ldap_xlat_uri_parse(LDAPURLDesc **uri_parsed, char **host_out, bool *free_host_out, request_t *request, char *host_default, fr_value_box_t *uri_in)
Utility function for parsing LDAP URLs.
Definition rlm_ldap.c:690
static int ldap_xlat_profile_ctx_free(ldap_xlat_profile_ctx_t *to_free)
Definition rlm_ldap.c:1062
static char * host_uri_canonify(request_t *request, LDAPURLDesc *url_parsed, fr_value_box_t *url_in)
Produce canonical LDAP host URI for finding trunks.
Definition rlm_ldap.c:659
fr_dict_attr_t const * attr_cleartext_password
Definition rlm_ldap.c:325
tmpl_t const * password_tmpl
Definition rlm_ldap.c:59
static unlang_action_t mod_authorize(rlm_rcode_t *p_result, module_ctx_t const *mctx, request_t *request)
Definition rlm_ldap.c:1841
static xlat_action_t ldap_xlat_resume(TALLOC_CTX *ctx, fr_dcursor_t *out, xlat_ctx_t const *xctx, request_t *request, UNUSED fr_value_box_list_t *in)
Callback when resuming after async ldap query is completed.
Definition rlm_ldap.c:568
fr_value_box_t user_sasl_mech
Definition rlm_ldap.c:60
static unlang_action_t user_modify_start(UNUSED rlm_rcode_t *p_result, UNUSED int *priority, request_t *request, void *uctx)
Perform async lookup of user DN if required for user modification.
Definition rlm_ldap.c:1909
fr_dict_autoload_t rlm_ldap_dict[]
Definition rlm_ldap.c:319
static int mod_thread_instantiate(module_thread_inst_ctx_t const *mctx)
Initialise thread specific data structure.
Definition rlm_ldap.c:2406
module_rlm_t rlm_ldap
Definition rlm_ldap.c:2759
char const * password
Definition rlm_ldap.c:356
static int autz_ctx_free(ldap_autz_ctx_t *autz_ctx)
Ensure authorization context is properly cleared up.
Definition rlm_ldap.c:1834
ldap_schemes_t
Definition rlm_ldap.c:390
@ LDAP_SCHEME_UNIX
Definition rlm_ldap.c:391
@ LDAP_SCHEME_TCP_SSL
Definition rlm_ldap.c:393
@ LDAP_SCHEME_TCP
Definition rlm_ldap.c:392
fr_token_t op
Definition rlm_ldap.c:68
fr_value_box_t user_base
Definition rlm_ldap.c:72
fr_ldap_map_exp_t expanded
Definition rlm_ldap.c:1043
static unlang_action_t ldap_group_xlat_user_find(UNUSED rlm_rcode_t *p_result, UNUSED int *priority, request_t *request, void *uctx)
User object lookup as part of group membership xlat.
Definition rlm_ldap.c:845
static void ldap_xlat_signal(xlat_ctx_t const *xctx, request_t *request, UNUSED fr_signal_t action)
Callback for signalling async ldap query.
Definition rlm_ldap.c:615
fr_ldap_query_t * query
Definition rlm_ldap.c:372
static unlang_action_t mod_modify(rlm_rcode_t *p_result, module_ctx_t const *mctx, request_t *request)
Modify user's object in LDAP.
Definition rlm_ldap.c:2135
fr_ldap_thread_t * thread
Definition rlm_ldap.c:358
static size_t ldap_uri_scheme_table_len
Definition rlm_ldap.c:401
#define LDAP_URI_SAFE_FOR
This is the common function that actually ends up doing all the URI escaping.
Definition rlm_ldap.c:405
static fr_uri_part_t const ldap_dn_parts[]
Definition rlm_ldap.c:645
static unlang_action_t user_modify_final(rlm_rcode_t *p_result, UNUSED int *priority, request_t *request, void *uctx)
Handle results of user modification.
Definition rlm_ldap.c:1933
static const conf_parser_t module_config[]
Definition rlm_ldap.c:145
#define USER_CALL_ENV_COMMON(_struct)
Definition rlm_ldap.c:186
ldap_usermod_call_env_t * call_env
Definition rlm_ldap.c:367
static unlang_action_t mod_authorize_resume(rlm_rcode_t *p_result, UNUSED int *priority, request_t *request, void *uctx)
Resume function called after each potential yield in LDAP authorization.
Definition rlm_ldap.c:1540
static void mod_authorize_cancel(UNUSED request_t *request, UNUSED fr_signal_t action, void *uctx)
Clear up when cancelling a mod_authorize call.
Definition rlm_ldap.c:1824
fr_value_box_t profile_filter
Filter to use when searching for users.
Definition rlm_ldap.c:80
static int mod_thread_detach(module_thread_inst_ctx_t const *mctx)
Clean up thread specific data structure.
Definition rlm_ldap.c:2388
static int mod_instantiate(module_inst_ctx_t const *mctx)
Instantiate the module.
Definition rlm_ldap.c:2451
fr_ldap_map_exp_t expanded
Definition rlm_ldap.c:386
LDAPURLDesc * ldap_url
Definition rlm_ldap.c:384
static const call_env_parser_t sasl_call_env[]
Definition rlm_ldap.c:89
fr_value_box_t user_sasl_realm
Definition rlm_ldap.c:63
fr_value_box_list_t expanded
Definition rlm_ldap.c:373
static fr_uri_part_t const ldap_uri_parts[]
Definition rlm_ldap.c:633
char const * dn
Definition rlm_ldap.c:355
static xlat_arg_parser_t const ldap_group_xlat_arg[]
Definition rlm_ldap.c:941
rlm_ldap_t const * inst
Definition rlm_ldap.c:357
Holds state of in progress async authentication.
Definition rlm_ldap.c:354
Holds state of in progress LDAP map.
Definition rlm_ldap.c:382
Parameters to allow ldap_update_section_parse to be reused.
Definition rlm_ldap.c:208
Holds state of in progress ldap user modifications.
Definition rlm_ldap.c:365
Call environment used in the profile xlat.
Definition rlm_ldap.c:79
LDAP authorization and authentication module headers.
fr_ldap_map_exp_t expanded
Definition rlm_ldap.h:194
ldap_autz_call_env_t * call_env
Definition rlm_ldap.h:197
struct berval ** profile_values
Definition rlm_ldap.h:200
@ LDAP_ACCESS_SUSPENDED
User account has been suspended.
Definition rlm_ldap.h:185
@ LDAP_ACCESS_ALLOWED
User is allowed to login.
Definition rlm_ldap.h:183
@ LDAP_ACCESS_DISALLOWED
User it not allow to login (disabled)
Definition rlm_ldap.h:184
fr_ldap_thread_trunk_t * ttrunk
Definition rlm_ldap.h:196
rlm_ldap_t const * inst
Definition rlm_ldap.h:193
fr_value_box_t profile_filter
Filter to use when searching for profiles.
Definition rlm_ldap.h:144
fr_value_box_t user_filter
Filter to use when searching for users.
Definition rlm_ldap.h:137
LDAPMessage * entry
Definition rlm_ldap.h:198
@ LDAP_AUTZ_GROUP
Definition rlm_ldap.h:167
@ LDAP_AUTZ_FIND
Definition rlm_ldap.h:166
@ LDAP_AUTZ_DEFAULT_PROFILE
Definition rlm_ldap.h:174
@ LDAP_AUTZ_USER_PROFILE
Definition rlm_ldap.h:176
@ LDAP_AUTZ_MAP
Definition rlm_ldap.h:173
@ LDAP_AUTZ_POST_DEFAULT_PROFILE
Definition rlm_ldap.h:175
@ LDAP_AUTZ_POST_GROUP
Definition rlm_ldap.h:168
ldap_autz_status_t status
Definition rlm_ldap.h:199
fr_ldap_query_t * query
Definition rlm_ldap.h:195
char * profile_value
Definition rlm_ldap.h:202
ldap_access_state_t access_state
What state a user's account is in.
Definition rlm_ldap.h:204
fr_value_box_t user_base
Base DN in which to search for users.
Definition rlm_ldap.h:136
unlang_action_t rlm_ldap_find_user_async(TALLOC_CTX *ctx, rlm_ldap_t const *inst, request_t *request, fr_value_box_t *base, fr_value_box_t *filter_box, fr_ldap_thread_trunk_t *ttrunk, char const *attrs[], fr_ldap_query_t **query_out)
Initiate asynchronous retrieval of the DN of a user object.
Definition user.c:159
char const * dn
Definition rlm_ldap.h:203
map_list_t * user_map
Attribute map applied to users and profiles.
Definition rlm_ldap.h:146
static char const * rlm_find_user_dn_cached(request_t *request)
Definition rlm_ldap.h:246
void rlm_ldap_check_reply(request_t *request, rlm_ldap_t const *inst, char const *inst_name, bool expect_password, fr_ldap_thread_trunk_t const *ttrunk)
Verify we got a password from the search.
Definition user.c:251
fr_value_box_t const * expect_password
True if the user_map included a mapping between an LDAP attribute and one of our password reference a...
Definition rlm_ldap.h:148
fr_value_box_t default_profile
If this is set, we will search for a profile object with this name, and map any attributes it contain...
Definition rlm_ldap.h:140
@ GROUP_XLAT_MEMB_FILTER
Definition rlm_ldap.h:211
@ GROUP_XLAT_MEMB_ATTR
Definition rlm_ldap.h:212
@ GROUP_XLAT_FIND_USER
Definition rlm_ldap.h:210
module_instance_t const * dlinst
Definition rlm_ldap.h:192
ldap_access_state_t rlm_ldap_check_access(rlm_ldap_t const *inst, request_t *request, LDAPMessage *entry)
Check for presence of access attribute in result.
Definition user.c:199
Call environment used in LDAP authorization.
Definition rlm_ldap.h:135
Holds state of in progress async authorization.
Definition rlm_ldap.h:191
Holds state of in progress group membership check xlat.
Definition rlm_ldap.h:218
Call environment used in group membership xlat.
Definition rlm_ldap.h:155
unlang_action_t fr_ldap_sasl_bind_auth_async(request_t *request, fr_ldap_thread_t *thread, char const *mechs, char const *identity, char const *password, char const *proxy, char const *realm)
Initiate an async SASL LDAP bind for authentication.
Definition sasl.c:504
int fr_sbuff_trim_talloc(fr_sbuff_t *sbuff, size_t len)
Trim a talloced sbuff to the minimum length required to represent the contained string.
Definition sbuff.c:419
#define FR_SBUFF_IN(_start, _len_or_end)
#define FR_SBUFF_TERMS(...)
Initialise a terminal structure with a list of sorted strings.
Definition sbuff.h:192
#define fr_sbuff_buff(_sbuff_or_marker)
Talloc sbuff extension structure.
Definition sbuff.h:139
static char const * section_name_str(char const *name)
Return a printable string for the section name.
Definition section.h:98
#define SECTION_NAME(_name1, _name2)
Define a section name consisting of a verb and a noun.
Definition section.h:40
char const * name2
Second section name. Usually a packet type like 'access-request', 'access-accept',...
Definition section.h:46
char const * name1
First section name. Usually a verb like 'recv', 'send', etc...
Definition section.h:45
char const * name
Instance name e.g. user_database.
Definition module.h:335
module_flags_t flags
Flags that control how a module starts up and how a module is called.
Definition module.h:227
CONF_SECTION * conf
Module's instance configuration.
Definition module.h:329
void * data
Module's instance data.
Definition module.h:271
void * boot
Data allocated during the boostrap phase.
Definition module.h:274
void * data
Thread specific instance data.
Definition module.h:352
static module_thread_instance_t * module_thread(module_instance_t const *mi)
Retrieve module/thread specific instance for a module.
Definition module.h:481
#define MODULE_BINDING_TERMINATOR
Terminate a module binding list.
Definition module.h:151
Named methods exported by a module.
Definition module.h:173
static tmpl_attr_t const * tmpl_attr_tail(tmpl_t const *vpt)
Return the last attribute reference.
Definition tmpl.h:795
int tmpl_resolve(tmpl_t *vpt, tmpl_res_rules_t const *tr_rules))
Attempt to resolve functions and attributes in xlats and attribute references.
ssize_t tmpl_afrom_substr(TALLOC_CTX *ctx, tmpl_t **out, fr_sbuff_t *in, fr_token_t quote, fr_sbuff_parse_rules_t const *p_rules, tmpl_rules_t const *t_rules))
Convert an arbitrary string into a tmpl_t.
tmpl_attr_rules_t attr
Rules/data for parsing attribute references.
Definition tmpl.h:340
#define tmpl_needs_resolving(vpt)
Definition tmpl.h:228
Similar to tmpl_rules_t, but used to specify parameters that may change during subsequent resolution ...
Definition tmpl.h:369
Optional arguments passed to vp_tmpl functions.
Definition tmpl.h:337
fr_signal_t
Signals that can be generated/processed by request signal handlers.
Definition signal.h:38
@ FR_SIGNAL_CANCEL
Request has been cancelled.
Definition signal.h:40
PUBLIC int snprintf(char *string, size_t length, char *format, va_alist)
Definition snprintf.c:689
return count
Definition module.c:163
eap_aka_sim_process_conf_t * inst
Value pair map.
Definition map.h:77
tmpl_t * lhs
Typically describes the attribute to add, modify or compare.
Definition map.h:78
fr_dict_t const * dict_def
Default dictionary to use with unqualified attribute references.
Definition tmpl.h:278
An element in a list of nested attribute references.
Definition tmpl.h:435
fr_dict_attr_t const *_CONST da
Resolved dictionary attribute.
Definition tmpl.h:439
Stores an attribute, a value and various bits of other data.
Definition pair.h:68
#define fr_table_value_by_str(_table, _name, _def)
Convert a string to a value using a sorted or ordered table.
Definition table.h:653
#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
char * talloc_typed_strdup_buffer(TALLOC_CTX *ctx, char const *p)
Call talloc_strndup, setting the type on the new chunk correctly.
Definition talloc.c:469
char * talloc_typed_asprintf(TALLOC_CTX *ctx, char const *fmt,...)
Call talloc vasprintf, setting the type on the new chunk correctly.
Definition talloc.c:492
#define talloc_get_type_abort_const
Definition talloc.h:282
#define talloc_pooled_object(_ctx, _type, _num_subobjects, _total_subobjects_size)
Definition talloc.h:180
"server local" time.
Definition time.h:69
An event timer list.
Definition timer.c:53
#define fr_timer_in(...)
Definition timer.h:86
int unlang_tmpl_push(TALLOC_CTX *ctx, fr_value_box_list_t *out, request_t *request, tmpl_t const *tmpl, unlang_tmpl_args_t *args)
Push a tmpl onto the stack for evaluation.
Definition tmpl.c:262
@ TMPL_ESCAPE_PRE_CONCAT
Pre-concatenation escaping is useful for DSLs where elements of the expansion are static,...
Definition tmpl_escape.h:61
fr_table_num_ordered_t const fr_tokens_table[]
Definition token.c:33
enum fr_token fr_token_t
@ T_OP_SUB_EQ
Definition token.h:70
@ T_SINGLE_QUOTED_STRING
Definition token.h:122
@ T_BARE_WORD
Definition token.h:120
@ T_OP_SET
Definition token.h:84
@ T_OP_ADD_EQ
Definition token.h:69
@ T_OP_CMP_FALSE
Definition token.h:105
@ T_OP_INCRM
Definition token.h:113
trunk_enqueue_t trunk_request_enqueue(trunk_request_t **treq_out, trunk_t *trunk, request_t *request, void *preq, void *rctx)
Enqueue a request that needs data written to the trunk.
Definition trunk.c:2587
void trunk_request_signal_cancel(trunk_request_t *treq)
Cancel a trunk request.
Definition trunk.c:2152
conf_parser_t const trunk_config[]
Config parser definitions to populate a trunk_conf_t.
Definition trunk.c:315
Wraps a normal request.
Definition trunk.c:100
@ TRUNK_ENQUEUE_OK
Operation was successful.
Definition trunk.h:150
@ TRUNK_ENQUEUE_IN_BACKLOG
Request should be enqueued in backlog.
Definition trunk.h:149
xlat_action_t unlang_xlat_yield(request_t *request, xlat_func_t resume, xlat_func_signal_t signal, fr_signal_t sigmask, void *rctx)
Yield a request back to the interpreter from within a module.
Definition xlat.c:574
bool required
Argument must be present, and non-empty.
Definition xlat.h:148
xlat_action_t xlat_transparent(UNUSED TALLOC_CTX *ctx, fr_dcursor_t *out, UNUSED xlat_ctx_t const *xctx, request_t *request, fr_value_box_list_t *args)
#define XLAT_ARGS(_list,...)
Populate local variables with value boxes from the input list.
Definition xlat.h:381
#define XLAT_ARG_PARSER_TERMINATOR
Definition xlat.h:168
xlat_action_t
Definition xlat.h:37
@ XLAT_ACTION_FAIL
An xlat function failed.
Definition xlat.h:44
@ XLAT_ACTION_YIELD
An xlat function pushed a resume frame onto the stack.
Definition xlat.h:42
@ XLAT_ACTION_PUSH_UNLANG
An xlat function pushed an unlang frame onto the unlang stack.
Definition xlat.h:39
@ XLAT_ACTION_DONE
We're done evaluating this level of nesting.
Definition xlat.h:43
Definition for a single argument consumend by an xlat function.
Definition xlat.h:147
int fr_uri_escape_list(fr_value_box_list_t *uri, fr_uri_part_t const *uri_parts, void *uctx)
Parse a list of value boxes representing a URI.
Definition uri.c:141
int fr_uri_has_scheme(fr_value_box_list_t *uri, fr_table_num_sorted_t const *schemes, size_t schemes_len, int def)
Searches for a matching scheme in the table of schemes, using a list of value boxes representing the ...
Definition uri.c:168
#define XLAT_URI_PART_TERMINATOR
Definition uri.h:66
char const * name
Name of this part of the URI.
Definition uri.h:47
Definition for a single part of a URI.
Definition uri.h:46
#define fr_strerror_printf_push(_fmt,...)
Add a message to an existing stack of messages at the tail.
Definition strerror.h:84
#define FR_TYPE_FIXED_SIZE
Definition types.h:290
fr_sbuff_parse_rules_t const * value_parse_rules_quoted[T_TOKEN_LAST]
Parse rules for quoted strings.
Definition value.c:606
int fr_value_box_copy(TALLOC_CTX *ctx, fr_value_box_t *dst, const fr_value_box_t *src)
Copy value data verbatim duplicating any buffers.
Definition value.c:3759
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
void fr_value_box_strdup_shallow_replace(fr_value_box_t *vb, char const *src, ssize_t len)
Free the existing buffer (if talloced) associated with the valuebox, and replace it with a new one.
Definition value.c:4082
void fr_value_box_strdup_shallow(fr_value_box_t *dst, fr_dict_attr_t const *enumv, char const *src, bool tainted)
Assign a buffer containing a nul terminated string to a box, but don't copy it.
Definition value.c:4066
int fr_value_box_bstr_realloc(TALLOC_CTX *ctx, char **out, fr_value_box_t *dst, size_t len)
Change the length of a buffer already allocated to a value box.
Definition value.c:4134
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.
Definition value.c:4178
int fr_value_box_bstrdup_buffer_shallow(TALLOC_CTX *ctx, fr_value_box_t *dst, fr_dict_attr_t const *enumv, char const *src, bool tainted)
Assign a talloced buffer containing a nul terminated string to a box, but don't copy it.
Definition value.c:4283
int fr_value_box_list_concat_in_place(TALLOC_CTX *ctx, fr_value_box_t *out, fr_value_box_list_t *list, fr_type_t type, fr_value_box_list_action_t proc_action, bool flatten, size_t max_size)
Concatenate a list of value boxes.
Definition value.c:5730
@ FR_VALUE_BOX_LIST_FREE
Definition value.h:232
#define fr_value_box_alloc(_ctx, _type, _enumv)
Allocate a value box of a specific type.
Definition value.h:632
#define fr_value_box_is_safe_for_only(_box, _safe_for)
Definition value.h:1071
#define fr_box_strvalue_len(_val, _len)
Definition value.h:297
uintptr_t fr_value_box_safe_for_t
Escaping that's been applied to a value box.
Definition value.h:155
int nonnull(2, 5))
#define fr_value_box_alloc_null(_ctx)
Allocate a value box for later use with a value assignment function.
Definition value.h:643
static size_t char ** out
Definition value.h:1012
static TALLOC_CTX * xlat_ctx
void * rctx
Resume context.
Definition xlat_ctx.h:54
void * env_data
Expanded call env data.
Definition xlat_ctx.h:53
module_ctx_t const * mctx
Synthesised module calling ctx.
Definition xlat_ctx.h:52
An xlat calling ctx.
Definition xlat_ctx.h:49
void xlat_func_flags_set(xlat_t *x, xlat_func_flags_t flags)
Specify flags that alter the xlat's behaviour.
Definition xlat_func.c:402
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
void xlat_func_call_env_set(xlat_t *x, call_env_method_t const *env_method)
Register call environment of an xlat.
Definition xlat_func.c:392
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
void xlat_func_unregister(char const *name)
Unregister an xlat function.
Definition xlat_func.c:519
#define xlat_func_safe_for_set(_xlat, _escaped)
Set the escaped values for output boxes.
Definition xlat_func.h:82
@ XLAT_FUNC_FLAG_PURE
Definition xlat_func.h:38