[Bug 382677] [NEW] crash with SQL backend on search with empty attributes
Stephane Chazelas
stephane.chazelas at seebyte.com
Tue Jun 2 10:39:31 BST 2009
Public bug reported:
When using the SQL backend, a search like:
ldapsearch ... '(cn=)'
causes slapd to crash with this error:
slapd: /tmp/openldap-2.4.15/servers/slapd/back-sql/search.c:1366:
backsql_process_filter_attr: Assertion `0' failed.
Looking at the code there, it does a
switch(f->f_choice) {
....
default:
assert(0);
}
As it happens, in that instance f_choice is something like 0x80a3, that
is SLAPD_FILTER_UNDEFINED|LDAP_FILTER_EQUALITY.
And the back-sql backend doesn't support that SLAPD_FILTER_UNDEFINED
flag like the other backends, hence the abort() on that assert.
A work around for that (change in indentation no shown):
--- search.c~ 2009-06-01 15:55:16.000000000 +0100
+++ servers/slapd/back-sql/search.c 2009-06-01 17:00:51.000000000 +0100
@@ -717,6 +717,9 @@
goto done;
}
+ if (f->f_choice & SLAPD_FILTER_UNDEFINED) {
+ rc = -1;
+ } else {
switch( f->f_choice ) {
case LDAP_FILTER_OR:
rc = backsql_process_filter_list( bsi, f->f_or,
@@ -772,6 +775,7 @@
ad = f->f_av_desc;
break;
}
+ }
if ( rc == -1 ) {
goto done;
That's only a work around. The fix would be to implement the support for
such searches.
Best regards,
Stephane
ProblemType: Bug
Architecture: i386
DistroRelease: Ubuntu 9.04
NonfreeKernelModules: nvidia
Package: slapd 2.4.15-1ubuntu3
ProcEnviron:
SHELL=/bin/zsh
PATH=(custom, user)
LANG=en_GB.UTF-8
SourcePackage: openldap
Uname: Linux 2.6.30-rc6-custom i686
** Affects: openldap (Ubuntu)
Importance: Undecided
Status: New
** Tags: apport-bug i386
--
crash with SQL backend on search with empty attributes
https://bugs.launchpad.net/bugs/382677
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to openldap in ubuntu.
More information about the Ubuntu-server-bugs
mailing list