]> git.sur5r.net Git - openldap/blob - libraries/libldap/test.c
ITS#837: fix server down abandon bug
[openldap] / libraries / libldap / test.c
1 /* $OpenLDAP$ */
2 /*
3  * Copyright 1998-2000 The OpenLDAP Foundation, All Rights Reserved.
4  * COPYING RESTRICTIONS APPLY, see COPYRIGHT file
5  */
6
7 #include "portable.h"
8
9 #include <stdio.h>
10
11 #include <ac/stdlib.h>
12
13 #include <ac/ctype.h>
14 #include <ac/socket.h>
15 #include <ac/string.h>
16 #include <ac/time.h>
17 #include <ac/unistd.h>
18
19 #include <sys/stat.h>
20
21 #ifdef HAVE_SYS_FILE_H
22 #include <sys/file.h>
23 #endif
24 #ifdef HAVE_IO_H
25 #include <io.h>
26 #endif
27
28 #include <fcntl.h>
29
30 /* including the "internal" defs is legit and nec. since this test routine has 
31  * a-priori knowledge of libldap internal workings.
32  * hodges@stanford.edu 5-Feb-96
33  */
34 #include "ldap-int.h"
35
36 /* local functions */
37 #ifndef HAVE_GETLINE
38 static char *getline LDAP_P(( char *line, int len, FILE *fp, char *prompt ));
39 #endif
40 static char **get_list LDAP_P(( char *prompt ));
41 static int file_read LDAP_P(( char *path, struct berval *bv ));
42 static LDAPMod **get_modlist LDAP_P(( char *prompt1, char *prompt2, char *prompt3 ));
43 static void handle_result LDAP_P(( LDAP *ld, LDAPMessage *lm ));
44 static void print_ldap_result LDAP_P(( LDAP *ld, LDAPMessage *lm, char *s ));
45 static void print_search_entry LDAP_P(( LDAP *ld, LDAPMessage *res ));
46 static void free_list LDAP_P(( char **list ));
47
48 #define NOCACHEERRMSG   "don't compile with -DLDAP_NOCACHE if you desire local caching"
49
50 static char *dnsuffix;
51
52 #ifndef HAVE_GETLINE
53 static char *
54 getline( char *line, int len, FILE *fp, char *prompt )
55 {
56         printf(prompt);
57
58         if ( fgets( line, len, fp ) == NULL )
59                 return( NULL );
60
61         line[ strlen( line ) - 1 ] = '\0';
62
63         return( line );
64 }
65 #endif
66
67 static char **
68 get_list( char *prompt )
69 {
70         static char     buf[256];
71         int             num;
72         char            **result;
73
74         num = 0;
75         result = (char **) 0;
76         while ( 1 ) {
77                 getline( buf, sizeof(buf), stdin, prompt );
78
79                 if ( *buf == '\0' )
80                         break;
81
82                 if ( result == (char **) 0 )
83                         result = (char **) malloc( sizeof(char *) );
84                 else
85                         result = (char **) realloc( result,
86                             sizeof(char *) * (num + 1) );
87
88                 result[num++] = (char *) strdup( buf );
89         }
90         if ( result == (char **) 0 )
91                 return( NULL );
92         result = (char **) realloc( result, sizeof(char *) * (num + 1) );
93         result[num] = NULL;
94
95         return( result );
96 }
97
98
99 static void
100 free_list( char **list )
101 {
102         int     i;
103
104         if ( list != NULL ) {
105                 for ( i = 0; list[ i ] != NULL; ++i ) {
106                         free( list[ i ] );
107                 }
108                 free( (char *)list );
109         }
110 }
111
112
113 static int
114 file_read( char *path, struct berval *bv )
115 {
116         FILE            *fp;
117         ber_slen_t      rlen;
118         int             eof;
119
120         if (( fp = fopen( path, "r" )) == NULL ) {
121                 perror( path );
122                 return( -1 );
123         }
124
125         if ( fseek( fp, 0L, SEEK_END ) != 0 ) {
126                 perror( path );
127                 fclose( fp );
128                 return( -1 );
129         }
130
131         bv->bv_len = ftell( fp );
132
133         if (( bv->bv_val = (char *)malloc( bv->bv_len )) == NULL ) {
134                 perror( "malloc" );
135                 fclose( fp );
136                 return( -1 );
137         }
138
139         if ( fseek( fp, 0L, SEEK_SET ) != 0 ) {
140                 perror( path );
141                 fclose( fp );
142                 return( -1 );
143         }
144
145         rlen = fread( bv->bv_val, 1, bv->bv_len, fp );
146         eof = feof( fp );
147         fclose( fp );
148
149         if ( (ber_len_t) rlen != bv->bv_len ) {
150                 perror( path );
151                 free( bv->bv_val );
152                 return( -1 );
153         }
154
155         return( bv->bv_len );
156 }
157
158
159 static LDAPMod **
160 get_modlist( char *prompt1, char *prompt2, char *prompt3 )
161 {
162         static char     buf[256];
163         int             num;
164         LDAPMod         tmp;
165         LDAPMod         **result;
166         struct berval   **bvals;
167
168         num = 0;
169         result = NULL;
170         while ( 1 ) {
171                 if ( prompt1 ) {
172                         getline( buf, sizeof(buf), stdin, prompt1 );
173                         tmp.mod_op = atoi( buf );
174
175                         if ( tmp.mod_op == -1 || buf[0] == '\0' )
176                                 break;
177                 }
178
179                 getline( buf, sizeof(buf), stdin, prompt2 );
180                 if ( buf[0] == '\0' )
181                         break;
182                 tmp.mod_type = strdup( buf );
183
184                 tmp.mod_values = get_list( prompt3 );
185
186                 if ( tmp.mod_values != NULL ) {
187                         int     i;
188
189                         for ( i = 0; tmp.mod_values[i] != NULL; ++i )
190                                 ;
191                         bvals = (struct berval **)calloc( i + 1,
192                             sizeof( struct berval *));
193                         for ( i = 0; tmp.mod_values[i] != NULL; ++i ) {
194                                 bvals[i] = (struct berval *)malloc(
195                                     sizeof( struct berval ));
196                                 if ( strncmp( tmp.mod_values[i], "{FILE}",
197                                     6 ) == 0 ) {
198                                         if ( file_read( tmp.mod_values[i] + 6,
199                                             bvals[i] ) < 0 ) {
200                                                 return( NULL );
201                                         }
202                                 } else {
203                                         bvals[i]->bv_val = tmp.mod_values[i];
204                                         bvals[i]->bv_len =
205                                             strlen( tmp.mod_values[i] );
206                                 }
207                         }
208                         tmp.mod_bvalues = bvals;
209                         tmp.mod_op |= LDAP_MOD_BVALUES;
210                 }
211
212                 if ( result == NULL )
213                         result = (LDAPMod **) malloc( sizeof(LDAPMod *) );
214                 else
215                         result = (LDAPMod **) realloc( result,
216                             sizeof(LDAPMod *) * (num + 1) );
217
218                 result[num] = (LDAPMod *) malloc( sizeof(LDAPMod) );
219                 *(result[num]) = tmp;   /* struct copy */
220                 num++;
221         }
222         if ( result == NULL )
223                 return( NULL );
224         result = (LDAPMod **) realloc( result, sizeof(LDAPMod *) * (num + 1) );
225         result[num] = NULL;
226
227         return( result );
228 }
229
230
231 static int
232 bind_prompt( LDAP *ld, LDAP_CONST char *url, int request, ber_int_t msgid)
233 {
234         static char     dn[256], passwd[256];
235         int     authmethod;
236
237         printf("rebind for request=%d msgid=%ld url=%s\n",
238                 request, (long) msgid, url );
239
240 #ifdef LDAP_API_FEATURE_X_OPENLDAP_V2_KBIND
241                 getline( dn, sizeof(dn), stdin,
242                     "re-bind method (0->simple, 1->krbv41, 2->krbv42, 3->krbv41&2)? " );
243         if (( authmethod = atoi( dn )) == 3 ) {
244                 authmethod = LDAP_AUTH_KRBV4;
245                 } else {
246                 authmethod |= 0x80;
247                 }
248 #else /* LDAP_API_FEATURE_X_OPENLDAP_V2_KBIND */
249         authmethod = LDAP_AUTH_SIMPLE;
250 #endif /* LDAP_API_FEATURE_X_OPENLDAP_V2_KBIND */
251
252                 getline( dn, sizeof(dn), stdin, "re-bind dn? " );
253                 strcat( dn, dnsuffix );
254
255         if ( authmethod == LDAP_AUTH_SIMPLE && dn[0] != '\0' ) {
256                         getline( passwd, sizeof(passwd), stdin,
257                             "re-bind password? " );
258                 } else {
259                         passwd[0] = '\0';
260                 }
261
262         return ldap_bind_s( ld, dn, passwd, authmethod);
263 }
264
265
266 int
267 main( int argc, char **argv )
268 {
269         LDAP            *ld = NULL;
270         int             i, c, port, errflg, method, id, msgtype;
271         char            line[256], command1, command2, command3;
272         char            passwd[64], dn[256], rdn[64], attr[64], value[256];
273         char            filter[256], *host, **types;
274         char            **exdn;
275         char            *usage = "usage: %s [-u] [-h host] [-d level] [-s dnsuffix] [-p port] [-t file] [-T file]\n";
276         int             bound, all, scope, attrsonly;
277         LDAPMessage     *res;
278         LDAPMod         **mods, **attrs;
279         struct timeval  timeout;
280         char            *copyfname = NULL;
281         int             copyoptions = 0;
282         LDAPURLDesc     *ludp;
283
284         host = NULL;
285         port = LDAP_PORT;
286         dnsuffix = "";
287         errflg = 0;
288
289         while (( c = getopt( argc, argv, "h:d:s:p:t:T:" )) != -1 ) {
290                 switch( c ) {
291                 case 'd':
292 #ifdef LDAP_DEBUG
293                         ldap_debug = atoi( optarg );
294 #ifdef LBER_DEBUG
295                         if ( ldap_debug & LDAP_DEBUG_PACKETS ) {
296                                 ber_set_option( NULL, LBER_OPT_DEBUG_LEVEL, &ldap_debug );
297                         }
298 #endif
299 #else
300                         printf( "Compile with -DLDAP_DEBUG for debugging\n" );
301 #endif
302                         break;
303
304                 case 'h':
305                         host = optarg;
306                         break;
307
308                 case 's':
309                         dnsuffix = optarg;
310                         break;
311
312                 case 'p':
313                         port = atoi( optarg );
314                         break;
315
316                 case 't':       /* copy ber's to given file */
317                         copyfname = strdup( optarg );
318 /*                      copyoptions = LBER_TO_FILE; */
319                         break;
320
321                 case 'T':       /* only output ber's to given file */
322                         copyfname = strdup( optarg );
323 /*                      copyoptions = (LBER_TO_FILE | LBER_TO_FILE_ONLY); */
324                         break;
325
326                 default:
327                     ++errflg;
328                 }
329         }
330
331         if ( host == NULL && optind == argc - 1 ) {
332                 host = argv[ optind ];
333                 ++optind;
334         }
335
336         if ( errflg || optind < argc - 1 ) {
337                 fprintf( stderr, usage, argv[ 0 ] );
338                 exit( EXIT_FAILURE );
339         }
340         
341         printf( "ldap_init( %s, %d )\n",
342                 host == NULL ? "(null)" : host, port );
343
344         ld = ldap_init( host, port );
345
346         if ( ld == NULL ) {
347                 perror( "ldap_init" );
348                 exit( EXIT_FAILURE );
349         }
350
351         if ( copyfname != NULL ) {
352                 if ( ( ld->ld_sb->sb_fd = open( copyfname, O_WRONLY | O_CREAT,
353                     0600 ))  == -1 ) {
354                         perror( copyfname );
355                         exit ( EXIT_FAILURE );
356                 }
357                 ld->ld_sb->sb_options = copyoptions;
358         }
359
360         bound = 0;
361         timeout.tv_sec = 0;
362         timeout.tv_usec = 0;
363
364         (void) memset( line, '\0', sizeof(line) );
365         while ( getline( line, sizeof(line), stdin, "\ncommand? " ) != NULL ) {
366                 command1 = line[0];
367                 command2 = line[1];
368                 command3 = line[2];
369
370                 switch ( command1 ) {
371                 case 'a':       /* add or abandon */
372                         switch ( command2 ) {
373                         case 'd':       /* add */
374                                 getline( dn, sizeof(dn), stdin, "dn? " );
375                                 strcat( dn, dnsuffix );
376                                 if ( (attrs = get_modlist( NULL, "attr? ",
377                                     "value? " )) == NULL )
378                                         break;
379                                 if ( (id = ldap_add( ld, dn, attrs )) == -1 )
380                                         ldap_perror( ld, "ldap_add" );
381                                 else
382                                         printf( "Add initiated with id %d\n",
383                                             id );
384                                 break;
385
386                         case 'b':       /* abandon */
387                                 getline( line, sizeof(line), stdin, "msgid? " );
388                                 id = atoi( line );
389                                 if ( ldap_abandon( ld, id ) != 0 )
390                                         ldap_perror( ld, "ldap_abandon" );
391                                 else
392                                         printf( "Abandon successful\n" );
393                                 break;
394                         default:
395                                 printf( "Possibilities: [ad]d, [ab]ort\n" );
396                         }
397                         break;
398
399                 case 'b':       /* asynch bind */
400 #ifdef LDAP_API_FEATURE_X_OPENLDAP_V2_KBIND
401                         getline( line, sizeof(line), stdin,
402                             "method (0->simple, 1->krbv41, 2->krbv42)? " );
403                         method = atoi( line ) | 0x80;
404 #else /* LDAP_API_FEATURE_X_OPENLDAP_V2_KBIND */
405                         method = LDAP_AUTH_SIMPLE;
406 #endif /* LDAP_API_FEATURE_X_OPENLDAP_V2_KBIND */
407                         getline( dn, sizeof(dn), stdin, "dn? " );
408                         strcat( dn, dnsuffix );
409
410                         if ( method == LDAP_AUTH_SIMPLE && dn[0] != '\0' )
411                                 getline( passwd, sizeof(passwd), stdin,
412                                     "password? " );
413                         else
414                                 passwd[0] = '\0';
415
416                         if ( ldap_bind( ld, dn, passwd, method ) == -1 ) {
417                                 fprintf( stderr, "ldap_bind failed\n" );
418                                 ldap_perror( ld, "ldap_bind" );
419                         } else {
420                                 printf( "Bind initiated\n" );
421                                 bound = 1;
422                         }
423                         break;
424
425                 case 'B':       /* synch bind */
426 #ifdef LDAP_API_FEATURE_X_OPENLDAP_V2_KBIND
427                         getline( line, sizeof(line), stdin,
428                             "method 0->simple 1->krbv41 2->krbv42 3->krb? " );
429                         method = atoi( line );
430                         if ( method == 3 )
431                                 method = LDAP_AUTH_KRBV4;
432                         else
433                                 method = method | 0x80;
434 #else /* LDAP_API_FEATURE_X_OPENLDAP_V2_KBIND */
435                         method = LDAP_AUTH_SIMPLE;
436 #endif /* LDAP_API_FEATURE_X_OPENLDAP_V2_KBIND */
437                         getline( dn, sizeof(dn), stdin, "dn? " );
438                         strcat( dn, dnsuffix );
439
440                         if ( dn[0] != '\0' )
441                                 getline( passwd, sizeof(passwd), stdin,
442                                     "password? " );
443                         else
444                                 passwd[0] = '\0';
445
446                         if ( ldap_bind_s( ld, dn, passwd, method ) !=
447                             LDAP_SUCCESS ) {
448                                 fprintf( stderr, "ldap_bind_s failed\n" );
449                                 ldap_perror( ld, "ldap_bind_s" );
450                         } else {
451                                 printf( "Bind successful\n" );
452                                 bound = 1;
453                         }
454                         break;
455
456                 case 'c':       /* compare */
457                         getline( dn, sizeof(dn), stdin, "dn? " );
458                         strcat( dn, dnsuffix );
459                         getline( attr, sizeof(attr), stdin, "attr? " );
460                         getline( value, sizeof(value), stdin, "value? " );
461
462                         if ( (id = ldap_compare( ld, dn, attr, value )) == -1 )
463                                 ldap_perror( ld, "ldap_compare" );
464                         else
465                                 printf( "Compare initiated with id %d\n", id );
466                         break;
467
468                 case 'd':       /* turn on debugging */
469 #ifdef LDAP_DEBUG
470                         getline( line, sizeof(line), stdin, "debug level? " );
471                         ldap_debug = atoi( line );
472 #ifdef LBER_DEBUG
473                         if ( ldap_debug & LDAP_DEBUG_PACKETS ) {
474                                 ber_set_option( NULL, LBER_OPT_DEBUG_LEVEL, &ldap_debug );
475                         }
476 #endif
477 #else
478                         printf( "Compile with -DLDAP_DEBUG for debugging\n" );
479 #endif
480                         break;
481
482                 case 'E':       /* explode a dn */
483                         getline( line, sizeof(line), stdin, "dn? " );
484                         exdn = ldap_explode_dn( line, 0 );
485                         for ( i = 0; exdn != NULL && exdn[i] != NULL; i++ ) {
486                                 printf( "\t%s\n", exdn[i] );
487                         }
488                         break;
489
490                 case 'g':       /* set next msgid */
491                         getline( line, sizeof(line), stdin, "msgid? " );
492                         ld->ld_msgid = atoi( line );
493                         break;
494
495                 case 'v':       /* set version number */
496                         getline( line, sizeof(line), stdin, "version? " );
497                         ld->ld_version = atoi( line );
498                         break;
499
500                 case 'm':       /* modify or modifyrdn */
501                         if ( strncmp( line, "modify", 4 ) == 0 ) {
502                                 getline( dn, sizeof(dn), stdin, "dn? " );
503                                 strcat( dn, dnsuffix );
504                                 if ( (mods = get_modlist(
505                                     "mod (0=>add, 1=>delete, 2=>replace -1=>done)? ",
506                                     "attribute type? ", "attribute value? " ))
507                                     == NULL )
508                                         break;
509                                 if ( (id = ldap_modify( ld, dn, mods )) == -1 )
510                                         ldap_perror( ld, "ldap_modify" );
511                                 else
512                                         printf( "Modify initiated with id %d\n",
513                                             id );
514                         } else if ( strncmp( line, "modrdn", 4 ) == 0 ) {
515                                 getline( dn, sizeof(dn), stdin, "dn? " );
516                                 strcat( dn, dnsuffix );
517                                 getline( rdn, sizeof(rdn), stdin, "newrdn? " );
518                                 if ( (id = ldap_modrdn( ld, dn, rdn )) == -1 )
519                                         ldap_perror( ld, "ldap_modrdn" );
520                                 else
521                                         printf( "Modrdn initiated with id %d\n",
522                                             id );
523                         } else {
524                                 printf( "Possibilities: [modi]fy, [modr]dn\n" );
525                         }
526                         break;
527
528                 case 'q':       /* quit */
529                         ldap_unbind( ld );
530                         exit( EXIT_SUCCESS );
531                         break;
532
533                 case 'r':       /* result or remove */
534                         switch ( command3 ) {
535                         case 's':       /* result */
536                                 getline( line, sizeof(line), stdin,
537                                     "msgid (-1=>any)? " );
538                                 if ( line[0] == '\0' )
539                                         id = -1;
540                                 else
541                                         id = atoi( line );
542                                 getline( line, sizeof(line), stdin,
543                                     "all (0=>any, 1=>all)? " );
544                                 if ( line[0] == '\0' )
545                                         all = 1;
546                                 else
547                                         all = atoi( line );
548                                 if (( msgtype = ldap_result( ld, id, all,
549                                     &timeout, &res )) < 1 ) {
550                                         ldap_perror( ld, "ldap_result" );
551                                         break;
552                                 }
553                                 printf( "\nresult: msgtype %d msgid %d\n",
554                                     msgtype, res->lm_msgid );
555                                 handle_result( ld, res );
556                                 res = NULL;
557                                 break;
558
559                         case 'm':       /* remove */
560                                 getline( dn, sizeof(dn), stdin, "dn? " );
561                                 strcat( dn, dnsuffix );
562                                 if ( (id = ldap_delete( ld, dn )) == -1 )
563                                         ldap_perror( ld, "ldap_delete" );
564                                 else
565                                         printf( "Remove initiated with id %d\n",
566                                             id );
567                                 break;
568
569                         default:
570                                 printf( "Possibilities: [rem]ove, [res]ult\n" );
571                                 break;
572                         }
573                         break;
574
575                 case 's':       /* search */
576                         getline( dn, sizeof(dn), stdin, "searchbase? " );
577                         strcat( dn, dnsuffix );
578                         getline( line, sizeof(line), stdin,
579                             "scope (0=Base, 1=One Level, 2=Subtree)? " );
580                         scope = atoi( line );
581                         getline( filter, sizeof(filter), stdin,
582                             "search filter (e.g. sn=jones)? " );
583                         types = get_list( "attrs to return? " );
584                         getline( line, sizeof(line), stdin,
585                             "attrsonly (0=attrs&values, 1=attrs only)? " );
586                         attrsonly = atoi( line );
587
588                             if (( id = ldap_search( ld, dn, scope, filter,
589                                     types, attrsonly  )) == -1 ) {
590                                 ldap_perror( ld, "ldap_search" );
591                             } else {
592                                 printf( "Search initiated with id %d\n", id );
593                             }
594                         free_list( types );
595                         break;
596
597                 case 't':       /* set timeout value */
598                         getline( line, sizeof(line), stdin, "timeout? " );
599                         timeout.tv_sec = atoi( line );
600                         break;
601
602                 case 'U':       /* set ufn search prefix */
603                         getline( line, sizeof(line), stdin, "ufn prefix? " );
604                         ldap_ufn_setprefix( ld, line );
605                         break;
606
607                 case 'u':       /* user friendly search w/optional timeout */
608                         getline( dn, sizeof(dn), stdin, "ufn? " );
609                         strcat( dn, dnsuffix );
610                         types = get_list( "attrs to return? " );
611                         getline( line, sizeof(line), stdin,
612                             "attrsonly (0=attrs&values, 1=attrs only)? " );
613                         attrsonly = atoi( line );
614
615                         if ( command2 == 't' ) {
616                                 id = ldap_ufn_search_c( ld, dn, types,
617                                     attrsonly, &res, ldap_ufn_timeout,
618                                     &timeout );
619                         } else {
620                                 id = ldap_ufn_search_s( ld, dn, types,
621                                     attrsonly, &res );
622                         }
623                         if ( res == NULL )
624                                 ldap_perror( ld, "ldap_ufn_search" );
625                         else {
626                                 printf( "\nresult: err %d\n", id );
627                                 handle_result( ld, res );
628                                 res = NULL;
629                         }
630                         free_list( types );
631                         break;
632
633                 case 'l':       /* URL search */
634                         getline( line, sizeof(line), stdin,
635                             "attrsonly (0=attrs&values, 1=attrs only)? " );
636                         attrsonly = atoi( line );
637                         getline( line, sizeof(line), stdin, "LDAP URL? " );
638                         if (( id = ldap_url_search( ld, line, attrsonly  ))
639                                 == -1 ) {
640                             ldap_perror( ld, "ldap_url_search" );
641                         } else {
642                             printf( "URL search initiated with id %d\n", id );
643                         }
644                         break;
645
646                 case 'p':       /* parse LDAP URL */
647                         getline( line, sizeof(line), stdin, "LDAP URL? " );
648                         if (( i = ldap_url_parse( line, &ludp )) != 0 ) {
649                             fprintf( stderr, "ldap_url_parse: error %d\n", i );
650                         } else {
651                             printf( "\t  host: " );
652                             if ( ludp->lud_host == NULL ) {
653                                 printf( "DEFAULT\n" );
654                             } else {
655                                 printf( "<%s>\n", ludp->lud_host );
656                             }
657                             printf( "\t  port: " );
658                             if ( ludp->lud_port == 0 ) {
659                                 printf( "DEFAULT\n" );
660                             } else {
661                                 printf( "%d\n", ludp->lud_port );
662                             }
663                             printf( "\t    dn: <%s>\n", ludp->lud_dn );
664                             printf( "\t attrs:" );
665                             if ( ludp->lud_attrs == NULL ) {
666                                 printf( " ALL" );
667                             } else {
668                                 for ( i = 0; ludp->lud_attrs[ i ] != NULL; ++i ) {
669                                     printf( " <%s>", ludp->lud_attrs[ i ] );
670                                 }
671                             }
672                             printf( "\n\t scope: %s\n", ludp->lud_scope == LDAP_SCOPE_ONELEVEL ?
673                                 "ONE" : ludp->lud_scope == LDAP_SCOPE_BASE ? "BASE" :
674                                 ludp->lud_scope == LDAP_SCOPE_SUBTREE ? "SUB" : "**invalid**" );
675                             printf( "\tfilter: <%s>\n", ludp->lud_filter );
676                             ldap_free_urldesc( ludp );
677                         }
678                             break;
679
680                 case 'n':       /* set dn suffix, for convenience */
681                         getline( line, sizeof(line), stdin, "DN suffix? " );
682                         strcpy( dnsuffix, line );
683                         break;
684
685                 case 'e':       /* enable cache */
686 #ifdef LDAP_NOCACHE
687                         printf( NOCACHEERRMSG );
688 #else /* LDAP_NOCACHE */
689                         getline( line, sizeof(line), stdin, "Cache timeout (secs)? " );
690                         i = atoi( line );
691                         getline( line, sizeof(line), stdin, "Maximum memory to use (bytes)? " );
692                         if ( ldap_enable_cache( ld, i, atoi( line )) == 0 ) {
693                                 printf( "local cache is on\n" ); 
694                         } else {
695                                 printf( "ldap_enable_cache failed\n" ); 
696                         }
697 #endif /* LDAP_NOCACHE */
698                         break;
699
700                 case 'x':       /* uncache entry */
701 #ifdef LDAP_NOCACHE
702                         printf( NOCACHEERRMSG );
703 #else /* LDAP_NOCACHE */
704                         getline( line, sizeof(line), stdin, "DN? " );
705                         ldap_uncache_entry( ld, line );
706 #endif /* LDAP_NOCACHE */
707                         break;
708
709                 case 'X':       /* uncache request */
710 #ifdef LDAP_NOCACHE
711                         printf( NOCACHEERRMSG );
712 #else /* LDAP_NOCACHE */
713                         getline( line, sizeof(line), stdin, "request msgid? " );
714                         ldap_uncache_request( ld, atoi( line ));
715 #endif /* LDAP_NOCACHE */
716                         break;
717
718                 case 'o':       /* set ldap options */
719                         getline( line, sizeof(line), stdin, "alias deref (0=never, 1=searching, 2=finding, 3=always)?" );
720                         ld->ld_deref = atoi( line );
721                         getline( line, sizeof(line), stdin, "timelimit?" );
722                         ld->ld_timelimit = atoi( line );
723                         getline( line, sizeof(line), stdin, "sizelimit?" );
724                         ld->ld_sizelimit = atoi( line );
725
726                         LDAP_BOOL_ZERO(&ld->ld_options);
727
728                         getline( line, sizeof(line), stdin,
729                                 "Recognize and chase referrals (0=no, 1=yes)?" );
730                         if ( atoi( line ) != 0 ) {
731                                 LDAP_BOOL_SET(&ld->ld_options, LDAP_BOOL_REFERRALS);
732                                 getline( line, sizeof(line), stdin,
733                                         "Prompt for bind credentials when chasing referrals (0=no, 1=yes)?" );
734                                 if ( atoi( line ) != 0 ) {
735                                         ldap_set_rebind_proc( ld, bind_prompt );
736                                 }
737                         }
738                         break;
739
740                 case 'O':       /* set cache options */
741 #ifdef LDAP_NOCACHE
742                         printf( NOCACHEERRMSG );
743 #else /* LDAP_NOCACHE */
744                         getline( line, sizeof(line), stdin, "cache errors (0=smart, 1=never, 2=always)?" );
745                         switch( atoi( line )) {
746                         case 0:
747                                 ldap_set_cache_options( ld, 0 );
748                                 break;
749                         case 1:
750                                 ldap_set_cache_options( ld,
751                                         LDAP_CACHE_OPT_CACHENOERRS );
752                                 break;
753                         case 2:
754                                 ldap_set_cache_options( ld,
755                                         LDAP_CACHE_OPT_CACHEALLERRS );
756                                 break;
757                         default:
758                                 printf( "not a valid cache option\n" );
759                         }
760 #endif /* LDAP_NOCACHE */
761                         break;
762
763                 case '?':       /* help */
764     printf( "Commands: [ad]d         [ab]andon         [b]ind\n" );
765     printf( "          [B]ind async  [c]ompare         [l]URL search\n" );
766     printf( "          [modi]fy      [modr]dn          [rem]ove\n" );
767     printf( "          [res]ult      [s]earch          [q]uit/unbind\n\n" );
768     printf( "          [u]fn search  [ut]fn search with timeout\n" );
769     printf( "          [d]ebug       [e]nable cache    set ms[g]id\n" );
770     printf( "          d[n]suffix    [t]imeout         [v]ersion\n" );
771     printf( "          [U]fn prefix  [x]uncache entry  [X]uncache request\n" );
772     printf( "          [?]help       [o]ptions         [O]cache options\n" );
773     printf( "          [E]xplode dn  [p]arse LDAP URL\n" );
774                         break;
775
776                 default:
777                         printf( "Invalid command.  Type ? for help.\n" );
778                         break;
779                 }
780
781                 (void) memset( line, '\0', sizeof(line) );
782         }
783
784         return( 0 );
785 }
786
787 static void
788 handle_result( LDAP *ld, LDAPMessage *lm )
789 {
790         switch ( lm->lm_msgtype ) {
791         case LDAP_RES_COMPARE:
792                 printf( "Compare result\n" );
793                 print_ldap_result( ld, lm, "compare" );
794                 break;
795
796         case LDAP_RES_SEARCH_RESULT:
797                 printf( "Search result\n" );
798                 print_ldap_result( ld, lm, "search" );
799                 break;
800
801         case LDAP_RES_SEARCH_ENTRY:
802                 printf( "Search entry\n" );
803                 print_search_entry( ld, lm );
804                 break;
805
806         case LDAP_RES_ADD:
807                 printf( "Add result\n" );
808                 print_ldap_result( ld, lm, "add" );
809                 break;
810
811         case LDAP_RES_DELETE:
812                 printf( "Delete result\n" );
813                 print_ldap_result( ld, lm, "delete" );
814                 break;
815
816         case LDAP_RES_MODRDN:
817                 printf( "ModRDN result\n" );
818                 print_ldap_result( ld, lm, "modrdn" );
819                 break;
820
821         case LDAP_RES_BIND:
822                 printf( "Bind result\n" );
823                 print_ldap_result( ld, lm, "bind" );
824                 break;
825
826         default:
827                 printf( "Unknown result type 0x%lx\n",
828                         (unsigned long) lm->lm_msgtype );
829                 print_ldap_result( ld, lm, "unknown" );
830         }
831 }
832
833 static void
834 print_ldap_result( LDAP *ld, LDAPMessage *lm, char *s )
835 {
836         ldap_result2error( ld, lm, 1 );
837         ldap_perror( ld, s );
838 /*
839         if ( ld->ld_error != NULL && *ld->ld_error != '\0' )
840                 fprintf( stderr, "Additional info: %s\n", ld->ld_error );
841         if ( LDAP_NAME_ERROR( ld->ld_errno ) && ld->ld_matched != NULL )
842                 fprintf( stderr, "Matched DN: %s\n", ld->ld_matched );
843 */
844 }
845
846 static void
847 print_search_entry( LDAP *ld, LDAPMessage *res )
848 {
849         LDAPMessage     *e;
850
851         for ( e = ldap_first_entry( ld, res ); e != NULL;
852             e = ldap_next_entry( ld, e ) )
853         {
854                 BerElement      *ber = NULL;
855                 char *a, *dn, *ufn;
856
857                 if ( e->lm_msgtype == LDAP_RES_SEARCH_RESULT )
858                         break;
859
860                 dn = ldap_get_dn( ld, e );
861                 printf( "\tDN: %s\n", dn );
862
863                 ufn = ldap_dn2ufn( dn );
864                 printf( "\tUFN: %s\n", ufn );
865
866                 free( dn );
867                 free( ufn );
868
869                 for ( a = ldap_first_attribute( ld, e, &ber ); a != NULL;
870                     a = ldap_next_attribute( ld, e, ber ) )
871                 {
872                         struct berval   **vals;
873
874                         printf( "\t\tATTR: %s\n", a );
875                         if ( (vals = ldap_get_values_len( ld, e, a ))
876                             == NULL ) {
877                                 printf( "\t\t\t(no values)\n" );
878                         } else {
879                                 int i;
880                                 for ( i = 0; vals[i] != NULL; i++ ) {
881                                         int     j, nonascii;
882
883                                         nonascii = 0;
884                                         for ( j = 0; (ber_len_t) j < vals[i]->bv_len; j++ )
885                                                 if ( !isascii( vals[i]->bv_val[j] ) ) {
886                                                         nonascii = 1;
887                                                         break;
888                                                 }
889
890                                         if ( nonascii ) {
891                                                 printf( "\t\t\tlength (%ld) (not ascii)\n", vals[i]->bv_len );
892 #ifdef BPRINT_NONASCII
893                                                 ber_bprint( vals[i]->bv_val,
894                                                     vals[i]->bv_len );
895 #endif /* BPRINT_NONASCII */
896                                                 continue;
897                                         }
898                                         printf( "\t\t\tlength (%ld) %s\n",
899                                             vals[i]->bv_len, vals[i]->bv_val );
900                                 }
901                                 ber_bvecfree( vals );
902                         }
903                 }
904
905                 if(ber != NULL) {
906                         ber_free( ber, 0 );
907                 }
908         }
909
910         if ( res->lm_msgtype == LDAP_RES_SEARCH_RESULT
911             || res->lm_chain != NULL )
912                 print_ldap_result( ld, res, "search" );
913 }