]> git.sur5r.net Git - openldap/blob - servers/slapd/overlays/overlays.c
overlays reworking
[openldap] / servers / slapd / overlays / overlays.c
1 /* overlays.c - Static overlay framework */
2 /* $OpenLDAP$ */
3 /* This work is part of OpenLDAP Software <http://www.openldap.org/>.
4  *
5  * Copyright 2003-2004 The OpenLDAP Foundation.
6  * Copyright 2003 by Howard Chu.
7  * All rights reserved.
8  *
9  * Redistribution and use in source and binary forms, with or without
10  * modification, are permitted only as authorized by the OpenLDAP
11  * Public License.
12  *
13  * A copy of this license is available in the file LICENSE in the
14  * top-level directory of the distribution or, alternatively, at
15  * <http://www.OpenLDAP.org/license.html>.
16  */
17 /* ACKNOWLEDGEMENTS:
18  * This work was initially developed by Howard Chu for inclusion in
19  * OpenLDAP Software.
20  */
21
22 #include "portable.h"
23
24 #include "slap.h"
25
26
27 #if SLAPD_OVER_CHAIN == SLAPD_MOD_STATIC
28 extern int chain_init();
29 #endif
30 #if SLAPD_OVER_DENYOP == SLAPD_MOD_STATIC
31 extern int denyop_init();
32 #endif
33 #if SLAPD_OVER_DYNGROUP == SLAPD_MOD_STATIC
34 extern int dyngroup_init();
35 #endif
36 #if SLAPD_OVER_PROXYCACHE == SLAPD_MOD_STATIC
37 extern int pcache_init();
38 #endif
39 #if SLAPD_OVER_RWM == SLAPD_MOD_STATIC
40 extern int rwm_init();
41 #endif
42
43 static struct {
44         char *name;
45         int (*func)();
46 } funcs[] = {
47 #if SLAPD_OVER_CHAIN == SLAPD_MOD_STATIC
48         { "LDAP Chain Response", chain_init },
49 #endif
50 #if SLAPD_OVER_DENYOP == SLAPD_MOD_STATIC
51         { "Deny Operation", denyop_init },
52 #endif
53 #if SLAPD_OVER_DYNGROUP == SLAPD_MOD_STATIC
54         { "Dynamic Group", dyngroup_init },
55 #endif
56 #if SLAPD_OVER_PROXYCACHE == SLAPD_MOD_STATIC
57         { "Proxy Cache", pcache_init },
58 #endif
59 #if SLAPD_OVER_RWM == SLAPD_MOD_STATIC
60         { "Rewrite/Remap", rwm_init },
61 #endif
62         { NULL, NULL }
63 };
64
65 int
66 overlay_init(void)
67 {
68         int i, rc = 0;
69
70         for ( i=0; funcs[i].name; i++ ) {
71                 rc = funcs[i].func();
72                 if ( rc ) {
73 #ifdef NEW_LOGGING
74                         LDAP_LOG( BACKEND, ERR,
75                 "%s overlay setup failed, err %d\n", funcs[i].name, rc, 0 );
76 #else
77                         Debug( LDAP_DEBUG_ANY,
78                 "%s overlay setup failed, err %d\n", funcs[i].name, rc, 0 );
79 #endif
80                         break;
81                 }
82         }
83         return rc;
84 }