]> git.sur5r.net Git - openldap/blob - servers/slapd/back-monitor/sent.c
tolerate that config_get_vals() returns success with no values (ITS#4341)
[openldap] / servers / slapd / back-monitor / sent.c
1 /* sent.c - deal with data sent subsystem */
2 /* $OpenLDAP$ */
3 /* This work is part of OpenLDAP Software <http://www.openldap.org/>.
4  *
5  * Copyright 2001-2006 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 #include "portable.h"
23
24 #include <stdio.h>
25 #include <ac/string.h>
26
27 #include "slap.h"
28 #include "back-monitor.h"
29
30 static int
31 monitor_subsys_sent_destroy(
32         BackendDB               *be,
33         monitor_subsys_t        *ms );
34
35 static int
36 monitor_subsys_sent_update(
37         Operation               *op,
38         SlapReply               *rs,
39         Entry                   *e );
40
41 enum {
42         MONITOR_SENT_BYTES = 0,
43         MONITOR_SENT_PDU,
44         MONITOR_SENT_ENTRIES,
45         MONITOR_SENT_REFERRALS,
46
47         MONITOR_SENT_LAST
48 };
49
50 struct monitor_sent_t {
51         struct berval   rdn;
52         struct berval   nrdn;
53 } monitor_sent[] = {
54         { BER_BVC("cn=Bytes"),          BER_BVNULL },
55         { BER_BVC("cn=PDU"),            BER_BVNULL },
56         { BER_BVC("cn=Entries"),        BER_BVNULL },
57         { BER_BVC("cn=Referrals"),      BER_BVNULL },
58         { BER_BVNULL,                   BER_BVNULL }
59 };
60
61 int
62 monitor_subsys_sent_init(
63         BackendDB               *be,
64         monitor_subsys_t        *ms )
65 {
66         monitor_info_t  *mi;
67         
68         Entry           **ep, *e_sent;
69         monitor_entry_t *mp;
70         int                     i;
71
72         assert( be != NULL );
73
74         ms->mss_destroy = monitor_subsys_sent_destroy;
75         ms->mss_update = monitor_subsys_sent_update;
76
77         mi = ( monitor_info_t * )be->be_private;
78
79         if ( monitor_cache_get( mi, &ms->mss_ndn, &e_sent ) ) {
80                 Debug( LDAP_DEBUG_ANY,
81                         "monitor_subsys_sent_init: "
82                         "unable to get entry \"%s\"\n",
83                         ms->mss_ndn.bv_val, 0, 0 );
84                 return( -1 );
85         }
86
87         mp = ( monitor_entry_t * )e_sent->e_private;
88         mp->mp_children = NULL;
89         ep = &mp->mp_children;
90
91         for ( i = 0; i < MONITOR_SENT_LAST; i++ ) {
92                 char                    buf[ BACKMONITOR_BUFSIZE ];
93                 struct berval           nrdn, bv;
94                 Entry                   *e;
95
96                 e = monitor_entry_stub( &ms->mss_dn, &ms->mss_ndn,
97                         &monitor_sent[i].rdn, mi->mi_oc_monitorCounterObject,
98                         mi, NULL, NULL );
99                         
100                 if ( e == NULL ) {
101                         Debug( LDAP_DEBUG_ANY,
102                                 "monitor_subsys_sent_init: "
103                                 "unable to create entry \"%s,%s\"\n",
104                                 monitor_sent[ i ].rdn.bv_val,
105                                 ms->mss_ndn.bv_val, 0 );
106                         return( -1 );
107                 }
108
109                 /* steal normalized RDN */
110                 dnRdn( &e->e_nname, &nrdn );
111                 ber_dupbv( &monitor_sent[ i ].nrdn, &nrdn );
112         
113                 BER_BVSTR( &bv, "0" );
114                 attr_merge_normalize_one( e, mi->mi_ad_monitorCounter, &bv, NULL );
115         
116                 mp = monitor_entrypriv_create();
117                 if ( mp == NULL ) {
118                         return -1;
119                 }
120                 e->e_private = ( void * )mp;
121                 mp->mp_info = ms;
122                 mp->mp_flags = ms->mss_flags \
123                         | MONITOR_F_SUB | MONITOR_F_PERSISTENT;
124
125                 if ( monitor_cache_add( mi, e ) ) {
126                         Debug( LDAP_DEBUG_ANY,
127                                 "monitor_subsys_sent_init: "
128                                 "unable to add entry \"%s,%s\"\n",
129                                 monitor_sent[ i ].rdn.bv_val,
130                                 ms->mss_ndn.bv_val, 0 );
131                         return( -1 );
132                 }
133         
134                 *ep = e;
135                 ep = &mp->mp_next;
136         }
137
138         monitor_cache_release( mi, e_sent );
139
140         return( 0 );
141 }
142
143 static int
144 monitor_subsys_sent_destroy(
145         BackendDB               *be,
146         monitor_subsys_t        *ms )
147 {
148         int             i;
149
150         for ( i = 0; i < MONITOR_SENT_LAST; i++ ) {
151                 if ( !BER_BVISNULL( &monitor_sent[ i ].nrdn ) ) {
152                         ch_free( monitor_sent[ i ].nrdn.bv_val );
153                 }
154         }
155
156         return 0;
157 }
158
159 static int
160 monitor_subsys_sent_update(
161         Operation               *op,
162         SlapReply               *rs,
163         Entry                   *e )
164 {
165         monitor_info_t  *mi = ( monitor_info_t *)op->o_bd->be_private;
166         
167         struct berval           nrdn;
168         ldap_pvt_mp_t           n;
169         Attribute               *a;
170         int                     i;
171
172         assert( mi != NULL );
173         assert( e != NULL );
174
175         dnRdn( &e->e_nname, &nrdn );
176
177         for ( i = 0; i < MONITOR_SENT_LAST; i++ ) {
178                 if ( dn_match( &nrdn, &monitor_sent[ i ].nrdn ) ) {
179                         break;
180                 }
181         }
182
183         if ( i == MONITOR_SENT_LAST ) {
184                 return SLAP_CB_CONTINUE;
185         }
186
187         ldap_pvt_thread_mutex_lock(&slap_counters.sc_sent_mutex);
188         switch ( i ) {
189         case MONITOR_SENT_ENTRIES:
190                 ldap_pvt_mp_init_set( n, slap_counters.sc_entries );
191                 break;
192
193         case MONITOR_SENT_REFERRALS:
194                 ldap_pvt_mp_init_set( n, slap_counters.sc_refs );
195                 break;
196
197         case MONITOR_SENT_PDU:
198                 ldap_pvt_mp_init_set( n, slap_counters.sc_pdu );
199                 break;
200
201         case MONITOR_SENT_BYTES:
202                 ldap_pvt_mp_init_set( n, slap_counters.sc_bytes );
203                 break;
204
205         default:
206                 assert(0);
207         }
208         ldap_pvt_thread_mutex_unlock(&slap_counters.sc_sent_mutex);
209         
210         a = attr_find( e->e_attrs, mi->mi_ad_monitorCounter );
211         assert( a != NULL );
212
213         /* NOTE: no minus sign is allowed in the counters... */
214         UI2BV( &a->a_vals[ 0 ], n );
215         ldap_pvt_mp_clear( n );
216
217         /* FIXME: touch modifyTimestamp? */
218
219         return SLAP_CB_CONTINUE;
220 }
221