mirror of
https://git.openldap.org/openldap/openldap.git
synced 2024-12-15 03:01:09 +08:00
132 lines
2.4 KiB
C
132 lines
2.4 KiB
C
#include "portable.h"
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <ac/stdlib.h>
|
|
|
|
#include <ac/ctype.h>
|
|
#include <ac/socket.h>
|
|
#include <ac/string.h>
|
|
#include <ac/unistd.h>
|
|
#include <ac/wait.h>
|
|
|
|
#ifdef HAVE_SYS_PARAM_H
|
|
#include <sys/param.h>
|
|
#endif
|
|
|
|
#include "lber.h"
|
|
#include "ldap.h"
|
|
|
|
#define LOOPS 100
|
|
|
|
static void
|
|
do_search( char *host, int port, char *sbase, char *filter, int maxloop );
|
|
|
|
static void
|
|
usage( char *name )
|
|
{
|
|
fprintf( stderr, "usage: %s [-h <host>] -p port -b <searchbase> -f <searchfiter> [-l <loops>]\n",
|
|
name );
|
|
exit( 1 );
|
|
}
|
|
|
|
int
|
|
main( int argc, char **argv )
|
|
{
|
|
int i;
|
|
char *host = "localhost";
|
|
int port = -1;
|
|
char *sbase = NULL;
|
|
char *filter = NULL;
|
|
int loops = LOOPS;
|
|
|
|
while ( (i = getopt( argc, argv, "h:p:b:f:l:" )) != EOF ) {
|
|
switch( i ) {
|
|
case 'h': /* the servers host */
|
|
host = strdup( optarg );
|
|
break;
|
|
|
|
case 'p': /* the servers port */
|
|
port = atoi( optarg );
|
|
break;
|
|
|
|
case 'b': /* file with search base */
|
|
sbase = strdup( optarg );
|
|
break;
|
|
|
|
case 'f': /* the search request */
|
|
filter = strdup( optarg );
|
|
break;
|
|
|
|
case 'l': /* number of loops */
|
|
loops = atoi( optarg );
|
|
break;
|
|
|
|
default:
|
|
usage( argv[0] );
|
|
break;
|
|
}
|
|
}
|
|
|
|
if (( sbase == NULL ) || ( filter == NULL ) || ( port == -1 ))
|
|
usage( argv[0] );
|
|
|
|
if ( *filter == '\0' ) {
|
|
|
|
fprintf( stderr, "%s: invalid EMPTY search filter.\n",
|
|
argv[0] );
|
|
exit( 1 );
|
|
|
|
}
|
|
|
|
do_search( host, port, sbase, filter, ( 4 * loops ));
|
|
|
|
exit( 0 );
|
|
}
|
|
|
|
|
|
static void
|
|
do_search( char *host, int port, char *sbase, char *filter, int maxloop )
|
|
{
|
|
LDAP *ld;
|
|
int i;
|
|
char *attrs[] = { "cn", "sn", NULL };
|
|
pid_t pid = getpid();
|
|
|
|
if (( ld = ldap_init( host, port )) == NULL ) {
|
|
perror( "ldap_init" );
|
|
exit( 1 );
|
|
}
|
|
|
|
if ( ldap_bind_s( ld, NULL, NULL, LDAP_AUTH_SIMPLE ) != LDAP_SUCCESS ) {
|
|
ldap_perror( ld, "ldap_bind" );
|
|
exit( 1 );
|
|
}
|
|
|
|
|
|
fprintf( stderr, "PID=%ld - Search(%d): base=\"%s\", filter=\"%s\".\n",
|
|
(long) pid, maxloop, sbase, filter );
|
|
|
|
for ( i = 0; i < maxloop; i++ ) {
|
|
LDAPMessage *res;
|
|
int rc;
|
|
|
|
if (( rc = ldap_search_s( ld, sbase, LDAP_SCOPE_SUBTREE,
|
|
filter, attrs, 0, &res )) != LDAP_SUCCESS ) {
|
|
|
|
ldap_perror( ld, "ldap_search" );
|
|
if ( rc != LDAP_NO_SUCH_OBJECT ) break;
|
|
continue;
|
|
|
|
}
|
|
|
|
ldap_msgfree( res );
|
|
}
|
|
|
|
fprintf( stderr, " PID=%ld - Search done.\n", (long) pid );
|
|
|
|
ldap_unbind( ld );
|
|
}
|
|
|
|
|