Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
O
OpenLDAP
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue 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
Jaak Ristioja
OpenLDAP
Commits
2647a615
Commit
2647a615
authored
20 years ago
by
Kurt Zeilenga
Browse files
Options
Downloads
Patches
Plain Diff
value_match cleanup
parent
7f773613
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/filterentry.c
+15
-17
15 additions, 17 deletions
servers/slapd/filterentry.c
servers/slapd/matchedValues.c
+13
-18
13 additions, 18 deletions
servers/slapd/matchedValues.c
with
28 additions
and
35 deletions
servers/slapd/filterentry.c
+
15
−
17
View file @
2647a615
...
...
@@ -403,7 +403,7 @@ test_ava_filter(
if
(
ava
->
aa_desc
==
slap_schema
.
si_ad_entryDN
)
{
MatchingRule
*
mr
;
int
rc
,
ret
;
int
rc
,
match
;
const
char
*
text
;
if
(
type
!=
LDAP_FILTER_EQUALITY
&&
...
...
@@ -416,11 +416,11 @@ test_ava_filter(
mr
=
slap_schema
.
si_ad_entryDN
->
ad_type
->
sat_equality
;
assert
(
mr
);
rc
=
value_match
(
&
ret
,
slap_schema
.
si_ad_entryDN
,
mr
,
0
,
rc
=
value_match
(
&
match
,
slap_schema
.
si_ad_entryDN
,
mr
,
0
,
&
e
->
e_nname
,
&
ava
->
aa_value
,
&
text
);
if
(
rc
!=
LDAP_SUCCESS
)
return
rc
;
if
(
ret
==
0
)
return
LDAP_COMPARE_TRUE
;
if
(
match
==
0
)
return
LDAP_COMPARE_TRUE
;
return
LDAP_COMPARE_FALSE
;
}
...
...
@@ -466,30 +466,29 @@ test_ava_filter(
}
for
(
bv
=
a
->
a_nvals
;
bv
->
bv_val
!=
NULL
;
bv
++
)
{
int
ret
;
int
tmprc
;
int
ret
,
match
;
const
char
*
text
;
tmprc
=
value_match
(
&
ret
,
a
->
a_desc
,
mr
,
0
,
ret
=
value_match
(
&
match
,
a
->
a_desc
,
mr
,
0
,
bv
,
&
ava
->
aa_value
,
&
text
);
if
(
tmprc
!=
LDAP_SUCCESS
)
{
rc
=
tmprc
;
if
(
ret
!=
LDAP_SUCCESS
)
{
rc
=
ret
;
break
;
}
switch
(
type
)
{
case
LDAP_FILTER_EQUALITY
:
case
LDAP_FILTER_APPROX
:
if
(
ret
==
0
)
return
LDAP_COMPARE_TRUE
;
if
(
match
==
0
)
return
LDAP_COMPARE_TRUE
;
break
;
case
LDAP_FILTER_GE
:
if
(
ret
>=
0
)
return
LDAP_COMPARE_TRUE
;
if
(
match
>=
0
)
return
LDAP_COMPARE_TRUE
;
break
;
case
LDAP_FILTER_LE
:
if
(
ret
<=
0
)
return
LDAP_COMPARE_TRUE
;
if
(
match
<=
0
)
return
LDAP_COMPARE_TRUE
;
break
;
}
}
...
...
@@ -656,18 +655,17 @@ test_substrings_filter(
}
for
(
bv
=
a
->
a_nvals
;
bv
->
bv_val
!=
NULL
;
bv
++
)
{
int
ret
;
int
tmprc
;
int
ret
,
match
;
const
char
*
text
;
tmprc
=
value_match
(
&
ret
,
a
->
a_desc
,
mr
,
0
,
ret
=
value_match
(
&
match
,
a
->
a_desc
,
mr
,
0
,
bv
,
f
->
f_sub
,
&
text
);
if
(
tmprc
!=
LDAP_SUCCESS
)
{
rc
=
tmprc
;
if
(
ret
!=
LDAP_SUCCESS
)
{
rc
=
ret
;
break
;
}
if
(
ret
==
0
)
return
LDAP_COMPARE_TRUE
;
if
(
match
==
0
)
return
LDAP_COMPARE_TRUE
;
}
}
...
...
This diff is collapsed.
Click to expand it.
servers/slapd/matchedValues.c
+
13
−
18
View file @
2647a615
...
...
@@ -172,37 +172,36 @@ test_ava_vrFilter(
bv
=
a
->
a_nvals
;
for
(
j
=
0
;
bv
->
bv_val
!=
NULL
;
bv
++
,
j
++
)
{
int
ret
;
int
rc
;
int
rc
,
match
;
const
char
*
text
;
rc
=
value_match
(
&
ret
,
a
->
a_desc
,
mr
,
0
,
rc
=
value_match
(
&
match
,
a
->
a_desc
,
mr
,
0
,
bv
,
&
ava
->
aa_value
,
&
text
);
if
(
rc
!=
LDAP_SUCCESS
)
return
rc
;
switch
(
type
)
{
case
LDAP_FILTER_EQUALITY
:
case
LDAP_FILTER_APPROX
:
if
(
ret
==
0
)
{
if
(
match
==
0
)
{
(
*
e_flags
)[
i
][
j
]
=
1
;
}
break
;
case
LDAP_FILTER_GE
:
if
(
ret
>=
0
)
{
if
(
match
>=
0
)
{
(
*
e_flags
)[
i
][
j
]
=
1
;
}
break
;
case
LDAP_FILTER_LE
:
if
(
ret
<=
0
)
{
if
(
match
<=
0
)
{
(
*
e_flags
)[
i
][
j
]
=
1
;
}
break
;
}
}
}
return
(
LDAP_SUCCESS
)
;
return
LDAP_SUCCESS
;
}
static
int
...
...
@@ -247,18 +246,15 @@ test_substrings_vrFilter(
bv
=
a
->
a_nvals
;
for
(
j
=
0
;
bv
->
bv_val
!=
NULL
;
bv
++
,
j
++
)
{
int
ret
;
int
rc
;
int
rc
,
match
;
const
char
*
text
;
rc
=
value_match
(
&
ret
,
a
->
a_desc
,
mr
,
0
,
rc
=
value_match
(
&
match
,
a
->
a_desc
,
mr
,
0
,
bv
,
vrf
->
vrf_sub
,
&
text
);
if
(
rc
!=
LDAP_SUCCESS
)
{
return
rc
;
}
if
(
rc
!=
LDAP_SUCCESS
)
return
rc
;
if
(
ret
==
0
)
{
if
(
match
==
0
)
{
(
*
e_flags
)[
i
][
j
]
=
1
;
}
}
...
...
@@ -309,15 +305,14 @@ test_mra_vrFilter(
}
for
(
j
=
0
;
bv
->
bv_val
!=
NULL
;
bv
++
,
j
++
)
{
int
ret
;
int
rc
;
int
rc
,
match
;
const
char
*
text
;
rc
=
value_match
(
&
ret
,
a
->
a_desc
,
mra
->
ma_rule
,
0
,
rc
=
value_match
(
&
match
,
a
->
a_desc
,
mra
->
ma_rule
,
0
,
bv
,
&
assertedValue
,
&
text
);
if
(
rc
!=
LDAP_SUCCESS
)
return
rc
;
if
(
ret
==
0
)
{
if
(
match
==
0
)
{
(
*
e_flags
)[
i
][
j
]
=
1
;
}
}
...
...
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