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
b109d018
Commit
b109d018
authored
19 years ago
by
Pierangelo Masarati
Browse files
Options
Downloads
Patches
Plain Diff
honor disclose
parent
64ae69f6
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
servers/slapd/back-monitor/bind.c
+4
-8
4 additions, 8 deletions
servers/slapd/back-monitor/bind.c
servers/slapd/back-monitor/compare.c
+36
-7
36 additions, 7 deletions
servers/slapd/back-monitor/compare.c
servers/slapd/back-monitor/modify.c
+23
-11
23 additions, 11 deletions
servers/slapd/back-monitor/modify.c
with
63 additions
and
26 deletions
servers/slapd/back-monitor/bind.c
+
4
−
8
View file @
b109d018
...
...
@@ -33,23 +33,19 @@
int
monitor_back_bind
(
Operation
*
op
,
SlapReply
*
rs
)
{
#if 0 /* not used yet */
monitor_info_t *mi
= (monitor_info_t *) op->o_bd->be_private;
#endif
Debug
(
LDAP_DEBUG_ARGS
,
"==> monitor_back_bind: dn: %s
\n
"
,
op
->
o_req_dn
.
bv_val
,
0
,
0
);
if
(
op
->
oq_bind
.
rb_method
==
LDAP_AUTH_SIMPLE
&&
be_isroot_pw
(
op
)
)
{
&&
be_isroot_pw
(
op
)
)
{
ber_dupbv
(
&
op
->
oq_bind
.
rb_edn
,
be_root_dn
(
op
->
o_bd
)
);
return
(
0
)
;
return
LDAP_SUCCESS
;
}
rs
->
sr_err
=
LDAP_INVALID_CREDENTIALS
;
send_ldap_result
(
op
,
rs
);
return
(
1
)
;
return
rs
->
sr_err
;
}
This diff is collapsed.
Click to expand it.
servers/slapd/back-monitor/compare.c
+
36
−
7
View file @
b109d018
...
...
@@ -32,13 +32,24 @@ monitor_back_compare( struct slap_op *op, struct slap_rep *rs)
monitor_info_t
*
mi
=
(
monitor_info_t
*
)
op
->
o_bd
->
be_private
;
Entry
*
e
,
*
matched
=
NULL
;
Attribute
*
a
;
int
rc
;
/* get entry with reader lock */
monitor_cache_dn2entry
(
op
,
&
op
->
o_req_ndn
,
&
e
,
&
matched
);
if
(
e
==
NULL
)
{
rs
->
sr_err
=
LDAP_NO_SUCH_OBJECT
;
if
(
matched
)
{
rs
->
sr_matched
=
matched
->
e_dn
;
#ifdef SLAP_ACL_HONOR_DISCLOSE
if
(
!
access_allowed_mask
(
op
,
matched
,
slap_schema
.
si_ad_entry
,
NULL
,
ACL_DISCLOSE
,
NULL
,
NULL
)
)
{
/* do nothing */
;
}
else
#endif
/* SLAP_ACL_HONOR_DISCLOSE */
{
rs
->
sr_matched
=
matched
->
e_dn
;
}
}
send_ldap_result
(
op
,
rs
);
if
(
matched
)
{
...
...
@@ -46,7 +57,7 @@ monitor_back_compare( struct slap_op *op, struct slap_rep *rs)
rs
->
sr_matched
=
NULL
;
}
return
(
0
)
;
return
rs
->
sr_err
;
}
rs
->
sr_err
=
access_allowed
(
op
,
e
,
op
->
oq_compare
.
rs_ava
->
aa_desc
,
...
...
@@ -75,14 +86,32 @@ monitor_back_compare( struct slap_op *op, struct slap_rep *rs)
}
return_results:
;
send_ldap_result
(
op
,
rs
);
if
(
rs
->
sr_err
==
LDAP_COMPARE_FALSE
||
rs
->
sr_err
==
LDAP_COMPARE_TRUE
)
{
rs
->
sr_err
=
LDAP_SUCCESS
;
rc
=
rs
->
sr_err
;
switch
(
rc
)
{
case
LDAP_COMPARE_FALSE
:
case
LDAP_COMPARE_TRUE
:
rc
=
LDAP_SUCCESS
;
break
;
case
LDAP_NO_SUCH_ATTRIBUTE
:
break
;
default:
#ifdef SLAP_ACL_HONOR_DISCLOSE
if
(
!
access_allowed_mask
(
op
,
e
,
slap_schema
.
si_ad_entry
,
NULL
,
ACL_DISCLOSE
,
NULL
,
NULL
)
)
{
rs
->
sr_err
=
LDAP_NO_SUCH_OBJECT
;
}
#endif
/* SLAP_ACL_HONOR_DISCLOSE */
break
;
}
send_ldap_result
(
op
,
rs
);
rs
->
sr_err
=
rc
;
monitor_cache_release
(
mi
,
e
);
return
(
rs
->
sr_err
)
;
return
rs
->
sr_err
;
}
This diff is collapsed.
Click to expand it.
servers/slapd/back-monitor/modify.c
+
23
−
11
View file @
b109d018
...
...
@@ -32,14 +32,6 @@
int
monitor_back_modify
(
Operation
*
op
,
SlapReply
*
rs
)
/*
Backend *be,
Connection *conn,
Operation *op,
struct berval *dn,
struct berval *ndn,
Modifications *modlist
*/
{
int
rc
=
0
;
monitor_info_t
*
mi
=
(
monitor_info_t
*
)
op
->
o_bd
->
be_private
;
...
...
@@ -53,14 +45,24 @@ monitor_back_modify( Operation *op, SlapReply *rs )
if
(
e
==
NULL
)
{
rs
->
sr_err
=
LDAP_NO_SUCH_OBJECT
;
if
(
matched
)
{
rs
->
sr_matched
=
matched
->
e_name
.
bv_val
;
#ifdef SLAP_ACL_HONOR_DISCLOSE
if
(
!
access_allowed_mask
(
op
,
matched
,
slap_schema
.
si_ad_entry
,
NULL
,
ACL_DISCLOSE
,
NULL
,
NULL
)
)
{
/* do nothing */
;
}
else
#endif
/* SLAP_ACL_HONOR_DISCLOSE */
{
rs
->
sr_matched
=
matched
->
e_dn
;
}
}
send_ldap_result
(
op
,
rs
);
if
(
matched
!=
NULL
)
{
rs
->
sr_matched
=
NULL
;
monitor_cache_release
(
mi
,
matched
);
}
return
(
0
)
;
return
rs
->
sr_err
;
}
if
(
!
acl_check_modlist
(
op
,
e
,
op
->
oq_modify
.
rs_modlist
))
{
...
...
@@ -69,11 +71,21 @@ monitor_back_modify( Operation *op, SlapReply *rs )
rc
=
monitor_entry_modify
(
op
,
e
);
}
#ifdef SLAP_ACL_HONOR_DISCLOSE
if
(
rc
!=
LDAP_SUCCESS
)
{
if
(
!
access_allowed_mask
(
op
,
e
,
slap_schema
.
si_ad_entry
,
NULL
,
ACL_DISCLOSE
,
NULL
,
NULL
)
)
{
rc
=
LDAP_NO_SUCH_OBJECT
;
}
}
#endif
/* SLAP_ACL_HONOR_DISCLOSE */
rs
->
sr_err
=
rc
;
send_ldap_result
(
op
,
rs
);
monitor_cache_release
(
mi
,
e
);
return
(
0
)
;
return
rs
->
sr_err
;
}
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