]> git.sur5r.net Git - openldap/blob - servers/slapd/monitor.c
Merge in latest from -current.
[openldap] / servers / slapd / monitor.c
1 /*
2  * Copyright (c) 1995 Regents of the University of Michigan.
3  * All rights reserved.
4  *
5  * Redistribution and use in source and binary forms are permitted
6  * provided that this notice is preserved and that due credit is given
7  * to the University of Michigan at Ann Arbor. The name of the University
8  * may not be used to endorse or promote products derived from this
9  * software without specific prior written permission. This software
10  * is provided ``as is'' without express or implied warranty.
11  */
12
13 /* Revision history
14  *
15  * 5-Jun-96     jeff.hodges@stanford.edu
16  *      Added locking of new_conn_mutex when traversing the c[] array.
17  *      Added locking of currenttime_mutex to protect call(s) to localtime().
18  */
19
20 #include <stdio.h>
21 #include <string.h>
22 #include <time.h>
23 #include <sys/types.h>
24 #include <sys/socket.h>
25 #include "slap.h"
26 #include "ldapconfig.h"
27
28 #if defined( SLAPD_MONITOR_DN )
29
30 extern int              nbackends;
31 extern Backend          *backends;
32 extern int              active_threads;
33 extern int              dtblsize;
34 extern Connection       *c;
35 extern long             ops_initiated;
36 extern long             ops_completed;
37 extern long             num_entries_sent;
38 extern long             num_bytes_sent;
39 extern time_t           currenttime;
40 extern time_t           starttime;
41 extern int              num_conns;
42
43 extern pthread_mutex_t  new_conn_mutex;
44 extern pthread_mutex_t  currenttime_mutex;
45
46 extern char Versionstr[];
47
48 void
49 monitor_info( Connection *conn, Operation *op )
50 {
51         Entry           *e;
52         char            buf[BUFSIZ], buf2[22];
53         struct berval   val;
54         struct berval   *vals[2];
55         int             i, nconns, nwritewaiters, nreadwaiters;
56         struct tm       *ltm;
57         char            *p, *tmpdn;
58
59         vals[0] = &val;
60         vals[1] = NULL;
61
62         e = (Entry *) ch_calloc( 1, sizeof(Entry) );
63         /* initialize reader/writer lock */
64         entry_rdwr_init(e);
65         e->e_attrs = NULL;
66         e->e_dn = strdup( SLAPD_MONITOR_DN );
67
68         val.bv_val = Versionstr;
69         if (( p = strchr( Versionstr, '\n' )) == NULL ) {
70                 val.bv_len = strlen( Versionstr );
71         } else {
72                 val.bv_len = p - Versionstr;
73         }
74         attr_merge( e, "version", vals );
75
76         sprintf( buf, "%d", active_threads );
77         val.bv_val = buf;
78         val.bv_len = strlen( buf );
79         attr_merge( e, "threads", vals );
80
81         nconns = 0;
82         nwritewaiters = 0;
83         nreadwaiters = 0;
84
85         pthread_mutex_lock( &new_conn_mutex );
86         for ( i = 0; i < dtblsize; i++ ) {
87                 if ( c[i].c_sb.sb_sd != -1 ) {
88                         nconns++;
89                         if ( c[i].c_writewaiter ) {
90                                 nwritewaiters++;
91                         }
92                         if ( c[i].c_gettingber ) {
93                                 nreadwaiters++;
94                         }
95                         pthread_mutex_lock( &currenttime_mutex );
96                         ltm = localtime( &c[i].c_starttime );
97 #ifdef LDAP_Y2K
98                         strftime( buf2, sizeof(buf2), "%Y%m%d%H%M%SZ", ltm );
99 #else
100                         strftime( buf2, sizeof(buf2), "%y%m%d%H%M%SZ", ltm );
101 #endif
102                         pthread_mutex_unlock( &currenttime_mutex );
103
104                         pthread_mutex_lock( &c[i].c_dnmutex );
105                         sprintf( buf, "%d : %s : %ld : %ld : %s : %s%s", i,
106                             buf2, c[i].c_opsinitiated, c[i].c_opscompleted,
107                             c[i].c_dn ? c[i].c_dn : "NULLDN",
108                             c[i].c_gettingber ? "r" : "",
109                             c[i].c_writewaiter ? "w" : "" );
110                         pthread_mutex_unlock( &c[i].c_dnmutex );
111                         val.bv_val = buf;
112                         val.bv_len = strlen( buf );
113                         attr_merge( e, "connection", vals );
114                 }
115         }
116         pthread_mutex_unlock( &new_conn_mutex );
117
118         sprintf( buf, "%d", nconns );
119         val.bv_val = buf;
120         val.bv_len = strlen( buf );
121         attr_merge( e, "currentconnections", vals );
122
123         sprintf( buf, "%d", num_conns );
124         val.bv_val = buf;
125         val.bv_len = strlen( buf );
126         attr_merge( e, "totalconnections", vals );
127
128         sprintf( buf, "%d", dtblsize );
129         val.bv_val = buf;
130         val.bv_len = strlen( buf );
131         attr_merge( e, "dtablesize", vals );
132
133         sprintf( buf, "%d", nwritewaiters );
134         val.bv_val = buf;
135         val.bv_len = strlen( buf );
136         attr_merge( e, "writewaiters", vals );
137
138         sprintf( buf, "%d", nreadwaiters );
139         val.bv_val = buf;
140         val.bv_len = strlen( buf );
141         attr_merge( e, "readwaiters", vals );
142
143         sprintf( buf, "%ld", ops_initiated );
144         val.bv_val = buf;
145         val.bv_len = strlen( buf );
146         attr_merge( e, "opsinitiated", vals );
147
148         sprintf( buf, "%ld", ops_completed );
149         val.bv_val = buf;
150         val.bv_len = strlen( buf );
151         attr_merge( e, "opscompleted", vals );
152
153         sprintf( buf, "%ld", num_entries_sent );
154         val.bv_val = buf;
155         val.bv_len = strlen( buf );
156         attr_merge( e, "entriessent", vals );
157
158         sprintf( buf, "%ld", num_bytes_sent );
159         val.bv_val = buf;
160         val.bv_len = strlen( buf );
161         attr_merge( e, "bytessent", vals );
162
163         pthread_mutex_lock( &currenttime_mutex );
164         ltm = localtime( &currenttime );
165 #ifdef LDAP_Y2K
166         strftime( buf, sizeof(buf), "%Y%m%d%H%M%SZ", ltm );
167 #else
168         strftime( buf, sizeof(buf), "%y%m%d%H%M%SZ", ltm );
169 #endif
170         pthread_mutex_unlock( &currenttime_mutex );
171         val.bv_val = buf;
172         val.bv_len = strlen( buf );
173         attr_merge( e, "currenttime", vals );
174
175         pthread_mutex_lock( &currenttime_mutex );
176         ltm = localtime( &starttime );
177 #ifdef LDAP_Y2K
178         strftime( buf, sizeof(buf), "%Y%m%d%H%M%SZ", ltm );
179 #else
180         strftime( buf, sizeof(buf), "%y%m%d%H%M%SZ", ltm );
181 #endif
182         pthread_mutex_unlock( &currenttime_mutex );
183         val.bv_val = buf;
184         val.bv_len = strlen( buf );
185         attr_merge( e, "starttime", vals );
186
187         sprintf( buf, "%d", nbackends );
188         val.bv_val = buf;
189         val.bv_len = strlen( buf );
190         attr_merge( e, "nbackends", vals );
191
192 #ifdef THREAD_SUNOS5_LWP
193         sprintf( buf, "%d", thr_getconcurrency() );
194         val.bv_val = buf;
195         val.bv_len = strlen( buf );
196         attr_merge( e, "concurrency", vals );
197 #endif
198
199         send_search_entry( &backends[0], conn, op, e, NULL, 0 );
200         send_ldap_search_result( conn, op, LDAP_SUCCESS, NULL, NULL, 1 );
201
202         entry_free( e );
203 }
204
205 #endif /* slapd_monitor_dn */