Home | History | Annotate | Line # | Download | only in progs
slapd-search.c revision 1.1.1.3.12.1
      1       1.1.1.2  lukem /*	$NetBSD: slapd-search.c,v 1.1.1.3.12.1 2014/08/19 23:52:05 tls Exp $	*/
      2       1.1.1.2  lukem 
      3  1.1.1.3.12.1    tls /* $OpenLDAP$ */
      4           1.1  lukem /* This work is part of OpenLDAP Software <http://www.openldap.org/>.
      5           1.1  lukem  *
      6  1.1.1.3.12.1    tls  * Copyright 1999-2014 The OpenLDAP Foundation.
      7           1.1  lukem  * All rights reserved.
      8           1.1  lukem  *
      9           1.1  lukem  * Redistribution and use in source and binary forms, with or without
     10           1.1  lukem  * modification, are permitted only as authorized by the OpenLDAP
     11           1.1  lukem  * Public License.
     12           1.1  lukem  *
     13           1.1  lukem  * A copy of this license is available in file LICENSE in the
     14           1.1  lukem  * top-level directory of the distribution or, alternatively, at
     15           1.1  lukem  * <http://www.OpenLDAP.org/license.html>.
     16           1.1  lukem  */
     17           1.1  lukem /* ACKNOWLEDGEMENTS:
     18           1.1  lukem  * This work was initially developed by Kurt Spanier for inclusion
     19           1.1  lukem  * in OpenLDAP Software.
     20           1.1  lukem  */
     21           1.1  lukem 
     22           1.1  lukem #include "portable.h"
     23           1.1  lukem 
     24           1.1  lukem #include <stdio.h>
     25           1.1  lukem 
     26           1.1  lukem #include "ac/stdlib.h"
     27           1.1  lukem 
     28           1.1  lukem #include "ac/ctype.h"
     29           1.1  lukem #include "ac/param.h"
     30           1.1  lukem #include "ac/socket.h"
     31           1.1  lukem #include "ac/string.h"
     32           1.1  lukem #include "ac/unistd.h"
     33           1.1  lukem #include "ac/wait.h"
     34           1.1  lukem 
     35           1.1  lukem #include "ldap.h"
     36           1.1  lukem #include "lutil.h"
     37           1.1  lukem #include "ldap_pvt.h"
     38           1.1  lukem 
     39           1.1  lukem #include "slapd-common.h"
     40           1.1  lukem 
     41           1.1  lukem #define LOOPS	100
     42           1.1  lukem #define RETRIES	0
     43           1.1  lukem 
     44           1.1  lukem static void
     45           1.1  lukem do_search( char *uri, char *manager, struct berval *passwd,
     46           1.1  lukem 	char *sbase, int scope, char *filter, LDAP **ldp,
     47           1.1  lukem 	char **attrs, int noattrs, int nobind,
     48           1.1  lukem 	int innerloop, int maxretries, int delay, int force, int chaserefs );
     49           1.1  lukem 
     50           1.1  lukem static void
     51           1.1  lukem do_random( char *uri, char *manager, struct berval *passwd,
     52           1.1  lukem 	char *sbase, int scope, char *filter, char *attr,
     53           1.1  lukem 	char **attrs, int noattrs, int nobind,
     54           1.1  lukem 	int innerloop, int maxretries, int delay, int force, int chaserefs );
     55           1.1  lukem 
     56           1.1  lukem static void
     57           1.1  lukem usage( char *name, char o )
     58           1.1  lukem {
     59           1.1  lukem 	if ( o != '\0' ) {
     60           1.1  lukem 		fprintf( stderr, "unknown/incorrect option \"%c\"\n", o );
     61           1.1  lukem 	}
     62           1.1  lukem 
     63           1.1  lukem         fprintf( stderr,
     64           1.1  lukem 		"usage: %s "
     65           1.1  lukem 		"-H <uri> | ([-h <host>] -p <port>) "
     66           1.1  lukem 		"-D <manager> "
     67           1.1  lukem 		"-w <passwd> "
     68           1.1  lukem 		"-b <searchbase> "
     69           1.1  lukem 		"-s <scope> "
     70           1.1  lukem 		"-f <searchfilter> "
     71           1.1  lukem 		"[-a <attr>] "
     72           1.1  lukem 		"[-A] "
     73           1.1  lukem 		"[-C] "
     74           1.1  lukem 		"[-F] "
     75           1.1  lukem 		"[-N] "
     76  1.1.1.3.12.1    tls 		"[-S[S[S]]] "
     77           1.1  lukem 		"[-i <ignore>] "
     78           1.1  lukem 		"[-l <loops>] "
     79           1.1  lukem 		"[-L <outerloops>] "
     80           1.1  lukem 		"[-r <maxretries>] "
     81           1.1  lukem 		"[-t <delay>] "
     82           1.1  lukem 		"[<attrs>] "
     83           1.1  lukem 		"\n",
     84           1.1  lukem 			name );
     85           1.1  lukem 	exit( EXIT_FAILURE );
     86           1.1  lukem }
     87           1.1  lukem 
     88  1.1.1.3.12.1    tls /* -S: just send requests without reading responses
     89  1.1.1.3.12.1    tls  * -SS: send all requests asynchronous and immediately start reading responses
     90  1.1.1.3.12.1    tls  * -SSS: send all requests asynchronous; then read responses
     91  1.1.1.3.12.1    tls  */
     92       1.1.1.2  lukem static int swamp;
     93       1.1.1.2  lukem 
     94           1.1  lukem int
     95           1.1  lukem main( int argc, char **argv )
     96           1.1  lukem {
     97           1.1  lukem 	int		i;
     98           1.1  lukem 	char		*uri = NULL;
     99           1.1  lukem 	char		*host = "localhost";
    100           1.1  lukem 	int		port = -1;
    101           1.1  lukem 	char		*manager = NULL;
    102           1.1  lukem 	struct berval	passwd = { 0, NULL };
    103           1.1  lukem 	char		*sbase = NULL;
    104           1.1  lukem 	int		scope = LDAP_SCOPE_SUBTREE;
    105           1.1  lukem 	char		*filter  = NULL;
    106           1.1  lukem 	char		*attr = NULL;
    107           1.1  lukem 	char		*srchattrs[] = { "cn", "sn", NULL };
    108           1.1  lukem 	char		**attrs = srchattrs;
    109           1.1  lukem 	int		loops = LOOPS;
    110           1.1  lukem 	int		outerloops = 1;
    111           1.1  lukem 	int		retries = RETRIES;
    112           1.1  lukem 	int		delay = 0;
    113           1.1  lukem 	int		force = 0;
    114           1.1  lukem 	int		chaserefs = 0;
    115           1.1  lukem 	int		noattrs = 0;
    116           1.1  lukem 	int		nobind = 0;
    117           1.1  lukem 
    118           1.1  lukem 	tester_init( "slapd-search", TESTER_SEARCH );
    119           1.1  lukem 
    120           1.1  lukem 	/* by default, tolerate referrals and no such object */
    121           1.1  lukem 	tester_ignore_str2errlist( "REFERRAL,NO_SUCH_OBJECT" );
    122           1.1  lukem 
    123       1.1.1.2  lukem 	while ( ( i = getopt( argc, argv, "Aa:b:CD:f:FH:h:i:l:L:Np:r:Ss:t:T:w:" ) ) != EOF )
    124           1.1  lukem 	{
    125           1.1  lukem 		switch ( i ) {
    126           1.1  lukem 		case 'A':
    127           1.1  lukem 			noattrs++;
    128           1.1  lukem 			break;
    129           1.1  lukem 
    130           1.1  lukem 		case 'C':
    131           1.1  lukem 			chaserefs++;
    132           1.1  lukem 			break;
    133           1.1  lukem 
    134           1.1  lukem 		case 'H':		/* the server uri */
    135           1.1  lukem 			uri = strdup( optarg );
    136           1.1  lukem 			break;
    137           1.1  lukem 
    138           1.1  lukem 		case 'h':		/* the servers host */
    139           1.1  lukem 			host = strdup( optarg );
    140           1.1  lukem 			break;
    141           1.1  lukem 
    142           1.1  lukem 		case 'i':
    143           1.1  lukem 			tester_ignore_str2errlist( optarg );
    144           1.1  lukem 			break;
    145           1.1  lukem 
    146           1.1  lukem 		case 'N':
    147           1.1  lukem 			nobind++;
    148           1.1  lukem 			break;
    149           1.1  lukem 
    150           1.1  lukem 		case 'p':		/* the servers port */
    151           1.1  lukem 			if ( lutil_atoi( &port, optarg ) != 0 ) {
    152           1.1  lukem 				usage( argv[0], i );
    153           1.1  lukem 			}
    154           1.1  lukem 			break;
    155           1.1  lukem 
    156           1.1  lukem 		case 'D':		/* the servers manager */
    157           1.1  lukem 			manager = strdup( optarg );
    158           1.1  lukem 			break;
    159           1.1  lukem 
    160           1.1  lukem 		case 'w':		/* the server managers password */
    161           1.1  lukem 			passwd.bv_val = strdup( optarg );
    162           1.1  lukem 			passwd.bv_len = strlen( optarg );
    163           1.1  lukem 			memset( optarg, '*', passwd.bv_len );
    164           1.1  lukem 			break;
    165           1.1  lukem 
    166           1.1  lukem 		case 'a':
    167           1.1  lukem 			attr = strdup( optarg );
    168           1.1  lukem 			break;
    169           1.1  lukem 
    170           1.1  lukem 		case 'b':		/* file with search base */
    171           1.1  lukem 			sbase = strdup( optarg );
    172           1.1  lukem 			break;
    173           1.1  lukem 
    174           1.1  lukem 		case 'f':		/* the search request */
    175           1.1  lukem 			filter = strdup( optarg );
    176           1.1  lukem 			break;
    177           1.1  lukem 
    178           1.1  lukem 		case 'F':
    179           1.1  lukem 			force++;
    180           1.1  lukem 			break;
    181           1.1  lukem 
    182           1.1  lukem 		case 'l':		/* number of loops */
    183           1.1  lukem 			if ( lutil_atoi( &loops, optarg ) != 0 ) {
    184           1.1  lukem 				usage( argv[0], i );
    185           1.1  lukem 			}
    186           1.1  lukem 			break;
    187           1.1  lukem 
    188           1.1  lukem 		case 'L':		/* number of loops */
    189           1.1  lukem 			if ( lutil_atoi( &outerloops, optarg ) != 0 ) {
    190           1.1  lukem 				usage( argv[0], i );
    191           1.1  lukem 			}
    192           1.1  lukem 			break;
    193           1.1  lukem 
    194           1.1  lukem 		case 'r':		/* number of retries */
    195           1.1  lukem 			if ( lutil_atoi( &retries, optarg ) != 0 ) {
    196           1.1  lukem 				usage( argv[0], i );
    197           1.1  lukem 			}
    198           1.1  lukem 			break;
    199           1.1  lukem 
    200           1.1  lukem 		case 't':		/* delay in seconds */
    201           1.1  lukem 			if ( lutil_atoi( &delay, optarg ) != 0 ) {
    202           1.1  lukem 				usage( argv[0], i );
    203           1.1  lukem 			}
    204           1.1  lukem 			break;
    205           1.1  lukem 
    206           1.1  lukem 		case 'T':
    207           1.1  lukem 			attrs = ldap_str2charray( optarg, "," );
    208           1.1  lukem 			if ( attrs == NULL ) {
    209           1.1  lukem 				usage( argv[0], i );
    210           1.1  lukem 			}
    211           1.1  lukem 			break;
    212           1.1  lukem 
    213       1.1.1.2  lukem 		case 'S':
    214       1.1.1.2  lukem 			swamp++;
    215       1.1.1.2  lukem 			break;
    216       1.1.1.2  lukem 
    217           1.1  lukem 		case 's':
    218           1.1  lukem 			scope = ldap_pvt_str2scope( optarg );
    219           1.1  lukem 			if ( scope == -1 ) {
    220           1.1  lukem 				usage( argv[0], i );
    221           1.1  lukem 			}
    222           1.1  lukem 			break;
    223           1.1  lukem 
    224           1.1  lukem 		default:
    225           1.1  lukem 			usage( argv[0], i );
    226           1.1  lukem 			break;
    227           1.1  lukem 		}
    228           1.1  lukem 	}
    229           1.1  lukem 
    230           1.1  lukem 	if (( sbase == NULL ) || ( filter == NULL ) || ( port == -1 && uri == NULL ))
    231           1.1  lukem 		usage( argv[0], '\0' );
    232           1.1  lukem 
    233           1.1  lukem 	if ( *filter == '\0' ) {
    234           1.1  lukem 
    235           1.1  lukem 		fprintf( stderr, "%s: invalid EMPTY search filter.\n",
    236           1.1  lukem 				argv[0] );
    237           1.1  lukem 		exit( EXIT_FAILURE );
    238           1.1  lukem 
    239           1.1  lukem 	}
    240           1.1  lukem 
    241           1.1  lukem 	if ( argv[optind] != NULL ) {
    242           1.1  lukem 		attrs = &argv[optind];
    243           1.1  lukem 	}
    244           1.1  lukem 
    245           1.1  lukem 	uri = tester_uri( uri, host, port );
    246           1.1  lukem 
    247           1.1  lukem 	for ( i = 0; i < outerloops; i++ ) {
    248           1.1  lukem 		if ( attr != NULL ) {
    249           1.1  lukem 			do_random( uri, manager, &passwd,
    250           1.1  lukem 				sbase, scope, filter, attr,
    251           1.1  lukem 				attrs, noattrs, nobind,
    252           1.1  lukem 				loops, retries, delay, force, chaserefs );
    253           1.1  lukem 
    254           1.1  lukem 		} else {
    255           1.1  lukem 			do_search( uri, manager, &passwd,
    256           1.1  lukem 				sbase, scope, filter, NULL,
    257           1.1  lukem 				attrs, noattrs, nobind,
    258           1.1  lukem 				loops, retries, delay, force, chaserefs );
    259           1.1  lukem 		}
    260           1.1  lukem 	}
    261           1.1  lukem 
    262           1.1  lukem 	exit( EXIT_SUCCESS );
    263           1.1  lukem }
    264           1.1  lukem 
    265           1.1  lukem 
    266           1.1  lukem static void
    267           1.1  lukem do_random( char *uri, char *manager, struct berval *passwd,
    268           1.1  lukem 	char *sbase, int scope, char *filter, char *attr,
    269           1.1  lukem 	char **srchattrs, int noattrs, int nobind,
    270           1.1  lukem 	int innerloop, int maxretries, int delay, int force, int chaserefs )
    271           1.1  lukem {
    272           1.1  lukem 	LDAP	*ld = NULL;
    273           1.1  lukem 	int  	i = 0, do_retry = maxretries;
    274           1.1  lukem 	char	*attrs[ 2 ];
    275           1.1  lukem 	int     rc = LDAP_SUCCESS;
    276           1.1  lukem 	int	version = LDAP_VERSION3;
    277           1.1  lukem 	int	nvalues = 0;
    278           1.1  lukem 	char	**values = NULL;
    279           1.1  lukem 	LDAPMessage *res = NULL, *e = NULL;
    280           1.1  lukem 
    281           1.1  lukem 	attrs[ 0 ] = attr;
    282           1.1  lukem 	attrs[ 1 ] = NULL;
    283           1.1  lukem 
    284           1.1  lukem 	ldap_initialize( &ld, uri );
    285           1.1  lukem 	if ( ld == NULL ) {
    286           1.1  lukem 		tester_perror( "ldap_initialize", NULL );
    287           1.1  lukem 		exit( EXIT_FAILURE );
    288           1.1  lukem 	}
    289           1.1  lukem 
    290           1.1  lukem 	(void) ldap_set_option( ld, LDAP_OPT_PROTOCOL_VERSION, &version );
    291           1.1  lukem 	(void) ldap_set_option( ld, LDAP_OPT_REFERRALS,
    292           1.1  lukem 		chaserefs ? LDAP_OPT_ON : LDAP_OPT_OFF );
    293           1.1  lukem 
    294           1.1  lukem 	if ( do_retry == maxretries ) {
    295           1.1  lukem 		fprintf( stderr, "PID=%ld - Search(%d): base=\"%s\", filter=\"%s\" attr=\"%s\".\n",
    296           1.1  lukem 				(long) pid, innerloop, sbase, filter, attr );
    297           1.1  lukem 	}
    298           1.1  lukem 
    299           1.1  lukem 	if ( nobind == 0 ) {
    300           1.1  lukem 		rc = ldap_sasl_bind_s( ld, manager, LDAP_SASL_SIMPLE, passwd, NULL, NULL, NULL );
    301           1.1  lukem 		if ( rc != LDAP_SUCCESS ) {
    302           1.1  lukem 			tester_ldap_error( ld, "ldap_sasl_bind_s", NULL );
    303           1.1  lukem 			switch ( rc ) {
    304           1.1  lukem 			case LDAP_BUSY:
    305           1.1  lukem 			case LDAP_UNAVAILABLE:
    306           1.1  lukem 			/* fallthru */
    307           1.1  lukem 			default:
    308           1.1  lukem 				break;
    309           1.1  lukem 			}
    310           1.1  lukem 			exit( EXIT_FAILURE );
    311           1.1  lukem 		}
    312           1.1  lukem 	}
    313           1.1  lukem 
    314           1.1  lukem 	rc = ldap_search_ext_s( ld, sbase, LDAP_SCOPE_SUBTREE,
    315           1.1  lukem 		filter, attrs, 0, NULL, NULL, NULL, LDAP_NO_LIMIT, &res );
    316           1.1  lukem 	switch ( rc ) {
    317           1.1  lukem 	case LDAP_SIZELIMIT_EXCEEDED:
    318           1.1  lukem 	case LDAP_TIMELIMIT_EXCEEDED:
    319           1.1  lukem 	case LDAP_SUCCESS:
    320           1.1  lukem 		if ( ldap_count_entries( ld, res ) == 0 ) {
    321           1.1  lukem 			if ( rc ) {
    322           1.1  lukem 				tester_ldap_error( ld, "ldap_search_ext_s", NULL );
    323           1.1  lukem 			}
    324           1.1  lukem 			break;
    325           1.1  lukem 		}
    326           1.1  lukem 
    327           1.1  lukem 		for ( e = ldap_first_entry( ld, res ); e != NULL; e = ldap_next_entry( ld, e ) )
    328           1.1  lukem 		{
    329           1.1  lukem 			struct berval **v = ldap_get_values_len( ld, e, attr );
    330           1.1  lukem 
    331           1.1  lukem 			if ( v != NULL ) {
    332           1.1  lukem 				int n = ldap_count_values_len( v );
    333           1.1  lukem 				int j;
    334           1.1  lukem 
    335           1.1  lukem 				values = realloc( values, ( nvalues + n + 1 )*sizeof( char * ) );
    336           1.1  lukem 				for ( j = 0; j < n; j++ ) {
    337           1.1  lukem 					values[ nvalues + j ] = strdup( v[ j ]->bv_val );
    338           1.1  lukem 				}
    339           1.1  lukem 				values[ nvalues + j ] = NULL;
    340           1.1  lukem 				nvalues += n;
    341           1.1  lukem 				ldap_value_free_len( v );
    342           1.1  lukem 			}
    343           1.1  lukem 		}
    344           1.1  lukem 
    345           1.1  lukem 		ldap_msgfree( res );
    346           1.1  lukem 
    347           1.1  lukem 		if ( !values ) {
    348           1.1  lukem 			fprintf( stderr, "  PID=%ld - Search base=\"%s\" filter=\"%s\" got %d values.\n",
    349           1.1  lukem 				(long) pid, sbase, filter, nvalues );
    350           1.1  lukem 			exit(EXIT_FAILURE);
    351           1.1  lukem 		}
    352           1.1  lukem 
    353           1.1  lukem 		if ( do_retry == maxretries ) {
    354           1.1  lukem 			fprintf( stderr, "  PID=%ld - Search base=\"%s\" filter=\"%s\" got %d values.\n",
    355           1.1  lukem 				(long) pid, sbase, filter, nvalues );
    356           1.1  lukem 		}
    357           1.1  lukem 
    358           1.1  lukem 		for ( i = 0; i < innerloop; i++ ) {
    359           1.1  lukem 			char	buf[ BUFSIZ ];
    360           1.1  lukem #if 0	/* use high-order bits for better randomness (Numerical Recipes in "C") */
    361           1.1  lukem 			int	r = rand() % nvalues;
    362           1.1  lukem #endif
    363           1.1  lukem 			int	r = ((double)nvalues)*rand()/(RAND_MAX + 1.0);
    364           1.1  lukem 
    365           1.1  lukem 			snprintf( buf, sizeof( buf ), "(%s=%s)", attr, values[ r ] );
    366           1.1  lukem 
    367           1.1  lukem 			do_search( uri, manager, passwd,
    368           1.1  lukem 				sbase, scope, buf, &ld,
    369           1.1  lukem 				srchattrs, noattrs, nobind,
    370           1.1  lukem 				1, maxretries, delay, force, chaserefs );
    371           1.1  lukem 		}
    372           1.1  lukem 		break;
    373           1.1  lukem 
    374           1.1  lukem 	default:
    375           1.1  lukem 		tester_ldap_error( ld, "ldap_search_ext_s", NULL );
    376           1.1  lukem 		break;
    377           1.1  lukem 	}
    378           1.1  lukem 
    379       1.1.1.2  lukem 	fprintf( stderr, "  PID=%ld - Search done (%d).\n", (long) pid, rc );
    380           1.1  lukem 
    381           1.1  lukem 	if ( ld != NULL ) {
    382           1.1  lukem 		ldap_unbind_ext( ld, NULL, NULL );
    383           1.1  lukem 	}
    384           1.1  lukem }
    385           1.1  lukem 
    386           1.1  lukem static void
    387           1.1  lukem do_search( char *uri, char *manager, struct berval *passwd,
    388           1.1  lukem 	char *sbase, int scope, char *filter, LDAP **ldp,
    389           1.1  lukem 	char **attrs, int noattrs, int nobind,
    390           1.1  lukem 	int innerloop, int maxretries, int delay, int force, int chaserefs )
    391           1.1  lukem {
    392           1.1  lukem 	LDAP	*ld = ldp ? *ldp : NULL;
    393           1.1  lukem 	int  	i = 0, do_retry = maxretries;
    394           1.1  lukem 	int     rc = LDAP_SUCCESS;
    395           1.1  lukem 	int	version = LDAP_VERSION3;
    396           1.1  lukem 	char	buf[ BUFSIZ ];
    397  1.1.1.3.12.1    tls 	int		*msgids = NULL, active = 0;
    398           1.1  lukem 
    399  1.1.1.3.12.1    tls 	/* make room for msgid */
    400  1.1.1.3.12.1    tls 	if ( swamp > 1 ) {
    401  1.1.1.3.12.1    tls 		msgids = (int *)calloc( sizeof(int), innerloop );
    402  1.1.1.3.12.1    tls 	}
    403           1.1  lukem 
    404           1.1  lukem retry:;
    405           1.1  lukem 	if ( ld == NULL ) {
    406           1.1  lukem 		ldap_initialize( &ld, uri );
    407           1.1  lukem 		if ( ld == NULL ) {
    408           1.1  lukem 			tester_perror( "ldap_initialize", NULL );
    409           1.1  lukem 			exit( EXIT_FAILURE );
    410           1.1  lukem 		}
    411           1.1  lukem 
    412           1.1  lukem 		(void) ldap_set_option( ld, LDAP_OPT_PROTOCOL_VERSION, &version );
    413           1.1  lukem 		(void) ldap_set_option( ld, LDAP_OPT_REFERRALS,
    414           1.1  lukem 			chaserefs ? LDAP_OPT_ON : LDAP_OPT_OFF );
    415           1.1  lukem 
    416           1.1  lukem 		if ( do_retry == maxretries ) {
    417           1.1  lukem 			fprintf( stderr,
    418           1.1  lukem 				"PID=%ld - Search(%d): "
    419           1.1  lukem 				"base=\"%s\" scope=%s filter=\"%s\" "
    420           1.1  lukem 				"attrs=%s%s.\n",
    421           1.1  lukem 				(long) pid, innerloop,
    422           1.1  lukem 				sbase, ldap_pvt_scope2str( scope ), filter,
    423           1.1  lukem 				attrs[0], attrs[1] ? " (more...)" : "" );
    424           1.1  lukem 		}
    425           1.1  lukem 
    426           1.1  lukem 		if ( nobind == 0 ) {
    427           1.1  lukem 			rc = ldap_sasl_bind_s( ld, manager, LDAP_SASL_SIMPLE, passwd, NULL, NULL, NULL );
    428           1.1  lukem 			if ( rc != LDAP_SUCCESS ) {
    429           1.1  lukem 				snprintf( buf, sizeof( buf ),
    430           1.1  lukem 					"bindDN=\"%s\"", manager );
    431           1.1  lukem 				tester_ldap_error( ld, "ldap_sasl_bind_s", buf );
    432           1.1  lukem 				switch ( rc ) {
    433           1.1  lukem 				case LDAP_BUSY:
    434           1.1  lukem 				case LDAP_UNAVAILABLE:
    435           1.1  lukem 					if ( do_retry > 0 ) {
    436           1.1  lukem 						ldap_unbind_ext( ld, NULL, NULL );
    437           1.1  lukem 						ld = NULL;
    438           1.1  lukem 						do_retry--;
    439           1.1  lukem 						if ( delay != 0 ) {
    440           1.1  lukem 						    sleep( delay );
    441           1.1  lukem 						}
    442           1.1  lukem 						goto retry;
    443           1.1  lukem 					}
    444           1.1  lukem 				/* fallthru */
    445           1.1  lukem 				default:
    446           1.1  lukem 					break;
    447           1.1  lukem 				}
    448           1.1  lukem 				exit( EXIT_FAILURE );
    449           1.1  lukem 			}
    450           1.1  lukem 		}
    451           1.1  lukem 	}
    452           1.1  lukem 
    453  1.1.1.3.12.1    tls 	if ( swamp > 1 ) {
    454  1.1.1.3.12.1    tls 		do {
    455  1.1.1.3.12.1    tls 			LDAPMessage *res = NULL;
    456  1.1.1.3.12.1    tls 			int j, msgid;
    457  1.1.1.3.12.1    tls 
    458  1.1.1.3.12.1    tls 			if ( i < innerloop ) {
    459  1.1.1.3.12.1    tls 				rc = ldap_search_ext( ld, sbase, scope,
    460  1.1.1.3.12.1    tls 						filter, NULL, noattrs, NULL, NULL,
    461  1.1.1.3.12.1    tls 						NULL, LDAP_NO_LIMIT, &msgids[i] );
    462  1.1.1.3.12.1    tls 
    463  1.1.1.3.12.1    tls 				active++;
    464  1.1.1.3.12.1    tls #if 0
    465  1.1.1.3.12.1    tls 				fprintf( stderr,
    466  1.1.1.3.12.1    tls 					">>> PID=%ld - Search maxloop=%d cnt=%d active=%d msgid=%d: "
    467  1.1.1.3.12.1    tls 					"base=\"%s\" scope=%s filter=\"%s\"\n",
    468  1.1.1.3.12.1    tls 					(long) pid, innerloop, i, active, msgids[i],
    469  1.1.1.3.12.1    tls 					sbase, ldap_pvt_scope2str( scope ), filter );
    470  1.1.1.3.12.1    tls #endif
    471  1.1.1.3.12.1    tls 				i++;
    472  1.1.1.3.12.1    tls 
    473  1.1.1.3.12.1    tls 				if ( rc ) {
    474  1.1.1.3.12.1    tls 					int first = tester_ignore_err( rc );
    475  1.1.1.3.12.1    tls 					/* if ignore.. */
    476  1.1.1.3.12.1    tls 					if ( first ) {
    477  1.1.1.3.12.1    tls 						/* only log if first occurrence */
    478  1.1.1.3.12.1    tls 						if ( ( force < 2 && first > 0 ) || abs(first) == 1 ) {
    479  1.1.1.3.12.1    tls 							tester_ldap_error( ld, "ldap_search_ext", NULL );
    480  1.1.1.3.12.1    tls 						}
    481  1.1.1.3.12.1    tls 						continue;
    482  1.1.1.3.12.1    tls 					}
    483  1.1.1.3.12.1    tls 
    484  1.1.1.3.12.1    tls 					/* busy needs special handling */
    485  1.1.1.3.12.1    tls 					snprintf( buf, sizeof( buf ),
    486  1.1.1.3.12.1    tls 						"base=\"%s\" filter=\"%s\"\n",
    487  1.1.1.3.12.1    tls 						sbase, filter );
    488  1.1.1.3.12.1    tls 					tester_ldap_error( ld, "ldap_search_ext", buf );
    489  1.1.1.3.12.1    tls 					if ( rc == LDAP_BUSY && do_retry > 0 ) {
    490  1.1.1.3.12.1    tls 						ldap_unbind_ext( ld, NULL, NULL );
    491  1.1.1.3.12.1    tls 						ld = NULL;
    492  1.1.1.3.12.1    tls 						do_retry--;
    493  1.1.1.3.12.1    tls 						goto retry;
    494  1.1.1.3.12.1    tls 					}
    495  1.1.1.3.12.1    tls 					break;
    496  1.1.1.3.12.1    tls 				}
    497           1.1  lukem 
    498  1.1.1.3.12.1    tls 				if ( swamp > 2 ) {
    499  1.1.1.3.12.1    tls 					continue;
    500           1.1  lukem 				}
    501           1.1  lukem 			}
    502           1.1  lukem 
    503  1.1.1.3.12.1    tls 			rc = ldap_result( ld, LDAP_RES_ANY, 0, NULL, &res );
    504  1.1.1.3.12.1    tls 			switch ( rc ) {
    505  1.1.1.3.12.1    tls 			case -1:
    506  1.1.1.3.12.1    tls 				/* gone really bad */
    507  1.1.1.3.12.1    tls 				goto cleanup;
    508  1.1.1.3.12.1    tls 
    509  1.1.1.3.12.1    tls 			case 0:
    510  1.1.1.3.12.1    tls 				/* timeout (impossible) */
    511  1.1.1.3.12.1    tls 				break;
    512  1.1.1.3.12.1    tls 
    513  1.1.1.3.12.1    tls 			case LDAP_RES_SEARCH_ENTRY:
    514  1.1.1.3.12.1    tls 			case LDAP_RES_SEARCH_REFERENCE:
    515  1.1.1.3.12.1    tls 				/* ignore */
    516  1.1.1.3.12.1    tls 				break;
    517  1.1.1.3.12.1    tls 
    518  1.1.1.3.12.1    tls 			case LDAP_RES_SEARCH_RESULT:
    519  1.1.1.3.12.1    tls 				/* just remove, no error checking (TODO?) */
    520  1.1.1.3.12.1    tls 				msgid = ldap_msgid( res );
    521  1.1.1.3.12.1    tls 				ldap_parse_result( ld, res, &rc, NULL, NULL, NULL, NULL, 1 );
    522  1.1.1.3.12.1    tls 				res = NULL;
    523  1.1.1.3.12.1    tls 
    524  1.1.1.3.12.1    tls 				/* linear search, bah */
    525  1.1.1.3.12.1    tls 				for ( j = 0; j < i; j++ ) {
    526  1.1.1.3.12.1    tls 					if ( msgids[ j ] == msgid ) {
    527  1.1.1.3.12.1    tls 						msgids[ j ] = -1;
    528  1.1.1.3.12.1    tls 						active--;
    529  1.1.1.3.12.1    tls #if 0
    530  1.1.1.3.12.1    tls 						fprintf( stderr,
    531  1.1.1.3.12.1    tls 							"<<< PID=%ld - SearchDone maxloop=%d cnt=%d active=%d msgid=%d: "
    532  1.1.1.3.12.1    tls 							"base=\"%s\" scope=%s filter=\"%s\"\n",
    533  1.1.1.3.12.1    tls 							(long) pid, innerloop, j, active, msgid,
    534  1.1.1.3.12.1    tls 							sbase, ldap_pvt_scope2str( scope ), filter );
    535  1.1.1.3.12.1    tls #endif
    536  1.1.1.3.12.1    tls 						break;
    537  1.1.1.3.12.1    tls 					}
    538  1.1.1.3.12.1    tls 				}
    539  1.1.1.3.12.1    tls 				break;
    540  1.1.1.3.12.1    tls 
    541  1.1.1.3.12.1    tls 			default:
    542  1.1.1.3.12.1    tls 				/* other messages unexpected */
    543  1.1.1.3.12.1    tls 				fprintf( stderr,
    544  1.1.1.3.12.1    tls 					"### PID=%ld - Search(%d): "
    545  1.1.1.3.12.1    tls 					"base=\"%s\" scope=%s filter=\"%s\" "
    546  1.1.1.3.12.1    tls 					"attrs=%s%s. unexpected response tag=%d\n",
    547  1.1.1.3.12.1    tls 					(long) pid, innerloop,
    548  1.1.1.3.12.1    tls 					sbase, ldap_pvt_scope2str( scope ), filter,
    549  1.1.1.3.12.1    tls 					attrs[0], attrs[1] ? " (more...)" : "", rc );
    550  1.1.1.3.12.1    tls 				break;
    551  1.1.1.3.12.1    tls 			}
    552  1.1.1.3.12.1    tls 
    553  1.1.1.3.12.1    tls 			if ( res != NULL ) {
    554  1.1.1.3.12.1    tls 				ldap_msgfree( res );
    555  1.1.1.3.12.1    tls 			}
    556  1.1.1.3.12.1    tls 		} while ( i < innerloop || active > 0 );
    557  1.1.1.3.12.1    tls 
    558  1.1.1.3.12.1    tls 	} else {
    559  1.1.1.3.12.1    tls 		for ( ; i < innerloop; i++ ) {
    560  1.1.1.3.12.1    tls 			LDAPMessage *res = NULL;
    561  1.1.1.3.12.1    tls 
    562  1.1.1.3.12.1    tls 			if (swamp) {
    563  1.1.1.3.12.1    tls 				int msgid;
    564  1.1.1.3.12.1    tls 				rc = ldap_search_ext( ld, sbase, scope,
    565  1.1.1.3.12.1    tls 						filter, NULL, noattrs, NULL, NULL,
    566  1.1.1.3.12.1    tls 						NULL, LDAP_NO_LIMIT, &msgid );
    567  1.1.1.3.12.1    tls 				if ( rc == LDAP_SUCCESS ) continue;
    568  1.1.1.3.12.1    tls 				else break;
    569  1.1.1.3.12.1    tls 			}
    570  1.1.1.3.12.1    tls 
    571  1.1.1.3.12.1    tls 			rc = ldap_search_ext_s( ld, sbase, scope,
    572  1.1.1.3.12.1    tls 					filter, attrs, noattrs, NULL, NULL,
    573  1.1.1.3.12.1    tls 					NULL, LDAP_NO_LIMIT, &res );
    574  1.1.1.3.12.1    tls 			if ( res != NULL ) {
    575  1.1.1.3.12.1    tls 				ldap_msgfree( res );
    576  1.1.1.3.12.1    tls 			}
    577  1.1.1.3.12.1    tls 
    578  1.1.1.3.12.1    tls 			if ( rc ) {
    579  1.1.1.3.12.1    tls 				int first = tester_ignore_err( rc );
    580  1.1.1.3.12.1    tls 				/* if ignore.. */
    581  1.1.1.3.12.1    tls 				if ( first ) {
    582  1.1.1.3.12.1    tls 					/* only log if first occurrence */
    583  1.1.1.3.12.1    tls 					if ( ( force < 2 && first > 0 ) || abs(first) == 1 ) {
    584  1.1.1.3.12.1    tls 						tester_ldap_error( ld, "ldap_search_ext_s", NULL );
    585  1.1.1.3.12.1    tls 					}
    586  1.1.1.3.12.1    tls 					continue;
    587  1.1.1.3.12.1    tls 				}
    588  1.1.1.3.12.1    tls 
    589  1.1.1.3.12.1    tls 				/* busy needs special handling */
    590  1.1.1.3.12.1    tls 				snprintf( buf, sizeof( buf ),
    591  1.1.1.3.12.1    tls 					"base=\"%s\" filter=\"%s\"\n",
    592  1.1.1.3.12.1    tls 					sbase, filter );
    593  1.1.1.3.12.1    tls 				tester_ldap_error( ld, "ldap_search_ext_s", buf );
    594  1.1.1.3.12.1    tls 				if ( rc == LDAP_BUSY && do_retry > 0 ) {
    595  1.1.1.3.12.1    tls 					ldap_unbind_ext( ld, NULL, NULL );
    596  1.1.1.3.12.1    tls 					ld = NULL;
    597  1.1.1.3.12.1    tls 					do_retry--;
    598  1.1.1.3.12.1    tls 					goto retry;
    599  1.1.1.3.12.1    tls 				}
    600  1.1.1.3.12.1    tls 				break;
    601           1.1  lukem 			}
    602           1.1  lukem 		}
    603           1.1  lukem 	}
    604           1.1  lukem 
    605  1.1.1.3.12.1    tls cleanup:;
    606  1.1.1.3.12.1    tls 	if ( msgids != NULL ) {
    607  1.1.1.3.12.1    tls 		free( msgids );
    608  1.1.1.3.12.1    tls 	}
    609  1.1.1.3.12.1    tls 
    610           1.1  lukem 	if ( ldp != NULL ) {
    611           1.1  lukem 		*ldp = ld;
    612           1.1  lukem 
    613           1.1  lukem 	} else {
    614       1.1.1.2  lukem 		fprintf( stderr, "  PID=%ld - Search done (%d).\n", (long) pid, rc );
    615           1.1  lukem 
    616           1.1  lukem 		if ( ld != NULL ) {
    617           1.1  lukem 			ldap_unbind_ext( ld, NULL, NULL );
    618           1.1  lukem 		}
    619           1.1  lukem 	}
    620           1.1  lukem }
    621