summaryrefslogtreecommitdiffstats
path: root/ldap/servers/slapd/backend_manager.c
diff options
context:
space:
mode:
authorRich Megginson <rmeggins@redhat.com>2007-03-15 18:21:43 +0000
committerRich Megginson <rmeggins@redhat.com>2007-03-15 18:21:43 +0000
commit4f079fb8eb74f636aeb8ac64ebfb88b714fe1909 (patch)
treeaa19d108e4b5c68a7ec9dffcc8e4a0a972e60b5d /ldap/servers/slapd/backend_manager.c
parent7f07b4f138f52e9d523f69d80ef4ecfeb98301cd (diff)
downloadds-4f079fb8eb74f636aeb8ac64ebfb88b714fe1909.tar.gz
ds-4f079fb8eb74f636aeb8ac64ebfb88b714fe1909.tar.xz
ds-4f079fb8eb74f636aeb8ac64ebfb88b714fe1909.zip
Resolves: bug 232377
Bug Description: PAM passthru ENTRY method not working Reviewed by: prowley (Thanks!) Fix Description: There are several problems. 1) For the ENTRY method to perform the internal search to get the entry for the bind DN, it must have a component ID (aka plugin identity). The code was already there to get/set it, but it was never initialized in the init function. 2) You cannot mix slapi_sdn_new* with slapi_sdn_init* - slapi_sdn_init will erase the knowledge that the Slapi_DN was allocated with malloc and it will not free it in slapi_sdn_free(). 3) People may assume they can specify a subtree (e.g. ou=people,dc=example,dc=com) instead of a suffix for the list of included/excluded suffixes. The error message will not print a list of valid suffixes for the admin to use. 4) slapi_be_exist was failing because the database does not notify the mapping tree code that the backend is started during startup. This works fine under normal conditions because most all of the code in mapping_tree.c will lookup the backend if the mtn_be pointer in the mapping tree node is NULL. However, slapi_be_exist and slapi_be_select do not do this. The proper solution is to call slapi_mtn_be_started() at database startup time. This is the same thing that happens when a backend is added at runtime. Platforms tested: FC6 Flag Day: no Doc impact: no
Diffstat (limited to 'ldap/servers/slapd/backend_manager.c')
-rw-r--r--ldap/servers/slapd/backend_manager.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/ldap/servers/slapd/backend_manager.c b/ldap/servers/slapd/backend_manager.c
index 5ae39b81..b8af0eb6 100644
--- a/ldap/servers/slapd/backend_manager.c
+++ b/ldap/servers/slapd/backend_manager.c
@@ -80,6 +80,10 @@ slapi_be_new( const char *type, const char *name, int isprivate, int logchanges
backends[i] = be;
nbackends++;
+
+ slapi_log_error(SLAPI_LOG_TRACE, "slapi_be_new",
+ "Added new backend name [%s] type [%s] nbackends [%d]\n",
+ name, type, nbackends);
return( be );
}