]> git.sur5r.net Git - openldap/blob - servers/slapd/back-monitor/conn.c
declare oc_bvfind_undef()
[openldap] / servers / slapd / back-monitor / conn.c
1 /* conn.c - deal with connection subsystem */
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 #include "portable.h"
23
24 #include <stdio.h>
25 #include <ac/string.h>
26
27 #include "slap.h"
28 #include "lutil.h"
29 #include "back-monitor.h"
30
31 int
32 monitor_subsys_conn_init(
33         BackendDB               *be,
34         monitor_subsys_t        *ms
35 )
36 {
37         monitor_info_t  *mi;
38         Entry           *e, **ep, *e_conn;
39         monitor_entry_t *mp;
40         char            buf[ BACKMONITOR_BUFSIZE ];
41         struct berval   bv;
42
43         assert( be != NULL );
44
45         mi = ( monitor_info_t * )be->be_private;
46
47         if ( monitor_cache_get( mi, &ms->mss_ndn, &e_conn ) ) {
48                 Debug( LDAP_DEBUG_ANY,
49                         "monitor_subsys_conn_init: "
50                         "unable to get entry \"%s\"\n",
51                         ms->mss_ndn.bv_val, 0, 0 );
52                 return( -1 );
53         }
54
55         mp = ( monitor_entry_t * )e_conn->e_private;
56         mp->mp_children = NULL;
57         ep = &mp->mp_children;
58
59         /*
60          * Total conns
61          */
62         snprintf( buf, sizeof( buf ),
63                 "dn: cn=Total,%s\n"
64                 "objectClass: %s\n"
65                 "structuralObjectClass: %s\n"
66                 "cn: Total\n"
67                 "creatorsName: %s\n"
68                 "modifiersName: %s\n"
69                 "createTimestamp: %s\n"
70                 "modifyTimestamp: %s\n",
71                 ms->mss_dn.bv_val,
72                 mi->mi_oc_monitorCounterObject->soc_cname.bv_val,
73                 mi->mi_oc_monitorCounterObject->soc_cname.bv_val,
74                 mi->mi_creatorsName.bv_val,
75                 mi->mi_creatorsName.bv_val,
76                 mi->mi_startTime.bv_val,
77                 mi->mi_startTime.bv_val );
78         
79         e = str2entry( buf );
80         if ( e == NULL ) {
81                 Debug( LDAP_DEBUG_ANY,
82                         "monitor_subsys_conn_init: "
83                         "unable to create entry \"cn=Total,%s\"\n",
84                         ms->mss_ndn.bv_val, 0, 0 );
85                 return( -1 );
86         }
87         
88         BER_BVSTR( &bv, "0" );
89         attr_merge_one( e, mi->mi_ad_monitorCounter, &bv, NULL );
90         
91         mp = monitor_entrypriv_create();
92         if ( mp == NULL ) {
93                 return -1;
94         }
95         e->e_private = ( void * )mp;
96         mp->mp_info = ms;
97         mp->mp_flags = ms->mss_flags \
98                 | MONITOR_F_SUB | MONITOR_F_PERSISTENT;
99         mp->mp_flags &= ~MONITOR_F_VOLATILE_CH;
100
101         if ( monitor_cache_add( mi, e ) ) {
102                 Debug( LDAP_DEBUG_ANY,
103                         "monitor_subsys_conn_init: "
104                         "unable to add entry \"cn=Total,%s\"\n",
105                         ms->mss_ndn.bv_val, 0, 0 );
106                 return( -1 );
107         }
108
109         *ep = e;
110         ep = &mp->mp_next;
111         
112         /*
113          * Current conns
114          */
115         snprintf( buf, sizeof( buf ),
116                 "dn: cn=Current,%s\n"
117                 "objectClass: %s\n"
118                 "structuralObjectClass: %s\n"
119                 "cn: Current\n"
120                 "creatorsName: %s\n"
121                 "modifiersName: %s\n"
122                 "createTimestamp: %s\n"
123                 "modifyTimestamp: %s\n",
124                 ms->mss_dn.bv_val,
125                 mi->mi_oc_monitorCounterObject->soc_cname.bv_val,
126                 mi->mi_oc_monitorCounterObject->soc_cname.bv_val,
127                 mi->mi_creatorsName.bv_val,
128                 mi->mi_creatorsName.bv_val,
129                 mi->mi_startTime.bv_val,
130                 mi->mi_startTime.bv_val );
131         
132         e = str2entry( buf );
133         if ( e == NULL ) {
134                 Debug( LDAP_DEBUG_ANY,
135                         "monitor_subsys_conn_init: "
136                         "unable to create entry \"cn=Current,%s\"\n",
137                         ms->mss_ndn.bv_val, 0, 0 );
138                 return( -1 );
139         }
140         
141         BER_BVSTR( &bv, "0" );
142         attr_merge_one( e, mi->mi_ad_monitorCounter, &bv, NULL );
143         
144         mp = monitor_entrypriv_create();
145         if ( mp == NULL ) {
146                 return -1;
147         }
148         e->e_private = ( void * )mp;
149         mp->mp_info = ms;
150         mp->mp_flags = ms->mss_flags \
151                 | MONITOR_F_SUB | MONITOR_F_PERSISTENT;
152         mp->mp_flags &= ~MONITOR_F_VOLATILE_CH;
153
154         if ( monitor_cache_add( mi, e ) ) {
155                 Debug( LDAP_DEBUG_ANY,
156                         "monitor_subsys_conn_init: "
157                         "unable to add entry \"cn=Current,%s\"\n",
158                         ms->mss_ndn.bv_val, 0, 0 );
159                 return( -1 );
160         }
161         
162         *ep = e;
163         ep = &mp->mp_next;
164
165         monitor_cache_release( mi, e_conn );
166
167         return( 0 );
168 }
169
170 int
171 monitor_subsys_conn_update(
172         Operation               *op,
173         Entry                   *e
174 )
175 {
176         monitor_info_t  *mi = ( monitor_info_t * )op->o_bd->be_private;
177
178         long                    n = -1;
179         static struct berval    total_bv = BER_BVC( "cn=total" ),
180                                 current_bv = BER_BVC( "cn=current" );
181         struct berval           rdn;
182
183         assert( mi );
184         assert( e );
185
186         dnRdn( &e->e_nname, &rdn );
187         
188         if ( dn_match( &rdn, &total_bv ) ) {
189                 n = connections_nextid();
190
191         } else if ( dn_match( &rdn, &current_bv ) ) {
192                 Connection      *c;
193                 int             connindex;
194
195                 for ( n = 0, c = connection_first( &connindex );
196                                 c != NULL;
197                                 n++, c = connection_next( c, &connindex ) ) {
198                         /* No Op */ ;
199                 }
200                 connection_done( c );
201         }
202
203         if ( n != -1 ) {
204                 Attribute       *a;
205                 char            buf[] = "+9223372036854775807L";
206                 ber_len_t       len;
207
208                 a = attr_find( e->e_attrs, mi->mi_ad_monitorCounter );
209                 if ( a == NULL ) {
210                         return( -1 );
211                 }
212
213                 snprintf( buf, sizeof( buf ), "%ld", n );
214                 len = strlen( buf );
215                 if ( len > a->a_vals[ 0 ].bv_len ) {
216                         a->a_vals[ 0 ].bv_val = ber_memrealloc( a->a_vals[ 0 ].bv_val, len + 1 );
217                 }
218                 a->a_vals[ 0 ].bv_len = len;
219                 AC_MEMCPY( a->a_vals[ 0 ].bv_val, buf, len + 1 );
220         }
221
222         return( 0 );
223 }
224
225 static int
226 conn_create(
227         monitor_info_t          *mi,
228         Connection              *c,
229         Entry                   **ep,
230         monitor_subsys_t        *ms
231 )
232 {
233         monitor_entry_t *mp;
234         struct tm               *ltm;
235         char                    buf[ BACKMONITOR_BUFSIZE ];
236         char                    buf2[ LDAP_LUTIL_GENTIME_BUFSIZE ];
237         char                    buf3[ LDAP_LUTIL_GENTIME_BUFSIZE ];
238
239         struct berval           bv;
240
241         Entry                   *e;
242
243         struct tm       *ctm;
244         char            ctmbuf[ LDAP_LUTIL_GENTIME_BUFSIZE ];
245         struct tm       *mtm;
246         char            mtmbuf[ LDAP_LUTIL_GENTIME_BUFSIZE ];
247 #ifdef HAVE_GMTIME_R
248         struct tm       tm_buf;
249 #endif /* HAVE_GMTIME_R */
250
251         assert( c != NULL );
252         assert( ep != NULL );
253
254 #ifndef HAVE_GMTIME_R
255         ldap_pvt_thread_mutex_lock( &gmtime_mutex );
256 #endif
257 #ifdef HACK_LOCAL_TIME
258 # ifdef HAVE_LOCALTIME_R
259         ctm = localtime_r( &c->c_starttime, &tm_buf );
260         lutil_localtime( ctmbuf, sizeof( ctmbuf ), ctm, -timezone );
261         mtm = localtime_r( &c->c_activitytime, &tm_buf );
262         lutil_localtime( mtmbuf, sizeof( mtmbuf ), mtm, -timezone );
263 # else
264         ctm = localtime( &c->c_starttime );
265         lutil_localtime( ctmbuf, sizeof( ctmbuf ), ctm, -timezone );
266         mtm = localtime( &c->c_activitytime );
267         lutil_localtime( mtmbuf, sizeof( mtmbuf ), mtm, -timezone );
268 # endif /* HAVE_LOCALTIME_R */
269 #else /* !HACK_LOCAL_TIME */
270 # ifdef HAVE_GMTIME_R
271         ctm = gmtime_r( &c->c_starttime, &tm_buf );
272         lutil_gentime( ctmbuf, sizeof( ctmbuf ), ctm );
273         mtm = gmtime_r( &c->c_activitytime, &tm_buf );
274         lutil_gentime( mtmbuf, sizeof( mtmbuf ), mtm );
275 # else
276         ctm = gmtime( &c->c_starttime );
277         lutil_gentime( ctmbuf, sizeof( ctmbuf ), ctm );
278         mtm = gmtime( &c->c_activitytime );
279         lutil_gentime( mtmbuf, sizeof( mtmbuf ), mtm );
280 # endif /* HAVE_GMTIME_R */
281 #endif /* !HACK_LOCAL_TIME */
282 #ifndef HAVE_GMTIME_R
283         ldap_pvt_thread_mutex_unlock( &gmtime_mutex );
284 #endif
285
286         snprintf( buf, sizeof( buf ),
287                 "dn: cn=Connection %ld,%s\n"
288                 "objectClass: %s\n"
289                 "structuralObjectClass: %s\n"
290                 "cn: Connection %ld\n"
291                 "creatorsName: %s\n"
292                 "modifiersName: %s\n"
293                 "createTimestamp: %s\n"
294                 "modifyTimestamp: %s\n",
295                 c->c_connid, ms->mss_dn.bv_val,
296                 mi->mi_oc_monitorConnection->soc_cname.bv_val,
297                 mi->mi_oc_monitorConnection->soc_cname.bv_val,
298                 c->c_connid,
299                 mi->mi_creatorsName.bv_val,
300                 mi->mi_creatorsName.bv_val,
301                 ctmbuf,
302                 mtmbuf );
303                 
304         e = str2entry( buf );
305
306         if ( e == NULL) {
307                 Debug( LDAP_DEBUG_ANY,
308                         "monitor_subsys_conn_create: "
309                         "unable to create entry "
310                         "\"cn=Connection %ld,%s\" entry\n",
311                         c->c_connid, 
312                         ms->mss_dn.bv_val, 0 );
313                 return( -1 );
314         }
315
316 #ifndef HAVE_GMTIME_R
317         ldap_pvt_thread_mutex_lock( &gmtime_mutex );
318 #endif
319
320 #ifdef HAVE_GMTIME_R
321         ltm = gmtime_r( &c->c_starttime, &tm_buf );
322 #else
323         ltm = gmtime( &c->c_starttime );
324 #endif
325         lutil_gentime( buf2, sizeof( buf2 ), ltm );
326
327 #ifdef HAVE_GMTIME_R
328         ltm = gmtime_r( &c->c_activitytime, &tm_buf );
329 #else
330         ltm = gmtime( &c->c_activitytime );
331 #endif
332         lutil_gentime( buf3, sizeof( buf3 ), ltm );
333
334 #ifndef HAVE_GMTIME_R
335         ldap_pvt_thread_mutex_unlock( &gmtime_mutex );
336 #endif /* HAVE_GMTIME_R */
337
338         /* monitored info */
339         sprintf( buf,
340                 "%ld "
341                 ": %ld "
342                 ": %ld/%ld/%ld/%ld "
343                 ": %ld/%ld/%ld "
344                 ": %s%s%s%s%s%s "
345                 ": %s "
346                 ": %s "
347                 ": %s "
348                 ": %s "
349                 ": %s "
350                 ": %s "
351                 ": %s",
352                 c->c_connid,
353                 (long) c->c_protocol,
354                 c->c_n_ops_received, c->c_n_ops_executing,
355                         c->c_n_ops_pending, c->c_n_ops_completed,
356                 
357                 /* add low-level counters here */
358                 c->c_n_get, c->c_n_read, c->c_n_write,
359                 
360                 c->c_currentber ? "r" : "",
361                 c->c_writewaiter ? "w" : "",
362                 LDAP_STAILQ_EMPTY( &c->c_ops ) ? "" : "x",
363                 LDAP_STAILQ_EMPTY( &c->c_pending_ops ) ? "" : "p",
364                 connection_state2str( c->c_conn_state ),
365                 c->c_sasl_bind_in_progress ? "S" : "",
366                 
367                 c->c_dn.bv_len ? c->c_dn.bv_val : SLAPD_ANONYMOUS,
368                 
369                 c->c_listener_url.bv_val,
370                 c->c_peer_domain.bv_val,
371                 c->c_peer_name.bv_val,
372                 c->c_sock_name.bv_val,
373                 
374                 buf2,
375                 buf3
376                 );
377
378         bv.bv_val = buf;
379         bv.bv_len = strlen( buf );
380         attr_merge_one( e, mi->mi_ad_monitoredInfo, &bv, NULL );
381
382         /* connection number */
383         snprintf( buf, sizeof( buf ), "%ld", c->c_connid );
384         bv.bv_val = buf;
385         bv.bv_len = strlen( buf );
386         attr_merge_one( e, mi->mi_ad_monitorConnectionNumber, &bv, NULL );
387
388         /* authz DN */
389         attr_merge_one( e, mi->mi_ad_monitorConnectionAuthzDN,
390                         &c->c_dn, &c->c_ndn );
391
392         /* local address */
393         attr_merge_one( e, mi->mi_ad_monitorConnectionLocalAddress,
394                         &c->c_sock_name, NULL );
395
396         /* peer address */
397         attr_merge_one( e, mi->mi_ad_monitorConnectionPeerAddress,
398                         &c->c_peer_name, NULL );
399
400         mp = monitor_entrypriv_create();
401         if ( mp == NULL ) {
402                 return -1;
403         }
404         e->e_private = ( void * )mp;
405         mp->mp_info = ms;
406         mp->mp_flags = MONITOR_F_SUB | MONITOR_F_VOLATILE;
407
408         *ep = e;
409
410         return( 0 );
411 }
412
413 int 
414 monitor_subsys_conn_create( 
415         Operation               *op,
416         struct berval           *ndn,
417         Entry                   *e_parent,
418         Entry                   **ep
419 )
420 {
421         monitor_info_t  *mi = ( monitor_info_t * )op->o_bd->be_private;
422
423         Connection              *c;
424         int                     connindex;
425         monitor_entry_t         *mp;
426         int                     rc = 0;
427         monitor_subsys_t        *ms;
428
429         assert( mi != NULL );
430         assert( e_parent != NULL );
431         assert( ep != NULL );
432
433         ms = (( monitor_entry_t *)e_parent->e_private)->mp_info;
434
435         *ep = NULL;
436
437         if ( ndn == NULL ) {
438                 Entry   *e = NULL,
439                         *e_tmp = NULL;
440
441                 /* create all the children of e_parent */
442                 for ( c = connection_first( &connindex );
443                                 c != NULL;
444                                 c = connection_next( c, &connindex ))
445                 {
446                         if ( conn_create( mi, c, &e, ms ) || e == NULL ) {
447                                 for ( ; e_tmp != NULL; ) {
448                                         mp = ( monitor_entry_t * )e_tmp->e_private;
449                                         e = mp->mp_next;
450
451                                         ch_free( mp );
452                                         e_tmp->e_private = NULL;
453                                         entry_free( e_tmp );
454
455                                         e_tmp = e;
456                                 }
457                                 rc = -1;
458                                 break;
459                         }
460                         mp = ( monitor_entry_t * )e->e_private;
461                         mp->mp_next = e_tmp;
462                         e_tmp = e;
463                 }
464                 connection_done(c);
465                 *ep = e;
466
467         } else {
468                 unsigned long           connid;
469                 char                    *next = NULL;
470                 static struct berval    nconn_bv = BER_BVC( "cn=connection " );
471
472                
473                 /* create exactly the required entry;
474                  * the normalized DN must start with "cn=connection ",
475                  * followed by the connection id, followed by
476                  * the RDN separator "," */
477                 if ( ndn->bv_len <= nconn_bv.bv_len
478                                 || strncmp( ndn->bv_val, nconn_bv.bv_val, nconn_bv.bv_len ) != 0 )
479                 {
480                         return -1;
481                 }
482                 
483                 connid = strtol( &ndn->bv_val[ nconn_bv.bv_len ], &next, 10 );
484                 if ( next[ 0 ] != ',' ) {
485                         return -1;
486                 }
487
488                 for ( c = connection_first( &connindex );
489                                 c != NULL;
490                                 c = connection_next( c, &connindex )) {
491                         if ( c->c_connid == connid ) {
492                                 if ( conn_create( mi, c, ep, ms ) || *ep == NULL ) {
493                                         rc = -1;
494                                 }
495
496                                 break;
497                         }
498                 }
499                 
500                 connection_done(c);
501         }
502
503         return rc;
504 }
505