2001-12-23 03:14:10 +08:00
|
|
|
/* sent.c - deal with data sent subsystem */
|
2003-11-27 10:35:20 +08:00
|
|
|
/* $OpenLDAP$ */
|
|
|
|
/* This work is part of OpenLDAP Software <http://www.openldap.org/>.
|
|
|
|
*
|
2004-01-02 03:15:16 +08:00
|
|
|
* Copyright 2001-2004 The OpenLDAP Foundation.
|
2003-12-09 01:41:40 +08:00
|
|
|
* Portions Copyright 2001-2003 Pierangelo Masarati.
|
2003-11-27 10:35:20 +08:00
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted only as authorized by the OpenLDAP
|
|
|
|
* Public License.
|
|
|
|
*
|
|
|
|
* A copy of this license is available in file LICENSE in the
|
|
|
|
* top-level directory of the distribution or, alternatively, at
|
|
|
|
* <http://www.OpenLDAP.org/license.html>.
|
|
|
|
*/
|
|
|
|
/* ACKNOWLEDGEMENTS:
|
|
|
|
* This work was initially developed by Pierangelo Masarati for inclusion
|
|
|
|
* in OpenLDAP Software.
|
2001-12-23 03:14:10 +08:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include "portable.h"
|
|
|
|
|
|
|
|
#include <stdio.h>
|
2003-05-15 05:36:34 +08:00
|
|
|
#include <ac/string.h>
|
2001-12-23 03:14:10 +08:00
|
|
|
|
|
|
|
#include "slap.h"
|
|
|
|
#include "back-monitor.h"
|
|
|
|
|
2004-09-11 19:05:41 +08:00
|
|
|
enum {
|
2004-09-12 01:46:00 +08:00
|
|
|
MONITOR_SENT_BYTES = 0,
|
2004-09-11 19:05:41 +08:00
|
|
|
MONITOR_SENT_PDU,
|
2004-09-12 01:46:00 +08:00
|
|
|
MONITOR_SENT_ENTRIES,
|
|
|
|
MONITOR_SENT_REFERRALS,
|
2004-09-11 19:05:41 +08:00
|
|
|
|
|
|
|
MONITOR_SENT_LAST
|
|
|
|
};
|
|
|
|
|
|
|
|
struct monitor_sent_t {
|
|
|
|
struct berval rdn;
|
|
|
|
struct berval nrdn;
|
|
|
|
} monitor_sent[] = {
|
2004-09-12 01:46:00 +08:00
|
|
|
{ BER_BVC("cn=Bytes"), BER_BVNULL },
|
|
|
|
{ BER_BVC("cn=PDU"), BER_BVNULL },
|
|
|
|
{ BER_BVC("cn=Entries"), BER_BVNULL },
|
|
|
|
{ BER_BVC("cn=Referrals"), BER_BVNULL },
|
|
|
|
{ BER_BVNULL, BER_BVNULL }
|
2004-09-11 19:05:41 +08:00
|
|
|
};
|
|
|
|
|
2001-12-23 03:14:10 +08:00
|
|
|
int
|
|
|
|
monitor_subsys_sent_init(
|
|
|
|
BackendDB *be
|
|
|
|
)
|
|
|
|
{
|
|
|
|
struct monitorinfo *mi;
|
|
|
|
|
2004-09-13 06:12:58 +08:00
|
|
|
Entry **ep, *e_sent;
|
2001-12-23 03:14:10 +08:00
|
|
|
struct monitorentrypriv *mp;
|
2004-09-11 19:05:41 +08:00
|
|
|
int i;
|
2001-12-23 03:14:10 +08:00
|
|
|
|
|
|
|
assert( be != NULL );
|
|
|
|
|
|
|
|
mi = ( struct monitorinfo * )be->be_private;
|
|
|
|
|
|
|
|
if ( monitor_cache_get( mi,
|
2002-01-03 02:14:29 +08:00
|
|
|
&monitor_subsys[SLAPD_MONITOR_SENT].mss_ndn, &e_sent ) ) {
|
2001-12-23 03:14:10 +08:00
|
|
|
Debug( LDAP_DEBUG_ANY,
|
|
|
|
"monitor_subsys_sent_init: "
|
2004-09-13 06:12:58 +08:00
|
|
|
"unable to get entry \"%s\"\n",
|
|
|
|
monitor_subsys[SLAPD_MONITOR_SENT].mss_ndn.bv_val, 0, 0 );
|
2001-12-23 03:14:10 +08:00
|
|
|
return( -1 );
|
|
|
|
}
|
|
|
|
|
2004-09-13 06:12:58 +08:00
|
|
|
mp = ( struct monitorentrypriv * )e_sent->e_private;
|
|
|
|
mp->mp_children = NULL;
|
|
|
|
ep = &mp->mp_children;
|
2001-12-23 03:14:10 +08:00
|
|
|
|
2004-09-13 06:12:58 +08:00
|
|
|
for ( i = 0; i < MONITOR_SENT_LAST; i++ ) {
|
2004-09-11 19:05:41 +08:00
|
|
|
char buf[ BACKMONITOR_BUFSIZE ];
|
2004-09-27 06:58:47 +08:00
|
|
|
struct berval nrdn, bv;
|
2004-09-11 19:05:41 +08:00
|
|
|
Entry *e;
|
|
|
|
|
|
|
|
snprintf( buf, sizeof( buf ),
|
|
|
|
"dn: %s,%s\n"
|
|
|
|
"objectClass: %s\n"
|
|
|
|
"structuralObjectClass: %s\n"
|
|
|
|
"cn: %s\n"
|
|
|
|
"creatorsName: %s\n"
|
|
|
|
"modifiersName: %s\n"
|
|
|
|
"createTimestamp: %s\n"
|
|
|
|
"modifyTimestamp: %s\n",
|
|
|
|
monitor_sent[i].rdn.bv_val,
|
|
|
|
monitor_subsys[SLAPD_MONITOR_SENT].mss_dn.bv_val,
|
|
|
|
mi->mi_oc_monitorCounterObject->soc_cname.bv_val,
|
|
|
|
mi->mi_oc_monitorCounterObject->soc_cname.bv_val,
|
|
|
|
&monitor_sent[i].rdn.bv_val[STRLENOF( "cn=" )],
|
|
|
|
mi->mi_creatorsName.bv_val,
|
|
|
|
mi->mi_creatorsName.bv_val,
|
|
|
|
mi->mi_startTime.bv_val,
|
|
|
|
mi->mi_startTime.bv_val );
|
|
|
|
|
|
|
|
e = str2entry( buf );
|
|
|
|
if ( e == NULL ) {
|
|
|
|
Debug( LDAP_DEBUG_ANY,
|
|
|
|
"monitor_subsys_sent_init: "
|
|
|
|
"unable to create entry \"%s,%s\"\n",
|
|
|
|
monitor_sent[i].rdn.bv_val,
|
|
|
|
monitor_subsys[SLAPD_MONITOR_SENT].mss_ndn.bv_val, 0 );
|
|
|
|
return( -1 );
|
|
|
|
}
|
2004-09-12 01:46:00 +08:00
|
|
|
|
|
|
|
/* steal normalized RDN */
|
2004-09-27 06:58:47 +08:00
|
|
|
dnRdn( &e->e_nname, &nrdn );
|
|
|
|
ber_dupbv( &monitor_sent[i].nrdn, &nrdn );
|
2001-12-23 03:14:10 +08:00
|
|
|
|
2004-09-12 01:46:00 +08:00
|
|
|
BER_BVSTR( &bv, "0" );
|
2004-09-11 19:05:41 +08:00
|
|
|
attr_merge_one( e, mi->mi_ad_monitorCounter, &bv, NULL );
|
2001-12-23 03:14:10 +08:00
|
|
|
|
2004-09-11 19:05:41 +08:00
|
|
|
mp = ( struct monitorentrypriv * )ch_calloc( sizeof( struct monitorentrypriv ), 1 );
|
|
|
|
e->e_private = ( void * )mp;
|
2004-09-13 06:12:58 +08:00
|
|
|
mp->mp_next = NULL;
|
2004-09-11 19:05:41 +08:00
|
|
|
mp->mp_children = NULL;
|
|
|
|
mp->mp_info = &monitor_subsys[SLAPD_MONITOR_SENT];
|
|
|
|
mp->mp_flags = monitor_subsys[SLAPD_MONITOR_SENT].mss_flags \
|
|
|
|
| MONITOR_F_SUB | MONITOR_F_PERSISTENT;
|
|
|
|
|
|
|
|
if ( monitor_cache_add( mi, e ) ) {
|
|
|
|
Debug( LDAP_DEBUG_ANY,
|
|
|
|
"monitor_subsys_sent_init: "
|
2004-09-13 06:12:58 +08:00
|
|
|
"unable to add entry \"%s,%s\"\n",
|
2004-09-11 19:05:41 +08:00
|
|
|
monitor_sent[i].rdn.bv_val,
|
|
|
|
monitor_subsys[SLAPD_MONITOR_SENT].mss_ndn.bv_val, 0 );
|
|
|
|
return( -1 );
|
|
|
|
}
|
2001-12-23 03:14:10 +08:00
|
|
|
|
2004-09-13 06:12:58 +08:00
|
|
|
*ep = e;
|
|
|
|
ep = &mp->mp_next;
|
2001-12-23 03:14:10 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
monitor_cache_release( mi, e_sent );
|
|
|
|
|
|
|
|
return( 0 );
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
monitor_subsys_sent_update(
|
2003-04-12 07:08:16 +08:00
|
|
|
Operation *op,
|
2001-12-23 03:14:10 +08:00
|
|
|
Entry *e
|
|
|
|
)
|
|
|
|
{
|
2004-09-11 19:05:41 +08:00
|
|
|
struct monitorinfo *mi =
|
|
|
|
(struct monitorinfo *)op->o_bd->be_private;
|
|
|
|
|
2004-09-27 06:58:47 +08:00
|
|
|
struct berval nrdn;
|
|
|
|
ldap_pvt_mp_t n;
|
2004-09-11 19:05:41 +08:00
|
|
|
Attribute *a;
|
|
|
|
int i;
|
2001-12-23 03:14:10 +08:00
|
|
|
|
|
|
|
assert( mi );
|
|
|
|
assert( e );
|
2004-09-11 19:05:41 +08:00
|
|
|
|
2004-09-27 06:58:47 +08:00
|
|
|
dnRdn( &e->e_nname, &nrdn );
|
2004-09-11 19:05:41 +08:00
|
|
|
|
|
|
|
for ( i = 0; i < MONITOR_SENT_LAST; i++ ) {
|
2004-09-27 06:58:47 +08:00
|
|
|
if ( dn_match( &nrdn, &monitor_sent[i].nrdn ) ) {
|
2004-09-11 19:05:41 +08:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( i == MONITOR_SENT_LAST ) {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2004-10-01 15:33:16 +08:00
|
|
|
ldap_pvt_thread_mutex_lock(&SLAPD_GLOBAL(counters).sc_sent_mutex);
|
2004-09-11 19:05:41 +08:00
|
|
|
switch ( i ) {
|
|
|
|
case MONITOR_SENT_ENTRIES:
|
2004-10-01 15:33:16 +08:00
|
|
|
ldap_pvt_mp_init_set( n, SLAPD_GLOBAL(counters).sc_entries );
|
2004-09-11 19:05:41 +08:00
|
|
|
break;
|
2001-12-23 03:14:10 +08:00
|
|
|
|
2004-09-11 19:05:41 +08:00
|
|
|
case MONITOR_SENT_REFERRALS:
|
2004-10-01 15:33:16 +08:00
|
|
|
ldap_pvt_mp_init_set( n, SLAPD_GLOBAL(counters).sc_refs );
|
2004-09-11 19:05:41 +08:00
|
|
|
break;
|
2001-12-23 03:14:10 +08:00
|
|
|
|
2004-09-11 19:05:41 +08:00
|
|
|
case MONITOR_SENT_PDU:
|
2004-10-01 15:33:16 +08:00
|
|
|
ldap_pvt_mp_init_set( n, SLAPD_GLOBAL(counters).sc_pdu );
|
2004-09-11 19:05:41 +08:00
|
|
|
break;
|
2001-12-23 03:14:10 +08:00
|
|
|
|
2004-09-11 19:05:41 +08:00
|
|
|
case MONITOR_SENT_BYTES:
|
2004-10-01 15:33:16 +08:00
|
|
|
ldap_pvt_mp_init_set( n, SLAPD_GLOBAL(counters).sc_bytes );
|
2004-09-11 19:05:41 +08:00
|
|
|
break;
|
2001-12-23 03:14:10 +08:00
|
|
|
|
2004-09-11 19:05:41 +08:00
|
|
|
default:
|
|
|
|
assert(0);
|
|
|
|
}
|
2004-10-01 15:33:16 +08:00
|
|
|
ldap_pvt_thread_mutex_unlock(&SLAPD_GLOBAL(counters).sc_sent_mutex);
|
2004-09-11 19:05:41 +08:00
|
|
|
|
|
|
|
a = attr_find( e->e_attrs, mi->mi_ad_monitorCounter );
|
2004-09-13 06:12:58 +08:00
|
|
|
assert( a );
|
2001-12-23 03:14:10 +08:00
|
|
|
|
2004-09-13 06:12:58 +08:00
|
|
|
/* NOTE: no minus sign is allowed in the counters... */
|
|
|
|
UI2BV( &a->a_vals[ 0 ], n );
|
2004-09-27 06:58:47 +08:00
|
|
|
ldap_pvt_mp_clear( n );
|
2004-09-11 19:05:41 +08:00
|
|
|
|
|
|
|
return 0;
|
2001-12-23 03:14:10 +08:00
|
|
|
}
|
|
|
|
|