mirror of
https://git.openldap.org/openldap/openldap.git
synced 2024-12-27 03:20:22 +08:00
350 lines
7.7 KiB
C
350 lines
7.7 KiB
C
/* thread.c - deal with thread subsystem */
|
|
/* $OpenLDAP$ */
|
|
/* This work is part of OpenLDAP Software <http://www.openldap.org/>.
|
|
*
|
|
* Copyright 2001-2006 The OpenLDAP Foundation.
|
|
* Portions Copyright 2001-2003 Pierangelo Masarati.
|
|
* 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.
|
|
*/
|
|
|
|
#include "portable.h"
|
|
|
|
#include <stdio.h>
|
|
#include <ac/string.h>
|
|
|
|
#include "slap.h"
|
|
#include "back-monitor.h"
|
|
|
|
#include <ldap_rq.h>
|
|
|
|
static int
|
|
monitor_subsys_thread_update(
|
|
Operation *op,
|
|
SlapReply *rs,
|
|
Entry *e );
|
|
|
|
/*
|
|
* initializes log subentry
|
|
*/
|
|
int
|
|
monitor_subsys_thread_init(
|
|
BackendDB *be,
|
|
monitor_subsys_t *ms
|
|
)
|
|
{
|
|
monitor_info_t *mi;
|
|
monitor_entry_t *mp;
|
|
Entry *e, **ep, *e_thread;
|
|
static char buf[ BACKMONITOR_BUFSIZE ];
|
|
struct berval bv;
|
|
|
|
ms->mss_update = monitor_subsys_thread_update;
|
|
|
|
mi = ( monitor_info_t * )be->be_private;
|
|
|
|
if ( monitor_cache_get( mi, &ms->mss_ndn, &e_thread ) ) {
|
|
Debug( LDAP_DEBUG_ANY,
|
|
"monitor_subsys_thread_init: unable to get entry \"%s\"\n",
|
|
ms->mss_ndn.bv_val,
|
|
0, 0 );
|
|
return( -1 );
|
|
}
|
|
|
|
mp = ( monitor_entry_t * )e_thread->e_private;
|
|
mp->mp_children = NULL;
|
|
ep = &mp->mp_children;
|
|
|
|
/*
|
|
* Max
|
|
*/
|
|
BER_BVSTR( &bv, "cn=Max" );
|
|
e = monitor_entry_stub( &ms->mss_dn, &ms->mss_ndn, &bv,
|
|
mi->mi_oc_monitoredObject, mi, NULL, NULL );
|
|
if ( e == NULL ) {
|
|
Debug( LDAP_DEBUG_ANY,
|
|
"monitor_subsys_thread_init: "
|
|
"unable to create entry \"cn=Max,%s\"\n",
|
|
ms->mss_ndn.bv_val, 0, 0 );
|
|
return( -1 );
|
|
}
|
|
bv.bv_len = snprintf( buf, sizeof( buf ), "%d", connection_pool_max );
|
|
bv.bv_val = buf;
|
|
attr_merge_normalize_one( e, mi->mi_ad_monitoredInfo, &bv, NULL );
|
|
|
|
mp = monitor_entrypriv_create();
|
|
if ( mp == NULL ) {
|
|
return -1;
|
|
}
|
|
e->e_private = ( void * )mp;
|
|
mp->mp_info = ms;
|
|
mp->mp_flags = ms->mss_flags \
|
|
| MONITOR_F_SUB | MONITOR_F_PERSISTENT;
|
|
|
|
if ( monitor_cache_add( mi, e ) ) {
|
|
Debug( LDAP_DEBUG_ANY,
|
|
"monitor_subsys_thread_init: "
|
|
"unable to add entry \"cn=Max,%s\"\n",
|
|
ms->mss_ndn.bv_val, 0, 0 );
|
|
return( -1 );
|
|
}
|
|
|
|
*ep = e;
|
|
ep = &mp->mp_next;
|
|
|
|
/*
|
|
* Backload
|
|
*/
|
|
BER_BVSTR( &bv, "cn=Backload" );
|
|
e = monitor_entry_stub( &ms->mss_dn, &ms->mss_ndn, &bv,
|
|
mi->mi_oc_monitoredObject, mi, NULL, NULL );
|
|
if ( e == NULL ) {
|
|
Debug( LDAP_DEBUG_ANY,
|
|
"monitor_subsys_thread_init: "
|
|
"unable to create entry \"cn=Backload,%s\"\n",
|
|
ms->mss_ndn.bv_val, 0, 0 );
|
|
return( -1 );
|
|
}
|
|
BER_BVSTR( &bv, "0" );
|
|
attr_merge_normalize_one( e, mi->mi_ad_monitoredInfo, &bv, NULL );
|
|
|
|
mp = monitor_entrypriv_create();
|
|
if ( mp == NULL ) {
|
|
return -1;
|
|
}
|
|
e->e_private = ( void * )mp;
|
|
mp->mp_info = ms;
|
|
mp->mp_flags = ms->mss_flags \
|
|
| MONITOR_F_SUB | MONITOR_F_PERSISTENT;
|
|
|
|
if ( monitor_cache_add( mi, e ) ) {
|
|
Debug( LDAP_DEBUG_ANY,
|
|
"monitor_subsys_thread_init: "
|
|
"unable to add entry \"cn=Backload,%s\"\n",
|
|
ms->mss_ndn.bv_val, 0, 0 );
|
|
return( -1 );
|
|
}
|
|
|
|
*ep = e;
|
|
ep = &mp->mp_next;
|
|
|
|
/*
|
|
* Runqueue runners
|
|
*/
|
|
BER_BVSTR( &bv, "cn=Runqueue" );
|
|
e = monitor_entry_stub( &ms->mss_dn, &ms->mss_ndn, &bv,
|
|
mi->mi_oc_monitoredObject, mi, NULL, NULL );
|
|
if ( e == NULL ) {
|
|
Debug( LDAP_DEBUG_ANY,
|
|
"monitor_subsys_thread_init: "
|
|
"unable to create entry \"cn=Runqueue,%s\"\n",
|
|
ms->mss_ndn.bv_val, 0, 0 );
|
|
return( -1 );
|
|
}
|
|
|
|
mp = monitor_entrypriv_create();
|
|
if ( mp == NULL ) {
|
|
return -1;
|
|
}
|
|
e->e_private = ( void * )mp;
|
|
mp->mp_info = ms;
|
|
mp->mp_flags = ms->mss_flags \
|
|
| MONITOR_F_SUB | MONITOR_F_PERSISTENT;
|
|
|
|
if ( monitor_cache_add( mi, e ) ) {
|
|
Debug( LDAP_DEBUG_ANY,
|
|
"monitor_subsys_thread_init: "
|
|
"unable to add entry \"cn=Runqueue,%s\"\n",
|
|
ms->mss_ndn.bv_val, 0, 0 );
|
|
return( -1 );
|
|
}
|
|
|
|
*ep = e;
|
|
ep = &mp->mp_next;
|
|
|
|
/*
|
|
* Tasklist
|
|
*/
|
|
BER_BVSTR( &bv, "cn=Tasklist" );
|
|
e = monitor_entry_stub( &ms->mss_dn, &ms->mss_ndn, &bv,
|
|
mi->mi_oc_monitoredObject, mi, NULL, NULL );
|
|
if ( e == NULL ) {
|
|
Debug( LDAP_DEBUG_ANY,
|
|
"monitor_subsys_thread_init: "
|
|
"unable to create entry \"%s,%s\"\n",
|
|
bv.bv_val, ms->mss_ndn.bv_val, 0 );
|
|
return( -1 );
|
|
}
|
|
|
|
mp = monitor_entrypriv_create();
|
|
if ( mp == NULL ) {
|
|
return -1;
|
|
}
|
|
e->e_private = ( void * )mp;
|
|
mp->mp_info = ms;
|
|
mp->mp_flags = ms->mss_flags \
|
|
| MONITOR_F_SUB | MONITOR_F_PERSISTENT;
|
|
|
|
if ( monitor_cache_add( mi, e ) ) {
|
|
Debug( LDAP_DEBUG_ANY,
|
|
"monitor_subsys_thread_init: "
|
|
"unable to add entry \"%s\"\n",
|
|
e->e_name.bv_val, 0, 0 );
|
|
return( -1 );
|
|
}
|
|
|
|
*ep = e;
|
|
ep = &mp->mp_next;
|
|
|
|
monitor_cache_release( mi, e_thread );
|
|
|
|
return( 0 );
|
|
}
|
|
|
|
static int
|
|
monitor_subsys_thread_update(
|
|
Operation *op,
|
|
SlapReply *rs,
|
|
Entry *e )
|
|
{
|
|
monitor_info_t *mi = ( monitor_info_t * )op->o_bd->be_private;
|
|
Attribute *a;
|
|
BerVarray vals = NULL;
|
|
char buf[ BACKMONITOR_BUFSIZE ];
|
|
enum {
|
|
MT_UNKNOWN,
|
|
MT_MAX,
|
|
MT_BACKLOAD,
|
|
MT_RUNQUEUE,
|
|
MT_TASKLIST,
|
|
|
|
MT_LAST
|
|
};
|
|
static slap_verbmasks mt[] = {
|
|
{ BER_BVC( "cn=max" ), MT_MAX },
|
|
{ BER_BVC( "cn=backload" ), MT_BACKLOAD },
|
|
{ BER_BVC( "cn=runqueue" ), MT_RUNQUEUE },
|
|
{ BER_BVC( "cn=tasklist" ), MT_TASKLIST },
|
|
{ BER_BVNULL, MT_UNKNOWN }
|
|
};
|
|
struct berval rdn, bv;
|
|
int which, i;
|
|
struct re_s *re;
|
|
|
|
assert( mi != NULL );
|
|
|
|
dnRdn( &e->e_nname, &rdn );
|
|
|
|
which = bverb_to_mask( &rdn, mt );
|
|
if ( BER_BVISNULL( &mt[ which ].word )
|
|
|| mt[ which ].mask == MT_UNKNOWN )
|
|
{
|
|
return SLAP_CB_CONTINUE;
|
|
}
|
|
|
|
a = attr_find( e->e_attrs, mi->mi_ad_monitoredInfo );
|
|
|
|
switch ( mt[ which ].mask ) {
|
|
case MT_MAX:
|
|
if ( a == NULL ) {
|
|
return rs->sr_err = LDAP_OTHER;
|
|
}
|
|
bv.bv_val = buf;
|
|
bv.bv_len = snprintf( buf, sizeof( buf ), "%d", connection_pool_max );
|
|
if ( bv.bv_len >= sizeof( buf ) ) {
|
|
/* FIXME? */
|
|
break;
|
|
}
|
|
ber_bvreplace( &a->a_vals[ 0 ], &bv );
|
|
break;
|
|
|
|
case MT_BACKLOAD:
|
|
if ( a == NULL ) {
|
|
return rs->sr_err = LDAP_OTHER;
|
|
}
|
|
bv.bv_val = buf;
|
|
bv.bv_len = snprintf( buf, sizeof( buf ), "%d",
|
|
ldap_pvt_thread_pool_backload( &connection_pool ) );
|
|
if ( bv.bv_len >= sizeof( buf ) ) {
|
|
/* FIXME? */
|
|
break;
|
|
}
|
|
ber_bvreplace( &a->a_vals[ 0 ], &bv );
|
|
break;
|
|
|
|
case MT_RUNQUEUE:
|
|
if ( a != NULL ) {
|
|
if ( a->a_nvals != a->a_vals ) {
|
|
ber_bvarray_free( a->a_nvals );
|
|
}
|
|
ber_bvarray_free( a->a_vals );
|
|
a->a_vals = NULL;
|
|
a->a_nvals = NULL;
|
|
}
|
|
|
|
i = 0;
|
|
bv.bv_val = buf;
|
|
ldap_pvt_thread_mutex_lock( &slapd_rq.rq_mutex );
|
|
LDAP_STAILQ_FOREACH( re, &slapd_rq.run_list, rnext ) {
|
|
bv.bv_len = snprintf( buf, sizeof( buf ), "{%d}%s(%s)",
|
|
i, re->tname, re->tspec );
|
|
if ( bv.bv_len < sizeof( buf ) ) {
|
|
value_add_one( &vals, &bv );
|
|
}
|
|
i++;
|
|
}
|
|
ldap_pvt_thread_mutex_unlock( &slapd_rq.rq_mutex );
|
|
|
|
if ( vals ) {
|
|
attr_merge_normalize( e, mi->mi_ad_monitoredInfo, vals, NULL );
|
|
ber_bvarray_free( vals );
|
|
}
|
|
break;
|
|
|
|
case MT_TASKLIST:
|
|
if ( a != NULL ) {
|
|
if ( a->a_nvals != a->a_vals ) {
|
|
ber_bvarray_free( a->a_nvals );
|
|
}
|
|
ber_bvarray_free( a->a_vals );
|
|
a->a_vals = NULL;
|
|
a->a_nvals = NULL;
|
|
}
|
|
|
|
i = 0;
|
|
bv.bv_val = buf;
|
|
ldap_pvt_thread_mutex_lock( &slapd_rq.rq_mutex );
|
|
LDAP_STAILQ_FOREACH( re, &slapd_rq.task_list, tnext ) {
|
|
bv.bv_len = snprintf( buf, sizeof( buf ), "{%d}%s(%s)",
|
|
i, re->tname, re->tspec );
|
|
if ( bv.bv_len < sizeof( buf ) ) {
|
|
value_add_one( &vals, &bv );
|
|
}
|
|
i++;
|
|
}
|
|
ldap_pvt_thread_mutex_unlock( &slapd_rq.rq_mutex );
|
|
|
|
if ( vals ) {
|
|
attr_merge_normalize( e, mi->mi_ad_monitoredInfo, vals, NULL );
|
|
ber_bvarray_free( vals );
|
|
}
|
|
break;
|
|
}
|
|
|
|
/* FIXME: touch modifyTimestamp? */
|
|
|
|
return SLAP_CB_CONTINUE;
|
|
}
|
|
|