]> git.sur5r.net Git - openldap/blob - servers/slapd/back-monitor/thread.c
Changed ldap_pvt_tls_get_my_dn and ldap_pvt_tls_get_peer_dn to store result
[openldap] / servers / slapd / back-monitor / thread.c
1 /* thread.c - deal with thread subsystem */
2 /*
3  * Copyright 1998-2002 The OpenLDAP Foundation, All Rights Reserved.
4  * COPYING RESTRICTIONS APPLY, see COPYRIGHT file
5  */
6 /*
7  * Copyright 2001, Pierangelo Masarati, All rights reserved. <ando@sys-net.it>
8  * 
9  * This work has beed deveolped for the OpenLDAP Foundation 
10  * in the hope that it may be useful to the Open Source community, 
11  * but WITHOUT ANY WARRANTY.
12  * 
13  * Permission is granted to anyone to use this software for any purpose
14  * on any computer system, and to alter it and redistribute it, subject
15  * to the following restrictions:
16  * 
17  * 1. The author and SysNet s.n.c. are not responsible for the consequences
18  *    of use of this software, no matter how awful, even if they arise from
19  *    flaws in it.
20  * 
21  * 2. The origin of this software must not be misrepresented, either by
22  *    explicit claim or by omission.  Since few users ever read sources,
23  *    credits should appear in the documentation.
24  * 
25  * 3. Altered versions must be plainly marked as such, and must not be
26  *    misrepresented as being the original software.  Since few users
27  *    ever read sources, credits should appear in the documentation.
28  *    SysNet s.n.c. cannot be responsible for the consequences of the
29  *    alterations.
30  * 
31  * 4. This notice may not be removed or altered.
32  */
33
34 #include "portable.h"
35
36 #include <stdio.h>
37
38 #include "slap.h"
39 #include "back-monitor.h"
40
41 /*
42 *  * initializes log subentry
43 *   */
44 int
45 monitor_subsys_thread_init(
46         BackendDB       *be
47 )
48 {
49         struct monitorinfo      *mi;
50         Entry                   *e;
51         struct berval           bv[2];
52         static char             buf[1024];
53
54         mi = ( struct monitorinfo * )be->be_private;
55
56         if ( monitor_cache_get( mi, 
57                 &monitor_subsys[SLAPD_MONITOR_THREAD].mss_ndn, &e ) )
58         {
59 #ifdef NEW_LOGGING
60                 LDAP_LOG(( "operation", LDAP_LEVEL_CRIT,
61                         "monitor_subsys_thread_init: unable to get entry '%s'\n",
62                         monitor_subsys[SLAPD_MONITOR_THREAD].mss_ndn.bv_val ));
63 #else
64                 Debug( LDAP_DEBUG_ANY,
65                         "monitor_subsys_thread_init: unable to get entry '%s'\n",
66                         monitor_subsys[SLAPD_MONITOR_THREAD].mss_ndn.bv_val, 
67                         0, 0 );
68 #endif
69                 return( -1 );
70         }
71
72         /* initialize the thread number */
73         snprintf( buf, sizeof( buf ), "max=%d", connection_pool_max );
74
75         bv[1].bv_val = NULL;
76         bv[0].bv_val = buf;
77         bv[0].bv_len = strlen( bv[0].bv_val );
78
79         attr_merge( e, monitor_ad_desc, bv );
80
81         monitor_cache_release( mi, e );
82
83         return( 0 );
84 }
85
86 int 
87 monitor_subsys_thread_update( 
88         struct monitorinfo      *mi,
89         Entry                   *e
90 )
91 {
92         Attribute               *a;
93         struct berval           bv[2], *b = NULL;
94         char                    buf[1024];
95
96         bv[1].bv_val = NULL;
97
98         snprintf( buf, sizeof( buf ), "backload=%d", 
99                         ldap_pvt_thread_pool_backload( &connection_pool ) );
100
101         if ( ( a = attr_find( e->e_attrs, monitor_ad_desc ) ) != NULL ) {
102
103                 for ( b = a->a_vals; b[0].bv_val != NULL; b++ ) {
104                         if ( strncmp( b[0].bv_val, "backload=", 
105                                         sizeof( "backload=" ) - 1 ) == 0 ) {
106                                 free( b[0].bv_val );
107                                 ber_str2bv( buf, 0, 1, &b[0] );
108                                 break;
109                         }
110                 }
111         }
112
113         if ( b == NULL || b[0].bv_val == NULL ) {
114                 bv[0].bv_val = buf;
115                 bv[0].bv_len = strlen( buf );
116                 attr_merge( e, monitor_ad_desc, bv );
117         }
118
119         return( 0 );
120 }
121