]> git.sur5r.net Git - openldap/blob - servers/slapd/back-monitor/back-monitor.h
Added readOnly attribute, can be toggled on individual databases.
[openldap] / servers / slapd / back-monitor / back-monitor.h
1 /* back-monitor.h - ldap monitor back-end header file */
2 /* $OpenLDAP$ */
3 /* This work is part of OpenLDAP Software <http://www.openldap.org/>.
4  *
5  * Copyright 2001-2004 The OpenLDAP Foundation.
6  * Portions Copyright 2001-2003 Pierangelo Masarati.
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 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 Pierangelo Masarati for inclusion
19  * in OpenLDAP Software.
20  */
21
22 #ifndef _BACK_MONITOR_H_
23 #define _BACK_MONITOR_H_
24
25 #include <ldap_pvt.h>
26 #include <ldap_pvt_thread.h>
27 #include <avl.h>
28 #include <slap.h>
29
30 LDAP_BEGIN_DECL
31
32 /*
33  * The cache maps DNs to Entries.
34  * Each entry, on turn, holds the list of its children in the e_private field.
35  * This is used by search operation to perform onelevel and subtree candidate
36  * selection.
37  */
38 struct monitorcache {
39         struct berval           mc_ndn;
40         Entry                   *mc_e;
41 };
42
43 struct monitorentrypriv {
44         ldap_pvt_thread_mutex_t mp_mutex;       /* entry mutex */
45         Entry                   *mp_next;       /* pointer to next sibling */
46         Entry                   *mp_children;   /* pointer to first child */
47         struct monitorsubsys    *mp_info;       /* subsystem info */
48 #define mp_type         mp_info->mss_type
49         int                     mp_flags;       /* flags */
50
51 #define MONITOR_F_NONE          0x00
52 #define MONITOR_F_SUB           0x01            /* subentry of subsystem */
53 #define MONITOR_F_PERSISTENT    0x10            /* persistent entry */
54 #define MONITOR_F_PERSISTENT_CH 0x20            /* subsystem generates 
55                                                    persistent entries */
56 #define MONITOR_F_VOLATILE      0x40            /* volatile entry */
57 #define MONITOR_F_VOLATILE_CH   0x80            /* subsystem generates 
58                                                    volatile entries */
59 };
60
61 struct monitorinfo {
62
63         /*
64          * Internal data
65          */
66         Avlnode                 *mi_cache;
67         ldap_pvt_thread_mutex_t mi_cache_mutex;
68
69         /*
70          * Config parameters
71          */
72         struct berval           mi_l;
73         struct berval           mi_startTime;   /* don't free it */
74
75         /*
76          * Specific schema entities
77          */
78         ObjectClass *mi_oc_monitor;
79         ObjectClass *mi_oc_monitorServer;
80         ObjectClass *mi_oc_monitorContainer;
81         ObjectClass *mi_oc_monitorCounterObject;
82         ObjectClass *mi_oc_monitorOperation;
83         ObjectClass *mi_oc_monitorConnection;
84         ObjectClass *mi_oc_managedObject;
85         ObjectClass *mi_oc_monitoredObject;
86
87         AttributeDescription *mi_ad_monitoredInfo;
88         AttributeDescription *mi_ad_managedInfo;
89         AttributeDescription *mi_ad_monitorCounter;
90         AttributeDescription *mi_ad_monitorOpCompleted;
91         AttributeDescription *mi_ad_monitorOpInitiated;
92         AttributeDescription *mi_ad_monitorConnectionNumber;
93         AttributeDescription *mi_ad_monitorConnectionAuthzDN;
94         AttributeDescription *mi_ad_monitorConnectionLocalAddress;
95         AttributeDescription *mi_ad_monitorConnectionPeerAddress;
96         AttributeDescription *mi_ad_monitorTimestamp;
97         AttributeDescription *mi_ad_monitorOverlay;
98
99         /*
100          * Generic description attribute
101          */
102         AttributeDescription *mi_ad_description;
103         AttributeDescription *mi_ad_seeAlso;
104         AttributeDescription *mi_ad_l;
105         AttributeDescription *mi_ad_labeledURI;
106         AttributeDescription *mi_ad_readOnly;
107 };
108
109 /*
110  * DNs
111  */
112
113 #define SLAPD_MONITOR_AT                "cn"
114
115 #define SLAPD_MONITOR_LISTENER          0
116 #define SLAPD_MONITOR_LISTENER_NAME     "Listeners"
117 #define SLAPD_MONITOR_LISTENER_RDN      \
118         SLAPD_MONITOR_AT "=" SLAPD_MONITOR_LISTENER_NAME
119 #define SLAPD_MONITOR_LISTENER_DN       \
120         SLAPD_MONITOR_LISTENER_RDN "," SLAPD_MONITOR_DN
121
122 #define SLAPD_MONITOR_DATABASE          1
123 #define SLAPD_MONITOR_DATABASE_NAME     "Databases"
124 #define SLAPD_MONITOR_DATABASE_RDN      \
125         SLAPD_MONITOR_AT "=" SLAPD_MONITOR_DATABASE_NAME
126 #define SLAPD_MONITOR_DATABASE_DN       \
127         SLAPD_MONITOR_DATABASE_RDN "," SLAPD_MONITOR_DN
128
129 #define SLAPD_MONITOR_BACKEND           2
130 #define SLAPD_MONITOR_BACKEND_NAME      "Backends"
131 #define SLAPD_MONITOR_BACKEND_RDN       \
132         SLAPD_MONITOR_AT "=" SLAPD_MONITOR_BACKEND_NAME
133 #define SLAPD_MONITOR_BACKEND_DN        \
134         SLAPD_MONITOR_BACKEND_RDN "," SLAPD_MONITOR_DN
135
136 #define SLAPD_MONITOR_THREAD            3
137 #define SLAPD_MONITOR_THREAD_NAME       "Threads"
138 #define SLAPD_MONITOR_THREAD_RDN        \
139         SLAPD_MONITOR_AT "=" SLAPD_MONITOR_THREAD_NAME
140 #define SLAPD_MONITOR_THREAD_DN \
141         SLAPD_MONITOR_THREAD_RDN "," SLAPD_MONITOR_DN
142
143 #define SLAPD_MONITOR_SASL              4
144 #define SLAPD_MONITOR_SASL_NAME         "SASL"
145 #define SLAPD_MONITOR_SASL_RDN  \
146         SLAPD_MONITOR_AT "=" SLAPD_MONITOR_SASL_NAME
147 #define SLAPD_MONITOR_SASL_DN   \
148         SLAPD_MONITOR_SASL_RDN "," SLAPD_MONITOR_DN
149
150 #define SLAPD_MONITOR_TLS               5
151 #define SLAPD_MONITOR_TLS_NAME          "TLS"
152 #define SLAPD_MONITOR_TLS_RDN   \
153         SLAPD_MONITOR_AT "=" SLAPD_MONITOR_TLS_NAME
154 #define SLAPD_MONITOR_TLS_DN    \
155         SLAPD_MONITOR_TLS_RDN "," SLAPD_MONITOR_DN
156
157 #define SLAPD_MONITOR_CONN              6
158 #define SLAPD_MONITOR_CONN_NAME         "Connections"
159 #define SLAPD_MONITOR_CONN_RDN  \
160         SLAPD_MONITOR_AT "=" SLAPD_MONITOR_CONN_NAME
161 #define SLAPD_MONITOR_CONN_DN   \
162         SLAPD_MONITOR_CONN_RDN "," SLAPD_MONITOR_DN
163
164 #define SLAPD_MONITOR_RWW               7
165 #define SLAPD_MONITOR_RWW_NAME  "Waiters"
166 #define SLAPD_MONITOR_RWW_RDN   \
167         SLAPD_MONITOR_AT "=" SLAPD_MONITOR_RWW_NAME
168 #define SLAPD_MONITOR_RWW_DN    \
169         SLAPD_MONITOR_RWW_RDN "," SLAPD_MONITOR_DN
170
171 #define SLAPD_MONITOR_LOG               8
172 #define SLAPD_MONITOR_LOG_NAME          "Log"
173 #define SLAPD_MONITOR_LOG_RDN   \
174         SLAPD_MONITOR_AT "=" SLAPD_MONITOR_LOG_NAME
175 #define SLAPD_MONITOR_LOG_DN    \
176         SLAPD_MONITOR_LOG_RDN "," SLAPD_MONITOR_DN
177
178 #define SLAPD_MONITOR_OPS               9
179 #define SLAPD_MONITOR_OPS_NAME          "Operations"
180 #define SLAPD_MONITOR_OPS_RDN   \
181         SLAPD_MONITOR_AT "=" SLAPD_MONITOR_OPS_NAME
182 #define SLAPD_MONITOR_OPS_DN    \
183         SLAPD_MONITOR_OPS_RDN "," SLAPD_MONITOR_DN
184
185 #define SLAPD_MONITOR_SENT              10
186 #define SLAPD_MONITOR_SENT_NAME         "Statistics"
187 #define SLAPD_MONITOR_SENT_RDN  \
188         SLAPD_MONITOR_AT "=" SLAPD_MONITOR_SENT_NAME
189 #define SLAPD_MONITOR_SENT_DN   \
190         SLAPD_MONITOR_SENT_RDN "," SLAPD_MONITOR_DN
191
192 #define SLAPD_MONITOR_TIME              11
193 #define SLAPD_MONITOR_TIME_NAME         "Time"
194 #define SLAPD_MONITOR_TIME_RDN  \
195         SLAPD_MONITOR_AT "=" SLAPD_MONITOR_TIME_NAME
196 #define SLAPD_MONITOR_TIME_DN   \
197         SLAPD_MONITOR_TIME_RDN "," SLAPD_MONITOR_DN
198
199 #define SLAPD_MONITOR_OVERLAY           12
200 #define SLAPD_MONITOR_OVERLAY_NAME              "Overlay"
201 #define SLAPD_MONITOR_OVERLAY_RDN  \
202         SLAPD_MONITOR_AT "=" SLAPD_MONITOR_OVERLAY_NAME
203 #define SLAPD_MONITOR_OVERLAY_DN   \
204         SLAPD_MONITOR_OVERLAY_RDN "," SLAPD_MONITOR_DN
205
206 struct monitorsubsys {
207         int             mss_type;
208         char            *mss_name;
209         struct berval   mss_rdn;
210         struct berval   mss_dn;
211         struct berval   mss_ndn;
212         int             mss_flags;
213
214 #define MONITOR_HAS_VOLATILE_CH( mp ) \
215         ( ( mp )->mp_flags & MONITOR_F_VOLATILE_CH )
216 #define MONITOR_HAS_CHILDREN( mp ) \
217         ( ( mp )->mp_children || MONITOR_HAS_VOLATILE_CH( mp ) )
218
219         /* initialize entry and subentries */
220         int             ( *mss_init )( BackendDB * );
221         /* update existing dynamic entry and subentries */
222         int             ( *mss_update )( Operation *, Entry * );
223         /* create new dynamic subentries */
224         int             ( *mss_create )( Operation *,
225                                 struct berval *ndn, Entry *, Entry ** );
226         /* modify entry and subentries */
227         int             ( *mss_modify )( Operation *, Entry * );
228 };
229
230 extern struct monitorsubsys monitor_subsys[];
231
232 extern BackendDB *be_monitor;
233
234 /* increase this bufsize if entries in string form get too big */
235 #define BACKMONITOR_BUFSIZE     1024
236
237 /*
238  * cache
239  */
240
241 extern int monitor_cache_cmp LDAP_P(( const void *c1, const void *c2 ));
242 extern int monitor_cache_dup LDAP_P(( void *c1, void *c2 ));
243 extern int monitor_cache_add LDAP_P(( struct monitorinfo *mi, Entry *e ));
244 extern int monitor_cache_get LDAP_P(( struct monitorinfo *mi, struct berval *ndn, Entry **ep ));
245 extern int monitor_cache_dn2entry LDAP_P(( Operation *op, struct berval *ndn, Entry **ep, Entry **matched ));
246 extern int monitor_cache_lock LDAP_P(( Entry *e ));
247 extern int monitor_cache_release LDAP_P(( struct monitorinfo *mi, Entry *e ));
248
249 /*
250  * update
251  */
252
253 extern int monitor_entry_update LDAP_P(( Operation *op, Entry *e ));
254 extern int monitor_entry_create LDAP_P(( Operation *op, struct berval *ndn,
255                 Entry *e_parent, Entry **ep ));
256 extern int monitor_entry_modify LDAP_P(( Operation *op, Entry *e ));
257
258 LDAP_END_DECL
259
260 #include "proto-back-monitor.h"
261
262 #endif /* _back_monitor_h_ */
263