]> git.sur5r.net Git - openldap/blob - servers/slapd/back-bdb/monitor.c
apply Howard's cleanup of database monitoring registration
[openldap] / servers / slapd / back-bdb / monitor.c
1 /* monitor.c - monitor bdb backend */
2 /* $OpenLDAP$ */
3 /* This work is part of OpenLDAP Software <http://www.openldap.org/>.
4  *
5  * Copyright 2000-2007 The OpenLDAP Foundation.
6  * All rights reserved.
7  *
8  * Redistribution and use in source and binary forms, with or without
9  * modification, are permitted only as authorized by the OpenLDAP
10  * Public License.
11  *
12  * A copy of this license is available in the file LICENSE in the
13  * top-level directory of the distribution or, alternatively, at
14  * <http://www.OpenLDAP.org/license.html>.
15  */
16
17 #include "portable.h"
18
19 #include <stdio.h>
20 #include <ac/string.h>
21 #include <ac/unistd.h>
22 #include <ac/stdlib.h>
23 #include <ac/errno.h>
24 #include <sys/stat.h>
25 #include "lutil.h"
26 #include "back-bdb.h"
27
28 #include "../back-monitor/back-monitor.h"
29
30 #include "config.h"
31
32 static ObjectClass              *oc_olmBDBDatabase;
33
34 static AttributeDescription     *ad_olmBDBEntryCache,
35         *ad_olmBDBDNCache, *ad_olmBDBIDLCache,
36         *ad_olmDbDirectory;
37
38 #ifdef BDB_MONITOR_IDX
39 static int
40 bdb_monitor_idx_entry_add(
41         struct bdb_info *bdb,
42         Entry           *e );
43
44 static AttributeDescription     *ad_olmBDBNotIndexed;
45 #endif /* BDB_MONITOR_IDX */
46
47 /*
48  * NOTE: there's some confusion in monitor OID arc;
49  * by now, let's consider:
50  * 
51  * Subsystems monitor attributes        1.3.6.1.4.1.4203.666.1.55.0
52  * Databases monitor attributes         1.3.6.1.4.1.4203.666.1.55.0.1
53  * BDB database monitor attributes      1.3.6.1.4.1.4203.666.1.55.0.1.1
54  *
55  * Subsystems monitor objectclasses     1.3.6.1.4.1.4203.666.3.16.0
56  * Databases monitor objectclasses      1.3.6.1.4.1.4203.666.3.16.0.1
57  * BDB database monitor objectclasses   1.3.6.1.4.1.4203.666.3.16.0.1.1
58  */
59
60 static struct {
61         char                    *name;
62         char                    *oid;
63 }               s_oid[] = {
64         { "olmBDBAttributes",                   "olmDatabaseAttributes:1" },
65         { "olmBDBObjectClasses",                "olmDatabaseObjectClasses:1" },
66
67         { NULL }
68 };
69
70 static struct {
71         char                    *desc;
72         AttributeDescription    **ad;
73 }               s_at[] = {
74         { "( olmBDBAttributes:1 "
75                 "NAME ( 'olmBDBEntryCache' ) "
76                 "DESC 'Number of items in Entry Cache' "
77                 "SUP monitorCounter "
78                 "NO-USER-MODIFICATION "
79                 "USAGE dSAOperation )",
80                 &ad_olmBDBEntryCache },
81
82         { "( olmBDBAttributes:2 "
83                 "NAME ( 'olmBDBDNCache' ) "
84                 "DESC 'Number of items in DN Cache' "
85                 "SUP monitorCounter "
86                 "NO-USER-MODIFICATION "
87                 "USAGE dSAOperation )",
88                 &ad_olmBDBDNCache },
89
90         { "( olmBDBAttributes:3 "
91                 "NAME ( 'olmBDBIDLCache' ) "
92                 "DESC 'Number of items in IDL Cache' "
93                 "SUP monitorCounter "
94                 "NO-USER-MODIFICATION "
95                 "USAGE dSAOperation )",
96                 &ad_olmBDBIDLCache },
97
98         { "( olmBDBAttributes:4 "
99                 "NAME ( 'olmDbDirectory' ) "
100                 "DESC 'Path name of the directory "
101                         "where the database environment resides' "
102                 "SUP monitoredInfo "
103                 "NO-USER-MODIFICATION "
104                 "USAGE dSAOperation )",
105                 &ad_olmDbDirectory },
106
107 #ifdef BDB_MONITOR_IDX
108         { "( olmBDBAttributes:5 "
109                 "NAME ( 'olmBDBNotIndexed' ) "
110                 "DESC 'Missing indexes resulting from candidate selection' "
111                 "SUP monitoredInfo "
112                 "NO-USER-MODIFICATION "
113                 "USAGE dSAOperation )",
114                 &ad_olmBDBNotIndexed },
115 #endif /* BDB_MONITOR_IDX */
116
117         { NULL }
118 };
119
120 static struct {
121         char            *desc;
122         ObjectClass     **oc;
123 }               s_oc[] = {
124         /* augments an existing object, so it must be AUXILIARY
125          * FIXME: derive from some ABSTRACT "monitoredEntity"? */
126         { "( olmBDBObjectClasses:1 "
127                 "NAME ( 'olmBDBDatabase' ) "
128                 "SUP top AUXILIARY "
129                 "MAY ( "
130                         "olmBDBEntryCache "
131                         "$ olmBDBDNCache "
132                         "$ olmBDBIDLCache "
133                         "$ olmDbDirectory "
134 #ifdef BDB_MONITOR_IDX
135                         "$ olmBDBNotIndexed "
136 #endif /* BDB_MONITOR_IDX */
137                         ") )",
138                 &oc_olmBDBDatabase },
139
140         { NULL }
141 };
142
143 static int
144 bdb_monitor_update(
145         Operation       *op,
146         SlapReply       *rs,
147         Entry           *e,
148         void            *priv )
149 {
150         struct bdb_info         *bdb = (struct bdb_info *) priv;
151         Attribute               *a;
152
153         char                    buf[ BUFSIZ ];
154         struct berval           bv;
155
156         assert( ad_olmBDBEntryCache != NULL );
157
158         a = attr_find( e->e_attrs, ad_olmBDBEntryCache );
159         assert( a != NULL );
160         bv.bv_val = buf;
161         bv.bv_len = snprintf( buf, sizeof( buf ), "%d", bdb->bi_cache.c_cursize );
162         ber_bvreplace( &a->a_vals[ 0 ], &bv );
163
164         a = attr_find( e->e_attrs, ad_olmBDBDNCache );
165         assert( a != NULL );
166         bv.bv_len = snprintf( buf, sizeof( buf ), "%d", bdb->bi_cache.c_eiused );
167         ber_bvreplace( &a->a_vals[ 0 ], &bv );
168
169         a = attr_find( e->e_attrs, ad_olmBDBIDLCache );
170         assert( a != NULL );
171         bv.bv_len = snprintf( buf, sizeof( buf ), "%d", bdb->bi_idl_cache_size );
172         ber_bvreplace( &a->a_vals[ 0 ], &bv );
173         
174 #ifdef BDB_MONITOR_IDX
175         bdb_monitor_idx_entry_add( bdb, e );
176 #endif /* BDB_MONITOR_IDX */
177
178         return SLAP_CB_CONTINUE;
179 }
180
181 #if 0   /* uncomment if required */
182 static int
183 bdb_monitor_modify(
184         Operation       *op,
185         SlapReply       *rs,
186         Entry           *e,
187         void            *priv )
188 {
189         return SLAP_CB_CONTINUE;
190 }
191 #endif
192
193 static int
194 bdb_monitor_free(
195         Entry           *e,
196         void            **priv )
197 {
198         struct berval   values[ 2 ];
199         Modification    mod = { 0 };
200
201         const char      *text;
202         char            textbuf[ SLAP_TEXT_BUFLEN ];
203
204         int             i, rc;
205
206         /* NOTE: if slap_shutdown != 0, priv might have already been freed */
207         *priv = NULL;
208
209         /* Remove objectClass */
210         mod.sm_op = LDAP_MOD_DELETE;
211         mod.sm_desc = slap_schema.si_ad_objectClass;
212         mod.sm_values = values;
213         values[ 0 ] = oc_olmBDBDatabase->soc_cname;
214         BER_BVZERO( &values[ 1 ] );
215
216         rc = modify_delete_values( e, &mod, 1, &text,
217                 textbuf, sizeof( textbuf ) );
218         /* don't care too much about return code... */
219
220         /* remove attrs */
221         for ( i = 0; s_at[ i ].desc != NULL; i++ ) {
222                 mod.sm_desc = *s_at[ i ].ad;
223                 mod.sm_values = NULL;
224                 rc = modify_delete_values( e, &mod, 1, &text,
225                         textbuf, sizeof( textbuf ) );
226                 /* don't care too much about return code... */
227         }
228         
229         return SLAP_CB_CONTINUE;
230 }
231
232 #define bdb_monitor_initialize  BDB_SYMBOL(monitor_initialize)
233
234 /*
235  * call from within bdb_initialize()
236  */
237 static int
238 bdb_monitor_initialize( void )
239 {
240         int             i, code;
241         ConfigArgs c;
242         char    *argv[ 3 ];
243
244         static int      bdb_monitor_initialized = 0;
245
246         if ( backend_info( "monitor" ) == NULL ) {
247                 return -1;
248         }
249
250         if ( bdb_monitor_initialized++ ) {
251                 return 0;
252         }
253
254         /* register schema here */
255
256         argv[ 0 ] = "back-bdb/back-hdb monitor";
257         c.argv = argv;
258         c.argc = 3;
259         c.fname = argv[0];
260
261         for ( i = 0; s_oid[ i ].name; i++ ) {
262                 c.lineno = i;
263                 argv[ 1 ] = s_oid[ i ].name;
264                 argv[ 2 ] = s_oid[ i ].oid;
265
266                 if ( parse_oidm( &c, 0, NULL ) != 0 ) {
267                         Debug( LDAP_DEBUG_ANY,
268                                 "bdb_monitor_initialize: unable to add "
269                                 "objectIdentifier \"%s=%s\"\n",
270                                 s_oid[ i ].name, s_oid[ i ].oid, 0 );
271                         return 1;
272                 }
273         }
274
275         for ( i = 0; s_at[ i ].desc != NULL; i++ ) {
276                 code = register_at( s_at[ i ].desc, s_at[ i ].ad, 1 );
277                 if ( code != LDAP_SUCCESS ) {
278                         Debug( LDAP_DEBUG_ANY,
279                                 "bdb_monitor_initialize: register_at failed\n",
280                                 0, 0, 0 );
281                 }
282                 (*s_at[ i ].ad)->ad_type->sat_flags |= SLAP_AT_HIDE;
283         }
284
285         for ( i = 0; s_oc[ i ].desc != NULL; i++ ) {
286                 code = register_oc( s_oc[ i ].desc, s_oc[ i ].oc, 1 );
287                 if ( code != LDAP_SUCCESS ) {
288                         Debug( LDAP_DEBUG_ANY,
289                                 "bdb_monitor_initialize: register_oc failed\n",
290                                 0, 0, 0 );
291                 }
292                 (*s_oc[ i ].oc)->soc_flags |= SLAP_OC_HIDE;
293         }
294
295         return 0;
296 }
297
298 /*
299  * call from within bdb_db_init()
300  */
301 int
302 bdb_monitor_db_init( BackendDB *be )
303 {
304         struct bdb_info         *bdb = (struct bdb_info *) be->be_private;
305
306         if ( SLAP_GLUE_SUBORDINATE( be ) ) {
307                 return 0;
308         }
309
310         if ( bdb_monitor_initialize() == LDAP_SUCCESS ) {
311                 /* monitoring in back-bdb is on by default */
312                 SLAP_DBFLAGS( be ) |= SLAP_DBFLAG_MONITORING;
313         }
314
315 #ifdef BDB_MONITOR_IDX
316         bdb->bi_idx = NULL;
317         ldap_pvt_thread_mutex_init( &bdb->bi_idx_mutex );
318 #endif /* BDB_MONITOR_IDX */
319
320         return 0;
321 }
322
323 /*
324  * call from within bdb_db_open()
325  */
326 int
327 bdb_monitor_db_open( BackendDB *be )
328 {
329         struct bdb_info         *bdb = (struct bdb_info *) be->be_private;
330         Attribute               *a, *next;
331         monitor_callback_t      *cb = NULL;
332         int                     rc = 0;
333         BackendInfo             *mi;
334         monitor_extra_t         *mbe;
335         struct berval dummy = BER_BVC("");
336
337         if ( !SLAP_DBMONITORING( be ) ) {
338                 return 0;
339         }
340
341         if ( SLAP_GLUE_SUBORDINATE( be ) ) {
342                 return 0;
343         }
344
345         mi = backend_info( "monitor" );
346         if ( !mi || !mi->bi_extra ) {
347                 SLAP_DBFLAGS( be ) ^= SLAP_DBFLAG_MONITORING;
348                 return 0;
349         }
350         mbe = mi->bi_extra;
351
352         /* don't bother if monitor is not configured */
353         if ( !mbe->is_configured() ) {
354                 static int warning = 0;
355
356                 if ( warning++ == 0 ) {
357                         Debug( LDAP_DEBUG_ANY, "bdb_monitor_open: "
358                                 "monitoring disabled; "
359                                 "configure monitor database to enable\n",
360                                 0, 0, 0 );
361                 }
362
363                 return 0;
364         }
365
366         /* alloc as many as required (plus 1 for objectClass) */
367         a = attrs_alloc( 1 + 4 );
368         if ( a == NULL ) {
369                 rc = 1;
370                 goto cleanup;
371         }
372
373         a->a_desc = slap_schema.si_ad_objectClass;
374         value_add_one( &a->a_vals, &oc_olmBDBDatabase->soc_cname );
375         a->a_nvals = a->a_vals;
376         next = a->a_next;
377
378         {
379                 struct berval   bv = BER_BVC( "0" );
380
381                 next->a_desc = ad_olmBDBEntryCache;
382                 value_add_one( &next->a_vals, &bv );
383                 next->a_nvals = next->a_vals;
384                 next = next->a_next;
385
386                 next->a_desc = ad_olmBDBDNCache;
387                 value_add_one( &next->a_vals, &bv );
388                 next->a_nvals = next->a_vals;
389                 next = next->a_next;
390
391                 next->a_desc = ad_olmBDBIDLCache;
392                 value_add_one( &next->a_vals, &bv );
393                 next->a_nvals = next->a_vals;
394                 next = next->a_next;
395         }
396
397         {
398                 struct berval   bv, nbv;
399                 ber_len_t       pathlen = 0, len = 0;
400                 char            path[ PATH_MAX ] = { '\0' };
401                 char            *fname = bdb->bi_dbenv_home,
402                                 *ptr;
403
404                 len = strlen( fname );
405                 if ( fname[ 0 ] != '/' ) {
406                         /* get full path name */
407                         getcwd( path, sizeof( path ) );
408                         pathlen = strlen( path );
409
410                         if ( fname[ 0 ] == '.' && fname[ 1 ] == '/' ) {
411                                 fname += 2;
412                                 len -= 2;
413                         }
414                 }
415
416                 bv.bv_len = pathlen + STRLENOF( "/" ) + len;
417                 ptr = bv.bv_val = ch_malloc( bv.bv_len + STRLENOF( "/" ) + 1 );
418                 if ( pathlen ) {
419                         ptr = lutil_strncopy( ptr, path, pathlen );
420                         ptr[ 0 ] = '/';
421                         ptr++;
422                 }
423                 ptr = lutil_strncopy( ptr, fname, len );
424                 if ( ptr[ -1 ] != '/' ) {
425                         ptr[ 0 ] = '/';
426                         ptr++;
427                 }
428                 ptr[ 0 ] = '\0';
429                 
430                 attr_normalize_one( ad_olmDbDirectory, &bv, &nbv, NULL );
431
432                 next->a_desc = ad_olmDbDirectory;
433                 next->a_vals = ch_calloc( sizeof( struct berval ), 2 );
434                 next->a_vals[ 0 ] = bv;
435
436                 if ( BER_BVISNULL( &nbv ) ) {
437                         next->a_nvals = next->a_vals;
438
439                 } else {
440                         next->a_nvals = ch_calloc( sizeof( struct berval ), 2 );
441                         next->a_nvals[ 0 ] = nbv;
442                 }
443
444                 next = next->a_next;
445         }
446
447         cb = ch_calloc( sizeof( monitor_callback_t ), 1 );
448         cb->mc_update = bdb_monitor_update;
449 #if 0   /* uncomment if required */
450         cb->mc_modify = bdb_monitor_modify;
451 #endif
452         cb->mc_free = bdb_monitor_free;
453         cb->mc_private = (void *)bdb;
454
455         /* make sure the database is registered; then add monitor attributes */
456         rc = mbe->register_database( be, &bdb->bi_monitor.bdm_ndn );
457         if ( rc == 0 ) {
458                 rc = mbe->register_entry_attrs( &bdb->bi_monitor.bdm_ndn, a, cb,
459                         &dummy, 0, &dummy );
460         }
461
462 cleanup:;
463         if ( rc != 0 ) {
464                 if ( cb != NULL ) {
465                         ch_free( cb );
466                         cb = NULL;
467                 }
468
469                 if ( a != NULL ) {
470                         attrs_free( a );
471                         a = NULL;
472                 }
473         }
474
475         /* store for cleanup */
476         bdb->bi_monitor.bdm_cb = (void *)cb;
477
478         /* we don't need to keep track of the attributes, because
479          * bdb_monitor_free() takes care of everything */
480         if ( a != NULL ) {
481                 attrs_free( a );
482         }
483
484         return rc;
485 }
486
487 /*
488  * call from within bdb_db_close()
489  */
490 int
491 bdb_monitor_db_close( BackendDB *be )
492 {
493         struct bdb_info         *bdb = (struct bdb_info *) be->be_private;
494
495         if ( SLAP_GLUE_SUBORDINATE( be ) ) {
496                 return 0;
497         }
498
499         if ( !BER_BVISNULL( &bdb->bi_monitor.bdm_ndn ) ) {
500                 BackendInfo             *mi = backend_info( "monitor" );
501                 monitor_extra_t         *mbe;
502
503                 if ( mi && &mi->bi_extra ) {
504                         mbe = mi->bi_extra;
505                         mbe->unregister_entry_callback( &bdb->bi_monitor.bdm_ndn,
506                                 (monitor_callback_t *)bdb->bi_monitor.bdm_cb,
507                                 NULL, 0, NULL );
508                 }
509
510                 memset( &bdb->bi_monitor, 0, sizeof( bdb->bi_monitor ) );
511         }
512
513         return 0;
514 }
515
516 /*
517  * call from within bdb_db_destroy()
518  */
519 int
520 bdb_monitor_db_destroy( BackendDB *be )
521 {
522         if ( SLAP_GLUE_SUBORDINATE( be ) ) {
523                 return 0;
524         }
525
526 #ifdef BDB_MONITOR_IDX
527         {
528                 struct bdb_info         *bdb = (struct bdb_info *) be->be_private;
529
530                 /* TODO: free tree */
531                 ldap_pvt_thread_mutex_destroy( &bdb->bi_idx_mutex );
532                 avl_free( bdb->bi_idx, ch_free );
533         }
534 #endif /* BDB_MONITOR_IDX */
535
536         return 0;
537 }
538
539 #ifdef BDB_MONITOR_IDX
540
541 #define BDB_MONITOR_IDX_TYPES   (4)
542
543 typedef struct monitor_idx_t monitor_idx_t;
544
545 struct monitor_idx_t {
546         AttributeDescription    *idx_ad;
547         unsigned long           idx_count[BDB_MONITOR_IDX_TYPES];
548 };
549
550 static int
551 bdb_monitor_bitmask2key( slap_mask_t bitmask )
552 {
553         int     key;
554
555         for ( key = 0; key < 8*sizeof(slap_mask_t) && !( bitmask & 0x1U ); key++ ) {
556                 bitmask >>= 1;
557         }
558
559         return key;
560 }
561
562 static struct berval idxbv[] = {
563         BER_BVC( "present=" ),
564         BER_BVC( "equality=" ),
565         BER_BVC( "approx=" ),
566         BER_BVC( "substr=" ),
567         BER_BVNULL
568 };
569
570 static ber_len_t
571 bdb_monitor_idx2len( monitor_idx_t *idx )
572 {
573         int             i;
574         ber_len_t       len = 0;
575
576         for ( i = 0; i < BDB_MONITOR_IDX_TYPES; i++ ) {
577                 if ( idx->idx_count[ i ] != 0 ) {
578                         len += idxbv[i].bv_len;
579                 }
580         }
581
582         return len;
583 }
584
585 static int
586 monitor_idx_cmp( const void *p1, const void *p2 )
587 {
588         const monitor_idx_t     *idx1 = (const monitor_idx_t *)p1;
589         const monitor_idx_t     *idx2 = (const monitor_idx_t *)p2;
590
591         return SLAP_PTRCMP( idx1->idx_ad, idx2->idx_ad );
592 }
593
594 static int
595 monitor_idx_dup( void *p1, void *p2 )
596 {
597         monitor_idx_t   *idx1 = (monitor_idx_t *)p1;
598         monitor_idx_t   *idx2 = (monitor_idx_t *)p2;
599
600         return SLAP_PTRCMP( idx1->idx_ad, idx2->idx_ad ) == 0 ? -1 : 0;
601 }
602
603 int
604 bdb_monitor_idx_add(
605         struct bdb_info         *bdb,
606         AttributeDescription    *desc,
607         slap_mask_t             type )
608 {
609         monitor_idx_t           idx_dummy = { 0 },
610                                 *idx;
611         int                     rc = 0, key;
612
613         idx_dummy.idx_ad = desc;
614         key = bdb_monitor_bitmask2key( type ) - 1;
615         if ( key >= BDB_MONITOR_IDX_TYPES ) {
616                 /* invalid index type */
617                 return -1;
618         }
619
620         ldap_pvt_thread_mutex_lock( &bdb->bi_idx_mutex );
621
622         idx = (monitor_idx_t *)avl_find( bdb->bi_idx,
623                 (caddr_t)&idx_dummy, monitor_idx_cmp );
624         if ( idx == NULL ) {
625                 idx = (monitor_idx_t *)ch_calloc( sizeof( monitor_idx_t ), 1 );
626                 idx->idx_ad = desc;
627                 idx->idx_count[ key ] = 1;
628
629                 switch ( avl_insert( &bdb->bi_idx, (caddr_t)idx, 
630                         monitor_idx_cmp, monitor_idx_dup ) )
631                 {
632                 case 0:
633                         break;
634
635                 default:
636                         ch_free( idx );
637                         rc = -1;
638                 }
639
640         } else {
641                 idx->idx_count[ key ]++;
642         }
643
644         ldap_pvt_thread_mutex_unlock( &bdb->bi_idx_mutex );
645
646         return rc;
647 }
648
649 static int
650 bdb_monitor_idx_apply( void *v_idx, void *v_valp )
651 {
652         monitor_idx_t   *idx = (monitor_idx_t *)v_idx;
653         BerVarray       *valp = (BerVarray *)v_valp;
654
655         struct berval   bv;
656         char            *ptr;
657         char            count_buf[ BDB_MONITOR_IDX_TYPES ][ SLAP_TEXT_BUFLEN ];
658         ber_len_t       count_len[ BDB_MONITOR_IDX_TYPES ],
659                         idx_len;
660         int             i, num = 0;
661
662         idx_len = bdb_monitor_idx2len( idx );
663
664         bv.bv_len = 0;
665         for ( i = 0; i < BDB_MONITOR_IDX_TYPES; i++ ) {
666                 if ( idx->idx_count[ i ] == 0 ) {
667                         continue;
668                 }
669
670                 count_len[ i ] = snprintf( count_buf[ i ],
671                         sizeof( count_buf[ i ] ), "%lu", idx->idx_count[ i ] );
672                 bv.bv_len += count_len[ i ];
673                 num++;
674         }
675
676         bv.bv_len += idx->idx_ad->ad_cname.bv_len
677                 + num
678                 + idx_len;
679         ptr = bv.bv_val = ch_malloc( bv.bv_len + 1 );
680         ptr = lutil_strcopy( ptr, idx->idx_ad->ad_cname.bv_val );
681         for ( i = 0; i < BDB_MONITOR_IDX_TYPES; i++ ) {
682                 if ( idx->idx_count[ i ] == 0 ) {
683                         continue;
684                 }
685
686                 ptr[ 0 ] = '#';
687                 ++ptr;
688                 ptr = lutil_strcopy( ptr, idxbv[ i ].bv_val );
689                 ptr = lutil_strcopy( ptr, count_buf[ i ] );
690         }
691
692         ber_bvarray_add( valp, &bv );
693
694         return 0;
695 }
696
697 static int
698 bdb_monitor_idx_entry_add(
699         struct bdb_info *bdb,
700         Entry           *e )
701 {
702         BerVarray       vals = NULL;
703         Attribute       *a;
704
705         a = attr_find( e->e_attrs, ad_olmBDBNotIndexed );
706
707         ldap_pvt_thread_mutex_lock( &bdb->bi_idx_mutex );
708
709         avl_apply( bdb->bi_idx, bdb_monitor_idx_apply,
710                 &vals, -1, AVL_INORDER );
711
712         ldap_pvt_thread_mutex_unlock( &bdb->bi_idx_mutex );
713
714         if ( vals != NULL ) {
715                 if ( a != NULL ) {
716                         assert( a->a_nvals == a->a_vals );
717
718                         ber_bvarray_free( a->a_vals );
719
720                 } else {
721                         Attribute       **ap;
722
723                         for ( ap = &e->e_attrs; *ap != NULL; ap = &(*ap)->a_next )
724                                 ;
725                         *ap = attr_alloc( ad_olmBDBNotIndexed );
726                         a = *ap;
727                 }
728                 a->a_vals = vals;
729                 a->a_nvals = a->a_vals;
730         }
731
732         return 0;
733 }
734
735 #endif /* BDB_MONITOR_IDX */