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
7ae82250
Commit
7ae82250
authored
24 years ago
by
Kurt Zeilenga
Browse files
Options
Downloads
Patches
Plain Diff
SLAPD_SCHEMA_NOT_COMPAT: Fix UTF8StringNormalizer
parent
c96f12ee
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/ava.c
+1
-0
1 addition, 0 deletions
servers/slapd/ava.c
servers/slapd/schema_init.c
+26
-26
26 additions, 26 deletions
servers/slapd/schema_init.c
with
27 additions
and
26 deletions
servers/slapd/ava.c
+
1
−
0
View file @
7ae82250
...
...
@@ -51,6 +51,7 @@ get_ava(
aa
=
ch_malloc
(
sizeof
(
AttributeAssertion
)
);
aa
->
aa_desc
=
NULL
;
aa
->
aa_value
=
NULL
;
rc
=
slap_bv2ad
(
&
type
,
&
aa
->
aa_desc
,
text
);
...
...
This diff is collapsed.
Click to expand it.
servers/slapd/schema_init.c
+
26
−
26
View file @
7ae82250
...
...
@@ -23,7 +23,7 @@ blobValidate(
struct
berval
*
in
)
{
/* any value allowed */
return
0
;
return
LDAP_SUCCESS
;
}
static
int
...
...
@@ -40,16 +40,16 @@ UTF8StringValidate(
len
=
LDAP_UTF8_CHARLEN
(
u
);
/* should not be zero */
if
(
len
==
0
)
return
-
1
;
if
(
len
==
0
)
return
LDAP_INVALID_SYNTAX
;
/* make sure len corresponds with the offset
to the next character */
if
(
LDAP_UTF8_OFFSET
(
u
)
!=
len
)
return
-
1
;
if
(
LDAP_UTF8_OFFSET
(
u
)
!=
len
)
return
LDAP_INVALID_SYNTAX
;
}
if
(
count
!=
0
)
return
-
1
;
if
(
count
!=
0
)
return
LDAP_INVALID_SYNTAX
;
return
0
;
return
LDAP_SUCCESS
;
}
static
int
...
...
@@ -70,9 +70,9 @@ UTF8StringNormalize(
LDAP_UTF8_INCR
(
p
);
}
if
(
*
p
)
{
if
(
*
p
==
'\0'
)
{
ch_free
(
newval
);
return
1
;
return
LDAP_INVALID_SYNTAX
;
}
newval
->
bv_val
=
ch_strdup
(
p
);
...
...
@@ -126,7 +126,7 @@ UTF8StringNormalize(
newval
->
bv_len
=
q
-
newval
->
bv_val
;
*
normalized
=
newval
;
return
0
;
return
LDAP_SUCCESS
;
}
static
int
...
...
@@ -146,23 +146,23 @@ oidValidate(
}
else
if
(
isdigit
(
val
->
bv_val
[
i
])
)
{
dot
=
0
;
}
else
{
return
1
;
return
LDAP_INVALID_SYNTAX
;
}
}
return
!
dot
?
0
:
1
;
return
!
dot
?
LDAP_SUCCESS
:
LDAP_INVALID_SYNTAX
;
}
else
if
(
isalpha
(
val
->
bv_val
[
0
])
)
{
for
(
i
=
1
;
i
<
val
->
bv_len
;
i
++
)
{
if
(
!
isalpha
(
val
->
bv_val
[
i
]
)
)
{
return
1
;
return
LDAP_INVALID_SYNTAX
;
}
}
return
0
;
return
LDAP_SUCCESS
;
}
return
1
;
return
LDAP_INVALID_SYNTAX
;
}
static
int
...
...
@@ -173,10 +173,10 @@ integerValidate(
ber_len_t
i
;
for
(
i
=
0
;
i
<
val
->
bv_len
;
i
++
)
{
if
(
!
isdigit
(
val
->
bv_val
[
i
])
)
return
-
1
;
if
(
!
isdigit
(
val
->
bv_val
[
i
])
)
return
LDAP_INVALID_SYNTAX
;
}
return
0
;
return
LDAP_SUCCESS
;
}
static
int
...
...
@@ -187,10 +187,10 @@ printableStringValidate(
ber_len_t
i
;
for
(
i
=
0
;
i
<
val
->
bv_len
;
i
++
)
{
if
(
!
isprint
(
val
->
bv_val
[
i
])
)
return
-
1
;
if
(
!
isprint
(
val
->
bv_val
[
i
])
)
return
LDAP_INVALID_SYNTAX
;
}
return
0
;
return
LDAP_SUCCESS
;
}
static
int
...
...
@@ -201,10 +201,10 @@ IA5StringValidate(
ber_len_t
i
;
for
(
i
=
0
;
i
<
val
->
bv_len
;
i
++
)
{
if
(
!
isascii
(
val
->
bv_val
[
i
])
)
return
-
1
;
if
(
!
isascii
(
val
->
bv_val
[
i
])
)
return
LDAP_INVALID_SYNTAX
;
}
return
0
;
return
LDAP_SUCCESS
;
}
static
int
...
...
@@ -230,7 +230,7 @@ IA5StringConvert(
u
[
i
]
=
0
;
*
out
=
bv
;
return
0
;
return
LDAP_SUCCESS
;
}
static
int
...
...
@@ -253,7 +253,7 @@ IA5StringNormalize(
if
(
*
p
)
{
ch_free
(
newval
);
return
1
;
return
LDAP_INVALID_SYNTAX
;
}
newval
->
bv_val
=
ch_strdup
(
p
);
...
...
@@ -298,7 +298,7 @@ IA5StringNormalize(
newval
->
bv_len
=
q
-
newval
->
bv_val
;
*
normalized
=
newval
;
return
0
;
return
LDAP_SUCCESS
;
}
static
int
...
...
@@ -711,7 +711,7 @@ schema_init( void )
if
(
res
)
{
fprintf
(
stderr
,
"schema_init: Error registering syntax %s
\n
"
,
syntax_defs
[
i
].
sd_desc
);
return
-
1
;
return
LDAP_OTHER
;
}
}
...
...
@@ -736,11 +736,11 @@ schema_init( void )
fprintf
(
stderr
,
"schema_init: Error registering matching rule %s
\n
"
,
mrule_defs
[
i
].
mrd_desc
);
return
-
1
;
return
LDAP_OTHER
;
}
}
schema_init_done
=
1
;
return
(
0
)
;
return
LDAP_SUCCESS
;
}
#ifdef SLAPD_SCHEMA_NOT_COMPAT
...
...
@@ -872,5 +872,5 @@ schema_prep( void )
#endif
++
schema_init_done
;
return
0
;
return
LDAP_SUCCESS
;
}
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