Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
O
OpenLDAP
Manage
Activity
Members
Labels
Plan
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Christopher Ng
OpenLDAP
Commits
c4a8a3dc
Commit
c4a8a3dc
authored
22 years ago
by
Pierangelo Masarati
Browse files
Options
Downloads
Patches
Plain Diff
better error handling when returning results
parent
84fe0ad0
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
servers/slapd/back-ldap/search.c
+10
-7
10 additions, 7 deletions
servers/slapd/back-ldap/search.c
servers/slapd/back-meta/search.c
+11
-8
11 additions, 8 deletions
servers/slapd/back-meta/search.c
with
21 additions
and
15 deletions
servers/slapd/back-ldap/search.c
+
10
−
7
View file @
c4a8a3dc
...
...
@@ -48,7 +48,7 @@
#undef ldap_debug
/* silence a warning in ldap-int.h */
#include
"../../../libraries/libldap/ldap-int.h"
static
void
ldap_send_entry
(
Backend
*
be
,
Operation
*
op
,
struct
ldapconn
*
lc
,
static
int
ldap_send_entry
(
Backend
*
be
,
Operation
*
op
,
struct
ldapconn
*
lc
,
LDAPMessage
*
e
,
AttributeName
*
attrs
,
int
attrsonly
);
int
...
...
@@ -272,8 +272,9 @@ fail:;
ldap_pvt_thread_yield
();
}
else
if
(
rc
==
LDAP_RES_SEARCH_ENTRY
)
{
e
=
ldap_first_entry
(
lc
->
ld
,
res
);
ldap_send_entry
(
be
,
op
,
lc
,
e
,
attrs
,
attrsonly
);
count
++
;
if
(
ldap_send_entry
(
be
,
op
,
lc
,
e
,
attrs
,
attrsonly
)
==
LDAP_SUCCESS
)
{
count
++
;
}
ldap_msgfree
(
res
);
}
else
{
sres
=
ldap_result2error
(
lc
->
ld
,
res
,
1
);
...
...
@@ -353,7 +354,7 @@ finish:;
return
rc
;
}
static
void
static
int
ldap_send_entry
(
Backend
*
be
,
Operation
*
op
,
...
...
@@ -373,7 +374,7 @@ ldap_send_entry(
const
char
*
text
;
if
(
ber_scanf
(
&
ber
,
"{m{"
,
&
bdn
)
==
LBER_ERROR
)
{
return
;
return
LDAP_DECODING_ERROR
;
}
#ifdef ENABLE_REWRITE
...
...
@@ -400,7 +401,7 @@ ldap_send_entry(
case
REWRITE_REGEXEC_ERR
:
case
REWRITE_REGEXEC_UNWILLING
:
return
;
return
LDAP_OTHER
;
}
#else
/* !ENABLE_REWRITE */
ldap_back_dn_massage
(
li
,
&
bdn
,
&
ent
.
e_name
,
0
,
0
);
...
...
@@ -414,7 +415,7 @@ ldap_send_entry(
* FIXME: should we log anything, or delegate to dnNormalize2?
*/
if
(
dnNormalize2
(
NULL
,
&
ent
.
e_name
,
&
ent
.
e_nname
)
!=
LDAP_SUCCESS
)
{
return
;
return
LDAP_INVALID_DN_SYNTAX
;
}
ent
.
e_id
=
0
;
...
...
@@ -560,4 +561,6 @@ ldap_send_entry(
free
(
ent
.
e_dn
);
if
(
ent
.
e_ndn
)
free
(
ent
.
e_ndn
);
return
LDAP_SUCCESS
;
}
This diff is collapsed.
Click to expand it.
servers/slapd/back-meta/search.c
+
11
−
8
View file @
c4a8a3dc
...
...
@@ -80,7 +80,7 @@
#include
"ldap_log.h"
#include
"../../../libraries/libldap/ldap-int.h"
static
void
static
int
meta_send_entry
(
Backend
*
be
,
Operation
*
op
,
...
...
@@ -445,9 +445,10 @@ meta_back_search(
goto
finish
;
}
else
if
(
rc
==
LDAP_RES_SEARCH_ENTRY
)
{
e
=
ldap_first_entry
(
lsc
->
ld
,
res
);
meta_send_entry
(
be
,
op
,
lc
,
i
,
e
,
attrs
,
attrsonly
);
count
++
;
if
(
meta_send_entry
(
be
,
op
,
lc
,
i
,
e
,
attrs
,
attrsonly
)
==
LDAP_SUCCESS
)
{
count
++
;
}
ldap_msgfree
(
res
);
gotit
=
1
;
}
else
{
...
...
@@ -569,7 +570,7 @@ finish:;
return
rc
;
}
static
void
static
int
meta_send_entry
(
Backend
*
be
,
Operation
*
op
,
...
...
@@ -590,7 +591,7 @@ meta_send_entry(
const
char
*
text
;
if
(
ber_scanf
(
&
ber
,
"{m{"
,
&
bdn
)
==
LBER_ERROR
)
{
return
;
return
LDAP_DECODING_ERROR
;
}
/*
...
...
@@ -617,7 +618,7 @@ meta_send_entry(
case
REWRITE_REGEXEC_ERR
:
case
REWRITE_REGEXEC_UNWILLING
:
return
;
return
LDAP_OTHER
;
}
/*
...
...
@@ -628,7 +629,7 @@ meta_send_entry(
* FIXME: should we log anything, or delegate to dnNormalize2?
*/
if
(
dnNormalize2
(
NULL
,
&
ent
.
e_name
,
&
ent
.
e_nname
)
!=
LDAP_SUCCESS
)
{
return
;
return
LDAP_INVALID_DN_SYNTAX
;
}
/*
...
...
@@ -782,6 +783,8 @@ meta_send_entry(
if
(
ent
.
e_ndn
)
{
free
(
ent
.
e_ndn
);
}
return
LDAP_SUCCESS
;
}
static
int
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment