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
4b73446a
Commit
4b73446a
authored
21 years ago
by
Howard Chu
Browse files
Options
Downloads
Patches
Plain Diff
ITS#2424 reset SASL on an existing connection
parent
1d2951bb
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
include/ldap_pvt.h
+1
-0
1 addition, 0 deletions
include/ldap_pvt.h
libraries/libldap/cyrus.c
+20
-1
20 additions, 1 deletion
libraries/libldap/cyrus.c
servers/slapd/sasl.c
+26
-5
26 additions, 5 deletions
servers/slapd/sasl.c
with
47 additions
and
6 deletions
include/ldap_pvt.h
+
1
−
0
View file @
4b73446a
...
...
@@ -170,6 +170,7 @@ LDAP_F (void) ldap_pvt_sasl_mutex_dispose LDAP_P((void *mutex));
struct
sockbuf
;
/* avoid pulling in <lber.h> */
LDAP_F
(
int
)
ldap_pvt_sasl_install
LDAP_P
((
struct
sockbuf
*
,
void
*
));
LDAP_F
(
int
)
ldap_pvt_sasl_remove
LDAP_P
((
struct
sockbuf
*
));
#endif
/* HAVE_CYRUS_SASL */
#define LDAP_PVT_SASL_LOCAL_SSF 71
/* SSF for Unix Domain Sockets */
...
...
This diff is collapsed.
Click to expand it.
libraries/libldap/cyrus.c
+
20
−
1
View file @
4b73446a
...
...
@@ -414,6 +414,16 @@ int ldap_pvt_sasl_install( Sockbuf *sb, void *ctx_arg )
return
LDAP_SUCCESS
;
}
void
ldap_pvt_sasl_remove
(
Sockbuf
*
sb
)
{
ber_sockbuf_remove_io
(
sb
,
&
ldap_pvt_sockbuf_io_sasl
,
LBER_SBIOD_LEVEL_APPLICATION
);
#ifdef LDAP_DEBUG
ber_sockbuf_remove_io
(
sb
,
&
ber_sockbuf_io_debug
,
LBER_SBIOD_LEVEL_APPLICATION
);
#endif
}
static
int
sasl_err2ldap
(
int
saslerr
)
{
...
...
@@ -569,11 +579,20 @@ ldap_int_sasl_bind(
/* If we already have a context, shut it down */
if
(
ctx
)
{
int
msgid
;
LDAPMessage
*
result
;
/* Do an anonymous bind to kill the server's context */
rc
=
ldap_simple_bind
_s
(
ld
,
""
,
NULL
);
msgid
=
ldap_simple_bind
(
ld
,
""
,
NULL
);
/* dispose of the old context */
ldap_int_sasl_close
(
ld
,
ld
->
ld_defconn
);
ldap_pvt_sasl_remove
(
ld
->
ld_sb
);
/* The reply is sent in the clear, we can't read it
* until after the context and sockbuf are torn down
*/
rc
=
ldap_result
(
ld
,
msgid
,
1
,
NULL
,
&
result
);
ldap_msgfree
(
result
);
}
rc
=
ldap_int_sasl_open
(
ld
,
ld
->
ld_defconn
,
...
...
This diff is collapsed.
Click to expand it.
servers/slapd/sasl.c
+
26
−
5
View file @
4b73446a
...
...
@@ -915,6 +915,9 @@ slap_sasl_err2ldap( int saslerr )
int
rc
;
switch
(
saslerr
)
{
case
SASL_OK
:
rc
=
LDAP_SUCCESS
;
break
;
case
SASL_CONTINUE
:
rc
=
LDAP_SASL_BIND_IN_PROGRESS
;
break
;
...
...
@@ -1234,14 +1237,32 @@ int slap_sasl_external(
int
slap_sasl_reset
(
Connection
*
conn
)
{
#ifdef HAVE_CYRUS_SASL
int
rc
=
LDAP_SUCCESS
;
sasl_conn_t
*
ctx
=
conn
->
c_sasl_context
;
if
(
ctx
!=
NULL
)
{
slap_ssf_t
ssf
=
0
;
const
char
*
authid
=
NULL
;
#ifdef HAVE_CYRUS_SASL
#if SASL_VERSION_MAJOR >= 2
sasl_getprop
(
ctx
,
SASL_SSF_EXTERNAL
,
&
ssf
);
sasl_getprop
(
ctx
,
SASL_AUTH_EXTERNAL
,
&
authid
);
if
(
authid
)
authid
=
ch_strdup
(
authid
);
#else
/* we can't retrieve the external properties from SASL 1.5.
* we can get it again from the underlying TLS or IPC connection,
* but it's simpler just to ignore it since 1.5 is obsolete.
*/
#endif
rc
=
slap_sasl_close
(
conn
);
ldap_pvt_sasl_remove
(
conn
->
c_sb
);
if
(
rc
==
LDAP_SUCCESS
)
{
rc
=
slap_sasl_open
(
conn
);
}
if
(
rc
==
LDAP_SUCCESS
)
{
rc
=
slap_sasl_external
(
conn
,
ssf
,
authid
);
}
if
(
authid
)
ch_free
(
authid
);
#endif
/* must return "anonymous" */
return
LDAP_SUCCESS
;
return
rc
;
}
char
**
slap_sasl_mechs
(
Connection
*
conn
)
...
...
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