/* $OpenLDAP: pkg/ldap/tests/progs/slapd-read.c,v 1.6.8.5 2002/01/04 20:38:37 kurt Exp $ */ /* * Copyright 1998-2002 The OpenLDAP Foundation, All Rights Reserved. * COPYING RESTRICTIONS APPLY, see COPYRIGHT file */ #include "portable.h" #include #include #include //#include //#include #include #include #include #include #define LOOPS 100 static void do_read( char *host, int port, char *entry, int maxloop ); static void usage( char *name ) { fprintf( stderr, "usage: %s [-h ] -p port -e [-l ]\n", name ); exit( EXIT_FAILURE ); } int main( int argc, char **argv ) { int i; char *host = "localhost"; int port = -1; char *entry = NULL; int loops = LOOPS; while ( (i = getopt( argc, argv, "h:p:e:l:" )) != EOF ) { switch( i ) { 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; } } if (( entry == NULL ) || ( port == -1 )) usage( argv[0] ); if ( *entry == '\0' ) { fprintf( stderr, "%s: invalid EMPTY entry DN.\n", argv[0] ); exit( EXIT_FAILURE ); } do_read( host, port, entry, ( 10 * loops )); exit( EXIT_SUCCESS ); } static void do_read( char *host, int port, char *entry, int maxloop ) { LDAP *ld; int i; char *attrs[] = { "1.1", NULL }; pid_t pid = getpid(); if (( ld = ldap_init( host, port )) == NULL ) { perror( "ldap_init" ); exit( EXIT_FAILURE ); } if ( ldap_bind_s( ld, NULL, NULL, LDAP_AUTH_SIMPLE ) != LDAP_SUCCESS ) { ldap_perror( ld, "ldap_bind" ); exit( EXIT_FAILURE ); } fprintf( stderr, "PID=%ld - Read(%d): entry=\"%s\".\n", (long) pid, maxloop, entry ); for ( i = 0; i < maxloop; i++ ) { LDAPMessage *res; int rc; if (( rc = ldap_search_s( ld, entry, LDAP_SCOPE_BASE, NULL, attrs, 1, &res )) != LDAP_SUCCESS ) { ldap_perror( ld, "ldap_read" ); if ( rc != LDAP_NO_SUCH_OBJECT ) break; continue; } ldap_msgfree( res ); } fprintf( stderr, " PID=%ld - Read done.\n", (long) pid ); ldap_unbind( ld ); }