]> git.sur5r.net Git - openldap/blob - servers/slapd/back-monitor/operation.c
Changed struct berval ** to BVarray
[openldap] / servers / slapd / back-monitor / operation.c
1 /* operation.c - deal with operation subsystem */
2 /*
3  * Copyright 1998-2000 The OpenLDAP Foundation, All Rights Reserved.
4  * COPYING RESTRICTIONS APPLY, see COPYRIGHT file
5  */
6 /*
7  * Copyright 2001 The OpenLDAP Foundation, All Rights Reserved.
8  * COPYING RESTRICTIONS APPLY, see COPYRIGHT file
9  * 
10  * Copyright 2001, Pierangelo Masarati, All rights reserved. <ando@sys-net.it>
11  * 
12  * This work has beed deveolped for the OpenLDAP Foundation 
13  * in the hope that it may be useful to the Open Source community, 
14  * but WITHOUT ANY WARRANTY.
15  * 
16  * Permission is granted to anyone to use this software for any purpose
17  * on any computer system, and to alter it and redistribute it, subject
18  * to the following restrictions:
19  * 
20  * 1. The author and SysNet s.n.c. are not responsible for the consequences
21  *    of use of this software, no matter how awful, even if they arise from
22  *    flaws in it.
23  * 
24  * 2. The origin of this software must not be misrepresented, either by
25  *    explicit claim or by omission.  Since few users ever read sources,
26  *    credits should appear in the documentation.
27  * 
28  * 3. Altered versions must be plainly marked as such, and must not be
29  *    misrepresented as being the original software.  Since few users
30  *    ever read sources, credits should appear in the documentation.
31  *    SysNet s.n.c. cannot be responsible for the consequences of the
32  *    alterations.
33  * 
34  * 4. This notice may not be removed or altered.
35  */
36
37 #include "portable.h"
38
39 #include <stdio.h>
40
41 #include "slap.h"
42 #include "back-monitor.h"
43
44 int
45 monitor_subsys_ops_init(
46         BackendDB               *be
47 )
48 {
49         struct monitorinfo      *mi;
50         
51         Entry                   *e, *e_tmp, *e_op;
52         struct monitorentrypriv *mp;
53         char                    buf[1024];
54         struct berval           bv[2];
55
56         assert( be != NULL );
57
58         mi = ( struct monitorinfo * )be->be_private;
59
60         if ( monitor_cache_get( mi,
61                         monitor_subsys[SLAPD_MONITOR_OPS].mss_ndn, &e_op ) ) {
62 #ifdef NEW_LOGGING
63                 LDAP_LOG(( "operation", LDAP_LEVEL_CRIT,
64                         "monitor_subsys_ops_init: "
65                         "unable to get entry '%s'\n",
66                         monitor_subsys[SLAPD_MONITOR_OPS].mss_ndn->bv_val ));
67 #else
68                 Debug( LDAP_DEBUG_ANY,
69                         "monitor_subsys_ops_init: "
70                         "unable to get entry '%s'\n%s%s",
71                         monitor_subsys[SLAPD_MONITOR_OPS].mss_ndn->bv_val, 
72                         "", "" );
73 #endif
74                 return( -1 );
75         }
76
77         e_tmp = NULL;
78
79         /*
80          * Initiated ops
81          */
82         snprintf( buf, sizeof( buf ),
83                         "dn: cn=Initiated,%s\n"
84                         "objectClass: top\n"
85                         "objectClass: LDAPsubEntry\n"
86 #ifdef SLAPD_MONITORSUBENTRY
87                         "objectClass: monitorSubEntry\n"
88 #else /* !SLAPD_MONITORSUBENTRY */
89                         "objectClass: extensibleObject\n"
90 #endif /* !SLAPD_MONITORSUBENTRY */
91                         "cn: Initiated\n",
92                         monitor_subsys[SLAPD_MONITOR_OPS].mss_dn->bv_val );
93
94         e = str2entry( buf );
95         if ( e == NULL ) {
96 #ifdef NEW_LOGGING
97                 LDAP_LOG(( "operation", LDAP_LEVEL_CRIT,
98                         "monitor_subsys_ops_init: "
99                         "unable to create entry 'cn=Initiated,%s'\n",
100                         monitor_subsys[SLAPD_MONITOR_OPS].mss_ndn->bv_val ));
101 #else
102                 Debug( LDAP_DEBUG_ANY,
103                         "monitor_subsys_ops_init: "
104                         "unable to create entry 'cn=Initiated,%s'\n%s%s",
105                         monitor_subsys[SLAPD_MONITOR_OPS].mss_ndn->bv_val,
106                         "", "" );
107 #endif
108                 return( -1 );
109         }
110         
111         bv[1].bv_val = NULL;
112         bv[0].bv_val = "0";
113         bv[0].bv_len = 1;
114         attr_merge( e, monitor_ad_desc, bv );
115         
116         mp = ( struct monitorentrypriv * )ch_calloc( sizeof( struct monitorentrypriv ), 1 );
117         e->e_private = ( void * )mp;
118         mp->mp_next = e_tmp;
119         mp->mp_children = NULL;
120         mp->mp_info = &monitor_subsys[SLAPD_MONITOR_OPS];
121         mp->mp_flags = monitor_subsys[SLAPD_MONITOR_OPS].mss_flags \
122                 | MONITOR_F_SUB | MONITOR_F_PERSISTENT;
123
124         if ( monitor_cache_add( mi, e ) ) {
125 #ifdef NEW_LOGGING
126                 LDAP_LOG(( "operation", LDAP_LEVEL_CRIT,
127                         "monitor_subsys_ops_init: "
128                         "unable to add entry 'cn=Initiated,%s'\n",
129                         monitor_subsys[SLAPD_MONITOR_OPS].mss_ndn->bv_val ));
130 #else
131                 Debug( LDAP_DEBUG_ANY,
132                         "monitor_subsys_ops_init: "
133                         "unable to add entry 'cn=Initiated,%s'\n%s%s",
134                         monitor_subsys[SLAPD_MONITOR_OPS].mss_ndn->bv_val,
135                         "", "" );
136 #endif
137                 return( -1 );
138         }
139         
140         e_tmp = e;
141
142         /*
143          * Completed ops
144          */
145         snprintf( buf, sizeof( buf ),
146                         "dn: cn=Completed,%s\n"
147                         "objectClass: top\n"
148                         "objectClass: LDAPsubEntry\n"
149 #ifdef SLAPD_MONITORSUBENTRY
150                         "objectClass: monitorSubEntry\n"
151 #else /* !SLAPD_MONITORSUBENTRY */
152                         "objectClass: extensibleObject\n"
153 #endif /* !SLAPD_MONITORSUBENTRY */
154                         "cn: Completed\n",
155                         monitor_subsys[SLAPD_MONITOR_OPS].mss_dn->bv_val );
156
157         e = str2entry( buf );
158         if ( e == NULL ) {
159 #ifdef NEW_LOGGING
160                 LDAP_LOG(( "operation", LDAP_LEVEL_CRIT,
161                         "monitor_subsys_ops_init: "
162                         "unable to create entry 'cn=Completed,%s'\n",
163                         monitor_subsys[SLAPD_MONITOR_OPS].mss_ndn->bv_val ));
164 #else
165                 Debug( LDAP_DEBUG_ANY,
166                         "monitor_subsys_ops_init: "
167                         "unable to create entry 'cn=Completed,%s'\n%s%s",
168                         monitor_subsys[SLAPD_MONITOR_OPS].mss_ndn->bv_val,
169                         "", "" );
170 #endif
171                 return( -1 );
172         }
173
174         bv[0].bv_val = "0";
175         bv[0].bv_len = 1;
176         attr_merge( e, monitor_ad_desc, bv );
177         
178         mp = ( struct monitorentrypriv * )ch_calloc( sizeof( struct monitorentrypriv ), 1 );
179         e->e_private = ( void * )mp;
180         mp->mp_next = e_tmp;
181         mp->mp_children = NULL;
182         mp->mp_info = &monitor_subsys[SLAPD_MONITOR_OPS];
183         mp->mp_flags = monitor_subsys[SLAPD_MONITOR_OPS].mss_flags \
184                 | MONITOR_F_SUB | MONITOR_F_PERSISTENT;
185
186         if ( monitor_cache_add( mi, e ) ) {
187 #ifdef NEW_LOGGING
188                 LDAP_LOG(( "operation", LDAP_LEVEL_CRIT,
189                         "monitor_subsys_ops_init: "
190                         "unable to add entry 'cn=Completed,%s'\n",
191                         monitor_subsys[SLAPD_MONITOR_OPS].mss_ndn->bv_val ));
192 #else
193                 Debug( LDAP_DEBUG_ANY,
194                         "monitor_subsys_ops_init: "
195                         "unable to add entry 'cn=Completed,%s'\n%s%s",
196                         monitor_subsys[SLAPD_MONITOR_OPS].mss_ndn->bv_val,
197                         "", "" );
198 #endif
199                 return( -1 );
200         }
201         
202         e_tmp = e;
203
204         mp = ( struct monitorentrypriv * )e_op->e_private;
205         mp->mp_children = e_tmp;
206
207         monitor_cache_release( mi, e_op );
208
209         return( 0 );
210 }
211
212 int
213 monitor_subsys_ops_update(
214         struct monitorinfo      *mi,
215         Entry                   *e
216 )
217 {
218         long            n = -1;
219
220         assert( mi );
221         assert( e );
222         
223         if ( strncasecmp( e->e_ndn, "CN=INITIATED", 
224                                 sizeof("CN=INITIATED")-1 ) == 0 ) {
225                 ldap_pvt_thread_mutex_lock(&num_ops_mutex);
226                 n = num_ops_initiated;
227                 ldap_pvt_thread_mutex_unlock(&num_ops_mutex);
228
229         } else if ( strncasecmp( e->e_ndn, "CN=COMPLETED", 
230                                 sizeof("CN=COMPLETED")-1 ) == 0 ) {
231                 ldap_pvt_thread_mutex_lock(&num_ops_mutex);
232                 n = num_ops_completed;
233                 ldap_pvt_thread_mutex_unlock(&num_ops_mutex);
234         }
235
236         if ( n != -1 ) {
237                 Attribute       *a;
238                 char            buf[16];
239
240                 a = attr_find( e->e_attrs, monitor_ad_desc );
241                 if ( a == NULL ) {
242                         return( -1 );
243                 }
244
245                 snprintf( buf, sizeof( buf ), "%ld", n );
246                 free( a->a_vals[ 0 ].bv_val );
247                 ber_str2bv( buf, 0, 1, a->a_vals );
248         }
249
250         return( 0 );
251 }
252