X-Git-Url: https://git.sur5r.net/?a=blobdiff_plain;f=servers%2Fslapd%2Fmonitor.c;h=0c6e4d6863bf29b0682a36b81a8288912a37e93f;hb=0743e963cac4aca63ea40e837fb3e7f59cbec04d;hp=855a2e8dc047852be6fd9064b114e79851f7c99a;hpb=73276e84ae32e9e148197971d1d6729739980353;p=openldap diff --git a/servers/slapd/monitor.c b/servers/slapd/monitor.c index 855a2e8dc0..0c6e4d6863 100644 --- a/servers/slapd/monitor.c +++ b/servers/slapd/monitor.c @@ -1,3 +1,7 @@ +/* + * Copyright 1998-1999 The OpenLDAP Foundation, All Rights Reserved. + * COPYING RESTRICTIONS APPLY, see COPYRIGHT file + */ /* * Copyright (c) 1995 Regents of the University of Michigan. * All rights reserved. @@ -24,7 +28,11 @@ #if defined( SLAPD_MONITOR_DN ) void -monitor_info( Connection *conn, Operation *op ) +monitor_info( + Connection *conn, + Operation *op, + char ** attrs, + int attrsonly ) { Entry *e; char buf[BUFSIZ]; @@ -46,9 +54,24 @@ monitor_info( Connection *conn, Operation *op ) /* initialize reader/writer lock */ e->e_attrs = NULL; e->e_dn = ch_strdup( SLAPD_MONITOR_DN ); - e->e_ndn = dn_normalize_case( ch_strdup(SLAPD_MONITOR_DN) ); + e->e_ndn = ch_strdup(SLAPD_MONITOR_DN); + (void) dn_normalize_case( e->e_ndn ); e->e_private = NULL; + { + char *rdn = ch_strdup( SLAPD_MONITOR_DN ); + val.bv_val = strchr( rdn, '=' ); + + if( val.bv_val != NULL ) { + *val.bv_val = '\0'; + val.bv_len = strlen( ++val.bv_val ); + + attr_merge( e, rdn, vals ); + } + + free( rdn ); + } + val.bv_val = (char *) Versionstr; if (( p = strchr( Versionstr, '\n' )) == NULL ) { val.bv_len = strlen( Versionstr ); @@ -104,7 +127,7 @@ monitor_info( Connection *conn, Operation *op ) ": %ld/%ld/%ld " ": %s%s%s%s%s%s " ": %s : %s : %s " - ": %s : %s", + ": %s : %s : %s : %s ", c->c_connid, (long) c->c_protocol, @@ -123,8 +146,11 @@ monitor_info( Connection *conn, Operation *op ) c->c_bind_in_progress ? "S" : "", c->c_cdn ? c->c_cdn : "", - c->c_client_addr ? c->c_client_addr : "unknown", - c->c_client_name ? c->c_client_name : "unknown", + + c->c_listener_url, + c->c_peer_domain, + c->c_peer_name, + c->c_sock_name, buf2, buf3 @@ -242,8 +268,16 @@ monitor_info( Connection *conn, Operation *op ) attr_merge( e, "concurrency", vals ); #endif + val.bv_val = "top"; + val.bv_len = sizeof("top")-1; + attr_merge( e, "objectClass", vals ); + + val.bv_val = "extensibleObject"; + val.bv_len = sizeof("extensibleObject")-1; + attr_merge( e, "objectClass", vals ); + send_search_entry( &backends[0], conn, op, e, - NULL, 0, 1, NULL ); + attrs, attrsonly, NULL ); send_search_result( conn, op, LDAP_SUCCESS, NULL, NULL, NULL, NULL, 1 );