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
9baacdcf
Commit
9baacdcf
authored
24 years ago
by
Kurt Zeilenga
Browse files
Options
Downloads
Patches
Plain Diff
SLAPD_SCHEMA_NOT_COMPAT: Add enough matching rules to get through test003
parent
1a8f509f
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
servers/slapd/schema_init.c
+143
-5
143 additions, 5 deletions
servers/slapd/schema_init.c
with
143 additions
and
5 deletions
servers/slapd/schema_init.c
+
143
−
5
View file @
9baacdcf
...
...
@@ -325,6 +325,73 @@ caseExactIA5Match(
return
LDAP_SUCCESS
;
}
#ifdef SLAPD_SCHEMA_NOT_COMPAT
static
int
caseExactIA5SubstringsMatch
(
int
*
matchp
,
unsigned
use
,
Syntax
*
syntax
,
MatchingRule
*
mr
,
struct
berval
*
value
,
void
*
assertedValue
)
{
int
match
=
0
;
SubstringsAssertion
*
sub
=
assertedValue
;
struct
berval
left
=
*
value
;
int
i
;
ber_len_t
inlen
=
0
;
if
(
sub
->
sa_initial
)
{
inlen
+=
sub
->
sa_initial
->
bv_len
;
}
if
(
sub
->
sa_any
)
{
for
(
i
=
0
;
sub
->
sa_any
[
i
];
i
++
)
{
inlen
+=
sub
->
sa_final
->
bv_len
;
}
}
if
(
sub
->
sa_final
)
{
inlen
+=
sub
->
sa_final
->
bv_len
;
}
if
(
inlen
>
value
->
bv_len
)
{
match
=
1
;
goto
done
;
}
if
(
sub
->
sa_initial
)
{
match
=
strncmp
(
sub
->
sa_initial
->
bv_val
,
left
.
bv_val
,
sub
->
sa_initial
->
bv_len
);
if
(
match
!=
0
)
{
goto
done
;
}
left
.
bv_val
+=
sub
->
sa_initial
->
bv_len
;
left
.
bv_len
-=
sub
->
sa_initial
->
bv_len
;
}
if
(
sub
->
sa_final
)
{
match
=
strncmp
(
sub
->
sa_final
->
bv_val
,
&
left
.
bv_val
[
left
.
bv_len
-
sub
->
sa_final
->
bv_len
],
sub
->
sa_final
->
bv_len
);
if
(
match
!=
0
)
{
goto
done
;
}
left
.
bv_len
-=
sub
->
sa_final
->
bv_len
;
}
if
(
sub
->
sa_any
)
{
return
LDAP_OTHER
;
}
done:
*
matchp
=
match
;
return
LDAP_SUCCESS
;
}
#endif
static
int
caseIgnoreIA5Match
(
int
*
match
,
...
...
@@ -339,6 +406,73 @@ caseIgnoreIA5Match(
return
LDAP_SUCCESS
;
}
#ifdef SLAPD_SCHEMA_NOT_COMPAT
static
int
caseIgnoreIA5SubstringsMatch
(
int
*
matchp
,
unsigned
use
,
Syntax
*
syntax
,
MatchingRule
*
mr
,
struct
berval
*
value
,
void
*
assertedValue
)
{
int
match
=
0
;
SubstringsAssertion
*
sub
=
assertedValue
;
struct
berval
left
=
*
value
;
int
i
;
ber_len_t
inlen
=
0
;
if
(
sub
->
sa_initial
)
{
inlen
+=
sub
->
sa_initial
->
bv_len
;
}
if
(
sub
->
sa_any
)
{
for
(
i
=
0
;
sub
->
sa_any
[
i
];
i
++
)
{
inlen
+=
sub
->
sa_final
->
bv_len
;
}
}
if
(
sub
->
sa_final
)
{
inlen
+=
sub
->
sa_final
->
bv_len
;
}
if
(
inlen
>
value
->
bv_len
)
{
match
=
1
;
goto
done
;
}
if
(
sub
->
sa_initial
)
{
match
=
strncasecmp
(
sub
->
sa_initial
->
bv_val
,
left
.
bv_val
,
sub
->
sa_initial
->
bv_len
);
if
(
match
!=
0
)
{
goto
done
;
}
left
.
bv_val
+=
sub
->
sa_initial
->
bv_len
;
left
.
bv_len
-=
sub
->
sa_initial
->
bv_len
;
}
if
(
sub
->
sa_final
)
{
match
=
strncasecmp
(
sub
->
sa_final
->
bv_val
,
&
left
.
bv_val
[
left
.
bv_len
-
sub
->
sa_final
->
bv_len
],
sub
->
sa_final
->
bv_len
);
if
(
match
!=
0
)
{
goto
done
;
}
left
.
bv_len
-=
sub
->
sa_final
->
bv_len
;
}
if
(
sub
->
sa_any
)
{
return
LDAP_OTHER
;
}
done:
*
matchp
=
match
;
return
LDAP_SUCCESS
;
}
#endif
struct
syntax_defs_rec
{
char
*
sd_desc
;
int
sd_flags
;
...
...
@@ -514,17 +648,22 @@ struct mrule_defs_rec {
* 2.5.13.44 attributeIntegrityMatch
*/
#ifndef SLAPD_SCHEMA_NOT_COMPAT
#define caseIgnoreIA5SubstringsMatch NULL
#define caseExactIA5SubstringsMatch NULL
#endif
/* recycled matching functions */
#define caseIgnoreMatch caseIgnoreIA5Match
#define caseIgnoreOrderingMatch caseIgnoreMatch
#define caseIgnoreSubstringsMatch caseIgnoreIA5SubstringsMatch
#define caseExactMatch caseExactIA5Match
#define caseExactOrderingMatch caseExactMatch
#define caseExactSubstringsMatch caseExactIA5SubstringsMatch
/* unimplemented matching functions */
#define objectIdentifierMatch NULL
#define distinguishedNameMatch NULL
#define caseIgnoreOrderingMatch NULL
#define caseIgnoreSubstringsMatch NULL
#define caseExactOrderingMatch NULL
#define caseExactSubstringsMatch NULL
#define numericStringMatch NULL
#define numericStringSubstringsMatch NULL
#define caseIgnoreListMatch NULL
...
...
@@ -541,7 +680,6 @@ struct mrule_defs_rec {
#define generalizedTimeOrderingMatch NULL
#define integerFirstComponentMatch NULL
#define objectIdentifierFirstComponentMatch NULL
#define caseIgnoreIA5SubstringsMatch NULL
struct
mrule_defs_rec
mrule_defs
[]
=
{
{
"( 2.5.13.0 NAME 'objectIdentifierMatch' "
...
...
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