summaryrefslogtreecommitdiffstats
path: root/src/providers/ldap/ldap_common.c
diff options
context:
space:
mode:
authorSumit Bose <sbose@redhat.com>2010-10-21 10:13:46 +0200
committerStephen Gallagher <sgallagh@redhat.com>2010-10-22 07:21:49 -0400
commit4534c103b193b74452ea81bf12ffaceb1901728a (patch)
tree7719850dbeaa3a3358c031f8f0b8397e424aae7c /src/providers/ldap/ldap_common.c
parent3fd2f20f23c909f7d3d4dfd1b8b1c0f8cc87dfe1 (diff)
downloadsssd-4534c103b193b74452ea81bf12ffaceb1901728a.tar.gz
sssd-4534c103b193b74452ea81bf12ffaceb1901728a.tar.xz
sssd-4534c103b193b74452ea81bf12ffaceb1901728a.zip
Add ldap_deref option
Diffstat (limited to 'src/providers/ldap/ldap_common.c')
-rw-r--r--src/providers/ldap/ldap_common.c13
1 files changed, 12 insertions, 1 deletions
diff --git a/src/providers/ldap/ldap_common.c b/src/providers/ldap/ldap_common.c
index ea5f95707..543774b87 100644
--- a/src/providers/ldap/ldap_common.c
+++ b/src/providers/ldap/ldap_common.c
@@ -71,7 +71,8 @@ struct dp_option default_basic_opts[] = {
{ "ldap_krb5_ticket_lifetime", DP_OPT_NUMBER, { .number = (24 * 60 * 60) }, NULL_NUMBER },
{ "ldap_access_filter", DP_OPT_STRING, NULL_STRING, NULL_STRING },
{ "ldap_netgroup_search_base", DP_OPT_STRING, NULL_STRING, NULL_STRING },
- { "ldap_group_nesting_level", DP_OPT_NUMBER, { .number = 2 }, NULL_NUMBER }
+ { "ldap_group_nesting_level", DP_OPT_NUMBER, { .number = 2 }, NULL_NUMBER },
+ { "ldap_deref", DP_OPT_STRING, NULL_STRING, NULL_STRING }
};
struct sdap_attr_map generic_attr_map[] = {
@@ -188,6 +189,8 @@ int ldap_get_options(TALLOC_CTX *memctx,
int ret;
int account_cache_expiration;
int offline_credentials_expiration;
+ const char *ldap_deref;
+ int ldap_deref_val;
opts = talloc_zero(memctx, struct sdap_options);
if (!opts) return ENOMEM;
@@ -293,6 +296,14 @@ int ldap_get_options(TALLOC_CTX *memctx,
goto done;
}
+ ldap_deref = dp_opt_get_string(opts->basic, SDAP_DEREF);
+ if (ldap_deref != NULL) {
+ ret = deref_string_to_val(ldap_deref, &ldap_deref_val);
+ if (ret != EOK) {
+ DEBUG(1, ("Failed to verify ldap_deref option.\n"));
+ goto done;
+ }
+ }
#ifndef HAVE_LDAP_CONNCB
bool ldap_referrals;