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
43fba8fc
Commit
43fba8fc
authored
25 years ago
by
Julio Sánchez Fernández
Browse files
Options
Downloads
Patches
Plain Diff
First version with TLS. Untested.
parent
97a68191
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
libraries/libldap/init.c
+27
-1
27 additions, 1 deletion
libraries/libldap/init.c
with
27 additions
and
1 deletion
libraries/libldap/init.c
+
27
−
1
View file @
43fba8fc
...
...
@@ -26,6 +26,7 @@ struct ldapoptions ldap_int_global_options =
#define ATTR_INT 2
#define ATTR_KV 3
#define ATTR_STRING 4
#define ATTR_TLS 5
struct
ol_keyvalue
{
const
char
*
key
;
...
...
@@ -61,10 +62,16 @@ static const struct ol_attribute {
{
ATTR_BOOL
,
"REFERRALS"
,
NULL
,
LDAP_BOOL_REFERRALS
},
{
ATTR_BOOL
,
"RESTART"
,
NULL
,
LDAP_BOOL_RESTART
},
{
ATTR_BOOL
,
"DNS"
,
NULL
,
LDAP_BOOL_DNS
},
{
ATTR_BOOL
,
"TLS"
,
NULL
,
LDAP_OPT_X_TLS
},
{
ATTR_TLS
,
"TLS_CERT"
,
NULL
,
LDAP_OPT_X_TLS_CERTFILE
},
{
ATTR_TLS
,
"TLS_KEY"
,
NULL
,
LDAP_OPT_X_TLS_KEYFILE
},
{
ATTR_TLS
,
"TLS_CACERT"
,
NULL
,
LDAP_OPT_X_TLS_CACERTFILE
},
{
ATTR_TLS
,
"TLS_CACERTDIR"
,
NULL
,
LDAP_OPT_X_TLS_CACERTDIR
},
{
ATTR_TLS
,
"TLS_REQCERT"
,
NULL
,
LDAP_OPT_X_TLS_REQUIRE_CERT
},
{
ATTR_NONE
,
NULL
,
NULL
,
0
}
};
#define MAX_LDAP_ATTR_LEN sizeof("
SIZELIMIT
")
#define MAX_LDAP_ATTR_LEN sizeof("
TLS_CACERTDIR
")
#define MAX_LDAP_ENV_PREFIX_LEN 8
static
void
openldap_ldap_init_w_conf
(
const
char
*
file
)
...
...
@@ -168,6 +175,11 @@ static void openldap_ldap_init_w_conf(const char *file)
if
(
*
(
char
**
)
p
!=
NULL
)
LDAP_FREE
(
*
(
char
**
)
p
);
*
(
char
**
)
p
=
LDAP_STRDUP
(
opt
);
break
;
case
ATTR_TLS
:
#ifdef HAVE_TLS
ldap_pvt_tls_config
(
&
gopts
,
attrs
[
i
].
offset
,
opt
);
#endif
break
;
}
}
}
...
...
@@ -279,6 +291,11 @@ static void openldap_ldap_init_w_env(const char *prefix)
*
(
char
**
)
p
=
LDAP_STRDUP
(
value
);
}
break
;
case
ATTR_TLS
:
#ifdef HAVE_TLS
ldap_pvt_tls_config
(
attrs
[
i
].
offset
,
value
);
#endif
break
;
}
}
}
...
...
@@ -290,6 +307,11 @@ void ldap_int_initialize( void )
}
ldap_int_utils_init
();
#ifdef HAVE_TLS
ldap_pvt_tls_init
();
#endif
if
(
ldap_int_tblsize
==
0
)
ldap_int_ip_init
();
...
...
@@ -309,6 +331,10 @@ void ldap_int_initialize( void )
LDAP_BOOL_SET
(
&
gopts
,
LDAP_BOOL_REFERRALS
);
#ifdef HAVE_TLS
gopts
.
ldo_tls_ctx
=
NULL
;
#endif
gopts
.
ldo_valid
=
LDAP_INITIALIZED
;
if
(
getenv
(
"LDAPNOINIT"
)
!=
NULL
)
{
...
...
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