1999-09-02 16:40:22 +08:00
|
|
|
/* $OpenLDAP$ */
|
1999-09-02 08:56:32 +08:00
|
|
|
/*
|
2003-01-04 04:20:47 +08:00
|
|
|
* Copyright 1998-2003 The OpenLDAP Foundation, All Rights Reserved.
|
1999-09-02 08:56:32 +08:00
|
|
|
* COPYING RESTRICTIONS APPLY, see COPYRIGHT file
|
|
|
|
*/
|
1999-02-15 18:49:20 +08:00
|
|
|
#include "portable.h"
|
|
|
|
|
|
|
|
#include <stdio.h>
|
1999-06-03 08:37:44 +08:00
|
|
|
|
|
|
|
#include <ac/stdlib.h>
|
1999-02-15 18:49:20 +08:00
|
|
|
|
|
|
|
#include <ac/ctype.h>
|
1999-11-02 01:21:24 +08:00
|
|
|
#include <ac/param.h>
|
1999-02-15 18:49:20 +08:00
|
|
|
#include <ac/socket.h>
|
1999-03-29 09:55:49 +08:00
|
|
|
#include <ac/string.h>
|
1999-02-15 18:49:20 +08:00
|
|
|
#include <ac/unistd.h>
|
|
|
|
#include <ac/wait.h>
|
|
|
|
|
1999-08-04 02:14:24 +08:00
|
|
|
#include <ldap.h>
|
1999-02-15 18:49:20 +08:00
|
|
|
|
|
|
|
#define LOOPS 100
|
|
|
|
|
|
|
|
static void
|
2003-02-13 16:02:40 +08:00
|
|
|
do_read( char *uri, char *host, int port, char *entry, int maxloop );
|
1999-02-15 18:49:20 +08:00
|
|
|
|
|
|
|
static void
|
|
|
|
usage( char *name )
|
|
|
|
{
|
|
|
|
fprintf( stderr, "usage: %s [-h <host>] -p port -e <entry> [-l <loops>]\n",
|
|
|
|
name );
|
1999-08-04 02:14:24 +08:00
|
|
|
exit( EXIT_FAILURE );
|
1999-02-15 18:49:20 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
main( int argc, char **argv )
|
|
|
|
{
|
1999-03-06 14:33:34 +08:00
|
|
|
int i;
|
2003-02-13 16:02:40 +08:00
|
|
|
char *uri = NULL;
|
1999-02-15 18:49:20 +08:00
|
|
|
char *host = "localhost";
|
|
|
|
int port = -1;
|
|
|
|
char *entry = NULL;
|
|
|
|
int loops = LOOPS;
|
|
|
|
|
2003-02-13 16:02:40 +08:00
|
|
|
while ( (i = getopt( argc, argv, "H:h:p:e:l:" )) != EOF ) {
|
1999-02-15 18:49:20 +08:00
|
|
|
switch( i ) {
|
2003-02-13 16:02:40 +08:00
|
|
|
case 'H': /* the server uri */
|
|
|
|
uri = strdup( optarg );
|
|
|
|
break;
|
1999-02-15 18:49:20 +08:00
|
|
|
case 'h': /* the servers host */
|
|
|
|
host = strdup( optarg );
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 'p': /* the servers port */
|
|
|
|
port = atoi( optarg );
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 'e': /* file with entry search request */
|
|
|
|
entry = strdup( optarg );
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 'l': /* the number of loops */
|
|
|
|
loops = atoi( optarg );
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
usage( argv[0] );
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2003-02-13 16:02:40 +08:00
|
|
|
if (( entry == NULL ) || ( port == -1 && uri == NULL ))
|
1999-02-15 18:49:20 +08:00
|
|
|
usage( argv[0] );
|
|
|
|
|
|
|
|
if ( *entry == '\0' ) {
|
|
|
|
|
|
|
|
fprintf( stderr, "%s: invalid EMPTY entry DN.\n",
|
|
|
|
argv[0] );
|
1999-08-04 02:14:24 +08:00
|
|
|
exit( EXIT_FAILURE );
|
1999-02-15 18:49:20 +08:00
|
|
|
|
|
|
|
}
|
|
|
|
|
2003-02-13 16:02:40 +08:00
|
|
|
do_read( uri, host, port, entry, ( 20 * loops ));
|
1999-08-04 02:14:24 +08:00
|
|
|
exit( EXIT_SUCCESS );
|
1999-02-15 18:49:20 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void
|
2003-02-13 16:02:40 +08:00
|
|
|
do_read( char *uri, char *host, int port, char *entry, int maxloop )
|
1999-02-15 18:49:20 +08:00
|
|
|
{
|
2003-02-13 16:02:40 +08:00
|
|
|
LDAP *ld = NULL;
|
1999-02-15 18:49:20 +08:00
|
|
|
int i;
|
2000-04-12 16:31:32 +08:00
|
|
|
char *attrs[] = { "1.1", NULL };
|
1999-02-17 19:13:22 +08:00
|
|
|
pid_t pid = getpid();
|
1999-02-15 18:49:20 +08:00
|
|
|
|
2003-02-13 16:02:40 +08:00
|
|
|
if ( uri ) {
|
|
|
|
ldap_initialize( &ld, uri );
|
|
|
|
} else {
|
|
|
|
ld = ldap_init( host, port );
|
|
|
|
}
|
|
|
|
if ( ld == NULL ) {
|
1999-02-15 18:49:20 +08:00
|
|
|
perror( "ldap_init" );
|
1999-08-04 02:14:24 +08:00
|
|
|
exit( EXIT_FAILURE );
|
1999-02-15 18:49:20 +08:00
|
|
|
}
|
|
|
|
|
2001-12-20 13:58:08 +08:00
|
|
|
{
|
|
|
|
int version = LDAP_VERSION3;
|
|
|
|
(void) ldap_set_option( ld, LDAP_OPT_PROTOCOL_VERSION,
|
|
|
|
&version );
|
|
|
|
}
|
|
|
|
|
1999-02-15 18:49:20 +08:00
|
|
|
if ( ldap_bind_s( ld, NULL, NULL, LDAP_AUTH_SIMPLE ) != LDAP_SUCCESS ) {
|
|
|
|
ldap_perror( ld, "ldap_bind" );
|
1999-08-04 02:14:24 +08:00
|
|
|
exit( EXIT_FAILURE );
|
1999-02-15 18:49:20 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
1999-02-17 19:13:22 +08:00
|
|
|
fprintf( stderr, "PID=%ld - Read(%d): entry=\"%s\".\n",
|
1999-03-06 14:17:44 +08:00
|
|
|
(long) pid, maxloop, entry );
|
1999-02-15 18:49:20 +08:00
|
|
|
|
|
|
|
for ( i = 0; i < maxloop; i++ ) {
|
1999-02-17 19:13:22 +08:00
|
|
|
LDAPMessage *res;
|
|
|
|
int rc;
|
1999-02-15 18:49:20 +08:00
|
|
|
|
1999-02-17 19:13:22 +08:00
|
|
|
if (( rc = ldap_search_s( ld, entry, LDAP_SCOPE_BASE,
|
2000-04-12 16:31:32 +08:00
|
|
|
NULL, attrs, 1, &res )) != LDAP_SUCCESS ) {
|
1999-02-15 18:49:20 +08:00
|
|
|
|
|
|
|
ldap_perror( ld, "ldap_read" );
|
1999-02-17 19:13:22 +08:00
|
|
|
if ( rc != LDAP_NO_SUCH_OBJECT ) break;
|
|
|
|
continue;
|
1999-02-15 18:49:20 +08:00
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
ldap_msgfree( res );
|
|
|
|
}
|
|
|
|
|
1999-03-06 14:17:44 +08:00
|
|
|
fprintf( stderr, " PID=%ld - Read done.\n", (long) pid );
|
1999-02-17 19:13:22 +08:00
|
|
|
|
1999-02-15 18:49:20 +08:00
|
|
|
ldap_unbind( ld );
|
|
|
|
}
|
|
|
|
|
|
|
|
|