Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
O
OpenLDAP
Manage
Activity
Members
Labels
Plan
Wiki
Bugzilla
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
openldap
OpenLDAP
Commits
adba963c
Commit
adba963c
authored
18 years ago
by
Howard Chu
Browse files
Options
Downloads
Patches
Plain Diff
ITS
#4587
, selfwrite should apply to more than just USERS acl's
parent
ed0d8d0a
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/acl.c
+21
-21
21 additions, 21 deletions
servers/slapd/acl.c
with
21 additions
and
21 deletions
servers/slapd/acl.c
+
21
−
21
View file @
adba963c
...
...
@@ -690,6 +690,27 @@ acl_mask_dn(
* value is set in a_dn_style; however, the string
* is maintaned in a_dn_pat.
*/
if
(
b
->
a_self
)
{
const
char
*
dummy
;
int
rc
,
match
=
0
;
/* must have DN syntax */
if
(
desc
->
ad_type
->
sat_syntax
!=
slap_schema
.
si_syn_distinguishedName
)
return
1
;
/* check if the target is an attribute. */
if
(
val
==
NULL
)
return
1
;
/* target is attribute, check if the attribute value
* is the op dn.
*/
rc
=
value_match
(
&
match
,
desc
,
desc
->
ad_type
->
sat_equality
,
0
,
val
,
opndn
,
&
dummy
);
/* on match error or no match, fail the ACL clause */
if
(
rc
!=
LDAP_SUCCESS
||
match
!=
0
)
return
1
;
}
if
(
b
->
a_style
==
ACL_STYLE_ANONYMOUS
)
{
if
(
!
BER_BVISEMPTY
(
opndn
)
)
{
return
1
;
...
...
@@ -700,27 +721,6 @@ acl_mask_dn(
return
1
;
}
if
(
b
->
a_self
)
{
const
char
*
dummy
;
int
rc
,
match
=
0
;
/* must have DN syntax */
if
(
desc
->
ad_type
->
sat_syntax
!=
slap_schema
.
si_syn_distinguishedName
)
return
1
;
/* check if the target is an attribute. */
if
(
val
==
NULL
)
return
1
;
/* target is attribute, check if the attribute value
* is the op dn.
*/
rc
=
value_match
(
&
match
,
desc
,
desc
->
ad_type
->
sat_equality
,
0
,
val
,
opndn
,
&
dummy
);
/* on match error or no match, fail the ACL clause */
if
(
rc
!=
LDAP_SUCCESS
||
match
!=
0
)
return
1
;
}
}
else
if
(
b
->
a_style
==
ACL_STYLE_SELF
)
{
struct
berval
ndn
,
selfndn
;
int
level
;
...
...
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