2003-12-06 18:59:27 +08:00
|
|
|
/* overlays.c - Static overlay framework */
|
|
|
|
/* $OpenLDAP$ */
|
|
|
|
/* This work is part of OpenLDAP Software <http://www.openldap.org/>.
|
|
|
|
*
|
2004-01-02 03:15:16 +08:00
|
|
|
* Copyright 2003-2004 The OpenLDAP Foundation.
|
2003-12-06 18:59:27 +08:00
|
|
|
* Copyright 2003 by Howard Chu.
|
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted only as authorized by the OpenLDAP
|
|
|
|
* Public License.
|
|
|
|
*
|
|
|
|
* A copy of this license is available in the file LICENSE in the
|
|
|
|
* top-level directory of the distribution or, alternatively, at
|
|
|
|
* <http://www.OpenLDAP.org/license.html>.
|
|
|
|
*/
|
|
|
|
/* ACKNOWLEDGEMENTS:
|
|
|
|
* This work was initially developed by Howard Chu for inclusion in
|
|
|
|
* OpenLDAP Software.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "portable.h"
|
|
|
|
|
|
|
|
#include "slap.h"
|
|
|
|
|
|
|
|
|
|
|
|
#if SLAPD_OVER_DYNGROUP == SLAPD_MOD_STATIC
|
|
|
|
extern int dyngroup_init();
|
|
|
|
#endif
|
|
|
|
#if SLAPD_OVER_PROXYCACHE == SLAPD_MOD_STATIC
|
|
|
|
extern int pcache_init();
|
|
|
|
#endif
|
2003-12-10 07:50:10 +08:00
|
|
|
#if SLAPD_OVER_RWM == SLAPD_MOD_STATIC
|
|
|
|
extern int rwm_init();
|
|
|
|
#endif
|
2003-12-06 18:59:27 +08:00
|
|
|
|
|
|
|
static struct {
|
|
|
|
char *name;
|
|
|
|
int (*func)();
|
|
|
|
} funcs[] = {
|
|
|
|
#if SLAPD_OVER_DYNGROUP == SLAPD_MOD_STATIC
|
|
|
|
{ "Dynamic Group", dyngroup_init },
|
|
|
|
#endif
|
|
|
|
#if SLAPD_OVER_PROXYCACHE == SLAPD_MOD_STATIC
|
|
|
|
{ "Proxy Cache", pcache_init },
|
2003-12-10 07:50:10 +08:00
|
|
|
#endif
|
|
|
|
#if SLAPD_OVER_RWM == SLAPD_MOD_STATIC
|
|
|
|
{ "Rewrite/Remap", rwm_init },
|
2003-12-06 18:59:27 +08:00
|
|
|
#endif
|
|
|
|
{ NULL, NULL }
|
|
|
|
};
|
|
|
|
|
2003-12-13 18:57:13 +08:00
|
|
|
int
|
|
|
|
overlay_init(void)
|
|
|
|
{
|
2003-12-06 18:59:27 +08:00
|
|
|
int i, rc = 0;
|
|
|
|
|
|
|
|
for ( i=0; funcs[i].name; i++ ) {
|
|
|
|
rc = funcs[i].func();
|
|
|
|
if ( rc ) {
|
|
|
|
#ifdef NEW_LOGGING
|
|
|
|
LDAP_LOG( BACKEND, ERR,
|
|
|
|
"%s overlay setup failed, err %d\n", funcs[i].name, rc, 0 );
|
|
|
|
#else
|
|
|
|
Debug( LDAP_DEBUG_ANY,
|
|
|
|
"%s overlay setup failed, err %d\n", funcs[i].name, rc, 0 );
|
|
|
|
#endif
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return rc;
|
|
|
|
}
|