]> git.sur5r.net Git - openldap/blob - servers/slapd/overlays/overlays.c
allow backwards compatibility for 'T' option (single char)
[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_LASTMOD == SLAPD_MOD_STATIC
37 extern int lastmod_init();
38 #endif
39 #if SLAPD_OVER_PROXYCACHE == SLAPD_MOD_STATIC
40 extern int pcache_init();
41 #endif
42 #if SLAPD_OVER_RWM == SLAPD_MOD_STATIC
43 extern int rwm_init();
44 #endif
45
46 static struct {
47         char *name;
48         int (*func)();
49 } funcs[] = {
50 #if SLAPD_OVER_CHAIN == SLAPD_MOD_STATIC
51         { "LDAP Chain Response", chain_init },
52 #endif
53 #if SLAPD_OVER_DENYOP == SLAPD_MOD_STATIC
54         { "Deny Operation", denyop_init },
55 #endif
56 #if SLAPD_OVER_DYNGROUP == SLAPD_MOD_STATIC
57         { "Dynamic Group", dyngroup_init },
58 #endif
59 #if SLAPD_OVER_LASTMOD == SLAPD_MOD_STATIC
60         { "Last Modification", lastmod_init },
61 #endif
62 #if SLAPD_OVER_PROXYCACHE == SLAPD_MOD_STATIC
63         { "Proxy Cache", pcache_init },
64 #endif
65 #if SLAPD_OVER_RWM == SLAPD_MOD_STATIC
66         { "Rewrite/Remap", rwm_init },
67 #endif
68         { NULL, NULL }
69 };
70
71 int
72 overlay_init(void)
73 {
74         int i, rc = 0;
75
76         for ( i=0; funcs[i].name; i++ ) {
77                 rc = funcs[i].func();
78                 if ( rc ) {
79 #ifdef NEW_LOGGING
80                         LDAP_LOG( BACKEND, ERR,
81                 "%s overlay setup failed, err %d\n", funcs[i].name, rc, 0 );
82 #else
83                         Debug( LDAP_DEBUG_ANY,
84                 "%s overlay setup failed, err %d\n", funcs[i].name, rc, 0 );
85 #endif
86                         break;
87                 }
88         }
89         return rc;
90 }