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/>.
|
|
|
|
*
|
2006-01-04 07:11:52 +08:00
|
|
|
* Copyright 1999-2006 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>
|
|
|
|
|
1999-08-04 02:14:24 +08:00
|
|
|
#include <ldap.h>
|
2005-11-24 09:10:05 +08:00
|
|
|
#include <lutil.h>
|
1999-02-15 18:49:20 +08:00
|
|
|
|
2006-01-12 21:01:38 +08:00
|
|
|
#include "slapd-common.h"
|
|
|
|
|
1999-02-15 18:49:20 +08:00
|
|
|
#define LOOPS 100
|
2005-04-21 00:16:39 +08:00
|
|
|
#define RETRIES 0
|
1999-02-15 18:49:20 +08:00
|
|
|
|
|
|
|
static void
|
2006-01-12 21:01:38 +08:00
|
|
|
do_read( char *uri, char *entry, int maxloop,
|
2006-03-23 08:19:09 +08:00
|
|
|
int maxretries, int delay, int force );
|
1999-02-15 18:49:20 +08:00
|
|
|
|
|
|
|
static void
|
|
|
|
usage( char *name )
|
|
|
|
{
|
2005-08-19 15:27:32 +08:00
|
|
|
fprintf( stderr,
|
|
|
|
"usage: %s "
|
|
|
|
"-H <uri> | ([-h <host>] -p <port>) "
|
|
|
|
"-e <entry> "
|
2006-03-23 08:19:09 +08:00
|
|
|
"[-F] "
|
2005-08-19 15:27:32 +08:00
|
|
|
"[-l <loops>] "
|
2006-03-04 00:02:34 +08:00
|
|
|
"[-L <outerloops>] "
|
2005-08-19 15:27:32 +08:00
|
|
|
"[-r <maxretries>] "
|
|
|
|
"[-t <delay>]\n",
|
2006-03-04 00:02:34 +08:00
|
|
|
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;
|
2005-04-21 00:16:39 +08:00
|
|
|
char *host = "localhost";
|
|
|
|
int port = -1;
|
1999-02-15 18:49:20 +08:00
|
|
|
char *entry = NULL;
|
2005-04-21 00:16:39 +08:00
|
|
|
int loops = LOOPS;
|
2006-03-04 00:02:34 +08:00
|
|
|
int outerloops = 1;
|
2005-04-21 00:16:39 +08:00
|
|
|
int retries = RETRIES;
|
2005-08-19 15:27:32 +08:00
|
|
|
int delay = 0;
|
2006-03-23 08:19:09 +08:00
|
|
|
int force = 0;
|
1999-02-15 18:49:20 +08:00
|
|
|
|
2006-01-12 21:01:38 +08:00
|
|
|
tester_init( "slapd-read" );
|
|
|
|
|
2006-03-23 08:19:09 +08:00
|
|
|
while ( (i = getopt( argc, argv, "H:h:p:e:Fl:L:r:t:" )) != EOF ) {
|
1999-02-15 18:49:20 +08:00
|
|
|
switch( i ) {
|
2005-04-21 00:16:39 +08:00
|
|
|
case 'H': /* the server uri */
|
|
|
|
uri = strdup( optarg );
|
2003-02-13 16:02:40 +08:00
|
|
|
break;
|
2005-04-21 00:16:39 +08:00
|
|
|
|
|
|
|
case 'h': /* the servers host */
|
|
|
|
host = strdup( optarg );
|
1999-02-15 18:49:20 +08:00
|
|
|
break;
|
|
|
|
|
2005-04-21 00:16:39 +08:00
|
|
|
case 'p': /* the servers port */
|
2005-11-24 09:10:05 +08:00
|
|
|
if ( lutil_atoi( &port, optarg ) != 0 ) {
|
|
|
|
usage( argv[0] );
|
|
|
|
}
|
2005-04-21 00:16:39 +08:00
|
|
|
break;
|
1999-02-15 18:49:20 +08:00
|
|
|
|
2005-04-21 00:16:39 +08:00
|
|
|
case 'e': /* DN to search for */
|
|
|
|
entry = strdup( optarg );
|
|
|
|
break;
|
1999-02-15 18:49:20 +08:00
|
|
|
|
2006-03-23 08:19:09 +08:00
|
|
|
case 'F':
|
|
|
|
force++;
|
|
|
|
break;
|
|
|
|
|
2005-04-21 00:16:39 +08:00
|
|
|
case 'l': /* the number of loops */
|
2005-11-24 09:10:05 +08:00
|
|
|
if ( lutil_atoi( &loops, optarg ) != 0 ) {
|
|
|
|
usage( argv[0] );
|
|
|
|
}
|
2005-04-21 00:16:39 +08:00
|
|
|
break;
|
1999-02-15 18:49:20 +08:00
|
|
|
|
2006-03-04 00:02:34 +08:00
|
|
|
case 'L': /* the number of outerloops */
|
|
|
|
if ( lutil_atoi( &outerloops, optarg ) != 0 ) {
|
|
|
|
usage( argv[0] );
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
2005-04-21 00:16:39 +08:00
|
|
|
case 'r': /* the number of retries */
|
2005-11-24 09:10:05 +08:00
|
|
|
if ( lutil_atoi( &retries, optarg ) != 0 ) {
|
|
|
|
usage( argv[0] );
|
|
|
|
}
|
2005-04-21 00:16:39 +08:00
|
|
|
break;
|
|
|
|
|
2005-08-19 15:27:32 +08:00
|
|
|
case 't': /* delay in seconds */
|
2005-11-24 09:10:05 +08:00
|
|
|
if ( lutil_atoi( &delay, optarg ) != 0 ) {
|
|
|
|
usage( argv[0] );
|
|
|
|
}
|
2005-08-19 15:27:32 +08:00
|
|
|
break;
|
|
|
|
|
2005-04-21 00:16:39 +08:00
|
|
|
default:
|
|
|
|
usage( argv[0] );
|
|
|
|
break;
|
1999-02-15 18:49:20 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
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
|
|
|
}
|
|
|
|
|
2006-01-12 21:01:38 +08:00
|
|
|
uri = tester_uri( uri, host, port );
|
|
|
|
|
2006-03-04 00:02:34 +08:00
|
|
|
for ( i = 0; i < outerloops; i++ ) {
|
2006-03-23 08:19:09 +08:00
|
|
|
do_read( uri, entry, loops, retries, delay, force );
|
2006-03-04 00:02:34 +08:00
|
|
|
}
|
|
|
|
|
1999-08-04 02:14:24 +08:00
|
|
|
exit( EXIT_SUCCESS );
|
1999-02-15 18:49:20 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void
|
2006-01-12 21:01:38 +08:00
|
|
|
do_read( char *uri, char *entry, int maxloop,
|
2006-03-23 08:19:09 +08:00
|
|
|
int maxretries, int delay, int force )
|
1999-02-15 18:49:20 +08:00
|
|
|
{
|
2003-02-13 16:02:40 +08:00
|
|
|
LDAP *ld = NULL;
|
2005-04-21 00:16:39 +08:00
|
|
|
int i = 0, do_retry = maxretries;
|
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();
|
2004-09-05 02:31:43 +08:00
|
|
|
int rc = LDAP_SUCCESS;
|
2006-01-12 21:01:38 +08:00
|
|
|
int version = LDAP_VERSION3;
|
|
|
|
struct berval passwd = { 0, "" };
|
2006-03-23 08:19:09 +08:00
|
|
|
int first = 1;
|
2005-04-21 00:16:39 +08:00
|
|
|
|
|
|
|
retry:;
|
2006-01-12 21:01:38 +08:00
|
|
|
ldap_initialize( &ld, uri );
|
2003-02-13 16:02:40 +08:00
|
|
|
if ( ld == NULL ) {
|
2006-01-12 21:01:38 +08:00
|
|
|
tester_perror( "ldap_initialize" );
|
1999-08-04 02:14:24 +08:00
|
|
|
exit( EXIT_FAILURE );
|
1999-02-15 18:49:20 +08:00
|
|
|
}
|
|
|
|
|
2006-01-12 21:01:38 +08:00
|
|
|
(void) ldap_set_option( ld, LDAP_OPT_PROTOCOL_VERSION, &version );
|
2001-12-20 13:58:08 +08:00
|
|
|
|
2005-04-21 00:16:39 +08:00
|
|
|
if ( do_retry == maxretries ) {
|
|
|
|
fprintf( stderr, "PID=%ld - Read(%d): entry=\"%s\".\n",
|
|
|
|
(long) pid, maxloop, entry );
|
1999-02-15 18:49:20 +08:00
|
|
|
}
|
|
|
|
|
2006-01-12 21:01:38 +08:00
|
|
|
rc = ldap_sasl_bind_s( ld, NULL, LDAP_SASL_SIMPLE, &passwd, NULL, NULL, NULL );
|
2005-04-21 00:16:39 +08:00
|
|
|
if ( rc != LDAP_SUCCESS ) {
|
2006-01-12 21:01:38 +08:00
|
|
|
tester_ldap_error( ld, "ldap_sasl_bind_s" );
|
2005-08-17 16:17:30 +08:00
|
|
|
switch ( rc ) {
|
|
|
|
case LDAP_BUSY:
|
|
|
|
case LDAP_UNAVAILABLE:
|
2005-08-19 15:27:32 +08:00
|
|
|
if ( do_retry > 0 ) {
|
|
|
|
do_retry--;
|
|
|
|
if ( delay > 0 ) {
|
|
|
|
sleep( delay );
|
|
|
|
}
|
2005-08-17 16:17:30 +08:00
|
|
|
goto retry;
|
|
|
|
}
|
|
|
|
/* fallthru */
|
|
|
|
default:
|
|
|
|
break;
|
2005-04-21 00:16:39 +08:00
|
|
|
}
|
|
|
|
exit( EXIT_FAILURE );
|
|
|
|
}
|
1999-02-15 18:49:20 +08:00
|
|
|
|
2005-04-21 00:16:39 +08:00
|
|
|
for ( ; i < maxloop; i++ ) {
|
2006-03-23 08:19:09 +08:00
|
|
|
LDAPMessage *res = NULL;
|
1999-02-15 18:49:20 +08:00
|
|
|
|
2006-01-12 21:01:38 +08:00
|
|
|
rc = ldap_search_ext_s( ld, entry, LDAP_SCOPE_BASE,
|
|
|
|
NULL, attrs, 1, NULL, NULL, NULL, LDAP_NO_LIMIT, &res );
|
2006-03-23 08:19:09 +08:00
|
|
|
switch ( rc ) {
|
|
|
|
case LDAP_REFERRAL:
|
|
|
|
/* don't log: it's intended */
|
|
|
|
if ( force >= 2 ) {
|
|
|
|
if ( !first ) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
first = 0;
|
|
|
|
}
|
|
|
|
tester_ldap_error( ld, "ldap_search_ext_s" );
|
|
|
|
/* fallthru */
|
|
|
|
|
|
|
|
case LDAP_SUCCESS:
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
2006-01-12 21:01:38 +08:00
|
|
|
tester_ldap_error( ld, "ldap_search_ext_s" );
|
2005-04-21 00:16:39 +08:00
|
|
|
if ( rc == LDAP_BUSY && do_retry > 0 ) {
|
|
|
|
do_retry--;
|
|
|
|
goto retry;
|
|
|
|
}
|
2006-03-23 08:19:09 +08:00
|
|
|
if ( rc != LDAP_NO_SUCH_OBJECT ) {
|
|
|
|
goto done;
|
|
|
|
}
|
|
|
|
break;
|
1999-02-15 18:49:20 +08:00
|
|
|
}
|
|
|
|
|
2006-03-23 08:19:09 +08:00
|
|
|
if ( res != NULL ) {
|
|
|
|
ldap_msgfree( res );
|
|
|
|
}
|
1999-02-15 18:49:20 +08:00
|
|
|
}
|
|
|
|
|
2006-03-23 08:19:09 +08:00
|
|
|
done:;
|
2004-09-05 02:31:43 +08:00
|
|
|
fprintf( stderr, " PID=%ld - Read done (%d).\n", (long) pid, rc );
|
1999-02-17 19:13:22 +08:00
|
|
|
|
2006-01-12 21:01:38 +08:00
|
|
|
ldap_unbind_ext( ld, NULL, NULL );
|
1999-02-15 18:49:20 +08:00
|
|
|
}
|
|
|
|
|