]> git.sur5r.net Git - openldap/blob - tests/progs/slapd-read.c
remove password from command line
[openldap] / tests / progs / slapd-read.c
1 /* $OpenLDAP$ */
2 /* This work is part of OpenLDAP Software <http://www.openldap.org/>.
3  *
4  * Copyright 1999-2006 The OpenLDAP Foundation.
5  * All rights reserved.
6  *
7  * Redistribution and use in source and binary forms, with or without
8  * modification, are permitted only as authorized by the OpenLDAP
9  * Public License.
10  *
11  * A copy of this license is available in file LICENSE in the
12  * top-level directory of the distribution or, alternatively, at
13  * <http://www.OpenLDAP.org/license.html>.
14  */
15 /* ACKNOWLEDGEMENTS:
16  * This work was initially developed by Kurt Spanier for inclusion
17  * in OpenLDAP Software.
18  */
19
20 #include "portable.h"
21
22 #include <stdio.h>
23
24 #include <ac/stdlib.h>
25
26 #include <ac/ctype.h>
27 #include <ac/param.h>
28 #include <ac/socket.h>
29 #include <ac/string.h>
30 #include <ac/unistd.h>
31 #include <ac/wait.h>
32
33 #include <ldap.h>
34 #include <lutil.h>
35
36 #include "slapd-common.h"
37
38 #define LOOPS   100
39 #define RETRIES 0
40
41 static void
42 do_read( char *uri, char *manager, struct berval *passwd,
43         char *entry, LDAP **ld, int noattrs, int maxloop,
44         int maxretries, int delay, int force, int chaserefs );
45
46 static void
47 do_random( char *uri, char *manager, struct berval *passwd,
48         char *sbase, char *filter, int noattrs,
49         int innerloop, int maxretries, int delay, int force, int chaserefs );
50
51 static void
52 usage( char *name )
53 {
54         fprintf( stderr,
55                 "usage: %s "
56                 "-H <uri> | ([-h <host>] -p <port>) "
57                 "-D <manager> "
58                 "-w <passwd> "
59                 "-e <entry> "
60                 "[-A] "
61                 "[-C] "
62                 "[-F] "
63                 "[-f filter] "
64                 "[-i <ignore>] "
65                 "[-l <loops>] "
66                 "[-L <outerloops>] "
67                 "[-r <maxretries>] "
68                 "[-t <delay>]\n",
69                 name );
70         exit( EXIT_FAILURE );
71 }
72
73 int
74 main( int argc, char **argv )
75 {
76         int             i;
77         char            *uri = NULL;
78         char            *host = "localhost";
79         int             port = -1;
80         char            *manager = NULL;
81         struct berval   passwd = { 0, NULL };
82         char            *entry = NULL;
83         char            *filter  = NULL;
84         int             loops = LOOPS;
85         int             outerloops = 1;
86         int             retries = RETRIES;
87         int             delay = 0;
88         int             force = 0;
89         int             chaserefs = 0;
90         int             noattrs = 0;
91
92         tester_init( "slapd-read", TESTER_READ );
93
94         /* by default, tolerate referrals and no such object */
95         tester_ignore_str2errlist( "REFERRAL,NO_SUCH_OBJECT" );
96
97         while ( (i = getopt( argc, argv, "ACD:H:h:i:p:e:Ff:l:L:r:t:w:" )) != EOF ) {
98                 switch( i ) {
99                 case 'A':
100                         noattrs++;
101                         break;
102
103                 case 'C':
104                         chaserefs++;
105                         break;
106
107                 case 'H':               /* the server uri */
108                         uri = strdup( optarg );
109                         break;
110
111                 case 'h':               /* the servers host */
112                         host = strdup( optarg );
113                         break;
114
115                 case 'i':
116                         tester_ignore_str2errlist( optarg );
117                         break;
118
119                 case 'p':               /* the servers port */
120                         if ( lutil_atoi( &port, optarg ) != 0 ) {
121                                 usage( argv[0] );
122                         }
123                         break;
124
125                 case 'D':               /* the servers manager */
126                         manager = strdup( optarg );
127                         break;
128
129                 case 'w':               /* the server managers password */
130                         passwd.bv_val = strdup( optarg );
131                         passwd.bv_len = strlen( optarg );
132                         memset( optarg, '*', passwd.bv_len );
133                         break;
134
135                 case 'e':               /* DN to search for */
136                         entry = strdup( optarg );
137                         break;
138
139                 case 'f':               /* the search request */
140                         filter = strdup( optarg );
141                         break;
142
143                 case 'F':
144                         force++;
145                         break;
146
147                 case 'l':               /* the number of loops */
148                         if ( lutil_atoi( &loops, optarg ) != 0 ) {
149                                 usage( argv[0] );
150                         }
151                         break;
152
153                 case 'L':               /* the number of outerloops */
154                         if ( lutil_atoi( &outerloops, optarg ) != 0 ) {
155                                 usage( argv[0] );
156                         }
157                         break;
158
159                 case 'r':               /* the number of retries */
160                         if ( lutil_atoi( &retries, optarg ) != 0 ) {
161                                 usage( argv[0] );
162                         }
163                         break;
164
165                 case 't':               /* delay in seconds */
166                         if ( lutil_atoi( &delay, optarg ) != 0 ) {
167                                 usage( argv[0] );
168                         }
169                         break;
170
171                 default:
172                         usage( argv[0] );
173                         break;
174                 }
175         }
176
177         if (( entry == NULL ) || ( port == -1 && uri == NULL ))
178                 usage( argv[0] );
179
180         if ( *entry == '\0' ) {
181                 fprintf( stderr, "%s: invalid EMPTY entry DN.\n",
182                                 argv[0] );
183                 exit( EXIT_FAILURE );
184         }
185
186         uri = tester_uri( uri, host, port );
187
188         for ( i = 0; i < outerloops; i++ ) {
189                 if ( filter != NULL ) {
190                         do_random( uri, manager, &passwd, entry, filter,
191                                 noattrs, loops, retries, delay, force,
192                                 chaserefs );
193
194                 } else {
195                         do_read( uri, manager, &passwd, entry, NULL, noattrs,
196                                 loops, retries, delay, force, chaserefs );
197                 }
198         }
199
200         exit( EXIT_SUCCESS );
201 }
202
203 static void
204 do_random( char *uri, char *manager, struct berval *passwd,
205         char *sbase, char *filter, int noattrs,
206         int innerloop, int maxretries, int delay, int force, int chaserefs )
207 {
208         LDAP    *ld = NULL;
209         int     i = 0, do_retry = maxretries;
210         char    *attrs[ 2 ];
211         pid_t   pid = getpid();
212         int     rc = LDAP_SUCCESS;
213         int     version = LDAP_VERSION3;
214         int     nvalues = 0;
215         char    **values = NULL;
216         LDAPMessage *res = NULL, *e = NULL;
217
218         attrs[ 0 ] = LDAP_NO_ATTRS;
219         attrs[ 1 ] = NULL;
220
221         ldap_initialize( &ld, uri );
222         if ( ld == NULL ) {
223                 tester_perror( "ldap_initialize", NULL );
224                 exit( EXIT_FAILURE );
225         }
226
227         (void) ldap_set_option( ld, LDAP_OPT_PROTOCOL_VERSION, &version ); 
228         (void) ldap_set_option( ld, LDAP_OPT_REFERRALS,
229                 chaserefs ? LDAP_OPT_ON : LDAP_OPT_OFF );
230
231         if ( do_retry == maxretries ) {
232                 fprintf( stderr, "PID=%ld - Read(%d): base=\"%s\", filter=\"%s\".\n",
233                                 (long) pid, innerloop, sbase, filter );
234         }
235
236         rc = ldap_sasl_bind_s( ld, manager, LDAP_SASL_SIMPLE, passwd, NULL, NULL, NULL );
237         if ( rc != LDAP_SUCCESS ) {
238                 tester_ldap_error( ld, "ldap_sasl_bind_s", NULL );
239                 switch ( rc ) {
240                 case LDAP_BUSY:
241                 case LDAP_UNAVAILABLE:
242                 /* fallthru */
243                 default:
244                         break;
245                 }
246                 exit( EXIT_FAILURE );
247         }
248
249         rc = ldap_search_ext_s( ld, sbase, LDAP_SCOPE_SUBTREE,
250                 filter, attrs, 0, NULL, NULL, NULL, LDAP_NO_LIMIT, &res );
251         switch ( rc ) {
252         case LDAP_SIZELIMIT_EXCEEDED:
253         case LDAP_TIMELIMIT_EXCEEDED:
254         case LDAP_SUCCESS:
255                 nvalues = ldap_count_entries( ld, res );
256                 if ( nvalues == 0 ) {
257                         if ( rc ) {
258                                 tester_ldap_error( ld, "ldap_search_ext_s", NULL );
259                         }
260                         break;
261                 }
262
263                 values = malloc( ( nvalues + 1 ) * sizeof( char * ) );
264                 for ( i = 0, e = ldap_first_entry( ld, res ); e != NULL; i++, e = ldap_next_entry( ld, e ) )
265                 {
266                         values[ i ] = ldap_get_dn( ld, e );
267                 }
268                 values[ i ] = NULL;
269
270                 ldap_msgfree( res );
271
272                 if ( do_retry == maxretries ) {
273                         fprintf( stderr, "  PID=%ld - Read base=\"%s\" filter=\"%s\" got %d values.\n",
274                                 (long) pid, sbase, filter, nvalues );
275                 }
276
277                 for ( i = 0; i < innerloop; i++ ) {
278                         do_read( uri, manager, passwd, values[ rand() % nvalues ], &ld,
279                                 noattrs, 1, maxretries, delay, force,
280                                 chaserefs );
281                 }
282                 break;
283
284         default:
285                 tester_ldap_error( ld, "ldap_search_ext_s", NULL );
286                 break;
287         }
288
289         fprintf( stderr, " PID=%ld - Search done (%d).\n", (long) pid, rc );
290
291         if ( ld != NULL ) {
292                 ldap_unbind_ext( ld, NULL, NULL );
293         }
294 }
295
296 static void
297 do_read( char *uri, char *manager, struct berval *passwd, char *entry,
298         LDAP **ldp, int noattrs, int maxloop,
299         int maxretries, int delay, int force, int chaserefs )
300 {
301         LDAP    *ld = ldp ? *ldp : NULL;
302         int     i = 0, do_retry = maxretries;
303         char    *attrs[] = { "1.1", NULL };
304         pid_t   pid = getpid();
305         int     rc = LDAP_SUCCESS;
306         int     version = LDAP_VERSION3;
307
308 retry:;
309         if ( ld == NULL ) {
310                 ldap_initialize( &ld, uri );
311                 if ( ld == NULL ) {
312                         tester_perror( "ldap_initialize", NULL );
313                         exit( EXIT_FAILURE );
314                 }
315
316                 (void) ldap_set_option( ld, LDAP_OPT_PROTOCOL_VERSION, &version ); 
317                 (void) ldap_set_option( ld, LDAP_OPT_REFERRALS,
318                         chaserefs ? LDAP_OPT_ON : LDAP_OPT_OFF );
319
320                 if ( do_retry == maxretries ) {
321                         fprintf( stderr, "PID=%ld - Read(%d): entry=\"%s\".\n",
322                                 (long) pid, maxloop, entry );
323                 }
324
325                 rc = ldap_sasl_bind_s( ld, manager, LDAP_SASL_SIMPLE, passwd, NULL, NULL, NULL );
326                 if ( rc != LDAP_SUCCESS ) {
327                         tester_ldap_error( ld, "ldap_sasl_bind_s", NULL );
328                         switch ( rc ) {
329                         case LDAP_BUSY:
330                         case LDAP_UNAVAILABLE:
331                                 if ( do_retry > 0 ) {
332                                         ldap_unbind_ext( ld, NULL, NULL );
333                                         do_retry--;
334                                         if ( delay != 0 ) {
335                                             sleep( delay );
336                                         }
337                                         goto retry;
338                                 }
339                         /* fallthru */
340                         default:
341                                 break;
342                         }
343                         exit( EXIT_FAILURE );
344                 }
345         }
346
347         for ( ; i < maxloop; i++ ) {
348                 LDAPMessage *res = NULL;
349
350                 rc = ldap_search_ext_s( ld, entry, LDAP_SCOPE_BASE,
351                                 NULL, attrs, noattrs, NULL, NULL, NULL,
352                                 LDAP_NO_LIMIT, &res );
353                 if ( res != NULL ) {
354                         ldap_msgfree( res );
355                 }
356
357                 if ( rc ) {
358                         unsigned        first = tester_ignore_err( rc );
359                         char            buf[ BUFSIZ ];
360
361                         snprintf( buf, sizeof( buf ), "ldap_search_ext_s(%s)", entry );
362
363                         /* if ignore.. */
364                         if ( first ) {
365                                 /* only log if first occurrence */
366                                 if ( force < 2 || first == 1 ) {
367                                         tester_ldap_error( ld, buf, NULL );
368                                 }
369                                 continue;
370                         }
371
372                         /* busy needs special handling */
373                         tester_ldap_error( ld, buf, NULL );
374                         if ( rc == LDAP_BUSY && do_retry > 0 ) {
375                                 ldap_unbind_ext( ld, NULL, NULL );
376                                 ld = NULL;
377                                 do_retry--;
378                                 goto retry;
379                         }
380                         break;
381                 }
382         }
383
384         if ( ldp != NULL ) {
385                 *ldp = ld;
386
387         } else {
388                 fprintf( stderr, " PID=%ld - Read done (%d).\n", (long) pid, rc );
389
390                 if ( ld != NULL ) {
391                         ldap_unbind_ext( ld, NULL, NULL );
392                 }
393         }
394 }
395