slapd-search.c revision 1.1.1.9 1 1.1.1.9 christos /* $NetBSD: slapd-search.c,v 1.1.1.9 2021/08/14 16:05:12 christos Exp $ */
2 1.1.1.2 lukem
3 1.1.1.4 tron /* $OpenLDAP$ */
4 1.1 lukem /* This work is part of OpenLDAP Software <http://www.openldap.org/>.
5 1.1 lukem *
6 1.1.1.9 christos * Copyright 1999-2021 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.1.5 christos #include <sys/cdefs.h>
23 1.1.1.9 christos __RCSID("$NetBSD: slapd-search.c,v 1.1.1.9 2021/08/14 16:05:12 christos Exp $");
24 1.1.1.5 christos
25 1.1 lukem #include "portable.h"
26 1.1 lukem
27 1.1 lukem #include <stdio.h>
28 1.1 lukem
29 1.1 lukem #include "ac/stdlib.h"
30 1.1 lukem
31 1.1 lukem #include "ac/ctype.h"
32 1.1 lukem #include "ac/param.h"
33 1.1 lukem #include "ac/socket.h"
34 1.1 lukem #include "ac/string.h"
35 1.1 lukem #include "ac/unistd.h"
36 1.1 lukem #include "ac/wait.h"
37 1.1 lukem
38 1.1 lukem #include "ldap.h"
39 1.1 lukem #include "lutil.h"
40 1.1 lukem #include "ldap_pvt.h"
41 1.1 lukem
42 1.1 lukem #include "slapd-common.h"
43 1.1 lukem
44 1.1 lukem #define LOOPS 100
45 1.1 lukem #define RETRIES 0
46 1.1 lukem
47 1.1 lukem static void
48 1.1.1.9 christos do_search( struct tester_conn_args *config,
49 1.1 lukem char *sbase, int scope, char *filter, LDAP **ldp,
50 1.1 lukem char **attrs, int noattrs, int nobind,
51 1.1.1.9 christos int innerloop, int force );
52 1.1 lukem
53 1.1 lukem static void
54 1.1.1.9 christos do_random( struct tester_conn_args *config,
55 1.1 lukem char *sbase, int scope, char *filter, char *attr,
56 1.1.1.9 christos char **attrs, int noattrs, int nobind, int force );
57 1.1 lukem
58 1.1 lukem static void
59 1.1.1.9 christos usage( char *name, char opt )
60 1.1 lukem {
61 1.1.1.9 christos if ( opt != '\0' ) {
62 1.1.1.9 christos fprintf( stderr, "unknown/incorrect option \"%c\"\n", opt );
63 1.1 lukem }
64 1.1 lukem
65 1.1.1.9 christos fprintf( stderr, "usage: %s " TESTER_COMMON_HELP
66 1.1 lukem "-b <searchbase> "
67 1.1 lukem "-s <scope> "
68 1.1 lukem "-f <searchfilter> "
69 1.1 lukem "[-a <attr>] "
70 1.1 lukem "[-A] "
71 1.1 lukem "[-F] "
72 1.1 lukem "[-N] "
73 1.1.1.4 tron "[-S[S[S]]] "
74 1.1 lukem "[<attrs>] "
75 1.1 lukem "\n",
76 1.1.1.9 christos name );
77 1.1 lukem exit( EXIT_FAILURE );
78 1.1 lukem }
79 1.1 lukem
80 1.1.1.4 tron /* -S: just send requests without reading responses
81 1.1.1.4 tron * -SS: send all requests asynchronous and immediately start reading responses
82 1.1.1.4 tron * -SSS: send all requests asynchronous; then read responses
83 1.1.1.4 tron */
84 1.1.1.2 lukem static int swamp;
85 1.1.1.2 lukem
86 1.1 lukem int
87 1.1 lukem main( int argc, char **argv )
88 1.1 lukem {
89 1.1 lukem int i;
90 1.1 lukem char *sbase = NULL;
91 1.1 lukem int scope = LDAP_SCOPE_SUBTREE;
92 1.1 lukem char *filter = NULL;
93 1.1 lukem char *attr = NULL;
94 1.1 lukem char *srchattrs[] = { "cn", "sn", NULL };
95 1.1 lukem char **attrs = srchattrs;
96 1.1 lukem int force = 0;
97 1.1 lukem int noattrs = 0;
98 1.1 lukem int nobind = 0;
99 1.1.1.9 christos struct tester_conn_args *config;
100 1.1 lukem
101 1.1.1.9 christos config = tester_init( "slapd-search", TESTER_SEARCH );
102 1.1 lukem
103 1.1 lukem /* by default, tolerate referrals and no such object */
104 1.1 lukem tester_ignore_str2errlist( "REFERRAL,NO_SUCH_OBJECT" );
105 1.1 lukem
106 1.1.1.9 christos while ( ( i = getopt( argc, argv, TESTER_COMMON_OPTS "Aa:b:f:FNSs:T:" ) ) != EOF )
107 1.1 lukem {
108 1.1 lukem switch ( i ) {
109 1.1 lukem case 'A':
110 1.1 lukem noattrs++;
111 1.1 lukem break;
112 1.1 lukem
113 1.1 lukem case 'N':
114 1.1.1.9 christos nobind = TESTER_INIT_ONLY;
115 1.1 lukem break;
116 1.1 lukem
117 1.1 lukem case 'a':
118 1.1.1.9 christos attr = optarg;
119 1.1 lukem break;
120 1.1 lukem
121 1.1 lukem case 'b': /* file with search base */
122 1.1.1.9 christos sbase = optarg;
123 1.1 lukem break;
124 1.1 lukem
125 1.1 lukem case 'f': /* the search request */
126 1.1.1.9 christos filter = optarg;
127 1.1 lukem break;
128 1.1 lukem
129 1.1 lukem case 'F':
130 1.1 lukem force++;
131 1.1 lukem break;
132 1.1 lukem
133 1.1 lukem case 'T':
134 1.1 lukem attrs = ldap_str2charray( optarg, "," );
135 1.1 lukem if ( attrs == NULL ) {
136 1.1 lukem usage( argv[0], i );
137 1.1 lukem }
138 1.1 lukem break;
139 1.1 lukem
140 1.1.1.2 lukem case 'S':
141 1.1.1.2 lukem swamp++;
142 1.1.1.2 lukem break;
143 1.1.1.2 lukem
144 1.1 lukem case 's':
145 1.1 lukem scope = ldap_pvt_str2scope( optarg );
146 1.1 lukem if ( scope == -1 ) {
147 1.1 lukem usage( argv[0], i );
148 1.1 lukem }
149 1.1 lukem break;
150 1.1 lukem
151 1.1 lukem default:
152 1.1.1.9 christos if ( tester_config_opt( config, i, optarg ) == LDAP_SUCCESS ) {
153 1.1.1.9 christos break;
154 1.1.1.9 christos }
155 1.1 lukem usage( argv[0], i );
156 1.1 lukem break;
157 1.1 lukem }
158 1.1 lukem }
159 1.1 lukem
160 1.1.1.9 christos if (( sbase == NULL ) || ( filter == NULL ))
161 1.1.1.9 christos usage( argv[0], 0 );
162 1.1 lukem
163 1.1 lukem if ( *filter == '\0' ) {
164 1.1 lukem
165 1.1 lukem fprintf( stderr, "%s: invalid EMPTY search filter.\n",
166 1.1 lukem argv[0] );
167 1.1 lukem exit( EXIT_FAILURE );
168 1.1 lukem
169 1.1 lukem }
170 1.1 lukem
171 1.1 lukem if ( argv[optind] != NULL ) {
172 1.1 lukem attrs = &argv[optind];
173 1.1 lukem }
174 1.1 lukem
175 1.1.1.9 christos tester_config_finish( config );
176 1.1 lukem
177 1.1.1.9 christos for ( i = 0; i < config->outerloops; i++ ) {
178 1.1 lukem if ( attr != NULL ) {
179 1.1.1.9 christos do_random( config,
180 1.1 lukem sbase, scope, filter, attr,
181 1.1.1.9 christos attrs, noattrs, nobind, force );
182 1.1 lukem
183 1.1 lukem } else {
184 1.1.1.9 christos do_search( config, sbase, scope, filter,
185 1.1.1.9 christos NULL, attrs, noattrs, nobind,
186 1.1.1.9 christos config->loops, force );
187 1.1 lukem }
188 1.1 lukem }
189 1.1 lukem
190 1.1 lukem exit( EXIT_SUCCESS );
191 1.1 lukem }
192 1.1 lukem
193 1.1 lukem
194 1.1 lukem static void
195 1.1.1.9 christos do_random( struct tester_conn_args *config,
196 1.1 lukem char *sbase, int scope, char *filter, char *attr,
197 1.1.1.9 christos char **srchattrs, int noattrs, int nobind, int force )
198 1.1 lukem {
199 1.1 lukem LDAP *ld = NULL;
200 1.1.1.9 christos int i = 0, do_retry = config->retries;
201 1.1 lukem char *attrs[ 2 ];
202 1.1 lukem int rc = LDAP_SUCCESS;
203 1.1 lukem int nvalues = 0;
204 1.1 lukem char **values = NULL;
205 1.1 lukem LDAPMessage *res = NULL, *e = NULL;
206 1.1 lukem
207 1.1 lukem attrs[ 0 ] = attr;
208 1.1 lukem attrs[ 1 ] = NULL;
209 1.1 lukem
210 1.1.1.9 christos tester_init_ld( &ld, config, nobind );
211 1.1 lukem
212 1.1 lukem rc = ldap_search_ext_s( ld, sbase, LDAP_SCOPE_SUBTREE,
213 1.1 lukem filter, attrs, 0, NULL, NULL, NULL, LDAP_NO_LIMIT, &res );
214 1.1 lukem switch ( rc ) {
215 1.1 lukem case LDAP_SIZELIMIT_EXCEEDED:
216 1.1 lukem case LDAP_TIMELIMIT_EXCEEDED:
217 1.1 lukem case LDAP_SUCCESS:
218 1.1 lukem if ( ldap_count_entries( ld, res ) == 0 ) {
219 1.1 lukem if ( rc ) {
220 1.1 lukem tester_ldap_error( ld, "ldap_search_ext_s", NULL );
221 1.1 lukem }
222 1.1 lukem break;
223 1.1 lukem }
224 1.1 lukem
225 1.1 lukem for ( e = ldap_first_entry( ld, res ); e != NULL; e = ldap_next_entry( ld, e ) )
226 1.1 lukem {
227 1.1 lukem struct berval **v = ldap_get_values_len( ld, e, attr );
228 1.1 lukem
229 1.1 lukem if ( v != NULL ) {
230 1.1 lukem int n = ldap_count_values_len( v );
231 1.1 lukem int j;
232 1.1 lukem
233 1.1 lukem values = realloc( values, ( nvalues + n + 1 )*sizeof( char * ) );
234 1.1.1.9 christos if ( !values ) {
235 1.1.1.9 christos tester_error( "realloc failed" );
236 1.1.1.9 christos exit( EXIT_FAILURE );
237 1.1.1.9 christos }
238 1.1 lukem for ( j = 0; j < n; j++ ) {
239 1.1 lukem values[ nvalues + j ] = strdup( v[ j ]->bv_val );
240 1.1 lukem }
241 1.1 lukem values[ nvalues + j ] = NULL;
242 1.1 lukem nvalues += n;
243 1.1 lukem ldap_value_free_len( v );
244 1.1 lukem }
245 1.1 lukem }
246 1.1 lukem
247 1.1 lukem ldap_msgfree( res );
248 1.1 lukem
249 1.1 lukem if ( !values ) {
250 1.1 lukem fprintf( stderr, " PID=%ld - Search base=\"%s\" filter=\"%s\" got %d values.\n",
251 1.1 lukem (long) pid, sbase, filter, nvalues );
252 1.1 lukem exit(EXIT_FAILURE);
253 1.1 lukem }
254 1.1 lukem
255 1.1.1.9 christos if ( do_retry == config->retries ) {
256 1.1 lukem fprintf( stderr, " PID=%ld - Search base=\"%s\" filter=\"%s\" got %d values.\n",
257 1.1 lukem (long) pid, sbase, filter, nvalues );
258 1.1 lukem }
259 1.1 lukem
260 1.1.1.9 christos for ( i = 0; i < config->loops; i++ ) {
261 1.1 lukem char buf[ BUFSIZ ];
262 1.1 lukem #if 0 /* use high-order bits for better randomness (Numerical Recipes in "C") */
263 1.1 lukem int r = rand() % nvalues;
264 1.1 lukem #endif
265 1.1 lukem int r = ((double)nvalues)*rand()/(RAND_MAX + 1.0);
266 1.1 lukem
267 1.1 lukem snprintf( buf, sizeof( buf ), "(%s=%s)", attr, values[ r ] );
268 1.1 lukem
269 1.1.1.9 christos do_search( config,
270 1.1 lukem sbase, scope, buf, &ld,
271 1.1 lukem srchattrs, noattrs, nobind,
272 1.1.1.9 christos 1, force );
273 1.1 lukem }
274 1.1 lukem break;
275 1.1 lukem
276 1.1 lukem default:
277 1.1 lukem tester_ldap_error( ld, "ldap_search_ext_s", NULL );
278 1.1 lukem break;
279 1.1 lukem }
280 1.1 lukem
281 1.1.1.2 lukem fprintf( stderr, " PID=%ld - Search done (%d).\n", (long) pid, rc );
282 1.1 lukem
283 1.1.1.9 christos if ( values ) {
284 1.1.1.9 christos for ( i = 0; i < nvalues; i++ ) {
285 1.1.1.9 christos free( values[i] );
286 1.1.1.9 christos }
287 1.1.1.9 christos free( values );
288 1.1.1.9 christos }
289 1.1.1.9 christos
290 1.1 lukem if ( ld != NULL ) {
291 1.1 lukem ldap_unbind_ext( ld, NULL, NULL );
292 1.1 lukem }
293 1.1 lukem }
294 1.1 lukem
295 1.1 lukem static void
296 1.1.1.9 christos do_search( struct tester_conn_args *config,
297 1.1 lukem char *sbase, int scope, char *filter, LDAP **ldp,
298 1.1 lukem char **attrs, int noattrs, int nobind,
299 1.1.1.9 christos int innerloop, int force )
300 1.1 lukem {
301 1.1 lukem LDAP *ld = ldp ? *ldp : NULL;
302 1.1.1.9 christos int i = 0, do_retry = config->retries;
303 1.1 lukem int rc = LDAP_SUCCESS;
304 1.1 lukem char buf[ BUFSIZ ];
305 1.1.1.4 tron int *msgids = NULL, active = 0;
306 1.1 lukem
307 1.1.1.4 tron /* make room for msgid */
308 1.1.1.4 tron if ( swamp > 1 ) {
309 1.1.1.4 tron msgids = (int *)calloc( sizeof(int), innerloop );
310 1.1.1.9 christos if ( !msgids ) {
311 1.1.1.9 christos tester_error( "calloc failed" );
312 1.1.1.9 christos exit( EXIT_FAILURE );
313 1.1.1.9 christos }
314 1.1.1.4 tron }
315 1.1 lukem
316 1.1 lukem retry:;
317 1.1 lukem if ( ld == NULL ) {
318 1.1.1.9 christos fprintf( stderr,
319 1.1.1.9 christos "PID=%ld - Search(%d): "
320 1.1.1.9 christos "base=\"%s\" scope=%s filter=\"%s\" "
321 1.1.1.9 christos "attrs=%s%s.\n",
322 1.1.1.9 christos (long) pid, innerloop,
323 1.1.1.9 christos sbase, ldap_pvt_scope2str( scope ), filter,
324 1.1.1.9 christos attrs[0], attrs[1] ? " (more...)" : "" );
325 1.1 lukem
326 1.1.1.9 christos tester_init_ld( &ld, config, nobind );
327 1.1 lukem }
328 1.1 lukem
329 1.1.1.4 tron if ( swamp > 1 ) {
330 1.1.1.4 tron do {
331 1.1.1.4 tron LDAPMessage *res = NULL;
332 1.1.1.4 tron int j, msgid;
333 1.1.1.4 tron
334 1.1.1.4 tron if ( i < innerloop ) {
335 1.1.1.4 tron rc = ldap_search_ext( ld, sbase, scope,
336 1.1.1.4 tron filter, NULL, noattrs, NULL, NULL,
337 1.1.1.4 tron NULL, LDAP_NO_LIMIT, &msgids[i] );
338 1.1.1.4 tron
339 1.1.1.4 tron active++;
340 1.1.1.4 tron #if 0
341 1.1.1.4 tron fprintf( stderr,
342 1.1.1.4 tron ">>> PID=%ld - Search maxloop=%d cnt=%d active=%d msgid=%d: "
343 1.1.1.4 tron "base=\"%s\" scope=%s filter=\"%s\"\n",
344 1.1.1.4 tron (long) pid, innerloop, i, active, msgids[i],
345 1.1.1.4 tron sbase, ldap_pvt_scope2str( scope ), filter );
346 1.1.1.4 tron #endif
347 1.1.1.4 tron i++;
348 1.1.1.4 tron
349 1.1.1.4 tron if ( rc ) {
350 1.1.1.4 tron int first = tester_ignore_err( rc );
351 1.1.1.4 tron /* if ignore.. */
352 1.1.1.4 tron if ( first ) {
353 1.1.1.4 tron /* only log if first occurrence */
354 1.1.1.4 tron if ( ( force < 2 && first > 0 ) || abs(first) == 1 ) {
355 1.1.1.4 tron tester_ldap_error( ld, "ldap_search_ext", NULL );
356 1.1.1.4 tron }
357 1.1.1.4 tron continue;
358 1.1.1.4 tron }
359 1.1.1.4 tron
360 1.1.1.4 tron /* busy needs special handling */
361 1.1.1.4 tron snprintf( buf, sizeof( buf ),
362 1.1.1.4 tron "base=\"%s\" filter=\"%s\"\n",
363 1.1.1.4 tron sbase, filter );
364 1.1.1.4 tron tester_ldap_error( ld, "ldap_search_ext", buf );
365 1.1.1.4 tron if ( rc == LDAP_BUSY && do_retry > 0 ) {
366 1.1.1.4 tron ldap_unbind_ext( ld, NULL, NULL );
367 1.1.1.4 tron ld = NULL;
368 1.1.1.4 tron do_retry--;
369 1.1.1.4 tron goto retry;
370 1.1.1.4 tron }
371 1.1.1.4 tron break;
372 1.1.1.4 tron }
373 1.1 lukem
374 1.1.1.4 tron if ( swamp > 2 ) {
375 1.1.1.4 tron continue;
376 1.1 lukem }
377 1.1 lukem }
378 1.1 lukem
379 1.1.1.4 tron rc = ldap_result( ld, LDAP_RES_ANY, 0, NULL, &res );
380 1.1.1.4 tron switch ( rc ) {
381 1.1.1.4 tron case -1:
382 1.1.1.4 tron /* gone really bad */
383 1.1.1.4 tron goto cleanup;
384 1.1.1.4 tron
385 1.1.1.4 tron case 0:
386 1.1.1.4 tron /* timeout (impossible) */
387 1.1.1.4 tron break;
388 1.1.1.4 tron
389 1.1.1.4 tron case LDAP_RES_SEARCH_ENTRY:
390 1.1.1.4 tron case LDAP_RES_SEARCH_REFERENCE:
391 1.1.1.4 tron /* ignore */
392 1.1.1.4 tron break;
393 1.1.1.4 tron
394 1.1.1.4 tron case LDAP_RES_SEARCH_RESULT:
395 1.1.1.4 tron /* just remove, no error checking (TODO?) */
396 1.1.1.4 tron msgid = ldap_msgid( res );
397 1.1.1.4 tron ldap_parse_result( ld, res, &rc, NULL, NULL, NULL, NULL, 1 );
398 1.1.1.4 tron res = NULL;
399 1.1.1.4 tron
400 1.1.1.4 tron /* linear search, bah */
401 1.1.1.4 tron for ( j = 0; j < i; j++ ) {
402 1.1.1.4 tron if ( msgids[ j ] == msgid ) {
403 1.1.1.4 tron msgids[ j ] = -1;
404 1.1.1.4 tron active--;
405 1.1.1.4 tron #if 0
406 1.1.1.4 tron fprintf( stderr,
407 1.1.1.4 tron "<<< PID=%ld - SearchDone maxloop=%d cnt=%d active=%d msgid=%d: "
408 1.1.1.4 tron "base=\"%s\" scope=%s filter=\"%s\"\n",
409 1.1.1.4 tron (long) pid, innerloop, j, active, msgid,
410 1.1.1.4 tron sbase, ldap_pvt_scope2str( scope ), filter );
411 1.1.1.4 tron #endif
412 1.1.1.4 tron break;
413 1.1.1.4 tron }
414 1.1.1.4 tron }
415 1.1.1.4 tron break;
416 1.1.1.4 tron
417 1.1.1.4 tron default:
418 1.1.1.4 tron /* other messages unexpected */
419 1.1.1.4 tron fprintf( stderr,
420 1.1.1.4 tron "### PID=%ld - Search(%d): "
421 1.1.1.4 tron "base=\"%s\" scope=%s filter=\"%s\" "
422 1.1.1.4 tron "attrs=%s%s. unexpected response tag=%d\n",
423 1.1.1.4 tron (long) pid, innerloop,
424 1.1.1.4 tron sbase, ldap_pvt_scope2str( scope ), filter,
425 1.1.1.4 tron attrs[0], attrs[1] ? " (more...)" : "", rc );
426 1.1.1.4 tron break;
427 1.1.1.4 tron }
428 1.1.1.4 tron
429 1.1.1.4 tron if ( res != NULL ) {
430 1.1.1.4 tron ldap_msgfree( res );
431 1.1.1.4 tron }
432 1.1.1.4 tron } while ( i < innerloop || active > 0 );
433 1.1.1.4 tron
434 1.1.1.4 tron } else {
435 1.1.1.4 tron for ( ; i < innerloop; i++ ) {
436 1.1.1.4 tron LDAPMessage *res = NULL;
437 1.1.1.4 tron
438 1.1.1.4 tron if (swamp) {
439 1.1.1.4 tron int msgid;
440 1.1.1.4 tron rc = ldap_search_ext( ld, sbase, scope,
441 1.1.1.4 tron filter, NULL, noattrs, NULL, NULL,
442 1.1.1.4 tron NULL, LDAP_NO_LIMIT, &msgid );
443 1.1.1.4 tron if ( rc == LDAP_SUCCESS ) continue;
444 1.1.1.4 tron else break;
445 1.1.1.4 tron }
446 1.1.1.4 tron
447 1.1.1.4 tron rc = ldap_search_ext_s( ld, sbase, scope,
448 1.1.1.4 tron filter, attrs, noattrs, NULL, NULL,
449 1.1.1.4 tron NULL, LDAP_NO_LIMIT, &res );
450 1.1.1.4 tron if ( res != NULL ) {
451 1.1.1.4 tron ldap_msgfree( res );
452 1.1.1.4 tron }
453 1.1.1.4 tron
454 1.1.1.4 tron if ( rc ) {
455 1.1.1.4 tron int first = tester_ignore_err( rc );
456 1.1.1.4 tron /* if ignore.. */
457 1.1.1.4 tron if ( first ) {
458 1.1.1.4 tron /* only log if first occurrence */
459 1.1.1.4 tron if ( ( force < 2 && first > 0 ) || abs(first) == 1 ) {
460 1.1.1.4 tron tester_ldap_error( ld, "ldap_search_ext_s", NULL );
461 1.1.1.4 tron }
462 1.1.1.4 tron continue;
463 1.1.1.4 tron }
464 1.1.1.4 tron
465 1.1.1.4 tron /* busy needs special handling */
466 1.1.1.4 tron snprintf( buf, sizeof( buf ),
467 1.1.1.4 tron "base=\"%s\" filter=\"%s\"\n",
468 1.1.1.4 tron sbase, filter );
469 1.1.1.4 tron tester_ldap_error( ld, "ldap_search_ext_s", buf );
470 1.1.1.4 tron if ( rc == LDAP_BUSY && do_retry > 0 ) {
471 1.1.1.4 tron ldap_unbind_ext( ld, NULL, NULL );
472 1.1.1.4 tron ld = NULL;
473 1.1.1.4 tron do_retry--;
474 1.1.1.4 tron goto retry;
475 1.1.1.4 tron }
476 1.1.1.4 tron break;
477 1.1 lukem }
478 1.1 lukem }
479 1.1 lukem }
480 1.1 lukem
481 1.1.1.4 tron cleanup:;
482 1.1.1.4 tron if ( msgids != NULL ) {
483 1.1.1.4 tron free( msgids );
484 1.1.1.4 tron }
485 1.1.1.4 tron
486 1.1 lukem if ( ldp != NULL ) {
487 1.1 lukem *ldp = ld;
488 1.1 lukem
489 1.1 lukem } else {
490 1.1.1.2 lukem fprintf( stderr, " PID=%ld - Search done (%d).\n", (long) pid, rc );
491 1.1 lukem
492 1.1 lukem if ( ld != NULL ) {
493 1.1 lukem ldap_unbind_ext( ld, NULL, NULL );
494 1.1 lukem }
495 1.1 lukem }
496 1.1 lukem }
497