Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
Tero Saarni
OpenLDAP
Commits
198879bd
Commit
198879bd
authored
Dec 08, 2009
by
Quanah Gibson-Mount
Browse files
ITS#6419
parent
829a3024
Changes
3
Hide whitespace changes
Inline
Side-by-side
CHANGES
View file @
198879bd
...
...
@@ -4,6 +4,7 @@ OpenLDAP 2.4.21 Engineering
Fixed liblutil for negative microsecond offsets (ITS#6405)
Fixed slapd looping with SSL/TLS connections (ITS#6412)
Fixed slapd syncrepl freeing tasks from queue (ITS#6413)
Fixed slapd syncrepl parsing of tls defaults (ITS#6419)
Fixed slapd-config Adds with Abstract classes (ITS#6408)
Fixed slapd-ldif access outside database directory (ITS#6414)
Fixed slapo-translucent with back-null (ITS#6403)
...
...
servers/slapd/config.c
View file @
198879bd
...
...
@@ -1210,8 +1210,32 @@ static slap_verbmasks versionkey[] = {
{
BER_BVNULL
,
0
}
};
static
int
slap_sb_uri
(
struct
berval
*
val
,
void
*
bcp
,
slap_cf_aux_table
*
tab0
,
const
char
*
tabmsg
,
int
unparse
)
{
slap_bindconf
*
bc
=
bcp
;
if
(
unparse
)
{
if
(
bc
->
sb_uri
.
bv_len
>=
val
->
bv_len
)
return
-
1
;
val
->
bv_len
=
bc
->
sb_uri
.
bv_len
;
AC_MEMCPY
(
val
->
bv_val
,
bc
->
sb_uri
.
bv_val
,
val
->
bv_len
);
}
else
{
bc
->
sb_uri
=
*
val
;
#ifdef HAVE_TLS
if
(
ldap_is_ldaps_url
(
val
->
bv_val
))
bc
->
sb_tls_do_init
=
1
;
#endif
}
return
0
;
}
static
slap_cf_aux_table
bindkey
[]
=
{
{
BER_BVC
(
"uri="
),
offsetof
(
slap_bindconf
,
sb_uri
),
'b'
,
1
,
NULL
},
{
BER_BVC
(
"uri="
),
0
,
'x'
,
1
,
slap_sb_uri
},
{
BER_BVC
(
"version="
),
offsetof
(
slap_bindconf
,
sb_version
),
'i'
,
0
,
versionkey
},
{
BER_BVC
(
"bindmethod="
),
offsetof
(
slap_bindconf
,
sb_method
),
'i'
,
0
,
methkey
},
{
BER_BVC
(
"timeout="
),
offsetof
(
slap_bindconf
,
sb_timeout_api
),
'i'
,
0
,
NULL
},
...
...
@@ -1224,21 +1248,20 @@ static slap_cf_aux_table bindkey[] = {
{
BER_BVC
(
"authcID="
),
offsetof
(
slap_bindconf
,
sb_authcId
),
'b'
,
1
,
NULL
},
{
BER_BVC
(
"authzID="
),
offsetof
(
slap_bindconf
,
sb_authzId
),
'b'
,
1
,
(
slap_verbmasks
*
)
authzNormalize
},
#ifdef HAVE_TLS
{
BER_BVC
(
"starttls="
),
offsetof
(
slap_bindconf
,
sb_tls
),
'i'
,
0
,
tlskey
},
/* NOTE: replace "13" with the actual index
* of the first TLS-related line */
#define aux_TLS (bindkey+13)
/* beginning of TLS keywords */
{
BER_BVC
(
"starttls="
),
offsetof
(
slap_bindconf
,
sb_tls
),
'i'
,
0
,
tlskey
},
{
BER_BVC
(
"tls_cert="
),
offsetof
(
slap_bindconf
,
sb_tls_cert
),
's'
,
1
,
NULL
},
{
BER_BVC
(
"tls_key="
),
offsetof
(
slap_bindconf
,
sb_tls_key
),
's'
,
1
,
NULL
},
{
BER_BVC
(
"tls_cacert="
),
offsetof
(
slap_bindconf
,
sb_tls_cacert
),
's'
,
1
,
NULL
},
{
BER_BVC
(
"tls_cacertdir="
),
offsetof
(
slap_bindconf
,
sb_tls_cacertdir
),
's'
,
1
,
NULL
},
{
BER_BVC
(
"tls_reqcert="
),
offsetof
(
slap_bindconf
,
sb_tls_reqcert
),
's'
,
1
,
NULL
},
{
BER_BVC
(
"tls_cipher_suite="
),
offsetof
(
slap_bindconf
,
sb_tls_cipher_suite
),
's'
,
1
,
NULL
},
{
BER_BVC
(
"tls_protocol_min="
),
offsetof
(
slap_bindconf
,
sb_tls_protocol_min
),
's'
,
1
,
NULL
},
{
BER_BVC
(
"tls_reqcert="
),
offsetof
(
slap_bindconf
,
sb_tls_reqcert
),
's'
,
0
,
NULL
},
{
BER_BVC
(
"tls_cipher_suite="
),
offsetof
(
slap_bindconf
,
sb_tls_cipher_suite
),
's'
,
0
,
NULL
},
{
BER_BVC
(
"tls_protocol_min="
),
offsetof
(
slap_bindconf
,
sb_tls_protocol_min
),
's'
,
0
,
NULL
},
#ifdef HAVE_OPENSSL_CRL
{
BER_BVC
(
"tls_crlcheck="
),
offsetof
(
slap_bindconf
,
sb_tls_crlcheck
),
's'
,
1
,
NULL
},
{
BER_BVC
(
"tls_crlcheck="
),
offsetof
(
slap_bindconf
,
sb_tls_crlcheck
),
's'
,
0
,
NULL
},
#endif
#endif
{
BER_BVNULL
,
0
,
0
,
0
,
NULL
}
...
...
servers/slapd/syncrepl.c
View file @
198879bd
...
...
@@ -4060,6 +4060,10 @@ parse_syncrepl_line(
{
val
=
c
->
argv
[
i
]
+
STRLENOF
(
PROVIDERSTR
"="
);
ber_str2bv
(
val
,
0
,
1
,
&
si
->
si_bindconf
.
sb_uri
);
#ifdef HAVE_TLS
if
(
ldap_is_ldaps_url
(
val
))
si
->
si_bindconf
.
sb_tls_do_init
=
1
;
#endif
si
->
si_got
|=
GOT_PROVIDER
;
}
else
if
(
!
strncasecmp
(
c
->
argv
[
i
],
SCHEMASTR
"="
,
STRLENOF
(
SCHEMASTR
"="
)
)
)
...
...
Write
Preview
Supports
Markdown
0%
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!
Cancel
Please
register
or
sign in
to comment