slapd-search.c revision 1.3 1 1.3 christos /* $NetBSD: slapd-search.c,v 1.3 2021/08/14 16:15:03 christos Exp $ */
2 1.2 christos
3 1.2 christos /* $OpenLDAP$ */
4 1.1 lukem /* This work is part of OpenLDAP Software <http://www.openldap.org/>.
5 1.1 lukem *
6 1.3 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.2 christos #include <sys/cdefs.h>
23 1.3 christos __RCSID("$NetBSD: slapd-search.c,v 1.3 2021/08/14 16:15:03 christos Exp $");
24 1.2 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.3 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.3 christos int innerloop, int force );
52 1.1 lukem
53 1.1 lukem static void
54 1.3 christos do_random( struct tester_conn_args *config,
55 1.1 lukem char *sbase, int scope, char *filter, char *attr,
56 1.3 christos char **attrs, int noattrs, int nobind, int force );
57 1.1 lukem
58 1.1 lukem static void
59 1.3 christos usage( char *name, char opt )
60 1.1 lukem {
61 1.3 christos if ( opt != '\0' ) {
62 1.3 christos fprintf( stderr, "unknown/incorrect option \"%c\"\n", opt );
63 1.1 lukem }
64 1.1 lukem
65 1.3 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.2 christos "[-S[S[S]]] "
74 1.1 lukem "[<attrs>] "
75 1.1 lukem "\n",
76 1.3 christos name );
77 1.1 lukem exit( EXIT_FAILURE );
78 1.1 lukem }
79 1.1 lukem
80 1.2 christos /* -S: just send requests without reading responses
81 1.2 christos * -SS: send all requests asynchronous and immediately start reading responses
82 1.2 christos * -SSS: send all requests asynchronous; then read responses
83 1.2 christos */
84 1.2 christos static int swamp;
85 1.2 christos
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.3 christos struct tester_conn_args *config;
100 1.1 lukem
101 1.3 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.3 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.3 christos nobind = TESTER_INIT_ONLY;
115 1.1 lukem break;
116 1.1 lukem
117 1.1 lukem case 'a':
118 1.3 christos attr = optarg;
119 1.1 lukem break;
120 1.1 lukem
121 1.1 lukem case 'b': /* file with search base */
122 1.3 christos sbase = optarg;
123 1.1 lukem break;
124 1.1 lukem
125 1.1 lukem case 'f': /* the search request */
126 1.3 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.2 christos case 'S':
141 1.2 christos swamp++;
142 1.2 christos break;
143 1.2 christos
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.3 christos if ( tester_config_opt( config, i, optarg ) == LDAP_SUCCESS ) {
153 1.3 christos break;
154 1.3 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.3 christos if (( sbase == NULL ) || ( filter == NULL ))
161 1.3 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.3 christos tester_config_finish( config );
176 1.1 lukem
177 1.3 christos for ( i = 0; i < config->outerloops; i++ ) {
178 1.1 lukem if ( attr != NULL ) {
179 1.3 christos do_random( config,
180 1.1 lukem sbase, scope, filter, attr,
181 1.3 christos attrs, noattrs, nobind, force );
182 1.1 lukem
183 1.1 lukem } else {
184 1.3 christos do_search( config, sbase, scope, filter,
185 1.3 christos NULL, attrs, noattrs, nobind,
186 1.3 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.3 christos do_random( struct tester_conn_args *config,
196 1.1 lukem char *sbase, int scope, char *filter, char *attr,
197 1.3 christos char **srchattrs, int noattrs, int nobind, int force )
198 1.1 lukem {
199 1.1 lukem LDAP *ld = NULL;
200 1.3 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.3 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.3 christos if ( !values ) {
235 1.3 christos tester_error( "realloc failed" );
236 1.3 christos exit( EXIT_FAILURE );
237 1.3 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.3 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.3 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.3 christos do_search( config,
270 1.1 lukem sbase, scope, buf, &ld,
271 1.1 lukem srchattrs, noattrs, nobind,
272 1.3 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.2 christos fprintf( stderr, " PID=%ld - Search done (%d).\n", (long) pid, rc );
282 1.1 lukem
283 1.3 christos if ( values ) {
284 1.3 christos for ( i = 0; i < nvalues; i++ ) {
285 1.3 christos free( values[i] );
286 1.3 christos }
287 1.3 christos free( values );
288 1.3 christos }
289 1.3 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.3 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.3 christos int innerloop, int force )
300 1.1 lukem {
301 1.1 lukem LDAP *ld = ldp ? *ldp : NULL;
302 1.3 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.2 christos int *msgids = NULL, active = 0;
306 1.1 lukem
307 1.2 christos /* make room for msgid */
308 1.2 christos if ( swamp > 1 ) {
309 1.2 christos msgids = (int *)calloc( sizeof(int), innerloop );
310 1.3 christos if ( !msgids ) {
311 1.3 christos tester_error( "calloc failed" );
312 1.3 christos exit( EXIT_FAILURE );
313 1.3 christos }
314 1.2 christos }
315 1.1 lukem
316 1.1 lukem retry:;
317 1.1 lukem if ( ld == NULL ) {
318 1.3 christos fprintf( stderr,
319 1.3 christos "PID=%ld - Search(%d): "
320 1.3 christos "base=\"%s\" scope=%s filter=\"%s\" "
321 1.3 christos "attrs=%s%s.\n",
322 1.3 christos (long) pid, innerloop,
323 1.3 christos sbase, ldap_pvt_scope2str( scope ), filter,
324 1.3 christos attrs[0], attrs[1] ? " (more...)" : "" );
325 1.1 lukem
326 1.3 christos tester_init_ld( &ld, config, nobind );
327 1.1 lukem }
328 1.1 lukem
329 1.2 christos if ( swamp > 1 ) {
330 1.2 christos do {
331 1.2 christos LDAPMessage *res = NULL;
332 1.2 christos int j, msgid;
333 1.2 christos
334 1.2 christos if ( i < innerloop ) {
335 1.2 christos rc = ldap_search_ext( ld, sbase, scope,
336 1.2 christos filter, NULL, noattrs, NULL, NULL,
337 1.2 christos NULL, LDAP_NO_LIMIT, &msgids[i] );
338 1.2 christos
339 1.2 christos active++;
340 1.2 christos #if 0
341 1.2 christos fprintf( stderr,
342 1.2 christos ">>> PID=%ld - Search maxloop=%d cnt=%d active=%d msgid=%d: "
343 1.2 christos "base=\"%s\" scope=%s filter=\"%s\"\n",
344 1.2 christos (long) pid, innerloop, i, active, msgids[i],
345 1.2 christos sbase, ldap_pvt_scope2str( scope ), filter );
346 1.2 christos #endif
347 1.2 christos i++;
348 1.2 christos
349 1.2 christos if ( rc ) {
350 1.2 christos int first = tester_ignore_err( rc );
351 1.2 christos /* if ignore.. */
352 1.2 christos if ( first ) {
353 1.2 christos /* only log if first occurrence */
354 1.2 christos if ( ( force < 2 && first > 0 ) || abs(first) == 1 ) {
355 1.2 christos tester_ldap_error( ld, "ldap_search_ext", NULL );
356 1.2 christos }
357 1.2 christos continue;
358 1.2 christos }
359 1.2 christos
360 1.2 christos /* busy needs special handling */
361 1.2 christos snprintf( buf, sizeof( buf ),
362 1.2 christos "base=\"%s\" filter=\"%s\"\n",
363 1.2 christos sbase, filter );
364 1.2 christos tester_ldap_error( ld, "ldap_search_ext", buf );
365 1.2 christos if ( rc == LDAP_BUSY && do_retry > 0 ) {
366 1.2 christos ldap_unbind_ext( ld, NULL, NULL );
367 1.2 christos ld = NULL;
368 1.2 christos do_retry--;
369 1.2 christos goto retry;
370 1.2 christos }
371 1.2 christos break;
372 1.2 christos }
373 1.2 christos
374 1.2 christos if ( swamp > 2 ) {
375 1.2 christos continue;
376 1.2 christos }
377 1.2 christos }
378 1.1 lukem
379 1.2 christos rc = ldap_result( ld, LDAP_RES_ANY, 0, NULL, &res );
380 1.2 christos switch ( rc ) {
381 1.2 christos case -1:
382 1.2 christos /* gone really bad */
383 1.2 christos goto cleanup;
384 1.2 christos
385 1.2 christos case 0:
386 1.2 christos /* timeout (impossible) */
387 1.2 christos break;
388 1.2 christos
389 1.2 christos case LDAP_RES_SEARCH_ENTRY:
390 1.2 christos case LDAP_RES_SEARCH_REFERENCE:
391 1.2 christos /* ignore */
392 1.2 christos break;
393 1.2 christos
394 1.2 christos case LDAP_RES_SEARCH_RESULT:
395 1.2 christos /* just remove, no error checking (TODO?) */
396 1.2 christos msgid = ldap_msgid( res );
397 1.2 christos ldap_parse_result( ld, res, &rc, NULL, NULL, NULL, NULL, 1 );
398 1.2 christos res = NULL;
399 1.2 christos
400 1.2 christos /* linear search, bah */
401 1.2 christos for ( j = 0; j < i; j++ ) {
402 1.2 christos if ( msgids[ j ] == msgid ) {
403 1.2 christos msgids[ j ] = -1;
404 1.2 christos active--;
405 1.2 christos #if 0
406 1.2 christos fprintf( stderr,
407 1.2 christos "<<< PID=%ld - SearchDone maxloop=%d cnt=%d active=%d msgid=%d: "
408 1.2 christos "base=\"%s\" scope=%s filter=\"%s\"\n",
409 1.2 christos (long) pid, innerloop, j, active, msgid,
410 1.2 christos sbase, ldap_pvt_scope2str( scope ), filter );
411 1.2 christos #endif
412 1.2 christos break;
413 1.2 christos }
414 1.1 lukem }
415 1.2 christos break;
416 1.2 christos
417 1.2 christos default:
418 1.2 christos /* other messages unexpected */
419 1.2 christos fprintf( stderr,
420 1.2 christos "### PID=%ld - Search(%d): "
421 1.2 christos "base=\"%s\" scope=%s filter=\"%s\" "
422 1.2 christos "attrs=%s%s. unexpected response tag=%d\n",
423 1.2 christos (long) pid, innerloop,
424 1.2 christos sbase, ldap_pvt_scope2str( scope ), filter,
425 1.2 christos attrs[0], attrs[1] ? " (more...)" : "", rc );
426 1.2 christos break;
427 1.1 lukem }
428 1.1 lukem
429 1.2 christos if ( res != NULL ) {
430 1.2 christos ldap_msgfree( res );
431 1.2 christos }
432 1.2 christos } while ( i < innerloop || active > 0 );
433 1.2 christos
434 1.2 christos } else {
435 1.2 christos for ( ; i < innerloop; i++ ) {
436 1.2 christos LDAPMessage *res = NULL;
437 1.2 christos
438 1.2 christos if (swamp) {
439 1.2 christos int msgid;
440 1.2 christos rc = ldap_search_ext( ld, sbase, scope,
441 1.2 christos filter, NULL, noattrs, NULL, NULL,
442 1.2 christos NULL, LDAP_NO_LIMIT, &msgid );
443 1.2 christos if ( rc == LDAP_SUCCESS ) continue;
444 1.2 christos else break;
445 1.2 christos }
446 1.2 christos
447 1.2 christos rc = ldap_search_ext_s( ld, sbase, scope,
448 1.2 christos filter, attrs, noattrs, NULL, NULL,
449 1.2 christos NULL, LDAP_NO_LIMIT, &res );
450 1.2 christos if ( res != NULL ) {
451 1.2 christos ldap_msgfree( res );
452 1.2 christos }
453 1.2 christos
454 1.2 christos if ( rc ) {
455 1.2 christos int first = tester_ignore_err( rc );
456 1.2 christos /* if ignore.. */
457 1.2 christos if ( first ) {
458 1.2 christos /* only log if first occurrence */
459 1.2 christos if ( ( force < 2 && first > 0 ) || abs(first) == 1 ) {
460 1.2 christos tester_ldap_error( ld, "ldap_search_ext_s", NULL );
461 1.2 christos }
462 1.2 christos continue;
463 1.2 christos }
464 1.2 christos
465 1.2 christos /* busy needs special handling */
466 1.2 christos snprintf( buf, sizeof( buf ),
467 1.2 christos "base=\"%s\" filter=\"%s\"\n",
468 1.2 christos sbase, filter );
469 1.2 christos tester_ldap_error( ld, "ldap_search_ext_s", buf );
470 1.2 christos if ( rc == LDAP_BUSY && do_retry > 0 ) {
471 1.2 christos ldap_unbind_ext( ld, NULL, NULL );
472 1.2 christos ld = NULL;
473 1.2 christos do_retry--;
474 1.2 christos goto retry;
475 1.2 christos }
476 1.2 christos break;
477 1.1 lukem }
478 1.1 lukem }
479 1.1 lukem }
480 1.1 lukem
481 1.2 christos cleanup:;
482 1.2 christos if ( msgids != NULL ) {
483 1.2 christos free( msgids );
484 1.2 christos }
485 1.2 christos
486 1.1 lukem if ( ldp != NULL ) {
487 1.1 lukem *ldp = ld;
488 1.1 lukem
489 1.1 lukem } else {
490 1.2 christos 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