1999-09-02 16:40:22 +08:00
|
|
|
/* $OpenLDAP$ */
|
2003-11-26 23:24:38 +08:00
|
|
|
/* This work is part of OpenLDAP Software <http://www.openldap.org/>.
|
|
|
|
*
|
2005-01-02 04:49:32 +08:00
|
|
|
* Copyright 1999-2005 The OpenLDAP Foundation.
|
2003-11-26 23:24:38 +08:00
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted only as authorized by the OpenLDAP
|
|
|
|
* Public License.
|
|
|
|
*
|
|
|
|
* A copy of this license is available in file LICENSE in the
|
|
|
|
* top-level directory of the distribution or, alternatively, at
|
|
|
|
* <http://www.OpenLDAP.org/license.html>.
|
1999-09-02 08:56:32 +08:00
|
|
|
*/
|
2003-11-26 23:24:38 +08:00
|
|
|
/* ACKNOWLEDGEMENTS:
|
|
|
|
* This work was initially developed by Kurt Spanier for inclusion
|
|
|
|
* in OpenLDAP Software.
|
|
|
|
*/
|
|
|
|
|
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>
|
|
|
|
|
2003-12-14 10:47:42 +08:00
|
|
|
#define LDAP_DEPRECATED 1
|
1999-08-04 02:14:24 +08:00
|
|
|
#include <ldap.h>
|
1999-02-15 18:49:20 +08:00
|
|
|
|
|
|
|
#define LOOPS 100
|
|
|
|
|
|
|
|
static void
|
2004-09-05 02:31:43 +08:00
|
|
|
do_search( char *uri, char *host, int port, char *manager, char *passwd, char *sbase, char *filter, int maxloop );
|
1999-02-15 18:49:20 +08:00
|
|
|
|
|
|
|
static void
|
|
|
|
usage( char *name )
|
|
|
|
{
|
|
|
|
fprintf( stderr, "usage: %s [-h <host>] -p port -b <searchbase> -f <searchfiter> [-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;
|
2004-09-05 02:31:43 +08:00
|
|
|
char *manager = NULL;
|
|
|
|
char *passwd = NULL;
|
1999-02-15 18:49:20 +08:00
|
|
|
char *sbase = NULL;
|
|
|
|
char *filter = NULL;
|
|
|
|
int loops = LOOPS;
|
|
|
|
|
2004-09-05 02:31:43 +08:00
|
|
|
while ( (i = getopt( argc, argv, "b:D:f:H:h:l:p:w:" )) != 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;
|
|
|
|
|
2004-09-05 02:31:43 +08:00
|
|
|
case 'D': /* the servers manager */
|
|
|
|
manager = strdup( optarg );
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 'w': /* the server managers password */
|
|
|
|
passwd = strdup( optarg );
|
|
|
|
break;
|
|
|
|
|
1999-02-15 18:49:20 +08:00
|
|
|
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;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2003-02-13 16:02:40 +08:00
|
|
|
if (( sbase == NULL ) || ( filter == NULL ) || ( port == -1 && uri == NULL ))
|
1999-02-15 18:49:20 +08:00
|
|
|
usage( argv[0] );
|
|
|
|
|
|
|
|
if ( *filter == '\0' ) {
|
|
|
|
|
|
|
|
fprintf( stderr, "%s: invalid EMPTY search filter.\n",
|
|
|
|
argv[0] );
|
1999-08-04 02:14:24 +08:00
|
|
|
exit( EXIT_FAILURE );
|
1999-02-15 18:49:20 +08:00
|
|
|
|
|
|
|
}
|
|
|
|
|
2004-09-05 02:31:43 +08:00
|
|
|
do_search( uri, host, port, manager, passwd, sbase, filter, ( 10 * loops ));
|
1999-08-04 02:14:24 +08:00
|
|
|
exit( EXIT_SUCCESS );
|
1999-02-15 18:49:20 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void
|
2004-09-05 02:31:43 +08:00
|
|
|
do_search( char *uri, char *host, int port, char *manager, char *passwd, char *sbase, char *filter, 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;
|
|
|
|
char *attrs[] = { "cn", "sn", NULL };
|
1999-02-17 19:13:22 +08:00
|
|
|
pid_t pid = getpid();
|
2004-09-05 02:31:43 +08:00
|
|
|
int rc = LDAP_SUCCESS;
|
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 );
|
|
|
|
}
|
|
|
|
|
2004-09-05 02:31:43 +08:00
|
|
|
if ( ldap_bind_s( ld, manager, passwd, LDAP_AUTH_SIMPLE ) != LDAP_SUCCESS ) {
|
1999-02-15 18:49:20 +08:00
|
|
|
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 - Search(%d): base=\"%s\", filter=\"%s\".\n",
|
1999-03-04 01:40:08 +08:00
|
|
|
(long) pid, maxloop, sbase, filter );
|
1999-02-15 18:49:20 +08:00
|
|
|
|
|
|
|
for ( i = 0; i < maxloop; i++ ) {
|
1999-02-17 19:13:22 +08:00
|
|
|
LDAPMessage *res;
|
1999-02-15 18:49:20 +08:00
|
|
|
|
2004-09-05 02:31:43 +08:00
|
|
|
rc = ldap_search_s( ld, sbase, LDAP_SCOPE_SUBTREE,
|
|
|
|
filter, attrs, 0, &res );
|
|
|
|
if ( rc != LDAP_SUCCESS ) {
|
1999-02-15 18:49:20 +08:00
|
|
|
ldap_perror( ld, "ldap_search" );
|
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 );
|
|
|
|
}
|
|
|
|
|
2004-09-05 02:31:43 +08:00
|
|
|
fprintf( stderr, " PID=%ld - Search done (%d).\n", (long) pid, rc );
|
1999-02-17 19:13:22 +08:00
|
|
|
|
1999-02-15 18:49:20 +08:00
|
|
|
ldap_unbind( ld );
|
|
|
|
}
|
|
|
|
|
|
|
|
|