1999-09-09 03:06:24 +08:00
|
|
|
/* $OpenLDAP$ */
|
1998-12-29 04:53:15 +08:00
|
|
|
/*
|
2003-01-04 04:20:47 +08:00
|
|
|
* Copyright 1998-2003 The OpenLDAP Foundation, All Rights Reserved.
|
1998-12-29 04:53:15 +08:00
|
|
|
* COPYING RESTRICTIONS APPLY, see COPYRIGHT file
|
|
|
|
*/
|
1998-11-04 09:41:00 +08:00
|
|
|
#include "portable.h"
|
|
|
|
|
|
|
|
#include <stdio.h>
|
1999-06-03 08:37:44 +08:00
|
|
|
#include <ac/stdlib.h>
|
1998-11-04 09:41:00 +08:00
|
|
|
|
|
|
|
#include <ac/socket.h>
|
|
|
|
#include <ac/string.h>
|
Protoized, moved extern definitions to .h files, fixed related bugs.
Most function and variable definitions are now preceded by its extern
definition, for error checking. Retyped a number of functions, usually
to return void. Fixed a number of printf format errors.
API changes (in ldap/include):
Added avl_dup_ok, avl_prefixapply, removed ber_fatten (probably typo
for ber_flatten), retyped ldap_sort_strcasecmp, grew lutil.h.
A number of `extern' declarations are left (some added by protoize), to
be cleaned away later. Mostly strdup(), strcasecmp(), mktemp(), optind,
optarg, errno.
1998-11-16 06:40:11 +08:00
|
|
|
#include <ac/ctype.h>
|
1998-11-04 09:41:00 +08:00
|
|
|
#include <ac/time.h>
|
|
|
|
|
2000-05-16 12:52:37 +08:00
|
|
|
#include <limits.h>
|
|
|
|
|
1998-11-04 09:41:00 +08:00
|
|
|
#include "ldap-int.h"
|
1999-06-17 11:54:25 +08:00
|
|
|
#include "ldap_defaults.h"
|
1998-11-04 09:41:00 +08:00
|
|
|
|
1999-05-29 03:33:05 +08:00
|
|
|
struct ldapoptions ldap_int_global_options =
|
|
|
|
{ LDAP_UNINITIALIZED, LDAP_DEBUG_NONE };
|
1998-11-10 07:02:27 +08:00
|
|
|
|
1998-11-11 07:37:30 +08:00
|
|
|
#define ATTR_NONE 0
|
|
|
|
#define ATTR_BOOL 1
|
|
|
|
#define ATTR_INT 2
|
|
|
|
#define ATTR_KV 3
|
|
|
|
#define ATTR_STRING 4
|
2001-06-26 05:39:14 +08:00
|
|
|
#define ATTR_OPTION 5
|
2000-07-14 06:54:38 +08:00
|
|
|
|
|
|
|
#define ATTR_SASL 6
|
|
|
|
#define ATTR_TLS 7
|
1998-11-11 07:37:30 +08:00
|
|
|
|
|
|
|
struct ol_keyvalue {
|
1999-03-09 16:40:36 +08:00
|
|
|
const char * key;
|
1998-11-11 07:37:30 +08:00
|
|
|
int value;
|
|
|
|
};
|
|
|
|
|
1999-03-09 16:40:36 +08:00
|
|
|
static const struct ol_keyvalue deref_kv[] = {
|
1998-11-11 07:37:30 +08:00
|
|
|
{"never", LDAP_DEREF_NEVER},
|
|
|
|
{"searching", LDAP_DEREF_SEARCHING},
|
|
|
|
{"finding", LDAP_DEREF_FINDING},
|
|
|
|
{"always", LDAP_DEREF_ALWAYS},
|
|
|
|
{NULL, 0}
|
|
|
|
};
|
|
|
|
|
1999-03-09 16:40:36 +08:00
|
|
|
static const struct ol_attribute {
|
1999-12-14 10:26:37 +08:00
|
|
|
int useronly;
|
1998-11-11 07:37:30 +08:00
|
|
|
int type;
|
1999-03-09 16:40:36 +08:00
|
|
|
const char * name;
|
|
|
|
const void * data;
|
1998-11-11 07:37:30 +08:00
|
|
|
size_t offset;
|
|
|
|
} attrs[] = {
|
1999-12-14 10:26:37 +08:00
|
|
|
{0, ATTR_KV, "DEREF", deref_kv, /* or &deref_kv[0] */
|
1998-11-11 07:37:30 +08:00
|
|
|
offsetof(struct ldapoptions, ldo_deref)},
|
1999-12-14 10:26:37 +08:00
|
|
|
{0, ATTR_INT, "SIZELIMIT", NULL,
|
1998-11-11 07:37:30 +08:00
|
|
|
offsetof(struct ldapoptions, ldo_sizelimit)},
|
1999-12-14 10:26:37 +08:00
|
|
|
{0, ATTR_INT, "TIMELIMIT", NULL,
|
1998-11-11 07:37:30 +08:00
|
|
|
offsetof(struct ldapoptions, ldo_timelimit)},
|
1999-12-17 11:27:16 +08:00
|
|
|
{1, ATTR_STRING, "BINDDN", NULL,
|
|
|
|
offsetof(struct ldapoptions, ldo_defbinddn)},
|
1999-12-14 10:26:37 +08:00
|
|
|
{0, ATTR_STRING, "BASE", NULL,
|
1998-11-11 07:37:30 +08:00
|
|
|
offsetof(struct ldapoptions, ldo_defbase)},
|
2000-07-09 06:17:50 +08:00
|
|
|
{0, ATTR_INT, "PORT", NULL, /* deprecated */
|
1998-11-11 07:37:30 +08:00
|
|
|
offsetof(struct ldapoptions, ldo_defport)},
|
2001-06-26 05:39:14 +08:00
|
|
|
{0, ATTR_OPTION, "HOST", NULL, LDAP_OPT_HOST_NAME}, /* deprecated */
|
|
|
|
{0, ATTR_OPTION, "URI", NULL, LDAP_OPT_URI}, /* replaces HOST/PORT */
|
1999-12-14 10:26:37 +08:00
|
|
|
{0, ATTR_BOOL, "REFERRALS", NULL, LDAP_BOOL_REFERRALS},
|
|
|
|
{0, ATTR_BOOL, "RESTART", NULL, LDAP_BOOL_RESTART},
|
2000-07-09 06:17:50 +08:00
|
|
|
|
2000-07-14 06:54:38 +08:00
|
|
|
#ifdef HAVE_CYRUS_SASL
|
2000-07-17 08:56:29 +08:00
|
|
|
{1, ATTR_STRING, "SASL_MECH", NULL,
|
|
|
|
offsetof(struct ldapoptions, ldo_def_sasl_mech)},
|
|
|
|
{1, ATTR_STRING, "SASL_REALM", NULL,
|
|
|
|
offsetof(struct ldapoptions, ldo_def_sasl_realm)},
|
|
|
|
{1, ATTR_STRING, "SASL_AUTHCID", NULL,
|
|
|
|
offsetof(struct ldapoptions, ldo_def_sasl_authcid)},
|
|
|
|
{1, ATTR_STRING, "SASL_AUTHZID", NULL,
|
|
|
|
offsetof(struct ldapoptions, ldo_def_sasl_authzid)},
|
|
|
|
{0, ATTR_SASL, "SASL_SECPROPS", NULL, LDAP_OPT_X_SASL_SECPROPS},
|
2000-07-14 06:54:38 +08:00
|
|
|
#endif
|
|
|
|
|
2000-07-09 06:17:50 +08:00
|
|
|
#ifdef HAVE_TLS
|
1999-12-14 10:26:37 +08:00
|
|
|
{0, ATTR_TLS, "TLS", NULL, LDAP_OPT_X_TLS},
|
2000-07-17 08:56:29 +08:00
|
|
|
{1, ATTR_TLS, "TLS_CERT", NULL, LDAP_OPT_X_TLS_CERTFILE},
|
|
|
|
{1, ATTR_TLS, "TLS_KEY", NULL, LDAP_OPT_X_TLS_KEYFILE},
|
1999-12-14 10:26:37 +08:00
|
|
|
{0, ATTR_TLS, "TLS_CACERT", NULL, LDAP_OPT_X_TLS_CACERTFILE},
|
|
|
|
{0, ATTR_TLS, "TLS_CACERTDIR",NULL, LDAP_OPT_X_TLS_CACERTDIR},
|
2000-09-13 08:54:45 +08:00
|
|
|
{0, ATTR_TLS, "TLS_REQCERT", NULL, LDAP_OPT_X_TLS_REQUIRE_CERT},
|
|
|
|
{0, ATTR_TLS, "TLS_RANDFILE", NULL, LDAP_OPT_X_TLS_RANDOM_FILE},
|
2000-07-09 06:17:50 +08:00
|
|
|
#endif
|
|
|
|
|
1999-12-14 10:26:37 +08:00
|
|
|
{0, ATTR_NONE, NULL, NULL, 0}
|
1998-11-11 07:37:30 +08:00
|
|
|
};
|
|
|
|
|
1999-07-14 03:30:41 +08:00
|
|
|
#define MAX_LDAP_ATTR_LEN sizeof("TLS_CACERTDIR")
|
1998-11-11 07:37:30 +08:00
|
|
|
#define MAX_LDAP_ENV_PREFIX_LEN 8
|
|
|
|
|
1999-12-14 10:26:37 +08:00
|
|
|
static void openldap_ldap_init_w_conf(
|
|
|
|
const char *file, int userconf )
|
1998-11-11 07:37:30 +08:00
|
|
|
{
|
|
|
|
char linebuf[128];
|
|
|
|
FILE *fp;
|
|
|
|
int i;
|
|
|
|
char *cmd, *opt;
|
|
|
|
char *start, *end;
|
2000-06-09 01:11:57 +08:00
|
|
|
struct ldapoptions *gopts;
|
|
|
|
|
|
|
|
if ((gopts = LDAP_INT_GLOBAL_OPT()) == NULL) {
|
|
|
|
return; /* Could not allocate mem for global options */
|
|
|
|
}
|
1998-11-11 07:37:30 +08:00
|
|
|
|
1998-11-23 11:03:06 +08:00
|
|
|
if (file == NULL) {
|
|
|
|
/* no file name */
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2002-03-28 06:03:35 +08:00
|
|
|
#ifdef NEW_LOGGING
|
2002-07-12 04:33:24 +08:00
|
|
|
LDAP_LOG ( CONFIG, DETAIL1,
|
|
|
|
"openldap_init_w_conf: trying %s\n", file, 0, 0 );
|
2002-03-28 06:03:35 +08:00
|
|
|
#else
|
2000-05-11 17:48:40 +08:00
|
|
|
Debug(LDAP_DEBUG_TRACE, "ldap_init: trying %s\n", file, 0, 0);
|
2002-03-28 06:03:35 +08:00
|
|
|
#endif
|
2000-05-11 17:48:40 +08:00
|
|
|
|
1998-11-11 07:37:30 +08:00
|
|
|
fp = fopen(file, "r");
|
|
|
|
if(fp == NULL) {
|
|
|
|
/* could not open file */
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2002-03-28 06:03:35 +08:00
|
|
|
#ifdef NEW_LOGGING
|
2002-07-12 04:33:24 +08:00
|
|
|
LDAP_LOG ( CONFIG, DETAIL1, "openldap_init_w_conf: using %s\n", file, 0, 0 );
|
2002-03-28 06:03:35 +08:00
|
|
|
#else
|
2000-05-11 17:48:40 +08:00
|
|
|
Debug(LDAP_DEBUG_TRACE, "ldap_init: using %s\n", file, 0, 0);
|
2002-03-28 06:03:35 +08:00
|
|
|
#endif
|
2000-05-11 17:48:40 +08:00
|
|
|
|
1998-11-11 07:37:30 +08:00
|
|
|
while((start = fgets(linebuf, sizeof(linebuf), fp)) != NULL) {
|
|
|
|
/* skip lines starting with '#' */
|
|
|
|
if(*start == '#') continue;
|
|
|
|
|
|
|
|
/* trim leading white space */
|
1999-02-23 01:57:22 +08:00
|
|
|
while((*start != '\0') && isspace((unsigned char) *start))
|
|
|
|
start++;
|
1998-11-11 07:37:30 +08:00
|
|
|
|
|
|
|
/* anything left? */
|
|
|
|
if(*start == '\0') continue;
|
|
|
|
|
|
|
|
/* trim trailing white space */
|
|
|
|
end = &start[strlen(start)-1];
|
1999-02-23 01:57:22 +08:00
|
|
|
while(isspace((unsigned char)*end)) end--;
|
1998-11-11 07:37:30 +08:00
|
|
|
end[1] = '\0';
|
|
|
|
|
|
|
|
/* anything left? */
|
|
|
|
if(*start == '\0') continue;
|
|
|
|
|
|
|
|
|
|
|
|
/* parse the command */
|
|
|
|
cmd=start;
|
1999-02-23 01:57:22 +08:00
|
|
|
while((*start != '\0') && !isspace((unsigned char)*start)) {
|
1998-11-11 07:37:30 +08:00
|
|
|
start++;
|
|
|
|
}
|
|
|
|
if(*start == '\0') {
|
|
|
|
/* command has no argument */
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
*start++ = '\0';
|
|
|
|
|
2000-01-24 07:33:01 +08:00
|
|
|
/* we must have some whitespace to skip */
|
1999-02-23 01:57:22 +08:00
|
|
|
while(isspace((unsigned char)*start)) start++;
|
1998-11-11 07:37:30 +08:00
|
|
|
opt = start;
|
|
|
|
|
|
|
|
for(i=0; attrs[i].type != ATTR_NONE; i++) {
|
|
|
|
void *p;
|
|
|
|
|
2000-03-13 20:31:35 +08:00
|
|
|
if( !userconf && attrs[i].useronly ) {
|
1999-12-14 10:26:37 +08:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
1998-11-11 07:37:30 +08:00
|
|
|
if(strcasecmp(cmd, attrs[i].name) != 0) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
switch(attrs[i].type) {
|
|
|
|
case ATTR_BOOL:
|
|
|
|
if((strcasecmp(opt, "on") == 0)
|
|
|
|
|| (strcasecmp(opt, "yes") == 0)
|
|
|
|
|| (strcasecmp(opt, "true") == 0))
|
|
|
|
{
|
2000-06-09 01:11:57 +08:00
|
|
|
LDAP_BOOL_SET(gopts, attrs[i].offset);
|
1998-11-11 07:37:30 +08:00
|
|
|
|
|
|
|
} else {
|
2000-06-09 01:11:57 +08:00
|
|
|
LDAP_BOOL_CLR(gopts, attrs[i].offset);
|
1998-11-11 07:37:30 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
case ATTR_INT:
|
2000-06-09 01:11:57 +08:00
|
|
|
p = &((char *) gopts)[attrs[i].offset];
|
1998-11-11 07:37:30 +08:00
|
|
|
* (int*) p = atoi(opt);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case ATTR_KV: {
|
1999-03-09 16:40:36 +08:00
|
|
|
const struct ol_keyvalue *kv;
|
1998-11-11 07:37:30 +08:00
|
|
|
|
1999-03-09 16:40:36 +08:00
|
|
|
for(kv = attrs[i].data;
|
1998-11-11 07:37:30 +08:00
|
|
|
kv->key != NULL;
|
|
|
|
kv++) {
|
|
|
|
|
|
|
|
if(strcasecmp(opt, kv->key) == 0) {
|
2000-06-09 01:11:57 +08:00
|
|
|
p = &((char *) gopts)[attrs[i].offset];
|
1998-11-11 07:37:30 +08:00
|
|
|
* (int*) p = kv->value;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} break;
|
|
|
|
|
|
|
|
case ATTR_STRING:
|
2000-06-09 01:11:57 +08:00
|
|
|
p = &((char *) gopts)[attrs[i].offset];
|
1999-05-29 09:19:14 +08:00
|
|
|
if (* (char**) p != NULL) LDAP_FREE(* (char**) p);
|
1999-06-03 06:28:22 +08:00
|
|
|
* (char**) p = LDAP_STRDUP(opt);
|
1998-11-11 07:37:30 +08:00
|
|
|
break;
|
2001-06-26 05:39:14 +08:00
|
|
|
case ATTR_OPTION:
|
|
|
|
ldap_set_option( NULL, attrs[i].offset, opt );
|
1999-12-08 02:42:25 +08:00
|
|
|
break;
|
2000-07-14 06:54:38 +08:00
|
|
|
case ATTR_SASL:
|
|
|
|
#ifdef HAVE_CYRUS_SASL
|
|
|
|
ldap_int_sasl_config( gopts, attrs[i].offset, opt );
|
|
|
|
#endif
|
|
|
|
break;
|
|
|
|
case ATTR_TLS:
|
|
|
|
#ifdef HAVE_TLS
|
2001-09-06 05:22:41 +08:00
|
|
|
ldap_int_tls_config( NULL, attrs[i].offset, opt );
|
2000-07-14 06:54:38 +08:00
|
|
|
#endif
|
|
|
|
break;
|
1998-11-11 07:37:30 +08:00
|
|
|
}
|
2000-07-14 06:54:38 +08:00
|
|
|
|
2000-05-12 18:40:29 +08:00
|
|
|
break;
|
1998-11-11 07:37:30 +08:00
|
|
|
}
|
|
|
|
}
|
1999-03-26 06:19:42 +08:00
|
|
|
|
|
|
|
fclose(fp);
|
1998-11-11 07:37:30 +08:00
|
|
|
}
|
|
|
|
|
1999-12-14 10:26:37 +08:00
|
|
|
static void openldap_ldap_init_w_sysconf(const char *file)
|
|
|
|
{
|
|
|
|
openldap_ldap_init_w_conf( file, 0 );
|
|
|
|
}
|
|
|
|
|
1998-11-11 07:37:30 +08:00
|
|
|
static void openldap_ldap_init_w_userconf(const char *file)
|
|
|
|
{
|
1998-11-23 11:03:06 +08:00
|
|
|
char *home;
|
2000-05-11 17:48:40 +08:00
|
|
|
char *path = NULL;
|
1998-11-23 11:03:06 +08:00
|
|
|
|
|
|
|
if (file == NULL) {
|
|
|
|
/* no file name */
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
home = getenv("HOME");
|
|
|
|
|
1998-11-11 13:50:51 +08:00
|
|
|
if (home != NULL) {
|
2002-03-28 06:03:35 +08:00
|
|
|
#ifdef NEW_LOGGING
|
2002-07-12 04:33:24 +08:00
|
|
|
LDAP_LOG ( CONFIG, ARGS,
|
|
|
|
"openldap_init_w_userconf: HOME env is %s\n", home, 0, 0 );
|
2002-03-28 06:03:35 +08:00
|
|
|
#else
|
2000-05-11 17:48:40 +08:00
|
|
|
Debug(LDAP_DEBUG_TRACE, "ldap_init: HOME env is %s\n",
|
|
|
|
home, 0, 0);
|
2002-03-28 06:03:35 +08:00
|
|
|
#endif
|
2002-07-24 02:26:33 +08:00
|
|
|
path = LDAP_MALLOC(strlen(home) + strlen(file) + sizeof( LDAP_DIRSEP "."));
|
1998-11-11 13:50:51 +08:00
|
|
|
} else {
|
2002-03-28 06:03:35 +08:00
|
|
|
#ifdef NEW_LOGGING
|
2002-07-12 04:33:24 +08:00
|
|
|
LDAP_LOG ( CONFIG, ARGS, "openldap_init_w_userconf: HOME env is NULL\n",
|
|
|
|
0, 0, 0 );
|
2002-03-28 06:03:35 +08:00
|
|
|
#else
|
2000-05-11 17:48:40 +08:00
|
|
|
Debug(LDAP_DEBUG_TRACE, "ldap_init: HOME env is NULL\n",
|
|
|
|
0, 0, 0);
|
2002-03-28 06:03:35 +08:00
|
|
|
#endif
|
1998-11-11 13:50:51 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
if(home != NULL && path != NULL) {
|
1998-11-23 11:03:06 +08:00
|
|
|
/* we assume UNIX path syntax is used... */
|
|
|
|
|
1998-11-11 13:50:51 +08:00
|
|
|
/* try ~/file */
|
2002-07-24 02:26:33 +08:00
|
|
|
sprintf(path, "%s" LDAP_DIRSEP "%s", home, file);
|
1999-12-14 10:26:37 +08:00
|
|
|
openldap_ldap_init_w_conf(path, 1);
|
1998-11-11 07:37:30 +08:00
|
|
|
|
1998-11-11 13:50:51 +08:00
|
|
|
/* try ~/.file */
|
2002-07-24 02:26:33 +08:00
|
|
|
sprintf(path, "%s" LDAP_DIRSEP ".%s", home, file);
|
1999-12-14 10:26:37 +08:00
|
|
|
openldap_ldap_init_w_conf(path, 1);
|
1998-11-11 13:50:51 +08:00
|
|
|
}
|
1998-11-23 11:03:06 +08:00
|
|
|
|
|
|
|
if(path != NULL) {
|
1999-05-29 09:19:14 +08:00
|
|
|
LDAP_FREE(path);
|
1998-11-23 11:03:06 +08:00
|
|
|
}
|
1998-11-11 07:37:30 +08:00
|
|
|
|
|
|
|
/* try file */
|
1999-12-14 10:26:37 +08:00
|
|
|
openldap_ldap_init_w_conf(file, 1);
|
1998-11-11 07:37:30 +08:00
|
|
|
}
|
|
|
|
|
2000-06-09 01:11:57 +08:00
|
|
|
static void openldap_ldap_init_w_env(
|
|
|
|
struct ldapoptions *gopts,
|
|
|
|
const char *prefix)
|
1998-11-11 07:37:30 +08:00
|
|
|
{
|
|
|
|
char buf[MAX_LDAP_ATTR_LEN+MAX_LDAP_ENV_PREFIX_LEN];
|
|
|
|
int len;
|
|
|
|
int i;
|
|
|
|
void *p;
|
|
|
|
char *value;
|
|
|
|
|
|
|
|
if (prefix == NULL) {
|
1999-06-17 11:54:25 +08:00
|
|
|
prefix = LDAP_ENV_PREFIX;
|
1998-11-11 07:37:30 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
strncpy(buf, prefix, MAX_LDAP_ENV_PREFIX_LEN);
|
|
|
|
buf[MAX_LDAP_ENV_PREFIX_LEN] = '\0';
|
|
|
|
len = strlen(buf);
|
|
|
|
|
|
|
|
for(i=0; attrs[i].type != ATTR_NONE; i++) {
|
|
|
|
strcpy(&buf[len], attrs[i].name);
|
|
|
|
value = getenv(buf);
|
|
|
|
|
|
|
|
if(value == NULL) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
switch(attrs[i].type) {
|
|
|
|
case ATTR_BOOL:
|
|
|
|
if((strcasecmp(value, "on") == 0)
|
|
|
|
|| (strcasecmp(value, "yes") == 0)
|
|
|
|
|| (strcasecmp(value, "true") == 0))
|
|
|
|
{
|
2000-06-09 01:11:57 +08:00
|
|
|
LDAP_BOOL_SET(gopts, attrs[i].offset);
|
1998-11-11 07:37:30 +08:00
|
|
|
|
|
|
|
} else {
|
2000-06-09 01:11:57 +08:00
|
|
|
LDAP_BOOL_CLR(gopts, attrs[i].offset);
|
1998-11-11 07:37:30 +08:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case ATTR_INT:
|
2000-06-09 01:11:57 +08:00
|
|
|
p = &((char *) gopts)[attrs[i].offset];
|
1998-11-11 07:37:30 +08:00
|
|
|
* (int*) p = atoi(value);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case ATTR_KV: {
|
1999-03-09 16:40:36 +08:00
|
|
|
const struct ol_keyvalue *kv;
|
1998-11-11 07:37:30 +08:00
|
|
|
|
1999-03-09 16:40:36 +08:00
|
|
|
for(kv = attrs[i].data;
|
1998-11-11 07:37:30 +08:00
|
|
|
kv->key != NULL;
|
|
|
|
kv++) {
|
|
|
|
|
|
|
|
if(strcasecmp(value, kv->key) == 0) {
|
2000-06-09 01:11:57 +08:00
|
|
|
p = &((char *) gopts)[attrs[i].offset];
|
1998-11-11 07:37:30 +08:00
|
|
|
* (int*) p = kv->value;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} break;
|
|
|
|
|
|
|
|
case ATTR_STRING:
|
2000-06-09 01:11:57 +08:00
|
|
|
p = &((char *) gopts)[attrs[i].offset];
|
1999-05-29 09:19:14 +08:00
|
|
|
if (* (char**) p != NULL) LDAP_FREE(* (char**) p);
|
1998-11-11 07:37:30 +08:00
|
|
|
if (*value == '\0') {
|
|
|
|
* (char**) p = NULL;
|
|
|
|
} else {
|
1999-06-03 06:28:22 +08:00
|
|
|
* (char**) p = LDAP_STRDUP(value);
|
1998-11-11 07:37:30 +08:00
|
|
|
}
|
|
|
|
break;
|
2001-06-26 05:39:14 +08:00
|
|
|
case ATTR_OPTION:
|
|
|
|
ldap_set_option( NULL, attrs[i].offset, value );
|
1999-12-08 02:42:25 +08:00
|
|
|
break;
|
2000-07-14 06:54:38 +08:00
|
|
|
case ATTR_SASL:
|
|
|
|
#ifdef HAVE_CYRUS_SASL
|
|
|
|
ldap_int_sasl_config( gopts, attrs[i].offset, value );
|
|
|
|
#endif
|
|
|
|
break;
|
|
|
|
case ATTR_TLS:
|
|
|
|
#ifdef HAVE_TLS
|
2001-09-06 05:22:41 +08:00
|
|
|
ldap_int_tls_config( NULL, attrs[i].offset, value );
|
2000-07-14 06:54:38 +08:00
|
|
|
#endif
|
|
|
|
break;
|
1998-11-11 07:37:30 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2002-02-09 09:09:23 +08:00
|
|
|
#if defined(__GNUC__)
|
|
|
|
/* Declare this function as a destructor so that it will automatically be
|
|
|
|
* invoked either at program exit (if libldap is a static library) or
|
|
|
|
* at unload time (if libldap is a dynamic library).
|
|
|
|
*
|
|
|
|
* Sorry, don't know how to handle this for non-GCC environments.
|
|
|
|
*/
|
|
|
|
static void ldap_int_destroy_global_options(void)
|
|
|
|
__attribute__ ((destructor));
|
|
|
|
#endif
|
|
|
|
|
2001-12-15 21:43:49 +08:00
|
|
|
static void
|
2001-12-18 13:17:06 +08:00
|
|
|
ldap_int_destroy_global_options(void)
|
2001-12-15 21:43:49 +08:00
|
|
|
{
|
|
|
|
struct ldapoptions *gopts = LDAP_INT_GLOBAL_OPT();
|
|
|
|
|
|
|
|
if ( gopts->ldo_defludp ) {
|
|
|
|
ldap_free_urllist( gopts->ldo_defludp );
|
|
|
|
gopts->ldo_defludp = NULL;
|
|
|
|
}
|
2001-12-28 14:12:17 +08:00
|
|
|
#if defined(HAVE_WINSOCK) || defined(HAVE_WINSOCK2)
|
|
|
|
WSACleanup( );
|
|
|
|
#endif
|
2001-12-15 21:43:49 +08:00
|
|
|
}
|
|
|
|
|
2000-06-09 01:11:57 +08:00
|
|
|
/*
|
|
|
|
* Initialize the global options structure with default values.
|
|
|
|
*/
|
|
|
|
void ldap_int_initialize_global_options( struct ldapoptions *gopts, int *dbglvl )
|
1998-11-04 09:41:00 +08:00
|
|
|
{
|
2000-05-11 17:48:40 +08:00
|
|
|
if (dbglvl)
|
2000-06-09 01:11:57 +08:00
|
|
|
gopts->ldo_debug = *dbglvl;
|
2000-05-11 17:48:40 +08:00
|
|
|
else
|
2000-06-09 01:11:57 +08:00
|
|
|
gopts->ldo_debug = 0;
|
1999-08-04 03:27:22 +08:00
|
|
|
|
2000-06-09 01:11:57 +08:00
|
|
|
gopts->ldo_version = LDAP_VERSION2;
|
|
|
|
gopts->ldo_deref = LDAP_DEREF_NEVER;
|
|
|
|
gopts->ldo_timelimit = LDAP_NO_LIMIT;
|
|
|
|
gopts->ldo_sizelimit = LDAP_NO_LIMIT;
|
1998-11-10 07:02:27 +08:00
|
|
|
|
2000-06-09 01:11:57 +08:00
|
|
|
gopts->ldo_tm_api = (struct timeval *)NULL;
|
|
|
|
gopts->ldo_tm_net = (struct timeval *)NULL;
|
1998-12-22 09:34:01 +08:00
|
|
|
|
2002-02-09 09:09:23 +08:00
|
|
|
/* ldo_defludp will be freed by the termination handler
|
2000-02-03 05:26:36 +08:00
|
|
|
*/
|
2000-06-09 01:11:57 +08:00
|
|
|
ldap_url_parselist(&gopts->ldo_defludp, "ldap://localhost/");
|
|
|
|
gopts->ldo_defport = LDAP_PORT;
|
2002-02-09 09:09:23 +08:00
|
|
|
#if !defined(__GNUC__) && !defined(PIC)
|
|
|
|
/* Do this only for a static library, and only if we can't
|
|
|
|
* arrange for it to be executed as a library destructor
|
|
|
|
*/
|
2001-12-15 21:43:49 +08:00
|
|
|
atexit(ldap_int_destroy_global_options);
|
2002-02-09 09:09:23 +08:00
|
|
|
#endif
|
1998-11-10 07:02:27 +08:00
|
|
|
|
2000-06-09 01:11:57 +08:00
|
|
|
gopts->ldo_refhoplimit = LDAP_DEFAULT_REFHOPLIMIT;
|
2001-06-15 08:14:56 +08:00
|
|
|
gopts->ldo_rebind_proc = NULL;
|
|
|
|
gopts->ldo_rebind_params = NULL;
|
1998-11-11 07:37:30 +08:00
|
|
|
|
2000-06-09 01:11:57 +08:00
|
|
|
LDAP_BOOL_ZERO(gopts);
|
1998-11-10 07:02:27 +08:00
|
|
|
|
2000-06-09 01:11:57 +08:00
|
|
|
LDAP_BOOL_SET(gopts, LDAP_BOOL_REFERRALS);
|
1998-11-10 07:02:27 +08:00
|
|
|
|
2001-09-28 08:18:40 +08:00
|
|
|
#ifdef LDAP_CONNECTIONLESS
|
|
|
|
gopts->ldo_peer = NULL;
|
|
|
|
gopts->ldo_cldapdn = NULL;
|
2001-09-29 06:19:51 +08:00
|
|
|
gopts->ldo_is_udp = 0;
|
2001-09-28 08:18:40 +08:00
|
|
|
#endif
|
|
|
|
|
2000-04-20 17:23:51 +08:00
|
|
|
#ifdef HAVE_CYRUS_SASL
|
2000-07-17 08:56:29 +08:00
|
|
|
gopts->ldo_def_sasl_mech = NULL;
|
|
|
|
gopts->ldo_def_sasl_realm = NULL;
|
|
|
|
gopts->ldo_def_sasl_authcid = NULL;
|
|
|
|
gopts->ldo_def_sasl_authzid = NULL;
|
|
|
|
|
2001-01-19 06:18:41 +08:00
|
|
|
memset( &gopts->ldo_sasl_secprops,
|
|
|
|
'\0', sizeof(gopts->ldo_sasl_secprops) );
|
2000-07-14 06:54:38 +08:00
|
|
|
|
|
|
|
gopts->ldo_sasl_secprops.max_ssf = INT_MAX;
|
2001-01-19 06:18:41 +08:00
|
|
|
gopts->ldo_sasl_secprops.maxbufsize = SASL_MAX_BUFF_SIZE;
|
|
|
|
gopts->ldo_sasl_secprops.security_flags =
|
|
|
|
SASL_SEC_NOPLAINTEXT | SASL_SEC_NOANONYMOUS;
|
2000-04-20 17:23:51 +08:00
|
|
|
#endif
|
1999-07-14 03:30:41 +08:00
|
|
|
|
2000-06-09 01:11:57 +08:00
|
|
|
gopts->ldo_valid = LDAP_INITIALIZED;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2000-07-14 06:54:38 +08:00
|
|
|
#if defined(LDAP_API_FEATURE_X_OPENLDAP_V2_KBIND) \
|
|
|
|
|| defined(HAVE_TLS) || defined(HAVE_CYRUS_SASL)
|
2000-08-15 09:55:43 +08:00
|
|
|
char * ldap_int_hostname = NULL;
|
2000-07-14 06:54:38 +08:00
|
|
|
#endif
|
|
|
|
|
2000-06-09 01:11:57 +08:00
|
|
|
void ldap_int_initialize( struct ldapoptions *gopts, int *dbglvl )
|
|
|
|
{
|
|
|
|
if ( gopts->ldo_valid == LDAP_INITIALIZED ) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2001-10-05 02:06:08 +08:00
|
|
|
ldap_int_error_init();
|
|
|
|
|
2002-08-11 07:34:55 +08:00
|
|
|
ldap_int_utils_init();
|
|
|
|
|
2001-12-28 14:12:17 +08:00
|
|
|
#ifdef HAVE_WINSOCK2
|
|
|
|
{ WORD wVersionRequested;
|
|
|
|
WSADATA wsaData;
|
|
|
|
|
|
|
|
wVersionRequested = MAKEWORD( 2, 0 );
|
|
|
|
if ( WSAStartup( wVersionRequested, &wsaData ) != 0 ) {
|
|
|
|
/* Tell the user that we couldn't find a usable */
|
|
|
|
/* WinSock DLL. */
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Confirm that the WinSock DLL supports 2.0.*/
|
|
|
|
/* Note that if the DLL supports versions greater */
|
|
|
|
/* than 2.0 in addition to 2.0, it will still return */
|
|
|
|
/* 2.0 in wVersion since that is the version we */
|
|
|
|
/* requested. */
|
|
|
|
|
|
|
|
if ( LOBYTE( wsaData.wVersion ) != 2 ||
|
|
|
|
HIBYTE( wsaData.wVersion ) != 0 )
|
|
|
|
{
|
|
|
|
/* Tell the user that we couldn't find a usable */
|
|
|
|
/* WinSock DLL. */
|
|
|
|
WSACleanup( );
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
} /* The WinSock DLL is acceptable. Proceed. */
|
|
|
|
#elif HAVE_WINSOCK
|
|
|
|
{ WSADATA wsaData;
|
|
|
|
if ( WSAStartup( 0x0101, &wsaData ) != 0 ) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
2002-01-05 07:10:48 +08:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#if defined(LDAP_API_FEATURE_X_OPENLDAP_V2_KBIND) \
|
|
|
|
|| defined(HAVE_TLS) || defined(HAVE_CYRUS_SASL)
|
|
|
|
ldap_int_hostname = ldap_pvt_get_fqdn( ldap_int_hostname );
|
2001-12-28 14:12:17 +08:00
|
|
|
#endif
|
2000-06-09 01:11:57 +08:00
|
|
|
if ( ldap_int_tblsize == 0 )
|
|
|
|
ldap_int_ip_init();
|
|
|
|
|
|
|
|
ldap_int_initialize_global_options(gopts, NULL);
|
1999-01-14 14:28:50 +08:00
|
|
|
|
|
|
|
if( getenv("LDAPNOINIT") != NULL ) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2000-07-17 08:56:29 +08:00
|
|
|
#ifdef HAVE_CYRUS_SASL
|
|
|
|
{
|
|
|
|
/* set authentication identity to current user name */
|
|
|
|
char *user = getenv("USER");
|
|
|
|
|
|
|
|
if( user == NULL ) user = getenv("USERNAME");
|
|
|
|
if( user == NULL ) user = getenv("LOGNAME");
|
|
|
|
|
|
|
|
if( user != NULL ) {
|
2001-12-15 20:07:40 +08:00
|
|
|
gopts->ldo_def_sasl_authcid = user;
|
2000-07-17 08:56:29 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
1999-12-14 10:26:37 +08:00
|
|
|
openldap_ldap_init_w_sysconf(LDAP_CONF_FILE);
|
1999-06-17 11:54:25 +08:00
|
|
|
openldap_ldap_init_w_userconf(LDAP_USERRC_FILE);
|
1998-11-19 11:55:56 +08:00
|
|
|
|
|
|
|
{
|
1999-06-17 11:54:25 +08:00
|
|
|
char *altfile = getenv(LDAP_ENV_PREFIX "CONF");
|
1998-11-19 11:55:56 +08:00
|
|
|
|
|
|
|
if( altfile != NULL ) {
|
2002-03-28 06:03:35 +08:00
|
|
|
#ifdef NEW_LOGGING
|
2002-07-12 04:33:24 +08:00
|
|
|
LDAP_LOG ( CONFIG, DETAIL1,
|
2002-03-28 06:03:35 +08:00
|
|
|
"openldap_init_w_userconf: %sCONF env is %s\n",
|
2002-07-12 04:33:24 +08:00
|
|
|
LDAP_ENV_PREFIX, altfile, 0 );
|
2002-03-28 06:03:35 +08:00
|
|
|
#else
|
2000-05-11 17:48:40 +08:00
|
|
|
Debug(LDAP_DEBUG_TRACE, "ldap_init: %s env is %s\n",
|
|
|
|
LDAP_ENV_PREFIX "CONF", altfile, 0);
|
2002-03-28 06:03:35 +08:00
|
|
|
#endif
|
1999-12-14 10:26:37 +08:00
|
|
|
openldap_ldap_init_w_sysconf( altfile );
|
1998-11-19 11:55:56 +08:00
|
|
|
}
|
2000-05-11 17:48:40 +08:00
|
|
|
else
|
2002-03-28 06:03:35 +08:00
|
|
|
#ifdef NEW_LOGGING
|
2002-07-12 04:33:24 +08:00
|
|
|
LDAP_LOG ( CONFIG, DETAIL1,
|
2002-03-28 06:03:35 +08:00
|
|
|
"openldap_init_w_userconf: %sCONF env is NULL\n",
|
2002-07-12 04:33:24 +08:00
|
|
|
LDAP_ENV_PREFIX, 0, 0 );
|
2002-03-28 06:03:35 +08:00
|
|
|
#else
|
2000-05-11 17:48:40 +08:00
|
|
|
Debug(LDAP_DEBUG_TRACE, "ldap_init: %s env is NULL\n",
|
|
|
|
LDAP_ENV_PREFIX "CONF", 0, 0);
|
2002-03-28 06:03:35 +08:00
|
|
|
#endif
|
1998-11-19 11:55:56 +08:00
|
|
|
}
|
|
|
|
|
1999-01-15 07:04:08 +08:00
|
|
|
{
|
1999-06-17 11:54:25 +08:00
|
|
|
char *altfile = getenv(LDAP_ENV_PREFIX "RC");
|
1999-01-15 07:04:08 +08:00
|
|
|
|
|
|
|
if( altfile != NULL ) {
|
2002-03-28 06:03:35 +08:00
|
|
|
#ifdef NEW_LOGGING
|
2002-07-12 04:33:24 +08:00
|
|
|
LDAP_LOG ( CONFIG, DETAIL1,
|
2002-03-28 06:03:35 +08:00
|
|
|
"openldap_init_w_userconf: %sRC env is %s\n",
|
2002-07-12 04:33:24 +08:00
|
|
|
LDAP_ENV_PREFIX, altfile, 0 );
|
2002-03-28 06:03:35 +08:00
|
|
|
#else
|
2000-05-11 17:48:40 +08:00
|
|
|
Debug(LDAP_DEBUG_TRACE, "ldap_init: %s env is %s\n",
|
|
|
|
LDAP_ENV_PREFIX "RC", altfile, 0);
|
2002-03-28 06:03:35 +08:00
|
|
|
#endif
|
1999-01-15 07:04:08 +08:00
|
|
|
openldap_ldap_init_w_userconf( altfile );
|
|
|
|
}
|
2000-05-11 17:48:40 +08:00
|
|
|
else
|
2002-03-28 06:03:35 +08:00
|
|
|
#ifdef NEW_LOGGING
|
2002-07-12 04:33:24 +08:00
|
|
|
LDAP_LOG ( CONFIG, DETAIL1,
|
2002-03-28 06:03:35 +08:00
|
|
|
"openldap_init_w_userconf: %sRC env is NULL\n",
|
2002-07-12 04:33:24 +08:00
|
|
|
LDAP_ENV_PREFIX, 0, 0 );
|
2002-03-28 06:03:35 +08:00
|
|
|
#else
|
2000-05-11 17:48:40 +08:00
|
|
|
Debug(LDAP_DEBUG_TRACE, "ldap_init: %s env is NULL\n",
|
|
|
|
LDAP_ENV_PREFIX "RC", 0, 0);
|
2002-03-28 06:03:35 +08:00
|
|
|
#endif
|
1999-01-15 07:04:08 +08:00
|
|
|
}
|
|
|
|
|
2000-06-09 01:11:57 +08:00
|
|
|
openldap_ldap_init_w_env(gopts, NULL);
|
2000-09-13 08:54:45 +08:00
|
|
|
|
|
|
|
ldap_int_sasl_init();
|
1998-11-04 09:41:00 +08:00
|
|
|
}
|