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
David Barchiesi
OpenLDAP
Commits
2d0af83c
Commit
2d0af83c
authored
21 years ago
by
Howard Chu
Browse files
Options
Downloads
Patches
Plain Diff
ITS
#2934
- don't touch conn->c_sasl_dn for Simple Binds
parent
7fe35bcd
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/bind.c
+15
-17
15 additions, 17 deletions
servers/slapd/bind.c
servers/slapd/sasl.c
+12
-0
12 additions, 0 deletions
servers/slapd/sasl.c
with
27 additions
and
17 deletions
servers/slapd/bind.c
+
15
−
17
View file @
2d0af83c
...
...
@@ -46,7 +46,6 @@ do_bind(
{
BerElement
*
ber
=
op
->
o_ber
;
ber_int_t
version
;
ber_tag_t
method
;
struct
berval
mech
=
{
0
,
NULL
};
struct
berval
dn
=
{
0
,
NULL
};
ber_tag_t
tag
;
...
...
@@ -107,7 +106,7 @@ do_bind(
* }
*/
tag
=
ber_scanf
(
ber
,
"{imt"
/*}*/
,
&
version
,
&
dn
,
&
method
);
tag
=
ber_scanf
(
ber
,
"{imt"
/*}*/
,
&
version
,
&
dn
,
&
op
->
orb_
method
);
if
(
tag
==
LBER_ERROR
)
{
#ifdef NEW_LOGGING
...
...
@@ -123,7 +122,7 @@ do_bind(
op
->
o_protocol
=
version
;
if
(
method
!=
LDAP_AUTH_SASL
)
{
if
(
op
->
orb_
method
!=
LDAP_AUTH_SASL
)
{
tag
=
ber_scanf
(
ber
,
/*{*/
"m}"
,
&
op
->
orb_cred
);
}
else
{
...
...
@@ -182,7 +181,7 @@ do_bind(
goto
cleanup
;
}
if
(
method
==
LDAP_AUTH_SASL
)
{
if
(
op
->
orb_
method
==
LDAP_AUTH_SASL
)
{
#ifdef NEW_LOGGING
LDAP_LOG
(
OPERATION
,
DETAIL1
,
"do_sasl_bind: conn %d dn (%s) mech %s
\n
"
,
...
...
@@ -197,17 +196,17 @@ do_bind(
LDAP_LOG
(
OPERATION
,
DETAIL1
,
"do_bind: version=%ld dn=
\"
%s
\"
method=%ld
\n
"
,
(
unsigned
long
)
version
,
op
->
o_req_dn
.
bv_val
,
(
unsigned
long
)
method
);
(
unsigned
long
)
op
->
orb_
method
);
#else
Debug
(
LDAP_DEBUG_TRACE
,
"do_bind: version=%ld dn=
\"
%s
\"
method=%ld
\n
"
,
(
unsigned
long
)
version
,
op
->
o_req_dn
.
bv_val
,
(
unsigned
long
)
method
);
(
unsigned
long
)
op
->
orb_
method
);
#endif
}
Statslog
(
LDAP_DEBUG_STATS
,
"conn=%lu op=%lu BIND dn=
\"
%s
\"
method=%ld
\n
"
,
op
->
o_connid
,
op
->
o_opid
,
op
->
o_req_dn
.
bv_val
,
(
unsigned
long
)
method
,
op
->
o_connid
,
op
->
o_opid
,
op
->
o_req_dn
.
bv_val
,
(
unsigned
long
)
op
->
orb_
method
,
0
);
if
(
version
<
LDAP_VERSION_MIN
||
version
>
LDAP_VERSION_MAX
)
{
...
...
@@ -249,7 +248,7 @@ do_bind(
/* Set the bindop for the benefit of in-directory SASL lookups */
op
->
o_conn
->
c_sasl_bindop
=
op
;
if
(
method
==
LDAP_AUTH_SASL
)
{
if
(
op
->
orb_
method
==
LDAP_AUTH_SASL
)
{
if
(
version
<
LDAP_VERSION3
)
{
#ifdef NEW_LOGGING
LDAP_LOG
(
OPERATION
,
INFO
,
...
...
@@ -370,7 +369,7 @@ do_bind(
if
(
pb
)
{
slapi_int_pblock_set_operation
(
pb
,
op
);
slapi_pblock_set
(
pb
,
SLAPI_BIND_TARGET
,
(
void
*
)
dn
.
bv_val
);
slapi_pblock_set
(
pb
,
SLAPI_BIND_METHOD
,
(
void
*
)
method
);
slapi_pblock_set
(
pb
,
SLAPI_BIND_METHOD
,
(
void
*
)
op
->
orb_
method
);
slapi_pblock_set
(
pb
,
SLAPI_BIND_CREDENTIALS
,
(
void
*
)
&
op
->
orb_cred
);
slapi_pblock_set
(
pb
,
SLAPI_MANAGEDSAIT
,
(
void
*
)(
0
)
);
(
void
)
slapi_int_call_plugins
(
op
->
o_bd
,
SLAPI_PLUGIN_POST_BIND_FN
,
pb
);
...
...
@@ -396,7 +395,7 @@ do_bind(
ldap_pvt_thread_mutex_unlock
(
&
op
->
o_conn
->
c_mutex
);
}
if
(
method
==
LDAP_AUTH_SIMPLE
)
{
if
(
op
->
orb_
method
==
LDAP_AUTH_SIMPLE
)
{
ber_str2bv
(
"SIMPLE"
,
sizeof
(
"SIMPLE"
)
-
1
,
0
,
&
mech
);
/* accept "anonymous" binds */
if
(
op
->
orb_cred
.
bv_len
==
0
||
op
->
o_req_ndn
.
bv_len
==
0
)
{
...
...
@@ -459,7 +458,7 @@ do_bind(
}
#ifdef LDAP_API_FEATURE_X_OPENLDAP_V2_KBIND
}
else
if
(
method
==
LDAP_AUTH_KRBV41
||
method
==
LDAP_AUTH_KRBV42
)
{
}
else
if
(
op
->
orb_
method
==
LDAP_AUTH_KRBV41
||
op
->
orb_
method
==
LDAP_AUTH_KRBV42
)
{
if
(
global_disallows
&
SLAP_DISALLOW_BIND_KRBV4
)
{
/* disallow simple authentication */
rs
->
sr_err
=
LDAP_UNWILLING_TO_PERFORM
;
...
...
@@ -487,11 +486,11 @@ do_bind(
#ifdef NEW_LOGGING
LDAP_LOG
(
OPERATION
,
INFO
,
"do_bind: conn %ld v%d unknown authentication method (%ld)
\n
"
,
op
->
o_connid
,
version
,
method
);
op
->
o_connid
,
version
,
op
->
orb_
method
);
#else
Debug
(
LDAP_DEBUG_TRACE
,
"do_bind: v%d unknown authentication method (%ld)
\n
"
,
version
,
method
,
0
);
version
,
op
->
orb_
method
,
0
);
#endif
goto
cleanup
;
}
...
...
@@ -533,7 +532,7 @@ do_bind(
int
rc
;
slapi_int_pblock_set_operation
(
pb
,
op
);
slapi_pblock_set
(
pb
,
SLAPI_BIND_TARGET
,
(
void
*
)
dn
.
bv_val
);
slapi_pblock_set
(
pb
,
SLAPI_BIND_METHOD
,
(
void
*
)
method
);
slapi_pblock_set
(
pb
,
SLAPI_BIND_METHOD
,
(
void
*
)
op
->
orb_
method
);
slapi_pblock_set
(
pb
,
SLAPI_BIND_CREDENTIALS
,
(
void
*
)
&
op
->
orb_cred
);
slapi_pblock_set
(
pb
,
SLAPI_MANAGEDSAIT
,
(
void
*
)(
0
)
);
slapi_pblock_set
(
pb
,
SLAPI_CONN_DN
,
(
void
*
)(
0
)
);
...
...
@@ -614,7 +613,6 @@ do_bind(
#endif
/* defined( LDAP_SLAPI ) */
if
(
op
->
o_bd
->
be_bind
)
{
op
->
orb_method
=
method
;
rs
->
sr_err
=
(
op
->
o_bd
->
be_bind
)(
op
,
rs
);
if
(
rs
->
sr_err
==
0
)
{
...
...
@@ -685,10 +683,10 @@ do_bind(
cleanup:
if
(
rs
->
sr_err
==
LDAP_SUCCESS
)
{
if
(
method
!=
LDAP_AUTH_SASL
)
{
if
(
op
->
orb_
method
!=
LDAP_AUTH_SASL
)
{
ber_dupbv
(
&
op
->
o_conn
->
c_authmech
,
&
mech
);
}
op
->
o_conn
->
c_authtype
=
method
;
op
->
o_conn
->
c_authtype
=
op
->
orb_
method
;
}
op
->
o_conn
->
c_sasl_bindop
=
NULL
;
...
...
This diff is collapsed.
Click to expand it.
servers/slapd/sasl.c
+
12
−
0
View file @
2d0af83c
...
...
@@ -773,6 +773,14 @@ slap_sasl_canonicalize(
if
(
inlen
>
out_max
)
inlen
=
out_max
-
1
;
/* This is a Simple Bind using SPASSWD. That means the in-directory
* userPassword of the Binding user already points at SASL, so it
* cannot be used to actually satisfy a password comparison. Just
* ignore it, some other mech will process it.
*/
if
(
!
conn
->
c_sasl_bindop
||
conn
->
c_sasl_bindop
->
orb_method
!=
LDAP_AUTH_SASL
)
goto
done
;
/* See if we need to add request, can only do it once */
prop_getnames
(
props
,
slap_propnames
,
auxvals
);
if
(
!
auxvals
[
0
].
name
)
...
...
@@ -867,6 +875,10 @@ slap_sasl_authorize(
struct
berval
authcDN
,
authzDN
;
int
rc
;
/* Simple Binds don't support proxy authorization, ignore it */
if
(
!
conn
->
c_sasl_bindop
||
conn
->
c_sasl_bindop
->
orb_method
!=
LDAP_AUTH_SASL
)
return
SASL_OK
;
#ifdef NEW_LOGGING
LDAP_LOG
(
TRANSPORT
,
ENTRY
,
"slap_sasl_authorize: conn %d authcid=
\"
%s
\"
authzid=
\"
%s
\"\n
"
,
...
...
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