]> git.sur5r.net Git - openldap/blob - libraries/libldap/test.c
642e804dc8cf8196e00ac22a2a8f1c5858bd600b
[openldap] / libraries / libldap / test.c
1 /* $OpenLDAP$ */
2 /*
3  * Copyright 1998-2003 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 static char *get_line LDAP_P(( char *line, int len, FILE *fp, const char *prompt ));
38 static char **get_list LDAP_P(( const char *prompt ));
39 static int file_read LDAP_P(( const char *path, struct berval *bv ));
40 static LDAPMod **get_modlist LDAP_P(( const char *prompt1,
41         const char *prompt2, const char *prompt3 ));
42 static void handle_result LDAP_P(( LDAP *ld, LDAPMessage *lm ));
43 static void print_ldap_result LDAP_P(( LDAP *ld, LDAPMessage *lm,
44         const 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 static char *dnsuffix;
49
50 static char *
51 get_line( char *line, int len, FILE *fp, const char *prompt )
52 {
53         printf(prompt);
54
55         if ( fgets( line, len, fp ) == NULL )
56                 return( NULL );
57
58         line[ strlen( line ) - 1 ] = '\0';
59
60         return( line );
61 }
62 #endif
63
64 static char **
65 get_list( const char *prompt )
66 {
67         static char     buf[256];
68         int             num;
69         char            **result;
70
71         num = 0;
72         result = (char **) 0;
73         while ( 1 ) {
74                 get_line( buf, sizeof(buf), stdin, prompt );
75
76                 if ( *buf == '\0' )
77                         break;
78
79                 if ( result == (char **) 0 )
80                         result = (char **) malloc( sizeof(char *) );
81                 else
82                         result = (char **) realloc( result,
83                             sizeof(char *) * (num + 1) );
84
85                 result[num++] = (char *) strdup( buf );
86         }
87         if ( result == (char **) 0 )
88                 return( NULL );
89         result = (char **) realloc( result, sizeof(char *) * (num + 1) );
90         result[num] = NULL;
91
92         return( result );
93 }
94
95
96 static void
97 free_list( char **list )
98 {
99         int     i;
100
101         if ( list != NULL ) {
102                 for ( i = 0; list[ i ] != NULL; ++i ) {
103                         free( list[ i ] );
104                 }
105                 free( (char *)list );
106         }
107 }
108
109
110 static int
111 file_read( const char *path, struct berval *bv )
112 {
113         FILE            *fp;
114         ber_slen_t      rlen;
115         int             eof;
116
117         if (( fp = fopen( path, "r" )) == NULL ) {
118                 perror( path );
119                 return( -1 );
120         }
121
122         if ( fseek( fp, 0L, SEEK_END ) != 0 ) {
123                 perror( path );
124                 fclose( fp );
125                 return( -1 );
126         }
127
128         bv->bv_len = ftell( fp );
129
130         if (( bv->bv_val = (char *)malloc( bv->bv_len )) == NULL ) {
131                 perror( "malloc" );
132                 fclose( fp );
133                 return( -1 );
134         }
135
136         if ( fseek( fp, 0L, SEEK_SET ) != 0 ) {
137                 perror( path );
138                 fclose( fp );
139                 return( -1 );
140         }
141
142         rlen = fread( bv->bv_val, 1, bv->bv_len, fp );
143         eof = feof( fp );
144         fclose( fp );
145
146         if ( (ber_len_t) rlen != bv->bv_len ) {
147                 perror( path );
148                 free( bv->bv_val );
149                 return( -1 );
150         }
151
152         return( bv->bv_len );
153 }
154
155
156 static LDAPMod **
157 get_modlist(
158         const char *prompt1,
159         const char *prompt2,
160         const 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                         get_line( 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                 get_line( 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,
233         LDAP_CONST char *url,
234         ber_tag_t request, ber_int_t msgid,
235         void *params )
236 {
237         static char     dn[256], passwd[256];
238         int     authmethod;
239
240         printf("rebind for request=%ld msgid=%ld url=%s\n",
241                 request, (long) msgid, url );
242
243 #ifdef LDAP_API_FEATURE_X_OPENLDAP_V2_KBIND
244                 get_line( dn, sizeof(dn), stdin,
245                     "re-bind method (0->simple, 1->krbv41, 2->krbv42, 3->krbv41&2)? " );
246         if (( authmethod = atoi( dn )) == 3 ) {
247                 authmethod = LDAP_AUTH_KRBV4;
248                 } else {
249                 authmethod |= 0x80;
250                 }
251 #else /* LDAP_API_FEATURE_X_OPENLDAP_V2_KBIND */
252         authmethod = LDAP_AUTH_SIMPLE;
253 #endif /* LDAP_API_FEATURE_X_OPENLDAP_V2_KBIND */
254
255                 get_line( dn, sizeof(dn), stdin, "re-bind dn? " );
256                 strcat( dn, dnsuffix );
257
258         if ( authmethod == LDAP_AUTH_SIMPLE && dn[0] != '\0' ) {
259                         get_line( passwd, sizeof(passwd), stdin,
260                             "re-bind password? " );
261                 } else {
262                         passwd[0] = '\0';
263                 }
264
265         return ldap_bind_s( ld, dn, passwd, authmethod);
266 }
267
268
269 int
270 main( int argc, char **argv )
271 {
272         LDAP            *ld = NULL;
273         int             i, c, port, errflg, method, id, msgtype;
274         char            line[256], command1, command2, command3;
275         char            passwd[64], dn[256], rdn[64], attr[64], value[256];
276         char            filter[256], *host, **types;
277         char            **exdn;
278         char            *usage = "usage: %s [-u] [-h host] [-d level] [-s dnsuffix] [-p port] [-t file] [-T file]\n";
279         int             bound, all, scope, attrsonly;
280         LDAPMessage     *res;
281         LDAPMod         **mods, **attrs;
282         struct timeval  timeout;
283         char            *copyfname = NULL;
284         int             copyoptions = 0;
285         LDAPURLDesc     *ludp;
286
287         host = NULL;
288         port = LDAP_PORT;
289         dnsuffix = "";
290         errflg = 0;
291
292         while (( c = getopt( argc, argv, "h:d:s:p:t:T:" )) != -1 ) {
293                 switch( c ) {
294                 case 'd':
295 #ifdef LDAP_DEBUG
296                         ldap_debug = atoi( optarg );
297 #ifdef LBER_DEBUG
298                         if ( ldap_debug & LDAP_DEBUG_PACKETS ) {
299                                 ber_set_option( NULL, LBER_OPT_DEBUG_LEVEL, &ldap_debug );
300                         }
301 #endif
302 #else
303                         printf( "Compile with -DLDAP_DEBUG for debugging\n" );
304 #endif
305                         break;
306
307                 case 'h':
308                         host = optarg;
309                         break;
310
311                 case 's':
312                         dnsuffix = optarg;
313                         break;
314
315                 case 'p':
316                         port = atoi( optarg );
317                         break;
318
319                 case 't':       /* copy ber's to given file */
320                         copyfname = strdup( optarg );
321 /*                      copyoptions = LBER_TO_FILE; */
322                         break;
323
324                 case 'T':       /* only output ber's to given file */
325                         copyfname = strdup( optarg );
326 /*                      copyoptions = (LBER_TO_FILE | LBER_TO_FILE_ONLY); */
327                         break;
328
329                 default:
330                     ++errflg;
331                 }
332         }
333
334         if ( host == NULL && optind == argc - 1 ) {
335                 host = argv[ optind ];
336                 ++optind;
337         }
338
339         if ( errflg || optind < argc - 1 ) {
340                 fprintf( stderr, usage, argv[ 0 ] );
341                 exit( EXIT_FAILURE );
342         }
343         
344         printf( "ldap_init( %s, %d )\n",
345                 host == NULL ? "(null)" : host, port );
346
347         ld = ldap_init( host, port );
348
349         if ( ld == NULL ) {
350                 perror( "ldap_init" );
351                 exit( EXIT_FAILURE );
352         }
353
354         if ( copyfname != NULL ) {
355                 if ( ( ld->ld_sb->sb_fd = open( copyfname, O_WRONLY|O_CREAT|O_EXCL,
356                     0600 ))  == -1 ) {
357                         perror( copyfname );
358                         exit ( EXIT_FAILURE );
359                 }
360                 ld->ld_sb->sb_options = copyoptions;
361         }
362
363         bound = 0;
364         timeout.tv_sec = 0;
365         timeout.tv_usec = 0;
366
367         (void) memset( line, '\0', sizeof(line) );
368         while ( get_line( line, sizeof(line), stdin, "\ncommand? " ) != NULL ) {
369                 command1 = line[0];
370                 command2 = line[1];
371                 command3 = line[2];
372
373                 switch ( command1 ) {
374                 case 'a':       /* add or abandon */
375                         switch ( command2 ) {
376                         case 'd':       /* add */
377                                 get_line( dn, sizeof(dn), stdin, "dn? " );
378                                 strcat( dn, dnsuffix );
379                                 if ( (attrs = get_modlist( NULL, "attr? ",
380                                     "value? " )) == NULL )
381                                         break;
382                                 if ( (id = ldap_add( ld, dn, attrs )) == -1 )
383                                         ldap_perror( ld, "ldap_add" );
384                                 else
385                                         printf( "Add initiated with id %d\n",
386                                             id );
387                                 break;
388
389                         case 'b':       /* abandon */
390                                 get_line( line, sizeof(line), stdin, "msgid? " );
391                                 id = atoi( line );
392                                 if ( ldap_abandon( ld, id ) != 0 )
393                                         ldap_perror( ld, "ldap_abandon" );
394                                 else
395                                         printf( "Abandon successful\n" );
396                                 break;
397                         default:
398                                 printf( "Possibilities: [ad]d, [ab]ort\n" );
399                         }
400                         break;
401
402                 case 'b':       /* asynch bind */
403 #ifdef LDAP_API_FEATURE_X_OPENLDAP_V2_KBIND
404                         get_line( line, sizeof(line), stdin,
405                             "method (0->simple, 1->krbv41, 2->krbv42)? " );
406                         method = atoi( line ) | 0x80;
407 #else /* LDAP_API_FEATURE_X_OPENLDAP_V2_KBIND */
408                         method = LDAP_AUTH_SIMPLE;
409 #endif /* LDAP_API_FEATURE_X_OPENLDAP_V2_KBIND */
410                         get_line( dn, sizeof(dn), stdin, "dn? " );
411                         strcat( dn, dnsuffix );
412
413                         if ( method == LDAP_AUTH_SIMPLE && dn[0] != '\0' )
414                                 get_line( passwd, sizeof(passwd), stdin,
415                                     "password? " );
416                         else
417                                 passwd[0] = '\0';
418
419                         if ( ldap_bind( ld, dn, passwd, method ) == -1 ) {
420                                 fprintf( stderr, "ldap_bind failed\n" );
421                                 ldap_perror( ld, "ldap_bind" );
422                         } else {
423                                 printf( "Bind initiated\n" );
424                                 bound = 1;
425                         }
426                         break;
427
428                 case 'B':       /* synch bind */
429 #ifdef LDAP_API_FEATURE_X_OPENLDAP_V2_KBIND
430                         get_line( line, sizeof(line), stdin,
431                             "method 0->simple 1->krbv41 2->krbv42 3->krb? " );
432                         method = atoi( line );
433                         if ( method == 3 )
434                                 method = LDAP_AUTH_KRBV4;
435                         else
436                                 method = method | 0x80;
437 #else /* LDAP_API_FEATURE_X_OPENLDAP_V2_KBIND */
438                         method = LDAP_AUTH_SIMPLE;
439 #endif /* LDAP_API_FEATURE_X_OPENLDAP_V2_KBIND */
440                         get_line( dn, sizeof(dn), stdin, "dn? " );
441                         strcat( dn, dnsuffix );
442
443                         if ( dn[0] != '\0' )
444                                 get_line( passwd, sizeof(passwd), stdin,
445                                     "password? " );
446                         else
447                                 passwd[0] = '\0';
448
449                         if ( ldap_bind_s( ld, dn, passwd, method ) !=
450                             LDAP_SUCCESS ) {
451                                 fprintf( stderr, "ldap_bind_s failed\n" );
452                                 ldap_perror( ld, "ldap_bind_s" );
453                         } else {
454                                 printf( "Bind successful\n" );
455                                 bound = 1;
456                         }
457                         break;
458
459                 case 'c':       /* compare */
460                         get_line( dn, sizeof(dn), stdin, "dn? " );
461                         strcat( dn, dnsuffix );
462                         get_line( attr, sizeof(attr), stdin, "attr? " );
463                         get_line( value, sizeof(value), stdin, "value? " );
464
465                         if ( (id = ldap_compare( ld, dn, attr, value )) == -1 )
466                                 ldap_perror( ld, "ldap_compare" );
467                         else
468                                 printf( "Compare initiated with id %d\n", id );
469                         break;
470
471                 case 'd':       /* turn on debugging */
472 #ifdef LDAP_DEBUG
473                         get_line( line, sizeof(line), stdin, "debug level? " );
474                         ldap_debug = atoi( line );
475 #ifdef LBER_DEBUG
476                         if ( ldap_debug & LDAP_DEBUG_PACKETS ) {
477                                 ber_set_option( NULL, LBER_OPT_DEBUG_LEVEL, &ldap_debug );
478                         }
479 #endif
480 #else
481                         printf( "Compile with -DLDAP_DEBUG for debugging\n" );
482 #endif
483                         break;
484
485                 case 'E':       /* explode a dn */
486                         get_line( line, sizeof(line), stdin, "dn? " );
487                         exdn = ldap_explode_dn( line, 0 );
488                         for ( i = 0; exdn != NULL && exdn[i] != NULL; i++ ) {
489                                 printf( "\t%s\n", exdn[i] );
490                         }
491                         break;
492
493                 case 'g':       /* set next msgid */
494                         get_line( line, sizeof(line), stdin, "msgid? " );
495                         ld->ld_msgid = atoi( line );
496                         break;
497
498                 case 'v':       /* set version number */
499                         get_line( line, sizeof(line), stdin, "version? " );
500                         ld->ld_version = atoi( line );
501                         break;
502
503                 case 'm':       /* modify or modifyrdn */
504                         if ( strncmp( line, "modify", 4 ) == 0 ) {
505                                 get_line( dn, sizeof(dn), stdin, "dn? " );
506                                 strcat( dn, dnsuffix );
507                                 if ( (mods = get_modlist(
508                                     "mod (0=>add, 1=>delete, 2=>replace -1=>done)? ",
509                                     "attribute type? ", "attribute value? " ))
510                                     == NULL )
511                                         break;
512                                 if ( (id = ldap_modify( ld, dn, mods )) == -1 )
513                                         ldap_perror( ld, "ldap_modify" );
514                                 else
515                                         printf( "Modify initiated with id %d\n",
516                                             id );
517                         } else if ( strncmp( line, "modrdn", 4 ) == 0 ) {
518                                 get_line( dn, sizeof(dn), stdin, "dn? " );
519                                 strcat( dn, dnsuffix );
520                                 get_line( rdn, sizeof(rdn), stdin, "newrdn? " );
521                                 if ( (id = ldap_modrdn( ld, dn, rdn )) == -1 )
522                                         ldap_perror( ld, "ldap_modrdn" );
523                                 else
524                                         printf( "Modrdn initiated with id %d\n",
525                                             id );
526                         } else {
527                                 printf( "Possibilities: [modi]fy, [modr]dn\n" );
528                         }
529                         break;
530
531                 case 'q':       /* quit */
532                         ldap_unbind( ld );
533                         exit( EXIT_SUCCESS );
534                         break;
535
536                 case 'r':       /* result or remove */
537                         switch ( command3 ) {
538                         case 's':       /* result */
539                                 get_line( line, sizeof(line), stdin,
540                                     "msgid (-1=>any)? " );
541                                 if ( line[0] == '\0' )
542                                         id = -1;
543                                 else
544                                         id = atoi( line );
545                                 get_line( line, sizeof(line), stdin,
546                                     "all (0=>any, 1=>all)? " );
547                                 if ( line[0] == '\0' )
548                                         all = 1;
549                                 else
550                                         all = atoi( line );
551                                 if (( msgtype = ldap_result( ld, id, all,
552                                     &timeout, &res )) < 1 ) {
553                                         ldap_perror( ld, "ldap_result" );
554                                         break;
555                                 }
556                                 printf( "\nresult: msgtype %d msgid %d\n",
557                                     msgtype, res->lm_msgid );
558                                 handle_result( ld, res );
559                                 res = NULL;
560                                 break;
561
562                         case 'm':       /* remove */
563                                 get_line( dn, sizeof(dn), stdin, "dn? " );
564                                 strcat( dn, dnsuffix );
565                                 if ( (id = ldap_delete( ld, dn )) == -1 )
566                                         ldap_perror( ld, "ldap_delete" );
567                                 else
568                                         printf( "Remove initiated with id %d\n",
569                                             id );
570                                 break;
571
572                         default:
573                                 printf( "Possibilities: [rem]ove, [res]ult\n" );
574                                 break;
575                         }
576                         break;
577
578                 case 's':       /* search */
579                         get_line( dn, sizeof(dn), stdin, "searchbase? " );
580                         strcat( dn, dnsuffix );
581                         get_line( line, sizeof(line), stdin,
582                             "scope (0=Base, 1=One Level, 2=Subtree)? " );
583                         scope = atoi( line );
584                         get_line( filter, sizeof(filter), stdin,
585                             "search filter (e.g. sn=jones)? " );
586                         types = get_list( "attrs to return? " );
587                         get_line( line, sizeof(line), stdin,
588                             "attrsonly (0=attrs&values, 1=attrs only)? " );
589                         attrsonly = atoi( line );
590
591                             if (( id = ldap_search( ld, dn, scope, filter,
592                                     types, attrsonly  )) == -1 ) {
593                                 ldap_perror( ld, "ldap_search" );
594                             } else {
595                                 printf( "Search initiated with id %d\n", id );
596                             }
597                         free_list( types );
598                         break;
599
600                 case 't':       /* set timeout value */
601                         get_line( line, sizeof(line), stdin, "timeout? " );
602                         timeout.tv_sec = atoi( line );
603                         break;
604
605                 case 'p':       /* parse LDAP URL */
606                         get_line( line, sizeof(line), stdin, "LDAP URL? " );
607                         if (( i = ldap_url_parse( line, &ludp )) != 0 ) {
608                             fprintf( stderr, "ldap_url_parse: error %d\n", i );
609                         } else {
610                             printf( "\t  host: " );
611                             if ( ludp->lud_host == NULL ) {
612                                 printf( "DEFAULT\n" );
613                             } else {
614                                 printf( "<%s>\n", ludp->lud_host );
615                             }
616                             printf( "\t  port: " );
617                             if ( ludp->lud_port == 0 ) {
618                                 printf( "DEFAULT\n" );
619                             } else {
620                                 printf( "%d\n", ludp->lud_port );
621                             }
622                             printf( "\t    dn: <%s>\n", ludp->lud_dn );
623                             printf( "\t attrs:" );
624                             if ( ludp->lud_attrs == NULL ) {
625                                 printf( " ALL" );
626                             } else {
627                                 for ( i = 0; ludp->lud_attrs[ i ] != NULL; ++i ) {
628                                     printf( " <%s>", ludp->lud_attrs[ i ] );
629                                 }
630                             }
631                             printf( "\n\t scope: %s\n", ludp->lud_scope == LDAP_SCOPE_ONELEVEL ?
632                                 "ONE" : ludp->lud_scope == LDAP_SCOPE_BASE ? "BASE" :
633                                 ludp->lud_scope == LDAP_SCOPE_SUBTREE ? "SUB" : "**invalid**" );
634                             printf( "\tfilter: <%s>\n", ludp->lud_filter );
635                             ldap_free_urldesc( ludp );
636                         }
637                             break;
638
639                 case 'n':       /* set dn suffix, for convenience */
640                         get_line( line, sizeof(line), stdin, "DN suffix? " );
641                         strcpy( dnsuffix, line );
642                         break;
643
644                 case 'o':       /* set ldap options */
645                         get_line( line, sizeof(line), stdin, "alias deref (0=never, 1=searching, 2=finding, 3=always)?" );
646                         ld->ld_deref = atoi( line );
647                         get_line( line, sizeof(line), stdin, "timelimit?" );
648                         ld->ld_timelimit = atoi( line );
649                         get_line( line, sizeof(line), stdin, "sizelimit?" );
650                         ld->ld_sizelimit = atoi( line );
651
652                         LDAP_BOOL_ZERO(&ld->ld_options);
653
654                         get_line( line, sizeof(line), stdin,
655                                 "Recognize and chase referrals (0=no, 1=yes)?" );
656                         if ( atoi( line ) != 0 ) {
657                                 LDAP_BOOL_SET(&ld->ld_options, LDAP_BOOL_REFERRALS);
658                                 get_line( line, sizeof(line), stdin,
659                                         "Prompt for bind credentials when chasing referrals (0=no, 1=yes)?" );
660                                 if ( atoi( line ) != 0 ) {
661                                         ldap_set_rebind_proc( ld, bind_prompt, NULL );
662                                 }
663                         }
664                         break;
665
666                 case '?':       /* help */
667                         printf(
668 "Commands: [ad]d         [ab]andon         [b]ind\n"
669 "          [B]ind async  [c]ompare\n"
670 "          [modi]fy      [modr]dn          [rem]ove\n"
671 "          [res]ult      [s]earch          [q]uit/unbind\n\n"
672 "          [d]ebug       set ms[g]id\n"
673 "          d[n]suffix    [t]imeout         [v]ersion\n"
674 "          [?]help       [o]ptions"
675 "          [E]xplode dn  [p]arse LDAP URL\n" );
676                         break;
677
678                 default:
679                         printf( "Invalid command.  Type ? for help.\n" );
680                         break;
681                 }
682
683                 (void) memset( line, '\0', sizeof(line) );
684         }
685
686         return( 0 );
687 }
688
689 static void
690 handle_result( LDAP *ld, LDAPMessage *lm )
691 {
692         switch ( lm->lm_msgtype ) {
693         case LDAP_RES_COMPARE:
694                 printf( "Compare result\n" );
695                 print_ldap_result( ld, lm, "compare" );
696                 break;
697
698         case LDAP_RES_SEARCH_RESULT:
699                 printf( "Search result\n" );
700                 print_ldap_result( ld, lm, "search" );
701                 break;
702
703         case LDAP_RES_SEARCH_ENTRY:
704                 printf( "Search entry\n" );
705                 print_search_entry( ld, lm );
706                 break;
707
708         case LDAP_RES_ADD:
709                 printf( "Add result\n" );
710                 print_ldap_result( ld, lm, "add" );
711                 break;
712
713         case LDAP_RES_DELETE:
714                 printf( "Delete result\n" );
715                 print_ldap_result( ld, lm, "delete" );
716                 break;
717
718         case LDAP_RES_MODRDN:
719                 printf( "ModRDN result\n" );
720                 print_ldap_result( ld, lm, "modrdn" );
721                 break;
722
723         case LDAP_RES_BIND:
724                 printf( "Bind result\n" );
725                 print_ldap_result( ld, lm, "bind" );
726                 break;
727
728         default:
729                 printf( "Unknown result type 0x%lx\n",
730                         (unsigned long) lm->lm_msgtype );
731                 print_ldap_result( ld, lm, "unknown" );
732         }
733 }
734
735 static void
736 print_ldap_result( LDAP *ld, LDAPMessage *lm, const char *s )
737 {
738         ldap_result2error( ld, lm, 1 );
739         ldap_perror( ld, s );
740 /*
741         if ( ld->ld_error != NULL && *ld->ld_error != '\0' )
742                 fprintf( stderr, "Additional info: %s\n", ld->ld_error );
743         if ( LDAP_NAME_ERROR( ld->ld_errno ) && ld->ld_matched != NULL )
744                 fprintf( stderr, "Matched DN: %s\n", ld->ld_matched );
745 */
746 }
747
748 static void
749 print_search_entry( LDAP *ld, LDAPMessage *res )
750 {
751         LDAPMessage     *e;
752
753         for ( e = ldap_first_entry( ld, res ); e != NULL;
754             e = ldap_next_entry( ld, e ) )
755         {
756                 BerElement      *ber = NULL;
757                 char *a, *dn, *ufn;
758
759                 if ( e->lm_msgtype == LDAP_RES_SEARCH_RESULT )
760                         break;
761
762                 dn = ldap_get_dn( ld, e );
763                 printf( "\tDN: %s\n", dn );
764
765                 ufn = ldap_dn2ufn( dn );
766                 printf( "\tUFN: %s\n", ufn );
767
768                 free( dn );
769                 free( ufn );
770
771                 for ( a = ldap_first_attribute( ld, e, &ber ); a != NULL;
772                     a = ldap_next_attribute( ld, e, ber ) )
773                 {
774                         struct berval   **vals;
775
776                         printf( "\t\tATTR: %s\n", a );
777                         if ( (vals = ldap_get_values_len( ld, e, a ))
778                             == NULL ) {
779                                 printf( "\t\t\t(no values)\n" );
780                         } else {
781                                 int i;
782                                 for ( i = 0; vals[i] != NULL; i++ ) {
783                                         int     j, nonascii;
784
785                                         nonascii = 0;
786                                         for ( j = 0; (ber_len_t) j < vals[i]->bv_len; j++ )
787                                                 if ( !isascii( vals[i]->bv_val[j] ) ) {
788                                                         nonascii = 1;
789                                                         break;
790                                                 }
791
792                                         if ( nonascii ) {
793                                                 printf( "\t\t\tlength (%ld) (not ascii)\n", vals[i]->bv_len );
794 #ifdef BPRINT_NONASCII
795                                                 ber_bprint( vals[i]->bv_val,
796                                                     vals[i]->bv_len );
797 #endif /* BPRINT_NONASCII */
798                                                 continue;
799                                         }
800                                         printf( "\t\t\tlength (%ld) %s\n",
801                                             vals[i]->bv_len, vals[i]->bv_val );
802                                 }
803                                 ber_bvecfree( vals );
804                         }
805                 }
806
807                 if(ber != NULL) {
808                         ber_free( ber, 0 );
809                 }
810         }
811
812         if ( res->lm_msgtype == LDAP_RES_SEARCH_RESULT
813             || res->lm_chain != NULL )
814                 print_ldap_result( ld, res, "search" );
815 }