]> git.sur5r.net Git - openldap/blob - servers/slapd/back-monitor/back-monitor.h
happy new year
[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-2007 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 /* define if si_ad_labeledURI is removed from slap_schema */
33 #undef MONITOR_DEFINE_LABELEDURI
34
35 typedef struct monitor_callback_t {
36         int                             (*mc_update)( Operation *op, SlapReply *rs, Entry *e, void *priv );
37                                                 /* update callback
38                                                    for user-defined entries */
39         int                             (*mc_modify)( Operation *op, SlapReply *rs, Entry *e, void *priv );
40                                                 /* modify callback
41                                                    for user-defined entries */
42         int                             (*mc_free)( Entry *e, void **priv );
43                                                 /* delete callback
44                                                    for user-defined entries */
45         void                            (*mc_dispose)( void **priv );
46                                                 /* dispose callback
47                                                    to dispose of the callback
48                                                    private data itself */
49         void                            *mc_private;    /* opaque pointer to
50                                                    private data */
51         struct monitor_callback_t       *mc_next;
52 } monitor_callback_t;
53
54
55 typedef struct monitor_entry_t {
56         ldap_pvt_thread_mutex_t mp_mutex;       /* entry mutex */
57         Entry                   *mp_next;       /* pointer to next sibling */
58         Entry                   *mp_children;   /* pointer to first child */
59         struct monitor_subsys_t *mp_info;       /* subsystem info */
60 #define mp_type         mp_info->mss_type
61         unsigned long           mp_flags;       /* flags */
62
63 #define MONITOR_F_NONE          0x0000U
64 #define MONITOR_F_SUB           0x0001U         /* subentry of subsystem */
65 #define MONITOR_F_PERSISTENT    0x0010U         /* persistent entry */
66 #define MONITOR_F_PERSISTENT_CH 0x0020U         /* subsystem generates 
67                                                    persistent entries */
68 #define MONITOR_F_VOLATILE      0x0040U         /* volatile entry */
69 #define MONITOR_F_VOLATILE_CH   0x0080U         /* subsystem generates 
70                                                    volatile entries */
71 #define MONITOR_F_EXTERNAL      0x0100U         /* externally added - don't free */
72 /* NOTE: flags with 0xF0000000U mask are reserved for subsystem internals */
73
74         struct monitor_callback_t       *mp_cb;         /* callback sequence */
75 } monitor_entry_t;
76
77 typedef struct monitor_info_t {
78
79         /*
80          * Internal data
81          */
82         Avlnode                 *mi_cache;
83         ldap_pvt_thread_mutex_t mi_cache_mutex;
84
85         /*
86          * Config parameters
87          */
88         struct berval           mi_startTime;           /* don't free it! */
89         struct berval           mi_creatorsName;        /* don't free it! */
90         struct berval           mi_ncreatorsName;       /* don't free it! */
91
92         /*
93          * Specific schema entities
94          */
95         ObjectClass             *mi_oc_monitor;
96         ObjectClass             *mi_oc_monitorServer;
97         ObjectClass             *mi_oc_monitorContainer;
98         ObjectClass             *mi_oc_monitorCounterObject;
99         ObjectClass             *mi_oc_monitorOperation;
100         ObjectClass             *mi_oc_monitorConnection;
101         ObjectClass             *mi_oc_managedObject;
102         ObjectClass             *mi_oc_monitoredObject;
103
104         AttributeDescription    *mi_ad_monitoredInfo;
105         AttributeDescription    *mi_ad_managedInfo;
106         AttributeDescription    *mi_ad_monitorCounter;
107         AttributeDescription    *mi_ad_monitorOpCompleted;
108         AttributeDescription    *mi_ad_monitorOpInitiated;
109         AttributeDescription    *mi_ad_monitorConnectionNumber;
110         AttributeDescription    *mi_ad_monitorConnectionAuthzDN;
111         AttributeDescription    *mi_ad_monitorConnectionLocalAddress;
112         AttributeDescription    *mi_ad_monitorConnectionPeerAddress;
113         AttributeDescription    *mi_ad_monitorTimestamp;
114         AttributeDescription    *mi_ad_monitorOverlay;
115         AttributeDescription    *mi_ad_monitorConnectionProtocol;
116         AttributeDescription    *mi_ad_monitorConnectionOpsReceived;
117         AttributeDescription    *mi_ad_monitorConnectionOpsExecuting;
118         AttributeDescription    *mi_ad_monitorConnectionOpsPending;
119         AttributeDescription    *mi_ad_monitorConnectionOpsCompleted;
120         AttributeDescription    *mi_ad_monitorConnectionGet;
121         AttributeDescription    *mi_ad_monitorConnectionRead;
122         AttributeDescription    *mi_ad_monitorConnectionWrite;
123         AttributeDescription    *mi_ad_monitorConnectionMask;
124         AttributeDescription    *mi_ad_monitorConnectionListener;
125         AttributeDescription    *mi_ad_monitorConnectionPeerDomain;
126         AttributeDescription    *mi_ad_monitorConnectionStartTime;
127         AttributeDescription    *mi_ad_monitorConnectionActivityTime;
128         AttributeDescription    *mi_ad_monitorIsShadow;
129         AttributeDescription    *mi_ad_monitorUpdateRef;
130         AttributeDescription    *mi_ad_monitorRuntimeConfig;
131
132         /*
133          * Generic description attribute
134          */
135         AttributeDescription    *mi_ad_readOnly;
136         AttributeDescription    *mi_ad_restrictedOperation;
137
138         void                    *mi_entry_limbo;
139 } monitor_info_t;
140
141 /*
142  * DNs
143  */
144
145 enum {
146         SLAPD_MONITOR_BACKEND = 0,
147         SLAPD_MONITOR_CONN,
148         SLAPD_MONITOR_DATABASE,
149         SLAPD_MONITOR_LISTENER,
150         SLAPD_MONITOR_LOG,
151         SLAPD_MONITOR_OPS,
152         SLAPD_MONITOR_OVERLAY,
153         SLAPD_MONITOR_SASL,
154         SLAPD_MONITOR_SENT,
155         SLAPD_MONITOR_THREAD,
156         SLAPD_MONITOR_TIME,
157         SLAPD_MONITOR_TLS,
158         SLAPD_MONITOR_RWW,
159
160         SLAPD_MONITOR_LAST
161 };
162
163 #define SLAPD_MONITOR_AT                "cn"
164
165 #define SLAPD_MONITOR_BACKEND_NAME      "Backends"
166 #define SLAPD_MONITOR_BACKEND_RDN       \
167         SLAPD_MONITOR_AT "=" SLAPD_MONITOR_BACKEND_NAME
168 #define SLAPD_MONITOR_BACKEND_DN        \
169         SLAPD_MONITOR_BACKEND_RDN "," SLAPD_MONITOR_DN
170
171 #define SLAPD_MONITOR_CONN_NAME         "Connections"
172 #define SLAPD_MONITOR_CONN_RDN  \
173         SLAPD_MONITOR_AT "=" SLAPD_MONITOR_CONN_NAME
174 #define SLAPD_MONITOR_CONN_DN   \
175         SLAPD_MONITOR_CONN_RDN "," SLAPD_MONITOR_DN
176
177 #define SLAPD_MONITOR_DATABASE_NAME     "Databases"
178 #define SLAPD_MONITOR_DATABASE_RDN      \
179         SLAPD_MONITOR_AT "=" SLAPD_MONITOR_DATABASE_NAME
180 #define SLAPD_MONITOR_DATABASE_DN       \
181         SLAPD_MONITOR_DATABASE_RDN "," SLAPD_MONITOR_DN
182
183 #define SLAPD_MONITOR_LISTENER_NAME     "Listeners"
184 #define SLAPD_MONITOR_LISTENER_RDN      \
185         SLAPD_MONITOR_AT "=" SLAPD_MONITOR_LISTENER_NAME
186 #define SLAPD_MONITOR_LISTENER_DN       \
187         SLAPD_MONITOR_LISTENER_RDN "," SLAPD_MONITOR_DN
188
189 #define SLAPD_MONITOR_LOG_NAME          "Log"
190 #define SLAPD_MONITOR_LOG_RDN   \
191         SLAPD_MONITOR_AT "=" SLAPD_MONITOR_LOG_NAME
192 #define SLAPD_MONITOR_LOG_DN    \
193         SLAPD_MONITOR_LOG_RDN "," SLAPD_MONITOR_DN
194
195 #define SLAPD_MONITOR_OPS_NAME          "Operations"
196 #define SLAPD_MONITOR_OPS_RDN   \
197         SLAPD_MONITOR_AT "=" SLAPD_MONITOR_OPS_NAME
198 #define SLAPD_MONITOR_OPS_DN    \
199         SLAPD_MONITOR_OPS_RDN "," SLAPD_MONITOR_DN
200
201 #define SLAPD_MONITOR_OVERLAY_NAME      "Overlays"
202 #define SLAPD_MONITOR_OVERLAY_RDN  \
203         SLAPD_MONITOR_AT "=" SLAPD_MONITOR_OVERLAY_NAME
204 #define SLAPD_MONITOR_OVERLAY_DN   \
205         SLAPD_MONITOR_OVERLAY_RDN "," SLAPD_MONITOR_DN
206
207 #define SLAPD_MONITOR_SASL_NAME         "SASL"
208 #define SLAPD_MONITOR_SASL_RDN  \
209         SLAPD_MONITOR_AT "=" SLAPD_MONITOR_SASL_NAME
210 #define SLAPD_MONITOR_SASL_DN   \
211         SLAPD_MONITOR_SASL_RDN "," SLAPD_MONITOR_DN
212
213 #define SLAPD_MONITOR_SENT_NAME         "Statistics"
214 #define SLAPD_MONITOR_SENT_RDN  \
215         SLAPD_MONITOR_AT "=" SLAPD_MONITOR_SENT_NAME
216 #define SLAPD_MONITOR_SENT_DN   \
217         SLAPD_MONITOR_SENT_RDN "," SLAPD_MONITOR_DN
218
219 #define SLAPD_MONITOR_THREAD_NAME       "Threads"
220 #define SLAPD_MONITOR_THREAD_RDN        \
221         SLAPD_MONITOR_AT "=" SLAPD_MONITOR_THREAD_NAME
222 #define SLAPD_MONITOR_THREAD_DN \
223         SLAPD_MONITOR_THREAD_RDN "," SLAPD_MONITOR_DN
224
225 #define SLAPD_MONITOR_TIME_NAME         "Time"
226 #define SLAPD_MONITOR_TIME_RDN  \
227         SLAPD_MONITOR_AT "=" SLAPD_MONITOR_TIME_NAME
228 #define SLAPD_MONITOR_TIME_DN   \
229         SLAPD_MONITOR_TIME_RDN "," SLAPD_MONITOR_DN
230
231 #define SLAPD_MONITOR_TLS_NAME          "TLS"
232 #define SLAPD_MONITOR_TLS_RDN   \
233         SLAPD_MONITOR_AT "=" SLAPD_MONITOR_TLS_NAME
234 #define SLAPD_MONITOR_TLS_DN    \
235         SLAPD_MONITOR_TLS_RDN "," SLAPD_MONITOR_DN
236
237 #define SLAPD_MONITOR_RWW_NAME          "Waiters"
238 #define SLAPD_MONITOR_RWW_RDN   \
239         SLAPD_MONITOR_AT "=" SLAPD_MONITOR_RWW_NAME
240 #define SLAPD_MONITOR_RWW_DN    \
241         SLAPD_MONITOR_RWW_RDN "," SLAPD_MONITOR_DN
242
243 typedef struct monitor_subsys_t {
244         char            *mss_name;
245         struct berval   mss_rdn;
246         struct berval   mss_dn;
247         struct berval   mss_ndn;
248         struct berval   mss_desc[ 3 ];
249         int             mss_flags;
250 #define MONITOR_F_OPENED        0x10000000U
251
252 #define MONITOR_HAS_VOLATILE_CH( mp ) \
253         ( ( mp )->mp_flags & MONITOR_F_VOLATILE_CH )
254 #define MONITOR_HAS_CHILDREN( mp ) \
255         ( ( mp )->mp_children || MONITOR_HAS_VOLATILE_CH( mp ) )
256
257         /* initialize entry and subentries */
258         int             ( *mss_open )( BackendDB *, struct monitor_subsys_t *ms );
259         /* destroy structure */
260         int             ( *mss_destroy )( BackendDB *, struct monitor_subsys_t *ms );
261         /* update existing dynamic entry and subentries */
262         int             ( *mss_update )( Operation *, SlapReply *, Entry * );
263         /* create new dynamic subentries */
264         int             ( *mss_create )( Operation *, SlapReply *,
265                                 struct berval *ndn, Entry *, Entry ** );
266         /* modify entry and subentries */
267         int             ( *mss_modify )( Operation *, SlapReply *, Entry * );
268 } monitor_subsys_t;
269
270 extern BackendDB *be_monitor;
271
272 /* increase this bufsize if entries in string form get too big */
273 #define BACKMONITOR_BUFSIZE     8192
274
275 typedef int (monitor_cbfunc)( struct berval *ndn, monitor_callback_t *cb,
276         struct berval *base, int scope, struct berval *filter );
277
278 typedef int (monitor_cbafunc)( struct berval *ndn, Attribute *a,
279         monitor_callback_t *cb,
280         struct berval *base, int scope, struct berval *filter );
281
282 typedef struct monitor_extra_t {
283         int (*is_configured)(void);
284         monitor_subsys_t * (*get_subsys)( const char *name );
285         monitor_subsys_t * (*get_subsys_by_dn)( struct berval *ndn, int sub );
286
287         int (*register_subsys)( monitor_subsys_t *ms );
288         int (*register_entry)( Entry *e, monitor_callback_t *cb,
289                 monitor_subsys_t *ms, unsigned long flags );
290         int (*register_entry_parent)( Entry *e, monitor_callback_t *cb,
291                 monitor_subsys_t *ms, unsigned long flags,
292                 struct berval *base, int scope, struct berval *filter );
293         monitor_cbafunc *register_entry_attrs;
294         monitor_cbfunc *register_entry_callback;
295
296         int (*unregister_entry)( struct berval *ndn );
297         monitor_cbfunc *unregister_entry_parent;
298         monitor_cbafunc *unregister_entry_attrs;
299         monitor_cbfunc *unregister_entry_callback;
300 } monitor_extra_t;
301
302 LDAP_END_DECL
303
304 #include "proto-back-monitor.h"
305
306 #endif /* _back_monitor_h_ */
307